diff --git a/Data-Engineering-With-Databricks/02 - ELT with Spark SQL and Python/DE 2.1.2 - Views and CTEs on Databricks.sql b/Data-Engineering-With-Databricks/02 - ELT with Spark SQL and Python/DE 2.1.2 - Views and CTEs on Databricks.sql
deleted file mode 100644
index dbfee90..0000000
--- a/Data-Engineering-With-Databricks/02 - ELT with Spark SQL and Python/DE 2.1.2 - Views and CTEs on Databricks.sql
+++ /dev/null
@@ -1,278 +0,0 @@
--- Databricks notebook source
--- MAGIC %md-sandbox
--- MAGIC
--- MAGIC
--- MAGIC

--- MAGIC
-
--- COMMAND ----------
-
--- MAGIC %md
--- MAGIC # Views and CTEs on Databricks
--- MAGIC In this demonstration, you will create and explore views and common table expressions (CTEs).
--- MAGIC
--- MAGIC ## Learning Objectives
--- MAGIC By the end of this lesson, you will be able to:
--- MAGIC * Use Spark SQL DDL to define views
--- MAGIC * Run queries that use common table expressions
--- MAGIC
--- MAGIC
--- MAGIC
--- MAGIC **Resources**
--- MAGIC * [Create View - Databricks Docs](https://docs.databricks.com/spark/latest/spark-sql/language-manual/sql-ref-syntax-ddl-create-view.html)
--- MAGIC * [Common Table Expressions - Databricks Docs](https://docs.databricks.com/spark/latest/spark-sql/language-manual/sql-ref-syntax-qry-select-cte.html)
-
--- COMMAND ----------
-
--- MAGIC %md
--- MAGIC ## Classroom Setup
--- MAGIC The following script clears out previous runs of this demo and configures some Hive variables that will be used in our SQL queries.
-
--- COMMAND ----------
-
--- MAGIC %run ../Includes/setup-meta
-
--- COMMAND ----------
-
--- MAGIC %md
--- MAGIC We start by creating a table of data we can use for the demonstration.
-
--- COMMAND ----------
-
-CREATE DATABASE IF NOT EXISTS ${c.database};
-USE ${c.database};
-
--- mode "FAILFAST" will abort file parsing with a RuntimeException if any malformed lines are encountered
-CREATE OR REPLACE TEMPORARY VIEW temp_delays USING CSV OPTIONS (
- path '${c.userhome}/datasets/flights/departuredelays.csv',
- header "true",
- mode "FAILFAST"
-);
-CREATE OR REPLACE TABLE external_table LOCATION '${c.userhome}/external_table' AS
- SELECT * FROM temp_delays;
-
-SELECT * FROM external_table;
-
--- COMMAND ----------
-
--- MAGIC %md ## Views
--- MAGIC Let's create a view that contains only the data where the origin is 'ABQ' and the destination is 'LAX'.
-
--- COMMAND ----------
-
-CREATE OR REPLACE VIEW view_delays_ABQ_LAX AS
-SELECT * FROM external_table WHERE origin = 'ABQ' AND destination = 'LAX';
-SELECT * FROM view_delays_ABQ_LAX;
-
--- COMMAND ----------
-
--- MAGIC %md
--- MAGIC To show a list of tables (and views), we use the `SHOW TABLES` command.
--- MAGIC
--- MAGIC Note that the `view_delays_abq_lax` view is in the list. If we detach from, and reattach to, the cluster and reload the list of tables, view_delays_abq_lax persists. This is because View metadata (name, location, etc.) are stored in the metastore.
--- MAGIC
--- MAGIC (The command `USE ${c.database};` is used after reattaching to the cluster because state is lost when the SparkSession is deleted)
-
--- COMMAND ----------
-
-USE ${c.database};
-SHOW tables;
-
--- COMMAND ----------
-
--- MAGIC %md
--- MAGIC Now, let's create a temporary view. The syntax is very similar but adds `TEMPORARY` to the command.
-
--- COMMAND ----------
-
-CREATE OR REPLACE TEMPORARY VIEW temp_view AS
-SELECT * FROM external_table WHERE delay > 120 ORDER BY delay ASC;
-SELECT * FROM temp_view;
-
--- COMMAND ----------
-
--- MAGIC %md
--- MAGIC Let's again show list of tables (and views).
--- MAGIC
--- MAGIC Two things we note are that the `temp_view` view is in the list and that `temp_view` is marked `isTemporary`.
--- MAGIC
--- MAGIC If we detach from, and reattach to, the cluster and reload the list of tables, `temp_view` is deleted. This is because temporary view metadata (name, location, etc.) are not stored in the metastore. When we detach from the cluster, the Spark session is deleted, which deletes the temporary view.
-
--- COMMAND ----------
-
-USE ${c.database};
-SHOW TABLES;
-
--- COMMAND ----------
-
--- MAGIC %md
--- MAGIC Let's now create a global temporary view. We add `GLOBAL` to the command. This view is just like the temporary view above, but it is different in one important way. It is added to the `global_temp` database that exists on the cluster. As long as the cluster is running, this database persists, and any notebooks attached to the cluster can access its global temporary views.
--- MAGIC
--- MAGIC Note when we use global temporary views, we have to prefix them with `global_temp.` since we are accessing the `global_temp` database.
-
--- COMMAND ----------
-
-CREATE OR REPLACE GLOBAL TEMPORARY VIEW global_temp_view_distance AS
-SELECT * FROM external_table WHERE distance > 1000;
-SELECT * FROM global_temp.global_temp_view_distance;
-
--- COMMAND ----------
-
--- MAGIC %md
--- MAGIC Again, global temporary views are available to any notebook attached to the cluster, including
--- MAGIC - New notebooks
--- MAGIC - This notebook, even if it is detached from, and reattached to, the cluster
-
--- COMMAND ----------
-
-SELECT * FROM global_temp.global_temp_view_distance;
-
--- COMMAND ----------
-
--- MAGIC %md
--- MAGIC One thing to note is that global temporary views do not show in the list of tables.
-
--- COMMAND ----------
-
-USE ${c.database};
-SHOW TABLES;
-
--- COMMAND ----------
-
--- MAGIC %md
--- MAGIC ## Common Table Expressions (CTEs)
--- MAGIC CTEs can be used in a variety of contexts. Below, are a few examples of the different ways a CTE can be used in a query. First, an example of making multiple column aliases using a CTE.
-
--- COMMAND ----------
-
-WITH flight_delays(
- total_delay_time,
- origin_airport,
- destination_airport
-) AS (
- SELECT
- delay,
- origin,
- destination
- FROM
- external_table
-)
-SELECT
- *
-FROM
- flight_delays
-WHERE
- total_delay_time > 120
- AND origin_airport = "ATL"
- AND destination_airport = "DEN";
-
--- COMMAND ----------
-
--- MAGIC %md
--- MAGIC Next, is an example of a CTE in a CTE definition.
-
--- COMMAND ----------
-
-WITH lax_bos AS (
- WITH origin_destination (origin_airport, destination_airport) AS (
- SELECT
- origin,
- destination
- from
- external_table
- )
- SELECT
- *
- FROM
- origin_destination
- WHERE
- origin_airport = 'LAX'
- AND destination_airport = 'BOS'
-)
-SELECT
- count(origin_airport) AS `Total Flights from LAX to BOS`
-FROM
- lax_bos;
-
--- COMMAND ----------
-
--- MAGIC %md
--- MAGIC Now, here is an example of a CTE in a subquery.
-
--- COMMAND ----------
-
-SELECT
- max(total_delay) AS `Longest Delay (in minutes)`
-FROM
- (
- WITH delayed_flights(total_delay) AS (
- SELECT
- delay
- from
- external_table
- )
- SELECT
- *
- FROM
- delayed_flights
- );
-
--- COMMAND ----------
-
--- MAGIC %md
--- MAGIC We can also use a CTE in a subquery expression.
-
--- COMMAND ----------
-
-SELECT
- (
- WITH distinct_origins AS (
- SELECT DISTINCT origin FROM external_table
- )
- SELECT
- count(origin)
- FROM
- distinct_origins
- ) AS `Number of Different Origin Airports`;
-
--- COMMAND ----------
-
--- MAGIC %md
--- MAGIC Finally, here is a CTE in a CREATE VIEW statement.
-
--- COMMAND ----------
-
-CREATE OR REPLACE VIEW BOS_LAX AS
-WITH origin_destination(origin_airport, destination_airport) AS
-(SELECT origin, destination FROM external_table)
-SELECT * FROM origin_destination
-WHERE origin_airport = 'BOS' AND destination_airport = 'LAX';
-SELECT count(origin_airport) AS `Number of Delayed Flights from BOS to LAX` FROM BOS_LAX;
-
--- COMMAND ----------
-
--- MAGIC %md
--- MAGIC ## Clean up
--- MAGIC We first drop the training database.
-
--- COMMAND ----------
-
-DROP DATABASE ${c.database} CASCADE;
-
--- COMMAND ----------
-
--- MAGIC %md
--- MAGIC Finally, we delete the working directory.
-
--- COMMAND ----------
-
--- MAGIC %python
--- MAGIC dbutils.fs.rm(userhome, True)
-
--- COMMAND ----------
-
--- MAGIC %md-sandbox
--- MAGIC © 2022 Databricks, Inc. All rights reserved.
--- MAGIC Apache, Apache Spark, Spark and the Spark logo are trademarks of the Apache Software Foundation.
--- MAGIC
--- MAGIC Privacy Policy | Terms of Use | Support
diff --git a/Data-Engineering-With-Databricks/02 - ELT with Spark SQL and Python/DE 2.2.3 - Creating Delta Tables.sql b/Data-Engineering-With-Databricks/02 - ELT with Spark SQL and Python/DE 2.2.3 - Creating Delta Tables.sql
deleted file mode 100644
index 7c390cb..0000000
--- a/Data-Engineering-With-Databricks/02 - ELT with Spark SQL and Python/DE 2.2.3 - Creating Delta Tables.sql
+++ /dev/null
@@ -1,237 +0,0 @@
--- Databricks notebook source
--- MAGIC %md-sandbox
--- MAGIC
--- MAGIC
--- MAGIC

--- MAGIC
-
--- COMMAND ----------
-
--- MAGIC %md
--- MAGIC # Creating Delta Tables
--- MAGIC
--- MAGIC After extracting data from external data sources, load data into the Lakehouse to ensure that all of the benefits of the Databricks platform can be fully leveraged.
--- MAGIC
--- MAGIC While different organizations may have varying policies for how data is initially loaded into Databricks, we typically recommend that early tables represent a mostly raw version of the data, and that validation and enrichment occur in later stages. This pattern ensures that even if data doesn't match expectations with regards to data types or column names, no data will be dropped, meaning that programmatic or manual intervention can still salvage data in a partially corrupted or invalid state.
--- MAGIC
--- MAGIC This lesson will focus primarily on the pattern used to create most tables, `CREATE TABLE _ AS SELECT` (CTAS) statements.
--- MAGIC
--- MAGIC ##### Objectives
--- MAGIC - Use CTAS statements to create Delta Lake tables
--- MAGIC - Create new tables from existing views or tables
--- MAGIC - Enrich loaded data with additional metadata
--- MAGIC - Declare table schema with generated columns and descriptive comments
--- MAGIC - Set advanced options to control data location, quality enforcement, and partitioning
-
--- COMMAND ----------
-
--- MAGIC %md
--- MAGIC ## Run Setup
--- MAGIC
--- MAGIC The setup script will create the data and declare necessary values for the rest of this notebook to execute.
-
--- COMMAND ----------
-
--- MAGIC %run ../Includes/setup
-
--- COMMAND ----------
-
--- MAGIC %md
--- MAGIC ## Create an Empty Delta Table
--- MAGIC Use the `CREATE TABLE USING` statement to define an empty Delta table in the metastore.
--- MAGIC
--- MAGIC We won't need to explicitly state `USING DELTA`, as Delta is the default format.
-
--- COMMAND ----------
-
-CREATE OR REPLACE TABLE users (user_id BIGINT, user_first_touch_timestamp BIGINT, email STRING);
-
-DESCRIBE EXTENDED users
-
--- COMMAND ----------
-
--- MAGIC %md ## Create Table as Select (CTAS)
--- MAGIC
--- MAGIC `CREATE TABLE AS SELECT` statements create and populate Delta tables using data retrieved from an input query.
-
--- COMMAND ----------
-
-CREATE OR REPLACE TABLE sales AS
-SELECT * FROM parquet.`${c.source}/sales/sales.parquet`;
-
-DESCRIBE EXTENDED sales
-
--- COMMAND ----------
-
--- MAGIC %md Because they inherit schemas from the query data, CTAS statements do **not** support schema declarations. In the following query, the CTAS statement can not provide the options necessary to properly ingest data from CSV files.
-
--- COMMAND ----------
-
-CREATE OR REPLACE TABLE sales_unparsed AS
-SELECT * FROM csv.`${c.source}/sales/sales.csv`;
-
-SELECT * FROM sales_unparsed
-
--- COMMAND ----------
-
--- MAGIC %md
--- MAGIC ## Subset Columns from Existing Tables
--- MAGIC We can also use CTAS statements to load data from existing tables and views.
--- MAGIC
--- MAGIC The following statement creates a new table containing a subset of columns from the `sales` table. Here, we'll presume that we're intentionally leaving out information that potentially identifies the user or that provides itemized purchase details.
-
--- COMMAND ----------
-
-CREATE OR REPLACE TABLE purchases AS
-SELECT order_id, transaction_timestamp, purchase_revenue_in_usd
-FROM sales;
-
-SELECT * FROM purchases
-
--- COMMAND ----------
-
--- MAGIC %md
--- MAGIC ## Declare Schema with Generated Columns
--- MAGIC
--- MAGIC As noted previously, CTAS statements do not support schema declaration. We note above that the timestamp column appears to be some variant of a Unix timestamp, which may not be the most useful for our analysts to derive insights. This is a situation where generated columns would be beneficial.
--- MAGIC
--- MAGIC Generated columns are a special type of column whose values are automatically generated based on a user-specified function over other columns in the Delta table. Databricks introduced generated columns in DBR 8.3.
--- MAGIC
--- MAGIC The code below demonstrates creating a new table while:
--- MAGIC 1. Specifying column names and types
--- MAGIC 1. Adding a [generated column](https://docs.databricks.com/delta/delta-batch.html#deltausegeneratedcolumns) to calculate the date
--- MAGIC 1. Providing a descriptive column comment for the generated column
-
--- COMMAND ----------
-
-CREATE OR REPLACE TABLE purchase_dates (
- order_id STRING,
- transaction_timestamp STRING,
- purchase_revenue_in_usd STRING,
- date DATE GENERATED ALWAYS AS (
- cast(cast(transaction_timestamp/1e6 AS TIMESTAMP) AS DATE))
- COMMENT "generated based on `transactions_timestamp` column")
-
--- COMMAND ----------
-
--- MAGIC %md
--- MAGIC
--- MAGIC Because `date` is a generated column, if we write to `purchase_dates` without providing values for the `date` column, Delta Lake automatically computes them.
--- MAGIC
--- MAGIC **NOTE**: The cell below configures a setting to allow for generating columns when using a Delta Lake `MERGE` statement. We'll see more on this syntax later in the course.
-
--- COMMAND ----------
-
-SET spark.databricks.delta.schema.autoMerge.enabled=true;
-
-MERGE INTO purchase_dates a
-USING purchases b
-ON a.order_id = b.order_id
-WHEN NOT MATCHED THEN
- INSERT *
-
--- COMMAND ----------
-
--- MAGIC %md The query automatically reads the most recent snapshot of the table for any query; you never need to run `REFRESH TABLE`.
-
--- COMMAND ----------
-
-SELECT * FROM purchase_dates
-
--- COMMAND ----------
-
--- MAGIC %md
--- MAGIC ## Enrich Tables with Additional Options and Metadata
--- MAGIC
--- MAGIC So far we've only shown creating managed tables, which will store all data associated with a newly created table under the databases default location. For many use cases, these will be the right choice.
--- MAGIC
--- MAGIC Here, we'll create an external Delta Lake table and provide a number of additional options. The syntax below will:
--- MAGIC 1. Add a table comment
--- MAGIC 1. Add an arbitrary key-value pair as a table property
--- MAGIC 1. Add a date column derived from source table data
--- MAGIC 1. Add a column to record current timestamp at time of update
--- MAGIC 1. Configure table `LOCATION` path
--- MAGIC 1. Partition tables by a column
--- MAGIC
--- MAGIC **NOTE**: A number of Delta Lake configurations are set using `TBLPROPERTIES`. When using this field as part of an organizational approach to data discovery and auditing, users should be made aware of which keys are leveraged for modifying default Delta Lake behaviors.
-
--- COMMAND ----------
-
-CREATE OR REPLACE TABLE users_pii
-COMMENT "Contains PII"
-TBLPROPERTIES ('contains_pii' = True)
-LOCATION "${c.userhome}/tmp/users_pii"
-PARTITIONED BY (first_touch_date)
-AS
- SELECT *,
- cast(cast(user_first_touch_timestamp/1e6 AS TIMESTAMP) AS DATE) first_touch_date,
- current_timestamp() updated
- FROM parquet.`${c.source}/users/users.parquet`;
-
--- COMMAND ----------
-
--- MAGIC %md Specifying the `LOCATION` path creates an external Delta table that is unmanaged by the Metastore.
--- MAGIC
--- MAGIC All of the comments and properties for a given table can be reviewed using `DESCRIBE TABLE EXTENDED`.
--- MAGIC
--- MAGIC **NOTE**: Delta Lake automatically adds several table properties on table creation.
-
--- COMMAND ----------
-
-DESCRIBE EXTENDED users_pii
-
--- COMMAND ----------
-
--- MAGIC %md
--- MAGIC Listing the location used for the table reveals that the unique values in the partition column `date` are used to create data directories.
-
--- COMMAND ----------
-
--- MAGIC %python
--- MAGIC display(dbutils.fs.ls(f"{Paths.userhome}/tmp/users_pii"))
-
--- COMMAND ----------
-
--- MAGIC %md
--- MAGIC
--- MAGIC Delta Lake automatically uses partitioning and statistics to read the minimum amount of data when there are applicable predicates in the query.
-
--- COMMAND ----------
-
-SELECT * FROM users_pii WHERE first_touch_date = "2020-06-19"
-
--- COMMAND ----------
-
--- MAGIC %md
--- MAGIC ## Add a Table Constraint
--- MAGIC
--- MAGIC Because Delta Lake enforces schema on write, Databricks can support standard SQL constraint management clauses to ensure the quality and integrity of data added to a table.
--- MAGIC
--- MAGIC Databricks currently support two types of constraints:
--- MAGIC * [`NOT NULL` constraints](https://docs.databricks.com/delta/delta-constraints.html#not-null-constraint)
--- MAGIC * [`CHECK` constraints](https://docs.databricks.com/delta/delta-constraints.html#check-constraint)
--- MAGIC
--- MAGIC In both cases, you must ensure that no data violating the constraint is already in the table prior to defining the constraint. Once a constraint has been added to a table, data violating the constraint will result in write failure.
--- MAGIC
--- MAGIC Below, we'll add a `CHECK` constraint to the `date` column of our table. Note that `CHECK` constraints look like standard `WHERE` clauses you might use to filter a dataset.
-
--- COMMAND ----------
-
-ALTER TABLE users_pii ADD CONSTRAINT valid_date CHECK (first_touch_date > '2020-01-01');
-
--- COMMAND ----------
-
--- MAGIC %md
--- MAGIC Table constraints are shown in the `TBLPROPERTIES` field, alongside user-specified tags and other Delta Lake metadata.
-
--- COMMAND ----------
-
-DESCRIBE EXTENDED users_pii
-
--- COMMAND ----------
-
--- MAGIC %md-sandbox
--- MAGIC © 2022 Databricks, Inc. All rights reserved.
--- MAGIC Apache, Apache Spark, Spark and the Spark logo are trademarks of the Apache Software Foundation.
--- MAGIC
--- MAGIC Privacy Policy | Terms of Use | Support
diff --git a/Data-Engineering-With-Databricks/02 - ELT with Spark SQL and Python/DE 2.2.4 - Writing to Tables.sql b/Data-Engineering-With-Databricks/02 - ELT with Spark SQL and Python/DE 2.2.4 - Writing to Tables.sql
deleted file mode 100644
index 741acd5..0000000
--- a/Data-Engineering-With-Databricks/02 - ELT with Spark SQL and Python/DE 2.2.4 - Writing to Tables.sql
+++ /dev/null
@@ -1,160 +0,0 @@
--- Databricks notebook source
--- MAGIC %md-sandbox
--- MAGIC
--- MAGIC
--- MAGIC

--- MAGIC
-
--- COMMAND ----------
-
--- MAGIC %md
--- MAGIC # Writing to Delta Tables
--- MAGIC Use SQL DML statements to perform complete and incremental updates to existing Delta tables.
--- MAGIC
--- MAGIC ##### Objectives
--- MAGIC - Overwrite data tables using `INSERT OVERWRITE`
--- MAGIC - Append to a table using `INSERT INTO`
--- MAGIC - Append, update, and delete from a table using `MERGE INTO`
--- MAGIC - Ingest data incrementally into tables using `COPY INTO`
-
--- COMMAND ----------
-
--- MAGIC %md
--- MAGIC ## Run Setup
--- MAGIC
--- MAGIC The setup script will create the data and declare necessary values for the rest of this notebook to execute.
-
--- COMMAND ----------
-
--- MAGIC %run ../Includes/setup-updates
-
--- COMMAND ----------
-
--- MAGIC %md ## Complete Overwrites
--- MAGIC
--- MAGIC We can use overwrites to atomically replace all of the data in a table. There are multiple benefits to overwriting tables instead of deleting and recreating tables:
--- MAGIC - Overwriting a table is much faster because it doesn’t need to list the directory recursively or delete any files.
--- MAGIC - The old version of the table still exists; can easily retrieve the old data using Time Travel.
--- MAGIC - It’s an atomic operation. Concurrent queries can still read the table while you are deleting the table.
--- MAGIC - Due to ACID transaction guarantees, if overwriting the table fails, the table will be in its previous state.
--- MAGIC
--- MAGIC The following cells demonstrate two ways to overwrite data.
--- MAGIC
--- MAGIC 1. Using the `CREATE OR REPLACE TABLE` statement
--- MAGIC 2. Using the `INSERT OVERWRITE` statement
-
--- COMMAND ----------
-
-CREATE OR REPLACE TABLE events AS
-SELECT * FROM parquet.`${c.source}/events/events.parquet`
-
--- COMMAND ----------
-
-INSERT OVERWRITE sales
-SELECT * FROM parquet.`${c.source}/sales/sales.parquet`
-
--- COMMAND ----------
-
--- MAGIC %md This keeps history of the previous table, but rewrites all data.
-
--- COMMAND ----------
-
-DESCRIBE HISTORY sales
-
--- COMMAND ----------
-
--- MAGIC %md ## Append Rows
--- MAGIC
--- MAGIC We can use `INSERT INTO` to atomically append new rows to an existing Delta table. This allows for incremental updates to existing tables, which is much more efficient than overwriting each time.
--- MAGIC
--- MAGIC Append new sale records to the `sales` table using `INSERT INTO`.
-
--- COMMAND ----------
-
-INSERT INTO sales
-SELECT * FROM parquet.`${c.source}/sales/sales-30m.parquet`
-
--- COMMAND ----------
-
--- MAGIC %md ## Merge Updates
--- MAGIC
--- MAGIC You can upsert data from a source table, view, or DataFrame into a target Delta table using the `MERGE` SQL operation. Delta Lake supports inserts, updates and deletes in `MERGE`, and supports extended syntax beyond the SQL standards to facilitate advanced use cases.
--- MAGIC ```
--- MAGIC MERGE INTO target a
--- MAGIC USING source b
--- MAGIC ON
--- MAGIC WHEN MATCHED THEN
--- MAGIC WHEN NOT MATCHED THEN
--- MAGIC ```
--- MAGIC We will use the `MERGE` operation to update historic users data with updated emails and new users.
-
--- COMMAND ----------
-
-CREATE OR REPLACE TEMP VIEW users_update AS
-SELECT *, current_timestamp() updated FROM parquet.`${c.source}/users/users-30m.parquet`
-
--- COMMAND ----------
-
--- MAGIC %md As we implemented the `users` table as a Type 1 SCD Delta table with an `updated` field, we can leverage this field while performing a merge operation. Let's make sure that records that are updated OR inserted have the same timestamp. This operation will be completed as a single batch to avoid potentially leaving our table in a corrupt state.
-
--- COMMAND ----------
-
-MERGE INTO users a
-USING users_update b
-ON a.user_id = b.user_id
-WHEN MATCHED AND a.email IS NULL AND b.email IS NOT NULL THEN
- UPDATE SET email = b.email, updated = b.updated
-WHEN NOT MATCHED THEN INSERT *
-
--- COMMAND ----------
-
--- MAGIC %md
--- MAGIC ## Insert-Only Merge for Deduplication
--- MAGIC
--- MAGIC A common ETL use case is to collect logs into Delta table by appending them to a table. However, often the sources can generate duplicate log records and downstream deduplication steps are needed to take care of them. With merge, you can avoid inserting the duplicate records.
--- MAGIC
--- MAGIC When merging new events parsed from `events_raw`, confirm that an identical record isn't already in the `events` table.
--- MAGIC ```
--- MAGIC MERGE INTO target a
--- MAGIC USING source b
--- MAGIC ON a.data = b.data
--- MAGIC WHEN NOT MATCHED THEN
--- MAGIC INSERT *
--- MAGIC ```
--- MAGIC By default, the merge operation searches the entire Delta table to find matches in the source table. One way to speed up merge is to reduce the search space by adding known constraints in the match condition. It will also reduce the chances of conflicts with other concurrent operations.
--- MAGIC ```
--- MAGIC events.country = 'USA' AND events.date = current_date() - INTERVAL 7 DAYS
--- MAGIC ```
-
--- COMMAND ----------
-
-MERGE INTO events a
-USING events_update b
-ON a.user_id = b.user_id AND a.event_timestamp = b.event_timestamp
-WHEN NOT MATCHED AND b.traffic_source = 'email' THEN
- INSERT *
-
--- COMMAND ----------
-
--- MAGIC %md ## Load Incrementally
--- MAGIC Use `COPY INTO` to incrementally load data from external systems.
--- MAGIC - Data schema should be consistent
--- MAGIC - Duplicate records should try to be excluded or handled downstream
--- MAGIC - Potentially much cheaper than full table scan for data that grows predictably
--- MAGIC - Leveraged by many data ingestion partners
--- MAGIC
--- MAGIC Update the `sales` delta table by incrementally loading data from an external location where a number of new transactions arrive during a 30 minute window. Each sale should only be recorded once, at the time that the transaction is processed. Use a method that allows idempotent execution to avoid processing data multiple times.
-
--- COMMAND ----------
-
-COPY INTO sales
-FROM "${c.source}/sales/sales-30m.parquet"
-FILEFORMAT = PARQUET
-
--- COMMAND ----------
-
--- MAGIC %md-sandbox
--- MAGIC © 2022 Databricks, Inc. All rights reserved.
--- MAGIC Apache, Apache Spark, Spark and the Spark logo are trademarks of the Apache Software Foundation.
--- MAGIC
--- MAGIC Privacy Policy | Terms of Use | Support
diff --git a/Data-Engineering-With-Databricks/02 - ELT with Spark SQL and Python/DE 2.2.6 - Cleaning Data.sql b/Data-Engineering-With-Databricks/02 - ELT with Spark SQL and Python/DE 2.2.6 - Cleaning Data.sql
deleted file mode 100644
index e374db3..0000000
--- a/Data-Engineering-With-Databricks/02 - ELT with Spark SQL and Python/DE 2.2.6 - Cleaning Data.sql
+++ /dev/null
@@ -1,169 +0,0 @@
--- Databricks notebook source
--- MAGIC %md-sandbox
--- MAGIC
--- MAGIC
--- MAGIC

--- MAGIC
-
--- COMMAND ----------
-
--- MAGIC %md # Cleaning Data
--- MAGIC
--- MAGIC Apply a number of common transformations to clean data with Spark SQL.
--- MAGIC
--- MAGIC ##### Objectives
--- MAGIC - Summarize datasets and describe null behaviors
--- MAGIC - Retrieve and remove duplicates based on select columns
--- MAGIC - Validate datasets for expected counts, missing values, and duplicate records
--- MAGIC - Apply common transformations to clean and transform data
-
--- COMMAND ----------
-
--- MAGIC %md
--- MAGIC ## Run Setup
--- MAGIC
--- MAGIC The setup script will create the data and declare necessary values for the rest of this notebook to execute.
-
--- COMMAND ----------
-
--- MAGIC %run ../Includes/setup-updates
-
--- COMMAND ----------
-
--- MAGIC %md
--- MAGIC We'll work with new users records in `users_update` table for this lesson.
-
--- COMMAND ----------
-
-SELECT * FROM users_update
-
--- COMMAND ----------
-
--- MAGIC %md ## Transformations
--- MAGIC As we inspect and clean our data, we'll need to construct various column expressions and queries to express transformations to apply on our dataset.
--- MAGIC - Column expressions are constructed from existing columns, operators, and built-in Spark SQL functions. They can be used in `SELECT` statements to express transformations that create new columns from datasets.
--- MAGIC - Along with `SELECT`, many additional query commands can be used to express transformations in Spark SQL, including `WHERE`, `DISTINCT`, `ORDER BY`, `GROUP BY`, etc.
-
--- COMMAND ----------
-
--- MAGIC %md ## Inspect Data
--- MAGIC We'll inspect `users_update` for missing values and duplicate records.
-
--- COMMAND ----------
-
--- MAGIC %md
--- MAGIC ### Missing Values
--- MAGIC Count the number of missing values in each column of `users_update`. Note that nulls behave incorrectly in some math functions, including `count`.
--- MAGIC
--- MAGIC #### Null Behavior with `count()`
--- MAGIC - `count(col)` skips `NULL` values when counting specific columns or expressions.
--- MAGIC - `count(*)` is a special case that counts the total number of rows without skipping `NULL` values
--- MAGIC
--- MAGIC To count null values, use the `count_if` function or `WHERE` clause to provide a condition that filters for records where the value `IS NULL`.
-
--- COMMAND ----------
-
-SELECT
- count_if(user_id IS NULL) missing_user_ids,
- count_if(user_first_touch_timestamp IS NULL) missing_timestamps,
- count_if(email IS NULL) missing_emails
-FROM users_update
-
--- COMMAND ----------
-
--- MAGIC %md
--- MAGIC ### Distinct Records
--- MAGIC - `DISTINCT *` returns rows with duplicates removed.
--- MAGIC - `DISTINCT col` returns unique values in column `col`
--- MAGIC
--- MAGIC Note that the count for distinct users is greater than the count for distinct rows; rows containing `NULL` values were skipped from processing distinct rows. `count(*)` is the only case where `count()` includes records with `NULL` values.
-
--- COMMAND ----------
-
-SELECT
- count(user_id) total_ids, count(DISTINCT user_id) unique_ids,
- count(email) total_emails, count(DISTINCT email) unique_emails,
- count(*) total_rows, count(DISTINCT *) unique_non_null_rows
-FROM users_update
-
--- COMMAND ----------
-
--- MAGIC %md ## Deduplicate Rows
--- MAGIC
--- MAGIC Use `DISTINCT *` to remove true duplicate records (rows with same values for all columns).
-
--- COMMAND ----------
-
-SELECT DISTINCT * FROM users_update
-
--- COMMAND ----------
-
--- MAGIC %md #### Deduplicate Based on Specific Columns
--- MAGIC
--- MAGIC Use `GROUP BY` to remove duplicate records based on select columns. The query below groups rows by `user_id` to deduplicate rows based on values from this column.
--- MAGIC
--- MAGIC The `max()` aggregate function is used on the `email` column as a hack to capture non-null emails when multiple records are present.
-
--- COMMAND ----------
-
-CREATE OR REPLACE TEMP VIEW deduped_users AS
-SELECT user_id, user_first_touch_timestamp, max(email) email, max(updated) updated
-FROM users_update
-GROUP BY user_id, user_first_touch_timestamp;
-
-SELECT count(*) FROM deduped_users
-
--- COMMAND ----------
-
--- MAGIC %md ## Validate Datasets
--- MAGIC Let's check our datasets for expected counts, missing values, and duplicate records.
--- MAGIC Validation can be performed with simple filters and `WHERE` clauses (and `COUNT_IF` statements).
-
--- COMMAND ----------
-
--- MAGIC %md Validate that the `user_id` for each row is unique.
-
--- COMMAND ----------
-
-SELECT max(row_count) <= 1 no_duplicate_ids FROM (
- SELECT user_id, count(*) row_count
- FROM deduped_users
- GROUP BY user_id)
-
--- COMMAND ----------
-
--- MAGIC %md Confirm that each email is associated with at most one `user_id`.
-
--- COMMAND ----------
-
-SELECT max(user_id_count) <= 1 at_most_one_id FROM (
- SELECT email, count(user_id) user_id_count
- FROM deduped_users
- WHERE email IS NOT NULL
- GROUP BY email)
-
--- COMMAND ----------
-
--- MAGIC %md ## Date Format and Regex
--- MAGIC - Format datetimes as strings
--- MAGIC - Use `regexp_extract` to extract domains from the email column using regex
-
--- COMMAND ----------
-
-SELECT *,
- date_format(first_touch, "MMM d, yyyy") first_touch_date,
- date_format(first_touch, "HH:mm:ss") first_touch_time,
- regexp_extract(email, "(?<=@)[^.]+(?=\.)", 0) email_domain
-FROM (
- SELECT *,
- CAST(user_first_touch_timestamp / 1e6 AS timestamp) first_touch
- FROM deduped_users
-)
-
--- COMMAND ----------
-
--- MAGIC %md-sandbox
--- MAGIC © 2022 Databricks, Inc. All rights reserved.
--- MAGIC Apache, Apache Spark, Spark and the Spark logo are trademarks of the Apache Software Foundation.
--- MAGIC
--- MAGIC Privacy Policy | Terms of Use | Support
diff --git a/Data-Engineering-With-Databricks/02 - ELT with Spark SQL and Python/DE 2.2.7 - Reshaping Data.sql b/Data-Engineering-With-Databricks/02 - ELT with Spark SQL and Python/DE 2.2.7 - Reshaping Data.sql
deleted file mode 100644
index b5c7f27..0000000
--- a/Data-Engineering-With-Databricks/02 - ELT with Spark SQL and Python/DE 2.2.7 - Reshaping Data.sql
+++ /dev/null
@@ -1,207 +0,0 @@
--- Databricks notebook source
--- MAGIC %md-sandbox
--- MAGIC
--- MAGIC
--- MAGIC

--- MAGIC
-
--- COMMAND ----------
-
--- MAGIC %md
--- MAGIC # Reshaping Data
--- MAGIC
--- MAGIC Combine datasets and lookup tables with various join types and strategies.
--- MAGIC Reshape with pivot tables.
--- MAGIC
--- MAGIC ##### Objectives
--- MAGIC - Combine datasets using different types of joins
--- MAGIC - Join records to a pre-existing lookup table
--- MAGIC - Examine and provide hints for join strategies
--- MAGIC - Reshape data using pivot tables
-
--- COMMAND ----------
-
--- MAGIC %md
--- MAGIC ## Run Setup
--- MAGIC
--- MAGIC The setup script will create the data and declare necessary values for the rest of this notebook to execute.
-
--- COMMAND ----------
-
--- MAGIC %run ../Includes/setup-cleaned
-
--- COMMAND ----------
-
--- MAGIC %md ## Explode Arrays
--- MAGIC Use the `explode` array function to explode arrays in the item field of events.
-
--- COMMAND ----------
-
-SELECT *, explode(items) item FROM events
-
--- COMMAND ----------
-
--- MAGIC %md ## Collect Arrays
--- MAGIC Explode and flatten complex data using various array functions
-
--- COMMAND ----------
-
-SELECT user_id,
- flatten(collect_set(items.item_id)) cart_history,
- collect_set(event_name) event_history
-FROM (SELECT *, explode(items) item FROM events)
-GROUP BY user_id
-
--- COMMAND ----------
-
--- MAGIC %md ## Join a Lookup Table
--- MAGIC
--- MAGIC Lookup tables are normally small, historical tables used to enrich new data passing through an ETL pipeline.
--- MAGIC
--- MAGIC In this example, we will use a small lookup table to get details for each item sold by this retailer.
--- MAGIC
--- MAGIC **Inner Join:** Selects rows that have matching values in both relations. This is the default join in Spark SQL.
-
--- COMMAND ----------
-
-CREATE OR REPLACE VIEW sales_enriched AS
-SELECT *
-FROM (SELECT *, explode(items) item FROM sales) a
-INNER JOIN item_lookup b
-ON a.item.item_id = b.item_id;
-
-SELECT * FROM sales_enriched
-
--- COMMAND ----------
-
--- MAGIC %md
--- MAGIC ## Examine Join Strategy
--- MAGIC Use the `EXPLAIN` command to view the physical plan used to execute the query.
--- MAGIC Look for BroadcastHashJoin or BroadcastExchange.
-
--- COMMAND ----------
-
-EXPLAIN FORMATTED
-SELECT * FROM sales_enriched
-
--- COMMAND ----------
-
--- MAGIC %md
--- MAGIC By default, Spark performed a broadcast join rather than a shuffle join. That is, it broadcasted `item_lookup` to the larger `sales`, replicating the smaller dataset on each node of our cluster. This avoided having to move the larger dataset across the cluster.
-
--- COMMAND ----------
-
--- MAGIC %md `autoBroadcastJoinThreshold`
--- MAGIC
--- MAGIC We can access configuration settings to take a look at the broadcast join threshold. This specifies the maximum size in bytes for a table that broadcasts to worker nodes.
-
--- COMMAND ----------
-
-SET spark.sql.autoBroadcastJoinThreshold
-
--- COMMAND ----------
-
--- MAGIC %md Re-examine physical plan when join is executed while broadcasting is disabled
--- MAGIC 1. Drop threshold to `-1` to disable broadcasting
--- MAGIC 1. Explain join
--- MAGIC
--- MAGIC Now notice the lack of broadcast in the query physical plan.
-
--- COMMAND ----------
-
-SET spark.sql.autoBroadcastJoinThreshold=-1
-
--- COMMAND ----------
-
--- MAGIC %md Notice a sort merge join is performed, rather than a broadcast join.
-
--- COMMAND ----------
-
-EXPLAIN FORMATTED
-SELECT * FROM sales_enriched
-
--- COMMAND ----------
-
--- MAGIC %md
--- MAGIC ## Broadcast Join Hint
--- MAGIC Use a join hint to suggest broadcasting the lookup table for the join.
--- MAGIC
--- MAGIC The join side with this hint will be broadcast regardless of `autoBroadcastJoinThreshold`.
-
--- COMMAND ----------
-
-EXPLAIN FORMATTED
-SELECT /*+ BROADCAST(b) */ *
-FROM (SELECT *, explode(items) item FROM sales) a
-INNER JOIN item_lookup b
-ON a.item.item_id = b.item_id
-
--- COMMAND ----------
-
--- MAGIC %md Reset the original threshold.
-
--- COMMAND ----------
-
-SET spark.sql.autoBroadcastJoinThreshold=10485760b
-
--- COMMAND ----------
-
--- MAGIC %md ## Pivot Tables
--- MAGIC The `PIVOT` clause is used for data perspective. We can get the aggregated values based on specific column values, which will be turned to multiple columns used in `SELECT` clause. The `PIVOT` clause can be specified after the table name or subquery.
--- MAGIC
--- MAGIC **`SELECT * FROM ()`**: The `SELECT` statement inside the parentheses is the input for this table.
--- MAGIC
--- MAGIC **`PIVOT`**: The first argument in the clause is an aggregate function and the column to be aggregated. Then, we specify the pivot column in the `FOR` subclause. The `IN` operator contains the pivot column values.
-
--- COMMAND ----------
-
--- MAGIC %md
--- MAGIC Use `PIVOT` to create a new `transactions` table that flattens out the information contained in the `sales` table and joins this with `users` table.
--- MAGIC
--- MAGIC Join these tables on email address, but without propagating this email address forward (to avoid potential PII exposure in downstream tables).
-
--- COMMAND ----------
-
-CREATE OR REPLACE TABLE transactions AS
-
-SELECT * FROM (
- SELECT
- user_id,
- order_id,
- transaction_timestamp,
- total_item_quantity,
- purchase_revenue_in_usd,
- unique_items,
- a.item.item_id item_id,
- a.item.quantity quantity
- FROM sales_enriched a
- INNER JOIN users b
- ON a.email = b.email
-) PIVOT (
- sum(quantity) FOR item_id in (
- 'P_FOAM_K',
- 'M_STAN_Q',
- 'P_FOAM_S',
- 'M_PREM_Q',
- 'M_STAN_F',
- 'M_STAN_T',
- 'M_PREM_K',
- 'M_PREM_F',
- 'M_STAN_K',
- 'M_PREM_T',
- 'P_DOWN_S',
- 'P_DOWN_K'
- )
-)
-
--- COMMAND ----------
-
-SELECT * FROM transactions
-
--- COMMAND ----------
-
--- MAGIC %md-sandbox
--- MAGIC © 2022 Databricks, Inc. All rights reserved.
--- MAGIC Apache, Apache Spark, Spark and the Spark logo are trademarks of the Apache Software Foundation.
--- MAGIC
--- MAGIC Privacy Policy | Terms of Use | Support
diff --git a/Data-Engineering-With-Databricks/02 - ELT with Spark SQL and Python/DE 2.2.8 - Nested Data & Advanced Transformations.sql b/Data-Engineering-With-Databricks/02 - ELT with Spark SQL and Python/DE 2.2.8 - Nested Data & Advanced Transformations.sql
deleted file mode 100644
index 720f905..0000000
--- a/Data-Engineering-With-Databricks/02 - ELT with Spark SQL and Python/DE 2.2.8 - Nested Data & Advanced Transformations.sql
+++ /dev/null
@@ -1,159 +0,0 @@
--- Databricks notebook source
--- MAGIC %md-sandbox
--- MAGIC
--- MAGIC
--- MAGIC

--- MAGIC
-
--- COMMAND ----------
-
--- MAGIC %md # Advanced Transformations
--- MAGIC
--- MAGIC Manipulate nested data and work with advanced functions in SQL.
--- MAGIC
--- MAGIC ##### Objectives
--- MAGIC - Flatten nested data
--- MAGIC - Apply advanced functions to transform data
-
--- COMMAND ----------
-
--- MAGIC %md
--- MAGIC ## Run Setup
--- MAGIC
--- MAGIC The setup script will create the data and declare necessary values for the rest of this notebook to execute.
-
--- COMMAND ----------
-
--- MAGIC %run ../Includes/setup-transactions
-
--- COMMAND ----------
-
--- MAGIC %md We will work with the `events_raw` table we loaded earlier from `event-kafka.json`.
-
--- COMMAND ----------
-
-SELECT * FROM events_raw
-
--- COMMAND ----------
-
--- MAGIC %md Earlier in the module, we merged a clean version of this new dataset, `events_update` into our original `events` dataset. The raw events data was cleaned by parsing and flattening the relevant JSON data in the `value` column, and then removing duplicate event records. We'll go through that process here.
-
--- COMMAND ----------
-
--- MAGIC %md ## Parse JSON
--- MAGIC
--- MAGIC Parse JSON string with `from_json` and schema definition.
-
--- COMMAND ----------
-
-CREATE OR REPLACE TEMP VIEW events_raw_json AS
-SELECT from_json(cast(value as STRING), ("device STRING, ecommerce STRUCT< purchase_revenue_in_usd: DOUBLE, total_item_quantity: BIGINT, unique_items: BIGINT>, event_name STRING, event_previous_timestamp BIGINT, event_timestamp BIGINT, geo STRUCT< city: STRING, state: STRING>, items ARRAY< STRUCT< coupon: STRING, item_id: STRING, item_name: STRING, item_revenue_in_usd: DOUBLE, price_in_usd: DOUBLE, quantity: BIGINT>>, traffic_source STRING, user_first_touch_timestamp BIGINT, user_id STRING")) json
-FROM events_raw;
-
--- COMMAND ----------
-
--- MAGIC %md ## Flatten Nested Data
--- MAGIC Deduplicate events by `user_id` and `event_timestamp`.
--- MAGIC
--- MAGIC Promote subfields with `json.*` to flatten data.
-
--- COMMAND ----------
-
-CREATE OR REPLACE TEMP VIEW deduped_events AS
-WITH deduped_events_raw AS (
- SELECT max(json) json FROM events_raw_json
- GROUP BY json.user_id, json.event_timestamp
-)
-SELECT json.* FROM deduped_events_raw
-
--- COMMAND ----------
-
--- MAGIC %md ## Higher Order Functions
--- MAGIC Higher order functions in Spark SQL allow you to work directly with complex data types. When working with hierarchical data, records are frequently stored as array or map type objects. Higher-order functions allow you to transform data while preserving the original structure.
--- MAGIC
--- MAGIC Higher order functions include:
--- MAGIC - `FILTER` filters an array using the given lambda function.
--- MAGIC - `EXIST` tests whether a statement is true for one or more elements in an array.
--- MAGIC - `TRANSFORM` uses the given lambda function to transform all elements in an array.
--- MAGIC - `REDUCE` takes two lambda functions to reduce the elements of an array to a single value by merging the elements into a buffer, and the apply a finishing function on the final buffer.
-
--- COMMAND ----------
-
--- MAGIC %md
--- MAGIC ## Filter
--- MAGIC Remove items that are not king-sized from all records in our `items` column. We can use the `FILTER` function to create a new column that excludes that value from each array.
--- MAGIC
--- MAGIC **`FILTER (items, i -> i.item_id LIKE "%K") AS king_items`**
--- MAGIC
--- MAGIC In the statement above:
--- MAGIC - **`FILTER`** : the name of the higher-order function
--- MAGIC - **`items`** : the name of our input array
--- MAGIC - **`i`** : the name of the iterator variable. You choose this name and then use it in the lambda function. It iterates over the array, cycling each value into the function one at a time.
--- MAGIC - **`->`** : Indicates the start of a function
--- MAGIC - **`i.item_id LIKE "%K"`** : This is the function. Each value is checked to see if it ends with the capital letter K. If it is, it gets filtered into the new column, `king_items`
-
--- COMMAND ----------
-
--- filter for sales of only king sized items
-SELECT
- order_id,
- items,
- FILTER (items, i -> i.item_id LIKE "%K") AS king_items
-FROM sales
-
--- COMMAND ----------
-
--- MAGIC %md
--- MAGIC You may write a filter that produces a lot of empty arrays in the created column. When that happens, it can be useful to use a `WHERE` clause to show only non-empty array values in the returned column.
--- MAGIC
--- MAGIC In this example, we accomplish that by using a subquery (a query within a query). They are useful for performing an operation in multiple steps. In this case, we're using it to create the named column that we will use with a `WHERE` clause.
-
--- COMMAND ----------
-
-CREATE OR REPLACE TEMP VIEW king_size_sales AS
-
-SELECT order_id, king_items
-FROM (
- SELECT
- order_id,
- FILTER (items, i -> i.item_id LIKE "%K") AS king_items
- FROM sales)
-WHERE size(king_items) > 0;
-
-SELECT * FROM king_size_sales
-
--- COMMAND ----------
-
--- MAGIC %md
--- MAGIC ## Transform
--- MAGIC Built-in functions are designed to operate on a single, simple data type within a cell; they cannot process array values. `TRANSFORM` can be particularly useful when you want to apply an existing function to each element in an array.
--- MAGIC
--- MAGIC Compute the total revenue from king-sized items per order.
--- MAGIC
--- MAGIC **`TRANSFORM(king_items, k -> CAST(k.item_revenue_in_usd * 100 AS INT)) AS item_revenues`**
--- MAGIC
--- MAGIC In the statement above, for each value in the input array, we extract the item's revenue value, multiply it by 100, and cast the result to integer. Note that we're using the same kind as references as in the previous command, but we name the iterator with a new variable, **`k`**.
-
--- COMMAND ----------
-
--- get total revenue from king items per order
-CREATE OR REPLACE TEMP VIEW king_item_revenues AS
-
-SELECT
- order_id,
- king_items,
- TRANSFORM (
- king_items,
- k -> CAST(k.item_revenue_in_usd * 100 AS INT)
- ) AS item_revenues
-FROM king_size_sales;
-
-SELECT * FROM king_item_revenues
-
--- COMMAND ----------
-
--- MAGIC %md-sandbox
--- MAGIC © 2022 Databricks, Inc. All rights reserved.
--- MAGIC Apache, Apache Spark, Spark and the Spark logo are trademarks of the Apache Software Foundation.
--- MAGIC
--- MAGIC Privacy Policy | Terms of Use | Support
diff --git a/Data-Engineering-With-Databricks/02 - ELT with Spark SQL and Python/DE 2.2.9 - Views in the Lakehouse.sql b/Data-Engineering-With-Databricks/02 - ELT with Spark SQL and Python/DE 2.2.9 - Views in the Lakehouse.sql
deleted file mode 100644
index 01c4908..0000000
--- a/Data-Engineering-With-Databricks/02 - ELT with Spark SQL and Python/DE 2.2.9 - Views in the Lakehouse.sql
+++ /dev/null
@@ -1,144 +0,0 @@
--- Databricks notebook source
--- MAGIC %md-sandbox
--- MAGIC
--- MAGIC
--- MAGIC

--- MAGIC
-
--- COMMAND ----------
-
--- MAGIC %md # Views in the Lakehouse
--- MAGIC
--- MAGIC Register views to create stable, secure queries in the Lakehouse.
--- MAGIC
--- MAGIC In this lesson, we'll give a quick overview of how stored views are created and managed.
--- MAGIC
--- MAGIC
--- MAGIC Rather than trying to capture every possible metric in our view, we'll create a summary of values that might be of interest to our analysts.
--- MAGIC
--- MAGIC 0. Views as saved queries
--- MAGIC 0. Aliasing tables to views
--- MAGIC 0. Dynamic views
-
--- COMMAND ----------
-
--- MAGIC %md
--- MAGIC ## Run Setup
--- MAGIC
--- MAGIC The setup script will create the data and declare necessary values for the rest of this notebook to execute.
-
--- COMMAND ----------
-
--- MAGIC %run ../Includes/setup-transactions
-
--- COMMAND ----------
-
--- MAGIC %md ## Views as saved queries
--- MAGIC
--- MAGIC A Spark DataFrame and a view are nearly identical constructs. By calling `EXPLAIN` on our DataFrame, we can see that our source table is a set of instructions to deserialize the files containing our data.
-
--- COMMAND ----------
-
-EXPLAIN FORMATTED SELECT * FROM transactions
-
--- COMMAND ----------
-
--- MAGIC %md ## Aliasing Tables to Views
--- MAGIC
--- MAGIC #### Examine Clickpath Data
--- MAGIC Define logic that creates or updates a table that aggregates the number of times each user took a particular action and then join this information with the flattened view of transactions created earlier. This will combine data from the `events` and `transactions` tables in order to create a record of all actions a user took on the site and what their final order looked like.
--- MAGIC
--- MAGIC This `clickpaths` view should contain all the fields from your `transactions` table, as well as a count of every `event_name` in its own column. Each user that completed a purchase should have a single row in the final table.
-
--- COMMAND ----------
-
-CREATE OR REPLACE VIEW clickpaths AS
- WITH user_event_counts AS (
- SELECT * FROM (
- SELECT user_id user, event_name
- FROM events
- ) PIVOT ( count(*) FOR event_name IN (
- "cart", "pillows", "login", "main", "careers", "guest", "faq", "down", "warranty", "finalize",
- "register", "shipping_info", "checkout", "mattresses", "add_item", "press", "email_coupon",
- "cc_info", "foam", "reviews", "original", "delivery", "premium" )))
-SELECT *
-FROM user_event_counts a
-JOIN transactions b
- ON a.user = b.user_id;
-
--- COMMAND ----------
-
--- MAGIC %md
--- MAGIC We can see that our view is simply storing the Spark plan for our query.
-
--- COMMAND ----------
-
-EXPLAIN FORMATTED SELECT * FROM clickpaths
-
--- COMMAND ----------
-
--- MAGIC %md
--- MAGIC When we execute a query against this view, we will process the plan to generate the logically correct result.
--- MAGIC
--- MAGIC Note that while the data may end up in the Delta Cache, this result is not guaranteed to be persisted, and is only cached for the currently active cluster.
-
--- COMMAND ----------
-
-SELECT * FROM clickpaths WHERE login = True
-
--- COMMAND ----------
-
-SELECT *
-FROM clickpaths
-WHERE user_id = "UA000000102360871"
-
--- COMMAND ----------
-
--- MAGIC %md ## Dynamic Views
--- MAGIC Databricks dynamic views allow user or group identity ACLs to be applied to data at the column (or row) level.
--- MAGIC
--- MAGIC Database administrators can configure data access privileges to disallow access to a source table and only allow users to query a redacted view. Users with sufficient privileges will be able to see all fields, while restricted users will be shown arbitrary results, as defined at view creation.
-
--- COMMAND ----------
-
--- MAGIC %md
--- MAGIC Consider our `sales` table with the following columns.
-
--- COMMAND ----------
-
-DESCRIBE sales
-
--- COMMAND ----------
-
-CREATE OR REPLACE VIEW sales_view AS
-SELECT
- order_id,
- transaction_timestamp,
- CASE
- WHEN is_member('ade_demo') THEN email
- ELSE 'REDACTED'
- END AS email,
- CASE
- WHEN is_member('ade_demo') THEN purchase_revenue_in_usd
- ELSE 'REDACTED'
- END AS purchase_revenue_in_usd
-FROM sales
-
--- COMMAND ----------
-
-SELECT * FROM sales_view
-
--- COMMAND ----------
-
--- MAGIC %md
--- MAGIC Now when we query from `sales_view`, only members of the group `ade_demo` will be able to see results in plain text.
--- MAGIC
--- MAGIC **NOTE:** You may not have privileges to create groups or assign membership. Your instructor should be able to demonstrate how group membership will change query results.
-
--- COMMAND ----------
-
--- MAGIC %md-sandbox
--- MAGIC © 2022 Databricks, Inc. All rights reserved.
--- MAGIC Apache, Apache Spark, Spark and the Spark logo are trademarks of the Apache Software Foundation.
--- MAGIC
--- MAGIC Privacy Policy | Terms of Use | Support
diff --git a/Data-Engineering-With-Databricks/02 - ELT with Spark SQL and Python/Labs/DE 2.1.3L - Databases, Tables & Views Lab.sql b/Data-Engineering-With-Databricks/02 - ELT with Spark SQL and Python/Labs/DE 2.1.3L - Databases, Tables & Views Lab.sql
deleted file mode 100644
index 59aa522..0000000
--- a/Data-Engineering-With-Databricks/02 - ELT with Spark SQL and Python/Labs/DE 2.1.3L - Databases, Tables & Views Lab.sql
+++ /dev/null
@@ -1,340 +0,0 @@
--- Databricks notebook source
--- MAGIC %md-sandbox
--- MAGIC
--- MAGIC
--- MAGIC

--- MAGIC
-
--- COMMAND ----------
-
--- MAGIC %md
--- MAGIC # Databases, Tables, and Views Lab
--- MAGIC
--- MAGIC ## Learning Objectives
--- MAGIC **In this lab, you will create and explore interactions between various relational entities, including:**
--- MAGIC
--- MAGIC - Databases
--- MAGIC - Tables (managed and external)
--- MAGIC - Views (views, temp views, and global temp views)
--- MAGIC
--- MAGIC **Resources**
--- MAGIC * [Databases and Tables - Databricks Docs](https://docs.databricks.com/user-guide/tables.html)
--- MAGIC * [Managed and Unmanaged Tables](https://docs.databricks.com/user-guide/tables.html#managed-and-unmanaged-tables)
--- MAGIC * [Creating a Table with the UI](https://docs.databricks.com/user-guide/tables.html#create-a-table-using-the-ui)
--- MAGIC * [Create a Local Table](https://docs.databricks.com/user-guide/tables.html#create-a-local-table)
--- MAGIC * [Saving to Persistent Tables](https://spark.apache.org/docs/latest/sql-data-sources-load-save-functions.html#saving-to-persistent-tables)
-
--- COMMAND ----------
-
--- MAGIC %md
--- MAGIC ### Getting Started
--- MAGIC
--- MAGIC Run the following cell to configure variables and datasets for this lesson.
-
--- COMMAND ----------
-
--- MAGIC %run ../../Includes/setup-meta
-
--- COMMAND ----------
-
--- MAGIC %md
--- MAGIC ## Overview of the Data
--- MAGIC
--- MAGIC The data include multiple entries from a selection of weather stations, including average temperatures recorded in either Fahrenheit or Celsius. The schema for the table:
--- MAGIC
--- MAGIC |ColumnName | DataType| Description|
--- MAGIC |------------|---------|------------|
--- MAGIC |NAME |string | Station name |
--- MAGIC |STATION |string | Unique ID |
--- MAGIC |LATITUDE |float | Latitude |
--- MAGIC |LONGITUDE |float | Longitude |
--- MAGIC |ELEVATION |float | Elevation |
--- MAGIC |DATE |date | YYYY-MM-DD |
--- MAGIC |UNIT |string | Temperature units |
--- MAGIC |TAVG |float | Average temperature |
--- MAGIC
--- MAGIC This data is stored in the Parquet format; preview the data with the query below.
-
--- COMMAND ----------
-
-SELECT *
-FROM parquet.`${c.userhome}/datasets/weather`
-
--- COMMAND ----------
-
--- MAGIC %md
--- MAGIC ## Create a Database
--- MAGIC
--- MAGIC Create a database in the default location using the `{c.database}` variable defined in setup script.
-
--- COMMAND ----------
-
--- TODO
-
- ${c.database}
-
--- COMMAND ----------
-
--- MAGIC %md
--- MAGIC ## Change to Your New Database
--- MAGIC
--- MAGIC `USE` your newly created database.
-
--- COMMAND ----------
-
--- TODO
-
- ${c.database}
-
--- COMMAND ----------
-
--- MAGIC %md
--- MAGIC ## Create a Managed Table
--- MAGIC Use a CTAS statement to create a managed table named `weather_managed`.
-
--- COMMAND ----------
-
--- TODO
-
-
-SELECT *
-FROM parquet.`${c.userhome}/datasets/weather`
-
--- COMMAND ----------
-
--- MAGIC %md
--- MAGIC ## Create an External Table
--- MAGIC
--- MAGIC Recall that an external table differs from a managed table through specification of a location. Create an external table called `weather_external` below.
-
--- COMMAND ----------
-
--- TODO
-
-
-LOCATION "${c.userhome}/lab/external"
-AS SELECT *
-FROM parquet.`${c.userhome}/datasets/weather`
-
--- COMMAND ----------
-
--- MAGIC %md
--- MAGIC ## Examine Table Details
--- MAGIC Use the SQL command `DESCRIBE EXTENDED table_name` to examine the two weather tables.
-
--- COMMAND ----------
-
-DESCRIBE EXTENDED weather_managed
-
--- COMMAND ----------
-
-DESCRIBE EXTENDED weather_external
-
--- COMMAND ----------
-
--- MAGIC %md
--- MAGIC Run the following helper code to extract and compare the table locations.
-
--- COMMAND ----------
-
--- MAGIC %python
--- MAGIC def getTableLocation(tableName):
--- MAGIC return spark.sql(f"DESCRIBE EXTENDED {tableName}").select("data_type").filter("col_name = 'Location'").first()[0]
-
--- COMMAND ----------
-
--- MAGIC %python
--- MAGIC managedTablePath = getTableLocation("weather_managed")
--- MAGIC externalTablePath = getTableLocation("weather_external")
--- MAGIC
--- MAGIC print(f"""The weather_managed table is saved at:
--- MAGIC
--- MAGIC {managedTablePath}
--- MAGIC
--- MAGIC The weather_external table is saved at:
--- MAGIC
--- MAGIC {externalTablePath}""")
-
--- COMMAND ----------
-
--- MAGIC %md
--- MAGIC List the contents of these directories to confirm that data exists in both locations.
-
--- COMMAND ----------
-
--- MAGIC %python
--- MAGIC dbutils.fs.ls(managedTablePath)
-
--- COMMAND ----------
-
--- MAGIC %python
--- MAGIC dbutils.fs.ls(externalTablePath)
-
--- COMMAND ----------
-
--- MAGIC %md
--- MAGIC ### Check Directory Contents after Dropping Database and All Tables
--- MAGIC The `CASCADE` keyword will accomplish this.
--- MAGIC
--- MAGIC **NOTE**: You will encounter an error when listing your `managedTablePath`
-
--- COMMAND ----------
-
--- TODO
-
- ${c.database}
-
--- COMMAND ----------
-
--- MAGIC %python
--- MAGIC dbutils.fs.ls(managedTablePath)
-
--- COMMAND ----------
-
--- MAGIC %python
--- MAGIC dbutils.fs.ls(externalTablePath)
-
--- COMMAND ----------
-
--- MAGIC %python
--- MAGIC dbutils.fs.ls(userhome)
-
--- COMMAND ----------
-
--- MAGIC %md
--- MAGIC **This highlights the main differences between managed and external tables.** By default, the files associated with managed tables will be stored to this location on the root DBFS storage linked to the workspace, and will be deleted when a table is dropped.
--- MAGIC
--- MAGIC Files for external tables will be persisted in the location provided at table creation, preventing users from inadvertently deleting underlying files. **External tables can easily be migrated to other databases or renamed, but these operations with managed tables will require rewriting ALL underlying files.**
-
--- COMMAND ----------
-
--- MAGIC %md
--- MAGIC ## Create a Database with a Specified Path
--- MAGIC
--- MAGIC Assuming you dropped your database in the last step, you can use the same `database` name.
-
--- COMMAND ----------
-
-CREATE DATABASE ${c.database} LOCATION '${c.userhome}/${c.database}'
-
--- COMMAND ----------
-
--- MAGIC %md
--- MAGIC Recreate your `weather_managed` table in this new database and print out the location of this table.
-
--- COMMAND ----------
-
--- TODO
-
-
-
--- COMMAND ----------
-
--- MAGIC %python
--- MAGIC getTableLocation("weather_managed")
-
--- COMMAND ----------
-
--- MAGIC %md
--- MAGIC While here we're using the `userhome` directory created on the DBFS root, _any_ object store can be used as the database directory. **Defining database directories for groups of users can greatly reduce the chances of accidental data exfiltration**.
-
--- COMMAND ----------
-
--- MAGIC %md
--- MAGIC ## Views and their Scoping
--- MAGIC
--- MAGIC Using the provided `AS` clause, register:
--- MAGIC - a view named `celsius`
--- MAGIC - a temporary view named `celsius_temp`
--- MAGIC - a global temp view named `celsius_global`
-
--- COMMAND ----------
-
--- TODO
-
-
-AS (SELECT *
- FROM weather_managed
- WHERE UNIT = "C")
-
--- COMMAND ----------
-
--- MAGIC %md
--- MAGIC Now create a temporary view.
-
--- COMMAND ----------
-
--- TODO
-
-
-AS (SELECT *
- FROM weather_managed
- WHERE UNIT = "C")
-
--- COMMAND ----------
-
--- MAGIC %md
--- MAGIC Now register a global temp view.
-
--- COMMAND ----------
-
--- TODO
-
-
-AS (SELECT *
- FROM weather_managed
- WHERE UNIT = "C")
-
--- COMMAND ----------
-
--- MAGIC %md
--- MAGIC Views will be displayed alongside tables when listing from the catalog.
-
--- COMMAND ----------
-
-SHOW TABLES
-
--- COMMAND ----------
-
--- MAGIC %md
--- MAGIC Note the following:
--- MAGIC - The view is associated with the current database. This view will be available to any user that can access this database and will persist between sessions.
--- MAGIC - The temp view is not associated with any database. The temp view is ephemeral and is only accessible in the current SparkSession.
--- MAGIC - The global temp view does not appear in our catalog. **Global temp views will always register to the `global_temp` database**. The `global_temp` database is ephemeral but tied to the lifetime of the cluster; however, it is only accessible by notebooks attached to the same cluster on which it was created.
-
--- COMMAND ----------
-
-SELECT * FROM global_temp.celsius_global
-
--- COMMAND ----------
-
--- MAGIC %md
--- MAGIC While no job was triggered when defining these views, a job is triggered _each time_ a query is executed against the view.
-
--- COMMAND ----------
-
--- MAGIC %md
--- MAGIC ## Clean Up
--- MAGIC Drop the database and all tables to clean up your workspace.
-
--- COMMAND ----------
-
-DROP DATABASE ${c.database} CASCADE
-
--- COMMAND ----------
-
--- MAGIC %md
--- MAGIC ## Synopsis
--- MAGIC
--- MAGIC In this lab we:
--- MAGIC - Created and deleted databases
--- MAGIC - Explored behavior of managed and external tables
--- MAGIC - Learned about the scoping of views
-
--- COMMAND ----------
-
--- MAGIC %md-sandbox
--- MAGIC © 2022 Databricks, Inc. All rights reserved.
--- MAGIC Apache, Apache Spark, Spark and the Spark logo are trademarks of the Apache Software Foundation.
--- MAGIC
--- MAGIC Privacy Policy | Terms of Use | Support
diff --git a/Data-Engineering-With-Databricks/02 - ELT with Spark SQL and Python/Labs/DE 2.3.3L - Python for SQL Lab.py b/Data-Engineering-With-Databricks/02 - ELT with Spark SQL and Python/Labs/DE 2.3.3L - Python for SQL Lab.py
deleted file mode 100644
index 3267c26..0000000
--- a/Data-Engineering-With-Databricks/02 - ELT with Spark SQL and Python/Labs/DE 2.3.3L - Python for SQL Lab.py
+++ /dev/null
@@ -1,232 +0,0 @@
-# Databricks notebook source
-# MAGIC %md-sandbox
-# MAGIC
-# MAGIC
-# MAGIC

-# MAGIC
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC # Just Enough Python for Databricks SQL Lab
-# MAGIC
-# MAGIC ## Learning Objectives
-# MAGIC By the end of this lesson, students should be able to:
-# MAGIC * Review basic Python code and describe expected outcomes of code execution
-# MAGIC * Reason through control flow statements in Python functions
-# MAGIC * Add parameters to a SQL query by wrapping it in a Python function
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC # Reviewing Python Basics
-# MAGIC
-# MAGIC In the previous notebook, we briefly explored using `spark.sql()` to execute arbitrary SQL commands from Python.
-# MAGIC
-# MAGIC Look at the following 3 cells. Before executing each cell, identify:
-# MAGIC 1. The expected output of cell execution
-# MAGIC 1. What logic is being executed
-# MAGIC 1. Changes to the resultant state of the environment
-# MAGIC
-# MAGIC Then execute the cells, compare the results to your expectations, and see the explanations below.
-
-# COMMAND ----------
-
-course = "python_for_sql"
-
-# COMMAND ----------
-
-spark.sql(f"SELECT '{course}'")
-
-# COMMAND ----------
-
-display(spark.sql(f"SELECT '{course}'"))
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC 1. `Cmd 3` assigns a string to a variable. When a variable assignment is successful, no output is displayed to the notebook. A new variable is added to the current execution environment.
-# MAGIC 1. `Cmd 4` executes a SQL query and returns the results as a DataFrame. In this case, the SQL query is just to select a string, so no changes to our environment occur. When a returned DataFrame is not captured, the schema for the DataFrame is displayed alongside the word `DataFrame`.
-# MAGIC 1. `Cmd 5` executes the same SQL query and displays the returned DataFrame. This combination of `display()` and `spark.sql()` most closely mirrors executing logic in a `%sql` cell; the results will always be printed in a formatted table, assuming results are returned by the query; some queries will instead manipulate tables or databases, in which case the work `OK` will print to show successful execution. In this case, no changes to our environment occur from running this code.
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC ## Setting Up a Development Environment
-# MAGIC
-# MAGIC Throughout this course, we use logic similar to the follow cell to capture information about the user currently executing the notebook and create an isolated development database.
-# MAGIC
-# MAGIC The `re` library is the [standard Python library for regex](https://docs.python.org/3/library/re.html).
-# MAGIC
-# MAGIC Databricks SQL has a special method to capture the username of the `current_user()`; and the `.first()[0]` code is a quick hack to capture the first row of the first column of a query executed with `spark.sql()` (in this case, we do this safely knowing that there will only be 1 row and 1 column).
-# MAGIC
-# MAGIC All other logic below is just string formatting.
-
-# COMMAND ----------
-
-import re
-
-username = spark.sql("SELECT current_user()").first()[0]
-userhome = f"dbfs:/user/{username}/{course}"
-database = f"""{course}_{re.sub("[^a-zA-Z0-9]", "_", username)}_db"""
-
-print(f"""
-username: {username}
-userhome: {userhome}
-database: {database}
-""")
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC Below, we add a simple control flow statement to this logic to create and use this user-specific database. Optionally, we will reset this database and drop all of the contents on repeat execution. (Note the the default mode is `"reset"`).
-
-# COMMAND ----------
-
-def create_database(course, mode="reset"):
- import re
-
- username = spark.sql("SELECT current_user()").first()[0]
- userhome = f"dbfs:/user/{username}/{course}"
- database = f"""{course}_{re.sub("[^a-zA-Z0-9]", "_", username)}_db"""
-
- print(f"""
- username: {username}
- userhome: {userhome}
- database: {database}
- """)
-
- if mode == "reset":
- spark.sql(f"DROP DATABASE IF EXISTS {database} CASCADE")
- dbutils.fs.rm(userhome, True)
- spark.sql(f"""
- CREATE DATABASE IF NOT EXISTS {database}
- LOCATION '{userhome}'
- """)
- spark.sql(f"USE {database}")
-
-create_database(course)
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC While this logic as defined is geared toward isolating students in shared workspaces for instructional purposes, the same basic design could be leveraged for testing new logic in an isolated environment before pushing to production.
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC ## Handling Errors Gracefully
-# MAGIC
-# MAGIC Review the logic in the function below.
-# MAGIC
-# MAGIC Note that we've just declared a new database that currently contains no tables.
-
-# COMMAND ----------
-
-def query_or_make_demo_table(table):
- try:
- display(spark.sql(f"SELECT * FROM {table}"))
- except:
- spark.sql(f"""
- CREATE TABLE {table}
- (id INT, name STRING, value DOUBLE, state STRING)
- """)
- spark.sql(f"""
- INSERT INTO {table}
- VALUES (1, "Yve", 1.0, "CA"),
- (2, "Omar", 2.5, "NY"),
- (3, "Elia", 3.3, "OH"),
- (4, "Rebecca", 4.7, "TX"),
- (5, "Ameena", 5.3, "CA"),
- (6, "Ling", 6.6, "NY"),
- (7, "Pedro", 7.1, "KY")
- """)
- display(spark.sql(f"SELECT * FROM {table}"))
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC Try to identify the following before executing the next cell:
-# MAGIC 1. The expected output of cell execution
-# MAGIC 1. What logic is being executed
-# MAGIC 1. Changes to the resultant state of the environment
-
-# COMMAND ----------
-
-query_or_make_demo_table("demo_table")
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC Now answer the same three questions before running the same query below.
-
-# COMMAND ----------
-
-query_or_make_demo_table("demo_table")
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC - On the first execution, the table `demo_table` did not yet exist. As such, the attempt to return the contents of the table created an error, which resulted in our `except` block of logic executing. This block:
-# MAGIC 1. Created the table
-# MAGIC 1. Inserted values
-# MAGIC 1. Returned the contents of the table
-# MAGIC - On the second execution, the table `demo_table` already exists, and so the first query in the `try` block executes without error. As a result, we just display the results of the query without modifying anything in our environment.
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC ## Adapting SQL to Python
-# MAGIC Let's consider the following SQL query against our demo table created above.
-
-# COMMAND ----------
-
-# MAGIC %sql
-# MAGIC SELECT id, value
-# MAGIC FROM demo_table
-# MAGIC WHERE state = "CA"
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC Let's use this simple example to practice creating a Python function that adds optional functionality.
-# MAGIC
-# MAGIC Our target function will:
-# MAGIC * Always return only the `id` and `value` column from the a table named `demo_table`
-# MAGIC * Allow filtering results by state, but default to all states
-# MAGIC * Optionally return the query result object (a PySpark DataFrame)
-# MAGIC
-# MAGIC Stretch Goal:
-# MAGIC * Add logic to check that if the value passed for the `state` filter contains two uppercase letters
-# MAGIC
-# MAGIC Some starter logic has been provided below.
-
-# COMMAND ----------
-
-# TODO
-def preview_values(state=None, return_results=False):
- query =
- if state is not None:
-
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC The assert statements below can be used to check whether or not your function works as intended.
-
-# COMMAND ----------
-
-import pyspark.sql.dataframe
-
-assert preview_values(return_results=True).columns == ["id", "value"], "Query should only return `id` and `value` columns"
-assert preview_values() == None, "Function should not return anything by default"
-assert type(preview_values(return_results=True)) == pyspark.sql.dataframe.DataFrame, "Function should optionally return the DataFrame results"
-assert preview_values(state="OH", return_results=True).first()[0] == 3, "Function should allow filtering by state"
-
-# COMMAND ----------
-
-# MAGIC %md-sandbox
-# MAGIC © 2022 Databricks, Inc. All rights reserved.
-# MAGIC Apache, Apache Spark, Spark and the Spark logo are trademarks of the Apache Software Foundation.
-# MAGIC
-# MAGIC Privacy Policy | Terms of Use | Support
diff --git a/Data-Engineering-With-Databricks/03 - Incremental Data and Delta Live Tables/DE 3.1.1 - Structured Streaming Concepts.py b/Data-Engineering-With-Databricks/03 - Incremental Data and Delta Live Tables/DE 3.1.1 - Structured Streaming Concepts.py
deleted file mode 100644
index 6d9fa0f..0000000
--- a/Data-Engineering-With-Databricks/03 - Incremental Data and Delta Live Tables/DE 3.1.1 - Structured Streaming Concepts.py
+++ /dev/null
@@ -1,559 +0,0 @@
-# Databricks notebook source
-# MAGIC %md-sandbox
-# MAGIC
-# MAGIC
-# MAGIC

-# MAGIC
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC # Structured Streaming Concepts
-# MAGIC
-# MAGIC ## Learning Objectives
-# MAGIC By the end of this lesson, you should be able to:
-# MAGIC * Describe the programming model used by Spark Structured Streaming
-# MAGIC * Configure required options to perform a streaming read on a source
-# MAGIC * Describe the requirements for end-to-end fault tolerance
-# MAGIC * Configure required options to perform a streaming write to a sink
-# MAGIC * Interact with streaming queries and stop active streams
-# MAGIC
-# MAGIC ## Datasets Used
-# MAGIC The source contains smartphone accelerometer samples from devices and users with the following columns:
-# MAGIC
-# MAGIC | Field | Description |
-# MAGIC | ------------- | ----------- |
-# MAGIC | Arrival_Time | time data was received |
-# MAGIC | Creation_Time | event time |
-# MAGIC | Device | type of Model |
-# MAGIC | Index | unique identifier of event |
-# MAGIC | Model | i.e Nexus4 |
-# MAGIC | User | unique user identifier |
-# MAGIC | geolocation | city & country |
-# MAGIC | gt | transportation mode |
-# MAGIC | id | unused null field |
-# MAGIC | x | acceleration in x-dir |
-# MAGIC | y | acceleration in y-dir |
-# MAGIC | z | acceleration in z-dir |
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC
-# MAGIC ## Getting Started
-# MAGIC
-# MAGIC Run the following cell to configure our "classroom."
-
-# COMMAND ----------
-
-# MAGIC %run ../Includes/classic-setup $mode="reset"
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC
-# MAGIC ## Micro-Batches as a Table
-# MAGIC
-# MAGIC For more information, see the analogous section in the [Structured Streaming Programming Guide](http://spark.apache.org/docs/latest/structured-streaming-programming-guide.html#basic-concepts) (from which several images have been borrowed).
-# MAGIC
-# MAGIC Spark Structured Streaming approaches streaming data by modeling it as a series of continuous appends to an unbounded table. While similar to defining **micro-batch** logic, this model allows incremental queries to be defined against streaming sources as if they were static input (though the fact that the input is an unbounded tables does impose some constraints).
-# MAGIC
-# MAGIC
-# MAGIC
-# MAGIC ### Basic Concepts
-# MAGIC
-# MAGIC - The developer defines an **input table** by configuring a streaming read against a **source**. The syntax for doing this is similar to working with static data.
-# MAGIC - A **query** is defined against the input table. Both the DataFrames API and Spark SQL can be used to easily define transformations and actions against the input table.
-# MAGIC - This logical query on the input table generates the **results table**. The results table contains the incremental state information of the stream.
-# MAGIC - The **output** of a streaming pipeline will persist updates to the results table by writing to an external **sink**. Generally, a sink will be a durable system such as files or a pub/sub messaging bus.
-# MAGIC - New rows are appended to the input table for each **trigger interval**. These new rows are essentially analogous to micro-batch transactions and will be automatically propagated through the results table to the sink.
-# MAGIC
-# MAGIC
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC ## End-to-end Fault Tolerance
-# MAGIC
-# MAGIC Structured Streaming ensures end-to-end exactly-once fault-tolerance guarantees through _checkpointing_ (discussed below) and Write Ahead Logs.
-# MAGIC
-# MAGIC Structured Streaming sources, sinks, and the underlying execution engine work together to track the progress of stream processing. If a failure occurs, the streaming engine attempts to restart and/or reprocess the data.
-# MAGIC For best practices on recovering from a failed streaming query see docs.
-# MAGIC
-# MAGIC This approach _only_ works if the streaming source is replayable; replayable sources include cloud-based object storage and pub/sub messaging services.
-# MAGIC
-# MAGIC At a high level, the underlying streaming mechanism relies on a couple approaches:
-# MAGIC
-# MAGIC * First, Structured Streaming uses checkpointing and write-ahead logs to record the offset range of data being processed during each trigger interval.
-# MAGIC * Next, the streaming sinks are designed to be _idempotent_—that is, multiple writes of the same data (as identified by the offset) do _not_ result in duplicates being written to the sink.
-# MAGIC
-# MAGIC Taken together, replayable data sources and idempotent sinks allow Structured Streaming to ensure **end-to-end, exactly-once semantics** under any failure condition.
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC
-# MAGIC ## Reading a Stream
-# MAGIC
-# MAGIC The `spark.readStream()` method returns a `DataStreamReader` used to configure and query the stream.
-# MAGIC
-# MAGIC Configuring a streaming read on a source requires:
-# MAGIC * The schema of the data
-# MAGIC * **NOTE**: Some streaming sources allow for schema inference
-# MAGIC * The `format` of the source file format or named connector
-# MAGIC * **NOTE**: `delta` is the default format for all reads and writes in Databricks
-# MAGIC * Additional source-specific configuration options. For example:
-# MAGIC * [`cloudFiles`](https://docs.databricks.com/spark/latest/structured-streaming/auto-loader-s3.html)
-# MAGIC * Kafka
-# MAGIC * The name of the source table or the location of the files in object storage
-# MAGIC
-# MAGIC Below, we define a streaming read against a source (represented by `dataSource`) consisting of files from cloud storage.
-# MAGIC
-# MAGIC **NOTE**: We can think of this `DataStreamReader` as an incremental temp view defined against an ever-appending source table. Just as with a temp view, we only store the query plan when we set up an incremental read. It's not until we query results that we'll see compute happen.
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC
-# MAGIC ### The Schema
-# MAGIC
-# MAGIC Working with `cloudFiles` allows Databricks to automatically infer the schema from most file sources.
-# MAGIC
-# MAGIC Once data is loaded into a Delta Lake table, all schema for downstream incremental reads will be grabbed automatically from the table metadata.
-# MAGIC
-# MAGIC Here, we'll provide an explicit schema for our data.
-
-# COMMAND ----------
-
-schema = """Arrival_Time BIGINT,
- Creation_Time BIGINT,
- Device STRING,
- Index BIGINT,
- Model STRING,
- User STRING,
- geolocation STRUCT<
- city: STRING,
- country: STRING>,
- gt STRING,
- Id BIGINT,
- x DOUBLE,
- y DOUBLE,
- z DOUBLE"""
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC ## Creating a Streaming Temp View
-# MAGIC
-# MAGIC Below we pull all of the above concepts together to define a streaming read.
-# MAGIC
-# MAGIC If we were continuing to build out our query with PySpark, we would capture this as a DataFrame. Instead, we use `createOrReplaceTempView` to create an entity that can be queried locally with SQL.
-
-# COMMAND ----------
-
-(spark
- .readStream
- .schema(schema)
- .format("cloudFiles")
- .option("cloudFiles.format", "json")
- .load(dataSource)
- .createOrReplaceTempView("streaming_tmp_vw")
-)
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC ### Comparing to Static Reads
-# MAGIC
-# MAGIC The above logic provides us with more or less the same result as the static query below.
-
-# COMMAND ----------
-
-spark.sql(f"CREATE OR REPLACE TEMP VIEW static_tmp_vw AS SELECT * FROM json.`{dataSource}`")
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC When we query a static read on data, we display the results of the query at a point in time.
-# MAGIC
-# MAGIC **NOTE**: The `display(spark.table())` pattern shown in the next cell is the same as executing a `SELECT * FROM` for a table or view. Later, we'll see that this allows us to pass streaming temp views back to the DataFrame API to write out a stream.
-
-# COMMAND ----------
-
-display(spark.table("static_tmp_vw"))
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC
-# MAGIC But when we execute a query on a streaming temporary view, we'll continue to update the results of the query as new data arrives in the source.
-# MAGIC
-# MAGIC Think of a query executed against a streaming temp view as an **always-on incremental query**.
-
-# COMMAND ----------
-
-# MAGIC %sql
-# MAGIC SELECT * FROM streaming_tmp_vw
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC Before continuing, click `Stop Execution` at the top of the notebook, `Cancel` immediately under the cell, or run the following cell to stop all active streaming queries.
-
-# COMMAND ----------
-
-for s in spark.streams.active:
- print("Stopping " + s.id)
- s.stop()
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC ## Working with Streaming Data
-# MAGIC We can execute most transformation against streaming temp views the same way we would with static data. Here, we'll run a simple aggregation to get counts of records for each `device`.
-# MAGIC
-# MAGIC Because we are querying a streaming temp view, this becomes a streaming query that executes indefinitely, rather than completing after retrieving a single set of results. For streaming queries like this, Databricks Notebooks include interactive dashboards that allow users to monitor streaming performance. Explore this below.
-# MAGIC
-# MAGIC 
-# MAGIC
-# MAGIC One important note regarding this example: this is merely displaying an aggregation of input as seen by the stream. **None of these records are being persisted anywhere at this point.**
-
-# COMMAND ----------
-
-# MAGIC %sql
-# MAGIC SELECT device, COUNT(device) AS total_records
-# MAGIC FROM streaming_tmp_vw
-# MAGIC GROUP BY device
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC Before continuing, click `Stop Execution` at the top of the notebook, `Cancel` immediately under the cell, or run the following cell to stop all active streaming queries.
-
-# COMMAND ----------
-
-for s in spark.streams.active:
- print("Stopping " + s.id)
- s.stop()
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC ## Persisting Streaming Results
-# MAGIC
-# MAGIC In order to persist incremental results, we need to pass our logic back to the PySpark Structured Streaming DataFrames API.
-# MAGIC
-# MAGIC Above, we created a temp view from a PySpark streaming DataFrame. If we create another temp view from the results of a query against a streaming temp view, we'll again have a streaming temp view.
-
-# COMMAND ----------
-
-# MAGIC %sql
-# MAGIC CREATE OR REPLACE TEMP VIEW device_counts_tmp_vw AS (
-# MAGIC SELECT device, COUNT(device) AS total_records
-# MAGIC FROM streaming_tmp_vw
-# MAGIC GROUP BY device
-# MAGIC )
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC
-# MAGIC ## Writing a Stream
-# MAGIC
-# MAGIC To persist the results of a streaming query, we must write them out to durable storage. The `DataFrame.writeStream` method returns a `DataStreamWriter` used to configure the output.
-# MAGIC
-# MAGIC There are a number of required parameters to configure a streaming write:
-# MAGIC * The `format` of the **output sink**; see documentation
-# MAGIC * The location of the **checkpoint directory**
-# MAGIC * The **output mode**
-# MAGIC * Configurations specific to the output sink, such as:
-# MAGIC * Kafka
-# MAGIC * A custom sink via `writeStream.foreach(...)`
-# MAGIC
-# MAGIC Once the configuration is completed, we trigger the job with a call to `.table()`. If we didn't want to create a table and instead wanted to write directly to storage, we would use `.start()` instead.
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC ### Checkpointing
-# MAGIC
-# MAGIC Databricks creates checkpoints by storing the current state of your streaming job to cloud storage.
-# MAGIC
-# MAGIC Checkpointing combines with write ahead logs to allow a terminated stream to be restarted and continue from where it left off.
-# MAGIC
-# MAGIC Checkpoints cannot be shared between separate streams.
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC
-# MAGIC ## Output Modes
-# MAGIC
-# MAGIC Streaming jobs have output modes similar to static/batch workloads. [More details here](https://spark.apache.org/docs/latest/structured-streaming-programming-guide.html#output-modes).
-# MAGIC
-# MAGIC | Mode | Example | Notes |
-# MAGIC | ------------- | ----------- | --- |
-# MAGIC | **Append** | `.outputMode("append")` | Only the new rows appended to the Result Table since the last trigger are written to the sink. This is the default. |
-# MAGIC | **Complete** | `.outputMode("complete")` | The entire updated Result Table is written to the sink. The individual sink implementation decides how to handle writing the entire table. |
-# MAGIC | **Update** | `.outputMode("update")` | Only the rows in the Result Table that were updated since the last trigger will be outputted to the sink.|
-# MAGIC
-# MAGIC **NOTE**: Not all sinks will support `update` mode.
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC
-# MAGIC ### Defining the Trigger Interval
-# MAGIC
-# MAGIC When defining a streaming write, the `trigger` method specifies when the system should process the next set of data..
-# MAGIC
-# MAGIC | Trigger Type | Example | Notes |
-# MAGIC |----------------------------------------|-----------|-------------|
-# MAGIC | Unspecified | | The query will be executed as soon as the system has completed processing the previous query (this is the default) |
-# MAGIC | Fixed interval micro-batches | `.trigger(processingTime="2 minutes")` | The query will be executed in micro-batches and kicked off at the user-specified intervals |
-# MAGIC | One-time micro-batch | `.trigger(once=True)` | The query will execute _only one_ micro-batch to process all the available data and then stop on its own |
-# MAGIC | Continuous w/fixed checkpoint interval | `.trigger(continuous="1 second")` | The query will be executed in a low-latency, continuous processing mode. _EXPERIMENTAL_ |
-# MAGIC
-# MAGIC Note that triggers are specified when defining how data will be written to a sink and control the frequency of micro-batches. By default, Spark will automatically detect and process all data in the source that has been added since the last trigger; some sources allow configuration to limit the size of each micro-batch.
-# MAGIC
-# MAGIC
Read this blog post to learn more about using one-time triggers to simplify CDC with a hybrid streaming/batch design.
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC ## Pulling It All Together
-# MAGIC
-# MAGIC The code below demonstrates using `spark.table()` to load data from a streaming temp view back to a DataFrame. Note that Spark will always load streaming views as a streaming DataFrame and static views as static DataFrames (meaning that incremental processing must be defined with read logic to support incremental writing).
-
-# COMMAND ----------
-
-streamingQuery = (spark.table("device_counts_tmp_vw")
- .writeStream
- .option("checkpointLocation", checkpointPath)
- .outputMode("complete")
- .trigger(processingTime='10 seconds')
- .table("device_counts")
-)
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC ## Querying the Output
-# MAGIC Now let's query the output we've written from SQL. Because the result is a table, we only need to deserialize the data to return the results.
-# MAGIC
-# MAGIC Because we are now querying a table (not a streaming DataFrame), the following will **not** be a streaming query.
-
-# COMMAND ----------
-
-# MAGIC %sql
-# MAGIC SELECT *
-# MAGIC FROM device_counts
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC ## Debugging with the Memory Sink
-# MAGIC
-# MAGIC The **memory** sink can be a useful tool for debugging. It provides a quick and easy sink requiring no setup. The output is stored as an in-memory table, with a name defined using `queryName`.
-# MAGIC
-# MAGIC
This should be used only for debugging purposes with low data volumes, since the entire output is collected and stored in the driver’s memory.
-
-# COMMAND ----------
-
-streamingQueryMem = (spark.table("streaming_tmp_vw")
- .writeStream
- .format("memory") # memory = store in-memory table (for testing only)
- .queryName("streaming_query_mem") # name of the in-memory table
- .outputMode("append")
- .start()
-)
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC Let's examine the contents of the in-memory table with the same query used previously. Like the previous query we ran against the Delta output, this will **not** be a streaming query. In this case, we are simply querying the in-memory table established by the memory sink in the previous cell.
-
-# COMMAND ----------
-
-# MAGIC %sql
-# MAGIC SELECT device, COUNT(device) AS total_records
-# MAGIC FROM streaming_query_mem
-# MAGIC GROUP BY device
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC ## Interacting with Streaming Queries
-# MAGIC
-# MAGIC
-# MAGIC the logic defined above, data is read from JSON files and then saved out in the Delta Lake format. Note that because Delta creates a new version for each transaction, when working with streaming data this will mean that the Delta table creates a new version for each trigger interval in which new data is processed. [More info on streaming with Delta](https://docs.databricks.com/delta/delta-streaming.html#table-streaming-reads-and-writes).
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC The `recentProgress` attribute allows access to metadata about recently processed micro-batches. Let's dump the contents for the streaming query created earlier.
-
-# COMMAND ----------
-
-streamingQuery.recentProgress
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC In addition to referencing `StreamingQuery` objects returned by `writeStream`, as we did above, we can iterate on the `streams.active` attribute in `SparkSession` to identify all active streaming queries.
-
-# COMMAND ----------
-
-for s in spark.streams.active: # Iterate over all streams
- print(s.id) # Print the stream's id
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC Let's iterate on all active streams and stop them. This is an important thing to do here, for if you don't then your cluster will run indefinitely!
-# MAGIC
-# MAGIC After running the following cell, feel free to examine the cells earlier that initiated streaming queries; notice they have both been canceled.
-
-# COMMAND ----------
-
-for s in spark.streams.active:
- print("Stopping " + s.id)
- s.stop()
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC ## Incremental Ingestion with Auto Loader
-# MAGIC
-# MAGIC Incremental ETL is important since it allows us to deal solely with new data that has been encountered since the last ingestion. Reliably processing only the new data is key to achieving scalability.
-# MAGIC
-# MAGIC Ingesting into a Delta Lake table from a data lake is a common use case that has traditionally been challenging to properly set up, typically relying on the integration of always-on services like Kafka to track the files that have been ingested, and to monitor cloud storage for new file arrivals. Databricks Auto Loader abstracts all this and provides an easy-to-use mechanism for incrementally and efficiently processing new data files as they arrive in cloud file storage, in the form of a structured streaming source.
-# MAGIC
-# MAGIC Given an input directory path on the cloud file storage, the `cloudFiles` source automatically processes new files as they arrive, with the option of also processing existing files in that directory. For full details, refer to the documentation.
-# MAGIC
-# MAGIC **Due to the benefits and scalability that Auto Loader delivers, Databricks recommends its use as general best practice when ingesting data from cloud storage.**
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC Reset the output directory in preparation to stream data using Auto Loader.
-
-# COMMAND ----------
-
-# MAGIC %run ../Includes/classic-setup $mode="reset"
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC ### Reading Data with Auto Loader
-# MAGIC
-# MAGIC An example invocation of Auto Loader is provided below. Comparing against the standard streaming read from earlier, notice the following differences:
-# MAGIC
-# MAGIC * Specify a `format` of `cloudFiles`
-# MAGIC * Specify the underlying format of the data using the `cloudFiles.format` option
-# MAGIC * The `dataLandingLocation` source below represents a cloud storage location from where data is being ingested
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC
-# MAGIC ### Schema Inference and Evolution
-# MAGIC
-# MAGIC As mentioned earlier, every streaming DataFrame must have a schema. But Auto Loader can be configured to take a more active role in inferring and maintaining the schema of the data as it evolves.
-# MAGIC
-# MAGIC By omitting a schema specification, Auto Loader will detect the schema based on the data seen on the input. Specifying the `cloudFiles.schemaLocation` option allows Auto Loader to track the schema, thereby improving performances and ensuring stability of the schema across stream restart. A common pattern is to use `checkpointLocation` for this purpose.
-# MAGIC
-# MAGIC
There must be data present for schema inference to work; otherwise you must specify a schema.
-# MAGIC
-# MAGIC **Schema evolution** allows changes to a schema in response to data that changes over time. This can be an important feature in some use cases.
-
-# COMMAND ----------
-
-incrementalStreamingDF = (spark
- .readStream
- .format("cloudFiles")
- .option("cloudFiles.format", "json")
- .option("cloudFiles.schemaLocation", checkpointPath)
- .load(dataLandingLocation)
-)
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC Writing the output also takes a similar form as the previous streaming case. Note the following differences:
-# MAGIC * Specify `mergeSchema` option to activate schema evolution. If any changes to the schema occur over time, the schema is adapted rather than rejecting the write. This can be useful in some use cases.
-# MAGIC * Omitting the trigger to allow the query to continue running, ingesting new data as it arrives. If you wish to schedule your ETL process to run in batch mode, consider using a one-time trigger instead.
-
-# COMMAND ----------
-
-(incrementalStreamingDF
- .writeStream
- .format("delta")
- .option("checkpointLocation", checkpointPath)
- .option("mergeSchema", "true")
- .table(outputTable)
-)
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC ### Querying the Output
-# MAGIC By now the following query against the output table will likely seem familiar. Run it a few times, and it will become apparent that nothing changes, as no data is arriving in our simulated cloud storage.
-
-# COMMAND ----------
-
-# MAGIC %sql
-# MAGIC SELECT Device,COUNT(Device) AS Count
-# MAGIC FROM ${c.outputTable}
-# MAGIC GROUP BY Device
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC ## Land New Data
-# MAGIC Run the following cell to simulate the arrival of new data in our cloud storage. Each time you execute the cell below, a new file will be written to our source directory. Following this cell, observe the stream monitor above, and notice the impact on the results when re-running the query.
-
-# COMMAND ----------
-
-File.newData()
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC ## Clean Up
-# MAGIC Stop active streams and remove created resources before continuing.
-
-# COMMAND ----------
-
-# MAGIC %run ../Includes/classic-setup $mode="clean"
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC
-# MAGIC
Summary
-# MAGIC
-# MAGIC We used `readStream` to stream input from a variety of sources, including Databricks Auto Loader. Auto Loader augments Structured Streaming functionality by providing an easy-to-use interface of performing incremental ETL from cloud storage.
-# MAGIC
-# MAGIC We also explored various options for consuming, writing and querying the streamed input data.
-# MAGIC
-# MAGIC Finally, we explored the array of active streams maintained in the `SparkSession` object.
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC
-# MAGIC
Additional Topics & Resources
-# MAGIC
-# MAGIC * Structured Streaming Programming Guide
-# MAGIC * A Deep Dive into Structured Streaming by Tathagata Das. This is an excellent video describing how Structured Streaming works.
-# MAGIC * Failed Streaming Query Recovery Best Practices for Recovery.
-# MAGIC * Continuous Processing Mode Lowest possible latency stream processing. Currently Experimental.
-
-# COMMAND ----------
-
-# MAGIC %md-sandbox
-# MAGIC © 2022 Databricks, Inc. All rights reserved.
-# MAGIC Apache, Apache Spark, Spark and the Spark logo are trademarks of the Apache Software Foundation.
-# MAGIC
-# MAGIC Privacy Policy | Terms of Use | Support
diff --git a/Data-Engineering-With-Databricks/03 - Incremental Data and Delta Live Tables/DE 3.1.2 - Windows and Watermarks.py b/Data-Engineering-With-Databricks/03 - Incremental Data and Delta Live Tables/DE 3.1.2 - Windows and Watermarks.py
deleted file mode 100644
index e9a8b3d..0000000
--- a/Data-Engineering-With-Databricks/03 - Incremental Data and Delta Live Tables/DE 3.1.2 - Windows and Watermarks.py
+++ /dev/null
@@ -1,310 +0,0 @@
-# Databricks notebook source
-# MAGIC %md-sandbox
-# MAGIC
-# MAGIC
-# MAGIC

-# MAGIC
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC # Windows and Watermarks
-# MAGIC
-# MAGIC ## Learning Objectives
-# MAGIC By the end of this lesson, you should be able to:
-# MAGIC * Explain why some methods will not work on streaming data
-# MAGIC * Use windows to aggregate over chunks of data rather than all data
-# MAGIC * Compare tumbling windows and sliding windows
-# MAGIC * Apply watermarking to manage state
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC
-# MAGIC ## Getting Started
-# MAGIC
-# MAGIC Run the following cell to configure our "classroom."
-
-# COMMAND ----------
-
-# MAGIC %run ../Includes/classic-setup $mode="reset"
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC
-# MAGIC ## Configure Streaming Read
-# MAGIC
-# MAGIC This lesson uses the same data as the previous notebook, again loaded with AutoLoader.
-# MAGIC
-# MAGIC The code below registers a streaming DataFrame (which we'll use again in a moment) and a streaming temp view.
-# MAGIC
-# MAGIC Note the use of the `selectExpr` method, which allows multiple SQL operations to be configured on a per column basis in PySpark DataFrames. Here, we're simplifying the data to be dealt with by selecting only two columns:
-# MAGIC * `Creation_Time`, originally encoded in nanoseconds, is converted to unixtime and renamed to `creation_time`
-# MAGIC * `gt` is renamed to `action`
-
-# COMMAND ----------
-
-from pyspark.sql.functions import col
-
-schema = """Arrival_Time BIGINT,
- Creation_Time BIGINT,
- Device STRING,
- Index BIGINT,
- Model STRING,
- User STRING,
- geolocation STRUCT<
- city: STRING,
- country: STRING>,
- gt STRING,
- Id BIGINT,
- x DOUBLE,
- y DOUBLE,
- z DOUBLE"""
-
-streamingDF = (spark
- .readStream
- .format("cloudFiles")
- .option("cloudFiles.format", "json")
- .schema(schema)
- .load(dataLandingLocation)
- .selectExpr("cast(Creation_Time/1E9 AS timestamp) AS creation_time", "gt AS action")
-)
-
-streamingDF.createOrReplaceTempView("streaming_tmp_vw")
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC ### Unsupported Operations
-# MAGIC
-# MAGIC Most operations on a streaming DataFrame are identical to a static DataFrame. There are some exceptions to this.
-# MAGIC
-# MAGIC Consider the model of the data as a constantly appending table. Sorting is one of a handful of operations that is either too complex or logically not possible to do when working with streaming data.
-
-# COMMAND ----------
-
-# MAGIC %sql
-# MAGIC SELECT * FROM streaming_tmp_vw
-# MAGIC ORDER BY creation_time DESC
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC
-# MAGIC ## Streaming Aggregations
-# MAGIC
-# MAGIC Continuous applications often require near real-time decisions on real-time, aggregated statistics.
-# MAGIC
-# MAGIC Some examples include
-# MAGIC * Aggregating errors in data from IoT devices by type
-# MAGIC * Detecting anomalous behavior in a server's log file by aggregating by country
-# MAGIC * Performing behavior analysis on instant messages via hash tags
-# MAGIC
-# MAGIC While these streaming aggregates may need to reference historic trends, analytics will generally be calculated over discrete units of time. Spark Structured Streaming supports time-based **windows** on streaming DataFrames to make these calculations easy.
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC
-# MAGIC ### What is Time?
-# MAGIC
-# MAGIC Multiple times may be associated with each streaming event. Consider the discrete differences between the time at which the event data was:
-# MAGIC - Generated
-# MAGIC - Written to the streaming source
-# MAGIC - Processed into Spark
-# MAGIC
-# MAGIC Each of these times will be recorded from the system clock of the machine running the process, with discrepancies and latencies being introduced due to many different causes.
-# MAGIC
-# MAGIC Generally speaking, most analytics will be interested in the time the data was generated. As such, this lesson will focus on timestamps recorded at the time of data generation, which we will refer to as the **event time**.
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC
-# MAGIC ## Windowing
-# MAGIC
-# MAGIC Defining windows on a time series field imposes a time range constraint on an otherwise unbounded input. This allows users to utilize this field for aggregations in the same way they would use distinct values when calling `GROUP BY`. Spark maintains a state table with aggregates for each user-defined bucket of time.
-# MAGIC
-# MAGIC Spark supports three types of windows:
-# MAGIC
-# MAGIC * **Tumbling windows**: fixed-size windows, regularly recurring windows that do not overlap. Each event will be aggregated into only one window.
-# MAGIC * **Sliding windows**: fixed-size windows, regularly recurring windows that overlap. Each event may be aggregated into multiple windows.
-# MAGIC * **Session windows**: dynamic windows whose start time and duration depends on the inputs. An event will trigger the start of a window that will, in general, continue until a predetermined duration after the last event received.
-# MAGIC
-# MAGIC
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC The following diagram illustrates in greater detail the concept of sliding windows and how events received at various times will be aggregated into the various windows (assuming that the slide duration is less than the window duration, which leads to overlapping windows):
-# MAGIC
-# MAGIC
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC
-# MAGIC ### Consuming with a Windowed Aggregation
-# MAGIC
-# MAGIC Let's consume the stream from SQL in a windowed aggregation using the SQL `window` function, which accepts a timestamp column and a window duration to define the tumbling windows. An optional third argument specifies a slide duration that allows the definition of a sliding window.
-
-# COMMAND ----------
-
-# MAGIC %sql
-# MAGIC SELECT
-# MAGIC window.start AS start,
-# MAGIC action,
-# MAGIC count(action) AS count
-# MAGIC FROM streaming_tmp_vw
-# MAGIC GROUP BY
-# MAGIC window(creation_time, '1 hour'),
-# MAGIC action
-# MAGIC ORDER BY
-# MAGIC start,
-# MAGIC action
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC Once a batch of data has loaded, render the results as a bar graph with the following settings:
-# MAGIC
-# MAGIC * **Keys** is set to `start`
-# MAGIC * **Series groupings** is set to `action`
-# MAGIC * **Values** is set to `count`
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC ### Land New Data
-# MAGIC Recall that our stream has been set up for incremental ingestion. Invoke the following cell a few times to simulate the arrival of new data. Note the impact on the results reported above.
-
-# COMMAND ----------
-
-File.newData()
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC ### Performance Considerations
-# MAGIC Because aggregation is a wide transformation, it will trigger a shuffle. Configuring the number of partitions can reduce the number of tasks and properly balance the workload for the cluster.
-# MAGIC
-# MAGIC In most cases, a 1-to-1 mapping of partitions to cores is ideal for streaming applications. The code below sets the number of partitions to 4, which maps perfectly to a cluster with 4 cores.
-
-# COMMAND ----------
-
-spark.conf.set("spark.sql.shuffle.partitions", 4)
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC
-# MAGIC ## Watermarking
-# MAGIC
-# MAGIC
-# MAGIC When aggregating with an unbounded input, Spark's fault-tolerant state management naturally incurs some processing overhead. To keep these overheads bounded within acceptable limits, the size of the state data should not grow indefinitely. However, with sliding windows, the number of windows/groups will grow indefinitely, and so can the size of state (proportional to the number of groups). To bound the state size, we have to be able to drop old aggregates that are not going to be updated anymore. We achieve this using **watermarking**.
-# MAGIC
-# MAGIC Watermarking allows users to define a cutoff threshold for how much state should be maintained. This cutoff is calculated against the most recently seen event time. Data arriving after this threshold will be discarded.
-# MAGIC
-# MAGIC The `withWatermark` method allows users to easily define this cutoff threshold.
-# MAGIC
-# MAGIC Note that there is no built-in support for watermarking in Spark SQL, but we can define this in PySpark before creating a temp view, as shown below.
-
-# COMMAND ----------
-
-(streamingDF
- .withWatermark("creation_time", "2 hours") # Specify a 2-hour watermark
- .createOrReplaceTempView("watermarked_tmp_vw")
-)
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC By directing our windowed aggregation at this new temp view, we can easily achieve the same outcome while managing state information.
-
-# COMMAND ----------
-
-# MAGIC %sql
-# MAGIC SELECT
-# MAGIC window.start AS start,
-# MAGIC action,
-# MAGIC count(action) AS count
-# MAGIC FROM watermarked_tmp_vw
-# MAGIC GROUP BY
-# MAGIC window(creation_time, '1 hour'),
-# MAGIC action
-# MAGIC ORDER BY
-# MAGIC start,
-# MAGIC action
-
-# COMMAND ----------
-
-# MAGIC %md-sandbox
-# MAGIC
-# MAGIC ## Example Details
-# MAGIC
-# MAGIC The threshold is always calculated against the max event time seen.
-# MAGIC
-# MAGIC In the example above,
-# MAGIC * The in-memory state is limited to two hours of historic data.
-# MAGIC * Data arriving more than 2 hours late should be dropped.
-# MAGIC * Data received within 2 hours of being generated will never be dropped.
-# MAGIC
-# MAGIC
This guarantee is strict in only one direction. Data delayed by more than 2 hours is not guaranteed to be dropped; it may or may not get aggregated. The more delayed the data is, the less likely the engine is going to process it.
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC ## Writing Results
-# MAGIC
-# MAGIC Previously we used `spark.table()` to pass SQL logic stored in temp views back to a DataFrame to write out streaming results.
-# MAGIC
-# MAGIC Below, we instead use `spark.sql()` and pass the entire SQL query.
-
-# COMMAND ----------
-
-(spark.sql("""
- SELECT
- window.start AS start,
- action,
- count(action) AS count
- FROM watermarked_tmp_vw
- GROUP BY
- window(creation_time, '1 hour'),
- action
- ORDER BY
- start,
- action
-""").writeStream
- .option("checkpointLocation", checkpointPath)
- .outputMode("complete")
- .table("action_counts")
-)
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC
-# MAGIC ## Clean Up
-
-# COMMAND ----------
-
-# MAGIC %run ../Includes/classic-setup $mode="clean"
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC
-# MAGIC ## Summary
-# MAGIC
-# MAGIC * A handful of operations valid for static DataFrames will not work with streaming data
-# MAGIC * Windows allow users to define time-based buckets for aggregating streaming data
-# MAGIC * Watermarking allows users to manage the amount of state being calculated with each trigger and define how late-arriving data should be handled
-
-# COMMAND ----------
-
-# MAGIC %md-sandbox
-# MAGIC © 2022 Databricks, Inc. All rights reserved.
-# MAGIC Apache, Apache Spark, Spark and the Spark logo are trademarks of the Apache Software Foundation.
-# MAGIC
-# MAGIC Privacy Policy | Terms of Use | Support
diff --git a/Data-Engineering-With-Databricks/03 - Incremental Data and Delta Live Tables/DE 3.3.3 - Pipeline Results.py b/Data-Engineering-With-Databricks/03 - Incremental Data and Delta Live Tables/DE 3.3.3 - Pipeline Results.py
deleted file mode 100644
index 79ea039..0000000
--- a/Data-Engineering-With-Databricks/03 - Incremental Data and Delta Live Tables/DE 3.3.3 - Pipeline Results.py
+++ /dev/null
@@ -1,54 +0,0 @@
-# Databricks notebook source
-# MAGIC %md
-# MAGIC # Exploring the Results of a DLT Pipeline
-# MAGIC
-# MAGIC This Notebook explores the execution results of a DLT pipeline.
-
-# COMMAND ----------
-
-# MAGIC %run ../Includes/dlt-setup $course="dlt_demo"
-
-# COMMAND ----------
-
-storage_location = userhome
-
-# COMMAND ----------
-
-dbutils.fs.ls(storage_location)
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC The `system` directory captures events associated with the pipeline.
-
-# COMMAND ----------
-
-dbutils.fs.ls(f"{storage_location}/system/events")
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC These event logs are stored as a Delta table. Let's query the table.
-
-# COMMAND ----------
-
-display(spark.sql(f"SELECT * FROM delta.`{storage_location}/system/events`"))
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC Let's view the contents of the *tables* directory.
-
-# COMMAND ----------
-
-dbutils.fs.ls(f"{storage_location}/tables")
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC Let's query the gold table.
-
-# COMMAND ----------
-
-display(spark.sql(f"SELECT * FROM {database}.sales_order_in_la"))
-
diff --git a/Data-Engineering-With-Databricks/03 - Incremental Data and Delta Live Tables/Labs/DE 3.1.3L - Using Auto Loader and Structured Streaming with Spark SQL Lab.py b/Data-Engineering-With-Databricks/03 - Incremental Data and Delta Live Tables/Labs/DE 3.1.3L - Using Auto Loader and Structured Streaming with Spark SQL Lab.py
deleted file mode 100644
index 4bcfe08..0000000
--- a/Data-Engineering-With-Databricks/03 - Incremental Data and Delta Live Tables/Labs/DE 3.1.3L - Using Auto Loader and Structured Streaming with Spark SQL Lab.py
+++ /dev/null
@@ -1,121 +0,0 @@
-# Databricks notebook source
-# MAGIC %md-sandbox
-# MAGIC
-# MAGIC
-# MAGIC

-# MAGIC
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC # Using Auto Loader and Structured Streaming with Spark SQL
-# MAGIC
-# MAGIC ## Learning Objectives
-# MAGIC By the end of this lab, you will be able to:
-# MAGIC * Ingest data using Auto Loader
-# MAGIC * Aggregate streaming data
-# MAGIC * Stream data to a Delta table
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC ## Setup
-# MAGIC Run the following script to setup necessary variables and clear out past runs of this notebook. Note that re-executing this cell will allow you to start the lab over.
-
-# COMMAND ----------
-
-# MAGIC %run ../../Includes/classic-setup $mode="reset"
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC
-# MAGIC ## Configure Streaming Read
-# MAGIC
-# MAGIC This lab uses a collection of customer-related CSV data from DBFS found in */databricks-datasets/retail-org/customers/*.
-# MAGIC
-# MAGIC Read this data using Auto Loader using its schema inference (use `customersCheckpointPath` to store the schema info). Create a streaming temporary view called `customers_raw_temp`.
-
-# COMMAND ----------
-
-# TODO
-customersCheckpointPath = userhome + "/customersCheckpoint"
-
-(spark
- .readStream
-
- .load("/databricks-datasets/retail-org/customers/")
- .createOrReplaceTempView("customers_raw_temp")
-)
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC
-# MAGIC ## Define a streaming aggregation
-# MAGIC
-# MAGIC Using CTAS syntax, define a new streaming view called `customer_count_by_state_temp` that counts the number of customers per `state`, in a field called `customer_count`.
-
-# COMMAND ----------
-
-# MAGIC %sql
-# MAGIC -- TODO
-# MAGIC CREATE OR REPLACE TEMPORARY VIEW customer_count_by_state_temp AS
-# MAGIC SELECT
-# MAGIC
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC
-# MAGIC ## Write aggregated data to a Delta table
-# MAGIC
-# MAGIC Stream data from the `customer_count_by_state_temp` view to a Delta table called `customer_count_by_state`.
-
-# COMMAND ----------
-
-# TODO
-customersCountCheckpointPath = userhome + "/customersCountCheckpoint"
-
-(spark
-
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC
-# MAGIC ## Query the results
-# MAGIC
-# MAGIC Query the `customer_count_by_state` table (this will not be a streaming query). Plot the results as a bar graph and also using the map plot.
-
-# COMMAND ----------
-
-# MAGIC %sql
-# MAGIC -- TODO
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC ## Wrapping Up
-# MAGIC
-# MAGIC Run the following cell to remove the database and all data associated with this lab.
-
-# COMMAND ----------
-
-# MAGIC %run ../../Includes/classic-setup $mode="clean"
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC By completing this lab, you should now feel comfortable:
-# MAGIC * Using PySpark to configure Auto Loader for incremental data ingestion
-# MAGIC * Using Spark SQL to aggregate streaming data
-# MAGIC * Streaming data to a Delta table
-
-# COMMAND ----------
-
-# MAGIC %md-sandbox
-# MAGIC © 2022 Databricks, Inc. All rights reserved.
-# MAGIC Apache, Apache Spark, Spark and the Spark logo are trademarks of the Apache Software Foundation.
-# MAGIC
-# MAGIC Privacy Policy | Terms of Use | Support
diff --git a/Data-Engineering-With-Databricks/03 - Incremental Data and Delta Live Tables/Labs/DE 3.2.3L - Propagating Incremental Updates with Structured Streaming and Delta Lake Lab.py b/Data-Engineering-With-Databricks/03 - Incremental Data and Delta Live Tables/Labs/DE 3.2.3L - Propagating Incremental Updates with Structured Streaming and Delta Lake Lab.py
deleted file mode 100644
index d75c4a1..0000000
--- a/Data-Engineering-With-Databricks/03 - Incremental Data and Delta Live Tables/Labs/DE 3.2.3L - Propagating Incremental Updates with Structured Streaming and Delta Lake Lab.py
+++ /dev/null
@@ -1,181 +0,0 @@
-# Databricks notebook source
-# MAGIC %md-sandbox
-# MAGIC
-# MAGIC
-# MAGIC

-# MAGIC
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC # Propagating Incremental Updates with Structured Streaming and Delta Lake
-# MAGIC
-# MAGIC ## Learning Objectives
-# MAGIC By the end of this lab, you will be able to:
-# MAGIC * Apply your knowledge of structured streaming and Auto Loader to implement a simple multi-hop architecture
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC ## Setup
-# MAGIC Run the following script to setup necessary variables and clear out past runs of this notebook. Note that re-executing this cell will allow you to start the lab over.
-
-# COMMAND ----------
-
-# MAGIC %run ../../Includes/classic-setup $mode="reset"
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC
-# MAGIC ## Ingest data
-# MAGIC
-# MAGIC This lab uses a collection of customer-related CSV data from DBFS found in */databricks-datasets/retail-org/customers/*.
-# MAGIC
-# MAGIC Read this data using Auto Loader using its schema inference (use `customersCheckpointPath` to store the schema info). Stream the raw data to a Delta table called `bronze`.
-
-# COMMAND ----------
-
-# TODO
-customersCheckpointPath = userhome + "/customersCheckpoint"
-
-(spark
- .readStream
-
- .load("/databricks-datasets/retail-org/customers/")
- .writeStream
-
- .table("bronze")
-)
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC
-# MAGIC Let's create a streaming temporary view into the bronze table, so that we can perform transforms using SQL.
-
-# COMMAND ----------
-
-(spark
- .readStream
- .table("bronze")
- .createOrReplaceTempView("bronze_temp"))
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC ## Clean and enhance data
-# MAGIC
-# MAGIC Using CTAS syntax, define a new streaming view called `bronze_enhanced_temp` that does the following:
-# MAGIC * Skips records with a null `postcode` (set to zero)
-# MAGIC * Inserts a column called `receipt_time` containing a current timestamp
-# MAGIC * Inserts a column called `source_file` intaining the input filename
-
-# COMMAND ----------
-
-# MAGIC %sql
-# MAGIC -- TODO
-# MAGIC CREATE OR REPLACE TEMPORARY VIEW bronze_enhanced_temp AS
-# MAGIC SELECT
-# MAGIC
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC ## Silver table
-# MAGIC
-# MAGIC Stream the data from `bronze_enhanced_temp` to a table called `silver`.
-
-# COMMAND ----------
-
-# TODO
-silverCheckpointPath = userhome + "/silverCheckpoint"
-
-(spark.table("bronze_enhanced_temp")
-
- .table("silver"))
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC
-# MAGIC Let's create a streaming temporary view into the silver table, so that we can perform business-level using SQL.
-
-# COMMAND ----------
-
-(spark
- .readStream
- .table("silver")
- .createOrReplaceTempView("silver_temp"))
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC
-# MAGIC ## Gold tables
-# MAGIC
-# MAGIC Using CTAS syntax, define a new streaming view called `customer_count_temp` that counts customers per state.
-
-# COMMAND ----------
-
-# MAGIC %sql
-# MAGIC -- TODO
-# MAGIC CREATE OR REPLACE TEMPORARY VIEW customer_count_by_state_temp AS
-# MAGIC SELECT
-# MAGIC
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC Finally, stream the data from the `customer_count_by_state_temp` view to a Delta table called `gold_customer_count_by_state`.
-
-# COMMAND ----------
-
-# TODO
-customersCountCheckpointPath = userhome + "/customersCountCheckpoint"
-
-(spark
- .table("customer_count_by_state_temp")
- .writeStream
-
- .table("gold_customer_count_by_state"))
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC
-# MAGIC ## Query the results
-# MAGIC
-# MAGIC Query the `gold_customer_count_by_state` table (this will not be a streaming query). Plot the results as a bar graph and also using the map plot.
-
-# COMMAND ----------
-
-# MAGIC %sql
-# MAGIC SELECT * FROM gold_customer_count_by_state
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC ## Wrapping Up
-# MAGIC
-# MAGIC Run the following cell to remove the database and all data associated with this lab.
-
-# COMMAND ----------
-
-# MAGIC %run ../../Includes/classic-setup $mode="clean"
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC By completing this lab, you should now feel comfortable:
-# MAGIC * Using PySpark to configure Auto Loader for incremental data ingestion
-# MAGIC * Using Spark SQL to aggregate streaming data
-# MAGIC * Streaming data to a Delta table
-
-# COMMAND ----------
-
-# MAGIC %md-sandbox
-# MAGIC © 2022 Databricks, Inc. All rights reserved.
-# MAGIC Apache, Apache Spark, Spark and the Spark logo are trademarks of the Apache Software Foundation.
-# MAGIC
-# MAGIC Privacy Policy | Terms of Use | Support
diff --git a/Data-Engineering-With-Databricks/03 - Incremental Data and Delta Live Tables/Labs/DE 3.3.4L - Intro & Config Lab.py b/Data-Engineering-With-Databricks/03 - Incremental Data and Delta Live Tables/Labs/DE 3.3.4L - Intro & Config Lab.py
deleted file mode 100644
index b0c6cf7..0000000
--- a/Data-Engineering-With-Databricks/03 - Incremental Data and Delta Live Tables/Labs/DE 3.3.4L - Intro & Config Lab.py
+++ /dev/null
@@ -1,188 +0,0 @@
-# Databricks notebook source
-# MAGIC %md-sandbox
-# MAGIC
-# MAGIC
-# MAGIC

-# MAGIC
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC # Lab: Migrating SQL Notebooks to Delta Live Tables
-# MAGIC
-# MAGIC This notebook dictates an overall structure for the lab exercise, configures the environment for the lab, provides simulated data streaming, and performs cleanup once you are done. A notebook like this is not typically needed in a production pipeline scenario.
-# MAGIC
-# MAGIC ## Learning Objectives
-# MAGIC By the end of this lesson, you should be able to:
-# MAGIC * Convert existing data pipelines to Delta Live Tables
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC ## Datasets Used
-# MAGIC
-# MAGIC This demo uses simplified artificially generated medical data. The schema of our two datasets is represented below. Note that we will be manipulating these schema during various steps.
-# MAGIC
-# MAGIC #### Recordings
-# MAGIC The main dataset uses heart rate recordings from medical devices delivered in the JSON format.
-# MAGIC
-# MAGIC | Field | Type |
-# MAGIC | --- | --- |
-# MAGIC | device_id | int |
-# MAGIC | mrn | long |
-# MAGIC | time | double |
-# MAGIC | heartrate | double |
-# MAGIC
-# MAGIC #### PII
-# MAGIC These data will later be joined with a static table of patient information stored in an external system to identify patients by name.
-# MAGIC
-# MAGIC | Field | Type |
-# MAGIC | --- | --- |
-# MAGIC | mrn | long |
-# MAGIC | name | string |
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC ## Getting Started
-# MAGIC
-# MAGIC Begin by running the following cell to configure the lab environment.
-
-# COMMAND ----------
-
-# MAGIC %run "../../Includes/dlt-setup" $mode="reset"
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC ## Land Initial Data
-# MAGIC Seed the landing zone with some data before proceeding. You will re-run this command to land additional data later.
-
-# COMMAND ----------
-
-File.newData()
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC ## Create and Configure a Pipeline
-# MAGIC
-# MAGIC 1. Click the **Jobs** button on the sidebar, then select the **Delta Live Tables** tab.
-# MAGIC 1. Click **Create Pipeline**.
-# MAGIC 1. Fill in a **Pipeline Name** of your choosing.
-# MAGIC 1. For **Notebook Libraries**, use the navigator to locate and select the notebook `3.3.4 - LAB - Migrating a SQL Pipeline to DLT`.
-# MAGIC 1. Run the cell below to generate values for **source**, **Target** and **Storage Location**. (All of these will include your current username).
-# MAGIC * Click `Add configuration`; enter the word `source` in the **Key** field and the output printed next to `source` below in the value field.
-# MAGIC * Enter the database name printed next to `Target` below in the **Target** field.
-# MAGIC * Enter the location printed next to `Storage Location` below in the **Storage Location** field.
-# MAGIC 1. Set **Pipeline Mode** to **Triggered**.
-# MAGIC 1. Disable autoscaling.
-# MAGIC 1. Set the number of wokers to 1.
-# MAGIC 1. Click **Create**.
-
-# COMMAND ----------
-
-storage_location = userhome + "/output"
-print(f"source : {dataLandingLocation.split(':')[1]}")
-print(f"Target: {database}")
-print(f"Storage Location: {storage_location.split(':')[1]}")
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC ## Run your Pipeline
-# MAGIC
-# MAGIC Select **Development** mode, which accelerates the development lifecycle by reusing the same cluster across runs. It will also turn off automatic retries when jobs fail.
-# MAGIC
-# MAGIC Click **Start** to begin the first update to your table.
-# MAGIC
-# MAGIC Delta Live Tables will automatically deploy all the necessary infrastructure and resolve the dependencies between all datasets.
-# MAGIC
-# MAGIC **NOTE**: The first table update make take several minutes as relationships are resolved and infrastructure deploys.
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC ## Open and Complete DLT Pipeline Notebook
-# MAGIC
-# MAGIC You will perform your work in this companion Notebook, which you will ultimately deploy as a pipeline.
-# MAGIC
-# MAGIC Open the Notebook and, following the guidelines provided therein, fill in the cells where prompted to implement a multi-hop architecture similar to the one we worked with in the previous section.
-# MAGIC
-# MAGIC **NOTE**: As a first step to preparing your pipeline, run the following cell to obtain the cloud file location. Substitue this value for the text that reads ``. This value will be unique within the workspace to your user identity to prevent possible interference between users within the same workspace.
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC ## Troubleshooting Code in Development Mode
-# MAGIC
-# MAGIC Don't despair if your pipeline fails the first time. Delta Live Tables is in active development, and error messages are improving all the time.
-# MAGIC
-# MAGIC Because relationships between tables are mapped as a DAG, error messages will often indicate that a dataset isn't found.
-# MAGIC
-# MAGIC Let's consider our DAG below:
-# MAGIC
-# MAGIC
-# MAGIC
-# MAGIC If the error message `Dataset not found: 'recordings_parsed'` is raised, there may be several culprits:
-# MAGIC 1. The logic defining `recordings_parsed` is invalid
-# MAGIC 1. There is an error reading from `recordings_bronze`
-# MAGIC 1. A typo exists in either `recordings_parsed` or `recordings_bronze`
-# MAGIC
-# MAGIC The safest way to identify the culprit is to iteratively add table/view definitions back into your DAG starting from your initial ingestion tables. You can simply comment out later table/view definitions and uncomment these between runs.
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC ## Display Results
-# MAGIC
-# MAGIC Assuming your pipeline runs successfully, display the contents of the gold table.
-# MAGIC
-# MAGIC **NOTE**: Because we specified a value for **Target**, tables are published to the specified database. Without a **Target** specification, we would need to query the table based on its underlying location in DBFS (relative to the **Storage Location**).
-
-# COMMAND ----------
-
-spark.sql(f"SELECT * FROM {database}daily_patient_avg")
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC Trigger another file arrival with the following cell. Feel free to run it a couple more times if desired. Following this, run the pipeline again and view the results. Feel free to re-run the cell above to gain an updated view of the `daily_patient_avg` table.
-
-# COMMAND ----------
-
-File.newData()
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC ## Wrapping Up
-# MAGIC
-# MAGIC Ensure that you delete your pipeline from the DLT UI, and run the following cell to clean up the files and tables that were created as part of the lab setup and execution.
-
-# COMMAND ----------
-
-# MAGIC %run "../../Includes/dlt-setup" $mode="clean"
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC ## Summary
-# MAGIC
-# MAGIC In this lab, you learned to convert an existing data pipeline to a Delta Live Tables SQL pipeline, and deployed that pipeline using the DLT UI.
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC ## Additional Topics & Resources
-# MAGIC
-# MAGIC * Delta Live Tables Documentation
-# MAGIC * Delta Live Tables Demo
-
-# COMMAND ----------
-
-# MAGIC %md-sandbox
-# MAGIC © 2022 Databricks, Inc. All rights reserved.
-# MAGIC Apache, Apache Spark, Spark and the Spark logo are trademarks of the Apache Software Foundation.
-# MAGIC
-# MAGIC Privacy Policy | Terms of Use | Support
diff --git a/Data-Engineering-With-Databricks/04 - Managing Data Access and Production Pipelines/4.1.1 - Jobs/0 - Task Orchestration with Databricks Jobs.py b/Data-Engineering-With-Databricks/04 - Managing Data Access and Production Pipelines/4.1.1 - Jobs/0 - Task Orchestration with Databricks Jobs.py
deleted file mode 100644
index ad80e31..0000000
--- a/Data-Engineering-With-Databricks/04 - Managing Data Access and Production Pipelines/4.1.1 - Jobs/0 - Task Orchestration with Databricks Jobs.py
+++ /dev/null
@@ -1,115 +0,0 @@
-# Databricks notebook source
-# MAGIC %md-sandbox
-# MAGIC
-# MAGIC
-# MAGIC

-# MAGIC
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC # Orchestrating Jobs with Databricks
-# MAGIC
-# MAGIC New updates to the Databricks Jobs UI have added the ability to schedule multiple tasks as part of a job, allowing Databricks Jobs to fully handle orchestration for most production workloads.
-# MAGIC
-# MAGIC Here, we'll start by reviewing the steps for scheduling a notebook as a triggered standalone job, and then add a dependent job using a DLT pipeline.
-# MAGIC
-# MAGIC
-# MAGIC By the end of this lesson, you should feel confident:
-# MAGIC * Scheduling a notebook as a Databricks Job
-# MAGIC * Describing job scheduling options and differences between cluster types
-# MAGIC * Review Job Runs to track progress and see results
-# MAGIC * Scheduling a DLT pipeline as a Databricks Job
-# MAGIC * Configuring linear dependencies between tasks using the Databricks Jobs UI
-# MAGIC
-# MAGIC ## Schedule a Notebook Job
-# MAGIC
-# MAGIC When using the Jobs UI to orchestrate a workload with multiple tasks, you'll always begin by scheduling a single task.
-# MAGIC
-# MAGIC Here, we'll start by scheduling the notebook `1 - Reset`.
-# MAGIC
-# MAGIC Steps:
-# MAGIC 1. Navigate to the Jobs UI using the Databricks left side navigation bar.
-# MAGIC 1. Click the blue `Create Job` button
-# MAGIC 1. Configure the task:
-# MAGIC 1. Enter `reset` for the task name
-# MAGIC 1. Select the notebook `1 - Reset` using the notebook picker
-# MAGIC 1. Select an Existing All Purpose Cluster from the **Cluster** dropdown
-# MAGIC 1. Click **Create**
-# MAGIC
-# MAGIC **Note**: When selecting your all purpose cluster, you will get a warning about how this will be billed as all purpose compute. Production jobs should always be scheduled against new job clusters appropriately sized for the workload, as this is billed at a much lower rate.
-# MAGIC
-# MAGIC Click the blue **Run now** button in the top right to start the job.
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC ## Review Run
-# MAGIC
-# MAGIC As currently scheduled, our single notebook provides identical performance to the legacy Databricks Jobs UI, which only allowed a single notebook to be scheduled.
-# MAGIC
-# MAGIC From the **Runs** tab, clicking on the start time field will display a preview of the notebook with results. If the job is still running, this will be under **Active Runs**, and the displayed notebook will ocassionaly update to show progress throughout execution. If it has already completed, it will be under **Completed Runs** and just display the static results of the executed notebook.
-# MAGIC
-# MAGIC The notebook scheduled using the magic command `%run` to call an additional notebook using a relative path. Note that while not covered in this course, [new functionality added to Databricks Repos allows loading Python modules using relative paths](https://docs.databricks.com/repos.html#work-with-non-notebook-files-in-a-databricks-repo).
-# MAGIC
-# MAGIC The actual outcome of the scheduled notebook is to reset the output of the DLT pipeline configured earlier in the course, as well as to print out the necessary variables used to configure this pipeline for users that may not have coded along previously.
-# MAGIC
-# MAGIC Before continuing to the next step, make sure you either have access to a
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC ## Chron Scheduling of Databricks Jobs
-# MAGIC
-# MAGIC Note that on the right hand side of the Jobs UI, directly under the **Job Details** section is a section labeled **Schedule**.
-# MAGIC
-# MAGIC Click on the **Edit schedule** button to explore scheduling options.
-# MAGIC
-# MAGIC Changing the **Schedule type** field from **Manual** to **Scheduled** will bring up a chron scheduling UI.
-# MAGIC
-# MAGIC This UI provides extensive options for setting up chronological scheduling of your Jobs. Settings configured with the UI can also be output in cron syntax, which can be editted if custom configuration not available with the UI is needed.
-# MAGIC
-# MAGIC At this time, we'll leave our job set with **Manual** scheduling.
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC ## Schedule a DLT Pipeline as a Task
-# MAGIC
-# MAGIC In this step, we'll add a DLT pipeline to execute after the success of the task we configured in the previous step.
-# MAGIC
-# MAGIC **NOTE**: This step assumes that the DLT pipeline describe in the lab for module 3 of this course was configured successfully. If this is not the case, instructions are included for configuring this DLT pipeline in the run output of the `reset` notebook executed above.
-# MAGIC
-# MAGIC Steps:
-# MAGIC 1. Navigate to the Jobs UI using the Databricks left side navigation bar
-# MAGIC 1. Select the job you defined above by clicking on the name
-# MAGIC 1. At the top left of your screen, you'll see the **Runs** tab is currently selected; click the **Tasks** tab.
-# MAGIC 1. Click the large blue circle with a **+** at the center bottom of the screen to add a new task
-# MAGIC 1. Specify the **Task name** as `dlt`
-# MAGIC 1. From **Type**, select `Pipeline`
-# MAGIC 1. Click the **Pipeline** field and select the DLT pipeline you configured previously
-# MAGIC 1. Note that the **Depends on** field defaults to your previously defined task
-# MAGIC 1. Click the blue **Create task** button
-# MAGIC
-# MAGIC You should now see a screen with 2 boxes and a downward arrow between them. Your `reset` task will be at the top, leading into your `dlt` task. This visualization represents the dependencies between these tasks.
-# MAGIC
-# MAGIC Click **Run now** to execute your job.
-# MAGIC
-# MAGIC **NOTE**: You may need to wait a few minutes as infrastructure for your DLT pipeline is deployed.
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC ## Review Multi-Task Run Results
-# MAGIC
-# MAGIC Clicking into the job run will replicate the UI showing both tasks. The visualizations for tasks will update in real time to reflect which tasks are actively running, and will change colors if task failure occur. Clicking on a task box will render the scheduled notebook in the UI. (You can think of this as just an additional layer of orchestration on top of the previous Databricks Jobs UI, if that helps; note that if you have workloads scheduling jobs with the CLI or REST API, [the JSON structure used to configure and get results about jobs has seen similar updates to the UI](https://docs.databricks.com/dev-tools/api/latest/jobs.html)).
-# MAGIC
-# MAGIC **NOTE**: At this time, DLT pipelines scheduled as tasks do not directly render results in the Runs GUI; instead, you will be directed back to the DLT Pipeline GUI for the scheduled Pipeline.
-
-# COMMAND ----------
-
-# MAGIC %md-sandbox
-# MAGIC © 2022 Databricks, Inc. All rights reserved.
-# MAGIC Apache, Apache Spark, Spark and the Spark logo are trademarks of the Apache Software Foundation.
-# MAGIC
-# MAGIC Privacy Policy | Terms of Use | Support
diff --git a/Data-Engineering-With-Databricks/04 - Managing Data Access and Production Pipelines/4.1.1 - Jobs/1- Reset.py b/Data-Engineering-With-Databricks/04 - Managing Data Access and Production Pipelines/4.1.1 - Jobs/1- Reset.py
deleted file mode 100644
index 7f54ee9..0000000
--- a/Data-Engineering-With-Databricks/04 - Managing Data Access and Production Pipelines/4.1.1 - Jobs/1- Reset.py
+++ /dev/null
@@ -1,48 +0,0 @@
-# Databricks notebook source
-# MAGIC %md-sandbox
-# MAGIC
-# MAGIC
-# MAGIC

-# MAGIC
-
-# COMMAND ----------
-
-# MAGIC %run ../../Includes/dlt-setup $course="dlt_demo" $mode="reset"
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC If you have not previously configured this DLT pipeline successfully, the following cell prints out two values that will be used during the configuration steps that follow.
-
-# COMMAND ----------
-
-print(f"Target: {database}")
-print(f"Storage location: {userhome.split(':')[1]}")
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC ## Create and configure a pipeline
-# MAGIC
-# MAGIC The instructions below refer to the same pipeline created during the previous codealong for DLT; if you successfully configured this notebook previously, you should not need to reconfigure this pipeline now.
-# MAGIC
-# MAGIC
-# MAGIC Steps:
-# MAGIC 1. Click the **Jobs** button on the sidebar,
-# MAGIC 1. Select the **Delta Live Tables** tab.
-# MAGIC 1. Click **Create Pipeline**.
-# MAGIC 1. Fill in a **Pipeline Name** of your choosing.
-# MAGIC 1. For **Notebook Libraries**, use the navigator to locate and select the companion notebook called **2 - DLT Job**.
-# MAGIC 1. In the **Target** field, specify the database name printed out next to **Target** in the cell above. (This should follow the pattern `dbacademy__dlt_demo`)
-# MAGIC 1. In the **Storage location** field, copy the directory as printed above.
-# MAGIC 1. For **Pipeline Mode**, select **Triggered**
-# MAGIC 1. Uncheck the **Enable autoscaling** box, and set the number of workers to 1.,
-# MAGIC 1. Click **Create**.
-
-# COMMAND ----------
-
-# MAGIC %md-sandbox
-# MAGIC © 2022 Databricks, Inc. All rights reserved.
-# MAGIC Apache, Apache Spark, Spark and the Spark logo are trademarks of the Apache Software Foundation.
-# MAGIC
-# MAGIC Privacy Policy | Terms of Use | Support
diff --git a/Data-Engineering-With-Databricks/04 - Managing Data Access and Production Pipelines/4.1.2 - LAB - Jobs/0 - Lab Instructions.py b/Data-Engineering-With-Databricks/04 - Managing Data Access and Production Pipelines/4.1.2 - LAB - Jobs/0 - Lab Instructions.py
deleted file mode 100644
index 98bc5c7..0000000
--- a/Data-Engineering-With-Databricks/04 - Managing Data Access and Production Pipelines/4.1.2 - LAB - Jobs/0 - Lab Instructions.py
+++ /dev/null
@@ -1,91 +0,0 @@
-# Databricks notebook source
-# MAGIC %md-sandbox
-# MAGIC
-# MAGIC
-# MAGIC

-# MAGIC
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC # Orchestrating Jobs with Databricks
-# MAGIC
-# MAGIC In this lab, you'll be configuring a multi-task job comprising of:
-# MAGIC * A notebook that lands a new batch of data in a storage directory
-# MAGIC * A Delta Live Table pipeline that processes this data through a series of tables
-# MAGIC * A notebook that queries the gold table produced by this pipeline as well as various metrics output by DLT
-# MAGIC
-# MAGIC By the end of this lab, you should feel confident:
-# MAGIC * Scheduling a notebook as a Databricks Job
-# MAGIC * Scheduling a DLT pipeline as a Databricks Job
-# MAGIC * Configuring linear dependencies between tasks using the Databricks Jobs UI
-# MAGIC
-# MAGIC ## Schedule a Notebook Job
-# MAGIC
-# MAGIC When using the Jobs UI to orchestrate a workload with multiple tasks, you'll always begin by scheduling a single task.
-# MAGIC
-# MAGIC Here, we'll start by scheduling the notebook `1 - Batch Job`.
-# MAGIC
-# MAGIC Steps:
-# MAGIC 1. Navigate to the Jobs UI using the Databricks left side navigation bar.
-# MAGIC 1. Click the blue `Create Job` button
-# MAGIC 1. Configure the task:
-# MAGIC 1. Enter `Batch-Job` for the task name
-# MAGIC 1. Select the notebook `1 - Batch Job` using the notebook picker
-# MAGIC 1. Select an Existing All Purpose Cluster from the **Cluster** dropdown
-# MAGIC 1. Click **Create**
-# MAGIC
-# MAGIC **Note**: When selecting your all purpose cluster, you will get a warning about how this will be billed as all purpose compute. Production jobs should always be scheduled against new job clusters appropriately sized for the workload, as this is billed at a much lower rate.
-# MAGIC
-# MAGIC Click the blue **Run now** button in the top right to confirm that you have successfully configured this task. From the **Runs** tab, clicking on the start time field will pull up the notebook with results.
-# MAGIC
-# MAGIC ## Schedule a DLT Pipeline as a Task
-# MAGIC
-# MAGIC In this step, we'll add a DLT pipeline to execute after the success of the task we configured in the previous step.
-# MAGIC
-# MAGIC **NOTE**: This step assumes that the DLT pipeline describe in the lab for module 3 of this course was configured successfully. If this is not the case, instructions are included for configuring this DLT pipeline in the run output of the `Batch-Job` notebook executed above.
-# MAGIC
-# MAGIC Steps:
-# MAGIC 1. Navigate to the Jobs UI using the Databricks left side navigation bar
-# MAGIC 1. Select the job you defined above by clicking on the name (this should have the name `Batch-Job`)
-# MAGIC 1. At the top left of your screen, you'll see the **Runs** tab is currently selected; click the **Tasks** tab.
-# MAGIC 1. Click the large blue circle with a **+** at the center bottom of the screen to add a new task
-# MAGIC 1. Specify the **Task name** as `DLT-Pipeline`
-# MAGIC 1. From **Type**, select `Pipeline`
-# MAGIC 1. Click the **Pipeline** field and select the DLT pipeline you configured previously
-# MAGIC 1. Note that the **Depends on** field defaults to your previously defined task
-# MAGIC 1. Click the blue **Create task** button
-# MAGIC
-# MAGIC You should now see a screen with 2 boxes and a downward arrow between them. Your `Batch-Job` task will be at the top, leading into your `DLT-Pipeline` task. This visualization represents the dependencies between these tasks.
-# MAGIC
-# MAGIC Before clicking **Run now**, click the job name in the top left and provide something unique and descriptive, like `-MTJ-lab`
-# MAGIC
-# MAGIC **NOTE**: You may need to wait a few minutes as infrastructure for your DLT pipeline is deployed. Feel free to skip clicking **Run now** until the next task is configured if you don't want to wait.
-# MAGIC
-# MAGIC ## Schedule an Additional Notebook Task
-# MAGIC
-# MAGIC An additional notebook has been provided which queries some of the DLT metrics and the gold table defined in the DLT pipeline. We'll add this as a final task in our job.
-# MAGIC
-# MAGIC Steps:
-# MAGIC 1. Navigate to the **Tasks** tab of the job you've been configuring
-# MAGIC 1. Click the blue **+** button to add another task
-# MAGIC 1. Specify the **Task name** as `Query-Results`
-# MAGIC 1. Leave the **Type** set to `Notebook`
-# MAGIC 1. Select the notebook `3 - Query Results Job` using the notebook picker
-# MAGIC 1. Note that the **Depends on** field defaults to your previously defined task
-# MAGIC 1. Select an Existing All Purpose Cluster from the **Cluster** dropdown
-# MAGIC 1. Click the blue **Create task** button
-# MAGIC
-# MAGIC Click the blue **Run now** button in the top right of the screen to run this job.
-# MAGIC
-# MAGIC From the **Runs** tab, you will be able to click on the start time for this run under the **Active runs** section and visually track task progress.
-# MAGIC
-# MAGIC Once all your tasks have succeeded, review the contents of each task to confirm expected behavior.
-
-# COMMAND ----------
-
-# MAGIC %md-sandbox
-# MAGIC © 2022 Databricks, Inc. All rights reserved.
-# MAGIC Apache, Apache Spark, Spark and the Spark logo are trademarks of the Apache Software Foundation.
-# MAGIC
-# MAGIC Privacy Policy | Terms of Use | Support
diff --git a/Data-Engineering-With-Databricks/04 - Managing Data Access and Production Pipelines/4.1.2 - LAB - Jobs/1 - Batch Job.py b/Data-Engineering-With-Databricks/04 - Managing Data Access and Production Pipelines/4.1.2 - LAB - Jobs/1 - Batch Job.py
deleted file mode 100644
index c8a6033..0000000
--- a/Data-Engineering-With-Databricks/04 - Managing Data Access and Production Pipelines/4.1.2 - LAB - Jobs/1 - Batch Job.py
+++ /dev/null
@@ -1,35 +0,0 @@
-# Databricks notebook source
-# MAGIC %run ../../Includes/dlt-setup
-
-# COMMAND ----------
-
-File.newData()
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC ## Create and Configure a Pipeline
-# MAGIC
-# MAGIC **NOTE**: This lab is configured to work with the DLT pipeline completed as part of the DLT lab in the previous module. If you have not successfully completed this lab, follow the instructions below to configure a pipeline using specified notebook.
-# MAGIC
-# MAGIC Instructions for configuring DLT pipeline:
-# MAGIC 1. Click the **Jobs** button on the sidebar, then select the **Delta Live Tables** tab.
-# MAGIC 1. Click **Create Pipeline**.
-# MAGIC 1. Fill in a **Pipeline Name** of your choosing.
-# MAGIC 1. For **Notebook Libraries**, use the navigator to locate and select the notebook `4.1.2 - DLT Job`.
-# MAGIC 1. Run the cell below to generate values for **source**, **Target** and **Storage Location**. (All of these will include your current username).
-# MAGIC * Click `Add configuration`; enter the word `source` in the **Key** field and the output printed next to `source` below in the value field.
-# MAGIC * Enter the database name printed next to `Target` below in the **Target** field.
-# MAGIC * Enter the location printed next to `Storage Location` below in the **Storage Location** field.
-# MAGIC 1. Set **Pipeline Mode** to **Triggered**.
-# MAGIC 1. Disable autoscaling.
-# MAGIC 1. Set the number of wokers to 1.
-# MAGIC 1. Click **Create**.
-
-# COMMAND ----------
-
-storage_location = userhome + "/output"
-print(f"source : {dataLandingLocation.split(':')[1]}")
-print(f"Target: {database}")
-print(f"Storage Location: {storage_location.split(':')[1]}")
-
diff --git a/Data-Engineering-With-Databricks/04 - Managing Data Access and Production Pipelines/4.1.2 - LAB - Jobs/3 - Query Results Job.py b/Data-Engineering-With-Databricks/04 - Managing Data Access and Production Pipelines/4.1.2 - LAB - Jobs/3 - Query Results Job.py
deleted file mode 100644
index a2d7e55..0000000
--- a/Data-Engineering-With-Databricks/04 - Managing Data Access and Production Pipelines/4.1.2 - LAB - Jobs/3 - Query Results Job.py
+++ /dev/null
@@ -1,62 +0,0 @@
-# Databricks notebook source
-# MAGIC %run ../../Includes/dlt-setup
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC # Exploring the Results of a DLT Pipeline
-# MAGIC
-# MAGIC This Notebook explores the execution results of a DLT pipeline. Before proceeding, you will need one piece of information specific to your pipeline instance: the location in DBFS where results are stored. Because we did not specify a value for **Storage Location** when creating the pipeline, DLT automatically created a folder for us. Obtain this information as follows.
-# MAGIC
-# MAGIC Click **Settings** on the **Pipeline Details** page. This provides a JSON representation of the pipeline configuration. Copy the value specified for **storage** and substitute for `` throughout the rest of this Notebook.
-# MAGIC
-# MAGIC
Generally, and particularly in production systems, you will specify **Storage Location** in your pipeline configurations to have full control of where pipeline results are stored.
-
-# COMMAND ----------
-
-storage_location = userhome + "/output"
-
-# COMMAND ----------
-
-dbutils.fs.ls(storage_location)
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC The `system` directory captures events associated with the pipeline.
-
-# COMMAND ----------
-
-dbutils.fs.ls(f"{storage_location}/system/events")
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC These event logs are stored as a Delta table. Let's query the table.
-
-# COMMAND ----------
-
-display(spark.sql(f"SELECT * FROM delta.`{storage_location}/system/events`"))
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC Let's view the contents of the *tables* directory.
-
-# COMMAND ----------
-
-dbutils.fs.ls(f"{storage_location}/tables")
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC Let's query the gold table.
-
-# COMMAND ----------
-
-display(spark.sql(f"SELECT * FROM {database}.daily_patient_avg"))
-
-# COMMAND ----------
-
-database
-
diff --git a/Data-Engineering-With-Databricks/04 - Managing Data Access and Production Pipelines/4.3.2 - LAB - Configuring Privileges for Production Data and Derived Tables.py b/Data-Engineering-With-Databricks/04 - Managing Data Access and Production Pipelines/4.3.2 - LAB - Configuring Privileges for Production Data and Derived Tables.py
deleted file mode 100644
index 79093dc..0000000
--- a/Data-Engineering-With-Databricks/04 - Managing Data Access and Production Pipelines/4.3.2 - LAB - Configuring Privileges for Production Data and Derived Tables.py
+++ /dev/null
@@ -1,203 +0,0 @@
-# Databricks notebook source
-# MAGIC %md-sandbox
-# MAGIC
-# MAGIC
-# MAGIC

-# MAGIC
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC # Configuring Privileges for Production Data and Derived Tables
-# MAGIC
-# MAGIC The instructions as detailed below are provided for pairs of users to explore how Table ACLs on Databricks work. It leverages Databricks SQL and the Data Explorer to accomplish these tasks, and assumes that neither user has admin privileges for the workspace. An admin will need to have previously granted `CREATE` and `USAGE` privileges on a catalog for users to be able to create databases in Databricksd SQL
-# MAGIC
-# MAGIC By the end of this lesson, you should be able to:
-# MAGIC * Use Data Explorer to navigate relational entities
-# MAGIC * Configure permissions for tables and views with Data Explorer
-# MAGIC * Configure minimal permissions to allow for table discovery and querying
-# MAGIC * Change ownership for databases, tables, and views created in DBSQL
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC ## Exchange User Names with your Partner
-# MAGIC If you are not in a workspace where you usernames correspond with your email address, make sure your partner has your username. They will need this when assigning privileges and searching for your database at later steps.
-# MAGIC
-# MAGIC The following query will print your username.
-
-# COMMAND ----------
-
-# MAGIC %sql
-# MAGIC SELECT current_user()
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC ## Generate Setup Statements
-# MAGIC
-# MAGIC The following cell uses Python to extract username of the present user and format this into several statements used to create databases, tables, and views.
-# MAGIC
-# MAGIC Both students should execute the following cell. Successful execution will print out a series of formatted SQL queries, which can be copied into the DBSQL query editor and executed.
-
-# COMMAND ----------
-
-def generate_query(course, mode="reset"):
- import re
- import random
-
- username = spark.sql("SELECT current_user()").first()[0]
- userhome = f"dbfs:/user/{username}/{course}"
- database = f"""dbacademy_{re.sub("[^a-zA-Z0-9]", "_", username)}_{course}"""
-
- if mode == "reset":
- spark.sql(f"DROP DATABASE IF EXISTS {database} CASCADE")
- dbutils.fs.rm(userhome, True)
-
- print(f"""
-CREATE DATABASE IF NOT EXISTS {database}
-LOCATION '{userhome}';
-
-USE {database};
-
-CREATE TABLE beans
-(name STRING, color STRING, grams FLOAT, delicious BOOLEAN);
-
-INSERT INTO beans
-VALUES ('black', 'black', {random.uniform(0, 5000):.2f}, {random.choice(["true", "false"])}),
-('lentils', 'brown', {random.uniform(0, 5000):.2f}, {random.choice(["true", "false"])}),
-('jelly', 'rainbow', {random.uniform(0, 5000):.2f}, {random.choice(["true", "false"])}),
-('pinto', 'brown', {random.uniform(0, 5000):.2f}, {random.choice(["true", "false"])}),
-('green', 'green', {random.uniform(0, 5000):.2f}, {random.choice(["true", "false"])}),
-('beanbag chair', 'white', {random.uniform(0, 5000):.2f}, {random.choice(["true", "false"])}),
-('lentils', 'green', {random.uniform(0, 5000):.2f}, {random.choice(["true", "false"])}),
-('kidney', 'red', {random.uniform(0, 5000):.2f}, {random.choice(["true", "false"])}),
-('castor', 'brown', {random.uniform(0, 5000):.2f}, {random.choice(["true", "false"])});
-
-CREATE VIEW tasty_beans
-AS SELECT * FROM beans WHERE delicious = true;
- """)
-generate_query("acls_lab")
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC Steps:
-# MAGIC * Run the cell above
-# MAGIC * Copy the entire output to your clipboard
-# MAGIC * Navigate to the Databricks SQL workspace
-# MAGIC * Make sure that a DBSQL endpoint is running
-# MAGIC * Use the left sidebar to select the **SQL Editor**
-# MAGIC * Paste the query above and click the blue **Run** in the top right
-# MAGIC
-# MAGIC **NOTE**: You will need to be connected to a DBSQL endpoint to execute these queries successfully. If you cannot connect to a DBSQL endpoint, you will need to contact your administrator to give you access.
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC ## Find Your Database
-# MAGIC In the Data Explorer, find the database you created earlier (this should follow the pattern `dbacademy__acls_lab`).
-# MAGIC
-# MAGIC Clicking on the database name should display a list of the contained tables and views on the left hand side. On the right, you'll see some details about the database, including the **Owner** and **Location**.
-# MAGIC
-# MAGIC Click the **Permissions** tab to review who presently has permissions (depending on your workspace configuration, some permissions may have been inherited from settings on the catalog).
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC ## Change Database Permissions
-# MAGIC
-# MAGIC Step:
-# MAGIC 1. Make sure you have the **Permissions** tab selected for the database
-# MAGIC 1. Click the blue **Grant** button
-# MAGIC 1. Select the **USAGE**, **SELECT**, and **READ_METADATA** options
-# MAGIC 1. Enter the username of your partner in the field at the top.
-# MAGIC 1. Click **OK**
-# MAGIC
-# MAGIC Confirm with your partner that you can each see each others' databases and tables.
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC ## Run a Query to Confirm
-# MAGIC
-# MAGIC By granting `USAGE`, `SELECT`, and `READ_METADATA` on your database, your partner should now be able to freely query the tables and views in this database, but will not be able to create new tables OR modify your data.
-# MAGIC
-# MAGIC In the SQL Editor, each user should run a series of queries to confirm this behavior in the database they were just added to.
-# MAGIC
-# MAGIC **Make sure you specify your partner's database while running the queries below.**
-# MAGIC
-# MAGIC Queries to execute:
-# MAGIC * `SELECT * FROM .beans`
-# MAGIC * `SELECT * FROM .tasty_beans`
-# MAGIC * `SELECT * FROM .beans MINUS SELECT * FROM .tasty_beans`
-# MAGIC * ```
-# MAGIC UPDATE .beans
-# MAGIC SET color = 'pink'
-# MAGIC WHERE name = 'black'
-# MAGIC ```
-# MAGIC
-# MAGIC **NOTE**: These first 3 queries should succeed, but the last should fail.
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC ## Execute a Query to Generate the Union of Your Beans
-# MAGIC
-# MAGIC Modify the query below to specify the `beans` tables in each of your databases.
-# MAGIC
-# MAGIC ```
-# MAGIC SELECT * FROM .beans
-# MAGIC UNION ALL TABLE .beans
-# MAGIC ```
-# MAGIC
-# MAGIC **NOTE**: Because random values were inserted for the `grams` and `delicious` columns, you should see 2 distinct rows for each `name`, `color` pair.
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC ## Register a Derivative View to Your Database
-# MAGIC
-# MAGIC Modify the query below to register the results of the previous query to your database.
-# MAGIC
-# MAGIC ```
-# MAGIC CREATE VIEW .our_beans AS
-# MAGIC SELECT * FROM .beans
-# MAGIC UNION ALL TABLE .beans
-# MAGIC ```
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC ## Query Your Partner's View
-# MAGIC
-# MAGIC Once your partner has successfully completed the previous step, run the following query against each of your tables; you should get the same results:
-# MAGIC
-# MAGIC ```
-# MAGIC SELECT name, color, delicious, sum(grams)
-# MAGIC FROM our_beans
-# MAGIC GROUP BY name, color, delicious
-# MAGIC ```
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC ## Add Modify Permissions
-# MAGIC
-# MAGIC Now try to drop each other's `beans` tables. At the moment, this shouldn't work.
-# MAGIC
-# MAGIC Using the Data Explorer, add the `MODIFY` permission for your `beans` table for your partner.
-# MAGIC
-# MAGIC Again, attempt to drop your partner's `beans` table. This time, it should succeed.
-# MAGIC
-# MAGIC Try to re-execute queries against any of the views of tables you'd previously queried in this lab.
-# MAGIC
-# MAGIC **NOTE**: If steps were completed successfully, none of your previous queries should work, as the data referenced by your views has been permanently deleted. This demonstrates the risks associated with providing `MODIFY` privileges to users on data that will be used in production applications and dashboards.
-
-# COMMAND ----------
-
-# MAGIC %md-sandbox
-# MAGIC © 2022 Databricks, Inc. All rights reserved.
-# MAGIC Apache, Apache Spark, Spark and the Spark logo are trademarks of the Apache Software Foundation.
-# MAGIC
-# MAGIC Privacy Policy | Terms of Use | Support
diff --git a/Data-Engineering-With-Databricks/04 - Managing Data Access and Production Pipelines/4.4.1 - Last Mile ETL with DBSQL.py b/Data-Engineering-With-Databricks/04 - Managing Data Access and Production Pipelines/4.4.1 - Last Mile ETL with DBSQL.py
deleted file mode 100644
index 453f786..0000000
--- a/Data-Engineering-With-Databricks/04 - Managing Data Access and Production Pipelines/4.4.1 - Last Mile ETL with DBSQL.py
+++ /dev/null
@@ -1,271 +0,0 @@
-# Databricks notebook source
-# MAGIC %md-sandbox
-# MAGIC
-# MAGIC
-# MAGIC

-# MAGIC
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC # Last Mile ETL with Databricks SQL
-# MAGIC
-# MAGIC Before we continue, let's do a recap of some of the things we've learned so far:
-# MAGIC 1. The Databricks workspace contains a suite of tools to simplify the data engineering development lifecycle
-# MAGIC 1. Databricks notebooks allow users to mix SQL with other programming languages to define ETL workloads
-# MAGIC 1. Delta Lake provides ACID compliant transactions and makes incremental data processing easy in the Lakehouse
-# MAGIC 1. Delta Live Tables extends the SQL syntax to support many design patterns in the Lakehouse, and simplifies infrastructure deployment
-# MAGIC 1. Multi-task jobs allows for full task orchestration, adding dependencies while scheduling a mix of notebooks and DLT pipelines
-# MAGIC 1. Databricks SQL allows users to edit and execute SQL queries, build visualizations, and define dashboards
-# MAGIC 1. Data Explorer simplifies managing Table ACLs, making Lakehouse data available to SQL analysts (soon to be expanded greatly by Unity Catalog)
-# MAGIC
-# MAGIC In this section, we'll focus on exploring more DBSQL functionality to support production workloads.
-# MAGIC
-# MAGIC We'll start by focusing on leveraging Databricks SQL to configure queries that support last mile ETL for analytics. Note that while we'll be using the Databricks SQL UI for this demo, SQL Endpoints [integrate with a number of other tools to allow external query execution](https://docs.databricks.com/integrations/partners.html, as well as having [full API support for executing arbitrary queries programmatically](https://docs.databricks.com/sql/api/index.html).
-# MAGIC
-# MAGIC From these query results, we'll generate a series of visualizations, which we'll combine into a dashboard.
-# MAGIC
-# MAGIC Finally, we'll walk through scheduling updates for queries and dashboards, and demonstrate setting alerts to help monitor the state of production datasets over time.
-# MAGIC
-# MAGIC ## Learning Objectives
-# MAGIC By the end of this lesson, you will feel confident:
-# MAGIC * Using Databricks SQL as a tool to support production ETL tasks backing analytic workloads
-# MAGIC * Configuring SQL queries and visualizations with the Databricks SQL Editor
-# MAGIC * Creating dashboards in Databricks SQL
-# MAGIC * Scheduling updates for queries and dashboards
-# MAGIC * Setting alerts for SQL queries
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC ## Run Setup Script
-# MAGIC The following cells runs a notebook that defines a class we'll use to generate SQL queries.
-
-# COMMAND ----------
-
-# MAGIC %run ../Includes/query_generator
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC Executing the following cell will reset the database set variables for later query formatting. You can remove the `mode="reset"` argument if you wish to print out the queries without resetting the target database.
-
-# COMMAND ----------
-
-Gen = QueryGenerator(course="4_4", mode="reset")
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC ## Create a Demo Database
-# MAGIC Execute the following cell and copy the results into the Databricks SQL Editor.
-# MAGIC
-# MAGIC These queries:
-# MAGIC * Create a new database
-# MAGIC * Declare two tables (we'll use these for loading data)
-# MAGIC * Declare two functions (we'll use these for generating data)
-# MAGIC
-# MAGIC Once copied, execute the query using the **Run** button.
-
-# COMMAND ----------
-
-Gen.config()
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC **NOTE**: The queries above are only designed to be run once after resetting the demo completely to reconfigure the environment. Users will need to have `CREATE` and `USAGE` permissions on the catalog to execute them.
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC ## Create a Query to Load Data
-# MAGIC Execute the cell below to print out a formatted SQL query for loading data in the `user_ping` table created in the previous step.
-# MAGIC
-# MAGIC Save this query with the name **Load Ping Data**.
-# MAGIC
-# MAGIC Run this query to load a batch of data.
-
-# COMMAND ----------
-
-Gen.load()
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC Executing the query should load some data and return a preview of the data in the table.
-# MAGIC
-# MAGIC **NOTE**: Random numbers are being used to define and load data, so each user will have slightly different values present.
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC ## Set a Query Refresh Schedule
-# MAGIC
-# MAGIC Steps:
-# MAGIC * Locate the **Refresh Schedule** field at the bottom right of the SQL query editor box; click the blue **Never**
-# MAGIC * Use the drop down to change to Refresh every **1 minute**
-# MAGIC * For **Ends**, click the **On** radio button
-# MAGIC * Select tomorrow's date
-# MAGIC * Click **OK**
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC ## Create a Query to Track Total Records
-# MAGIC
-# MAGIC Execute the cell below to print out a formatted SQL query to track total records in the `user_ping` table.
-# MAGIC
-# MAGIC Save this query with the name **User Counts**.
-# MAGIC
-# MAGIC Run the query to calculate the current results.
-
-# COMMAND ----------
-
-Gen.user_counts()
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC ## Create a Bar Graph Visualization
-# MAGIC
-# MAGIC Steps:
-# MAGIC * Click the **Add Visualization** button
-# MAGIC * Click on the name (should default to something like `Visualization 1`) and change the name to **Total User Records**
-# MAGIC * Set `user_id` for the **X Column**
-# MAGIC * Set `total_records` for the **Y Columns**
-# MAGIC * Click **Save**
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC ## Create a New Dashboard
-# MAGIC
-# MAGIC Steps:
-# MAGIC * Click the button with three vertical dots at the bottom of the screen and select **Add to Dashboard**.
-# MAGIC * Click the **Create new dashboard** option
-# MAGIC * Name your dashboard **User Ping Summary ``**
-# MAGIC * Click **Save** to create the new dashboard
-# MAGIC * Your newly created dashboard should now be selected as the target; click **OK** to add your visualization
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC ## Create a Query to Calculate the Recent Average Ping
-# MAGIC
-# MAGIC Execute the cell below to print out a formatted SQL query to calculate the average ping observed per user over a 3 minute window.
-# MAGIC
-# MAGIC Save this query with the name **Avg Ping**.
-# MAGIC
-# MAGIC Run the query to calculate the current results.
-
-# COMMAND ----------
-
-Gen.avg_ping()
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC ## Add a Line Plot Visualization to your Dashboard
-# MAGIC
-# MAGIC Steps:
-# MAGIC * Click the **Add Visualization** button
-# MAGIC * Click on the name (should default to something like `Visualization 1`) and change the name to **Avg User Ping**
-# MAGIC * Select `Line` for the **Visualization Type**
-# MAGIC * Set `end_time` for the **X Column**
-# MAGIC * Set `avg_ping` for the **Y Columns**
-# MAGIC * Set `user_id` for the **Group by**
-# MAGIC * Click **Save**
-# MAGIC * Click the button with three vertical dots at the bottom of the screen and select **Add to Dashboard**.
-# MAGIC * Select the dashboard you created earlier
-# MAGIC * Click **OK** to add your visualization
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC ## Create a Query to Report Summary Statistics
-# MAGIC
-# MAGIC Execute the cell below to print out a formatted SQL query that summarizes all records for a user.
-# MAGIC
-# MAGIC Save this query with the name **Ping Summary**.
-# MAGIC
-# MAGIC Run the query to calculate the current results.
-
-# COMMAND ----------
-
-Gen.summary()
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC ## Add the Summary Table to your Dashboard
-# MAGIC
-# MAGIC Steps:
-# MAGIC * Click the button with three vertical dots at the bottom of the screen and select **Add to Dashboard**.
-# MAGIC * Select the dashboard you created earlier
-# MAGIC * Click **OK** to add your visualization
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC ## Review and Refresh your Dashboard
-# MAGIC
-# MAGIC Steps:
-# MAGIC * Use the left side bar to navigate to **Dashboards**
-# MAGIC * Find the dashboard you've added your queries to
-# MAGIC * Click the blue **Refresh** button to update your dashboard
-# MAGIC * Click the **Schedule** button to review dashboard scheduling options
-# MAGIC * Note that scheduling a dashboard to update will execute all queries associated with that dashboard
-# MAGIC * Do not schedule the dashboard at this time
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC ## Share your Dashboard
-# MAGIC
-# MAGIC Steps:
-# MAGIC * Click the blue **Share** button
-# MAGIC * Select **All Users** from the top field
-# MAGIC * Choose **Can Run** from the right field
-# MAGIC * Click **Add**
-# MAGIC * Change the **Credentials** to **Run as viewer**
-# MAGIC
-# MAGIC **NOTE**: At present, no other users should have any permissions to run your dashboard, as they have not been granted permissions to the underlying databases and tables using Table ACLs. If you wish other users to be able to trigger updates to your dashboard, you will either need to grant them permissions to **Run as owner** or add permissions for the tables referenced in your queries.
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC ## Set Up an Alert
-# MAGIC
-# MAGIC Steps:
-# MAGIC * Use the left side bar to navigate to **Alerts**
-# MAGIC * Click **Create Alert** in the top right
-# MAGIC * Click the field at the top left of the screen to give the alert a name **` Count Check`**
-# MAGIC * Select your **User Counts** query
-# MAGIC * For the **Trigger when** options, configure:
-# MAGIC * **Value column**: `total_records`
-# MAGIC * **Condition**: `>`
-# MAGIC * **Threshold**: 15
-# MAGIC * For **Refresh**, select **Never**
-# MAGIC * Click **Create Alert**
-# MAGIC * On the next screen, click the blue **Refresh** in the top right to evaluate the alert
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC ## Review Alert Destination Options
-# MAGIC
-# MAGIC
-# MAGIC
-# MAGIC Steps:
-# MAGIC * From the preview of your alert, click the blue **Add** button to the right of **Destinations** on the right side of the screen
-# MAGIC * At the bottom of the window that pops up, locate the and click the blue text in the message **Create new destinations in Alert Destinations**
-# MAGIC * Review the available alerting options
-
-# COMMAND ----------
-
-# MAGIC %md-sandbox
-# MAGIC © 2022 Databricks, Inc. All rights reserved.
-# MAGIC Apache, Apache Spark, Spark and the Spark logo are trademarks of the Apache Software Foundation.
-# MAGIC
-# MAGIC Privacy Policy | Terms of Use | Support
diff --git a/Data-Engineering-With-Databricks/04 - Managing Data Access and Production Pipelines/4.4.2 - LAB - End-to-End ELT in the Lakehouse/0 - Instructions and Configuration.py b/Data-Engineering-With-Databricks/04 - Managing Data Access and Production Pipelines/4.4.2 - LAB - End-to-End ELT in the Lakehouse/0 - Instructions and Configuration.py
deleted file mode 100644
index 0def76c..0000000
--- a/Data-Engineering-With-Databricks/04 - Managing Data Access and Production Pipelines/4.4.2 - LAB - End-to-End ELT in the Lakehouse/0 - Instructions and Configuration.py
+++ /dev/null
@@ -1,276 +0,0 @@
-# Databricks notebook source
-# MAGIC %md-sandbox
-# MAGIC
-# MAGIC
-# MAGIC

-# MAGIC
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC
-# MAGIC ## End-to-End ETL in the Lakehouse
-# MAGIC
-# MAGIC In this notebook, you will pull together concepts learned throughout the course to complete an example data pipeline.
-# MAGIC
-# MAGIC The following is a non-exhaustive list of skills and tasks necessary to successfully complete this exercise:
-# MAGIC * Using Databricks notebooks to write queries in SQL and Python
-# MAGIC * Creating and modifying databases, tables, and views
-# MAGIC * Using Auto Loader and Spark Structured Streaming for incremental data processing in a multi-hop architecture
-# MAGIC * Using Delta Live Table SQL syntax
-# MAGIC * Configuring a Delta Live Table pipeline for continuous processing
-# MAGIC * Using Databricks Jobs to orchestrate tasks from notebooks stored in Repos
-# MAGIC * Setting chronological scheduling for Databricks Jobs
-# MAGIC * Defining queries in Databricks SQL
-# MAGIC * Creating visualizations in Databricks SQL
-# MAGIC * Defining Databricks SQL dashboards to review metrics and results
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC ## Run Setup
-# MAGIC Run the following cell to reset all the databases and diretories associated with this lab.
-
-# COMMAND ----------
-
-# MAGIC %run "../../Includes/dlt-setup" $mode="reset"
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC ## Land Initial Data
-# MAGIC Seed the landing zone with some data before proceeding.
-
-# COMMAND ----------
-
-File.newData()
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC ## Create and Configure a DLT Pipeline
-# MAGIC **NOTE**: The main difference between the instructions here and in previous labs with DLT is that in this instance, we will be setting up our pipeline for **Continuous** execution in **Production** mode.
-# MAGIC
-# MAGIC Steps:
-# MAGIC 1. Click the **Jobs** button on the sidebar, then select the **Delta Live Tables** tab.
-# MAGIC 1. Click **Create Pipeline**.
-# MAGIC 1. Fill in a **Pipeline Name** of your choosing.
-# MAGIC 1. For **Notebook Libraries**, use the navigator to locate and select the notebook `1 - DLT Task`.
-# MAGIC 1. Run the cell below to generate values for **source**, **Target** and **Storage Location**. (All of these will include your current username).
-# MAGIC * Click `Add configuration`; enter the word `source` in the **Key** field and the output printed next to `source` below in the value field.
-# MAGIC * Enter the database name printed next to `Target` below in the **Target** field.
-# MAGIC * Enter the location printed next to `Storage Location` below in the **Storage Location** field.
-# MAGIC 1. Set **Pipeline Mode** to **Continuous**.
-# MAGIC 1. Disable autoscaling.
-# MAGIC 1. Set the number of wokers to 1.
-# MAGIC 1. Click **Create**.
-# MAGIC
-# MAGIC In the UI that populates, change from **Development** to **Production** mode. This should begin the deployment of infrastructure.
-
-# COMMAND ----------
-
-storage_location = userhome + "/output"
-print(f"source : {dataLandingLocation.split(':')[1]}")
-print(f"Target: {database}")
-print(f"Storage Location: {storage_location.split(':')[1]}")
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC ## Schedule a Notebook Job
-# MAGIC
-# MAGIC Our DLT pipeline is setup to process data as soon as it arrives. We'll schedule a notebook to land a new batch of data each minute so we can see this functionality in action.
-# MAGIC
-# MAGIC Steps:
-# MAGIC 1. Navigate to the Jobs UI using the Databricks left side navigation bar.
-# MAGIC 1. Click the blue `Create Job` button
-# MAGIC 1. Configure the task:
-# MAGIC 1. Enter `Land-Data` for the task name
-# MAGIC 1. Select the notebook `2 - Land New Data` using the notebook picker
-# MAGIC 1. Select an Existing All Purpose Cluster from the **Cluster** dropdown
-# MAGIC 1. Click **Create**
-# MAGIC
-# MAGIC **Note**: When selecting your all purpose cluster, you will get a warning about how this will be billed as all purpose compute. Production jobs should always be scheduled against new job clusters appropriately sized for the workload, as this is billed at a much lower rate.
-# MAGIC
-# MAGIC ## Set a Chronological Schedule for your Job
-# MAGIC Steps:
-# MAGIC * On the right hand side of the Jobs UI, locate **Schedule** section.
-# MAGIC * Click on the **Edit schedule** button to explore scheduling options.
-# MAGIC * Change **Schedule type** field from **Manual** to **Scheduled** will bring up a chron scheduling UI.
-# MAGIC * Set the schedule to update every **2 minutes**
-# MAGIC * Click **Save**
-# MAGIC
-# MAGIC **NOTE**: If you wish, you can click **Run now** to trigger the first run, or wait until the top of the next minute to make sure your scheduling has worked successfully.
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC ## Register DLT Event Metrics for Querying with DBSQL
-# MAGIC
-# MAGIC The following cell prints out SQL statements to register the DLT event logs to your target database for querying in DBSQL.
-# MAGIC
-# MAGIC Execute the output code with the DBSQL Query Editor to register these tables and views. Explore each and make note of the logged event metrics.
-
-# COMMAND ----------
-
-print(f"""
-CREATE TABLE IF NOT EXISTS {database}.dlt_events
-LOCATION '{storage_location}/system/events';
-
-CREATE VIEW IF NOT EXISTS {database}.dlt_success AS
-SELECT * FROM {database}.dlt_events
-WHERE details:flow_progress:metrics IS NOT NULL;
-
-CREATE VIEW IF NOT EXISTS {database}.dlt_metrics AS
-SELECT timestamp, origin.flow_name, details
-FROM {database}.dlt_success
-ORDER BY timestamp DESC;
-""")
-
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC ## Define a Query on the Gold Table
-# MAGIC
-# MAGIC The `daily_patient_avg` table is automatically updated each time a new batch of data is processed through the DLT pipeline. Each time a query is executed against this table, DBSQL will confirm if there is a newer version and then materialize results from the newest available version.
-# MAGIC
-# MAGIC Run the following cell to print out a query with your database name. Save this as a DBSQL query.
-
-# COMMAND ----------
-
-print(f"SELECT * FROM {database}.daily_patient_avg")
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC ## Add a Line Plot Visualization
-# MAGIC
-# MAGIC To track trends in patient averages over time, create a line plot and add it to a new dashboard.
-# MAGIC
-# MAGIC Create a line plot with the following settings:
-# MAGIC * **X Column**: `date`
-# MAGIC * **Y Columns**: `avg_heartrate`
-# MAGIC * **Group By**: `name`
-# MAGIC
-# MAGIC Add this visualization to a dashboard.
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC ## Track Data Processing Progress
-# MAGIC
-# MAGIC The code below extracts the `flow_name`, `timestamp`, and `num_output_rows` from the DLT event logs.
-# MAGIC
-# MAGIC Save this query in DBSQL, then define a bar plot visualization that shows:
-# MAGIC * **X Column**: `timestamp`
-# MAGIC * **Y Columns**: `num_output_rows`
-# MAGIC * **Group By**: `flow_name`
-# MAGIC
-# MAGIC Add your visualization to your dashboard.
-
-# COMMAND ----------
-
-print(f"""
-SELECT flow_name, timestamp, int(details:flow_progress:metrics:num_output_rows) num_output_rows
-FROM {database}.dlt_metrics
-ORDER BY timestamp DESC
-""")
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC ## Refresh your Dashboard and Track Results
-# MAGIC
-# MAGIC The `Land-Data` notebook scheduled with Jobs above has 12 batches of data, each representing a month of recordings for our small sampling of patients. As configured per our instructions, it should take just over 20 minutes for all of these batches of data to be triggered and processed (we scheduled the Databricks Job to run every 2 minutes, and batches of data will process through our pipeline very quickly after initial ingestion).
-# MAGIC
-# MAGIC Refresh your dashboard and review your visualizations to see how many batches of data have been processed. (If you followed the instructions as outlined here, there should be 12 distinct flow updates tracked by your DLT metrics.) If all source data has not yet been processed, you can go back to the Databricks Jobs UI and manually trigger additional batches.
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC ## Execute a Query to Repair Broken Data
-# MAGIC
-# MAGIC Review the code that defined the `recordings_enriched` table to identify the filter applied for the quality check.
-# MAGIC
-# MAGIC In the cell below, write a query that returns all the records from the `recordings_bronze` table that were refused by this quality check.
-
-# COMMAND ----------
-
-# TODO
-display(spark.sql(f""))
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC For the purposes of our demo, let's assume that thorough manual review of our data and systems has demonstrated that occassionally otherwise valid heartrate recordings are returned as negative values.
-# MAGIC
-# MAGIC Run the following query to examine these same rows with the negative sign removed.
-
-# COMMAND ----------
-
-display(spark.sql(f"SELECT abs(heartrate), * FROM {database}.recordings_bronze WHERE heartrate <= 0"))
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC To complete our dataset, we wish to insert these fixed records into the silver `recordings_enriched` table.
-# MAGIC
-# MAGIC Use the cell below to update the query used in the DLT pipeline to execute this repair.
-# MAGIC
-# MAGIC **NOTE**: Make sure you update the code to only process those records that were previously rejected due to the quality check.
-
-# COMMAND ----------
-
-# TODO
-# CREATE INCREMENTAL LIVE TABLE recordings_enriched
-# (CONSTRAINT positive_heartrate EXPECT (heartrate > 0) ON VIOLATION DROP ROW)
-# AS SELECT
-# CAST(a.device_id AS INTEGER) device_id,
-# CAST(a.mrn AS LONG) mrn,
-# CAST(a.heartrate AS DOUBLE) heartrate,
-# CAST(from_unixtime(a.time, 'yyyy-MM-dd HH:mm:ss') AS TIMESTAMP) time,
-# b.name
-# FROM STREAM(live.recordings_bronze) a
-# INNER JOIN STREAM(live.pii) b
-# ON a.mrn = b.mrn
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC Use the cell below to manually or programmatically confirm that this update has been successful.
-# MAGIC
-# MAGIC (The total number of records in the `recordings_bronze` should now be equal to the total records in `recordings_enriched`).
-
-# COMMAND ----------
-
-# TODO
-
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC ## Consider Production Data Permissions
-# MAGIC
-# MAGIC Note that while our manual repair of the data was successful, as the owner of these datasets, by default we have permissions to modify or delete these data from any location we're executing code.
-# MAGIC
-# MAGIC To put this another way: our current permissions would allow us to change or drop our production tables permanently if an errant SQL query is accidentally executed with the current user's permissions (or if other users are granted similar permissions).
-# MAGIC
-# MAGIC While for the purposes of this lab, we desired to have full permissions on our data, as we move code from development to production, it is safer to leverage [service principals](https://docs.databricks.com/administration-guide/users-groups/service-principals.html) when scheduling Jobs and DLT Pipelines to avoid accidental data modifications.
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC ## Shut Down Production Infrastructure
-# MAGIC
-# MAGIC Note that Databricks Jobs, DLT Pipelines, and scheduled DBSQL queries and dashboards are all designed to provide sustained execution of production code. In this end-to-end demo, you were instructed to configure a Job and Pipeline for continuous data processing. To prevent these workloads from continuing to execute, you should **Pause** your Databricks Job and **Stop** your DLT pipeline. Deleting these assets will also ensure that production infrastructure is terminated.
-# MAGIC
-# MAGIC **NOTE**: All instructions for DBSQL asset scheduling in previous lessons instructed users to set the update schedule to end tomorrow. You may choose to go back and also cancel these updates to prevent DBSQL endpoints from staying on until that time.
-
-# COMMAND ----------
-
-# MAGIC %md-sandbox
-# MAGIC © 2022 Databricks, Inc. All rights reserved.
-# MAGIC Apache, Apache Spark, Spark and the Spark logo are trademarks of the Apache Software Foundation.
-# MAGIC
-# MAGIC Privacy Policy | Terms of Use | Support
diff --git a/Data-Engineering-With-Databricks/04 - Managing Data Access and Production Pipelines/4.4.2 - LAB - End-to-End ELT in the Lakehouse/2 - Land New Data.py b/Data-Engineering-With-Databricks/04 - Managing Data Access and Production Pipelines/4.4.2 - LAB - End-to-End ELT in the Lakehouse/2 - Land New Data.py
deleted file mode 100644
index 466f683..0000000
--- a/Data-Engineering-With-Databricks/04 - Managing Data Access and Production Pipelines/4.4.2 - LAB - End-to-End ELT in the Lakehouse/2 - Land New Data.py
+++ /dev/null
@@ -1,8 +0,0 @@
-# Databricks notebook source
-# MAGIC %run ../../Includes/dlt-setup
-
-# COMMAND ----------
-
-File.newData()
-
-
diff --git a/Data-Engineering-With-Databricks/Includes/Reset.py b/Data-Engineering-With-Databricks/Includes/Reset.py
deleted file mode 100644
index 7b1e766..0000000
--- a/Data-Engineering-With-Databricks/Includes/Reset.py
+++ /dev/null
@@ -1,21 +0,0 @@
-# Databricks notebook source
-import pyspark.sql.functions as F
-import re
-
-course_name = "eltsql"
-
-username = spark.sql("SELECT current_user()").first()[0]
-clean_username = re.sub("[^a-zA-Z0-9]", "_", username)
-database = f"""{clean_username}_dbacademy_{course_name}"""
-userhome = f"dbfs:/user/{username}/dbacademy/{course_name}"
-
-print(f"username: {username}")
-print(f"clean_username: {clean_username}")
-print(f"database: {database}")
-print(f"userhome: {userhome}")
-
-dbutils.fs.rm(userhome, True)
-
-print(f"Dropping the database {database}")
-spark.sql(f"DROP DATABASE IF EXISTS {database} CASCADE")
-
diff --git a/Data-Engineering-With-Databricks/Includes/classic-setup.py b/Data-Engineering-With-Databricks/Includes/classic-setup.py
deleted file mode 100644
index 7f69e33..0000000
--- a/Data-Engineering-With-Databricks/Includes/classic-setup.py
+++ /dev/null
@@ -1,71 +0,0 @@
-# Databricks notebook source
-for stream in spark.streams.active:
- stream.stop()
-
-# COMMAND ----------
-
-import pyspark.sql.functions as F
-import re
-
-course_name = "dewd"
-
-username = spark.sql("SELECT current_user()").first()[0]
-clean_username = re.sub("[^a-zA-Z0-9]", "_", username)
-database = f"dbacademy_{clean_username}_{course_name}"
-
-userhome = f"dbfs:/user/{username}/dbacademy/{course_name}"
-
-print(f"""
-username: {username}
-userhome: {userhome}
-database: {database}""")
-
-dbutils.widgets.text("mode", "setup")
-mode = dbutils.widgets.get("mode")
-
-if mode == "reset" or mode == "clean":
- spark.sql(f"DROP DATABASE IF EXISTS {database} CASCADE")
- dbutils.fs.rm(userhome, True)
-
-if mode != "clean":
- spark.sql(f"CREATE DATABASE IF NOT EXISTS {database}")
- spark.sql(f"USE {database}")
-
-# COMMAND ----------
-
-# MAGIC %run ./mount-datasets
-
-# COMMAND ----------
-
-outputPath = userhome + "/streaming-concepts"
-checkpointPath = outputPath + "/checkpoint"
-
-# original dataset
-dataSource = "/mnt/training/definitive-guide/data/activity-json/streaming"
-
-# data landing location; files will be copies from original dataset one at a time for incremental ingestion use case
-dataLandingLocation = outputPath + "/landing-zone"
-
-outputTable = "bronze_table"
-
-spark.conf.set('c.outputTable', outputTable)
-
-# COMMAND ----------
-
-class FileArrival:
- def __init__(self, dataSource, landingZone):
- self.sourceFiles = dbutils.fs.ls(dataSource)
- dbutils.fs.mkdirs(landingZone)
- self.landingZone = landingZone
- self.fileID = 0
-
- def newData(self, numFiles=1):
- for i in range(numFiles):
- dbutils.fs.cp(self.sourceFiles[self.fileID].path, self.landingZone)
- self.fileID+=1
-
-# COMMAND ----------
-
-File = FileArrival(dataSource, dataLandingLocation)
-File.newData()
-
diff --git a/Data-Engineering-With-Databricks/Includes/dlt-setup.py b/Data-Engineering-With-Databricks/Includes/dlt-setup.py
deleted file mode 100644
index 2c76be0..0000000
--- a/Data-Engineering-With-Databricks/Includes/dlt-setup.py
+++ /dev/null
@@ -1,80 +0,0 @@
-# Databricks notebook source
-for stream in spark.streams.active:
- stream.stop()
-
-# COMMAND ----------
-
-import pyspark.sql.functions as F
-import re
-
-dbutils.widgets.text("course", "dewd")
-course_name = dbutils.widgets.get("course")
-
-username = spark.sql("SELECT current_user()").first()[0]
-clean_username = re.sub("[^a-zA-Z0-9]", "_", username)
-database = f"dbacademy_{clean_username}_{course_name}"
-
-userhome = f"dbfs:/user/{username}/dbacademy/{course_name}"
-
-print(f"""
-username: {username}
-userhome: {userhome}
-database: {database}""")
-
-dbutils.widgets.text("mode", "setup")
-mode = dbutils.widgets.get("mode")
-
-if mode == "reset" or mode == "clean":
- spark.sql(f"DROP DATABASE IF EXISTS {database} CASCADE")
- dbutils.fs.rm(userhome, True)
-
-# COMMAND ----------
-
-# MAGIC %run ./mount-datasets
-
-# COMMAND ----------
-
-sqlContext.setConf("spark.sql.shuffle.partitions", spark.sparkContext.defaultParallelism)
-
-# COMMAND ----------
-
-dataSource = "/mnt/training/healthcare"
-
-dataLandingLocation = userhome + "/source"
-bronzePath = userhome + "/bronze"
-recordingsParsedPath = userhome + "/silver/recordings_parsed"
-recordingsEnrichedPath = userhome + "/silver/recordings_enriched"
-dailyAvgPath = userhome + "/gold/dailyAvg"
-
-checkpointPath = userhome + "/checkpoints"
-bronzeCheckpoint = userhome + "/checkpoints/bronze"
-recordingsParsedCheckpoint = userhome + "/checkpoints/recordings_parsed"
-recordingsEnrichedCheckpoint = userhome + "/checkpoints/recordings_enriched"
-dailyAvgCheckpoint = userhome + "/checkpoints/dailyAvgPath"
-
-# COMMAND ----------
-
-class FileArrival:
- def __init__(self):
- self.source = dataSource + "/tracker/streaming/"
- self.userdir = dataLandingLocation + "/"
- try:
- self.curr_mo = 1 + int(max([x[1].split(".")[0] for x in dbutils.fs.ls(self.userdir)]))
- except:
- self.curr_mo = 1
-
- def newData(self, continuous=False):
- if self.curr_mo > 12:
- print("Data source exhausted\n")
- elif continuous == True:
- while self.curr_mo <= 12:
- curr_file = f"{self.curr_mo:02}.json"
- dbutils.fs.cp(self.source + curr_file, self.userdir + curr_file)
- self.curr_mo += 1
- else:
- curr_file = f"{str(self.curr_mo).zfill(2)}.json"
- dbutils.fs.cp(self.source + curr_file, self.userdir + curr_file)
- self.curr_mo += 1
-
-File = FileArrival()
-
diff --git a/Data-Engineering-With-Databricks/Includes/multi-hop-setup.py b/Data-Engineering-With-Databricks/Includes/multi-hop-setup.py
deleted file mode 100644
index fdc0645..0000000
--- a/Data-Engineering-With-Databricks/Includes/multi-hop-setup.py
+++ /dev/null
@@ -1,80 +0,0 @@
-# Databricks notebook source
-for stream in spark.streams.active:
- stream.stop()
-
-# COMMAND ----------
-
-import pyspark.sql.functions as F
-import re
-
-course_name = "dewd"
-
-username = spark.sql("SELECT current_user()").first()[0]
-clean_username = re.sub("[^a-zA-Z0-9]", "_", username)
-database = f"dbacademy_{clean_username}_{course_name}"
-
-userhome = f"dbfs:/user/{username}/dbacademy/{course_name}"
-
-print(f"""
-username: {username}
-userhome: {userhome}
-database: {database}""")
-
-dbutils.widgets.text("mode", "setup")
-mode = dbutils.widgets.get("mode")
-
-if mode == "reset" or mode == "clean":
- spark.sql(f"DROP DATABASE IF EXISTS {database} CASCADE")
- dbutils.fs.rm(userhome, True)
-
-if mode != "clean":
- spark.sql(f"CREATE DATABASE IF NOT EXISTS {database}")
- spark.sql(f"USE {database}")
-
-# COMMAND ----------
-
-# MAGIC %run ./mount-datasets
-
-# COMMAND ----------
-
-sqlContext.setConf("spark.sql.shuffle.partitions", spark.sparkContext.defaultParallelism)
-
-# COMMAND ----------
-
-dataSource = "/mnt/training/healthcare"
-
-dataLandingLocation = userhome + "/source"
-bronzePath = userhome + "/bronze"
-recordingsParsedPath = userhome + "/silver/recordings_parsed"
-recordingsEnrichedPath = userhome + "/silver/recordings_enriched"
-dailyAvgPath = userhome + "/gold/dailyAvg"
-
-checkpointPath = userhome + "/checkpoints"
-bronzeCheckpoint = userhome + "/checkpoints/bronze"
-recordingsParsedCheckpoint = userhome + "/checkpoints/recordings_parsed"
-recordingsEnrichedCheckpoint = userhome + "/checkpoints/recordings_enriched"
-dailyAvgCheckpoint = userhome + "/checkpoints/dailyAvgPath"
-
-# COMMAND ----------
-
-class FileArrival:
- def __init__(self):
- self.source = dataSource + "/tracker/streaming/"
- self.userdir = dataLandingLocation + "/"
- self.curr_mo = 1
-
- def newData(self, continuous=False):
- if self.curr_mo > 12:
- print("Data source exhausted\n")
- elif continuous == True:
- while self.curr_mo <= 12:
- curr_file = f"{self.curr_mo:02}.json"
- dbutils.fs.cp(self.source + curr_file, self.userdir + curr_file)
- self.curr_mo += 1
- else:
- curr_file = f"{str(self.curr_mo).zfill(2)}.json"
- dbutils.fs.cp(self.source + curr_file, self.userdir + curr_file)
- self.curr_mo += 1
-
-File = FileArrival()
-
diff --git a/Data-Engineering-With-Databricks/Includes/query_generator.py b/Data-Engineering-With-Databricks/Includes/query_generator.py
deleted file mode 100644
index 14b40b3..0000000
--- a/Data-Engineering-With-Databricks/Includes/query_generator.py
+++ /dev/null
@@ -1,88 +0,0 @@
-# Databricks notebook source
-class QueryGenerator:
- def __init__(self, course, mode="normal"):
- import re
- import random
- self.username = spark.sql("SELECT current_user()").first()[0]
- self.userhome = f"dbfs:/user/{self.username}/{course}"
- self.database = f"""dbacademy_{re.sub("[^a-zA-Z0-9]", "_", self.username)}_{course}"""
-
- if mode == "reset":
- spark.sql(f"DROP DATABASE IF EXISTS {self.database} CASCADE")
- dbutils.fs.rm(self.userhome, True)
-
- def config(self):
- print(f"""
-CREATE DATABASE {self.database}
-LOCATION '{self.userhome}';
-
-USE {self.database};
-
-CREATE TABLE user_ping
-(user_id STRING, ping INTEGER, time TIMESTAMP);
-
-CREATE TABLE user_ids (user_id STRING);
-
-INSERT INTO user_ids VALUES
-("potato_luver"),
-("beanbag_lyfe"),
-("default_username"),
-("the_king"),
-("n00b"),
-("frodo"),
-("data_the_kid"),
-("el_matador"),
-("the_wiz");
-
-CREATE FUNCTION get_ping()
- RETURNS INT
- RETURN int(rand() * 250);
-
-CREATE FUNCTION is_active()
- RETURNS BOOLEAN
- RETURN CASE
- WHEN rand() > .25 THEN true
- ELSE false
- END;
- """)
-
- def load(self):
- print(f"""
-INSERT INTO {self.database}.user_ping
-SELECT *,
- {self.database}.get_ping() ping,
- current_timestamp() time
-FROM {self.database}.user_ids
-WHERE {self.database}.is_active()=true;
-
-SELECT * FROM {self.database}.user_ping;
- """)
-
- def user_counts(self):
- print(f"""
-SELECT user_id, count(*) total_records
-FROM {self.database}.user_ping
-GROUP BY user_id
-ORDER BY
- total_records DESC,
- user_id ASC;;
- """)
-
- def avg_ping(self):
- print(f"""
-SELECT user_id, window.end end_time, mean(ping) avg_ping
-FROM {self.database}.user_ping
-GROUP BY user_id, window(time, '3 minutes')
-ORDER BY
- end_time DESC,
- user_id ASC;
- """)
-
- def summary(self):
- print(f"""
-SELECT user_id, min(time) first_seen, max(time) last_seen, count(*) total_records, avg(ping) total_avg_ping
-FROM {self.database}.user_ping
-GROUP BY user_id
-ORDER BY user_id ASC
- """)
-
diff --git a/Data-Engineering-With-Databricks/Includes/setup-cleaned.py b/Data-Engineering-With-Databricks/Includes/setup-cleaned.py
deleted file mode 100644
index 09cb1e2..0000000
--- a/Data-Engineering-With-Databricks/Includes/setup-cleaned.py
+++ /dev/null
@@ -1,56 +0,0 @@
-# Databricks notebook source
-# MAGIC %run ./setup-updates
-
-# COMMAND ----------
-
-def merge_deduped_users():
- spark.sql(f"""
- CREATE OR REPLACE TEMP VIEW deduped_users AS
- SELECT user_id, user_first_touch_timestamp, max(email) email, max(updated) updated
- FROM users_update
- GROUP BY user_id, user_first_touch_timestamp
- """)
-
- spark.sql(f"""
- MERGE INTO users a
- USING deduped_users b
- ON a.user_id = b.user_id
- WHEN MATCHED AND a.email IS NULL AND b.email IS NOT NULL THEN
- UPDATE SET email = b.email, updated = b.updated
- WHEN NOT MATCHED THEN INSERT *
- """)
-
-
-# COMMAND ----------
-
-def merge_events_update():
- spark.sql(f"""
- MERGE INTO events a
- USING events_update b
- ON a.user_id = b.user_id AND a.event_timestamp = b.event_timestamp
- WHEN NOT MATCHED AND b.traffic_source = 'email' THEN
- INSERT *
- """)
-
-
-# COMMAND ----------
-
-def merge_sales_update():
- spark.sql(f"""
- COPY INTO sales
- FROM "{Paths.source}/sales/sales-30m.parquet"
- FILEFORMAT = PARQUET
- """)
-
-
-# COMMAND ----------
-
-merge_deduped_users()
-merge_events_update()
-merge_sales_update()
-
-# COMMAND ----------
-
-# MAGIC %sql
-# MAGIC CREATE OR REPLACE TABLE item_lookup AS
-# MAGIC SELECT * FROM parquet.`${c.source}/products/products.parquet`
diff --git a/Data-Engineering-With-Databricks/Includes/setup-external.py b/Data-Engineering-With-Databricks/Includes/setup-external.py
deleted file mode 100644
index 6acbf65..0000000
--- a/Data-Engineering-With-Databricks/Includes/setup-external.py
+++ /dev/null
@@ -1,21 +0,0 @@
-# Databricks notebook source
-# MAGIC %run ./setup
-
-# COMMAND ----------
-
-dbutils.fs.rm(f"{Paths.source}/sales/sales.csv", True)
-dbutils.fs.cp(f"{Paths.source_uri}/sales/sales.csv", f"{Paths.source}/sales/sales.csv", True)
-
-(spark
- .read
- .format("parquet")
- .load(f"{Paths.source}/users/users.parquet")
- .repartition(1)
- .write
- .format("org.apache.spark.sql.jdbc")
- .option("url", f"jdbc:sqlite:/{username}_ecommerce.db")
- .option("dbtable", "users")
- .mode("overwrite")
- .save())
-
-
diff --git a/Data-Engineering-With-Databricks/Includes/setup-load.py b/Data-Engineering-With-Databricks/Includes/setup-load.py
deleted file mode 100644
index 8ed10a1..0000000
--- a/Data-Engineering-With-Databricks/Includes/setup-load.py
+++ /dev/null
@@ -1,26 +0,0 @@
-# Databricks notebook source
-# MAGIC %run ./setup
-
-# COMMAND ----------
-
-def load_historical():
- spark.sql(f"""
- CREATE OR REPLACE TABLE events AS
- SELECT * FROM parquet.`{Paths.source}/events/events.parquet`
- """)
-
- spark.sql(f"""
- CREATE OR REPLACE TABLE users AS
- SELECT *, current_timestamp() updated FROM parquet.`{Paths.source}/users/users.parquet`
- """)
-
- spark.sql(f"""
- CREATE OR REPLACE TABLE sales AS
- SELECT * FROM parquet.`{Paths.source}/sales/sales.parquet`
- """)
-
-
-# COMMAND ----------
-
-load_historical()
-
diff --git a/Data-Engineering-With-Databricks/Includes/setup-meta.py b/Data-Engineering-With-Databricks/Includes/setup-meta.py
deleted file mode 100644
index 05a5aa0..0000000
--- a/Data-Engineering-With-Databricks/Includes/setup-meta.py
+++ /dev/null
@@ -1,11 +0,0 @@
-# Databricks notebook source
-# MAGIC %run ./sql-setup $course="meta" $mode="cleanup"
-
-# COMMAND ----------
-
-URI = "wasbs://courseware@dbacademy.blob.core.windows.net/databases_tables_and_views_on_databricks/v02"
-
-# COMMAND ----------
-
-dbutils.fs.cp(URI, f"{userhome}/datasets", True)
-
diff --git a/Data-Engineering-With-Databricks/Includes/setup-transactions.py b/Data-Engineering-With-Databricks/Includes/setup-transactions.py
deleted file mode 100644
index 93da748..0000000
--- a/Data-Engineering-With-Databricks/Includes/setup-transactions.py
+++ /dev/null
@@ -1,43 +0,0 @@
-# Databricks notebook source
-# MAGIC %run ./setup-cleaned
-
-# COMMAND ----------
-
-def create_transactions():
- spark.sql(f"""
- CREATE OR REPLACE TABLE transactions AS
- SELECT * FROM (
- SELECT
- user_id,
- order_id,
- transaction_timestamp,
- total_item_quantity,
- purchase_revenue_in_usd,
- unique_items,
- a.items_exploded.item_id item_id,
- a.items_exploded.quantity quantity
- FROM
- ( SELECT *, explode(items) items_exploded FROM sales ) a
- INNER JOIN users b
- ON a.email = b.email
- ) PIVOT (
- sum(quantity) FOR item_id in (
- 'P_FOAM_K',
- 'M_STAN_Q',
- 'P_FOAM_S',
- 'M_PREM_Q',
- 'M_STAN_F',
- 'M_STAN_T',
- 'M_PREM_K',
- 'M_PREM_F',
- 'M_STAN_K',
- 'M_PREM_T',
- 'P_DOWN_S',
- 'P_DOWN_K'
- )
- )
- """)
-
-create_transactions()
-
-
diff --git a/Data-Engineering-With-Databricks/Includes/setup-updates.py b/Data-Engineering-With-Databricks/Includes/setup-updates.py
deleted file mode 100644
index 9db7eaa..0000000
--- a/Data-Engineering-With-Databricks/Includes/setup-updates.py
+++ /dev/null
@@ -1,62 +0,0 @@
-# Databricks notebook source
-# MAGIC %run ./setup-load
-
-# COMMAND ----------
-
-def load_events_raw():
- spark.sql(f"""
- CREATE TABLE IF NOT EXISTS events_json
- (key BINARY, offset INT, partition BIGINT, timestamp BIGINT, topic STRING, value BINARY)
- USING JSON OPTIONS (path = "{Paths.source}/events/events-kafka.json");
- """)
-
- spark.sql(f"""
- CREATE OR REPLACE TABLE events_raw
- (key BINARY, offset BIGINT, partition BIGINT, timestamp BIGINT, topic STRING, value BINARY);
- """)
-
- spark.sql(f"""
- INSERT INTO events_raw
- SELECT * FROM events_json
- """)
-
-
-# COMMAND ----------
-
-# lesson: nested data & advanced transformations
-# Last Lab & Writing to Delta
-def create_events_update():
- spark.sql(f"""
- CREATE OR REPLACE TEMP VIEW events_raw_json AS
- SELECT from_json(cast(value as STRING), ("device STRING, ecommerce STRUCT< purchase_revenue_in_usd: DOUBLE, total_item_quantity: BIGINT, unique_items: BIGINT>, event_name STRING, event_previous_timestamp BIGINT, event_timestamp BIGINT, geo STRUCT< city: STRING, state: STRING>, items ARRAY< STRUCT< coupon: STRING, item_id: STRING, item_name: STRING, item_revenue_in_usd: DOUBLE, price_in_usd: DOUBLE, quantity: BIGINT>>, traffic_source STRING, user_first_touch_timestamp BIGINT, user_id STRING")) json
- FROM events_raw
- """)
-
- spark.sql(f"""
- CREATE OR REPLACE TEMP VIEW events_update AS
- WITH deduped_events_raw AS (
- SELECT max(json) json FROM events_raw_json
- GROUP BY json.user_id, json.event_timestamp
- )
- SELECT json.* FROM deduped_events_raw
- """)
-
-
-# COMMAND ----------
-
-# lesson: Writing delta
-def create_users_update():
- spark.sql(f"""
- CREATE OR REPLACE TEMP VIEW users_update AS
- SELECT *, current_timestamp() updated
- FROM parquet.`{Paths.source}/users/users-30m.parquet`
- """)
-
-
-# COMMAND ----------
-
-load_events_raw()
-create_events_update()
-create_users_update()
-
-
diff --git a/Data-Engineering-With-Databricks/Includes/setup.py b/Data-Engineering-With-Databricks/Includes/setup.py
deleted file mode 100644
index 32ef8d1..0000000
--- a/Data-Engineering-With-Databricks/Includes/setup.py
+++ /dev/null
@@ -1,98 +0,0 @@
-# Databricks notebook source
-import pyspark.sql.functions as F
-import re
-
-class BuildEnvironmentVariables:
-
- def __init__(self, username):
- self.course_name = "eltsql"
- self.source_uri = "wasbs://courseware@dbacademy.blob.core.windows.net/elt-with-spark-sql/v01"
-
- self.username = username
- self.working_dir = f"dbfs:/user/{self.username}/dbacademy/{self.course_name}"
- self.userhome = self.working_dir # TEMPORARY BACKWARDS COMPATABILITY
-
- clean_username = re.sub("[^a-zA-Z0-9]", "_", self.username)
- self.database_name = f"{clean_username}_dbacademy_{self.course_name}"
- self.database_location = f"{self.working_dir}/db"
-
- self.source = f"{self.working_dir}/source_datasets"
- self.base_path=f"{self.working_dir}/tables"
-
- self.sales_table_path = f"{self.base_path}/sales"
- self.users_table_path = f"{self.base_path}/users"
- self.events_raw_table_path = f"{self.base_path}/events_raw"
- self.events_clean_table_path = f"{self.base_path}/events_clean"
- self.transactions_table_path = f"{self.base_path}/transactions"
- self.clickpaths_table_path = f"{self.base_path}/clickpaths"
-
- def set_hive_variables(self):
- for (k, v) in self.__dict__.items():
- spark.sql(f"SET c.{k} = {v}")
-
- def __repr__(self):
- return self.__dict__.__repr__().replace(", ", ",\n")
-
-
-# COMMAND ----------
-
-username = spark.sql("SELECT current_user()").first()[0]
-dbacademy_env = BuildEnvironmentVariables(username)
-Paths = dbacademy_env # Temporary backwards compatability
-
-# Hack for backwards compatability
-username = dbacademy_env.username
-database = dbacademy_env.database_name
-userhome = dbacademy_env.working_dir
-
-print(f"username: {username}")
-print(f"database: {database}")
-print(f"userhome: {userhome}")
-
-# print(f"dbacademy_env: Databricks Academy configuration object")
-# print(f"dbacademy_env.username: {dbacademy_env.username}")
-# print(f"dbacademy_env.database_name: {dbacademy_env.database_name}")
-# print(f"dbacademy_env.working_dir: {dbacademy_env.working_dir}")
-
-
-# COMMAND ----------
-
-def path_exists(path):
- try:
- return len(dbutils.fs.ls(path)) >= 0
- except Exception:
- return False
-
-dbutils.widgets.text("mode", "default")
-mode = dbutils.widgets.get("mode")
-
-if mode == "reset" or mode == "cleanup":
- # Drop the database and remove all data for both reset and cleanup
- print(f"Removing the database {database}")
- spark.sql(f"DROP DATABASE IF EXISTS {database} CASCADE")
-
- print(f"Removing previously generated datasets from\n{dbacademy_env.working_dir}")
- dbutils.fs.rm(dbacademy_env.working_dir, True)
-
-if mode != "cleanup":
- # We are not cleaning up so we want to setup the environment
-
- # RESET is in case we want to force a reset
- # not-existing for net-new install
- if mode == "reset" or not path_exists(dbacademy_env.source):
- print(f"\nInstalling datasets to\n{dbacademy_env.source}")
- print(f"""\nNOTE: The datasets that we are installing are located in Washington, USA - depending on the
- region that your workspace is in, this operation can take as little as 3 minutes and
- upwards to 6 minutes, but this is a one-time operation.""")
-
- dbutils.fs.cp(dbacademy_env.source_uri, dbacademy_env.source, True)
- print(f"""\nThe install of the datasets completed successfully.""")
-
- # Create the database and use it.
- spark.sql(f"CREATE DATABASE IF NOT EXISTS {dbacademy_env.database_name} LOCATION '{dbacademy_env.database_location}'")
- spark.sql(f"USE {dbacademy_env.database_name}")
-
- # Once the database is created, init the hive variables
- dbacademy_env.set_hive_variables()
-
-
diff --git a/Data-Engineering-With-Databricks/Includes/sql-setup.py b/Data-Engineering-With-Databricks/Includes/sql-setup.py
deleted file mode 100644
index 6d1d83a..0000000
--- a/Data-Engineering-With-Databricks/Includes/sql-setup.py
+++ /dev/null
@@ -1,32 +0,0 @@
-# Databricks notebook source
-import pyspark.sql.functions as F
-import re
-
-dbutils.widgets.text("course", "dewd")
-course = dbutils.widgets.get("course")
-username = spark.sql("SELECT current_user()").collect()[0][0]
-userhome = f"dbfs:/user/{username}/{course}"
-database = f"""{course}_{re.sub("[^a-zA-Z0-9]", "_", username)}_db"""
-print(f"""
-username: {username}
-userhome: {userhome}
-database: {database}""")
-
-spark.sql(f"SET c.username = {username}")
-spark.sql(f"SET c.userhome = {userhome}")
-spark.sql(f"SET c.database = {database}")
-
-dbutils.widgets.text("mode", "setup")
-mode = dbutils.widgets.get("mode")
-
-if mode == "reset":
- spark.sql(f"DROP DATABASE IF EXISTS {database} CASCADE")
- dbutils.fs.rm(userhome, True)
- spark.sql(f"CREATE DATABASE IF NOT EXISTS {database} LOCATION '{userhome}'")
- spark.sql(f"USE {database}")
-
-if mode == "cleanup":
- spark.sql(f"DROP DATABASE IF EXISTS {database} CASCADE")
- dbutils.fs.rm(userhome, True)
-
-
diff --git a/Data-Engineering-With-Databricks/Solutions/02 - ELT with Spark SQL and Python/DE 2.1.2 - Views and CTEs on Databricks.sql b/Data-Engineering-With-Databricks/Solutions/02 - ELT with Spark SQL and Python/DE 2.1.2 - Views and CTEs on Databricks.sql
deleted file mode 100644
index dbfee90..0000000
--- a/Data-Engineering-With-Databricks/Solutions/02 - ELT with Spark SQL and Python/DE 2.1.2 - Views and CTEs on Databricks.sql
+++ /dev/null
@@ -1,278 +0,0 @@
--- Databricks notebook source
--- MAGIC %md-sandbox
--- MAGIC
--- MAGIC
--- MAGIC

--- MAGIC
-
--- COMMAND ----------
-
--- MAGIC %md
--- MAGIC # Views and CTEs on Databricks
--- MAGIC In this demonstration, you will create and explore views and common table expressions (CTEs).
--- MAGIC
--- MAGIC ## Learning Objectives
--- MAGIC By the end of this lesson, you will be able to:
--- MAGIC * Use Spark SQL DDL to define views
--- MAGIC * Run queries that use common table expressions
--- MAGIC
--- MAGIC
--- MAGIC
--- MAGIC **Resources**
--- MAGIC * [Create View - Databricks Docs](https://docs.databricks.com/spark/latest/spark-sql/language-manual/sql-ref-syntax-ddl-create-view.html)
--- MAGIC * [Common Table Expressions - Databricks Docs](https://docs.databricks.com/spark/latest/spark-sql/language-manual/sql-ref-syntax-qry-select-cte.html)
-
--- COMMAND ----------
-
--- MAGIC %md
--- MAGIC ## Classroom Setup
--- MAGIC The following script clears out previous runs of this demo and configures some Hive variables that will be used in our SQL queries.
-
--- COMMAND ----------
-
--- MAGIC %run ../Includes/setup-meta
-
--- COMMAND ----------
-
--- MAGIC %md
--- MAGIC We start by creating a table of data we can use for the demonstration.
-
--- COMMAND ----------
-
-CREATE DATABASE IF NOT EXISTS ${c.database};
-USE ${c.database};
-
--- mode "FAILFAST" will abort file parsing with a RuntimeException if any malformed lines are encountered
-CREATE OR REPLACE TEMPORARY VIEW temp_delays USING CSV OPTIONS (
- path '${c.userhome}/datasets/flights/departuredelays.csv',
- header "true",
- mode "FAILFAST"
-);
-CREATE OR REPLACE TABLE external_table LOCATION '${c.userhome}/external_table' AS
- SELECT * FROM temp_delays;
-
-SELECT * FROM external_table;
-
--- COMMAND ----------
-
--- MAGIC %md ## Views
--- MAGIC Let's create a view that contains only the data where the origin is 'ABQ' and the destination is 'LAX'.
-
--- COMMAND ----------
-
-CREATE OR REPLACE VIEW view_delays_ABQ_LAX AS
-SELECT * FROM external_table WHERE origin = 'ABQ' AND destination = 'LAX';
-SELECT * FROM view_delays_ABQ_LAX;
-
--- COMMAND ----------
-
--- MAGIC %md
--- MAGIC To show a list of tables (and views), we use the `SHOW TABLES` command.
--- MAGIC
--- MAGIC Note that the `view_delays_abq_lax` view is in the list. If we detach from, and reattach to, the cluster and reload the list of tables, view_delays_abq_lax persists. This is because View metadata (name, location, etc.) are stored in the metastore.
--- MAGIC
--- MAGIC (The command `USE ${c.database};` is used after reattaching to the cluster because state is lost when the SparkSession is deleted)
-
--- COMMAND ----------
-
-USE ${c.database};
-SHOW tables;
-
--- COMMAND ----------
-
--- MAGIC %md
--- MAGIC Now, let's create a temporary view. The syntax is very similar but adds `TEMPORARY` to the command.
-
--- COMMAND ----------
-
-CREATE OR REPLACE TEMPORARY VIEW temp_view AS
-SELECT * FROM external_table WHERE delay > 120 ORDER BY delay ASC;
-SELECT * FROM temp_view;
-
--- COMMAND ----------
-
--- MAGIC %md
--- MAGIC Let's again show list of tables (and views).
--- MAGIC
--- MAGIC Two things we note are that the `temp_view` view is in the list and that `temp_view` is marked `isTemporary`.
--- MAGIC
--- MAGIC If we detach from, and reattach to, the cluster and reload the list of tables, `temp_view` is deleted. This is because temporary view metadata (name, location, etc.) are not stored in the metastore. When we detach from the cluster, the Spark session is deleted, which deletes the temporary view.
-
--- COMMAND ----------
-
-USE ${c.database};
-SHOW TABLES;
-
--- COMMAND ----------
-
--- MAGIC %md
--- MAGIC Let's now create a global temporary view. We add `GLOBAL` to the command. This view is just like the temporary view above, but it is different in one important way. It is added to the `global_temp` database that exists on the cluster. As long as the cluster is running, this database persists, and any notebooks attached to the cluster can access its global temporary views.
--- MAGIC
--- MAGIC Note when we use global temporary views, we have to prefix them with `global_temp.` since we are accessing the `global_temp` database.
-
--- COMMAND ----------
-
-CREATE OR REPLACE GLOBAL TEMPORARY VIEW global_temp_view_distance AS
-SELECT * FROM external_table WHERE distance > 1000;
-SELECT * FROM global_temp.global_temp_view_distance;
-
--- COMMAND ----------
-
--- MAGIC %md
--- MAGIC Again, global temporary views are available to any notebook attached to the cluster, including
--- MAGIC - New notebooks
--- MAGIC - This notebook, even if it is detached from, and reattached to, the cluster
-
--- COMMAND ----------
-
-SELECT * FROM global_temp.global_temp_view_distance;
-
--- COMMAND ----------
-
--- MAGIC %md
--- MAGIC One thing to note is that global temporary views do not show in the list of tables.
-
--- COMMAND ----------
-
-USE ${c.database};
-SHOW TABLES;
-
--- COMMAND ----------
-
--- MAGIC %md
--- MAGIC ## Common Table Expressions (CTEs)
--- MAGIC CTEs can be used in a variety of contexts. Below, are a few examples of the different ways a CTE can be used in a query. First, an example of making multiple column aliases using a CTE.
-
--- COMMAND ----------
-
-WITH flight_delays(
- total_delay_time,
- origin_airport,
- destination_airport
-) AS (
- SELECT
- delay,
- origin,
- destination
- FROM
- external_table
-)
-SELECT
- *
-FROM
- flight_delays
-WHERE
- total_delay_time > 120
- AND origin_airport = "ATL"
- AND destination_airport = "DEN";
-
--- COMMAND ----------
-
--- MAGIC %md
--- MAGIC Next, is an example of a CTE in a CTE definition.
-
--- COMMAND ----------
-
-WITH lax_bos AS (
- WITH origin_destination (origin_airport, destination_airport) AS (
- SELECT
- origin,
- destination
- from
- external_table
- )
- SELECT
- *
- FROM
- origin_destination
- WHERE
- origin_airport = 'LAX'
- AND destination_airport = 'BOS'
-)
-SELECT
- count(origin_airport) AS `Total Flights from LAX to BOS`
-FROM
- lax_bos;
-
--- COMMAND ----------
-
--- MAGIC %md
--- MAGIC Now, here is an example of a CTE in a subquery.
-
--- COMMAND ----------
-
-SELECT
- max(total_delay) AS `Longest Delay (in minutes)`
-FROM
- (
- WITH delayed_flights(total_delay) AS (
- SELECT
- delay
- from
- external_table
- )
- SELECT
- *
- FROM
- delayed_flights
- );
-
--- COMMAND ----------
-
--- MAGIC %md
--- MAGIC We can also use a CTE in a subquery expression.
-
--- COMMAND ----------
-
-SELECT
- (
- WITH distinct_origins AS (
- SELECT DISTINCT origin FROM external_table
- )
- SELECT
- count(origin)
- FROM
- distinct_origins
- ) AS `Number of Different Origin Airports`;
-
--- COMMAND ----------
-
--- MAGIC %md
--- MAGIC Finally, here is a CTE in a CREATE VIEW statement.
-
--- COMMAND ----------
-
-CREATE OR REPLACE VIEW BOS_LAX AS
-WITH origin_destination(origin_airport, destination_airport) AS
-(SELECT origin, destination FROM external_table)
-SELECT * FROM origin_destination
-WHERE origin_airport = 'BOS' AND destination_airport = 'LAX';
-SELECT count(origin_airport) AS `Number of Delayed Flights from BOS to LAX` FROM BOS_LAX;
-
--- COMMAND ----------
-
--- MAGIC %md
--- MAGIC ## Clean up
--- MAGIC We first drop the training database.
-
--- COMMAND ----------
-
-DROP DATABASE ${c.database} CASCADE;
-
--- COMMAND ----------
-
--- MAGIC %md
--- MAGIC Finally, we delete the working directory.
-
--- COMMAND ----------
-
--- MAGIC %python
--- MAGIC dbutils.fs.rm(userhome, True)
-
--- COMMAND ----------
-
--- MAGIC %md-sandbox
--- MAGIC © 2022 Databricks, Inc. All rights reserved.
--- MAGIC Apache, Apache Spark, Spark and the Spark logo are trademarks of the Apache Software Foundation.
--- MAGIC
--- MAGIC Privacy Policy | Terms of Use | Support
diff --git a/Data-Engineering-With-Databricks/Solutions/02 - ELT with Spark SQL and Python/DE 2.2.3 - Creating Delta Tables.sql b/Data-Engineering-With-Databricks/Solutions/02 - ELT with Spark SQL and Python/DE 2.2.3 - Creating Delta Tables.sql
deleted file mode 100644
index 7c390cb..0000000
--- a/Data-Engineering-With-Databricks/Solutions/02 - ELT with Spark SQL and Python/DE 2.2.3 - Creating Delta Tables.sql
+++ /dev/null
@@ -1,237 +0,0 @@
--- Databricks notebook source
--- MAGIC %md-sandbox
--- MAGIC
--- MAGIC
--- MAGIC

--- MAGIC
-
--- COMMAND ----------
-
--- MAGIC %md
--- MAGIC # Creating Delta Tables
--- MAGIC
--- MAGIC After extracting data from external data sources, load data into the Lakehouse to ensure that all of the benefits of the Databricks platform can be fully leveraged.
--- MAGIC
--- MAGIC While different organizations may have varying policies for how data is initially loaded into Databricks, we typically recommend that early tables represent a mostly raw version of the data, and that validation and enrichment occur in later stages. This pattern ensures that even if data doesn't match expectations with regards to data types or column names, no data will be dropped, meaning that programmatic or manual intervention can still salvage data in a partially corrupted or invalid state.
--- MAGIC
--- MAGIC This lesson will focus primarily on the pattern used to create most tables, `CREATE TABLE _ AS SELECT` (CTAS) statements.
--- MAGIC
--- MAGIC ##### Objectives
--- MAGIC - Use CTAS statements to create Delta Lake tables
--- MAGIC - Create new tables from existing views or tables
--- MAGIC - Enrich loaded data with additional metadata
--- MAGIC - Declare table schema with generated columns and descriptive comments
--- MAGIC - Set advanced options to control data location, quality enforcement, and partitioning
-
--- COMMAND ----------
-
--- MAGIC %md
--- MAGIC ## Run Setup
--- MAGIC
--- MAGIC The setup script will create the data and declare necessary values for the rest of this notebook to execute.
-
--- COMMAND ----------
-
--- MAGIC %run ../Includes/setup
-
--- COMMAND ----------
-
--- MAGIC %md
--- MAGIC ## Create an Empty Delta Table
--- MAGIC Use the `CREATE TABLE USING` statement to define an empty Delta table in the metastore.
--- MAGIC
--- MAGIC We won't need to explicitly state `USING DELTA`, as Delta is the default format.
-
--- COMMAND ----------
-
-CREATE OR REPLACE TABLE users (user_id BIGINT, user_first_touch_timestamp BIGINT, email STRING);
-
-DESCRIBE EXTENDED users
-
--- COMMAND ----------
-
--- MAGIC %md ## Create Table as Select (CTAS)
--- MAGIC
--- MAGIC `CREATE TABLE AS SELECT` statements create and populate Delta tables using data retrieved from an input query.
-
--- COMMAND ----------
-
-CREATE OR REPLACE TABLE sales AS
-SELECT * FROM parquet.`${c.source}/sales/sales.parquet`;
-
-DESCRIBE EXTENDED sales
-
--- COMMAND ----------
-
--- MAGIC %md Because they inherit schemas from the query data, CTAS statements do **not** support schema declarations. In the following query, the CTAS statement can not provide the options necessary to properly ingest data from CSV files.
-
--- COMMAND ----------
-
-CREATE OR REPLACE TABLE sales_unparsed AS
-SELECT * FROM csv.`${c.source}/sales/sales.csv`;
-
-SELECT * FROM sales_unparsed
-
--- COMMAND ----------
-
--- MAGIC %md
--- MAGIC ## Subset Columns from Existing Tables
--- MAGIC We can also use CTAS statements to load data from existing tables and views.
--- MAGIC
--- MAGIC The following statement creates a new table containing a subset of columns from the `sales` table. Here, we'll presume that we're intentionally leaving out information that potentially identifies the user or that provides itemized purchase details.
-
--- COMMAND ----------
-
-CREATE OR REPLACE TABLE purchases AS
-SELECT order_id, transaction_timestamp, purchase_revenue_in_usd
-FROM sales;
-
-SELECT * FROM purchases
-
--- COMMAND ----------
-
--- MAGIC %md
--- MAGIC ## Declare Schema with Generated Columns
--- MAGIC
--- MAGIC As noted previously, CTAS statements do not support schema declaration. We note above that the timestamp column appears to be some variant of a Unix timestamp, which may not be the most useful for our analysts to derive insights. This is a situation where generated columns would be beneficial.
--- MAGIC
--- MAGIC Generated columns are a special type of column whose values are automatically generated based on a user-specified function over other columns in the Delta table. Databricks introduced generated columns in DBR 8.3.
--- MAGIC
--- MAGIC The code below demonstrates creating a new table while:
--- MAGIC 1. Specifying column names and types
--- MAGIC 1. Adding a [generated column](https://docs.databricks.com/delta/delta-batch.html#deltausegeneratedcolumns) to calculate the date
--- MAGIC 1. Providing a descriptive column comment for the generated column
-
--- COMMAND ----------
-
-CREATE OR REPLACE TABLE purchase_dates (
- order_id STRING,
- transaction_timestamp STRING,
- purchase_revenue_in_usd STRING,
- date DATE GENERATED ALWAYS AS (
- cast(cast(transaction_timestamp/1e6 AS TIMESTAMP) AS DATE))
- COMMENT "generated based on `transactions_timestamp` column")
-
--- COMMAND ----------
-
--- MAGIC %md
--- MAGIC
--- MAGIC Because `date` is a generated column, if we write to `purchase_dates` without providing values for the `date` column, Delta Lake automatically computes them.
--- MAGIC
--- MAGIC **NOTE**: The cell below configures a setting to allow for generating columns when using a Delta Lake `MERGE` statement. We'll see more on this syntax later in the course.
-
--- COMMAND ----------
-
-SET spark.databricks.delta.schema.autoMerge.enabled=true;
-
-MERGE INTO purchase_dates a
-USING purchases b
-ON a.order_id = b.order_id
-WHEN NOT MATCHED THEN
- INSERT *
-
--- COMMAND ----------
-
--- MAGIC %md The query automatically reads the most recent snapshot of the table for any query; you never need to run `REFRESH TABLE`.
-
--- COMMAND ----------
-
-SELECT * FROM purchase_dates
-
--- COMMAND ----------
-
--- MAGIC %md
--- MAGIC ## Enrich Tables with Additional Options and Metadata
--- MAGIC
--- MAGIC So far we've only shown creating managed tables, which will store all data associated with a newly created table under the databases default location. For many use cases, these will be the right choice.
--- MAGIC
--- MAGIC Here, we'll create an external Delta Lake table and provide a number of additional options. The syntax below will:
--- MAGIC 1. Add a table comment
--- MAGIC 1. Add an arbitrary key-value pair as a table property
--- MAGIC 1. Add a date column derived from source table data
--- MAGIC 1. Add a column to record current timestamp at time of update
--- MAGIC 1. Configure table `LOCATION` path
--- MAGIC 1. Partition tables by a column
--- MAGIC
--- MAGIC **NOTE**: A number of Delta Lake configurations are set using `TBLPROPERTIES`. When using this field as part of an organizational approach to data discovery and auditing, users should be made aware of which keys are leveraged for modifying default Delta Lake behaviors.
-
--- COMMAND ----------
-
-CREATE OR REPLACE TABLE users_pii
-COMMENT "Contains PII"
-TBLPROPERTIES ('contains_pii' = True)
-LOCATION "${c.userhome}/tmp/users_pii"
-PARTITIONED BY (first_touch_date)
-AS
- SELECT *,
- cast(cast(user_first_touch_timestamp/1e6 AS TIMESTAMP) AS DATE) first_touch_date,
- current_timestamp() updated
- FROM parquet.`${c.source}/users/users.parquet`;
-
--- COMMAND ----------
-
--- MAGIC %md Specifying the `LOCATION` path creates an external Delta table that is unmanaged by the Metastore.
--- MAGIC
--- MAGIC All of the comments and properties for a given table can be reviewed using `DESCRIBE TABLE EXTENDED`.
--- MAGIC
--- MAGIC **NOTE**: Delta Lake automatically adds several table properties on table creation.
-
--- COMMAND ----------
-
-DESCRIBE EXTENDED users_pii
-
--- COMMAND ----------
-
--- MAGIC %md
--- MAGIC Listing the location used for the table reveals that the unique values in the partition column `date` are used to create data directories.
-
--- COMMAND ----------
-
--- MAGIC %python
--- MAGIC display(dbutils.fs.ls(f"{Paths.userhome}/tmp/users_pii"))
-
--- COMMAND ----------
-
--- MAGIC %md
--- MAGIC
--- MAGIC Delta Lake automatically uses partitioning and statistics to read the minimum amount of data when there are applicable predicates in the query.
-
--- COMMAND ----------
-
-SELECT * FROM users_pii WHERE first_touch_date = "2020-06-19"
-
--- COMMAND ----------
-
--- MAGIC %md
--- MAGIC ## Add a Table Constraint
--- MAGIC
--- MAGIC Because Delta Lake enforces schema on write, Databricks can support standard SQL constraint management clauses to ensure the quality and integrity of data added to a table.
--- MAGIC
--- MAGIC Databricks currently support two types of constraints:
--- MAGIC * [`NOT NULL` constraints](https://docs.databricks.com/delta/delta-constraints.html#not-null-constraint)
--- MAGIC * [`CHECK` constraints](https://docs.databricks.com/delta/delta-constraints.html#check-constraint)
--- MAGIC
--- MAGIC In both cases, you must ensure that no data violating the constraint is already in the table prior to defining the constraint. Once a constraint has been added to a table, data violating the constraint will result in write failure.
--- MAGIC
--- MAGIC Below, we'll add a `CHECK` constraint to the `date` column of our table. Note that `CHECK` constraints look like standard `WHERE` clauses you might use to filter a dataset.
-
--- COMMAND ----------
-
-ALTER TABLE users_pii ADD CONSTRAINT valid_date CHECK (first_touch_date > '2020-01-01');
-
--- COMMAND ----------
-
--- MAGIC %md
--- MAGIC Table constraints are shown in the `TBLPROPERTIES` field, alongside user-specified tags and other Delta Lake metadata.
-
--- COMMAND ----------
-
-DESCRIBE EXTENDED users_pii
-
--- COMMAND ----------
-
--- MAGIC %md-sandbox
--- MAGIC © 2022 Databricks, Inc. All rights reserved.
--- MAGIC Apache, Apache Spark, Spark and the Spark logo are trademarks of the Apache Software Foundation.
--- MAGIC
--- MAGIC Privacy Policy | Terms of Use | Support
diff --git a/Data-Engineering-With-Databricks/Solutions/02 - ELT with Spark SQL and Python/DE 2.2.4 - Writing to Tables.sql b/Data-Engineering-With-Databricks/Solutions/02 - ELT with Spark SQL and Python/DE 2.2.4 - Writing to Tables.sql
deleted file mode 100644
index 741acd5..0000000
--- a/Data-Engineering-With-Databricks/Solutions/02 - ELT with Spark SQL and Python/DE 2.2.4 - Writing to Tables.sql
+++ /dev/null
@@ -1,160 +0,0 @@
--- Databricks notebook source
--- MAGIC %md-sandbox
--- MAGIC
--- MAGIC
--- MAGIC

--- MAGIC
-
--- COMMAND ----------
-
--- MAGIC %md
--- MAGIC # Writing to Delta Tables
--- MAGIC Use SQL DML statements to perform complete and incremental updates to existing Delta tables.
--- MAGIC
--- MAGIC ##### Objectives
--- MAGIC - Overwrite data tables using `INSERT OVERWRITE`
--- MAGIC - Append to a table using `INSERT INTO`
--- MAGIC - Append, update, and delete from a table using `MERGE INTO`
--- MAGIC - Ingest data incrementally into tables using `COPY INTO`
-
--- COMMAND ----------
-
--- MAGIC %md
--- MAGIC ## Run Setup
--- MAGIC
--- MAGIC The setup script will create the data and declare necessary values for the rest of this notebook to execute.
-
--- COMMAND ----------
-
--- MAGIC %run ../Includes/setup-updates
-
--- COMMAND ----------
-
--- MAGIC %md ## Complete Overwrites
--- MAGIC
--- MAGIC We can use overwrites to atomically replace all of the data in a table. There are multiple benefits to overwriting tables instead of deleting and recreating tables:
--- MAGIC - Overwriting a table is much faster because it doesn’t need to list the directory recursively or delete any files.
--- MAGIC - The old version of the table still exists; can easily retrieve the old data using Time Travel.
--- MAGIC - It’s an atomic operation. Concurrent queries can still read the table while you are deleting the table.
--- MAGIC - Due to ACID transaction guarantees, if overwriting the table fails, the table will be in its previous state.
--- MAGIC
--- MAGIC The following cells demonstrate two ways to overwrite data.
--- MAGIC
--- MAGIC 1. Using the `CREATE OR REPLACE TABLE` statement
--- MAGIC 2. Using the `INSERT OVERWRITE` statement
-
--- COMMAND ----------
-
-CREATE OR REPLACE TABLE events AS
-SELECT * FROM parquet.`${c.source}/events/events.parquet`
-
--- COMMAND ----------
-
-INSERT OVERWRITE sales
-SELECT * FROM parquet.`${c.source}/sales/sales.parquet`
-
--- COMMAND ----------
-
--- MAGIC %md This keeps history of the previous table, but rewrites all data.
-
--- COMMAND ----------
-
-DESCRIBE HISTORY sales
-
--- COMMAND ----------
-
--- MAGIC %md ## Append Rows
--- MAGIC
--- MAGIC We can use `INSERT INTO` to atomically append new rows to an existing Delta table. This allows for incremental updates to existing tables, which is much more efficient than overwriting each time.
--- MAGIC
--- MAGIC Append new sale records to the `sales` table using `INSERT INTO`.
-
--- COMMAND ----------
-
-INSERT INTO sales
-SELECT * FROM parquet.`${c.source}/sales/sales-30m.parquet`
-
--- COMMAND ----------
-
--- MAGIC %md ## Merge Updates
--- MAGIC
--- MAGIC You can upsert data from a source table, view, or DataFrame into a target Delta table using the `MERGE` SQL operation. Delta Lake supports inserts, updates and deletes in `MERGE`, and supports extended syntax beyond the SQL standards to facilitate advanced use cases.
--- MAGIC ```
--- MAGIC MERGE INTO target a
--- MAGIC USING source b
--- MAGIC ON
--- MAGIC WHEN MATCHED THEN
--- MAGIC WHEN NOT MATCHED THEN
--- MAGIC ```
--- MAGIC We will use the `MERGE` operation to update historic users data with updated emails and new users.
-
--- COMMAND ----------
-
-CREATE OR REPLACE TEMP VIEW users_update AS
-SELECT *, current_timestamp() updated FROM parquet.`${c.source}/users/users-30m.parquet`
-
--- COMMAND ----------
-
--- MAGIC %md As we implemented the `users` table as a Type 1 SCD Delta table with an `updated` field, we can leverage this field while performing a merge operation. Let's make sure that records that are updated OR inserted have the same timestamp. This operation will be completed as a single batch to avoid potentially leaving our table in a corrupt state.
-
--- COMMAND ----------
-
-MERGE INTO users a
-USING users_update b
-ON a.user_id = b.user_id
-WHEN MATCHED AND a.email IS NULL AND b.email IS NOT NULL THEN
- UPDATE SET email = b.email, updated = b.updated
-WHEN NOT MATCHED THEN INSERT *
-
--- COMMAND ----------
-
--- MAGIC %md
--- MAGIC ## Insert-Only Merge for Deduplication
--- MAGIC
--- MAGIC A common ETL use case is to collect logs into Delta table by appending them to a table. However, often the sources can generate duplicate log records and downstream deduplication steps are needed to take care of them. With merge, you can avoid inserting the duplicate records.
--- MAGIC
--- MAGIC When merging new events parsed from `events_raw`, confirm that an identical record isn't already in the `events` table.
--- MAGIC ```
--- MAGIC MERGE INTO target a
--- MAGIC USING source b
--- MAGIC ON a.data = b.data
--- MAGIC WHEN NOT MATCHED THEN
--- MAGIC INSERT *
--- MAGIC ```
--- MAGIC By default, the merge operation searches the entire Delta table to find matches in the source table. One way to speed up merge is to reduce the search space by adding known constraints in the match condition. It will also reduce the chances of conflicts with other concurrent operations.
--- MAGIC ```
--- MAGIC events.country = 'USA' AND events.date = current_date() - INTERVAL 7 DAYS
--- MAGIC ```
-
--- COMMAND ----------
-
-MERGE INTO events a
-USING events_update b
-ON a.user_id = b.user_id AND a.event_timestamp = b.event_timestamp
-WHEN NOT MATCHED AND b.traffic_source = 'email' THEN
- INSERT *
-
--- COMMAND ----------
-
--- MAGIC %md ## Load Incrementally
--- MAGIC Use `COPY INTO` to incrementally load data from external systems.
--- MAGIC - Data schema should be consistent
--- MAGIC - Duplicate records should try to be excluded or handled downstream
--- MAGIC - Potentially much cheaper than full table scan for data that grows predictably
--- MAGIC - Leveraged by many data ingestion partners
--- MAGIC
--- MAGIC Update the `sales` delta table by incrementally loading data from an external location where a number of new transactions arrive during a 30 minute window. Each sale should only be recorded once, at the time that the transaction is processed. Use a method that allows idempotent execution to avoid processing data multiple times.
-
--- COMMAND ----------
-
-COPY INTO sales
-FROM "${c.source}/sales/sales-30m.parquet"
-FILEFORMAT = PARQUET
-
--- COMMAND ----------
-
--- MAGIC %md-sandbox
--- MAGIC © 2022 Databricks, Inc. All rights reserved.
--- MAGIC Apache, Apache Spark, Spark and the Spark logo are trademarks of the Apache Software Foundation.
--- MAGIC
--- MAGIC Privacy Policy | Terms of Use | Support
diff --git a/Data-Engineering-With-Databricks/Solutions/02 - ELT with Spark SQL and Python/DE 2.2.6 - Cleaning Data.sql b/Data-Engineering-With-Databricks/Solutions/02 - ELT with Spark SQL and Python/DE 2.2.6 - Cleaning Data.sql
deleted file mode 100644
index e374db3..0000000
--- a/Data-Engineering-With-Databricks/Solutions/02 - ELT with Spark SQL and Python/DE 2.2.6 - Cleaning Data.sql
+++ /dev/null
@@ -1,169 +0,0 @@
--- Databricks notebook source
--- MAGIC %md-sandbox
--- MAGIC
--- MAGIC
--- MAGIC

--- MAGIC
-
--- COMMAND ----------
-
--- MAGIC %md # Cleaning Data
--- MAGIC
--- MAGIC Apply a number of common transformations to clean data with Spark SQL.
--- MAGIC
--- MAGIC ##### Objectives
--- MAGIC - Summarize datasets and describe null behaviors
--- MAGIC - Retrieve and remove duplicates based on select columns
--- MAGIC - Validate datasets for expected counts, missing values, and duplicate records
--- MAGIC - Apply common transformations to clean and transform data
-
--- COMMAND ----------
-
--- MAGIC %md
--- MAGIC ## Run Setup
--- MAGIC
--- MAGIC The setup script will create the data and declare necessary values for the rest of this notebook to execute.
-
--- COMMAND ----------
-
--- MAGIC %run ../Includes/setup-updates
-
--- COMMAND ----------
-
--- MAGIC %md
--- MAGIC We'll work with new users records in `users_update` table for this lesson.
-
--- COMMAND ----------
-
-SELECT * FROM users_update
-
--- COMMAND ----------
-
--- MAGIC %md ## Transformations
--- MAGIC As we inspect and clean our data, we'll need to construct various column expressions and queries to express transformations to apply on our dataset.
--- MAGIC - Column expressions are constructed from existing columns, operators, and built-in Spark SQL functions. They can be used in `SELECT` statements to express transformations that create new columns from datasets.
--- MAGIC - Along with `SELECT`, many additional query commands can be used to express transformations in Spark SQL, including `WHERE`, `DISTINCT`, `ORDER BY`, `GROUP BY`, etc.
-
--- COMMAND ----------
-
--- MAGIC %md ## Inspect Data
--- MAGIC We'll inspect `users_update` for missing values and duplicate records.
-
--- COMMAND ----------
-
--- MAGIC %md
--- MAGIC ### Missing Values
--- MAGIC Count the number of missing values in each column of `users_update`. Note that nulls behave incorrectly in some math functions, including `count`.
--- MAGIC
--- MAGIC #### Null Behavior with `count()`
--- MAGIC - `count(col)` skips `NULL` values when counting specific columns or expressions.
--- MAGIC - `count(*)` is a special case that counts the total number of rows without skipping `NULL` values
--- MAGIC
--- MAGIC To count null values, use the `count_if` function or `WHERE` clause to provide a condition that filters for records where the value `IS NULL`.
-
--- COMMAND ----------
-
-SELECT
- count_if(user_id IS NULL) missing_user_ids,
- count_if(user_first_touch_timestamp IS NULL) missing_timestamps,
- count_if(email IS NULL) missing_emails
-FROM users_update
-
--- COMMAND ----------
-
--- MAGIC %md
--- MAGIC ### Distinct Records
--- MAGIC - `DISTINCT *` returns rows with duplicates removed.
--- MAGIC - `DISTINCT col` returns unique values in column `col`
--- MAGIC
--- MAGIC Note that the count for distinct users is greater than the count for distinct rows; rows containing `NULL` values were skipped from processing distinct rows. `count(*)` is the only case where `count()` includes records with `NULL` values.
-
--- COMMAND ----------
-
-SELECT
- count(user_id) total_ids, count(DISTINCT user_id) unique_ids,
- count(email) total_emails, count(DISTINCT email) unique_emails,
- count(*) total_rows, count(DISTINCT *) unique_non_null_rows
-FROM users_update
-
--- COMMAND ----------
-
--- MAGIC %md ## Deduplicate Rows
--- MAGIC
--- MAGIC Use `DISTINCT *` to remove true duplicate records (rows with same values for all columns).
-
--- COMMAND ----------
-
-SELECT DISTINCT * FROM users_update
-
--- COMMAND ----------
-
--- MAGIC %md #### Deduplicate Based on Specific Columns
--- MAGIC
--- MAGIC Use `GROUP BY` to remove duplicate records based on select columns. The query below groups rows by `user_id` to deduplicate rows based on values from this column.
--- MAGIC
--- MAGIC The `max()` aggregate function is used on the `email` column as a hack to capture non-null emails when multiple records are present.
-
--- COMMAND ----------
-
-CREATE OR REPLACE TEMP VIEW deduped_users AS
-SELECT user_id, user_first_touch_timestamp, max(email) email, max(updated) updated
-FROM users_update
-GROUP BY user_id, user_first_touch_timestamp;
-
-SELECT count(*) FROM deduped_users
-
--- COMMAND ----------
-
--- MAGIC %md ## Validate Datasets
--- MAGIC Let's check our datasets for expected counts, missing values, and duplicate records.
--- MAGIC Validation can be performed with simple filters and `WHERE` clauses (and `COUNT_IF` statements).
-
--- COMMAND ----------
-
--- MAGIC %md Validate that the `user_id` for each row is unique.
-
--- COMMAND ----------
-
-SELECT max(row_count) <= 1 no_duplicate_ids FROM (
- SELECT user_id, count(*) row_count
- FROM deduped_users
- GROUP BY user_id)
-
--- COMMAND ----------
-
--- MAGIC %md Confirm that each email is associated with at most one `user_id`.
-
--- COMMAND ----------
-
-SELECT max(user_id_count) <= 1 at_most_one_id FROM (
- SELECT email, count(user_id) user_id_count
- FROM deduped_users
- WHERE email IS NOT NULL
- GROUP BY email)
-
--- COMMAND ----------
-
--- MAGIC %md ## Date Format and Regex
--- MAGIC - Format datetimes as strings
--- MAGIC - Use `regexp_extract` to extract domains from the email column using regex
-
--- COMMAND ----------
-
-SELECT *,
- date_format(first_touch, "MMM d, yyyy") first_touch_date,
- date_format(first_touch, "HH:mm:ss") first_touch_time,
- regexp_extract(email, "(?<=@)[^.]+(?=\.)", 0) email_domain
-FROM (
- SELECT *,
- CAST(user_first_touch_timestamp / 1e6 AS timestamp) first_touch
- FROM deduped_users
-)
-
--- COMMAND ----------
-
--- MAGIC %md-sandbox
--- MAGIC © 2022 Databricks, Inc. All rights reserved.
--- MAGIC Apache, Apache Spark, Spark and the Spark logo are trademarks of the Apache Software Foundation.
--- MAGIC
--- MAGIC Privacy Policy | Terms of Use | Support
diff --git a/Data-Engineering-With-Databricks/Solutions/02 - ELT with Spark SQL and Python/DE 2.2.7 - Reshaping Data.sql b/Data-Engineering-With-Databricks/Solutions/02 - ELT with Spark SQL and Python/DE 2.2.7 - Reshaping Data.sql
deleted file mode 100644
index b5c7f27..0000000
--- a/Data-Engineering-With-Databricks/Solutions/02 - ELT with Spark SQL and Python/DE 2.2.7 - Reshaping Data.sql
+++ /dev/null
@@ -1,207 +0,0 @@
--- Databricks notebook source
--- MAGIC %md-sandbox
--- MAGIC
--- MAGIC
--- MAGIC

--- MAGIC
-
--- COMMAND ----------
-
--- MAGIC %md
--- MAGIC # Reshaping Data
--- MAGIC
--- MAGIC Combine datasets and lookup tables with various join types and strategies.
--- MAGIC Reshape with pivot tables.
--- MAGIC
--- MAGIC ##### Objectives
--- MAGIC - Combine datasets using different types of joins
--- MAGIC - Join records to a pre-existing lookup table
--- MAGIC - Examine and provide hints for join strategies
--- MAGIC - Reshape data using pivot tables
-
--- COMMAND ----------
-
--- MAGIC %md
--- MAGIC ## Run Setup
--- MAGIC
--- MAGIC The setup script will create the data and declare necessary values for the rest of this notebook to execute.
-
--- COMMAND ----------
-
--- MAGIC %run ../Includes/setup-cleaned
-
--- COMMAND ----------
-
--- MAGIC %md ## Explode Arrays
--- MAGIC Use the `explode` array function to explode arrays in the item field of events.
-
--- COMMAND ----------
-
-SELECT *, explode(items) item FROM events
-
--- COMMAND ----------
-
--- MAGIC %md ## Collect Arrays
--- MAGIC Explode and flatten complex data using various array functions
-
--- COMMAND ----------
-
-SELECT user_id,
- flatten(collect_set(items.item_id)) cart_history,
- collect_set(event_name) event_history
-FROM (SELECT *, explode(items) item FROM events)
-GROUP BY user_id
-
--- COMMAND ----------
-
--- MAGIC %md ## Join a Lookup Table
--- MAGIC
--- MAGIC Lookup tables are normally small, historical tables used to enrich new data passing through an ETL pipeline.
--- MAGIC
--- MAGIC In this example, we will use a small lookup table to get details for each item sold by this retailer.
--- MAGIC
--- MAGIC **Inner Join:** Selects rows that have matching values in both relations. This is the default join in Spark SQL.
-
--- COMMAND ----------
-
-CREATE OR REPLACE VIEW sales_enriched AS
-SELECT *
-FROM (SELECT *, explode(items) item FROM sales) a
-INNER JOIN item_lookup b
-ON a.item.item_id = b.item_id;
-
-SELECT * FROM sales_enriched
-
--- COMMAND ----------
-
--- MAGIC %md
--- MAGIC ## Examine Join Strategy
--- MAGIC Use the `EXPLAIN` command to view the physical plan used to execute the query.
--- MAGIC Look for BroadcastHashJoin or BroadcastExchange.
-
--- COMMAND ----------
-
-EXPLAIN FORMATTED
-SELECT * FROM sales_enriched
-
--- COMMAND ----------
-
--- MAGIC %md
--- MAGIC By default, Spark performed a broadcast join rather than a shuffle join. That is, it broadcasted `item_lookup` to the larger `sales`, replicating the smaller dataset on each node of our cluster. This avoided having to move the larger dataset across the cluster.
-
--- COMMAND ----------
-
--- MAGIC %md `autoBroadcastJoinThreshold`
--- MAGIC
--- MAGIC We can access configuration settings to take a look at the broadcast join threshold. This specifies the maximum size in bytes for a table that broadcasts to worker nodes.
-
--- COMMAND ----------
-
-SET spark.sql.autoBroadcastJoinThreshold
-
--- COMMAND ----------
-
--- MAGIC %md Re-examine physical plan when join is executed while broadcasting is disabled
--- MAGIC 1. Drop threshold to `-1` to disable broadcasting
--- MAGIC 1. Explain join
--- MAGIC
--- MAGIC Now notice the lack of broadcast in the query physical plan.
-
--- COMMAND ----------
-
-SET spark.sql.autoBroadcastJoinThreshold=-1
-
--- COMMAND ----------
-
--- MAGIC %md Notice a sort merge join is performed, rather than a broadcast join.
-
--- COMMAND ----------
-
-EXPLAIN FORMATTED
-SELECT * FROM sales_enriched
-
--- COMMAND ----------
-
--- MAGIC %md
--- MAGIC ## Broadcast Join Hint
--- MAGIC Use a join hint to suggest broadcasting the lookup table for the join.
--- MAGIC
--- MAGIC The join side with this hint will be broadcast regardless of `autoBroadcastJoinThreshold`.
-
--- COMMAND ----------
-
-EXPLAIN FORMATTED
-SELECT /*+ BROADCAST(b) */ *
-FROM (SELECT *, explode(items) item FROM sales) a
-INNER JOIN item_lookup b
-ON a.item.item_id = b.item_id
-
--- COMMAND ----------
-
--- MAGIC %md Reset the original threshold.
-
--- COMMAND ----------
-
-SET spark.sql.autoBroadcastJoinThreshold=10485760b
-
--- COMMAND ----------
-
--- MAGIC %md ## Pivot Tables
--- MAGIC The `PIVOT` clause is used for data perspective. We can get the aggregated values based on specific column values, which will be turned to multiple columns used in `SELECT` clause. The `PIVOT` clause can be specified after the table name or subquery.
--- MAGIC
--- MAGIC **`SELECT * FROM ()`**: The `SELECT` statement inside the parentheses is the input for this table.
--- MAGIC
--- MAGIC **`PIVOT`**: The first argument in the clause is an aggregate function and the column to be aggregated. Then, we specify the pivot column in the `FOR` subclause. The `IN` operator contains the pivot column values.
-
--- COMMAND ----------
-
--- MAGIC %md
--- MAGIC Use `PIVOT` to create a new `transactions` table that flattens out the information contained in the `sales` table and joins this with `users` table.
--- MAGIC
--- MAGIC Join these tables on email address, but without propagating this email address forward (to avoid potential PII exposure in downstream tables).
-
--- COMMAND ----------
-
-CREATE OR REPLACE TABLE transactions AS
-
-SELECT * FROM (
- SELECT
- user_id,
- order_id,
- transaction_timestamp,
- total_item_quantity,
- purchase_revenue_in_usd,
- unique_items,
- a.item.item_id item_id,
- a.item.quantity quantity
- FROM sales_enriched a
- INNER JOIN users b
- ON a.email = b.email
-) PIVOT (
- sum(quantity) FOR item_id in (
- 'P_FOAM_K',
- 'M_STAN_Q',
- 'P_FOAM_S',
- 'M_PREM_Q',
- 'M_STAN_F',
- 'M_STAN_T',
- 'M_PREM_K',
- 'M_PREM_F',
- 'M_STAN_K',
- 'M_PREM_T',
- 'P_DOWN_S',
- 'P_DOWN_K'
- )
-)
-
--- COMMAND ----------
-
-SELECT * FROM transactions
-
--- COMMAND ----------
-
--- MAGIC %md-sandbox
--- MAGIC © 2022 Databricks, Inc. All rights reserved.
--- MAGIC Apache, Apache Spark, Spark and the Spark logo are trademarks of the Apache Software Foundation.
--- MAGIC
--- MAGIC Privacy Policy | Terms of Use | Support
diff --git a/Data-Engineering-With-Databricks/Solutions/02 - ELT with Spark SQL and Python/DE 2.2.8 - Nested Data & Advanced Transformations.sql b/Data-Engineering-With-Databricks/Solutions/02 - ELT with Spark SQL and Python/DE 2.2.8 - Nested Data & Advanced Transformations.sql
deleted file mode 100644
index 720f905..0000000
--- a/Data-Engineering-With-Databricks/Solutions/02 - ELT with Spark SQL and Python/DE 2.2.8 - Nested Data & Advanced Transformations.sql
+++ /dev/null
@@ -1,159 +0,0 @@
--- Databricks notebook source
--- MAGIC %md-sandbox
--- MAGIC
--- MAGIC
--- MAGIC

--- MAGIC
-
--- COMMAND ----------
-
--- MAGIC %md # Advanced Transformations
--- MAGIC
--- MAGIC Manipulate nested data and work with advanced functions in SQL.
--- MAGIC
--- MAGIC ##### Objectives
--- MAGIC - Flatten nested data
--- MAGIC - Apply advanced functions to transform data
-
--- COMMAND ----------
-
--- MAGIC %md
--- MAGIC ## Run Setup
--- MAGIC
--- MAGIC The setup script will create the data and declare necessary values for the rest of this notebook to execute.
-
--- COMMAND ----------
-
--- MAGIC %run ../Includes/setup-transactions
-
--- COMMAND ----------
-
--- MAGIC %md We will work with the `events_raw` table we loaded earlier from `event-kafka.json`.
-
--- COMMAND ----------
-
-SELECT * FROM events_raw
-
--- COMMAND ----------
-
--- MAGIC %md Earlier in the module, we merged a clean version of this new dataset, `events_update` into our original `events` dataset. The raw events data was cleaned by parsing and flattening the relevant JSON data in the `value` column, and then removing duplicate event records. We'll go through that process here.
-
--- COMMAND ----------
-
--- MAGIC %md ## Parse JSON
--- MAGIC
--- MAGIC Parse JSON string with `from_json` and schema definition.
-
--- COMMAND ----------
-
-CREATE OR REPLACE TEMP VIEW events_raw_json AS
-SELECT from_json(cast(value as STRING), ("device STRING, ecommerce STRUCT< purchase_revenue_in_usd: DOUBLE, total_item_quantity: BIGINT, unique_items: BIGINT>, event_name STRING, event_previous_timestamp BIGINT, event_timestamp BIGINT, geo STRUCT< city: STRING, state: STRING>, items ARRAY< STRUCT< coupon: STRING, item_id: STRING, item_name: STRING, item_revenue_in_usd: DOUBLE, price_in_usd: DOUBLE, quantity: BIGINT>>, traffic_source STRING, user_first_touch_timestamp BIGINT, user_id STRING")) json
-FROM events_raw;
-
--- COMMAND ----------
-
--- MAGIC %md ## Flatten Nested Data
--- MAGIC Deduplicate events by `user_id` and `event_timestamp`.
--- MAGIC
--- MAGIC Promote subfields with `json.*` to flatten data.
-
--- COMMAND ----------
-
-CREATE OR REPLACE TEMP VIEW deduped_events AS
-WITH deduped_events_raw AS (
- SELECT max(json) json FROM events_raw_json
- GROUP BY json.user_id, json.event_timestamp
-)
-SELECT json.* FROM deduped_events_raw
-
--- COMMAND ----------
-
--- MAGIC %md ## Higher Order Functions
--- MAGIC Higher order functions in Spark SQL allow you to work directly with complex data types. When working with hierarchical data, records are frequently stored as array or map type objects. Higher-order functions allow you to transform data while preserving the original structure.
--- MAGIC
--- MAGIC Higher order functions include:
--- MAGIC - `FILTER` filters an array using the given lambda function.
--- MAGIC - `EXIST` tests whether a statement is true for one or more elements in an array.
--- MAGIC - `TRANSFORM` uses the given lambda function to transform all elements in an array.
--- MAGIC - `REDUCE` takes two lambda functions to reduce the elements of an array to a single value by merging the elements into a buffer, and the apply a finishing function on the final buffer.
-
--- COMMAND ----------
-
--- MAGIC %md
--- MAGIC ## Filter
--- MAGIC Remove items that are not king-sized from all records in our `items` column. We can use the `FILTER` function to create a new column that excludes that value from each array.
--- MAGIC
--- MAGIC **`FILTER (items, i -> i.item_id LIKE "%K") AS king_items`**
--- MAGIC
--- MAGIC In the statement above:
--- MAGIC - **`FILTER`** : the name of the higher-order function
--- MAGIC - **`items`** : the name of our input array
--- MAGIC - **`i`** : the name of the iterator variable. You choose this name and then use it in the lambda function. It iterates over the array, cycling each value into the function one at a time.
--- MAGIC - **`->`** : Indicates the start of a function
--- MAGIC - **`i.item_id LIKE "%K"`** : This is the function. Each value is checked to see if it ends with the capital letter K. If it is, it gets filtered into the new column, `king_items`
-
--- COMMAND ----------
-
--- filter for sales of only king sized items
-SELECT
- order_id,
- items,
- FILTER (items, i -> i.item_id LIKE "%K") AS king_items
-FROM sales
-
--- COMMAND ----------
-
--- MAGIC %md
--- MAGIC You may write a filter that produces a lot of empty arrays in the created column. When that happens, it can be useful to use a `WHERE` clause to show only non-empty array values in the returned column.
--- MAGIC
--- MAGIC In this example, we accomplish that by using a subquery (a query within a query). They are useful for performing an operation in multiple steps. In this case, we're using it to create the named column that we will use with a `WHERE` clause.
-
--- COMMAND ----------
-
-CREATE OR REPLACE TEMP VIEW king_size_sales AS
-
-SELECT order_id, king_items
-FROM (
- SELECT
- order_id,
- FILTER (items, i -> i.item_id LIKE "%K") AS king_items
- FROM sales)
-WHERE size(king_items) > 0;
-
-SELECT * FROM king_size_sales
-
--- COMMAND ----------
-
--- MAGIC %md
--- MAGIC ## Transform
--- MAGIC Built-in functions are designed to operate on a single, simple data type within a cell; they cannot process array values. `TRANSFORM` can be particularly useful when you want to apply an existing function to each element in an array.
--- MAGIC
--- MAGIC Compute the total revenue from king-sized items per order.
--- MAGIC
--- MAGIC **`TRANSFORM(king_items, k -> CAST(k.item_revenue_in_usd * 100 AS INT)) AS item_revenues`**
--- MAGIC
--- MAGIC In the statement above, for each value in the input array, we extract the item's revenue value, multiply it by 100, and cast the result to integer. Note that we're using the same kind as references as in the previous command, but we name the iterator with a new variable, **`k`**.
-
--- COMMAND ----------
-
--- get total revenue from king items per order
-CREATE OR REPLACE TEMP VIEW king_item_revenues AS
-
-SELECT
- order_id,
- king_items,
- TRANSFORM (
- king_items,
- k -> CAST(k.item_revenue_in_usd * 100 AS INT)
- ) AS item_revenues
-FROM king_size_sales;
-
-SELECT * FROM king_item_revenues
-
--- COMMAND ----------
-
--- MAGIC %md-sandbox
--- MAGIC © 2022 Databricks, Inc. All rights reserved.
--- MAGIC Apache, Apache Spark, Spark and the Spark logo are trademarks of the Apache Software Foundation.
--- MAGIC
--- MAGIC Privacy Policy | Terms of Use | Support
diff --git a/Data-Engineering-With-Databricks/Solutions/02 - ELT with Spark SQL and Python/DE 2.2.9 - Views in the Lakehouse.sql b/Data-Engineering-With-Databricks/Solutions/02 - ELT with Spark SQL and Python/DE 2.2.9 - Views in the Lakehouse.sql
deleted file mode 100644
index 01c4908..0000000
--- a/Data-Engineering-With-Databricks/Solutions/02 - ELT with Spark SQL and Python/DE 2.2.9 - Views in the Lakehouse.sql
+++ /dev/null
@@ -1,144 +0,0 @@
--- Databricks notebook source
--- MAGIC %md-sandbox
--- MAGIC
--- MAGIC
--- MAGIC

--- MAGIC
-
--- COMMAND ----------
-
--- MAGIC %md # Views in the Lakehouse
--- MAGIC
--- MAGIC Register views to create stable, secure queries in the Lakehouse.
--- MAGIC
--- MAGIC In this lesson, we'll give a quick overview of how stored views are created and managed.
--- MAGIC
--- MAGIC
--- MAGIC Rather than trying to capture every possible metric in our view, we'll create a summary of values that might be of interest to our analysts.
--- MAGIC
--- MAGIC 0. Views as saved queries
--- MAGIC 0. Aliasing tables to views
--- MAGIC 0. Dynamic views
-
--- COMMAND ----------
-
--- MAGIC %md
--- MAGIC ## Run Setup
--- MAGIC
--- MAGIC The setup script will create the data and declare necessary values for the rest of this notebook to execute.
-
--- COMMAND ----------
-
--- MAGIC %run ../Includes/setup-transactions
-
--- COMMAND ----------
-
--- MAGIC %md ## Views as saved queries
--- MAGIC
--- MAGIC A Spark DataFrame and a view are nearly identical constructs. By calling `EXPLAIN` on our DataFrame, we can see that our source table is a set of instructions to deserialize the files containing our data.
-
--- COMMAND ----------
-
-EXPLAIN FORMATTED SELECT * FROM transactions
-
--- COMMAND ----------
-
--- MAGIC %md ## Aliasing Tables to Views
--- MAGIC
--- MAGIC #### Examine Clickpath Data
--- MAGIC Define logic that creates or updates a table that aggregates the number of times each user took a particular action and then join this information with the flattened view of transactions created earlier. This will combine data from the `events` and `transactions` tables in order to create a record of all actions a user took on the site and what their final order looked like.
--- MAGIC
--- MAGIC This `clickpaths` view should contain all the fields from your `transactions` table, as well as a count of every `event_name` in its own column. Each user that completed a purchase should have a single row in the final table.
-
--- COMMAND ----------
-
-CREATE OR REPLACE VIEW clickpaths AS
- WITH user_event_counts AS (
- SELECT * FROM (
- SELECT user_id user, event_name
- FROM events
- ) PIVOT ( count(*) FOR event_name IN (
- "cart", "pillows", "login", "main", "careers", "guest", "faq", "down", "warranty", "finalize",
- "register", "shipping_info", "checkout", "mattresses", "add_item", "press", "email_coupon",
- "cc_info", "foam", "reviews", "original", "delivery", "premium" )))
-SELECT *
-FROM user_event_counts a
-JOIN transactions b
- ON a.user = b.user_id;
-
--- COMMAND ----------
-
--- MAGIC %md
--- MAGIC We can see that our view is simply storing the Spark plan for our query.
-
--- COMMAND ----------
-
-EXPLAIN FORMATTED SELECT * FROM clickpaths
-
--- COMMAND ----------
-
--- MAGIC %md
--- MAGIC When we execute a query against this view, we will process the plan to generate the logically correct result.
--- MAGIC
--- MAGIC Note that while the data may end up in the Delta Cache, this result is not guaranteed to be persisted, and is only cached for the currently active cluster.
-
--- COMMAND ----------
-
-SELECT * FROM clickpaths WHERE login = True
-
--- COMMAND ----------
-
-SELECT *
-FROM clickpaths
-WHERE user_id = "UA000000102360871"
-
--- COMMAND ----------
-
--- MAGIC %md ## Dynamic Views
--- MAGIC Databricks dynamic views allow user or group identity ACLs to be applied to data at the column (or row) level.
--- MAGIC
--- MAGIC Database administrators can configure data access privileges to disallow access to a source table and only allow users to query a redacted view. Users with sufficient privileges will be able to see all fields, while restricted users will be shown arbitrary results, as defined at view creation.
-
--- COMMAND ----------
-
--- MAGIC %md
--- MAGIC Consider our `sales` table with the following columns.
-
--- COMMAND ----------
-
-DESCRIBE sales
-
--- COMMAND ----------
-
-CREATE OR REPLACE VIEW sales_view AS
-SELECT
- order_id,
- transaction_timestamp,
- CASE
- WHEN is_member('ade_demo') THEN email
- ELSE 'REDACTED'
- END AS email,
- CASE
- WHEN is_member('ade_demo') THEN purchase_revenue_in_usd
- ELSE 'REDACTED'
- END AS purchase_revenue_in_usd
-FROM sales
-
--- COMMAND ----------
-
-SELECT * FROM sales_view
-
--- COMMAND ----------
-
--- MAGIC %md
--- MAGIC Now when we query from `sales_view`, only members of the group `ade_demo` will be able to see results in plain text.
--- MAGIC
--- MAGIC **NOTE:** You may not have privileges to create groups or assign membership. Your instructor should be able to demonstrate how group membership will change query results.
-
--- COMMAND ----------
-
--- MAGIC %md-sandbox
--- MAGIC © 2022 Databricks, Inc. All rights reserved.
--- MAGIC Apache, Apache Spark, Spark and the Spark logo are trademarks of the Apache Software Foundation.
--- MAGIC
--- MAGIC Privacy Policy | Terms of Use | Support
diff --git a/Data-Engineering-With-Databricks/Solutions/02 - ELT with Spark SQL and Python/Labs/DE 2.1.3L - Databases, Tables & Views Lab.sql b/Data-Engineering-With-Databricks/Solutions/02 - ELT with Spark SQL and Python/Labs/DE 2.1.3L - Databases, Tables & Views Lab.sql
deleted file mode 100644
index dc18781..0000000
--- a/Data-Engineering-With-Databricks/Solutions/02 - ELT with Spark SQL and Python/Labs/DE 2.1.3L - Databases, Tables & Views Lab.sql
+++ /dev/null
@@ -1,339 +0,0 @@
--- Databricks notebook source
--- MAGIC %md-sandbox
--- MAGIC
--- MAGIC
--- MAGIC

--- MAGIC
-
--- COMMAND ----------
-
--- MAGIC %md
--- MAGIC # Databases, Tables, and Views Lab
--- MAGIC
--- MAGIC ## Learning Objectives
--- MAGIC **In this lab, you will create and explore interactions between various relational entities, including:**
--- MAGIC
--- MAGIC - Databases
--- MAGIC - Tables (managed and external)
--- MAGIC - Views (views, temp views, and global temp views)
--- MAGIC
--- MAGIC **Resources**
--- MAGIC * [Databases and Tables - Databricks Docs](https://docs.databricks.com/user-guide/tables.html)
--- MAGIC * [Managed and Unmanaged Tables](https://docs.databricks.com/user-guide/tables.html#managed-and-unmanaged-tables)
--- MAGIC * [Creating a Table with the UI](https://docs.databricks.com/user-guide/tables.html#create-a-table-using-the-ui)
--- MAGIC * [Create a Local Table](https://docs.databricks.com/user-guide/tables.html#create-a-local-table)
--- MAGIC * [Saving to Persistent Tables](https://spark.apache.org/docs/latest/sql-data-sources-load-save-functions.html#saving-to-persistent-tables)
-
--- COMMAND ----------
-
--- MAGIC %md
--- MAGIC ### Getting Started
--- MAGIC
--- MAGIC Run the following cell to configure variables and datasets for this lesson.
-
--- COMMAND ----------
-
--- MAGIC %run ../../Includes/setup-meta
-
--- COMMAND ----------
-
--- MAGIC %md
--- MAGIC ## Overview of the Data
--- MAGIC
--- MAGIC The data include multiple entries from a selection of weather stations, including average temperatures recorded in either Fahrenheit or Celsius. The schema for the table:
--- MAGIC
--- MAGIC |ColumnName | DataType| Description|
--- MAGIC |------------|---------|------------|
--- MAGIC |NAME |string | Station name |
--- MAGIC |STATION |string | Unique ID |
--- MAGIC |LATITUDE |float | Latitude |
--- MAGIC |LONGITUDE |float | Longitude |
--- MAGIC |ELEVATION |float | Elevation |
--- MAGIC |DATE |date | YYYY-MM-DD |
--- MAGIC |UNIT |string | Temperature units |
--- MAGIC |TAVG |float | Average temperature |
--- MAGIC
--- MAGIC This data is stored in the Parquet format; preview the data with the query below.
-
--- COMMAND ----------
-
-SELECT *
-FROM parquet.`${c.userhome}/datasets/weather`
-
--- COMMAND ----------
-
--- MAGIC %md
--- MAGIC ## Create a Database
--- MAGIC
--- MAGIC Create a database in the default location using the `{c.database}` variable defined in setup script.
-
--- COMMAND ----------
-
--- ANSWER
-CREATE DATABASE IF NOT EXISTS ${c.database}
-
--- COMMAND ----------
-
--- MAGIC %md
--- MAGIC ## Change to Your New Database
--- MAGIC
--- MAGIC `USE` your newly created database.
-
--- COMMAND ----------
-
--- ANSWER
-USE ${c.database}
-
--- COMMAND ----------
-
--- MAGIC %md
--- MAGIC ## Create a Managed Table
--- MAGIC Use a CTAS statement to create a managed table named `weather_managed`.
-
--- COMMAND ----------
-
--- ANSWER
-
-CREATE TABLE weather_managed AS
-SELECT *
-FROM parquet.`${c.userhome}/datasets/weather`
-
--- COMMAND ----------
-
--- MAGIC %md
--- MAGIC ## Create an External Table
--- MAGIC
--- MAGIC Recall that an external table differs from a managed table through specification of a location. Create an external table called `weather_external` below.
-
--- COMMAND ----------
-
--- ANSWER
-
-CREATE TABLE weather_external
-LOCATION "${c.userhome}/lab/external"
-AS SELECT *
-FROM parquet.`${c.userhome}/datasets/weather`
-
--- COMMAND ----------
-
--- MAGIC %md
--- MAGIC ## Examine Table Details
--- MAGIC Use the SQL command `DESCRIBE EXTENDED table_name` to examine the two weather tables.
-
--- COMMAND ----------
-
-DESCRIBE EXTENDED weather_managed
-
--- COMMAND ----------
-
-DESCRIBE EXTENDED weather_external
-
--- COMMAND ----------
-
--- MAGIC %md
--- MAGIC Run the following helper code to extract and compare the table locations.
-
--- COMMAND ----------
-
--- MAGIC %python
--- MAGIC def getTableLocation(tableName):
--- MAGIC return spark.sql(f"DESCRIBE EXTENDED {tableName}").select("data_type").filter("col_name = 'Location'").first()[0]
-
--- COMMAND ----------
-
--- MAGIC %python
--- MAGIC managedTablePath = getTableLocation("weather_managed")
--- MAGIC externalTablePath = getTableLocation("weather_external")
--- MAGIC
--- MAGIC print(f"""The weather_managed table is saved at:
--- MAGIC
--- MAGIC {managedTablePath}
--- MAGIC
--- MAGIC The weather_external table is saved at:
--- MAGIC
--- MAGIC {externalTablePath}""")
-
--- COMMAND ----------
-
--- MAGIC %md
--- MAGIC List the contents of these directories to confirm that data exists in both locations.
-
--- COMMAND ----------
-
--- MAGIC %python
--- MAGIC dbutils.fs.ls(managedTablePath)
-
--- COMMAND ----------
-
--- MAGIC %python
--- MAGIC dbutils.fs.ls(externalTablePath)
-
--- COMMAND ----------
-
--- MAGIC %md
--- MAGIC ### Check Directory Contents after Dropping Database and All Tables
--- MAGIC The `CASCADE` keyword will accomplish this.
--- MAGIC
--- MAGIC **NOTE**: You will encounter an error when listing your `managedTablePath`
-
--- COMMAND ----------
-
--- ANSWER
-DROP DATABASE ${c.database} CASCADE
-
--- COMMAND ----------
-
--- MAGIC %python
--- MAGIC dbutils.fs.ls(managedTablePath)
-
--- COMMAND ----------
-
--- MAGIC %python
--- MAGIC dbutils.fs.ls(externalTablePath)
-
--- COMMAND ----------
-
--- MAGIC %python
--- MAGIC dbutils.fs.ls(userhome)
-
--- COMMAND ----------
-
--- MAGIC %md
--- MAGIC **This highlights the main differences between managed and external tables.** By default, the files associated with managed tables will be stored to this location on the root DBFS storage linked to the workspace, and will be deleted when a table is dropped.
--- MAGIC
--- MAGIC Files for external tables will be persisted in the location provided at table creation, preventing users from inadvertently deleting underlying files. **External tables can easily be migrated to other databases or renamed, but these operations with managed tables will require rewriting ALL underlying files.**
-
--- COMMAND ----------
-
--- MAGIC %md
--- MAGIC ## Create a Database with a Specified Path
--- MAGIC
--- MAGIC Assuming you dropped your database in the last step, you can use the same `database` name.
-
--- COMMAND ----------
-
-CREATE DATABASE ${c.database} LOCATION '${c.userhome}/${c.database}'
-
--- COMMAND ----------
-
--- MAGIC %md
--- MAGIC Recreate your `weather_managed` table in this new database and print out the location of this table.
-
--- COMMAND ----------
-
--- ANSWER
-
-CREATE TABLE weather_managed AS
-SELECT *
-FROM parquet.`${c.userhome}/datasets/weather`
-
--- COMMAND ----------
-
--- MAGIC %python
--- MAGIC getTableLocation("weather_managed")
-
--- COMMAND ----------
-
--- MAGIC %md
--- MAGIC While here we're using the `userhome` directory created on the DBFS root, _any_ object store can be used as the database directory. **Defining database directories for groups of users can greatly reduce the chances of accidental data exfiltration**.
-
--- COMMAND ----------
-
--- MAGIC %md
--- MAGIC ## Views and their Scoping
--- MAGIC
--- MAGIC Using the provided `AS` clause, register:
--- MAGIC - a view named `celsius`
--- MAGIC - a temporary view named `celsius_temp`
--- MAGIC - a global temp view named `celsius_global`
-
--- COMMAND ----------
-
--- ANSWER
-
-CREATE OR REPLACE VIEW celsius
-AS (SELECT *
- FROM weather_managed
- WHERE UNIT = "C")
-
--- COMMAND ----------
-
--- MAGIC %md
--- MAGIC Now create a temporary view.
-
--- COMMAND ----------
-
--- ANSWER
-
-CREATE OR REPLACE TEMP VIEW celsius_temp
-AS (SELECT *
- FROM weather_managed
- WHERE UNIT = "C")
-
--- COMMAND ----------
-
--- MAGIC %md
--- MAGIC Now register a global temp view.
-
--- COMMAND ----------
-
--- ANSWER
-
-CREATE OR REPLACE GLOBAL TEMP VIEW celsius_global
-AS (SELECT *
- FROM weather_managed
- WHERE UNIT = "C")
-
--- COMMAND ----------
-
--- MAGIC %md
--- MAGIC Views will be displayed alongside tables when listing from the catalog.
-
--- COMMAND ----------
-
-SHOW TABLES
-
--- COMMAND ----------
-
--- MAGIC %md
--- MAGIC Note the following:
--- MAGIC - The view is associated with the current database. This view will be available to any user that can access this database and will persist between sessions.
--- MAGIC - The temp view is not associated with any database. The temp view is ephemeral and is only accessible in the current SparkSession.
--- MAGIC - The global temp view does not appear in our catalog. **Global temp views will always register to the `global_temp` database**. The `global_temp` database is ephemeral but tied to the lifetime of the cluster; however, it is only accessible by notebooks attached to the same cluster on which it was created.
-
--- COMMAND ----------
-
-SELECT * FROM global_temp.celsius_global
-
--- COMMAND ----------
-
--- MAGIC %md
--- MAGIC While no job was triggered when defining these views, a job is triggered _each time_ a query is executed against the view.
-
--- COMMAND ----------
-
--- MAGIC %md
--- MAGIC ## Clean Up
--- MAGIC Drop the database and all tables to clean up your workspace.
-
--- COMMAND ----------
-
-DROP DATABASE ${c.database} CASCADE
-
--- COMMAND ----------
-
--- MAGIC %md
--- MAGIC ## Synopsis
--- MAGIC
--- MAGIC In this lab we:
--- MAGIC - Created and deleted databases
--- MAGIC - Explored behavior of managed and external tables
--- MAGIC - Learned about the scoping of views
-
--- COMMAND ----------
-
--- MAGIC %md-sandbox
--- MAGIC © 2022 Databricks, Inc. All rights reserved.
--- MAGIC Apache, Apache Spark, Spark and the Spark logo are trademarks of the Apache Software Foundation.
--- MAGIC
--- MAGIC Privacy Policy | Terms of Use | Support
diff --git a/Data-Engineering-With-Databricks/Solutions/02 - ELT with Spark SQL and Python/Labs/DE 2.3.3L - Python for SQL Lab.py b/Data-Engineering-With-Databricks/Solutions/02 - ELT with Spark SQL and Python/Labs/DE 2.3.3L - Python for SQL Lab.py
deleted file mode 100644
index 1c1c6e4..0000000
--- a/Data-Engineering-With-Databricks/Solutions/02 - ELT with Spark SQL and Python/Labs/DE 2.3.3L - Python for SQL Lab.py
+++ /dev/null
@@ -1,238 +0,0 @@
-# Databricks notebook source
-# MAGIC %md-sandbox
-# MAGIC
-# MAGIC
-# MAGIC

-# MAGIC
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC # Just Enough Python for Databricks SQL Lab
-# MAGIC
-# MAGIC ## Learning Objectives
-# MAGIC By the end of this lesson, students should be able to:
-# MAGIC * Review basic Python code and describe expected outcomes of code execution
-# MAGIC * Reason through control flow statements in Python functions
-# MAGIC * Add parameters to a SQL query by wrapping it in a Python function
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC # Reviewing Python Basics
-# MAGIC
-# MAGIC In the previous notebook, we briefly explored using `spark.sql()` to execute arbitrary SQL commands from Python.
-# MAGIC
-# MAGIC Look at the following 3 cells. Before executing each cell, identify:
-# MAGIC 1. The expected output of cell execution
-# MAGIC 1. What logic is being executed
-# MAGIC 1. Changes to the resultant state of the environment
-# MAGIC
-# MAGIC Then execute the cells, compare the results to your expectations, and see the explanations below.
-
-# COMMAND ----------
-
-course = "python_for_sql"
-
-# COMMAND ----------
-
-spark.sql(f"SELECT '{course}'")
-
-# COMMAND ----------
-
-display(spark.sql(f"SELECT '{course}'"))
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC 1. `Cmd 3` assigns a string to a variable. When a variable assignment is successful, no output is displayed to the notebook. A new variable is added to the current execution environment.
-# MAGIC 1. `Cmd 4` executes a SQL query and returns the results as a DataFrame. In this case, the SQL query is just to select a string, so no changes to our environment occur. When a returned DataFrame is not captured, the schema for the DataFrame is displayed alongside the word `DataFrame`.
-# MAGIC 1. `Cmd 5` executes the same SQL query and displays the returned DataFrame. This combination of `display()` and `spark.sql()` most closely mirrors executing logic in a `%sql` cell; the results will always be printed in a formatted table, assuming results are returned by the query; some queries will instead manipulate tables or databases, in which case the work `OK` will print to show successful execution. In this case, no changes to our environment occur from running this code.
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC ## Setting Up a Development Environment
-# MAGIC
-# MAGIC Throughout this course, we use logic similar to the follow cell to capture information about the user currently executing the notebook and create an isolated development database.
-# MAGIC
-# MAGIC The `re` library is the [standard Python library for regex](https://docs.python.org/3/library/re.html).
-# MAGIC
-# MAGIC Databricks SQL has a special method to capture the username of the `current_user()`; and the `.first()[0]` code is a quick hack to capture the first row of the first column of a query executed with `spark.sql()` (in this case, we do this safely knowing that there will only be 1 row and 1 column).
-# MAGIC
-# MAGIC All other logic below is just string formatting.
-
-# COMMAND ----------
-
-import re
-
-username = spark.sql("SELECT current_user()").first()[0]
-userhome = f"dbfs:/user/{username}/{course}"
-database = f"""{course}_{re.sub("[^a-zA-Z0-9]", "_", username)}_db"""
-
-print(f"""
-username: {username}
-userhome: {userhome}
-database: {database}
-""")
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC Below, we add a simple control flow statement to this logic to create and use this user-specific database. Optionally, we will reset this database and drop all of the contents on repeat execution. (Note the the default mode is `"reset"`).
-
-# COMMAND ----------
-
-def create_database(course, mode="reset"):
- import re
-
- username = spark.sql("SELECT current_user()").first()[0]
- userhome = f"dbfs:/user/{username}/{course}"
- database = f"""{course}_{re.sub("[^a-zA-Z0-9]", "_", username)}_db"""
-
- print(f"""
- username: {username}
- userhome: {userhome}
- database: {database}
- """)
-
- if mode == "reset":
- spark.sql(f"DROP DATABASE IF EXISTS {database} CASCADE")
- dbutils.fs.rm(userhome, True)
- spark.sql(f"""
- CREATE DATABASE IF NOT EXISTS {database}
- LOCATION '{userhome}'
- """)
- spark.sql(f"USE {database}")
-
-create_database(course)
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC While this logic as defined is geared toward isolating students in shared workspaces for instructional purposes, the same basic design could be leveraged for testing new logic in an isolated environment before pushing to production.
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC ## Handling Errors Gracefully
-# MAGIC
-# MAGIC Review the logic in the function below.
-# MAGIC
-# MAGIC Note that we've just declared a new database that currently contains no tables.
-
-# COMMAND ----------
-
-def query_or_make_demo_table(table):
- try:
- display(spark.sql(f"SELECT * FROM {table}"))
- except:
- spark.sql(f"""
- CREATE TABLE {table}
- (id INT, name STRING, value DOUBLE, state STRING)
- """)
- spark.sql(f"""
- INSERT INTO {table}
- VALUES (1, "Yve", 1.0, "CA"),
- (2, "Omar", 2.5, "NY"),
- (3, "Elia", 3.3, "OH"),
- (4, "Rebecca", 4.7, "TX"),
- (5, "Ameena", 5.3, "CA"),
- (6, "Ling", 6.6, "NY"),
- (7, "Pedro", 7.1, "KY")
- """)
- display(spark.sql(f"SELECT * FROM {table}"))
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC Try to identify the following before executing the next cell:
-# MAGIC 1. The expected output of cell execution
-# MAGIC 1. What logic is being executed
-# MAGIC 1. Changes to the resultant state of the environment
-
-# COMMAND ----------
-
-query_or_make_demo_table("demo_table")
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC Now answer the same three questions before running the same query below.
-
-# COMMAND ----------
-
-query_or_make_demo_table("demo_table")
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC - On the first execution, the table `demo_table` did not yet exist. As such, the attempt to return the contents of the table created an error, which resulted in our `except` block of logic executing. This block:
-# MAGIC 1. Created the table
-# MAGIC 1. Inserted values
-# MAGIC 1. Returned the contents of the table
-# MAGIC - On the second execution, the table `demo_table` already exists, and so the first query in the `try` block executes without error. As a result, we just display the results of the query without modifying anything in our environment.
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC ## Adapting SQL to Python
-# MAGIC Let's consider the following SQL query against our demo table created above.
-
-# COMMAND ----------
-
-# MAGIC %sql
-# MAGIC SELECT id, value
-# MAGIC FROM demo_table
-# MAGIC WHERE state = "CA"
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC Let's use this simple example to practice creating a Python function that adds optional functionality.
-# MAGIC
-# MAGIC Our target function will:
-# MAGIC * Always return only the `id` and `value` column from the a table named `demo_table`
-# MAGIC * Allow filtering results by state, but default to all states
-# MAGIC * Optionally return the query result object (a PySpark DataFrame)
-# MAGIC
-# MAGIC Stretch Goal:
-# MAGIC * Add logic to check that if the value passed for the `state` filter contains two uppercase letters
-# MAGIC
-# MAGIC Some starter logic has been provided below.
-
-# COMMAND ----------
-
-# ANSWER
-
-def preview_values(state=None, return_results=False):
- query = "SELECT id, value FROM demo_table"
- if state is not None:
-# assert state == state.upper() and len(state) == 2, "Please use standard 2 letter uppercase state abbreviations"
- query += f" WHERE state = '{state}'"
- query_results = spark.sql(query)
- display(query_results)
- if return_results == True:
- return query_results
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC The assert statements below can be used to check whether or not your function works as intended.
-
-# COMMAND ----------
-
-import pyspark.sql.dataframe
-
-assert preview_values(return_results=True).columns == ["id", "value"], "Query should only return `id` and `value` columns"
-assert preview_values() == None, "Function should not return anything by default"
-assert type(preview_values(return_results=True)) == pyspark.sql.dataframe.DataFrame, "Function should optionally return the DataFrame results"
-assert preview_values(state="OH", return_results=True).first()[0] == 3, "Function should allow filtering by state"
-
-# COMMAND ----------
-
-# MAGIC %md-sandbox
-# MAGIC © 2022 Databricks, Inc. All rights reserved.
-# MAGIC Apache, Apache Spark, Spark and the Spark logo are trademarks of the Apache Software Foundation.
-# MAGIC
-# MAGIC Privacy Policy | Terms of Use | Support
diff --git a/Data-Engineering-With-Databricks/Solutions/03 - Incremental Data and Delta Live Tables/DE 3.1.1 - Structured Streaming Concepts.py b/Data-Engineering-With-Databricks/Solutions/03 - Incremental Data and Delta Live Tables/DE 3.1.1 - Structured Streaming Concepts.py
deleted file mode 100644
index 6d9fa0f..0000000
--- a/Data-Engineering-With-Databricks/Solutions/03 - Incremental Data and Delta Live Tables/DE 3.1.1 - Structured Streaming Concepts.py
+++ /dev/null
@@ -1,559 +0,0 @@
-# Databricks notebook source
-# MAGIC %md-sandbox
-# MAGIC
-# MAGIC
-# MAGIC

-# MAGIC
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC # Structured Streaming Concepts
-# MAGIC
-# MAGIC ## Learning Objectives
-# MAGIC By the end of this lesson, you should be able to:
-# MAGIC * Describe the programming model used by Spark Structured Streaming
-# MAGIC * Configure required options to perform a streaming read on a source
-# MAGIC * Describe the requirements for end-to-end fault tolerance
-# MAGIC * Configure required options to perform a streaming write to a sink
-# MAGIC * Interact with streaming queries and stop active streams
-# MAGIC
-# MAGIC ## Datasets Used
-# MAGIC The source contains smartphone accelerometer samples from devices and users with the following columns:
-# MAGIC
-# MAGIC | Field | Description |
-# MAGIC | ------------- | ----------- |
-# MAGIC | Arrival_Time | time data was received |
-# MAGIC | Creation_Time | event time |
-# MAGIC | Device | type of Model |
-# MAGIC | Index | unique identifier of event |
-# MAGIC | Model | i.e Nexus4 |
-# MAGIC | User | unique user identifier |
-# MAGIC | geolocation | city & country |
-# MAGIC | gt | transportation mode |
-# MAGIC | id | unused null field |
-# MAGIC | x | acceleration in x-dir |
-# MAGIC | y | acceleration in y-dir |
-# MAGIC | z | acceleration in z-dir |
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC
-# MAGIC ## Getting Started
-# MAGIC
-# MAGIC Run the following cell to configure our "classroom."
-
-# COMMAND ----------
-
-# MAGIC %run ../Includes/classic-setup $mode="reset"
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC
-# MAGIC ## Micro-Batches as a Table
-# MAGIC
-# MAGIC For more information, see the analogous section in the [Structured Streaming Programming Guide](http://spark.apache.org/docs/latest/structured-streaming-programming-guide.html#basic-concepts) (from which several images have been borrowed).
-# MAGIC
-# MAGIC Spark Structured Streaming approaches streaming data by modeling it as a series of continuous appends to an unbounded table. While similar to defining **micro-batch** logic, this model allows incremental queries to be defined against streaming sources as if they were static input (though the fact that the input is an unbounded tables does impose some constraints).
-# MAGIC
-# MAGIC
-# MAGIC
-# MAGIC ### Basic Concepts
-# MAGIC
-# MAGIC - The developer defines an **input table** by configuring a streaming read against a **source**. The syntax for doing this is similar to working with static data.
-# MAGIC - A **query** is defined against the input table. Both the DataFrames API and Spark SQL can be used to easily define transformations and actions against the input table.
-# MAGIC - This logical query on the input table generates the **results table**. The results table contains the incremental state information of the stream.
-# MAGIC - The **output** of a streaming pipeline will persist updates to the results table by writing to an external **sink**. Generally, a sink will be a durable system such as files or a pub/sub messaging bus.
-# MAGIC - New rows are appended to the input table for each **trigger interval**. These new rows are essentially analogous to micro-batch transactions and will be automatically propagated through the results table to the sink.
-# MAGIC
-# MAGIC
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC ## End-to-end Fault Tolerance
-# MAGIC
-# MAGIC Structured Streaming ensures end-to-end exactly-once fault-tolerance guarantees through _checkpointing_ (discussed below) and Write Ahead Logs.
-# MAGIC
-# MAGIC Structured Streaming sources, sinks, and the underlying execution engine work together to track the progress of stream processing. If a failure occurs, the streaming engine attempts to restart and/or reprocess the data.
-# MAGIC For best practices on recovering from a failed streaming query see docs.
-# MAGIC
-# MAGIC This approach _only_ works if the streaming source is replayable; replayable sources include cloud-based object storage and pub/sub messaging services.
-# MAGIC
-# MAGIC At a high level, the underlying streaming mechanism relies on a couple approaches:
-# MAGIC
-# MAGIC * First, Structured Streaming uses checkpointing and write-ahead logs to record the offset range of data being processed during each trigger interval.
-# MAGIC * Next, the streaming sinks are designed to be _idempotent_—that is, multiple writes of the same data (as identified by the offset) do _not_ result in duplicates being written to the sink.
-# MAGIC
-# MAGIC Taken together, replayable data sources and idempotent sinks allow Structured Streaming to ensure **end-to-end, exactly-once semantics** under any failure condition.
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC
-# MAGIC ## Reading a Stream
-# MAGIC
-# MAGIC The `spark.readStream()` method returns a `DataStreamReader` used to configure and query the stream.
-# MAGIC
-# MAGIC Configuring a streaming read on a source requires:
-# MAGIC * The schema of the data
-# MAGIC * **NOTE**: Some streaming sources allow for schema inference
-# MAGIC * The `format` of the source file format or named connector
-# MAGIC * **NOTE**: `delta` is the default format for all reads and writes in Databricks
-# MAGIC * Additional source-specific configuration options. For example:
-# MAGIC * [`cloudFiles`](https://docs.databricks.com/spark/latest/structured-streaming/auto-loader-s3.html)
-# MAGIC * Kafka
-# MAGIC * The name of the source table or the location of the files in object storage
-# MAGIC
-# MAGIC Below, we define a streaming read against a source (represented by `dataSource`) consisting of files from cloud storage.
-# MAGIC
-# MAGIC **NOTE**: We can think of this `DataStreamReader` as an incremental temp view defined against an ever-appending source table. Just as with a temp view, we only store the query plan when we set up an incremental read. It's not until we query results that we'll see compute happen.
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC
-# MAGIC ### The Schema
-# MAGIC
-# MAGIC Working with `cloudFiles` allows Databricks to automatically infer the schema from most file sources.
-# MAGIC
-# MAGIC Once data is loaded into a Delta Lake table, all schema for downstream incremental reads will be grabbed automatically from the table metadata.
-# MAGIC
-# MAGIC Here, we'll provide an explicit schema for our data.
-
-# COMMAND ----------
-
-schema = """Arrival_Time BIGINT,
- Creation_Time BIGINT,
- Device STRING,
- Index BIGINT,
- Model STRING,
- User STRING,
- geolocation STRUCT<
- city: STRING,
- country: STRING>,
- gt STRING,
- Id BIGINT,
- x DOUBLE,
- y DOUBLE,
- z DOUBLE"""
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC ## Creating a Streaming Temp View
-# MAGIC
-# MAGIC Below we pull all of the above concepts together to define a streaming read.
-# MAGIC
-# MAGIC If we were continuing to build out our query with PySpark, we would capture this as a DataFrame. Instead, we use `createOrReplaceTempView` to create an entity that can be queried locally with SQL.
-
-# COMMAND ----------
-
-(spark
- .readStream
- .schema(schema)
- .format("cloudFiles")
- .option("cloudFiles.format", "json")
- .load(dataSource)
- .createOrReplaceTempView("streaming_tmp_vw")
-)
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC ### Comparing to Static Reads
-# MAGIC
-# MAGIC The above logic provides us with more or less the same result as the static query below.
-
-# COMMAND ----------
-
-spark.sql(f"CREATE OR REPLACE TEMP VIEW static_tmp_vw AS SELECT * FROM json.`{dataSource}`")
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC When we query a static read on data, we display the results of the query at a point in time.
-# MAGIC
-# MAGIC **NOTE**: The `display(spark.table())` pattern shown in the next cell is the same as executing a `SELECT * FROM` for a table or view. Later, we'll see that this allows us to pass streaming temp views back to the DataFrame API to write out a stream.
-
-# COMMAND ----------
-
-display(spark.table("static_tmp_vw"))
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC
-# MAGIC But when we execute a query on a streaming temporary view, we'll continue to update the results of the query as new data arrives in the source.
-# MAGIC
-# MAGIC Think of a query executed against a streaming temp view as an **always-on incremental query**.
-
-# COMMAND ----------
-
-# MAGIC %sql
-# MAGIC SELECT * FROM streaming_tmp_vw
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC Before continuing, click `Stop Execution` at the top of the notebook, `Cancel` immediately under the cell, or run the following cell to stop all active streaming queries.
-
-# COMMAND ----------
-
-for s in spark.streams.active:
- print("Stopping " + s.id)
- s.stop()
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC ## Working with Streaming Data
-# MAGIC We can execute most transformation against streaming temp views the same way we would with static data. Here, we'll run a simple aggregation to get counts of records for each `device`.
-# MAGIC
-# MAGIC Because we are querying a streaming temp view, this becomes a streaming query that executes indefinitely, rather than completing after retrieving a single set of results. For streaming queries like this, Databricks Notebooks include interactive dashboards that allow users to monitor streaming performance. Explore this below.
-# MAGIC
-# MAGIC 
-# MAGIC
-# MAGIC One important note regarding this example: this is merely displaying an aggregation of input as seen by the stream. **None of these records are being persisted anywhere at this point.**
-
-# COMMAND ----------
-
-# MAGIC %sql
-# MAGIC SELECT device, COUNT(device) AS total_records
-# MAGIC FROM streaming_tmp_vw
-# MAGIC GROUP BY device
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC Before continuing, click `Stop Execution` at the top of the notebook, `Cancel` immediately under the cell, or run the following cell to stop all active streaming queries.
-
-# COMMAND ----------
-
-for s in spark.streams.active:
- print("Stopping " + s.id)
- s.stop()
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC ## Persisting Streaming Results
-# MAGIC
-# MAGIC In order to persist incremental results, we need to pass our logic back to the PySpark Structured Streaming DataFrames API.
-# MAGIC
-# MAGIC Above, we created a temp view from a PySpark streaming DataFrame. If we create another temp view from the results of a query against a streaming temp view, we'll again have a streaming temp view.
-
-# COMMAND ----------
-
-# MAGIC %sql
-# MAGIC CREATE OR REPLACE TEMP VIEW device_counts_tmp_vw AS (
-# MAGIC SELECT device, COUNT(device) AS total_records
-# MAGIC FROM streaming_tmp_vw
-# MAGIC GROUP BY device
-# MAGIC )
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC
-# MAGIC ## Writing a Stream
-# MAGIC
-# MAGIC To persist the results of a streaming query, we must write them out to durable storage. The `DataFrame.writeStream` method returns a `DataStreamWriter` used to configure the output.
-# MAGIC
-# MAGIC There are a number of required parameters to configure a streaming write:
-# MAGIC * The `format` of the **output sink**; see documentation
-# MAGIC * The location of the **checkpoint directory**
-# MAGIC * The **output mode**
-# MAGIC * Configurations specific to the output sink, such as:
-# MAGIC * Kafka
-# MAGIC * A custom sink via `writeStream.foreach(...)`
-# MAGIC
-# MAGIC Once the configuration is completed, we trigger the job with a call to `.table()`. If we didn't want to create a table and instead wanted to write directly to storage, we would use `.start()` instead.
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC ### Checkpointing
-# MAGIC
-# MAGIC Databricks creates checkpoints by storing the current state of your streaming job to cloud storage.
-# MAGIC
-# MAGIC Checkpointing combines with write ahead logs to allow a terminated stream to be restarted and continue from where it left off.
-# MAGIC
-# MAGIC Checkpoints cannot be shared between separate streams.
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC
-# MAGIC ## Output Modes
-# MAGIC
-# MAGIC Streaming jobs have output modes similar to static/batch workloads. [More details here](https://spark.apache.org/docs/latest/structured-streaming-programming-guide.html#output-modes).
-# MAGIC
-# MAGIC | Mode | Example | Notes |
-# MAGIC | ------------- | ----------- | --- |
-# MAGIC | **Append** | `.outputMode("append")` | Only the new rows appended to the Result Table since the last trigger are written to the sink. This is the default. |
-# MAGIC | **Complete** | `.outputMode("complete")` | The entire updated Result Table is written to the sink. The individual sink implementation decides how to handle writing the entire table. |
-# MAGIC | **Update** | `.outputMode("update")` | Only the rows in the Result Table that were updated since the last trigger will be outputted to the sink.|
-# MAGIC
-# MAGIC **NOTE**: Not all sinks will support `update` mode.
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC
-# MAGIC ### Defining the Trigger Interval
-# MAGIC
-# MAGIC When defining a streaming write, the `trigger` method specifies when the system should process the next set of data..
-# MAGIC
-# MAGIC | Trigger Type | Example | Notes |
-# MAGIC |----------------------------------------|-----------|-------------|
-# MAGIC | Unspecified | | The query will be executed as soon as the system has completed processing the previous query (this is the default) |
-# MAGIC | Fixed interval micro-batches | `.trigger(processingTime="2 minutes")` | The query will be executed in micro-batches and kicked off at the user-specified intervals |
-# MAGIC | One-time micro-batch | `.trigger(once=True)` | The query will execute _only one_ micro-batch to process all the available data and then stop on its own |
-# MAGIC | Continuous w/fixed checkpoint interval | `.trigger(continuous="1 second")` | The query will be executed in a low-latency, continuous processing mode. _EXPERIMENTAL_ |
-# MAGIC
-# MAGIC Note that triggers are specified when defining how data will be written to a sink and control the frequency of micro-batches. By default, Spark will automatically detect and process all data in the source that has been added since the last trigger; some sources allow configuration to limit the size of each micro-batch.
-# MAGIC
-# MAGIC
Read this blog post to learn more about using one-time triggers to simplify CDC with a hybrid streaming/batch design.
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC ## Pulling It All Together
-# MAGIC
-# MAGIC The code below demonstrates using `spark.table()` to load data from a streaming temp view back to a DataFrame. Note that Spark will always load streaming views as a streaming DataFrame and static views as static DataFrames (meaning that incremental processing must be defined with read logic to support incremental writing).
-
-# COMMAND ----------
-
-streamingQuery = (spark.table("device_counts_tmp_vw")
- .writeStream
- .option("checkpointLocation", checkpointPath)
- .outputMode("complete")
- .trigger(processingTime='10 seconds')
- .table("device_counts")
-)
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC ## Querying the Output
-# MAGIC Now let's query the output we've written from SQL. Because the result is a table, we only need to deserialize the data to return the results.
-# MAGIC
-# MAGIC Because we are now querying a table (not a streaming DataFrame), the following will **not** be a streaming query.
-
-# COMMAND ----------
-
-# MAGIC %sql
-# MAGIC SELECT *
-# MAGIC FROM device_counts
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC ## Debugging with the Memory Sink
-# MAGIC
-# MAGIC The **memory** sink can be a useful tool for debugging. It provides a quick and easy sink requiring no setup. The output is stored as an in-memory table, with a name defined using `queryName`.
-# MAGIC
-# MAGIC
This should be used only for debugging purposes with low data volumes, since the entire output is collected and stored in the driver’s memory.
-
-# COMMAND ----------
-
-streamingQueryMem = (spark.table("streaming_tmp_vw")
- .writeStream
- .format("memory") # memory = store in-memory table (for testing only)
- .queryName("streaming_query_mem") # name of the in-memory table
- .outputMode("append")
- .start()
-)
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC Let's examine the contents of the in-memory table with the same query used previously. Like the previous query we ran against the Delta output, this will **not** be a streaming query. In this case, we are simply querying the in-memory table established by the memory sink in the previous cell.
-
-# COMMAND ----------
-
-# MAGIC %sql
-# MAGIC SELECT device, COUNT(device) AS total_records
-# MAGIC FROM streaming_query_mem
-# MAGIC GROUP BY device
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC ## Interacting with Streaming Queries
-# MAGIC
-# MAGIC
-# MAGIC the logic defined above, data is read from JSON files and then saved out in the Delta Lake format. Note that because Delta creates a new version for each transaction, when working with streaming data this will mean that the Delta table creates a new version for each trigger interval in which new data is processed. [More info on streaming with Delta](https://docs.databricks.com/delta/delta-streaming.html#table-streaming-reads-and-writes).
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC The `recentProgress` attribute allows access to metadata about recently processed micro-batches. Let's dump the contents for the streaming query created earlier.
-
-# COMMAND ----------
-
-streamingQuery.recentProgress
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC In addition to referencing `StreamingQuery` objects returned by `writeStream`, as we did above, we can iterate on the `streams.active` attribute in `SparkSession` to identify all active streaming queries.
-
-# COMMAND ----------
-
-for s in spark.streams.active: # Iterate over all streams
- print(s.id) # Print the stream's id
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC Let's iterate on all active streams and stop them. This is an important thing to do here, for if you don't then your cluster will run indefinitely!
-# MAGIC
-# MAGIC After running the following cell, feel free to examine the cells earlier that initiated streaming queries; notice they have both been canceled.
-
-# COMMAND ----------
-
-for s in spark.streams.active:
- print("Stopping " + s.id)
- s.stop()
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC ## Incremental Ingestion with Auto Loader
-# MAGIC
-# MAGIC Incremental ETL is important since it allows us to deal solely with new data that has been encountered since the last ingestion. Reliably processing only the new data is key to achieving scalability.
-# MAGIC
-# MAGIC Ingesting into a Delta Lake table from a data lake is a common use case that has traditionally been challenging to properly set up, typically relying on the integration of always-on services like Kafka to track the files that have been ingested, and to monitor cloud storage for new file arrivals. Databricks Auto Loader abstracts all this and provides an easy-to-use mechanism for incrementally and efficiently processing new data files as they arrive in cloud file storage, in the form of a structured streaming source.
-# MAGIC
-# MAGIC Given an input directory path on the cloud file storage, the `cloudFiles` source automatically processes new files as they arrive, with the option of also processing existing files in that directory. For full details, refer to the documentation.
-# MAGIC
-# MAGIC **Due to the benefits and scalability that Auto Loader delivers, Databricks recommends its use as general best practice when ingesting data from cloud storage.**
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC Reset the output directory in preparation to stream data using Auto Loader.
-
-# COMMAND ----------
-
-# MAGIC %run ../Includes/classic-setup $mode="reset"
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC ### Reading Data with Auto Loader
-# MAGIC
-# MAGIC An example invocation of Auto Loader is provided below. Comparing against the standard streaming read from earlier, notice the following differences:
-# MAGIC
-# MAGIC * Specify a `format` of `cloudFiles`
-# MAGIC * Specify the underlying format of the data using the `cloudFiles.format` option
-# MAGIC * The `dataLandingLocation` source below represents a cloud storage location from where data is being ingested
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC
-# MAGIC ### Schema Inference and Evolution
-# MAGIC
-# MAGIC As mentioned earlier, every streaming DataFrame must have a schema. But Auto Loader can be configured to take a more active role in inferring and maintaining the schema of the data as it evolves.
-# MAGIC
-# MAGIC By omitting a schema specification, Auto Loader will detect the schema based on the data seen on the input. Specifying the `cloudFiles.schemaLocation` option allows Auto Loader to track the schema, thereby improving performances and ensuring stability of the schema across stream restart. A common pattern is to use `checkpointLocation` for this purpose.
-# MAGIC
-# MAGIC
There must be data present for schema inference to work; otherwise you must specify a schema.
-# MAGIC
-# MAGIC **Schema evolution** allows changes to a schema in response to data that changes over time. This can be an important feature in some use cases.
-
-# COMMAND ----------
-
-incrementalStreamingDF = (spark
- .readStream
- .format("cloudFiles")
- .option("cloudFiles.format", "json")
- .option("cloudFiles.schemaLocation", checkpointPath)
- .load(dataLandingLocation)
-)
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC Writing the output also takes a similar form as the previous streaming case. Note the following differences:
-# MAGIC * Specify `mergeSchema` option to activate schema evolution. If any changes to the schema occur over time, the schema is adapted rather than rejecting the write. This can be useful in some use cases.
-# MAGIC * Omitting the trigger to allow the query to continue running, ingesting new data as it arrives. If you wish to schedule your ETL process to run in batch mode, consider using a one-time trigger instead.
-
-# COMMAND ----------
-
-(incrementalStreamingDF
- .writeStream
- .format("delta")
- .option("checkpointLocation", checkpointPath)
- .option("mergeSchema", "true")
- .table(outputTable)
-)
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC ### Querying the Output
-# MAGIC By now the following query against the output table will likely seem familiar. Run it a few times, and it will become apparent that nothing changes, as no data is arriving in our simulated cloud storage.
-
-# COMMAND ----------
-
-# MAGIC %sql
-# MAGIC SELECT Device,COUNT(Device) AS Count
-# MAGIC FROM ${c.outputTable}
-# MAGIC GROUP BY Device
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC ## Land New Data
-# MAGIC Run the following cell to simulate the arrival of new data in our cloud storage. Each time you execute the cell below, a new file will be written to our source directory. Following this cell, observe the stream monitor above, and notice the impact on the results when re-running the query.
-
-# COMMAND ----------
-
-File.newData()
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC ## Clean Up
-# MAGIC Stop active streams and remove created resources before continuing.
-
-# COMMAND ----------
-
-# MAGIC %run ../Includes/classic-setup $mode="clean"
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC
-# MAGIC
Summary
-# MAGIC
-# MAGIC We used `readStream` to stream input from a variety of sources, including Databricks Auto Loader. Auto Loader augments Structured Streaming functionality by providing an easy-to-use interface of performing incremental ETL from cloud storage.
-# MAGIC
-# MAGIC We also explored various options for consuming, writing and querying the streamed input data.
-# MAGIC
-# MAGIC Finally, we explored the array of active streams maintained in the `SparkSession` object.
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC
-# MAGIC
Additional Topics & Resources
-# MAGIC
-# MAGIC * Structured Streaming Programming Guide
-# MAGIC * A Deep Dive into Structured Streaming by Tathagata Das. This is an excellent video describing how Structured Streaming works.
-# MAGIC * Failed Streaming Query Recovery Best Practices for Recovery.
-# MAGIC * Continuous Processing Mode Lowest possible latency stream processing. Currently Experimental.
-
-# COMMAND ----------
-
-# MAGIC %md-sandbox
-# MAGIC © 2022 Databricks, Inc. All rights reserved.
-# MAGIC Apache, Apache Spark, Spark and the Spark logo are trademarks of the Apache Software Foundation.
-# MAGIC
-# MAGIC Privacy Policy | Terms of Use | Support
diff --git a/Data-Engineering-With-Databricks/Solutions/03 - Incremental Data and Delta Live Tables/DE 3.1.2 - Windows and Watermarks.py b/Data-Engineering-With-Databricks/Solutions/03 - Incremental Data and Delta Live Tables/DE 3.1.2 - Windows and Watermarks.py
deleted file mode 100644
index e9a8b3d..0000000
--- a/Data-Engineering-With-Databricks/Solutions/03 - Incremental Data and Delta Live Tables/DE 3.1.2 - Windows and Watermarks.py
+++ /dev/null
@@ -1,310 +0,0 @@
-# Databricks notebook source
-# MAGIC %md-sandbox
-# MAGIC
-# MAGIC
-# MAGIC

-# MAGIC
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC # Windows and Watermarks
-# MAGIC
-# MAGIC ## Learning Objectives
-# MAGIC By the end of this lesson, you should be able to:
-# MAGIC * Explain why some methods will not work on streaming data
-# MAGIC * Use windows to aggregate over chunks of data rather than all data
-# MAGIC * Compare tumbling windows and sliding windows
-# MAGIC * Apply watermarking to manage state
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC
-# MAGIC ## Getting Started
-# MAGIC
-# MAGIC Run the following cell to configure our "classroom."
-
-# COMMAND ----------
-
-# MAGIC %run ../Includes/classic-setup $mode="reset"
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC
-# MAGIC ## Configure Streaming Read
-# MAGIC
-# MAGIC This lesson uses the same data as the previous notebook, again loaded with AutoLoader.
-# MAGIC
-# MAGIC The code below registers a streaming DataFrame (which we'll use again in a moment) and a streaming temp view.
-# MAGIC
-# MAGIC Note the use of the `selectExpr` method, which allows multiple SQL operations to be configured on a per column basis in PySpark DataFrames. Here, we're simplifying the data to be dealt with by selecting only two columns:
-# MAGIC * `Creation_Time`, originally encoded in nanoseconds, is converted to unixtime and renamed to `creation_time`
-# MAGIC * `gt` is renamed to `action`
-
-# COMMAND ----------
-
-from pyspark.sql.functions import col
-
-schema = """Arrival_Time BIGINT,
- Creation_Time BIGINT,
- Device STRING,
- Index BIGINT,
- Model STRING,
- User STRING,
- geolocation STRUCT<
- city: STRING,
- country: STRING>,
- gt STRING,
- Id BIGINT,
- x DOUBLE,
- y DOUBLE,
- z DOUBLE"""
-
-streamingDF = (spark
- .readStream
- .format("cloudFiles")
- .option("cloudFiles.format", "json")
- .schema(schema)
- .load(dataLandingLocation)
- .selectExpr("cast(Creation_Time/1E9 AS timestamp) AS creation_time", "gt AS action")
-)
-
-streamingDF.createOrReplaceTempView("streaming_tmp_vw")
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC ### Unsupported Operations
-# MAGIC
-# MAGIC Most operations on a streaming DataFrame are identical to a static DataFrame. There are some exceptions to this.
-# MAGIC
-# MAGIC Consider the model of the data as a constantly appending table. Sorting is one of a handful of operations that is either too complex or logically not possible to do when working with streaming data.
-
-# COMMAND ----------
-
-# MAGIC %sql
-# MAGIC SELECT * FROM streaming_tmp_vw
-# MAGIC ORDER BY creation_time DESC
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC
-# MAGIC ## Streaming Aggregations
-# MAGIC
-# MAGIC Continuous applications often require near real-time decisions on real-time, aggregated statistics.
-# MAGIC
-# MAGIC Some examples include
-# MAGIC * Aggregating errors in data from IoT devices by type
-# MAGIC * Detecting anomalous behavior in a server's log file by aggregating by country
-# MAGIC * Performing behavior analysis on instant messages via hash tags
-# MAGIC
-# MAGIC While these streaming aggregates may need to reference historic trends, analytics will generally be calculated over discrete units of time. Spark Structured Streaming supports time-based **windows** on streaming DataFrames to make these calculations easy.
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC
-# MAGIC ### What is Time?
-# MAGIC
-# MAGIC Multiple times may be associated with each streaming event. Consider the discrete differences between the time at which the event data was:
-# MAGIC - Generated
-# MAGIC - Written to the streaming source
-# MAGIC - Processed into Spark
-# MAGIC
-# MAGIC Each of these times will be recorded from the system clock of the machine running the process, with discrepancies and latencies being introduced due to many different causes.
-# MAGIC
-# MAGIC Generally speaking, most analytics will be interested in the time the data was generated. As such, this lesson will focus on timestamps recorded at the time of data generation, which we will refer to as the **event time**.
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC
-# MAGIC ## Windowing
-# MAGIC
-# MAGIC Defining windows on a time series field imposes a time range constraint on an otherwise unbounded input. This allows users to utilize this field for aggregations in the same way they would use distinct values when calling `GROUP BY`. Spark maintains a state table with aggregates for each user-defined bucket of time.
-# MAGIC
-# MAGIC Spark supports three types of windows:
-# MAGIC
-# MAGIC * **Tumbling windows**: fixed-size windows, regularly recurring windows that do not overlap. Each event will be aggregated into only one window.
-# MAGIC * **Sliding windows**: fixed-size windows, regularly recurring windows that overlap. Each event may be aggregated into multiple windows.
-# MAGIC * **Session windows**: dynamic windows whose start time and duration depends on the inputs. An event will trigger the start of a window that will, in general, continue until a predetermined duration after the last event received.
-# MAGIC
-# MAGIC
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC The following diagram illustrates in greater detail the concept of sliding windows and how events received at various times will be aggregated into the various windows (assuming that the slide duration is less than the window duration, which leads to overlapping windows):
-# MAGIC
-# MAGIC
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC
-# MAGIC ### Consuming with a Windowed Aggregation
-# MAGIC
-# MAGIC Let's consume the stream from SQL in a windowed aggregation using the SQL `window` function, which accepts a timestamp column and a window duration to define the tumbling windows. An optional third argument specifies a slide duration that allows the definition of a sliding window.
-
-# COMMAND ----------
-
-# MAGIC %sql
-# MAGIC SELECT
-# MAGIC window.start AS start,
-# MAGIC action,
-# MAGIC count(action) AS count
-# MAGIC FROM streaming_tmp_vw
-# MAGIC GROUP BY
-# MAGIC window(creation_time, '1 hour'),
-# MAGIC action
-# MAGIC ORDER BY
-# MAGIC start,
-# MAGIC action
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC Once a batch of data has loaded, render the results as a bar graph with the following settings:
-# MAGIC
-# MAGIC * **Keys** is set to `start`
-# MAGIC * **Series groupings** is set to `action`
-# MAGIC * **Values** is set to `count`
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC ### Land New Data
-# MAGIC Recall that our stream has been set up for incremental ingestion. Invoke the following cell a few times to simulate the arrival of new data. Note the impact on the results reported above.
-
-# COMMAND ----------
-
-File.newData()
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC ### Performance Considerations
-# MAGIC Because aggregation is a wide transformation, it will trigger a shuffle. Configuring the number of partitions can reduce the number of tasks and properly balance the workload for the cluster.
-# MAGIC
-# MAGIC In most cases, a 1-to-1 mapping of partitions to cores is ideal for streaming applications. The code below sets the number of partitions to 4, which maps perfectly to a cluster with 4 cores.
-
-# COMMAND ----------
-
-spark.conf.set("spark.sql.shuffle.partitions", 4)
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC
-# MAGIC ## Watermarking
-# MAGIC
-# MAGIC
-# MAGIC When aggregating with an unbounded input, Spark's fault-tolerant state management naturally incurs some processing overhead. To keep these overheads bounded within acceptable limits, the size of the state data should not grow indefinitely. However, with sliding windows, the number of windows/groups will grow indefinitely, and so can the size of state (proportional to the number of groups). To bound the state size, we have to be able to drop old aggregates that are not going to be updated anymore. We achieve this using **watermarking**.
-# MAGIC
-# MAGIC Watermarking allows users to define a cutoff threshold for how much state should be maintained. This cutoff is calculated against the most recently seen event time. Data arriving after this threshold will be discarded.
-# MAGIC
-# MAGIC The `withWatermark` method allows users to easily define this cutoff threshold.
-# MAGIC
-# MAGIC Note that there is no built-in support for watermarking in Spark SQL, but we can define this in PySpark before creating a temp view, as shown below.
-
-# COMMAND ----------
-
-(streamingDF
- .withWatermark("creation_time", "2 hours") # Specify a 2-hour watermark
- .createOrReplaceTempView("watermarked_tmp_vw")
-)
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC By directing our windowed aggregation at this new temp view, we can easily achieve the same outcome while managing state information.
-
-# COMMAND ----------
-
-# MAGIC %sql
-# MAGIC SELECT
-# MAGIC window.start AS start,
-# MAGIC action,
-# MAGIC count(action) AS count
-# MAGIC FROM watermarked_tmp_vw
-# MAGIC GROUP BY
-# MAGIC window(creation_time, '1 hour'),
-# MAGIC action
-# MAGIC ORDER BY
-# MAGIC start,
-# MAGIC action
-
-# COMMAND ----------
-
-# MAGIC %md-sandbox
-# MAGIC
-# MAGIC ## Example Details
-# MAGIC
-# MAGIC The threshold is always calculated against the max event time seen.
-# MAGIC
-# MAGIC In the example above,
-# MAGIC * The in-memory state is limited to two hours of historic data.
-# MAGIC * Data arriving more than 2 hours late should be dropped.
-# MAGIC * Data received within 2 hours of being generated will never be dropped.
-# MAGIC
-# MAGIC
This guarantee is strict in only one direction. Data delayed by more than 2 hours is not guaranteed to be dropped; it may or may not get aggregated. The more delayed the data is, the less likely the engine is going to process it.
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC ## Writing Results
-# MAGIC
-# MAGIC Previously we used `spark.table()` to pass SQL logic stored in temp views back to a DataFrame to write out streaming results.
-# MAGIC
-# MAGIC Below, we instead use `spark.sql()` and pass the entire SQL query.
-
-# COMMAND ----------
-
-(spark.sql("""
- SELECT
- window.start AS start,
- action,
- count(action) AS count
- FROM watermarked_tmp_vw
- GROUP BY
- window(creation_time, '1 hour'),
- action
- ORDER BY
- start,
- action
-""").writeStream
- .option("checkpointLocation", checkpointPath)
- .outputMode("complete")
- .table("action_counts")
-)
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC
-# MAGIC ## Clean Up
-
-# COMMAND ----------
-
-# MAGIC %run ../Includes/classic-setup $mode="clean"
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC
-# MAGIC ## Summary
-# MAGIC
-# MAGIC * A handful of operations valid for static DataFrames will not work with streaming data
-# MAGIC * Windows allow users to define time-based buckets for aggregating streaming data
-# MAGIC * Watermarking allows users to manage the amount of state being calculated with each trigger and define how late-arriving data should be handled
-
-# COMMAND ----------
-
-# MAGIC %md-sandbox
-# MAGIC © 2022 Databricks, Inc. All rights reserved.
-# MAGIC Apache, Apache Spark, Spark and the Spark logo are trademarks of the Apache Software Foundation.
-# MAGIC
-# MAGIC Privacy Policy | Terms of Use | Support
diff --git a/Data-Engineering-With-Databricks/Solutions/03 - Incremental Data and Delta Live Tables/DE 3.3.3 - Pipeline Results.py b/Data-Engineering-With-Databricks/Solutions/03 - Incremental Data and Delta Live Tables/DE 3.3.3 - Pipeline Results.py
deleted file mode 100644
index 79ea039..0000000
--- a/Data-Engineering-With-Databricks/Solutions/03 - Incremental Data and Delta Live Tables/DE 3.3.3 - Pipeline Results.py
+++ /dev/null
@@ -1,54 +0,0 @@
-# Databricks notebook source
-# MAGIC %md
-# MAGIC # Exploring the Results of a DLT Pipeline
-# MAGIC
-# MAGIC This Notebook explores the execution results of a DLT pipeline.
-
-# COMMAND ----------
-
-# MAGIC %run ../Includes/dlt-setup $course="dlt_demo"
-
-# COMMAND ----------
-
-storage_location = userhome
-
-# COMMAND ----------
-
-dbutils.fs.ls(storage_location)
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC The `system` directory captures events associated with the pipeline.
-
-# COMMAND ----------
-
-dbutils.fs.ls(f"{storage_location}/system/events")
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC These event logs are stored as a Delta table. Let's query the table.
-
-# COMMAND ----------
-
-display(spark.sql(f"SELECT * FROM delta.`{storage_location}/system/events`"))
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC Let's view the contents of the *tables* directory.
-
-# COMMAND ----------
-
-dbutils.fs.ls(f"{storage_location}/tables")
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC Let's query the gold table.
-
-# COMMAND ----------
-
-display(spark.sql(f"SELECT * FROM {database}.sales_order_in_la"))
-
diff --git a/Data-Engineering-With-Databricks/Solutions/03 - Incremental Data and Delta Live Tables/Labs/DE 3.1.3L - Using Auto Loader and Structured Streaming with Spark SQL Lab.py b/Data-Engineering-With-Databricks/Solutions/03 - Incremental Data and Delta Live Tables/Labs/DE 3.1.3L - Using Auto Loader and Structured Streaming with Spark SQL Lab.py
deleted file mode 100644
index 65eedff..0000000
--- a/Data-Engineering-With-Databricks/Solutions/03 - Incremental Data and Delta Live Tables/Labs/DE 3.1.3L - Using Auto Loader and Structured Streaming with Spark SQL Lab.py
+++ /dev/null
@@ -1,133 +0,0 @@
-# Databricks notebook source
-# MAGIC %md-sandbox
-# MAGIC
-# MAGIC
-# MAGIC

-# MAGIC
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC # Using Auto Loader and Structured Streaming with Spark SQL
-# MAGIC
-# MAGIC ## Learning Objectives
-# MAGIC By the end of this lab, you will be able to:
-# MAGIC * Ingest data using Auto Loader
-# MAGIC * Aggregate streaming data
-# MAGIC * Stream data to a Delta table
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC ## Setup
-# MAGIC Run the following script to setup necessary variables and clear out past runs of this notebook. Note that re-executing this cell will allow you to start the lab over.
-
-# COMMAND ----------
-
-# MAGIC %run ../../Includes/classic-setup $mode="reset"
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC
-# MAGIC ## Configure Streaming Read
-# MAGIC
-# MAGIC This lab uses a collection of customer-related CSV data from DBFS found in */databricks-datasets/retail-org/customers/*.
-# MAGIC
-# MAGIC Read this data using Auto Loader using its schema inference (use `customersCheckpointPath` to store the schema info). Create a streaming temporary view called `customers_raw_temp`.
-
-# COMMAND ----------
-
-# ANSWER
-customersCheckpointPath = userhome + "/customersCheckpoint"
-
-(spark
- .readStream
- .format("cloudFiles")
- .option("cloudFiles.format", "csv")
- .option("cloudFiles.schemaLocation", customersCheckpointPath)
- .load("/databricks-datasets/retail-org/customers/")
- .createOrReplaceTempView("customers_raw_temp")
-)
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC
-# MAGIC ## Define a streaming aggregation
-# MAGIC
-# MAGIC Using CTAS syntax, define a new streaming view called `customer_count_by_state_temp` that counts the number of customers per `state`, in a field called `customer_count`.
-
-# COMMAND ----------
-
-# MAGIC %sql
-# MAGIC -- ANSWER
-# MAGIC CREATE OR REPLACE TEMPORARY VIEW customer_count_by_state_temp AS
-# MAGIC SELECT
-# MAGIC state,
-# MAGIC count(state) AS customer_count
-# MAGIC FROM customers_raw_temp
-# MAGIC GROUP BY
-# MAGIC state
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC
-# MAGIC ## Write aggregated data to a Delta table
-# MAGIC
-# MAGIC Stream data from the `customer_count_by_state_temp` view to a Delta table called `customer_count_by_state`.
-
-# COMMAND ----------
-
-# ANSWER
-customersCountCheckpointPath = userhome + "/customersCountCheckpoint"
-
-(spark
- .table("customer_count_by_state_temp")
- .writeStream
- .format("delta")
- .option("checkpointLocation", customersCountCheckpointPath)
- .outputMode("complete")
- .table("customer_count_by_state"))
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC
-# MAGIC ## Query the results
-# MAGIC
-# MAGIC Query the `customer_count_by_state` table (this will not be a streaming query). Plot the results as a bar graph and also using the map plot.
-
-# COMMAND ----------
-
-# MAGIC %sql
-# MAGIC -- ANSWER
-# MAGIC SELECT * FROM customer_count_by_state
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC ## Wrapping Up
-# MAGIC
-# MAGIC Run the following cell to remove the database and all data associated with this lab.
-
-# COMMAND ----------
-
-# MAGIC %run ../../Includes/classic-setup $mode="clean"
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC By completing this lab, you should now feel comfortable:
-# MAGIC * Using PySpark to configure Auto Loader for incremental data ingestion
-# MAGIC * Using Spark SQL to aggregate streaming data
-# MAGIC * Streaming data to a Delta table
-
-# COMMAND ----------
-
-# MAGIC %md-sandbox
-# MAGIC © 2022 Databricks, Inc. All rights reserved.
-# MAGIC Apache, Apache Spark, Spark and the Spark logo are trademarks of the Apache Software Foundation.
-# MAGIC
-# MAGIC Privacy Policy | Terms of Use | Support
diff --git a/Data-Engineering-With-Databricks/Solutions/03 - Incremental Data and Delta Live Tables/Labs/DE 3.2.3L - Propagating Incremental Updates with Structured Streaming and Delta Lake Lab.py b/Data-Engineering-With-Databricks/Solutions/03 - Incremental Data and Delta Live Tables/Labs/DE 3.2.3L - Propagating Incremental Updates with Structured Streaming and Delta Lake Lab.py
deleted file mode 100644
index 115589a..0000000
--- a/Data-Engineering-With-Databricks/Solutions/03 - Incremental Data and Delta Live Tables/Labs/DE 3.2.3L - Propagating Incremental Updates with Structured Streaming and Delta Lake Lab.py
+++ /dev/null
@@ -1,193 +0,0 @@
-# Databricks notebook source
-# MAGIC %md-sandbox
-# MAGIC
-# MAGIC
-# MAGIC

-# MAGIC
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC # Propagating Incremental Updates with Structured Streaming and Delta Lake
-# MAGIC
-# MAGIC ## Learning Objectives
-# MAGIC By the end of this lab, you will be able to:
-# MAGIC * Apply your knowledge of structured streaming and Auto Loader to implement a simple multi-hop architecture
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC ## Setup
-# MAGIC Run the following script to setup necessary variables and clear out past runs of this notebook. Note that re-executing this cell will allow you to start the lab over.
-
-# COMMAND ----------
-
-# MAGIC %run ../../Includes/classic-setup $mode="reset"
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC
-# MAGIC ## Ingest data
-# MAGIC
-# MAGIC This lab uses a collection of customer-related CSV data from DBFS found in */databricks-datasets/retail-org/customers/*.
-# MAGIC
-# MAGIC Read this data using Auto Loader using its schema inference (use `customersCheckpointPath` to store the schema info). Stream the raw data to a Delta table called `bronze`.
-
-# COMMAND ----------
-
-# ANSWER
-customersCheckpointPath = userhome + "/customersCheckpoint"
-
-(spark
- .readStream
- .format("cloudFiles")
- .option("cloudFiles.format", "csv")
- .option("cloudFiles.schemaLocation", customersCheckpointPath)
- .load("/databricks-datasets/retail-org/customers/")
- .writeStream
- .format("delta")
- .option("checkpointLocation", customersCheckpointPath)
- .outputMode("append")
- .table("bronze"))
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC
-# MAGIC Let's create a streaming temporary view into the bronze table, so that we can perform transforms using SQL.
-
-# COMMAND ----------
-
-(spark
- .readStream
- .table("bronze")
- .createOrReplaceTempView("bronze_temp"))
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC ## Clean and enhance data
-# MAGIC
-# MAGIC Using CTAS syntax, define a new streaming view called `bronze_enhanced_temp` that does the following:
-# MAGIC * Skips records with a null `postcode` (set to zero)
-# MAGIC * Inserts a column called `receipt_time` containing a current timestamp
-# MAGIC * Inserts a column called `source_file` intaining the input filename
-
-# COMMAND ----------
-
-# MAGIC %sql
-# MAGIC -- ANSWER
-# MAGIC CREATE OR REPLACE TEMPORARY VIEW bronze_enhanced_temp AS
-# MAGIC SELECT
-# MAGIC *, current_timestamp() receipt_time, input_file_name() source_file
-# MAGIC FROM bronze_temp
-# MAGIC WHERE postcode > 0
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC ## Silver table
-# MAGIC
-# MAGIC Stream the data from `bronze_enhanced_temp` to a table called `silver`.
-
-# COMMAND ----------
-
-# ANSWER
-silverCheckpointPath = userhome + "/silverCheckpoint"
-
-(spark.table("bronze_enhanced_temp")
- .writeStream
- .format("delta")
- .option("checkpointLocation", silverCheckpointPath)
- .outputMode("append")
- .table("silver"))
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC
-# MAGIC Let's create a streaming temporary view into the silver table, so that we can perform business-level using SQL.
-
-# COMMAND ----------
-
-(spark
- .readStream
- .table("silver")
- .createOrReplaceTempView("silver_temp"))
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC
-# MAGIC ## Gold tables
-# MAGIC
-# MAGIC Using CTAS syntax, define a new streaming view called `customer_count_temp` that counts customers per state.
-
-# COMMAND ----------
-
-# MAGIC %sql
-# MAGIC -- ANSWER
-# MAGIC CREATE OR REPLACE TEMPORARY VIEW customer_count_by_state_temp AS
-# MAGIC SELECT state, count(state) AS customer_count
-# MAGIC FROM silver_temp
-# MAGIC GROUP BY
-# MAGIC state
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC Finally, stream the data from the `customer_count_by_state_temp` view to a Delta table called `gold_customer_count_by_state`.
-
-# COMMAND ----------
-
-# ANSWER
-customersCountCheckpointPath = userhome + "/customersCountCheckpoint"
-
-(spark
- .table("customer_count_by_state_temp")
- .writeStream
- .format("delta")
- .option("checkpointLocation", customersCountCheckpointPath)
- .outputMode("complete")
- .table("gold_customer_count_by_state"))
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC
-# MAGIC ## Query the results
-# MAGIC
-# MAGIC Query the `gold_customer_count_by_state` table (this will not be a streaming query). Plot the results as a bar graph and also using the map plot.
-
-# COMMAND ----------
-
-# MAGIC %sql
-# MAGIC SELECT * FROM gold_customer_count_by_state
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC ## Wrapping Up
-# MAGIC
-# MAGIC Run the following cell to remove the database and all data associated with this lab.
-
-# COMMAND ----------
-
-# MAGIC %run ../../Includes/classic-setup $mode="clean"
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC By completing this lab, you should now feel comfortable:
-# MAGIC * Using PySpark to configure Auto Loader for incremental data ingestion
-# MAGIC * Using Spark SQL to aggregate streaming data
-# MAGIC * Streaming data to a Delta table
-
-# COMMAND ----------
-
-# MAGIC %md-sandbox
-# MAGIC © 2022 Databricks, Inc. All rights reserved.
-# MAGIC Apache, Apache Spark, Spark and the Spark logo are trademarks of the Apache Software Foundation.
-# MAGIC
-# MAGIC Privacy Policy | Terms of Use | Support
diff --git a/Data-Engineering-With-Databricks/Solutions/03 - Incremental Data and Delta Live Tables/Labs/DE 3.3.4L - Intro & Config Lab.py b/Data-Engineering-With-Databricks/Solutions/03 - Incremental Data and Delta Live Tables/Labs/DE 3.3.4L - Intro & Config Lab.py
deleted file mode 100644
index b0c6cf7..0000000
--- a/Data-Engineering-With-Databricks/Solutions/03 - Incremental Data and Delta Live Tables/Labs/DE 3.3.4L - Intro & Config Lab.py
+++ /dev/null
@@ -1,188 +0,0 @@
-# Databricks notebook source
-# MAGIC %md-sandbox
-# MAGIC
-# MAGIC
-# MAGIC

-# MAGIC
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC # Lab: Migrating SQL Notebooks to Delta Live Tables
-# MAGIC
-# MAGIC This notebook dictates an overall structure for the lab exercise, configures the environment for the lab, provides simulated data streaming, and performs cleanup once you are done. A notebook like this is not typically needed in a production pipeline scenario.
-# MAGIC
-# MAGIC ## Learning Objectives
-# MAGIC By the end of this lesson, you should be able to:
-# MAGIC * Convert existing data pipelines to Delta Live Tables
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC ## Datasets Used
-# MAGIC
-# MAGIC This demo uses simplified artificially generated medical data. The schema of our two datasets is represented below. Note that we will be manipulating these schema during various steps.
-# MAGIC
-# MAGIC #### Recordings
-# MAGIC The main dataset uses heart rate recordings from medical devices delivered in the JSON format.
-# MAGIC
-# MAGIC | Field | Type |
-# MAGIC | --- | --- |
-# MAGIC | device_id | int |
-# MAGIC | mrn | long |
-# MAGIC | time | double |
-# MAGIC | heartrate | double |
-# MAGIC
-# MAGIC #### PII
-# MAGIC These data will later be joined with a static table of patient information stored in an external system to identify patients by name.
-# MAGIC
-# MAGIC | Field | Type |
-# MAGIC | --- | --- |
-# MAGIC | mrn | long |
-# MAGIC | name | string |
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC ## Getting Started
-# MAGIC
-# MAGIC Begin by running the following cell to configure the lab environment.
-
-# COMMAND ----------
-
-# MAGIC %run "../../Includes/dlt-setup" $mode="reset"
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC ## Land Initial Data
-# MAGIC Seed the landing zone with some data before proceeding. You will re-run this command to land additional data later.
-
-# COMMAND ----------
-
-File.newData()
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC ## Create and Configure a Pipeline
-# MAGIC
-# MAGIC 1. Click the **Jobs** button on the sidebar, then select the **Delta Live Tables** tab.
-# MAGIC 1. Click **Create Pipeline**.
-# MAGIC 1. Fill in a **Pipeline Name** of your choosing.
-# MAGIC 1. For **Notebook Libraries**, use the navigator to locate and select the notebook `3.3.4 - LAB - Migrating a SQL Pipeline to DLT`.
-# MAGIC 1. Run the cell below to generate values for **source**, **Target** and **Storage Location**. (All of these will include your current username).
-# MAGIC * Click `Add configuration`; enter the word `source` in the **Key** field and the output printed next to `source` below in the value field.
-# MAGIC * Enter the database name printed next to `Target` below in the **Target** field.
-# MAGIC * Enter the location printed next to `Storage Location` below in the **Storage Location** field.
-# MAGIC 1. Set **Pipeline Mode** to **Triggered**.
-# MAGIC 1. Disable autoscaling.
-# MAGIC 1. Set the number of wokers to 1.
-# MAGIC 1. Click **Create**.
-
-# COMMAND ----------
-
-storage_location = userhome + "/output"
-print(f"source : {dataLandingLocation.split(':')[1]}")
-print(f"Target: {database}")
-print(f"Storage Location: {storage_location.split(':')[1]}")
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC ## Run your Pipeline
-# MAGIC
-# MAGIC Select **Development** mode, which accelerates the development lifecycle by reusing the same cluster across runs. It will also turn off automatic retries when jobs fail.
-# MAGIC
-# MAGIC Click **Start** to begin the first update to your table.
-# MAGIC
-# MAGIC Delta Live Tables will automatically deploy all the necessary infrastructure and resolve the dependencies between all datasets.
-# MAGIC
-# MAGIC **NOTE**: The first table update make take several minutes as relationships are resolved and infrastructure deploys.
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC ## Open and Complete DLT Pipeline Notebook
-# MAGIC
-# MAGIC You will perform your work in this companion Notebook, which you will ultimately deploy as a pipeline.
-# MAGIC
-# MAGIC Open the Notebook and, following the guidelines provided therein, fill in the cells where prompted to implement a multi-hop architecture similar to the one we worked with in the previous section.
-# MAGIC
-# MAGIC **NOTE**: As a first step to preparing your pipeline, run the following cell to obtain the cloud file location. Substitue this value for the text that reads ``. This value will be unique within the workspace to your user identity to prevent possible interference between users within the same workspace.
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC ## Troubleshooting Code in Development Mode
-# MAGIC
-# MAGIC Don't despair if your pipeline fails the first time. Delta Live Tables is in active development, and error messages are improving all the time.
-# MAGIC
-# MAGIC Because relationships between tables are mapped as a DAG, error messages will often indicate that a dataset isn't found.
-# MAGIC
-# MAGIC Let's consider our DAG below:
-# MAGIC
-# MAGIC
-# MAGIC
-# MAGIC If the error message `Dataset not found: 'recordings_parsed'` is raised, there may be several culprits:
-# MAGIC 1. The logic defining `recordings_parsed` is invalid
-# MAGIC 1. There is an error reading from `recordings_bronze`
-# MAGIC 1. A typo exists in either `recordings_parsed` or `recordings_bronze`
-# MAGIC
-# MAGIC The safest way to identify the culprit is to iteratively add table/view definitions back into your DAG starting from your initial ingestion tables. You can simply comment out later table/view definitions and uncomment these between runs.
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC ## Display Results
-# MAGIC
-# MAGIC Assuming your pipeline runs successfully, display the contents of the gold table.
-# MAGIC
-# MAGIC **NOTE**: Because we specified a value for **Target**, tables are published to the specified database. Without a **Target** specification, we would need to query the table based on its underlying location in DBFS (relative to the **Storage Location**).
-
-# COMMAND ----------
-
-spark.sql(f"SELECT * FROM {database}daily_patient_avg")
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC Trigger another file arrival with the following cell. Feel free to run it a couple more times if desired. Following this, run the pipeline again and view the results. Feel free to re-run the cell above to gain an updated view of the `daily_patient_avg` table.
-
-# COMMAND ----------
-
-File.newData()
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC ## Wrapping Up
-# MAGIC
-# MAGIC Ensure that you delete your pipeline from the DLT UI, and run the following cell to clean up the files and tables that were created as part of the lab setup and execution.
-
-# COMMAND ----------
-
-# MAGIC %run "../../Includes/dlt-setup" $mode="clean"
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC ## Summary
-# MAGIC
-# MAGIC In this lab, you learned to convert an existing data pipeline to a Delta Live Tables SQL pipeline, and deployed that pipeline using the DLT UI.
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC ## Additional Topics & Resources
-# MAGIC
-# MAGIC * Delta Live Tables Documentation
-# MAGIC * Delta Live Tables Demo
-
-# COMMAND ----------
-
-# MAGIC %md-sandbox
-# MAGIC © 2022 Databricks, Inc. All rights reserved.
-# MAGIC Apache, Apache Spark, Spark and the Spark logo are trademarks of the Apache Software Foundation.
-# MAGIC
-# MAGIC Privacy Policy | Terms of Use | Support
diff --git a/Data-Engineering-With-Databricks/Solutions/04 - Managing Data Access and Production Pipelines/4.1.1 - Jobs/0 - Task Orchestration with Databricks Jobs.py b/Data-Engineering-With-Databricks/Solutions/04 - Managing Data Access and Production Pipelines/4.1.1 - Jobs/0 - Task Orchestration with Databricks Jobs.py
deleted file mode 100644
index ad80e31..0000000
--- a/Data-Engineering-With-Databricks/Solutions/04 - Managing Data Access and Production Pipelines/4.1.1 - Jobs/0 - Task Orchestration with Databricks Jobs.py
+++ /dev/null
@@ -1,115 +0,0 @@
-# Databricks notebook source
-# MAGIC %md-sandbox
-# MAGIC
-# MAGIC
-# MAGIC

-# MAGIC
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC # Orchestrating Jobs with Databricks
-# MAGIC
-# MAGIC New updates to the Databricks Jobs UI have added the ability to schedule multiple tasks as part of a job, allowing Databricks Jobs to fully handle orchestration for most production workloads.
-# MAGIC
-# MAGIC Here, we'll start by reviewing the steps for scheduling a notebook as a triggered standalone job, and then add a dependent job using a DLT pipeline.
-# MAGIC
-# MAGIC
-# MAGIC By the end of this lesson, you should feel confident:
-# MAGIC * Scheduling a notebook as a Databricks Job
-# MAGIC * Describing job scheduling options and differences between cluster types
-# MAGIC * Review Job Runs to track progress and see results
-# MAGIC * Scheduling a DLT pipeline as a Databricks Job
-# MAGIC * Configuring linear dependencies between tasks using the Databricks Jobs UI
-# MAGIC
-# MAGIC ## Schedule a Notebook Job
-# MAGIC
-# MAGIC When using the Jobs UI to orchestrate a workload with multiple tasks, you'll always begin by scheduling a single task.
-# MAGIC
-# MAGIC Here, we'll start by scheduling the notebook `1 - Reset`.
-# MAGIC
-# MAGIC Steps:
-# MAGIC 1. Navigate to the Jobs UI using the Databricks left side navigation bar.
-# MAGIC 1. Click the blue `Create Job` button
-# MAGIC 1. Configure the task:
-# MAGIC 1. Enter `reset` for the task name
-# MAGIC 1. Select the notebook `1 - Reset` using the notebook picker
-# MAGIC 1. Select an Existing All Purpose Cluster from the **Cluster** dropdown
-# MAGIC 1. Click **Create**
-# MAGIC
-# MAGIC **Note**: When selecting your all purpose cluster, you will get a warning about how this will be billed as all purpose compute. Production jobs should always be scheduled against new job clusters appropriately sized for the workload, as this is billed at a much lower rate.
-# MAGIC
-# MAGIC Click the blue **Run now** button in the top right to start the job.
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC ## Review Run
-# MAGIC
-# MAGIC As currently scheduled, our single notebook provides identical performance to the legacy Databricks Jobs UI, which only allowed a single notebook to be scheduled.
-# MAGIC
-# MAGIC From the **Runs** tab, clicking on the start time field will display a preview of the notebook with results. If the job is still running, this will be under **Active Runs**, and the displayed notebook will ocassionaly update to show progress throughout execution. If it has already completed, it will be under **Completed Runs** and just display the static results of the executed notebook.
-# MAGIC
-# MAGIC The notebook scheduled using the magic command `%run` to call an additional notebook using a relative path. Note that while not covered in this course, [new functionality added to Databricks Repos allows loading Python modules using relative paths](https://docs.databricks.com/repos.html#work-with-non-notebook-files-in-a-databricks-repo).
-# MAGIC
-# MAGIC The actual outcome of the scheduled notebook is to reset the output of the DLT pipeline configured earlier in the course, as well as to print out the necessary variables used to configure this pipeline for users that may not have coded along previously.
-# MAGIC
-# MAGIC Before continuing to the next step, make sure you either have access to a
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC ## Chron Scheduling of Databricks Jobs
-# MAGIC
-# MAGIC Note that on the right hand side of the Jobs UI, directly under the **Job Details** section is a section labeled **Schedule**.
-# MAGIC
-# MAGIC Click on the **Edit schedule** button to explore scheduling options.
-# MAGIC
-# MAGIC Changing the **Schedule type** field from **Manual** to **Scheduled** will bring up a chron scheduling UI.
-# MAGIC
-# MAGIC This UI provides extensive options for setting up chronological scheduling of your Jobs. Settings configured with the UI can also be output in cron syntax, which can be editted if custom configuration not available with the UI is needed.
-# MAGIC
-# MAGIC At this time, we'll leave our job set with **Manual** scheduling.
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC ## Schedule a DLT Pipeline as a Task
-# MAGIC
-# MAGIC In this step, we'll add a DLT pipeline to execute after the success of the task we configured in the previous step.
-# MAGIC
-# MAGIC **NOTE**: This step assumes that the DLT pipeline describe in the lab for module 3 of this course was configured successfully. If this is not the case, instructions are included for configuring this DLT pipeline in the run output of the `reset` notebook executed above.
-# MAGIC
-# MAGIC Steps:
-# MAGIC 1. Navigate to the Jobs UI using the Databricks left side navigation bar
-# MAGIC 1. Select the job you defined above by clicking on the name
-# MAGIC 1. At the top left of your screen, you'll see the **Runs** tab is currently selected; click the **Tasks** tab.
-# MAGIC 1. Click the large blue circle with a **+** at the center bottom of the screen to add a new task
-# MAGIC 1. Specify the **Task name** as `dlt`
-# MAGIC 1. From **Type**, select `Pipeline`
-# MAGIC 1. Click the **Pipeline** field and select the DLT pipeline you configured previously
-# MAGIC 1. Note that the **Depends on** field defaults to your previously defined task
-# MAGIC 1. Click the blue **Create task** button
-# MAGIC
-# MAGIC You should now see a screen with 2 boxes and a downward arrow between them. Your `reset` task will be at the top, leading into your `dlt` task. This visualization represents the dependencies between these tasks.
-# MAGIC
-# MAGIC Click **Run now** to execute your job.
-# MAGIC
-# MAGIC **NOTE**: You may need to wait a few minutes as infrastructure for your DLT pipeline is deployed.
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC ## Review Multi-Task Run Results
-# MAGIC
-# MAGIC Clicking into the job run will replicate the UI showing both tasks. The visualizations for tasks will update in real time to reflect which tasks are actively running, and will change colors if task failure occur. Clicking on a task box will render the scheduled notebook in the UI. (You can think of this as just an additional layer of orchestration on top of the previous Databricks Jobs UI, if that helps; note that if you have workloads scheduling jobs with the CLI or REST API, [the JSON structure used to configure and get results about jobs has seen similar updates to the UI](https://docs.databricks.com/dev-tools/api/latest/jobs.html)).
-# MAGIC
-# MAGIC **NOTE**: At this time, DLT pipelines scheduled as tasks do not directly render results in the Runs GUI; instead, you will be directed back to the DLT Pipeline GUI for the scheduled Pipeline.
-
-# COMMAND ----------
-
-# MAGIC %md-sandbox
-# MAGIC © 2022 Databricks, Inc. All rights reserved.
-# MAGIC Apache, Apache Spark, Spark and the Spark logo are trademarks of the Apache Software Foundation.
-# MAGIC
-# MAGIC Privacy Policy | Terms of Use | Support
diff --git a/Data-Engineering-With-Databricks/Solutions/04 - Managing Data Access and Production Pipelines/4.1.1 - Jobs/1- Reset.py b/Data-Engineering-With-Databricks/Solutions/04 - Managing Data Access and Production Pipelines/4.1.1 - Jobs/1- Reset.py
deleted file mode 100644
index 7f54ee9..0000000
--- a/Data-Engineering-With-Databricks/Solutions/04 - Managing Data Access and Production Pipelines/4.1.1 - Jobs/1- Reset.py
+++ /dev/null
@@ -1,48 +0,0 @@
-# Databricks notebook source
-# MAGIC %md-sandbox
-# MAGIC
-# MAGIC
-# MAGIC

-# MAGIC
-
-# COMMAND ----------
-
-# MAGIC %run ../../Includes/dlt-setup $course="dlt_demo" $mode="reset"
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC If you have not previously configured this DLT pipeline successfully, the following cell prints out two values that will be used during the configuration steps that follow.
-
-# COMMAND ----------
-
-print(f"Target: {database}")
-print(f"Storage location: {userhome.split(':')[1]}")
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC ## Create and configure a pipeline
-# MAGIC
-# MAGIC The instructions below refer to the same pipeline created during the previous codealong for DLT; if you successfully configured this notebook previously, you should not need to reconfigure this pipeline now.
-# MAGIC
-# MAGIC
-# MAGIC Steps:
-# MAGIC 1. Click the **Jobs** button on the sidebar,
-# MAGIC 1. Select the **Delta Live Tables** tab.
-# MAGIC 1. Click **Create Pipeline**.
-# MAGIC 1. Fill in a **Pipeline Name** of your choosing.
-# MAGIC 1. For **Notebook Libraries**, use the navigator to locate and select the companion notebook called **2 - DLT Job**.
-# MAGIC 1. In the **Target** field, specify the database name printed out next to **Target** in the cell above. (This should follow the pattern `dbacademy__dlt_demo`)
-# MAGIC 1. In the **Storage location** field, copy the directory as printed above.
-# MAGIC 1. For **Pipeline Mode**, select **Triggered**
-# MAGIC 1. Uncheck the **Enable autoscaling** box, and set the number of workers to 1.,
-# MAGIC 1. Click **Create**.
-
-# COMMAND ----------
-
-# MAGIC %md-sandbox
-# MAGIC © 2022 Databricks, Inc. All rights reserved.
-# MAGIC Apache, Apache Spark, Spark and the Spark logo are trademarks of the Apache Software Foundation.
-# MAGIC
-# MAGIC Privacy Policy | Terms of Use | Support
diff --git a/Data-Engineering-With-Databricks/Solutions/04 - Managing Data Access and Production Pipelines/4.1.2 - LAB - Jobs/0 - Lab Instructions.py b/Data-Engineering-With-Databricks/Solutions/04 - Managing Data Access and Production Pipelines/4.1.2 - LAB - Jobs/0 - Lab Instructions.py
deleted file mode 100644
index 98bc5c7..0000000
--- a/Data-Engineering-With-Databricks/Solutions/04 - Managing Data Access and Production Pipelines/4.1.2 - LAB - Jobs/0 - Lab Instructions.py
+++ /dev/null
@@ -1,91 +0,0 @@
-# Databricks notebook source
-# MAGIC %md-sandbox
-# MAGIC
-# MAGIC
-# MAGIC

-# MAGIC
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC # Orchestrating Jobs with Databricks
-# MAGIC
-# MAGIC In this lab, you'll be configuring a multi-task job comprising of:
-# MAGIC * A notebook that lands a new batch of data in a storage directory
-# MAGIC * A Delta Live Table pipeline that processes this data through a series of tables
-# MAGIC * A notebook that queries the gold table produced by this pipeline as well as various metrics output by DLT
-# MAGIC
-# MAGIC By the end of this lab, you should feel confident:
-# MAGIC * Scheduling a notebook as a Databricks Job
-# MAGIC * Scheduling a DLT pipeline as a Databricks Job
-# MAGIC * Configuring linear dependencies between tasks using the Databricks Jobs UI
-# MAGIC
-# MAGIC ## Schedule a Notebook Job
-# MAGIC
-# MAGIC When using the Jobs UI to orchestrate a workload with multiple tasks, you'll always begin by scheduling a single task.
-# MAGIC
-# MAGIC Here, we'll start by scheduling the notebook `1 - Batch Job`.
-# MAGIC
-# MAGIC Steps:
-# MAGIC 1. Navigate to the Jobs UI using the Databricks left side navigation bar.
-# MAGIC 1. Click the blue `Create Job` button
-# MAGIC 1. Configure the task:
-# MAGIC 1. Enter `Batch-Job` for the task name
-# MAGIC 1. Select the notebook `1 - Batch Job` using the notebook picker
-# MAGIC 1. Select an Existing All Purpose Cluster from the **Cluster** dropdown
-# MAGIC 1. Click **Create**
-# MAGIC
-# MAGIC **Note**: When selecting your all purpose cluster, you will get a warning about how this will be billed as all purpose compute. Production jobs should always be scheduled against new job clusters appropriately sized for the workload, as this is billed at a much lower rate.
-# MAGIC
-# MAGIC Click the blue **Run now** button in the top right to confirm that you have successfully configured this task. From the **Runs** tab, clicking on the start time field will pull up the notebook with results.
-# MAGIC
-# MAGIC ## Schedule a DLT Pipeline as a Task
-# MAGIC
-# MAGIC In this step, we'll add a DLT pipeline to execute after the success of the task we configured in the previous step.
-# MAGIC
-# MAGIC **NOTE**: This step assumes that the DLT pipeline describe in the lab for module 3 of this course was configured successfully. If this is not the case, instructions are included for configuring this DLT pipeline in the run output of the `Batch-Job` notebook executed above.
-# MAGIC
-# MAGIC Steps:
-# MAGIC 1. Navigate to the Jobs UI using the Databricks left side navigation bar
-# MAGIC 1. Select the job you defined above by clicking on the name (this should have the name `Batch-Job`)
-# MAGIC 1. At the top left of your screen, you'll see the **Runs** tab is currently selected; click the **Tasks** tab.
-# MAGIC 1. Click the large blue circle with a **+** at the center bottom of the screen to add a new task
-# MAGIC 1. Specify the **Task name** as `DLT-Pipeline`
-# MAGIC 1. From **Type**, select `Pipeline`
-# MAGIC 1. Click the **Pipeline** field and select the DLT pipeline you configured previously
-# MAGIC 1. Note that the **Depends on** field defaults to your previously defined task
-# MAGIC 1. Click the blue **Create task** button
-# MAGIC
-# MAGIC You should now see a screen with 2 boxes and a downward arrow between them. Your `Batch-Job` task will be at the top, leading into your `DLT-Pipeline` task. This visualization represents the dependencies between these tasks.
-# MAGIC
-# MAGIC Before clicking **Run now**, click the job name in the top left and provide something unique and descriptive, like `-MTJ-lab`
-# MAGIC
-# MAGIC **NOTE**: You may need to wait a few minutes as infrastructure for your DLT pipeline is deployed. Feel free to skip clicking **Run now** until the next task is configured if you don't want to wait.
-# MAGIC
-# MAGIC ## Schedule an Additional Notebook Task
-# MAGIC
-# MAGIC An additional notebook has been provided which queries some of the DLT metrics and the gold table defined in the DLT pipeline. We'll add this as a final task in our job.
-# MAGIC
-# MAGIC Steps:
-# MAGIC 1. Navigate to the **Tasks** tab of the job you've been configuring
-# MAGIC 1. Click the blue **+** button to add another task
-# MAGIC 1. Specify the **Task name** as `Query-Results`
-# MAGIC 1. Leave the **Type** set to `Notebook`
-# MAGIC 1. Select the notebook `3 - Query Results Job` using the notebook picker
-# MAGIC 1. Note that the **Depends on** field defaults to your previously defined task
-# MAGIC 1. Select an Existing All Purpose Cluster from the **Cluster** dropdown
-# MAGIC 1. Click the blue **Create task** button
-# MAGIC
-# MAGIC Click the blue **Run now** button in the top right of the screen to run this job.
-# MAGIC
-# MAGIC From the **Runs** tab, you will be able to click on the start time for this run under the **Active runs** section and visually track task progress.
-# MAGIC
-# MAGIC Once all your tasks have succeeded, review the contents of each task to confirm expected behavior.
-
-# COMMAND ----------
-
-# MAGIC %md-sandbox
-# MAGIC © 2022 Databricks, Inc. All rights reserved.
-# MAGIC Apache, Apache Spark, Spark and the Spark logo are trademarks of the Apache Software Foundation.
-# MAGIC
-# MAGIC Privacy Policy | Terms of Use | Support
diff --git a/Data-Engineering-With-Databricks/Solutions/04 - Managing Data Access and Production Pipelines/4.1.2 - LAB - Jobs/1 - Batch Job.py b/Data-Engineering-With-Databricks/Solutions/04 - Managing Data Access and Production Pipelines/4.1.2 - LAB - Jobs/1 - Batch Job.py
deleted file mode 100644
index c8a6033..0000000
--- a/Data-Engineering-With-Databricks/Solutions/04 - Managing Data Access and Production Pipelines/4.1.2 - LAB - Jobs/1 - Batch Job.py
+++ /dev/null
@@ -1,35 +0,0 @@
-# Databricks notebook source
-# MAGIC %run ../../Includes/dlt-setup
-
-# COMMAND ----------
-
-File.newData()
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC ## Create and Configure a Pipeline
-# MAGIC
-# MAGIC **NOTE**: This lab is configured to work with the DLT pipeline completed as part of the DLT lab in the previous module. If you have not successfully completed this lab, follow the instructions below to configure a pipeline using specified notebook.
-# MAGIC
-# MAGIC Instructions for configuring DLT pipeline:
-# MAGIC 1. Click the **Jobs** button on the sidebar, then select the **Delta Live Tables** tab.
-# MAGIC 1. Click **Create Pipeline**.
-# MAGIC 1. Fill in a **Pipeline Name** of your choosing.
-# MAGIC 1. For **Notebook Libraries**, use the navigator to locate and select the notebook `4.1.2 - DLT Job`.
-# MAGIC 1. Run the cell below to generate values for **source**, **Target** and **Storage Location**. (All of these will include your current username).
-# MAGIC * Click `Add configuration`; enter the word `source` in the **Key** field and the output printed next to `source` below in the value field.
-# MAGIC * Enter the database name printed next to `Target` below in the **Target** field.
-# MAGIC * Enter the location printed next to `Storage Location` below in the **Storage Location** field.
-# MAGIC 1. Set **Pipeline Mode** to **Triggered**.
-# MAGIC 1. Disable autoscaling.
-# MAGIC 1. Set the number of wokers to 1.
-# MAGIC 1. Click **Create**.
-
-# COMMAND ----------
-
-storage_location = userhome + "/output"
-print(f"source : {dataLandingLocation.split(':')[1]}")
-print(f"Target: {database}")
-print(f"Storage Location: {storage_location.split(':')[1]}")
-
diff --git a/Data-Engineering-With-Databricks/Solutions/04 - Managing Data Access and Production Pipelines/4.1.2 - LAB - Jobs/3 - Query Results Job.py b/Data-Engineering-With-Databricks/Solutions/04 - Managing Data Access and Production Pipelines/4.1.2 - LAB - Jobs/3 - Query Results Job.py
deleted file mode 100644
index a2d7e55..0000000
--- a/Data-Engineering-With-Databricks/Solutions/04 - Managing Data Access and Production Pipelines/4.1.2 - LAB - Jobs/3 - Query Results Job.py
+++ /dev/null
@@ -1,62 +0,0 @@
-# Databricks notebook source
-# MAGIC %run ../../Includes/dlt-setup
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC # Exploring the Results of a DLT Pipeline
-# MAGIC
-# MAGIC This Notebook explores the execution results of a DLT pipeline. Before proceeding, you will need one piece of information specific to your pipeline instance: the location in DBFS where results are stored. Because we did not specify a value for **Storage Location** when creating the pipeline, DLT automatically created a folder for us. Obtain this information as follows.
-# MAGIC
-# MAGIC Click **Settings** on the **Pipeline Details** page. This provides a JSON representation of the pipeline configuration. Copy the value specified for **storage** and substitute for `` throughout the rest of this Notebook.
-# MAGIC
-# MAGIC
Generally, and particularly in production systems, you will specify **Storage Location** in your pipeline configurations to have full control of where pipeline results are stored.
-
-# COMMAND ----------
-
-storage_location = userhome + "/output"
-
-# COMMAND ----------
-
-dbutils.fs.ls(storage_location)
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC The `system` directory captures events associated with the pipeline.
-
-# COMMAND ----------
-
-dbutils.fs.ls(f"{storage_location}/system/events")
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC These event logs are stored as a Delta table. Let's query the table.
-
-# COMMAND ----------
-
-display(spark.sql(f"SELECT * FROM delta.`{storage_location}/system/events`"))
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC Let's view the contents of the *tables* directory.
-
-# COMMAND ----------
-
-dbutils.fs.ls(f"{storage_location}/tables")
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC Let's query the gold table.
-
-# COMMAND ----------
-
-display(spark.sql(f"SELECT * FROM {database}.daily_patient_avg"))
-
-# COMMAND ----------
-
-database
-
diff --git a/Data-Engineering-With-Databricks/Solutions/04 - Managing Data Access and Production Pipelines/4.3.2 - LAB - Configuring Privileges for Production Data and Derived Tables.py b/Data-Engineering-With-Databricks/Solutions/04 - Managing Data Access and Production Pipelines/4.3.2 - LAB - Configuring Privileges for Production Data and Derived Tables.py
deleted file mode 100644
index 79093dc..0000000
--- a/Data-Engineering-With-Databricks/Solutions/04 - Managing Data Access and Production Pipelines/4.3.2 - LAB - Configuring Privileges for Production Data and Derived Tables.py
+++ /dev/null
@@ -1,203 +0,0 @@
-# Databricks notebook source
-# MAGIC %md-sandbox
-# MAGIC
-# MAGIC
-# MAGIC

-# MAGIC
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC # Configuring Privileges for Production Data and Derived Tables
-# MAGIC
-# MAGIC The instructions as detailed below are provided for pairs of users to explore how Table ACLs on Databricks work. It leverages Databricks SQL and the Data Explorer to accomplish these tasks, and assumes that neither user has admin privileges for the workspace. An admin will need to have previously granted `CREATE` and `USAGE` privileges on a catalog for users to be able to create databases in Databricksd SQL
-# MAGIC
-# MAGIC By the end of this lesson, you should be able to:
-# MAGIC * Use Data Explorer to navigate relational entities
-# MAGIC * Configure permissions for tables and views with Data Explorer
-# MAGIC * Configure minimal permissions to allow for table discovery and querying
-# MAGIC * Change ownership for databases, tables, and views created in DBSQL
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC ## Exchange User Names with your Partner
-# MAGIC If you are not in a workspace where you usernames correspond with your email address, make sure your partner has your username. They will need this when assigning privileges and searching for your database at later steps.
-# MAGIC
-# MAGIC The following query will print your username.
-
-# COMMAND ----------
-
-# MAGIC %sql
-# MAGIC SELECT current_user()
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC ## Generate Setup Statements
-# MAGIC
-# MAGIC The following cell uses Python to extract username of the present user and format this into several statements used to create databases, tables, and views.
-# MAGIC
-# MAGIC Both students should execute the following cell. Successful execution will print out a series of formatted SQL queries, which can be copied into the DBSQL query editor and executed.
-
-# COMMAND ----------
-
-def generate_query(course, mode="reset"):
- import re
- import random
-
- username = spark.sql("SELECT current_user()").first()[0]
- userhome = f"dbfs:/user/{username}/{course}"
- database = f"""dbacademy_{re.sub("[^a-zA-Z0-9]", "_", username)}_{course}"""
-
- if mode == "reset":
- spark.sql(f"DROP DATABASE IF EXISTS {database} CASCADE")
- dbutils.fs.rm(userhome, True)
-
- print(f"""
-CREATE DATABASE IF NOT EXISTS {database}
-LOCATION '{userhome}';
-
-USE {database};
-
-CREATE TABLE beans
-(name STRING, color STRING, grams FLOAT, delicious BOOLEAN);
-
-INSERT INTO beans
-VALUES ('black', 'black', {random.uniform(0, 5000):.2f}, {random.choice(["true", "false"])}),
-('lentils', 'brown', {random.uniform(0, 5000):.2f}, {random.choice(["true", "false"])}),
-('jelly', 'rainbow', {random.uniform(0, 5000):.2f}, {random.choice(["true", "false"])}),
-('pinto', 'brown', {random.uniform(0, 5000):.2f}, {random.choice(["true", "false"])}),
-('green', 'green', {random.uniform(0, 5000):.2f}, {random.choice(["true", "false"])}),
-('beanbag chair', 'white', {random.uniform(0, 5000):.2f}, {random.choice(["true", "false"])}),
-('lentils', 'green', {random.uniform(0, 5000):.2f}, {random.choice(["true", "false"])}),
-('kidney', 'red', {random.uniform(0, 5000):.2f}, {random.choice(["true", "false"])}),
-('castor', 'brown', {random.uniform(0, 5000):.2f}, {random.choice(["true", "false"])});
-
-CREATE VIEW tasty_beans
-AS SELECT * FROM beans WHERE delicious = true;
- """)
-generate_query("acls_lab")
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC Steps:
-# MAGIC * Run the cell above
-# MAGIC * Copy the entire output to your clipboard
-# MAGIC * Navigate to the Databricks SQL workspace
-# MAGIC * Make sure that a DBSQL endpoint is running
-# MAGIC * Use the left sidebar to select the **SQL Editor**
-# MAGIC * Paste the query above and click the blue **Run** in the top right
-# MAGIC
-# MAGIC **NOTE**: You will need to be connected to a DBSQL endpoint to execute these queries successfully. If you cannot connect to a DBSQL endpoint, you will need to contact your administrator to give you access.
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC ## Find Your Database
-# MAGIC In the Data Explorer, find the database you created earlier (this should follow the pattern `dbacademy__acls_lab`).
-# MAGIC
-# MAGIC Clicking on the database name should display a list of the contained tables and views on the left hand side. On the right, you'll see some details about the database, including the **Owner** and **Location**.
-# MAGIC
-# MAGIC Click the **Permissions** tab to review who presently has permissions (depending on your workspace configuration, some permissions may have been inherited from settings on the catalog).
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC ## Change Database Permissions
-# MAGIC
-# MAGIC Step:
-# MAGIC 1. Make sure you have the **Permissions** tab selected for the database
-# MAGIC 1. Click the blue **Grant** button
-# MAGIC 1. Select the **USAGE**, **SELECT**, and **READ_METADATA** options
-# MAGIC 1. Enter the username of your partner in the field at the top.
-# MAGIC 1. Click **OK**
-# MAGIC
-# MAGIC Confirm with your partner that you can each see each others' databases and tables.
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC ## Run a Query to Confirm
-# MAGIC
-# MAGIC By granting `USAGE`, `SELECT`, and `READ_METADATA` on your database, your partner should now be able to freely query the tables and views in this database, but will not be able to create new tables OR modify your data.
-# MAGIC
-# MAGIC In the SQL Editor, each user should run a series of queries to confirm this behavior in the database they were just added to.
-# MAGIC
-# MAGIC **Make sure you specify your partner's database while running the queries below.**
-# MAGIC
-# MAGIC Queries to execute:
-# MAGIC * `SELECT * FROM .beans`
-# MAGIC * `SELECT * FROM .tasty_beans`
-# MAGIC * `SELECT * FROM .beans MINUS SELECT * FROM .tasty_beans`
-# MAGIC * ```
-# MAGIC UPDATE .beans
-# MAGIC SET color = 'pink'
-# MAGIC WHERE name = 'black'
-# MAGIC ```
-# MAGIC
-# MAGIC **NOTE**: These first 3 queries should succeed, but the last should fail.
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC ## Execute a Query to Generate the Union of Your Beans
-# MAGIC
-# MAGIC Modify the query below to specify the `beans` tables in each of your databases.
-# MAGIC
-# MAGIC ```
-# MAGIC SELECT * FROM .beans
-# MAGIC UNION ALL TABLE .beans
-# MAGIC ```
-# MAGIC
-# MAGIC **NOTE**: Because random values were inserted for the `grams` and `delicious` columns, you should see 2 distinct rows for each `name`, `color` pair.
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC ## Register a Derivative View to Your Database
-# MAGIC
-# MAGIC Modify the query below to register the results of the previous query to your database.
-# MAGIC
-# MAGIC ```
-# MAGIC CREATE VIEW .our_beans AS
-# MAGIC SELECT * FROM .beans
-# MAGIC UNION ALL TABLE .beans
-# MAGIC ```
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC ## Query Your Partner's View
-# MAGIC
-# MAGIC Once your partner has successfully completed the previous step, run the following query against each of your tables; you should get the same results:
-# MAGIC
-# MAGIC ```
-# MAGIC SELECT name, color, delicious, sum(grams)
-# MAGIC FROM our_beans
-# MAGIC GROUP BY name, color, delicious
-# MAGIC ```
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC ## Add Modify Permissions
-# MAGIC
-# MAGIC Now try to drop each other's `beans` tables. At the moment, this shouldn't work.
-# MAGIC
-# MAGIC Using the Data Explorer, add the `MODIFY` permission for your `beans` table for your partner.
-# MAGIC
-# MAGIC Again, attempt to drop your partner's `beans` table. This time, it should succeed.
-# MAGIC
-# MAGIC Try to re-execute queries against any of the views of tables you'd previously queried in this lab.
-# MAGIC
-# MAGIC **NOTE**: If steps were completed successfully, none of your previous queries should work, as the data referenced by your views has been permanently deleted. This demonstrates the risks associated with providing `MODIFY` privileges to users on data that will be used in production applications and dashboards.
-
-# COMMAND ----------
-
-# MAGIC %md-sandbox
-# MAGIC © 2022 Databricks, Inc. All rights reserved.
-# MAGIC Apache, Apache Spark, Spark and the Spark logo are trademarks of the Apache Software Foundation.
-# MAGIC
-# MAGIC Privacy Policy | Terms of Use | Support
diff --git a/Data-Engineering-With-Databricks/Solutions/04 - Managing Data Access and Production Pipelines/4.4.1 - Last Mile ETL with DBSQL.py b/Data-Engineering-With-Databricks/Solutions/04 - Managing Data Access and Production Pipelines/4.4.1 - Last Mile ETL with DBSQL.py
deleted file mode 100644
index 453f786..0000000
--- a/Data-Engineering-With-Databricks/Solutions/04 - Managing Data Access and Production Pipelines/4.4.1 - Last Mile ETL with DBSQL.py
+++ /dev/null
@@ -1,271 +0,0 @@
-# Databricks notebook source
-# MAGIC %md-sandbox
-# MAGIC
-# MAGIC
-# MAGIC

-# MAGIC
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC # Last Mile ETL with Databricks SQL
-# MAGIC
-# MAGIC Before we continue, let's do a recap of some of the things we've learned so far:
-# MAGIC 1. The Databricks workspace contains a suite of tools to simplify the data engineering development lifecycle
-# MAGIC 1. Databricks notebooks allow users to mix SQL with other programming languages to define ETL workloads
-# MAGIC 1. Delta Lake provides ACID compliant transactions and makes incremental data processing easy in the Lakehouse
-# MAGIC 1. Delta Live Tables extends the SQL syntax to support many design patterns in the Lakehouse, and simplifies infrastructure deployment
-# MAGIC 1. Multi-task jobs allows for full task orchestration, adding dependencies while scheduling a mix of notebooks and DLT pipelines
-# MAGIC 1. Databricks SQL allows users to edit and execute SQL queries, build visualizations, and define dashboards
-# MAGIC 1. Data Explorer simplifies managing Table ACLs, making Lakehouse data available to SQL analysts (soon to be expanded greatly by Unity Catalog)
-# MAGIC
-# MAGIC In this section, we'll focus on exploring more DBSQL functionality to support production workloads.
-# MAGIC
-# MAGIC We'll start by focusing on leveraging Databricks SQL to configure queries that support last mile ETL for analytics. Note that while we'll be using the Databricks SQL UI for this demo, SQL Endpoints [integrate with a number of other tools to allow external query execution](https://docs.databricks.com/integrations/partners.html, as well as having [full API support for executing arbitrary queries programmatically](https://docs.databricks.com/sql/api/index.html).
-# MAGIC
-# MAGIC From these query results, we'll generate a series of visualizations, which we'll combine into a dashboard.
-# MAGIC
-# MAGIC Finally, we'll walk through scheduling updates for queries and dashboards, and demonstrate setting alerts to help monitor the state of production datasets over time.
-# MAGIC
-# MAGIC ## Learning Objectives
-# MAGIC By the end of this lesson, you will feel confident:
-# MAGIC * Using Databricks SQL as a tool to support production ETL tasks backing analytic workloads
-# MAGIC * Configuring SQL queries and visualizations with the Databricks SQL Editor
-# MAGIC * Creating dashboards in Databricks SQL
-# MAGIC * Scheduling updates for queries and dashboards
-# MAGIC * Setting alerts for SQL queries
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC ## Run Setup Script
-# MAGIC The following cells runs a notebook that defines a class we'll use to generate SQL queries.
-
-# COMMAND ----------
-
-# MAGIC %run ../Includes/query_generator
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC Executing the following cell will reset the database set variables for later query formatting. You can remove the `mode="reset"` argument if you wish to print out the queries without resetting the target database.
-
-# COMMAND ----------
-
-Gen = QueryGenerator(course="4_4", mode="reset")
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC ## Create a Demo Database
-# MAGIC Execute the following cell and copy the results into the Databricks SQL Editor.
-# MAGIC
-# MAGIC These queries:
-# MAGIC * Create a new database
-# MAGIC * Declare two tables (we'll use these for loading data)
-# MAGIC * Declare two functions (we'll use these for generating data)
-# MAGIC
-# MAGIC Once copied, execute the query using the **Run** button.
-
-# COMMAND ----------
-
-Gen.config()
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC **NOTE**: The queries above are only designed to be run once after resetting the demo completely to reconfigure the environment. Users will need to have `CREATE` and `USAGE` permissions on the catalog to execute them.
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC ## Create a Query to Load Data
-# MAGIC Execute the cell below to print out a formatted SQL query for loading data in the `user_ping` table created in the previous step.
-# MAGIC
-# MAGIC Save this query with the name **Load Ping Data**.
-# MAGIC
-# MAGIC Run this query to load a batch of data.
-
-# COMMAND ----------
-
-Gen.load()
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC Executing the query should load some data and return a preview of the data in the table.
-# MAGIC
-# MAGIC **NOTE**: Random numbers are being used to define and load data, so each user will have slightly different values present.
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC ## Set a Query Refresh Schedule
-# MAGIC
-# MAGIC Steps:
-# MAGIC * Locate the **Refresh Schedule** field at the bottom right of the SQL query editor box; click the blue **Never**
-# MAGIC * Use the drop down to change to Refresh every **1 minute**
-# MAGIC * For **Ends**, click the **On** radio button
-# MAGIC * Select tomorrow's date
-# MAGIC * Click **OK**
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC ## Create a Query to Track Total Records
-# MAGIC
-# MAGIC Execute the cell below to print out a formatted SQL query to track total records in the `user_ping` table.
-# MAGIC
-# MAGIC Save this query with the name **User Counts**.
-# MAGIC
-# MAGIC Run the query to calculate the current results.
-
-# COMMAND ----------
-
-Gen.user_counts()
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC ## Create a Bar Graph Visualization
-# MAGIC
-# MAGIC Steps:
-# MAGIC * Click the **Add Visualization** button
-# MAGIC * Click on the name (should default to something like `Visualization 1`) and change the name to **Total User Records**
-# MAGIC * Set `user_id` for the **X Column**
-# MAGIC * Set `total_records` for the **Y Columns**
-# MAGIC * Click **Save**
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC ## Create a New Dashboard
-# MAGIC
-# MAGIC Steps:
-# MAGIC * Click the button with three vertical dots at the bottom of the screen and select **Add to Dashboard**.
-# MAGIC * Click the **Create new dashboard** option
-# MAGIC * Name your dashboard **User Ping Summary ``**
-# MAGIC * Click **Save** to create the new dashboard
-# MAGIC * Your newly created dashboard should now be selected as the target; click **OK** to add your visualization
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC ## Create a Query to Calculate the Recent Average Ping
-# MAGIC
-# MAGIC Execute the cell below to print out a formatted SQL query to calculate the average ping observed per user over a 3 minute window.
-# MAGIC
-# MAGIC Save this query with the name **Avg Ping**.
-# MAGIC
-# MAGIC Run the query to calculate the current results.
-
-# COMMAND ----------
-
-Gen.avg_ping()
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC ## Add a Line Plot Visualization to your Dashboard
-# MAGIC
-# MAGIC Steps:
-# MAGIC * Click the **Add Visualization** button
-# MAGIC * Click on the name (should default to something like `Visualization 1`) and change the name to **Avg User Ping**
-# MAGIC * Select `Line` for the **Visualization Type**
-# MAGIC * Set `end_time` for the **X Column**
-# MAGIC * Set `avg_ping` for the **Y Columns**
-# MAGIC * Set `user_id` for the **Group by**
-# MAGIC * Click **Save**
-# MAGIC * Click the button with three vertical dots at the bottom of the screen and select **Add to Dashboard**.
-# MAGIC * Select the dashboard you created earlier
-# MAGIC * Click **OK** to add your visualization
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC ## Create a Query to Report Summary Statistics
-# MAGIC
-# MAGIC Execute the cell below to print out a formatted SQL query that summarizes all records for a user.
-# MAGIC
-# MAGIC Save this query with the name **Ping Summary**.
-# MAGIC
-# MAGIC Run the query to calculate the current results.
-
-# COMMAND ----------
-
-Gen.summary()
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC ## Add the Summary Table to your Dashboard
-# MAGIC
-# MAGIC Steps:
-# MAGIC * Click the button with three vertical dots at the bottom of the screen and select **Add to Dashboard**.
-# MAGIC * Select the dashboard you created earlier
-# MAGIC * Click **OK** to add your visualization
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC ## Review and Refresh your Dashboard
-# MAGIC
-# MAGIC Steps:
-# MAGIC * Use the left side bar to navigate to **Dashboards**
-# MAGIC * Find the dashboard you've added your queries to
-# MAGIC * Click the blue **Refresh** button to update your dashboard
-# MAGIC * Click the **Schedule** button to review dashboard scheduling options
-# MAGIC * Note that scheduling a dashboard to update will execute all queries associated with that dashboard
-# MAGIC * Do not schedule the dashboard at this time
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC ## Share your Dashboard
-# MAGIC
-# MAGIC Steps:
-# MAGIC * Click the blue **Share** button
-# MAGIC * Select **All Users** from the top field
-# MAGIC * Choose **Can Run** from the right field
-# MAGIC * Click **Add**
-# MAGIC * Change the **Credentials** to **Run as viewer**
-# MAGIC
-# MAGIC **NOTE**: At present, no other users should have any permissions to run your dashboard, as they have not been granted permissions to the underlying databases and tables using Table ACLs. If you wish other users to be able to trigger updates to your dashboard, you will either need to grant them permissions to **Run as owner** or add permissions for the tables referenced in your queries.
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC ## Set Up an Alert
-# MAGIC
-# MAGIC Steps:
-# MAGIC * Use the left side bar to navigate to **Alerts**
-# MAGIC * Click **Create Alert** in the top right
-# MAGIC * Click the field at the top left of the screen to give the alert a name **` Count Check`**
-# MAGIC * Select your **User Counts** query
-# MAGIC * For the **Trigger when** options, configure:
-# MAGIC * **Value column**: `total_records`
-# MAGIC * **Condition**: `>`
-# MAGIC * **Threshold**: 15
-# MAGIC * For **Refresh**, select **Never**
-# MAGIC * Click **Create Alert**
-# MAGIC * On the next screen, click the blue **Refresh** in the top right to evaluate the alert
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC ## Review Alert Destination Options
-# MAGIC
-# MAGIC
-# MAGIC
-# MAGIC Steps:
-# MAGIC * From the preview of your alert, click the blue **Add** button to the right of **Destinations** on the right side of the screen
-# MAGIC * At the bottom of the window that pops up, locate the and click the blue text in the message **Create new destinations in Alert Destinations**
-# MAGIC * Review the available alerting options
-
-# COMMAND ----------
-
-# MAGIC %md-sandbox
-# MAGIC © 2022 Databricks, Inc. All rights reserved.
-# MAGIC Apache, Apache Spark, Spark and the Spark logo are trademarks of the Apache Software Foundation.
-# MAGIC
-# MAGIC Privacy Policy | Terms of Use | Support
diff --git a/Data-Engineering-With-Databricks/Solutions/04 - Managing Data Access and Production Pipelines/4.4.2 - LAB - End-to-End ELT in the Lakehouse/0 - Instructions and Configuration.py b/Data-Engineering-With-Databricks/Solutions/04 - Managing Data Access and Production Pipelines/4.4.2 - LAB - End-to-End ELT in the Lakehouse/0 - Instructions and Configuration.py
deleted file mode 100644
index fada765..0000000
--- a/Data-Engineering-With-Databricks/Solutions/04 - Managing Data Access and Production Pipelines/4.4.2 - LAB - End-to-End ELT in the Lakehouse/0 - Instructions and Configuration.py
+++ /dev/null
@@ -1,280 +0,0 @@
-# Databricks notebook source
-# MAGIC %md-sandbox
-# MAGIC
-# MAGIC
-# MAGIC

-# MAGIC
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC
-# MAGIC ## End-to-End ETL in the Lakehouse
-# MAGIC
-# MAGIC In this notebook, you will pull together concepts learned throughout the course to complete an example data pipeline.
-# MAGIC
-# MAGIC The following is a non-exhaustive list of skills and tasks necessary to successfully complete this exercise:
-# MAGIC * Using Databricks notebooks to write queries in SQL and Python
-# MAGIC * Creating and modifying databases, tables, and views
-# MAGIC * Using Auto Loader and Spark Structured Streaming for incremental data processing in a multi-hop architecture
-# MAGIC * Using Delta Live Table SQL syntax
-# MAGIC * Configuring a Delta Live Table pipeline for continuous processing
-# MAGIC * Using Databricks Jobs to orchestrate tasks from notebooks stored in Repos
-# MAGIC * Setting chronological scheduling for Databricks Jobs
-# MAGIC * Defining queries in Databricks SQL
-# MAGIC * Creating visualizations in Databricks SQL
-# MAGIC * Defining Databricks SQL dashboards to review metrics and results
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC ## Run Setup
-# MAGIC Run the following cell to reset all the databases and diretories associated with this lab.
-
-# COMMAND ----------
-
-# MAGIC %run "../../Includes/dlt-setup" $mode="reset"
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC ## Land Initial Data
-# MAGIC Seed the landing zone with some data before proceeding.
-
-# COMMAND ----------
-
-File.newData()
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC ## Create and Configure a DLT Pipeline
-# MAGIC **NOTE**: The main difference between the instructions here and in previous labs with DLT is that in this instance, we will be setting up our pipeline for **Continuous** execution in **Production** mode.
-# MAGIC
-# MAGIC Steps:
-# MAGIC 1. Click the **Jobs** button on the sidebar, then select the **Delta Live Tables** tab.
-# MAGIC 1. Click **Create Pipeline**.
-# MAGIC 1. Fill in a **Pipeline Name** of your choosing.
-# MAGIC 1. For **Notebook Libraries**, use the navigator to locate and select the notebook `1 - DLT Task`.
-# MAGIC 1. Run the cell below to generate values for **source**, **Target** and **Storage Location**. (All of these will include your current username).
-# MAGIC * Click `Add configuration`; enter the word `source` in the **Key** field and the output printed next to `source` below in the value field.
-# MAGIC * Enter the database name printed next to `Target` below in the **Target** field.
-# MAGIC * Enter the location printed next to `Storage Location` below in the **Storage Location** field.
-# MAGIC 1. Set **Pipeline Mode** to **Continuous**.
-# MAGIC 1. Disable autoscaling.
-# MAGIC 1. Set the number of wokers to 1.
-# MAGIC 1. Click **Create**.
-# MAGIC
-# MAGIC In the UI that populates, change from **Development** to **Production** mode. This should begin the deployment of infrastructure.
-
-# COMMAND ----------
-
-storage_location = userhome + "/output"
-print(f"source : {dataLandingLocation.split(':')[1]}")
-print(f"Target: {database}")
-print(f"Storage Location: {storage_location.split(':')[1]}")
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC ## Schedule a Notebook Job
-# MAGIC
-# MAGIC Our DLT pipeline is setup to process data as soon as it arrives. We'll schedule a notebook to land a new batch of data each minute so we can see this functionality in action.
-# MAGIC
-# MAGIC Steps:
-# MAGIC 1. Navigate to the Jobs UI using the Databricks left side navigation bar.
-# MAGIC 1. Click the blue `Create Job` button
-# MAGIC 1. Configure the task:
-# MAGIC 1. Enter `Land-Data` for the task name
-# MAGIC 1. Select the notebook `2 - Land New Data` using the notebook picker
-# MAGIC 1. Select an Existing All Purpose Cluster from the **Cluster** dropdown
-# MAGIC 1. Click **Create**
-# MAGIC
-# MAGIC **Note**: When selecting your all purpose cluster, you will get a warning about how this will be billed as all purpose compute. Production jobs should always be scheduled against new job clusters appropriately sized for the workload, as this is billed at a much lower rate.
-# MAGIC
-# MAGIC ## Set a Chronological Schedule for your Job
-# MAGIC Steps:
-# MAGIC * On the right hand side of the Jobs UI, locate **Schedule** section.
-# MAGIC * Click on the **Edit schedule** button to explore scheduling options.
-# MAGIC * Change **Schedule type** field from **Manual** to **Scheduled** will bring up a chron scheduling UI.
-# MAGIC * Set the schedule to update every **2 minutes**
-# MAGIC * Click **Save**
-# MAGIC
-# MAGIC **NOTE**: If you wish, you can click **Run now** to trigger the first run, or wait until the top of the next minute to make sure your scheduling has worked successfully.
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC ## Register DLT Event Metrics for Querying with DBSQL
-# MAGIC
-# MAGIC The following cell prints out SQL statements to register the DLT event logs to your target database for querying in DBSQL.
-# MAGIC
-# MAGIC Execute the output code with the DBSQL Query Editor to register these tables and views. Explore each and make note of the logged event metrics.
-
-# COMMAND ----------
-
-print(f"""
-CREATE TABLE IF NOT EXISTS {database}.dlt_events
-LOCATION '{storage_location}/system/events';
-
-CREATE VIEW IF NOT EXISTS {database}.dlt_success AS
-SELECT * FROM {database}.dlt_events
-WHERE details:flow_progress:metrics IS NOT NULL;
-
-CREATE VIEW IF NOT EXISTS {database}.dlt_metrics AS
-SELECT timestamp, origin.flow_name, details
-FROM {database}.dlt_success
-ORDER BY timestamp DESC;
-""")
-
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC ## Define a Query on the Gold Table
-# MAGIC
-# MAGIC The `daily_patient_avg` table is automatically updated each time a new batch of data is processed through the DLT pipeline. Each time a query is executed against this table, DBSQL will confirm if there is a newer version and then materialize results from the newest available version.
-# MAGIC
-# MAGIC Run the following cell to print out a query with your database name. Save this as a DBSQL query.
-
-# COMMAND ----------
-
-print(f"SELECT * FROM {database}.daily_patient_avg")
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC ## Add a Line Plot Visualization
-# MAGIC
-# MAGIC To track trends in patient averages over time, create a line plot and add it to a new dashboard.
-# MAGIC
-# MAGIC Create a line plot with the following settings:
-# MAGIC * **X Column**: `date`
-# MAGIC * **Y Columns**: `avg_heartrate`
-# MAGIC * **Group By**: `name`
-# MAGIC
-# MAGIC Add this visualization to a dashboard.
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC ## Track Data Processing Progress
-# MAGIC
-# MAGIC The code below extracts the `flow_name`, `timestamp`, and `num_output_rows` from the DLT event logs.
-# MAGIC
-# MAGIC Save this query in DBSQL, then define a bar plot visualization that shows:
-# MAGIC * **X Column**: `timestamp`
-# MAGIC * **Y Columns**: `num_output_rows`
-# MAGIC * **Group By**: `flow_name`
-# MAGIC
-# MAGIC Add your visualization to your dashboard.
-
-# COMMAND ----------
-
-print(f"""
-SELECT flow_name, timestamp, int(details:flow_progress:metrics:num_output_rows) num_output_rows
-FROM {database}.dlt_metrics
-ORDER BY timestamp DESC
-""")
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC ## Refresh your Dashboard and Track Results
-# MAGIC
-# MAGIC The `Land-Data` notebook scheduled with Jobs above has 12 batches of data, each representing a month of recordings for our small sampling of patients. As configured per our instructions, it should take just over 20 minutes for all of these batches of data to be triggered and processed (we scheduled the Databricks Job to run every 2 minutes, and batches of data will process through our pipeline very quickly after initial ingestion).
-# MAGIC
-# MAGIC Refresh your dashboard and review your visualizations to see how many batches of data have been processed. (If you followed the instructions as outlined here, there should be 12 distinct flow updates tracked by your DLT metrics.) If all source data has not yet been processed, you can go back to the Databricks Jobs UI and manually trigger additional batches.
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC ## Execute a Query to Repair Broken Data
-# MAGIC
-# MAGIC Review the code that defined the `recordings_enriched` table to identify the filter applied for the quality check.
-# MAGIC
-# MAGIC In the cell below, write a query that returns all the records from the `recordings_bronze` table that were refused by this quality check.
-
-# COMMAND ----------
-
-# ANSWER
-display(spark.sql(f"SELECT * FROM {database}.recordings_bronze WHERE heartrate <= 0"))
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC For the purposes of our demo, let's assume that thorough manual review of our data and systems has demonstrated that occassionally otherwise valid heartrate recordings are returned as negative values.
-# MAGIC
-# MAGIC Run the following query to examine these same rows with the negative sign removed.
-
-# COMMAND ----------
-
-display(spark.sql(f"SELECT abs(heartrate), * FROM {database}.recordings_bronze WHERE heartrate <= 0"))
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC To complete our dataset, we wish to insert these fixed records into the silver `recordings_enriched` table.
-# MAGIC
-# MAGIC Use the cell below to update the query used in the DLT pipeline to execute this repair.
-# MAGIC
-# MAGIC **NOTE**: Make sure you update the code to only process those records that were previously rejected due to the quality check.
-
-# COMMAND ----------
-
-# ANSWER
-spark.sql(f"""
- MERGE INTO {database}.recordings_enriched t
- USING (SELECT
- CAST(a.device_id AS INTEGER) device_id,
- CAST(a.mrn AS LONG) mrn,
- abs(CAST(a.heartrate AS DOUBLE)) heartrate,
- CAST(from_unixtime(a.time, 'yyyy-MM-dd HH:mm:ss') AS TIMESTAMP) time,
- b.name
- FROM {database}.recordings_bronze a
- INNER JOIN {database}.pii b
- ON a.mrn = b.mrn
- WHERE heartrate <= 0) v
- ON t.mrn=v.mrn AND t.time=v.time
- WHEN NOT MATCHED THEN INSERT *
-""")
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC Use the cell below to manually or programmatically confirm that this update has been successful.
-# MAGIC
-# MAGIC (The total number of records in the `recordings_bronze` should now be equal to the total records in `recordings_enriched`).
-
-# COMMAND ----------
-
-# ANSWER
-assert spark.table(f"{database}.recordings_bronze").count() == spark.table(f"{database}.recordings_enriched").count()
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC ## Consider Production Data Permissions
-# MAGIC
-# MAGIC Note that while our manual repair of the data was successful, as the owner of these datasets, by default we have permissions to modify or delete these data from any location we're executing code.
-# MAGIC
-# MAGIC To put this another way: our current permissions would allow us to change or drop our production tables permanently if an errant SQL query is accidentally executed with the current user's permissions (or if other users are granted similar permissions).
-# MAGIC
-# MAGIC While for the purposes of this lab, we desired to have full permissions on our data, as we move code from development to production, it is safer to leverage [service principals](https://docs.databricks.com/administration-guide/users-groups/service-principals.html) when scheduling Jobs and DLT Pipelines to avoid accidental data modifications.
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC ## Shut Down Production Infrastructure
-# MAGIC
-# MAGIC Note that Databricks Jobs, DLT Pipelines, and scheduled DBSQL queries and dashboards are all designed to provide sustained execution of production code. In this end-to-end demo, you were instructed to configure a Job and Pipeline for continuous data processing. To prevent these workloads from continuing to execute, you should **Pause** your Databricks Job and **Stop** your DLT pipeline. Deleting these assets will also ensure that production infrastructure is terminated.
-# MAGIC
-# MAGIC **NOTE**: All instructions for DBSQL asset scheduling in previous lessons instructed users to set the update schedule to end tomorrow. You may choose to go back and also cancel these updates to prevent DBSQL endpoints from staying on until that time.
-
-# COMMAND ----------
-
-# MAGIC %md-sandbox
-# MAGIC © 2022 Databricks, Inc. All rights reserved.
-# MAGIC Apache, Apache Spark, Spark and the Spark logo are trademarks of the Apache Software Foundation.
-# MAGIC
-# MAGIC Privacy Policy | Terms of Use | Support
diff --git a/Data-Engineering-With-Databricks/Solutions/04 - Managing Data Access and Production Pipelines/4.4.2 - LAB - End-to-End ELT in the Lakehouse/2 - Land New Data.py b/Data-Engineering-With-Databricks/Solutions/04 - Managing Data Access and Production Pipelines/4.4.2 - LAB - End-to-End ELT in the Lakehouse/2 - Land New Data.py
deleted file mode 100644
index 466f683..0000000
--- a/Data-Engineering-With-Databricks/Solutions/04 - Managing Data Access and Production Pipelines/4.4.2 - LAB - End-to-End ELT in the Lakehouse/2 - Land New Data.py
+++ /dev/null
@@ -1,8 +0,0 @@
-# Databricks notebook source
-# MAGIC %run ../../Includes/dlt-setup
-
-# COMMAND ----------
-
-File.newData()
-
-
diff --git a/Data-Engineering-With-Databricks/Solutions/Includes/classic-setup.py b/Data-Engineering-With-Databricks/Solutions/Includes/classic-setup.py
deleted file mode 100644
index 7f69e33..0000000
--- a/Data-Engineering-With-Databricks/Solutions/Includes/classic-setup.py
+++ /dev/null
@@ -1,71 +0,0 @@
-# Databricks notebook source
-for stream in spark.streams.active:
- stream.stop()
-
-# COMMAND ----------
-
-import pyspark.sql.functions as F
-import re
-
-course_name = "dewd"
-
-username = spark.sql("SELECT current_user()").first()[0]
-clean_username = re.sub("[^a-zA-Z0-9]", "_", username)
-database = f"dbacademy_{clean_username}_{course_name}"
-
-userhome = f"dbfs:/user/{username}/dbacademy/{course_name}"
-
-print(f"""
-username: {username}
-userhome: {userhome}
-database: {database}""")
-
-dbutils.widgets.text("mode", "setup")
-mode = dbutils.widgets.get("mode")
-
-if mode == "reset" or mode == "clean":
- spark.sql(f"DROP DATABASE IF EXISTS {database} CASCADE")
- dbutils.fs.rm(userhome, True)
-
-if mode != "clean":
- spark.sql(f"CREATE DATABASE IF NOT EXISTS {database}")
- spark.sql(f"USE {database}")
-
-# COMMAND ----------
-
-# MAGIC %run ./mount-datasets
-
-# COMMAND ----------
-
-outputPath = userhome + "/streaming-concepts"
-checkpointPath = outputPath + "/checkpoint"
-
-# original dataset
-dataSource = "/mnt/training/definitive-guide/data/activity-json/streaming"
-
-# data landing location; files will be copies from original dataset one at a time for incremental ingestion use case
-dataLandingLocation = outputPath + "/landing-zone"
-
-outputTable = "bronze_table"
-
-spark.conf.set('c.outputTable', outputTable)
-
-# COMMAND ----------
-
-class FileArrival:
- def __init__(self, dataSource, landingZone):
- self.sourceFiles = dbutils.fs.ls(dataSource)
- dbutils.fs.mkdirs(landingZone)
- self.landingZone = landingZone
- self.fileID = 0
-
- def newData(self, numFiles=1):
- for i in range(numFiles):
- dbutils.fs.cp(self.sourceFiles[self.fileID].path, self.landingZone)
- self.fileID+=1
-
-# COMMAND ----------
-
-File = FileArrival(dataSource, dataLandingLocation)
-File.newData()
-
diff --git a/Data-Engineering-With-Databricks/Solutions/Includes/dlt-setup.py b/Data-Engineering-With-Databricks/Solutions/Includes/dlt-setup.py
deleted file mode 100644
index 2c76be0..0000000
--- a/Data-Engineering-With-Databricks/Solutions/Includes/dlt-setup.py
+++ /dev/null
@@ -1,80 +0,0 @@
-# Databricks notebook source
-for stream in spark.streams.active:
- stream.stop()
-
-# COMMAND ----------
-
-import pyspark.sql.functions as F
-import re
-
-dbutils.widgets.text("course", "dewd")
-course_name = dbutils.widgets.get("course")
-
-username = spark.sql("SELECT current_user()").first()[0]
-clean_username = re.sub("[^a-zA-Z0-9]", "_", username)
-database = f"dbacademy_{clean_username}_{course_name}"
-
-userhome = f"dbfs:/user/{username}/dbacademy/{course_name}"
-
-print(f"""
-username: {username}
-userhome: {userhome}
-database: {database}""")
-
-dbutils.widgets.text("mode", "setup")
-mode = dbutils.widgets.get("mode")
-
-if mode == "reset" or mode == "clean":
- spark.sql(f"DROP DATABASE IF EXISTS {database} CASCADE")
- dbutils.fs.rm(userhome, True)
-
-# COMMAND ----------
-
-# MAGIC %run ./mount-datasets
-
-# COMMAND ----------
-
-sqlContext.setConf("spark.sql.shuffle.partitions", spark.sparkContext.defaultParallelism)
-
-# COMMAND ----------
-
-dataSource = "/mnt/training/healthcare"
-
-dataLandingLocation = userhome + "/source"
-bronzePath = userhome + "/bronze"
-recordingsParsedPath = userhome + "/silver/recordings_parsed"
-recordingsEnrichedPath = userhome + "/silver/recordings_enriched"
-dailyAvgPath = userhome + "/gold/dailyAvg"
-
-checkpointPath = userhome + "/checkpoints"
-bronzeCheckpoint = userhome + "/checkpoints/bronze"
-recordingsParsedCheckpoint = userhome + "/checkpoints/recordings_parsed"
-recordingsEnrichedCheckpoint = userhome + "/checkpoints/recordings_enriched"
-dailyAvgCheckpoint = userhome + "/checkpoints/dailyAvgPath"
-
-# COMMAND ----------
-
-class FileArrival:
- def __init__(self):
- self.source = dataSource + "/tracker/streaming/"
- self.userdir = dataLandingLocation + "/"
- try:
- self.curr_mo = 1 + int(max([x[1].split(".")[0] for x in dbutils.fs.ls(self.userdir)]))
- except:
- self.curr_mo = 1
-
- def newData(self, continuous=False):
- if self.curr_mo > 12:
- print("Data source exhausted\n")
- elif continuous == True:
- while self.curr_mo <= 12:
- curr_file = f"{self.curr_mo:02}.json"
- dbutils.fs.cp(self.source + curr_file, self.userdir + curr_file)
- self.curr_mo += 1
- else:
- curr_file = f"{str(self.curr_mo).zfill(2)}.json"
- dbutils.fs.cp(self.source + curr_file, self.userdir + curr_file)
- self.curr_mo += 1
-
-File = FileArrival()
-
diff --git a/Data-Engineering-With-Databricks/Solutions/Includes/multi-hop-setup.py b/Data-Engineering-With-Databricks/Solutions/Includes/multi-hop-setup.py
deleted file mode 100644
index fdc0645..0000000
--- a/Data-Engineering-With-Databricks/Solutions/Includes/multi-hop-setup.py
+++ /dev/null
@@ -1,80 +0,0 @@
-# Databricks notebook source
-for stream in spark.streams.active:
- stream.stop()
-
-# COMMAND ----------
-
-import pyspark.sql.functions as F
-import re
-
-course_name = "dewd"
-
-username = spark.sql("SELECT current_user()").first()[0]
-clean_username = re.sub("[^a-zA-Z0-9]", "_", username)
-database = f"dbacademy_{clean_username}_{course_name}"
-
-userhome = f"dbfs:/user/{username}/dbacademy/{course_name}"
-
-print(f"""
-username: {username}
-userhome: {userhome}
-database: {database}""")
-
-dbutils.widgets.text("mode", "setup")
-mode = dbutils.widgets.get("mode")
-
-if mode == "reset" or mode == "clean":
- spark.sql(f"DROP DATABASE IF EXISTS {database} CASCADE")
- dbutils.fs.rm(userhome, True)
-
-if mode != "clean":
- spark.sql(f"CREATE DATABASE IF NOT EXISTS {database}")
- spark.sql(f"USE {database}")
-
-# COMMAND ----------
-
-# MAGIC %run ./mount-datasets
-
-# COMMAND ----------
-
-sqlContext.setConf("spark.sql.shuffle.partitions", spark.sparkContext.defaultParallelism)
-
-# COMMAND ----------
-
-dataSource = "/mnt/training/healthcare"
-
-dataLandingLocation = userhome + "/source"
-bronzePath = userhome + "/bronze"
-recordingsParsedPath = userhome + "/silver/recordings_parsed"
-recordingsEnrichedPath = userhome + "/silver/recordings_enriched"
-dailyAvgPath = userhome + "/gold/dailyAvg"
-
-checkpointPath = userhome + "/checkpoints"
-bronzeCheckpoint = userhome + "/checkpoints/bronze"
-recordingsParsedCheckpoint = userhome + "/checkpoints/recordings_parsed"
-recordingsEnrichedCheckpoint = userhome + "/checkpoints/recordings_enriched"
-dailyAvgCheckpoint = userhome + "/checkpoints/dailyAvgPath"
-
-# COMMAND ----------
-
-class FileArrival:
- def __init__(self):
- self.source = dataSource + "/tracker/streaming/"
- self.userdir = dataLandingLocation + "/"
- self.curr_mo = 1
-
- def newData(self, continuous=False):
- if self.curr_mo > 12:
- print("Data source exhausted\n")
- elif continuous == True:
- while self.curr_mo <= 12:
- curr_file = f"{self.curr_mo:02}.json"
- dbutils.fs.cp(self.source + curr_file, self.userdir + curr_file)
- self.curr_mo += 1
- else:
- curr_file = f"{str(self.curr_mo).zfill(2)}.json"
- dbutils.fs.cp(self.source + curr_file, self.userdir + curr_file)
- self.curr_mo += 1
-
-File = FileArrival()
-
diff --git a/Data-Engineering-With-Databricks/Solutions/Includes/query_generator.py b/Data-Engineering-With-Databricks/Solutions/Includes/query_generator.py
deleted file mode 100644
index 14b40b3..0000000
--- a/Data-Engineering-With-Databricks/Solutions/Includes/query_generator.py
+++ /dev/null
@@ -1,88 +0,0 @@
-# Databricks notebook source
-class QueryGenerator:
- def __init__(self, course, mode="normal"):
- import re
- import random
- self.username = spark.sql("SELECT current_user()").first()[0]
- self.userhome = f"dbfs:/user/{self.username}/{course}"
- self.database = f"""dbacademy_{re.sub("[^a-zA-Z0-9]", "_", self.username)}_{course}"""
-
- if mode == "reset":
- spark.sql(f"DROP DATABASE IF EXISTS {self.database} CASCADE")
- dbutils.fs.rm(self.userhome, True)
-
- def config(self):
- print(f"""
-CREATE DATABASE {self.database}
-LOCATION '{self.userhome}';
-
-USE {self.database};
-
-CREATE TABLE user_ping
-(user_id STRING, ping INTEGER, time TIMESTAMP);
-
-CREATE TABLE user_ids (user_id STRING);
-
-INSERT INTO user_ids VALUES
-("potato_luver"),
-("beanbag_lyfe"),
-("default_username"),
-("the_king"),
-("n00b"),
-("frodo"),
-("data_the_kid"),
-("el_matador"),
-("the_wiz");
-
-CREATE FUNCTION get_ping()
- RETURNS INT
- RETURN int(rand() * 250);
-
-CREATE FUNCTION is_active()
- RETURNS BOOLEAN
- RETURN CASE
- WHEN rand() > .25 THEN true
- ELSE false
- END;
- """)
-
- def load(self):
- print(f"""
-INSERT INTO {self.database}.user_ping
-SELECT *,
- {self.database}.get_ping() ping,
- current_timestamp() time
-FROM {self.database}.user_ids
-WHERE {self.database}.is_active()=true;
-
-SELECT * FROM {self.database}.user_ping;
- """)
-
- def user_counts(self):
- print(f"""
-SELECT user_id, count(*) total_records
-FROM {self.database}.user_ping
-GROUP BY user_id
-ORDER BY
- total_records DESC,
- user_id ASC;;
- """)
-
- def avg_ping(self):
- print(f"""
-SELECT user_id, window.end end_time, mean(ping) avg_ping
-FROM {self.database}.user_ping
-GROUP BY user_id, window(time, '3 minutes')
-ORDER BY
- end_time DESC,
- user_id ASC;
- """)
-
- def summary(self):
- print(f"""
-SELECT user_id, min(time) first_seen, max(time) last_seen, count(*) total_records, avg(ping) total_avg_ping
-FROM {self.database}.user_ping
-GROUP BY user_id
-ORDER BY user_id ASC
- """)
-
diff --git a/Data-Engineering-With-Databricks/Solutions/Includes/setup-cleaned.py b/Data-Engineering-With-Databricks/Solutions/Includes/setup-cleaned.py
deleted file mode 100644
index 09cb1e2..0000000
--- a/Data-Engineering-With-Databricks/Solutions/Includes/setup-cleaned.py
+++ /dev/null
@@ -1,56 +0,0 @@
-# Databricks notebook source
-# MAGIC %run ./setup-updates
-
-# COMMAND ----------
-
-def merge_deduped_users():
- spark.sql(f"""
- CREATE OR REPLACE TEMP VIEW deduped_users AS
- SELECT user_id, user_first_touch_timestamp, max(email) email, max(updated) updated
- FROM users_update
- GROUP BY user_id, user_first_touch_timestamp
- """)
-
- spark.sql(f"""
- MERGE INTO users a
- USING deduped_users b
- ON a.user_id = b.user_id
- WHEN MATCHED AND a.email IS NULL AND b.email IS NOT NULL THEN
- UPDATE SET email = b.email, updated = b.updated
- WHEN NOT MATCHED THEN INSERT *
- """)
-
-
-# COMMAND ----------
-
-def merge_events_update():
- spark.sql(f"""
- MERGE INTO events a
- USING events_update b
- ON a.user_id = b.user_id AND a.event_timestamp = b.event_timestamp
- WHEN NOT MATCHED AND b.traffic_source = 'email' THEN
- INSERT *
- """)
-
-
-# COMMAND ----------
-
-def merge_sales_update():
- spark.sql(f"""
- COPY INTO sales
- FROM "{Paths.source}/sales/sales-30m.parquet"
- FILEFORMAT = PARQUET
- """)
-
-
-# COMMAND ----------
-
-merge_deduped_users()
-merge_events_update()
-merge_sales_update()
-
-# COMMAND ----------
-
-# MAGIC %sql
-# MAGIC CREATE OR REPLACE TABLE item_lookup AS
-# MAGIC SELECT * FROM parquet.`${c.source}/products/products.parquet`
diff --git a/Data-Engineering-With-Databricks/Solutions/Includes/setup-external.py b/Data-Engineering-With-Databricks/Solutions/Includes/setup-external.py
deleted file mode 100644
index 6acbf65..0000000
--- a/Data-Engineering-With-Databricks/Solutions/Includes/setup-external.py
+++ /dev/null
@@ -1,21 +0,0 @@
-# Databricks notebook source
-# MAGIC %run ./setup
-
-# COMMAND ----------
-
-dbutils.fs.rm(f"{Paths.source}/sales/sales.csv", True)
-dbutils.fs.cp(f"{Paths.source_uri}/sales/sales.csv", f"{Paths.source}/sales/sales.csv", True)
-
-(spark
- .read
- .format("parquet")
- .load(f"{Paths.source}/users/users.parquet")
- .repartition(1)
- .write
- .format("org.apache.spark.sql.jdbc")
- .option("url", f"jdbc:sqlite:/{username}_ecommerce.db")
- .option("dbtable", "users")
- .mode("overwrite")
- .save())
-
-
diff --git a/Data-Engineering-With-Databricks/Solutions/Includes/setup-load.py b/Data-Engineering-With-Databricks/Solutions/Includes/setup-load.py
deleted file mode 100644
index 8ed10a1..0000000
--- a/Data-Engineering-With-Databricks/Solutions/Includes/setup-load.py
+++ /dev/null
@@ -1,26 +0,0 @@
-# Databricks notebook source
-# MAGIC %run ./setup
-
-# COMMAND ----------
-
-def load_historical():
- spark.sql(f"""
- CREATE OR REPLACE TABLE events AS
- SELECT * FROM parquet.`{Paths.source}/events/events.parquet`
- """)
-
- spark.sql(f"""
- CREATE OR REPLACE TABLE users AS
- SELECT *, current_timestamp() updated FROM parquet.`{Paths.source}/users/users.parquet`
- """)
-
- spark.sql(f"""
- CREATE OR REPLACE TABLE sales AS
- SELECT * FROM parquet.`{Paths.source}/sales/sales.parquet`
- """)
-
-
-# COMMAND ----------
-
-load_historical()
-
diff --git a/Data-Engineering-With-Databricks/Solutions/Includes/setup-meta.py b/Data-Engineering-With-Databricks/Solutions/Includes/setup-meta.py
deleted file mode 100644
index 05a5aa0..0000000
--- a/Data-Engineering-With-Databricks/Solutions/Includes/setup-meta.py
+++ /dev/null
@@ -1,11 +0,0 @@
-# Databricks notebook source
-# MAGIC %run ./sql-setup $course="meta" $mode="cleanup"
-
-# COMMAND ----------
-
-URI = "wasbs://courseware@dbacademy.blob.core.windows.net/databases_tables_and_views_on_databricks/v02"
-
-# COMMAND ----------
-
-dbutils.fs.cp(URI, f"{userhome}/datasets", True)
-
diff --git a/Data-Engineering-With-Databricks/Solutions/Includes/setup-transactions.py b/Data-Engineering-With-Databricks/Solutions/Includes/setup-transactions.py
deleted file mode 100644
index 93da748..0000000
--- a/Data-Engineering-With-Databricks/Solutions/Includes/setup-transactions.py
+++ /dev/null
@@ -1,43 +0,0 @@
-# Databricks notebook source
-# MAGIC %run ./setup-cleaned
-
-# COMMAND ----------
-
-def create_transactions():
- spark.sql(f"""
- CREATE OR REPLACE TABLE transactions AS
- SELECT * FROM (
- SELECT
- user_id,
- order_id,
- transaction_timestamp,
- total_item_quantity,
- purchase_revenue_in_usd,
- unique_items,
- a.items_exploded.item_id item_id,
- a.items_exploded.quantity quantity
- FROM
- ( SELECT *, explode(items) items_exploded FROM sales ) a
- INNER JOIN users b
- ON a.email = b.email
- ) PIVOT (
- sum(quantity) FOR item_id in (
- 'P_FOAM_K',
- 'M_STAN_Q',
- 'P_FOAM_S',
- 'M_PREM_Q',
- 'M_STAN_F',
- 'M_STAN_T',
- 'M_PREM_K',
- 'M_PREM_F',
- 'M_STAN_K',
- 'M_PREM_T',
- 'P_DOWN_S',
- 'P_DOWN_K'
- )
- )
- """)
-
-create_transactions()
-
-
diff --git a/Data-Engineering-With-Databricks/Solutions/Includes/setup-updates.py b/Data-Engineering-With-Databricks/Solutions/Includes/setup-updates.py
deleted file mode 100644
index 9db7eaa..0000000
--- a/Data-Engineering-With-Databricks/Solutions/Includes/setup-updates.py
+++ /dev/null
@@ -1,62 +0,0 @@
-# Databricks notebook source
-# MAGIC %run ./setup-load
-
-# COMMAND ----------
-
-def load_events_raw():
- spark.sql(f"""
- CREATE TABLE IF NOT EXISTS events_json
- (key BINARY, offset INT, partition BIGINT, timestamp BIGINT, topic STRING, value BINARY)
- USING JSON OPTIONS (path = "{Paths.source}/events/events-kafka.json");
- """)
-
- spark.sql(f"""
- CREATE OR REPLACE TABLE events_raw
- (key BINARY, offset BIGINT, partition BIGINT, timestamp BIGINT, topic STRING, value BINARY);
- """)
-
- spark.sql(f"""
- INSERT INTO events_raw
- SELECT * FROM events_json
- """)
-
-
-# COMMAND ----------
-
-# lesson: nested data & advanced transformations
-# Last Lab & Writing to Delta
-def create_events_update():
- spark.sql(f"""
- CREATE OR REPLACE TEMP VIEW events_raw_json AS
- SELECT from_json(cast(value as STRING), ("device STRING, ecommerce STRUCT< purchase_revenue_in_usd: DOUBLE, total_item_quantity: BIGINT, unique_items: BIGINT>, event_name STRING, event_previous_timestamp BIGINT, event_timestamp BIGINT, geo STRUCT< city: STRING, state: STRING>, items ARRAY< STRUCT< coupon: STRING, item_id: STRING, item_name: STRING, item_revenue_in_usd: DOUBLE, price_in_usd: DOUBLE, quantity: BIGINT>>, traffic_source STRING, user_first_touch_timestamp BIGINT, user_id STRING")) json
- FROM events_raw
- """)
-
- spark.sql(f"""
- CREATE OR REPLACE TEMP VIEW events_update AS
- WITH deduped_events_raw AS (
- SELECT max(json) json FROM events_raw_json
- GROUP BY json.user_id, json.event_timestamp
- )
- SELECT json.* FROM deduped_events_raw
- """)
-
-
-# COMMAND ----------
-
-# lesson: Writing delta
-def create_users_update():
- spark.sql(f"""
- CREATE OR REPLACE TEMP VIEW users_update AS
- SELECT *, current_timestamp() updated
- FROM parquet.`{Paths.source}/users/users-30m.parquet`
- """)
-
-
-# COMMAND ----------
-
-load_events_raw()
-create_events_update()
-create_users_update()
-
-
diff --git a/Data-Engineering-With-Databricks/Solutions/Includes/setup.py b/Data-Engineering-With-Databricks/Solutions/Includes/setup.py
deleted file mode 100644
index 32ef8d1..0000000
--- a/Data-Engineering-With-Databricks/Solutions/Includes/setup.py
+++ /dev/null
@@ -1,98 +0,0 @@
-# Databricks notebook source
-import pyspark.sql.functions as F
-import re
-
-class BuildEnvironmentVariables:
-
- def __init__(self, username):
- self.course_name = "eltsql"
- self.source_uri = "wasbs://courseware@dbacademy.blob.core.windows.net/elt-with-spark-sql/v01"
-
- self.username = username
- self.working_dir = f"dbfs:/user/{self.username}/dbacademy/{self.course_name}"
- self.userhome = self.working_dir # TEMPORARY BACKWARDS COMPATABILITY
-
- clean_username = re.sub("[^a-zA-Z0-9]", "_", self.username)
- self.database_name = f"{clean_username}_dbacademy_{self.course_name}"
- self.database_location = f"{self.working_dir}/db"
-
- self.source = f"{self.working_dir}/source_datasets"
- self.base_path=f"{self.working_dir}/tables"
-
- self.sales_table_path = f"{self.base_path}/sales"
- self.users_table_path = f"{self.base_path}/users"
- self.events_raw_table_path = f"{self.base_path}/events_raw"
- self.events_clean_table_path = f"{self.base_path}/events_clean"
- self.transactions_table_path = f"{self.base_path}/transactions"
- self.clickpaths_table_path = f"{self.base_path}/clickpaths"
-
- def set_hive_variables(self):
- for (k, v) in self.__dict__.items():
- spark.sql(f"SET c.{k} = {v}")
-
- def __repr__(self):
- return self.__dict__.__repr__().replace(", ", ",\n")
-
-
-# COMMAND ----------
-
-username = spark.sql("SELECT current_user()").first()[0]
-dbacademy_env = BuildEnvironmentVariables(username)
-Paths = dbacademy_env # Temporary backwards compatability
-
-# Hack for backwards compatability
-username = dbacademy_env.username
-database = dbacademy_env.database_name
-userhome = dbacademy_env.working_dir
-
-print(f"username: {username}")
-print(f"database: {database}")
-print(f"userhome: {userhome}")
-
-# print(f"dbacademy_env: Databricks Academy configuration object")
-# print(f"dbacademy_env.username: {dbacademy_env.username}")
-# print(f"dbacademy_env.database_name: {dbacademy_env.database_name}")
-# print(f"dbacademy_env.working_dir: {dbacademy_env.working_dir}")
-
-
-# COMMAND ----------
-
-def path_exists(path):
- try:
- return len(dbutils.fs.ls(path)) >= 0
- except Exception:
- return False
-
-dbutils.widgets.text("mode", "default")
-mode = dbutils.widgets.get("mode")
-
-if mode == "reset" or mode == "cleanup":
- # Drop the database and remove all data for both reset and cleanup
- print(f"Removing the database {database}")
- spark.sql(f"DROP DATABASE IF EXISTS {database} CASCADE")
-
- print(f"Removing previously generated datasets from\n{dbacademy_env.working_dir}")
- dbutils.fs.rm(dbacademy_env.working_dir, True)
-
-if mode != "cleanup":
- # We are not cleaning up so we want to setup the environment
-
- # RESET is in case we want to force a reset
- # not-existing for net-new install
- if mode == "reset" or not path_exists(dbacademy_env.source):
- print(f"\nInstalling datasets to\n{dbacademy_env.source}")
- print(f"""\nNOTE: The datasets that we are installing are located in Washington, USA - depending on the
- region that your workspace is in, this operation can take as little as 3 minutes and
- upwards to 6 minutes, but this is a one-time operation.""")
-
- dbutils.fs.cp(dbacademy_env.source_uri, dbacademy_env.source, True)
- print(f"""\nThe install of the datasets completed successfully.""")
-
- # Create the database and use it.
- spark.sql(f"CREATE DATABASE IF NOT EXISTS {dbacademy_env.database_name} LOCATION '{dbacademy_env.database_location}'")
- spark.sql(f"USE {dbacademy_env.database_name}")
-
- # Once the database is created, init the hive variables
- dbacademy_env.set_hive_variables()
-
-
diff --git a/Data-Engineering-With-Databricks/Solutions/Includes/sql-setup.py b/Data-Engineering-With-Databricks/Solutions/Includes/sql-setup.py
deleted file mode 100644
index 6d1d83a..0000000
--- a/Data-Engineering-With-Databricks/Solutions/Includes/sql-setup.py
+++ /dev/null
@@ -1,32 +0,0 @@
-# Databricks notebook source
-import pyspark.sql.functions as F
-import re
-
-dbutils.widgets.text("course", "dewd")
-course = dbutils.widgets.get("course")
-username = spark.sql("SELECT current_user()").collect()[0][0]
-userhome = f"dbfs:/user/{username}/{course}"
-database = f"""{course}_{re.sub("[^a-zA-Z0-9]", "_", username)}_db"""
-print(f"""
-username: {username}
-userhome: {userhome}
-database: {database}""")
-
-spark.sql(f"SET c.username = {username}")
-spark.sql(f"SET c.userhome = {userhome}")
-spark.sql(f"SET c.database = {database}")
-
-dbutils.widgets.text("mode", "setup")
-mode = dbutils.widgets.get("mode")
-
-if mode == "reset":
- spark.sql(f"DROP DATABASE IF EXISTS {database} CASCADE")
- dbutils.fs.rm(userhome, True)
- spark.sql(f"CREATE DATABASE IF NOT EXISTS {database} LOCATION '{userhome}'")
- spark.sql(f"USE {database}")
-
-if mode == "cleanup":
- spark.sql(f"DROP DATABASE IF EXISTS {database} CASCADE")
- dbutils.fs.rm(userhome, True)
-
-
diff --git a/Data-Engineering-with-Databricks/01 - Databricks Workspace and Services/DE 1.1 - Create and Manage Interactive Clusters.py b/Data-Engineering-with-Databricks/01 - Databricks Workspace and Services/DE 1.1 - Create and Manage Interactive Clusters.py
new file mode 100644
index 0000000..3a2dce1
--- /dev/null
+++ b/Data-Engineering-with-Databricks/01 - Databricks Workspace and Services/DE 1.1 - Create and Manage Interactive Clusters.py
@@ -0,0 +1,100 @@
+# Databricks notebook source
+# MAGIC %md-sandbox
+# MAGIC
+# MAGIC
+# MAGIC

+# MAGIC
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC # Create and Manage Interactive Clusters
+# MAGIC
+# MAGIC A Databricks cluster is a set of computation resources and configurations on which you run data engineering, data science, and data analytics workloads, such as production ETL pipelines, streaming analytics, ad-hoc analytics, and machine learning. You run these workloads as a set of commands in a notebook or as an automated job.
+# MAGIC
+# MAGIC Databricks makes a distinction between all-purpose clusters and job clusters.
+# MAGIC - You use all-purpose clusters to analyze data collaboratively using interactive notebooks.
+# MAGIC - You use job clusters to run fast and robust automated jobs.
+# MAGIC
+# MAGIC This demo will cover creating and managing all-purpose Databricks clusters using the Databricks Data Science & Engineering Workspace.
+# MAGIC
+# MAGIC ## Learning Objectives
+# MAGIC By the end of this lesson, you should be able to:
+# MAGIC * Use the Clusters UI to configure and deploy a cluster
+# MAGIC * Edit, terminate, restart, and delete clusters
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC ## Create Cluster
+# MAGIC
+# MAGIC Depending on the workspace in which you're currently working, you may or may not have cluster creation privileges.
+# MAGIC
+# MAGIC Instructions in this section assume that you **do** have cluster creation privileges, and that you need to deploy a new cluster to execute the lessons in this course.
+# MAGIC
+# MAGIC **NOTE**: Check with your instructor or a platform admin to confirm whether or not you should create a new cluster or connect to a cluster that has already been deployed. Cluster policies may impact your options for cluster configuration.
+# MAGIC
+# MAGIC Steps:
+# MAGIC 1. Use the left sidebar to navigate to the **Compute** page by clicking on the  icon
+# MAGIC 1. Click the blue **Create Cluster** button
+# MAGIC 1. For the **Cluster name**, use your name so that you can find it easily and the instructor can easily identify it if you have problems
+# MAGIC 1. Set the **Cluster mode** to **Single Node** (this mode is required to run this course)
+# MAGIC 1. Use the recommended **Databricks runtime version** for this course
+# MAGIC 1. Leave boxes checked for the default settings under the **Autopilot Options**
+# MAGIC 1. Click the blue **Create Cluster** button
+# MAGIC
+# MAGIC **NOTE:** Clusters can take several minutes to deploy. Once you have finished deploying a cluster, feel free to continue to explore the cluster creation UI.
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC ###
Single-Node Cluster Required for This Course
+# MAGIC **IMPORTANT:** This course requires you to run notebooks on a single-node cluster.
+# MAGIC
+# MAGIC Follow the instructions above to create a cluster that has **Cluster mode** set to **`Single Node`**.
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC ## Manage Clusters
+# MAGIC
+# MAGIC Once the cluster is created, go back to the **Compute** page to view the cluster.
+# MAGIC
+# MAGIC Select a cluster to review the current configuration.
+# MAGIC
+# MAGIC Click the **Edit** button. Note that most settings can be modified (if you have sufficient permissions). Changing most settings will require running clusters to be restarted.
+# MAGIC
+# MAGIC **NOTE**: We'll be using our cluster in the following lesson. Restarting, terminating, or deleting your cluster may put you behind as you wait for new resources to be deployed.
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC ## Restart, Terminate, and Delete
+# MAGIC
+# MAGIC Note that while **Restart**, **Terminate**, and **Delete** have different effects, they all start with a cluster termination event. (Clusters will also terminate automatically due to inactivity assuming this setting is used.)
+# MAGIC
+# MAGIC When a cluster terminates, all cloud resources currently in use are deleted. This means:
+# MAGIC * Associated VMs and operational memory will be purged
+# MAGIC * Attached volume storage will be deleted
+# MAGIC * Network connections between nodes will be removed
+# MAGIC
+# MAGIC In short, all resources previously associated with the compute environment will be completely removed. This means that **any results that need to be persisted should be saved to a permanent location**. Note that you will not lose your code, nor will you lose data files that you've saved out appropriately.
+# MAGIC
+# MAGIC The **Restart** button will allow us to manually restart our cluster. This can be useful if we need to completely clear out the cache on the cluster or wish to completely reset our compute environment.
+# MAGIC
+# MAGIC The **Terminate** button allows us to stop our cluster. We maintain our cluster configuration setting, and can use the **Restart** button to deploy a new set of cloud resources using the same configuration.
+# MAGIC
+# MAGIC The **Delete** button will stop our cluster and remove the cluster configuration.
+
+# COMMAND ----------
+
+# MAGIC %md-sandbox
+# MAGIC © 2022 Databricks, Inc. All rights reserved.
+# MAGIC Apache, Apache Spark, Spark and the Spark logo are trademarks of the Apache Software Foundation.
+# MAGIC
+# MAGIC Privacy Policy | Terms of Use | Support
diff --git a/Data-Engineering-with-Databricks/01 - Databricks Workspace and Services/DE 1.2 - Notebook Basics.py b/Data-Engineering-with-Databricks/01 - Databricks Workspace and Services/DE 1.2 - Notebook Basics.py
new file mode 100644
index 0000000..baf42d9
--- /dev/null
+++ b/Data-Engineering-with-Databricks/01 - Databricks Workspace and Services/DE 1.2 - Notebook Basics.py
@@ -0,0 +1,398 @@
+# Databricks notebook source
+# MAGIC %md-sandbox
+# MAGIC
+# MAGIC
+# MAGIC

+# MAGIC
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC # Notebook Basics
+# MAGIC
+# MAGIC Notebooks are the primary means of developing and executing code interactively on Databricks. This lesson provides a basic introduction to working with Databricks notebooks.
+# MAGIC
+# MAGIC If you've previously used Databricks notebooks but this is your first time executing a notebook in Databricks Repos, you'll notice that basic functionality is the same. In the next lesson, we'll review some of the functionality that Databricks Repos adds to notebooks.
+# MAGIC
+# MAGIC ## Learning Objectives
+# MAGIC By the end of this lesson, you should be able to:
+# MAGIC * Attach a notebook to a cluster
+# MAGIC * Execute a cell in a notebook
+# MAGIC * Set the language for a notebook
+# MAGIC * Describe and use magic commands
+# MAGIC * Create and run a SQL cell
+# MAGIC * Create and run a Python cell
+# MAGIC * Create a markdown cell
+# MAGIC * Export a Databricks notebook
+# MAGIC * Export a collection of Databricks notebooks
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC ## Attach to a Cluster
+# MAGIC
+# MAGIC In the previous lesson, you should have either deployed a cluster or identified a cluster that an admin has configured for you to use.
+# MAGIC
+# MAGIC Directly below the name of this notebook at the top of your screen, use the drop-down list to connect this notebook to your cluster.
+# MAGIC
+# MAGIC **NOTE**: Deploying a cluster can take several minutes. A green arrow will appear to the right of the cluster name once resources have been deployed. If your cluster has a solid gray circle to the left, you will need to follow instructions to start a cluster.
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC ## Notebooks Basics
+# MAGIC
+# MAGIC Notebooks provide cell-by-cell execution of code. Multiple languages can be mixed in a notebook. Users can add plots, images, and markdown text to enhance their code.
+# MAGIC
+# MAGIC Throughout this course, our notebooks are designed as learning instruments. Notebooks can be easily deployed as production code with Databricks, as well as providing a robust toolset for data exploration, reporting, and dashboarding.
+# MAGIC
+# MAGIC ### Running a Cell
+# MAGIC * Run the cell below using one of the following options:
+# MAGIC * **CTRL+ENTER** or **CTRL+RETURN**
+# MAGIC * **SHIFT+ENTER** or **SHIFT+RETURN** to run the cell and move to the next one
+# MAGIC * Using **Run Cell**, **Run All Above** or **Run All Below** as seen here
+
+# COMMAND ----------
+
+print("I'm running Python!")
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC **NOTE**: Cell-by-cell code execution means that cells can be executed multiple times or out of order. Unless explicitly instructed, you should always assume that the notebooks in this course are intended to be run one cell at a time from top to bottom. If you encounter an error, make sure you read the text before and after a cell to ensure that the error wasn't an intentional learning moment before you try to troubleshoot. Most errors can be resolved by either running earlier cells in a notebook that were missed or re-executing the entire notebook from the top.
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC ### Setting the Default Notebook Language
+# MAGIC
+# MAGIC The cell above executes a Python command, because our current default language for the notebook is set to Python.
+# MAGIC
+# MAGIC Databricks notebooks support Python, SQL, Scala, and R. A language can be selected when a notebook is created, but this can be changed at any time.
+# MAGIC
+# MAGIC The default language appears directly to the right of the notebook title at the top of the page. Throughout this course, we'll use a blend of SQL and Python notebooks.
+# MAGIC
+# MAGIC We'll change the default language for this notebook to SQL.
+# MAGIC
+# MAGIC Steps:
+# MAGIC * Click on the **Python** next to the notebook title at the top of the screen
+# MAGIC * In the UI that pops up, select **SQL** from the drop down list
+# MAGIC
+# MAGIC **NOTE**: In the cell just before this one, you should see a new line appear with %python
. We'll discuss this in a moment.
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC ### Create and Run a SQL Cell
+# MAGIC
+# MAGIC * Highlight this cell and press the **B** button on the keyboard to create a new cell below
+# MAGIC * Copy the following code into the cell below and then run the cell
+# MAGIC
+# MAGIC **`%sql`**
+# MAGIC **`SELECT "I'm running SQL!"`**
+# MAGIC
+# MAGIC **NOTE**: There are a number of different methods for adding, moving, and deleting cells including GUI options and keyboard shortcuts. Refer to the docs for details.
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC ## Magic Commands
+# MAGIC * Magic commands are specific to the Databricks notebooks
+# MAGIC * They are very similar to magic commands found in comparable notebook products
+# MAGIC * These are built-in commands that provide the same outcome regardless of the notebook's language
+# MAGIC * A single percent (%) symbol at the start of a cell identifies a magic command
+# MAGIC * You can only have one magic command per cell
+# MAGIC * A magic command must be the first thing in a cell
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC ### Language Magics
+# MAGIC Language magic commands allow for the execution of code in languages other than the notebook's default. In this course, we'll see the following language magics:
+# MAGIC * %python
+# MAGIC * %sql
+# MAGIC
+# MAGIC Adding the language magic for the currently set notebook type is not necessary.
+# MAGIC
+# MAGIC When we changed the notebook language from Python to SQL above, existing cells written in Python had the %python
command added.
+# MAGIC
+# MAGIC **NOTE**: Rather than changing the default language of a notebook constantly, you should stick with a primary language as the default and only use language magics as necessary to execute code in another language.
+
+# COMMAND ----------
+
+print("Hello Python!")
+
+# COMMAND ----------
+
+# MAGIC %sql
+# MAGIC
+# MAGIC select "Hello SQL!"
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC
+# MAGIC ### Markdown
+# MAGIC
+# MAGIC The magic command **%md** allows us to render Markdown in a cell:
+# MAGIC * Double click this cell to begin editing it
+# MAGIC * Then hit **`Esc`** to stop editing
+# MAGIC
+# MAGIC # Title One
+# MAGIC ## Title Two
+# MAGIC ### Title Three
+# MAGIC
+# MAGIC This is a test of the emergency broadcast system. This is only a test.
+# MAGIC
+# MAGIC This is text with a **bold** word in it.
+# MAGIC
+# MAGIC This is text with an *italicized* word in it.
+# MAGIC
+# MAGIC This is an ordered list
+# MAGIC 0. once
+# MAGIC 0. two
+# MAGIC 0. three
+# MAGIC
+# MAGIC This is an unordered list
+# MAGIC * apples
+# MAGIC * peaches
+# MAGIC * bananas
+# MAGIC
+# MAGIC Links/Embedded HTML: Markdown - Wikipedia
+# MAGIC
+# MAGIC Images:
+# MAGIC 
+# MAGIC
+# MAGIC And of course, tables:
+# MAGIC
+# MAGIC | name | value |
+# MAGIC |--------|-------|
+# MAGIC | Yi | 1 |
+# MAGIC | Ali | 2 |
+# MAGIC | Selina | 3 |
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC ### %run
+# MAGIC * You can run a notebook from another notebook by using the magic command **%run**
+# MAGIC * Notebooks to be run are specified with relative paths
+# MAGIC * The referenced notebook executes as if it were part of the current notebook, so temporary views and other local declarations will be available from the calling notebook
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC Uncommenting and executing the following cell will generate the following error:
+# MAGIC **`Error in SQL statement: AnalysisException: Table or view not found: demo_tmp_vw`**
+
+# COMMAND ----------
+
+# MAGIC %sql
+# MAGIC -- SELECT * FROM demo_tmp_vw
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC But we can declare it and a handful of other variables and functions buy running this cell:
+
+# COMMAND ----------
+
+# MAGIC %run ../Includes/Classroom-Setup-1.2
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC The **`../Includes/Classroom-Setup-1.2`** notebook we referenced includes logic to create and **`USE`** a database, as well as creating the temp view **`demo_temp_vw`**.
+# MAGIC
+# MAGIC We can see this temp view is now available in our current notebook session with the following query.
+
+# COMMAND ----------
+
+# MAGIC %sql
+# MAGIC SELECT * FROM demo_tmp_vw
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC We'll use this pattern of "setup" notebooks throughout the course to help configure the environment for lessons and labs.
+# MAGIC
+# MAGIC These "provided" variables, functions and other objects should be easily identifiable in that they are part of the **`DA`** object which is an instance of **`DBAcademyHelper`**.
+# MAGIC
+# MAGIC With that in mind, most lessons will use variables derived from your username to organize files and databases.
+# MAGIC
+# MAGIC This pattern allows us to avoid collision with other users in shared a workspace.
+# MAGIC
+# MAGIC The cell below uses Python to print some of those variables previously defined in this notebook's setup script:
+
+# COMMAND ----------
+
+print(f"DA: {DA}")
+print(f"DA.username: {DA.username}")
+print(f"DA.paths.working_dir: {DA.paths.working_dir}")
+print(f"DA.db_name: {DA.db_name}")
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC In addition to this, these same variables are "injected" into the SQL context so that we can use them in SQL statements.
+# MAGIC
+# MAGIC We will talk more about this later, but you can see a quick example in the following cell.
+# MAGIC
+# MAGIC
Note the subtle but important difference in the casing of the word **`da`** and **`DA`** in these two examples.
+
+# COMMAND ----------
+
+# MAGIC %sql
+# MAGIC SELECT '${da.username}' AS current_username,
+# MAGIC '${da.paths.working_dir}' AS working_directory,
+# MAGIC '${da.db_name}' as database_name
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC ## Databricks Utilities
+# MAGIC Databricks notebooks provide a number of utility commands for configuring and interacting with the environment: dbutils docs
+# MAGIC
+# MAGIC Throughout this course, we'll occasionally use **`dbutils.fs.ls()`** to list out directories of files from Python cells.
+
+# COMMAND ----------
+
+dbutils.fs.ls("/databricks-datasets")
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC ## display()
+# MAGIC
+# MAGIC When running SQL queries from cells, results will always be displayed in a rendered tabular format.
+# MAGIC
+# MAGIC When we have tabular data returned by a Python cell, we can call **`display`** to get the same type of preview.
+# MAGIC
+# MAGIC Here, we'll wrap the previous list command on our file system with **`display`**.
+
+# COMMAND ----------
+
+display(dbutils.fs.ls("/databricks-datasets"))
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC The **`display()`** command has the following capabilities and limitations:
+# MAGIC * Preview of results limited to 1000 records
+# MAGIC * Provides button to download results data as CSV
+# MAGIC * Allows rendering plots
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC ## Downloading Notebooks
+# MAGIC
+# MAGIC There are a number of options for downloading either individual notebooks or collections of notebooks.
+# MAGIC
+# MAGIC Here, you'll go through the process to download this notebook as well as a collection of all the notebooks in this course.
+# MAGIC
+# MAGIC ### Download a Notebook
+# MAGIC
+# MAGIC Steps:
+# MAGIC * Click the **File** option to the right of the cluster selection at the top of the notebook
+# MAGIC * From the menu that appears, hover over **Export** and then select **Source File**
+# MAGIC
+# MAGIC The notebook will download to your personal laptop. It will be named with the current notebook name and have the file extension for the default language. You can open this notebook with any file editor and see the raw contents of Databricks notebooks.
+# MAGIC
+# MAGIC These source files can be uploaded into any Databricks workspace.
+# MAGIC
+# MAGIC ### Download a Collection of Notebooks
+# MAGIC
+# MAGIC **NOTE**: The following instructions assume you have imported these materials using **Repos**.
+# MAGIC
+# MAGIC Steps:
+# MAGIC * Click the  **Repos** on the left sidebar
+# MAGIC * This should give you a preview of the parent directories for this notebook
+# MAGIC * On the left side of the directory preview around the middle of the screen, there should be a left arrow. Click this to move up in your file hierarchy.
+# MAGIC * You should see a directory called **Data Engineering with Databricks**. Click the the down arrow/chevron to bring up a menu
+# MAGIC * From the menu, hover over **Export** and select **DBC Archive**
+# MAGIC
+# MAGIC The DBC(Databricks Cloud) file that is downloaded contains a zipped collection of the directories and notebooks in this course. Users should not attempt to edit these DBC files locally, but they can be safely uploaded into any Databricks workspace to move or share notebook contents.
+# MAGIC
+# MAGIC **NOTE**: When downloading a collection of DBCs, result previews and plots will also be exported. When downloading source notebooks, only code will be saved.
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC ## Learning More
+# MAGIC
+# MAGIC We like to encourage you to explore the documentation to learn more about the various features of the Databricks platform and notebooks.
+# MAGIC * User Guide
+# MAGIC * Getting Started with Databricks
+# MAGIC * User Guide / Notebooks
+# MAGIC * Importing notebooks - Supported Formats
+# MAGIC * Repos
+# MAGIC * Administration Guide
+# MAGIC * Cluster Configuration
+# MAGIC * REST API
+# MAGIC * Release Notes
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC ## One more note!
+# MAGIC
+# MAGIC At the end of each lesson you will see the following command, **`DA.cleanup()`**.
+# MAGIC
+# MAGIC This method drops lesson-specific databases and working directories in an attempt to keep your workspace clean and maintain the immutability of each lesson.
+# MAGIC
+# MAGIC Run the following cell to delete the tables and files associated with this lesson.
+
+# COMMAND ----------
+
+DA.cleanup()
+
+# COMMAND ----------
+
+# MAGIC %md-sandbox
+# MAGIC © 2022 Databricks, Inc. All rights reserved.
+# MAGIC Apache, Apache Spark, Spark and the Spark logo are trademarks of the Apache Software Foundation.
+# MAGIC
+# MAGIC Privacy Policy | Terms of Use | Support
diff --git a/Data-Engineering-with-Databricks/01 - Databricks Workspace and Services/DE 1.3L - Getting Started with the Databricks Platform Lab.py b/Data-Engineering-with-Databricks/01 - Databricks Workspace and Services/DE 1.3L - Getting Started with the Databricks Platform Lab.py
new file mode 100644
index 0000000..5689ed6
--- /dev/null
+++ b/Data-Engineering-with-Databricks/01 - Databricks Workspace and Services/DE 1.3L - Getting Started with the Databricks Platform Lab.py
@@ -0,0 +1,222 @@
+# Databricks notebook source
+# MAGIC %md-sandbox
+# MAGIC
+# MAGIC
+# MAGIC

+# MAGIC
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC
+# MAGIC # Getting Started with the Databricks Platform
+# MAGIC
+# MAGIC This notebook provides a hands-on review of some of the basic functionality of the Databricks Data Science and Engineering Workspace.
+# MAGIC
+# MAGIC ## Learning Objectives
+# MAGIC By the end of this lab, you should be able to:
+# MAGIC - Rename a notebook and change the default language
+# MAGIC - Attach a cluster
+# MAGIC - Use the **`%run`** magic command
+# MAGIC - Run Python and SQL cells
+# MAGIC - Create a Markdown cell
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC
+# MAGIC # Renaming a Notebook
+# MAGIC
+# MAGIC Changing the name of a notebook is easy. Click on the name at the top of this page, then make changes to the name. To make it easier to navigate back to this notebook later in case you need to, append a short test string to the end of the existing name.
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC
+# MAGIC # Attaching a cluster
+# MAGIC
+# MAGIC Executing cells in a notebook requires computing resources, which is provided by clusters. The first time you execute a cell in a notebook, you will be prompted to attach to a cluster if one is not already attached.
+# MAGIC
+# MAGIC Attach a cluster to this notebook now by clicking the dropdown near the top-left corner of this page. Select the cluster you created previously. This will clear the execution state of the notebook and connect the notebook to the selected cluster.
+# MAGIC
+# MAGIC Note that the dropdown menu provides the option of starting or restarting the cluster as needed. You can also detach and re-attach to a cluster in a single movement. This is useful for clearing the execution state when needed.
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC
+# MAGIC # Using %run
+# MAGIC
+# MAGIC Complex projects of any type can benefit from the ability to break them down into simpler, reusable components.
+# MAGIC
+# MAGIC In the context of Databricks notebooks, this facility is provided through the **`%run`** magic command.
+# MAGIC
+# MAGIC When used this way, variables, functions and code blocks become part of the current programming context.
+# MAGIC
+# MAGIC Consider this example:
+# MAGIC
+# MAGIC **`Notebook_A`** has four commands:
+# MAGIC 1. **`name = "John"`**
+# MAGIC 2. **`print(f"Hello {name}")`**
+# MAGIC 3. **`%run ./Notebook_B`**
+# MAGIC 4. **`print(f"Welcome back {full_name}`**
+# MAGIC
+# MAGIC **`Notebook_B`** has only one commands:
+# MAGIC 1. **`full_name = f"{name} Doe"`**
+# MAGIC
+# MAGIC If we run **`Notebook_B`** it will fail to execute becaues the variable **`name`** is not defined in **`Notebook_B`**
+# MAGIC
+# MAGIC Likewise, one might think that **`Notebook_A`** would fail becase it uses the variable **`full_name`** which is likewise not defined in **`Notebook_A`**, but it doesn't!
+# MAGIC
+# MAGIC What actually happens is that the two notebooks are merged together as we see below and **then** executed:
+# MAGIC 1. **`name = "John"`**
+# MAGIC 2. **`print(f"Hello {name}")`**
+# MAGIC 3. **`full_name = f"{name} Doe"`**
+# MAGIC 4. **`print(f"Welcome back {full_name}`**
+# MAGIC
+# MAGIC And thus providing the expected behavior:
+# MAGIC * **`Hello John`**
+# MAGIC * **`Welcome back John Doe`**
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC
+# MAGIC The folder that contains this notebook contains a subfolder named **`ExampleSetupFolder`**, which in turn contains a notebook called **`example-setup`**.
+# MAGIC
+# MAGIC This simple notebook declares the variable **`my_name`**, sets it to **`None`** and then creates a DataFrame called **`example_df`**.
+# MAGIC
+# MAGIC Open the example-setup notebook and modify it so that name is not **`None`** but rather your name (or anyone's name) enclosed in quotes, and so that the following two cells execute without throwing an **`AssertionError`**.
+
+# COMMAND ----------
+
+# MAGIC %run ./ExampleSetupFolder/example-setup
+
+# COMMAND ----------
+
+assert my_name is not None, "Name is still None"
+print(my_name)
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC
+# MAGIC ## Run a Python cell
+# MAGIC
+# MAGIC Run the following cell to verify that the **`example-setup`** notebook was executed by displaying the **`example_df`** Dataframe. This table consists of 16 rows of increasing values.
+
+# COMMAND ----------
+
+display(example_df)
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC
+# MAGIC # Detach and Reattach a Cluster
+# MAGIC
+# MAGIC While attaching to clusters is a fairly common task, sometimes it is useful to detach and re-attach in one single operation. The main side-effect this achieves is clearing the execution state. This can be useful when you want to test cells in isolation, or you simply want to reset the execution state.
+# MAGIC
+# MAGIC Revisit the cluster dropdown. In the menu item representing the currently attached cluster, select the **Detach & Re-attach** link.
+# MAGIC
+# MAGIC Notice that the output from the cell above remains since results and execution state are unrelated, but the execution state is cleared. This can be verified by attempting to re-run the cell above. This fails, since the **`example_df`** variable has been cleared, along with the rest of the state.
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC
+# MAGIC # Change Language
+# MAGIC
+# MAGIC Notice that the default language for this notebook is set to Python. Change this by clicking the **Python** button to the right of the notebook name. Change the default language to SQL.
+# MAGIC
+# MAGIC Notice that the Python cells are automatically prepended with a %python
magic command to maintain validity of those cells. Notice that this operation also clears the execution state.
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC
+# MAGIC # Create a Markdown Cell
+# MAGIC
+# MAGIC Add a new cell below this one. Populate with some Markdown that includes at least the following elements:
+# MAGIC * A header
+# MAGIC * Bullet points
+# MAGIC * A link (using your choice of HTML or Markdown conventions)
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC
+# MAGIC ## Run a SQL cell
+# MAGIC
+# MAGIC Run the following cell to query a Delta table using SQL. This executes a simple query against a table is backed by a Databricks-provided example dataset included in all DBFS installations.
+
+# COMMAND ----------
+
+# MAGIC %sql
+# MAGIC SELECT * FROM delta.`/databricks-datasets/nyctaxi-with-zipcodes/subsampled`
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC
+# MAGIC Execute the following cell to view the underlying files backing this table.
+
+# COMMAND ----------
+
+files = dbutils.fs.ls("/databricks-datasets/nyctaxi-with-zipcodes/subsampled")
+display(files)
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC
+# MAGIC # Review Changes
+# MAGIC
+# MAGIC Assuming you have imported this material into your workspace using a Databricks Repo, open the Repo dialog by clicking the **`published`** branch button at the top-left corner of this page. You should see three changes:
+# MAGIC 1. **Removed** with the old notebook name
+# MAGIC 1. **Added** with the new notebook name
+# MAGIC 1. **Modified** for creating a markdown cell above
+# MAGIC
+# MAGIC Use the dialog to revert the changes and restore this notebook to its original state.
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC
+# MAGIC ## Wrapping Up
+# MAGIC
+# MAGIC By completing this lab, you should now feel comfortable manipulating notebooks, creating new cells, and running notebooks within notebooks.
+
+# COMMAND ----------
+
+# MAGIC %md-sandbox
+# MAGIC © 2022 Databricks, Inc. All rights reserved.
+# MAGIC Apache, Apache Spark, Spark and the Spark logo are trademarks of the Apache Software Foundation.
+# MAGIC
+# MAGIC Privacy Policy | Terms of Use | Support
diff --git a/Data-Engineering-with-Databricks/01 - Databricks Workspace and Services/ExampleSetupFolder/example-setup.py b/Data-Engineering-with-Databricks/01 - Databricks Workspace and Services/ExampleSetupFolder/example-setup.py
new file mode 100644
index 0000000..bf35c99
--- /dev/null
+++ b/Data-Engineering-with-Databricks/01 - Databricks Workspace and Services/ExampleSetupFolder/example-setup.py
@@ -0,0 +1,8 @@
+# Databricks notebook source
+# TODO
+my_name = None
+
+# COMMAND ----------
+
+example_df = spark.range(16)
+
diff --git a/Data-Engineering-With-Databricks/01 - Databricks Lakehouse Platform/DE 1.3.1 - Managing Delta Tables.sql b/Data-Engineering-with-Databricks/02 - Delta Lake/DE 2.1 - Managing Delta Tables.sql
similarity index 65%
rename from Data-Engineering-With-Databricks/01 - Databricks Lakehouse Platform/DE 1.3.1 - Managing Delta Tables.sql
rename to Data-Engineering-with-Databricks/02 - Delta Lake/DE 2.1 - Managing Delta Tables.sql
index 3c225fd..0f7343d 100644
--- a/Data-Engineering-With-Databricks/01 - Databricks Lakehouse Platform/DE 1.3.1 - Managing Delta Tables.sql
+++ b/Data-Engineering-with-Databricks/02 - Delta Lake/DE 2.1 - Managing Delta Tables.sql
@@ -8,43 +8,53 @@
-- COMMAND ----------
-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC
-- MAGIC # Managing Delta Tables
-- MAGIC
-- MAGIC If you know any flavor of SQL, you already have much of the knowledge you'll need to work effectively in the data lakehouse.
-- MAGIC
--- MAGIC In this notebook, we'll explore the basic of manipulating data and tables with SQL on Databricks.
+-- MAGIC In this notebook, we'll explore basic manipulation of data and tables with SQL on Databricks.
-- MAGIC
-- MAGIC Note that Delta Lake is the default format for all tables created with Databricks; if you've been running SQL statements on Databricks, you're likely already working with Delta Lake.
-- MAGIC
-- MAGIC ## Learning Objectives
--- MAGIC By the end of this lesson, students should feel confident:
--- MAGIC * Creating Delta Lake tables
--- MAGIC * Querying data from Delta Lake tables
--- MAGIC * Inserting, updating, and deleting records in Delta Lake tables
--- MAGIC * Writing upsert statements with Delta Lake
--- MAGIC * Dropping Delta Lake tables
+-- MAGIC By the end of this lesson, you should be able to:
+-- MAGIC * Create Delta Lake tables
+-- MAGIC * Query data from Delta Lake tables
+-- MAGIC * Insert, update, and delete records in Delta Lake tables
+-- MAGIC * Write upsert statements with Delta Lake
+-- MAGIC * Drop Delta Lake tables
-- COMMAND ----------
--- MAGIC %md
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
-- MAGIC ## Run Setup
-- MAGIC The first thing we're going to do is run a setup script. It will define a username, userhome, and database that is scoped to each user.
-- COMMAND ----------
--- MAGIC %run ../Includes/sql-setup $mode="reset"
+-- MAGIC %run ../Includes/Classroom-Setup-2.1
-- COMMAND ----------
-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC
-- MAGIC ## Creating a Delta Table
-- MAGIC
-- MAGIC There's not much code you need to write to create a table with Delta Lake. There are a number of ways to create Delta Lake tables that we'll see throughout the course. We'll begin with one of the easiest methods: registering an empty Delta Lake table.
-- MAGIC
-- MAGIC We need:
--- MAGIC - A `CREATE` statement
--- MAGIC - A table name (below we use `students`)
+-- MAGIC - A **`CREATE TABLE`** statement
+-- MAGIC - A table name (below we use **`students`**)
-- MAGIC - A schema
+-- MAGIC
+-- MAGIC **NOTE:** In Databricks Runtime 8.0 and above, Delta Lake is the default format and you don’t need **`USING DELTA`**.
-- COMMAND ----------
@@ -54,9 +64,12 @@ CREATE TABLE students
-- COMMAND ----------
-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC
-- MAGIC If we try to go back and run that cell again...it will error out! This is expected - because the table exists already, we receive an error.
-- MAGIC
--- MAGIC We can add in an additional argument, `IF NOT EXISTS` which checks if the table exists. This will overcome our error.
+-- MAGIC We can add in an additional argument, **`IF NOT EXISTS`** which checks if the table exists. This will overcome our error.
-- COMMAND ----------
@@ -65,7 +78,10 @@ CREATE TABLE IF NOT EXISTS students
-- COMMAND ----------
--- MAGIC %md
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC
-- MAGIC ## Inserting Data
-- MAGIC Most often, data will be inserted to tables as the result of a query from another source.
-- MAGIC
@@ -80,7 +96,10 @@ INSERT INTO students VALUES (3, "Elia", 3.3);
-- COMMAND ----------
-- MAGIC %md
--- MAGIC In the cell above, we completed three separate `INSERT` statements. Each of these is processed as a separate transaction with its own ACID guarantees. Most frequently, we'll insert many records in a single transaction.
+-- MAGIC
+-- MAGIC
+-- MAGIC
+-- MAGIC In the cell above, we completed three separate **`INSERT`** statements. Each of these is processed as a separate transaction with its own ACID guarantees. Most frequently, we'll insert many records in a single transaction.
-- COMMAND ----------
@@ -93,14 +112,20 @@ VALUES
-- COMMAND ----------
-- MAGIC %md
--- MAGIC Note that Databricks doesn't have a `COMMIT` keyword; transactions run as soon as they're executed, and commit as they succeed.
+-- MAGIC
+-- MAGIC
+-- MAGIC
+-- MAGIC Note that Databricks doesn't have a **`COMMIT`** keyword; transactions run as soon as they're executed, and commit as they succeed.
-- COMMAND ----------
-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC
-- MAGIC ## Querying a Delta Table
-- MAGIC
--- MAGIC You probably won't be suprised that querying a Delta Lake table is as easy as using a standard `SELECT` statement.
+-- MAGIC You probably won't be surprised that querying a Delta Lake table is as easy as using a standard **`SELECT`** statement.
-- COMMAND ----------
@@ -109,18 +134,24 @@ SELECT * FROM students
-- COMMAND ----------
-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC
-- MAGIC What may surprise you is that Delta Lake guarantees that any read against a table will **always** return the most recent version of the table, and that you'll never encounter a state of deadlock due to ongoing operations.
-- MAGIC
--- MAGIC To repeat: table reads can never conflict with other operations, and the newest version of your data is immediately available to all clients that can query your lakehouse. Because all transaction information is stored in cloud object storage alongside your data files, concurrency reads on Delta Lake tables is limited only by the hard limits of object storage on cloud vendors. (**NOTE**: It's not infinite, but it's at least thousands of reads per second.)
+-- MAGIC To repeat: table reads can never conflict with other operations, and the newest version of your data is immediately available to all clients that can query your lakehouse. Because all transaction information is stored in cloud object storage alongside your data files, concurrent reads on Delta Lake tables is limited only by the hard limits of object storage on cloud vendors. (**NOTE**: It's not infinite, but it's at least thousands of reads per second.)
-- COMMAND ----------
-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC
-- MAGIC ## Updating Records
-- MAGIC
--- MAGIC Updating records provides atomic guarantees as well: we perform a snapshot read of the current version of our table, find all fields that match our `WHERE` clause, and then apply the changes as described.
+-- MAGIC Updating records provides atomic guarantees as well: we perform a snapshot read of the current version of our table, find all fields that match our **`WHERE`** clause, and then apply the changes as described.
-- MAGIC
--- MAGIC Below, we find all students that have a name starting with the letter **T** and add 1 to the number in their `value` column.
+-- MAGIC Below, we find all students that have a name starting with the letter **T** and add 1 to the number in their **`value`** column.
-- COMMAND ----------
@@ -131,6 +162,9 @@ WHERE name LIKE "T%"
-- COMMAND ----------
-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC
-- MAGIC Query the table again to see these changes applied.
-- COMMAND ----------
@@ -140,11 +174,14 @@ SELECT * FROM students
-- COMMAND ----------
-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC
-- MAGIC ## Deleting Records
-- MAGIC
-- MAGIC Deletes are also atomic, so there's no risk of only partially succeeding when removing data from your data lakehouse.
-- MAGIC
--- MAGIC A delete statement can remove one or many records, but will always result in a single transaction.
+-- MAGIC A **`DELETE`** statement can remove one or many records, but will always result in a single transaction.
-- COMMAND ----------
@@ -154,11 +191,14 @@ WHERE value > 6
-- COMMAND ----------
-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC
-- MAGIC ## Using Merge
-- MAGIC
-- MAGIC Some SQL systems have the concept of an upsert, which allows updates, inserts, and other data manipulations to be run as a single command.
-- MAGIC
--- MAGIC Databricks uses the `MERGE` keyword to perform this operation.
+-- MAGIC Databricks uses the **`MERGE`** keyword to perform this operation.
-- MAGIC
-- MAGIC Consider the following temporary view, which contains 4 records that might be output by a Change Data Capture (CDC) feed.
@@ -175,13 +215,16 @@ SELECT * FROM updates;
-- COMMAND ----------
-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC
-- MAGIC Using the syntax we've seen so far, we could filter from this view by type to write 3 statements, one each to insert, update, and delete records. But this would result in 3 separate transactions; if any of these transactions were to fail, it might leave our data in an invalid state.
-- MAGIC
-- MAGIC Instead, we combine these actions into a single atomic transaction, applying all 3 types of changes together.
-- MAGIC
--- MAGIC `MERGE` statements must have at least one field to match on, and each `WHEN MATCHED` or `WHEN NOT MATCHED` clause can have any number of additional conditional statements.
+-- MAGIC **`MERGE`** statements must have at least one field to match on, and each **`WHEN MATCHED`** or **`WHEN NOT MATCHED`** clause can have any number of additional conditional statements.
-- MAGIC
--- MAGIC Here, we match on our `id` field and then filter on the `type` field to appropriately update, delete, or insert our records.
+-- MAGIC Here, we match on our **`id`** field and then filter on the **`type`** field to appropriately update, delete, or insert our records.
-- COMMAND ----------
@@ -198,16 +241,22 @@ WHEN NOT MATCHED AND u.type = "insert"
-- COMMAND ----------
-- MAGIC %md
--- MAGIC Note that only 3 records were impacted by our `MERGE` statement; one of the records in our updates table did not have a matching `id` in the students table but was marked as an `update`. Based on our custom logic, we ignored this record rather than inserting it.
-- MAGIC
--- MAGIC How would you modify the above statement to include unmatched records marked `update` in the final `INSERT` clause?
+-- MAGIC
+-- MAGIC
+-- MAGIC Note that only 3 records were impacted by our **`MERGE`** statement; one of the records in our updates table did not have a matching **`id`** in the students table but was marked as an **`update`**. Based on our custom logic, we ignored this record rather than inserting it.
+-- MAGIC
+-- MAGIC How would you modify the above statement to include unmatched records marked **`update`** in the final **`INSERT`** clause?
-- COMMAND ----------
-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC
-- MAGIC ## Dropping a Table
-- MAGIC
--- MAGIC Assuming that you have proper permissions on the target table, you can permanently delete data in the lakehouse using a `DROP TABLE` command.
+-- MAGIC Assuming that you have proper permissions on the target table, you can permanently delete data in the lakehouse using a **`DROP TABLE`** command.
-- MAGIC
-- MAGIC **NOTE**: Later in the course, we'll discuss Table Access Control Lists (ACLs) and default permissions. In a properly configured lakehouse, users should **not** be able to delete production tables.
@@ -217,6 +266,19 @@ DROP TABLE students
-- COMMAND ----------
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC
+-- MAGIC Run the following cell to delete the tables and files associated with this lesson.
+
+-- COMMAND ----------
+
+-- MAGIC %python
+-- MAGIC DA.cleanup()
+
+-- COMMAND ----------
+
-- MAGIC %md-sandbox
-- MAGIC © 2022 Databricks, Inc. All rights reserved.
-- MAGIC Apache, Apache Spark, Spark and the Spark logo are trademarks of the Apache Software Foundation.
diff --git a/Data-Engineering-With-Databricks/01 - Databricks Lakehouse Platform/Labs/DE 1.3.2L - Manipulating Tables with Delta Lake.sql b/Data-Engineering-with-Databricks/02 - Delta Lake/DE 2.2L - Manipulating Tables with Delta Lake Lab.sql
similarity index 86%
rename from Data-Engineering-With-Databricks/01 - Databricks Lakehouse Platform/Labs/DE 1.3.2L - Manipulating Tables with Delta Lake.sql
rename to Data-Engineering-with-Databricks/02 - Delta Lake/DE 2.2L - Manipulating Tables with Delta Lake Lab.sql
index b756f75..eafe491 100644
--- a/Data-Engineering-With-Databricks/01 - Databricks Lakehouse Platform/Labs/DE 1.3.2L - Manipulating Tables with Delta Lake.sql
+++ b/Data-Engineering-with-Databricks/02 - Delta Lake/DE 2.2L - Manipulating Tables with Delta Lake Lab.sql
@@ -8,39 +8,48 @@
-- COMMAND ----------
-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC
-- MAGIC # Manipulating Tables with Delta Lake
-- MAGIC
-- MAGIC This notebook provides a hands-on review of some of the basic functionality of Delta Lake.
-- MAGIC
-- MAGIC ## Learning Objectives
--- MAGIC By the end of this lessons, student will be able to:
+-- MAGIC By the end of this lab, you should be able to:
-- MAGIC - Execute standard operations to create and manipulate Delta Lake tables, including:
--- MAGIC - `CREATE TABLE`
--- MAGIC - `INSERT INTO`
--- MAGIC - `SELECT FROM`
--- MAGIC - `UPDATE`
--- MAGIC - `DELETE`
--- MAGIC - `MERGE`
--- MAGIC - `DROP TABLE`
+-- MAGIC - **`CREATE TABLE`**
+-- MAGIC - **`INSERT INTO`**
+-- MAGIC - **`SELECT FROM`**
+-- MAGIC - **`UPDATE`**
+-- MAGIC - **`DELETE`**
+-- MAGIC - **`MERGE`**
+-- MAGIC - **`DROP TABLE`**
-- COMMAND ----------
-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC
-- MAGIC ## Setup
-- MAGIC Run the following script to setup necessary variables and clear out past runs of this notebook. Note that re-executing this cell will allow you to start the lab over.
-- COMMAND ----------
--- MAGIC %run ../../Includes/sql-setup $course="delta" $mode="reset"
+-- MAGIC %run ../Includes/Classroom-Setup-2.2L
-- COMMAND ----------
-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC
-- MAGIC ## Create a Table
-- MAGIC
-- MAGIC In this notebook, we'll be creating a table to track our bean collection.
-- MAGIC
--- MAGIC Use the cell below to create a managed Delta Lake table named `beans`.
+-- MAGIC Use the cell below to create a managed Delta Lake table named **`beans`**.
-- MAGIC
-- MAGIC Provide the following schema:
-- MAGIC
@@ -59,6 +68,9 @@
-- COMMAND ----------
-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC
-- MAGIC **NOTE**: We'll use Python to run checks occasionally throughout the lab. The following cell will return as error with a message on what needs to change if you have not followed instructions. No output from cell execution means that you have completed this step.
-- COMMAND ----------
@@ -71,6 +83,8 @@
-- COMMAND ----------
-- MAGIC %md
+-- MAGIC
+-- MAGIC
-- MAGIC ## Insert Data
-- MAGIC
-- MAGIC Run the following cell to insert three rows into the table.
@@ -85,6 +99,9 @@ INSERT INTO beans VALUES
-- COMMAND ----------
-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC
-- MAGIC Manually review the table contents to ensure data was written as expected.
-- COMMAND ----------
@@ -95,6 +112,9 @@ INSERT INTO beans VALUES
-- COMMAND ----------
-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC
-- MAGIC Insert the additional records provided below. Make sure you execute this as a single transaction.
-- COMMAND ----------
@@ -108,6 +128,9 @@ INSERT INTO beans VALUES
-- COMMAND ----------
-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC
-- MAGIC Run the cell below to confirm the data is in the proper state.
-- COMMAND ----------
@@ -120,6 +143,9 @@ INSERT INTO beans VALUES
-- COMMAND ----------
-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC
-- MAGIC ## Update Records
-- MAGIC
-- MAGIC A friend is reviewing your inventory of beans. After much debate, you agree that jelly beans are delicious.
@@ -135,9 +161,12 @@ WHERE name = "jelly"
-- COMMAND ----------
-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC
-- MAGIC You realize that you've accidentally entered the weight of your pinto beans incorrectly.
-- MAGIC
--- MAGIC Update the `grams` column for this record to the correct weight of 1500.
+-- MAGIC Update the **`grams`** column for this record to the correct weight of 1500.
-- COMMAND ----------
@@ -147,6 +176,9 @@ WHERE name = "jelly"
-- COMMAND ----------
-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC
-- MAGIC Run the cell below to confirm this has completed properly.
-- COMMAND ----------
@@ -161,6 +193,9 @@ WHERE name = "jelly"
-- COMMAND ----------
-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC
-- MAGIC ## Delete Records
-- MAGIC
-- MAGIC You've decided that you only want to keep track of delicious beans.
@@ -175,6 +210,9 @@ WHERE name = "jelly"
-- COMMAND ----------
-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC
-- MAGIC Run the following cell to confirm this operation was successful.
-- COMMAND ----------
@@ -186,6 +224,9 @@ WHERE name = "jelly"
-- COMMAND ----------
-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC
-- MAGIC ## Using Merge to Upsert Records
-- MAGIC
-- MAGIC Your friend gives you some new beans. The cell below registers these as a temporary view.
@@ -203,7 +244,10 @@ SELECT * FROM new_beans
-- COMMAND ----------
-- MAGIC %md
--- MAGIC In the cell below, use the above view to write a merge statement to update and insert new records to your `beans` table as one transaction.
+-- MAGIC
+-- MAGIC
+-- MAGIC
+-- MAGIC In the cell below, use the above view to write a merge statement to update and insert new records to your **`beans`** table as one transaction.
-- MAGIC
-- MAGIC Make sure your logic:
-- MAGIC - Matches beans by name **and** color
@@ -218,6 +262,9 @@ SELECT * FROM new_beans
-- COMMAND ----------
-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC
-- MAGIC Run the cell below to check your work.
-- COMMAND ----------
@@ -235,13 +282,16 @@ SELECT * FROM new_beans
-- COMMAND ----------
-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC
-- MAGIC ## Dropping Tables
-- MAGIC
-- MAGIC When working with managed Delta Lake tables, dropping a table results in permanently deleting access to the table and all underlying data files.
-- MAGIC
-- MAGIC **NOTE**: Later in the course, we'll learn about external tables, which approach Delta Lake tables as a collection of files and have different persistence guarantees.
-- MAGIC
--- MAGIC In the cell below, write a query to drop the `beans` table.
+-- MAGIC In the cell below, write a query to drop the **`beans`** table.
-- COMMAND ----------
@@ -251,6 +301,9 @@ SELECT * FROM new_beans
-- COMMAND ----------
-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC
-- MAGIC Run the cell below to assert that your table no longer exists.
-- COMMAND ----------
@@ -261,16 +314,26 @@ SELECT * FROM new_beans
-- COMMAND ----------
-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC
-- MAGIC ## Wrapping Up
-- MAGIC
-- MAGIC By completing this lab, you should now feel comfortable:
-- MAGIC * Completing standard Delta Lake table creation and data manipulation commands
+
+-- COMMAND ----------
+
+-- MAGIC %md
-- MAGIC
--- MAGIC Run the following cell to remove the database and all data associated with this lab.
+-- MAGIC
+-- MAGIC
+-- MAGIC Run the following cell to delete the tables and files associated with this lesson.
-- COMMAND ----------
--- MAGIC %run ../../Includes/sql-setup $course="delta" $mode="cleanup"
+-- MAGIC %python
+-- MAGIC DA.cleanup()
-- COMMAND ----------
diff --git a/Data-Engineering-With-Databricks/01 - Databricks Lakehouse Platform/DE 1.3.3 - Advanced Delta Lake Features.sql b/Data-Engineering-with-Databricks/02 - Delta Lake/DE 2.3 - Advanced Delta Lake Features.sql
similarity index 59%
rename from Data-Engineering-With-Databricks/01 - Databricks Lakehouse Platform/DE 1.3.3 - Advanced Delta Lake Features.sql
rename to Data-Engineering-with-Databricks/02 - Delta Lake/DE 2.3 - Advanced Delta Lake Features.sql
index f0be390..3bded34 100644
--- a/Data-Engineering-With-Databricks/01 - Databricks Lakehouse Platform/DE 1.3.3 - Advanced Delta Lake Features.sql
+++ b/Data-Engineering-with-Databricks/02 - Delta Lake/DE 2.3 - Advanced Delta Lake Features.sql
@@ -8,6 +8,8 @@
-- COMMAND ----------
-- MAGIC %md
+-- MAGIC
+-- MAGIC
-- MAGIC # Advanced Delta Lake Features
-- MAGIC
-- MAGIC Now that you feel comfortable performing basic data tasks with Delta Lake, we can discuss a few features unique to Delta Lake.
@@ -15,30 +17,38 @@
-- MAGIC Note that while some of the keywords used here aren't part of standard ANSI SQL, all Delta Lake operations can be run on Databricks using SQL
-- MAGIC
-- MAGIC ## Learning Objectives
--- MAGIC By the end of this lesson, students should feel confident:
--- MAGIC * Using `OPTIMIZE` to compact small files
--- MAGIC * Using `ZORDER` to index tables
--- MAGIC * Describing the directory structure of Delta Lake files
--- MAGIC * Reviewing a history of table transactions
--- MAGIC * Querying and rolling back to previous table version
--- MAGIC * Cleaning up stale data files with `VACUUM`
+-- MAGIC By the end of this lesson, you should be able to:
+-- MAGIC * Use **`OPTIMIZE`** to compact small files
+-- MAGIC * Use **`ZORDER`** to index tables
+-- MAGIC * Describe the directory structure of Delta Lake files
+-- MAGIC * Review a history of table transactions
+-- MAGIC * Query and roll back to previous table version
+-- MAGIC * Clean up stale data files with **`VACUUM`**
+-- MAGIC
+-- MAGIC **Resources**
+-- MAGIC * Delta Optimize - Databricks Docs
+-- MAGIC * Delta Vacuum - Databricks Docs
-- COMMAND ----------
--- MAGIC %md
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
-- MAGIC ## Run Setup
-- MAGIC The first thing we're going to do is run a setup script. It will define a username, userhome, and database that is scoped to each user.
-- COMMAND ----------
--- MAGIC %run ../Includes/sql-setup $mode="reset"
+-- MAGIC %run ../Includes/Classroom-Setup-2.3
-- COMMAND ----------
-- MAGIC %md
+-- MAGIC
+-- MAGIC
-- MAGIC ## Creating a Delta Table with History
-- MAGIC
--- MAGIC The cell below condenses all the transactions from the previous lesson into a single cell. (Except for the `DROP TABLE`!)
+-- MAGIC The cell below condenses all the transactions from the previous lesson into a single cell. (Except for the **`DROP TABLE`**!)
-- MAGIC
-- MAGIC As you're waiting for this query to run, see if you can identify the total number of transactions being executed.
@@ -83,11 +93,13 @@ WHEN NOT MATCHED AND u.type = "insert"
-- COMMAND ----------
-- MAGIC %md
+-- MAGIC
+-- MAGIC
-- MAGIC ## Examine Table Details
-- MAGIC
-- MAGIC Databricks uses a Hive metastore by default to register databases, tables, and views.
-- MAGIC
--- MAGIC Using `DESCRIBE EXTENDED` allows us to see important metadata about our table.
+-- MAGIC Using **`DESCRIBE EXTENDED`** allows us to see important metadata about our table.
-- COMMAND ----------
@@ -96,13 +108,28 @@ DESCRIBE EXTENDED students
-- COMMAND ----------
-- MAGIC %md
--- MAGIC Note the `Location` field.
+-- MAGIC
+-- MAGIC
+-- MAGIC **`DESCRIBE DETAIL`** is another command that allows us to explore table metadata.
+
+-- COMMAND ----------
+
+DESCRIBE DETAIL students
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC Note the **`Location`** field.
-- MAGIC
-- MAGIC While we've so far been thinking about our table as just a relational entity within a database, a Delta Lake table is actually backed by a collection of files stored in cloud object storage.
-- COMMAND ----------
-- MAGIC %md
+-- MAGIC
+-- MAGIC
-- MAGIC ## Explore Delta Lake Files
-- MAGIC
-- MAGIC We can see the files backing our Delta Lake table by using a Databricks Utilities function.
@@ -112,37 +139,43 @@ DESCRIBE EXTENDED students
-- COMMAND ----------
-- MAGIC %python
--- MAGIC display(dbutils.fs.ls(f"{userhome}/students"))
+-- MAGIC display(dbutils.fs.ls(f"{DA.paths.user_db}/students"))
-- COMMAND ----------
-- MAGIC %md
--- MAGIC Note that our directory contains a number of Parquet data files and a directory named `_delta_log`.
+-- MAGIC
+-- MAGIC
+-- MAGIC Note that our directory contains a number of Parquet data files and a directory named **`_delta_log`**.
-- MAGIC
-- MAGIC Records in Delta Lake tables are stored as data in Parquet files.
-- MAGIC
--- MAGIC Transactions to Delta Lake tables are recorded in the `_delta_log`.
+-- MAGIC Transactions to Delta Lake tables are recorded in the **`_delta_log`**.
-- MAGIC
--- MAGIC We can peak inside the `_delta_log` to see more.
+-- MAGIC We can peek inside the **`_delta_log`** to see more.
-- COMMAND ----------
-- MAGIC %python
--- MAGIC display(dbutils.fs.ls(f"{userhome}/students/_delta_log"))
+-- MAGIC display(dbutils.fs.ls(f"{DA.paths.user_db}/students/_delta_log"))
-- COMMAND ----------
-- MAGIC %md
+-- MAGIC
+-- MAGIC
-- MAGIC Each transaction results in a new JSON file being written to the Delta Lake transaction log. Here, we can see that there are 8 total transactions against this table (Delta Lake is 0 indexed).
-- COMMAND ----------
-- MAGIC %md
+-- MAGIC
+-- MAGIC
-- MAGIC ## Reasoning about Data Files
-- MAGIC
-- MAGIC We just saw a lot of data files for what is obviously a very small table.
-- MAGIC
--- MAGIC `DESCRIBE DETAIL` allows us to see some other details about our Delta table, including the number of files.
+-- MAGIC **`DESCRIBE DETAIL`** allows us to see some other details about our Delta table, including the number of files.
-- COMMAND ----------
@@ -151,36 +184,42 @@ DESCRIBE DETAIL students
-- COMMAND ----------
-- MAGIC %md
--- MAGIC Here we see that our table currently contains 3 data files in its present version. So what are all those other Parquet files doing in our table directory?
+-- MAGIC
+-- MAGIC
+-- MAGIC Here we see that our table currently contains 4 data files in its present version. So what are all those other Parquet files doing in our table directory?
-- MAGIC
-- MAGIC Rather than overwriting or immediately deleting files containing changed data, Delta Lake uses the transaction log to indicate whether or not files are valid in a current version of the table.
-- MAGIC
--- MAGIC Here, we'll look at the transaction log corresponding the `MERGE` statement above, where records were inserted, updated, and deleted.
+-- MAGIC Here, we'll look at the transaction log corresponding the **`MERGE`** statement above, where records were inserted, updated, and deleted.
-- COMMAND ----------
-- MAGIC %python
--- MAGIC display(spark.sql(f"SELECT * FROM json.`{userhome}/students/_delta_log/00000000000000000007.json`"))
+-- MAGIC display(spark.sql(f"SELECT * FROM json.`{DA.paths.user_db}/students/_delta_log/00000000000000000007.json`"))
-- COMMAND ----------
-- MAGIC %md
--- MAGIC The `add` column contains a list of all the new files written to our table; the `remove` column indicates those files that no longer should be included in our table.
+-- MAGIC
+-- MAGIC
+-- MAGIC The **`add`** column contains a list of all the new files written to our table; the **`remove`** column indicates those files that no longer should be included in our table.
-- MAGIC
-- MAGIC When we query a Delta Lake table, the query engine uses the transaction logs to resolve all the files that are valid in the current version, and ignores all other data files.
-- COMMAND ----------
-- MAGIC %md
+-- MAGIC
+-- MAGIC
-- MAGIC ## Compacting Small Files and Indexing
-- MAGIC
-- MAGIC Small files can occur for a variety of reasons; in our case, we performed a number of operations where only one or several records were inserted.
-- MAGIC
--- MAGIC Files will be combined toward an optimal size (scaled based on the size of the table) by using the `OPTIMIZE` command.
+-- MAGIC Files will be combined toward an optimal size (scaled based on the size of the table) by using the **`OPTIMIZE`** command.
-- MAGIC
--- MAGIC `OPTIMIZE` will replace existing data files by combining records and rewriting the results.
+-- MAGIC **`OPTIMIZE`** will replace existing data files by combining records and rewriting the results.
-- MAGIC
--- MAGIC When executing `OPTIMIZE`, users can optionally specify one or several fields for `ZORDER` indexing. While the specific math of Z-order is unimportant, it speeds up data retrieval when filtering on provided fields by collocating data with similar values within data files.
+-- MAGIC When executing **`OPTIMIZE`**, users can optionally specify one or several fields for **`ZORDER`** indexing. While the specific math of Z-order is unimportant, it speeds up data retrieval when filtering on provided fields by colocating data with similar values within data files.
-- COMMAND ----------
@@ -190,14 +229,18 @@ ZORDER BY id
-- COMMAND ----------
-- MAGIC %md
--- MAGIC Given how small our data is, `ZORDER` does not provide any benefit, but we can see all of the metrics that result from this operation.
+-- MAGIC
+-- MAGIC
+-- MAGIC Given how small our data is, **`ZORDER`** does not provide any benefit, but we can see all of the metrics that result from this operation.
-- COMMAND ----------
-- MAGIC %md
+-- MAGIC
+-- MAGIC
-- MAGIC ## Reviewing Delta Lake Transactions
-- MAGIC
--- MAGIC Because all changes to the Delta Lake table are stored in the transaction log, we can easily review the history of our table.
+-- MAGIC Because all changes to the Delta Lake table are stored in the transaction log, we can easily review the table history.
-- COMMAND ----------
@@ -206,7 +249,9 @@ DESCRIBE HISTORY students
-- COMMAND ----------
-- MAGIC %md
--- MAGIC As expected, `OPTIMIZE` created another version of our table, meaning that version 8 is our most current version.
+-- MAGIC
+-- MAGIC
+-- MAGIC As expected, **`OPTIMIZE`** created another version of our table, meaning that version 8 is our most current version.
-- MAGIC
-- MAGIC Remember all of those extra data files that had been marked as removed in our transaction log? These provide us with the ability to query previous versions of our table.
-- MAGIC
@@ -222,11 +267,15 @@ FROM students VERSION AS OF 3
-- COMMAND ----------
-- MAGIC %md
+-- MAGIC
+-- MAGIC
-- MAGIC What's important to note about time travel is that we're not recreating a previous state of the table by undoing transactions against our current version; rather, we're just querying all those data files that were indicated as valid as of the specified version.
-- COMMAND ----------
-- MAGIC %md
+-- MAGIC
+-- MAGIC
-- MAGIC ## Rollback Versions
-- MAGIC
-- MAGIC Suppose you're typing up query to manually delete some records from a table and you accidentally execute this query in the following state.
@@ -238,7 +287,9 @@ DELETE FROM students
-- COMMAND ----------
-- MAGIC %md
--- MAGIC Note that when we see a `-1` for number of rows affected by a delete, this means an entire directory of data has been removed.
+-- MAGIC
+-- MAGIC
+-- MAGIC Note that when we see a **`-1`** for number of rows affected by a delete, this means an entire directory of data has been removed.
-- MAGIC
-- MAGIC Let's confirm this below.
@@ -249,6 +300,8 @@ SELECT * FROM students
-- COMMAND ----------
-- MAGIC %md
+-- MAGIC
+-- MAGIC
-- MAGIC Deleting all the records in your table is probably not a desired outcome. Luckily, we can simply rollback this commit.
-- COMMAND ----------
@@ -258,38 +311,40 @@ RESTORE TABLE students TO VERSION AS OF 8
-- COMMAND ----------
-- MAGIC %md
--- MAGIC Note that a `RESTORE` command is recorded as a transaction; you won't be able to completely hide the fact that you accidentally deleted all the records in the table, but you will be able to undo the operation and bring your table back to a desired state.
+-- MAGIC
+-- MAGIC
+-- MAGIC Note that a **`RESTORE`** command is recorded as a transaction; you won't be able to completely hide the fact that you accidentally deleted all the records in the table, but you will be able to undo the operation and bring your table back to a desired state.
-- COMMAND ----------
-- MAGIC %md
+-- MAGIC
+-- MAGIC
-- MAGIC ## Cleaning Up Stale Files
-- MAGIC
-- MAGIC Databricks will automatically clean up stale files in Delta Lake tables.
-- MAGIC
-- MAGIC While Delta Lake versioning and time travel are great for querying recent versions and rolling back queries, keeping the data files for all versions of large production tables around indefinitely is very expensive (and can lead to compliance issues if PII is present).
-- MAGIC
--- MAGIC If you wish to manually purge old data files, this can be performed with the `VACUUM` operation.
+-- MAGIC If you wish to manually purge old data files, this can be performed with the **`VACUUM`** operation.
-- MAGIC
--- MAGIC Let's do this below with a retention of `0 HOURS` to only keep our current version.
+-- MAGIC Uncomment the following cell and execute it with a retention of **`0 HOURS`** to keep only the current version:
-- COMMAND ----------
-VACUUM students RETAIN 0 HOURS
+-- VACUUM students RETAIN 0 HOURS
-- COMMAND ----------
-- MAGIC %md
--- MAGIC By default, `VACUUM` will prevent you from deleting files less than 7 days old, just to ensure that no long-running operations are still referencing any of the files to be deleted. We turned off the setting that prese
-- MAGIC
--- MAGIC In our demos, you may see Databricks executing code that specifies a retention of `0 HOURS`. This is almost exclusively for demo purposes. There are some instances where a power user of Databricks may need to perform this operation, **you should probably never do this on a production table.**
-- MAGIC
--- MAGIC That being said, let's do it here.
+-- MAGIC By default, **`VACUUM`** will prevent you from deleting files less than 7 days old, just to ensure that no long-running operations are still referencing any of the files to be deleted. If you run **`VACUUM`** on a Delta table, you lose the ability time travel back to a version older than the specified data retention period. In our demos, you may see Databricks executing code that specifies a retention of **`0 HOURS`**. This is simply to demonstrate the feature and is not typically done in production.
-- MAGIC
-- MAGIC In the following cell, we:
--- MAGIC * Turn off a check to prevent premature deletion of data files
--- MAGIC * Make sure that logging of `VACUUM` commands is enabled
--- MAGIC * Use the `DRY RUN` version of vacuum to print out all records to be deleted
+-- MAGIC 1. Turn off a check to prevent premature deletion of data files
+-- MAGIC 1. Make sure that logging of **`VACUUM`** commands is enabled
+-- MAGIC 1. Use the **`DRY RUN`** version of vacuum to print out all records to be deleted
-- COMMAND ----------
@@ -301,7 +356,9 @@ VACUUM students RETAIN 0 HOURS DRY RUN
-- COMMAND ----------
-- MAGIC %md
--- MAGIC By running `VACUUM` and deleting the 9 files above, we will permanently remove access to versions of the table that require these files to materialize.
+-- MAGIC
+-- MAGIC
+-- MAGIC By running **`VACUUM`** and deleting the 10 files above, we will permanently remove access to versions of the table that require these files to materialize.
-- COMMAND ----------
@@ -310,12 +367,26 @@ VACUUM students RETAIN 0 HOURS
-- COMMAND ----------
-- MAGIC %md
--- MAGIC Because of the way the Delta Cache works, we may still be able to query previous versions of the table on the currently active cluster until it restarts. However, listing out our table directory will show that files have been successfully deleted.
+-- MAGIC
+-- MAGIC
+-- MAGIC Check the table directory to show that files have been successfully deleted.
+
+-- COMMAND ----------
+
+-- MAGIC %python
+-- MAGIC display(dbutils.fs.ls(f"{DA.paths.user_db}/students"))
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC Run the following cell to delete the tables and files associated with this lesson.
-- COMMAND ----------
-- MAGIC %python
--- MAGIC display(dbutils.fs.ls(f"{userhome}/students"))
+-- MAGIC DA.cleanup()
-- COMMAND ----------
diff --git a/Data-Engineering-With-Databricks/01 - Databricks Lakehouse Platform/Labs/DE 1.3.4L - Delta Lake Versioning, Optimization, and Vacuuming.sql b/Data-Engineering-with-Databricks/02 - Delta Lake/DE 2.4L - Delta Lake Versioning, Optimization, and Vacuuming Lab.sql
similarity index 74%
rename from Data-Engineering-With-Databricks/01 - Databricks Lakehouse Platform/Labs/DE 1.3.4L - Delta Lake Versioning, Optimization, and Vacuuming.sql
rename to Data-Engineering-with-Databricks/02 - Delta Lake/DE 2.4L - Delta Lake Versioning, Optimization, and Vacuuming Lab.sql
index 9cfb56d..810b8c8 100644
--- a/Data-Engineering-With-Databricks/01 - Databricks Lakehouse Platform/Labs/DE 1.3.4L - Delta Lake Versioning, Optimization, and Vacuuming.sql
+++ b/Data-Engineering-with-Databricks/02 - Delta Lake/DE 2.4L - Delta Lake Versioning, Optimization, and Vacuuming Lab.sql
@@ -8,12 +8,14 @@
-- COMMAND ----------
-- MAGIC %md
+-- MAGIC
+-- MAGIC
-- MAGIC # Delta Lake Versioning, Optimization, and Vacuuming
-- MAGIC
-- MAGIC This notebook provides a hands-on review of some of the more esoteric features Delta Lake brings to the data lakehouse.
-- MAGIC
-- MAGIC ## Learning Objectives
--- MAGIC By the end of this lessons, student will be able to:
+-- MAGIC By the end of this lab, you should be able to:
-- MAGIC - Review table history
-- MAGIC - Query previous table versions and rollback a table to a specific version
-- MAGIC - Perform file compaction and Z-order indexing
@@ -22,21 +24,25 @@
-- COMMAND ----------
-- MAGIC %md
+-- MAGIC
+-- MAGIC
-- MAGIC ## Setup
-- MAGIC Run the following script to setup necessary variables and clear out past runs of this notebook. Note that re-executing this cell will allow you to start the lab over.
-- COMMAND ----------
--- MAGIC %run ../../Includes/sql-setup $course="delta" $mode="reset"
+-- MAGIC %run ../Includes/Classroom-Setup-2.4L
-- COMMAND ----------
-- MAGIC %md
+-- MAGIC
+-- MAGIC
-- MAGIC ## Recreate the History of your Bean Collection
-- MAGIC
--- MAGIC This lab picks up where the last lab left off. The cell below condenses all the operations from the last lab into a single cell (other than the final `DROP TABLE` statement).
+-- MAGIC This lab picks up where the last lab left off. The cell below condenses all the operations from the last lab into a single cell (other than the final **`DROP TABLE`** statement).
-- MAGIC
--- MAGIC For quick reference, the schema of the `beans` table created is:
+-- MAGIC For quick reference, the schema of the **`beans`** table created is:
-- MAGIC
-- MAGIC | Field Name | Field type |
-- MAGIC | --- | --- |
@@ -88,11 +94,13 @@ WHEN NOT MATCHED AND b.delicious = true THEN
-- COMMAND ----------
-- MAGIC %md
+-- MAGIC
+-- MAGIC
-- MAGIC ## Review the Table History
-- MAGIC
-- MAGIC Delta Lake's transaction log stores information about each transaction that modifies a table's contents or settings.
-- MAGIC
--- MAGIC Review the history of the `beans` table below.
+-- MAGIC Review the history of the **`beans`** table below.
-- COMMAND ----------
@@ -102,6 +110,8 @@ WHEN NOT MATCHED AND b.delicious = true THEN
-- COMMAND ----------
-- MAGIC %md
+-- MAGIC
+-- MAGIC
-- MAGIC If all the previous operations were completed as described you should see 7 versions of the table (**NOTE**: Delta Lake versioning starts with 0, so the max version number will be 6).
-- MAGIC
-- MAGIC The operations should be as follows:
@@ -116,15 +126,17 @@ WHEN NOT MATCHED AND b.delicious = true THEN
-- MAGIC | 5 | DELETE |
-- MAGIC | 6 | MERGE |
-- MAGIC
--- MAGIC The `operationsParameters` column will let you review predicates used for updates, deletes, and merges. The `operationMetrics` column indicates how many rows and files are added in each operation.
+-- MAGIC The **`operationsParameters`** column will let you review predicates used for updates, deletes, and merges. The **`operationMetrics`** column indicates how many rows and files are added in each operation.
-- MAGIC
-- MAGIC Spend some time reviewing the Delta Lake history to understand which table version matches with a given transaction.
-- MAGIC
--- MAGIC **NOTE**: The `version` column designates the state of a table once a given transaction completes. The `readVersion` column indicates the version of the table an operation executed against. In this simple demo (with no concurrent transactions), this relationship should always increment by 1.
+-- MAGIC **NOTE**: The **`version`** column designates the state of a table once a given transaction completes. The **`readVersion`** column indicates the version of the table an operation executed against. In this simple demo (with no concurrent transactions), this relationship should always increment by 1.
-- COMMAND ----------
-- MAGIC %md
+-- MAGIC
+-- MAGIC
-- MAGIC ## Query a Specific Version
-- MAGIC
-- MAGIC After reviewing the table history, you decide you want to view the state of your table after your very first data was inserted.
@@ -138,6 +150,8 @@ SELECT * FROM beans VERSION AS OF 1
-- COMMAND ----------
-- MAGIC %md
+-- MAGIC
+-- MAGIC
-- MAGIC And now review the current state of your data.
-- COMMAND ----------
@@ -147,9 +161,11 @@ SELECT * FROM beans
-- COMMAND ----------
-- MAGIC %md
+-- MAGIC
+-- MAGIC
-- MAGIC You want to review the weights of your beans before you deleted any records.
-- MAGIC
--- MAGIC Fill in the query below to register and query a temporary view of the version just before data was deleted.
+-- MAGIC Fill in the statement below to register a temporary view of the version just before data was deleted, then run the following cell to query the view.
-- COMMAND ----------
@@ -157,11 +173,15 @@ SELECT * FROM beans
CREATE OR REPLACE TEMP VIEW pre_delete_vw AS
+-- COMMAND ----------
+
SELECT * FROM pre_delete_vw
-- COMMAND ----------
-- MAGIC %md
+-- MAGIC
+-- MAGIC
-- MAGIC Run the cell below to check that you have captured the correct version.
-- COMMAND ----------
@@ -174,11 +194,13 @@ SELECT * FROM pre_delete_vw
-- COMMAND ----------
-- MAGIC %md
+-- MAGIC
+-- MAGIC
-- MAGIC ## Restore a Previous Version
-- MAGIC
-- MAGIC Apparently there was a misunderstanding; the beans your friend gave you that you merged into your collection were not intended for you to keep.
-- MAGIC
--- MAGIC Revert your table to the version before this `MERGE` statement completed.
+-- MAGIC Revert your table to the version before this **`MERGE`** statement completed.
-- COMMAND ----------
@@ -188,6 +210,8 @@ SELECT * FROM pre_delete_vw
-- COMMAND ----------
-- MAGIC %md
+-- MAGIC
+-- MAGIC
-- MAGIC Review the history of your table. Make note of the fact that restoring to a previous version adds another table version.
-- COMMAND ----------
@@ -204,10 +228,12 @@ DESCRIBE HISTORY beans
-- COMMAND ----------
-- MAGIC %md
+-- MAGIC
+-- MAGIC
-- MAGIC ## File Compaction
-- MAGIC Looking at the transaction metrics during your reversion, you are surprised you have some many files for such a small collection of data.
-- MAGIC
--- MAGIC While indexing on a table of this size is unlikely to improve performance, you decide to add a Z-order index on the `name` field in anticipation of your bean collection growing exponentially over time.
+-- MAGIC While indexing on a table of this size is unlikely to improve performance, you decide to add a Z-order index on the **`name`** field in anticipation of your bean collection growing exponentially over time.
-- MAGIC
-- MAGIC Use the cell below to perform file compaction and Z-order indexing.
@@ -219,6 +245,8 @@ DESCRIBE HISTORY beans
-- COMMAND ----------
-- MAGIC %md
+-- MAGIC
+-- MAGIC
-- MAGIC Your data should have been compacted to a single file; confirm this manually by running the following cell.
-- COMMAND ----------
@@ -228,6 +256,8 @@ DESCRIBE DETAIL beans
-- COMMAND ----------
-- MAGIC %md
+-- MAGIC
+-- MAGIC
-- MAGIC Run the cell below to check that you've successfully optimized and indexed your table.
-- COMMAND ----------
@@ -240,19 +270,21 @@ DESCRIBE DETAIL beans
-- COMMAND ----------
-- MAGIC %md
+-- MAGIC
+-- MAGIC
-- MAGIC ## Cleaning Up Stale Data Files
-- MAGIC
--- MAGIC You know that while all your data now resides in 1 data file, the data files from previous versions of your table are still being stored alongside this. You wish to remove these files and remove access to previous versions of the table by running `VACUUM` on the table.
+-- MAGIC You know that while all your data now resides in 1 data file, the data files from previous versions of your table are still being stored alongside this. You wish to remove these files and remove access to previous versions of the table by running **`VACUUM`** on the table.
-- MAGIC
--- MAGIC Executing `VACUUM` performs garbage cleanup on the table directory. By default, a retention threshold of 7 days will be enforced.
+-- MAGIC Executing **`VACUUM`** performs garbage cleanup on the table directory. By default, a retention threshold of 7 days will be enforced.
-- MAGIC
-- MAGIC The cell below modifies some Spark configurations. The first command overrides the retention threshold check to allow us to demonstrate permanent removal of data.
-- MAGIC
-- MAGIC **NOTE**: Vacuuming a production table with a short retention can lead to data corruption and/or failure of long-running queries. This is for demonstration purposes only and extreme caution should be used when disabling this setting.
-- MAGIC
--- MAGIC The second command sets `spark.databricks.delta.vacuum.logging.enabled` to `true` to ensures that the `VACUUM` operation is recorded in the transaction log.
+-- MAGIC The second command sets **`spark.databricks.delta.vacuum.logging.enabled`** to **`true`** to ensure that the **`VACUUM`** operation is recorded in the transaction log.
-- MAGIC
--- MAGIC **NOTE**: Because of slight differences in storage protocols on various clouds, logging `VACUUM` commands is not on by default for some clouds as of DBR 9.1.
+-- MAGIC **NOTE**: Because of slight differences in storage protocols on various clouds, logging **`VACUUM`** commands is not on by default for some clouds as of DBR 9.1.
-- COMMAND ----------
@@ -262,7 +294,9 @@ SET spark.databricks.delta.vacuum.logging.enabled = true;
-- COMMAND ----------
-- MAGIC %md
--- MAGIC Before permanently deleting data files, review them manually using the `DRY RUN` command.
+-- MAGIC
+-- MAGIC
+-- MAGIC Before permanently deleting data files, review them manually using the **`DRY RUN`** option.
-- COMMAND ----------
@@ -271,9 +305,11 @@ VACUUM beans RETAIN 0 HOURS DRY RUN
-- COMMAND ----------
-- MAGIC %md
+-- MAGIC
+-- MAGIC
-- MAGIC All data files not in the current version of the table will be shown in the preview above.
-- MAGIC
--- MAGIC Run the command again without `DRY RUN` to permanently delete these files.
+-- MAGIC Run the command again without **`DRY RUN`** to permanently delete these files.
-- MAGIC
-- MAGIC **NOTE**: All previous versions of the table will no longer be accessible.
@@ -284,7 +320,9 @@ VACUUM beans RETAIN 0 HOURS
-- COMMAND ----------
-- MAGIC %md
--- MAGIC Because `VACUUM` can be such a destructive act for important datasets, it's always a good idea to turn the retention duration check back on. Run the cell below to reactive this setting.
+-- MAGIC
+-- MAGIC
+-- MAGIC Because **`VACUUM`** can be such a destructive act for important datasets, it's always a good idea to turn the retention duration check back on. Run the cell below to reactive this setting.
-- COMMAND ----------
@@ -293,7 +331,9 @@ SET spark.databricks.delta.retentionDurationCheck.enabled = true
-- COMMAND ----------
-- MAGIC %md
--- MAGIC Note that the table history will indicate the user that completed the `VACUUM` operation, the number of files deleted, and log that the retention check was disabled during this operation.
+-- MAGIC
+-- MAGIC
+-- MAGIC Note that the table history will indicate the user that completed the **`VACUUM`** operation, the number of files deleted, and log that the retention check was disabled during this operation.
-- COMMAND ----------
@@ -302,6 +342,8 @@ DESCRIBE HISTORY beans
-- COMMAND ----------
-- MAGIC %md
+-- MAGIC
+-- MAGIC
-- MAGIC Query your table again to confirm you still have access to the current version.
-- COMMAND ----------
@@ -311,32 +353,42 @@ SELECT * FROM beans
-- COMMAND ----------
-- MAGIC %md
--- MAGIC Note that because Delta Cache stores copies of files queried in the current session on storage volumes deployed to your currently active cluster, you may still be able to temporarily access previous table versions (though systems should **not** be designed to expect this behavior). Restarting the cluster will ensure that these cached data files are permanently purged.
+-- MAGIC
+-- MAGIC
+-- MAGIC
Because Delta Cache stores copies of files queried in the current session on storage volumes deployed to your currently active cluster, you may still be able to temporarily access previous table versions (though systems should **not** be designed to expect this behavior).
+-- MAGIC
+-- MAGIC Restarting the cluster will ensure that these cached data files are permanently purged.
+-- MAGIC
+-- MAGIC You can see an example of this by uncommenting and running the following cell that may, or may not, fail
+-- MAGIC (depending on the state of the cache).
-- COMMAND ----------
-SELECT * FROM beans@v1
+-- SELECT * FROM beans@v1
-- COMMAND ----------
-- MAGIC %md
--- MAGIC ## Wrapping Up
-- MAGIC
--- MAGIC Run the following cell to remove the database and all data associated with this lab.
+-- MAGIC
+-- MAGIC By completing this lab, you should now feel comfortable:
+-- MAGIC * Completing standard Delta Lake table creation and data manipulation commands
+-- MAGIC * Reviewing table metadata including table history
+-- MAGIC * Leverage Delta Lake versioning for snapshot queries and rollbacks
+-- MAGIC * Compacting small files and indexing tables
+-- MAGIC * Using **`VACUUM`** to review files marked for deletion and committing these deletes
-- COMMAND ----------
--- MAGIC %run ../../Includes/sql-setup $course="delta" $mode="cleanup"
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC Run the following cell to delete the tables and files associated with this lesson.
-- COMMAND ----------
--- MAGIC %md
--- MAGIC By completing this lab, you should now feel comfortable:
--- MAGIC * Completing standard Delta Lake table creation and data manipulation commands
--- MAGIC * Reviewing table metadata including table history
--- MAGIC * Leverage Delta Lake versioning for snapshot queries and rollbacks
--- MAGIC * Compacting small files and indexing tables
--- MAGIC * Using `VACUUM` to review files marked for deletion and committing these deletes
+-- MAGIC %python
+-- MAGIC DA.cleanup()
-- COMMAND ----------
diff --git a/Data-Engineering-With-Databricks/02 - ELT with Spark SQL and Python/DE 2.1.1 - Databases and Tables on Databricks.sql b/Data-Engineering-with-Databricks/03 - Relational Entities on Databricks/DE 3.1 - Databases and Tables on Databricks.sql
similarity index 51%
rename from Data-Engineering-With-Databricks/02 - ELT with Spark SQL and Python/DE 2.1.1 - Databases and Tables on Databricks.sql
rename to Data-Engineering-with-Databricks/03 - Relational Entities on Databricks/DE 3.1 - Databases and Tables on Databricks.sql
index 9401dd3..d600477 100644
--- a/Data-Engineering-With-Databricks/02 - ELT with Spark SQL and Python/DE 2.1.1 - Databases and Tables on Databricks.sql
+++ b/Data-Engineering-with-Databricks/03 - Relational Entities on Databricks/DE 3.1 - Databases and Tables on Databricks.sql
@@ -8,36 +8,42 @@
-- COMMAND ----------
-- MAGIC %md
+-- MAGIC
+-- MAGIC
-- MAGIC # Databases and Tables on Databricks
-- MAGIC In this demonstration, you will create and explore databases and tables.
-- MAGIC
-- MAGIC ## Learning Objectives
--- MAGIC By the end of this lesson, you will be able to:
+-- MAGIC By the end of this lesson, you should be able to:
-- MAGIC * Use Spark SQL DDL to define databases and tables
--- MAGIC * Describe how the `LOCATION` keyword impacts the default storage directory
+-- MAGIC * Describe how the **`LOCATION`** keyword impacts the default storage directory
-- MAGIC
-- MAGIC
-- MAGIC
-- MAGIC **Resources**
--- MAGIC * [Databases and Tables - Databricks Docs](https://docs.databricks.com/user-guide/tables.html)
--- MAGIC * [Managed and Unmanaged Tables](https://docs.databricks.com/user-guide/tables.html#managed-and-unmanaged-tables)
--- MAGIC * [Creating a Table with the UI](https://docs.databricks.com/user-guide/tables.html#create-a-table-using-the-ui)
--- MAGIC * [Create a Local Table](https://docs.databricks.com/user-guide/tables.html#create-a-local-table)
--- MAGIC * [Saving to Persistent Tables](https://spark.apache.org/docs/latest/sql-data-sources-load-save-functions.html#saving-to-persistent-tables)
+-- MAGIC * Databases and Tables - Databricks Docs
+-- MAGIC * Managed and Unmanaged Tables
+-- MAGIC * Creating a Table with the UI
+-- MAGIC * Create a Local Table
+-- MAGIC * Saving to Persistent Tables
-- COMMAND ----------
-- MAGIC %md
+-- MAGIC
+-- MAGIC
-- MAGIC ## Lesson Setup
-- MAGIC The following script clears out previous runs of this demo and configures some Hive variables that will be used in our SQL queries.
-- COMMAND ----------
--- MAGIC %run ../Includes/setup-meta
+-- MAGIC %run ../Includes/Classroom-Setup-3.1
-- COMMAND ----------
-- MAGIC %md
+-- MAGIC
+-- MAGIC
-- MAGIC ## Using Hive Variables
-- MAGIC
-- MAGIC While not a pattern that is generally recommended in Spark SQL, this notebook will use some Hive variables to substitute in string values derived from the account email of the current user.
@@ -46,59 +52,76 @@
-- COMMAND ----------
-SELECT "${c.database}";
+SELECT "${da.db_name}" AS db_name,
+ "${da.paths.working_dir}" AS working_dir
-- COMMAND ----------
-- MAGIC %md
+-- MAGIC
+-- MAGIC
-- MAGIC Because you may be working in a shared workspace, this course uses variables derived from your username so the databases don't conflict with other users. Again, consider this use of Hive variables a hack for our lesson environment rather than a good practice for development.
-- COMMAND ----------
--- MAGIC %md
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
-- MAGIC ## Databases
-- MAGIC Let's start by creating two databases:
--- MAGIC - One with no LOCATION specified
--- MAGIC - One with LOCATION specified
+-- MAGIC - One with no **`LOCATION`** specified
+-- MAGIC - One with **`LOCATION`** specified
-- COMMAND ----------
-CREATE DATABASE IF NOT EXISTS ${c.database}_default_location;
-CREATE DATABASE IF NOT EXISTS ${c.database}_custom_location LOCATION '${c.userhome}';
+CREATE DATABASE IF NOT EXISTS ${da.db_name}_default_location;
+CREATE DATABASE IF NOT EXISTS ${da.db_name}_custom_location LOCATION '${da.paths.working_dir}/_custom_location.db';
-- COMMAND ----------
--- MAGIC %md
--- MAGIC Note that the location of the first database is in the default location under `dbfs:/user/hive/warehouse/`
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC Note that the location of the first database is in the default location under **`dbfs:/user/hive/warehouse/`** and that the database directory is the name of the database with the **`.db`** extension
-- COMMAND ----------
-DESCRIBE DATABASE EXTENDED ${c.database}_default_location;
+DESCRIBE DATABASE EXTENDED ${da.db_name}_default_location;
-- COMMAND ----------
-- MAGIC %md
--- MAGIC Note that the location of the second database is in the directory specified after the `LOCATION` keyword.
+-- MAGIC
+-- MAGIC
+-- MAGIC Note that the location of the second database is in the directory specified after the **`LOCATION`** keyword.
-- COMMAND ----------
-DESCRIBE DATABASE EXTENDED ${c.database}_custom_location;
+DESCRIBE DATABASE EXTENDED ${da.db_name}_custom_location;
-- COMMAND ----------
--- MAGIC %md
--- MAGIC We will create a table in the database with default location and insert data. Note that the schema must be provided because there are no data from which to infer the schema.
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC We will create a table in the database with default location and insert data.
+-- MAGIC
+-- MAGIC Note that the schema must be provided because there is no data from which to infer the schema.
-- COMMAND ----------
-USE ${c.database}_default_location;
+USE ${da.db_name}_default_location;
+
CREATE OR REPLACE TABLE managed_table_in_db_with_default_location (width INT, length INT, height INT);
-INSERT INTO managed_table_in_db_with_default_location VALUES (3, 2, 1);
+INSERT INTO managed_table_in_db_with_default_location
+VALUES (3, 2, 1);
SELECT * FROM managed_table_in_db_with_default_location;
-- COMMAND ----------
--- MAGIC %md
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
-- MAGIC We can look at the extended table description to find the location (you'll need to scroll down in the results).
-- COMMAND ----------
@@ -108,18 +131,30 @@ DESCRIBE EXTENDED managed_table_in_db_with_default_location;
-- COMMAND ----------
-- MAGIC %md
--- MAGIC By default, managed tables in a database without the location specified will be created in the `dbfs:/user/hive/warehouse/.db/` directory.
+-- MAGIC
+-- MAGIC
+-- MAGIC By default, managed tables in a database without the location specified will be created in the **`dbfs:/user/hive/warehouse/.db/`** directory.
-- MAGIC
-- MAGIC We can see that, as expected, the data and metadata for our Delta Table are stored in that location.
-- COMMAND ----------
-- MAGIC %python
--- MAGIC display(dbutils.fs.ls(f"dbfs:/user/hive/warehouse/{database}_default_location.db/managed_table_in_db_with_default_location"))
+-- MAGIC hive_root = f"dbfs:/user/hive/warehouse"
+-- MAGIC db_name = f"{DA.db_name}_default_location.db"
+-- MAGIC table_name = f"managed_table_in_db_with_default_location"
+-- MAGIC
+-- MAGIC tbl_location = f"{hive_root}/{db_name}/{table_name}"
+-- MAGIC print(tbl_location)
+-- MAGIC
+-- MAGIC files = dbutils.fs.ls(tbl_location)
+-- MAGIC display(files)
-- COMMAND ----------
--- MAGIC %md
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
-- MAGIC Drop the table.
-- COMMAND ----------
@@ -128,29 +163,41 @@ DROP TABLE managed_table_in_db_with_default_location;
-- COMMAND ----------
--- MAGIC %md
--- MAGIC Note the table's folder and its log and data file are deleted.
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC Note the table's directory and its log and data files are deleted. Only the database directory remains.
-- COMMAND ----------
-- MAGIC %python
--- MAGIC dbutils.fs.ls(f"dbfs:/user/hive/warehouse/{database}_default_location.db")
+-- MAGIC
+-- MAGIC db_location = f"{hive_root}/{db_name}"
+-- MAGIC print(db_location)
+-- MAGIC dbutils.fs.ls(db_location)
-- COMMAND ----------
--- MAGIC %md
--- MAGIC We now create a table in the database with custom location and insert data. Note that the schema must be provided because there are no data from which to infer the schema.
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC We now create a table in the database with custom location and insert data.
+-- MAGIC
+-- MAGIC Note that the schema must be provided because there is no data from which to infer the schema.
-- COMMAND ----------
-USE ${c.database}_custom_location;
+USE ${da.db_name}_custom_location;
+
CREATE OR REPLACE TABLE managed_table_in_db_with_custom_location (width INT, length INT, height INT);
INSERT INTO managed_table_in_db_with_custom_location VALUES (3, 2, 1);
SELECT * FROM managed_table_in_db_with_custom_location;
-- COMMAND ----------
--- MAGIC %md
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
-- MAGIC Again, we'll look at the description to find the table location.
-- COMMAND ----------
@@ -159,17 +206,27 @@ DESCRIBE EXTENDED managed_table_in_db_with_custom_location;
-- COMMAND ----------
--- MAGIC %md
--- MAGIC As expected, this managed table is created in the path specified with the `LOCATION` keyword during database creation. As such, the data and metadata for the table are persisted in a directory here.
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC As expected, this managed table is created in the path specified with the **`LOCATION`** keyword during database creation. As such, the data and metadata for the table are persisted in a directory here.
-- COMMAND ----------
-- MAGIC %python
--- MAGIC display(dbutils.fs.ls(f"{userhome}/managed_table_in_db_with_custom_location"))
+-- MAGIC
+-- MAGIC table_name = f"managed_table_in_db_with_custom_location"
+-- MAGIC tbl_location = f"{DA.paths.working_dir}/_custom_location.db/{table_name}"
+-- MAGIC print(tbl_location)
+-- MAGIC
+-- MAGIC files = dbutils.fs.ls(tbl_location)
+-- MAGIC display(files)
-- COMMAND ----------
--- MAGIC %md
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
-- MAGIC Let's drop the table.
-- COMMAND ----------
@@ -178,40 +235,51 @@ DROP TABLE managed_table_in_db_with_custom_location;
-- COMMAND ----------
--- MAGIC %md
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
-- MAGIC Note the table's folder and the log file and data file are deleted.
-- MAGIC
--- MAGIC Only the "datasets" folder remains.
+-- MAGIC Only the database location remains
-- COMMAND ----------
-- MAGIC %python
--- MAGIC dbutils.fs.ls(userhome)
+-- MAGIC
+-- MAGIC db_location = f"{DA.paths.working_dir}/_custom_location.db"
+-- MAGIC print(db_location)
+-- MAGIC
+-- MAGIC dbutils.fs.ls(db_location)
-- COMMAND ----------
--- MAGIC %md
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
-- MAGIC ## Tables
--- MAGIC We will create an external (unmanaged) table from sample data. The data we are going to use are in csv format. We want to create a Delta table with a LOCATION provided in the directory of our choice.
+-- MAGIC We will create an external (unmanaged) table from sample data.
+-- MAGIC
+-- MAGIC The data we are going to use are in CSV format. We want to create a Delta table with a **`LOCATION`** provided in the directory of our choice.
-- COMMAND ----------
-USE ${c.database}_default_location;
+USE ${da.db_name}_default_location;
--- mode "FAILFAST" will abort file parsing with a RuntimeException if any malformed lines are encountered
CREATE OR REPLACE TEMPORARY VIEW temp_delays USING CSV OPTIONS (
- path '${c.userhome}/datasets/flights/departuredelays.csv',
- header "true",
- mode "FAILFAST"
+ path = '${da.paths.working_dir}/flights/departuredelays.csv',
+ header = "true",
+ mode = "FAILFAST" -- abort file parsing with a RuntimeException if any malformed lines are encountered
);
-CREATE OR REPLACE TABLE external_table LOCATION '${c.userhome}/external_table' AS
+CREATE OR REPLACE TABLE external_table LOCATION '${da.paths.working_dir}/external_table' AS
SELECT * FROM temp_delays;
SELECT * FROM external_table;
-- COMMAND ----------
--- MAGIC %md
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
-- MAGIC Let's note the location of the table's data in this lesson's working directory.
-- COMMAND ----------
@@ -220,7 +288,9 @@ DESCRIBE TABLE EXTENDED external_table;
-- COMMAND ----------
--- MAGIC %md
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
-- MAGIC Now, we drop the table.
-- COMMAND ----------
@@ -229,34 +299,42 @@ DROP TABLE external_table;
-- COMMAND ----------
--- MAGIC %md
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
-- MAGIC The table definition no longer exists in the metastore, but the underlying data remain intact.
-- COMMAND ----------
-- MAGIC %python
--- MAGIC display(dbutils.fs.ls(f"{userhome}/external_table"))
+-- MAGIC tbl_path = f"{DA.paths.working_dir}/external_table"
+-- MAGIC files = dbutils.fs.ls(tbl_path)
+-- MAGIC display(files)
-- COMMAND ----------
--- MAGIC %md
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
-- MAGIC ## Clean up
-- MAGIC Drop both databases.
-- COMMAND ----------
-DROP DATABASE ${c.database}_default_location CASCADE;
-DROP DATABASE ${c.database}_custom_location CASCADE;
+DROP DATABASE ${da.db_name}_default_location CASCADE;
+DROP DATABASE ${da.db_name}_custom_location CASCADE;
-- COMMAND ----------
-- MAGIC %md
--- MAGIC Delete the working directory and its contents.
+-- MAGIC
+-- MAGIC
+-- MAGIC Run the following cell to delete the tables and files associated with this lesson.
-- COMMAND ----------
-- MAGIC %python
--- MAGIC dbutils.fs.rm(userhome, True)
+-- MAGIC DA.cleanup()
-- COMMAND ----------
diff --git a/Data-Engineering-with-Databricks/03 - Relational Entities on Databricks/DE 3.2A - Views and CTEs on Databricks.sql b/Data-Engineering-with-Databricks/03 - Relational Entities on Databricks/DE 3.2A - Views and CTEs on Databricks.sql
new file mode 100644
index 0000000..10fd81d
--- /dev/null
+++ b/Data-Engineering-with-Databricks/03 - Relational Entities on Databricks/DE 3.2A - Views and CTEs on Databricks.sql
@@ -0,0 +1,210 @@
+-- Databricks notebook source
+-- MAGIC %md-sandbox
+-- MAGIC
+-- MAGIC
+-- MAGIC

+-- MAGIC
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC # Views and CTEs on Databricks
+-- MAGIC In this demonstration, you will create and explore views and common table expressions (CTEs).
+-- MAGIC
+-- MAGIC ## Learning Objectives
+-- MAGIC By the end of this lesson, you should be able to:
+-- MAGIC * Use Spark SQL DDL to define views
+-- MAGIC * Run queries that use common table expressions
+-- MAGIC
+-- MAGIC
+-- MAGIC
+-- MAGIC **Resources**
+-- MAGIC * Create View - Databricks Docs
+-- MAGIC * Common Table Expressions - Databricks Docs
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC ## Classroom Setup
+-- MAGIC The following script clears out previous runs of this demo and configures some Hive variables that will be used in our SQL queries.
+
+-- COMMAND ----------
+
+-- MAGIC %run ../Includes/Classroom-Setup-3.2A
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC We start by creating a table of data we can use for the demonstration.
+
+-- COMMAND ----------
+
+-- mode "FAILFAST" will abort file parsing with a RuntimeException if any malformed lines are encountered
+CREATE TABLE external_table
+USING CSV OPTIONS (
+ path = '${da.paths.working_dir}/flight_delays',
+ header = "true",
+ mode = "FAILFAST"
+);
+
+SELECT * FROM external_table;
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC
+-- MAGIC To show a list of tables (and views), we use the **`SHOW TABLES`** command also demonstrated below.
+
+-- COMMAND ----------
+
+SHOW TABLES;
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC
+-- MAGIC ## Views, Temp Views & Global Temp Views
+-- MAGIC
+-- MAGIC To set this demonstration up, we are going to first create one of each type of view.
+-- MAGIC
+-- MAGIC Then in the next notebook, we will explore the differences between how each one behaves.
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC ### Views
+-- MAGIC Let's create a view that contains only the data where the origin is "ABQ" and the destination is "LAX".
+
+-- COMMAND ----------
+
+CREATE VIEW view_delays_abq_lax AS
+ SELECT *
+ FROM external_table
+ WHERE origin = 'ABQ' AND destination = 'LAX';
+
+SELECT * FROM view_delays_abq_lax;
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC
+-- MAGIC Note that the **`view_delays_abq_lax`** view has been added to the list below:
+
+-- COMMAND ----------
+
+SHOW TABLES;
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC ### Temporary Views
+-- MAGIC
+-- MAGIC Next we'll create a temporary view.
+-- MAGIC
+-- MAGIC The syntax is very similar but adds **`TEMPORARY`** to the command.
+
+-- COMMAND ----------
+
+CREATE TEMPORARY VIEW temp_view_delays_gt_120
+AS SELECT * FROM external_table WHERE delay > 120 ORDER BY delay ASC;
+
+SELECT * FROM temp_view_delays_gt_120;
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC
+-- MAGIC Now if we show our tables again, we will see the one table and both views.
+-- MAGIC
+-- MAGIC Make note of the values in the **`isTemporary`** column.
+
+-- COMMAND ----------
+
+SHOW TABLES;
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC
+-- MAGIC ### Global Temp Views
+-- MAGIC
+-- MAGIC Lastly, we'll create a global temp view.
+-- MAGIC
+-- MAGIC Here we simply add **`GLOBAL`** to the command.
+-- MAGIC
+-- MAGIC Also note the **`global_temp`** database qualifer in the subsequent **`SELECT`** statement.
+
+-- COMMAND ----------
+
+CREATE GLOBAL TEMPORARY VIEW global_temp_view_dist_gt_1000
+AS SELECT * FROM external_table WHERE distance > 1000;
+
+SELECT * FROM global_temp.global_temp_view_dist_gt_1000;
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC
+-- MAGIC Before we move on, review one last time the database's tables and views...
+
+-- COMMAND ----------
+
+SHOW TABLES;
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC
+-- MAGIC ...and the tables and views in the **`global_temp`** database:
+
+-- COMMAND ----------
+
+SHOW TABLES IN global_temp;
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC
+-- MAGIC Next we are going to demonstrate how tables and views are persisted across multiple sessions and how temp views are not.
+-- MAGIC
+-- MAGIC To do this simply open the next notebook, [DE 3.2B - Views and CTEs on Databricks, Cont]($./DE 3.2B - Views and CTEs on Databricks, Cont), and continue with the lesson.
+-- MAGIC
+-- MAGIC
Note: There are several scenarios in which a new session may be created:
+-- MAGIC * Restarting a cluster
+-- MAGIC * Detaching and reataching to a cluster
+-- MAGIC * Installing a python package which in turn restarts the Python interpreter
+-- MAGIC * Or simply opening a new notebook
+
+-- COMMAND ----------
+
+-- MAGIC %md-sandbox
+-- MAGIC © 2022 Databricks, Inc. All rights reserved.
+-- MAGIC Apache, Apache Spark, Spark and the Spark logo are trademarks of the Apache Software Foundation.
+-- MAGIC
+-- MAGIC Privacy Policy | Terms of Use | Support
diff --git a/Data-Engineering-with-Databricks/03 - Relational Entities on Databricks/DE 3.2B - Views and CTEs on Databricks, Cont.sql b/Data-Engineering-with-Databricks/03 - Relational Entities on Databricks/DE 3.2B - Views and CTEs on Databricks, Cont.sql
new file mode 100644
index 0000000..b00468c
--- /dev/null
+++ b/Data-Engineering-with-Databricks/03 - Relational Entities on Databricks/DE 3.2B - Views and CTEs on Databricks, Cont.sql
@@ -0,0 +1,262 @@
+-- Databricks notebook source
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC # Views and CTEs on Databricks, Cont'
+-- MAGIC
+-- MAGIC We are picking up from notebook [DE 3.2A - Views and CTEs on Databricks]($./DE 3.2A - Views and CTEs on Databricks) where we just reviewed the following two lists of tables
+-- MAGIC and views with the special note that our global temp view **`global_temp_view_dist_gt_1000`** was not included in the first list.
+
+-- COMMAND ----------
+
+-- MAGIC %md-sandbox
+-- MAGIC
+-- MAGIC
+-- MAGIC
+-- MAGIC
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC
+-- MAGIC With the Notebook's state reset, we need to re-initialize some of our lesson-specific configuration.
+-- MAGIC
+-- MAGIC Note: We will **NOT** be recreating the database for the second 1/2 of this lesson.
+
+-- COMMAND ----------
+
+-- MAGIC %run ../Includes/Classroom-Setup-3.2B
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC
+-- MAGIC But, we do need to configure this session to use our database by default.
+
+-- COMMAND ----------
+
+USE ${da.db_name};
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC
+-- MAGIC Finally, run the following two cells to confirm that:
+-- MAGIC 1. The table **`external_table`** still exists.
+-- MAGIC 2. The view **`view_delays_abq_lax`** still exists.
+-- MAGIC 3. The temp view **`temp_view_delays_gt_120`** does **NOT** exist.
+-- MAGIC 3. The global temp view **`global_temp_view_dist_gt_1000`** does exist in the special **`global_temp`** database.
+-- MAGIC
+-- MAGIC
Hint: If you were to go back to the previous notebook and run **`SHOW TABLES`**
+-- MAGIC again, all three tables and views from the current database will still be shown.
+
+-- COMMAND ----------
+
+SHOW TABLES;
+
+-- COMMAND ----------
+
+SHOW TABLES IN global_temp;
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC
+-- MAGIC As mentioned previously, temp views are tied to a Spark session and as such are not accessible...
+-- MAGIC * After restarting a cluster
+-- MAGIC * After detaching and reataching to a cluster
+-- MAGIC * After installing a python package which in turn restarts the Python interpreter
+-- MAGIC * Or from another notebook
+-- MAGIC
+-- MAGIC ...with the special exception of global temporary views.
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC
+-- MAGIC Global temp views behave much like other temporary views but differ in one important way.
+-- MAGIC
+-- MAGIC They are added to the **`global_temp`** database that exists on the **`cluster`**.
+-- MAGIC
+-- MAGIC As long as the cluster is running, this database persists and any notebooks attached to the cluster can access its global temporary views.
+-- MAGIC
+-- MAGIC We can see this in action by running the follow cells:
+
+-- COMMAND ----------
+
+SELECT * FROM global_temp.global_temp_view_dist_gt_1000;
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC
+-- MAGIC Global temp views are "lost" when the cluster is restarted.
+-- MAGIC
+-- MAGIC Take our word for it, don't do it now, but if you were to restart the cluster, the above select statement would fail because the table would no longer exist.
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC ## Common Table Expressions (CTEs)
+-- MAGIC CTEs can be used in a variety of contexts. Below, are a few examples of the different ways a CTE can be used in a query. First, an example of making multiple column aliases using a CTE.
+
+-- COMMAND ----------
+
+WITH flight_delays(
+ total_delay_time,
+ origin_airport,
+ destination_airport
+) AS (
+ SELECT
+ delay,
+ origin,
+ destination
+ FROM
+ external_table
+)
+SELECT
+ *
+FROM
+ flight_delays
+WHERE
+ total_delay_time > 120
+ AND origin_airport = "ATL"
+ AND destination_airport = "DEN";
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC Next, is an example of a CTE in a CTE definition.
+
+-- COMMAND ----------
+
+WITH lax_bos AS (
+ WITH origin_destination (origin_airport, destination_airport) AS (
+ SELECT
+ origin,
+ destination
+ FROM
+ external_table
+ )
+ SELECT
+ *
+ FROM
+ origin_destination
+ WHERE
+ origin_airport = 'LAX'
+ AND destination_airport = 'BOS'
+)
+SELECT
+ count(origin_airport) AS `Total Flights from LAX to BOS`
+FROM
+ lax_bos;
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC Now, here is an example of a CTE in a subquery.
+
+-- COMMAND ----------
+
+SELECT
+ max(total_delay) AS `Longest Delay (in minutes)`
+FROM
+ (
+ WITH delayed_flights(total_delay) AS (
+ SELECT
+ delay
+ FROM
+ external_table
+ )
+ SELECT
+ *
+ FROM
+ delayed_flights
+ );
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC We can also use a CTE in a subquery expression.
+
+-- COMMAND ----------
+
+SELECT
+ (
+ WITH distinct_origins AS (
+ SELECT DISTINCT origin FROM external_table
+ )
+ SELECT
+ count(origin) AS `Number of Distinct Origins`
+ FROM
+ distinct_origins
+ ) AS `Number of Different Origin Airports`;
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC Finally, here is a CTE in a **`CREATE VIEW`** statement.
+
+-- COMMAND ----------
+
+CREATE OR REPLACE VIEW BOS_LAX
+AS WITH origin_destination(origin_airport, destination_airport)
+AS (SELECT origin, destination FROM external_table)
+SELECT * FROM origin_destination
+WHERE origin_airport = 'BOS' AND destination_airport = 'LAX';
+
+SELECT count(origin_airport) AS `Number of Delayed Flights from BOS to LAX` FROM BOS_LAX;
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC ## Clean up
+-- MAGIC We first drop the training database.
+
+-- COMMAND ----------
+
+DROP DATABASE ${da.db_name} CASCADE;
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC Run the following cell to delete the tables and files associated with this lesson.
+
+-- COMMAND ----------
+
+-- MAGIC %python
+-- MAGIC DA.cleanup()
+
+-- COMMAND ----------
+
+-- MAGIC %md-sandbox
+-- MAGIC © 2022 Databricks, Inc. All rights reserved.
+-- MAGIC Apache, Apache Spark, Spark and the Spark logo are trademarks of the Apache Software Foundation.
+-- MAGIC
+-- MAGIC Privacy Policy | Terms of Use | Support
diff --git a/Data-Engineering-with-Databricks/03 - Relational Entities on Databricks/DE 3.3L - Databases, Tables & Views Lab.sql b/Data-Engineering-with-Databricks/03 - Relational Entities on Databricks/DE 3.3L - Databases, Tables & Views Lab.sql
new file mode 100644
index 0000000..cd1966e
--- /dev/null
+++ b/Data-Engineering-with-Databricks/03 - Relational Entities on Databricks/DE 3.3L - Databases, Tables & Views Lab.sql
@@ -0,0 +1,515 @@
+-- Databricks notebook source
+-- MAGIC %md-sandbox
+-- MAGIC
+-- MAGIC
+-- MAGIC

+-- MAGIC
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC # Databases, Tables, and Views Lab
+-- MAGIC
+-- MAGIC ## Learning Objectives
+-- MAGIC By the end of this lab, you should be able to:
+-- MAGIC - Create and explore interactions between various relational entities, including:
+-- MAGIC - Databases
+-- MAGIC - Tables (managed and external)
+-- MAGIC - Views (views, temp views, and global temp views)
+-- MAGIC
+-- MAGIC **Resources**
+-- MAGIC * Databases and Tables - Databricks Docs
+-- MAGIC * Managed and Unmanaged Tables
+-- MAGIC * Creating a Table with the UI
+-- MAGIC * Create a Local Table
+-- MAGIC * Saving to Persistent Tables
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC ### Getting Started
+-- MAGIC
+-- MAGIC Run the following cell to configure variables and datasets for this lesson.
+
+-- COMMAND ----------
+
+-- MAGIC %run ../Includes/Classroom-Setup-3.3L
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC ## Overview of the Data
+-- MAGIC
+-- MAGIC The data include multiple entries from a selection of weather stations, including average temperatures recorded in either Fahrenheit or Celsius. The schema for the table:
+-- MAGIC
+-- MAGIC |ColumnName | DataType| Description|
+-- MAGIC |------------|---------|------------|
+-- MAGIC |NAME |string | Station name |
+-- MAGIC |STATION |string | Unique ID |
+-- MAGIC |LATITUDE |float | Latitude |
+-- MAGIC |LONGITUDE |float | Longitude |
+-- MAGIC |ELEVATION |float | Elevation |
+-- MAGIC |DATE |date | YYYY-MM-DD |
+-- MAGIC |UNIT |string | Temperature units |
+-- MAGIC |TAVG |float | Average temperature |
+-- MAGIC
+-- MAGIC This data is stored in the Parquet format; preview the data with the query below.
+
+-- COMMAND ----------
+
+SELECT *
+FROM parquet.`${da.paths.working_dir}/weather`
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC ## Create a Database
+-- MAGIC
+-- MAGIC Create a database in the default location using the **`da.db_name`** variable defined in setup script.
+
+-- COMMAND ----------
+
+-- TODO
+
+ ${da.db_name}
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC Run the cell below to check your work.
+
+-- COMMAND ----------
+
+-- MAGIC %python
+-- MAGIC assert spark.sql(f"SHOW DATABASES").filter(f"databaseName == '{DA.db_name}'").count() == 1, "Database not present"
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC ## Change to Your New Database
+-- MAGIC
+-- MAGIC **`USE`** your newly created database.
+
+-- COMMAND ----------
+
+-- TODO
+
+ ${da.db_name}
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC Run the cell below to check your work.
+
+-- COMMAND ----------
+
+-- MAGIC %python
+-- MAGIC assert spark.sql(f"SHOW CURRENT DATABASE").first()["namespace"] == DA.db_name, "Not using the correct database"
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC ## Create a Managed Table
+-- MAGIC Use a CTAS statement to create a managed table named **`weather_managed`**.
+
+-- COMMAND ----------
+
+-- TODO
+
+
+SELECT *
+FROM parquet.`${da.paths.working_dir}/weather`
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC Run the cell below to check your work.
+
+-- COMMAND ----------
+
+-- MAGIC %python
+-- MAGIC assert spark.table("weather_managed"), "Table named `weather_managed` does not exist"
+-- MAGIC assert spark.table("weather_managed").count() == 2559, "Incorrect row count"
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC ## Create an External Table
+-- MAGIC
+-- MAGIC Recall that an external table differs from a managed table through specification of a location. Create an external table called **`weather_external`** below.
+
+-- COMMAND ----------
+
+-- TODO
+
+
+LOCATION "${da.paths.working_dir}/lab/external"
+AS SELECT *
+FROM parquet.`${da.paths.working_dir}/weather`
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC Run the cell below to check your work.
+
+-- COMMAND ----------
+
+-- MAGIC %python
+-- MAGIC assert spark.table("weather_external"), "Table named `weather_external` does not exist"
+-- MAGIC assert spark.table("weather_external").count() == 2559, "Incorrect row count"
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC ## Examine Table Details
+-- MAGIC Use the SQL command **`DESCRIBE EXTENDED table_name`** to examine the two weather tables.
+
+-- COMMAND ----------
+
+DESCRIBE EXTENDED weather_managed
+
+-- COMMAND ----------
+
+DESCRIBE EXTENDED weather_external
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC Run the following helper code to extract and compare the table locations.
+
+-- COMMAND ----------
+
+-- MAGIC %python
+-- MAGIC def getTableLocation(tableName):
+-- MAGIC return spark.sql(f"DESCRIBE DETAIL {tableName}").select("location").first()[0]
+
+-- COMMAND ----------
+
+-- MAGIC %python
+-- MAGIC managedTablePath = getTableLocation("weather_managed")
+-- MAGIC externalTablePath = getTableLocation("weather_external")
+-- MAGIC
+-- MAGIC print(f"""The weather_managed table is saved at:
+-- MAGIC
+-- MAGIC {managedTablePath}
+-- MAGIC
+-- MAGIC The weather_external table is saved at:
+-- MAGIC
+-- MAGIC {externalTablePath}""")
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC List the contents of these directories to confirm that data exists in both locations.
+
+-- COMMAND ----------
+
+-- MAGIC %python
+-- MAGIC files = dbutils.fs.ls(managedTablePath)
+-- MAGIC display(files)
+
+-- COMMAND ----------
+
+-- MAGIC %python
+-- MAGIC files = dbutils.fs.ls(externalTablePath)
+-- MAGIC display(files)
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC ### Check Directory Contents after Dropping Database and All Tables
+-- MAGIC The **`CASCADE`** keyword will accomplish this.
+
+-- COMMAND ----------
+
+-- TODO
+
+ ${da.db_name}
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC Run the cell below to check your work.
+
+-- COMMAND ----------
+
+-- MAGIC %python
+-- MAGIC assert spark.sql(f"SHOW DATABASES").filter(f"databaseName == '{DA.db_name}'").count() == 0, "Database present"
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC With the database dropped, the files will have been deleted as well.
+-- MAGIC
+-- MAGIC Uncomment and run the following cell, which will throw a **`FileNotFoundException`** as your confirmation.
+
+-- COMMAND ----------
+
+-- MAGIC %python
+-- MAGIC # files = dbutils.fs.ls(managedTablePath)
+-- MAGIC # display(files)
+
+-- COMMAND ----------
+
+-- MAGIC %python
+-- MAGIC files = dbutils.fs.ls(externalTablePath)
+-- MAGIC display(files)
+
+-- COMMAND ----------
+
+-- MAGIC %python
+-- MAGIC files = dbutils.fs.ls(DA.paths.working_dir)
+-- MAGIC display(files)
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC **This highlights the main differences between managed and external tables.** By default, the files associated with managed tables will be stored to this location on the root DBFS storage linked to the workspace, and will be deleted when a table is dropped.
+-- MAGIC
+-- MAGIC Files for external tables will be persisted in the location provided at table creation, preventing users from inadvertently deleting underlying files. **External tables can easily be migrated to other databases or renamed, but these operations with managed tables will require rewriting ALL underlying files.**
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC ## Create a Database with a Specified Path
+-- MAGIC
+-- MAGIC Assuming you dropped your database in the last step, you can use the same **`database`** name.
+
+-- COMMAND ----------
+
+CREATE DATABASE ${da.db_name} LOCATION '${da.paths.working_dir}/${da.db_name}';
+USE ${da.db_name};
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC Recreate your **`weather_managed`** table in this new database and print out the location of this table.
+
+-- COMMAND ----------
+
+-- TODO
+
+
+
+-- COMMAND ----------
+
+-- MAGIC %python
+-- MAGIC getTableLocation("weather_managed")
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC Run the cell below to check your work.
+
+-- COMMAND ----------
+
+-- MAGIC %python
+-- MAGIC assert spark.table("weather_managed"), "Table named `weather_managed` does not exist"
+-- MAGIC assert spark.table("weather_managed").count() == 2559, "Incorrect row count"
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC While here we're using the **`working_dir`** directory created on the DBFS root, _any_ object store can be used as the database directory. **Defining database directories for groups of users can greatly reduce the chances of accidental data exfiltration**.
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC ## Views and their Scoping
+-- MAGIC
+-- MAGIC Using the provided **`AS`** clause, register:
+-- MAGIC - a view named **`celsius`**
+-- MAGIC - a temporary view named **`celsius_temp`**
+-- MAGIC - a global temp view named **`celsius_global`**
+
+-- COMMAND ----------
+
+-- TODO
+
+
+AS (SELECT *
+ FROM weather_managed
+ WHERE UNIT = "C")
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC Run the cell below to check your work.
+
+-- COMMAND ----------
+
+-- MAGIC %python
+-- MAGIC assert spark.table("celsius"), "Table named `celsius` does not exist"
+-- MAGIC assert spark.sql(f"SHOW TABLES").filter(f"tableName == 'celsius'").first()["isTemporary"] == False, "Table is temporary"
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC Now create a temporary view.
+
+-- COMMAND ----------
+
+-- TODO
+
+
+AS (SELECT *
+ FROM weather_managed
+ WHERE UNIT = "C")
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC Run the cell below to check your work.
+
+-- COMMAND ----------
+
+-- MAGIC %python
+-- MAGIC assert spark.table("celsius_temp"), "Table named `celsius_temp` does not exist"
+-- MAGIC assert spark.sql(f"SHOW TABLES").filter(f"tableName == 'celsius_temp'").first()["isTemporary"] == True, "Table is not temporary"
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC Now register a global temp view.
+
+-- COMMAND ----------
+
+-- TODO
+
+
+AS (SELECT *
+ FROM weather_managed
+ WHERE UNIT = "C")
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC Run the cell below to check your work.
+
+-- COMMAND ----------
+
+-- MAGIC %python
+-- MAGIC assert spark.table("global_temp.celsius_global"), "Global temporary view named `celsius_global` does not exist"
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC Views will be displayed alongside tables when listing from the catalog.
+
+-- COMMAND ----------
+
+SHOW TABLES
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC Note the following:
+-- MAGIC - The view is associated with the current database. This view will be available to any user that can access this database and will persist between sessions.
+-- MAGIC - The temp view is not associated with any database. The temp view is ephemeral and is only accessible in the current SparkSession.
+-- MAGIC - The global temp view does not appear in our catalog. **Global temp views will always register to the **`global_temp`** database**. The **`global_temp`** database is ephemeral but tied to the lifetime of the cluster; however, it is only accessible by notebooks attached to the same cluster on which it was created.
+
+-- COMMAND ----------
+
+SELECT * FROM global_temp.celsius_global
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC While no job was triggered when defining these views, a job is triggered _each time_ a query is executed against the view.
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC ## Clean Up
+-- MAGIC Drop the database and all tables to clean up your workspace.
+
+-- COMMAND ----------
+
+DROP DATABASE ${da.db_name} CASCADE
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC ## Synopsis
+-- MAGIC
+-- MAGIC In this lab we:
+-- MAGIC - Created and deleted databases
+-- MAGIC - Explored behavior of managed and external tables
+-- MAGIC - Learned about the scoping of views
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC Run the following cell to delete the tables and files associated with this lesson.
+
+-- COMMAND ----------
+
+-- MAGIC %python
+-- MAGIC DA.cleanup()
+
+-- COMMAND ----------
+
+-- MAGIC %md-sandbox
+-- MAGIC © 2022 Databricks, Inc. All rights reserved.
+-- MAGIC Apache, Apache Spark, Spark and the Spark logo are trademarks of the Apache Software Foundation.
+-- MAGIC
+-- MAGIC Privacy Policy | Terms of Use | Support
diff --git a/Data-Engineering-With-Databricks/Solutions/02 - ELT with Spark SQL and Python/DE 2.2.1 - Querying Files Directly.sql b/Data-Engineering-with-Databricks/04 - ETL with Spark SQL/DE 4.1 - Querying Files Directly.sql
similarity index 57%
rename from Data-Engineering-With-Databricks/Solutions/02 - ELT with Spark SQL and Python/DE 2.2.1 - Querying Files Directly.sql
rename to Data-Engineering-with-Databricks/04 - ETL with Spark SQL/DE 4.1 - Querying Files Directly.sql
index 16a2882..e5710a6 100644
--- a/Data-Engineering-With-Databricks/Solutions/02 - ELT with Spark SQL and Python/DE 2.2.1 - Querying Files Directly.sql
+++ b/Data-Engineering-with-Databricks/04 - ETL with Spark SQL/DE 4.1 - Querying Files Directly.sql
@@ -8,40 +8,48 @@
-- COMMAND ----------
-- MAGIC %md
+-- MAGIC
+-- MAGIC
-- MAGIC # Extracting Data Directly from Files
-- MAGIC
-- MAGIC In this notebook, you'll learn to extract data directly from files using Spark SQL on Databricks.
-- MAGIC
-- MAGIC A number of file formats support this option, but it is most useful for self-describing data formats (such as parquet and JSON).
-- MAGIC
--- MAGIC ##### Objectives
+-- MAGIC ## Learning Objectives
+-- MAGIC By the end of this lesson, you should be able to:
-- MAGIC - Use Spark SQL to directly query data files
--- MAGIC - Layer views and CTEs to make referencing data files easier
--- MAGIC - Discuss limitations and applications of this approach
+-- MAGIC - Leverage **`text`** and **`binaryFile`** methods to review raw file contents
-- COMMAND ----------
-- MAGIC %md
+-- MAGIC
+-- MAGIC
-- MAGIC ## Run Setup
-- MAGIC
-- MAGIC The setup script will create the data and declare necessary values for the rest of this notebook to execute.
-- COMMAND ----------
--- MAGIC %run ../Includes/setup
+-- MAGIC %run ../Includes/Classroom-Setup-4.1
-- COMMAND ----------
-- MAGIC %md
+-- MAGIC
+-- MAGIC
-- MAGIC ## Data Overview
-- MAGIC
--- MAGIC In this example, we'll work with a sample of raw Kafka data written as JSON files. Each file contains all records consumed during a 5-second interval, stored with the full Kafka schema as a multiple-record JSON file.
+-- MAGIC In this example, we'll work with a sample of raw Kafka data written as JSON files.
+-- MAGIC
+-- MAGIC Each file contains all records consumed during a 5-second interval, stored with the full Kafka schema as a multiple-record JSON file.
-- MAGIC
-- MAGIC | field | type | description |
-- MAGIC | --- | --- | --- |
--- MAGIC | key | BINARY | The `user_id` field is used as the key; this is a unique alphanumeric field that corresponds to session/cookie information |
+-- MAGIC | key | BINARY | The **`user_id`** field is used as the key; this is a unique alphanumeric field that corresponds to session/cookie information |
-- MAGIC | value | BINARY | This is the full data payload (to be discussed later), sent as JSON |
--- MAGIC | topic | STRING | While the Kafka service hosts multiple topics, only those records from the `clickstream` topic are included here |
+-- MAGIC | topic | STRING | While the Kafka service hosts multiple topics, only those records from the **`clickstream`** topic are included here |
-- MAGIC | partition | INTEGER | Our current Kafka implementation uses only 2 partitions (0 and 1) |
-- MAGIC | offset | LONG | This is a unique value, monotonically increasing for each partition |
-- MAGIC | timestamp | LONG | This timestamp is recorded as milliseconds since epoch, and represents the time at which the producer appends a record to a partition |
@@ -49,59 +57,81 @@
-- COMMAND ----------
-- MAGIC %md
+-- MAGIC
+-- MAGIC
-- MAGIC Note that our source directory contains many JSON files.
-- COMMAND ----------
-- MAGIC %python
--- MAGIC len(dbutils.fs.ls(f"{Paths.source}/events/events-kafka.json"))
+-- MAGIC dataset_path = f"{DA.paths.datasets}/raw/events-kafka"
+-- MAGIC print(dataset_path)
+-- MAGIC
+-- MAGIC files = dbutils.fs.ls(dataset_path)
+-- MAGIC display(files)
-- COMMAND ----------
-- MAGIC %md
--- MAGIC Here, we'll be using relative file paths to data that's been written to the DBFS root. Most workflows will require users to access data from external cloud storage locations. In most companies, a workspace administrative will be responsible for configuring access to these storage locations.
-- MAGIC
--- MAGIC Instructions for configuring and accessing these locations can be found in the cloud-vendor specific courses titled "Cloud Architecture & Systems Integrations".
+-- MAGIC
+-- MAGIC Here, we'll be using relative file paths to data that's been written to the DBFS root.
+-- MAGIC
+-- MAGIC Most workflows will require users to access data from external cloud storage locations.
+-- MAGIC
+-- MAGIC In most companies, a workspace administrator will be responsible for configuring access to these storage locations.
+-- MAGIC
+-- MAGIC Instructions for configuring and accessing these locations can be found in the cloud-vendor specific self-paced courses titled "Cloud Architecture & Systems Integrations".
-- COMMAND ----------
-- MAGIC %md
+-- MAGIC
+-- MAGIC
-- MAGIC ## Query a Single File
-- MAGIC
-- MAGIC To query the data contained in a single file, execute the query with the following pattern:
-- MAGIC
--- MAGIC ```
--- MAGIC SELECT * FROM file_format.`/path/to/file`
--- MAGIC ```
+-- MAGIC SELECT * FROM file_format.`/path/to/file`
+-- MAGIC
+-- MAGIC Make special note of the use of back-ticks (not single quotes) around the path.
-- COMMAND ----------
-SELECT * FROM json.`${c.source}/events/events-kafka.json/001.json`
+SELECT * FROM json.`${da.paths.datasets}/raw/events-kafka/001.json`
-- COMMAND ----------
-- MAGIC %md
--- MAGIC Note that our preview displays all 94 rows of our source file.
+-- MAGIC
+-- MAGIC
+-- MAGIC Note that our preview displays all 321 rows of our source file.
-- COMMAND ----------
-- MAGIC %md
+-- MAGIC
+-- MAGIC
-- MAGIC ## Query a Directory of Files
-- MAGIC
--- MAGIC Assuming all of the files in a directory have the same format and schema, all files can be queried simultaneously by specifying the directory path rather than an individual file.
+-- MAGIC Assuming all of the files in a directory have the same format and schema, all files can be queried simultaneously by specifying the directory path rather than an individual file.
-- COMMAND ----------
-SELECT * FROM json.`${c.source}/events/events-kafka.json`
+SELECT * FROM json.`${da.paths.datasets}/raw/events-kafka`
-- COMMAND ----------
-- MAGIC %md
+-- MAGIC
+-- MAGIC
-- MAGIC By default, this query will only show the first 1000 rows.
-- COMMAND ----------
-- MAGIC %md
+-- MAGIC
+-- MAGIC
-- MAGIC ## Create References to Files
-- MAGIC This ability to directly query files and directories means that additional Spark logic can be chained to queries against files.
-- MAGIC
@@ -110,33 +140,49 @@ SELECT * FROM json.`${c.source}/events/events-kafka.json`
-- COMMAND ----------
CREATE OR REPLACE TEMP VIEW events_temp_view
-AS SELECT * FROM json.`${c.source}/events/events-kafka.json`;
+AS SELECT * FROM json.`${da.paths.datasets}/raw/events-kafka/`;
SELECT * FROM events_temp_view
-- COMMAND ----------
-- MAGIC %md
+-- MAGIC
+-- MAGIC
-- MAGIC ## Extract Text Files as Raw Strings
-- MAGIC
--- MAGIC When working with text-based files (which include JSON, CSV, TSV, and TXT formats), you can use the `text` format to load each line of the file as a row with one string column named `value`. This can be useful when data sources are prone to corruption and custom text parsing functions will be used to extract value from text fields.
+-- MAGIC When working with text-based files (which include JSON, CSV, TSV, and TXT formats), you can use the **`text`** format to load each line of the file as a row with one string column named **`value`**. This can be useful when data sources are prone to corruption and custom text parsing functions will be used to extract value from text fields.
-- COMMAND ----------
-SELECT * FROM text.`${c.source}/events/events-kafka.json`
+SELECT * FROM text.`${da.paths.datasets}/raw/events-kafka/`
-- COMMAND ----------
-- MAGIC %md
+-- MAGIC
+-- MAGIC
-- MAGIC ## Extract the Raw Bytes and Metadata of a File
-- MAGIC
--- MAGIC Some workflows may require working with entire files, such as when dealing with images or unstructured data. Using `binaryFile` to query a directory will provide file metadata alongside the binary representation of the file contents.
+-- MAGIC Some workflows may require working with entire files, such as when dealing with images or unstructured data. Using **`binaryFile`** to query a directory will provide file metadata alongside the binary representation of the file contents.
+-- MAGIC
+-- MAGIC Specifically, the fields created will indicate the **`path`**, **`modificationTime`**, **`length`**, and **`content`**.
+
+-- COMMAND ----------
+
+SELECT * FROM binaryFile.`${da.paths.datasets}/raw/events-kafka/`
+
+-- COMMAND ----------
+
+-- MAGIC %md
-- MAGIC
--- MAGIC Specifically, the fields created will indicate the `path`, `modificationTime`, `length`, and `content`.
+-- MAGIC
+-- MAGIC Run the following cell to delete the tables and files associated with this lesson.
-- COMMAND ----------
-SELECT * FROM binaryFile.`${c.source}/events/events-kafka.json`
+-- MAGIC %python
+-- MAGIC DA.cleanup()
-- COMMAND ----------
diff --git a/Data-Engineering-With-Databricks/02 - ELT with Spark SQL and Python/DE 2.2.2 - Providing Options for External Sources.sql b/Data-Engineering-with-Databricks/04 - ETL with Spark SQL/DE 4.2 - Providing Options for External Sources.sql
similarity index 68%
rename from Data-Engineering-With-Databricks/02 - ELT with Spark SQL and Python/DE 2.2.2 - Providing Options for External Sources.sql
rename to Data-Engineering-with-Databricks/04 - ETL with Spark SQL/DE 4.2 - Providing Options for External Sources.sql
index f6d44eb..cddc30a 100644
--- a/Data-Engineering-With-Databricks/02 - ELT with Spark SQL and Python/DE 2.2.2 - Providing Options for External Sources.sql
+++ b/Data-Engineering-with-Databricks/04 - ETL with Spark SQL/DE 4.2 - Providing Options for External Sources.sql
@@ -8,12 +8,15 @@
-- COMMAND ----------
-- MAGIC %md
+-- MAGIC
+-- MAGIC
-- MAGIC # Providing Options for External Sources
-- MAGIC While directly querying files works well for self-describing formats, many data sources require additional configurations or schema declaration to properly ingest records.
-- MAGIC
-- MAGIC In this lesson, we will create tables using external data sources. While these tables will not yet be stored in the Delta Lake format (and therefore not be optimized for the Lakehouse), this technique helps to facilitate extracting data from diverse external systems.
-- MAGIC
--- MAGIC ##### Objectives
+-- MAGIC ## Learning Objectives
+-- MAGIC By the end of this lesson, you should be able to:
-- MAGIC - Use Spark SQL to configure options for extracting data from external sources
-- MAGIC - Create tables against external data sources for various file formats
-- MAGIC - Describe default behavior when querying tables defined against external sources
@@ -21,17 +24,21 @@
-- COMMAND ----------
-- MAGIC %md
+-- MAGIC
+-- MAGIC
-- MAGIC ## Run Setup
-- MAGIC
-- MAGIC The setup script will create the data and declare necessary values for the rest of this notebook to execute.
-- COMMAND ----------
--- MAGIC %run ../Includes/setup-external
+-- MAGIC %run ../Includes/Classroom-Setup-4.2
-- COMMAND ----------
-- MAGIC %md
+-- MAGIC
+-- MAGIC
-- MAGIC ## When Direct Queries Don't Work
-- MAGIC
-- MAGIC While views can be used to persist direct queries against files between sessions, this approach has limited utility.
@@ -40,41 +47,46 @@
-- COMMAND ----------
-SELECT * FROM csv.`${c.source}/sales/sales.csv`
+SELECT * FROM csv.`${da.paths.working_dir}/sales-csv`
-- COMMAND ----------
-- MAGIC %md
+-- MAGIC
+-- MAGIC
-- MAGIC We can see from the above that:
-- MAGIC 1. The header row is being extracted as a table row
-- MAGIC 1. All columns are being loaded as a single column
--- MAGIC 1. The file is pipe-delimited (`|`)
+-- MAGIC 1. The file is pipe-delimited (**`|`**)
-- MAGIC 1. The final column appears to contain nested data that is being truncated
-- COMMAND ----------
-- MAGIC %md
+-- MAGIC
+-- MAGIC
-- MAGIC ## Registering Tables on External Data with Read Options
-- MAGIC
-- MAGIC While Spark will extract some self-describing data sources efficiently using default settings, many formats will require declaration of schema or other options.
-- MAGIC
--- MAGIC While there are many [additional configurations](https://docs.databricks.com/spark/latest/spark-sql/language-manual/sql-ref-syntax-ddl-create-table-datasource.html) you can set while creating tables against external sources, the syntax below demonstrates the essentials required to extract data from most formats.
+-- MAGIC While there are many additional configurations you can set while creating tables against external sources, the syntax below demonstrates the essentials required to extract data from most formats.
-- MAGIC
--- MAGIC ```
--- MAGIC CREATE TABLE table_identifier
--- MAGIC (col_name1 col_type1, ...)
--- MAGIC USING data_source
--- MAGIC OPTIONS (key1 = val1, key2 = val2, ...)
--- MAGIC LOCATION path
--- MAGIC ```
+-- MAGIC
+-- MAGIC CREATE TABLE table_identifier (col_name1 col_type1, ...)
+-- MAGIC USING data_source
+-- MAGIC OPTIONS (key1 = val1, key2 = val2, ...)
+-- MAGIC LOCATION = path
+-- MAGIC
-- MAGIC
--- MAGIC Note that options are passed with keys as unquoted text and values in quotes. Spark supports many [data sources](https://docs.databricks.com/data/data-sources/index.html) with custom options, and additional systems may have unofficial support through external [libraries](https://docs.databricks.com/libraries/index.html).
+-- MAGIC Note that options are passed with keys as unquoted text and values in quotes. Spark supports many data sources with custom options, and additional systems may have unofficial support through external libraries.
-- MAGIC
--- MAGIC **NOTE**: Depending on your workspace settings, you may need adminstrator assistance to load libraries and configure the requisite security settings for some data sources.
+-- MAGIC **NOTE**: Depending on your workspace settings, you may need administrator assistance to load libraries and configure the requisite security settings for some data sources.
-- COMMAND ----------
-- MAGIC %md
+-- MAGIC
+-- MAGIC
-- MAGIC The cell below demonstrates using Spark SQL DDL to create a table against an external CSV source, specifying:
-- MAGIC 1. The column names and types
-- MAGIC 1. The file format
@@ -84,8 +96,6 @@ SELECT * FROM csv.`${c.source}/sales/sales.csv`
-- COMMAND ----------
-DROP TABLE IF EXISTS sales_csv;
-
CREATE TABLE sales_csv
(order_id LONG, email STRING, transactions_timestamp LONG, total_item_quantity INTEGER, purchase_revenue_in_usd DOUBLE, unique_items INTEGER, items STRING)
USING CSV
@@ -93,11 +103,13 @@ OPTIONS (
header = "true",
delimiter = "|"
)
-LOCATION "${c.source}/sales/sales.csv"
+LOCATION "${da.paths.working_dir}/sales-csv"
-- COMMAND ----------
-- MAGIC %md
+-- MAGIC
+-- MAGIC
-- MAGIC Note that no data has moved during table declaration. Similar to when we directly queried our files and created a view, we are still just pointing to files stored in an external location.
-- MAGIC
-- MAGIC Run the following cell to confirm that data is now being loaded correctly.
@@ -113,11 +125,13 @@ SELECT COUNT(*) FROM sales_csv
-- COMMAND ----------
-- MAGIC %md
+-- MAGIC
+-- MAGIC
-- MAGIC All the metadata and options passed during table declaration will be persisted to the metastore, ensuring that data in the location will always be read with these options.
-- MAGIC
-- MAGIC **NOTE**: When working with CSVs as a data source, it's important to ensure that column order does not change if additional data files will be added to the source directory. Because the data format does not have strong schema enforcement, Spark will load columns and apply column names and data types in the order specified during table declaration.
-- MAGIC
--- MAGIC Running `DESCRIBE EXTENDED` on a table will show all of the metadata associated with the table definition.
+-- MAGIC Running **`DESCRIBE EXTENDED`** on a table will show all of the metadata associated with the table definition.
-- COMMAND ----------
@@ -126,6 +140,8 @@ DESCRIBE EXTENDED sales_csv
-- COMMAND ----------
-- MAGIC %md
+-- MAGIC
+-- MAGIC
-- MAGIC ## Limits of Tables with External Data Sources
-- MAGIC
-- MAGIC If you've taken other courses on Databricks or reviewed any of our company literature, you may have heard about Delta Lake and the Lakehouse. Note that whenever we're defining tables or queries against external data sources, we **cannot** expect the performance guarantees associated with Delta Lake and Lakehouse.
@@ -137,11 +153,16 @@ DESCRIBE EXTENDED sales_csv
-- COMMAND ----------
-- MAGIC %python
--- MAGIC spark.table("sales_csv").write.mode("append").format("csv").save(f"{Paths.source}/sales/sales.csv")
+-- MAGIC (spark.table("sales_csv")
+-- MAGIC .write.mode("append")
+-- MAGIC .format("csv")
+-- MAGIC .save(f"{DA.paths.working_dir}/sales-csv"))
-- COMMAND ----------
-- MAGIC %md
+-- MAGIC
+-- MAGIC
-- MAGIC If we look at the current count of records in our table, the number we see will not reflect these newly inserted rows.
-- COMMAND ----------
@@ -151,9 +172,13 @@ SELECT COUNT(*) FROM sales_csv
-- COMMAND ----------
-- MAGIC %md
+-- MAGIC
+-- MAGIC
-- MAGIC At the time we previously queried this data source, Spark automatically cached the underlying data in local storage. This ensures that on subsequent queries, Spark will provide the optimal performance by just querying this local cache.
-- MAGIC
--- MAGIC Our external data source is not configured to tell Spark is should refresh this data. We **can** manually refresh the cache of our data by running the `REFRESH TABLE` command.
+-- MAGIC Our external data source is not configured to tell Spark that it should refresh this data.
+-- MAGIC
+-- MAGIC We **can** manually refresh the cache of our data by running the **`REFRESH TABLE`** command.
-- COMMAND ----------
@@ -162,7 +187,11 @@ REFRESH TABLE sales_csv
-- COMMAND ----------
-- MAGIC %md
--- MAGIC Note that refreshing our table will invalidate our cache, meaning that we'll need to rescan our original data source and pull all data back into memory. For very large datasets, this may take a significant amount of time.
+-- MAGIC
+-- MAGIC
+-- MAGIC Note that refreshing our table will invalidate our cache, meaning that we'll need to rescan our original data source and pull all data back into memory.
+-- MAGIC
+-- MAGIC For very large datasets, this may take a significant amount of time.
-- COMMAND ----------
@@ -171,37 +200,46 @@ SELECT COUNT(*) FROM sales_csv
-- COMMAND ----------
-- MAGIC %md
+-- MAGIC
+-- MAGIC
-- MAGIC ## Extracting Data from SQL Databases
-- MAGIC SQL databases are an extremely common data source, and Databricks has a standard JDBC driver for connecting with many flavors of SQL.
-- MAGIC
-- MAGIC The general syntax for creating these connections is:
--- MAGIC ```
--- MAGIC CREATE TABLE
--- MAGIC USING org.apache.spark.sql.jdbc
--- MAGIC OPTIONS (
--- MAGIC url "jdbc:://:",
--- MAGIC dbtable ".table",
--- MAGIC user "",
--- MAGIC password ""
+-- MAGIC
+-- MAGIC
+-- MAGIC CREATE TABLE
+-- MAGIC USING JDBC
+-- MAGIC OPTIONS (
+-- MAGIC url = "jdbc:{databaseServerType}://{jdbcHostname}:{jdbcPort}",
+-- MAGIC dbtable = "{jdbcDatabase}.table",
+-- MAGIC user = "{jdbcUsername}",
+-- MAGIC password = "{jdbcPassword}"
-- MAGIC )
--- MAGIC ```
+-- MAGIC
-- MAGIC
--- MAGIC In the code sample below, we'll connect with SQLite (which uses a local file to store a database, and doesn't have users and passwords).
+-- MAGIC In the code sample below, we'll connect with SQLite.
+-- MAGIC
+-- MAGIC **NOTE:** SQLite uses a local file to store a database, and doesn't require a port, username, or password.
+-- MAGIC
+-- MAGIC
**WARNING**: The backend-configuration of the JDBC server assume you are running this notebook on a single-node cluster. If you are running on a cluster with multiple workers, the client running in the executors will not be able to connect to the driver.
-- COMMAND ----------
DROP TABLE IF EXISTS users_jdbc;
CREATE TABLE users_jdbc
-USING org.apache.spark.sql.jdbc
+USING JDBC
OPTIONS (
- url "jdbc:sqlite:/${c.username}_ecommerce.db",
- dbtable "users"
+ url = "jdbc:sqlite:/${da.username}_ecommerce.db",
+ dbtable = "users"
)
-- COMMAND ----------
-- MAGIC %md
+-- MAGIC
+-- MAGIC
-- MAGIC Now we can query this table as if it were defined locally.
-- COMMAND ----------
@@ -211,6 +249,8 @@ SELECT * FROM users_jdbc
-- COMMAND ----------
-- MAGIC %md
+-- MAGIC
+-- MAGIC
-- MAGIC Looking at the table metadata reveals that we have captured the schema information from the external system. Storage properties (which would include the username and password associated with the connection) are automatically redacted.
-- COMMAND ----------
@@ -220,12 +260,14 @@ DESCRIBE EXTENDED users_jdbc
-- COMMAND ----------
-- MAGIC %md
--- MAGIC While the table is listed as `MANAGED`, listing the contents of the specified location confirms that no data is being persisted locally.
+-- MAGIC
+-- MAGIC
+-- MAGIC While the table is listed as **`MANAGED`**, listing the contents of the specified location confirms that no data is being persisted locally.
-- COMMAND ----------
-- MAGIC %python
--- MAGIC jdbc_users_path = f"{Paths.database_location}/jdbc_users"
+-- MAGIC jdbc_users_path = f"{DA.paths.user_db}/users_jdbc/"
-- MAGIC print(jdbc_users_path)
-- MAGIC
-- MAGIC files = dbutils.fs.ls(jdbc_users_path)
@@ -234,6 +276,8 @@ DESCRIBE EXTENDED users_jdbc
-- COMMAND ----------
-- MAGIC %md
+-- MAGIC
+-- MAGIC
-- MAGIC Note that some SQL systems such as data warehouses will have custom drivers. Spark will interact with various external databases differently, but the two basic approaches can be summarized as either:
-- MAGIC 1. Moving the entire source table(s) to Databricks and then executing logic on the currently active cluster
-- MAGIC 1. Pushing down the query to the external SQL database and only transferring the results back to Databricks
@@ -244,6 +288,18 @@ DESCRIBE EXTENDED users_jdbc
-- COMMAND ----------
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC Run the following cell to delete the tables and files associated with this lesson.
+
+-- COMMAND ----------
+
+-- MAGIC %python
+-- MAGIC DA.cleanup()
+
+-- COMMAND ----------
+
-- MAGIC %md-sandbox
-- MAGIC © 2022 Databricks, Inc. All rights reserved.
-- MAGIC Apache, Apache Spark, Spark and the Spark logo are trademarks of the Apache Software Foundation.
diff --git a/Data-Engineering-with-Databricks/04 - ETL with Spark SQL/DE 4.3 - Creating Delta Tables.sql b/Data-Engineering-with-Databricks/04 - ETL with Spark SQL/DE 4.3 - Creating Delta Tables.sql
new file mode 100644
index 0000000..ff80a07
--- /dev/null
+++ b/Data-Engineering-with-Databricks/04 - ETL with Spark SQL/DE 4.3 - Creating Delta Tables.sql
@@ -0,0 +1,380 @@
+-- Databricks notebook source
+-- MAGIC %md-sandbox
+-- MAGIC
+-- MAGIC
+-- MAGIC

+-- MAGIC
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC # Creating Delta Tables
+-- MAGIC
+-- MAGIC After extracting data from external data sources, load data into the Lakehouse to ensure that all of the benefits of the Databricks platform can be fully leveraged.
+-- MAGIC
+-- MAGIC While different organizations may have varying policies for how data is initially loaded into Databricks, we typically recommend that early tables represent a mostly raw version of the data, and that validation and enrichment occur in later stages. This pattern ensures that even if data doesn't match expectations with regards to data types or column names, no data will be dropped, meaning that programmatic or manual intervention can still salvage data in a partially corrupted or invalid state.
+-- MAGIC
+-- MAGIC This lesson will focus primarily on the pattern used to create most tables, **`CREATE TABLE _ AS SELECT`** (CTAS) statements.
+-- MAGIC
+-- MAGIC ## Learning Objectives
+-- MAGIC By the end of this lesson, you should be able to:
+-- MAGIC - Use CTAS statements to create Delta Lake tables
+-- MAGIC - Create new tables from existing views or tables
+-- MAGIC - Enrich loaded data with additional metadata
+-- MAGIC - Declare table schema with generated columns and descriptive comments
+-- MAGIC - Set advanced options to control data location, quality enforcement, and partitioning
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC ## Run Setup
+-- MAGIC
+-- MAGIC The setup script will create the data and declare necessary values for the rest of this notebook to execute.
+
+-- COMMAND ----------
+
+-- MAGIC %run ../Includes/Classroom-Setup-4.3
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC
+-- MAGIC ## Create Table as Select (CTAS)
+-- MAGIC
+-- MAGIC **`CREATE TABLE AS SELECT`** statements create and populate Delta tables using data retrieved from an input query.
+
+-- COMMAND ----------
+
+CREATE OR REPLACE TABLE sales AS
+SELECT * FROM parquet.`${da.paths.datasets}/raw/sales-historical/`;
+
+DESCRIBE EXTENDED sales;
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC CTAS statements automatically infer schema information from query results and do **not** support manual schema declaration.
+-- MAGIC
+-- MAGIC This means that CTAS statements are useful for external data ingestion from sources with well-defined schema, such as Parquet files and tables.
+-- MAGIC
+-- MAGIC CTAS statements also do not support specifying additional file options.
+-- MAGIC
+-- MAGIC We can see how this would present significant limitations when trying to ingest data from CSV files.
+
+-- COMMAND ----------
+
+CREATE OR REPLACE TABLE sales_unparsed AS
+SELECT * FROM csv.`${da.paths.datasets}/raw/sales-csv/`;
+
+SELECT * FROM sales_unparsed;
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC To correctly ingest this data to a Delta Lake table, we'll need to use a reference to the files that allows us to specify options.
+-- MAGIC
+-- MAGIC In the previous lesson, we showed doing this by registering an external table. Here, we'll slightly evolve this syntax to specify the options to a temporary view, and then use this temp view as the source for a CTAS statement to successfully register the Delta table.
+
+-- COMMAND ----------
+
+CREATE OR REPLACE TEMP VIEW sales_tmp_vw
+ (order_id LONG, email STRING, transactions_timestamp LONG, total_item_quantity INTEGER, purchase_revenue_in_usd DOUBLE, unique_items INTEGER, items STRING)
+USING CSV
+OPTIONS (
+ path = "${da.paths.datasets}/raw/sales-csv",
+ header = "true",
+ delimiter = "|"
+);
+
+CREATE TABLE sales_delta AS
+ SELECT * FROM sales_tmp_vw;
+
+SELECT * FROM sales_delta
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC ## Filtering and Renaming Columns from Existing Tables
+-- MAGIC
+-- MAGIC Simple transformations like changing column names or omitting columns from target tables can be easily accomplished during table creation.
+-- MAGIC
+-- MAGIC The following statement creates a new table containing a subset of columns from the **`sales`** table.
+-- MAGIC
+-- MAGIC Here, we'll presume that we're intentionally leaving out information that potentially identifies the user or that provides itemized purchase details. We'll also rename our fields with the assumption that a downstream system has different naming conventions than our source data.
+
+-- COMMAND ----------
+
+CREATE OR REPLACE TABLE purchases AS
+SELECT order_id AS id, transaction_timestamp, purchase_revenue_in_usd AS price
+FROM sales;
+
+SELECT * FROM purchases
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC Note that we could have accomplished this same goal with a view, as shown below.
+
+-- COMMAND ----------
+
+CREATE OR REPLACE VIEW purchases_vw AS
+SELECT order_id AS id, transaction_timestamp, purchase_revenue_in_usd AS price
+FROM sales;
+
+SELECT * FROM purchases_vw
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC ## Declare Schema with Generated Columns
+-- MAGIC
+-- MAGIC As noted previously, CTAS statements do not support schema declaration. We note above that the timestamp column appears to be some variant of a Unix timestamp, which may not be the most useful for our analysts to derive insights. This is a situation where generated columns would be beneficial.
+-- MAGIC
+-- MAGIC Generated columns are a special type of column whose values are automatically generated based on a user-specified function over other columns in the Delta table (introduced in DBR 8.3).
+-- MAGIC
+-- MAGIC The code below demonstrates creating a new table while:
+-- MAGIC 1. Specifying column names and types
+-- MAGIC 1. Adding a generated column to calculate the date
+-- MAGIC 1. Providing a descriptive column comment for the generated column
+
+-- COMMAND ----------
+
+CREATE OR REPLACE TABLE purchase_dates (
+ id STRING,
+ transaction_timestamp STRING,
+ price STRING,
+ date DATE GENERATED ALWAYS AS (
+ cast(cast(transaction_timestamp/1e6 AS TIMESTAMP) AS DATE))
+ COMMENT "generated based on `transactions_timestamp` column")
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC
+-- MAGIC Because **`date`** is a generated column, if we write to **`purchase_dates`** without providing values for the **`date`** column, Delta Lake automatically computes them.
+-- MAGIC
+-- MAGIC **NOTE**: The cell below configures a setting to allow for generating columns when using a Delta Lake **`MERGE`** statement. We'll see more on this syntax later in the course.
+
+-- COMMAND ----------
+
+SET spark.databricks.delta.schema.autoMerge.enabled=true;
+
+MERGE INTO purchase_dates a
+USING purchases b
+ON a.id = b.id
+WHEN NOT MATCHED THEN
+ INSERT *
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC We can see below that all dates were computed correctly as data was inserted, although neither our source data or insert query specified the values in this field.
+-- MAGIC
+-- MAGIC As with any Delta Lake source, the query automatically reads the most recent snapshot of the table for any query; you never need to run **`REFRESH TABLE`**.
+
+-- COMMAND ----------
+
+SELECT * FROM purchase_dates
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC
+-- MAGIC It's important to note that if a field that would otherwise be generated is included in an insert to a table, this insert will fail if the value provided does not exactly match the value that would be derived by the logic used to define the generated column.
+-- MAGIC
+-- MAGIC We can see this error by uncommenting and running the cell below:
+
+-- COMMAND ----------
+
+-- INSERT INTO purchase_dates VALUES
+-- (1, 600000000, 42.0, "2020-06-18")
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC ## Add a Table Constraint
+-- MAGIC
+-- MAGIC The error message above refers to a **`CHECK constraint`**. Generated columns are a special implementation of check constraints.
+-- MAGIC
+-- MAGIC Because Delta Lake enforces schema on write, Databricks can support standard SQL constraint management clauses to ensure the quality and integrity of data added to a table.
+-- MAGIC
+-- MAGIC Databricks currently support two types of constraints:
+-- MAGIC * **`NOT NULL`** constraints
+-- MAGIC * **`CHECK`** constraints
+-- MAGIC
+-- MAGIC In both cases, you must ensure that no data violating the constraint is already in the table prior to defining the constraint. Once a constraint has been added to a table, data violating the constraint will result in write failure.
+-- MAGIC
+-- MAGIC Below, we'll add a **`CHECK`** constraint to the **`date`** column of our table. Note that **`CHECK`** constraints look like standard **`WHERE`** clauses you might use to filter a dataset.
+
+-- COMMAND ----------
+
+ALTER TABLE purchase_dates ADD CONSTRAINT valid_date CHECK (date > '2020-01-01');
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC Table constraints are shown in the **`TBLPROPERTIES`** field.
+
+-- COMMAND ----------
+
+DESCRIBE EXTENDED purchase_dates
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC ## Enrich Tables with Additional Options and Metadata
+-- MAGIC
+-- MAGIC So far we've only scratched the surface as far as the options for enriching Delta Lake tables.
+-- MAGIC
+-- MAGIC Below, we show evolving a CTAS statement to include a number of additional configurations and metadata.
+-- MAGIC
+-- MAGIC Our **`SELECT`** clause leverages two built-in Spark SQL commands useful for file ingestion:
+-- MAGIC * **`current_timestamp()`** records the timestamp when the logic is executed
+-- MAGIC * **`input_file_name()`** records the source data file for each record in the table
+-- MAGIC
+-- MAGIC We also include logic to create a new date column derived from timestamp data in the source.
+-- MAGIC
+-- MAGIC The **`CREATE TABLE`** clause contains several options:
+-- MAGIC * A **`COMMENT`** is added to allow for easier discovery of table contents
+-- MAGIC * A **`LOCATION`** is specified, which will result in an external (rather than managed) table
+-- MAGIC * The table is **`PARTITIONED BY`** a date column; this means that the data from each data will exist within its own directory in the target storage location
+-- MAGIC
+-- MAGIC **NOTE**: Partitioning is shown here primarily to demonstrate syntax and impact. Most Delta Lake tables (especially small-to-medium sized data) will not benefit from partitioning. Because partitioning physically separates data files, this approach can result in a small files problem and prevent file compaction and efficient data skipping. The benefits observed in Hive or HDFS do not translate to Delta Lake, and you should consult with an experienced Delta Lake architect before partitioning tables.
+-- MAGIC
+-- MAGIC **As a best practice, you should default to non-partitioned tables for most use cases when working with Delta Lake.**
+
+-- COMMAND ----------
+
+CREATE OR REPLACE TABLE users_pii
+COMMENT "Contains PII"
+LOCATION "${da.paths.working_dir}/tmp/users_pii"
+PARTITIONED BY (first_touch_date)
+AS
+ SELECT *,
+ cast(cast(user_first_touch_timestamp/1e6 AS TIMESTAMP) AS DATE) first_touch_date,
+ current_timestamp() updated,
+ input_file_name() source_file
+ FROM parquet.`${da.paths.datasets}/raw/users-historical/`;
+
+SELECT * FROM users_pii;
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC The metadata fields added to the table provide useful information to understand when records were inserted and from where. This can be especially helpful if troubleshooting problems in the source data becomes necessary.
+-- MAGIC
+-- MAGIC All of the comments and properties for a given table can be reviewed using **`DESCRIBE TABLE EXTENDED`**.
+-- MAGIC
+-- MAGIC **NOTE**: Delta Lake automatically adds several table properties on table creation.
+
+-- COMMAND ----------
+
+DESCRIBE EXTENDED users_pii
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC Listing the location used for the table reveals that the unique values in the partition column **`first_touch_date`** are used to create data directories.
+
+-- COMMAND ----------
+
+-- MAGIC %python
+-- MAGIC files = dbutils.fs.ls(f"{DA.paths.working_dir}/tmp/users_pii")
+-- MAGIC display(files)
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC ## Cloning Delta Lake Tables
+-- MAGIC Delta Lake has two options for efficiently copying Delta Lake tables.
+-- MAGIC
+-- MAGIC **`DEEP CLONE`** fully copies data and metadata from a source table to a target. This copy occurs incrementally, so executing this command again can sync changes from the source to the target location.
+
+-- COMMAND ----------
+
+CREATE OR REPLACE TABLE purchases_clone
+DEEP CLONE purchases
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC Because all the data files must be copied over, this can take quite a while for large datasets.
+-- MAGIC
+-- MAGIC If you wish to create a copy of a table quickly to test out applying changes without the risk of modifying the current table, **`SHALLOW CLONE`** can be a good option. Shallow clones just copy the Delta transaction logs, meaning that the data doesn't move.
+
+-- COMMAND ----------
+
+CREATE OR REPLACE TABLE purchases_shallow_clone
+SHALLOW CLONE purchases
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC In either case, data modifications applied to the cloned version of the table will be tracked and stored separately from the source. Cloning is a great way to set up tables for testing SQL code while still in development.
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC ## Summary
+-- MAGIC
+-- MAGIC In this notebook, we focused primarily on DDL and syntax for creating Delta Lake tables. In the next notebook, we'll explore options for writing updates to tables.
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC Run the following cell to delete the tables and files associated with this lesson.
+
+-- COMMAND ----------
+
+-- MAGIC %python
+-- MAGIC DA.cleanup()
+
+-- COMMAND ----------
+
+-- MAGIC %md-sandbox
+-- MAGIC © 2022 Databricks, Inc. All rights reserved.
+-- MAGIC Apache, Apache Spark, Spark and the Spark logo are trademarks of the Apache Software Foundation.
+-- MAGIC
+-- MAGIC Privacy Policy | Terms of Use | Support
diff --git a/Data-Engineering-with-Databricks/04 - ETL with Spark SQL/DE 4.4 - Writing to Tables.sql b/Data-Engineering-with-Databricks/04 - ETL with Spark SQL/DE 4.4 - Writing to Tables.sql
new file mode 100644
index 0000000..80a61dc
--- /dev/null
+++ b/Data-Engineering-with-Databricks/04 - ETL with Spark SQL/DE 4.4 - Writing to Tables.sql
@@ -0,0 +1,263 @@
+-- Databricks notebook source
+-- MAGIC %md-sandbox
+-- MAGIC
+-- MAGIC
+-- MAGIC

+-- MAGIC
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC # Writing to Delta Tables
+-- MAGIC Delta Lake tables provide ACID compliant updates to tables backed by data files in cloud object storage.
+-- MAGIC
+-- MAGIC In this notebook, we'll explore SQL syntax to process updates with Delta Lake. While many operations are standard SQL, slight variations exist to accommodate Spark and Delta Lake execution.
+-- MAGIC
+-- MAGIC ## Learning Objectives
+-- MAGIC By the end of this lesson, you should be able to:
+-- MAGIC - Overwrite data tables using **`INSERT OVERWRITE`**
+-- MAGIC - Append to a table using **`INSERT INTO`**
+-- MAGIC - Append, update, and delete from a table using **`MERGE INTO`**
+-- MAGIC - Ingest data incrementally into tables using **`COPY INTO`**
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC ## Run Setup
+-- MAGIC
+-- MAGIC The setup script will create the data and declare necessary values for the rest of this notebook to execute.
+
+-- COMMAND ----------
+
+-- MAGIC %run ../Includes/Classroom-Setup-4.4
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC ## Complete Overwrites
+-- MAGIC
+-- MAGIC We can use overwrites to atomically replace all of the data in a table. There are multiple benefits to overwriting tables instead of deleting and recreating tables:
+-- MAGIC - Overwriting a table is much faster because it doesn’t need to list the directory recursively or delete any files.
+-- MAGIC - The old version of the table still exists; can easily retrieve the old data using Time Travel.
+-- MAGIC - It’s an atomic operation. Concurrent queries can still read the table while you are deleting the table.
+-- MAGIC - Due to ACID transaction guarantees, if overwriting the table fails, the table will be in its previous state.
+-- MAGIC
+-- MAGIC Spark SQL provides two easy methods to accomplish complete overwrites.
+-- MAGIC
+-- MAGIC Some students may have noticed previous lesson on CTAS statements actually used CRAS statements (to avoid potential errors if a cell was run multiple times).
+-- MAGIC
+-- MAGIC **`CREATE OR REPLACE TABLE`** (CRAS) statements fully replace the contents of a table each time they execute.
+
+-- COMMAND ----------
+
+CREATE OR REPLACE TABLE events AS
+SELECT * FROM parquet.`${da.paths.datasets}/raw/events-historical`
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC Reviewing the table history shows a previous version of this table was replaced.
+
+-- COMMAND ----------
+
+DESCRIBE HISTORY events
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC **`INSERT OVERWRITE`** provides a nearly identical outcome as above: data in the target table will be replaced by data from the query.
+-- MAGIC
+-- MAGIC **`INSERT OVERWRITE`**:
+-- MAGIC
+-- MAGIC - Can only overwrite an existing table, not create a new one like our CRAS statement
+-- MAGIC - Can overwrite only with new records that match the current table schema -- and thus can be a "safer" technique for overwriting an existing table without disrupting downstream consumers
+-- MAGIC - Can overwrite individual partitions
+
+-- COMMAND ----------
+
+INSERT OVERWRITE sales
+SELECT * FROM parquet.`${da.paths.datasets}/raw/sales-historical/`
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC Note that different metrics are displayed than a CRAS statement; the table history also records the operation differently.
+
+-- COMMAND ----------
+
+DESCRIBE HISTORY sales
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC A primary difference here has to do with how Delta Lake enforces schema on write.
+-- MAGIC
+-- MAGIC Whereas a CRAS statement will allow us to completely redefine the contents of our target table, **`INSERT OVERWRITE`** will fail if we try to change our schema (unless we provide optional settings).
+-- MAGIC
+-- MAGIC Uncomment and run the cell below to generated an expected error message.
+
+-- COMMAND ----------
+
+-- INSERT OVERWRITE sales
+-- SELECT *, current_timestamp() FROM parquet.`${da.paths.datasets}/raw/sales-historical`
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC
+-- MAGIC ## Append Rows
+-- MAGIC
+-- MAGIC We can use **`INSERT INTO`** to atomically append new rows to an existing Delta table. This allows for incremental updates to existing tables, which is much more efficient than overwriting each time.
+-- MAGIC
+-- MAGIC Append new sale records to the **`sales`** table using **`INSERT INTO`**.
+
+-- COMMAND ----------
+
+INSERT INTO sales
+SELECT * FROM parquet.`${da.paths.datasets}/raw/sales-30m`
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC
+-- MAGIC Note that **`INSERT INTO`** does not have any built-in guarantees to prevent inserting the same records multiple times. Re-executing the above cell would write the same records to the target table, resulting in duplicate records.
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC
+-- MAGIC ## Merge Updates
+-- MAGIC
+-- MAGIC You can upsert data from a source table, view, or DataFrame into a target Delta table using the **`MERGE`** SQL operation. Delta Lake supports inserts, updates and deletes in **`MERGE`**, and supports extended syntax beyond the SQL standards to facilitate advanced use cases.
+-- MAGIC
+-- MAGIC
+-- MAGIC MERGE INTO target a
+-- MAGIC USING source b
+-- MAGIC ON {merge_condition}
+-- MAGIC WHEN MATCHED THEN {matched_action}
+-- MAGIC WHEN NOT MATCHED THEN {not_matched_action}
+-- MAGIC
+-- MAGIC
+-- MAGIC We will use the **`MERGE`** operation to update historic users data with updated emails and new users.
+
+-- COMMAND ----------
+
+CREATE OR REPLACE TEMP VIEW users_update AS
+SELECT *, current_timestamp() AS updated
+FROM parquet.`${da.paths.datasets}/raw/users-30m`
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC The main benefits of **`MERGE`**:
+-- MAGIC * updates, inserts, and deletes are completed as a single transaction
+-- MAGIC * multiple conditionals can be added in addition to matching fields
+-- MAGIC * provides extensive options for implementing custom logic
+-- MAGIC
+-- MAGIC Below, we'll only update records if the current row has a **`NULL`** email and the new row does not.
+-- MAGIC
+-- MAGIC All unmatched records from the new batch will be inserted.
+
+-- COMMAND ----------
+
+MERGE INTO users a
+USING users_update b
+ON a.user_id = b.user_id
+WHEN MATCHED AND a.email IS NULL AND b.email IS NOT NULL THEN
+ UPDATE SET email = b.email, updated = b.updated
+WHEN NOT MATCHED THEN INSERT *
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC Note that we explicitly specify the behavior of this function for both the **`MATCHED`** and **`NOT MATCHED`** conditions; the example demonstrated here is just an example of logic that can be applied, rather than indicative of all **`MERGE`** behavior.
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC ## Insert-Only Merge for Deduplication
+-- MAGIC
+-- MAGIC A common ETL use case is to collect logs or other every-appending datasets into a Delta table through a series of append operations.
+-- MAGIC
+-- MAGIC Many source systems can generate duplicate records. With merge, you can avoid inserting the duplicate records by performing an insert-only merge.
+-- MAGIC
+-- MAGIC This optimized command uses the same **`MERGE`** syntax but only provided a **`WHEN NOT MATCHED`** clause.
+-- MAGIC
+-- MAGIC Below, we use this to confirm that records with the same **`user_id`** and **`event_timestamp`** aren't already in the **`events`** table.
+
+-- COMMAND ----------
+
+MERGE INTO events a
+USING events_update b
+ON a.user_id = b.user_id AND a.event_timestamp = b.event_timestamp
+WHEN NOT MATCHED AND b.traffic_source = 'email' THEN
+ INSERT *
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC ## Load Incrementally
+-- MAGIC
+-- MAGIC **`COPY INTO`** provides SQL engineers an idempotent option to incrementally ingest data from external systems.
+-- MAGIC
+-- MAGIC Note that this operation does have some expectations:
+-- MAGIC - Data schema should be consistent
+-- MAGIC - Duplicate records should try to be excluded or handled downstream
+-- MAGIC
+-- MAGIC This operation is potentially much cheaper than full table scans for data that grows predictably.
+-- MAGIC
+-- MAGIC While here we'll show simple execution on a static directory, the real value is in multiple executions over time picking up new files in the source automatically.
+
+-- COMMAND ----------
+
+COPY INTO sales
+FROM "${da.paths.datasets}/raw/sales-30m"
+FILEFORMAT = PARQUET
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC Run the following cell to delete the tables and files associated with this lesson.
+
+-- COMMAND ----------
+
+-- MAGIC %python
+-- MAGIC DA.cleanup()
+
+-- COMMAND ----------
+
+-- MAGIC %md-sandbox
+-- MAGIC © 2022 Databricks, Inc. All rights reserved.
+-- MAGIC Apache, Apache Spark, Spark and the Spark logo are trademarks of the Apache Software Foundation.
+-- MAGIC
+-- MAGIC Privacy Policy | Terms of Use | Support
diff --git a/Data-Engineering-With-Databricks/02 - ELT with Spark SQL and Python/Labs/DE 2.2.5L - Extract and Load Data Lab.sql b/Data-Engineering-with-Databricks/04 - ETL with Spark SQL/DE 4.5L - Extract and Load Data Lab.sql
similarity index 68%
rename from Data-Engineering-With-Databricks/02 - ELT with Spark SQL and Python/Labs/DE 2.2.5L - Extract and Load Data Lab.sql
rename to Data-Engineering-with-Databricks/04 - ETL with Spark SQL/DE 4.5L - Extract and Load Data Lab.sql
index 93818ac..35fb287 100644
--- a/Data-Engineering-With-Databricks/02 - ELT with Spark SQL and Python/Labs/DE 2.2.5L - Extract and Load Data Lab.sql
+++ b/Data-Engineering-with-Databricks/04 - ETL with Spark SQL/DE 4.5L - Extract and Load Data Lab.sql
@@ -8,11 +8,14 @@
-- COMMAND ----------
-- MAGIC %md
+-- MAGIC
+-- MAGIC
-- MAGIC # Extract and Load Data Lab
-- MAGIC
-- MAGIC In this lab, you will extract and load raw data from JSON files into a Delta table.
-- MAGIC
--- MAGIC ##### Objectives
+-- MAGIC ## Learning Objectives
+-- MAGIC By the end of this lab, you should be able to:
-- MAGIC - Create an external table to extract data from JSON files
-- MAGIC - Create an empty Delta table with a provided schema
-- MAGIC - Insert records from an existing table into a Delta table
@@ -21,60 +24,78 @@
-- COMMAND ----------
-- MAGIC %md
+-- MAGIC
+-- MAGIC
-- MAGIC ## Run Setup
-- MAGIC
-- MAGIC Run the following cell to configure variables and datasets for this lesson.
-- COMMAND ----------
--- MAGIC %run ../../Includes/setup
+-- MAGIC %run ../Includes/Classroom-Setup-4.5L
-- COMMAND ----------
-- MAGIC %md
+-- MAGIC
+-- MAGIC
-- MAGIC ## Overview of the Data
-- MAGIC
--- MAGIC We will work with a sample of raw Kafka data written as JSON files. Each file contains all records consumed during a 5-second interval, stored with the full Kafka schema as a multiple-record JSON file. The schema for the table:
+-- MAGIC We will work with a sample of raw Kafka data written as JSON files.
+-- MAGIC
+-- MAGIC Each file contains all records consumed during a 5-second interval, stored with the full Kafka schema as a multiple-record JSON file.
+-- MAGIC
+-- MAGIC The schema for the table:
-- MAGIC
-- MAGIC | field | type | description |
-- MAGIC | ------ | ---- | ----------- |
--- MAGIC | key | BINARY | The `user_id` field is used as the key; this is a unique alphanumeric field that corresponds to session/cookie information |
+-- MAGIC | key | BINARY | The **`user_id`** field is used as the key; this is a unique alphanumeric field that corresponds to session/cookie information |
-- MAGIC | offset | LONG | This is a unique value, monotonically increasing for each partition |
-- MAGIC | partition | INTEGER | Our current Kafka implementation uses only 2 partitions (0 and 1) |
-- MAGIC | timestamp | LONG | This timestamp is recorded as milliseconds since epoch, and represents the time at which the producer appends a record to a partition |
--- MAGIC | topic | STRING | While the Kafka service hosts multiple topics, only those records from the `clickstream` topic are included here |
+-- MAGIC | topic | STRING | While the Kafka service hosts multiple topics, only those records from the **`clickstream`** topic are included here |
-- MAGIC | value | BINARY | This is the full data payload (to be discussed later), sent as JSON |
-- COMMAND ----------
--- MAGIC %md
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
-- MAGIC ## Extract Raw Events From JSON Files
-- MAGIC To load this data into Delta properly, we first need to extract the JSON data using the correct schema.
-- MAGIC
--- MAGIC Create an external table against JSON files located at the filepath provided below. Name this table `events_json` and declare the schema above.
+-- MAGIC Create an external table against JSON files located at the filepath provided below. Name this table **`events_json`** and declare the schema above.
-- COMMAND ----------
-- TODO
- {c.source}/events/events-kafka.json
+ ${da.paths.datasets}/raw/events-kafka/
-- COMMAND ----------
-- MAGIC %md
--- MAGIC **NOTE**: We'll use Python to run checks occasionally throughout the lab. The following cell will return as error with a message on what needs to change if you have not followed instructions. No output from cell execution means that you have completed this step.
+-- MAGIC
+-- MAGIC
+-- MAGIC **NOTE**: We'll use Python to run checks occasionally throughout the lab. The following cell will return an error with a message on what needs to change if you have not followed instructions. No output from cell execution means that you have completed this step.
-- COMMAND ----------
-- MAGIC %python
-- MAGIC assert spark.table("events_json"), "Table named `events_json` does not exist"
-- MAGIC assert spark.table("events_json").columns == ['key', 'offset', 'partition', 'timestamp', 'topic', 'value'], "Please name the columns in the order provided above"
--- MAGIC assert spark.table("events_json").dtypes == [('key', 'binary'), ('offset', 'int'), ('partition', 'bigint'), ('timestamp', 'bigint'), ('topic', 'string'), ('value', 'binary')], "Please make sure the column types are identical to those provided above"
--- MAGIC assert spark.table("events_json").count() == 45105, "The table should have 45105 records"
+-- MAGIC assert spark.table("events_json").dtypes == [('key', 'binary'), ('offset', 'bigint'), ('partition', 'int'), ('timestamp', 'bigint'), ('topic', 'string'), ('value', 'binary')], "Please make sure the column types are identical to those provided above"
+-- MAGIC
+-- MAGIC total = spark.table("events_json").count()
+-- MAGIC assert total == 2252, f"Expected 2252 records, found {total}"
-- COMMAND ----------
--- MAGIC %md ## Insert Raw Events Into Delta Table
--- MAGIC Create a managed Delta table named `events_raw` using the same schema - we'll load the data extracted above into this empty table.
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC
+-- MAGIC ## Insert Raw Events Into Delta Table
+-- MAGIC Create an empty managed Delta table named **`events_raw`** using the same schema.
-- COMMAND ----------
@@ -83,19 +104,27 @@
-- COMMAND ----------
--- MAGIC %md Run the cell below to confirm the table was created correctly.
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC
+-- MAGIC Run the cell below to confirm the table was created correctly.
-- COMMAND ----------
-- MAGIC %python
--- MAGIC assert spark.table("events_raw"), "Table named `events_json` does not exist"
+-- MAGIC assert spark.table("events_raw"), "Table named `events_raw` does not exist"
-- MAGIC assert spark.table("events_raw").columns == ['key', 'offset', 'partition', 'timestamp', 'topic', 'value'], "Please name the columns in the order provided above"
-- MAGIC assert spark.table("events_raw").dtypes == [('key', 'binary'), ('offset', 'bigint'), ('partition', 'int'), ('timestamp', 'bigint'), ('topic', 'string'), ('value', 'binary')], "Please make sure the column types are identical to those provided above"
-- MAGIC assert spark.table("events_raw").count() == 0, "The table should have 0 records"
-- COMMAND ----------
--- MAGIC %md Once the extracted data and Delta table are ready, insert the JSON records from the `events_json` table into the new `events_raw` Delta table.
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC
+-- MAGIC Once the extracted data and Delta table are ready, insert the JSON records from the **`events_json`** table into the new **`events_raw`** Delta table.
-- COMMAND ----------
@@ -105,6 +134,8 @@
-- COMMAND ----------
-- MAGIC %md
+-- MAGIC
+-- MAGIC
-- MAGIC Manually review the table contents to ensure data was written as expected.
-- COMMAND ----------
@@ -115,28 +146,38 @@
-- COMMAND ----------
-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC
-- MAGIC Run the cell below to confirm the data has been loaded correctly.
-- COMMAND ----------
-- MAGIC %python
--- MAGIC assert spark.table("events_raw").count() == 45105, "The table should have 45105 records"
--- MAGIC assert set(row['timestamp'] for row in spark.table("events_raw").select("timestamp").limit(5).collect()) == {1593879300053, 1593879300372, 1593879300607, 1593879300739, 1593879300821}, "Make sure you have not modified the data provided"
+-- MAGIC assert spark.table("events_raw").count() == 2252, "The table should have 2252 records"
+-- MAGIC assert set(row['timestamp'] for row in spark.table("events_raw").select("timestamp").limit(5).collect()) == {1593880885085, 1593880892303, 1593880889174, 1593880886106, 1593880889725}, "Make sure you have not modified the data provided"
-- COMMAND ----------
--- MAGIC %md ## Create Delta Table from a Query
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC
+-- MAGIC ## Create Delta Table from a Query
-- MAGIC In addition to new events data, let's also load a small lookup table that provides product details that we'll use later in the course.
--- MAGIC Use a CTAS statement to create a managed Delta table named `item_lookup` that extracts data from the parquet directory provided below.
+-- MAGIC Use a CTAS statement to create a managed Delta table named **`item_lookup`** that extracts data from the parquet directory provided below.
-- COMMAND ----------
-- TODO
- {c.source}/products/products.parquet
+ ${da.paths.datasets}/raw/item-lookup
-- COMMAND ----------
-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC
-- MAGIC Run the cell below to confirm the lookup table has been loaded correctly.
-- COMMAND ----------
@@ -147,6 +188,18 @@
-- COMMAND ----------
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC Run the following cell to delete the tables and files associated with this lesson.
+
+-- COMMAND ----------
+
+-- MAGIC %python
+-- MAGIC DA.cleanup()
+
+-- COMMAND ----------
+
-- MAGIC %md-sandbox
-- MAGIC © 2022 Databricks, Inc. All rights reserved.
-- MAGIC Apache, Apache Spark, Spark and the Spark logo are trademarks of the Apache Software Foundation.
diff --git a/Data-Engineering-with-Databricks/04 - ETL with Spark SQL/DE 4.6 - Cleaning Data.sql b/Data-Engineering-with-Databricks/04 - ETL with Spark SQL/DE 4.6 - Cleaning Data.sql
new file mode 100644
index 0000000..56c1bb3
--- /dev/null
+++ b/Data-Engineering-with-Databricks/04 - ETL with Spark SQL/DE 4.6 - Cleaning Data.sql
@@ -0,0 +1,326 @@
+-- Databricks notebook source
+-- MAGIC %md-sandbox
+-- MAGIC
+-- MAGIC
+-- MAGIC

+-- MAGIC
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC # Cleaning Data
+-- MAGIC
+-- MAGIC Most transformations completed with Spark SQL will be familiar to SQL-savvy developers.
+-- MAGIC
+-- MAGIC As we inspect and clean our data, we'll need to construct various column expressions and queries to express transformations to apply on our dataset.
+-- MAGIC
+-- MAGIC Column expressions are constructed from existing columns, operators, and built-in Spark SQL functions. They can be used in **`SELECT`** statements to express transformations that create new columns from datasets.
+-- MAGIC
+-- MAGIC Along with **`SELECT`**, many additional query commands can be used to express transformations in Spark SQL, including **`WHERE`**, **`DISTINCT`**, **`ORDER BY`**, **`GROUP BY`**, etc.
+-- MAGIC
+-- MAGIC In this notebook, we'll review a few concepts that might differ from other systems you're used to, as well as calling out a few useful functions for common operations.
+-- MAGIC
+-- MAGIC We'll pay special attention to behaviors around **`NULL`** values, as well as formatting strings and datetime fields.
+-- MAGIC
+-- MAGIC ## Learning Objectives
+-- MAGIC By the end of this lesson, you should be able to:
+-- MAGIC - Summarize datasets and describe null behaviors
+-- MAGIC - Retrieve and removing duplicates
+-- MAGIC - Validate datasets for expected counts, missing values, and duplicate records
+-- MAGIC - Apply common transformations to clean and transform data
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC ## Run Setup
+-- MAGIC
+-- MAGIC The setup script will create the data and declare necessary values for the rest of this notebook to execute.
+
+-- COMMAND ----------
+
+-- MAGIC %run ../Includes/Classroom-Setup-4.6
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC We'll work with new users records in **`users_dirty`** table for this lesson.
+
+-- COMMAND ----------
+
+SELECT * FROM users_dirty
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC ## Inspect Data
+-- MAGIC
+-- MAGIC Let's start by counting values in each field of our data.
+
+-- COMMAND ----------
+
+SELECT count(user_id), count(user_first_touch_timestamp), count(email), count(updated), count(*)
+FROM users_dirty
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC Note that **`count(col)`** skips **`NULL`** values when counting specific columns or expressions.
+-- MAGIC
+-- MAGIC However, **`count(*)`** is a special case that counts the total number of rows (including rows that are only **`NULL`** values).
+-- MAGIC
+-- MAGIC To count null values, use the **`count_if`** function or **`WHERE`** clause to provide a condition that filters for records where the value **`IS NULL`**.
+
+-- COMMAND ----------
+
+SELECT
+ count_if(user_id IS NULL) AS missing_user_ids,
+ count_if(user_first_touch_timestamp IS NULL) AS missing_timestamps,
+ count_if(email IS NULL) AS missing_emails,
+ count_if(updated IS NULL) AS missing_updates
+FROM users_dirty
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC Clearly there are at least a handful of null values in all of our fields. Let's try to discover what is causing this.
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC ## Distinct Records
+-- MAGIC
+-- MAGIC Start by looking for distinct rows.
+
+-- COMMAND ----------
+
+SELECT count(DISTINCT(*))
+FROM users_dirty
+
+-- COMMAND ----------
+
+SELECT count(DISTINCT(user_id))
+FROM users_dirty
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC Because **`user_id`** is generated alongside the **`user_first_touch_timestamp`**, these fields should always be in parity for counts.
+
+-- COMMAND ----------
+
+SELECT count(DISTINCT(user_first_touch_timestamp))
+FROM users_dirty
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC Here we note that while there are some duplicate records relative to our total row count, we have a much higher number of distinct values.
+-- MAGIC
+-- MAGIC Let's go ahead and combine our distinct counts with columnar counts to see these values side-by-side.
+
+-- COMMAND ----------
+
+SELECT
+ count(user_id) AS total_ids,
+ count(DISTINCT user_id) AS unique_ids,
+ count(email) AS total_emails,
+ count(DISTINCT email) AS unique_emails,
+ count(updated) AS total_updates,
+ count(DISTINCT(updated)) AS unique_updates,
+ count(*) AS total_rows,
+ count(DISTINCT(*)) AS unique_non_null_rows
+FROM users_dirty
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC Based on the above summary, we know:
+-- MAGIC * All of our emails are unique
+-- MAGIC * Our emails contain the largest number of null values
+-- MAGIC * The **`updated`** column contains only 1 distinct value, but most are non-null
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC ## Deduplicate Rows
+-- MAGIC Based on the above behavior, what do you expect will happen if we use **`DISTINCT *`** to try to remove duplicate records?
+
+-- COMMAND ----------
+
+CREATE OR REPLACE TEMP VIEW users_deduped AS
+ SELECT DISTINCT(*) FROM users_dirty;
+
+SELECT * FROM users_deduped
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC Note in the preview above that there appears to be null values, even though our **`COUNT(DISTINCT(*))`** ignored these nulls.
+-- MAGIC
+-- MAGIC How many rows do you expect passed through this **`DISTINCT`** command?
+
+-- COMMAND ----------
+
+SELECT COUNT(*) FROM users_deduped
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC Note that we now have a completely new number.
+-- MAGIC
+-- MAGIC Spark skips null values while counting values in a column or counting distinct values for a field, but does not omit rows with nulls from a **`DISTINCT`** query.
+-- MAGIC
+-- MAGIC Indeed, the reason we're seeing a new number that is 1 higher than previous counts is because we have 3 rows that are all nulls (here included as a single distinct row).
+
+-- COMMAND ----------
+
+SELECT * FROM users_dirty
+WHERE
+ user_id IS NULL AND
+ user_first_touch_timestamp IS NULL AND
+ email IS NULL AND
+ updated IS NULL
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC ## Deduplicate Based on Specific Columns
+-- MAGIC
+-- MAGIC Recall that **`user_id`** and **`user_first_touch_timestamp`** should form unique tuples, as they are both generated when a given user is first encountered.
+-- MAGIC
+-- MAGIC We can see that we have some null values in each of these fields; exclude nulls counting the distinct number of pairs for these fields will get us the correct count for distinct values in our table.
+
+-- COMMAND ----------
+
+SELECT COUNT(DISTINCT(user_id, user_first_touch_timestamp))
+FROM users_dirty
+WHERE user_id IS NOT NULL
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC Here, we'll use these distinct pairs to remove unwanted rows from our data.
+-- MAGIC
+-- MAGIC The code below uses **`GROUP BY`** to remove duplicate records based on **`user_id`** and **`user_first_touch_timestamp`**.
+-- MAGIC
+-- MAGIC The **`max()`** aggregate function is used on the **`email`** column as a hack to capture non-null emails when multiple records are present; in this batch, all **`updated`** values were equivalent, but we need to use an aggregate function to keep this value in the result of our group by.
+
+-- COMMAND ----------
+
+CREATE OR REPLACE TEMP VIEW deduped_users AS
+SELECT user_id, user_first_touch_timestamp, max(email) AS email, max(updated) AS updated
+FROM users_dirty
+WHERE user_id IS NOT NULL
+GROUP BY user_id, user_first_touch_timestamp;
+
+SELECT count(*) FROM deduped_users
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC ## Validate Datasets
+-- MAGIC We've visually confirmed that our counts are as expected, based our manual review.
+-- MAGIC
+-- MAGIC Below, we programmatically do some validation using simple filters and **`WHERE`** clauses.
+-- MAGIC
+-- MAGIC Validate that the **`user_id`** for each row is unique.
+
+-- COMMAND ----------
+
+SELECT max(row_count) <= 1 no_duplicate_ids FROM (
+ SELECT user_id, count(*) AS row_count
+ FROM deduped_users
+ GROUP BY user_id)
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC
+-- MAGIC Confirm that each email is associated with at most one **`user_id`**.
+
+-- COMMAND ----------
+
+SELECT max(user_id_count) <= 1 at_most_one_id FROM (
+ SELECT email, count(user_id) AS user_id_count
+ FROM deduped_users
+ WHERE email IS NOT NULL
+ GROUP BY email)
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC ## Date Format and Regex
+-- MAGIC Now that we've removed null fields and eliminated duplicates, we may wish to extract further value out of the data.
+-- MAGIC
+-- MAGIC The code below:
+-- MAGIC - Correctly scales and casts the **`user_first_touch_timestamp`** to a valid timestamp
+-- MAGIC - Extracts the calendar data and clock time for this timestamp in human readable format
+-- MAGIC - Uses **`regexp_extract`** to extract the domains from the email column using regex
+
+-- COMMAND ----------
+
+SELECT *,
+ date_format(first_touch, "MMM d, yyyy") AS first_touch_date,
+ date_format(first_touch, "HH:mm:ss") AS first_touch_time,
+ regexp_extract(email, "(?<=@).+", 0) AS email_domain
+FROM (
+ SELECT *,
+ CAST(user_first_touch_timestamp / 1e6 AS timestamp) AS first_touch
+ FROM deduped_users
+)
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC Run the following cell to delete the tables and files associated with this lesson.
+
+-- COMMAND ----------
+
+-- MAGIC %python
+-- MAGIC DA.cleanup()
+
+-- COMMAND ----------
+
+-- MAGIC %md-sandbox
+-- MAGIC © 2022 Databricks, Inc. All rights reserved.
+-- MAGIC Apache, Apache Spark, Spark and the Spark logo are trademarks of the Apache Software Foundation.
+-- MAGIC
+-- MAGIC Privacy Policy | Terms of Use | Support
diff --git a/Data-Engineering-with-Databricks/04 - ETL with Spark SQL/DE 4.7 - Advanced SQL Transformations.sql b/Data-Engineering-with-Databricks/04 - ETL with Spark SQL/DE 4.7 - Advanced SQL Transformations.sql
new file mode 100644
index 0000000..e689ca3
--- /dev/null
+++ b/Data-Engineering-with-Databricks/04 - ETL with Spark SQL/DE 4.7 - Advanced SQL Transformations.sql
@@ -0,0 +1,426 @@
+-- Databricks notebook source
+-- MAGIC %md-sandbox
+-- MAGIC
+-- MAGIC
+-- MAGIC

+-- MAGIC
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC # Advanced SQL Transformations
+-- MAGIC
+-- MAGIC Querying tabular data stored in the data lakehouse with Spark SQL is easy, efficient, and fast.
+-- MAGIC
+-- MAGIC This gets more complicated as the data structure becomes less regular, when many tables need to be used in a single query, or when the shape of data needs to be changed dramatically. This notebook introduces a number of functions present in Spark SQL to help engineers complete even the most complicated transformations.
+-- MAGIC
+-- MAGIC ## Learning Objectives
+-- MAGIC By the end of this lesson, you should be able to:
+-- MAGIC - Use **`.`** and **`:`** syntax to query nested data
+-- MAGIC - Work with JSON
+-- MAGIC - Flatten and unpacking arrays and structs
+-- MAGIC - Combine datasets using joins and set operators
+-- MAGIC - Reshape data using pivot tables
+-- MAGIC - Use higher order functions for working with arrays
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC ## Run Setup
+-- MAGIC
+-- MAGIC The setup script will create the data and declare necessary values for the rest of this notebook to execute.
+
+-- COMMAND ----------
+
+-- MAGIC %run ../Includes/Classroom-Setup-4.7
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC ## Interacting with JSON Data
+-- MAGIC
+-- MAGIC The **`events_raw`** table was registered against data representing a Kafka payload.
+-- MAGIC
+-- MAGIC In most cases, Kafka data will be binary-encoded JSON values. We'll cast the **`key`** and **`value`** as strings below to look at these in a human-readable format.
+
+-- COMMAND ----------
+
+CREATE OR REPLACE TEMP VIEW events_strings AS
+ SELECT string(key), string(value)
+ FROM events_raw;
+
+SELECT * FROM events_strings
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC Spark SQL has built-in functionality to directly interact with JSON data stored as strings. We can use the **`:`** syntax to traverse nested data structures.
+
+-- COMMAND ----------
+
+SELECT value:device, value:geo:city
+FROM events_strings
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC Spark SQL also has the ability to parse JSON objects into struct types (a native Spark type with nested attributes).
+-- MAGIC
+-- MAGIC However, the **`from_json`** function requires a schema. To derive the schema of our current data, we'll start by executing a query we know will return a JSON value with no null fields.
+
+-- COMMAND ----------
+
+SELECT value
+FROM events_strings
+WHERE value:event_name = "finalize"
+ORDER BY key
+LIMIT 1
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC Spark SQL also has a **`schema_of_json`** function to derive the JSON schema from an example. Here, we copy and paste an example JSON to the function and chain it into the **`from_json`** function to cast our **`value`** field to a struct type.
+
+-- COMMAND ----------
+
+CREATE OR REPLACE TEMP VIEW parsed_events AS
+ SELECT from_json(value, schema_of_json('{"device":"Linux","ecommerce":{"purchase_revenue_in_usd":1075.5,"total_item_quantity":1,"unique_items":1},"event_name":"finalize","event_previous_timestamp":1593879231210816,"event_timestamp":1593879335779563,"geo":{"city":"Houston","state":"TX"},"items":[{"coupon":"NEWBED10","item_id":"M_STAN_K","item_name":"Standard King Mattress","item_revenue_in_usd":1075.5,"price_in_usd":1195.0,"quantity":1}],"traffic_source":"email","user_first_touch_timestamp":1593454417513109,"user_id":"UA000000106116176"}')) AS json
+ FROM events_strings;
+
+SELECT * FROM parsed_events
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC Once a JSON string is unpacked to a struct type, Spark supports **`*`** (star) unpacking to flatten fields into columns.
+
+-- COMMAND ----------
+
+CREATE OR REPLACE TEMP VIEW new_events_final AS
+ SELECT json.*
+ FROM parsed_events;
+
+SELECT * FROM new_events_final
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC ## Explore Data Structures
+-- MAGIC
+-- MAGIC Spark SQL has robust syntax for working with complex and nested data types.
+-- MAGIC
+-- MAGIC Start by looking at the fields in the **`events`** table.
+
+-- COMMAND ----------
+
+DESCRIBE events
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC The **`ecommerce`** field is a struct that contains a double and 2 longs.
+-- MAGIC
+-- MAGIC We can interact with the subfields in this field using standard **`.`** syntax similar to how we might traverse nested data in JSON.
+
+-- COMMAND ----------
+
+SELECT ecommerce.purchase_revenue_in_usd
+FROM events
+WHERE ecommerce.purchase_revenue_in_usd IS NOT NULL
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC ## Explode Arrays
+-- MAGIC The **`items`** field in the **`events`** table is an array of structs.
+-- MAGIC
+-- MAGIC Spark SQL has a number of functions specifically to deal with arrays.
+-- MAGIC
+-- MAGIC The **`explode`** function lets us put each element in an array on its own row.
+
+-- COMMAND ----------
+
+SELECT user_id, event_timestamp, event_name, explode(items) AS item
+FROM events
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC ## Collect Arrays
+-- MAGIC
+-- MAGIC The **`collect_set`** function can collect unique values for a field, including fields within arrays.
+-- MAGIC
+-- MAGIC The **`flatten`** function allows multiple arrays to be combined into a single array.
+-- MAGIC
+-- MAGIC The **`array_distinct`** function removes duplicate elements from an array.
+-- MAGIC
+-- MAGIC Here, we combine these queries to create a simple table that shows the unique collection of actions and the items in a user's cart.
+
+-- COMMAND ----------
+
+SELECT user_id,
+ collect_set(event_name) AS event_history,
+ array_distinct(flatten(collect_set(items.item_id))) AS cart_history
+FROM events
+GROUP BY user_id
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC ## Join Tables
+-- MAGIC
+-- MAGIC Spark SQL supports standard join operations (inner, outer, left, right, anti, cross, semi).
+-- MAGIC
+-- MAGIC Here we chain a join with a lookup table to an **`explode`** operation to grab the standard printed item name.
+
+-- COMMAND ----------
+
+CREATE OR REPLACE VIEW sales_enriched AS
+SELECT *
+FROM (
+ SELECT *, explode(items) AS item
+ FROM sales) a
+INNER JOIN item_lookup b
+ON a.item.item_id = b.item_id;
+
+SELECT * FROM sales_enriched
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC ## Set Operators
+-- MAGIC Spark SQL supports **`UNION`**, **`MINUS`**, and **`INTERSECT`** set operators.
+-- MAGIC
+-- MAGIC **`UNION`** returns the collection of two queries.
+-- MAGIC
+-- MAGIC The query below returns the same results as if we inserted our **`new_events_final`** into the **`events`** table.
+
+-- COMMAND ----------
+
+SELECT * FROM events
+UNION
+SELECT * FROM new_events_final
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC **`INTERSECT`** returns all rows found in both relations.
+
+-- COMMAND ----------
+
+SELECT * FROM events
+INTERSECT
+SELECT * FROM new_events_final
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC The above query returns no results because our two datasets have no values in common.
+-- MAGIC
+-- MAGIC **`MINUS`** returns all the rows found in one dataset but not the other; we'll skip executing this here as our previous query demonstrates we have no values in common.
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC
+-- MAGIC ## Pivot Tables
+-- MAGIC The **`PIVOT`** clause is used for data perspective. We can get the aggregated values based on specific column values, which will be turned to multiple columns used in **`SELECT`** clause. The **`PIVOT`** clause can be specified after the table name or subquery.
+-- MAGIC
+-- MAGIC **`SELECT * FROM ()`**: The **`SELECT`** statement inside the parentheses is the input for this table.
+-- MAGIC
+-- MAGIC **`PIVOT`**: The first argument in the clause is an aggregate function and the column to be aggregated. Then, we specify the pivot column in the **`FOR`** subclause. The **`IN`** operator contains the pivot column values.
+-- MAGIC
+-- MAGIC Here we use **`PIVOT`** to create a new **`transactions`** table that flattens out the information contained in the **`sales`** table.
+-- MAGIC
+-- MAGIC This flattened data format can be useful for dashboarding, but also useful for applying machine learning algorithms for inference or prediction.
+
+-- COMMAND ----------
+
+CREATE OR REPLACE TABLE transactions AS
+
+SELECT * FROM (
+ SELECT
+ email,
+ order_id,
+ transaction_timestamp,
+ total_item_quantity,
+ purchase_revenue_in_usd,
+ unique_items,
+ item.item_id AS item_id,
+ item.quantity AS quantity
+ FROM sales_enriched
+) PIVOT (
+ sum(quantity) FOR item_id in (
+ 'P_FOAM_K',
+ 'M_STAN_Q',
+ 'P_FOAM_S',
+ 'M_PREM_Q',
+ 'M_STAN_F',
+ 'M_STAN_T',
+ 'M_PREM_K',
+ 'M_PREM_F',
+ 'M_STAN_K',
+ 'M_PREM_T',
+ 'P_DOWN_S',
+ 'P_DOWN_K'
+ )
+);
+
+SELECT * FROM transactions
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC
+-- MAGIC ## Higher Order Functions
+-- MAGIC Higher order functions in Spark SQL allow you to work directly with complex data types. When working with hierarchical data, records are frequently stored as array or map type objects. Higher-order functions allow you to transform data while preserving the original structure.
+-- MAGIC
+-- MAGIC Higher order functions include:
+-- MAGIC - **`FILTER`** filters an array using the given lambda function.
+-- MAGIC - **`EXIST`** tests whether a statement is true for one or more elements in an array.
+-- MAGIC - **`TRANSFORM`** uses the given lambda function to transform all elements in an array.
+-- MAGIC - **`REDUCE`** takes two lambda functions to reduce the elements of an array to a single value by merging the elements into a buffer, and the apply a finishing function on the final buffer.
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC ## Filter
+-- MAGIC Remove items that are not king-sized from all records in our **`items`** column. We can use the **`FILTER`** function to create a new column that excludes that value from each array.
+-- MAGIC
+-- MAGIC **`FILTER (items, i -> i.item_id LIKE "%K") AS king_items`**
+-- MAGIC
+-- MAGIC In the statement above:
+-- MAGIC - **`FILTER`** : the name of the higher-order function
+-- MAGIC - **`items`** : the name of our input array
+-- MAGIC - **`i`** : the name of the iterator variable. You choose this name and then use it in the lambda function. It iterates over the array, cycling each value into the function one at a time.
+-- MAGIC - **`->`** : Indicates the start of a function
+-- MAGIC - **`i.item_id LIKE "%K"`** : This is the function. Each value is checked to see if it ends with the capital letter K. If it is, it gets filtered into the new column, **`king_items`**
+
+-- COMMAND ----------
+
+-- filter for sales of only king sized items
+SELECT
+ order_id,
+ items,
+ FILTER (items, i -> i.item_id LIKE "%K") AS king_items
+FROM sales
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC You may write a filter that produces a lot of empty arrays in the created column. When that happens, it can be useful to use a **`WHERE`** clause to show only non-empty array values in the returned column.
+-- MAGIC
+-- MAGIC In this example, we accomplish that by using a subquery (a query within a query). They are useful for performing an operation in multiple steps. In this case, we're using it to create the named column that we will use with a **`WHERE`** clause.
+
+-- COMMAND ----------
+
+CREATE OR REPLACE TEMP VIEW king_size_sales AS
+
+SELECT order_id, king_items
+FROM (
+ SELECT
+ order_id,
+ FILTER (items, i -> i.item_id LIKE "%K") AS king_items
+ FROM sales)
+WHERE size(king_items) > 0;
+
+SELECT * FROM king_size_sales
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC ## Transform
+-- MAGIC Built-in functions are designed to operate on a single, simple data type within a cell; they cannot process array values. **`TRANSFORM`** can be particularly useful when you want to apply an existing function to each element in an array.
+-- MAGIC
+-- MAGIC Compute the total revenue from king-sized items per order.
+-- MAGIC
+-- MAGIC **`TRANSFORM(king_items, k -> CAST(k.item_revenue_in_usd * 100 AS INT)) AS item_revenues`**
+-- MAGIC
+-- MAGIC In the statement above, for each value in the input array, we extract the item's revenue value, multiply it by 100, and cast the result to integer. Note that we're using the same kind as references as in the previous command, but we name the iterator with a new variable, **`k`**.
+
+-- COMMAND ----------
+
+-- get total revenue from king items per order
+CREATE OR REPLACE TEMP VIEW king_item_revenues AS
+
+SELECT
+ order_id,
+ king_items,
+ TRANSFORM (
+ king_items,
+ k -> CAST(k.item_revenue_in_usd * 100 AS INT)
+ ) AS item_revenues
+FROM king_size_sales;
+
+SELECT * FROM king_item_revenues
+
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC ## Summary
+-- MAGIC Spark SQL offers a comprehensive set of native functionality for interacting with and manipulating highly nested data.
+-- MAGIC
+-- MAGIC While some syntax for this functionality may be unfamiliar to SQL users, leveraging built-in functions like higher order functions can prevent SQL engineers from needing to rely on custom logic when dealing with highly complex data structures.
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC Run the following cell to delete the tables and files associated with this lesson.
+
+-- COMMAND ----------
+
+-- MAGIC %python
+-- MAGIC DA.cleanup()
+
+-- COMMAND ----------
+
+-- MAGIC %md-sandbox
+-- MAGIC © 2022 Databricks, Inc. All rights reserved.
+-- MAGIC Apache, Apache Spark, Spark and the Spark logo are trademarks of the Apache Software Foundation.
+-- MAGIC
+-- MAGIC Privacy Policy | Terms of Use | Support
diff --git a/Data-Engineering-with-Databricks/04 - ETL with Spark SQL/DE 4.8 - SQL UDFs and Control Flow.sql b/Data-Engineering-with-Databricks/04 - ETL with Spark SQL/DE 4.8 - SQL UDFs and Control Flow.sql
new file mode 100644
index 0000000..3afadab
--- /dev/null
+++ b/Data-Engineering-with-Databricks/04 - ETL with Spark SQL/DE 4.8 - SQL UDFs and Control Flow.sql
@@ -0,0 +1,205 @@
+-- Databricks notebook source
+-- MAGIC %md-sandbox
+-- MAGIC
+-- MAGIC
+-- MAGIC

+-- MAGIC
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC # SQL UDFs and Control Flow
+-- MAGIC
+-- MAGIC Databricks added support for User Defined Functions (UDFs) registered natively in SQL starting in DBR 9.1.
+-- MAGIC
+-- MAGIC This feature allows users to register custom combinations of SQL logic as functions in a database, making these methods reusable anywhere SQL can be run on Databricks. These functions leverage Spark SQL directly, maintaining all of the optimizations of Spark when applying your custom logic to large datasets.
+-- MAGIC
+-- MAGIC In this notebook, we'll first have a simple introduction to these methods, and then explore how this logic can be combined with **`CASE`** / **`WHEN`** clauses to provide reusable custom control flow logic.
+-- MAGIC
+-- MAGIC ## Learning Objectives
+-- MAGIC By the end of this lesson, you should be able to:
+-- MAGIC * Define and registering SQL UDFs
+-- MAGIC * Describe the security model used for sharing SQL UDFs
+-- MAGIC * Use **`CASE`** / **`WHEN`** statements in SQL code
+-- MAGIC * Leverage **`CASE`** / **`WHEN`** statements in SQL UDFs for custom control flow
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC ## Setup
+-- MAGIC Run the following cell to setup your environment.
+
+-- COMMAND ----------
+
+-- MAGIC %run ../Includes/Classroom-Setup-4.8
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC ## Create a Simple Dataset
+-- MAGIC
+-- MAGIC For this notebook, we'll consider the following dataset, registered here as a temporary view.
+
+-- COMMAND ----------
+
+CREATE OR REPLACE TEMPORARY VIEW foods(food) AS VALUES
+("beef"),
+("beans"),
+("potatoes"),
+("bread");
+
+SELECT * FROM foods
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC ## SQL UDFs
+-- MAGIC At minimum, a SQL UDF requires a function name, optional parameters, the type to be returned, and some custom logic.
+-- MAGIC
+-- MAGIC Below, a simple function named **`yelling`** takes one parameter named **`text`**. It returns a string that will be in all uppercase letters with three exclamation points added to the end.
+
+-- COMMAND ----------
+
+CREATE OR REPLACE FUNCTION yelling(text STRING)
+RETURNS STRING
+RETURN concat(upper(text), "!!!")
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC Note that this function is applied to all values of the column in a parallel fashion within the Spark processing engine. SQL UDFs are an efficient way to define custom logic that is optimized for execution on Databricks.
+
+-- COMMAND ----------
+
+SELECT yelling(food) FROM foods
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC ## Scoping and Permissions of SQL UDFs
+-- MAGIC
+-- MAGIC Note that SQL UDFs will persist between execution environments (which can include notebooks, DBSQL queries, and jobs).
+-- MAGIC
+-- MAGIC We can describe the function to see where it was registered and basic information about expected inputs and what is returned.
+
+-- COMMAND ----------
+
+DESCRIBE FUNCTION yelling
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC By describing extended, we can get even more information.
+-- MAGIC
+-- MAGIC Note that the **`Body`** field at the bottom of the function description shows the SQL logic used in the function itself.
+
+-- COMMAND ----------
+
+DESCRIBE FUNCTION EXTENDED yelling
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC SQL UDFs exist as objects in the metastore and are governed by the same Table ACLs as databases, tables, or views.
+-- MAGIC
+-- MAGIC In order to use a SQL UDF, a user must have **`USAGE`** and **`SELECT`** permissions on the function.
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC ## CASE/WHEN
+-- MAGIC
+-- MAGIC The standard SQL syntactic construct **`CASE`** / **`WHEN`** allows the evaluation of multiple conditional statements with alternative outcomes based on table contents.
+-- MAGIC
+-- MAGIC Again, everything is evaluated natively in Spark, and so is optimized for parallel execution.
+
+-- COMMAND ----------
+
+SELECT *,
+ CASE
+ WHEN food = "beans" THEN "I love beans"
+ WHEN food = "potatoes" THEN "My favorite vegetable is potatoes"
+ WHEN food <> "beef" THEN concat("Do you have any good recipes for ", food ,"?")
+ ELSE concat("I don't eat ", food)
+ END
+FROM foods
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC ## Simple Control Flow Functions
+-- MAGIC
+-- MAGIC Combining SQL UDFs with control flow in the form of **`CASE`** / **`WHEN`** clauses provides optimized execution for control flows within SQL workloads.
+-- MAGIC
+-- MAGIC Here, we demonstrate wrapping the previous logic in a function that will be reusable anywhere we can execute SQL.
+
+-- COMMAND ----------
+
+CREATE FUNCTION foods_i_like(food STRING)
+RETURNS STRING
+RETURN CASE
+ WHEN food = "beans" THEN "I love beans"
+ WHEN food = "potatoes" THEN "My favorite vegetable is potatoes"
+ WHEN food <> "beef" THEN concat("Do you have any good recipes for ", food ,"?")
+ ELSE concat("I don't eat ", food)
+END;
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC Using this method on our data provides the desired outcome.
+
+-- COMMAND ----------
+
+SELECT foods_i_like(food) FROM foods
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC While the example provided here are simple string methods, these same basic principles can be used to add custom computations and logic for native execution in Spark SQL.
+-- MAGIC
+-- MAGIC Especially for enterprises that might be migrating users from systems with many defined procedures or custom-defined formulas, SQL UDFs can allow a handful of users to define the complex logic needed for common reporting and analytic queries.
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC Run the following cell to delete the tables and files associated with this lesson.
+
+-- COMMAND ----------
+
+-- MAGIC %python
+-- MAGIC DA.cleanup()
+
+-- COMMAND ----------
+
+-- MAGIC %md-sandbox
+-- MAGIC © 2022 Databricks, Inc. All rights reserved.
+-- MAGIC Apache, Apache Spark, Spark and the Spark logo are trademarks of the Apache Software Foundation.
+-- MAGIC
+-- MAGIC Privacy Policy | Terms of Use | Support
diff --git a/Data-Engineering-With-Databricks/02 - ELT with Spark SQL and Python/Labs/DE 2.2.9L - Reshaping Data.sql b/Data-Engineering-with-Databricks/04 - ETL with Spark SQL/DE 4.9L - Reshaping Data Lab.sql
similarity index 58%
rename from Data-Engineering-With-Databricks/02 - ELT with Spark SQL and Python/Labs/DE 2.2.9L - Reshaping Data.sql
rename to Data-Engineering-with-Databricks/04 - ETL with Spark SQL/DE 4.9L - Reshaping Data Lab.sql
index 68e8e09..a923c69 100644
--- a/Data-Engineering-With-Databricks/02 - ELT with Spark SQL and Python/Labs/DE 2.2.9L - Reshaping Data.sql
+++ b/Data-Engineering-with-Databricks/04 - ETL with Spark SQL/DE 4.9L - Reshaping Data Lab.sql
@@ -8,39 +8,50 @@
-- COMMAND ----------
-- MAGIC %md
+-- MAGIC
+-- MAGIC
-- MAGIC # Reshaping Data Lab
-- MAGIC
--- MAGIC In this lab, you will create a `clickpaths` table that aggregates the number of times each user took a particular action in `events` and then join this information with the flattened view of `transactions` created in the previous notebook.
+-- MAGIC In this lab, you will create a **`clickpaths`** table that aggregates the number of times each user took a particular action in **`events`** and then join this information with the flattened view of **`transactions`** created in the previous notebook.
-- MAGIC
--- MAGIC You'll also explore a new higher order function to flag items recorded in `sales` based on information extracted from item names.
+-- MAGIC You'll also explore a new higher order function to flag items recorded in **`sales`** based on information extracted from item names.
-- MAGIC
--- MAGIC ##### Objectives
+-- MAGIC ## Learning Objectives
+-- MAGIC By the end of this lab, you should be able to:
-- MAGIC - Pivot and join tables to create clickpaths for each user
-- MAGIC - Apply higher order functions to flag types of products purchased
-- COMMAND ----------
-- MAGIC %md
+-- MAGIC
+-- MAGIC
-- MAGIC ## Run Setup
-- MAGIC
-- MAGIC The setup script will create the data and declare necessary values for the rest of this notebook to execute.
-- COMMAND ----------
--- MAGIC %run ../../Includes/setup-transactions
+-- MAGIC %run ../Includes/Classroom-Setup-4.9L
-- COMMAND ----------
-- MAGIC %md
+-- MAGIC
+-- MAGIC
-- MAGIC ## Reshape Datasets to Create Click Paths
--- MAGIC This operation will join data from your `events` and `transactions` tables in order to create a record of all actions a user took on the site and what their final order looked like.
+-- MAGIC This operation will join data from your **`events`** and **`transactions`** tables in order to create a record of all actions a user took on the site and what their final order looked like.
-- MAGIC
--- MAGIC The `clickpaths` table should contain all the fields from your `transactions` table, as well as a count of every `event_name` in its own column. Each user that completed a purchase should have a single row in the final table. Let's start by pivoting the `events` table to get counts for each `event_name`.
+-- MAGIC The **`clickpaths`** table should contain all the fields from your **`transactions`** table, as well as a count of every **`event_name`** in its own column. Each user that completed a purchase should have a single row in the final table. Let's start by pivoting the **`events`** table to get counts for each **`event_name`**.
-- COMMAND ----------
--- MAGIC %md ### 1. Pivot `events` to count actions for each user
--- MAGIC We want to aggregate the number of times each user performed a specific event, specified in the `event_name` column. To do this, group by `user` and pivot on `event_name` to provide a count of every event type in its own column, resulting in the schema below.
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC
+-- MAGIC ### 1. Pivot **`events`** to count actions for each user
+-- MAGIC We want to aggregate the number of times each user performed a specific event, specified in the **`event_name`** column. To do this, group by **`user`** and pivot on **`event_name`** to provide a count of every event type in its own column, resulting in the schema below.
-- MAGIC
-- MAGIC | field | type |
-- MAGIC | --- | --- |
@@ -83,31 +94,42 @@ CREATE OR REPLACE VIEW events_pivot
-- COMMAND ----------
-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC
-- MAGIC **NOTE**: We'll use Python to run checks occasionally throughout the lab. The helper functions below will return an error with a message on what needs to change if you have not followed instructions. No output means that you have completed this step.
-- COMMAND ----------
-- MAGIC %python
-- MAGIC def check_table_results(table_name, column_names, num_rows):
--- MAGIC assert spark.table(table_name), f"Table named `{table_name}` does not exist"
+-- MAGIC assert spark.table(table_name), f"Table named **`{table_name}`** does not exist"
-- MAGIC assert spark.table(table_name).columns == column_names, "Please name the columns in the order provided above"
-- MAGIC assert spark.table(table_name).count() == num_rows, f"The table should have {num_rows} records"
-- COMMAND ----------
--- MAGIC %md Run the cell below to confirm the view was created correctly.
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC
+-- MAGIC Run the cell below to confirm the view was created correctly.
-- COMMAND ----------
-- MAGIC %python
-- MAGIC event_columns = ['user', 'cart', 'pillows', 'login', 'main', 'careers', 'guest', 'faq', 'down', 'warranty', 'finalize', 'register', 'shipping_info', 'checkout', 'mattresses', 'add_item', 'press', 'email_coupon', 'cc_info', 'foam', 'reviews', 'original', 'delivery', 'premium']
--- MAGIC check_table_results("events_pivot", event_columns, 4085296)
+-- MAGIC check_table_results("events_pivot", event_columns, 204586)
-- COMMAND ----------
--- MAGIC %md ### 2. Join event counts and transactions for all users
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
-- MAGIC
--- MAGIC Next, join `events_pivot` with `transactions` to create the table `clickpaths`. This table should have the same event name columns from the `events_pivot` table created above, followed by columns from the `transactions` table, as shown below.
+-- MAGIC ### 2. Join event counts and transactions for all users
+-- MAGIC
+-- MAGIC Next, join **`events_pivot`** with **`transactions`** to create the table **`clickpaths`**. This table should have the same event name columns from the **`events_pivot`** table created above, followed by columns from the **`transactions`** table, as shown below.
-- MAGIC
-- MAGIC | field | type |
-- MAGIC | --- | --- |
@@ -141,30 +163,36 @@ CREATE OR REPLACE VIEW clickpaths AS
-- COMMAND ----------
--- MAGIC %md Run the cell below to confirm the table was created correctly.
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC
+-- MAGIC Run the cell below to confirm the table was created correctly.
-- COMMAND ----------
-- MAGIC %python
-- MAGIC clickpath_columns = event_columns + ['user_id', 'order_id', 'transaction_timestamp', 'total_item_quantity', 'purchase_revenue_in_usd', 'unique_items', 'P_FOAM_K', 'M_STAN_Q', 'P_FOAM_S', 'M_PREM_Q', 'M_STAN_F', 'M_STAN_T', 'M_PREM_K', 'M_PREM_F', 'M_STAN_K', 'M_PREM_T', 'P_DOWN_S', 'P_DOWN_K']
--- MAGIC check_table_results("clickpaths", clickpath_columns, 180680)
+-- MAGIC check_table_results("clickpaths", clickpath_columns, 9085)
-- COMMAND ----------
-- MAGIC %md
+-- MAGIC
+-- MAGIC
-- MAGIC ## Flag Types of Products Purchased
--- MAGIC Here, you'll use the higher order function `EXISTS` to create boolean columns `mattress` and `pillow` that indicate whether the item purchased was a mattress or pillow product.
+-- MAGIC Here, you'll use the higher order function **`EXISTS`** to create boolean columns **`mattress`** and **`pillow`** that indicate whether the item purchased was a mattress or pillow product.
-- MAGIC
--- MAGIC For example, if `item_name` from the `items` column ends with the string `"Mattress"`, the column value for `mattress` should be `true` and the value for `pillow` should be `false`. Here are a few examples of items and the resulting values.
+-- MAGIC For example, if **`item_name`** from the **`items`** column ends with the string **`"Mattress"`**, the column value for **`mattress`** should be **`true`** and the value for **`pillow`** should be **`false`**. Here are a few examples of items and the resulting values.
-- MAGIC
-- MAGIC | items | mattress | pillow |
-- MAGIC | ------- | -------- | ------ |
--- MAGIC | `[{..., "item_id": "M_PREM_K", "item_name": "Premium King Mattress", ...}]` | true | false |
--- MAGIC | `[{..., "item_id": "P_FOAM_S", "item_name": "Standard Foam Pillow", ...}]` | false | true |
--- MAGIC | `[{..., "item_id": "M_STAN_F", "item_name": "Standard Full Mattress", ...}]` | true | false |
+-- MAGIC | **`[{..., "item_id": "M_PREM_K", "item_name": "Premium King Mattress", ...}]`** | true | false |
+-- MAGIC | **`[{..., "item_id": "P_FOAM_S", "item_name": "Standard Foam Pillow", ...}]`** | false | true |
+-- MAGIC | **`[{..., "item_id": "M_STAN_F", "item_name": "Standard Full Mattress", ...}]`** | true | false |
-- MAGIC
--- MAGIC See documentation for the [exists](https://docs.databricks.com/sql/language-manual/functions/exists.html) function.
--- MAGIC You can use the condition expression `item_name LIKE "%Mattress"` to check whether the string `item_name` ends with the word "Mattress".
+-- MAGIC See documentation for the exists function.
+-- MAGIC You can use the condition expression **`item_name LIKE "%Mattress"`** to check whether the string **`item_name`** ends with the word "Mattress".
-- COMMAND ----------
@@ -176,14 +204,30 @@ EXISTS .item_name LIKE "%Pillow"
-- COMMAND ----------
--- MAGIC %md Run the cell below to confirm the table was created correctly.
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC
+-- MAGIC Run the cell below to confirm the table was created correctly.
-- COMMAND ----------
-- MAGIC %python
--- MAGIC check_table_results("sales_product_flags", ['items', 'mattress', 'pillow'], 210370)
+-- MAGIC check_table_results("sales_product_flags", ['items', 'mattress', 'pillow'], 10539)
-- MAGIC product_counts = spark.sql("SELECT sum(CAST(mattress AS INT)) num_mattress, sum(CAST(pillow AS INT)) num_pillow FROM sales_product_flags").first().asDict()
--- MAGIC assert product_counts == {'num_mattress': 199764, 'num_pillow': 27481}, "There should be 199764 rows where mattress is true, and 27481 where pillow is true"
+-- MAGIC assert product_counts == {'num_mattress': 10015, 'num_pillow': 1386}, "There should be 10015 rows where mattress is true, and 1386 where pillow is true"
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC Run the following cell to delete the tables and files associated with this lesson.
+
+-- COMMAND ----------
+
+-- MAGIC %python
+-- MAGIC DA.cleanup()
-- COMMAND ----------
diff --git a/Data-Engineering-With-Databricks/Solutions/02 - ELT with Spark SQL and Python/DE 2.3.1 - Python Basics.py b/Data-Engineering-with-Databricks/05 - OPTIONAL Python for Spark SQL/DE 5.1 - Python Basics.py
similarity index 77%
rename from Data-Engineering-With-Databricks/Solutions/02 - ELT with Spark SQL and Python/DE 2.3.1 - Python Basics.py
rename to Data-Engineering-with-Databricks/05 - OPTIONAL Python for Spark SQL/DE 5.1 - Python Basics.py
index 5d8e634..8e97427 100644
--- a/Data-Engineering-With-Databricks/Solutions/02 - ELT with Spark SQL and Python/DE 2.3.1 - Python Basics.py
+++ b/Data-Engineering-with-Databricks/05 - OPTIONAL Python for Spark SQL/DE 5.1 - Python Basics.py
@@ -8,6 +8,8 @@
# COMMAND ----------
# MAGIC %md
+# MAGIC
+# MAGIC
# MAGIC # Just Enough Python for Databricks SQL
# MAGIC
# MAGIC While Databricks SQL provides an ANSI-compliant flavor of SQL with many additional custom methods (including the entire Delta Lake SQL syntax), users migrating from some systems may run into missing features, especially around control flow and error handling.
@@ -17,7 +19,7 @@
# MAGIC Mastering just a handful of Python concepts will unlock powerful new design practices for engineers and analysts proficient in SQL. Rather than trying to teach the entire language, this lesson focuses on those features that can immediately be leveraged to write more extensible SQL programs on Databricks.
# MAGIC
# MAGIC ## Learning Objectives
-# MAGIC By the end of this lesson, students should be able to:
+# MAGIC By the end of this lesson, you should be able to:
# MAGIC * Print and manipulate multi-line Python strings
# MAGIC * Define variables and functions
# MAGIC * Use f-strings for variable substitution
@@ -25,8 +27,10 @@
# COMMAND ----------
# MAGIC %md
+# MAGIC
+# MAGIC
# MAGIC ## Strings
-# MAGIC Characters enclosed in single (`'`) or double (`"`) quotes are considered strings.
+# MAGIC Characters enclosed in single (**`'`**) or double (**`"`**) quotes are considered strings.
# COMMAND ----------
@@ -35,7 +39,9 @@
# COMMAND ----------
# MAGIC %md
-# MAGIC To preview how a string will render, we can call `print()`.
+# MAGIC
+# MAGIC
+# MAGIC To preview how a string will render, we can call **`print()`**.
# COMMAND ----------
@@ -44,7 +50,9 @@
# COMMAND ----------
# MAGIC %md
-# MAGIC By wrapping a string in triple quotes (`"""`), it's possible to use multiple lines.
+# MAGIC
+# MAGIC
+# MAGIC By wrapping a string in triple quotes (**`"""`**), it's possible to use multiple lines.
# COMMAND ----------
@@ -59,6 +67,8 @@
# COMMAND ----------
# MAGIC %md
+# MAGIC
+# MAGIC
# MAGIC This makes it easy to turn SQL queries into Python strings.
# COMMAND ----------
@@ -71,7 +81,9 @@
# COMMAND ----------
# MAGIC %md
-# MAGIC When we execute SQL from a Python cell, we will pass a string as an argument to `spark.sql()`.
+# MAGIC
+# MAGIC
+# MAGIC When we execute SQL from a Python cell, we will pass a string as an argument to **`spark.sql()`**.
# COMMAND ----------
@@ -80,7 +92,9 @@
# COMMAND ----------
# MAGIC %md
-# MAGIC To render a query the way it would appear in a normal SQL notebook, we call `display()` on this function.
+# MAGIC
+# MAGIC
+# MAGIC To render a query the way it would appear in a normal SQL notebook, we call **`display()`** on this function.
# COMMAND ----------
@@ -89,21 +103,25 @@
# COMMAND ----------
# MAGIC %md
-# MAGIC **NOTE**: Executing a cell with only a Python string in it will just print the string. Using `print()` with a string just renders it back to the notebook.
# MAGIC
-# MAGIC To execute a string that contains SQL using Python, it must be passed within a call to `spark.sql()`.
+# MAGIC
+# MAGIC **NOTE**: Executing a cell with only a Python string in it will just print the string. Using **`print()`** with a string just renders it back to the notebook.
+# MAGIC
+# MAGIC To execute a string that contains SQL using Python, it must be passed within a call to **`spark.sql()`**.
# COMMAND ----------
# MAGIC %md
+# MAGIC
+# MAGIC
# MAGIC ## Variables
-# MAGIC Python variables are assigned using the `=`.
+# MAGIC Python variables are assigned using the **`=`**.
# MAGIC
-# MAGIC Python variable names need to start with a letter, and can only contain letters, numbers, hyphens, and underscores.
+# MAGIC Python variable names need to start with a letter, and can only contain letters, numbers, and underscores. (Variable names starting with underscores are valid but typically reserved for special use cases.)
# MAGIC
# MAGIC Many Python programmers favor snake casing, which uses only lowercase letters and underscores for all variables.
# MAGIC
-# MAGIC The cell below creates the variable `my_string`.
+# MAGIC The cell below creates the variable **`my_string`**.
# COMMAND ----------
@@ -112,6 +130,8 @@
# COMMAND ----------
# MAGIC %md
+# MAGIC
+# MAGIC
# MAGIC Executing a cell with this variable will return its value.
# COMMAND ----------
@@ -121,7 +141,9 @@
# COMMAND ----------
# MAGIC %md
-# MAGIC The output here is the same as if we typed `"This is a string"` into the cell and ran it.
+# MAGIC
+# MAGIC
+# MAGIC The output here is the same as if we typed **`"This is a string"`** into the cell and ran it.
# MAGIC
# MAGIC Note that the quotation marks aren't part of the string, as shown when we print it.
@@ -132,9 +154,11 @@
# COMMAND ----------
# MAGIC %md
+# MAGIC
+# MAGIC
# MAGIC This variable can be used the same way a string would be.
# MAGIC
-# MAGIC String concatenation (joining to strings together) can be performed with a `+`.
+# MAGIC String concatenation (joining to strings together) can be performed with a **`+`**.
# COMMAND ----------
@@ -143,6 +167,8 @@
# COMMAND ----------
# MAGIC %md
+# MAGIC
+# MAGIC
# MAGIC We can join string variables with other string variables.
# COMMAND ----------
@@ -153,12 +179,14 @@
# COMMAND ----------
# MAGIC %md
+# MAGIC
+# MAGIC
# MAGIC ## Functions
-# MAGIC Functions allow you to specify local variables as arguments and then apply custom logic. We define a function using the keyword `def` followed by the function name and, enclosed in parentheses, any variable arguments we wish to pass into the function. Finally, the function header has a `:` at the end.
+# MAGIC Functions allow you to specify local variables as arguments and then apply custom logic. We define a function using the keyword **`def`** followed by the function name and, enclosed in parentheses, any variable arguments we wish to pass into the function. Finally, the function header has a **`:`** at the end.
# MAGIC
# MAGIC Note: In Python, indentation matters. You can see in the cell below that the logic of the function is indented in from the left margin. Any code that is indented to this level is part of the function.
# MAGIC
-# MAGIC The function below takes one argument (`arg`) and then prints it.
+# MAGIC The function below takes one argument (**`arg`**) and then prints it.
# COMMAND ----------
@@ -168,6 +196,8 @@ def print_string(arg):
# COMMAND ----------
# MAGIC %md
+# MAGIC
+# MAGIC
# MAGIC When we pass a string as the argument, it will be printed.
# COMMAND ----------
@@ -177,6 +207,8 @@ def print_string(arg):
# COMMAND ----------
# MAGIC %md
+# MAGIC
+# MAGIC
# MAGIC We can also pass a variable as an argument.
# COMMAND ----------
@@ -186,7 +218,9 @@ def print_string(arg):
# COMMAND ----------
# MAGIC %md
-# MAGIC Oftentimes we want to return the results of our function for use elsewhere. For this we use the `return` keyword.
+# MAGIC
+# MAGIC
+# MAGIC Oftentimes we want to return the results of our function for use elsewhere. For this we use the **`return`** keyword.
# MAGIC
# MAGIC The function below constructs a new string by concatenating our argument. Note that both functions and arguments can have arbitrary names, just like variables (and follow the same rules).
@@ -198,6 +232,8 @@ def return_new_string(string_arg):
# COMMAND ----------
# MAGIC %md
+# MAGIC
+# MAGIC
# MAGIC Running this function returns the output.
# COMMAND ----------
@@ -207,6 +243,8 @@ def return_new_string(string_arg):
# COMMAND ----------
# MAGIC %md
+# MAGIC
+# MAGIC
# MAGIC Assigning it to a variable captures the output for reuse elsewhere.
# COMMAND ----------
@@ -216,6 +254,8 @@ def return_new_string(string_arg):
# COMMAND ----------
# MAGIC %md
+# MAGIC
+# MAGIC
# MAGIC This variable doesn't contain our function, just the results of our function (a string).
# COMMAND ----------
@@ -225,8 +265,10 @@ def return_new_string(string_arg):
# COMMAND ----------
# MAGIC %md
+# MAGIC
+# MAGIC
# MAGIC ## F-strings
-# MAGIC By adding the letter `f` before a Python string, you can inject variables or evaluated Python code by inserted them inside curly braces (`{}`).
+# MAGIC By adding the letter **`f`** before a Python string, you can inject variables or evaluated Python code by inserted them inside curly braces (**`{}`**).
# MAGIC
# MAGIC Evaluate the cell below to see string variable substitution.
@@ -237,6 +279,8 @@ def return_new_string(string_arg):
# COMMAND ----------
# MAGIC %md
+# MAGIC
+# MAGIC
# MAGIC The following cell inserts the string returned by a function.
# COMMAND ----------
@@ -246,6 +290,8 @@ def return_new_string(string_arg):
# COMMAND ----------
# MAGIC %md
+# MAGIC
+# MAGIC
# MAGIC Combine this with triple quotes and you can format a paragraph or list, like below.
# COMMAND ----------
@@ -261,6 +307,8 @@ def return_new_string(string_arg):
# COMMAND ----------
# MAGIC %md
+# MAGIC
+# MAGIC
# MAGIC Or you could format a SQL query.
# COMMAND ----------
diff --git a/Data-Engineering-With-Databricks/Solutions/02 - ELT with Spark SQL and Python/DE 2.3.2 - Python Control Flow.py b/Data-Engineering-with-Databricks/05 - OPTIONAL Python for Spark SQL/DE 5.2 - Python Control Flow.py
similarity index 60%
rename from Data-Engineering-With-Databricks/Solutions/02 - ELT with Spark SQL and Python/DE 2.3.2 - Python Control Flow.py
rename to Data-Engineering-with-Databricks/05 - OPTIONAL Python for Spark SQL/DE 5.2 - Python Control Flow.py
index 3b73ffa..251c62f 100644
--- a/Data-Engineering-With-Databricks/Solutions/02 - ELT with Spark SQL and Python/DE 2.3.2 - Python Control Flow.py
+++ b/Data-Engineering-with-Databricks/05 - OPTIONAL Python for Spark SQL/DE 5.2 - Python Control Flow.py
@@ -8,27 +8,33 @@
# COMMAND ----------
# MAGIC %md
+# MAGIC
+# MAGIC
# MAGIC # Just Enough Python for Databricks SQL
# MAGIC
# MAGIC ## Learning Objectives
-# MAGIC By the end of this lesson, students should be able to:
-# MAGIC * Leverage `if/else`
+# MAGIC By the end of this lesson, you should be able to:
+# MAGIC * Leverage **`if`** / **`else`**
# MAGIC * Describe how errors impact notebook execution
-# MAGIC * Write simple tests with `assert`
-# MAGIC * Use `try/except` to handle errors
+# MAGIC * Write simple tests with **`assert`**
+# MAGIC * Use **`try`** / **`except`** to handle errors
# COMMAND ----------
# MAGIC %md
-# MAGIC ## `if/else`
# MAGIC
-# MAGIC `if/else` clauses are common in many programming languages.
# MAGIC
-# MAGIC Note that SQL has the `CASE WHEN ... ELSE` construct, which is similar.
+# MAGIC ## if/else
+# MAGIC
+# MAGIC **`if`** / **`else`** clauses are common in many programming languages.
+# MAGIC
+# MAGIC Note that SQL has the **`CASE WHEN ... ELSE`** construct, which is similar.
# MAGIC
-# MAGIC **If you're seeking to evaluate conditions within your tables or queries, use `CASE WHEN`.** Python control flow should be reserved for evaluating conditions outside of your query.
+# MAGIC If you're seeking to evaluate conditions within your tables or queries, use **`CASE WHEN`**.
# MAGIC
-# MAGIC More on this later. First, an example with `"beans"`.
+# MAGIC Python control flow should be reserved for evaluating conditions outside of your query.
+# MAGIC
+# MAGIC More on this later. First, an example with **`"beans"`**.
# COMMAND ----------
@@ -37,18 +43,20 @@
# COMMAND ----------
# MAGIC %md
-# MAGIC Working with `if` and `else` is all about evaluating whether or not certain conditions are true in your execution environment.
+# MAGIC
+# MAGIC
+# MAGIC Working with **`if`** and **`else`** is all about evaluating whether or not certain conditions are true in your execution environment.
# MAGIC
# MAGIC Note that in Python, we have the following comparison operators:
# MAGIC
# MAGIC | Syntax | Operation |
# MAGIC | --- | --- |
-# MAGIC | `==` | equals |
-# MAGIC | `>` | greater than |
-# MAGIC | `<` | less than |
-# MAGIC | `>=` | greater than or equal |
-# MAGIC | `<=` | less than or equal |
-# MAGIC | `!=` | not equal |
+# MAGIC | **`==`** | equals |
+# MAGIC | **`>`** | greater than |
+# MAGIC | **`<`** | less than |
+# MAGIC | **`>=`** | greater than or equal |
+# MAGIC | **`<=`** | less than or equal |
+# MAGIC | **`!=`** | not equal |
# MAGIC
# MAGIC If you read the sentence below out loud, you will be describing the control flow of your program.
@@ -62,7 +70,9 @@
# COMMAND ----------
# MAGIC %md
-# MAGIC As expected, because the variable `food` is the string literal `"beans"`, the `if` statement evaluated to `True` and the first print statement evaluated.
+# MAGIC
+# MAGIC
+# MAGIC As expected, because the variable **`food`** is the string literal **`"beans"`**, the **`if`** statement evaluated to **`True`** and the first print statement evaluated.
# MAGIC
# MAGIC Let's assign a different value to the variable.
@@ -73,7 +83,11 @@
# COMMAND ----------
# MAGIC %md
-# MAGIC Now the first condition will evaluate as `False`. What do you think will happen when you run the following cell?
+# MAGIC
+# MAGIC
+# MAGIC Now the first condition will evaluate as **`False`**.
+# MAGIC
+# MAGIC What do you think will happen when you run the following cell?
# COMMAND ----------
@@ -85,6 +99,8 @@
# COMMAND ----------
# MAGIC %md
+# MAGIC
+# MAGIC
# MAGIC Note that each time we assign a new value to a variable, this completely erases the old variable.
# COMMAND ----------
@@ -95,14 +111,16 @@
# COMMAND ----------
# MAGIC %md
-# MAGIC The Python keyword `elif` (short for `else if`) allows us to evaluate multiple conditions.
+# MAGIC
+# MAGIC
+# MAGIC The Python keyword **`elif`** (short for **`else`** + **`if`**) allows us to evaluate multiple conditions.
# MAGIC
# MAGIC Note that conditions are evaluated from top to bottom. Once a condition evaluates to true, no further conditions will be evaluated.
# MAGIC
-# MAGIC `if/else` control flow patterns:
-# MAGIC 1. Must contain an `if` clause
-# MAGIC 1. Can contain any number of `elif` clauses
-# MAGIC 1. Can contain at most one `else` clause
+# MAGIC **`if`** / **`else`** control flow patterns:
+# MAGIC 1. Must contain an **`if`** clause
+# MAGIC 1. Can contain any number of **`elif`** clauses
+# MAGIC 1. Can contain at most one **`else`** clause
# COMMAND ----------
@@ -118,6 +136,8 @@
# COMMAND ----------
# MAGIC %md
+# MAGIC
+# MAGIC
# MAGIC By encapsulating the above logic in a function, we can reuse this logic and formatting with arbitrary arguments rather than referencing globally-defined variables.
# COMMAND ----------
@@ -135,7 +155,9 @@ def foods_i_like(food):
# COMMAND ----------
# MAGIC %md
-# MAGIC Here, we pass the string `"bread"` to the function.
+# MAGIC
+# MAGIC
+# MAGIC Here, we pass the string **`"bread"`** to the function.
# COMMAND ----------
@@ -144,9 +166,11 @@ def foods_i_like(food):
# COMMAND ----------
# MAGIC %md
-# MAGIC As we evaluate the function, we locally assign the string `"bread"` to the `food` variable, and the logic behaves as expected.
# MAGIC
-# MAGIC Note that we don't overwrite the value of the `food` variable as previously defined in the notebook.
+# MAGIC
+# MAGIC As we evaluate the function, we locally assign the string **`"bread"`** to the **`food`** variable, and the logic behaves as expected.
+# MAGIC
+# MAGIC Note that we don't overwrite the value of the **`food`** variable as previously defined in the notebook.
# COMMAND ----------
@@ -155,9 +179,11 @@ def foods_i_like(food):
# COMMAND ----------
# MAGIC %md
+# MAGIC
+# MAGIC
# MAGIC ## try/except
# MAGIC
-# MAGIC While `if/else` clauses allow us to define conditional logic based on evaluating conditional statements, `try/except` focuses on providing robust error handling.
+# MAGIC While **`if`** / **`else`** clauses allow us to define conditional logic based on evaluating conditional statements, **`try`** / **`except`** focuses on providing robust error handling.
# MAGIC
# MAGIC Let's begin by considering a simple function.
@@ -169,6 +195,8 @@ def three_times(number):
# COMMAND ----------
# MAGIC %md
+# MAGIC
+# MAGIC
# MAGIC Let's assume that the desired use of this function is to multiply an integer value by 3.
# MAGIC
# MAGIC The below cell demonstrates this behavior.
@@ -180,6 +208,8 @@ def three_times(number):
# COMMAND ----------
# MAGIC %md
+# MAGIC
+# MAGIC
# MAGIC Note what happens if a string is passed to the function.
# COMMAND ----------
@@ -189,11 +219,15 @@ def three_times(number):
# COMMAND ----------
# MAGIC %md
+# MAGIC
+# MAGIC
# MAGIC In this case, we don't get an error, but we also do not get the desired outcome.
# MAGIC
-# MAGIC `assert` statements allow us to run simple tests of Python code. If an `assert` statement evaluates to true, nothing happens. If it evaluates to false, an error is raised.
+# MAGIC **`assert`** statements allow us to run simple tests of Python code. If an **`assert`** statement evaluates to true, nothing happens.
# MAGIC
-# MAGIC Run the two cells below to assert the types of `2` and `"2"`.
+# MAGIC If it evaluates to false, an error is raised.
+# MAGIC
+# MAGIC Run the following cell to assert that the number **`2`** is an integer
# COMMAND ----------
@@ -201,14 +235,26 @@ def three_times(number):
# COMMAND ----------
-assert type("2") == int
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC
+# MAGIC Uncomment the following cell and then run it to assert that the string **`"2"`"** is an integer.
+# MAGIC
+# MAGIC It should throw an **`AssertionError`**.
+
+# COMMAND ----------
+
+# assert type("2") == int
# COMMAND ----------
# MAGIC %md
-# MAGIC As expected, the string `"2"` does not evaluate as an integer.
# MAGIC
-# MAGIC Python strings have a property to report whether or not they can be safely cast as numeric values.
+# MAGIC
+# MAGIC As expected, the string **`"2"`** is not an integer.
+# MAGIC
+# MAGIC Python strings have a property to report whether or not they can be safely cast as numeric value as seen below.
# COMMAND ----------
@@ -217,9 +263,13 @@ def three_times(number):
# COMMAND ----------
# MAGIC %md
+# MAGIC
+# MAGIC
# MAGIC String numbers are common; you may see them as results from an API query, raw records in a JSON or CSV file, or returned by a SQL query.
# MAGIC
-# MAGIC `int()` and `float()` are two common methods for casting values to numeric types. An `int` will always be a whole number, while a `float` will always have a decimal.
+# MAGIC **`int()`** and **`float()`** are two common methods for casting values to numeric types.
+# MAGIC
+# MAGIC An **`int`** will always be a whole number, while a **`float`** will always have a decimal.
# COMMAND ----------
@@ -228,18 +278,24 @@ def three_times(number):
# COMMAND ----------
# MAGIC %md
+# MAGIC
+# MAGIC
# MAGIC While Python will gladly cast a string containing numeric characters to a numeric type, it will not allow you to change other strings to numbers.
+# MAGIC
+# MAGIC Uncomment the following cell and give it a try:
# COMMAND ----------
-int("two")
+# int("two")
# COMMAND ----------
# MAGIC %md
+# MAGIC
+# MAGIC
# MAGIC Note that errors will stop the execution of a notebook script; all cells after an error will be skipped when a notebook is scheduled as a production job.
# MAGIC
-# MAGIC If we enclose code that might throw an error in a `try` statement, we can define alternate logic when an error is encountered.
+# MAGIC If we enclose code that might throw an error in a **`try`** statement, we can define alternate logic when an error is encountered.
# MAGIC
# MAGIC Below is a simple function that demonstrates this.
@@ -247,13 +303,18 @@ def three_times(number):
def try_int(num_string):
try:
- return int(num_string)
+ int(num_string)
+ result = f"{num_string} is a number."
except:
- print(f"{num_string} is not a number!")
+ result = f"{num_string} is not a number!"
+
+ print(result)
# COMMAND ----------
# MAGIC %md
+# MAGIC
+# MAGIC
# MAGIC When a numeric string is passed, the function will return the result as an integer.
# COMMAND ----------
@@ -263,6 +324,8 @@ def try_int(num_string):
# COMMAND ----------
# MAGIC %md
+# MAGIC
+# MAGIC
# MAGIC When a non-numeric string is passed, an informative message is printed out.
# MAGIC
# MAGIC **NOTE**: An error is **not** raised, even though an error occurred, and no value was returned. Implementing logic that suppresses errors can lead to logic silently failing.
@@ -274,6 +337,8 @@ def try_int(num_string):
# COMMAND ----------
# MAGIC %md
+# MAGIC
+# MAGIC
# MAGIC Below, our earlier function is updated to include logic for handling errors to return an informative message.
# COMMAND ----------
@@ -282,15 +347,15 @@ def three_times(number):
try:
return int(number) * 3
except ValueError as e:
- print(f"""
- You passed the string variable '{number}'.
- The result of using this function would be to return the string '{number * 3}'.
- Try passing an integer instead.
- """)
+ print(f"You passed the string variable '{number}'.\n")
+ print(f"Try passing an integer instead.")
+ return None
# COMMAND ----------
# MAGIC %md
+# MAGIC
+# MAGIC
# MAGIC Now our function can process numbers passed as strings.
# COMMAND ----------
@@ -300,6 +365,8 @@ def three_times(number):
# COMMAND ----------
# MAGIC %md
+# MAGIC
+# MAGIC
# MAGIC And prints an informative message when a string is passed.
# COMMAND ----------
@@ -309,11 +376,15 @@ def three_times(number):
# COMMAND ----------
# MAGIC %md
+# MAGIC
+# MAGIC
# MAGIC Note that as implemented, this logic would only be useful for interactive execution of this logic (the message isn't currently being logged anywhere, and the code will not return the data in the desired format; human intervention would be required to act upon the printed message).
# COMMAND ----------
# MAGIC %md
+# MAGIC
+# MAGIC
# MAGIC ## Applying Python Control Flow for SQL Queries
# MAGIC
# MAGIC While the above examples demonstrate the basic principles of using these designs in Python, the goal of this lesson is to learn how to apply these concepts to executing SQL logic on Databricks.
@@ -333,6 +404,8 @@ def three_times(number):
# COMMAND ----------
# MAGIC %md
+# MAGIC
+# MAGIC
# MAGIC Run the SQL cell below to preview the contents of this temp view.
# COMMAND ----------
@@ -343,7 +416,9 @@ def three_times(number):
# COMMAND ----------
# MAGIC %md
-# MAGIC Running SQL in a Python cell simply requires passing the string query to `spark.sql()`.
+# MAGIC
+# MAGIC
+# MAGIC Running SQL in a Python cell simply requires passing the string query to **`spark.sql()`**.
# COMMAND ----------
@@ -353,7 +428,9 @@ def three_times(number):
# COMMAND ----------
# MAGIC %md
-# MAGIC But recall that executing a query with `spark.sql()` returns the results as a DataFrame rather than displaying them; below, the code is augmented to capture the result and display it.
+# MAGIC
+# MAGIC
+# MAGIC But recall that executing a query with **`spark.sql()`** returns the results as a DataFrame rather than displaying them; below, the code is augmented to capture the result and display it.
# COMMAND ----------
@@ -364,7 +441,9 @@ def three_times(number):
# COMMAND ----------
# MAGIC %md
-# MAGIC Using a simple `if` clause with a function allows us to execute arbitrary SQL queries, optionally displaying the results, and always returning the resultant DataFrame.
+# MAGIC
+# MAGIC
+# MAGIC Using a simple **`if`** clause with a function allows us to execute arbitrary SQL queries, optionally displaying the results, and always returning the resultant DataFrame.
# COMMAND ----------
@@ -381,7 +460,9 @@ def simple_query_function(query, preview=True):
# COMMAND ----------
# MAGIC %md
-# MAGIC Below, we execute a different query and set preview to `False`, as the purpose of the query is to create a temp view rather than return a preview of data.
+# MAGIC
+# MAGIC
+# MAGIC Below, we execute a different query and set preview to **`False`**, as the purpose of the query is to create a temp view rather than return a preview of data.
# COMMAND ----------
@@ -392,6 +473,8 @@ def simple_query_function(query, preview=True):
# COMMAND ----------
# MAGIC %md
+# MAGIC
+# MAGIC
# MAGIC We now have a simple extensible function that could be further parameterized depending on the needs of our organization.
# MAGIC
# MAGIC For example, suppose we want to protect our company from malicious SQL, like the query below.
@@ -403,30 +486,71 @@ def simple_query_function(query, preview=True):
# COMMAND ----------
# MAGIC %md
-# MAGIC Below, we define a simple search for a semi-colon in the text, then use an assert statement with `try/except` to raise a custom error message.
+# MAGIC
+# MAGIC
+# MAGIC
+# MAGIC We can use the **`find()`** method to test for multiple SQL statements by looking for a semicolon.
+
+# COMMAND ----------
+
+injection_query.find(";")
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC
+# MAGIC If it's not found it will return **`-1`**
+
+# COMMAND ----------
+
+injection_query.find("x")
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC
+# MAGIC With that knowledge, we can define a simple search for a semicolon in the query string and raise a custom error message if it was found (not **`-1`**)
# COMMAND ----------
def injection_check(query):
semicolon_index = query.find(";")
- try:
- assert semicolon_index < 0, f"Query contains semi-colon at index {semicolon_index}\nBlocking execution to avoid SQL injection attack"
- except AssertionError as e:
- print(query)
- raise e
+ if semicolon_index >= 0:
+ raise ValueError(f"Query contains semi-colon at index {semicolon_index}\nBlocking execution to avoid SQL injection attack")
# COMMAND ----------
# MAGIC %md
-# MAGIC **NOTE**: The example shown here is not sophisticated, but seeks to demonstrate a general principle. Always be wary of allowing untrusted users to pass text that will be passed to SQL queries. Also note that only one query can be executed using `spark.sql()`, so text with a semi-colon will always throw an error.
+# MAGIC
+# MAGIC
+# MAGIC
+# MAGIC **NOTE**: The example shown here is not sophisticated, but seeks to demonstrate a general principle.
+# MAGIC
+# MAGIC Always be wary of allowing untrusted users to pass text that will be passed to SQL queries.
+# MAGIC
+# MAGIC Also note that only one query can be executed using **`spark.sql()`**, so text with a semi-colon will always throw an error.
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC
+# MAGIC Uncomment the following cell and give it a try:
# COMMAND ----------
-injection_check(injection_query)
+# injection_check(injection_query)
# COMMAND ----------
# MAGIC %md
+# MAGIC
+# MAGIC
# MAGIC If we add this method to our earlier query function, we now have a more robust function that will assess each query for potential threats before execution.
# COMMAND ----------
@@ -441,6 +565,8 @@ def secure_query_function(query, preview=True):
# COMMAND ----------
# MAGIC %md
+# MAGIC
+# MAGIC
# MAGIC As expected, we see normal performance with a safe query.
# COMMAND ----------
@@ -450,6 +576,8 @@ def secure_query_function(query, preview=True):
# COMMAND ----------
# MAGIC %md
+# MAGIC
+# MAGIC
# MAGIC But prevent execution when when bad logic is run.
# COMMAND ----------
diff --git a/Data-Engineering-with-Databricks/05 - OPTIONAL Python for Spark SQL/DE 5.3L - Python for SQL Lab.py b/Data-Engineering-with-Databricks/05 - OPTIONAL Python for Spark SQL/DE 5.3L - Python for SQL Lab.py
new file mode 100644
index 0000000..78ff6f2
--- /dev/null
+++ b/Data-Engineering-with-Databricks/05 - OPTIONAL Python for Spark SQL/DE 5.3L - Python for SQL Lab.py
@@ -0,0 +1,287 @@
+# Databricks notebook source
+# MAGIC %md-sandbox
+# MAGIC
+# MAGIC
+# MAGIC

+# MAGIC
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC # Just Enough Python for Databricks SQL Lab
+# MAGIC
+# MAGIC ## Learning Objectives
+# MAGIC By the end of this lab, you should be able to:
+# MAGIC * Review basic Python code and describe expected outcomes of code execution
+# MAGIC * Reason through control flow statements in Python functions
+# MAGIC * Add parameters to a SQL query by wrapping it in a Python function
+
+# COMMAND ----------
+
+# MAGIC %run ../Includes/Classroom-Setup-5.3L
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC # Reviewing Python Basics
+# MAGIC
+# MAGIC In the previous notebook, we briefly explored using **`spark.sql()`** to execute arbitrary SQL commands from Python.
+# MAGIC
+# MAGIC Look at the following 3 cells. Before executing each cell, identify:
+# MAGIC 1. The expected output of cell execution
+# MAGIC 1. What logic is being executed
+# MAGIC 1. Changes to the resultant state of the environment
+# MAGIC
+# MAGIC Then execute the cells, compare the results to your expectations, and see the explanations below.
+
+# COMMAND ----------
+
+course = "dewd"
+
+# COMMAND ----------
+
+spark.sql(f"SELECT '{course}' AS course_name")
+
+# COMMAND ----------
+
+df = spark.sql(f"SELECT '{course}' AS course_name")
+display(df)
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC 1. **Cmd 5** assigns a string to a variable. When a variable assignment is successful, no output is displayed to the notebook. A new variable is added to the current execution environment.
+# MAGIC 1. **Cmd 6** executes a SQL query and displays the schema for the DataFrame alongside the word **`DataFrame`**. In this case, the SQL query is just to select a string, so no changes to our environment occur.
+# MAGIC 1. **Cmd 7** executes the same SQL query and displays the output of the DataFrame. This combination of **`display()`** and **`spark.sql()`** most closely mirrors executing logic in a **`%sql`** cell; the results will always be printed in a formatted table, assuming results are returned by the query; some queries will instead manipulate tables or databases, in which case the work **`OK`** will print to show successful execution. In this case, no changes to our environment occur from running this code.
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC ## Setting Up a Development Environment
+# MAGIC
+# MAGIC Throughout this course, we use logic similar to the follow cell to capture information about the user currently executing the notebook and create an isolated development database.
+# MAGIC
+# MAGIC The **`re`** library is the standard Python library for regex.
+# MAGIC
+# MAGIC Databricks SQL has a special method to capture the username of the **`current_user()`**; and the **`.first()[0]`** code is a quick hack to capture the first row of the first column of a query executed with **`spark.sql()`** (in this case, we do this safely knowing that there will only be 1 row and 1 column).
+# MAGIC
+# MAGIC All other logic below is just string formatting.
+
+# COMMAND ----------
+
+import re
+
+username = spark.sql("SELECT current_user()").first()[0]
+clean_username = re.sub("[^a-zA-Z0-9]", "_", username)
+db_name = f"dbacademy_{clean_username}_{course}_5_3l"
+working_dir = f"dbfs:/user/{username}/dbacademy/{course}/5.3l"
+
+print(f"username: {username}")
+print(f"db_name: {db_name}")
+print(f"working_dir: {working_dir}")
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC Below, we add a simple control flow statement to this logic to create and use this user-specific database.
+# MAGIC
+# MAGIC Optionally, we will reset this database and drop all of the contents on repeat execution. (Note the the default value for the parameter **`reset`** is **`True`**).
+
+# COMMAND ----------
+
+def create_database(course, reset=True):
+ import re
+
+ username = spark.sql("SELECT current_user()").first()[0]
+ clean_username = re.sub("[^a-zA-Z0-9]", "_", username)
+ db_name = f"dbacademy_{clean_username}_{course}_5_3l"
+ working_dir = f"dbfs:/user/{username}/dbacademy/{course}/5.3l"
+
+ print(f"username: {username}")
+ print(f"db_name: {db_name}")
+ print(f"working_dir: {working_dir}")
+
+ if reset:
+ spark.sql(f"DROP DATABASE IF EXISTS {db_name} CASCADE")
+ dbutils.fs.rm(working_dir, True)
+
+ spark.sql(f"CREATE DATABASE IF NOT EXISTS {db_name} LOCATION '{working_dir}/{db_name}.db'")
+ spark.sql(f"USE {db_name}")
+
+create_database(course)
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC While this logic as defined is geared toward isolating students in shared workspaces for instructional purposes, the same basic design could be leveraged for testing new logic in an isolated environment before pushing to production.
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC ## Handling Errors Gracefully
+# MAGIC
+# MAGIC Review the logic in the function below.
+# MAGIC
+# MAGIC Note that we've just declared a new database that currently contains no tables.
+
+# COMMAND ----------
+
+def query_or_make_demo_table(table_name):
+ try:
+ display(spark.sql(f"SELECT * FROM {table_name}"))
+ print(f"Displayed results for the table {table_name}")
+
+ except:
+ spark.sql(f"CREATE TABLE {table_name} (id INT, name STRING, value DOUBLE, state STRING)")
+ spark.sql(f"""INSERT INTO {table_name}
+ VALUES (1, "Yve", 1.0, "CA"),
+ (2, "Omar", 2.5, "NY"),
+ (3, "Elia", 3.3, "OH"),
+ (4, "Rebecca", 4.7, "TX"),
+ (5, "Ameena", 5.3, "CA"),
+ (6, "Ling", 6.6, "NY"),
+ (7, "Pedro", 7.1, "KY")""")
+
+ display(spark.sql(f"SELECT * FROM {table_name}"))
+ print(f"Created the table {table_name}")
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC Try to identify the following before executing the next cell:
+# MAGIC 1. The expected output of cell execution
+# MAGIC 1. What logic is being executed
+# MAGIC 1. Changes to the resultant state of the environment
+
+# COMMAND ----------
+
+query_or_make_demo_table("demo_table")
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC Now answer the same three questions before running the same query below.
+
+# COMMAND ----------
+
+query_or_make_demo_table("demo_table")
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC - On the first execution, the table **`demo_table`** did not yet exist. As such, the attempt to return the contents of the table created an error, which resulted in our **`except`** block of logic executing. This block:
+# MAGIC 1. Created the table
+# MAGIC 1. Inserted values
+# MAGIC 1. Printed or displayed the contents of the table
+# MAGIC - On the second execution, the table **`demo_table`** already exists, and so the first query in the **`try`** block executes without error. As a result, we just display the results of the query without modifying anything in our environment.
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC ## Adapting SQL to Python
+# MAGIC Let's consider the following SQL query against our demo table created above.
+
+# COMMAND ----------
+
+# MAGIC %sql
+# MAGIC SELECT id, value
+# MAGIC FROM demo_table
+# MAGIC WHERE state = "CA"
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC
+# MAGIC which can also be expressed using the PySpark API and the **`display`** function as seen here:
+
+# COMMAND ----------
+
+results = spark.sql("SELECT id, value FROM demo_table WHERE state = 'CA'")
+display(results)
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC Let's use this simple example to practice creating a Python function that adds optional functionality.
+# MAGIC
+# MAGIC Our target function will:
+# MAGIC * Be based upon a query that only includes the **`id`** and **`value`** columns from the a table named **`demo_table`**
+# MAGIC * Will allow filtering of that query by **`state`** where the the default behavior is to include all states
+# MAGIC * Will optionally render the results of the query using the **`display`** function where the default behavior is to not render
+# MAGIC * Will return:
+# MAGIC * The query result object (a PySpark DataFrame) if **`render_results`** is False
+# MAGIC * The **`None`** value if **`render_results`** is True
+# MAGIC
+# MAGIC Stretch Goal:
+# MAGIC * Add an assert statement to verify that the value passed for the **`state`** parameter contains two, uppercase letters
+# MAGIC
+# MAGIC Some starter logic has been provided below:
+
+# COMMAND ----------
+
+# TODO
+def preview_values(state=, render_results=):
+ query =
+
+ if state is not None:
+
+
+ if render_results
+
+
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC The assert statements below can be used to check whether or not your function works as intended.
+
+# COMMAND ----------
+
+import pyspark.sql.dataframe
+
+assert type(preview_values()) == pyspark.sql.dataframe.DataFrame, "Function should return the results as a DataFrame"
+assert preview_values().columns == ["id", "value"], "Query should only return **`id`** and **`value`** columns"
+
+assert preview_values(render_results=True) is None, "Function should not return None when rendering"
+assert preview_values(render_results=False) is not None, "Function should return DataFrame when not rendering"
+
+assert preview_values(state=None).count() == 7, "Function should allow no state"
+assert preview_values(state="NY").count() == 2, "Function should allow filtering by state"
+assert preview_values(state="CA").count() == 2, "Function should allow filtering by state"
+assert preview_values(state="OH").count() == 1, "Function should allow filtering by state"
+
+# COMMAND ----------
+
+# MAGIC %md-sandbox
+# MAGIC © 2022 Databricks, Inc. All rights reserved.
+# MAGIC Apache, Apache Spark, Spark and the Spark logo are trademarks of the Apache Software Foundation.
+# MAGIC
+# MAGIC Privacy Policy | Terms of Use | Support
diff --git a/Data-Engineering-with-Databricks/06 - Incremental Data Processing/DE 6.1 - Incremental Data Ingestion with Auto Loader.py b/Data-Engineering-with-Databricks/06 - Incremental Data Processing/DE 6.1 - Incremental Data Ingestion with Auto Loader.py
new file mode 100644
index 0000000..7904cf1
--- /dev/null
+++ b/Data-Engineering-with-Databricks/06 - Incremental Data Processing/DE 6.1 - Incremental Data Ingestion with Auto Loader.py
@@ -0,0 +1,279 @@
+# Databricks notebook source
+# MAGIC %md-sandbox
+# MAGIC
+# MAGIC
+# MAGIC

+# MAGIC
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC # Incremental Data Ingestion with Auto Loader
+# MAGIC
+# MAGIC Incremental ETL is important since it allows us to deal solely with new data that has been encountered since the last ingestion. Reliably processing only the new data reduces redundant processing and helps enterprises reliably scale data pipelines.
+# MAGIC
+# MAGIC The first step for any successful data lakehouse implementation is ingesting into a Delta Lake table from cloud storage.
+# MAGIC
+# MAGIC Historically, ingesting files from a data lake into a database has been a complicated process.
+# MAGIC
+# MAGIC Databricks Auto Loader provides an easy-to-use mechanism for incrementally and efficiently processing new data files as they arrive in cloud file storage. In this notebook, you'll see Auto Loader in action.
+# MAGIC
+# MAGIC Due to the benefits and scalability that Auto Loader delivers, Databricks recommends its use as general **best practice** when ingesting data from cloud object storage.
+# MAGIC
+# MAGIC ## Learning Objectives
+# MAGIC By the end of this lesson, you should be able to:
+# MAGIC * Execute Auto Loader code to incrementally ingest data from cloud storage to Delta Lake
+# MAGIC * Describe what happens when a new file arrives in a directory configured for Auto Loader
+# MAGIC * Query a table fed by a streaming Auto Loader query
+# MAGIC
+# MAGIC ## Dataset Used
+# MAGIC This demo uses simplified artificially generated medical data representing heart rate recordings delivered in the JSON format.
+# MAGIC
+# MAGIC | Field | Type |
+# MAGIC | --- | --- |
+# MAGIC | device_id | int |
+# MAGIC | mrn | long |
+# MAGIC | time | double |
+# MAGIC | heartrate | double |
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC
+# MAGIC ## Getting Started
+# MAGIC
+# MAGIC Run the following cell to reset the demo and configure required variables and help functions.
+
+# COMMAND ----------
+
+# MAGIC %run ../Includes/Classroom-Setup-6.1
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC ## Using Auto Loader
+# MAGIC
+# MAGIC In the cell below, a function is defined to demonstrate using Databricks Auto Loader with the PySpark API. This code includes both a Structured Streaming read and write.
+# MAGIC
+# MAGIC The following notebook will provide a more robust overview of Structured Streaming. If you wish to learn more about Auto Loader options, refer to the documentation.
+# MAGIC
+# MAGIC Note that when using Auto Loader with automatic schema inference and evolution, the 4 arguments shown here should allow ingestion of most datasets. These arguments are explained below.
+# MAGIC
+# MAGIC | argument | what it is | how it's used |
+# MAGIC | --- | --- | --- |
+# MAGIC | **`data_source`** | The directory of the source data | Auto Loader will detect new files as they arrive in this location and queue them for ingestion; passed to the **`.load()`** method |
+# MAGIC | **`source_format`** | The format of the source data | While the format for all Auto Loader queries will be **`cloudFiles`**, the format of the source data should always be specified for the **`cloudFiles.format`** option |
+# MAGIC | **`table_name`** | The name of the target table | Spark Structured Streaming supports writing directly to Delta Lake tables by passing a table name as a string to the **`.table()`** method. Note that you can either append to an existing table or create a new table |
+# MAGIC | **`checkpoint_directory`** | The location for storing metadata about the stream | This argument is pass to the **`checkpointLocation`** and **`cloudFiles.schemaLocation`** options. Checkpoints keep track of streaming progress, while the schema location tracks updates to the fields in the source dataset |
+# MAGIC
+# MAGIC **NOTE**: The code below has been streamlined to demonstrate Auto Loader functionality. We'll see in later lessons that additional transformations can be applied to source data before saving them to Delta Lake.
+
+# COMMAND ----------
+
+def autoload_to_table(data_source, source_format, table_name, checkpoint_directory):
+ query = (spark.readStream
+ .format("cloudFiles")
+ .option("cloudFiles.format", source_format)
+ .option("cloudFiles.schemaLocation", checkpoint_directory)
+ .load(data_source)
+ .writeStream
+ .option("checkpointLocation", checkpoint_directory)
+ .option("mergeSchema", "true")
+ .table(table_name))
+ return query
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC In the following cell, we use the previously defined function and some path variables defined in the setup script to begin an Auto Loader stream.
+# MAGIC
+# MAGIC Here, we're reading from a source directory of JSON files.
+
+# COMMAND ----------
+
+query = autoload_to_table(data_source = f"{DA.paths.working_dir}/tracker",
+ source_format = "json",
+ table_name = "target_table",
+ checkpoint_directory = f"{DA.paths.checkpoints}/target_table")
+
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC Because Auto Loader uses Spark Structured Streaming to load data incrementally, the code above doesn't appear to finish executing.
+# MAGIC
+# MAGIC We can think of this as a **continuously active query**. This means that as soon as new data arrives in our data source, it will be processed through our logic and loaded into our target table. We'll explore this in just a second.
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC ## Helper Function for Streaming Lessons
+# MAGIC
+# MAGIC Our notebook-based lessons combine streaming functions with batch and streaming queries against the results of those operations. These notebooks are for instructional purposes and intended for interactive, cell-by-cell execution. This pattern is not intended for production.
+# MAGIC
+# MAGIC Below, we define a helper function that prevents our notebook from executing the next cell just long enough to ensure data has been written out by a given streaming query. This code should not be necessary in a production job.
+
+# COMMAND ----------
+
+def block_until_stream_is_ready(query, min_batches=2):
+ import time
+ while len(query.recentProgress) < min_batches:
+ time.sleep(5) # Give it a couple of seconds
+
+ print(f"The stream has processed {len(query.recentProgress)} batchs")
+
+block_until_stream_is_ready(query)
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC ## Query Target Table
+# MAGIC
+# MAGIC Once data has been ingested to Delta Lake with Auto Loader, users can interact with it the same way they would any table.
+
+# COMMAND ----------
+
+# MAGIC %sql
+# MAGIC SELECT * FROM target_table
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC Note that the **`_rescued_data`** column is added by Auto Loader automatically to capture any data that might be malformed and not fit into the table otherwise.
+# MAGIC
+# MAGIC While Auto Loader captured the field names for our data correctly, note that it encoded all fields as **`STRING`** type. Because JSON is a text-based format, this is the safest and most permissive type, ensuring that the least amount of data is dropped or ignored at ingestion due to type mismatch.
+
+# COMMAND ----------
+
+# MAGIC %sql
+# MAGIC DESCRIBE TABLE target_table
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC Use the cell below to define a temporary view that summarizes the recordings in our target table.
+# MAGIC
+# MAGIC We'll use this view below to demonstrate how new data is automatically ingested with Auto Loader.
+
+# COMMAND ----------
+
+# MAGIC %sql
+# MAGIC CREATE OR REPLACE TEMP VIEW device_counts AS
+# MAGIC SELECT device_id, count(*) total_recordings
+# MAGIC FROM target_table
+# MAGIC GROUP BY device_id;
+# MAGIC
+# MAGIC SELECT * FROM device_counts
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC ## Land New Data
+# MAGIC
+# MAGIC As mentioned previously, Auto Loader is configured to incrementally process files from a directory in cloud object storage into a Delta Lake table.
+# MAGIC
+# MAGIC We have configured and are currently executing a query to process JSON files from the location specified by **`source_path`** into a table named **`target_table`**. Let's review the contents of the **`source_path`** directory.
+
+# COMMAND ----------
+
+files = dbutils.fs.ls(f"{DA.paths.working_dir}/tracker")
+display(files)
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC At present, you should see a single JSON file listed in this location.
+# MAGIC
+# MAGIC The method in the cell below was configured in our setup script to allow us to model an external system writing data to this directory. Each time you execute the cell below, a new file will land in the **`source_path`** directory.
+
+# COMMAND ----------
+
+DA.data_factory.load()
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC List the contents of the **`source_path`** again using the cell below. You should see an additional JSON file for each time you ran the previous cell.
+
+# COMMAND ----------
+
+files = dbutils.fs.ls(f"{DA.paths.working_dir}/tracker")
+display(files)
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC ## Tracking Ingestion Progress
+# MAGIC
+# MAGIC Historically, many systems have been configured to either reprocess all records in a source directory to calculate current results or require data engineers to implement custom logic to identify new data that's arrived since the last time a table was updated.
+# MAGIC
+# MAGIC With Auto Loader, your table has already been updated.
+# MAGIC
+# MAGIC Run the query below to confirm that new data has been ingested.
+
+# COMMAND ----------
+
+# MAGIC %sql
+# MAGIC SELECT * FROM device_counts
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC The Auto Loader query we configured earlier automatically detects and processes records from the source directory into the target table. There is a slight delay as records are ingested, but an Auto Loader query executing with default streaming configuration should update results in near real time.
+# MAGIC
+# MAGIC The query below shows the table history. A new table version should be indicated for each **`STREAMING UPDATE`**. These update events coincide with new batches of data arriving at the source.
+
+# COMMAND ----------
+
+# MAGIC %sql
+# MAGIC DESCRIBE HISTORY target_table
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC ## Clean Up
+# MAGIC Feel free to continue landing new data and exploring the table results with the cells above.
+# MAGIC
+# MAGIC When you're finished, run the following cell to stop all active streams and remove created resources before continuing.
+
+# COMMAND ----------
+
+DA.cleanup()
+
+# COMMAND ----------
+
+# MAGIC %md-sandbox
+# MAGIC © 2022 Databricks, Inc. All rights reserved.
+# MAGIC Apache, Apache Spark, Spark and the Spark logo are trademarks of the Apache Software Foundation.
+# MAGIC
+# MAGIC Privacy Policy | Terms of Use | Support
diff --git a/Data-Engineering-with-Databricks/06 - Incremental Data Processing/DE 6.2 - Reasoning about Incremental Data.py b/Data-Engineering-with-Databricks/06 - Incremental Data Processing/DE 6.2 - Reasoning about Incremental Data.py
new file mode 100644
index 0000000..fe8cc79
--- /dev/null
+++ b/Data-Engineering-with-Databricks/06 - Incremental Data Processing/DE 6.2 - Reasoning about Incremental Data.py
@@ -0,0 +1,397 @@
+# Databricks notebook source
+# MAGIC %md-sandbox
+# MAGIC
+# MAGIC
+# MAGIC

+# MAGIC
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC # Reasoning about Incremental Data
+# MAGIC
+# MAGIC Spark Structured Streaming extends the functionality of Apache Spark to allow for simplified configuration and bookkeeping when processing incremental datasets. In the past, much of the emphasis for streaming with big data has focused on reducing latency to provide near real time analytic insights. While Structured Streaming provides exceptional performance in achieving these goals, this lesson will focus more on the applications of incremental data processing.
+# MAGIC
+# MAGIC While incremental processing is not absolutely necessary to work successfully in the data lakehouse, our experience helping some of the world's largest companies derive insights from the world's largest datasets has led to the conclusion that many workloads can benefit substantially from an incremental processing approach. Many of the core features at the heart of Databricks have been optimized specifically to handle these ever-growing datasets.
+# MAGIC
+# MAGIC Consider the following datasets and use cases:
+# MAGIC * Data scientists need secure, de-identified, versioned access to frequently updated records in an operational database
+# MAGIC * Credit card transactions need to be compared to past customer behavior to identify and flag fraud
+# MAGIC * A multi-national retailer seeks to serve custom product recommendations using purchase history
+# MAGIC * Log files from distributed systems need to be analayzed to detect and respond to instabilities
+# MAGIC * Clickstream data from millions of online shoppers needs to be leveraged for A/B testing of UX
+# MAGIC
+# MAGIC The above are just a small sample of datasets that grow incrementally and infinitely over time.
+# MAGIC
+# MAGIC In this lesson, we'll explore the basics of working with Spark Structured Streaming to allow incremental processing of data. In the next lesson, we'll talk more about how this incremental processing model simplifies data processing in the data lakehouse.
+# MAGIC
+# MAGIC ## Learning Objectives
+# MAGIC By the end of this lesson, you should be able to:
+# MAGIC * Describe the programming model used by Spark Structured Streaming
+# MAGIC * Configure required options to perform a streaming read on a source
+# MAGIC * Describe the requirements for end-to-end fault tolerance
+# MAGIC * Configure required options to perform a streaming write to a sink
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC
+# MAGIC ## Getting Started
+# MAGIC
+# MAGIC Run the following cell to configure our "classroom."
+
+# COMMAND ----------
+
+# MAGIC %run ../Includes/Classroom-Setup-6.2
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC
+# MAGIC ## Treating Infinite Data as a Table
+# MAGIC
+# MAGIC The magic behind Spark Structured Streaming is that it allows users to interact with ever-growing data sources as if they were just a static table of records.
+# MAGIC
+# MAGIC
+# MAGIC
+# MAGIC In the graphic above, a **data stream** describes any data source that grows over time. New data in a data stream might correspond to:
+# MAGIC * A new JSON log file landing in cloud storage
+# MAGIC * Updates to a database captured in a CDC feed
+# MAGIC * Events queued in a pub/sub messaging feed
+# MAGIC * A CSV file of sales closed the previous day
+# MAGIC
+# MAGIC Many organizations have traditionally taken an approach of reprocessing the entire source dataset each time they want to update their results. Another approach would be to write custom logic to only capture those files or records that have been added since the last time an update was run.
+# MAGIC
+# MAGIC Structured Streaming lets us define a query against the data source and automatically detect new records and propagate them through previously defined logic.
+# MAGIC
+# MAGIC **Spark Structured Streaming is optimized on Databricks to integrate closely with Delta Lake and Auto Loader.**
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC ## Basic Concepts
+# MAGIC
+# MAGIC - The developer defines an **input table** by configuring a streaming read against a **source**. The syntax for doing this is similar to working with static data.
+# MAGIC - A **query** is defined against the input table. Both the DataFrames API and Spark SQL can be used to easily define transformations and actions against the input table.
+# MAGIC - This logical query on the input table generates the **results table**. The results table contains the incremental state information of the stream.
+# MAGIC - The **output** of a streaming pipeline will persist updates to the results table by writing to an external **sink**. Generally, a sink will be a durable system such as files or a pub/sub messaging bus.
+# MAGIC - New rows are appended to the input table for each **trigger interval**. These new rows are essentially analogous to micro-batch transactions and will be automatically propagated through the results table to the sink.
+# MAGIC
+# MAGIC
+# MAGIC
+# MAGIC
+# MAGIC For more information, see the analogous section in the Structured Streaming Programming Guide (from which several images have been borrowed).
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC ## End-to-end Fault Tolerance
+# MAGIC
+# MAGIC Structured Streaming ensures end-to-end exactly-once fault-tolerance guarantees through _checkpointing_ (discussed below) and Write Ahead Logs.
+# MAGIC
+# MAGIC Structured Streaming sources, sinks, and the underlying execution engine work together to track the progress of stream processing. If a failure occurs, the streaming engine attempts to restart and/or reprocess the data.
+# MAGIC For best practices on recovering from a failed streaming query see docs.
+# MAGIC
+# MAGIC This approach _only_ works if the streaming source is replayable; replayable sources include cloud-based object storage and pub/sub messaging services.
+# MAGIC
+# MAGIC At a high level, the underlying streaming mechanism relies on a couple of approaches:
+# MAGIC
+# MAGIC * First, Structured Streaming uses checkpointing and write-ahead logs to record the offset range of data being processed during each trigger interval.
+# MAGIC * Next, the streaming sinks are designed to be _idempotent_ - that is, multiple writes of the same data (as identified by the offset) do _not_ result in duplicates being written to the sink.
+# MAGIC
+# MAGIC Taken together, replayable data sources and idempotent sinks allow Structured Streaming to ensure **end-to-end, exactly-once semantics** under any failure condition.
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC
+# MAGIC ## Reading a Stream
+# MAGIC
+# MAGIC The **`spark.readStream()`** method returns a **`DataStreamReader`** used to configure and query the stream.
+# MAGIC
+# MAGIC In the previous lesson, we saw code configured for incrementally reading with Auto Loader. Here, we'll show how easy it is to incrementally read a Delta Lake table.
+# MAGIC
+# MAGIC The code uses the PySpark API to incrementally read a Delta Lake table named **`bronze`** and register a streaming temp view named **`streaming_tmp_vw`**.
+# MAGIC
+# MAGIC **NOTE**: A number of optional configurations (not shown here) can be set when configuring incremental reads, the most important of which allows you to limit the input rate.
+
+# COMMAND ----------
+
+(spark.readStream
+ .table("bronze")
+ .createOrReplaceTempView("streaming_tmp_vw"))
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC
+# MAGIC When we execute a query on a streaming temporary view, we'll continue to update the results of the query as new data arrives in the source.
+# MAGIC
+# MAGIC Think of a query executed against a streaming temp view as an **always-on incremental query**.
+# MAGIC
+# MAGIC **NOTE**: Generally speaking, unless a human is actively monitoring the output of a query during development or live dashboarding, we won't return streaming results to a notebook.
+
+# COMMAND ----------
+
+# MAGIC %sql
+# MAGIC SELECT * FROM streaming_tmp_vw
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC You will recognize the data as being the same as the Delta table written out in our previous lesson.
+# MAGIC
+# MAGIC Before continuing, click **`Stop Execution`** at the top of the notebook, **`Cancel`** immediately under the cell, or run the following cell to stop all active streaming queries.
+
+# COMMAND ----------
+
+for s in spark.streams.active:
+ print("Stopping " + s.id)
+ s.stop()
+ s.awaitTermination()
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC ## Working with Streaming Data
+# MAGIC We can execute most transformation against streaming temp views the same way we would with static data. Here, we'll run a simple aggregation to get counts of records for each **`device_id`**.
+# MAGIC
+# MAGIC Because we are querying a streaming temp view, this becomes a streaming query that executes indefinitely, rather than completing after retrieving a single set of results. For streaming queries like this, Databricks Notebooks include interactive dashboards that allow users to monitor streaming performance. Explore this below.
+# MAGIC
+# MAGIC One important note regarding this example: this is merely displaying an aggregation of input as seen by the stream. **None of these records are being persisted anywhere at this point.**
+
+# COMMAND ----------
+
+# MAGIC %sql
+# MAGIC SELECT device_id, count(device_id) AS total_recordings
+# MAGIC FROM streaming_tmp_vw
+# MAGIC GROUP BY device_id
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC Before continuing, click **`Stop Execution`** at the top of the notebook, **`Cancel`** immediately under the cell, or run the following cell to stop all active streaming queries.
+
+# COMMAND ----------
+
+for s in spark.streams.active:
+ print("Stopping " + s.id)
+ s.stop()
+ s.awaitTermination()
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC ## Unsupported Operations
+# MAGIC
+# MAGIC Most operations on a streaming DataFrame are identical to a static DataFrame. There are some exceptions to this.
+# MAGIC
+# MAGIC Consider the model of the data as a constantly appending table. Sorting is one of a handful of operations that is either too complex or logically not possible to do when working with streaming data.
+# MAGIC
+# MAGIC A full discussion of these exceptions is out of scope for this course. Note that advanced streaming methods like windowing and watermarking can be used to add additional functionality to incremental workloads.
+# MAGIC
+# MAGIC Uncomment and run the following cell how this failure may appear:
+
+# COMMAND ----------
+
+# %sql
+# SELECT *
+# FROM streaming_tmp_vw
+# ORDER BY time
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC ## Persisting Streaming Results
+# MAGIC
+# MAGIC In order to persist incremental results, we need to pass our logic back to the PySpark Structured Streaming DataFrames API.
+# MAGIC
+# MAGIC Above, we created a temp view from a PySpark streaming DataFrame. If we create another temp view from the results of a query against a streaming temp view, we'll again have a streaming temp view.
+
+# COMMAND ----------
+
+# MAGIC %sql
+# MAGIC CREATE OR REPLACE TEMP VIEW device_counts_tmp_vw AS (
+# MAGIC SELECT device_id, COUNT(device_id) AS total_recordings
+# MAGIC FROM streaming_tmp_vw
+# MAGIC GROUP BY device_id
+# MAGIC )
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC
+# MAGIC ## Writing a Stream
+# MAGIC
+# MAGIC To persist the results of a streaming query, we must write them out to durable storage. The **`DataFrame.writeStream`** method returns a **`DataStreamWriter`** used to configure the output.
+# MAGIC
+# MAGIC When writing to Delta Lake tables, we typically will only need to worry about 3 settings, discussed here.
+# MAGIC
+# MAGIC ### Checkpointing
+# MAGIC
+# MAGIC Databricks creates checkpoints by storing the current state of your streaming job to cloud storage.
+# MAGIC
+# MAGIC Checkpointing combines with write ahead logs to allow a terminated stream to be restarted and continue from where it left off.
+# MAGIC
+# MAGIC Checkpoints cannot be shared between separate streams. A checkpoint is required for every streaming write to ensure processing guarantees.
+# MAGIC
+# MAGIC ### Output Modes
+# MAGIC
+# MAGIC Streaming jobs have output modes similar to static/batch workloads. More details here.
+# MAGIC
+# MAGIC | Mode | Example | Notes |
+# MAGIC | ------------- | ----------- | --- |
+# MAGIC | **Append** | **`.outputMode("append")`** | **This is the default.** Only newly appended rows are incrementally appended to the target table with each batch |
+# MAGIC | **Complete** | **`.outputMode("complete")`** | The Results Table is recalculated each time a write is triggered; the target table is overwritten with each batch |
+# MAGIC
+# MAGIC
+# MAGIC ### Trigger Intervals
+# MAGIC
+# MAGIC When defining a streaming write, the **`trigger`** method specifies when the system should process the next set of data..
+# MAGIC
+# MAGIC
+# MAGIC | Trigger Type | Example | Behavior |
+# MAGIC |----------------------------------------|----------|----------|
+# MAGIC | Unspecified | | **This is the default.** This is equivalent to using **`processingTime="500ms"`** |
+# MAGIC | Fixed interval micro-batches | **`.trigger(processingTime="2 minutes")`** | The query will be executed in micro-batches and kicked off at the user-specified intervals |
+# MAGIC | Triggered micro-batch | **`.trigger(once=True)`** | The query will execute a single micro-batch to process all the available data and then stop on its own |
+# MAGIC | Triggered micro-batches | **`.trigger(availableNow=True)`** | The query will execute multiple micro-batches to process all the available data and then stop on its own |
+# MAGIC
+# MAGIC Triggers are specified when defining how data will be written to a sink and control the frequency of micro-batches. By default, Spark will automatically detect and process all data in the source that has been added since the last trigger.
+# MAGIC
+# MAGIC **NOTE:** **`Trigger.AvailableNow`** is a new trigger type that is available in DBR 10.1 for Scala only and available in DBR 10.2 and above for Python and Scala.
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC ## Pulling It All Together
+# MAGIC
+# MAGIC The code below demonstrates using **`spark.table()`** to load data from a streaming temp view back to a DataFrame. Note that Spark will always load streaming views as a streaming DataFrame and static views as static DataFrames (meaning that incremental processing must be defined with read logic to support incremental writing).
+# MAGIC
+# MAGIC In this first query, we'll demonstrate using **`trigger(availableNow=True)`** to perform incremental batch processing.
+
+# COMMAND ----------
+
+(spark.table("device_counts_tmp_vw")
+ .writeStream
+ .option("checkpointLocation", f"{DA.paths.checkpoints}/silver")
+ .outputMode("complete")
+ .trigger(availableNow=True)
+ .table("device_counts")
+ .awaitTermination() # This optional method blocks execution of the next cell until the incremental batch write has succeeded
+)
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC Below, we change our trigger method to change this query from a triggered incremental batch to an always-on query triggered every 4 seconds.
+# MAGIC
+# MAGIC **NOTE**: As we start this query, no new records exist in our source table. We'll add new data shortly.
+
+# COMMAND ----------
+
+query = (spark.table("device_counts_tmp_vw")
+ .writeStream
+ .option("checkpointLocation", f"{DA.paths.checkpoints}/silver")
+ .outputMode("complete")
+ .trigger(processingTime='4 seconds')
+ .table("device_counts"))
+
+# Like before, wait until our stream has processed some data
+DA.block_until_stream_is_ready(query)
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC ## Querying the Output
+# MAGIC Now let's query the output we've written from SQL. Because the result is a table, we only need to deserialize the data to return the results.
+# MAGIC
+# MAGIC Because we are now querying a table (not a streaming DataFrame), the following will **not** be a streaming query.
+
+# COMMAND ----------
+
+# MAGIC %sql
+# MAGIC SELECT *
+# MAGIC FROM device_counts
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC ## Land New Data
+# MAGIC
+# MAGIC As in our previous lesson, we have configured a helper function to process new records into our source table.
+# MAGIC
+# MAGIC Run the cell below to land another batch of data.
+
+# COMMAND ----------
+
+DA.data_factory.load()
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC Query the target table again to see the updated counts for each **`device_id`**.
+
+# COMMAND ----------
+
+# MAGIC %sql
+# MAGIC SELECT *
+# MAGIC FROM device_counts
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC ## Clean Up
+# MAGIC Feel free to continue landing new data and exploring the table results with the cells above.
+# MAGIC
+# MAGIC When you're finished, run the following cell to stop all active streams and remove created resources before continuing.
+
+# COMMAND ----------
+
+DA.cleanup()
+
+# COMMAND ----------
+
+# MAGIC %md-sandbox
+# MAGIC © 2022 Databricks, Inc. All rights reserved.
+# MAGIC Apache, Apache Spark, Spark and the Spark logo are trademarks of the Apache Software Foundation.
+# MAGIC
+# MAGIC Privacy Policy | Terms of Use | Support
diff --git a/Data-Engineering-with-Databricks/06 - Incremental Data Processing/DE 6.3L - Using Auto Loader and Structured Streaming with Spark SQL Lab.py b/Data-Engineering-with-Databricks/06 - Incremental Data Processing/DE 6.3L - Using Auto Loader and Structured Streaming with Spark SQL Lab.py
new file mode 100644
index 0000000..71db9fb
--- /dev/null
+++ b/Data-Engineering-with-Databricks/06 - Incremental Data Processing/DE 6.3L - Using Auto Loader and Structured Streaming with Spark SQL Lab.py
@@ -0,0 +1,176 @@
+# Databricks notebook source
+# MAGIC %md-sandbox
+# MAGIC
+# MAGIC
+# MAGIC

+# MAGIC
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC # Using Auto Loader and Structured Streaming with Spark SQL
+# MAGIC
+# MAGIC ## Learning Objectives
+# MAGIC By the end of this lab, you should be able to:
+# MAGIC * Ingest data using Auto Loader
+# MAGIC * Aggregate streaming data
+# MAGIC * Stream data to a Delta table
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC ## Setup
+# MAGIC Run the following script to setup necessary variables and clear out past runs of this notebook. Note that re-executing this cell will allow you to start the lab over.
+
+# COMMAND ----------
+
+# MAGIC %run ../Includes/Classroom-Setup-6.3L
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC
+# MAGIC ## Configure Streaming Read
+# MAGIC
+# MAGIC This lab uses a collection of customer-related CSV data from DBFS found in */databricks-datasets/retail-org/customers/*.
+# MAGIC
+# MAGIC Read this data using Auto Loader using its schema inference (use **`customers_checkpoint_path`** to store the schema info). Create a streaming temporary view called **`customers_raw_temp`**.
+
+# COMMAND ----------
+
+# TODO
+customers_checkpoint_path = f"{DA.paths.checkpoints}/customers"
+
+(spark
+ .readStream
+
+ .load("/databricks-datasets/retail-org/customers/")
+ .createOrReplaceTempView("customers_raw_temp"))
+
+# COMMAND ----------
+
+from pyspark.sql import Row
+assert Row(tableName="customers_raw_temp", isTemporary=True) in spark.sql("show tables").select("tableName", "isTemporary").collect(), "Table not present or not temporary"
+assert spark.table("customers_raw_temp").dtypes == [('customer_id', 'string'),
+ ('tax_id', 'string'),
+ ('tax_code', 'string'),
+ ('customer_name', 'string'),
+ ('state', 'string'),
+ ('city', 'string'),
+ ('postcode', 'string'),
+ ('street', 'string'),
+ ('number', 'string'),
+ ('unit', 'string'),
+ ('region', 'string'),
+ ('district', 'string'),
+ ('lon', 'string'),
+ ('lat', 'string'),
+ ('ship_to_address', 'string'),
+ ('valid_from', 'string'),
+ ('valid_to', 'string'),
+ ('units_purchased', 'string'),
+ ('loyalty_segment', 'string'),
+ ('_rescued_data', 'string')], "Incorrect Schema"
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC
+# MAGIC ## Define a streaming aggregation
+# MAGIC
+# MAGIC Using CTAS syntax, define a new streaming view called **`customer_count_by_state_temp`** that counts the number of customers per **`state`**, in a field called **`customer_count`**.
+
+# COMMAND ----------
+
+# MAGIC %sql
+# MAGIC -- TODO
+# MAGIC
+# MAGIC CREATE OR REPLACE TEMPORARY VIEW customer_count_by_state_temp AS
+# MAGIC SELECT
+# MAGIC
+
+# COMMAND ----------
+
+assert Row(tableName="customer_count_by_state_temp", isTemporary=True) in spark.sql("show tables").select("tableName", "isTemporary").collect(), "Table not present or not temporary"
+assert spark.table("customer_count_by_state_temp").dtypes == [('state', 'string'), ('customer_count', 'bigint')], "Incorrect Schema"
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC
+# MAGIC ## Write aggregated data to a Delta table
+# MAGIC
+# MAGIC Stream data from the **`customer_count_by_state_temp`** view to a Delta table called **`customer_count_by_state`**.
+
+# COMMAND ----------
+
+# TODO
+customers_count_checkpoint_path = f"{DA.paths.checkpoints}/customers_count"
+
+query = (spark
+
+
+# COMMAND ----------
+
+DA.block_until_stream_is_ready(query)
+
+# COMMAND ----------
+
+assert Row(tableName="customer_count_by_state", isTemporary=False) in spark.sql("show tables").select("tableName", "isTemporary").collect(), "Table not present or not temporary"
+assert spark.table("customer_count_by_state").dtypes == [('state', 'string'), ('customer_count', 'bigint')], "Incorrect Schema"
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC
+# MAGIC ## Query the results
+# MAGIC
+# MAGIC Query the **`customer_count_by_state`** table (this will not be a streaming query). Plot the results as a bar graph and also using the map plot.
+
+# COMMAND ----------
+
+# MAGIC %sql
+# MAGIC -- TODO
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC ## Wrapping Up
+# MAGIC
+# MAGIC Run the following cell to remove the database and all data associated with this lab.
+
+# COMMAND ----------
+
+DA.cleanup()
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC By completing this lab, you should now feel comfortable:
+# MAGIC * Using PySpark to configure Auto Loader for incremental data ingestion
+# MAGIC * Using Spark SQL to aggregate streaming data
+# MAGIC * Streaming data to a Delta table
+
+# COMMAND ----------
+
+# MAGIC %md-sandbox
+# MAGIC © 2022 Databricks, Inc. All rights reserved.
+# MAGIC Apache, Apache Spark, Spark and the Spark logo are trademarks of the Apache Software Foundation.
+# MAGIC
+# MAGIC Privacy Policy | Terms of Use | Support
diff --git a/Data-Engineering-With-Databricks/03 - Incremental Data and Delta Live Tables/DE 3.2.1 - Incremental Multi-Hop in the Lakehouse.py b/Data-Engineering-with-Databricks/07 - Multi-Hop Architecture/DE 7.1 - Incremental Multi-Hop in the Lakehouse.py
similarity index 80%
rename from Data-Engineering-With-Databricks/03 - Incremental Data and Delta Live Tables/DE 3.2.1 - Incremental Multi-Hop in the Lakehouse.py
rename to Data-Engineering-with-Databricks/07 - Multi-Hop Architecture/DE 7.1 - Incremental Multi-Hop in the Lakehouse.py
index 3a82aac..ff85bf7 100644
--- a/Data-Engineering-With-Databricks/03 - Incremental Data and Delta Live Tables/DE 3.2.1 - Incremental Multi-Hop in the Lakehouse.py
+++ b/Data-Engineering-with-Databricks/07 - Multi-Hop Architecture/DE 7.1 - Incremental Multi-Hop in the Lakehouse.py
@@ -8,6 +8,8 @@
# COMMAND ----------
# MAGIC %md
+# MAGIC
+# MAGIC
# MAGIC # Incremental Multi-Hop in the Lakehouse
# MAGIC
# MAGIC Now that we have a better understanding of how to work with incremental data processing by combining Structured Streaming APIs and Spark SQL, we can explore the tight integration between Structured Streaming and Delta Lake.
@@ -22,6 +24,8 @@
# COMMAND ----------
# MAGIC %md
+# MAGIC
+# MAGIC
# MAGIC ## Incremental Updates in the Lakehouse
# MAGIC
# MAGIC Delta Lake allows users to easily combine streaming and batch workloads in a unified multi-hop pipeline. Each stage of the pipeline represents a state of our data valuable to driving core use cases within the business. Because all data and metadata lives in object storage in the cloud, multiple users and applications can access data in near-real time, allowing analysts to access the freshest data as it's being processed.
@@ -43,6 +47,8 @@
# COMMAND ----------
# MAGIC %md
+# MAGIC
+# MAGIC
# MAGIC ## Datasets Used
# MAGIC
# MAGIC This demo uses simplified artificially generated medical data. The schema of our two datasets is represented below. Note that we will be manipulating these schema during various steps.
@@ -68,34 +74,42 @@
# COMMAND ----------
# MAGIC %md
+# MAGIC
+# MAGIC
# MAGIC ## Getting Started
# MAGIC
# MAGIC Run the following cell to configure the lab environment.
# COMMAND ----------
-# MAGIC %run "../Includes/multi-hop-setup" $mode="reset"
+# MAGIC %run ../Includes/Classroom-Setup-7.1
# COMMAND ----------
# MAGIC %md
+# MAGIC
+# MAGIC
# MAGIC ## Data Simulator
-# MAGIC Databricks Auto Loader can automatically process files as they land in your cloud object stores. To simulate this process, you will be asked to run the following operation several times throughout the course.
+# MAGIC Databricks Auto Loader can automatically process files as they land in your cloud object stores.
+# MAGIC
+# MAGIC To simulate this process, you will be asked to run the following operation several times throughout the course.
# COMMAND ----------
-File.newData()
+DA.data_factory.load()
# COMMAND ----------
# MAGIC %md
+# MAGIC
+# MAGIC
# MAGIC ## Bronze Table: Ingesting Raw JSON Recordings
# MAGIC
# MAGIC Below, we configure a read on a raw JSON source using Auto Loader with schema inference.
# MAGIC
# MAGIC Note that while you need to use the Spark DataFrame API to set up an incremental read, once configured you can immediately register a temp view to leverage Spark SQL for streaming transformations on your data.
# MAGIC
-# MAGIC **NOTE**: For a JSON data source, Auto Loader will default to inferring each column as a string. Here, we demonstrate specifying the data type for the `time` column using the `cloudFiles.schemaHints` option. Note that specifying improper types for a field will result in null values.
+# MAGIC **NOTE**: For a JSON data source, Auto Loader will default to inferring each column as a string. Here, we demonstrate specifying the data type for the **`time`** column using the **`cloudFiles.schemaHints`** option. Note that specifying improper types for a field will result in null values.
# COMMAND ----------
@@ -103,13 +117,15 @@
.format("cloudFiles")
.option("cloudFiles.format", "json")
.option("cloudFiles.schemaHints", "time DOUBLE")
- .option("cloudFiles.schemaLocation", bronzeCheckpoint)
- .load(dataLandingLocation)
+ .option("cloudFiles.schemaLocation", f"{DA.paths.checkpoints}/bronze")
+ .load(DA.paths.data_landing_location)
.createOrReplaceTempView("recordings_raw_temp"))
# COMMAND ----------
# MAGIC %md
+# MAGIC
+# MAGIC
# MAGIC Here, we'll enrich our raw data with additional metadata describing the source file and the time it was ingested. This additional metadata can be ignored during downstream processing while providing useful information for troubleshooting errors if corrupt data is encountered.
# COMMAND ----------
@@ -123,29 +139,35 @@
# COMMAND ----------
# MAGIC %md
+# MAGIC
+# MAGIC
# MAGIC The code below passes our enriched raw data back to PySpark API to process an incremental write to a Delta Lake table.
# COMMAND ----------
(spark.table("recordings_bronze_temp")
- .writeStream
- .format("delta")
- .option("checkpointLocation", bronzeCheckpoint)
- .outputMode("append")
- .table("bronze"))
+ .writeStream
+ .format("delta")
+ .option("checkpointLocation", f"{DA.paths.checkpoints}/bronze")
+ .outputMode("append")
+ .table("bronze"))
# COMMAND ----------
# MAGIC %md
+# MAGIC
+# MAGIC
# MAGIC Trigger another file arrival with the following cell and you'll see the changes immediately detected by the streaming query you've written.
# COMMAND ----------
-File.newData()
+DA.data_factory.load()
# COMMAND ----------
# MAGIC %md
+# MAGIC
+# MAGIC
# MAGIC ### Load Static Lookup Table
# MAGIC The ACID guarantees that Delta Lake brings to your data are managed at the table level, ensuring that only fully successfully commits are reflected in your tables. If you choose to merge these data with other data sources, be aware of how those sources version data and what sort of consistency guarantees they have.
# MAGIC
@@ -153,13 +175,12 @@
# COMMAND ----------
-(spark
- .read
- .format("csv")
- .schema("mrn STRING, name STRING")
- .option("header", True)
- .load(f"{dataSource}/patient/patient_info.csv")
- .createOrReplaceTempView("pii"))
+(spark.read
+ .format("csv")
+ .schema("mrn STRING, name STRING")
+ .option("header", True)
+ .load(f"{DA.paths.data_source}/patient/patient_info.csv")
+ .createOrReplaceTempView("pii"))
# COMMAND ----------
@@ -169,10 +190,12 @@
# COMMAND ----------
# MAGIC %md
+# MAGIC
+# MAGIC
# MAGIC ## Silver Table: Enriched Recording Data
# MAGIC As a second hop in our silver level, we will do the follow enrichments and checks:
# MAGIC - Our recordings data will be joined with the PII to add patient names
-# MAGIC - The time for our recordings will be parsed to the format `'yyyy-MM-dd HH:mm:ss'` to be human-readable
+# MAGIC - The time for our recordings will be parsed to the format **`'yyyy-MM-dd HH:mm:ss'`** to be human-readable
# MAGIC - We will exclude heart rates that are <= 0, as we know that these either represent the absence of the patient or an error in transmission
# COMMAND ----------
@@ -194,15 +217,17 @@
# COMMAND ----------
(spark.table("recordings_w_pii")
- .writeStream
- .format("delta")
- .option("checkpointLocation", recordingsEnrichedCheckpoint)
- .outputMode("append")
- .table("recordings_enriched"))
+ .writeStream
+ .format("delta")
+ .option("checkpointLocation", f"{DA.paths.checkpoints}/recordings_enriched")
+ .outputMode("append")
+ .table("recordings_enriched"))
# COMMAND ----------
# MAGIC %md
+# MAGIC
+# MAGIC
# MAGIC Trigger another new file and wait for it propagate through both previous queries.
# COMMAND ----------
@@ -212,14 +237,16 @@
# COMMAND ----------
-File.newData()
+DA.data_factory.load()
# COMMAND ----------
# MAGIC %md
+# MAGIC
+# MAGIC
# MAGIC ## Gold Table: Daily Averages
# MAGIC
-# MAGIC Here we read a stream of data from `recordingsEnrichedPath` and write another stream to create an aggregate gold table of daily averages for each patient.
+# MAGIC Here we read a stream of data from **`recordings_enriched`** and write another stream to create an aggregate gold table of daily averages for each patient.
# COMMAND ----------
@@ -238,7 +265,9 @@
# COMMAND ----------
# MAGIC %md
-# MAGIC Note that we're using `.trigger(once=True)` below. This provides us the ability to continue to use the strengths of structured streaming while trigger this job as a single batch. To recap, these strengths include:
+# MAGIC
+# MAGIC
+# MAGIC Note that we're using **`.trigger(availableNow=True)`** below. This provides us the ability to continue to use the strengths of structured streaming while trigger this job one-time to process all available data in micro-batches. To recap, these strengths include:
# MAGIC - exactly once end-to-end fault tolerant processing
# MAGIC - automatic detection of changes in upstream data sources
# MAGIC
@@ -249,22 +278,23 @@
# COMMAND ----------
(spark.table("patient_avg")
- .writeStream
- .format("delta")
- .outputMode("complete")
- .option("checkpointLocation", dailyAvgCheckpoint)
- .trigger(once=True)
- .table("daily_patient_avg")
-)
+ .writeStream
+ .format("delta")
+ .outputMode("complete")
+ .option("checkpointLocation", f"{DA.paths.checkpoints}/daily_avg")
+ .trigger(availableNow=True)
+ .table("daily_patient_avg"))
# COMMAND ----------
# MAGIC %md
-# MAGIC #### Important Considerations for `complete` Output with Delta
# MAGIC
-# MAGIC When using `complete` output mode, we rewrite the entire state of our table each time our logic runs. While this is ideal for calculating aggregates, we **cannot** read a stream from this directory, as Structured Streaming assumes data is only being appended in the upstream logic.
# MAGIC
-# MAGIC **NOTE**: Certain options can be set to change this behavior, but have other limitations attached. For more details, refer to [Delta Streaming: Ignoring Updates and Deletes](https://docs.databricks.com/delta/delta-streaming.html#ignoring-updates-and-deletes).
+# MAGIC #### Important Considerations for complete Output with Delta
+# MAGIC
+# MAGIC When using **`complete`** output mode, we rewrite the entire state of our table each time our logic runs. While this is ideal for calculating aggregates, we **cannot** read a stream from this directory, as Structured Streaming assumes data is only being appended in the upstream logic.
+# MAGIC
+# MAGIC **NOTE**: Certain options can be set to change this behavior, but have other limitations attached. For more details, refer to Delta Streaming: Ignoring Updates and Deletes.
# MAGIC
# MAGIC The gold Delta table we have just registered will perform a static read of the current state of the data each time we run the following query.
@@ -276,6 +306,8 @@
# COMMAND ----------
# MAGIC %md
+# MAGIC
+# MAGIC
# MAGIC Note the above table includes all days for all users. If the predicates for our ad hoc queries match the data encoded here, we can push down our predicates to files at the source and very quickly generate more limited aggregate views.
# COMMAND ----------
@@ -288,27 +320,33 @@
# COMMAND ----------
# MAGIC %md
+# MAGIC
+# MAGIC
# MAGIC ## Process Remaining Records
-# MAGIC The following cell will land additional files for the rest of 2020 in your source directory. You'll be able to see these process through the first 3 tables in your Delta Lake, but will need to re-run your final query to update your `daily_patient_avg` table, since this query uses the trigger once syntax.
+# MAGIC The following cell will land additional files for the rest of 2020 in your source directory. You'll be able to see these process through the first 3 tables in your Delta Lake, but will need to re-run your final query to update your **`daily_patient_avg`** table, since this query uses the trigger available now syntax.
# COMMAND ----------
-File.newData(continuous=True)
+DA.data_factory.load(continuous=True)
# COMMAND ----------
# MAGIC %md
+# MAGIC
+# MAGIC
# MAGIC ## Wrapping Up
# MAGIC
# MAGIC Finally, make sure all streams are stopped.
# COMMAND ----------
-# MAGIC %run "../Includes/multi-hop-setup" $mode="clean"
+DA.cleanup()
# COMMAND ----------
# MAGIC %md
+# MAGIC
+# MAGIC
# MAGIC ## Summary
# MAGIC
# MAGIC Delta Lake and Structured Streaming combine to provide near real-time analytic access to data in the lakehouse.
@@ -316,6 +354,8 @@
# COMMAND ----------
# MAGIC %md
+# MAGIC
+# MAGIC
# MAGIC ## Additional Topics & Resources
# MAGIC
# MAGIC * Table Streaming Reads and Writes
diff --git a/Data-Engineering-with-Databricks/07 - Multi-Hop Architecture/DE 7.2L - Propagating Incremental Updates with Structured Streaming and Delta Lake Lab.py b/Data-Engineering-with-Databricks/07 - Multi-Hop Architecture/DE 7.2L - Propagating Incremental Updates with Structured Streaming and Delta Lake Lab.py
new file mode 100644
index 0000000..2a2a8d0
--- /dev/null
+++ b/Data-Engineering-with-Databricks/07 - Multi-Hop Architecture/DE 7.2L - Propagating Incremental Updates with Structured Streaming and Delta Lake Lab.py
@@ -0,0 +1,280 @@
+# Databricks notebook source
+# MAGIC %md-sandbox
+# MAGIC
+# MAGIC
+# MAGIC

+# MAGIC
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC # Propagating Incremental Updates with Structured Streaming and Delta Lake
+# MAGIC
+# MAGIC ## Learning Objectives
+# MAGIC By the end of this lab, you should be able to:
+# MAGIC * Apply your knowledge of structured streaming and Auto Loader to implement a simple multi-hop architecture
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC ## Setup
+# MAGIC Run the following script to setup necessary variables and clear out past runs of this notebook. Note that re-executing this cell will allow you to start the lab over.
+
+# COMMAND ----------
+
+# MAGIC %run ../Includes/Classroom-Setup-7.2L
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC
+# MAGIC ## Ingest data
+# MAGIC
+# MAGIC This lab uses a collection of customer-related CSV data from DBFS found in */databricks-datasets/retail-org/customers/*.
+# MAGIC
+# MAGIC Read this data using Auto Loader using its schema inference (use **`customers_checkpoint_path`** to store the schema info). Stream the raw data to a Delta table called **`bronze`**.
+
+# COMMAND ----------
+
+# TODO
+customers_checkpoint_path = f"{DA.paths.checkpoints}/customers"
+
+query = (spark
+ .readStream
+
+ .load("/databricks-datasets/retail-org/customers/")
+ .writeStream
+
+ .table("bronze")
+)
+
+# COMMAND ----------
+
+DA.block_until_stream_is_ready(query)
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC Run the cell below to check your work.
+
+# COMMAND ----------
+
+assert spark.table("bronze"), "Table named `bronze` does not exist"
+assert spark.sql(f"SHOW TABLES").filter(f"tableName == 'bronze'").first()["isTemporary"] == False, "Table is temporary"
+assert spark.table("bronze").dtypes == [('customer_id', 'string'), ('tax_id', 'string'), ('tax_code', 'string'), ('customer_name', 'string'), ('state', 'string'), ('city', 'string'), ('postcode', 'string'), ('street', 'string'), ('number', 'string'), ('unit', 'string'), ('region', 'string'), ('district', 'string'), ('lon', 'string'), ('lat', 'string'), ('ship_to_address', 'string'), ('valid_from', 'string'), ('valid_to', 'string'), ('units_purchased', 'string'), ('loyalty_segment', 'string'), ('_rescued_data', 'string')], "Incorrect Schema"
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC
+# MAGIC Let's create a streaming temporary view into the bronze table, so that we can perform transforms using SQL.
+
+# COMMAND ----------
+
+(spark
+ .readStream
+ .table("bronze")
+ .createOrReplaceTempView("bronze_temp"))
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC ## Clean and enhance data
+# MAGIC
+# MAGIC Using CTAS syntax, define a new streaming view called **`bronze_enhanced_temp`** that does the following:
+# MAGIC * Skips records with a null **`postcode`** (set to zero)
+# MAGIC * Inserts a column called **`receipt_time`** containing a current timestamp
+# MAGIC * Inserts a column called **`source_file`** containing the input filename
+
+# COMMAND ----------
+
+# MAGIC %sql
+# MAGIC -- TODO
+# MAGIC CREATE OR REPLACE TEMPORARY VIEW bronze_enhanced_temp AS
+# MAGIC SELECT
+# MAGIC
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC Run the cell below to check your work.
+
+# COMMAND ----------
+
+assert spark.table("bronze_enhanced_temp"), "Table named `bronze_enhanced_temp` does not exist"
+assert spark.sql(f"SHOW TABLES").filter(f"tableName == 'bronze_enhanced_temp'").first()["isTemporary"] == True, "Table is not temporary"
+assert spark.table("bronze_enhanced_temp").dtypes == [('customer_id', 'string'), ('tax_id', 'string'), ('tax_code', 'string'), ('customer_name', 'string'), ('state', 'string'), ('city', 'string'), ('postcode', 'string'), ('street', 'string'), ('number', 'string'), ('unit', 'string'), ('region', 'string'), ('district', 'string'), ('lon', 'string'), ('lat', 'string'), ('ship_to_address', 'string'), ('valid_from', 'string'), ('valid_to', 'string'), ('units_purchased', 'string'), ('loyalty_segment', 'string'), ('_rescued_data', 'string'), ('receipt_time', 'timestamp'), ('source_file', 'string')], "Incorrect Schema"
+assert spark.table("bronze_enhanced_temp").isStreaming, "Not a streaming table"
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC ## Silver table
+# MAGIC
+# MAGIC Stream the data from **`bronze_enhanced_temp`** to a table called **`silver`**.
+
+# COMMAND ----------
+
+# TODO
+silver_checkpoint_path = f"{DA.paths.checkpoints}/silver"
+
+query = (spark.table("bronze_enhanced_temp")
+
+ .table("silver"))
+
+# COMMAND ----------
+
+DA.block_until_stream_is_ready(query)
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC Run the cell below to check your work.
+
+# COMMAND ----------
+
+assert spark.table("silver"), "Table named `silver` does not exist"
+assert spark.sql(f"SHOW TABLES").filter(f"tableName == 'silver'").first()["isTemporary"] == False, "Table is temporary"
+assert spark.table("silver").dtypes == [('customer_id', 'string'), ('tax_id', 'string'), ('tax_code', 'string'), ('customer_name', 'string'), ('state', 'string'), ('city', 'string'), ('postcode', 'string'), ('street', 'string'), ('number', 'string'), ('unit', 'string'), ('region', 'string'), ('district', 'string'), ('lon', 'string'), ('lat', 'string'), ('ship_to_address', 'string'), ('valid_from', 'string'), ('valid_to', 'string'), ('units_purchased', 'string'), ('loyalty_segment', 'string'), ('_rescued_data', 'string'), ('receipt_time', 'timestamp'), ('source_file', 'string')], "Incorrect Schema"
+assert spark.table("silver").filter("postcode <= 0").count() == 0, "Null postcodes present"
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC
+# MAGIC Let's create a streaming temporary view into the silver table, so that we can perform business-level using SQL.
+
+# COMMAND ----------
+
+(spark
+ .readStream
+ .table("silver")
+ .createOrReplaceTempView("silver_temp"))
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC
+# MAGIC ## Gold tables
+# MAGIC
+# MAGIC Using CTAS syntax, define a new streaming view called **`customer_count_temp`** that counts customers per state.
+
+# COMMAND ----------
+
+# MAGIC %sql
+# MAGIC -- TODO
+# MAGIC CREATE OR REPLACE TEMPORARY VIEW customer_count_temp AS
+# MAGIC SELECT
+# MAGIC
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC Run the cell below to check your work.
+
+# COMMAND ----------
+
+assert spark.table("customer_count_temp"), "Table named `customer_count_temp` does not exist"
+assert spark.sql(f"SHOW TABLES").filter(f"tableName == 'customer_count_temp'").first()["isTemporary"] == True, "Table is not temporary"
+assert spark.table("customer_count_temp").dtypes == [('state', 'string'), ('customer_count', 'bigint')], "Incorrect Schema"
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC Finally, stream the data from the **`customer_count_temp`** view to a Delta table called **`gold_customer_count_by_state`**.
+
+# COMMAND ----------
+
+# TODO
+customers_count_checkpoint_path = f"{DA.paths.checkpoints}/customers_counts"
+
+query = (spark
+ .table("customer_count_temp")
+ .writeStream
+
+ .table("gold_customer_count_by_state"))
+
+# COMMAND ----------
+
+DA.block_until_stream_is_ready(query)
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC Run the cell below to check your work.
+
+# COMMAND ----------
+
+assert spark.table("gold_customer_count_by_state"), "Table named `gold_customer_count_by_state` does not exist"
+assert spark.sql(f"show tables").filter(f"tableName == 'gold_customer_count_by_state'").first()["isTemporary"] == False, "Table is temporary"
+assert spark.table("gold_customer_count_by_state").dtypes == [('state', 'string'), ('customer_count', 'bigint')], "Incorrect Schema"
+assert spark.table("gold_customer_count_by_state").count() == 51, "Incorrect number of rows"
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC
+# MAGIC ## Query the results
+# MAGIC
+# MAGIC Query the **`gold_customer_count_by_state`** table (this will not be a streaming query). Plot the results as a bar graph and also using the map plot.
+
+# COMMAND ----------
+
+# MAGIC %sql
+# MAGIC SELECT * FROM gold_customer_count_by_state
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC ## Wrapping Up
+# MAGIC
+# MAGIC Run the following cell to remove the database and all data associated with this lab.
+
+# COMMAND ----------
+
+DA.cleanup()
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC By completing this lab, you should now feel comfortable:
+# MAGIC * Using PySpark to configure Auto Loader for incremental data ingestion
+# MAGIC * Using Spark SQL to aggregate streaming data
+# MAGIC * Streaming data to a Delta table
+
+# COMMAND ----------
+
+# MAGIC %md-sandbox
+# MAGIC © 2022 Databricks, Inc. All rights reserved.
+# MAGIC Apache, Apache Spark, Spark and the Spark logo are trademarks of the Apache Software Foundation.
+# MAGIC
+# MAGIC Privacy Policy | Terms of Use | Support
diff --git a/Data-Engineering-With-Databricks/Solutions/03 - Incremental Data and Delta Live Tables/DE 3.3.1 - DLT UI Walkthrough.py b/Data-Engineering-with-Databricks/08 - Delta Live Tables/DE 8.1 DLT/DE 8.1.1 - DLT UI Walkthrough.py
similarity index 57%
rename from Data-Engineering-With-Databricks/Solutions/03 - Incremental Data and Delta Live Tables/DE 3.3.1 - DLT UI Walkthrough.py
rename to Data-Engineering-with-Databricks/08 - Delta Live Tables/DE 8.1 DLT/DE 8.1.1 - DLT UI Walkthrough.py
index c35c33d..a3c7150 100644
--- a/Data-Engineering-With-Databricks/Solutions/03 - Incremental Data and Delta Live Tables/DE 3.3.1 - DLT UI Walkthrough.py
+++ b/Data-Engineering-with-Databricks/08 - Delta Live Tables/DE 8.1 DLT/DE 8.1.1 - DLT UI Walkthrough.py
@@ -8,10 +8,15 @@
# COMMAND ----------
# MAGIC %md
+# MAGIC
+# MAGIC
# MAGIC # Using the Delta Live Tables UI
# MAGIC
-# MAGIC This demo will explore the DLT UI. By the end of this lesson you will be able to:
+# MAGIC This demo will explore the DLT UI.
# MAGIC
+# MAGIC
+# MAGIC ## Learning Objectives
+# MAGIC By the end of this lesson, you should be able to:
# MAGIC * Deploy a DLT pipeline
# MAGIC * Explore the resultant DAG
# MAGIC * Execute an update of the pipeline
@@ -20,65 +25,87 @@
# COMMAND ----------
# MAGIC %md
+# MAGIC
+# MAGIC
# MAGIC ## Run Setup
# MAGIC
# MAGIC The following cell is configured to reset this demo.
# COMMAND ----------
-# MAGIC %run ../Includes/dlt-setup $course="dlt_demo" $mode="reset"
+# MAGIC %run ../../Includes/Classroom-Setup-8.1.1
# COMMAND ----------
# MAGIC %md
-# MAGIC Execute the following cell to print out two values that will be used during the following configuration steps.
+# MAGIC
+# MAGIC
+# MAGIC Execute the following cell to print out values that will be used during the following configuration steps.
# COMMAND ----------
-print(f"Target: {database}")
-print(f"Storage location: {userhome.split(':')[1]}")
+DA.print_pipeline_config()
# COMMAND ----------
# MAGIC %md
-# MAGIC ## Create and configure a pipeline
+# MAGIC
+# MAGIC
+# MAGIC ## Create and Configure a Pipeline
# MAGIC
# MAGIC In this section you will create a pipeline using a notebook provided with the courseware. We'll explore the contents of the notebook in the following lesson.
# MAGIC
-# MAGIC 1. Click the **Jobs** button on the sidebar,
+# MAGIC 1. Click the **Jobs** button on the sidebar.
# MAGIC 1. Select the **Delta Live Tables** tab.
# MAGIC 1. Click **Create Pipeline**.
-# MAGIC 1. Fill in a **Pipeline Name** of your choosing.
-# MAGIC 1. For **Notebook Libraries**, use the navigator to locate and select the companion notebook called **3.3.2 - SQL for Delta Live Tables**.
-# MAGIC * Though this document is a standard Databricks Notebook, the SQL syntax is specialized to DLT table declarations. We will be exploring the syntax in the exercise that follows.
-# MAGIC 1. In the **Target** field, specify the database name printed out next to **Target** in the cell above. (This should follow the pattern `dbacademy__dlt_demo`)
+# MAGIC 1. Leave **Product Edition** as **Advanced**.
+# MAGIC 1. Fill in a **Pipeline Name** - because these names must be unique, we suggest using the **`Pipeline Name`** provided by the cell above.
+# MAGIC 1. For **Notebook Libraries**, use the navigator to locate and select the companion notebook called **DE 8.1.2 - SQL for Delta Live Tables**.
+# MAGIC * Alternatively, you can copy the **`Notebook Path`** provided by the cell above and paste it into the provided field.
+# MAGIC * Even though this document is a standard Databricks Notebook, the SQL syntax is specialized to DLT table declarations.
+# MAGIC * We will be exploring the syntax in the exercise that follows.
+# MAGIC 1. In the **Target** field, specify the database name printed out next to **`Target`** in the cell above.
+# MAGIC This should follow the pattern **`dbacademy__dewd_dlt_demo_81`**
# MAGIC * This field is optional; if not specified, then tables will not be registered to a metastore, but will still be available in the DBFS. Refer to the documentation for more information on this option.
-# MAGIC 1. In the **Storage location** field, copy the directory as printed above.
-# MAGIC * This optional field allows the user to specify a location to store logs, tables, and other information related to pipeline execution. If not specified, DLT will automatically generate a directory.
+# MAGIC 1. In the **Storage location** field, copy the **`Storage Location`** path printed by the cell above.
+# MAGIC * This optional field allows the user to specify a location to store logs, tables, and other information related to pipeline execution.
+# MAGIC * If not specified, DLT will automatically generate a directory.
# MAGIC 1. For **Pipeline Mode**, select **Triggered**
-# MAGIC * This field specifies how the pipeline will be run. **Triggered** pipelines run once and then shut down until the next manual or scheduled update. **Continuous** pipelines run continuously, ingesting new data as it arrives. Choose the mode based on latency and cost requirements.
-# MAGIC 1. Uncheck the **Enable autoscaling** box, and set the number of workers to 1.,
+# MAGIC * This field specifies how the pipeline will be run.
+# MAGIC * **Triggered** pipelines run once and then shut down until the next manual or scheduled update.
+# MAGIC * **Continuous** pipelines run continuously, ingesting new data as it arrives. Choose the mode based on latency and cost requirements.
+# MAGIC 1. Uncheck the **Enable autoscaling** box, and set the number of workers to **`1`** (one).
# MAGIC * **Enable autoscaling**, **Min Workers** and **Max Workers** control the worker configuration for the underlying cluster processing the pipeline. Notice the DBU estimate provided, similar to that provided when configuring interactive clusters.
# MAGIC 1. Click **Create**.
# COMMAND ----------
# MAGIC %md
-# MAGIC ## Run a pipeline
+# MAGIC
+# MAGIC
+# MAGIC ## Run a Pipeline
# MAGIC
# MAGIC With a pipeline created, you will now run the pipeline.
# MAGIC
-# MAGIC 1. Select **Development** to run the pipeline in development mode. Development mode provides for more expeditious iterative development by reusing the cluster (as opposed to creating a new cluster for each run) and disabling retries so that you can readily identify and fix errors. Refer to the documentation for more information on this feature.
+# MAGIC 1. Select **Development** to run the pipeline in development mode.
+# MAGIC * Development mode provides for more expeditious iterative development by reusing the cluster (as opposed to creating a new cluster for each run) and disabling retries so that you can readily identify and fix errors.
+# MAGIC * Refer to the documentation for more information on this feature.
# MAGIC 2. Click **Start**.
# MAGIC
-# MAGIC The initial run will take several minutes while a cluster is provisioned. Subsequent runs will be appreciably quicker.
+# MAGIC The initial run will take several minutes while a cluster is provisioned.
+# MAGIC
+# MAGIC Subsequent runs will be appreciably quicker.
# COMMAND ----------
# MAGIC %md
+# MAGIC
+# MAGIC
# MAGIC ## Exploring the DAG
# MAGIC
-# MAGIC As the pipeline completes, the execution flow is graphed. Select the tables review the details.
+# MAGIC As the pipeline completes, the execution flow is graphed.
+# MAGIC
+# MAGIC Selecting the tables reviews the details.
# MAGIC
# MAGIC Select **sales_orders_cleaned**. Notice the results reported in the **Data Quality** section. Because this flow has data expectations declared, those metrics are tracked here. No records are dropped because the constraint is declared in a way that allows violating records to be included in the output. This will be covered in more details in the next exercise.
diff --git a/Data-Engineering-With-Databricks/Solutions/03 - Incremental Data and Delta Live Tables/DE 3.3.2 - SQL for Delta Live Tables.sql b/Data-Engineering-with-Databricks/08 - Delta Live Tables/DE 8.1 DLT/DE 8.1.2 - SQL for Delta Live Tables.sql
similarity index 51%
rename from Data-Engineering-With-Databricks/Solutions/03 - Incremental Data and Delta Live Tables/DE 3.3.2 - SQL for Delta Live Tables.sql
rename to Data-Engineering-with-Databricks/08 - Delta Live Tables/DE 8.1 DLT/DE 8.1.2 - SQL for Delta Live Tables.sql
index aa76e29..aef0e6e 100644
--- a/Data-Engineering-With-Databricks/Solutions/03 - Incremental Data and Delta Live Tables/DE 3.3.2 - SQL for Delta Live Tables.sql
+++ b/Data-Engineering-with-Databricks/08 - Delta Live Tables/DE 8.1 DLT/DE 8.1.2 - SQL for Delta Live Tables.sql
@@ -8,62 +8,66 @@
-- COMMAND ----------
-- MAGIC %md
+-- MAGIC
+-- MAGIC
-- MAGIC # SQL for Delta Live Tables
-- MAGIC
-- MAGIC In the last lesson, we walked through the process of scheduling this notebook as a Delta Live Table (DLT) pipeline. Now we'll explore the contents of this notebook to better understand the syntax used by Delta Live Tables.
-- MAGIC
-- MAGIC This notebook uses SQL to declare Delta Live Tables that together implement a simple multi-hop architecture based on a Databricks-provided example dataset loaded by default into Databricks workspaces.
-- MAGIC
--- MAGIC At its simplest, you can think of DLT SQL as a slight modification to traditional CTAS statements. DLT tables and views will always be preceded by the `LIVE` keyword.
+-- MAGIC At its simplest, you can think of DLT SQL as a slight modification to traditional CTAS statements. DLT tables and views will always be preceded by the **`LIVE`** keyword.
-- MAGIC
-- MAGIC ## Learning Objectives
--- MAGIC
--- MAGIC By the end of this lesson, students should feel confident:
--- MAGIC * Defining tables and views with Delta Live Tables
--- MAGIC * Using SQL to incrementally ingest raw data with Auto Loader
--- MAGIC * Performing incremental reads on Delta tables with SQL
--- MAGIC * Updating code and redeploying a pipeline
+-- MAGIC By the end of this lesson, you should be able to:
+-- MAGIC * Define tables and views with Delta Live Tables
+-- MAGIC * Use SQL to incrementally ingest raw data with Auto Loader
+-- MAGIC * Perform incremental reads on Delta tables with SQL
+-- MAGIC * Update code and redeploy a pipeline
-- COMMAND ----------
-- MAGIC %md
+-- MAGIC
+-- MAGIC
-- MAGIC ## Declare Bronze Layer Tables
-- MAGIC
--- MAGIC Below we declare a table and view implementing the bronze layer. This represents data in its rawest form, but captured in a format that can be retained indefinitely and queried with the performance and benefits that Delta Lake has to offer.
+-- MAGIC Below we declare two tables implementing the bronze layer. This represents data in its rawest form, but captured in a format that can be retained indefinitely and queried with the performance and benefits that Delta Lake has to offer.
-- COMMAND ----------
-- MAGIC %md
--- MAGIC ### `sales_orders_raw`
-- MAGIC
--- MAGIC `sales_orders_raw` ingests JSON data incrementally from the example dataset found in */databricks-datasets/retail-org/sales_orders/*.
-- MAGIC
--- MAGIC Incremental processing via Auto Loader (which uses the same processing model as Structured Streaming), requires the addition of the `INCREMENTAL` keyword in the declaration as seen below. The `cloud_files()` method enables Auto Loader to be used natively with SQL. This method takes the following positional parameters:
+-- MAGIC ### sales_orders_raw
+-- MAGIC
+-- MAGIC **`sales_orders_raw`** ingests JSON data incrementally from the example dataset found in */databricks-datasets/retail-org/sales_orders/*.
+-- MAGIC
+-- MAGIC Incremental processing via Auto Loader (which uses the same processing model as Structured Streaming), requires the addition of the **`STREAMING`** keyword in the declaration as seen below. The **`cloud_files()`** method enables Auto Loader to be used natively with SQL. This method takes the following positional parameters:
-- MAGIC * The source location, as mentioned above
-- MAGIC * The source data format, which is JSON in this case
--- MAGIC * An arbitrarily sized array of optional reader options. In this case, we set `cloudFiles.inferColumnTypes` to `true`
+-- MAGIC * An arbitrarily sized array of optional reader options. In this case, we set **`cloudFiles.inferColumnTypes`** to **`true`**
-- MAGIC
-- MAGIC The following declaration also demonstrates the declaration of additional table metadata (a comment and properties in this case) that would be visible to anyone exploring the data catalog.
-- COMMAND ----------
-CREATE INCREMENTAL LIVE TABLE sales_orders_raw
+CREATE OR REFRESH STREAMING LIVE TABLE sales_orders_raw
COMMENT "The raw sales orders, ingested from /databricks-datasets."
-AS
-SELECT * FROM cloud_files("/databricks-datasets/retail-org/sales_orders/", "json", map("cloudFiles.inferColumnTypes", "true"))
+AS SELECT * FROM cloud_files("/databricks-datasets/retail-org/sales_orders/", "json", map("cloudFiles.inferColumnTypes", "true"))
-- COMMAND ----------
-- MAGIC %md
--- MAGIC ### `customers`
-- MAGIC
--- MAGIC `customers` presents a **view** into CSV customer data found in */databricks-datasets/retail-org/customers/*. A view differs from a table in that there is no actual data bound to the view; it can be thought of as a stored query.
-- MAGIC
--- MAGIC This view will soon be used in a join operation to look up customer data based on sales records.
+-- MAGIC ### customers
+-- MAGIC
+-- MAGIC **`customers`** presents CSV customer data found in */databricks-datasets/retail-org/customers/*. This table will soon be used in a join operation to look up customer data based on sales records.
-- COMMAND ----------
-CREATE INCREMENTAL LIVE TABLE customers
+CREATE OR REFRESH STREAMING LIVE TABLE customers
COMMENT "The customers buying finished products, ingested from /databricks-datasets."
AS SELECT * FROM cloud_files("/databricks-datasets/retail-org/customers/", "csv");
@@ -71,6 +75,8 @@ AS SELECT * FROM cloud_files("/databricks-datasets/retail-org/customers/", "csv"
-- MAGIC %md
-- MAGIC
+-- MAGIC
+-- MAGIC
-- MAGIC ## Declare Silver Layer Tables
-- MAGIC
-- MAGIC Now we declare tables implementing the silver layer. This layer represents a refined copy of data from the bronze layer, with the intention of optimizing downstream applications. At this level we apply operations like data cleansing and enrichment.
@@ -78,7 +84,9 @@ AS SELECT * FROM cloud_files("/databricks-datasets/retail-org/customers/", "csv"
-- COMMAND ----------
-- MAGIC %md
--- MAGIC ### `sales_orders_cleaned`
+-- MAGIC
+-- MAGIC
+-- MAGIC ### sales_orders_cleaned
-- MAGIC
-- MAGIC Here we declare our first silver table, which enriches the sales transaction data with customer information in addition to implementing quality control by rejecting records with a null order number.
-- MAGIC
@@ -86,60 +94,65 @@ AS SELECT * FROM cloud_files("/databricks-datasets/retail-org/customers/", "csv"
-- MAGIC
-- MAGIC #### Quality Control
-- MAGIC
--- MAGIC The `CONSTRAINT` keyword introduces quality control. Similar in function to a traditional `WHERE` clause, `CONSTRAINT` integrates with DLT, enabling it to collect metrics on constraint violations. Constraints provide an optional `ON VIOLATION` clause, specifying an action to take on records that violate the constraint. The three modes currently supported by DLT include:
+-- MAGIC The **`CONSTRAINT`** keyword introduces quality control. Similar in function to a traditional **`WHERE`** clause, **`CONSTRAINT`** integrates with DLT, enabling it to collect metrics on constraint violations. Constraints provide an optional **`ON VIOLATION`** clause, specifying an action to take on records that violate the constraint. The three modes currently supported by DLT include:
-- MAGIC
--- MAGIC | `ON VIOLATION` | Behavior |
+-- MAGIC | **`ON VIOLATION`** | Behavior |
-- MAGIC | --- | --- |
--- MAGIC | `FAIL UPDATE` | Pipeline failure when constraint is violated |
--- MAGIC | `DROP ROW` | Discard records that violate constraints |
+-- MAGIC | **`FAIL UPDATE`** | Pipeline failure when constraint is violated |
+-- MAGIC | **`DROP ROW`** | Discard records that violate constraints |
-- MAGIC | Omitted | Records violating constraints will be included (but violations will be reported in metrics) |
-- MAGIC
-- MAGIC #### References to DLT Tables and Views
--- MAGIC References to other DLT tables and views will always include the `live.` prefix. A target database name will automatically be substituted at runtime, allowing for easily migration of pipelines between DEV/QA/PROD environments.
+-- MAGIC References to other DLT tables and views will always include the **`live.`** prefix. A target database name will automatically be substituted at runtime, allowing for easily migration of pipelines between DEV/QA/PROD environments.
-- MAGIC
-- MAGIC #### References to Streaming Tables
-- MAGIC
--- MAGIC References to streaming DLT tables use the `STREAM()`, supplying the table name as an argument.
+-- MAGIC References to streaming DLT tables use the **`STREAM()`**, supplying the table name as an argument.
-- COMMAND ----------
-CREATE INCREMENTAL LIVE TABLE sales_orders_cleaned(
+CREATE OR REFRESH STREAMING LIVE TABLE sales_orders_cleaned(
CONSTRAINT valid_order_number EXPECT (order_number IS NOT NULL) ON VIOLATION DROP ROW
)
COMMENT "The cleaned sales orders with valid order_number(s) and partitioned by order_datetime."
AS
-SELECT f.customer_id, f.customer_name, f.number_of_line_items,
- TIMESTAMP(from_unixtime((cast(f.order_datetime as long)))) as order_datetime,
- DATE(from_unixtime((cast(f.order_datetime as long)))) as order_date,
- f.order_number, f.ordered_products, c.state, c.city, c.lon, c.lat, c.units_purchased, c.loyalty_segment
+ SELECT f.customer_id, f.customer_name, f.number_of_line_items,
+ timestamp(from_unixtime((cast(f.order_datetime as long)))) as order_datetime,
+ date(from_unixtime((cast(f.order_datetime as long)))) as order_date,
+ f.order_number, f.ordered_products, c.state, c.city, c.lon, c.lat, c.units_purchased, c.loyalty_segment
FROM STREAM(LIVE.sales_orders_raw) f
LEFT JOIN LIVE.customers c
- ON c.customer_id = f.customer_id
- AND c.customer_name = f.customer_name
+ ON c.customer_id = f.customer_id
+ AND c.customer_name = f.customer_name
-- COMMAND ----------
-- MAGIC %md
+-- MAGIC
+-- MAGIC
-- MAGIC ## Declare Gold Table
-- MAGIC
-- MAGIC At the most refined level of the architecture, we declare a table delivering an aggregation with business value, in this case a collection of sales order data based in a specific region. In aggregating, the report generates counts and totals of orders by date and customer.
-- COMMAND ----------
-CREATE LIVE TABLE sales_order_in_la
+CREATE OR REFRESH LIVE TABLE sales_order_in_la
COMMENT "Sales orders in LA."
AS
-SELECT city, order_date, customer_id, customer_name, ordered_products_explode.curr, SUM(ordered_products_explode.price) as sales, SUM(ordered_products_explode.qty) as quantity, COUNT(ordered_products_explode.id) as product_count
-FROM (
- SELECT city, order_date, customer_id, customer_name, EXPLODE(ordered_products) as ordered_products_explode
- FROM LIVE.sales_orders_cleaned
- WHERE city = 'Los Angeles'
- )
-GROUP BY order_date, city, customer_id, customer_name, ordered_products_explode.curr
+ SELECT city, order_date, customer_id, customer_name, ordered_products_explode.curr,
+ sum(ordered_products_explode.price) as sales,
+ sum(ordered_products_explode.qty) as quantity,
+ count(ordered_products_explode.id) as product_count
+ FROM (SELECT city, order_date, customer_id, customer_name, explode(ordered_products) as ordered_products_explode
+ FROM LIVE.sales_orders_cleaned
+ WHERE city = 'Los Angeles')
+ GROUP BY order_date, city, customer_id, customer_name, ordered_products_explode.curr
-- COMMAND ----------
-- MAGIC %md
+-- MAGIC
+-- MAGIC
-- MAGIC ## Explore Results
-- MAGIC
-- MAGIC Explore the DAG (Directed Acyclic Graph) representing the entities involved in the pipeline and the relationships between them. Click on each to view a summary, which includes:
@@ -148,27 +161,37 @@ GROUP BY order_date, city, customer_id, customer_name, ordered_products_explode.
-- MAGIC * Schema
-- MAGIC * Data quality metrics
-- MAGIC
--- MAGIC Refer to this companion notebook to inspect tables and logs.
+-- MAGIC Refer to this companion notebook to inspect tables and logs.
-- COMMAND ----------
-- MAGIC %md
+-- MAGIC
+-- MAGIC
-- MAGIC ## Update Pipeline
-- MAGIC
--- MAGIC Uncomment the following cell to declare another gold table. Similar to the previous gold table declaration, this filters for the `city` of Chicago. Re-run your pipeline to examine the updated results. Does it run as expected? Can you identify any issues?
+-- MAGIC Uncomment the following cell to declare another gold table. Similar to the previous gold table declaration, this filters for the **`city`** of Chicago.
+-- MAGIC
+-- MAGIC Re-run your pipeline to examine the updated results.
+-- MAGIC
+-- MAGIC Does it run as expected?
+-- MAGIC
+-- MAGIC Can you identify any issues?
-- COMMAND ----------
--- CREATE LIVE TABLE sales_order_in_chicago
+-- TODO
+-- CREATE OR REFRESH LIVE TABLE sales_order_in_chicago
-- COMMENT "Sales orders in Chicago."
-- AS
--- SELECT city, order_date, customer_id, customer_name, ordered_products_explode.curr, SUM(ordered_products_explode.price) as sales, SUM(ordered_products_explode.qty) as quantity, COUNT(ordered_products_explode.id) as product_count
--- FROM (
--- SELECT city, order_date, customer_id, customer_name, EXPLODE(ordered_products) as ordered_products_explode
--- FROM sales_orders_cleaned
--- WHERE city = 'Chicago'
--- )
--- GROUP BY order_date, city, customer_id, customer_name, ordered_products_explode.curr
+-- SELECT city, order_date, customer_id, customer_name, ordered_products_explode.curr,
+-- sum(ordered_products_explode.price) as sales,
+-- sum(ordered_products_explode.qty) as quantity,
+-- count(ordered_products_explode.id) as product_count
+-- FROM (SELECT city, order_date, customer_id, customer_name, explode(ordered_products) as ordered_products_explode
+-- FROM sales_orders_cleaned
+-- WHERE city = 'Chicago')
+-- GROUP BY order_date, city, customer_id, customer_name, ordered_products_explode.curr
-- COMMAND ----------
diff --git a/Data-Engineering-with-Databricks/08 - Delta Live Tables/DE 8.1 DLT/DE 8.1.3 - Pipeline Results.py b/Data-Engineering-with-Databricks/08 - Delta Live Tables/DE 8.1 DLT/DE 8.1.3 - Pipeline Results.py
new file mode 100644
index 0000000..d3b6cb8
--- /dev/null
+++ b/Data-Engineering-with-Databricks/08 - Delta Live Tables/DE 8.1 DLT/DE 8.1.3 - Pipeline Results.py
@@ -0,0 +1,76 @@
+# Databricks notebook source
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC # Exploring the Results of a DLT Pipeline
+# MAGIC
+# MAGIC This notebook explores the execution results of a DLT pipeline.
+
+# COMMAND ----------
+
+# MAGIC %run ../../Includes/Classroom-Setup-8.1.3
+
+# COMMAND ----------
+
+files = dbutils.fs.ls(DA.paths.storage_location)
+display(files)
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC The **`system`** directory captures events associated with the pipeline.
+
+# COMMAND ----------
+
+files = dbutils.fs.ls(f"{DA.paths.storage_location}/system/events")
+display(files)
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC These event logs are stored as a Delta table. Let's query the table.
+
+# COMMAND ----------
+
+# MAGIC %sql
+# MAGIC SELECT * FROM delta.`${da.paths.storage_location}/system/events`
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC Let's view the contents of the *tables* directory.
+
+# COMMAND ----------
+
+files = dbutils.fs.ls(f"{DA.paths.storage_location}/tables")
+display(files)
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC Let's query the gold table.
+
+# COMMAND ----------
+
+# MAGIC %sql
+# MAGIC SELECT * FROM ${da.db_name}.sales_order_in_la
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC Run the following cell to delete the tables and files associated with this lesson.
+
+# COMMAND ----------
+
+DA.cleanup()
+
diff --git a/Data-Engineering-with-Databricks/08 - Delta Live Tables/DE 8.2 DLT Lab/DE 8.2.1L - Lab Instructions.py b/Data-Engineering-with-Databricks/08 - Delta Live Tables/DE 8.2 DLT Lab/DE 8.2.1L - Lab Instructions.py
new file mode 100644
index 0000000..c9a9986
--- /dev/null
+++ b/Data-Engineering-with-Databricks/08 - Delta Live Tables/DE 8.2 DLT Lab/DE 8.2.1L - Lab Instructions.py
@@ -0,0 +1,164 @@
+# Databricks notebook source
+# MAGIC %md-sandbox
+# MAGIC
+# MAGIC
+# MAGIC

+# MAGIC
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC # Lab: Migrating SQL Notebooks to Delta Live Tables
+# MAGIC
+# MAGIC This notebook describes the overall structure for the lab exercise, configures the environment for the lab, provides simulated data streaming, and performs cleanup once you are done. A notebook like this is not typically needed in a production pipeline scenario.
+# MAGIC
+# MAGIC ## Learning Objectives
+# MAGIC By the end of this lab, you should be able to:
+# MAGIC * Convert existing data pipelines to Delta Live Tables
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC ## Datasets Used
+# MAGIC
+# MAGIC This demo uses simplified artificially generated medical data. The schema of our two datasets is represented below. Note that we will be manipulating these schema during various steps.
+# MAGIC
+# MAGIC #### Recordings
+# MAGIC The main dataset uses heart rate recordings from medical devices delivered in the JSON format.
+# MAGIC
+# MAGIC | Field | Type |
+# MAGIC | --- | --- |
+# MAGIC | device_id | int |
+# MAGIC | mrn | long |
+# MAGIC | time | double |
+# MAGIC | heartrate | double |
+# MAGIC
+# MAGIC #### PII
+# MAGIC These data will later be joined with a static table of patient information stored in an external system to identify patients by name.
+# MAGIC
+# MAGIC | Field | Type |
+# MAGIC | --- | --- |
+# MAGIC | mrn | long |
+# MAGIC | name | string |
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC ## Getting Started
+# MAGIC
+# MAGIC Begin by running the following cell to configure the lab environment.
+
+# COMMAND ----------
+
+# MAGIC %run ../../Includes/Classroom-Setup-8.2.1L
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC ## Land Initial Data
+# MAGIC Seed the landing zone with some data before proceeding. You will re-run this command to land additional data later.
+
+# COMMAND ----------
+
+DA.data_factory.load()
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC Execute the following cell to print out values that will be used during the following configuration steps.
+
+# COMMAND ----------
+
+DA.print_pipeline_config()
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC ## Create and Configure a Pipeline
+# MAGIC
+# MAGIC 1. Click the **Jobs** button on the sidebar, then select the **Delta Live Tables** tab.
+# MAGIC 1. Click **Create Pipeline**.
+# MAGIC 1. Leave **Product Edition** as **Advanced**.
+# MAGIC 1. Fill in a **Pipeline Name** - because these names must be unique, we suggest using the **Pipline Name** provided in the cell above.
+# MAGIC 1. For **Notebook Libraries**, use the navigator to locate and select the notebook **`DE 8.2.2L - Migrating a SQL Pipeline to DLT Lab`**.
+# MAGIC 1. Configure the Source
+# MAGIC * Click **`Add configuration`**
+# MAGIC * Enter the word **`source`** in the **Key** field
+# MAGIC * Enter the **Source** value specified above to the **`Value`** field
+# MAGIC 1. Enter the database name printed next to **`Target`** below in the **Target** field.
+# MAGIC 1. Enter the location printed next to **`Storage Location`** below in the **Storage Location** field.
+# MAGIC 1. Set **Pipeline Mode** to **Triggered**.
+# MAGIC 1. Disable autoscaling.
+# MAGIC 1. Set the number of **`workers`** to **`1`** (one).
+# MAGIC 1. Click **Create**.
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC ## Open and Complete DLT Pipeline Notebook
+# MAGIC
+# MAGIC You will perform your work in the companion notebook [DE 8.2.2L - Migrating a SQL Pipeline to DLT Lab]($./DE 8.2.2L - Migrating a SQL Pipeline to DLT Lab),
+# MAGIC which you will ultimately deploy as a pipeline.
+# MAGIC
+# MAGIC Open the Notebook and, following the guidelines provided therein, fill in the cells where prompted to
+# MAGIC implement a multi-hop architecture similar to the one we worked with in the previous section.
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC ## Run your Pipeline
+# MAGIC
+# MAGIC Select **Development** mode, which accelerates the development lifecycle by reusing the same cluster across runs.
+# MAGIC It will also turn off automatic retries when jobs fail.
+# MAGIC
+# MAGIC Click **Start** to begin the first update to your table.
+# MAGIC
+# MAGIC Delta Live Tables will automatically deploy all the necessary infrastructure and resolve the dependencies between all datasets.
+# MAGIC
+# MAGIC **NOTE**: The first table update may take several minutes as relationships are resolved and infrastructure deploys.
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC ## Troubleshooting Code in Development Mode
+# MAGIC
+# MAGIC Don't despair if your pipeline fails the first time. Delta Live Tables is in active development, and error messages are improving all the time.
+# MAGIC
+# MAGIC Because relationships between tables are mapped as a DAG, error messages will often indicate that a dataset isn't found.
+# MAGIC
+# MAGIC Let's consider our DAG below:
+# MAGIC
+# MAGIC
+# MAGIC
+# MAGIC If the error message **`Dataset not found: 'recordings_parsed'`** is raised, there may be several culprits:
+# MAGIC 1. The logic defining **`recordings_parsed`** is invalid
+# MAGIC 1. There is an error reading from **`recordings_bronze`**
+# MAGIC 1. A typo exists in either **`recordings_parsed`** or **`recordings_bronze`**
+# MAGIC
+# MAGIC The safest way to identify the culprit is to iteratively add table/view definitions back into your DAG starting from your initial ingestion tables. You can simply comment out later table/view definitions and uncomment these between runs.
+
+# COMMAND ----------
+
+# MAGIC %md-sandbox
+# MAGIC © 2022 Databricks, Inc. All rights reserved.
+# MAGIC Apache, Apache Spark, Spark and the Spark logo are trademarks of the Apache Software Foundation.
+# MAGIC
+# MAGIC Privacy Policy | Terms of Use | Support
diff --git a/Data-Engineering-With-Databricks/03 - Incremental Data and Delta Live Tables/Labs/DE 3.3.5L - Migrating a SQL Pipeline to DLT Lab.sql b/Data-Engineering-with-Databricks/08 - Delta Live Tables/DE 8.2 DLT Lab/DE 8.2.2L - Migrating a SQL Pipeline to DLT Lab.sql
similarity index 63%
rename from Data-Engineering-With-Databricks/03 - Incremental Data and Delta Live Tables/Labs/DE 3.3.5L - Migrating a SQL Pipeline to DLT Lab.sql
rename to Data-Engineering-with-Databricks/08 - Delta Live Tables/DE 8.2 DLT Lab/DE 8.2.2L - Migrating a SQL Pipeline to DLT Lab.sql
index 4c1cc8d..21a6ff3 100644
--- a/Data-Engineering-With-Databricks/03 - Incremental Data and Delta Live Tables/Labs/DE 3.3.5L - Migrating a SQL Pipeline to DLT Lab.sql
+++ b/Data-Engineering-with-Databricks/08 - Delta Live Tables/DE 8.2 DLT Lab/DE 8.2.2L - Migrating a SQL Pipeline to DLT Lab.sql
@@ -8,26 +8,28 @@
-- COMMAND ----------
-- MAGIC %md
+-- MAGIC
+-- MAGIC
-- MAGIC # Lab: Migrating a SQL Pipeline to Delta Live Tables
-- MAGIC
--- MAGIC This notebook will be completed by you to implement a DLT pipeline using SQL. It is **not intended** to be executed interactively, but rather to be deployed as a pipeline once you have completed your changes.
+-- MAGIC This notebook will be completed by you to implement a DLT pipeline using SQL.
+-- MAGIC
+-- MAGIC It is **not intended** to be executed interactively, but rather to be deployed as a pipeline once you have completed your changes.
-- MAGIC
-- MAGIC To aid in completion of this Notebook, please refer to the DLT syntax documentation.
-- COMMAND ----------
--- MAGIC %run ../../Includes/classic-setup $mode="reset"
-
--- COMMAND ----------
-
-- MAGIC %md
+-- MAGIC
+-- MAGIC
-- MAGIC ## Declare Bronze Table
-- MAGIC
--- MAGIC Declare a bronze table that ingests JSON data incrementally (using Auto Loader) from the simulated cloud source. Here you will need to substitute the value obtained from the companion setup Notebook.
+-- MAGIC Declare a bronze table that ingests JSON data incrementally (using Auto Loader) from the simulated cloud source. The source location is already supplied as an argument; using this value is illustrated in the cell below.
-- MAGIC
-- MAGIC As we did previously, include two additional columns:
--- MAGIC * `receipt_time` that records a timestamp as returned by `current_timestamp()`
--- MAGIC * `source_file` that is obtained by `input_file_name()`
+-- MAGIC * **`receipt_time`** that records a timestamp as returned by **`current_timestamp()`**
+-- MAGIC * **`source_file`** that is obtained by **`input_file_name()`**
-- COMMAND ----------
@@ -39,6 +41,8 @@ AS SELECT
-- COMMAND ----------
-- MAGIC %md
+-- MAGIC
+-- MAGIC
-- MAGIC ### PII File
-- MAGIC
-- MAGIC Using a similar CTAS syntax, create a live **table** into the CSV data found at */mnt/training/healthcare/patient*.
@@ -47,8 +51,8 @@ AS SELECT
-- MAGIC
-- MAGIC | option | value |
-- MAGIC | --- | --- |
--- MAGIC | `header` | `true` |
--- MAGIC | `cloudFiles.inferColumnTypes` | `true` |
+-- MAGIC | **`header`** | **`true`** |
+-- MAGIC | **`cloudFiles.inferColumnTypes`** | **`true`** |
-- MAGIC
-- MAGIC
Auto Loader configurations for CSV can be found here.
@@ -62,26 +66,29 @@ AS SELECT *
-- COMMAND ----------
-- MAGIC %md
+-- MAGIC
+-- MAGIC
-- MAGIC ## Declare Silver Tables
-- MAGIC
--- MAGIC Our silver tables, `recordings_parsed`, will subscribe to the `recordings` dataset and cast the fields as follows:
+-- MAGIC Our silver table, **`recordings_parsed`**, will consist of the following fields:
-- MAGIC
-- MAGIC | Field | Type |
-- MAGIC | --- | --- |
--- MAGIC | `device_id` | `INTEGER` |
--- MAGIC | `mrn` | `LONG` |
--- MAGIC | `heartrate` | `DOUBLE` |
--- MAGIC | `time` | `TIMESTAMP` (example provided below) |
+-- MAGIC | **`device_id`** | **`INTEGER`** |
+-- MAGIC | **`mrn`** | **`LONG`** |
+-- MAGIC | **`heartrate`** | **`DOUBLE`** |
+-- MAGIC | **`time`** | **`TIMESTAMP`** (example provided below) |
+-- MAGIC | **`name`** | **`STRING`** |
-- MAGIC
--- MAGIC This query should also enrich the data through an inner join with the `pii` table on the common `mrn` field.
+-- MAGIC This query should also enrich the data through an inner join with the **`pii`** table on the common **`mrn`** field to obtain the name.
-- MAGIC
--- MAGIC Implement quality control by applying a contraint to drop records with an invalid `heartrate` (that is, not greater than zero).
+-- MAGIC Implement quality control by applying a constraint to drop records with an invalid **`heartrate`** (that is, not greater than zero).
-- COMMAND ----------
-- TODO
-CREATE INCREMENTAL LIVE TABLE recordings_enriched
- ( 0>)
+CREATE OR REFRESH STREAMING LIVE TABLE recordings_enriched
+ ( 0>)
AS SELECT
CAST() device_id,
,
@@ -93,16 +100,18 @@ AS SELECT
-- COMMAND ----------
-- MAGIC %md
+-- MAGIC
+-- MAGIC
-- MAGIC ## Gold Table
-- MAGIC
--- MAGIC Create a gold table, `daily_patient_avg`, that aggregates `recordings_enriched` by `mrn`, `name`, and `date` and delivers the following columns:
+-- MAGIC Create a gold table, **`daily_patient_avg`**, that aggregates **`recordings_enriched`** by **`mrn`**, **`name`**, and **`date`** and delivers the following columns:
-- MAGIC
-- MAGIC | Column name | Value |
-- MAGIC | --- | --- |
--- MAGIC | `mrn` | `mrn` from source |
--- MAGIC | `name` | `name` from source |
--- MAGIC | `avg_heartrate` | Average `heartrate` from the grouping |
--- MAGIC | `date` | Date extracted from `time` |
+-- MAGIC | **`mrn`** | **`mrn`** from source |
+-- MAGIC | **`name`** | **`name`** from source |
+-- MAGIC | **`avg_heartrate`** | Average **`heartrate`** from the grouping |
+-- MAGIC | **`date`** | Date extracted from **`time`** |
-- COMMAND ----------
diff --git a/Data-Engineering-with-Databricks/08 - Delta Live Tables/DE 8.2 DLT Lab/DE 8.2.3L - Lab Conclusion.py b/Data-Engineering-with-Databricks/08 - Delta Live Tables/DE 8.2 DLT Lab/DE 8.2.3L - Lab Conclusion.py
new file mode 100644
index 0000000..31a8de3
--- /dev/null
+++ b/Data-Engineering-with-Databricks/08 - Delta Live Tables/DE 8.2 DLT Lab/DE 8.2.3L - Lab Conclusion.py
@@ -0,0 +1,91 @@
+# Databricks notebook source
+# MAGIC %md-sandbox
+# MAGIC
+# MAGIC
+# MAGIC

+# MAGIC
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC # Lab: Conclusion
+# MAGIC Running the following cell to configure the lab environment:
+
+# COMMAND ----------
+
+# MAGIC %run ../../Includes/Classroom-Setup-8.2.3L
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC ## Display Results
+# MAGIC
+# MAGIC Assuming your pipeline runs successfully, display the contents of the gold table.
+# MAGIC
+# MAGIC **NOTE**: Because we specified a value for **Target**, tables are published to the specified database. Without a **Target** specification, we would need to query the table based on its underlying location in DBFS (relative to the **Storage Location**).
+
+# COMMAND ----------
+
+# MAGIC %sql
+# MAGIC SELECT * FROM ${da.db_name}.daily_patient_avg
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC Trigger another file arrival with the following cell.
+# MAGIC
+# MAGIC Feel free to run it a couple more times if desired.
+# MAGIC
+# MAGIC Following this, run the pipeline again and view the results.
+# MAGIC
+# MAGIC Feel free to re-run the cell above to gain an updated view of the **`daily_patient_avg`** table.
+
+# COMMAND ----------
+
+DA.data_factory.load()
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC ## Wrapping Up
+# MAGIC
+# MAGIC Ensure that you delete your pipeline from the DLT UI, and run the following cell to clean up the files and tables that were created as part of the lab setup and execution.
+
+# COMMAND ----------
+
+DA.cleanup()
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC ## Summary
+# MAGIC
+# MAGIC In this lab, you learned to convert an existing data pipeline to a Delta Live Tables SQL pipeline, and deployed that pipeline using the DLT UI.
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC ## Additional Topics & Resources
+# MAGIC
+# MAGIC * Delta Live Tables Documentation
+# MAGIC * Delta Live Tables Demo
+
+# COMMAND ----------
+
+# MAGIC %md-sandbox
+# MAGIC © 2022 Databricks, Inc. All rights reserved.
+# MAGIC Apache, Apache Spark, Spark and the Spark logo are trademarks of the Apache Software Foundation.
+# MAGIC
+# MAGIC Privacy Policy | Terms of Use | Support
diff --git a/Data-Engineering-with-Databricks/09 - Task Orchestration with Jobs/DE 9.1.1 - Task Orchestration with Databricks Jobs.py b/Data-Engineering-with-Databricks/09 - Task Orchestration with Jobs/DE 9.1.1 - Task Orchestration with Databricks Jobs.py
new file mode 100644
index 0000000..a325efd
--- /dev/null
+++ b/Data-Engineering-with-Databricks/09 - Task Orchestration with Jobs/DE 9.1.1 - Task Orchestration with Databricks Jobs.py
@@ -0,0 +1,196 @@
+# Databricks notebook source
+# MAGIC %md-sandbox
+# MAGIC
+# MAGIC
+# MAGIC

+# MAGIC
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC # Orchestrating Jobs with Databricks
+# MAGIC
+# MAGIC New updates to the Databricks Jobs UI have added the ability to schedule multiple tasks as part of a job, allowing Databricks Jobs to fully handle orchestration for most production workloads.
+# MAGIC
+# MAGIC Here, we'll start by reviewing the steps for scheduling a notebook as a triggered standalone job, and then add a dependent job using a DLT pipeline.
+# MAGIC
+# MAGIC ## Learning Objectives
+# MAGIC By the end of this lesson, you should be able to:
+# MAGIC * Schedule a notebook as a Databricks Job
+# MAGIC * Describe job scheduling options and differences between cluster types
+# MAGIC * Review Job Runs to track progress and see results
+# MAGIC * Schedule a DLT pipeline as a Databricks Job
+# MAGIC * Configure linear dependencies between tasks using the Databricks Jobs UI
+
+# COMMAND ----------
+
+# MAGIC %run ../Includes/Classroom-Setup-9.1.1
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC ## Create and configure a pipeline
+# MAGIC The pipeline we create here is nearly identical to the one in the previous unit.
+# MAGIC
+# MAGIC We will use it as part of a scheduled job in this lesson.
+# MAGIC
+# MAGIC Execute the following cell to print out the values that will be used during the following configuration steps.
+
+# COMMAND ----------
+
+print_pipeline_config()
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC ## Create and configure a pipeline
+# MAGIC
+# MAGIC Steps:
+# MAGIC 1. Click the **Jobs** button on the sidebar,
+# MAGIC 1. Select the **Delta Live Tables** tab.
+# MAGIC 1. Click **Create Pipeline**.
+# MAGIC 1. Fill in a **Pipeline Name** - because these names must be unique, we suggest using the **Pipeline Name** provided in the cell above.
+# MAGIC 1. For **Notebook Libraries**, use the navigator to locate and select the companion notebook called **DE 9.1.3 - DLT Job**. Alternatively, you can copy the **Notebook Path** and paste it into the field provided.
+# MAGIC 1. In the **Target** field, specify the database name printed out next to **Target** in the cell above.
+# MAGIC This should follow the pattern **`dbacademy__dewd_dlt_demo_91`**
+# MAGIC 1. In the **Storage location** field, copy the directory as printed above.
+# MAGIC 1. For **Pipeline Mode**, select **Triggered**
+# MAGIC 1. Uncheck the **Enable autoscaling** box
+# MAGIC 1. Set the number of workers to **`1`** (one)
+# MAGIC 1. Click **Create**.
+# MAGIC
+# MAGIC
**Note**: we won't be executing this pipline directly as it will be executed by our job later in this lesson,
+# MAGIC but if you want to test it real quick, you can click the **Start** button now.
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC
+# MAGIC ## Schedule a Notebook Job
+# MAGIC
+# MAGIC When using the Jobs UI to orchestrate a workload with multiple tasks, you'll always begin by scheduling a single task.
+# MAGIC
+# MAGIC Before we start run the following cell to get the values used in this step.
+
+# COMMAND ----------
+
+print_job_config()
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC Here, we'll start by scheduling the next notebook
+# MAGIC
+# MAGIC Steps:
+# MAGIC 1. Navigate to the Jobs UI using the Databricks left side navigation bar.
+# MAGIC 1. Click the blue **`Create Job`** button
+# MAGIC 1. Configure the task:
+# MAGIC 1. Enter **`reset`** for the task name
+# MAGIC 1. Select the notebook **`DE 9.1.2 - Reset`** using the notebook picker.
+# MAGIC 1. From the **Cluster** dropdown, under **Existing All Purpose Clusters**, select your cluster
+# MAGIC 1. Click **Create**
+# MAGIC 1. In the top-left of the screen rename the job (not the task) from **`reset`** (the defaulted value) to the **Job Name** provided for you in the previous cell.
+# MAGIC 1. Click the blue **Run now** button in the top right to start the job.
+# MAGIC
+# MAGIC
**Note**: When selecting your all-purpose cluster, you will get a warning about how this will be billed as all-purpose compute. Production jobs should always be scheduled against new job clusters appropriately sized for the workload, as this is billed at a much lower rate.
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC ## Chron Scheduling of Databricks Jobs
+# MAGIC
+# MAGIC Note that on the right hand side of the Jobs UI, directly under the **Job Details** section is a section labeled **Schedule**.
+# MAGIC
+# MAGIC Click on the **Edit schedule** button to explore scheduling options.
+# MAGIC
+# MAGIC Changing the **Schedule type** field from **Manual** to **Scheduled** will bring up a chron scheduling UI.
+# MAGIC
+# MAGIC This UI provides extensive options for setting up chronological scheduling of your Jobs. Settings configured with the UI can also be output in chron syntax, which can be edited if custom configuration not available with the UI is needed.
+# MAGIC
+# MAGIC At this time, we'll leave our job set with **Manual** scheduling.
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC ## Review Run
+# MAGIC
+# MAGIC As currently configured, our single notebook provides identical performance to the legacy Databricks Jobs UI, which only allowed a single notebook to be scheduled.
+# MAGIC
+# MAGIC To Review the Job Run
+# MAGIC 1. Select the **Runs** tab in the top-left of the screen (you should currently be on the **Tasks** tab)
+# MAGIC 1. Find your job. If **the job is still running**, it will be under the **Active runs** section. If **the job finished running**, it will be under the **Completed runs** section
+# MAGIC 1. Open the Output details by click on the timestamp field under the **Start time** column
+# MAGIC 1. If **the job is still running**, you will see the active state of the notebook with a **Status** of **`Pending`** or **`Running`** in the right side panel. If **the job has completed**, you will see the full execution of the notebook with a **Status** of **`Succeeded`** or **`Failed`** in the right side panel
+# MAGIC
+# MAGIC The notebook employs the magic command **`%run`** to call an additional notebook using a relative path. Note that while not covered in this course, new functionality added to Databricks Repos allows loading Python modules using relative paths.
+# MAGIC
+# MAGIC The actual outcome of the scheduled notebook is to reset the environment for our new job and pipeline.
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC ## Schedule a DLT Pipeline as a Task
+# MAGIC
+# MAGIC In this step, we'll add a DLT pipeline to execute after the success of the task we configured at the start of this lesson.
+# MAGIC
+# MAGIC Steps:
+# MAGIC 1. At the top left of your screen, you'll see the **Runs** tab is currently selected; click the **Tasks** tab.
+# MAGIC 1. Click the large blue circle with a **+** at the center bottom of the screen to add a new task
+# MAGIC 1. Specify the **Task name** as **`dlt`**
+# MAGIC 1. From **Type**, select **`Delta Live Tables pipeline`**
+# MAGIC 1. Click the **Pipeline** field and select the DLT pipeline you configured previously
+# MAGIC Note: The pipeline will start with **Jobs-Demo-91** and will end with your email address.
+# MAGIC 1. The **Depends on** field defaults to your previously defined task but may have renamed itself from the value **reset** that you specified previously to something like **Jobs-Demo-91-youremailaddress**.
+# MAGIC 1. Click the blue **Create task** button
+# MAGIC
+# MAGIC You should now see a screen with 2 boxes and a downward arrow between them.
+# MAGIC
+# MAGIC Your **`reset`** task (possibly renamed to something like **Jobs-Demo-91-youremailaddress**) will be at the top,
+# MAGIC leading into your **`dlt`** task.
+# MAGIC
+# MAGIC This visualization represents the dependencies between these tasks.
+# MAGIC
+# MAGIC Click **Run now** to execute your job.
+# MAGIC
+# MAGIC **NOTE**: You may need to wait a few minutes as infrastructure for your job and pipeline is deployed.
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC ## Review Multi-Task Run Results
+# MAGIC
+# MAGIC Select the **Runs** tab again and then the most recent run under **Active runs** or **Completed runs** depending on if the job has completed or not.
+# MAGIC
+# MAGIC The visualizations for tasks will update in real time to reflect which tasks are actively running, and will change colors if task failures occur.
+# MAGIC
+# MAGIC Clicking on a task box will render the scheduled notebook in the UI.
+# MAGIC
+# MAGIC You can think of this as just an additional layer of orchestration on top of the previous Databricks Jobs UI, if that helps; note that if you have workloads scheduling jobs with the CLI or REST API, the JSON structure used to configure and get results about jobs has seen similar updates to the UI.
+# MAGIC
+# MAGIC **NOTE**: At this time, DLT pipelines scheduled as tasks do not directly render results in the Runs GUI; instead, you will be directed back to the DLT Pipeline GUI for the scheduled Pipeline.
+
+# COMMAND ----------
+
+# MAGIC %md-sandbox
+# MAGIC © 2022 Databricks, Inc. All rights reserved.
+# MAGIC Apache, Apache Spark, Spark and the Spark logo are trademarks of the Apache Software Foundation.
+# MAGIC
+# MAGIC Privacy Policy | Terms of Use | Support
diff --git a/Data-Engineering-with-Databricks/09 - Task Orchestration with Jobs/DE 9.1.2 - Reset.py b/Data-Engineering-with-Databricks/09 - Task Orchestration with Jobs/DE 9.1.2 - Reset.py
new file mode 100644
index 0000000..3090a9b
--- /dev/null
+++ b/Data-Engineering-with-Databricks/09 - Task Orchestration with Jobs/DE 9.1.2 - Reset.py
@@ -0,0 +1,18 @@
+# Databricks notebook source
+# MAGIC %md-sandbox
+# MAGIC
+# MAGIC
+# MAGIC

+# MAGIC
+
+# COMMAND ----------
+
+# MAGIC %run ../Includes/Classroom-Setup-9.1.1
+
+# COMMAND ----------
+
+# MAGIC %md-sandbox
+# MAGIC © 2022 Databricks, Inc. All rights reserved.
+# MAGIC Apache, Apache Spark, Spark and the Spark logo are trademarks of the Apache Software Foundation.
+# MAGIC
+# MAGIC Privacy Policy | Terms of Use | Support
diff --git a/Data-Engineering-With-Databricks/Solutions/04 - Managing Data Access and Production Pipelines/4.1.1 - Jobs/2 - DLT Job.sql b/Data-Engineering-with-Databricks/09 - Task Orchestration with Jobs/DE 9.1.3 - DLT Job.sql
similarity index 89%
rename from Data-Engineering-With-Databricks/Solutions/04 - Managing Data Access and Production Pipelines/4.1.1 - Jobs/2 - DLT Job.sql
rename to Data-Engineering-with-Databricks/09 - Task Orchestration with Jobs/DE 9.1.3 - DLT Job.sql
index 85abadd..a434b53 100644
--- a/Data-Engineering-With-Databricks/Solutions/04 - Managing Data Access and Production Pipelines/4.1.1 - Jobs/2 - DLT Job.sql
+++ b/Data-Engineering-with-Databricks/09 - Task Orchestration with Jobs/DE 9.1.3 - DLT Job.sql
@@ -1,18 +1,18 @@
-- Databricks notebook source
-CREATE INCREMENTAL LIVE TABLE sales_orders_raw
+CREATE OR REFRESH STREAMING LIVE TABLE sales_orders_raw
COMMENT "The raw sales orders, ingested from /databricks-datasets."
AS
SELECT * FROM cloud_files("/databricks-datasets/retail-org/sales_orders/", "json", map("cloudFiles.inferColumnTypes", "true"))
-- COMMAND ----------
-CREATE INCREMENTAL LIVE TABLE customers
+CREATE OR REFRESH STREAMING LIVE TABLE customers
COMMENT "The customers buying finished products, ingested from /databricks-datasets."
AS SELECT * FROM cloud_files("/databricks-datasets/retail-org/customers/", "csv");
-- COMMAND ----------
-CREATE INCREMENTAL LIVE TABLE sales_orders_cleaned(
+CREATE OR REFRESH STREAMING LIVE TABLE sales_orders_cleaned(
CONSTRAINT valid_order_number EXPECT (order_number IS NOT NULL) ON VIOLATION DROP ROW
)
COMMENT "The cleaned sales orders with valid order_number(s) and partitioned by order_datetime."
@@ -28,7 +28,7 @@ SELECT f.customer_id, f.customer_name, f.number_of_line_items,
-- COMMAND ----------
-CREATE LIVE TABLE sales_order_in_la
+CREATE OR REFRESH LIVE TABLE sales_order_in_la
COMMENT "Sales orders in LA."
AS
SELECT city, order_date, customer_id, customer_name, ordered_products_explode.curr, SUM(ordered_products_explode.price) as sales, SUM(ordered_products_explode.qty) as quantity, COUNT(ordered_products_explode.id) as product_count
@@ -41,7 +41,7 @@ GROUP BY order_date, city, customer_id, customer_name, ordered_products_explode.
-- COMMAND ----------
-CREATE LIVE TABLE sales_order_in_chicago
+CREATE OR REFRESH LIVE TABLE sales_order_in_chicago
COMMENT "Sales orders in Chicago."
AS
SELECT city, order_date, customer_id, customer_name, ordered_products_explode.curr, SUM(ordered_products_explode.price) as sales, SUM(ordered_products_explode.qty) as quantity, COUNT(ordered_products_explode.id) as product_count
diff --git a/Data-Engineering-with-Databricks/09 - Task Orchestration with Jobs/DE 9.2L - Jobs Lab/DE 9.2.1L - Lab Instructions.py b/Data-Engineering-with-Databricks/09 - Task Orchestration with Jobs/DE 9.2L - Jobs Lab/DE 9.2.1L - Lab Instructions.py
new file mode 100644
index 0000000..dea121f
--- /dev/null
+++ b/Data-Engineering-with-Databricks/09 - Task Orchestration with Jobs/DE 9.2L - Jobs Lab/DE 9.2.1L - Lab Instructions.py
@@ -0,0 +1,179 @@
+# Databricks notebook source
+# MAGIC %md-sandbox
+# MAGIC
+# MAGIC
+# MAGIC

+# MAGIC
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC # Lab: Orchestrating Jobs with Databricks
+# MAGIC
+# MAGIC In this lab, you'll be configuring a multi-task job comprising of:
+# MAGIC * A notebook that lands a new batch of data in a storage directory
+# MAGIC * A Delta Live Table pipeline that processes this data through a series of tables
+# MAGIC * A notebook that queries the gold table produced by this pipeline as well as various metrics output by DLT
+# MAGIC
+# MAGIC ## Learning Objectives
+# MAGIC By the end of this lab, you should be able to:
+# MAGIC * Schedule a notebook as a Databricks Job
+# MAGIC * Schedule a DLT pipeline as a Databricks Job
+# MAGIC * Configure linear dependencies between tasks using the Databricks Jobs UI
+
+# COMMAND ----------
+
+# MAGIC %run ../../Includes/Classroom-Setup-9.2.1L
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC ## Land Initial Data
+# MAGIC Seed the landing zone with some data before proceeding. You will re-run this command to land additional data later.
+
+# COMMAND ----------
+
+DA.data_factory.load()
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC ## Create and Configure a Pipeline
+# MAGIC
+# MAGIC The pipeline we create here is nearly identical to the one in the previous unit.
+# MAGIC
+# MAGIC We will use it as part of a scheduled job in this lesson.
+# MAGIC
+# MAGIC Execute the following cell to print out the values that will be used during the following configuration steps.
+
+# COMMAND ----------
+
+print_pipeline_config()
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC Steps:
+# MAGIC 1. Click the **Jobs** button on the sidebar.
+# MAGIC 1. Select the **Delta Live Tables** tab.
+# MAGIC 1. Click **Create Pipeline**.
+# MAGIC 1. Fill in a **Pipeline Name** - because these names must be unique, we suggest using the **Pipeline Name** provided in the cell above.
+# MAGIC 1. For **Notebook Libraries**, use the navigator to locate and select the companion notebook called **DE 9.2.3L - DLT Job**.
+# MAGIC * Alternatively, you can copy the **Notebook Path** specified above and paste it into the field provided.
+# MAGIC 1. Configure the Source
+# MAGIC * Click **`Add configuration`**
+# MAGIC * Enter the word **`source`** in the **Key** field
+# MAGIC * Enter the **Source** value specified above to the **`Value`** field
+# MAGIC 1. In the **Target** field, specify the database name printed out next to **Target** in the cell above.
+# MAGIC This should follow the pattern **`dbacademy__dewd_jobs_lab_92`**
+# MAGIC 1. In the **Storage location** field, copy the directory as printed above.
+# MAGIC 1. For **Pipeline Mode**, select **Triggered**
+# MAGIC 1. Uncheck the **Enable autoscaling** box
+# MAGIC 1. Set the number of workers to **`1`** (one)
+# MAGIC 1. Click **Create**.
+# MAGIC
+# MAGIC
+# MAGIC
**Note**: we won't be executing this pipline directly as it will be executed by our job later in this lesson,
+# MAGIC but if you want to test it real quick, you can click the **Start** button now.
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC ## Schedule a Notebook Job
+# MAGIC
+# MAGIC When using the Jobs UI to orchestrate a workload with multiple tasks, you'll always begin by scheduling a single task.
+# MAGIC
+# MAGIC Before we start run the following cell to get the values used in this step.
+
+# COMMAND ----------
+
+print_job_config()
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC Here, we'll start by scheduling the notebook batch job.
+# MAGIC
+# MAGIC Steps:
+# MAGIC 1. Navigate to the Jobs UI using the Databricks left side navigation bar.
+# MAGIC 1. Click the blue **Create Job** button
+# MAGIC 1. Configure the task:
+# MAGIC 1. Enter **Batch-Job** for the task name
+# MAGIC 1. Select the notebook **DE 9.2.2L - Batch Job** using the notebook picker
+# MAGIC 1. From the **Cluster** dropdown, under **Existing All Purpose Cluster**, select your cluster
+# MAGIC 1. Click **Create**
+# MAGIC 1. In the top-left of the screen rename the job (not the task) from **`Batch-Job`** (the defaulted value) to the **Job Name** provided for you in the previous cell.
+# MAGIC 1. Click the blue **Run now** button in the top right to start the job to test the job real quick.
+# MAGIC
+# MAGIC
**Note**: When selecting your all purpose cluster, you will get a warning about how this will be billed as all purpose compute. Production jobs should always be scheduled against new job clusters appropriately sized for the workload, as this is billed at a much lower rate.
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC ## Schedule a DLT Pipeline as a Task
+# MAGIC
+# MAGIC In this step, we'll add a DLT pipeline to execute after the success of the task we configured at the start of this lesson.
+# MAGIC
+# MAGIC Steps:
+# MAGIC 1. At the top left of your screen, click the **Tasks** tab if it is not already selected.
+# MAGIC 1. Click the large blue circle with a **+** at the center bottom of the screen to add a new task
+# MAGIC 1. Specify the **Task name** as **DLT-Pipeline**
+# MAGIC 1. From **Type**, select **`Delta Live Tables pipeline`**
+# MAGIC 1. Click the **Pipeline** field and select the DLT pipeline you configured previously
+# MAGIC Note: The pipeline will start with **Jobs-Labs-92** and will end with your email address.
+# MAGIC 1. The **Depends on** field defaults to your previously defined task but may have renamed itself from the value **reset** that you specified previously to something like **Jobs-Lab-92-youremailaddress**.
+# MAGIC 1. Click the blue **Create task** button
+# MAGIC
+# MAGIC You should now see a screen with 2 boxes and a downward arrow between them.
+# MAGIC
+# MAGIC Your **`Batch-Job`** task (possibly renamed to something like **Jobs-Labs-92-youremailaddress**) will be at the top,
+# MAGIC leading into your **`DLT-Pipeline`** task.
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC ## Schedule an Additional Notebook Task
+# MAGIC
+# MAGIC An additional notebook has been provided which queries some of the DLT metrics and the gold table defined in the DLT pipeline.
+# MAGIC
+# MAGIC We'll add this as a final task in our job.
+# MAGIC
+# MAGIC Steps:
+# MAGIC 1. At the top left of your screen, click the **Tasks** tab if it is not already selected.
+# MAGIC 1. Click the large blue circle with a **+** at the center bottom of the screen to add a new task
+# MAGIC 1. Specify the **Task name** as **Query-Results**
+# MAGIC 1. Leave the **Type** set to **Notebook**
+# MAGIC 1. Select the notebook **DE 9.2.4L - Query Results Job** using the notebook picker
+# MAGIC 1. Note that the **Depends on** field defaults to your previously defined task, **DLT-Pipeline**
+# MAGIC 1. From the **Cluster** dropdown, under **Existing All Purpose Cluster**, select your cluster
+# MAGIC 1. Click the blue **Create task** button
+# MAGIC
+# MAGIC Click the blue **Run now** button in the top right of the screen to run this job.
+# MAGIC
+# MAGIC From the **Runs** tab, you will be able to click on the start time for this run under the **Active runs** section and visually track task progress.
+# MAGIC
+# MAGIC Once all your tasks have succeeded, review the contents of each task to confirm expected behavior.
+
+# COMMAND ----------
+
+# MAGIC %md-sandbox
+# MAGIC © 2022 Databricks, Inc. All rights reserved.
+# MAGIC Apache, Apache Spark, Spark and the Spark logo are trademarks of the Apache Software Foundation.
+# MAGIC
+# MAGIC Privacy Policy | Terms of Use | Support
diff --git a/Data-Engineering-with-Databricks/09 - Task Orchestration with Jobs/DE 9.2L - Jobs Lab/DE 9.2.2L - Batch Job.py b/Data-Engineering-with-Databricks/09 - Task Orchestration with Jobs/DE 9.2L - Jobs Lab/DE 9.2.2L - Batch Job.py
new file mode 100644
index 0000000..55656d3
--- /dev/null
+++ b/Data-Engineering-with-Databricks/09 - Task Orchestration with Jobs/DE 9.2L - Jobs Lab/DE 9.2.2L - Batch Job.py
@@ -0,0 +1,7 @@
+# Databricks notebook source
+# MAGIC %run ../../Includes/Classroom-Setup-9.2.2L
+
+# COMMAND ----------
+
+DA.data_factory.load()
+
diff --git a/Data-Engineering-With-Databricks/Solutions/04 - Managing Data Access and Production Pipelines/4.1.2 - LAB - Jobs/2 - DLT Job.sql b/Data-Engineering-with-Databricks/09 - Task Orchestration with Jobs/DE 9.2L - Jobs Lab/DE 9.2.3L - DLT Job.sql
similarity index 81%
rename from Data-Engineering-With-Databricks/Solutions/04 - Managing Data Access and Production Pipelines/4.1.2 - LAB - Jobs/2 - DLT Job.sql
rename to Data-Engineering-with-Databricks/09 - Task Orchestration with Jobs/DE 9.2L - Jobs Lab/DE 9.2.3L - DLT Job.sql
index 55e4d4e..a812762 100644
--- a/Data-Engineering-With-Databricks/Solutions/04 - Managing Data Access and Production Pipelines/4.1.2 - LAB - Jobs/2 - DLT Job.sql
+++ b/Data-Engineering-with-Databricks/09 - Task Orchestration with Jobs/DE 9.2L - Jobs Lab/DE 9.2.3L - DLT Job.sql
@@ -1,17 +1,17 @@
-- Databricks notebook source
-CREATE INCREMENTAL LIVE TABLE recordings_bronze
+CREATE OR REFRESH STREAMING LIVE TABLE recordings_bronze
AS SELECT current_timestamp() receipt_time, input_file_name() source_file, *
FROM cloud_files("${source}", "json", map("cloudFiles.schemaHints", "time DOUBLE"))
-- COMMAND ----------
-CREATE INCREMENTAL LIVE TABLE pii
+CREATE OR REFRESH STREAMING LIVE TABLE pii
AS SELECT *
FROM cloud_files("/mnt/training/healthcare/patient", "csv", map("header", "true", "cloudFiles.inferColumnTypes", "true"))
-- COMMAND ----------
-CREATE INCREMENTAL LIVE TABLE recordings_enriched
+CREATE OR REFRESH STREAMING LIVE TABLE recordings_enriched
(CONSTRAINT positive_heartrate EXPECT (heartrate > 0) ON VIOLATION DROP ROW)
AS SELECT
CAST(a.device_id AS INTEGER) device_id,
@@ -25,7 +25,7 @@ AS SELECT
-- COMMAND ----------
-CREATE INCREMENTAL LIVE TABLE daily_patient_avg
+CREATE OR REFRESH STREAMING LIVE TABLE daily_patient_avg
COMMENT "Daily mean heartrates by patient"
AS SELECT mrn, name, MEAN(heartrate) avg_heartrate, DATE(time) `date`
FROM STREAM(live.recordings_enriched)
diff --git a/Data-Engineering-with-Databricks/09 - Task Orchestration with Jobs/DE 9.2L - Jobs Lab/DE 9.2.4L - Query Results Job.py b/Data-Engineering-with-Databricks/09 - Task Orchestration with Jobs/DE 9.2L - Jobs Lab/DE 9.2.4L - Query Results Job.py
new file mode 100644
index 0000000..158cba1
--- /dev/null
+++ b/Data-Engineering-with-Databricks/09 - Task Orchestration with Jobs/DE 9.2L - Jobs Lab/DE 9.2.4L - Query Results Job.py
@@ -0,0 +1,71 @@
+# Databricks notebook source
+# MAGIC %run ../../Includes/Classroom-Setup-9.2.4L
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC # Exploring the Results of a DLT Pipeline
+# MAGIC
+# MAGIC Run the following cell to enumerate the output of your storage location:
+
+# COMMAND ----------
+
+files = dbutils.fs.ls(f"{DA.paths.working_dir}/storage")
+display(files)
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC The **system** directory captures events associated with the pipeline.
+
+# COMMAND ----------
+
+files = dbutils.fs.ls(f"{DA.paths.working_dir}/storage/system/events")
+display(files)
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC These event logs are stored as a Delta table.
+# MAGIC
+# MAGIC Let's query the table.
+
+# COMMAND ----------
+
+# MAGIC %sql
+# MAGIC SELECT * FROM delta.`${da.paths.working_dir}/storage/system/events`
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC Let's view the contents of the *tables* directory.
+
+# COMMAND ----------
+
+files = dbutils.fs.ls(f"{DA.paths.working_dir}/storage/tables")
+display(files)
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC Let's query the gold table.
+
+# COMMAND ----------
+
+# MAGIC %sql
+# MAGIC SELECT * FROM ${da.db_name}.daily_patient_avg
+
+# COMMAND ----------
+
+DA.cleanup()
+
diff --git a/Data-Engineering-With-Databricks/04 - Managing Data Access and Production Pipelines/4.2.1 - Navigating Databricks SQL and Attaching to Endpoints.py b/Data-Engineering-with-Databricks/10 - Running a DBSQL Query/DE 10.1 - Navigating Databricks SQL and Attaching to Endpoints.py
similarity index 65%
rename from Data-Engineering-With-Databricks/04 - Managing Data Access and Production Pipelines/4.2.1 - Navigating Databricks SQL and Attaching to Endpoints.py
rename to Data-Engineering-with-Databricks/10 - Running a DBSQL Query/DE 10.1 - Navigating Databricks SQL and Attaching to Endpoints.py
index 7916b00..1dfdf45 100644
--- a/Data-Engineering-With-Databricks/04 - Managing Data Access and Production Pipelines/4.2.1 - Navigating Databricks SQL and Attaching to Endpoints.py
+++ b/Data-Engineering-with-Databricks/10 - Running a DBSQL Query/DE 10.1 - Navigating Databricks SQL and Attaching to Endpoints.py
@@ -8,34 +8,36 @@
# COMMAND ----------
# MAGIC %md
+# MAGIC
+# MAGIC
# MAGIC # Navigating Databricks SQL and Attaching to Endpoints
# MAGIC
# MAGIC * Navigate to Databricks SQL
# MAGIC * Make sure that SQL is selected from the workspace option in the sidebar (directly below the Databricks logo)
# MAGIC * Make sure a SQL endpoint is on and accessible
-# MAGIC * Navigate to SQL enpoints in the sidebar
-# MAGIC * If a SQL endpoint exists and has the State `Running`, you'll use this endpoint
-# MAGIC * If a SQL endpoint exists but is `Stopped`, click the `Start` button if you have this option (**NOTE**: Start the smallest endpoint you have available to you)
-# MAGIC * If no endpoints exist and you have the option, click `Create SQL Endpoint`; name the endpoint something you'll recognize and set the cluster size to 2X-Small. Leave all other options as default.
+# MAGIC * Navigate to SQL endpoints in the sidebar
+# MAGIC * If a SQL endpoint exists and has the State **`Running`**, you'll use this endpoint
+# MAGIC * If a SQL endpoint exists but is **`Stopped`**, click the **`Start`** button if you have this option (**NOTE**: Start the smallest endpoint you have available to you)
+# MAGIC * If no endpoints exist and you have the option, click **`Create SQL Endpoint`**; name the endpoint something you'll recognize and set the cluster size to 2X-Small. Leave all other options as default.
# MAGIC * If you have no way to create or attach to a SQL endpoint, you'll need to contact a workspace administrator and request access to compute resources in Databricks SQL to continue.
# MAGIC * Navigate to home page in Databricks SQL
# MAGIC * Click the Databricks logo at the top of the side nav bar
-# MAGIC * Locate the **Sample dashboards** and click `Visit gallery`
-# MAGIC * Click `Import` next to the **Retail Revenue & Supply Chain** option
+# MAGIC * Locate the **Sample dashboards** and click **`Visit gallery`**
+# MAGIC * Click **`Import`** next to the **Retail Revenue & Supply Chain** option
# MAGIC * Assuming you have a SQL endpoint available, this should load a dashboard and immediately display results
# MAGIC * Click **Refresh** in the top right (the underlying data has not changed, but this is the button that would be used to pick up changes)
# MAGIC
# MAGIC # Updating a DBSQL Dashboard
# MAGIC
# MAGIC * Use the sidebar navigator to find the **Dashboards**
-# MAGIC * Locate the sample dashboard you just loaded; it should be called **Retail Revenue & Supply Chain** and have your username under the `Created By` field. **NOTE**: the **My Dashboards** option on the right hand side can serve as a shortcut to filter out other dashboards in the workspace
+# MAGIC * Locate the sample dashboard you just loaded; it should be called **Retail Revenue & Supply Chain** and have your username under the **`Created By`** field. **NOTE**: the **My Dashboards** option on the right hand side can serve as a shortcut to filter out other dashboards in the workspace
# MAGIC * Click on the dashboard name to view it
# MAGIC * View the query behind the **Shifts in Pricing Priorities** plot
# MAGIC * Hover over the plot; three vertical dots should appear. Click on these
# MAGIC * Select **View Query** from the menu that appears
# MAGIC * Review the SQL code used to populate this plot
# MAGIC * Note that 3 tier namespacing is used to identify the source table; this is a preview of new functionality to be supported by Unity Catalog
-# MAGIC * Click `Run` in the top right of the screen to preview the results of the query
+# MAGIC * Click **`Run`** in the top right of the screen to preview the results of the query
# MAGIC * Review the visualization
# MAGIC * Under the query, a tab named **Table** should be selected; click **Price by Priority over Time** to switch to a preview of your plot
# MAGIC * Click **Edit Visualization** at the bottom of the screen to review settings
@@ -43,37 +45,37 @@
# MAGIC * If you wish to apply your changes, click **Save**; otherwise, click **Cancel**
# MAGIC * Back in the query editor, click the **Add Visualization** button to the right of the visualization name
# MAGIC * Create a bar graph
-# MAGIC * Set the **X Column** as `Date`
-# MAGIC * Set the **Y Column** as `Total Price`
-# MAGIC * **Group by** `Priority`
-# MAGIC * Set **Stacking** to `Stack`
+# MAGIC * Set the **X Column** as **`Date`**
+# MAGIC * Set the **Y Column** as **`Total Price`**
+# MAGIC * **Group by** **`Priority`**
+# MAGIC * Set **Stacking** to **`Stack`**
# MAGIC * Leave all other settings as defaults
# MAGIC * Click **Save**
-# MAGIC * Back in the query editor, click the default name for this visualization to edit it; change the visualization name to `Stacked Price`
-# MAGIC * Add the bottom of the screen, click the three vertical dots to the left of the `Edit Visualization` button
+# MAGIC * Back in the query editor, click the default name for this visualization to edit it; change the visualization name to **`Stacked Price`**
+# MAGIC * Add the bottom of the screen, click the three vertical dots to the left of the **`Edit Visualization`** button
# MAGIC * Select **Add to Dashboard** from the menu
-# MAGIC * Select your `Retail Revenue & Supply Chain` dashboard
+# MAGIC * Select your **`Retail Revenue & Supply Chain`** dashboard
# MAGIC * Navigate back to your dashboard to view this change
# MAGIC
# MAGIC # Create a New Query
# MAGIC
# MAGIC * Use the sidebar to navigate to **Queries**
-# MAGIC * Click the `Create Query` button
-# MAGIC * In the **Schema Browser**, click on the current metastore and select `samples`
-# MAGIC * Select the `tpch` database
-# MAGIC * Click on the `partsupp` table to get a preview of the schema
-# MAGIC * While hovering over the `partsupp` table name, click the `>>` button to insert the table name into your query text
+# MAGIC * Click the **`Create Query`** button
+# MAGIC * Make sure you are connected to an endpoint. In the **Schema Browser**, click on the current metastore and select **`samples`**.
+# MAGIC * Select the **`tpch`** database
+# MAGIC * Click on the **`partsupp`** table to get a preview of the schema
+# MAGIC * While hovering over the **`partsupp`** table name, click the **>>** button to insert the table name into your query text
# MAGIC * Write your first query:
-# MAGIC * `SELECT * FROM` the `partsupp` table using the full name imported in the last step; click **Run** to preview results
-# MAGIC * Modify this query to `GROUP BY ps_partkey` and return the `ps_partkey` and `sum(ps_availqty)`; click **Run** to preview results
-# MAGIC * Update your query to alias the 2nd column to be named `total_availqty` and re-execute the query
+# MAGIC * **`SELECT * FROM`** the **`partsupp`** table using the full name imported in the last step; click **Run** to preview results
+# MAGIC * Modify this query to **`GROUP BY ps_partkey`** and return the **`ps_partkey`** and **`sum(ps_availqty)`**; click **Run** to preview results
+# MAGIC * Update your query to alias the 2nd column to be named **`total_availqty`** and re-execute the query
# MAGIC * Save your query
# MAGIC * Click the **Save** button next to **Run** near the top right of the screen
# MAGIC * Give the query a name you'll remember
# MAGIC * Add the query to your dashboard
# MAGIC * Click the three vertical buttons at the bottom of the screen
# MAGIC * Click **Add to Dashboard**
-# MAGIC * Select your `Retail Revenue & Supply Chain` dashboard
+# MAGIC * Select your **`Retail Revenue & Supply Chain`** dashboard
# MAGIC * Navigate back to your dashboard to view this change
# MAGIC * If you wish to change the organization of visualizations, click the three vertical buttons in the top right of the screen; click **Edit** in the menu that appears and you'll be able to drag and resize visualizations
diff --git a/Data-Engineering-With-Databricks/Solutions/04 - Managing Data Access and Production Pipelines/4.3.1 - Managing Permissions for Databases, Tables, and Views.py b/Data-Engineering-with-Databricks/11 - Managing Permissions/DE 11.1 - Managing Permissions for Databases, Tables, and Views.py
similarity index 79%
rename from Data-Engineering-With-Databricks/Solutions/04 - Managing Data Access and Production Pipelines/4.3.1 - Managing Permissions for Databases, Tables, and Views.py
rename to Data-Engineering-with-Databricks/11 - Managing Permissions/DE 11.1 - Managing Permissions for Databases, Tables, and Views.py
index ac3fca8..d8f2d04 100644
--- a/Data-Engineering-With-Databricks/Solutions/04 - Managing Data Access and Production Pipelines/4.3.1 - Managing Permissions for Databases, Tables, and Views.py
+++ b/Data-Engineering-with-Databricks/11 - Managing Permissions/DE 11.1 - Managing Permissions for Databases, Tables, and Views.py
@@ -8,12 +8,15 @@
# COMMAND ----------
# MAGIC %md
+# MAGIC
+# MAGIC
# MAGIC # Managing Permissions for Databases, Tables, and Views
# MAGIC
# MAGIC The instructions as detailed below are provided for groups of users to explore how Table ACLs on Databricks work. It leverages Databricks SQL and the Data Explorer to accomplish these tasks, and assumes that at least one user in the group has administrator status (or that an admin has previously configured permissions to allow proper permissions for users to create databases, tables, and views).
# MAGIC
# MAGIC As written, these instructions are for the admin user to complete. The following notebook will have a similar exercise for users to complete in pairs.
# MAGIC
+# MAGIC ## Learning Objectives
# MAGIC By the end of this lesson, you should be able to:
# MAGIC * Describe the default permissions for users and admins in DBSQL
# MAGIC * Identify the default owner for databases, tables, and views created in DBSQL and change ownership
@@ -23,65 +26,43 @@
# COMMAND ----------
+# MAGIC %run ../Includes/Classroom-Setup-11.1
+
+# COMMAND ----------
+
# MAGIC %md
+# MAGIC
+# MAGIC
# MAGIC ## Generate Setup Statements
# MAGIC
-# MAGIC The following cell uses Python to extract username of the present user and format this into several statements used to create databases, tables, and views.
+# MAGIC The following cell uses Python to extract username of the current user and format this into several statements used to create databases, tables, and views.
# MAGIC
# MAGIC Only the admin needs to execute the following cell. Successful execution will print out a series of formatted SQL queries, which can be copied into the DBSQL query editor and executed.
# COMMAND ----------
-def generate_query(course, mode="reset"):
- import re
-
- username = spark.sql("SELECT current_user()").first()[0]
- userhome = f"dbfs:/user/{username}/{course}"
- database = f"""dbacademy_{re.sub("[^a-zA-Z0-9]", "_", username)}_{course}"""
-
- if mode == "reset":
- spark.sql(f"DROP DATABASE IF EXISTS {database} CASCADE")
- dbutils.fs.rm(userhome, True)
-
- print(f"""
-CREATE DATABASE IF NOT EXISTS {database}
-LOCATION '{userhome}';
-
-USE {database};
-
-CREATE TABLE users
-(id INT, name STRING, value DOUBLE, state STRING);
-
-INSERT INTO users
-VALUES (1, "Yve", 1.0, "CA"),
- (2, "Omar", 2.5, "NY"),
- (3, "Elia", 3.3, "OH"),
- (4, "Rebecca", 4.7, "TX"),
- (5, "Ameena", 5.3, "CA"),
- (6, "Ling", 6.6, "NY"),
- (7, "Pedro", 7.1, "KY");
-
-CREATE VIEW ny_users_vw
-AS SELECT * FROM users WHERE state = 'NY';
- """)
-generate_query("acls_demo")
+DA.generate_users_table()
# COMMAND ----------
# MAGIC %md
+# MAGIC
+# MAGIC
# MAGIC Steps:
-# MAGIC * Run the cell above
-# MAGIC * Copy the entire output to your clipboard
-# MAGIC * Navigate to the Databricks SQL workspace
-# MAGIC * Make sure that a DBSQL endpoint is running
-# MAGIC * Use the left sidebar to select the **SQL Editor**
-# MAGIC * Paste the query above and click the blue **Run** in the top right
+# MAGIC 1. Run the cell above
+# MAGIC 1. Copy the entire output to your clipboard
+# MAGIC 1. Navigate to the Databricks SQL workspace
+# MAGIC 1. Make sure that a DBSQL endpoint is running
+# MAGIC 1. Use the left sidebar to select the **SQL Editor**
+# MAGIC 1. Paste the query above and click the blue **Run** in the top right
# MAGIC
# MAGIC **NOTE**: You will need to be connected to a DBSQL endpoint to execute these queries successfully. If you cannot connect to a DBSQL endpoint, you will need to contact your administrator to give you access.
# COMMAND ----------
# MAGIC %md
+# MAGIC
+# MAGIC
# MAGIC ## Using Data Explorer
# MAGIC
# MAGIC * Use the left sidebar navigator to select the **Data** tab; this places you in the **Data Explorer**
@@ -93,7 +74,7 @@ def generate_query(course, mode="reset"):
# MAGIC * Explore data schema, metadata, and history
# MAGIC * Set and modify permissions of relational entities
# MAGIC
-# MAGIC Note that at the moment these instructions are being written, Unity Catalog is not yet generally available. The 3 tier namespacing functionality it adds can be previewed to an extent by switching between the default `hive_metastore` and the `sample` catalog used for example dashboards and queries. Expect the Data Explorer UI and functionality to evolve as Unity Catalog is added to workspaces.
+# MAGIC Note that at the moment these instructions are being written, Unity Catalog is not yet generally available. The 3 tier namespacing functionality it adds can be previewed to an extent by switching between the default **`hive_metastore`** and the **`sample`** catalog used for example dashboards and queries. Expect the Data Explorer UI and functionality to evolve as Unity Catalog is added to workspaces.
# MAGIC
# MAGIC ## Configuring Permissions
# MAGIC
@@ -114,7 +95,7 @@ def generate_query(course, mode="reset"):
# MAGIC | FUNCTION | controls access to a named function. |
# MAGIC | ANY FILE | controls access to the underlying filesystem. Users granted access to ANY FILE can bypass the restrictions put on the catalog, databases, tables, and views by reading from the file system directly. |
# MAGIC
-# MAGIC **NOTE**: At present, the `ANY FILE` object cannot be set from Data Explorer.
+# MAGIC **NOTE**: At present, the **`ANY FILE`** object cannot be set from Data Explorer.
# MAGIC
# MAGIC ## Granting Privileges
# MAGIC
@@ -145,8 +126,10 @@ def generate_query(course, mode="reset"):
# COMMAND ----------
# MAGIC %md
+# MAGIC
+# MAGIC
# MAGIC ## Review the Default Permissions
-# MAGIC In the Data Explorer, find the database you created earlier (this should follow the pattern `dbacademy__acls_demo`).
+# MAGIC In the Data Explorer, find the database you created earlier (this should follow the pattern **`dbacademy__acls_demo`**).
# MAGIC
# MAGIC Clicking on the database name should display a list of the contained tables and views on the left hand side. On the right, you'll see some details about the database, including the **Owner** and **Location**.
# MAGIC
@@ -155,6 +138,8 @@ def generate_query(course, mode="reset"):
# COMMAND ----------
# MAGIC %md
+# MAGIC
+# MAGIC
# MAGIC ## Assigning Ownership
# MAGIC
# MAGIC Click the blue pencil next to the **Owner** field. Note that an owner can be set as an individual OR a group. For most implementations, having one or several small groups of trusted power users as owners will limit admin access to important datasets while ensuring that a single user does not create a choke point in productivity.
@@ -164,11 +149,13 @@ def generate_query(course, mode="reset"):
# COMMAND ----------
# MAGIC %md
+# MAGIC
+# MAGIC
# MAGIC ## Change Database Permissions
# MAGIC
# MAGIC Begin by allowing all users to review metadata about the database.
# MAGIC
-# MAGIC Step:
+# MAGIC Steps:
# MAGIC 1. Make sure you have the **Permissions** tab selected for the database
# MAGIC 1. Click the blue **Grant** button
# MAGIC 1. Select the **USAGE** and **READ_METADATA** options
@@ -180,14 +167,16 @@ def generate_query(course, mode="reset"):
# COMMAND ----------
# MAGIC %md
+# MAGIC
+# MAGIC
# MAGIC ## Change View Permissions
# MAGIC
# MAGIC While users can now see information about this database, they won't be able to interact with the table of view declared above.
# MAGIC
# MAGIC Let's start by giving users the ability to query our view.
# MAGIC
-# MAGIC Step:
-# MAGIC 1. Select the `ny_users_vw`
+# MAGIC Steps:
+# MAGIC 1. Select the **`ny_users_vw`**
# MAGIC 1. Select the **Permissions** tab
# MAGIC * Users should have inherited the permissions granted at the database level; you'll be able to see which permissions users currently have on an asset, as well as where that permission is inherited from
# MAGIC 1. Click the blue **Grant** button
@@ -199,25 +188,29 @@ def generate_query(course, mode="reset"):
# COMMAND ----------
# MAGIC %md
+# MAGIC
+# MAGIC
# MAGIC ## Run a Query to Confirm
# MAGIC
# MAGIC In the **SQL Editor**, all users should use the **Schema Browser** on the lefthand side to navigate to the database being controlled by the admin.
# MAGIC
-# MAGIC Users should start a query by typing `SELECT * FROM ` and then click the **>>** that appears while hovering over the view name to insert it into their query.
+# MAGIC Users should start a query by typing **`SELECT * FROM`** and then click the **>>** that appears while hovering over the view name to insert it into their query.
# MAGIC
# MAGIC This query should return 2 results.
# MAGIC
-# MAGIC **NOTE**: This view is defined against the `users` table, which has not had any permissions set yet. Note that users have access only to that portion of the data that passes through the filters defined on the view; this pattern demonstrates how a single underlying table can be used to drive controlled access to data for relevant stakeholders.
+# MAGIC **NOTE**: This view is defined against the **`users`** table, which has not had any permissions set yet. Note that users have access only to that portion of the data that passes through the filters defined on the view; this pattern demonstrates how a single underlying table can be used to drive controlled access to data for relevant stakeholders.
# COMMAND ----------
# MAGIC %md
+# MAGIC
+# MAGIC
# MAGIC ## Change Table Permissions
# MAGIC
-# MAGIC Perform the same steps as above, but now for the `users` table.
+# MAGIC Perform the same steps as above, but now for the **`users`** table.
# MAGIC
-# MAGIC Step:
-# MAGIC 1. Select the `users` table
+# MAGIC Steps:
+# MAGIC 1. Select the **`users`** table
# MAGIC 1. Select the **Permissions** tab
# MAGIC 1. Click the blue **Grant** button
# MAGIC 1. Select the **SELECT** and **READ_METADATA** options
@@ -227,7 +220,9 @@ def generate_query(course, mode="reset"):
# COMMAND ----------
# MAGIC %md
-# MAGIC ## Have Users Attempt to `DROP TABLE`
+# MAGIC
+# MAGIC
+# MAGIC ## Have Users Attempt to **`DROP TABLE`**
# MAGIC
# MAGIC In the **SQL Editor**, encourage users to explore the data in this table.
# MAGIC
@@ -236,6 +231,8 @@ def generate_query(course, mode="reset"):
# COMMAND ----------
# MAGIC %md
+# MAGIC
+# MAGIC
# MAGIC ## Create a Database for Derivative Datasets
# MAGIC
# MAGIC In most cases users will need a location to save out derivative datasets. At present, users may not have the ability to create new tables in any location (depending on existing ACLs in the workspace and databases created during previous lessons students have completed).
@@ -246,22 +243,13 @@ def generate_query(course, mode="reset"):
# COMMAND ----------
-import re
-
-username = spark.sql("SELECT current_user()").first()[0]
-database = f"""dbacademy_{re.sub("[^a-zA-Z0-9]", "_", username)}_derivative"""
-
-print(f"""
-CREATE DATABASE {database};
-
-GRANT USAGE, READ_METADATA, CREATE, MODIFY, SELECT ON DATABASE `{database}` TO `users`;
-
-SHOW GRANT ON DATABASE `{database}`
-""")
+DA.generate_create_database_with_grants()
# COMMAND ----------
# MAGIC %md
+# MAGIC
+# MAGIC
# MAGIC ## Have Users Create New Tables or Views
# MAGIC
# MAGIC Give users a moment to test that they can create tables and views in this new database.
@@ -271,21 +259,19 @@ def generate_query(course, mode="reset"):
# COMMAND ----------
# MAGIC %md
+# MAGIC
+# MAGIC
# MAGIC ## Admin Configuration
# MAGIC
-# MAGIC At present, users do not have any Table ACL permissions granted on the default catalog `hive_metastore` by default. The next lab assumes that users will be able to create databases.
+# MAGIC At present, users do not have any Table ACL permissions granted on the default catalog **`hive_metastore`** by default. The next lab assumes that users will be able to create databases.
# MAGIC
# MAGIC To enable the ability to create databases and tables in the default catalog using Databricks SQL, have a workspace admin run the following command in the DBSQL query editor:
# MAGIC
-# MAGIC ```
-# MAGIC GRANT usage, create ON CATALOG `hive_metastore` TO `users`
-# MAGIC ```
+# MAGIC GRANT usage, create ON CATALOG `hive_metastore` TO `users`
# MAGIC
# MAGIC To confirm this has run successfully, execute the following query:
# MAGIC
-# MAGIC ```
-# MAGIC SHOW GRANT ON CATALOG `hive_metastore`
-# MAGIC ```
+# MAGIC SHOW GRANT ON CATALOG `hive_metastore`
# COMMAND ----------
diff --git a/Data-Engineering-with-Databricks/11 - Managing Permissions/DE 11.2L - Configuring Privileges for Production Data and Derived Tables Lab.py b/Data-Engineering-with-Databricks/11 - Managing Permissions/DE 11.2L - Configuring Privileges for Production Data and Derived Tables Lab.py
new file mode 100644
index 0000000..c4328ac
--- /dev/null
+++ b/Data-Engineering-with-Databricks/11 - Managing Permissions/DE 11.2L - Configuring Privileges for Production Data and Derived Tables Lab.py
@@ -0,0 +1,215 @@
+# Databricks notebook source
+# MAGIC %md-sandbox
+# MAGIC
+# MAGIC
+# MAGIC

+# MAGIC
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC # Configuring Privileges for Production Data and Derived Tables
+# MAGIC
+# MAGIC The instructions as detailed below are provided for pairs of users to explore how Table ACLs on Databricks work. It leverages Databricks SQL and the Data Explorer to accomplish these tasks, and assumes that neither user has admin privileges for the workspace. An admin will need to have previously granted **`CREATE`** and **`USAGE`** privileges on a catalog for users to be able to create databases in Databricks SQL.
+# MAGIC
+# MAGIC ##Learning Objectives
+# MAGIC
+# MAGIC By the end of this lab, you should be able to:
+# MAGIC * Use Data Explorer to navigate relational entities
+# MAGIC * Configure permissions for tables and views with Data Explorer
+# MAGIC * Configure minimal permissions to allow for table discovery and querying
+# MAGIC * Change ownership for databases, tables, and views created in DBSQL
+
+# COMMAND ----------
+
+# MAGIC %run ../Includes/Classroom-Setup-11.2L
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC ## Exchange User Names with your Partner
+# MAGIC If you are not in a workspace where your usernames correspond with your email address, make sure your partner has your username.
+# MAGIC
+# MAGIC They will need this when assigning privileges and searching for your database at later steps.
+# MAGIC
+# MAGIC The following cell will print your username.
+
+# COMMAND ----------
+
+print(f"Your username: {DA.username}")
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC ## Generate Setup Statements
+# MAGIC
+# MAGIC The following cell uses Python to extract the username of the current user and format this into several statements used to create databases, tables, and views.
+# MAGIC
+# MAGIC Both students should execute the following cell.
+# MAGIC
+# MAGIC Successful execution will print out a series of formatted SQL queries, which can be copied into the DBSQL query editor and executed.
+
+# COMMAND ----------
+
+DA.generate_query()
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC Steps:
+# MAGIC 1. Run the cell above
+# MAGIC 1. Copy the entire output to your clipboard
+# MAGIC 1. Navigate to the Databricks SQL workspace
+# MAGIC 1. Make sure that a DBSQL endpoint is running
+# MAGIC 1. Use the left sidebar to select the **SQL Editor**
+# MAGIC 1. Paste the query above and click the blue **Run** in the top right
+# MAGIC
+# MAGIC **NOTE**: You will need to be connected to a DBSQL endpoint to execute these queries successfully. If you cannot connect to a DBSQL endpoint, you will need to contact your administrator to give you access.
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC ## Find Your Database
+# MAGIC In the Data Explorer, find the database you created earlier (this should follow the pattern **`dbacademy__dewd_acls_lab`**).
+# MAGIC
+# MAGIC Clicking on the database name should display a list of the contained tables and views on the left hand side.
+# MAGIC
+# MAGIC On the right, you'll see some details about the database, including the **Owner** and **Location**.
+# MAGIC
+# MAGIC Click the **Permissions** tab to review who presently has permissions (depending on your workspace configuration, some permissions may have been inherited from settings on the catalog).
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC ## Change Database Permissions
+# MAGIC
+# MAGIC Steps:
+# MAGIC 1. Make sure you have the **Permissions** tab selected for the database
+# MAGIC 1. Click the blue **Grant** button
+# MAGIC 1. Select the **USAGE**, **SELECT**, and **READ_METADATA** options
+# MAGIC 1. Enter the username of your partner in the field at the top.
+# MAGIC 1. Click **OK**
+# MAGIC
+# MAGIC Confirm with your partner that you can each see each others' databases and tables.
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC ## Run a Query to Confirm
+# MAGIC
+# MAGIC By granting **`USAGE`**, **`SELECT`**, and **`READ_METADATA`** on your database, your partner should now be able to freely query the tables and views in this database, but will not be able to create new tables OR modify your data.
+# MAGIC
+# MAGIC In the SQL Editor, each user should run a series of queries to confirm this behavior in the database they were just added to.
+# MAGIC
+# MAGIC **Make sure you specify your partner's database while running the queries below.**
+# MAGIC
+# MAGIC **NOTE**: These first 3 queries should succeed, but the last should fail.
+
+# COMMAND ----------
+
+# Replace FILL_IN with your partner's username
+DA.generate_confirmation_query("FILL_IN")
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC ## Execute a Query to Generate the Union of Your Beans
+# MAGIC
+# MAGIC Execute the query below against your own databases.
+# MAGIC
+# MAGIC **NOTE**: Because random values were inserted for the **`grams`** and **`delicious`** columns, you should see 2 distinct rows for each **`name`**, **`color`** pair.
+
+# COMMAND ----------
+
+DA.generate_union_query()
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC ## Register a Derivative View to Your Database
+# MAGIC
+# MAGIC Execute the query below to register the results of the previous query to your database.
+
+# COMMAND ----------
+
+DA.generate_derivative_view()
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC ## Query Your Partner's View
+# MAGIC
+# MAGIC Once your partner has successfully completed the previous step, run the following query against each of your tables; you should get the same results:
+
+# COMMAND ----------
+
+# Replace FILL_IN with your partner's username
+DA.generate_partner_view("FILL_IN")
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC ## Add Modify Permissions
+# MAGIC
+# MAGIC Now try to drop each other's **`beans`** tables.
+# MAGIC
+# MAGIC At the moment, this shouldn't work.
+# MAGIC
+# MAGIC Using the Data Explorer, add the **`MODIFY`** permission for your **`beans`** table for your partner.
+# MAGIC
+# MAGIC Again, attempt to drop your partner's **`beans`** table.
+# MAGIC
+# MAGIC It should again fail.
+# MAGIC
+# MAGIC **Only the owner of a table should be able to issue this statement**.
+# MAGIC (Note that ownership can be transferred from an individual to a group, if desired).
+# MAGIC
+# MAGIC Instead, execute a query to delete records from your partner's table:
+
+# COMMAND ----------
+
+# Replace FILL_IN with your partner's username
+DA.generate_delete_query("FILL_IN")
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC This query should successfully drop all records from the target table.
+# MAGIC
+# MAGIC Try to re-execute queries against any of the views of tables you'd previously queried in this lab.
+# MAGIC
+# MAGIC **NOTE**: If steps were completed successfully, none of your previous queries should return results, as the data referenced by your views has been deleted. This demonstrates the risks associated with providing **`MODIFY`** privileges to users on data that will be used in production applications and dashboards.
+# MAGIC
+# MAGIC If you have additional time, see if you can use the Delta methods **`DESCRIBE HISTORY`** and **`RESTORE`** to revert the records in your table.
+
+# COMMAND ----------
+
+# MAGIC %md-sandbox
+# MAGIC © 2022 Databricks, Inc. All rights reserved.
+# MAGIC Apache, Apache Spark, Spark and the Spark logo are trademarks of the Apache Software Foundation.
+# MAGIC
+# MAGIC Privacy Policy | Terms of Use | Support
diff --git a/Data-Engineering-with-Databricks/12 - Productionalizing Dashboards and Queries in DBSQL/DE 12.1 - Last Mile ETL with DBSQL.py b/Data-Engineering-with-Databricks/12 - Productionalizing Dashboards and Queries in DBSQL/DE 12.1 - Last Mile ETL with DBSQL.py
new file mode 100644
index 0000000..171a1e1
--- /dev/null
+++ b/Data-Engineering-with-Databricks/12 - Productionalizing Dashboards and Queries in DBSQL/DE 12.1 - Last Mile ETL with DBSQL.py
@@ -0,0 +1,304 @@
+# Databricks notebook source
+# MAGIC %md-sandbox
+# MAGIC
+# MAGIC
+# MAGIC

+# MAGIC
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC # Last Mile ETL with Databricks SQL
+# MAGIC
+# MAGIC Before we continue, let's do a recap of some of the things we've learned so far:
+# MAGIC 1. The Databricks workspace contains a suite of tools to simplify the data engineering development lifecycle
+# MAGIC 1. Databricks notebooks allow users to mix SQL with other programming languages to define ETL workloads
+# MAGIC 1. Delta Lake provides ACID compliant transactions and makes incremental data processing easy in the Lakehouse
+# MAGIC 1. Delta Live Tables extends the SQL syntax to support many design patterns in the Lakehouse, and simplifies infrastructure deployment
+# MAGIC 1. Multi-task jobs allows for full task orchestration, adding dependencies while scheduling a mix of notebooks and DLT pipelines
+# MAGIC 1. Databricks SQL allows users to edit and execute SQL queries, build visualizations, and define dashboards
+# MAGIC 1. Data Explorer simplifies managing Table ACLs, making Lakehouse data available to SQL analysts (soon to be expanded greatly by Unity Catalog)
+# MAGIC
+# MAGIC In this section, we'll focus on exploring more DBSQL functionality to support production workloads.
+# MAGIC
+# MAGIC We'll start by focusing on leveraging Databricks SQL to configure queries that support last mile ETL for analytics. Note that while we'll be using the Databricks SQL UI for this demo, SQL Endpoints integrate with a number of other tools to allow external query execution, as well as having full API support for executing arbitrary queries programmatically.
+# MAGIC
+# MAGIC From these query results, we'll generate a series of visualizations, which we'll combine into a dashboard.
+# MAGIC
+# MAGIC Finally, we'll walk through scheduling updates for queries and dashboards, and demonstrate setting alerts to help monitor the state of production datasets over time.
+# MAGIC
+# MAGIC ## Learning Objectives
+# MAGIC By the end of this lesson, you should be able to:
+# MAGIC * Use Databricks SQL as a tool to support production ETL tasks backing analytic workloads
+# MAGIC * Configure SQL queries and visualizations with the Databricks SQL Editor
+# MAGIC * Create dashboards in Databricks SQL
+# MAGIC * Schedule updates for queries and dashboards
+# MAGIC * Set alerts for SQL queries
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC ## Run Setup Script
+# MAGIC The following cells runs a notebook that defines a class we'll use to generate SQL queries.
+
+# COMMAND ----------
+
+# MAGIC %run ../Includes/Classroom-Setup-12.1
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC ## Create a Demo Database
+# MAGIC Execute the following cell and copy the results into the Databricks SQL Editor.
+# MAGIC
+# MAGIC These queries:
+# MAGIC * Create a new database
+# MAGIC * Declare two tables (we'll use these for loading data)
+# MAGIC * Declare two functions (we'll use these for generating data)
+# MAGIC
+# MAGIC Once copied, execute the query using the **Run** button.
+
+# COMMAND ----------
+
+DA.generate_config()
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC **NOTE**: The queries above are only designed to be run once after resetting the demo completely to reconfigure the environment. Users will need to have **`CREATE`** and **`USAGE`** permissions on the catalog to execute them.
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC
+# MAGIC
+# MAGIC **WARNING:** Make sure to select your database before proceeding as the **`USE`** statement
doesn't yet change the database against which your queries will execute
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC ## Create a Query to Load Data
+# MAGIC Steps:
+# MAGIC 1. Execute the cell below to print out a formatted SQL query for loading data in the **`user_ping`** table created in the previous step.
+# MAGIC 1. Save this query with the name **Load Ping Data**.
+# MAGIC 1. Run this query to load a batch of data.
+
+# COMMAND ----------
+
+DA.generate_load()
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC Executing the query should load some data and return a preview of the data in the table.
+# MAGIC
+# MAGIC **NOTE**: Random numbers are being used to define and load data, so each user will have slightly different values present.
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC ## Set a Query Refresh Schedule
+# MAGIC
+# MAGIC Steps:
+# MAGIC 1. Locate the **Refresh Schedule** field at the bottom right of the SQL query editor box; click the blue **Never**
+# MAGIC 1. Use the drop down to change to Refresh every **1 minute**
+# MAGIC 1. For **Ends**, click the **On** radio button
+# MAGIC 1. Select tomorrow's date
+# MAGIC 1. Click **OK**
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC ## Create a Query to Track Total Records
+# MAGIC Steps:
+# MAGIC 1. Execute the cell below.
+# MAGIC 1. Save this query with the name **User Counts**.
+# MAGIC 1. Run the query to calculate the current results.
+
+# COMMAND ----------
+
+DA.generate_user_counts()
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC ## Create a Bar Graph Visualization
+# MAGIC
+# MAGIC Steps:
+# MAGIC 1. Click the **Add Visualization** button, located beneath the Refresh Schedule button in the bottom right-hand corner of the query window
+# MAGIC 1. Click on the name (should default to something like **`Visualization 1`**) and change the name to **Total User Records**
+# MAGIC 1. Set **`user_id`** for the **X Column**
+# MAGIC 1. Set **`total_records`** for the **Y Columns**
+# MAGIC 1. Click **Save**
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC ## Create a New Dashboard
+# MAGIC
+# MAGIC Steps:
+# MAGIC 1. Click the button with three vertical dots at the bottom of the screen and select **Add to Dashboard**.
+# MAGIC 1. Click the **Create new dashboard** option
+# MAGIC 1. Name your dashboard User Ping Summary **``**
+# MAGIC 1. Click **Save** to create the new dashboard
+# MAGIC 1. Your newly created dashboard should now be selected as the target; click **OK** to add your visualization
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC ## Create a Query to Calculate the Recent Average Ping
+# MAGIC Steps:
+# MAGIC 1. Execute the cell below to print out the formatted SQL query.
+# MAGIC 1. Save this query with the name **Avg Ping**.
+# MAGIC 1. Run the query to calculate the current results.
+
+# COMMAND ----------
+
+DA.generate_avg_ping()
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC ## Add a Line Plot Visualization to your Dashboard
+# MAGIC
+# MAGIC Steps:
+# MAGIC 1. Click the **Add Visualization** button
+# MAGIC 1. Click on the name (should default to something like **`Visualization 1`**) and change the name to **Avg User Ping**
+# MAGIC 1. Select **`Line`** for the **Visualization Type**
+# MAGIC 1. Set **`end_time`** for the **X Column**
+# MAGIC 1. Set **`avg_ping`** for the **Y Columns**
+# MAGIC 1. Set **`user_id`** for the **Group by**
+# MAGIC 1. Click **Save**
+# MAGIC 1. Click the button with three vertical dots at the bottom of the screen and select **Add to Dashboard**.
+# MAGIC 1. Select the dashboard you created earlier
+# MAGIC 1. Click **OK** to add your visualization
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC ## Create a Query to Report Summary Statistics
+# MAGIC Steps:
+# MAGIC 1. Execute the cell below.
+# MAGIC 1. Save this query with the name **Ping Summary**.
+# MAGIC 1. Run the query to calculate the current results.
+
+# COMMAND ----------
+
+DA.generate_summary()
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC ## Add the Summary Table to your Dashboard
+# MAGIC
+# MAGIC Steps:
+# MAGIC 1. Click the button with three vertical dots at the bottom of the screen and select **Add to Dashboard**.
+# MAGIC 1. Select the dashboard you created earlier
+# MAGIC 1. Click **OK** to add your visualization
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC ## Review and Refresh your Dashboard
+# MAGIC
+# MAGIC Steps:
+# MAGIC 1. Use the left side bar to navigate to **Dashboards**
+# MAGIC 1. Find the dashboard you've added your queries to
+# MAGIC 1. Click the blue **Refresh** button to update your dashboard
+# MAGIC 1. Click the **Schedule** button to review dashboard scheduling options
+# MAGIC * Note that scheduling a dashboard to update will execute all queries associated with that dashboard
+# MAGIC * Do not schedule the dashboard at this time
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC ## Share your Dashboard
+# MAGIC
+# MAGIC Steps:
+# MAGIC 1. Click the blue **Share** button
+# MAGIC 1. Select **All Users** from the top field
+# MAGIC 1. Choose **Can Run** from the right field
+# MAGIC 1. Click **Add**
+# MAGIC 1. Change the **Credentials** to **Run as viewer**
+# MAGIC
+# MAGIC **NOTE**: At present, no other users should have any permissions to run your dashboard, as they have not been granted permissions to the underlying databases and tables using Table ACLs. If you wish other users to be able to trigger updates to your dashboard, you will either need to grant them permissions to **Run as owner** or add permissions for the tables referenced in your queries.
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC ## Set Up an Alert
+# MAGIC
+# MAGIC Steps:
+# MAGIC 1. Use the left side bar to navigate to **Alerts**
+# MAGIC 1. Click **Create Alert** in the top right
+# MAGIC 1. Click the field at the top left of the screen to give the alert a name **` Count Check`**
+# MAGIC 1. Select your **User Counts** query
+# MAGIC 1. For the **Trigger when** options, configure:
+# MAGIC * **Value column**: **`total_records`**
+# MAGIC * **Condition**: **`>`**
+# MAGIC * **Threshold**: **`15`**
+# MAGIC 1. For **Refresh**, select **Never**
+# MAGIC 1. Click **Create Alert**
+# MAGIC 1. On the next screen, click the blue **Refresh** in the top right to evaluate the alert
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC ## Review Alert Destination Options
+# MAGIC
+# MAGIC
+# MAGIC
+# MAGIC Steps:
+# MAGIC 1. From the preview of your alert, click the blue **Add** button to the right of **Destinations** on the right side of the screen
+# MAGIC 1. At the bottom of the window that pops up, locate the and click the blue text in the message **Create new destinations in Alert Destinations**
+# MAGIC 1. Review the available alerting options
+
+# COMMAND ----------
+
+DA.cleanup()
+
+# COMMAND ----------
+
+# MAGIC %md-sandbox
+# MAGIC © 2022 Databricks, Inc. All rights reserved.
+# MAGIC Apache, Apache Spark, Spark and the Spark logo are trademarks of the Apache Software Foundation.
+# MAGIC
+# MAGIC Privacy Policy | Terms of Use | Support
diff --git a/Data-Engineering-with-Databricks/12 - Productionalizing Dashboards and Queries in DBSQL/DE 12.2L - OPTIONAL Capstone/DE 12.2.1L - Instructions and Configuration.py b/Data-Engineering-with-Databricks/12 - Productionalizing Dashboards and Queries in DBSQL/DE 12.2L - OPTIONAL Capstone/DE 12.2.1L - Instructions and Configuration.py
new file mode 100644
index 0000000..41f73f6
--- /dev/null
+++ b/Data-Engineering-with-Databricks/12 - Productionalizing Dashboards and Queries in DBSQL/DE 12.2L - OPTIONAL Capstone/DE 12.2.1L - Instructions and Configuration.py
@@ -0,0 +1,236 @@
+# Databricks notebook source
+# MAGIC %md-sandbox
+# MAGIC
+# MAGIC
+# MAGIC

+# MAGIC
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC
+# MAGIC ## End-to-End ETL in the Lakehouse
+# MAGIC
+# MAGIC In this notebook, you will pull together concepts learned throughout the course to complete an example data pipeline.
+# MAGIC
+# MAGIC The following is a non-exhaustive list of skills and tasks necessary to successfully complete this exercise:
+# MAGIC * Using Databricks notebooks to write queries in SQL and Python
+# MAGIC * Creating and modifying databases, tables, and views
+# MAGIC * Using Auto Loader and Spark Structured Streaming for incremental data processing in a multi-hop architecture
+# MAGIC * Using Delta Live Table SQL syntax
+# MAGIC * Configuring a Delta Live Table pipeline for continuous processing
+# MAGIC * Using Databricks Jobs to orchestrate tasks from notebooks stored in Repos
+# MAGIC * Setting chronological scheduling for Databricks Jobs
+# MAGIC * Defining queries in Databricks SQL
+# MAGIC * Creating visualizations in Databricks SQL
+# MAGIC * Defining Databricks SQL dashboards to review metrics and results
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC ## Run Setup
+# MAGIC Run the following cell to reset all the databases and directories associated with this lab.
+
+# COMMAND ----------
+
+# MAGIC %run ../../Includes/Classroom-Setup-12.2.1L
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC ## Land Initial Data
+# MAGIC Seed the landing zone with some data before proceeding.
+
+# COMMAND ----------
+
+DA.data_factory.load()
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC ## Create and Configure a DLT Pipeline
+# MAGIC **NOTE**: The main difference between the instructions here and in previous labs with DLT is that in this instance, we will be setting up our pipeline for **Continuous** execution in **Production** mode.
+
+# COMMAND ----------
+
+print_pipeline_config()
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC Steps:
+# MAGIC 1. Click the **Jobs** button on the sidebar.
+# MAGIC 1. Select the **Delta Live Tables** tab.
+# MAGIC 1. Click **Create Pipeline**.
+# MAGIC 1. Fill in a **Pipeline Name** - because these names must be unique, we suggest using the **Pipline Name** provided in the cell above.
+# MAGIC 1. For **Notebook Libraries**, use the navigator to locate and select the notebook **DE 12.2.2L - DLT Task**.
+# MAGIC * Alternatively, you can copy the **Notebook Path** specified above and paste it into the field provided.
+# MAGIC 1. Configure the Source
+# MAGIC * Click **`Add configuration`**
+# MAGIC * Enter the word **`source`** in the **Key** field
+# MAGIC * Enter the **Source** value specified above to the **`Value`** field
+# MAGIC 1. In the **Target** field, specify the database name printed out next to **Target** in the cell above.
+# MAGIC This should follow the pattern **`dbacademy__dewd_cap_12`**
+# MAGIC 1. In the **Storage location** field, copy the directory as printed above.
+# MAGIC 1. For **Pipeline Mode**, select **Continuous**
+# MAGIC 1. Uncheck the **Enable autoscaling** box
+# MAGIC 1. Set the number of workers to **`1`** (one)
+# MAGIC 1. Click **Create**.
+# MAGIC 1. After the UI updates, change from **Development** to **Production** mode
+# MAGIC
+# MAGIC This should begin the deployment of infrastructure.
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC ## Schedule a Notebook Job
+# MAGIC
+# MAGIC Our DLT pipeline is setup to process data as soon as it arrives.
+# MAGIC
+# MAGIC We'll schedule a notebook to land a new batch of data each minute so we can see this functionality in action.
+# MAGIC
+# MAGIC Before we start run the following cell to get the values used in this step.
+
+# COMMAND ----------
+
+print_job_config()
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC Steps:
+# MAGIC 1. Navigate to the Jobs UI using the Databricks left side navigation bar.
+# MAGIC 1. Click the blue **Create Job** button
+# MAGIC 1. Configure the task:
+# MAGIC 1. Enter **Land-Data** for the task name
+# MAGIC 1. Select the notebook **DE 12.2.3L - Land New Data** using the notebook picker
+# MAGIC 1. From the **Cluster** dropdown, under **Existing All Purpose Cluster**, select your cluster
+# MAGIC 1. Click **Create**
+# MAGIC 1. In the top-left of the screen rename the job (not the task) from **`Land-Data`** (the defaulted value) to the **Job Name** provided for you in the previous cell.
+# MAGIC
+# MAGIC
**Note**: When selecting your all purpose cluster, you will get a warning about how this will be billed as all purpose compute. Production jobs should always be scheduled against new job clusters appropriately sized for the workload, as this is billed at a much lower rate.
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC ## Set a Chronological Schedule for your Job
+# MAGIC Steps:
+# MAGIC 1. Navigate to the **Jobs UI** and click on the job you just created.
+# MAGIC 1. Locate the **Schedule** section in the side panel on the right.
+# MAGIC 1. Click on the **Edit schedule** button to explore scheduling options.
+# MAGIC 1. Change the **Schedule type** field from **Manual** to **Scheduled**, which will bring up a chron scheduling UI.
+# MAGIC 1. Set the schedule to update **Every 2**, **Minutes** from **00**
+# MAGIC 1. Click **Save**
+# MAGIC
+# MAGIC **NOTE**: If you wish, you can click **Run now** to trigger the first run, or wait until the top of the next minute to make sure your scheduling has worked successfully.
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC ## Register DLT Event Metrics for Querying with DBSQL
+# MAGIC
+# MAGIC The following cell prints out SQL statements to register the DLT event logs to your target database for querying in DBSQL.
+# MAGIC
+# MAGIC Execute the output code with the DBSQL Query Editor to register these tables and views.
+# MAGIC
+# MAGIC Explore each and make note of the logged event metrics.
+
+# COMMAND ----------
+
+DA.generate_register_dlt_event_metrics_sql()
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC ## Define a Query on the Gold Table
+# MAGIC
+# MAGIC The **daily_patient_avg** table is automatically updated each time a new batch of data is processed through the DLT pipeline. Each time a query is executed against this table, DBSQL will confirm if there is a newer version and then materialize results from the newest available version.
+# MAGIC
+# MAGIC Run the following cell to print out a query with your database name. Save this as a DBSQL query.
+
+# COMMAND ----------
+
+DA.generate_daily_patient_avg()
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC ## Add a Line Plot Visualization
+# MAGIC
+# MAGIC To track trends in patient averages over time, create a line plot and add it to a new dashboard.
+# MAGIC
+# MAGIC Create a line plot with the following settings:
+# MAGIC * **X Column**: **`date`**
+# MAGIC * **Y Column**: **`avg_heartrate`**
+# MAGIC * **Group By**: **`name`**
+# MAGIC
+# MAGIC Add this visualization to a dashboard.
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC ## Track Data Processing Progress
+# MAGIC
+# MAGIC The code below extracts the **`flow_name`**, **`timestamp`**, and **`num_output_rows`** from the DLT event logs.
+# MAGIC
+# MAGIC Save this query in DBSQL, then define a bar plot visualization that shows:
+# MAGIC * **X Column**: **`timestamp`**
+# MAGIC * **Y Column**: **`num_output_rows`**
+# MAGIC * **Group By**: **`flow_name`**
+# MAGIC
+# MAGIC Add your visualization to your dashboard.
+
+# COMMAND ----------
+
+DA.generate_visualization_query()
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC ## Refresh your Dashboard and Track Results
+# MAGIC
+# MAGIC The **Land-Data** notebook scheduled with Jobs above has 12 batches of data, each representing a month of recordings for our small sampling of patients. As configured per our instructions, it should take just over 20 minutes for all of these batches of data to be triggered and processed (we scheduled the Databricks Job to run every 2 minutes, and batches of data will process through our pipeline very quickly after initial ingestion).
+# MAGIC
+# MAGIC Refresh your dashboard and review your visualizations to see how many batches of data have been processed. (If you followed the instructions as outlined here, there should be 12 distinct flow updates tracked by your DLT metrics.) If all source data has not yet been processed, you can go back to the Databricks Jobs UI and manually trigger additional batches.
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC
+# MAGIC With everything configured, you can now continue to the final part of your lab in the notebook [DE 12.2.4L - Final Steps]($./DE 12.2.4L - Final Steps)
+
+# COMMAND ----------
+
+# MAGIC %md-sandbox
+# MAGIC © 2022 Databricks, Inc. All rights reserved.
+# MAGIC Apache, Apache Spark, Spark and the Spark logo are trademarks of the Apache Software Foundation.
+# MAGIC
+# MAGIC Privacy Policy | Terms of Use | Support
diff --git a/Data-Engineering-With-Databricks/04 - Managing Data Access and Production Pipelines/4.4.2 - LAB - End-to-End ELT in the Lakehouse/1 - DLT Task.sql b/Data-Engineering-with-Databricks/12 - Productionalizing Dashboards and Queries in DBSQL/DE 12.2L - OPTIONAL Capstone/DE 12.2.2L - DLT Task.sql
similarity index 81%
rename from Data-Engineering-With-Databricks/04 - Managing Data Access and Production Pipelines/4.4.2 - LAB - End-to-End ELT in the Lakehouse/1 - DLT Task.sql
rename to Data-Engineering-with-Databricks/12 - Productionalizing Dashboards and Queries in DBSQL/DE 12.2L - OPTIONAL Capstone/DE 12.2.2L - DLT Task.sql
index 55e4d4e..a812762 100644
--- a/Data-Engineering-With-Databricks/04 - Managing Data Access and Production Pipelines/4.4.2 - LAB - End-to-End ELT in the Lakehouse/1 - DLT Task.sql
+++ b/Data-Engineering-with-Databricks/12 - Productionalizing Dashboards and Queries in DBSQL/DE 12.2L - OPTIONAL Capstone/DE 12.2.2L - DLT Task.sql
@@ -1,17 +1,17 @@
-- Databricks notebook source
-CREATE INCREMENTAL LIVE TABLE recordings_bronze
+CREATE OR REFRESH STREAMING LIVE TABLE recordings_bronze
AS SELECT current_timestamp() receipt_time, input_file_name() source_file, *
FROM cloud_files("${source}", "json", map("cloudFiles.schemaHints", "time DOUBLE"))
-- COMMAND ----------
-CREATE INCREMENTAL LIVE TABLE pii
+CREATE OR REFRESH STREAMING LIVE TABLE pii
AS SELECT *
FROM cloud_files("/mnt/training/healthcare/patient", "csv", map("header", "true", "cloudFiles.inferColumnTypes", "true"))
-- COMMAND ----------
-CREATE INCREMENTAL LIVE TABLE recordings_enriched
+CREATE OR REFRESH STREAMING LIVE TABLE recordings_enriched
(CONSTRAINT positive_heartrate EXPECT (heartrate > 0) ON VIOLATION DROP ROW)
AS SELECT
CAST(a.device_id AS INTEGER) device_id,
@@ -25,7 +25,7 @@ AS SELECT
-- COMMAND ----------
-CREATE INCREMENTAL LIVE TABLE daily_patient_avg
+CREATE OR REFRESH STREAMING LIVE TABLE daily_patient_avg
COMMENT "Daily mean heartrates by patient"
AS SELECT mrn, name, MEAN(heartrate) avg_heartrate, DATE(time) `date`
FROM STREAM(live.recordings_enriched)
diff --git a/Data-Engineering-with-Databricks/12 - Productionalizing Dashboards and Queries in DBSQL/DE 12.2L - OPTIONAL Capstone/DE 12.2.3L - Land New Data.py b/Data-Engineering-with-Databricks/12 - Productionalizing Dashboards and Queries in DBSQL/DE 12.2L - OPTIONAL Capstone/DE 12.2.3L - Land New Data.py
new file mode 100644
index 0000000..01adf27
--- /dev/null
+++ b/Data-Engineering-with-Databricks/12 - Productionalizing Dashboards and Queries in DBSQL/DE 12.2L - OPTIONAL Capstone/DE 12.2.3L - Land New Data.py
@@ -0,0 +1,7 @@
+# Databricks notebook source
+# MAGIC %run ../../Includes/Classroom-Setup-12.2.3L
+
+# COMMAND ----------
+
+DA.data_factory.load()
+
diff --git a/Data-Engineering-with-Databricks/12 - Productionalizing Dashboards and Queries in DBSQL/DE 12.2L - OPTIONAL Capstone/DE 12.2.4L - Final Steps.py b/Data-Engineering-with-Databricks/12 - Productionalizing Dashboards and Queries in DBSQL/DE 12.2L - OPTIONAL Capstone/DE 12.2.4L - Final Steps.py
new file mode 100644
index 0000000..b8dcfc2
--- /dev/null
+++ b/Data-Engineering-with-Databricks/12 - Productionalizing Dashboards and Queries in DBSQL/DE 12.2L - OPTIONAL Capstone/DE 12.2.4L - Final Steps.py
@@ -0,0 +1,133 @@
+# Databricks notebook source
+# MAGIC %md-sandbox
+# MAGIC
+# MAGIC
+# MAGIC

+# MAGIC
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC
+# MAGIC # End-to-End ETL in the Lakehouse
+# MAGIC ## Final Steps
+# MAGIC
+# MAGIC We are picking up from the first notebook in this lab, [DE 12.2.1L - Instructions and Configuration]($./DE 12.2.1L - Instructions and Configuration)
+# MAGIC
+# MAGIC If everything is setup correctly, you should have:
+# MAGIC * A DLT Pipeline running in **Continuous** mode
+# MAGIC * A job that is feeding that pipline new data every 2 minutes
+# MAGIC * A series of Databricks SQL Queries analysing the outputs of that pipeline
+
+# COMMAND ----------
+
+# MAGIC %run ../../Includes/Classroom-Setup-12.2.4L
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC ## Execute a Query to Repair Broken Data
+# MAGIC
+# MAGIC Review the code that defined the **`recordings_enriched`** table to identify the filter applied for the quality check.
+# MAGIC
+# MAGIC In the cell below, write a query that returns all the records from the **`recordings_bronze`** table that were refused by this quality check.
+
+# COMMAND ----------
+
+# MAGIC %sql
+# MAGIC -- TODO
+# MAGIC
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC For the purposes of our demo, let's assume that thorough manual review of our data and systems has demonstrated that occasionally otherwise valid heartrate recordings are returned as negative values.
+# MAGIC
+# MAGIC Run the following query to examine these same rows with the negative sign removed.
+
+# COMMAND ----------
+
+# MAGIC %sql
+# MAGIC SELECT abs(heartrate), * FROM ${da.db_name}.recordings_bronze WHERE heartrate <= 0
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC To complete our dataset, we wish to insert these fixed records into the silver **`recordings_enriched`** table.
+# MAGIC
+# MAGIC Use the cell below to update the query used in the DLT pipeline to execute this repair.
+# MAGIC
+# MAGIC **NOTE**: Make sure you update the code to only process those records that were previously rejected due to the quality check.
+
+# COMMAND ----------
+
+# TODO
+# CREATE OR REFRESH STREAMING LIVE TABLE recordings_enriched
+# (CONSTRAINT positive_heartrate EXPECT (heartrate > 0) ON VIOLATION DROP ROW)
+# AS SELECT
+# CAST(a.device_id AS INTEGER) device_id,
+# CAST(a.mrn AS LONG) mrn,
+# CAST(a.heartrate AS DOUBLE) heartrate,
+# CAST(from_unixtime(a.time, 'yyyy-MM-dd HH:mm:ss') AS TIMESTAMP) time,
+# b.name
+# FROM STREAM(live.recordings_bronze) a
+# INNER JOIN STREAM(live.pii) b
+# ON a.mrn = b.mrn
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC Use the cell below to manually or programmatically confirm that this update has been successful.
+# MAGIC
+# MAGIC (The total number of records in the **`recordings_bronze`** should now be equal to the total records in **`recordings_enriched`**).
+
+# COMMAND ----------
+
+# TODO
+
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC ## Consider Production Data Permissions
+# MAGIC
+# MAGIC Note that while our manual repair of the data was successful, as the owner of these datasets, by default we have permissions to modify or delete these data from any location we're executing code.
+# MAGIC
+# MAGIC To put this another way: our current permissions would allow us to change or drop our production tables permanently if an errant SQL query is accidentally executed with the current user's permissions (or if other users are granted similar permissions).
+# MAGIC
+# MAGIC While for the purposes of this lab, we desired to have full permissions on our data, as we move code from development to production, it is safer to leverage service principals when scheduling Jobs and DLT Pipelines to avoid accidental data modifications.
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC ## Shut Down Production Infrastructure
+# MAGIC
+# MAGIC Note that Databricks Jobs, DLT Pipelines, and scheduled DBSQL queries and dashboards are all designed to provide sustained execution of production code. In this end-to-end demo, you were instructed to configure a Job and Pipeline for continuous data processing. To prevent these workloads from continuing to execute, you should **Pause** your Databricks Job and **Stop** your DLT pipeline. Deleting these assets will also ensure that production infrastructure is terminated.
+# MAGIC
+# MAGIC **NOTE**: All instructions for DBSQL asset scheduling in previous lessons instructed users to set the update schedule to end tomorrow. You may choose to go back and also cancel these updates to prevent DBSQL endpoints from staying on until that time.
+
+# COMMAND ----------
+
+DA.cleanup()
+
+# COMMAND ----------
+
+# MAGIC %md-sandbox
+# MAGIC © 2022 Databricks, Inc. All rights reserved.
+# MAGIC Apache, Apache Spark, Spark and the Spark logo are trademarks of the Apache Software Foundation.
+# MAGIC
+# MAGIC Privacy Policy | Terms of Use | Support
diff --git a/Data-Engineering-with-Databricks/Includes/Classroom-Setup-1.2.py b/Data-Engineering-with-Databricks/Includes/Classroom-Setup-1.2.py
new file mode 100644
index 0000000..d0762d6
--- /dev/null
+++ b/Data-Engineering-with-Databricks/Includes/Classroom-Setup-1.2.py
@@ -0,0 +1,21 @@
+# Databricks notebook source
+# MAGIC %run ./_utility-methods $lesson="1.2"
+
+# COMMAND ----------
+
+def create_demo_tmp_vw():
+ print("Creating the temp view demo_tmp_vw")
+
+ spark.sql("""
+ CREATE OR REPLACE TEMP VIEW demo_tmp_vw(name, value) AS VALUES
+ ("Yi", 1),
+ ("Ali", 2),
+ ("Selina", 3)
+ """)
+
+# COMMAND ----------
+
+DA.init(create_db=False)
+create_demo_tmp_vw()
+DA.conclude_setup()
+
diff --git a/Data-Engineering-with-Databricks/Includes/Classroom-Setup-11.1.py b/Data-Engineering-with-Databricks/Includes/Classroom-Setup-11.1.py
new file mode 100644
index 0000000..43c5046
--- /dev/null
+++ b/Data-Engineering-with-Databricks/Includes/Classroom-Setup-11.1.py
@@ -0,0 +1,53 @@
+# Databricks notebook source
+# MAGIC %run ./_utility-methods $lesson="11.1"
+
+# COMMAND ----------
+
+def print_sql(rows, sql):
+ html = f""""""
+ displayHTML(html)
+
+# COMMAND ----------
+
+def _generate_users_table():
+ print_sql(20, f"""
+CREATE DATABASE IF NOT EXISTS {DA.db_name}
+LOCATION '{DA.paths.user_db}';
+
+USE {DA.db_name};
+
+CREATE TABLE users (id INT, name STRING, value DOUBLE, state STRING);
+
+INSERT INTO users
+VALUES (1, "Yve", 1.0, "CA"),
+ (2, "Omar", 2.5, "NY"),
+ (3, "Elia", 3.3, "OH"),
+ (4, "Rebecca", 4.7, "TX"),
+ (5, "Ameena", 5.3, "CA"),
+ (6, "Ling", 6.6, "NY"),
+ (7, "Pedro", 7.1, "KY");
+
+CREATE VIEW ny_users_vw
+AS SELECT * FROM users WHERE state = 'NY';
+""")
+
+DA.generate_users_table = _generate_users_table
+
+# COMMAND ----------
+
+def _generate_create_database_with_grants():
+ print_sql(7, f"""
+CREATE DATABASE {DA.db_name}_derivative;
+
+GRANT USAGE, READ_METADATA, CREATE, MODIFY, SELECT ON DATABASE `{DA.db_name}_derivative` TO `users`;
+
+SHOW GRANT ON DATABASE `{DA.db_name}_derivative`;""")
+
+DA.generate_create_database_with_grants = _generate_create_database_with_grants
+
+# COMMAND ----------
+
+DA.cleanup()
+DA.init(create_db=False)
+DA.conclude_setup()
+
diff --git a/Data-Engineering-with-Databricks/Includes/Classroom-Setup-11.2L.py b/Data-Engineering-with-Databricks/Includes/Classroom-Setup-11.2L.py
new file mode 100644
index 0000000..af1f1d3
--- /dev/null
+++ b/Data-Engineering-with-Databricks/Includes/Classroom-Setup-11.2L.py
@@ -0,0 +1,122 @@
+# Databricks notebook source
+# MAGIC %run ./_utility-methods $lesson="acls_lab"
+
+# COMMAND ----------
+
+def print_sql(rows, sql):
+ displayHTML(f"""""")
+
+# COMMAND ----------
+
+def _generate_query():
+ import re
+ import random
+
+ print_sql(23, f"""
+CREATE DATABASE IF NOT EXISTS {DA.db_name}
+LOCATION '{DA.paths.user_db}';
+
+USE {DA.db_name};
+
+CREATE TABLE beans
+(name STRING, color STRING, grams FLOAT, delicious BOOLEAN);
+
+INSERT INTO beans
+VALUES ('black', 'black', {random.uniform(0, 5000):.2f}, {random.choice(["true", "false"])}),
+ ('lentils', 'brown', {random.uniform(0, 5000):.2f}, {random.choice(["true", "false"])}),
+ ('jelly', 'rainbow', {random.uniform(0, 5000):.2f}, {random.choice(["true", "false"])}),
+ ('pinto', 'brown', {random.uniform(0, 5000):.2f}, {random.choice(["true", "false"])}),
+ ('green', 'green', {random.uniform(0, 5000):.2f}, {random.choice(["true", "false"])}),
+ ('beanbag chair', 'white', {random.uniform(0, 5000):.2f}, {random.choice(["true", "false"])}),
+ ('lentils', 'green', {random.uniform(0, 5000):.2f}, {random.choice(["true", "false"])}),
+ ('kidney', 'red', {random.uniform(0, 5000):.2f}, {random.choice(["true", "false"])}),
+ ('castor', 'brown', {random.uniform(0, 5000):.2f}, {random.choice(["true", "false"])});
+
+CREATE VIEW tasty_beans
+AS SELECT * FROM beans WHERE delicious = true;
+ """)
+
+DA.generate_query = _generate_query
+
+# COMMAND ----------
+
+def _generate_confirmation_query(username):
+ import re
+ clean_username = re.sub("[^a-zA-Z0-9]", "_", username)
+ database = DA.db_name.replace(DA.clean_username, clean_username)
+
+ print_sql(11, f"""
+USE {database};
+
+SELECT * FROM beans;
+SELECT * FROM tasty_beans;
+SELECT * FROM beans MINUS SELECT * FROM tasty_beans;
+
+UPDATE beans
+SET color = 'pink'
+WHERE name = 'black'
+""")
+
+DA.generate_confirmation_query = _generate_confirmation_query
+
+# COMMAND ----------
+
+def _generate_union_query():
+ print_sql(6, f"""
+USE {DA.db_name};
+
+SELECT * FROM beans
+UNION ALL TABLE beans;""")
+
+DA.generate_union_query = _generate_union_query
+
+# COMMAND ----------
+
+def _generate_derivative_view():
+ print_sql(7, f"""
+USE {DA.db_name};
+
+CREATE VIEW our_beans
+AS SELECT * FROM beans
+UNION ALL TABLE beans;
+""")
+
+DA.generate_derivative_view = _generate_derivative_view
+
+# COMMAND ----------
+
+def _generate_partner_view(username):
+ import re
+ clean_username = re.sub("[^a-zA-Z0-9]", "_", username)
+ database = DA.db_name.replace(DA.clean_username, clean_username)
+
+ print_sql(7, f"""
+USE {database};
+
+SELECT name, color, delicious, sum(grams)
+FROM our_beans
+GROUP BY name, color, delicious;""")
+
+DA.generate_partner_view = _generate_partner_view
+
+# COMMAND ----------
+
+def _generate_delete_query(username):
+ import re
+ clean_username = re.sub("[^a-zA-Z0-9]", "_", username)
+ database = DA.db_name.replace(DA.clean_username, clean_username)
+
+ print_sql(5, f"""
+USE {database};
+
+DELETE FROM beans
+ """)
+
+DA.generate_delete_query = _generate_delete_query
+
+# COMMAND ----------
+
+DA.cleanup()
+DA.init(create_db=False)
+DA.conclude_setup()
+
diff --git a/Data-Engineering-with-Databricks/Includes/Classroom-Setup-12.1.py b/Data-Engineering-with-Databricks/Includes/Classroom-Setup-12.1.py
new file mode 100644
index 0000000..d2f0100
--- /dev/null
+++ b/Data-Engineering-with-Databricks/Includes/Classroom-Setup-12.1.py
@@ -0,0 +1,118 @@
+# Databricks notebook source
+# MAGIC %run ./_utility-methods $lesson="12.1"
+
+# COMMAND ----------
+
+DA.cleanup()
+DA.init(create_db=False)
+DA.conclude_setup()
+
+# COMMAND ----------
+
+def print_sql(rows, sql):
+ html = f""
+ displayHTML(html)
+
+# COMMAND ----------
+
+def _generate_config():
+ print_sql(33, f"""
+CREATE DATABASE IF NOT EXISTS {DA.db_name}
+LOCATION '{DA.paths.working_dir}';
+
+USE {DA.db_name};
+
+CREATE TABLE user_ping
+(user_id STRING, ping INTEGER, time TIMESTAMP);
+
+CREATE TABLE user_ids (user_id STRING);
+
+INSERT INTO user_ids VALUES
+("potato_luver"),
+("beanbag_lyfe"),
+("default_username"),
+("the_king"),
+("n00b"),
+("frodo"),
+("data_the_kid"),
+("el_matador"),
+("the_wiz");
+
+CREATE FUNCTION get_ping()
+ RETURNS INT
+ RETURN int(rand() * 250);
+
+CREATE FUNCTION is_active()
+ RETURNS BOOLEAN
+ RETURN CASE
+ WHEN rand() > .25 THEN true
+ ELSE false
+ END;
+""")
+
+DA.generate_config = _generate_config
+
+# COMMAND ----------
+
+def _generate_load():
+ print_sql(12, f"""
+USE {DA.db_name};
+
+INSERT INTO user_ping
+SELECT *,
+ get_ping() ping,
+ current_timestamp() time
+FROM user_ids
+WHERE is_active()=true;
+
+SELECT * FROM user_ping;
+""")
+
+DA.generate_load = _generate_load
+
+# COMMAND ----------
+
+def _generate_user_counts():
+ print_sql(10, f"""
+USE {DA.db_name};
+
+SELECT user_id, count(*) total_records
+FROM user_ping
+GROUP BY user_id
+ORDER BY
+ total_records DESC,
+ user_id ASC;
+""")
+
+DA.generate_user_counts = _generate_user_counts
+
+# COMMAND ----------
+
+def _generate_avg_ping():
+ print_sql(10, f"""
+USE {DA.db_name};
+
+SELECT user_id, window.end end_time, mean(ping) avg_ping
+FROM user_ping
+GROUP BY user_id, window(time, '3 minutes')
+ORDER BY
+ end_time DESC,
+ user_id ASC;
+""")
+
+DA.generate_avg_ping = _generate_avg_ping
+
+# COMMAND ----------
+
+def _generate_summary():
+ print_sql(8, f"""
+USE {DA.db_name};
+
+SELECT user_id, min(time) first_seen, max(time) last_seen, count(*) total_records, avg(ping) total_avg_ping
+FROM user_ping
+GROUP BY user_id
+ORDER BY user_id ASC;
+""")
+
+DA.generate_summary = _generate_summary
+
diff --git a/Data-Engineering-with-Databricks/Includes/Classroom-Setup-12.2.1L.py b/Data-Engineering-with-Databricks/Includes/Classroom-Setup-12.2.1L.py
new file mode 100644
index 0000000..4b906bf
--- /dev/null
+++ b/Data-Engineering-with-Databricks/Includes/Classroom-Setup-12.2.1L.py
@@ -0,0 +1,83 @@
+# Databricks notebook source
+# MAGIC %run ./_utility-methods $lesson="cap_12"
+
+# COMMAND ----------
+
+# MAGIC %run ./mount-datasets
+
+# COMMAND ----------
+
+def print_sql(rows, sql):
+ displayHTML(f"""""")
+
+
+# COMMAND ----------
+
+def _generate_daily_patient_avg():
+ sql = f"SELECT * FROM {DA.db_name}.daily_patient_avg"
+ print_sql(3, sql)
+
+DA.generate_daily_patient_avg = _generate_daily_patient_avg
+
+# COMMAND ----------
+
+def _generate_visualization_query():
+ sql = f"""
+SELECT flow_name, timestamp, int(details:flow_progress:metrics:num_output_rows) num_output_rows
+FROM {DA.db_name}.dlt_metrics
+ORDER BY timestamp DESC;"""
+
+ print_sql(5, sql)
+
+DA.generate_visualization_query = _generate_visualization_query
+
+# COMMAND ----------
+
+generate_register_dlt_event_metrics_sql_string = ""
+
+def _generate_register_dlt_event_metrics_sql():
+ global generate_register_dlt_event_metrics_sql_string
+
+ generate_register_dlt_event_metrics_sql_string = f"""
+CREATE TABLE IF NOT EXISTS {DA.db_name}.dlt_events
+LOCATION '{DA.paths.working_dir}/storage/system/events';
+
+CREATE VIEW IF NOT EXISTS {DA.db_name}.dlt_success AS
+SELECT * FROM {DA.db_name}.dlt_events
+WHERE details:flow_progress:metrics IS NOT NULL;
+
+CREATE VIEW IF NOT EXISTS {DA.db_name}.dlt_metrics AS
+SELECT timestamp, origin.flow_name, details
+FROM {DA.db_name}.dlt_success
+ORDER BY timestamp DESC;""".strip()
+
+ print_sql(13, generate_register_dlt_event_metrics_sql_string)
+
+DA.generate_register_dlt_event_metrics_sql = _generate_register_dlt_event_metrics_sql
+
+# COMMAND ----------
+
+def print_pipeline_config():
+ path = dbutils.entry_point.getDbutils().notebook().getContext().notebookPath().getOrElse(None)
+ path = "/".join(path.split("/")[:-1]) + "/DE 12.2.2L - DLT Task"
+
+ displayHTML(f"""
+ Pipeline Name: | Cap-12-{DA.username} |
+ Source: | {DA.paths.working_dir}/source/tracker |
+ Target: | {DA.db_name} |
+ Storage Location: | {DA.paths.working_dir}/storage |
+ Notebook Path: | {path} |
+
""")
+
+def print_job_config():
+ displayHTML(f"""
+ Job Name: | Cap-12-{DA.username} |
+
""")
+
+# COMMAND ----------
+
+DA.cleanup()
+DA.init()
+DA.data_factory = DltDataFactory()
+DA.conclude_setup()
+
diff --git a/Data-Engineering-with-Databricks/Includes/Classroom-Setup-12.2.3L.py b/Data-Engineering-with-Databricks/Includes/Classroom-Setup-12.2.3L.py
new file mode 100644
index 0000000..9777fb2
--- /dev/null
+++ b/Data-Engineering-with-Databricks/Includes/Classroom-Setup-12.2.3L.py
@@ -0,0 +1,15 @@
+# Databricks notebook source
+# MAGIC %run ./_utility-methods $lesson="cap_12"
+
+# COMMAND ----------
+
+# MAGIC %run ./mount-datasets
+
+# COMMAND ----------
+
+# Don't clean up, continue where we left off.
+# DA.cleanup()
+DA.init(create_db=False)
+DA.data_factory = DltDataFactory()
+DA.conclude_setup()
+
diff --git a/Data-Engineering-with-Databricks/Includes/Classroom-Setup-12.2.4L.py b/Data-Engineering-with-Databricks/Includes/Classroom-Setup-12.2.4L.py
new file mode 100644
index 0000000..d9f6771
--- /dev/null
+++ b/Data-Engineering-with-Databricks/Includes/Classroom-Setup-12.2.4L.py
@@ -0,0 +1,14 @@
+# Databricks notebook source
+# MAGIC %run ./_utility-methods $lesson="cap_12"
+
+# COMMAND ----------
+
+# MAGIC %run ./mount-datasets
+
+# COMMAND ----------
+
+# Don't clean up, continue where we left off.
+# DA.cleanup()
+DA.init(create_db=False)
+DA.conclude_setup()
+
diff --git a/Data-Engineering-with-Databricks/Includes/Classroom-Setup-2.1.py b/Data-Engineering-with-Databricks/Includes/Classroom-Setup-2.1.py
new file mode 100644
index 0000000..a4038dd
--- /dev/null
+++ b/Data-Engineering-with-Databricks/Includes/Classroom-Setup-2.1.py
@@ -0,0 +1,9 @@
+# Databricks notebook source
+# MAGIC %run ./_utility-methods $lesson="2.1"
+
+# COMMAND ----------
+
+DA.cleanup()
+DA.init()
+DA.conclude_setup()
+
diff --git a/Data-Engineering-with-Databricks/Includes/Classroom-Setup-2.2L.py b/Data-Engineering-with-Databricks/Includes/Classroom-Setup-2.2L.py
new file mode 100644
index 0000000..16ed498
--- /dev/null
+++ b/Data-Engineering-with-Databricks/Includes/Classroom-Setup-2.2L.py
@@ -0,0 +1,9 @@
+# Databricks notebook source
+# MAGIC %run ./_utility-methods $lesson="2.2L"
+
+# COMMAND ----------
+
+DA.cleanup()
+DA.init()
+DA.conclude_setup()
+
diff --git a/Data-Engineering-with-Databricks/Includes/Classroom-Setup-2.3.py b/Data-Engineering-with-Databricks/Includes/Classroom-Setup-2.3.py
new file mode 100644
index 0000000..60734f0
--- /dev/null
+++ b/Data-Engineering-with-Databricks/Includes/Classroom-Setup-2.3.py
@@ -0,0 +1,9 @@
+# Databricks notebook source
+# MAGIC %run ./_utility-methods $lesson="2.3"
+
+# COMMAND ----------
+
+DA.cleanup()
+DA.init()
+DA.conclude_setup()
+
diff --git a/Data-Engineering-with-Databricks/Includes/Classroom-Setup-2.4L.py b/Data-Engineering-with-Databricks/Includes/Classroom-Setup-2.4L.py
new file mode 100644
index 0000000..b59dd06
--- /dev/null
+++ b/Data-Engineering-with-Databricks/Includes/Classroom-Setup-2.4L.py
@@ -0,0 +1,9 @@
+# Databricks notebook source
+# MAGIC %run ./_utility-methods $lesson="2.4L"
+
+# COMMAND ----------
+
+DA.cleanup()
+DA.init()
+DA.conclude_setup()
+
diff --git a/Data-Engineering-with-Databricks/Includes/Classroom-Setup-3.1.py b/Data-Engineering-with-Databricks/Includes/Classroom-Setup-3.1.py
new file mode 100644
index 0000000..4562868
--- /dev/null
+++ b/Data-Engineering-with-Databricks/Includes/Classroom-Setup-3.1.py
@@ -0,0 +1,12 @@
+# Databricks notebook source
+# MAGIC %run ./_utility-methods $lesson="3.1"
+
+# COMMAND ----------
+
+DA.cleanup()
+DA.init(create_db=False)
+install_dtavod_datasets(reinstall=False)
+print()
+copy_source_dataset(f"{DA.working_dir_prefix}/source/dtavod/flights/departuredelays.csv", f"{DA.paths.working_dir}/flights/departuredelays.csv", "csv", "flights")
+DA.conclude_setup()
+
diff --git a/Data-Engineering-with-Databricks/Includes/Classroom-Setup-3.2A.py b/Data-Engineering-with-Databricks/Includes/Classroom-Setup-3.2A.py
new file mode 100644
index 0000000..0d2d298
--- /dev/null
+++ b/Data-Engineering-with-Databricks/Includes/Classroom-Setup-3.2A.py
@@ -0,0 +1,17 @@
+# Databricks notebook source
+# MAGIC %run ./_utility-methods $lesson="3.2"
+
+# COMMAND ----------
+
+DA.cleanup()
+DA.init()
+
+# Clean out the global_temp database.
+for row in spark.sql("SHOW TABLES IN global_temp").select("tableName").collect():
+ table_name = row[0]
+ spark.sql(f"DROP TABLE global_temp.{table_name}")
+
+print()
+install_dtavod_datasets(reinstall=False)
+DA.conclude_setup()
+
diff --git a/Data-Engineering-with-Databricks/Includes/Classroom-Setup-3.2B.py b/Data-Engineering-with-Databricks/Includes/Classroom-Setup-3.2B.py
new file mode 100644
index 0000000..397a759
--- /dev/null
+++ b/Data-Engineering-with-Databricks/Includes/Classroom-Setup-3.2B.py
@@ -0,0 +1,22 @@
+# Databricks notebook source
+# MAGIC %run ./_utility-methods $lesson="3.2"
+
+# COMMAND ----------
+
+# We want the state from the previous lesson
+# DA.cleanup() # DO NOT EXECUTE
+
+tags = sc._jvm.scala.collection.JavaConversions.mapAsJavaMap(dbutils.entry_point.getDbutils().notebook().getContext().tags())
+is_job = "jobId" in tags
+if is_job: print("Mocking global temp view")
+
+DA.init(create_db=is_job)
+
+if is_job:
+ spark.sql(f"""USE {DA.db_name}""")
+ spark.sql("""CREATE TABLE IF NOT EXISTS external_table USING CSV OPTIONS (path '${da.paths.working_dir}/flight_delays', header "true", mode "FAILFAST");""")
+ spark.sql("""CREATE OR REPLACE GLOBAL TEMPORARY VIEW global_temp_view_dist_gt_1000 AS SELECT * FROM external_table WHERE distance > 1000;""")
+
+print()
+DA.conclude_setup()
+
diff --git a/Data-Engineering-with-Databricks/Includes/Classroom-Setup-3.3L.py b/Data-Engineering-with-Databricks/Includes/Classroom-Setup-3.3L.py
new file mode 100644
index 0000000..7f5c2c6
--- /dev/null
+++ b/Data-Engineering-with-Databricks/Includes/Classroom-Setup-3.3L.py
@@ -0,0 +1,12 @@
+# Databricks notebook source
+# MAGIC %run ./_utility-methods $lesson="3.3L"
+
+# COMMAND ----------
+
+DA.cleanup()
+DA.init(create_db=False)
+install_dtavod_datasets(reinstall=False)
+print()
+copy_source_dataset(f"{DA.working_dir_prefix}/source/dtavod/weather", f"{DA.paths.working_dir}/weather", "parquet", "weather")
+DA.conclude_setup()
+
diff --git a/Data-Engineering-with-Databricks/Includes/Classroom-Setup-4.1.py b/Data-Engineering-with-Databricks/Includes/Classroom-Setup-4.1.py
new file mode 100644
index 0000000..63ef9c5
--- /dev/null
+++ b/Data-Engineering-with-Databricks/Includes/Classroom-Setup-4.1.py
@@ -0,0 +1,10 @@
+# Databricks notebook source
+# MAGIC %run ./_utility-methods $lesson="4.1"
+
+# COMMAND ----------
+
+DA.cleanup()
+DA.init()
+install_eltwss_datasets(reinstall=False)
+DA.conclude_setup()
+
diff --git a/Data-Engineering-with-Databricks/Includes/Classroom-Setup-4.2.py b/Data-Engineering-with-Databricks/Includes/Classroom-Setup-4.2.py
new file mode 100644
index 0000000..7d52166
--- /dev/null
+++ b/Data-Engineering-with-Databricks/Includes/Classroom-Setup-4.2.py
@@ -0,0 +1,11 @@
+# Databricks notebook source
+# MAGIC %run ./_utility-methods $lesson="4.2"
+
+# COMMAND ----------
+
+DA.cleanup()
+DA.init()
+install_eltwss_datasets(reinstall=False)
+load_eltwss_external_tables()
+DA.conclude_setup()
+
diff --git a/Data-Engineering-with-Databricks/Includes/Classroom-Setup-4.3.py b/Data-Engineering-with-Databricks/Includes/Classroom-Setup-4.3.py
new file mode 100644
index 0000000..a03307e
--- /dev/null
+++ b/Data-Engineering-with-Databricks/Includes/Classroom-Setup-4.3.py
@@ -0,0 +1,11 @@
+# Databricks notebook source
+# MAGIC %run ./_utility-methods $lesson="4.3"
+
+# COMMAND ----------
+
+DA.cleanup()
+DA.init()
+install_eltwss_datasets(reinstall=False)
+load_eltwss_external_tables()
+DA.conclude_setup()
+
diff --git a/Data-Engineering-with-Databricks/Includes/Classroom-Setup-4.4.py b/Data-Engineering-with-Databricks/Includes/Classroom-Setup-4.4.py
new file mode 100644
index 0000000..d5c8a52
--- /dev/null
+++ b/Data-Engineering-with-Databricks/Includes/Classroom-Setup-4.4.py
@@ -0,0 +1,23 @@
+# Databricks notebook source
+# MAGIC %run ./_utility-methods $lesson="4.4"
+
+# COMMAND ----------
+
+DA.cleanup()
+DA.init()
+install_eltwss_datasets(reinstall=False)
+
+print()
+
+clone_source_table("sales", f"{DA.paths.datasets}/delta", "sales_hist")
+clone_source_table("users", f"{DA.paths.datasets}/delta", "users_hist")
+clone_source_table("events", f"{DA.paths.datasets}/delta", "events_hist")
+
+clone_source_table("users_update", f"{DA.paths.datasets}/delta")
+clone_source_table("events_update", f"{DA.paths.datasets}/delta")
+
+# clone_source_table("events_raw", f"{DA.paths.datasets}/delta")
+# clone_source_table("item_lookup", f"{DA.paths.datasets}/delta")
+
+DA.conclude_setup()
+
diff --git a/Data-Engineering-with-Databricks/Includes/Classroom-Setup-4.5L.py b/Data-Engineering-with-Databricks/Includes/Classroom-Setup-4.5L.py
new file mode 100644
index 0000000..19f59c7
--- /dev/null
+++ b/Data-Engineering-with-Databricks/Includes/Classroom-Setup-4.5L.py
@@ -0,0 +1,10 @@
+# Databricks notebook source
+# MAGIC %run ./_utility-methods $lesson="4.5L"
+
+# COMMAND ----------
+
+DA.cleanup()
+DA.init()
+install_eltwss_datasets(reinstall=False)
+DA.conclude_setup()
+
diff --git a/Data-Engineering-with-Databricks/Includes/Classroom-Setup-4.6.py b/Data-Engineering-with-Databricks/Includes/Classroom-Setup-4.6.py
new file mode 100644
index 0000000..86ba4b9
--- /dev/null
+++ b/Data-Engineering-with-Databricks/Includes/Classroom-Setup-4.6.py
@@ -0,0 +1,14 @@
+# Databricks notebook source
+# MAGIC %run ./_utility-methods $lesson="4.6"
+
+# COMMAND ----------
+
+DA.cleanup()
+DA.init()
+install_eltwss_datasets(reinstall=False)
+
+print()
+create_eltwss_users_update()
+
+DA.conclude_setup()
+
diff --git a/Data-Engineering-with-Databricks/Includes/Classroom-Setup-4.7.py b/Data-Engineering-with-Databricks/Includes/Classroom-Setup-4.7.py
new file mode 100644
index 0000000..c4b714f
--- /dev/null
+++ b/Data-Engineering-with-Databricks/Includes/Classroom-Setup-4.7.py
@@ -0,0 +1,23 @@
+# Databricks notebook source
+# MAGIC %run ./_utility-methods $lesson="4.7"
+
+# COMMAND ----------
+
+DA.cleanup()
+DA.init()
+install_eltwss_datasets(reinstall=False)
+
+print()
+
+clone_source_table("sales", f"{DA.paths.datasets}/delta", "sales_hist")
+# clone_source_table("users", f"{DA.paths.datasets}/delta", "users_hist")
+clone_source_table("events", f"{DA.paths.datasets}/delta", "events_hist")
+
+# clone_source_table("users_update", f"{DA.paths.datasets}/delta")
+clone_source_table("events_update", f"{DA.paths.datasets}/delta")
+
+clone_source_table("events_raw", f"{DA.paths.datasets}/delta")
+clone_source_table("item_lookup", f"{DA.paths.datasets}/delta")
+
+DA.conclude_setup()
+
diff --git a/Data-Engineering-with-Databricks/Includes/Classroom-Setup-4.8.py b/Data-Engineering-with-Databricks/Includes/Classroom-Setup-4.8.py
new file mode 100644
index 0000000..1cdde71
--- /dev/null
+++ b/Data-Engineering-with-Databricks/Includes/Classroom-Setup-4.8.py
@@ -0,0 +1,9 @@
+# Databricks notebook source
+# MAGIC %run ./_utility-methods $lesson="4.8"
+
+# COMMAND ----------
+
+DA.cleanup()
+DA.init()
+DA.conclude_setup()
+
diff --git a/Data-Engineering-with-Databricks/Includes/Classroom-Setup-4.9L.py b/Data-Engineering-with-Databricks/Includes/Classroom-Setup-4.9L.py
new file mode 100644
index 0000000..a938f41
--- /dev/null
+++ b/Data-Engineering-with-Databricks/Includes/Classroom-Setup-4.9L.py
@@ -0,0 +1,12 @@
+# Databricks notebook source
+# MAGIC %run ./_utility-methods $lesson="4.9L"
+
+# COMMAND ----------
+
+DA.cleanup()
+DA.init()
+install_eltwss_datasets(reinstall=False)
+print()
+load_eltwss_tables()
+DA.conclude_setup()
+
diff --git a/Data-Engineering-with-Databricks/Includes/Classroom-Setup-5.3L.py b/Data-Engineering-with-Databricks/Includes/Classroom-Setup-5.3L.py
new file mode 100644
index 0000000..399dba2
--- /dev/null
+++ b/Data-Engineering-with-Databricks/Includes/Classroom-Setup-5.3L.py
@@ -0,0 +1,9 @@
+# Databricks notebook source
+# MAGIC %run ./_utility-methods $lesson="5.3L"
+
+# COMMAND ----------
+
+DA.cleanup()
+DA.init(create_db=False)
+DA.conclude_setup()
+
diff --git a/Data-Engineering-with-Databricks/Includes/Classroom-Setup-6.1.py b/Data-Engineering-with-Databricks/Includes/Classroom-Setup-6.1.py
new file mode 100644
index 0000000..bc915b1
--- /dev/null
+++ b/Data-Engineering-with-Databricks/Includes/Classroom-Setup-6.1.py
@@ -0,0 +1,43 @@
+# Databricks notebook source
+# MAGIC %run ./_utility-methods $lesson="6.1"
+
+# COMMAND ----------
+
+# MAGIC %run ./mount-datasets
+
+# COMMAND ----------
+
+class DataFactory:
+ def __init__(self, ):
+ self.source = "/mnt/training/healthcare/tracker/streaming/"
+ self.userdir = f"{DA.paths.working_dir}/tracker"
+ self.curr_mo = 1
+
+ def load(self, continuous=False):
+ if self.curr_mo > 12:
+ print("Data source exhausted\n")
+
+ elif continuous == True:
+ while self.curr_mo <= 12:
+ curr_file = f"{self.curr_mo:02}.json"
+ dbutils.fs.cp(self.source + curr_file, self.userdir + curr_file)
+ self.curr_mo += 1
+ else:
+ curr_file = f"{str(self.curr_mo).zfill(2)}.json"
+ target_dir = f"{self.userdir}/{curr_file}"
+ print(f"Loading the file {curr_file} to the tracker dataset")
+ dbutils.fs.cp(f"{self.source}/{curr_file}", target_dir)
+ self.curr_mo += 1
+
+# COMMAND ----------
+
+DA.init()
+DA.paths.checkpoints = f"{DA.paths.working_dir}/checkpoints"
+DA.data_factory = DataFactory()
+
+print()
+DA.data_factory.load()
+DA.conclude_setup()
+
+sqlContext.setConf("spark.sql.shuffle.partitions", spark.sparkContext.defaultParallelism)
+
diff --git a/Data-Engineering-with-Databricks/Includes/Classroom-Setup-6.2.py b/Data-Engineering-with-Databricks/Includes/Classroom-Setup-6.2.py
new file mode 100644
index 0000000..20eed0d
--- /dev/null
+++ b/Data-Engineering-with-Databricks/Includes/Classroom-Setup-6.2.py
@@ -0,0 +1,63 @@
+# Databricks notebook source
+# MAGIC %run ./_utility-methods $lesson="6.2"
+
+# COMMAND ----------
+
+# MAGIC %run ./mount-datasets
+
+# COMMAND ----------
+
+def autoload_to_table(data_source, source_format, table_name, checkpoint_directory):
+ (spark.readStream
+ .format("cloudFiles")
+ .option("cloudFiles.format", source_format)
+ .option("cloudFiles.schemaLocation", checkpoint_directory)
+ .load(data_source)
+ .writeStream
+ .option("checkpointLocation", checkpoint_directory)
+ .option("mergeSchema", "true")
+ .trigger(availableNow=True)
+ .table(table_name)
+ .awaitTermination()
+ )
+
+# COMMAND ----------
+
+class DataFactory:
+ def __init__(self):
+ self.source = "/mnt/training/healthcare/tracker/streaming/"
+ self.userdir = f"{DA.paths.working_dir}/tracker"
+ self.curr_mo = 1
+
+ def load(self, continuous=False):
+ if self.curr_mo > 12:
+ print("Data source exhausted\n")
+
+ elif continuous == True:
+ while self.curr_mo <= 12:
+ curr_file = f"{self.curr_mo:02}.json"
+ dbutils.fs.cp(f"{self.source}/{curr_file}", f"{self.userdir}/{curr_file}")
+ self.curr_mo += 1
+ autoload_to_table(self.userdir, "json", "bronze", f"{DA.paths.checkpoints}/bronze")
+ else:
+ curr_file = f"{str(self.curr_mo).zfill(2)}.json"
+ target_dir = f"{self.userdir}/{curr_file}"
+ print(f"Loading the file {curr_file} to the {target_dir}")
+
+ dbutils.fs.cp(f"{self.source}/{curr_file}", f"{self.userdir}/{curr_file}")
+ self.curr_mo += 1
+ autoload_to_table(self.userdir, "json", "bronze", f"{DA.paths.checkpoints}/bronze")
+
+
+# COMMAND ----------
+
+DA.init()
+DA.paths.checkpoints = f"{DA.paths.working_dir}/_checkpoints"
+DA.data_factory = DataFactory()
+
+print()
+DA.data_factory.load()
+DA.conclude_setup()
+
+sqlContext.setConf("spark.sql.shuffle.partitions", spark.sparkContext.defaultParallelism)
+
diff --git a/Data-Engineering-with-Databricks/Includes/Classroom-Setup-6.3L.py b/Data-Engineering-with-Databricks/Includes/Classroom-Setup-6.3L.py
new file mode 100644
index 0000000..c35fd86
--- /dev/null
+++ b/Data-Engineering-with-Databricks/Includes/Classroom-Setup-6.3L.py
@@ -0,0 +1,12 @@
+# Databricks notebook source
+# MAGIC %run ./_utility-methods $lesson="6.3L"
+
+# COMMAND ----------
+
+DA.cleanup()
+DA.init()
+DA.paths.checkpoints = f"{DA.paths.working_dir}/_checkpoints"
+DA.conclude_setup()
+
+sqlContext.setConf("spark.sql.shuffle.partitions", spark.sparkContext.defaultParallelism)
+
diff --git a/Data-Engineering-with-Databricks/Includes/Classroom-Setup-7.1.py b/Data-Engineering-with-Databricks/Includes/Classroom-Setup-7.1.py
new file mode 100644
index 0000000..c581e45
--- /dev/null
+++ b/Data-Engineering-with-Databricks/Includes/Classroom-Setup-7.1.py
@@ -0,0 +1,57 @@
+# Databricks notebook source
+# MAGIC %run ./_utility-methods $lesson="7.1"
+
+# COMMAND ----------
+
+# MAGIC %run ./mount-datasets
+
+# COMMAND ----------
+
+class DataFactory:
+ def __init__(self):
+ self.source = f"{DA.paths.data_source}/tracker/streaming/"
+ self.userdir = DA.paths.data_landing_location
+ self.curr_mo = 1
+
+ def load(self, continuous=False):
+ if self.curr_mo > 12:
+ print("Data source exhausted\n")
+ elif continuous == True:
+ while self.curr_mo <= 12:
+ curr_file = f"{self.curr_mo:02}.json"
+ target_dir = f"{self.userdir}/{curr_file}"
+ print(f"Loading the file {curr_file} to the {target_dir}")
+ dbutils.fs.cp(f"{self.source}/{curr_file}", target_dir)
+ self.curr_mo += 1
+ else:
+ curr_file = f"{str(self.curr_mo).zfill(2)}.json"
+ target_dir = f"{self.userdir}/{curr_file}"
+ print(f"Loading the file {curr_file} to the {target_dir}")
+
+ dbutils.fs.cp(f"{self.source}/{curr_file}", target_dir)
+ self.curr_mo += 1
+
+
+# COMMAND ----------
+
+DA.init()
+DA.paths.checkpoints = f"{DA.paths.working_dir}/_checkpoints"
+DA.paths.data_source = "/mnt/training/healthcare"
+DA.paths.data_landing_location = f"{DA.paths.working_dir}/source/tracker"
+
+# bronzePath = f"{DA.paths.wokring_dir}/bronze"
+# recordingsParsedPath = f"{DA.paths.wokring_dir}/silver/recordings_parsed"
+# recordingsEnrichedPath = f"{DA.paths.wokring_dir}/silver/recordings_enriched"
+# dailyAvgPath = f"{DA.paths.wokring_dir}/gold/dailyAvg"
+
+# checkpointPath = f"{DA.paths.wokring_dir}/checkpoints"
+#bronzeCheckpoint = f"{DA.paths.checkpoints}/bronze"
+# recordingsParsedCheckpoint = f"{DA.paths.checkpoints}/recordings_parsed"
+# recordingsEnrichedCheckpoint = f"{DA.paths.checkpoints}/recordings_enriched"
+# dailyAvgCheckpoint = f"{DA.paths.checkpoints}/dailyAvgPath"
+
+DA.data_factory = DataFactory()
+DA.conclude_setup()
+
+sqlContext.setConf("spark.sql.shuffle.partitions", spark.sparkContext.defaultParallelism)
+
diff --git a/Data-Engineering-with-Databricks/Includes/Classroom-Setup-7.2L.py b/Data-Engineering-with-Databricks/Includes/Classroom-Setup-7.2L.py
new file mode 100644
index 0000000..e12f6b5
--- /dev/null
+++ b/Data-Engineering-with-Databricks/Includes/Classroom-Setup-7.2L.py
@@ -0,0 +1,12 @@
+# Databricks notebook source
+# MAGIC %run ./_utility-methods $lesson="7.2L"
+
+# COMMAND ----------
+
+DA.cleanup()
+DA.init()
+DA.paths.checkpoints = f"{DA.paths.working_dir}/_checkpoints"
+DA.conclude_setup()
+
+sqlContext.setConf("spark.sql.shuffle.partitions", spark.sparkContext.defaultParallelism)
+
diff --git a/Data-Engineering-with-Databricks/Includes/Classroom-Setup-8.1.1.py b/Data-Engineering-with-Databricks/Includes/Classroom-Setup-8.1.1.py
new file mode 100644
index 0000000..736ff02
--- /dev/null
+++ b/Data-Engineering-with-Databricks/Includes/Classroom-Setup-8.1.1.py
@@ -0,0 +1,102 @@
+# Databricks notebook source
+# MAGIC %run ./_utility-methods $lesson="dlt_demo_81"
+
+# COMMAND ----------
+
+# MAGIC %run ./mount-datasets
+
+# COMMAND ----------
+
+def get_pipeline_config():
+ path = dbutils.entry_point.getDbutils().notebook().getContext().notebookPath().getOrElse(None)
+ path = "/".join(path.split("/")[:-1]) + "/DE 8.1.2 - SQL for Delta Live Tables"
+
+ return f"DLT-Demo-81-{DA.username}", path
+
+def _print_pipeline_config():
+ "Provided by DBAcademy, this function renders the configuration of the pipeline as HTML"
+ pipeline_name, path = get_pipeline_config()
+
+ displayHTML(f"""""")
+
+DA.print_pipeline_config = _print_pipeline_config
+
+# COMMAND ----------
+
+def _create_pipeline():
+ "Provided by DBAcademy, this function creates the prescribed pipline"
+
+ from dbacademy.dbrest import DBAcademyRestClient
+ client = DBAcademyRestClient()
+
+ pipeline_name, path = get_pipeline_config()
+
+ # Delete the existing pipeline if it exists
+ client.pipelines().delete_by_name(pipeline_name)
+
+ # Create the new pipeline
+ pipeline = client.pipelines().create(
+ name = pipeline_name,
+ storage = DA.paths.storage_location,
+ target = DA.db_name,
+ notebooks = [path])
+
+ DA.pipeline_id = pipeline.get("pipeline_id")
+
+DA.create_pipeline = _create_pipeline
+
+# COMMAND ----------
+
+def _start_pipeline():
+ "Provided by DBAcademy, this function starts the pipeline and then blocks until it has completed, failed or was canceled"
+
+ import time
+ from dbacademy.dbrest import DBAcademyRestClient
+ client = DBAcademyRestClient()
+
+ # Start the pipeline
+ start = client.pipelines().start_by_id(DA.pipeline_id)
+ update_id = start.get("update_id")
+
+ # Get the status and block until it is done
+ update = client.pipelines().get_update_by_id(DA.pipeline_id, update_id)
+ state = update.get("update").get("state")
+
+ done = ["COMPLETED", "FAILED", "CANCELED"]
+ while state not in done:
+ duration = 15
+ time.sleep(duration)
+ print(f"Current state is {state}, sleeping {duration} seconds.")
+ update = client.pipelines().get_update_by_id(DA.pipeline_id, update_id)
+ state = update.get("update").get("state")
+
+ print(f"The final state is {state}.")
+ assert state == "COMPLETED", f"Expected the state to be COMPLETED, found {state}"
+
+DA.start_pipeline = _start_pipeline
+
+# COMMAND ----------
+
+DA.cleanup()
+DA.init()
+
+DA.paths.data_source = "/mnt/training/healthcare"
+DA.paths.storage_location = f"{DA.paths.working_dir}/storage"
+DA.paths.data_landing_location = f"{DA.paths.working_dir}/source/tracker"
+
+DA.data_factory = DltDataFactory()
+DA.conclude_setup()
+
diff --git a/Data-Engineering-with-Databricks/Includes/Classroom-Setup-8.1.3.py b/Data-Engineering-with-Databricks/Includes/Classroom-Setup-8.1.3.py
new file mode 100644
index 0000000..d6ca2c5
--- /dev/null
+++ b/Data-Engineering-with-Databricks/Includes/Classroom-Setup-8.1.3.py
@@ -0,0 +1,20 @@
+# Databricks notebook source
+# MAGIC %run ./_utility-methods $lesson="dlt_demo_81"
+
+# COMMAND ----------
+
+# MAGIC %run ./mount-datasets
+
+# COMMAND ----------
+
+# Continues where 8.1.1 picks up, don't remove assets
+# DA.cleanup()
+DA.init()
+
+DA.paths.data_source = "/mnt/training/healthcare"
+DA.paths.storage_location = f"{DA.paths.working_dir}/storage"
+DA.paths.data_landing_location = f"{DA.paths.working_dir}/source/tracker"
+
+DA.data_factory = DltDataFactory()
+DA.conclude_setup()
+
diff --git a/Data-Engineering-with-Databricks/Includes/Classroom-Setup-8.2.1L.py b/Data-Engineering-with-Databricks/Includes/Classroom-Setup-8.2.1L.py
new file mode 100644
index 0000000..88f4cb2
--- /dev/null
+++ b/Data-Engineering-with-Databricks/Includes/Classroom-Setup-8.2.1L.py
@@ -0,0 +1,110 @@
+# Databricks notebook source
+# MAGIC %run ./_utility-methods $lesson="dlt_lab_82"
+
+# COMMAND ----------
+
+# MAGIC %run ./mount-datasets
+
+# COMMAND ----------
+
+def get_pipeline_config():
+ path = dbutils.entry_point.getDbutils().notebook().getContext().notebookPath().getOrElse(None)
+ path = "/".join(path.split("/")[:-1]) + "/DE 8.2.2L - Migrating a SQL Pipeline to DLT Lab"
+
+ pipeline_name = f"DLT-Lab-82L-{DA.username}"
+ source = f"{DA.paths.working_dir}/source/tracker"
+ return pipeline_name, path, source
+
+def _print_pipeline_config():
+ "Provided by DBAcademy, this function renders the configuration of the pipeline as HTML"
+ pipeline_name, path, source = get_pipeline_config()
+
+ displayHTML(f"""""")
+
+DA.print_pipeline_config = _print_pipeline_config
+
+# COMMAND ----------
+
+def _create_pipeline():
+ "Provided by DBAcademy, this function creates the prescribed pipline"
+
+ from dbacademy.dbrest import DBAcademyRestClient
+ client = DBAcademyRestClient()
+
+ pipeline_name, path, source = get_pipeline_config()
+
+ # Delete the existing pipeline if it exists
+ client.pipelines().delete_by_name(pipeline_name)
+
+ # Create the new pipeline
+ pipeline = client.pipelines().create(
+ name = pipeline_name,
+ storage = f"{DA.paths.working_dir}/storage",
+ target = DA.db_name,
+ notebooks = [path],
+ configuration = {"source": source})
+
+ DA.pipline_id = pipeline.get("pipeline_id")
+
+DA.create_pipeline = _create_pipeline
+
+# COMMAND ----------
+
+def _start_pipeline():
+ "Provided by DBAcademy, this function starts the pipline and then blocks until it has completed, failed or was canceled"
+
+ import time
+ from dbacademy.dbrest import DBAcademyRestClient
+ client = DBAcademyRestClient()
+
+ # Start the pipeline
+ start = client.pipelines().start_by_id(DA.pipline_id)
+ update_id = start.get("update_id")
+
+ # Get the status and block until it is done
+ update = client.pipelines().get_update_by_id(DA.pipline_id, update_id)
+ state = update.get("update").get("state")
+
+ done = ["COMPLETED", "FAILED", "CANCELED"]
+ while state not in done:
+ duration = 15
+ time.sleep(duration)
+ print(f"Current state is {state}, sleeping {duration} seconds.")
+ update = client.pipelines().get_update_by_id(DA.pipline_id, update_id)
+ state = update.get("update").get("state")
+
+ print(f"The final state is {state}.")
+ assert state == "COMPLETED", f"Expected the state to be COMPLETED, found {state}"
+
+DA.start_pipeline = _start_pipeline
+
+# COMMAND ----------
+
+DA.cleanup()
+DA.init()
+
+# DA.paths.data_source = "/mnt/training/healthcare"
+# DA.paths.storage_location = f"{DA.paths.working_dir}/storage"
+# DA.paths.data_landing_location = f"{DA.paths.working_dir}/source/tracker"
+
+DA.data_factory = DltDataFactory()
+DA.conclude_setup()
+
diff --git a/Data-Engineering-with-Databricks/Includes/Classroom-Setup-8.2.3L.py b/Data-Engineering-with-Databricks/Includes/Classroom-Setup-8.2.3L.py
new file mode 100644
index 0000000..8358dc3
--- /dev/null
+++ b/Data-Engineering-with-Databricks/Includes/Classroom-Setup-8.2.3L.py
@@ -0,0 +1,21 @@
+# Databricks notebook source
+# MAGIC %run ./_utility-methods $lesson="dlt_lab_82"
+
+# COMMAND ----------
+
+# MAGIC %run ./mount-datasets
+
+# COMMAND ----------
+
+# Continuing from 8.2.3L, do not remove assets
+# DA.cleanup()
+DA.init()
+
+DA.paths.data_source = "/mnt/training/healthcare"
+DA.paths.storage_location = f"{DA.paths.working_dir}/storage"
+
+DA.paths.data_landing_location = f"{DA.paths.working_dir}/source/tracker"
+
+DA.data_factory = DltDataFactory()
+DA.conclude_setup()
+
diff --git a/Data-Engineering-with-Databricks/Includes/Classroom-Setup-9.1.1.py b/Data-Engineering-with-Databricks/Includes/Classroom-Setup-9.1.1.py
new file mode 100644
index 0000000..bb17c2b
--- /dev/null
+++ b/Data-Engineering-with-Databricks/Includes/Classroom-Setup-9.1.1.py
@@ -0,0 +1,37 @@
+# Databricks notebook source
+# MAGIC %run ./_utility-methods $lesson="jobs_demo_91"
+
+# COMMAND ----------
+
+# MAGIC %run ./mount-datasets
+
+# COMMAND ----------
+
+def print_pipeline_config():
+ path = dbutils.entry_point.getDbutils().notebook().getContext().notebookPath().getOrElse(None)
+ path = "/".join(path.split("/")[:-1]) + "/DE 9.1.3 - DLT Job"
+
+ displayHTML(f"""
+ Pipeline Name: | Jobs-Demo-91-{DA.username} |
+ Target: | {DA.db_name} |
+ Storage Location: | {DA.paths.working_dir}/storage |
+ Notebook Path: | {path} |
+
""")
+
+def print_job_config():
+# path = dbutils.entry_point.getDbutils().notebook().getContext().notebookPath().getOrElse(None)
+# path = "/".join(path.split("/")[:-1]) + "/DE 9.1.2 - Reset"
+# Notebook Path: | {path} |
+
+ displayHTML(f"""
+ Job Name: | Jobs-Demo-91-{DA.username} |
+
+
""")
+
+# COMMAND ----------
+
+DA.cleanup()
+DA.init()
+DA.data_factory = DltDataFactory()
+DA.conclude_setup()
+
diff --git a/Data-Engineering-with-Databricks/Includes/Classroom-Setup-9.1.2.py b/Data-Engineering-with-Databricks/Includes/Classroom-Setup-9.1.2.py
new file mode 100644
index 0000000..2aa9973
--- /dev/null
+++ b/Data-Engineering-with-Databricks/Includes/Classroom-Setup-9.1.2.py
@@ -0,0 +1,14 @@
+# Databricks notebook source
+# MAGIC %run ./_utility-methods $lesson="jobs_demo_91"
+
+# COMMAND ----------
+
+# MAGIC %run ./mount-datasets
+
+# COMMAND ----------
+
+DA.cleanup()
+DA.init()
+DA.data_factory = DltDataFactory()
+DA.conclude_setup()
+
diff --git a/Data-Engineering-with-Databricks/Includes/Classroom-Setup-9.2.1L.py b/Data-Engineering-with-Databricks/Includes/Classroom-Setup-9.2.1L.py
new file mode 100644
index 0000000..ebf54cb
--- /dev/null
+++ b/Data-Engineering-with-Databricks/Includes/Classroom-Setup-9.2.1L.py
@@ -0,0 +1,33 @@
+# Databricks notebook source
+# MAGIC %run ./_utility-methods $lesson="jobs_lab_92"
+
+# COMMAND ----------
+
+# MAGIC %run ./mount-datasets
+
+# COMMAND ----------
+
+def print_pipeline_config():
+ path = dbutils.entry_point.getDbutils().notebook().getContext().notebookPath().getOrElse(None)
+ path = "/".join(path.split("/")[:-1]) + "/DE 9.2.3L - DLT Job"
+
+ displayHTML(f"""
+ Pipeline Name: | Jobs-Lab-92-{DA.username} |
+ Source: | {DA.paths.working_dir}/source/tracker |
+ Target: | {DA.db_name} |
+ Storage Location: | {DA.paths.working_dir}/storage |
+ Notebook Path: | {path} |
+
""")
+
+def print_job_config():
+ displayHTML(f"""
+ Job Name: | Jobs-Lab-92-{DA.username} |
+
""")
+
+# COMMAND ----------
+
+DA.cleanup()
+DA.init()
+DA.data_factory = DltDataFactory()
+DA.conclude_setup()
+
diff --git a/Data-Engineering-with-Databricks/Includes/Classroom-Setup-9.2.2L.py b/Data-Engineering-with-Databricks/Includes/Classroom-Setup-9.2.2L.py
new file mode 100644
index 0000000..a82d3ee
--- /dev/null
+++ b/Data-Engineering-with-Databricks/Includes/Classroom-Setup-9.2.2L.py
@@ -0,0 +1,15 @@
+# Databricks notebook source
+# MAGIC %run ./_utility-methods $lesson="jobs_lab_92"
+
+# COMMAND ----------
+
+# MAGIC %run ./mount-datasets
+
+# COMMAND ----------
+
+# Don't reset our database or other assets
+# DA.cleanup()
+DA.init(create_db=False)
+DA.data_factory = DltDataFactory()
+DA.conclude_setup()
+
diff --git a/Data-Engineering-with-Databricks/Includes/Classroom-Setup-9.2.4L.py b/Data-Engineering-with-Databricks/Includes/Classroom-Setup-9.2.4L.py
new file mode 100644
index 0000000..f250172
--- /dev/null
+++ b/Data-Engineering-with-Databricks/Includes/Classroom-Setup-9.2.4L.py
@@ -0,0 +1,14 @@
+# Databricks notebook source
+# MAGIC %run ./_utility-methods $lesson="jobs_lab_92"
+
+# COMMAND ----------
+
+# MAGIC %run ./mount-datasets
+
+# COMMAND ----------
+
+# Don't reset our database or other assets
+# DA.cleanup()
+DA.init(create_db=False)
+DA.conclude_setup()
+
diff --git a/Data-Engineering-with-Databricks/Includes/Classroom-Setup-DLT-Lab.py b/Data-Engineering-with-Databricks/Includes/Classroom-Setup-DLT-Lab.py
new file mode 100644
index 0000000..f8e0da8
--- /dev/null
+++ b/Data-Engineering-with-Databricks/Includes/Classroom-Setup-DLT-Lab.py
@@ -0,0 +1,110 @@
+# Databricks notebook source
+# MAGIC %run ./_utility-methods $lesson="dlt_lab"
+
+# COMMAND ----------
+
+# MAGIC %run ./mount-datasets
+
+# COMMAND ----------
+
+def print_sql(rows, sql):
+ displayHTML(f"""""")
+
+
+# COMMAND ----------
+
+generate_register_dlt_event_metrics_sql_string = ""
+
+def _generate_register_dlt_event_metrics_sql():
+ global generate_register_dlt_event_metrics_sql_string
+
+ generate_register_dlt_event_metrics_sql_string = f"""
+CREATE TABLE IF NOT EXISTS {DA.db_name}.dlt_events
+LOCATION '{DA.paths.storage_location}/system/events';
+
+CREATE VIEW IF NOT EXISTS {DA.db_name}.dlt_success AS
+SELECT * FROM {DA.db_name}.dlt_events
+WHERE details:flow_progress:metrics IS NOT NULL;
+
+CREATE VIEW IF NOT EXISTS {DA.db_name}.dlt_metrics AS
+SELECT timestamp, origin.flow_name, details
+FROM {DA.db_name}.dlt_success
+ORDER BY timestamp DESC;""".strip()
+
+ print_sql(13, generate_register_dlt_event_metrics_sql_string)
+DA.generate_register_dlt_event_metrics_sql = _generate_register_dlt_event_metrics_sql
+
+# COMMAND ----------
+
+def _generate_daily_patient_avg():
+ sql = f"SELECT * FROM {DA.db_name}.daily_patient_avg"
+ print_sql(3, sql)
+
+DA.generate_daily_patient_avg = _generate_daily_patient_avg
+
+# COMMAND ----------
+
+def _generate_visualization_query():
+ sql = f"""
+SELECT flow_name, timestamp, int(details:flow_progress:metrics:num_output_rows) num_output_rows
+FROM {DA.db_name}.dlt_metrics
+ORDER BY timestamp DESC;"""
+
+ print_sql(5, sql)
+
+DA.generate_visualization_query = _generate_visualization_query
+
+# COMMAND ----------
+
+class DataFactory:
+ def __init__(self):
+ self.source = f"{DA.paths.data_source}/tracker/streaming/"
+ self.userdir = DA.paths.data_landing_location
+ try:
+ self.curr_mo = 1 + int(max([x[1].split(".")[0] for x in dbutils.fs.ls(self.userdir)]))
+ except:
+ self.curr_mo = 1
+
+ def load(self, continuous=False):
+ if self.curr_mo > 12:
+ print("Data source exhausted\n")
+ elif continuous == True:
+ while self.curr_mo <= 12:
+ curr_file = f"{self.curr_mo:02}.json"
+ target_dir = f"{self.userdir}/{curr_file}"
+ print(f"Loading the file {curr_file} to the {target_dir}")
+ dbutils.fs.cp(f"{self.source}/{curr_file}", target_dir)
+ self.curr_mo += 1
+ else:
+ curr_file = f"{str(self.curr_mo).zfill(2)}.json"
+ target_dir = f"{self.userdir}/{curr_file}"
+ print(f"Loading the file {curr_file} to the {target_dir}")
+
+ dbutils.fs.cp(f"{self.source}/{curr_file}", target_dir)
+ self.curr_mo += 1
+
+# COMMAND ----------
+
+DA.init()
+
+DA.paths.data_source = "/mnt/training/healthcare"
+DA.paths.storage_location = f"{DA.paths.working_dir}/storage"
+
+DA.paths.data_landing_location = f"{DA.paths.working_dir}/source/tracker"
+
+# bronzePath = f"{DA.paths.wokring_dir}/bronze"
+# recordingsParsedPath = f"{DA.paths.wokring_dir}/silver/recordings_parsed"
+# recordingsEnrichedPath = f"{DA.paths.wokring_dir}/silver/recordings_enriched"
+# dailyAvgPath = f"{DA.paths.wokring_dir}/gold/daily_avg"
+
+# checkpointPath = f"{DA.paths.wokring_dir}/checkpoints"
+#bronzeCheckpoint = f"{DA.paths.checkpoints}/bronze"
+# recordingsParsedCheckpoint = f"{DA.paths.checkpoints}/recordings_parsed"
+# recordingsEnrichedCheckpoint = f"{DA.paths.checkpoints}/recordings_enriched"
+# dailyAvgCheckpoint = f"{DA.paths.checkpoints}/dailyAvgPath"
+
+DA.data_factory = DataFactory()
+DA.conclude_setup()
+
+# sqlContext.setConf("spark.sql.shuffle.partitions", spark.sparkContext.defaultParallelism)
+
diff --git a/Data-Engineering-with-Databricks/Includes/Reset.py b/Data-Engineering-with-Databricks/Includes/Reset.py
new file mode 100644
index 0000000..f070f72
--- /dev/null
+++ b/Data-Engineering-with-Databricks/Includes/Reset.py
@@ -0,0 +1,35 @@
+# Databricks notebook source
+# MAGIC %run ./_utility-methods $lesson="reset"
+
+# COMMAND ----------
+
+# MAGIC %run ./mount-datasets
+
+# COMMAND ----------
+
+DA.init()
+
+# COMMAND ----------
+
+rows = spark.sql(f"show databases").collect()
+for row in rows:
+ db_name = row[0]
+ if db_name.startswith(DA.db_name_prefix):
+ print(db_name)
+ spark.sql(f"DROP DATABASE {db_name} CASCADE")
+
+# COMMAND ----------
+
+if DA.paths.exists(DA.working_dir_prefix):
+ print(DA.working_dir_prefix)
+ dbutils.fs.rm(DA.working_dir_prefix, True)
+
+# COMMAND ----------
+
+# Create the source database, install the datasets, whatever, so that we can run the other notebooks asyncronously
+install_dtavod_datasets(reinstall=True)
+install_eltwss_datasets(reinstall=True)
+
+# COMMAND ----------
+
+# MAGIC %run ./mount-datasets
diff --git a/Data-Engineering-with-Databricks/Includes/_utility-methods.py b/Data-Engineering-with-Databricks/Includes/_utility-methods.py
new file mode 100644
index 0000000..b27e619
--- /dev/null
+++ b/Data-Engineering-with-Databricks/Includes/_utility-methods.py
@@ -0,0 +1,267 @@
+# Databricks notebook source
+# MAGIC %pip install \
+# MAGIC git+https://github.com/databricks-academy/dbacademy-gems \
+# MAGIC git+https://github.com/databricks-academy/dbacademy-rest \
+# MAGIC --quiet --disable-pip-version-check
+
+# COMMAND ----------
+
+class Paths():
+ def __init__(self, working_dir, clean_lesson):
+ self.working_dir = working_dir
+
+ if clean_lesson: self.user_db = f"{working_dir}/{clean_lesson}.db"
+ else: self.user_db = f"{working_dir}/database.db"
+
+ def exists(self, path):
+ try: return len(dbutils.fs.ls(path)) >= 0
+ except Exception:return False
+
+ def print(self, padding=" "):
+ max_key_len = 0
+ for key in self.__dict__: max_key_len = len(key) if len(key) > max_key_len else max_key_len
+ for key in self.__dict__:
+ label = f"{padding}DA.paths.{key}:"
+ print(label.ljust(max_key_len+13) + DA.paths.__dict__[key])
+
+class DBAcademyHelper():
+ def __init__(self, lesson=None):
+ import re, time
+
+ self.start = int(time.time())
+
+ self.course_name = "dewd"
+ self.lesson = lesson.lower()
+ self.data_source_uri = "wasbs://courseware@dbacademy.blob.core.windows.net/data-engineering-with-databricks/v02"
+
+ # Define username
+ self.username = spark.sql("SELECT current_user()").first()[0]
+ self.clean_username = re.sub("[^a-zA-Z0-9]", "_", self.username)
+
+ self.db_name_prefix = f"dbacademy_{self.clean_username}_{self.course_name}"
+ self.source_db_name = None
+
+ self.working_dir_prefix = f"dbfs:/user/{self.username}/dbacademy/{self.course_name}"
+
+ if self.lesson:
+ clean_lesson = re.sub("[^a-zA-Z0-9]", "_", self.lesson)
+ working_dir = f"{self.working_dir_prefix}/{self.lesson}"
+ self.paths = Paths(working_dir, clean_lesson)
+ self.hidden = Paths(working_dir, clean_lesson)
+ self.db_name = f"{self.db_name_prefix}_{clean_lesson}"
+ else:
+ working_dir = self.working_dir_prefix
+ self.paths = Paths(working_dir, None)
+ self.hidden = Paths(working_dir, None)
+ self.db_name = self.db_name_prefix
+
+ def init(self, create_db=True):
+ spark.catalog.clearCache()
+ self.create_db = create_db
+
+ if create_db:
+ print(f"\nCreating the database \"{self.db_name}\"")
+ spark.sql(f"CREATE DATABASE IF NOT EXISTS {self.db_name} LOCATION '{self.paths.user_db}'")
+ spark.sql(f"USE {self.db_name}")
+
+ def cleanup(self):
+ for stream in spark.streams.active:
+ print(f"Stopping the stream \"{stream.name}\"")
+ stream.stop()
+ try: stream.awaitTermination()
+ except: pass # Bury any exceptions
+
+ if spark.sql(f"SHOW DATABASES").filter(f"databaseName == '{self.db_name}'").count() == 1:
+ print(f"Dropping the database \"{self.db_name}\"")
+ spark.sql(f"DROP DATABASE {self.db_name} CASCADE")
+
+ if self.paths.exists(self.paths.working_dir):
+ print(f"Removing the working directory \"{self.paths.working_dir}\"")
+ dbutils.fs.rm(self.paths.working_dir, True)
+
+ def conclude_setup(self):
+ import time
+
+ spark.conf.set("da.username", self.username)
+ spark.conf.set("da.db_name", self.db_name)
+ for key in self.paths.__dict__:
+ spark.conf.set(f"da.paths.{key.lower()}", self.paths.__dict__[key])
+
+ print("\nPredefined Paths:")
+ DA.paths.print()
+
+ if self.source_db_name:
+ print(f"\nPredefined tables in {self.source_db_name}:")
+ tables = spark.sql(f"SHOW TABLES IN {self.source_db_name}").filter("isTemporary == false").select("tableName").collect()
+ if len(tables) == 0: print(" -none-")
+ for row in tables: print(f" {row[0]}")
+
+ if self.create_db:
+ print(f"\nPredefined tables in {self.db_name}:")
+ tables = spark.sql(f"SHOW TABLES IN {self.db_name}").filter("isTemporary == false").select("tableName").collect()
+ if len(tables) == 0: print(" -none-")
+ for row in tables: print(f" {row[0]}")
+
+ print(f"\nSetup completed in {int(time.time())-self.start} seconds")
+
+ def block_until_stream_is_ready(self, query, min_batches=2):
+ import time
+ while len(query.recentProgress) < min_batches:
+ time.sleep(5) # Give it a couple of seconds
+
+ print(f"The stream has processed {len(query.recentProgress)} batchs")
+
+dbutils.widgets.text("lesson", "missing")
+lesson = dbutils.widgets.get("lesson")
+if lesson == "none": lesson = None
+assert lesson != "missing", f"The lesson must be passed to the DBAcademyHelper"
+
+DA = DBAcademyHelper(lesson)
+
+# COMMAND ----------
+
+def install_source_dataset(source_uri, reinstall, subdir):
+ target_dir = f"{DA.working_dir_prefix}/source/{subdir}"
+
+# if reinstall and DA.paths.exists(target_dir):
+# print(f"Removing existing dataset at {target_dir}")
+# dbutils.fs.rm(target_dir, True)
+
+ if DA.paths.exists(target_dir):
+ print(f"Skipping install to \"{target_dir}\", dataset already exists")
+ else:
+ print(f"Installing datasets to \"{target_dir}\"")
+ dbutils.fs.cp(source_uri, target_dir, True)
+
+ return target_dir
+
+# COMMAND ----------
+
+def install_dtavod_datasets(reinstall):
+ source_uri = "wasbs://courseware@dbacademy.blob.core.windows.net/databases_tables_and_views_on_databricks/v02"
+ DA.paths.datasets = install_source_dataset(source_uri, reinstall, "dtavod")
+
+ copy_source_dataset(f"{DA.paths.datasets}/flights/departuredelays.csv",
+ f"{DA.paths.working_dir}/flight_delays",
+ format="csv", name="flight_delays")
+
+# COMMAND ----------
+
+def install_eltwss_datasets(reinstall):
+ source_uri = "wasbs://courseware@dbacademy.blob.core.windows.net/elt-with-spark-sql/v02/small-datasets"
+ DA.paths.datasets = install_source_dataset(source_uri, reinstall, "eltwss")
+
+# COMMAND ----------
+
+def clone_source_table(table_name, source_path, source_name=None):
+ import time
+ start = int(time.time())
+
+ source_name = table_name if source_name is None else source_name
+ print(f"Cloning the {table_name} table from {source_path}/{source_name}", end="...")
+
+ spark.sql(f"""
+ CREATE OR REPLACE TABLE {table_name}
+ SHALLOW CLONE delta.`{source_path}/{source_name}`
+ """)
+
+ total = spark.read.table(table_name).count()
+ print(f"({int(time.time())-start} seconds / {total:,} records)")
+
+def load_eltwss_tables():
+ clone_source_table("events", f"{DA.paths.datasets}/delta")
+ clone_source_table("sales", f"{DA.paths.datasets}/delta")
+ clone_source_table("users", f"{DA.paths.datasets}/delta")
+ clone_source_table("transactions", f"{DA.paths.datasets}/delta")
+
+# COMMAND ----------
+
+def copy_source_dataset(src_path, dst_path, format, name):
+ import time
+ start = int(time.time())
+ print(f"Creating the {name} dataset", end="...")
+
+ dbutils.fs.cp(src_path, dst_path, True)
+
+ total = spark.read.format(format).load(dst_path).count()
+ print(f"({int(time.time())-start} seconds / {total:,} records)")
+
+def load_eltwss_external_tables():
+ copy_source_dataset(f"{DA.paths.datasets}/raw/sales-csv",
+ f"{DA.paths.working_dir}/sales-csv", "csv", "sales-csv")
+
+ import time
+ start = int(time.time())
+ print(f"Creating the users table", end="...")
+
+ # REFACTORING - Making lesson-specific copy
+ dbutils.fs.cp(f"{DA.paths.datasets}/raw/users-historical",
+ f"{DA.paths.working_dir}/users-historical", True)
+
+ # https://spark.apache.org/docs/latest/sql-data-sources-jdbc.html
+ (spark.read
+ .format("parquet")
+ .load(f"{DA.paths.working_dir}/users-historical")
+ .repartition(1)
+ .write
+ .format("org.apache.spark.sql.jdbc")
+ .option("url", f"jdbc:sqlite:/{DA.username}_ecommerce.db")
+ .option("dbtable", "users") # The table name in sqllight
+ .mode("overwrite")
+ .save())
+
+ total = spark.read.parquet(f"{DA.paths.working_dir}/users-historical").count()
+ print(f"({int(time.time())-start} seconds / {total:,} records)")
+
+# COMMAND ----------
+
+# lesson: Writing delta
+def create_eltwss_users_update():
+ import time
+ start = int(time.time())
+ print(f"Creating the users_dirty table", end="...")
+
+ # REFACTORING - Making lesson-specific copy
+ dbutils.fs.cp(f"{DA.paths.datasets}/raw/users-30m",
+ f"{DA.paths.working_dir}/users-30m", True)
+
+ spark.sql(f"""
+ CREATE OR REPLACE TABLE users_dirty AS
+ SELECT *, current_timestamp() updated
+ FROM parquet.`{DA.paths.working_dir}/users-30m`
+ """)
+
+ spark.sql("INSERT INTO users_dirty VALUES (NULL, NULL, NULL, NULL), (NULL, NULL, NULL, NULL), (NULL, NULL, NULL, NULL)")
+
+ total = spark.read.table("users_dirty").count()
+ print(f"({int(time.time())-start} seconds / {total:,} records)")
+
+# COMMAND ----------
+
+class DltDataFactory:
+ def __init__(self):
+ self.source = f"/mnt/training/healthcare/tracker/streaming"
+ self.userdir = f"{DA.paths.working_dir}/source/tracker"
+ try:
+ self.curr_mo = 1 + int(max([x[1].split(".")[0] for x in dbutils.fs.ls(self.userdir)]))
+ except:
+ self.curr_mo = 1
+
+ def load(self, continuous=False):
+ if self.curr_mo > 12:
+ print("Data source exhausted\n")
+ elif continuous == True:
+ while self.curr_mo <= 12:
+ curr_file = f"{self.curr_mo:02}.json"
+ target_dir = f"{self.userdir}/{curr_file}"
+ print(f"Loading the file {curr_file} to the {target_dir}")
+ dbutils.fs.cp(f"{self.source}/{curr_file}", target_dir)
+ self.curr_mo += 1
+ else:
+ curr_file = f"{str(self.curr_mo).zfill(2)}.json"
+ target_dir = f"{self.userdir}/{curr_file}"
+ print(f"Loading the file {curr_file} to the {target_dir}")
+
+ dbutils.fs.cp(f"{self.source}/{curr_file}", target_dir)
+ self.curr_mo += 1
+
diff --git a/Data-Engineering-With-Databricks/Includes/mount-datasets.py b/Data-Engineering-with-Databricks/Includes/mount-datasets.py
similarity index 100%
rename from Data-Engineering-With-Databricks/Includes/mount-datasets.py
rename to Data-Engineering-with-Databricks/Includes/mount-datasets.py
diff --git a/Data-Engineering-With-Databricks/Includes/setup-entities.py b/Data-Engineering-with-Databricks/Includes/setup-entities.py
similarity index 100%
rename from Data-Engineering-With-Databricks/Includes/setup-entities.py
rename to Data-Engineering-with-Databricks/Includes/setup-entities.py
diff --git a/Data-Engineering-with-Databricks/Solutions/01 - Databricks Workspace and Services/DE 1.1 - Create and Manage Interactive Clusters.py b/Data-Engineering-with-Databricks/Solutions/01 - Databricks Workspace and Services/DE 1.1 - Create and Manage Interactive Clusters.py
new file mode 100644
index 0000000..3a2dce1
--- /dev/null
+++ b/Data-Engineering-with-Databricks/Solutions/01 - Databricks Workspace and Services/DE 1.1 - Create and Manage Interactive Clusters.py
@@ -0,0 +1,100 @@
+# Databricks notebook source
+# MAGIC %md-sandbox
+# MAGIC
+# MAGIC
+# MAGIC

+# MAGIC
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC # Create and Manage Interactive Clusters
+# MAGIC
+# MAGIC A Databricks cluster is a set of computation resources and configurations on which you run data engineering, data science, and data analytics workloads, such as production ETL pipelines, streaming analytics, ad-hoc analytics, and machine learning. You run these workloads as a set of commands in a notebook or as an automated job.
+# MAGIC
+# MAGIC Databricks makes a distinction between all-purpose clusters and job clusters.
+# MAGIC - You use all-purpose clusters to analyze data collaboratively using interactive notebooks.
+# MAGIC - You use job clusters to run fast and robust automated jobs.
+# MAGIC
+# MAGIC This demo will cover creating and managing all-purpose Databricks clusters using the Databricks Data Science & Engineering Workspace.
+# MAGIC
+# MAGIC ## Learning Objectives
+# MAGIC By the end of this lesson, you should be able to:
+# MAGIC * Use the Clusters UI to configure and deploy a cluster
+# MAGIC * Edit, terminate, restart, and delete clusters
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC ## Create Cluster
+# MAGIC
+# MAGIC Depending on the workspace in which you're currently working, you may or may not have cluster creation privileges.
+# MAGIC
+# MAGIC Instructions in this section assume that you **do** have cluster creation privileges, and that you need to deploy a new cluster to execute the lessons in this course.
+# MAGIC
+# MAGIC **NOTE**: Check with your instructor or a platform admin to confirm whether or not you should create a new cluster or connect to a cluster that has already been deployed. Cluster policies may impact your options for cluster configuration.
+# MAGIC
+# MAGIC Steps:
+# MAGIC 1. Use the left sidebar to navigate to the **Compute** page by clicking on the  icon
+# MAGIC 1. Click the blue **Create Cluster** button
+# MAGIC 1. For the **Cluster name**, use your name so that you can find it easily and the instructor can easily identify it if you have problems
+# MAGIC 1. Set the **Cluster mode** to **Single Node** (this mode is required to run this course)
+# MAGIC 1. Use the recommended **Databricks runtime version** for this course
+# MAGIC 1. Leave boxes checked for the default settings under the **Autopilot Options**
+# MAGIC 1. Click the blue **Create Cluster** button
+# MAGIC
+# MAGIC **NOTE:** Clusters can take several minutes to deploy. Once you have finished deploying a cluster, feel free to continue to explore the cluster creation UI.
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC ###
Single-Node Cluster Required for This Course
+# MAGIC **IMPORTANT:** This course requires you to run notebooks on a single-node cluster.
+# MAGIC
+# MAGIC Follow the instructions above to create a cluster that has **Cluster mode** set to **`Single Node`**.
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC ## Manage Clusters
+# MAGIC
+# MAGIC Once the cluster is created, go back to the **Compute** page to view the cluster.
+# MAGIC
+# MAGIC Select a cluster to review the current configuration.
+# MAGIC
+# MAGIC Click the **Edit** button. Note that most settings can be modified (if you have sufficient permissions). Changing most settings will require running clusters to be restarted.
+# MAGIC
+# MAGIC **NOTE**: We'll be using our cluster in the following lesson. Restarting, terminating, or deleting your cluster may put you behind as you wait for new resources to be deployed.
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC ## Restart, Terminate, and Delete
+# MAGIC
+# MAGIC Note that while **Restart**, **Terminate**, and **Delete** have different effects, they all start with a cluster termination event. (Clusters will also terminate automatically due to inactivity assuming this setting is used.)
+# MAGIC
+# MAGIC When a cluster terminates, all cloud resources currently in use are deleted. This means:
+# MAGIC * Associated VMs and operational memory will be purged
+# MAGIC * Attached volume storage will be deleted
+# MAGIC * Network connections between nodes will be removed
+# MAGIC
+# MAGIC In short, all resources previously associated with the compute environment will be completely removed. This means that **any results that need to be persisted should be saved to a permanent location**. Note that you will not lose your code, nor will you lose data files that you've saved out appropriately.
+# MAGIC
+# MAGIC The **Restart** button will allow us to manually restart our cluster. This can be useful if we need to completely clear out the cache on the cluster or wish to completely reset our compute environment.
+# MAGIC
+# MAGIC The **Terminate** button allows us to stop our cluster. We maintain our cluster configuration setting, and can use the **Restart** button to deploy a new set of cloud resources using the same configuration.
+# MAGIC
+# MAGIC The **Delete** button will stop our cluster and remove the cluster configuration.
+
+# COMMAND ----------
+
+# MAGIC %md-sandbox
+# MAGIC © 2022 Databricks, Inc. All rights reserved.
+# MAGIC Apache, Apache Spark, Spark and the Spark logo are trademarks of the Apache Software Foundation.
+# MAGIC
+# MAGIC Privacy Policy | Terms of Use | Support
diff --git a/Data-Engineering-with-Databricks/Solutions/01 - Databricks Workspace and Services/DE 1.2 - Notebook Basics.py b/Data-Engineering-with-Databricks/Solutions/01 - Databricks Workspace and Services/DE 1.2 - Notebook Basics.py
new file mode 100644
index 0000000..baf42d9
--- /dev/null
+++ b/Data-Engineering-with-Databricks/Solutions/01 - Databricks Workspace and Services/DE 1.2 - Notebook Basics.py
@@ -0,0 +1,398 @@
+# Databricks notebook source
+# MAGIC %md-sandbox
+# MAGIC
+# MAGIC
+# MAGIC

+# MAGIC
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC # Notebook Basics
+# MAGIC
+# MAGIC Notebooks are the primary means of developing and executing code interactively on Databricks. This lesson provides a basic introduction to working with Databricks notebooks.
+# MAGIC
+# MAGIC If you've previously used Databricks notebooks but this is your first time executing a notebook in Databricks Repos, you'll notice that basic functionality is the same. In the next lesson, we'll review some of the functionality that Databricks Repos adds to notebooks.
+# MAGIC
+# MAGIC ## Learning Objectives
+# MAGIC By the end of this lesson, you should be able to:
+# MAGIC * Attach a notebook to a cluster
+# MAGIC * Execute a cell in a notebook
+# MAGIC * Set the language for a notebook
+# MAGIC * Describe and use magic commands
+# MAGIC * Create and run a SQL cell
+# MAGIC * Create and run a Python cell
+# MAGIC * Create a markdown cell
+# MAGIC * Export a Databricks notebook
+# MAGIC * Export a collection of Databricks notebooks
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC ## Attach to a Cluster
+# MAGIC
+# MAGIC In the previous lesson, you should have either deployed a cluster or identified a cluster that an admin has configured for you to use.
+# MAGIC
+# MAGIC Directly below the name of this notebook at the top of your screen, use the drop-down list to connect this notebook to your cluster.
+# MAGIC
+# MAGIC **NOTE**: Deploying a cluster can take several minutes. A green arrow will appear to the right of the cluster name once resources have been deployed. If your cluster has a solid gray circle to the left, you will need to follow instructions to start a cluster.
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC ## Notebooks Basics
+# MAGIC
+# MAGIC Notebooks provide cell-by-cell execution of code. Multiple languages can be mixed in a notebook. Users can add plots, images, and markdown text to enhance their code.
+# MAGIC
+# MAGIC Throughout this course, our notebooks are designed as learning instruments. Notebooks can be easily deployed as production code with Databricks, as well as providing a robust toolset for data exploration, reporting, and dashboarding.
+# MAGIC
+# MAGIC ### Running a Cell
+# MAGIC * Run the cell below using one of the following options:
+# MAGIC * **CTRL+ENTER** or **CTRL+RETURN**
+# MAGIC * **SHIFT+ENTER** or **SHIFT+RETURN** to run the cell and move to the next one
+# MAGIC * Using **Run Cell**, **Run All Above** or **Run All Below** as seen here
+
+# COMMAND ----------
+
+print("I'm running Python!")
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC **NOTE**: Cell-by-cell code execution means that cells can be executed multiple times or out of order. Unless explicitly instructed, you should always assume that the notebooks in this course are intended to be run one cell at a time from top to bottom. If you encounter an error, make sure you read the text before and after a cell to ensure that the error wasn't an intentional learning moment before you try to troubleshoot. Most errors can be resolved by either running earlier cells in a notebook that were missed or re-executing the entire notebook from the top.
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC ### Setting the Default Notebook Language
+# MAGIC
+# MAGIC The cell above executes a Python command, because our current default language for the notebook is set to Python.
+# MAGIC
+# MAGIC Databricks notebooks support Python, SQL, Scala, and R. A language can be selected when a notebook is created, but this can be changed at any time.
+# MAGIC
+# MAGIC The default language appears directly to the right of the notebook title at the top of the page. Throughout this course, we'll use a blend of SQL and Python notebooks.
+# MAGIC
+# MAGIC We'll change the default language for this notebook to SQL.
+# MAGIC
+# MAGIC Steps:
+# MAGIC * Click on the **Python** next to the notebook title at the top of the screen
+# MAGIC * In the UI that pops up, select **SQL** from the drop down list
+# MAGIC
+# MAGIC **NOTE**: In the cell just before this one, you should see a new line appear with %python
. We'll discuss this in a moment.
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC ### Create and Run a SQL Cell
+# MAGIC
+# MAGIC * Highlight this cell and press the **B** button on the keyboard to create a new cell below
+# MAGIC * Copy the following code into the cell below and then run the cell
+# MAGIC
+# MAGIC **`%sql`**
+# MAGIC **`SELECT "I'm running SQL!"`**
+# MAGIC
+# MAGIC **NOTE**: There are a number of different methods for adding, moving, and deleting cells including GUI options and keyboard shortcuts. Refer to the docs for details.
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC ## Magic Commands
+# MAGIC * Magic commands are specific to the Databricks notebooks
+# MAGIC * They are very similar to magic commands found in comparable notebook products
+# MAGIC * These are built-in commands that provide the same outcome regardless of the notebook's language
+# MAGIC * A single percent (%) symbol at the start of a cell identifies a magic command
+# MAGIC * You can only have one magic command per cell
+# MAGIC * A magic command must be the first thing in a cell
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC ### Language Magics
+# MAGIC Language magic commands allow for the execution of code in languages other than the notebook's default. In this course, we'll see the following language magics:
+# MAGIC * %python
+# MAGIC * %sql
+# MAGIC
+# MAGIC Adding the language magic for the currently set notebook type is not necessary.
+# MAGIC
+# MAGIC When we changed the notebook language from Python to SQL above, existing cells written in Python had the %python
command added.
+# MAGIC
+# MAGIC **NOTE**: Rather than changing the default language of a notebook constantly, you should stick with a primary language as the default and only use language magics as necessary to execute code in another language.
+
+# COMMAND ----------
+
+print("Hello Python!")
+
+# COMMAND ----------
+
+# MAGIC %sql
+# MAGIC
+# MAGIC select "Hello SQL!"
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC
+# MAGIC ### Markdown
+# MAGIC
+# MAGIC The magic command **%md** allows us to render Markdown in a cell:
+# MAGIC * Double click this cell to begin editing it
+# MAGIC * Then hit **`Esc`** to stop editing
+# MAGIC
+# MAGIC # Title One
+# MAGIC ## Title Two
+# MAGIC ### Title Three
+# MAGIC
+# MAGIC This is a test of the emergency broadcast system. This is only a test.
+# MAGIC
+# MAGIC This is text with a **bold** word in it.
+# MAGIC
+# MAGIC This is text with an *italicized* word in it.
+# MAGIC
+# MAGIC This is an ordered list
+# MAGIC 0. once
+# MAGIC 0. two
+# MAGIC 0. three
+# MAGIC
+# MAGIC This is an unordered list
+# MAGIC * apples
+# MAGIC * peaches
+# MAGIC * bananas
+# MAGIC
+# MAGIC Links/Embedded HTML: Markdown - Wikipedia
+# MAGIC
+# MAGIC Images:
+# MAGIC 
+# MAGIC
+# MAGIC And of course, tables:
+# MAGIC
+# MAGIC | name | value |
+# MAGIC |--------|-------|
+# MAGIC | Yi | 1 |
+# MAGIC | Ali | 2 |
+# MAGIC | Selina | 3 |
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC ### %run
+# MAGIC * You can run a notebook from another notebook by using the magic command **%run**
+# MAGIC * Notebooks to be run are specified with relative paths
+# MAGIC * The referenced notebook executes as if it were part of the current notebook, so temporary views and other local declarations will be available from the calling notebook
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC Uncommenting and executing the following cell will generate the following error:
+# MAGIC **`Error in SQL statement: AnalysisException: Table or view not found: demo_tmp_vw`**
+
+# COMMAND ----------
+
+# MAGIC %sql
+# MAGIC -- SELECT * FROM demo_tmp_vw
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC But we can declare it and a handful of other variables and functions buy running this cell:
+
+# COMMAND ----------
+
+# MAGIC %run ../Includes/Classroom-Setup-1.2
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC The **`../Includes/Classroom-Setup-1.2`** notebook we referenced includes logic to create and **`USE`** a database, as well as creating the temp view **`demo_temp_vw`**.
+# MAGIC
+# MAGIC We can see this temp view is now available in our current notebook session with the following query.
+
+# COMMAND ----------
+
+# MAGIC %sql
+# MAGIC SELECT * FROM demo_tmp_vw
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC We'll use this pattern of "setup" notebooks throughout the course to help configure the environment for lessons and labs.
+# MAGIC
+# MAGIC These "provided" variables, functions and other objects should be easily identifiable in that they are part of the **`DA`** object which is an instance of **`DBAcademyHelper`**.
+# MAGIC
+# MAGIC With that in mind, most lessons will use variables derived from your username to organize files and databases.
+# MAGIC
+# MAGIC This pattern allows us to avoid collision with other users in shared a workspace.
+# MAGIC
+# MAGIC The cell below uses Python to print some of those variables previously defined in this notebook's setup script:
+
+# COMMAND ----------
+
+print(f"DA: {DA}")
+print(f"DA.username: {DA.username}")
+print(f"DA.paths.working_dir: {DA.paths.working_dir}")
+print(f"DA.db_name: {DA.db_name}")
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC In addition to this, these same variables are "injected" into the SQL context so that we can use them in SQL statements.
+# MAGIC
+# MAGIC We will talk more about this later, but you can see a quick example in the following cell.
+# MAGIC
+# MAGIC
Note the subtle but important difference in the casing of the word **`da`** and **`DA`** in these two examples.
+
+# COMMAND ----------
+
+# MAGIC %sql
+# MAGIC SELECT '${da.username}' AS current_username,
+# MAGIC '${da.paths.working_dir}' AS working_directory,
+# MAGIC '${da.db_name}' as database_name
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC ## Databricks Utilities
+# MAGIC Databricks notebooks provide a number of utility commands for configuring and interacting with the environment: dbutils docs
+# MAGIC
+# MAGIC Throughout this course, we'll occasionally use **`dbutils.fs.ls()`** to list out directories of files from Python cells.
+
+# COMMAND ----------
+
+dbutils.fs.ls("/databricks-datasets")
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC ## display()
+# MAGIC
+# MAGIC When running SQL queries from cells, results will always be displayed in a rendered tabular format.
+# MAGIC
+# MAGIC When we have tabular data returned by a Python cell, we can call **`display`** to get the same type of preview.
+# MAGIC
+# MAGIC Here, we'll wrap the previous list command on our file system with **`display`**.
+
+# COMMAND ----------
+
+display(dbutils.fs.ls("/databricks-datasets"))
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC The **`display()`** command has the following capabilities and limitations:
+# MAGIC * Preview of results limited to 1000 records
+# MAGIC * Provides button to download results data as CSV
+# MAGIC * Allows rendering plots
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC ## Downloading Notebooks
+# MAGIC
+# MAGIC There are a number of options for downloading either individual notebooks or collections of notebooks.
+# MAGIC
+# MAGIC Here, you'll go through the process to download this notebook as well as a collection of all the notebooks in this course.
+# MAGIC
+# MAGIC ### Download a Notebook
+# MAGIC
+# MAGIC Steps:
+# MAGIC * Click the **File** option to the right of the cluster selection at the top of the notebook
+# MAGIC * From the menu that appears, hover over **Export** and then select **Source File**
+# MAGIC
+# MAGIC The notebook will download to your personal laptop. It will be named with the current notebook name and have the file extension for the default language. You can open this notebook with any file editor and see the raw contents of Databricks notebooks.
+# MAGIC
+# MAGIC These source files can be uploaded into any Databricks workspace.
+# MAGIC
+# MAGIC ### Download a Collection of Notebooks
+# MAGIC
+# MAGIC **NOTE**: The following instructions assume you have imported these materials using **Repos**.
+# MAGIC
+# MAGIC Steps:
+# MAGIC * Click the  **Repos** on the left sidebar
+# MAGIC * This should give you a preview of the parent directories for this notebook
+# MAGIC * On the left side of the directory preview around the middle of the screen, there should be a left arrow. Click this to move up in your file hierarchy.
+# MAGIC * You should see a directory called **Data Engineering with Databricks**. Click the the down arrow/chevron to bring up a menu
+# MAGIC * From the menu, hover over **Export** and select **DBC Archive**
+# MAGIC
+# MAGIC The DBC(Databricks Cloud) file that is downloaded contains a zipped collection of the directories and notebooks in this course. Users should not attempt to edit these DBC files locally, but they can be safely uploaded into any Databricks workspace to move or share notebook contents.
+# MAGIC
+# MAGIC **NOTE**: When downloading a collection of DBCs, result previews and plots will also be exported. When downloading source notebooks, only code will be saved.
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC ## Learning More
+# MAGIC
+# MAGIC We like to encourage you to explore the documentation to learn more about the various features of the Databricks platform and notebooks.
+# MAGIC * User Guide
+# MAGIC * Getting Started with Databricks
+# MAGIC * User Guide / Notebooks
+# MAGIC * Importing notebooks - Supported Formats
+# MAGIC * Repos
+# MAGIC * Administration Guide
+# MAGIC * Cluster Configuration
+# MAGIC * REST API
+# MAGIC * Release Notes
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC ## One more note!
+# MAGIC
+# MAGIC At the end of each lesson you will see the following command, **`DA.cleanup()`**.
+# MAGIC
+# MAGIC This method drops lesson-specific databases and working directories in an attempt to keep your workspace clean and maintain the immutability of each lesson.
+# MAGIC
+# MAGIC Run the following cell to delete the tables and files associated with this lesson.
+
+# COMMAND ----------
+
+DA.cleanup()
+
+# COMMAND ----------
+
+# MAGIC %md-sandbox
+# MAGIC © 2022 Databricks, Inc. All rights reserved.
+# MAGIC Apache, Apache Spark, Spark and the Spark logo are trademarks of the Apache Software Foundation.
+# MAGIC
+# MAGIC Privacy Policy | Terms of Use | Support
diff --git a/Data-Engineering-with-Databricks/Solutions/01 - Databricks Workspace and Services/DE 1.3L - Getting Started with the Databricks Platform Lab.py b/Data-Engineering-with-Databricks/Solutions/01 - Databricks Workspace and Services/DE 1.3L - Getting Started with the Databricks Platform Lab.py
new file mode 100644
index 0000000..5689ed6
--- /dev/null
+++ b/Data-Engineering-with-Databricks/Solutions/01 - Databricks Workspace and Services/DE 1.3L - Getting Started with the Databricks Platform Lab.py
@@ -0,0 +1,222 @@
+# Databricks notebook source
+# MAGIC %md-sandbox
+# MAGIC
+# MAGIC
+# MAGIC

+# MAGIC
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC
+# MAGIC # Getting Started with the Databricks Platform
+# MAGIC
+# MAGIC This notebook provides a hands-on review of some of the basic functionality of the Databricks Data Science and Engineering Workspace.
+# MAGIC
+# MAGIC ## Learning Objectives
+# MAGIC By the end of this lab, you should be able to:
+# MAGIC - Rename a notebook and change the default language
+# MAGIC - Attach a cluster
+# MAGIC - Use the **`%run`** magic command
+# MAGIC - Run Python and SQL cells
+# MAGIC - Create a Markdown cell
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC
+# MAGIC # Renaming a Notebook
+# MAGIC
+# MAGIC Changing the name of a notebook is easy. Click on the name at the top of this page, then make changes to the name. To make it easier to navigate back to this notebook later in case you need to, append a short test string to the end of the existing name.
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC
+# MAGIC # Attaching a cluster
+# MAGIC
+# MAGIC Executing cells in a notebook requires computing resources, which is provided by clusters. The first time you execute a cell in a notebook, you will be prompted to attach to a cluster if one is not already attached.
+# MAGIC
+# MAGIC Attach a cluster to this notebook now by clicking the dropdown near the top-left corner of this page. Select the cluster you created previously. This will clear the execution state of the notebook and connect the notebook to the selected cluster.
+# MAGIC
+# MAGIC Note that the dropdown menu provides the option of starting or restarting the cluster as needed. You can also detach and re-attach to a cluster in a single movement. This is useful for clearing the execution state when needed.
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC
+# MAGIC # Using %run
+# MAGIC
+# MAGIC Complex projects of any type can benefit from the ability to break them down into simpler, reusable components.
+# MAGIC
+# MAGIC In the context of Databricks notebooks, this facility is provided through the **`%run`** magic command.
+# MAGIC
+# MAGIC When used this way, variables, functions and code blocks become part of the current programming context.
+# MAGIC
+# MAGIC Consider this example:
+# MAGIC
+# MAGIC **`Notebook_A`** has four commands:
+# MAGIC 1. **`name = "John"`**
+# MAGIC 2. **`print(f"Hello {name}")`**
+# MAGIC 3. **`%run ./Notebook_B`**
+# MAGIC 4. **`print(f"Welcome back {full_name}`**
+# MAGIC
+# MAGIC **`Notebook_B`** has only one commands:
+# MAGIC 1. **`full_name = f"{name} Doe"`**
+# MAGIC
+# MAGIC If we run **`Notebook_B`** it will fail to execute becaues the variable **`name`** is not defined in **`Notebook_B`**
+# MAGIC
+# MAGIC Likewise, one might think that **`Notebook_A`** would fail becase it uses the variable **`full_name`** which is likewise not defined in **`Notebook_A`**, but it doesn't!
+# MAGIC
+# MAGIC What actually happens is that the two notebooks are merged together as we see below and **then** executed:
+# MAGIC 1. **`name = "John"`**
+# MAGIC 2. **`print(f"Hello {name}")`**
+# MAGIC 3. **`full_name = f"{name} Doe"`**
+# MAGIC 4. **`print(f"Welcome back {full_name}`**
+# MAGIC
+# MAGIC And thus providing the expected behavior:
+# MAGIC * **`Hello John`**
+# MAGIC * **`Welcome back John Doe`**
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC
+# MAGIC The folder that contains this notebook contains a subfolder named **`ExampleSetupFolder`**, which in turn contains a notebook called **`example-setup`**.
+# MAGIC
+# MAGIC This simple notebook declares the variable **`my_name`**, sets it to **`None`** and then creates a DataFrame called **`example_df`**.
+# MAGIC
+# MAGIC Open the example-setup notebook and modify it so that name is not **`None`** but rather your name (or anyone's name) enclosed in quotes, and so that the following two cells execute without throwing an **`AssertionError`**.
+
+# COMMAND ----------
+
+# MAGIC %run ./ExampleSetupFolder/example-setup
+
+# COMMAND ----------
+
+assert my_name is not None, "Name is still None"
+print(my_name)
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC
+# MAGIC ## Run a Python cell
+# MAGIC
+# MAGIC Run the following cell to verify that the **`example-setup`** notebook was executed by displaying the **`example_df`** Dataframe. This table consists of 16 rows of increasing values.
+
+# COMMAND ----------
+
+display(example_df)
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC
+# MAGIC # Detach and Reattach a Cluster
+# MAGIC
+# MAGIC While attaching to clusters is a fairly common task, sometimes it is useful to detach and re-attach in one single operation. The main side-effect this achieves is clearing the execution state. This can be useful when you want to test cells in isolation, or you simply want to reset the execution state.
+# MAGIC
+# MAGIC Revisit the cluster dropdown. In the menu item representing the currently attached cluster, select the **Detach & Re-attach** link.
+# MAGIC
+# MAGIC Notice that the output from the cell above remains since results and execution state are unrelated, but the execution state is cleared. This can be verified by attempting to re-run the cell above. This fails, since the **`example_df`** variable has been cleared, along with the rest of the state.
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC
+# MAGIC # Change Language
+# MAGIC
+# MAGIC Notice that the default language for this notebook is set to Python. Change this by clicking the **Python** button to the right of the notebook name. Change the default language to SQL.
+# MAGIC
+# MAGIC Notice that the Python cells are automatically prepended with a %python
magic command to maintain validity of those cells. Notice that this operation also clears the execution state.
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC
+# MAGIC # Create a Markdown Cell
+# MAGIC
+# MAGIC Add a new cell below this one. Populate with some Markdown that includes at least the following elements:
+# MAGIC * A header
+# MAGIC * Bullet points
+# MAGIC * A link (using your choice of HTML or Markdown conventions)
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC
+# MAGIC ## Run a SQL cell
+# MAGIC
+# MAGIC Run the following cell to query a Delta table using SQL. This executes a simple query against a table is backed by a Databricks-provided example dataset included in all DBFS installations.
+
+# COMMAND ----------
+
+# MAGIC %sql
+# MAGIC SELECT * FROM delta.`/databricks-datasets/nyctaxi-with-zipcodes/subsampled`
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC
+# MAGIC Execute the following cell to view the underlying files backing this table.
+
+# COMMAND ----------
+
+files = dbutils.fs.ls("/databricks-datasets/nyctaxi-with-zipcodes/subsampled")
+display(files)
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC
+# MAGIC # Review Changes
+# MAGIC
+# MAGIC Assuming you have imported this material into your workspace using a Databricks Repo, open the Repo dialog by clicking the **`published`** branch button at the top-left corner of this page. You should see three changes:
+# MAGIC 1. **Removed** with the old notebook name
+# MAGIC 1. **Added** with the new notebook name
+# MAGIC 1. **Modified** for creating a markdown cell above
+# MAGIC
+# MAGIC Use the dialog to revert the changes and restore this notebook to its original state.
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC
+# MAGIC ## Wrapping Up
+# MAGIC
+# MAGIC By completing this lab, you should now feel comfortable manipulating notebooks, creating new cells, and running notebooks within notebooks.
+
+# COMMAND ----------
+
+# MAGIC %md-sandbox
+# MAGIC © 2022 Databricks, Inc. All rights reserved.
+# MAGIC Apache, Apache Spark, Spark and the Spark logo are trademarks of the Apache Software Foundation.
+# MAGIC
+# MAGIC Privacy Policy | Terms of Use | Support
diff --git a/Data-Engineering-with-Databricks/Solutions/01 - Databricks Workspace and Services/ExampleSetupFolder/example-setup.py b/Data-Engineering-with-Databricks/Solutions/01 - Databricks Workspace and Services/ExampleSetupFolder/example-setup.py
new file mode 100644
index 0000000..a6603bb
--- /dev/null
+++ b/Data-Engineering-with-Databricks/Solutions/01 - Databricks Workspace and Services/ExampleSetupFolder/example-setup.py
@@ -0,0 +1,8 @@
+# Databricks notebook source
+# ANSWER
+my_name = "Donald Duck"
+
+# COMMAND ----------
+
+example_df = spark.range(16)
+
diff --git a/Data-Engineering-With-Databricks/Solutions/01 - Databricks Lakehouse Platform/DE 1.3.1 - Managing Delta Tables.sql b/Data-Engineering-with-Databricks/Solutions/02 - Delta Lake/DE 2.1 - Managing Delta Tables.sql
similarity index 65%
rename from Data-Engineering-With-Databricks/Solutions/01 - Databricks Lakehouse Platform/DE 1.3.1 - Managing Delta Tables.sql
rename to Data-Engineering-with-Databricks/Solutions/02 - Delta Lake/DE 2.1 - Managing Delta Tables.sql
index 3c225fd..0f7343d 100644
--- a/Data-Engineering-With-Databricks/Solutions/01 - Databricks Lakehouse Platform/DE 1.3.1 - Managing Delta Tables.sql
+++ b/Data-Engineering-with-Databricks/Solutions/02 - Delta Lake/DE 2.1 - Managing Delta Tables.sql
@@ -8,43 +8,53 @@
-- COMMAND ----------
-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC
-- MAGIC # Managing Delta Tables
-- MAGIC
-- MAGIC If you know any flavor of SQL, you already have much of the knowledge you'll need to work effectively in the data lakehouse.
-- MAGIC
--- MAGIC In this notebook, we'll explore the basic of manipulating data and tables with SQL on Databricks.
+-- MAGIC In this notebook, we'll explore basic manipulation of data and tables with SQL on Databricks.
-- MAGIC
-- MAGIC Note that Delta Lake is the default format for all tables created with Databricks; if you've been running SQL statements on Databricks, you're likely already working with Delta Lake.
-- MAGIC
-- MAGIC ## Learning Objectives
--- MAGIC By the end of this lesson, students should feel confident:
--- MAGIC * Creating Delta Lake tables
--- MAGIC * Querying data from Delta Lake tables
--- MAGIC * Inserting, updating, and deleting records in Delta Lake tables
--- MAGIC * Writing upsert statements with Delta Lake
--- MAGIC * Dropping Delta Lake tables
+-- MAGIC By the end of this lesson, you should be able to:
+-- MAGIC * Create Delta Lake tables
+-- MAGIC * Query data from Delta Lake tables
+-- MAGIC * Insert, update, and delete records in Delta Lake tables
+-- MAGIC * Write upsert statements with Delta Lake
+-- MAGIC * Drop Delta Lake tables
-- COMMAND ----------
--- MAGIC %md
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
-- MAGIC ## Run Setup
-- MAGIC The first thing we're going to do is run a setup script. It will define a username, userhome, and database that is scoped to each user.
-- COMMAND ----------
--- MAGIC %run ../Includes/sql-setup $mode="reset"
+-- MAGIC %run ../Includes/Classroom-Setup-2.1
-- COMMAND ----------
-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC
-- MAGIC ## Creating a Delta Table
-- MAGIC
-- MAGIC There's not much code you need to write to create a table with Delta Lake. There are a number of ways to create Delta Lake tables that we'll see throughout the course. We'll begin with one of the easiest methods: registering an empty Delta Lake table.
-- MAGIC
-- MAGIC We need:
--- MAGIC - A `CREATE` statement
--- MAGIC - A table name (below we use `students`)
+-- MAGIC - A **`CREATE TABLE`** statement
+-- MAGIC - A table name (below we use **`students`**)
-- MAGIC - A schema
+-- MAGIC
+-- MAGIC **NOTE:** In Databricks Runtime 8.0 and above, Delta Lake is the default format and you don’t need **`USING DELTA`**.
-- COMMAND ----------
@@ -54,9 +64,12 @@ CREATE TABLE students
-- COMMAND ----------
-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC
-- MAGIC If we try to go back and run that cell again...it will error out! This is expected - because the table exists already, we receive an error.
-- MAGIC
--- MAGIC We can add in an additional argument, `IF NOT EXISTS` which checks if the table exists. This will overcome our error.
+-- MAGIC We can add in an additional argument, **`IF NOT EXISTS`** which checks if the table exists. This will overcome our error.
-- COMMAND ----------
@@ -65,7 +78,10 @@ CREATE TABLE IF NOT EXISTS students
-- COMMAND ----------
--- MAGIC %md
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC
-- MAGIC ## Inserting Data
-- MAGIC Most often, data will be inserted to tables as the result of a query from another source.
-- MAGIC
@@ -80,7 +96,10 @@ INSERT INTO students VALUES (3, "Elia", 3.3);
-- COMMAND ----------
-- MAGIC %md
--- MAGIC In the cell above, we completed three separate `INSERT` statements. Each of these is processed as a separate transaction with its own ACID guarantees. Most frequently, we'll insert many records in a single transaction.
+-- MAGIC
+-- MAGIC
+-- MAGIC
+-- MAGIC In the cell above, we completed three separate **`INSERT`** statements. Each of these is processed as a separate transaction with its own ACID guarantees. Most frequently, we'll insert many records in a single transaction.
-- COMMAND ----------
@@ -93,14 +112,20 @@ VALUES
-- COMMAND ----------
-- MAGIC %md
--- MAGIC Note that Databricks doesn't have a `COMMIT` keyword; transactions run as soon as they're executed, and commit as they succeed.
+-- MAGIC
+-- MAGIC
+-- MAGIC
+-- MAGIC Note that Databricks doesn't have a **`COMMIT`** keyword; transactions run as soon as they're executed, and commit as they succeed.
-- COMMAND ----------
-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC
-- MAGIC ## Querying a Delta Table
-- MAGIC
--- MAGIC You probably won't be suprised that querying a Delta Lake table is as easy as using a standard `SELECT` statement.
+-- MAGIC You probably won't be surprised that querying a Delta Lake table is as easy as using a standard **`SELECT`** statement.
-- COMMAND ----------
@@ -109,18 +134,24 @@ SELECT * FROM students
-- COMMAND ----------
-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC
-- MAGIC What may surprise you is that Delta Lake guarantees that any read against a table will **always** return the most recent version of the table, and that you'll never encounter a state of deadlock due to ongoing operations.
-- MAGIC
--- MAGIC To repeat: table reads can never conflict with other operations, and the newest version of your data is immediately available to all clients that can query your lakehouse. Because all transaction information is stored in cloud object storage alongside your data files, concurrency reads on Delta Lake tables is limited only by the hard limits of object storage on cloud vendors. (**NOTE**: It's not infinite, but it's at least thousands of reads per second.)
+-- MAGIC To repeat: table reads can never conflict with other operations, and the newest version of your data is immediately available to all clients that can query your lakehouse. Because all transaction information is stored in cloud object storage alongside your data files, concurrent reads on Delta Lake tables is limited only by the hard limits of object storage on cloud vendors. (**NOTE**: It's not infinite, but it's at least thousands of reads per second.)
-- COMMAND ----------
-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC
-- MAGIC ## Updating Records
-- MAGIC
--- MAGIC Updating records provides atomic guarantees as well: we perform a snapshot read of the current version of our table, find all fields that match our `WHERE` clause, and then apply the changes as described.
+-- MAGIC Updating records provides atomic guarantees as well: we perform a snapshot read of the current version of our table, find all fields that match our **`WHERE`** clause, and then apply the changes as described.
-- MAGIC
--- MAGIC Below, we find all students that have a name starting with the letter **T** and add 1 to the number in their `value` column.
+-- MAGIC Below, we find all students that have a name starting with the letter **T** and add 1 to the number in their **`value`** column.
-- COMMAND ----------
@@ -131,6 +162,9 @@ WHERE name LIKE "T%"
-- COMMAND ----------
-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC
-- MAGIC Query the table again to see these changes applied.
-- COMMAND ----------
@@ -140,11 +174,14 @@ SELECT * FROM students
-- COMMAND ----------
-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC
-- MAGIC ## Deleting Records
-- MAGIC
-- MAGIC Deletes are also atomic, so there's no risk of only partially succeeding when removing data from your data lakehouse.
-- MAGIC
--- MAGIC A delete statement can remove one or many records, but will always result in a single transaction.
+-- MAGIC A **`DELETE`** statement can remove one or many records, but will always result in a single transaction.
-- COMMAND ----------
@@ -154,11 +191,14 @@ WHERE value > 6
-- COMMAND ----------
-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC
-- MAGIC ## Using Merge
-- MAGIC
-- MAGIC Some SQL systems have the concept of an upsert, which allows updates, inserts, and other data manipulations to be run as a single command.
-- MAGIC
--- MAGIC Databricks uses the `MERGE` keyword to perform this operation.
+-- MAGIC Databricks uses the **`MERGE`** keyword to perform this operation.
-- MAGIC
-- MAGIC Consider the following temporary view, which contains 4 records that might be output by a Change Data Capture (CDC) feed.
@@ -175,13 +215,16 @@ SELECT * FROM updates;
-- COMMAND ----------
-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC
-- MAGIC Using the syntax we've seen so far, we could filter from this view by type to write 3 statements, one each to insert, update, and delete records. But this would result in 3 separate transactions; if any of these transactions were to fail, it might leave our data in an invalid state.
-- MAGIC
-- MAGIC Instead, we combine these actions into a single atomic transaction, applying all 3 types of changes together.
-- MAGIC
--- MAGIC `MERGE` statements must have at least one field to match on, and each `WHEN MATCHED` or `WHEN NOT MATCHED` clause can have any number of additional conditional statements.
+-- MAGIC **`MERGE`** statements must have at least one field to match on, and each **`WHEN MATCHED`** or **`WHEN NOT MATCHED`** clause can have any number of additional conditional statements.
-- MAGIC
--- MAGIC Here, we match on our `id` field and then filter on the `type` field to appropriately update, delete, or insert our records.
+-- MAGIC Here, we match on our **`id`** field and then filter on the **`type`** field to appropriately update, delete, or insert our records.
-- COMMAND ----------
@@ -198,16 +241,22 @@ WHEN NOT MATCHED AND u.type = "insert"
-- COMMAND ----------
-- MAGIC %md
--- MAGIC Note that only 3 records were impacted by our `MERGE` statement; one of the records in our updates table did not have a matching `id` in the students table but was marked as an `update`. Based on our custom logic, we ignored this record rather than inserting it.
-- MAGIC
--- MAGIC How would you modify the above statement to include unmatched records marked `update` in the final `INSERT` clause?
+-- MAGIC
+-- MAGIC
+-- MAGIC Note that only 3 records were impacted by our **`MERGE`** statement; one of the records in our updates table did not have a matching **`id`** in the students table but was marked as an **`update`**. Based on our custom logic, we ignored this record rather than inserting it.
+-- MAGIC
+-- MAGIC How would you modify the above statement to include unmatched records marked **`update`** in the final **`INSERT`** clause?
-- COMMAND ----------
-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC
-- MAGIC ## Dropping a Table
-- MAGIC
--- MAGIC Assuming that you have proper permissions on the target table, you can permanently delete data in the lakehouse using a `DROP TABLE` command.
+-- MAGIC Assuming that you have proper permissions on the target table, you can permanently delete data in the lakehouse using a **`DROP TABLE`** command.
-- MAGIC
-- MAGIC **NOTE**: Later in the course, we'll discuss Table Access Control Lists (ACLs) and default permissions. In a properly configured lakehouse, users should **not** be able to delete production tables.
@@ -217,6 +266,19 @@ DROP TABLE students
-- COMMAND ----------
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC
+-- MAGIC Run the following cell to delete the tables and files associated with this lesson.
+
+-- COMMAND ----------
+
+-- MAGIC %python
+-- MAGIC DA.cleanup()
+
+-- COMMAND ----------
+
-- MAGIC %md-sandbox
-- MAGIC © 2022 Databricks, Inc. All rights reserved.
-- MAGIC Apache, Apache Spark, Spark and the Spark logo are trademarks of the Apache Software Foundation.
diff --git a/Data-Engineering-With-Databricks/Solutions/01 - Databricks Lakehouse Platform/Labs/DE 1.3.2L - Manipulating Tables with Delta Lake.sql b/Data-Engineering-with-Databricks/Solutions/02 - Delta Lake/DE 2.2L - Manipulating Tables with Delta Lake Lab.sql
similarity index 87%
rename from Data-Engineering-With-Databricks/Solutions/01 - Databricks Lakehouse Platform/Labs/DE 1.3.2L - Manipulating Tables with Delta Lake.sql
rename to Data-Engineering-with-Databricks/Solutions/02 - Delta Lake/DE 2.2L - Manipulating Tables with Delta Lake Lab.sql
index ddedbe6..8abd21e 100644
--- a/Data-Engineering-With-Databricks/Solutions/01 - Databricks Lakehouse Platform/Labs/DE 1.3.2L - Manipulating Tables with Delta Lake.sql
+++ b/Data-Engineering-with-Databricks/Solutions/02 - Delta Lake/DE 2.2L - Manipulating Tables with Delta Lake Lab.sql
@@ -8,39 +8,48 @@
-- COMMAND ----------
-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC
-- MAGIC # Manipulating Tables with Delta Lake
-- MAGIC
-- MAGIC This notebook provides a hands-on review of some of the basic functionality of Delta Lake.
-- MAGIC
-- MAGIC ## Learning Objectives
--- MAGIC By the end of this lessons, student will be able to:
+-- MAGIC By the end of this lab, you should be able to:
-- MAGIC - Execute standard operations to create and manipulate Delta Lake tables, including:
--- MAGIC - `CREATE TABLE`
--- MAGIC - `INSERT INTO`
--- MAGIC - `SELECT FROM`
--- MAGIC - `UPDATE`
--- MAGIC - `DELETE`
--- MAGIC - `MERGE`
--- MAGIC - `DROP TABLE`
+-- MAGIC - **`CREATE TABLE`**
+-- MAGIC - **`INSERT INTO`**
+-- MAGIC - **`SELECT FROM`**
+-- MAGIC - **`UPDATE`**
+-- MAGIC - **`DELETE`**
+-- MAGIC - **`MERGE`**
+-- MAGIC - **`DROP TABLE`**
-- COMMAND ----------
-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC
-- MAGIC ## Setup
-- MAGIC Run the following script to setup necessary variables and clear out past runs of this notebook. Note that re-executing this cell will allow you to start the lab over.
-- COMMAND ----------
--- MAGIC %run ../../Includes/sql-setup $course="delta" $mode="reset"
+-- MAGIC %run ../Includes/Classroom-Setup-2.2L
-- COMMAND ----------
-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC
-- MAGIC ## Create a Table
-- MAGIC
-- MAGIC In this notebook, we'll be creating a table to track our bean collection.
-- MAGIC
--- MAGIC Use the cell below to create a managed Delta Lake table named `beans`.
+-- MAGIC Use the cell below to create a managed Delta Lake table named **`beans`**.
-- MAGIC
-- MAGIC Provide the following schema:
-- MAGIC
@@ -60,6 +69,9 @@ CREATE TABLE beans
-- COMMAND ----------
-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC
-- MAGIC **NOTE**: We'll use Python to run checks occasionally throughout the lab. The following cell will return as error with a message on what needs to change if you have not followed instructions. No output from cell execution means that you have completed this step.
-- COMMAND ----------
@@ -72,6 +84,8 @@ CREATE TABLE beans
-- COMMAND ----------
-- MAGIC %md
+-- MAGIC
+-- MAGIC
-- MAGIC ## Insert Data
-- MAGIC
-- MAGIC Run the following cell to insert three rows into the table.
@@ -86,6 +100,9 @@ INSERT INTO beans VALUES
-- COMMAND ----------
-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC
-- MAGIC Manually review the table contents to ensure data was written as expected.
-- COMMAND ----------
@@ -96,6 +113,9 @@ SELECT * FROM beans
-- COMMAND ----------
-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC
-- MAGIC Insert the additional records provided below. Make sure you execute this as a single transaction.
-- COMMAND ----------
@@ -109,6 +129,9 @@ INSERT INTO beans VALUES
-- COMMAND ----------
-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC
-- MAGIC Run the cell below to confirm the data is in the proper state.
-- COMMAND ----------
@@ -121,6 +144,9 @@ INSERT INTO beans VALUES
-- COMMAND ----------
-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC
-- MAGIC ## Update Records
-- MAGIC
-- MAGIC A friend is reviewing your inventory of beans. After much debate, you agree that jelly beans are delicious.
@@ -136,9 +162,12 @@ WHERE name = "jelly"
-- COMMAND ----------
-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC
-- MAGIC You realize that you've accidentally entered the weight of your pinto beans incorrectly.
-- MAGIC
--- MAGIC Update the `grams` column for this record to the correct weight of 1500.
+-- MAGIC Update the **`grams`** column for this record to the correct weight of 1500.
-- COMMAND ----------
@@ -150,6 +179,9 @@ WHERE name = 'pinto'
-- COMMAND ----------
-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC
-- MAGIC Run the cell below to confirm this has completed properly.
-- COMMAND ----------
@@ -164,6 +196,9 @@ WHERE name = 'pinto'
-- COMMAND ----------
-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC
-- MAGIC ## Delete Records
-- MAGIC
-- MAGIC You've decided that you only want to keep track of delicious beans.
@@ -179,6 +214,9 @@ WHERE delicious = false
-- COMMAND ----------
-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC
-- MAGIC Run the following cell to confirm this operation was successful.
-- COMMAND ----------
@@ -190,6 +228,9 @@ WHERE delicious = false
-- COMMAND ----------
-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC
-- MAGIC ## Using Merge to Upsert Records
-- MAGIC
-- MAGIC Your friend gives you some new beans. The cell below registers these as a temporary view.
@@ -207,7 +248,10 @@ SELECT * FROM new_beans
-- COMMAND ----------
-- MAGIC %md
--- MAGIC In the cell below, use the above view to write a merge statement to update and insert new records to your `beans` table as one transaction.
+-- MAGIC
+-- MAGIC
+-- MAGIC
+-- MAGIC In the cell below, use the above view to write a merge statement to update and insert new records to your **`beans`** table as one transaction.
-- MAGIC
-- MAGIC Make sure your logic:
-- MAGIC - Matches beans by name **and** color
@@ -228,6 +272,9 @@ WHEN NOT MATCHED AND b.delicious = true THEN
-- COMMAND ----------
-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC
-- MAGIC Run the cell below to check your work.
-- COMMAND ----------
@@ -245,13 +292,16 @@ WHEN NOT MATCHED AND b.delicious = true THEN
-- COMMAND ----------
-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC
-- MAGIC ## Dropping Tables
-- MAGIC
-- MAGIC When working with managed Delta Lake tables, dropping a table results in permanently deleting access to the table and all underlying data files.
-- MAGIC
-- MAGIC **NOTE**: Later in the course, we'll learn about external tables, which approach Delta Lake tables as a collection of files and have different persistence guarantees.
-- MAGIC
--- MAGIC In the cell below, write a query to drop the `beans` table.
+-- MAGIC In the cell below, write a query to drop the **`beans`** table.
-- COMMAND ----------
@@ -261,6 +311,9 @@ DROP TABLE beans
-- COMMAND ----------
-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC
-- MAGIC Run the cell below to assert that your table no longer exists.
-- COMMAND ----------
@@ -271,16 +324,26 @@ DROP TABLE beans
-- COMMAND ----------
-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC
-- MAGIC ## Wrapping Up
-- MAGIC
-- MAGIC By completing this lab, you should now feel comfortable:
-- MAGIC * Completing standard Delta Lake table creation and data manipulation commands
+
+-- COMMAND ----------
+
+-- MAGIC %md
-- MAGIC
--- MAGIC Run the following cell to remove the database and all data associated with this lab.
+-- MAGIC
+-- MAGIC
+-- MAGIC Run the following cell to delete the tables and files associated with this lesson.
-- COMMAND ----------
--- MAGIC %run ../../Includes/sql-setup $course="delta" $mode="cleanup"
+-- MAGIC %python
+-- MAGIC DA.cleanup()
-- COMMAND ----------
diff --git a/Data-Engineering-With-Databricks/Solutions/01 - Databricks Lakehouse Platform/DE 1.3.3 - Advanced Delta Lake Features.sql b/Data-Engineering-with-Databricks/Solutions/02 - Delta Lake/DE 2.3 - Advanced Delta Lake Features.sql
similarity index 59%
rename from Data-Engineering-With-Databricks/Solutions/01 - Databricks Lakehouse Platform/DE 1.3.3 - Advanced Delta Lake Features.sql
rename to Data-Engineering-with-Databricks/Solutions/02 - Delta Lake/DE 2.3 - Advanced Delta Lake Features.sql
index f0be390..3bded34 100644
--- a/Data-Engineering-With-Databricks/Solutions/01 - Databricks Lakehouse Platform/DE 1.3.3 - Advanced Delta Lake Features.sql
+++ b/Data-Engineering-with-Databricks/Solutions/02 - Delta Lake/DE 2.3 - Advanced Delta Lake Features.sql
@@ -8,6 +8,8 @@
-- COMMAND ----------
-- MAGIC %md
+-- MAGIC
+-- MAGIC
-- MAGIC # Advanced Delta Lake Features
-- MAGIC
-- MAGIC Now that you feel comfortable performing basic data tasks with Delta Lake, we can discuss a few features unique to Delta Lake.
@@ -15,30 +17,38 @@
-- MAGIC Note that while some of the keywords used here aren't part of standard ANSI SQL, all Delta Lake operations can be run on Databricks using SQL
-- MAGIC
-- MAGIC ## Learning Objectives
--- MAGIC By the end of this lesson, students should feel confident:
--- MAGIC * Using `OPTIMIZE` to compact small files
--- MAGIC * Using `ZORDER` to index tables
--- MAGIC * Describing the directory structure of Delta Lake files
--- MAGIC * Reviewing a history of table transactions
--- MAGIC * Querying and rolling back to previous table version
--- MAGIC * Cleaning up stale data files with `VACUUM`
+-- MAGIC By the end of this lesson, you should be able to:
+-- MAGIC * Use **`OPTIMIZE`** to compact small files
+-- MAGIC * Use **`ZORDER`** to index tables
+-- MAGIC * Describe the directory structure of Delta Lake files
+-- MAGIC * Review a history of table transactions
+-- MAGIC * Query and roll back to previous table version
+-- MAGIC * Clean up stale data files with **`VACUUM`**
+-- MAGIC
+-- MAGIC **Resources**
+-- MAGIC * Delta Optimize - Databricks Docs
+-- MAGIC * Delta Vacuum - Databricks Docs
-- COMMAND ----------
--- MAGIC %md
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
-- MAGIC ## Run Setup
-- MAGIC The first thing we're going to do is run a setup script. It will define a username, userhome, and database that is scoped to each user.
-- COMMAND ----------
--- MAGIC %run ../Includes/sql-setup $mode="reset"
+-- MAGIC %run ../Includes/Classroom-Setup-2.3
-- COMMAND ----------
-- MAGIC %md
+-- MAGIC
+-- MAGIC
-- MAGIC ## Creating a Delta Table with History
-- MAGIC
--- MAGIC The cell below condenses all the transactions from the previous lesson into a single cell. (Except for the `DROP TABLE`!)
+-- MAGIC The cell below condenses all the transactions from the previous lesson into a single cell. (Except for the **`DROP TABLE`**!)
-- MAGIC
-- MAGIC As you're waiting for this query to run, see if you can identify the total number of transactions being executed.
@@ -83,11 +93,13 @@ WHEN NOT MATCHED AND u.type = "insert"
-- COMMAND ----------
-- MAGIC %md
+-- MAGIC
+-- MAGIC
-- MAGIC ## Examine Table Details
-- MAGIC
-- MAGIC Databricks uses a Hive metastore by default to register databases, tables, and views.
-- MAGIC
--- MAGIC Using `DESCRIBE EXTENDED` allows us to see important metadata about our table.
+-- MAGIC Using **`DESCRIBE EXTENDED`** allows us to see important metadata about our table.
-- COMMAND ----------
@@ -96,13 +108,28 @@ DESCRIBE EXTENDED students
-- COMMAND ----------
-- MAGIC %md
--- MAGIC Note the `Location` field.
+-- MAGIC
+-- MAGIC
+-- MAGIC **`DESCRIBE DETAIL`** is another command that allows us to explore table metadata.
+
+-- COMMAND ----------
+
+DESCRIBE DETAIL students
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC Note the **`Location`** field.
-- MAGIC
-- MAGIC While we've so far been thinking about our table as just a relational entity within a database, a Delta Lake table is actually backed by a collection of files stored in cloud object storage.
-- COMMAND ----------
-- MAGIC %md
+-- MAGIC
+-- MAGIC
-- MAGIC ## Explore Delta Lake Files
-- MAGIC
-- MAGIC We can see the files backing our Delta Lake table by using a Databricks Utilities function.
@@ -112,37 +139,43 @@ DESCRIBE EXTENDED students
-- COMMAND ----------
-- MAGIC %python
--- MAGIC display(dbutils.fs.ls(f"{userhome}/students"))
+-- MAGIC display(dbutils.fs.ls(f"{DA.paths.user_db}/students"))
-- COMMAND ----------
-- MAGIC %md
--- MAGIC Note that our directory contains a number of Parquet data files and a directory named `_delta_log`.
+-- MAGIC
+-- MAGIC
+-- MAGIC Note that our directory contains a number of Parquet data files and a directory named **`_delta_log`**.
-- MAGIC
-- MAGIC Records in Delta Lake tables are stored as data in Parquet files.
-- MAGIC
--- MAGIC Transactions to Delta Lake tables are recorded in the `_delta_log`.
+-- MAGIC Transactions to Delta Lake tables are recorded in the **`_delta_log`**.
-- MAGIC
--- MAGIC We can peak inside the `_delta_log` to see more.
+-- MAGIC We can peek inside the **`_delta_log`** to see more.
-- COMMAND ----------
-- MAGIC %python
--- MAGIC display(dbutils.fs.ls(f"{userhome}/students/_delta_log"))
+-- MAGIC display(dbutils.fs.ls(f"{DA.paths.user_db}/students/_delta_log"))
-- COMMAND ----------
-- MAGIC %md
+-- MAGIC
+-- MAGIC
-- MAGIC Each transaction results in a new JSON file being written to the Delta Lake transaction log. Here, we can see that there are 8 total transactions against this table (Delta Lake is 0 indexed).
-- COMMAND ----------
-- MAGIC %md
+-- MAGIC
+-- MAGIC
-- MAGIC ## Reasoning about Data Files
-- MAGIC
-- MAGIC We just saw a lot of data files for what is obviously a very small table.
-- MAGIC
--- MAGIC `DESCRIBE DETAIL` allows us to see some other details about our Delta table, including the number of files.
+-- MAGIC **`DESCRIBE DETAIL`** allows us to see some other details about our Delta table, including the number of files.
-- COMMAND ----------
@@ -151,36 +184,42 @@ DESCRIBE DETAIL students
-- COMMAND ----------
-- MAGIC %md
--- MAGIC Here we see that our table currently contains 3 data files in its present version. So what are all those other Parquet files doing in our table directory?
+-- MAGIC
+-- MAGIC
+-- MAGIC Here we see that our table currently contains 4 data files in its present version. So what are all those other Parquet files doing in our table directory?
-- MAGIC
-- MAGIC Rather than overwriting or immediately deleting files containing changed data, Delta Lake uses the transaction log to indicate whether or not files are valid in a current version of the table.
-- MAGIC
--- MAGIC Here, we'll look at the transaction log corresponding the `MERGE` statement above, where records were inserted, updated, and deleted.
+-- MAGIC Here, we'll look at the transaction log corresponding the **`MERGE`** statement above, where records were inserted, updated, and deleted.
-- COMMAND ----------
-- MAGIC %python
--- MAGIC display(spark.sql(f"SELECT * FROM json.`{userhome}/students/_delta_log/00000000000000000007.json`"))
+-- MAGIC display(spark.sql(f"SELECT * FROM json.`{DA.paths.user_db}/students/_delta_log/00000000000000000007.json`"))
-- COMMAND ----------
-- MAGIC %md
--- MAGIC The `add` column contains a list of all the new files written to our table; the `remove` column indicates those files that no longer should be included in our table.
+-- MAGIC
+-- MAGIC
+-- MAGIC The **`add`** column contains a list of all the new files written to our table; the **`remove`** column indicates those files that no longer should be included in our table.
-- MAGIC
-- MAGIC When we query a Delta Lake table, the query engine uses the transaction logs to resolve all the files that are valid in the current version, and ignores all other data files.
-- COMMAND ----------
-- MAGIC %md
+-- MAGIC
+-- MAGIC
-- MAGIC ## Compacting Small Files and Indexing
-- MAGIC
-- MAGIC Small files can occur for a variety of reasons; in our case, we performed a number of operations where only one or several records were inserted.
-- MAGIC
--- MAGIC Files will be combined toward an optimal size (scaled based on the size of the table) by using the `OPTIMIZE` command.
+-- MAGIC Files will be combined toward an optimal size (scaled based on the size of the table) by using the **`OPTIMIZE`** command.
-- MAGIC
--- MAGIC `OPTIMIZE` will replace existing data files by combining records and rewriting the results.
+-- MAGIC **`OPTIMIZE`** will replace existing data files by combining records and rewriting the results.
-- MAGIC
--- MAGIC When executing `OPTIMIZE`, users can optionally specify one or several fields for `ZORDER` indexing. While the specific math of Z-order is unimportant, it speeds up data retrieval when filtering on provided fields by collocating data with similar values within data files.
+-- MAGIC When executing **`OPTIMIZE`**, users can optionally specify one or several fields for **`ZORDER`** indexing. While the specific math of Z-order is unimportant, it speeds up data retrieval when filtering on provided fields by colocating data with similar values within data files.
-- COMMAND ----------
@@ -190,14 +229,18 @@ ZORDER BY id
-- COMMAND ----------
-- MAGIC %md
--- MAGIC Given how small our data is, `ZORDER` does not provide any benefit, but we can see all of the metrics that result from this operation.
+-- MAGIC
+-- MAGIC
+-- MAGIC Given how small our data is, **`ZORDER`** does not provide any benefit, but we can see all of the metrics that result from this operation.
-- COMMAND ----------
-- MAGIC %md
+-- MAGIC
+-- MAGIC
-- MAGIC ## Reviewing Delta Lake Transactions
-- MAGIC
--- MAGIC Because all changes to the Delta Lake table are stored in the transaction log, we can easily review the history of our table.
+-- MAGIC Because all changes to the Delta Lake table are stored in the transaction log, we can easily review the table history.
-- COMMAND ----------
@@ -206,7 +249,9 @@ DESCRIBE HISTORY students
-- COMMAND ----------
-- MAGIC %md
--- MAGIC As expected, `OPTIMIZE` created another version of our table, meaning that version 8 is our most current version.
+-- MAGIC
+-- MAGIC
+-- MAGIC As expected, **`OPTIMIZE`** created another version of our table, meaning that version 8 is our most current version.
-- MAGIC
-- MAGIC Remember all of those extra data files that had been marked as removed in our transaction log? These provide us with the ability to query previous versions of our table.
-- MAGIC
@@ -222,11 +267,15 @@ FROM students VERSION AS OF 3
-- COMMAND ----------
-- MAGIC %md
+-- MAGIC
+-- MAGIC
-- MAGIC What's important to note about time travel is that we're not recreating a previous state of the table by undoing transactions against our current version; rather, we're just querying all those data files that were indicated as valid as of the specified version.
-- COMMAND ----------
-- MAGIC %md
+-- MAGIC
+-- MAGIC
-- MAGIC ## Rollback Versions
-- MAGIC
-- MAGIC Suppose you're typing up query to manually delete some records from a table and you accidentally execute this query in the following state.
@@ -238,7 +287,9 @@ DELETE FROM students
-- COMMAND ----------
-- MAGIC %md
--- MAGIC Note that when we see a `-1` for number of rows affected by a delete, this means an entire directory of data has been removed.
+-- MAGIC
+-- MAGIC
+-- MAGIC Note that when we see a **`-1`** for number of rows affected by a delete, this means an entire directory of data has been removed.
-- MAGIC
-- MAGIC Let's confirm this below.
@@ -249,6 +300,8 @@ SELECT * FROM students
-- COMMAND ----------
-- MAGIC %md
+-- MAGIC
+-- MAGIC
-- MAGIC Deleting all the records in your table is probably not a desired outcome. Luckily, we can simply rollback this commit.
-- COMMAND ----------
@@ -258,38 +311,40 @@ RESTORE TABLE students TO VERSION AS OF 8
-- COMMAND ----------
-- MAGIC %md
--- MAGIC Note that a `RESTORE` command is recorded as a transaction; you won't be able to completely hide the fact that you accidentally deleted all the records in the table, but you will be able to undo the operation and bring your table back to a desired state.
+-- MAGIC
+-- MAGIC
+-- MAGIC Note that a **`RESTORE`** command is recorded as a transaction; you won't be able to completely hide the fact that you accidentally deleted all the records in the table, but you will be able to undo the operation and bring your table back to a desired state.
-- COMMAND ----------
-- MAGIC %md
+-- MAGIC
+-- MAGIC
-- MAGIC ## Cleaning Up Stale Files
-- MAGIC
-- MAGIC Databricks will automatically clean up stale files in Delta Lake tables.
-- MAGIC
-- MAGIC While Delta Lake versioning and time travel are great for querying recent versions and rolling back queries, keeping the data files for all versions of large production tables around indefinitely is very expensive (and can lead to compliance issues if PII is present).
-- MAGIC
--- MAGIC If you wish to manually purge old data files, this can be performed with the `VACUUM` operation.
+-- MAGIC If you wish to manually purge old data files, this can be performed with the **`VACUUM`** operation.
-- MAGIC
--- MAGIC Let's do this below with a retention of `0 HOURS` to only keep our current version.
+-- MAGIC Uncomment the following cell and execute it with a retention of **`0 HOURS`** to keep only the current version:
-- COMMAND ----------
-VACUUM students RETAIN 0 HOURS
+-- VACUUM students RETAIN 0 HOURS
-- COMMAND ----------
-- MAGIC %md
--- MAGIC By default, `VACUUM` will prevent you from deleting files less than 7 days old, just to ensure that no long-running operations are still referencing any of the files to be deleted. We turned off the setting that prese
-- MAGIC
--- MAGIC In our demos, you may see Databricks executing code that specifies a retention of `0 HOURS`. This is almost exclusively for demo purposes. There are some instances where a power user of Databricks may need to perform this operation, **you should probably never do this on a production table.**
-- MAGIC
--- MAGIC That being said, let's do it here.
+-- MAGIC By default, **`VACUUM`** will prevent you from deleting files less than 7 days old, just to ensure that no long-running operations are still referencing any of the files to be deleted. If you run **`VACUUM`** on a Delta table, you lose the ability time travel back to a version older than the specified data retention period. In our demos, you may see Databricks executing code that specifies a retention of **`0 HOURS`**. This is simply to demonstrate the feature and is not typically done in production.
-- MAGIC
-- MAGIC In the following cell, we:
--- MAGIC * Turn off a check to prevent premature deletion of data files
--- MAGIC * Make sure that logging of `VACUUM` commands is enabled
--- MAGIC * Use the `DRY RUN` version of vacuum to print out all records to be deleted
+-- MAGIC 1. Turn off a check to prevent premature deletion of data files
+-- MAGIC 1. Make sure that logging of **`VACUUM`** commands is enabled
+-- MAGIC 1. Use the **`DRY RUN`** version of vacuum to print out all records to be deleted
-- COMMAND ----------
@@ -301,7 +356,9 @@ VACUUM students RETAIN 0 HOURS DRY RUN
-- COMMAND ----------
-- MAGIC %md
--- MAGIC By running `VACUUM` and deleting the 9 files above, we will permanently remove access to versions of the table that require these files to materialize.
+-- MAGIC
+-- MAGIC
+-- MAGIC By running **`VACUUM`** and deleting the 10 files above, we will permanently remove access to versions of the table that require these files to materialize.
-- COMMAND ----------
@@ -310,12 +367,26 @@ VACUUM students RETAIN 0 HOURS
-- COMMAND ----------
-- MAGIC %md
--- MAGIC Because of the way the Delta Cache works, we may still be able to query previous versions of the table on the currently active cluster until it restarts. However, listing out our table directory will show that files have been successfully deleted.
+-- MAGIC
+-- MAGIC
+-- MAGIC Check the table directory to show that files have been successfully deleted.
+
+-- COMMAND ----------
+
+-- MAGIC %python
+-- MAGIC display(dbutils.fs.ls(f"{DA.paths.user_db}/students"))
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC Run the following cell to delete the tables and files associated with this lesson.
-- COMMAND ----------
-- MAGIC %python
--- MAGIC display(dbutils.fs.ls(f"{userhome}/students"))
+-- MAGIC DA.cleanup()
-- COMMAND ----------
diff --git a/Data-Engineering-With-Databricks/Solutions/01 - Databricks Lakehouse Platform/Labs/DE 1.3.4L - Delta Lake Versioning, Optimization, and Vacuuming.sql b/Data-Engineering-with-Databricks/Solutions/02 - Delta Lake/DE 2.4L - Delta Lake Versioning, Optimization, and Vacuuming Lab.sql
similarity index 74%
rename from Data-Engineering-With-Databricks/Solutions/01 - Databricks Lakehouse Platform/Labs/DE 1.3.4L - Delta Lake Versioning, Optimization, and Vacuuming.sql
rename to Data-Engineering-with-Databricks/Solutions/02 - Delta Lake/DE 2.4L - Delta Lake Versioning, Optimization, and Vacuuming Lab.sql
index 56b7e33..35c502c 100644
--- a/Data-Engineering-With-Databricks/Solutions/01 - Databricks Lakehouse Platform/Labs/DE 1.3.4L - Delta Lake Versioning, Optimization, and Vacuuming.sql
+++ b/Data-Engineering-with-Databricks/Solutions/02 - Delta Lake/DE 2.4L - Delta Lake Versioning, Optimization, and Vacuuming Lab.sql
@@ -8,12 +8,14 @@
-- COMMAND ----------
-- MAGIC %md
+-- MAGIC
+-- MAGIC
-- MAGIC # Delta Lake Versioning, Optimization, and Vacuuming
-- MAGIC
-- MAGIC This notebook provides a hands-on review of some of the more esoteric features Delta Lake brings to the data lakehouse.
-- MAGIC
-- MAGIC ## Learning Objectives
--- MAGIC By the end of this lessons, student will be able to:
+-- MAGIC By the end of this lab, you should be able to:
-- MAGIC - Review table history
-- MAGIC - Query previous table versions and rollback a table to a specific version
-- MAGIC - Perform file compaction and Z-order indexing
@@ -22,21 +24,25 @@
-- COMMAND ----------
-- MAGIC %md
+-- MAGIC
+-- MAGIC
-- MAGIC ## Setup
-- MAGIC Run the following script to setup necessary variables and clear out past runs of this notebook. Note that re-executing this cell will allow you to start the lab over.
-- COMMAND ----------
--- MAGIC %run ../../Includes/sql-setup $course="delta" $mode="reset"
+-- MAGIC %run ../Includes/Classroom-Setup-2.4L
-- COMMAND ----------
-- MAGIC %md
+-- MAGIC
+-- MAGIC
-- MAGIC ## Recreate the History of your Bean Collection
-- MAGIC
--- MAGIC This lab picks up where the last lab left off. The cell below condenses all the operations from the last lab into a single cell (other than the final `DROP TABLE` statement).
+-- MAGIC This lab picks up where the last lab left off. The cell below condenses all the operations from the last lab into a single cell (other than the final **`DROP TABLE`** statement).
-- MAGIC
--- MAGIC For quick reference, the schema of the `beans` table created is:
+-- MAGIC For quick reference, the schema of the **`beans`** table created is:
-- MAGIC
-- MAGIC | Field Name | Field type |
-- MAGIC | --- | --- |
@@ -88,11 +94,13 @@ WHEN NOT MATCHED AND b.delicious = true THEN
-- COMMAND ----------
-- MAGIC %md
+-- MAGIC
+-- MAGIC
-- MAGIC ## Review the Table History
-- MAGIC
-- MAGIC Delta Lake's transaction log stores information about each transaction that modifies a table's contents or settings.
-- MAGIC
--- MAGIC Review the history of the `beans` table below.
+-- MAGIC Review the history of the **`beans`** table below.
-- COMMAND ----------
@@ -102,6 +110,8 @@ DESCRIBE HISTORY beans
-- COMMAND ----------
-- MAGIC %md
+-- MAGIC
+-- MAGIC
-- MAGIC If all the previous operations were completed as described you should see 7 versions of the table (**NOTE**: Delta Lake versioning starts with 0, so the max version number will be 6).
-- MAGIC
-- MAGIC The operations should be as follows:
@@ -116,15 +126,17 @@ DESCRIBE HISTORY beans
-- MAGIC | 5 | DELETE |
-- MAGIC | 6 | MERGE |
-- MAGIC
--- MAGIC The `operationsParameters` column will let you review predicates used for updates, deletes, and merges. The `operationMetrics` column indicates how many rows and files are added in each operation.
+-- MAGIC The **`operationsParameters`** column will let you review predicates used for updates, deletes, and merges. The **`operationMetrics`** column indicates how many rows and files are added in each operation.
-- MAGIC
-- MAGIC Spend some time reviewing the Delta Lake history to understand which table version matches with a given transaction.
-- MAGIC
--- MAGIC **NOTE**: The `version` column designates the state of a table once a given transaction completes. The `readVersion` column indicates the version of the table an operation executed against. In this simple demo (with no concurrent transactions), this relationship should always increment by 1.
+-- MAGIC **NOTE**: The **`version`** column designates the state of a table once a given transaction completes. The **`readVersion`** column indicates the version of the table an operation executed against. In this simple demo (with no concurrent transactions), this relationship should always increment by 1.
-- COMMAND ----------
-- MAGIC %md
+-- MAGIC
+-- MAGIC
-- MAGIC ## Query a Specific Version
-- MAGIC
-- MAGIC After reviewing the table history, you decide you want to view the state of your table after your very first data was inserted.
@@ -138,6 +150,8 @@ SELECT * FROM beans VERSION AS OF 1
-- COMMAND ----------
-- MAGIC %md
+-- MAGIC
+-- MAGIC
-- MAGIC And now review the current state of your data.
-- COMMAND ----------
@@ -147,9 +161,11 @@ SELECT * FROM beans
-- COMMAND ----------
-- MAGIC %md
+-- MAGIC
+-- MAGIC
-- MAGIC You want to review the weights of your beans before you deleted any records.
-- MAGIC
--- MAGIC Fill in the query below to register and query a temporary view of the version just before data was deleted.
+-- MAGIC Fill in the statement below to register a temporary view of the version just before data was deleted, then run the following cell to query the view.
-- COMMAND ----------
@@ -157,11 +173,15 @@ SELECT * FROM beans
CREATE OR REPLACE TEMP VIEW pre_delete_vw AS
SELECT * FROM beans VERSION AS OF 4;
+-- COMMAND ----------
+
SELECT * FROM pre_delete_vw
-- COMMAND ----------
-- MAGIC %md
+-- MAGIC
+-- MAGIC
-- MAGIC Run the cell below to check that you have captured the correct version.
-- COMMAND ----------
@@ -174,11 +194,13 @@ SELECT * FROM pre_delete_vw
-- COMMAND ----------
-- MAGIC %md
+-- MAGIC
+-- MAGIC
-- MAGIC ## Restore a Previous Version
-- MAGIC
-- MAGIC Apparently there was a misunderstanding; the beans your friend gave you that you merged into your collection were not intended for you to keep.
-- MAGIC
--- MAGIC Revert your table to the version before this `MERGE` statement completed.
+-- MAGIC Revert your table to the version before this **`MERGE`** statement completed.
-- COMMAND ----------
@@ -188,6 +210,8 @@ RESTORE TABLE beans TO VERSION AS OF 5
-- COMMAND ----------
-- MAGIC %md
+-- MAGIC
+-- MAGIC
-- MAGIC Review the history of your table. Make note of the fact that restoring to a previous version adds another table version.
-- COMMAND ----------
@@ -204,10 +228,12 @@ DESCRIBE HISTORY beans
-- COMMAND ----------
-- MAGIC %md
+-- MAGIC
+-- MAGIC
-- MAGIC ## File Compaction
-- MAGIC Looking at the transaction metrics during your reversion, you are surprised you have some many files for such a small collection of data.
-- MAGIC
--- MAGIC While indexing on a table of this size is unlikely to improve performance, you decide to add a Z-order index on the `name` field in anticipation of your bean collection growing exponentially over time.
+-- MAGIC While indexing on a table of this size is unlikely to improve performance, you decide to add a Z-order index on the **`name`** field in anticipation of your bean collection growing exponentially over time.
-- MAGIC
-- MAGIC Use the cell below to perform file compaction and Z-order indexing.
@@ -220,6 +246,8 @@ ZORDER BY name
-- COMMAND ----------
-- MAGIC %md
+-- MAGIC
+-- MAGIC
-- MAGIC Your data should have been compacted to a single file; confirm this manually by running the following cell.
-- COMMAND ----------
@@ -229,6 +257,8 @@ DESCRIBE DETAIL beans
-- COMMAND ----------
-- MAGIC %md
+-- MAGIC
+-- MAGIC
-- MAGIC Run the cell below to check that you've successfully optimized and indexed your table.
-- COMMAND ----------
@@ -241,19 +271,21 @@ DESCRIBE DETAIL beans
-- COMMAND ----------
-- MAGIC %md
+-- MAGIC
+-- MAGIC
-- MAGIC ## Cleaning Up Stale Data Files
-- MAGIC
--- MAGIC You know that while all your data now resides in 1 data file, the data files from previous versions of your table are still being stored alongside this. You wish to remove these files and remove access to previous versions of the table by running `VACUUM` on the table.
+-- MAGIC You know that while all your data now resides in 1 data file, the data files from previous versions of your table are still being stored alongside this. You wish to remove these files and remove access to previous versions of the table by running **`VACUUM`** on the table.
-- MAGIC
--- MAGIC Executing `VACUUM` performs garbage cleanup on the table directory. By default, a retention threshold of 7 days will be enforced.
+-- MAGIC Executing **`VACUUM`** performs garbage cleanup on the table directory. By default, a retention threshold of 7 days will be enforced.
-- MAGIC
-- MAGIC The cell below modifies some Spark configurations. The first command overrides the retention threshold check to allow us to demonstrate permanent removal of data.
-- MAGIC
-- MAGIC **NOTE**: Vacuuming a production table with a short retention can lead to data corruption and/or failure of long-running queries. This is for demonstration purposes only and extreme caution should be used when disabling this setting.
-- MAGIC
--- MAGIC The second command sets `spark.databricks.delta.vacuum.logging.enabled` to `true` to ensures that the `VACUUM` operation is recorded in the transaction log.
+-- MAGIC The second command sets **`spark.databricks.delta.vacuum.logging.enabled`** to **`true`** to ensure that the **`VACUUM`** operation is recorded in the transaction log.
-- MAGIC
--- MAGIC **NOTE**: Because of slight differences in storage protocols on various clouds, logging `VACUUM` commands is not on by default for some clouds as of DBR 9.1.
+-- MAGIC **NOTE**: Because of slight differences in storage protocols on various clouds, logging **`VACUUM`** commands is not on by default for some clouds as of DBR 9.1.
-- COMMAND ----------
@@ -263,7 +295,9 @@ SET spark.databricks.delta.vacuum.logging.enabled = true;
-- COMMAND ----------
-- MAGIC %md
--- MAGIC Before permanently deleting data files, review them manually using the `DRY RUN` command.
+-- MAGIC
+-- MAGIC
+-- MAGIC Before permanently deleting data files, review them manually using the **`DRY RUN`** option.
-- COMMAND ----------
@@ -272,9 +306,11 @@ VACUUM beans RETAIN 0 HOURS DRY RUN
-- COMMAND ----------
-- MAGIC %md
+-- MAGIC
+-- MAGIC
-- MAGIC All data files not in the current version of the table will be shown in the preview above.
-- MAGIC
--- MAGIC Run the command again without `DRY RUN` to permanently delete these files.
+-- MAGIC Run the command again without **`DRY RUN`** to permanently delete these files.
-- MAGIC
-- MAGIC **NOTE**: All previous versions of the table will no longer be accessible.
@@ -285,7 +321,9 @@ VACUUM beans RETAIN 0 HOURS
-- COMMAND ----------
-- MAGIC %md
--- MAGIC Because `VACUUM` can be such a destructive act for important datasets, it's always a good idea to turn the retention duration check back on. Run the cell below to reactive this setting.
+-- MAGIC
+-- MAGIC
+-- MAGIC Because **`VACUUM`** can be such a destructive act for important datasets, it's always a good idea to turn the retention duration check back on. Run the cell below to reactive this setting.
-- COMMAND ----------
@@ -294,7 +332,9 @@ SET spark.databricks.delta.retentionDurationCheck.enabled = true
-- COMMAND ----------
-- MAGIC %md
--- MAGIC Note that the table history will indicate the user that completed the `VACUUM` operation, the number of files deleted, and log that the retention check was disabled during this operation.
+-- MAGIC
+-- MAGIC
+-- MAGIC Note that the table history will indicate the user that completed the **`VACUUM`** operation, the number of files deleted, and log that the retention check was disabled during this operation.
-- COMMAND ----------
@@ -303,6 +343,8 @@ DESCRIBE HISTORY beans
-- COMMAND ----------
-- MAGIC %md
+-- MAGIC
+-- MAGIC
-- MAGIC Query your table again to confirm you still have access to the current version.
-- COMMAND ----------
@@ -312,32 +354,42 @@ SELECT * FROM beans
-- COMMAND ----------
-- MAGIC %md
--- MAGIC Note that because Delta Cache stores copies of files queried in the current session on storage volumes deployed to your currently active cluster, you may still be able to temporarily access previous table versions (though systems should **not** be designed to expect this behavior). Restarting the cluster will ensure that these cached data files are permanently purged.
+-- MAGIC
+-- MAGIC
+-- MAGIC
Because Delta Cache stores copies of files queried in the current session on storage volumes deployed to your currently active cluster, you may still be able to temporarily access previous table versions (though systems should **not** be designed to expect this behavior).
+-- MAGIC
+-- MAGIC Restarting the cluster will ensure that these cached data files are permanently purged.
+-- MAGIC
+-- MAGIC You can see an example of this by uncommenting and running the following cell that may, or may not, fail
+-- MAGIC (depending on the state of the cache).
-- COMMAND ----------
-SELECT * FROM beans@v1
+-- SELECT * FROM beans@v1
-- COMMAND ----------
-- MAGIC %md
--- MAGIC ## Wrapping Up
-- MAGIC
--- MAGIC Run the following cell to remove the database and all data associated with this lab.
+-- MAGIC
+-- MAGIC By completing this lab, you should now feel comfortable:
+-- MAGIC * Completing standard Delta Lake table creation and data manipulation commands
+-- MAGIC * Reviewing table metadata including table history
+-- MAGIC * Leverage Delta Lake versioning for snapshot queries and rollbacks
+-- MAGIC * Compacting small files and indexing tables
+-- MAGIC * Using **`VACUUM`** to review files marked for deletion and committing these deletes
-- COMMAND ----------
--- MAGIC %run ../../Includes/sql-setup $course="delta" $mode="cleanup"
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC Run the following cell to delete the tables and files associated with this lesson.
-- COMMAND ----------
--- MAGIC %md
--- MAGIC By completing this lab, you should now feel comfortable:
--- MAGIC * Completing standard Delta Lake table creation and data manipulation commands
--- MAGIC * Reviewing table metadata including table history
--- MAGIC * Leverage Delta Lake versioning for snapshot queries and rollbacks
--- MAGIC * Compacting small files and indexing tables
--- MAGIC * Using `VACUUM` to review files marked for deletion and committing these deletes
+-- MAGIC %python
+-- MAGIC DA.cleanup()
-- COMMAND ----------
diff --git a/Data-Engineering-With-Databricks/Solutions/02 - ELT with Spark SQL and Python/DE 2.1.1 - Databases and Tables on Databricks.sql b/Data-Engineering-with-Databricks/Solutions/03 - Relational Entities on Databricks/DE 3.1 - Databases and Tables on Databricks.sql
similarity index 51%
rename from Data-Engineering-With-Databricks/Solutions/02 - ELT with Spark SQL and Python/DE 2.1.1 - Databases and Tables on Databricks.sql
rename to Data-Engineering-with-Databricks/Solutions/03 - Relational Entities on Databricks/DE 3.1 - Databases and Tables on Databricks.sql
index 9401dd3..d600477 100644
--- a/Data-Engineering-With-Databricks/Solutions/02 - ELT with Spark SQL and Python/DE 2.1.1 - Databases and Tables on Databricks.sql
+++ b/Data-Engineering-with-Databricks/Solutions/03 - Relational Entities on Databricks/DE 3.1 - Databases and Tables on Databricks.sql
@@ -8,36 +8,42 @@
-- COMMAND ----------
-- MAGIC %md
+-- MAGIC
+-- MAGIC
-- MAGIC # Databases and Tables on Databricks
-- MAGIC In this demonstration, you will create and explore databases and tables.
-- MAGIC
-- MAGIC ## Learning Objectives
--- MAGIC By the end of this lesson, you will be able to:
+-- MAGIC By the end of this lesson, you should be able to:
-- MAGIC * Use Spark SQL DDL to define databases and tables
--- MAGIC * Describe how the `LOCATION` keyword impacts the default storage directory
+-- MAGIC * Describe how the **`LOCATION`** keyword impacts the default storage directory
-- MAGIC
-- MAGIC
-- MAGIC
-- MAGIC **Resources**
--- MAGIC * [Databases and Tables - Databricks Docs](https://docs.databricks.com/user-guide/tables.html)
--- MAGIC * [Managed and Unmanaged Tables](https://docs.databricks.com/user-guide/tables.html#managed-and-unmanaged-tables)
--- MAGIC * [Creating a Table with the UI](https://docs.databricks.com/user-guide/tables.html#create-a-table-using-the-ui)
--- MAGIC * [Create a Local Table](https://docs.databricks.com/user-guide/tables.html#create-a-local-table)
--- MAGIC * [Saving to Persistent Tables](https://spark.apache.org/docs/latest/sql-data-sources-load-save-functions.html#saving-to-persistent-tables)
+-- MAGIC * Databases and Tables - Databricks Docs
+-- MAGIC * Managed and Unmanaged Tables
+-- MAGIC * Creating a Table with the UI
+-- MAGIC * Create a Local Table
+-- MAGIC * Saving to Persistent Tables
-- COMMAND ----------
-- MAGIC %md
+-- MAGIC
+-- MAGIC
-- MAGIC ## Lesson Setup
-- MAGIC The following script clears out previous runs of this demo and configures some Hive variables that will be used in our SQL queries.
-- COMMAND ----------
--- MAGIC %run ../Includes/setup-meta
+-- MAGIC %run ../Includes/Classroom-Setup-3.1
-- COMMAND ----------
-- MAGIC %md
+-- MAGIC
+-- MAGIC
-- MAGIC ## Using Hive Variables
-- MAGIC
-- MAGIC While not a pattern that is generally recommended in Spark SQL, this notebook will use some Hive variables to substitute in string values derived from the account email of the current user.
@@ -46,59 +52,76 @@
-- COMMAND ----------
-SELECT "${c.database}";
+SELECT "${da.db_name}" AS db_name,
+ "${da.paths.working_dir}" AS working_dir
-- COMMAND ----------
-- MAGIC %md
+-- MAGIC
+-- MAGIC
-- MAGIC Because you may be working in a shared workspace, this course uses variables derived from your username so the databases don't conflict with other users. Again, consider this use of Hive variables a hack for our lesson environment rather than a good practice for development.
-- COMMAND ----------
--- MAGIC %md
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
-- MAGIC ## Databases
-- MAGIC Let's start by creating two databases:
--- MAGIC - One with no LOCATION specified
--- MAGIC - One with LOCATION specified
+-- MAGIC - One with no **`LOCATION`** specified
+-- MAGIC - One with **`LOCATION`** specified
-- COMMAND ----------
-CREATE DATABASE IF NOT EXISTS ${c.database}_default_location;
-CREATE DATABASE IF NOT EXISTS ${c.database}_custom_location LOCATION '${c.userhome}';
+CREATE DATABASE IF NOT EXISTS ${da.db_name}_default_location;
+CREATE DATABASE IF NOT EXISTS ${da.db_name}_custom_location LOCATION '${da.paths.working_dir}/_custom_location.db';
-- COMMAND ----------
--- MAGIC %md
--- MAGIC Note that the location of the first database is in the default location under `dbfs:/user/hive/warehouse/`
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC Note that the location of the first database is in the default location under **`dbfs:/user/hive/warehouse/`** and that the database directory is the name of the database with the **`.db`** extension
-- COMMAND ----------
-DESCRIBE DATABASE EXTENDED ${c.database}_default_location;
+DESCRIBE DATABASE EXTENDED ${da.db_name}_default_location;
-- COMMAND ----------
-- MAGIC %md
--- MAGIC Note that the location of the second database is in the directory specified after the `LOCATION` keyword.
+-- MAGIC
+-- MAGIC
+-- MAGIC Note that the location of the second database is in the directory specified after the **`LOCATION`** keyword.
-- COMMAND ----------
-DESCRIBE DATABASE EXTENDED ${c.database}_custom_location;
+DESCRIBE DATABASE EXTENDED ${da.db_name}_custom_location;
-- COMMAND ----------
--- MAGIC %md
--- MAGIC We will create a table in the database with default location and insert data. Note that the schema must be provided because there are no data from which to infer the schema.
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC We will create a table in the database with default location and insert data.
+-- MAGIC
+-- MAGIC Note that the schema must be provided because there is no data from which to infer the schema.
-- COMMAND ----------
-USE ${c.database}_default_location;
+USE ${da.db_name}_default_location;
+
CREATE OR REPLACE TABLE managed_table_in_db_with_default_location (width INT, length INT, height INT);
-INSERT INTO managed_table_in_db_with_default_location VALUES (3, 2, 1);
+INSERT INTO managed_table_in_db_with_default_location
+VALUES (3, 2, 1);
SELECT * FROM managed_table_in_db_with_default_location;
-- COMMAND ----------
--- MAGIC %md
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
-- MAGIC We can look at the extended table description to find the location (you'll need to scroll down in the results).
-- COMMAND ----------
@@ -108,18 +131,30 @@ DESCRIBE EXTENDED managed_table_in_db_with_default_location;
-- COMMAND ----------
-- MAGIC %md
--- MAGIC By default, managed tables in a database without the location specified will be created in the `dbfs:/user/hive/warehouse/.db/` directory.
+-- MAGIC
+-- MAGIC
+-- MAGIC By default, managed tables in a database without the location specified will be created in the **`dbfs:/user/hive/warehouse/.db/`** directory.
-- MAGIC
-- MAGIC We can see that, as expected, the data and metadata for our Delta Table are stored in that location.
-- COMMAND ----------
-- MAGIC %python
--- MAGIC display(dbutils.fs.ls(f"dbfs:/user/hive/warehouse/{database}_default_location.db/managed_table_in_db_with_default_location"))
+-- MAGIC hive_root = f"dbfs:/user/hive/warehouse"
+-- MAGIC db_name = f"{DA.db_name}_default_location.db"
+-- MAGIC table_name = f"managed_table_in_db_with_default_location"
+-- MAGIC
+-- MAGIC tbl_location = f"{hive_root}/{db_name}/{table_name}"
+-- MAGIC print(tbl_location)
+-- MAGIC
+-- MAGIC files = dbutils.fs.ls(tbl_location)
+-- MAGIC display(files)
-- COMMAND ----------
--- MAGIC %md
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
-- MAGIC Drop the table.
-- COMMAND ----------
@@ -128,29 +163,41 @@ DROP TABLE managed_table_in_db_with_default_location;
-- COMMAND ----------
--- MAGIC %md
--- MAGIC Note the table's folder and its log and data file are deleted.
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC Note the table's directory and its log and data files are deleted. Only the database directory remains.
-- COMMAND ----------
-- MAGIC %python
--- MAGIC dbutils.fs.ls(f"dbfs:/user/hive/warehouse/{database}_default_location.db")
+-- MAGIC
+-- MAGIC db_location = f"{hive_root}/{db_name}"
+-- MAGIC print(db_location)
+-- MAGIC dbutils.fs.ls(db_location)
-- COMMAND ----------
--- MAGIC %md
--- MAGIC We now create a table in the database with custom location and insert data. Note that the schema must be provided because there are no data from which to infer the schema.
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC We now create a table in the database with custom location and insert data.
+-- MAGIC
+-- MAGIC Note that the schema must be provided because there is no data from which to infer the schema.
-- COMMAND ----------
-USE ${c.database}_custom_location;
+USE ${da.db_name}_custom_location;
+
CREATE OR REPLACE TABLE managed_table_in_db_with_custom_location (width INT, length INT, height INT);
INSERT INTO managed_table_in_db_with_custom_location VALUES (3, 2, 1);
SELECT * FROM managed_table_in_db_with_custom_location;
-- COMMAND ----------
--- MAGIC %md
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
-- MAGIC Again, we'll look at the description to find the table location.
-- COMMAND ----------
@@ -159,17 +206,27 @@ DESCRIBE EXTENDED managed_table_in_db_with_custom_location;
-- COMMAND ----------
--- MAGIC %md
--- MAGIC As expected, this managed table is created in the path specified with the `LOCATION` keyword during database creation. As such, the data and metadata for the table are persisted in a directory here.
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC As expected, this managed table is created in the path specified with the **`LOCATION`** keyword during database creation. As such, the data and metadata for the table are persisted in a directory here.
-- COMMAND ----------
-- MAGIC %python
--- MAGIC display(dbutils.fs.ls(f"{userhome}/managed_table_in_db_with_custom_location"))
+-- MAGIC
+-- MAGIC table_name = f"managed_table_in_db_with_custom_location"
+-- MAGIC tbl_location = f"{DA.paths.working_dir}/_custom_location.db/{table_name}"
+-- MAGIC print(tbl_location)
+-- MAGIC
+-- MAGIC files = dbutils.fs.ls(tbl_location)
+-- MAGIC display(files)
-- COMMAND ----------
--- MAGIC %md
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
-- MAGIC Let's drop the table.
-- COMMAND ----------
@@ -178,40 +235,51 @@ DROP TABLE managed_table_in_db_with_custom_location;
-- COMMAND ----------
--- MAGIC %md
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
-- MAGIC Note the table's folder and the log file and data file are deleted.
-- MAGIC
--- MAGIC Only the "datasets" folder remains.
+-- MAGIC Only the database location remains
-- COMMAND ----------
-- MAGIC %python
--- MAGIC dbutils.fs.ls(userhome)
+-- MAGIC
+-- MAGIC db_location = f"{DA.paths.working_dir}/_custom_location.db"
+-- MAGIC print(db_location)
+-- MAGIC
+-- MAGIC dbutils.fs.ls(db_location)
-- COMMAND ----------
--- MAGIC %md
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
-- MAGIC ## Tables
--- MAGIC We will create an external (unmanaged) table from sample data. The data we are going to use are in csv format. We want to create a Delta table with a LOCATION provided in the directory of our choice.
+-- MAGIC We will create an external (unmanaged) table from sample data.
+-- MAGIC
+-- MAGIC The data we are going to use are in CSV format. We want to create a Delta table with a **`LOCATION`** provided in the directory of our choice.
-- COMMAND ----------
-USE ${c.database}_default_location;
+USE ${da.db_name}_default_location;
--- mode "FAILFAST" will abort file parsing with a RuntimeException if any malformed lines are encountered
CREATE OR REPLACE TEMPORARY VIEW temp_delays USING CSV OPTIONS (
- path '${c.userhome}/datasets/flights/departuredelays.csv',
- header "true",
- mode "FAILFAST"
+ path = '${da.paths.working_dir}/flights/departuredelays.csv',
+ header = "true",
+ mode = "FAILFAST" -- abort file parsing with a RuntimeException if any malformed lines are encountered
);
-CREATE OR REPLACE TABLE external_table LOCATION '${c.userhome}/external_table' AS
+CREATE OR REPLACE TABLE external_table LOCATION '${da.paths.working_dir}/external_table' AS
SELECT * FROM temp_delays;
SELECT * FROM external_table;
-- COMMAND ----------
--- MAGIC %md
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
-- MAGIC Let's note the location of the table's data in this lesson's working directory.
-- COMMAND ----------
@@ -220,7 +288,9 @@ DESCRIBE TABLE EXTENDED external_table;
-- COMMAND ----------
--- MAGIC %md
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
-- MAGIC Now, we drop the table.
-- COMMAND ----------
@@ -229,34 +299,42 @@ DROP TABLE external_table;
-- COMMAND ----------
--- MAGIC %md
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
-- MAGIC The table definition no longer exists in the metastore, but the underlying data remain intact.
-- COMMAND ----------
-- MAGIC %python
--- MAGIC display(dbutils.fs.ls(f"{userhome}/external_table"))
+-- MAGIC tbl_path = f"{DA.paths.working_dir}/external_table"
+-- MAGIC files = dbutils.fs.ls(tbl_path)
+-- MAGIC display(files)
-- COMMAND ----------
--- MAGIC %md
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
-- MAGIC ## Clean up
-- MAGIC Drop both databases.
-- COMMAND ----------
-DROP DATABASE ${c.database}_default_location CASCADE;
-DROP DATABASE ${c.database}_custom_location CASCADE;
+DROP DATABASE ${da.db_name}_default_location CASCADE;
+DROP DATABASE ${da.db_name}_custom_location CASCADE;
-- COMMAND ----------
-- MAGIC %md
--- MAGIC Delete the working directory and its contents.
+-- MAGIC
+-- MAGIC
+-- MAGIC Run the following cell to delete the tables and files associated with this lesson.
-- COMMAND ----------
-- MAGIC %python
--- MAGIC dbutils.fs.rm(userhome, True)
+-- MAGIC DA.cleanup()
-- COMMAND ----------
diff --git a/Data-Engineering-with-Databricks/Solutions/03 - Relational Entities on Databricks/DE 3.2A - Views and CTEs on Databricks.sql b/Data-Engineering-with-Databricks/Solutions/03 - Relational Entities on Databricks/DE 3.2A - Views and CTEs on Databricks.sql
new file mode 100644
index 0000000..10fd81d
--- /dev/null
+++ b/Data-Engineering-with-Databricks/Solutions/03 - Relational Entities on Databricks/DE 3.2A - Views and CTEs on Databricks.sql
@@ -0,0 +1,210 @@
+-- Databricks notebook source
+-- MAGIC %md-sandbox
+-- MAGIC
+-- MAGIC
+-- MAGIC

+-- MAGIC
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC # Views and CTEs on Databricks
+-- MAGIC In this demonstration, you will create and explore views and common table expressions (CTEs).
+-- MAGIC
+-- MAGIC ## Learning Objectives
+-- MAGIC By the end of this lesson, you should be able to:
+-- MAGIC * Use Spark SQL DDL to define views
+-- MAGIC * Run queries that use common table expressions
+-- MAGIC
+-- MAGIC
+-- MAGIC
+-- MAGIC **Resources**
+-- MAGIC * Create View - Databricks Docs
+-- MAGIC * Common Table Expressions - Databricks Docs
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC ## Classroom Setup
+-- MAGIC The following script clears out previous runs of this demo and configures some Hive variables that will be used in our SQL queries.
+
+-- COMMAND ----------
+
+-- MAGIC %run ../Includes/Classroom-Setup-3.2A
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC We start by creating a table of data we can use for the demonstration.
+
+-- COMMAND ----------
+
+-- mode "FAILFAST" will abort file parsing with a RuntimeException if any malformed lines are encountered
+CREATE TABLE external_table
+USING CSV OPTIONS (
+ path = '${da.paths.working_dir}/flight_delays',
+ header = "true",
+ mode = "FAILFAST"
+);
+
+SELECT * FROM external_table;
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC
+-- MAGIC To show a list of tables (and views), we use the **`SHOW TABLES`** command also demonstrated below.
+
+-- COMMAND ----------
+
+SHOW TABLES;
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC
+-- MAGIC ## Views, Temp Views & Global Temp Views
+-- MAGIC
+-- MAGIC To set this demonstration up, we are going to first create one of each type of view.
+-- MAGIC
+-- MAGIC Then in the next notebook, we will explore the differences between how each one behaves.
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC ### Views
+-- MAGIC Let's create a view that contains only the data where the origin is "ABQ" and the destination is "LAX".
+
+-- COMMAND ----------
+
+CREATE VIEW view_delays_abq_lax AS
+ SELECT *
+ FROM external_table
+ WHERE origin = 'ABQ' AND destination = 'LAX';
+
+SELECT * FROM view_delays_abq_lax;
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC
+-- MAGIC Note that the **`view_delays_abq_lax`** view has been added to the list below:
+
+-- COMMAND ----------
+
+SHOW TABLES;
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC ### Temporary Views
+-- MAGIC
+-- MAGIC Next we'll create a temporary view.
+-- MAGIC
+-- MAGIC The syntax is very similar but adds **`TEMPORARY`** to the command.
+
+-- COMMAND ----------
+
+CREATE TEMPORARY VIEW temp_view_delays_gt_120
+AS SELECT * FROM external_table WHERE delay > 120 ORDER BY delay ASC;
+
+SELECT * FROM temp_view_delays_gt_120;
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC
+-- MAGIC Now if we show our tables again, we will see the one table and both views.
+-- MAGIC
+-- MAGIC Make note of the values in the **`isTemporary`** column.
+
+-- COMMAND ----------
+
+SHOW TABLES;
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC
+-- MAGIC ### Global Temp Views
+-- MAGIC
+-- MAGIC Lastly, we'll create a global temp view.
+-- MAGIC
+-- MAGIC Here we simply add **`GLOBAL`** to the command.
+-- MAGIC
+-- MAGIC Also note the **`global_temp`** database qualifer in the subsequent **`SELECT`** statement.
+
+-- COMMAND ----------
+
+CREATE GLOBAL TEMPORARY VIEW global_temp_view_dist_gt_1000
+AS SELECT * FROM external_table WHERE distance > 1000;
+
+SELECT * FROM global_temp.global_temp_view_dist_gt_1000;
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC
+-- MAGIC Before we move on, review one last time the database's tables and views...
+
+-- COMMAND ----------
+
+SHOW TABLES;
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC
+-- MAGIC ...and the tables and views in the **`global_temp`** database:
+
+-- COMMAND ----------
+
+SHOW TABLES IN global_temp;
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC
+-- MAGIC Next we are going to demonstrate how tables and views are persisted across multiple sessions and how temp views are not.
+-- MAGIC
+-- MAGIC To do this simply open the next notebook, [DE 3.2B - Views and CTEs on Databricks, Cont]($./DE 3.2B - Views and CTEs on Databricks, Cont), and continue with the lesson.
+-- MAGIC
+-- MAGIC
Note: There are several scenarios in which a new session may be created:
+-- MAGIC * Restarting a cluster
+-- MAGIC * Detaching and reataching to a cluster
+-- MAGIC * Installing a python package which in turn restarts the Python interpreter
+-- MAGIC * Or simply opening a new notebook
+
+-- COMMAND ----------
+
+-- MAGIC %md-sandbox
+-- MAGIC © 2022 Databricks, Inc. All rights reserved.
+-- MAGIC Apache, Apache Spark, Spark and the Spark logo are trademarks of the Apache Software Foundation.
+-- MAGIC
+-- MAGIC Privacy Policy | Terms of Use | Support
diff --git a/Data-Engineering-with-Databricks/Solutions/03 - Relational Entities on Databricks/DE 3.2B - Views and CTEs on Databricks, Cont.sql b/Data-Engineering-with-Databricks/Solutions/03 - Relational Entities on Databricks/DE 3.2B - Views and CTEs on Databricks, Cont.sql
new file mode 100644
index 0000000..b00468c
--- /dev/null
+++ b/Data-Engineering-with-Databricks/Solutions/03 - Relational Entities on Databricks/DE 3.2B - Views and CTEs on Databricks, Cont.sql
@@ -0,0 +1,262 @@
+-- Databricks notebook source
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC # Views and CTEs on Databricks, Cont'
+-- MAGIC
+-- MAGIC We are picking up from notebook [DE 3.2A - Views and CTEs on Databricks]($./DE 3.2A - Views and CTEs on Databricks) where we just reviewed the following two lists of tables
+-- MAGIC and views with the special note that our global temp view **`global_temp_view_dist_gt_1000`** was not included in the first list.
+
+-- COMMAND ----------
+
+-- MAGIC %md-sandbox
+-- MAGIC
+-- MAGIC
+-- MAGIC
+-- MAGIC
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC
+-- MAGIC With the Notebook's state reset, we need to re-initialize some of our lesson-specific configuration.
+-- MAGIC
+-- MAGIC Note: We will **NOT** be recreating the database for the second 1/2 of this lesson.
+
+-- COMMAND ----------
+
+-- MAGIC %run ../Includes/Classroom-Setup-3.2B
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC
+-- MAGIC But, we do need to configure this session to use our database by default.
+
+-- COMMAND ----------
+
+USE ${da.db_name};
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC
+-- MAGIC Finally, run the following two cells to confirm that:
+-- MAGIC 1. The table **`external_table`** still exists.
+-- MAGIC 2. The view **`view_delays_abq_lax`** still exists.
+-- MAGIC 3. The temp view **`temp_view_delays_gt_120`** does **NOT** exist.
+-- MAGIC 3. The global temp view **`global_temp_view_dist_gt_1000`** does exist in the special **`global_temp`** database.
+-- MAGIC
+-- MAGIC
Hint: If you were to go back to the previous notebook and run **`SHOW TABLES`**
+-- MAGIC again, all three tables and views from the current database will still be shown.
+
+-- COMMAND ----------
+
+SHOW TABLES;
+
+-- COMMAND ----------
+
+SHOW TABLES IN global_temp;
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC
+-- MAGIC As mentioned previously, temp views are tied to a Spark session and as such are not accessible...
+-- MAGIC * After restarting a cluster
+-- MAGIC * After detaching and reataching to a cluster
+-- MAGIC * After installing a python package which in turn restarts the Python interpreter
+-- MAGIC * Or from another notebook
+-- MAGIC
+-- MAGIC ...with the special exception of global temporary views.
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC
+-- MAGIC Global temp views behave much like other temporary views but differ in one important way.
+-- MAGIC
+-- MAGIC They are added to the **`global_temp`** database that exists on the **`cluster`**.
+-- MAGIC
+-- MAGIC As long as the cluster is running, this database persists and any notebooks attached to the cluster can access its global temporary views.
+-- MAGIC
+-- MAGIC We can see this in action by running the follow cells:
+
+-- COMMAND ----------
+
+SELECT * FROM global_temp.global_temp_view_dist_gt_1000;
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC
+-- MAGIC Global temp views are "lost" when the cluster is restarted.
+-- MAGIC
+-- MAGIC Take our word for it, don't do it now, but if you were to restart the cluster, the above select statement would fail because the table would no longer exist.
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC ## Common Table Expressions (CTEs)
+-- MAGIC CTEs can be used in a variety of contexts. Below, are a few examples of the different ways a CTE can be used in a query. First, an example of making multiple column aliases using a CTE.
+
+-- COMMAND ----------
+
+WITH flight_delays(
+ total_delay_time,
+ origin_airport,
+ destination_airport
+) AS (
+ SELECT
+ delay,
+ origin,
+ destination
+ FROM
+ external_table
+)
+SELECT
+ *
+FROM
+ flight_delays
+WHERE
+ total_delay_time > 120
+ AND origin_airport = "ATL"
+ AND destination_airport = "DEN";
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC Next, is an example of a CTE in a CTE definition.
+
+-- COMMAND ----------
+
+WITH lax_bos AS (
+ WITH origin_destination (origin_airport, destination_airport) AS (
+ SELECT
+ origin,
+ destination
+ FROM
+ external_table
+ )
+ SELECT
+ *
+ FROM
+ origin_destination
+ WHERE
+ origin_airport = 'LAX'
+ AND destination_airport = 'BOS'
+)
+SELECT
+ count(origin_airport) AS `Total Flights from LAX to BOS`
+FROM
+ lax_bos;
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC Now, here is an example of a CTE in a subquery.
+
+-- COMMAND ----------
+
+SELECT
+ max(total_delay) AS `Longest Delay (in minutes)`
+FROM
+ (
+ WITH delayed_flights(total_delay) AS (
+ SELECT
+ delay
+ FROM
+ external_table
+ )
+ SELECT
+ *
+ FROM
+ delayed_flights
+ );
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC We can also use a CTE in a subquery expression.
+
+-- COMMAND ----------
+
+SELECT
+ (
+ WITH distinct_origins AS (
+ SELECT DISTINCT origin FROM external_table
+ )
+ SELECT
+ count(origin) AS `Number of Distinct Origins`
+ FROM
+ distinct_origins
+ ) AS `Number of Different Origin Airports`;
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC Finally, here is a CTE in a **`CREATE VIEW`** statement.
+
+-- COMMAND ----------
+
+CREATE OR REPLACE VIEW BOS_LAX
+AS WITH origin_destination(origin_airport, destination_airport)
+AS (SELECT origin, destination FROM external_table)
+SELECT * FROM origin_destination
+WHERE origin_airport = 'BOS' AND destination_airport = 'LAX';
+
+SELECT count(origin_airport) AS `Number of Delayed Flights from BOS to LAX` FROM BOS_LAX;
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC ## Clean up
+-- MAGIC We first drop the training database.
+
+-- COMMAND ----------
+
+DROP DATABASE ${da.db_name} CASCADE;
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC Run the following cell to delete the tables and files associated with this lesson.
+
+-- COMMAND ----------
+
+-- MAGIC %python
+-- MAGIC DA.cleanup()
+
+-- COMMAND ----------
+
+-- MAGIC %md-sandbox
+-- MAGIC © 2022 Databricks, Inc. All rights reserved.
+-- MAGIC Apache, Apache Spark, Spark and the Spark logo are trademarks of the Apache Software Foundation.
+-- MAGIC
+-- MAGIC Privacy Policy | Terms of Use | Support
diff --git a/Data-Engineering-with-Databricks/Solutions/03 - Relational Entities on Databricks/DE 3.3L - Databases, Tables & Views Lab.sql b/Data-Engineering-with-Databricks/Solutions/03 - Relational Entities on Databricks/DE 3.3L - Databases, Tables & Views Lab.sql
new file mode 100644
index 0000000..d13ba0c
--- /dev/null
+++ b/Data-Engineering-with-Databricks/Solutions/03 - Relational Entities on Databricks/DE 3.3L - Databases, Tables & Views Lab.sql
@@ -0,0 +1,514 @@
+-- Databricks notebook source
+-- MAGIC %md-sandbox
+-- MAGIC
+-- MAGIC
+-- MAGIC

+-- MAGIC
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC # Databases, Tables, and Views Lab
+-- MAGIC
+-- MAGIC ## Learning Objectives
+-- MAGIC By the end of this lab, you should be able to:
+-- MAGIC - Create and explore interactions between various relational entities, including:
+-- MAGIC - Databases
+-- MAGIC - Tables (managed and external)
+-- MAGIC - Views (views, temp views, and global temp views)
+-- MAGIC
+-- MAGIC **Resources**
+-- MAGIC * Databases and Tables - Databricks Docs
+-- MAGIC * Managed and Unmanaged Tables
+-- MAGIC * Creating a Table with the UI
+-- MAGIC * Create a Local Table
+-- MAGIC * Saving to Persistent Tables
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC ### Getting Started
+-- MAGIC
+-- MAGIC Run the following cell to configure variables and datasets for this lesson.
+
+-- COMMAND ----------
+
+-- MAGIC %run ../Includes/Classroom-Setup-3.3L
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC ## Overview of the Data
+-- MAGIC
+-- MAGIC The data include multiple entries from a selection of weather stations, including average temperatures recorded in either Fahrenheit or Celsius. The schema for the table:
+-- MAGIC
+-- MAGIC |ColumnName | DataType| Description|
+-- MAGIC |------------|---------|------------|
+-- MAGIC |NAME |string | Station name |
+-- MAGIC |STATION |string | Unique ID |
+-- MAGIC |LATITUDE |float | Latitude |
+-- MAGIC |LONGITUDE |float | Longitude |
+-- MAGIC |ELEVATION |float | Elevation |
+-- MAGIC |DATE |date | YYYY-MM-DD |
+-- MAGIC |UNIT |string | Temperature units |
+-- MAGIC |TAVG |float | Average temperature |
+-- MAGIC
+-- MAGIC This data is stored in the Parquet format; preview the data with the query below.
+
+-- COMMAND ----------
+
+SELECT *
+FROM parquet.`${da.paths.working_dir}/weather`
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC ## Create a Database
+-- MAGIC
+-- MAGIC Create a database in the default location using the **`da.db_name`** variable defined in setup script.
+
+-- COMMAND ----------
+
+-- ANSWER
+CREATE DATABASE IF NOT EXISTS ${da.db_name}
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC Run the cell below to check your work.
+
+-- COMMAND ----------
+
+-- MAGIC %python
+-- MAGIC assert spark.sql(f"SHOW DATABASES").filter(f"databaseName == '{DA.db_name}'").count() == 1, "Database not present"
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC ## Change to Your New Database
+-- MAGIC
+-- MAGIC **`USE`** your newly created database.
+
+-- COMMAND ----------
+
+-- ANSWER
+USE ${da.db_name}
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC Run the cell below to check your work.
+
+-- COMMAND ----------
+
+-- MAGIC %python
+-- MAGIC assert spark.sql(f"SHOW CURRENT DATABASE").first()["namespace"] == DA.db_name, "Not using the correct database"
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC ## Create a Managed Table
+-- MAGIC Use a CTAS statement to create a managed table named **`weather_managed`**.
+
+-- COMMAND ----------
+
+-- ANSWER
+
+CREATE TABLE weather_managed AS
+SELECT *
+FROM parquet.`${da.paths.working_dir}/weather`
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC Run the cell below to check your work.
+
+-- COMMAND ----------
+
+-- MAGIC %python
+-- MAGIC assert spark.table("weather_managed"), "Table named `weather_managed` does not exist"
+-- MAGIC assert spark.table("weather_managed").count() == 2559, "Incorrect row count"
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC ## Create an External Table
+-- MAGIC
+-- MAGIC Recall that an external table differs from a managed table through specification of a location. Create an external table called **`weather_external`** below.
+
+-- COMMAND ----------
+
+-- ANSWER
+
+CREATE TABLE weather_external
+LOCATION "${da.paths.working_dir}/lab/external"
+AS SELECT *
+FROM parquet.`${da.paths.working_dir}/weather`
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC Run the cell below to check your work.
+
+-- COMMAND ----------
+
+-- MAGIC %python
+-- MAGIC assert spark.table("weather_external"), "Table named `weather_external` does not exist"
+-- MAGIC assert spark.table("weather_external").count() == 2559, "Incorrect row count"
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC ## Examine Table Details
+-- MAGIC Use the SQL command **`DESCRIBE EXTENDED table_name`** to examine the two weather tables.
+
+-- COMMAND ----------
+
+DESCRIBE EXTENDED weather_managed
+
+-- COMMAND ----------
+
+DESCRIBE EXTENDED weather_external
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC Run the following helper code to extract and compare the table locations.
+
+-- COMMAND ----------
+
+-- MAGIC %python
+-- MAGIC def getTableLocation(tableName):
+-- MAGIC return spark.sql(f"DESCRIBE DETAIL {tableName}").select("location").first()[0]
+
+-- COMMAND ----------
+
+-- MAGIC %python
+-- MAGIC managedTablePath = getTableLocation("weather_managed")
+-- MAGIC externalTablePath = getTableLocation("weather_external")
+-- MAGIC
+-- MAGIC print(f"""The weather_managed table is saved at:
+-- MAGIC
+-- MAGIC {managedTablePath}
+-- MAGIC
+-- MAGIC The weather_external table is saved at:
+-- MAGIC
+-- MAGIC {externalTablePath}""")
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC List the contents of these directories to confirm that data exists in both locations.
+
+-- COMMAND ----------
+
+-- MAGIC %python
+-- MAGIC files = dbutils.fs.ls(managedTablePath)
+-- MAGIC display(files)
+
+-- COMMAND ----------
+
+-- MAGIC %python
+-- MAGIC files = dbutils.fs.ls(externalTablePath)
+-- MAGIC display(files)
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC ### Check Directory Contents after Dropping Database and All Tables
+-- MAGIC The **`CASCADE`** keyword will accomplish this.
+
+-- COMMAND ----------
+
+-- ANSWER
+DROP DATABASE ${da.db_name} CASCADE
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC Run the cell below to check your work.
+
+-- COMMAND ----------
+
+-- MAGIC %python
+-- MAGIC assert spark.sql(f"SHOW DATABASES").filter(f"databaseName == '{DA.db_name}'").count() == 0, "Database present"
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC With the database dropped, the files will have been deleted as well.
+-- MAGIC
+-- MAGIC Uncomment and run the following cell, which will throw a **`FileNotFoundException`** as your confirmation.
+
+-- COMMAND ----------
+
+-- MAGIC %python
+-- MAGIC # files = dbutils.fs.ls(managedTablePath)
+-- MAGIC # display(files)
+
+-- COMMAND ----------
+
+-- MAGIC %python
+-- MAGIC files = dbutils.fs.ls(externalTablePath)
+-- MAGIC display(files)
+
+-- COMMAND ----------
+
+-- MAGIC %python
+-- MAGIC files = dbutils.fs.ls(DA.paths.working_dir)
+-- MAGIC display(files)
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC **This highlights the main differences between managed and external tables.** By default, the files associated with managed tables will be stored to this location on the root DBFS storage linked to the workspace, and will be deleted when a table is dropped.
+-- MAGIC
+-- MAGIC Files for external tables will be persisted in the location provided at table creation, preventing users from inadvertently deleting underlying files. **External tables can easily be migrated to other databases or renamed, but these operations with managed tables will require rewriting ALL underlying files.**
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC ## Create a Database with a Specified Path
+-- MAGIC
+-- MAGIC Assuming you dropped your database in the last step, you can use the same **`database`** name.
+
+-- COMMAND ----------
+
+CREATE DATABASE ${da.db_name} LOCATION '${da.paths.working_dir}/${da.db_name}';
+USE ${da.db_name};
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC Recreate your **`weather_managed`** table in this new database and print out the location of this table.
+
+-- COMMAND ----------
+
+-- ANSWER
+
+CREATE TABLE weather_managed AS
+SELECT *
+FROM parquet.`${da.paths.working_dir}/weather`
+
+-- COMMAND ----------
+
+-- MAGIC %python
+-- MAGIC getTableLocation("weather_managed")
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC Run the cell below to check your work.
+
+-- COMMAND ----------
+
+-- MAGIC %python
+-- MAGIC assert spark.table("weather_managed"), "Table named `weather_managed` does not exist"
+-- MAGIC assert spark.table("weather_managed").count() == 2559, "Incorrect row count"
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC While here we're using the **`working_dir`** directory created on the DBFS root, _any_ object store can be used as the database directory. **Defining database directories for groups of users can greatly reduce the chances of accidental data exfiltration**.
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC ## Views and their Scoping
+-- MAGIC
+-- MAGIC Using the provided **`AS`** clause, register:
+-- MAGIC - a view named **`celsius`**
+-- MAGIC - a temporary view named **`celsius_temp`**
+-- MAGIC - a global temp view named **`celsius_global`**
+
+-- COMMAND ----------
+
+-- ANSWER
+
+CREATE OR REPLACE VIEW celsius
+AS (SELECT *
+ FROM weather_managed
+ WHERE UNIT = "C")
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC Run the cell below to check your work.
+
+-- COMMAND ----------
+
+-- MAGIC %python
+-- MAGIC assert spark.table("celsius"), "Table named `celsius` does not exist"
+-- MAGIC assert spark.sql(f"SHOW TABLES").filter(f"tableName == 'celsius'").first()["isTemporary"] == False, "Table is temporary"
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC Now create a temporary view.
+
+-- COMMAND ----------
+
+-- ANSWER
+
+CREATE OR REPLACE TEMP VIEW celsius_temp
+AS (SELECT *
+ FROM weather_managed
+ WHERE UNIT = "C")
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC Run the cell below to check your work.
+
+-- COMMAND ----------
+
+-- MAGIC %python
+-- MAGIC assert spark.table("celsius_temp"), "Table named `celsius_temp` does not exist"
+-- MAGIC assert spark.sql(f"SHOW TABLES").filter(f"tableName == 'celsius_temp'").first()["isTemporary"] == True, "Table is not temporary"
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC Now register a global temp view.
+
+-- COMMAND ----------
+
+-- ANSWER
+
+CREATE OR REPLACE GLOBAL TEMP VIEW celsius_global
+AS (SELECT *
+ FROM weather_managed
+ WHERE UNIT = "C")
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC Run the cell below to check your work.
+
+-- COMMAND ----------
+
+-- MAGIC %python
+-- MAGIC assert spark.table("global_temp.celsius_global"), "Global temporary view named `celsius_global` does not exist"
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC Views will be displayed alongside tables when listing from the catalog.
+
+-- COMMAND ----------
+
+SHOW TABLES
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC Note the following:
+-- MAGIC - The view is associated with the current database. This view will be available to any user that can access this database and will persist between sessions.
+-- MAGIC - The temp view is not associated with any database. The temp view is ephemeral and is only accessible in the current SparkSession.
+-- MAGIC - The global temp view does not appear in our catalog. **Global temp views will always register to the **`global_temp`** database**. The **`global_temp`** database is ephemeral but tied to the lifetime of the cluster; however, it is only accessible by notebooks attached to the same cluster on which it was created.
+
+-- COMMAND ----------
+
+SELECT * FROM global_temp.celsius_global
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC While no job was triggered when defining these views, a job is triggered _each time_ a query is executed against the view.
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC ## Clean Up
+-- MAGIC Drop the database and all tables to clean up your workspace.
+
+-- COMMAND ----------
+
+DROP DATABASE ${da.db_name} CASCADE
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC ## Synopsis
+-- MAGIC
+-- MAGIC In this lab we:
+-- MAGIC - Created and deleted databases
+-- MAGIC - Explored behavior of managed and external tables
+-- MAGIC - Learned about the scoping of views
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC Run the following cell to delete the tables and files associated with this lesson.
+
+-- COMMAND ----------
+
+-- MAGIC %python
+-- MAGIC DA.cleanup()
+
+-- COMMAND ----------
+
+-- MAGIC %md-sandbox
+-- MAGIC © 2022 Databricks, Inc. All rights reserved.
+-- MAGIC Apache, Apache Spark, Spark and the Spark logo are trademarks of the Apache Software Foundation.
+-- MAGIC
+-- MAGIC Privacy Policy | Terms of Use | Support
diff --git a/Data-Engineering-With-Databricks/02 - ELT with Spark SQL and Python/DE 2.2.1 - Querying Files Directly.sql b/Data-Engineering-with-Databricks/Solutions/04 - ETL with Spark SQL/DE 4.1 - Querying Files Directly.sql
similarity index 57%
rename from Data-Engineering-With-Databricks/02 - ELT with Spark SQL and Python/DE 2.2.1 - Querying Files Directly.sql
rename to Data-Engineering-with-Databricks/Solutions/04 - ETL with Spark SQL/DE 4.1 - Querying Files Directly.sql
index 16a2882..e5710a6 100644
--- a/Data-Engineering-With-Databricks/02 - ELT with Spark SQL and Python/DE 2.2.1 - Querying Files Directly.sql
+++ b/Data-Engineering-with-Databricks/Solutions/04 - ETL with Spark SQL/DE 4.1 - Querying Files Directly.sql
@@ -8,40 +8,48 @@
-- COMMAND ----------
-- MAGIC %md
+-- MAGIC
+-- MAGIC
-- MAGIC # Extracting Data Directly from Files
-- MAGIC
-- MAGIC In this notebook, you'll learn to extract data directly from files using Spark SQL on Databricks.
-- MAGIC
-- MAGIC A number of file formats support this option, but it is most useful for self-describing data formats (such as parquet and JSON).
-- MAGIC
--- MAGIC ##### Objectives
+-- MAGIC ## Learning Objectives
+-- MAGIC By the end of this lesson, you should be able to:
-- MAGIC - Use Spark SQL to directly query data files
--- MAGIC - Layer views and CTEs to make referencing data files easier
--- MAGIC - Discuss limitations and applications of this approach
+-- MAGIC - Leverage **`text`** and **`binaryFile`** methods to review raw file contents
-- COMMAND ----------
-- MAGIC %md
+-- MAGIC
+-- MAGIC
-- MAGIC ## Run Setup
-- MAGIC
-- MAGIC The setup script will create the data and declare necessary values for the rest of this notebook to execute.
-- COMMAND ----------
--- MAGIC %run ../Includes/setup
+-- MAGIC %run ../Includes/Classroom-Setup-4.1
-- COMMAND ----------
-- MAGIC %md
+-- MAGIC
+-- MAGIC
-- MAGIC ## Data Overview
-- MAGIC
--- MAGIC In this example, we'll work with a sample of raw Kafka data written as JSON files. Each file contains all records consumed during a 5-second interval, stored with the full Kafka schema as a multiple-record JSON file.
+-- MAGIC In this example, we'll work with a sample of raw Kafka data written as JSON files.
+-- MAGIC
+-- MAGIC Each file contains all records consumed during a 5-second interval, stored with the full Kafka schema as a multiple-record JSON file.
-- MAGIC
-- MAGIC | field | type | description |
-- MAGIC | --- | --- | --- |
--- MAGIC | key | BINARY | The `user_id` field is used as the key; this is a unique alphanumeric field that corresponds to session/cookie information |
+-- MAGIC | key | BINARY | The **`user_id`** field is used as the key; this is a unique alphanumeric field that corresponds to session/cookie information |
-- MAGIC | value | BINARY | This is the full data payload (to be discussed later), sent as JSON |
--- MAGIC | topic | STRING | While the Kafka service hosts multiple topics, only those records from the `clickstream` topic are included here |
+-- MAGIC | topic | STRING | While the Kafka service hosts multiple topics, only those records from the **`clickstream`** topic are included here |
-- MAGIC | partition | INTEGER | Our current Kafka implementation uses only 2 partitions (0 and 1) |
-- MAGIC | offset | LONG | This is a unique value, monotonically increasing for each partition |
-- MAGIC | timestamp | LONG | This timestamp is recorded as milliseconds since epoch, and represents the time at which the producer appends a record to a partition |
@@ -49,59 +57,81 @@
-- COMMAND ----------
-- MAGIC %md
+-- MAGIC
+-- MAGIC
-- MAGIC Note that our source directory contains many JSON files.
-- COMMAND ----------
-- MAGIC %python
--- MAGIC len(dbutils.fs.ls(f"{Paths.source}/events/events-kafka.json"))
+-- MAGIC dataset_path = f"{DA.paths.datasets}/raw/events-kafka"
+-- MAGIC print(dataset_path)
+-- MAGIC
+-- MAGIC files = dbutils.fs.ls(dataset_path)
+-- MAGIC display(files)
-- COMMAND ----------
-- MAGIC %md
--- MAGIC Here, we'll be using relative file paths to data that's been written to the DBFS root. Most workflows will require users to access data from external cloud storage locations. In most companies, a workspace administrative will be responsible for configuring access to these storage locations.
-- MAGIC
--- MAGIC Instructions for configuring and accessing these locations can be found in the cloud-vendor specific courses titled "Cloud Architecture & Systems Integrations".
+-- MAGIC
+-- MAGIC Here, we'll be using relative file paths to data that's been written to the DBFS root.
+-- MAGIC
+-- MAGIC Most workflows will require users to access data from external cloud storage locations.
+-- MAGIC
+-- MAGIC In most companies, a workspace administrator will be responsible for configuring access to these storage locations.
+-- MAGIC
+-- MAGIC Instructions for configuring and accessing these locations can be found in the cloud-vendor specific self-paced courses titled "Cloud Architecture & Systems Integrations".
-- COMMAND ----------
-- MAGIC %md
+-- MAGIC
+-- MAGIC
-- MAGIC ## Query a Single File
-- MAGIC
-- MAGIC To query the data contained in a single file, execute the query with the following pattern:
-- MAGIC
--- MAGIC ```
--- MAGIC SELECT * FROM file_format.`/path/to/file`
--- MAGIC ```
+-- MAGIC SELECT * FROM file_format.`/path/to/file`
+-- MAGIC
+-- MAGIC Make special note of the use of back-ticks (not single quotes) around the path.
-- COMMAND ----------
-SELECT * FROM json.`${c.source}/events/events-kafka.json/001.json`
+SELECT * FROM json.`${da.paths.datasets}/raw/events-kafka/001.json`
-- COMMAND ----------
-- MAGIC %md
--- MAGIC Note that our preview displays all 94 rows of our source file.
+-- MAGIC
+-- MAGIC
+-- MAGIC Note that our preview displays all 321 rows of our source file.
-- COMMAND ----------
-- MAGIC %md
+-- MAGIC
+-- MAGIC
-- MAGIC ## Query a Directory of Files
-- MAGIC
--- MAGIC Assuming all of the files in a directory have the same format and schema, all files can be queried simultaneously by specifying the directory path rather than an individual file.
+-- MAGIC Assuming all of the files in a directory have the same format and schema, all files can be queried simultaneously by specifying the directory path rather than an individual file.
-- COMMAND ----------
-SELECT * FROM json.`${c.source}/events/events-kafka.json`
+SELECT * FROM json.`${da.paths.datasets}/raw/events-kafka`
-- COMMAND ----------
-- MAGIC %md
+-- MAGIC
+-- MAGIC
-- MAGIC By default, this query will only show the first 1000 rows.
-- COMMAND ----------
-- MAGIC %md
+-- MAGIC
+-- MAGIC
-- MAGIC ## Create References to Files
-- MAGIC This ability to directly query files and directories means that additional Spark logic can be chained to queries against files.
-- MAGIC
@@ -110,33 +140,49 @@ SELECT * FROM json.`${c.source}/events/events-kafka.json`
-- COMMAND ----------
CREATE OR REPLACE TEMP VIEW events_temp_view
-AS SELECT * FROM json.`${c.source}/events/events-kafka.json`;
+AS SELECT * FROM json.`${da.paths.datasets}/raw/events-kafka/`;
SELECT * FROM events_temp_view
-- COMMAND ----------
-- MAGIC %md
+-- MAGIC
+-- MAGIC
-- MAGIC ## Extract Text Files as Raw Strings
-- MAGIC
--- MAGIC When working with text-based files (which include JSON, CSV, TSV, and TXT formats), you can use the `text` format to load each line of the file as a row with one string column named `value`. This can be useful when data sources are prone to corruption and custom text parsing functions will be used to extract value from text fields.
+-- MAGIC When working with text-based files (which include JSON, CSV, TSV, and TXT formats), you can use the **`text`** format to load each line of the file as a row with one string column named **`value`**. This can be useful when data sources are prone to corruption and custom text parsing functions will be used to extract value from text fields.
-- COMMAND ----------
-SELECT * FROM text.`${c.source}/events/events-kafka.json`
+SELECT * FROM text.`${da.paths.datasets}/raw/events-kafka/`
-- COMMAND ----------
-- MAGIC %md
+-- MAGIC
+-- MAGIC
-- MAGIC ## Extract the Raw Bytes and Metadata of a File
-- MAGIC
--- MAGIC Some workflows may require working with entire files, such as when dealing with images or unstructured data. Using `binaryFile` to query a directory will provide file metadata alongside the binary representation of the file contents.
+-- MAGIC Some workflows may require working with entire files, such as when dealing with images or unstructured data. Using **`binaryFile`** to query a directory will provide file metadata alongside the binary representation of the file contents.
+-- MAGIC
+-- MAGIC Specifically, the fields created will indicate the **`path`**, **`modificationTime`**, **`length`**, and **`content`**.
+
+-- COMMAND ----------
+
+SELECT * FROM binaryFile.`${da.paths.datasets}/raw/events-kafka/`
+
+-- COMMAND ----------
+
+-- MAGIC %md
-- MAGIC
--- MAGIC Specifically, the fields created will indicate the `path`, `modificationTime`, `length`, and `content`.
+-- MAGIC
+-- MAGIC Run the following cell to delete the tables and files associated with this lesson.
-- COMMAND ----------
-SELECT * FROM binaryFile.`${c.source}/events/events-kafka.json`
+-- MAGIC %python
+-- MAGIC DA.cleanup()
-- COMMAND ----------
diff --git a/Data-Engineering-With-Databricks/Solutions/02 - ELT with Spark SQL and Python/DE 2.2.2 - Providing Options for External Sources.sql b/Data-Engineering-with-Databricks/Solutions/04 - ETL with Spark SQL/DE 4.2 - Providing Options for External Sources.sql
similarity index 68%
rename from Data-Engineering-With-Databricks/Solutions/02 - ELT with Spark SQL and Python/DE 2.2.2 - Providing Options for External Sources.sql
rename to Data-Engineering-with-Databricks/Solutions/04 - ETL with Spark SQL/DE 4.2 - Providing Options for External Sources.sql
index f6d44eb..cddc30a 100644
--- a/Data-Engineering-With-Databricks/Solutions/02 - ELT with Spark SQL and Python/DE 2.2.2 - Providing Options for External Sources.sql
+++ b/Data-Engineering-with-Databricks/Solutions/04 - ETL with Spark SQL/DE 4.2 - Providing Options for External Sources.sql
@@ -8,12 +8,15 @@
-- COMMAND ----------
-- MAGIC %md
+-- MAGIC
+-- MAGIC
-- MAGIC # Providing Options for External Sources
-- MAGIC While directly querying files works well for self-describing formats, many data sources require additional configurations or schema declaration to properly ingest records.
-- MAGIC
-- MAGIC In this lesson, we will create tables using external data sources. While these tables will not yet be stored in the Delta Lake format (and therefore not be optimized for the Lakehouse), this technique helps to facilitate extracting data from diverse external systems.
-- MAGIC
--- MAGIC ##### Objectives
+-- MAGIC ## Learning Objectives
+-- MAGIC By the end of this lesson, you should be able to:
-- MAGIC - Use Spark SQL to configure options for extracting data from external sources
-- MAGIC - Create tables against external data sources for various file formats
-- MAGIC - Describe default behavior when querying tables defined against external sources
@@ -21,17 +24,21 @@
-- COMMAND ----------
-- MAGIC %md
+-- MAGIC
+-- MAGIC
-- MAGIC ## Run Setup
-- MAGIC
-- MAGIC The setup script will create the data and declare necessary values for the rest of this notebook to execute.
-- COMMAND ----------
--- MAGIC %run ../Includes/setup-external
+-- MAGIC %run ../Includes/Classroom-Setup-4.2
-- COMMAND ----------
-- MAGIC %md
+-- MAGIC
+-- MAGIC
-- MAGIC ## When Direct Queries Don't Work
-- MAGIC
-- MAGIC While views can be used to persist direct queries against files between sessions, this approach has limited utility.
@@ -40,41 +47,46 @@
-- COMMAND ----------
-SELECT * FROM csv.`${c.source}/sales/sales.csv`
+SELECT * FROM csv.`${da.paths.working_dir}/sales-csv`
-- COMMAND ----------
-- MAGIC %md
+-- MAGIC
+-- MAGIC
-- MAGIC We can see from the above that:
-- MAGIC 1. The header row is being extracted as a table row
-- MAGIC 1. All columns are being loaded as a single column
--- MAGIC 1. The file is pipe-delimited (`|`)
+-- MAGIC 1. The file is pipe-delimited (**`|`**)
-- MAGIC 1. The final column appears to contain nested data that is being truncated
-- COMMAND ----------
-- MAGIC %md
+-- MAGIC
+-- MAGIC
-- MAGIC ## Registering Tables on External Data with Read Options
-- MAGIC
-- MAGIC While Spark will extract some self-describing data sources efficiently using default settings, many formats will require declaration of schema or other options.
-- MAGIC
--- MAGIC While there are many [additional configurations](https://docs.databricks.com/spark/latest/spark-sql/language-manual/sql-ref-syntax-ddl-create-table-datasource.html) you can set while creating tables against external sources, the syntax below demonstrates the essentials required to extract data from most formats.
+-- MAGIC While there are many additional configurations you can set while creating tables against external sources, the syntax below demonstrates the essentials required to extract data from most formats.
-- MAGIC
--- MAGIC ```
--- MAGIC CREATE TABLE table_identifier
--- MAGIC (col_name1 col_type1, ...)
--- MAGIC USING data_source
--- MAGIC OPTIONS (key1 = val1, key2 = val2, ...)
--- MAGIC LOCATION path
--- MAGIC ```
+-- MAGIC
+-- MAGIC CREATE TABLE table_identifier (col_name1 col_type1, ...)
+-- MAGIC USING data_source
+-- MAGIC OPTIONS (key1 = val1, key2 = val2, ...)
+-- MAGIC LOCATION = path
+-- MAGIC
-- MAGIC
--- MAGIC Note that options are passed with keys as unquoted text and values in quotes. Spark supports many [data sources](https://docs.databricks.com/data/data-sources/index.html) with custom options, and additional systems may have unofficial support through external [libraries](https://docs.databricks.com/libraries/index.html).
+-- MAGIC Note that options are passed with keys as unquoted text and values in quotes. Spark supports many data sources with custom options, and additional systems may have unofficial support through external libraries.
-- MAGIC
--- MAGIC **NOTE**: Depending on your workspace settings, you may need adminstrator assistance to load libraries and configure the requisite security settings for some data sources.
+-- MAGIC **NOTE**: Depending on your workspace settings, you may need administrator assistance to load libraries and configure the requisite security settings for some data sources.
-- COMMAND ----------
-- MAGIC %md
+-- MAGIC
+-- MAGIC
-- MAGIC The cell below demonstrates using Spark SQL DDL to create a table against an external CSV source, specifying:
-- MAGIC 1. The column names and types
-- MAGIC 1. The file format
@@ -84,8 +96,6 @@ SELECT * FROM csv.`${c.source}/sales/sales.csv`
-- COMMAND ----------
-DROP TABLE IF EXISTS sales_csv;
-
CREATE TABLE sales_csv
(order_id LONG, email STRING, transactions_timestamp LONG, total_item_quantity INTEGER, purchase_revenue_in_usd DOUBLE, unique_items INTEGER, items STRING)
USING CSV
@@ -93,11 +103,13 @@ OPTIONS (
header = "true",
delimiter = "|"
)
-LOCATION "${c.source}/sales/sales.csv"
+LOCATION "${da.paths.working_dir}/sales-csv"
-- COMMAND ----------
-- MAGIC %md
+-- MAGIC
+-- MAGIC
-- MAGIC Note that no data has moved during table declaration. Similar to when we directly queried our files and created a view, we are still just pointing to files stored in an external location.
-- MAGIC
-- MAGIC Run the following cell to confirm that data is now being loaded correctly.
@@ -113,11 +125,13 @@ SELECT COUNT(*) FROM sales_csv
-- COMMAND ----------
-- MAGIC %md
+-- MAGIC
+-- MAGIC
-- MAGIC All the metadata and options passed during table declaration will be persisted to the metastore, ensuring that data in the location will always be read with these options.
-- MAGIC
-- MAGIC **NOTE**: When working with CSVs as a data source, it's important to ensure that column order does not change if additional data files will be added to the source directory. Because the data format does not have strong schema enforcement, Spark will load columns and apply column names and data types in the order specified during table declaration.
-- MAGIC
--- MAGIC Running `DESCRIBE EXTENDED` on a table will show all of the metadata associated with the table definition.
+-- MAGIC Running **`DESCRIBE EXTENDED`** on a table will show all of the metadata associated with the table definition.
-- COMMAND ----------
@@ -126,6 +140,8 @@ DESCRIBE EXTENDED sales_csv
-- COMMAND ----------
-- MAGIC %md
+-- MAGIC
+-- MAGIC
-- MAGIC ## Limits of Tables with External Data Sources
-- MAGIC
-- MAGIC If you've taken other courses on Databricks or reviewed any of our company literature, you may have heard about Delta Lake and the Lakehouse. Note that whenever we're defining tables or queries against external data sources, we **cannot** expect the performance guarantees associated with Delta Lake and Lakehouse.
@@ -137,11 +153,16 @@ DESCRIBE EXTENDED sales_csv
-- COMMAND ----------
-- MAGIC %python
--- MAGIC spark.table("sales_csv").write.mode("append").format("csv").save(f"{Paths.source}/sales/sales.csv")
+-- MAGIC (spark.table("sales_csv")
+-- MAGIC .write.mode("append")
+-- MAGIC .format("csv")
+-- MAGIC .save(f"{DA.paths.working_dir}/sales-csv"))
-- COMMAND ----------
-- MAGIC %md
+-- MAGIC
+-- MAGIC
-- MAGIC If we look at the current count of records in our table, the number we see will not reflect these newly inserted rows.
-- COMMAND ----------
@@ -151,9 +172,13 @@ SELECT COUNT(*) FROM sales_csv
-- COMMAND ----------
-- MAGIC %md
+-- MAGIC
+-- MAGIC
-- MAGIC At the time we previously queried this data source, Spark automatically cached the underlying data in local storage. This ensures that on subsequent queries, Spark will provide the optimal performance by just querying this local cache.
-- MAGIC
--- MAGIC Our external data source is not configured to tell Spark is should refresh this data. We **can** manually refresh the cache of our data by running the `REFRESH TABLE` command.
+-- MAGIC Our external data source is not configured to tell Spark that it should refresh this data.
+-- MAGIC
+-- MAGIC We **can** manually refresh the cache of our data by running the **`REFRESH TABLE`** command.
-- COMMAND ----------
@@ -162,7 +187,11 @@ REFRESH TABLE sales_csv
-- COMMAND ----------
-- MAGIC %md
--- MAGIC Note that refreshing our table will invalidate our cache, meaning that we'll need to rescan our original data source and pull all data back into memory. For very large datasets, this may take a significant amount of time.
+-- MAGIC
+-- MAGIC
+-- MAGIC Note that refreshing our table will invalidate our cache, meaning that we'll need to rescan our original data source and pull all data back into memory.
+-- MAGIC
+-- MAGIC For very large datasets, this may take a significant amount of time.
-- COMMAND ----------
@@ -171,37 +200,46 @@ SELECT COUNT(*) FROM sales_csv
-- COMMAND ----------
-- MAGIC %md
+-- MAGIC
+-- MAGIC
-- MAGIC ## Extracting Data from SQL Databases
-- MAGIC SQL databases are an extremely common data source, and Databricks has a standard JDBC driver for connecting with many flavors of SQL.
-- MAGIC
-- MAGIC The general syntax for creating these connections is:
--- MAGIC ```
--- MAGIC CREATE TABLE
--- MAGIC USING org.apache.spark.sql.jdbc
--- MAGIC OPTIONS (
--- MAGIC url "jdbc:://:",
--- MAGIC dbtable ".table",
--- MAGIC user "",
--- MAGIC password ""
+-- MAGIC
+-- MAGIC
+-- MAGIC CREATE TABLE
+-- MAGIC USING JDBC
+-- MAGIC OPTIONS (
+-- MAGIC url = "jdbc:{databaseServerType}://{jdbcHostname}:{jdbcPort}",
+-- MAGIC dbtable = "{jdbcDatabase}.table",
+-- MAGIC user = "{jdbcUsername}",
+-- MAGIC password = "{jdbcPassword}"
-- MAGIC )
--- MAGIC ```
+-- MAGIC
-- MAGIC
--- MAGIC In the code sample below, we'll connect with SQLite (which uses a local file to store a database, and doesn't have users and passwords).
+-- MAGIC In the code sample below, we'll connect with SQLite.
+-- MAGIC
+-- MAGIC **NOTE:** SQLite uses a local file to store a database, and doesn't require a port, username, or password.
+-- MAGIC
+-- MAGIC
**WARNING**: The backend-configuration of the JDBC server assume you are running this notebook on a single-node cluster. If you are running on a cluster with multiple workers, the client running in the executors will not be able to connect to the driver.
-- COMMAND ----------
DROP TABLE IF EXISTS users_jdbc;
CREATE TABLE users_jdbc
-USING org.apache.spark.sql.jdbc
+USING JDBC
OPTIONS (
- url "jdbc:sqlite:/${c.username}_ecommerce.db",
- dbtable "users"
+ url = "jdbc:sqlite:/${da.username}_ecommerce.db",
+ dbtable = "users"
)
-- COMMAND ----------
-- MAGIC %md
+-- MAGIC
+-- MAGIC
-- MAGIC Now we can query this table as if it were defined locally.
-- COMMAND ----------
@@ -211,6 +249,8 @@ SELECT * FROM users_jdbc
-- COMMAND ----------
-- MAGIC %md
+-- MAGIC
+-- MAGIC
-- MAGIC Looking at the table metadata reveals that we have captured the schema information from the external system. Storage properties (which would include the username and password associated with the connection) are automatically redacted.
-- COMMAND ----------
@@ -220,12 +260,14 @@ DESCRIBE EXTENDED users_jdbc
-- COMMAND ----------
-- MAGIC %md
--- MAGIC While the table is listed as `MANAGED`, listing the contents of the specified location confirms that no data is being persisted locally.
+-- MAGIC
+-- MAGIC
+-- MAGIC While the table is listed as **`MANAGED`**, listing the contents of the specified location confirms that no data is being persisted locally.
-- COMMAND ----------
-- MAGIC %python
--- MAGIC jdbc_users_path = f"{Paths.database_location}/jdbc_users"
+-- MAGIC jdbc_users_path = f"{DA.paths.user_db}/users_jdbc/"
-- MAGIC print(jdbc_users_path)
-- MAGIC
-- MAGIC files = dbutils.fs.ls(jdbc_users_path)
@@ -234,6 +276,8 @@ DESCRIBE EXTENDED users_jdbc
-- COMMAND ----------
-- MAGIC %md
+-- MAGIC
+-- MAGIC
-- MAGIC Note that some SQL systems such as data warehouses will have custom drivers. Spark will interact with various external databases differently, but the two basic approaches can be summarized as either:
-- MAGIC 1. Moving the entire source table(s) to Databricks and then executing logic on the currently active cluster
-- MAGIC 1. Pushing down the query to the external SQL database and only transferring the results back to Databricks
@@ -244,6 +288,18 @@ DESCRIBE EXTENDED users_jdbc
-- COMMAND ----------
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC Run the following cell to delete the tables and files associated with this lesson.
+
+-- COMMAND ----------
+
+-- MAGIC %python
+-- MAGIC DA.cleanup()
+
+-- COMMAND ----------
+
-- MAGIC %md-sandbox
-- MAGIC © 2022 Databricks, Inc. All rights reserved.
-- MAGIC Apache, Apache Spark, Spark and the Spark logo are trademarks of the Apache Software Foundation.
diff --git a/Data-Engineering-with-Databricks/Solutions/04 - ETL with Spark SQL/DE 4.3 - Creating Delta Tables.sql b/Data-Engineering-with-Databricks/Solutions/04 - ETL with Spark SQL/DE 4.3 - Creating Delta Tables.sql
new file mode 100644
index 0000000..ff80a07
--- /dev/null
+++ b/Data-Engineering-with-Databricks/Solutions/04 - ETL with Spark SQL/DE 4.3 - Creating Delta Tables.sql
@@ -0,0 +1,380 @@
+-- Databricks notebook source
+-- MAGIC %md-sandbox
+-- MAGIC
+-- MAGIC
+-- MAGIC

+-- MAGIC
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC # Creating Delta Tables
+-- MAGIC
+-- MAGIC After extracting data from external data sources, load data into the Lakehouse to ensure that all of the benefits of the Databricks platform can be fully leveraged.
+-- MAGIC
+-- MAGIC While different organizations may have varying policies for how data is initially loaded into Databricks, we typically recommend that early tables represent a mostly raw version of the data, and that validation and enrichment occur in later stages. This pattern ensures that even if data doesn't match expectations with regards to data types or column names, no data will be dropped, meaning that programmatic or manual intervention can still salvage data in a partially corrupted or invalid state.
+-- MAGIC
+-- MAGIC This lesson will focus primarily on the pattern used to create most tables, **`CREATE TABLE _ AS SELECT`** (CTAS) statements.
+-- MAGIC
+-- MAGIC ## Learning Objectives
+-- MAGIC By the end of this lesson, you should be able to:
+-- MAGIC - Use CTAS statements to create Delta Lake tables
+-- MAGIC - Create new tables from existing views or tables
+-- MAGIC - Enrich loaded data with additional metadata
+-- MAGIC - Declare table schema with generated columns and descriptive comments
+-- MAGIC - Set advanced options to control data location, quality enforcement, and partitioning
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC ## Run Setup
+-- MAGIC
+-- MAGIC The setup script will create the data and declare necessary values for the rest of this notebook to execute.
+
+-- COMMAND ----------
+
+-- MAGIC %run ../Includes/Classroom-Setup-4.3
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC
+-- MAGIC ## Create Table as Select (CTAS)
+-- MAGIC
+-- MAGIC **`CREATE TABLE AS SELECT`** statements create and populate Delta tables using data retrieved from an input query.
+
+-- COMMAND ----------
+
+CREATE OR REPLACE TABLE sales AS
+SELECT * FROM parquet.`${da.paths.datasets}/raw/sales-historical/`;
+
+DESCRIBE EXTENDED sales;
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC CTAS statements automatically infer schema information from query results and do **not** support manual schema declaration.
+-- MAGIC
+-- MAGIC This means that CTAS statements are useful for external data ingestion from sources with well-defined schema, such as Parquet files and tables.
+-- MAGIC
+-- MAGIC CTAS statements also do not support specifying additional file options.
+-- MAGIC
+-- MAGIC We can see how this would present significant limitations when trying to ingest data from CSV files.
+
+-- COMMAND ----------
+
+CREATE OR REPLACE TABLE sales_unparsed AS
+SELECT * FROM csv.`${da.paths.datasets}/raw/sales-csv/`;
+
+SELECT * FROM sales_unparsed;
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC To correctly ingest this data to a Delta Lake table, we'll need to use a reference to the files that allows us to specify options.
+-- MAGIC
+-- MAGIC In the previous lesson, we showed doing this by registering an external table. Here, we'll slightly evolve this syntax to specify the options to a temporary view, and then use this temp view as the source for a CTAS statement to successfully register the Delta table.
+
+-- COMMAND ----------
+
+CREATE OR REPLACE TEMP VIEW sales_tmp_vw
+ (order_id LONG, email STRING, transactions_timestamp LONG, total_item_quantity INTEGER, purchase_revenue_in_usd DOUBLE, unique_items INTEGER, items STRING)
+USING CSV
+OPTIONS (
+ path = "${da.paths.datasets}/raw/sales-csv",
+ header = "true",
+ delimiter = "|"
+);
+
+CREATE TABLE sales_delta AS
+ SELECT * FROM sales_tmp_vw;
+
+SELECT * FROM sales_delta
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC ## Filtering and Renaming Columns from Existing Tables
+-- MAGIC
+-- MAGIC Simple transformations like changing column names or omitting columns from target tables can be easily accomplished during table creation.
+-- MAGIC
+-- MAGIC The following statement creates a new table containing a subset of columns from the **`sales`** table.
+-- MAGIC
+-- MAGIC Here, we'll presume that we're intentionally leaving out information that potentially identifies the user or that provides itemized purchase details. We'll also rename our fields with the assumption that a downstream system has different naming conventions than our source data.
+
+-- COMMAND ----------
+
+CREATE OR REPLACE TABLE purchases AS
+SELECT order_id AS id, transaction_timestamp, purchase_revenue_in_usd AS price
+FROM sales;
+
+SELECT * FROM purchases
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC Note that we could have accomplished this same goal with a view, as shown below.
+
+-- COMMAND ----------
+
+CREATE OR REPLACE VIEW purchases_vw AS
+SELECT order_id AS id, transaction_timestamp, purchase_revenue_in_usd AS price
+FROM sales;
+
+SELECT * FROM purchases_vw
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC ## Declare Schema with Generated Columns
+-- MAGIC
+-- MAGIC As noted previously, CTAS statements do not support schema declaration. We note above that the timestamp column appears to be some variant of a Unix timestamp, which may not be the most useful for our analysts to derive insights. This is a situation where generated columns would be beneficial.
+-- MAGIC
+-- MAGIC Generated columns are a special type of column whose values are automatically generated based on a user-specified function over other columns in the Delta table (introduced in DBR 8.3).
+-- MAGIC
+-- MAGIC The code below demonstrates creating a new table while:
+-- MAGIC 1. Specifying column names and types
+-- MAGIC 1. Adding a generated column to calculate the date
+-- MAGIC 1. Providing a descriptive column comment for the generated column
+
+-- COMMAND ----------
+
+CREATE OR REPLACE TABLE purchase_dates (
+ id STRING,
+ transaction_timestamp STRING,
+ price STRING,
+ date DATE GENERATED ALWAYS AS (
+ cast(cast(transaction_timestamp/1e6 AS TIMESTAMP) AS DATE))
+ COMMENT "generated based on `transactions_timestamp` column")
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC
+-- MAGIC Because **`date`** is a generated column, if we write to **`purchase_dates`** without providing values for the **`date`** column, Delta Lake automatically computes them.
+-- MAGIC
+-- MAGIC **NOTE**: The cell below configures a setting to allow for generating columns when using a Delta Lake **`MERGE`** statement. We'll see more on this syntax later in the course.
+
+-- COMMAND ----------
+
+SET spark.databricks.delta.schema.autoMerge.enabled=true;
+
+MERGE INTO purchase_dates a
+USING purchases b
+ON a.id = b.id
+WHEN NOT MATCHED THEN
+ INSERT *
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC We can see below that all dates were computed correctly as data was inserted, although neither our source data or insert query specified the values in this field.
+-- MAGIC
+-- MAGIC As with any Delta Lake source, the query automatically reads the most recent snapshot of the table for any query; you never need to run **`REFRESH TABLE`**.
+
+-- COMMAND ----------
+
+SELECT * FROM purchase_dates
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC
+-- MAGIC It's important to note that if a field that would otherwise be generated is included in an insert to a table, this insert will fail if the value provided does not exactly match the value that would be derived by the logic used to define the generated column.
+-- MAGIC
+-- MAGIC We can see this error by uncommenting and running the cell below:
+
+-- COMMAND ----------
+
+-- INSERT INTO purchase_dates VALUES
+-- (1, 600000000, 42.0, "2020-06-18")
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC ## Add a Table Constraint
+-- MAGIC
+-- MAGIC The error message above refers to a **`CHECK constraint`**. Generated columns are a special implementation of check constraints.
+-- MAGIC
+-- MAGIC Because Delta Lake enforces schema on write, Databricks can support standard SQL constraint management clauses to ensure the quality and integrity of data added to a table.
+-- MAGIC
+-- MAGIC Databricks currently support two types of constraints:
+-- MAGIC * **`NOT NULL`** constraints
+-- MAGIC * **`CHECK`** constraints
+-- MAGIC
+-- MAGIC In both cases, you must ensure that no data violating the constraint is already in the table prior to defining the constraint. Once a constraint has been added to a table, data violating the constraint will result in write failure.
+-- MAGIC
+-- MAGIC Below, we'll add a **`CHECK`** constraint to the **`date`** column of our table. Note that **`CHECK`** constraints look like standard **`WHERE`** clauses you might use to filter a dataset.
+
+-- COMMAND ----------
+
+ALTER TABLE purchase_dates ADD CONSTRAINT valid_date CHECK (date > '2020-01-01');
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC Table constraints are shown in the **`TBLPROPERTIES`** field.
+
+-- COMMAND ----------
+
+DESCRIBE EXTENDED purchase_dates
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC ## Enrich Tables with Additional Options and Metadata
+-- MAGIC
+-- MAGIC So far we've only scratched the surface as far as the options for enriching Delta Lake tables.
+-- MAGIC
+-- MAGIC Below, we show evolving a CTAS statement to include a number of additional configurations and metadata.
+-- MAGIC
+-- MAGIC Our **`SELECT`** clause leverages two built-in Spark SQL commands useful for file ingestion:
+-- MAGIC * **`current_timestamp()`** records the timestamp when the logic is executed
+-- MAGIC * **`input_file_name()`** records the source data file for each record in the table
+-- MAGIC
+-- MAGIC We also include logic to create a new date column derived from timestamp data in the source.
+-- MAGIC
+-- MAGIC The **`CREATE TABLE`** clause contains several options:
+-- MAGIC * A **`COMMENT`** is added to allow for easier discovery of table contents
+-- MAGIC * A **`LOCATION`** is specified, which will result in an external (rather than managed) table
+-- MAGIC * The table is **`PARTITIONED BY`** a date column; this means that the data from each data will exist within its own directory in the target storage location
+-- MAGIC
+-- MAGIC **NOTE**: Partitioning is shown here primarily to demonstrate syntax and impact. Most Delta Lake tables (especially small-to-medium sized data) will not benefit from partitioning. Because partitioning physically separates data files, this approach can result in a small files problem and prevent file compaction and efficient data skipping. The benefits observed in Hive or HDFS do not translate to Delta Lake, and you should consult with an experienced Delta Lake architect before partitioning tables.
+-- MAGIC
+-- MAGIC **As a best practice, you should default to non-partitioned tables for most use cases when working with Delta Lake.**
+
+-- COMMAND ----------
+
+CREATE OR REPLACE TABLE users_pii
+COMMENT "Contains PII"
+LOCATION "${da.paths.working_dir}/tmp/users_pii"
+PARTITIONED BY (first_touch_date)
+AS
+ SELECT *,
+ cast(cast(user_first_touch_timestamp/1e6 AS TIMESTAMP) AS DATE) first_touch_date,
+ current_timestamp() updated,
+ input_file_name() source_file
+ FROM parquet.`${da.paths.datasets}/raw/users-historical/`;
+
+SELECT * FROM users_pii;
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC The metadata fields added to the table provide useful information to understand when records were inserted and from where. This can be especially helpful if troubleshooting problems in the source data becomes necessary.
+-- MAGIC
+-- MAGIC All of the comments and properties for a given table can be reviewed using **`DESCRIBE TABLE EXTENDED`**.
+-- MAGIC
+-- MAGIC **NOTE**: Delta Lake automatically adds several table properties on table creation.
+
+-- COMMAND ----------
+
+DESCRIBE EXTENDED users_pii
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC Listing the location used for the table reveals that the unique values in the partition column **`first_touch_date`** are used to create data directories.
+
+-- COMMAND ----------
+
+-- MAGIC %python
+-- MAGIC files = dbutils.fs.ls(f"{DA.paths.working_dir}/tmp/users_pii")
+-- MAGIC display(files)
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC ## Cloning Delta Lake Tables
+-- MAGIC Delta Lake has two options for efficiently copying Delta Lake tables.
+-- MAGIC
+-- MAGIC **`DEEP CLONE`** fully copies data and metadata from a source table to a target. This copy occurs incrementally, so executing this command again can sync changes from the source to the target location.
+
+-- COMMAND ----------
+
+CREATE OR REPLACE TABLE purchases_clone
+DEEP CLONE purchases
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC Because all the data files must be copied over, this can take quite a while for large datasets.
+-- MAGIC
+-- MAGIC If you wish to create a copy of a table quickly to test out applying changes without the risk of modifying the current table, **`SHALLOW CLONE`** can be a good option. Shallow clones just copy the Delta transaction logs, meaning that the data doesn't move.
+
+-- COMMAND ----------
+
+CREATE OR REPLACE TABLE purchases_shallow_clone
+SHALLOW CLONE purchases
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC In either case, data modifications applied to the cloned version of the table will be tracked and stored separately from the source. Cloning is a great way to set up tables for testing SQL code while still in development.
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC ## Summary
+-- MAGIC
+-- MAGIC In this notebook, we focused primarily on DDL and syntax for creating Delta Lake tables. In the next notebook, we'll explore options for writing updates to tables.
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC Run the following cell to delete the tables and files associated with this lesson.
+
+-- COMMAND ----------
+
+-- MAGIC %python
+-- MAGIC DA.cleanup()
+
+-- COMMAND ----------
+
+-- MAGIC %md-sandbox
+-- MAGIC © 2022 Databricks, Inc. All rights reserved.
+-- MAGIC Apache, Apache Spark, Spark and the Spark logo are trademarks of the Apache Software Foundation.
+-- MAGIC
+-- MAGIC Privacy Policy | Terms of Use | Support
diff --git a/Data-Engineering-with-Databricks/Solutions/04 - ETL with Spark SQL/DE 4.4 - Writing to Tables.sql b/Data-Engineering-with-Databricks/Solutions/04 - ETL with Spark SQL/DE 4.4 - Writing to Tables.sql
new file mode 100644
index 0000000..80a61dc
--- /dev/null
+++ b/Data-Engineering-with-Databricks/Solutions/04 - ETL with Spark SQL/DE 4.4 - Writing to Tables.sql
@@ -0,0 +1,263 @@
+-- Databricks notebook source
+-- MAGIC %md-sandbox
+-- MAGIC
+-- MAGIC
+-- MAGIC

+-- MAGIC
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC # Writing to Delta Tables
+-- MAGIC Delta Lake tables provide ACID compliant updates to tables backed by data files in cloud object storage.
+-- MAGIC
+-- MAGIC In this notebook, we'll explore SQL syntax to process updates with Delta Lake. While many operations are standard SQL, slight variations exist to accommodate Spark and Delta Lake execution.
+-- MAGIC
+-- MAGIC ## Learning Objectives
+-- MAGIC By the end of this lesson, you should be able to:
+-- MAGIC - Overwrite data tables using **`INSERT OVERWRITE`**
+-- MAGIC - Append to a table using **`INSERT INTO`**
+-- MAGIC - Append, update, and delete from a table using **`MERGE INTO`**
+-- MAGIC - Ingest data incrementally into tables using **`COPY INTO`**
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC ## Run Setup
+-- MAGIC
+-- MAGIC The setup script will create the data and declare necessary values for the rest of this notebook to execute.
+
+-- COMMAND ----------
+
+-- MAGIC %run ../Includes/Classroom-Setup-4.4
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC ## Complete Overwrites
+-- MAGIC
+-- MAGIC We can use overwrites to atomically replace all of the data in a table. There are multiple benefits to overwriting tables instead of deleting and recreating tables:
+-- MAGIC - Overwriting a table is much faster because it doesn’t need to list the directory recursively or delete any files.
+-- MAGIC - The old version of the table still exists; can easily retrieve the old data using Time Travel.
+-- MAGIC - It’s an atomic operation. Concurrent queries can still read the table while you are deleting the table.
+-- MAGIC - Due to ACID transaction guarantees, if overwriting the table fails, the table will be in its previous state.
+-- MAGIC
+-- MAGIC Spark SQL provides two easy methods to accomplish complete overwrites.
+-- MAGIC
+-- MAGIC Some students may have noticed previous lesson on CTAS statements actually used CRAS statements (to avoid potential errors if a cell was run multiple times).
+-- MAGIC
+-- MAGIC **`CREATE OR REPLACE TABLE`** (CRAS) statements fully replace the contents of a table each time they execute.
+
+-- COMMAND ----------
+
+CREATE OR REPLACE TABLE events AS
+SELECT * FROM parquet.`${da.paths.datasets}/raw/events-historical`
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC Reviewing the table history shows a previous version of this table was replaced.
+
+-- COMMAND ----------
+
+DESCRIBE HISTORY events
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC **`INSERT OVERWRITE`** provides a nearly identical outcome as above: data in the target table will be replaced by data from the query.
+-- MAGIC
+-- MAGIC **`INSERT OVERWRITE`**:
+-- MAGIC
+-- MAGIC - Can only overwrite an existing table, not create a new one like our CRAS statement
+-- MAGIC - Can overwrite only with new records that match the current table schema -- and thus can be a "safer" technique for overwriting an existing table without disrupting downstream consumers
+-- MAGIC - Can overwrite individual partitions
+
+-- COMMAND ----------
+
+INSERT OVERWRITE sales
+SELECT * FROM parquet.`${da.paths.datasets}/raw/sales-historical/`
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC Note that different metrics are displayed than a CRAS statement; the table history also records the operation differently.
+
+-- COMMAND ----------
+
+DESCRIBE HISTORY sales
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC A primary difference here has to do with how Delta Lake enforces schema on write.
+-- MAGIC
+-- MAGIC Whereas a CRAS statement will allow us to completely redefine the contents of our target table, **`INSERT OVERWRITE`** will fail if we try to change our schema (unless we provide optional settings).
+-- MAGIC
+-- MAGIC Uncomment and run the cell below to generated an expected error message.
+
+-- COMMAND ----------
+
+-- INSERT OVERWRITE sales
+-- SELECT *, current_timestamp() FROM parquet.`${da.paths.datasets}/raw/sales-historical`
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC
+-- MAGIC ## Append Rows
+-- MAGIC
+-- MAGIC We can use **`INSERT INTO`** to atomically append new rows to an existing Delta table. This allows for incremental updates to existing tables, which is much more efficient than overwriting each time.
+-- MAGIC
+-- MAGIC Append new sale records to the **`sales`** table using **`INSERT INTO`**.
+
+-- COMMAND ----------
+
+INSERT INTO sales
+SELECT * FROM parquet.`${da.paths.datasets}/raw/sales-30m`
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC
+-- MAGIC Note that **`INSERT INTO`** does not have any built-in guarantees to prevent inserting the same records multiple times. Re-executing the above cell would write the same records to the target table, resulting in duplicate records.
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC
+-- MAGIC ## Merge Updates
+-- MAGIC
+-- MAGIC You can upsert data from a source table, view, or DataFrame into a target Delta table using the **`MERGE`** SQL operation. Delta Lake supports inserts, updates and deletes in **`MERGE`**, and supports extended syntax beyond the SQL standards to facilitate advanced use cases.
+-- MAGIC
+-- MAGIC
+-- MAGIC MERGE INTO target a
+-- MAGIC USING source b
+-- MAGIC ON {merge_condition}
+-- MAGIC WHEN MATCHED THEN {matched_action}
+-- MAGIC WHEN NOT MATCHED THEN {not_matched_action}
+-- MAGIC
+-- MAGIC
+-- MAGIC We will use the **`MERGE`** operation to update historic users data with updated emails and new users.
+
+-- COMMAND ----------
+
+CREATE OR REPLACE TEMP VIEW users_update AS
+SELECT *, current_timestamp() AS updated
+FROM parquet.`${da.paths.datasets}/raw/users-30m`
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC The main benefits of **`MERGE`**:
+-- MAGIC * updates, inserts, and deletes are completed as a single transaction
+-- MAGIC * multiple conditionals can be added in addition to matching fields
+-- MAGIC * provides extensive options for implementing custom logic
+-- MAGIC
+-- MAGIC Below, we'll only update records if the current row has a **`NULL`** email and the new row does not.
+-- MAGIC
+-- MAGIC All unmatched records from the new batch will be inserted.
+
+-- COMMAND ----------
+
+MERGE INTO users a
+USING users_update b
+ON a.user_id = b.user_id
+WHEN MATCHED AND a.email IS NULL AND b.email IS NOT NULL THEN
+ UPDATE SET email = b.email, updated = b.updated
+WHEN NOT MATCHED THEN INSERT *
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC Note that we explicitly specify the behavior of this function for both the **`MATCHED`** and **`NOT MATCHED`** conditions; the example demonstrated here is just an example of logic that can be applied, rather than indicative of all **`MERGE`** behavior.
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC ## Insert-Only Merge for Deduplication
+-- MAGIC
+-- MAGIC A common ETL use case is to collect logs or other every-appending datasets into a Delta table through a series of append operations.
+-- MAGIC
+-- MAGIC Many source systems can generate duplicate records. With merge, you can avoid inserting the duplicate records by performing an insert-only merge.
+-- MAGIC
+-- MAGIC This optimized command uses the same **`MERGE`** syntax but only provided a **`WHEN NOT MATCHED`** clause.
+-- MAGIC
+-- MAGIC Below, we use this to confirm that records with the same **`user_id`** and **`event_timestamp`** aren't already in the **`events`** table.
+
+-- COMMAND ----------
+
+MERGE INTO events a
+USING events_update b
+ON a.user_id = b.user_id AND a.event_timestamp = b.event_timestamp
+WHEN NOT MATCHED AND b.traffic_source = 'email' THEN
+ INSERT *
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC ## Load Incrementally
+-- MAGIC
+-- MAGIC **`COPY INTO`** provides SQL engineers an idempotent option to incrementally ingest data from external systems.
+-- MAGIC
+-- MAGIC Note that this operation does have some expectations:
+-- MAGIC - Data schema should be consistent
+-- MAGIC - Duplicate records should try to be excluded or handled downstream
+-- MAGIC
+-- MAGIC This operation is potentially much cheaper than full table scans for data that grows predictably.
+-- MAGIC
+-- MAGIC While here we'll show simple execution on a static directory, the real value is in multiple executions over time picking up new files in the source automatically.
+
+-- COMMAND ----------
+
+COPY INTO sales
+FROM "${da.paths.datasets}/raw/sales-30m"
+FILEFORMAT = PARQUET
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC Run the following cell to delete the tables and files associated with this lesson.
+
+-- COMMAND ----------
+
+-- MAGIC %python
+-- MAGIC DA.cleanup()
+
+-- COMMAND ----------
+
+-- MAGIC %md-sandbox
+-- MAGIC © 2022 Databricks, Inc. All rights reserved.
+-- MAGIC Apache, Apache Spark, Spark and the Spark logo are trademarks of the Apache Software Foundation.
+-- MAGIC
+-- MAGIC Privacy Policy | Terms of Use | Support
diff --git a/Data-Engineering-With-Databricks/Solutions/02 - ELT with Spark SQL and Python/Labs/DE 2.2.5L - Extract and Load Data Lab.sql b/Data-Engineering-with-Databricks/Solutions/04 - ETL with Spark SQL/DE 4.5L - Extract and Load Data Lab.sql
similarity index 66%
rename from Data-Engineering-With-Databricks/Solutions/02 - ELT with Spark SQL and Python/Labs/DE 2.2.5L - Extract and Load Data Lab.sql
rename to Data-Engineering-with-Databricks/Solutions/04 - ETL with Spark SQL/DE 4.5L - Extract and Load Data Lab.sql
index 3479d10..157c2e8 100644
--- a/Data-Engineering-With-Databricks/Solutions/02 - ELT with Spark SQL and Python/Labs/DE 2.2.5L - Extract and Load Data Lab.sql
+++ b/Data-Engineering-with-Databricks/Solutions/04 - ETL with Spark SQL/DE 4.5L - Extract and Load Data Lab.sql
@@ -8,11 +8,14 @@
-- COMMAND ----------
-- MAGIC %md
+-- MAGIC
+-- MAGIC
-- MAGIC # Extract and Load Data Lab
-- MAGIC
-- MAGIC In this lab, you will extract and load raw data from JSON files into a Delta table.
-- MAGIC
--- MAGIC ##### Objectives
+-- MAGIC ## Learning Objectives
+-- MAGIC By the end of this lab, you should be able to:
-- MAGIC - Create an external table to extract data from JSON files
-- MAGIC - Create an empty Delta table with a provided schema
-- MAGIC - Insert records from an existing table into a Delta table
@@ -21,84 +24,111 @@
-- COMMAND ----------
-- MAGIC %md
+-- MAGIC
+-- MAGIC
-- MAGIC ## Run Setup
-- MAGIC
-- MAGIC Run the following cell to configure variables and datasets for this lesson.
-- COMMAND ----------
--- MAGIC %run ../../Includes/setup
+-- MAGIC %run ../Includes/Classroom-Setup-4.5L
-- COMMAND ----------
-- MAGIC %md
+-- MAGIC
+-- MAGIC
-- MAGIC ## Overview of the Data
-- MAGIC
--- MAGIC We will work with a sample of raw Kafka data written as JSON files. Each file contains all records consumed during a 5-second interval, stored with the full Kafka schema as a multiple-record JSON file. The schema for the table:
+-- MAGIC We will work with a sample of raw Kafka data written as JSON files.
+-- MAGIC
+-- MAGIC Each file contains all records consumed during a 5-second interval, stored with the full Kafka schema as a multiple-record JSON file.
+-- MAGIC
+-- MAGIC The schema for the table:
-- MAGIC
-- MAGIC | field | type | description |
-- MAGIC | ------ | ---- | ----------- |
--- MAGIC | key | BINARY | The `user_id` field is used as the key; this is a unique alphanumeric field that corresponds to session/cookie information |
+-- MAGIC | key | BINARY | The **`user_id`** field is used as the key; this is a unique alphanumeric field that corresponds to session/cookie information |
-- MAGIC | offset | LONG | This is a unique value, monotonically increasing for each partition |
-- MAGIC | partition | INTEGER | Our current Kafka implementation uses only 2 partitions (0 and 1) |
-- MAGIC | timestamp | LONG | This timestamp is recorded as milliseconds since epoch, and represents the time at which the producer appends a record to a partition |
--- MAGIC | topic | STRING | While the Kafka service hosts multiple topics, only those records from the `clickstream` topic are included here |
+-- MAGIC | topic | STRING | While the Kafka service hosts multiple topics, only those records from the **`clickstream`** topic are included here |
-- MAGIC | value | BINARY | This is the full data payload (to be discussed later), sent as JSON |
-- COMMAND ----------
--- MAGIC %md
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
-- MAGIC ## Extract Raw Events From JSON Files
-- MAGIC To load this data into Delta properly, we first need to extract the JSON data using the correct schema.
-- MAGIC
--- MAGIC Create an external table against JSON files located at the filepath provided below. Name this table `events_json` and declare the schema above.
+-- MAGIC Create an external table against JSON files located at the filepath provided below. Name this table **`events_json`** and declare the schema above.
-- COMMAND ----------
-- ANSWER
CREATE TABLE IF NOT EXISTS events_json
-(key BINARY, offset BIGINT, partition INT, timestamp BIGINT, topic STRING, value BINARY)
-USING JSON OPTIONS (path = "${c.source}/events/events-kafka.json")
+ (key BINARY, offset BIGINT, partition INT, timestamp BIGINT, topic STRING, value BINARY)
+USING JSON
+OPTIONS (path = "${da.paths.datasets}/raw/events-kafka")
-- COMMAND ----------
-- MAGIC %md
--- MAGIC **NOTE**: We'll use Python to run checks occasionally throughout the lab. The following cell will return as error with a message on what needs to change if you have not followed instructions. No output from cell execution means that you have completed this step.
+-- MAGIC
+-- MAGIC
+-- MAGIC **NOTE**: We'll use Python to run checks occasionally throughout the lab. The following cell will return an error with a message on what needs to change if you have not followed instructions. No output from cell execution means that you have completed this step.
-- COMMAND ----------
-- MAGIC %python
-- MAGIC assert spark.table("events_json"), "Table named `events_json` does not exist"
-- MAGIC assert spark.table("events_json").columns == ['key', 'offset', 'partition', 'timestamp', 'topic', 'value'], "Please name the columns in the order provided above"
--- MAGIC assert spark.table("events_json").dtypes == [('key', 'binary'), ('offset', 'int'), ('partition', 'bigint'), ('timestamp', 'bigint'), ('topic', 'string'), ('value', 'binary')], "Please make sure the column types are identical to those provided above"
--- MAGIC assert spark.table("events_json").count() == 45105, "The table should have 45105 records"
+-- MAGIC assert spark.table("events_json").dtypes == [('key', 'binary'), ('offset', 'bigint'), ('partition', 'int'), ('timestamp', 'bigint'), ('topic', 'string'), ('value', 'binary')], "Please make sure the column types are identical to those provided above"
+-- MAGIC
+-- MAGIC total = spark.table("events_json").count()
+-- MAGIC assert total == 2252, f"Expected 2252 records, found {total}"
-- COMMAND ----------
--- MAGIC %md ## Insert Raw Events Into Delta Table
--- MAGIC Create a managed Delta table named `events_raw` using the same schema - we'll load the data extracted above into this empty table.
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC
+-- MAGIC ## Insert Raw Events Into Delta Table
+-- MAGIC Create an empty managed Delta table named **`events_raw`** using the same schema.
-- COMMAND ----------
-- ANSWER
CREATE OR REPLACE TABLE events_raw
-(key BINARY, offset BIGINT, partition INT, timestamp BIGINT, topic STRING, value BINARY);
+ (key BINARY, offset BIGINT, partition INT, timestamp BIGINT, topic STRING, value BINARY);
-- COMMAND ----------
--- MAGIC %md Run the cell below to confirm the table was created correctly.
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC
+-- MAGIC Run the cell below to confirm the table was created correctly.
-- COMMAND ----------
-- MAGIC %python
--- MAGIC assert spark.table("events_raw"), "Table named `events_json` does not exist"
+-- MAGIC assert spark.table("events_raw"), "Table named `events_raw` does not exist"
-- MAGIC assert spark.table("events_raw").columns == ['key', 'offset', 'partition', 'timestamp', 'topic', 'value'], "Please name the columns in the order provided above"
-- MAGIC assert spark.table("events_raw").dtypes == [('key', 'binary'), ('offset', 'bigint'), ('partition', 'int'), ('timestamp', 'bigint'), ('topic', 'string'), ('value', 'binary')], "Please make sure the column types are identical to those provided above"
-- MAGIC assert spark.table("events_raw").count() == 0, "The table should have 0 records"
-- COMMAND ----------
--- MAGIC %md Once the extracted data and Delta table are ready, insert the JSON records from the `events_json` table into the new `events_raw` Delta table.
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC
+-- MAGIC Once the extracted data and Delta table are ready, insert the JSON records from the **`events_json`** table into the new **`events_raw`** Delta table.
-- COMMAND ----------
@@ -109,6 +139,8 @@ SELECT * FROM events_json
-- COMMAND ----------
-- MAGIC %md
+-- MAGIC
+-- MAGIC
-- MAGIC Manually review the table contents to ensure data was written as expected.
-- COMMAND ----------
@@ -119,29 +151,39 @@ SELECT * FROM events_raw
-- COMMAND ----------
-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC
-- MAGIC Run the cell below to confirm the data has been loaded correctly.
-- COMMAND ----------
-- MAGIC %python
--- MAGIC assert spark.table("events_raw").count() == 45105, "The table should have 45105 records"
--- MAGIC assert set(row['timestamp'] for row in spark.table("events_raw").select("timestamp").limit(5).collect()) == {1593879300053, 1593879300372, 1593879300607, 1593879300739, 1593879300821}, "Make sure you have not modified the data provided"
+-- MAGIC assert spark.table("events_raw").count() == 2252, "The table should have 2252 records"
+-- MAGIC assert set(row['timestamp'] for row in spark.table("events_raw").select("timestamp").limit(5).collect()) == {1593880885085, 1593880892303, 1593880889174, 1593880886106, 1593880889725}, "Make sure you have not modified the data provided"
-- COMMAND ----------
--- MAGIC %md ## Create Delta Table from a Query
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC
+-- MAGIC ## Create Delta Table from a Query
-- MAGIC In addition to new events data, let's also load a small lookup table that provides product details that we'll use later in the course.
--- MAGIC Use a CTAS statement to create a managed Delta table named `item_lookup` that extracts data from the parquet directory provided below.
+-- MAGIC Use a CTAS statement to create a managed Delta table named **`item_lookup`** that extracts data from the parquet directory provided below.
-- COMMAND ----------
-- ANSWER
-CREATE OR REPLACE TABLE item_lookup AS
-SELECT * FROM parquet.`${c.source}/products/products.parquet`
+CREATE OR REPLACE TABLE item_lookup
+AS SELECT * FROM parquet.`${da.paths.datasets}/raw/item-lookup`
-- COMMAND ----------
-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC
-- MAGIC Run the cell below to confirm the lookup table has been loaded correctly.
-- COMMAND ----------
@@ -152,6 +194,18 @@ SELECT * FROM parquet.`${c.source}/products/products.parquet`
-- COMMAND ----------
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC Run the following cell to delete the tables and files associated with this lesson.
+
+-- COMMAND ----------
+
+-- MAGIC %python
+-- MAGIC DA.cleanup()
+
+-- COMMAND ----------
+
-- MAGIC %md-sandbox
-- MAGIC © 2022 Databricks, Inc. All rights reserved.
-- MAGIC Apache, Apache Spark, Spark and the Spark logo are trademarks of the Apache Software Foundation.
diff --git a/Data-Engineering-with-Databricks/Solutions/04 - ETL with Spark SQL/DE 4.6 - Cleaning Data.sql b/Data-Engineering-with-Databricks/Solutions/04 - ETL with Spark SQL/DE 4.6 - Cleaning Data.sql
new file mode 100644
index 0000000..56c1bb3
--- /dev/null
+++ b/Data-Engineering-with-Databricks/Solutions/04 - ETL with Spark SQL/DE 4.6 - Cleaning Data.sql
@@ -0,0 +1,326 @@
+-- Databricks notebook source
+-- MAGIC %md-sandbox
+-- MAGIC
+-- MAGIC
+-- MAGIC

+-- MAGIC
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC # Cleaning Data
+-- MAGIC
+-- MAGIC Most transformations completed with Spark SQL will be familiar to SQL-savvy developers.
+-- MAGIC
+-- MAGIC As we inspect and clean our data, we'll need to construct various column expressions and queries to express transformations to apply on our dataset.
+-- MAGIC
+-- MAGIC Column expressions are constructed from existing columns, operators, and built-in Spark SQL functions. They can be used in **`SELECT`** statements to express transformations that create new columns from datasets.
+-- MAGIC
+-- MAGIC Along with **`SELECT`**, many additional query commands can be used to express transformations in Spark SQL, including **`WHERE`**, **`DISTINCT`**, **`ORDER BY`**, **`GROUP BY`**, etc.
+-- MAGIC
+-- MAGIC In this notebook, we'll review a few concepts that might differ from other systems you're used to, as well as calling out a few useful functions for common operations.
+-- MAGIC
+-- MAGIC We'll pay special attention to behaviors around **`NULL`** values, as well as formatting strings and datetime fields.
+-- MAGIC
+-- MAGIC ## Learning Objectives
+-- MAGIC By the end of this lesson, you should be able to:
+-- MAGIC - Summarize datasets and describe null behaviors
+-- MAGIC - Retrieve and removing duplicates
+-- MAGIC - Validate datasets for expected counts, missing values, and duplicate records
+-- MAGIC - Apply common transformations to clean and transform data
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC ## Run Setup
+-- MAGIC
+-- MAGIC The setup script will create the data and declare necessary values for the rest of this notebook to execute.
+
+-- COMMAND ----------
+
+-- MAGIC %run ../Includes/Classroom-Setup-4.6
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC We'll work with new users records in **`users_dirty`** table for this lesson.
+
+-- COMMAND ----------
+
+SELECT * FROM users_dirty
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC ## Inspect Data
+-- MAGIC
+-- MAGIC Let's start by counting values in each field of our data.
+
+-- COMMAND ----------
+
+SELECT count(user_id), count(user_first_touch_timestamp), count(email), count(updated), count(*)
+FROM users_dirty
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC Note that **`count(col)`** skips **`NULL`** values when counting specific columns or expressions.
+-- MAGIC
+-- MAGIC However, **`count(*)`** is a special case that counts the total number of rows (including rows that are only **`NULL`** values).
+-- MAGIC
+-- MAGIC To count null values, use the **`count_if`** function or **`WHERE`** clause to provide a condition that filters for records where the value **`IS NULL`**.
+
+-- COMMAND ----------
+
+SELECT
+ count_if(user_id IS NULL) AS missing_user_ids,
+ count_if(user_first_touch_timestamp IS NULL) AS missing_timestamps,
+ count_if(email IS NULL) AS missing_emails,
+ count_if(updated IS NULL) AS missing_updates
+FROM users_dirty
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC Clearly there are at least a handful of null values in all of our fields. Let's try to discover what is causing this.
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC ## Distinct Records
+-- MAGIC
+-- MAGIC Start by looking for distinct rows.
+
+-- COMMAND ----------
+
+SELECT count(DISTINCT(*))
+FROM users_dirty
+
+-- COMMAND ----------
+
+SELECT count(DISTINCT(user_id))
+FROM users_dirty
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC Because **`user_id`** is generated alongside the **`user_first_touch_timestamp`**, these fields should always be in parity for counts.
+
+-- COMMAND ----------
+
+SELECT count(DISTINCT(user_first_touch_timestamp))
+FROM users_dirty
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC Here we note that while there are some duplicate records relative to our total row count, we have a much higher number of distinct values.
+-- MAGIC
+-- MAGIC Let's go ahead and combine our distinct counts with columnar counts to see these values side-by-side.
+
+-- COMMAND ----------
+
+SELECT
+ count(user_id) AS total_ids,
+ count(DISTINCT user_id) AS unique_ids,
+ count(email) AS total_emails,
+ count(DISTINCT email) AS unique_emails,
+ count(updated) AS total_updates,
+ count(DISTINCT(updated)) AS unique_updates,
+ count(*) AS total_rows,
+ count(DISTINCT(*)) AS unique_non_null_rows
+FROM users_dirty
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC Based on the above summary, we know:
+-- MAGIC * All of our emails are unique
+-- MAGIC * Our emails contain the largest number of null values
+-- MAGIC * The **`updated`** column contains only 1 distinct value, but most are non-null
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC ## Deduplicate Rows
+-- MAGIC Based on the above behavior, what do you expect will happen if we use **`DISTINCT *`** to try to remove duplicate records?
+
+-- COMMAND ----------
+
+CREATE OR REPLACE TEMP VIEW users_deduped AS
+ SELECT DISTINCT(*) FROM users_dirty;
+
+SELECT * FROM users_deduped
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC Note in the preview above that there appears to be null values, even though our **`COUNT(DISTINCT(*))`** ignored these nulls.
+-- MAGIC
+-- MAGIC How many rows do you expect passed through this **`DISTINCT`** command?
+
+-- COMMAND ----------
+
+SELECT COUNT(*) FROM users_deduped
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC Note that we now have a completely new number.
+-- MAGIC
+-- MAGIC Spark skips null values while counting values in a column or counting distinct values for a field, but does not omit rows with nulls from a **`DISTINCT`** query.
+-- MAGIC
+-- MAGIC Indeed, the reason we're seeing a new number that is 1 higher than previous counts is because we have 3 rows that are all nulls (here included as a single distinct row).
+
+-- COMMAND ----------
+
+SELECT * FROM users_dirty
+WHERE
+ user_id IS NULL AND
+ user_first_touch_timestamp IS NULL AND
+ email IS NULL AND
+ updated IS NULL
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC ## Deduplicate Based on Specific Columns
+-- MAGIC
+-- MAGIC Recall that **`user_id`** and **`user_first_touch_timestamp`** should form unique tuples, as they are both generated when a given user is first encountered.
+-- MAGIC
+-- MAGIC We can see that we have some null values in each of these fields; exclude nulls counting the distinct number of pairs for these fields will get us the correct count for distinct values in our table.
+
+-- COMMAND ----------
+
+SELECT COUNT(DISTINCT(user_id, user_first_touch_timestamp))
+FROM users_dirty
+WHERE user_id IS NOT NULL
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC Here, we'll use these distinct pairs to remove unwanted rows from our data.
+-- MAGIC
+-- MAGIC The code below uses **`GROUP BY`** to remove duplicate records based on **`user_id`** and **`user_first_touch_timestamp`**.
+-- MAGIC
+-- MAGIC The **`max()`** aggregate function is used on the **`email`** column as a hack to capture non-null emails when multiple records are present; in this batch, all **`updated`** values were equivalent, but we need to use an aggregate function to keep this value in the result of our group by.
+
+-- COMMAND ----------
+
+CREATE OR REPLACE TEMP VIEW deduped_users AS
+SELECT user_id, user_first_touch_timestamp, max(email) AS email, max(updated) AS updated
+FROM users_dirty
+WHERE user_id IS NOT NULL
+GROUP BY user_id, user_first_touch_timestamp;
+
+SELECT count(*) FROM deduped_users
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC ## Validate Datasets
+-- MAGIC We've visually confirmed that our counts are as expected, based our manual review.
+-- MAGIC
+-- MAGIC Below, we programmatically do some validation using simple filters and **`WHERE`** clauses.
+-- MAGIC
+-- MAGIC Validate that the **`user_id`** for each row is unique.
+
+-- COMMAND ----------
+
+SELECT max(row_count) <= 1 no_duplicate_ids FROM (
+ SELECT user_id, count(*) AS row_count
+ FROM deduped_users
+ GROUP BY user_id)
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC
+-- MAGIC Confirm that each email is associated with at most one **`user_id`**.
+
+-- COMMAND ----------
+
+SELECT max(user_id_count) <= 1 at_most_one_id FROM (
+ SELECT email, count(user_id) AS user_id_count
+ FROM deduped_users
+ WHERE email IS NOT NULL
+ GROUP BY email)
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC ## Date Format and Regex
+-- MAGIC Now that we've removed null fields and eliminated duplicates, we may wish to extract further value out of the data.
+-- MAGIC
+-- MAGIC The code below:
+-- MAGIC - Correctly scales and casts the **`user_first_touch_timestamp`** to a valid timestamp
+-- MAGIC - Extracts the calendar data and clock time for this timestamp in human readable format
+-- MAGIC - Uses **`regexp_extract`** to extract the domains from the email column using regex
+
+-- COMMAND ----------
+
+SELECT *,
+ date_format(first_touch, "MMM d, yyyy") AS first_touch_date,
+ date_format(first_touch, "HH:mm:ss") AS first_touch_time,
+ regexp_extract(email, "(?<=@).+", 0) AS email_domain
+FROM (
+ SELECT *,
+ CAST(user_first_touch_timestamp / 1e6 AS timestamp) AS first_touch
+ FROM deduped_users
+)
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC Run the following cell to delete the tables and files associated with this lesson.
+
+-- COMMAND ----------
+
+-- MAGIC %python
+-- MAGIC DA.cleanup()
+
+-- COMMAND ----------
+
+-- MAGIC %md-sandbox
+-- MAGIC © 2022 Databricks, Inc. All rights reserved.
+-- MAGIC Apache, Apache Spark, Spark and the Spark logo are trademarks of the Apache Software Foundation.
+-- MAGIC
+-- MAGIC Privacy Policy | Terms of Use | Support
diff --git a/Data-Engineering-with-Databricks/Solutions/04 - ETL with Spark SQL/DE 4.7 - Advanced SQL Transformations.sql b/Data-Engineering-with-Databricks/Solutions/04 - ETL with Spark SQL/DE 4.7 - Advanced SQL Transformations.sql
new file mode 100644
index 0000000..e689ca3
--- /dev/null
+++ b/Data-Engineering-with-Databricks/Solutions/04 - ETL with Spark SQL/DE 4.7 - Advanced SQL Transformations.sql
@@ -0,0 +1,426 @@
+-- Databricks notebook source
+-- MAGIC %md-sandbox
+-- MAGIC
+-- MAGIC
+-- MAGIC

+-- MAGIC
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC # Advanced SQL Transformations
+-- MAGIC
+-- MAGIC Querying tabular data stored in the data lakehouse with Spark SQL is easy, efficient, and fast.
+-- MAGIC
+-- MAGIC This gets more complicated as the data structure becomes less regular, when many tables need to be used in a single query, or when the shape of data needs to be changed dramatically. This notebook introduces a number of functions present in Spark SQL to help engineers complete even the most complicated transformations.
+-- MAGIC
+-- MAGIC ## Learning Objectives
+-- MAGIC By the end of this lesson, you should be able to:
+-- MAGIC - Use **`.`** and **`:`** syntax to query nested data
+-- MAGIC - Work with JSON
+-- MAGIC - Flatten and unpacking arrays and structs
+-- MAGIC - Combine datasets using joins and set operators
+-- MAGIC - Reshape data using pivot tables
+-- MAGIC - Use higher order functions for working with arrays
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC ## Run Setup
+-- MAGIC
+-- MAGIC The setup script will create the data and declare necessary values for the rest of this notebook to execute.
+
+-- COMMAND ----------
+
+-- MAGIC %run ../Includes/Classroom-Setup-4.7
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC ## Interacting with JSON Data
+-- MAGIC
+-- MAGIC The **`events_raw`** table was registered against data representing a Kafka payload.
+-- MAGIC
+-- MAGIC In most cases, Kafka data will be binary-encoded JSON values. We'll cast the **`key`** and **`value`** as strings below to look at these in a human-readable format.
+
+-- COMMAND ----------
+
+CREATE OR REPLACE TEMP VIEW events_strings AS
+ SELECT string(key), string(value)
+ FROM events_raw;
+
+SELECT * FROM events_strings
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC Spark SQL has built-in functionality to directly interact with JSON data stored as strings. We can use the **`:`** syntax to traverse nested data structures.
+
+-- COMMAND ----------
+
+SELECT value:device, value:geo:city
+FROM events_strings
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC Spark SQL also has the ability to parse JSON objects into struct types (a native Spark type with nested attributes).
+-- MAGIC
+-- MAGIC However, the **`from_json`** function requires a schema. To derive the schema of our current data, we'll start by executing a query we know will return a JSON value with no null fields.
+
+-- COMMAND ----------
+
+SELECT value
+FROM events_strings
+WHERE value:event_name = "finalize"
+ORDER BY key
+LIMIT 1
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC Spark SQL also has a **`schema_of_json`** function to derive the JSON schema from an example. Here, we copy and paste an example JSON to the function and chain it into the **`from_json`** function to cast our **`value`** field to a struct type.
+
+-- COMMAND ----------
+
+CREATE OR REPLACE TEMP VIEW parsed_events AS
+ SELECT from_json(value, schema_of_json('{"device":"Linux","ecommerce":{"purchase_revenue_in_usd":1075.5,"total_item_quantity":1,"unique_items":1},"event_name":"finalize","event_previous_timestamp":1593879231210816,"event_timestamp":1593879335779563,"geo":{"city":"Houston","state":"TX"},"items":[{"coupon":"NEWBED10","item_id":"M_STAN_K","item_name":"Standard King Mattress","item_revenue_in_usd":1075.5,"price_in_usd":1195.0,"quantity":1}],"traffic_source":"email","user_first_touch_timestamp":1593454417513109,"user_id":"UA000000106116176"}')) AS json
+ FROM events_strings;
+
+SELECT * FROM parsed_events
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC Once a JSON string is unpacked to a struct type, Spark supports **`*`** (star) unpacking to flatten fields into columns.
+
+-- COMMAND ----------
+
+CREATE OR REPLACE TEMP VIEW new_events_final AS
+ SELECT json.*
+ FROM parsed_events;
+
+SELECT * FROM new_events_final
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC ## Explore Data Structures
+-- MAGIC
+-- MAGIC Spark SQL has robust syntax for working with complex and nested data types.
+-- MAGIC
+-- MAGIC Start by looking at the fields in the **`events`** table.
+
+-- COMMAND ----------
+
+DESCRIBE events
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC The **`ecommerce`** field is a struct that contains a double and 2 longs.
+-- MAGIC
+-- MAGIC We can interact with the subfields in this field using standard **`.`** syntax similar to how we might traverse nested data in JSON.
+
+-- COMMAND ----------
+
+SELECT ecommerce.purchase_revenue_in_usd
+FROM events
+WHERE ecommerce.purchase_revenue_in_usd IS NOT NULL
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC ## Explode Arrays
+-- MAGIC The **`items`** field in the **`events`** table is an array of structs.
+-- MAGIC
+-- MAGIC Spark SQL has a number of functions specifically to deal with arrays.
+-- MAGIC
+-- MAGIC The **`explode`** function lets us put each element in an array on its own row.
+
+-- COMMAND ----------
+
+SELECT user_id, event_timestamp, event_name, explode(items) AS item
+FROM events
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC ## Collect Arrays
+-- MAGIC
+-- MAGIC The **`collect_set`** function can collect unique values for a field, including fields within arrays.
+-- MAGIC
+-- MAGIC The **`flatten`** function allows multiple arrays to be combined into a single array.
+-- MAGIC
+-- MAGIC The **`array_distinct`** function removes duplicate elements from an array.
+-- MAGIC
+-- MAGIC Here, we combine these queries to create a simple table that shows the unique collection of actions and the items in a user's cart.
+
+-- COMMAND ----------
+
+SELECT user_id,
+ collect_set(event_name) AS event_history,
+ array_distinct(flatten(collect_set(items.item_id))) AS cart_history
+FROM events
+GROUP BY user_id
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC ## Join Tables
+-- MAGIC
+-- MAGIC Spark SQL supports standard join operations (inner, outer, left, right, anti, cross, semi).
+-- MAGIC
+-- MAGIC Here we chain a join with a lookup table to an **`explode`** operation to grab the standard printed item name.
+
+-- COMMAND ----------
+
+CREATE OR REPLACE VIEW sales_enriched AS
+SELECT *
+FROM (
+ SELECT *, explode(items) AS item
+ FROM sales) a
+INNER JOIN item_lookup b
+ON a.item.item_id = b.item_id;
+
+SELECT * FROM sales_enriched
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC ## Set Operators
+-- MAGIC Spark SQL supports **`UNION`**, **`MINUS`**, and **`INTERSECT`** set operators.
+-- MAGIC
+-- MAGIC **`UNION`** returns the collection of two queries.
+-- MAGIC
+-- MAGIC The query below returns the same results as if we inserted our **`new_events_final`** into the **`events`** table.
+
+-- COMMAND ----------
+
+SELECT * FROM events
+UNION
+SELECT * FROM new_events_final
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC **`INTERSECT`** returns all rows found in both relations.
+
+-- COMMAND ----------
+
+SELECT * FROM events
+INTERSECT
+SELECT * FROM new_events_final
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC The above query returns no results because our two datasets have no values in common.
+-- MAGIC
+-- MAGIC **`MINUS`** returns all the rows found in one dataset but not the other; we'll skip executing this here as our previous query demonstrates we have no values in common.
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC
+-- MAGIC ## Pivot Tables
+-- MAGIC The **`PIVOT`** clause is used for data perspective. We can get the aggregated values based on specific column values, which will be turned to multiple columns used in **`SELECT`** clause. The **`PIVOT`** clause can be specified after the table name or subquery.
+-- MAGIC
+-- MAGIC **`SELECT * FROM ()`**: The **`SELECT`** statement inside the parentheses is the input for this table.
+-- MAGIC
+-- MAGIC **`PIVOT`**: The first argument in the clause is an aggregate function and the column to be aggregated. Then, we specify the pivot column in the **`FOR`** subclause. The **`IN`** operator contains the pivot column values.
+-- MAGIC
+-- MAGIC Here we use **`PIVOT`** to create a new **`transactions`** table that flattens out the information contained in the **`sales`** table.
+-- MAGIC
+-- MAGIC This flattened data format can be useful for dashboarding, but also useful for applying machine learning algorithms for inference or prediction.
+
+-- COMMAND ----------
+
+CREATE OR REPLACE TABLE transactions AS
+
+SELECT * FROM (
+ SELECT
+ email,
+ order_id,
+ transaction_timestamp,
+ total_item_quantity,
+ purchase_revenue_in_usd,
+ unique_items,
+ item.item_id AS item_id,
+ item.quantity AS quantity
+ FROM sales_enriched
+) PIVOT (
+ sum(quantity) FOR item_id in (
+ 'P_FOAM_K',
+ 'M_STAN_Q',
+ 'P_FOAM_S',
+ 'M_PREM_Q',
+ 'M_STAN_F',
+ 'M_STAN_T',
+ 'M_PREM_K',
+ 'M_PREM_F',
+ 'M_STAN_K',
+ 'M_PREM_T',
+ 'P_DOWN_S',
+ 'P_DOWN_K'
+ )
+);
+
+SELECT * FROM transactions
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC
+-- MAGIC ## Higher Order Functions
+-- MAGIC Higher order functions in Spark SQL allow you to work directly with complex data types. When working with hierarchical data, records are frequently stored as array or map type objects. Higher-order functions allow you to transform data while preserving the original structure.
+-- MAGIC
+-- MAGIC Higher order functions include:
+-- MAGIC - **`FILTER`** filters an array using the given lambda function.
+-- MAGIC - **`EXIST`** tests whether a statement is true for one or more elements in an array.
+-- MAGIC - **`TRANSFORM`** uses the given lambda function to transform all elements in an array.
+-- MAGIC - **`REDUCE`** takes two lambda functions to reduce the elements of an array to a single value by merging the elements into a buffer, and the apply a finishing function on the final buffer.
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC ## Filter
+-- MAGIC Remove items that are not king-sized from all records in our **`items`** column. We can use the **`FILTER`** function to create a new column that excludes that value from each array.
+-- MAGIC
+-- MAGIC **`FILTER (items, i -> i.item_id LIKE "%K") AS king_items`**
+-- MAGIC
+-- MAGIC In the statement above:
+-- MAGIC - **`FILTER`** : the name of the higher-order function
+-- MAGIC - **`items`** : the name of our input array
+-- MAGIC - **`i`** : the name of the iterator variable. You choose this name and then use it in the lambda function. It iterates over the array, cycling each value into the function one at a time.
+-- MAGIC - **`->`** : Indicates the start of a function
+-- MAGIC - **`i.item_id LIKE "%K"`** : This is the function. Each value is checked to see if it ends with the capital letter K. If it is, it gets filtered into the new column, **`king_items`**
+
+-- COMMAND ----------
+
+-- filter for sales of only king sized items
+SELECT
+ order_id,
+ items,
+ FILTER (items, i -> i.item_id LIKE "%K") AS king_items
+FROM sales
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC You may write a filter that produces a lot of empty arrays in the created column. When that happens, it can be useful to use a **`WHERE`** clause to show only non-empty array values in the returned column.
+-- MAGIC
+-- MAGIC In this example, we accomplish that by using a subquery (a query within a query). They are useful for performing an operation in multiple steps. In this case, we're using it to create the named column that we will use with a **`WHERE`** clause.
+
+-- COMMAND ----------
+
+CREATE OR REPLACE TEMP VIEW king_size_sales AS
+
+SELECT order_id, king_items
+FROM (
+ SELECT
+ order_id,
+ FILTER (items, i -> i.item_id LIKE "%K") AS king_items
+ FROM sales)
+WHERE size(king_items) > 0;
+
+SELECT * FROM king_size_sales
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC ## Transform
+-- MAGIC Built-in functions are designed to operate on a single, simple data type within a cell; they cannot process array values. **`TRANSFORM`** can be particularly useful when you want to apply an existing function to each element in an array.
+-- MAGIC
+-- MAGIC Compute the total revenue from king-sized items per order.
+-- MAGIC
+-- MAGIC **`TRANSFORM(king_items, k -> CAST(k.item_revenue_in_usd * 100 AS INT)) AS item_revenues`**
+-- MAGIC
+-- MAGIC In the statement above, for each value in the input array, we extract the item's revenue value, multiply it by 100, and cast the result to integer. Note that we're using the same kind as references as in the previous command, but we name the iterator with a new variable, **`k`**.
+
+-- COMMAND ----------
+
+-- get total revenue from king items per order
+CREATE OR REPLACE TEMP VIEW king_item_revenues AS
+
+SELECT
+ order_id,
+ king_items,
+ TRANSFORM (
+ king_items,
+ k -> CAST(k.item_revenue_in_usd * 100 AS INT)
+ ) AS item_revenues
+FROM king_size_sales;
+
+SELECT * FROM king_item_revenues
+
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC ## Summary
+-- MAGIC Spark SQL offers a comprehensive set of native functionality for interacting with and manipulating highly nested data.
+-- MAGIC
+-- MAGIC While some syntax for this functionality may be unfamiliar to SQL users, leveraging built-in functions like higher order functions can prevent SQL engineers from needing to rely on custom logic when dealing with highly complex data structures.
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC Run the following cell to delete the tables and files associated with this lesson.
+
+-- COMMAND ----------
+
+-- MAGIC %python
+-- MAGIC DA.cleanup()
+
+-- COMMAND ----------
+
+-- MAGIC %md-sandbox
+-- MAGIC © 2022 Databricks, Inc. All rights reserved.
+-- MAGIC Apache, Apache Spark, Spark and the Spark logo are trademarks of the Apache Software Foundation.
+-- MAGIC
+-- MAGIC Privacy Policy | Terms of Use | Support
diff --git a/Data-Engineering-with-Databricks/Solutions/04 - ETL with Spark SQL/DE 4.8 - SQL UDFs and Control Flow.sql b/Data-Engineering-with-Databricks/Solutions/04 - ETL with Spark SQL/DE 4.8 - SQL UDFs and Control Flow.sql
new file mode 100644
index 0000000..3afadab
--- /dev/null
+++ b/Data-Engineering-with-Databricks/Solutions/04 - ETL with Spark SQL/DE 4.8 - SQL UDFs and Control Flow.sql
@@ -0,0 +1,205 @@
+-- Databricks notebook source
+-- MAGIC %md-sandbox
+-- MAGIC
+-- MAGIC
+-- MAGIC

+-- MAGIC
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC # SQL UDFs and Control Flow
+-- MAGIC
+-- MAGIC Databricks added support for User Defined Functions (UDFs) registered natively in SQL starting in DBR 9.1.
+-- MAGIC
+-- MAGIC This feature allows users to register custom combinations of SQL logic as functions in a database, making these methods reusable anywhere SQL can be run on Databricks. These functions leverage Spark SQL directly, maintaining all of the optimizations of Spark when applying your custom logic to large datasets.
+-- MAGIC
+-- MAGIC In this notebook, we'll first have a simple introduction to these methods, and then explore how this logic can be combined with **`CASE`** / **`WHEN`** clauses to provide reusable custom control flow logic.
+-- MAGIC
+-- MAGIC ## Learning Objectives
+-- MAGIC By the end of this lesson, you should be able to:
+-- MAGIC * Define and registering SQL UDFs
+-- MAGIC * Describe the security model used for sharing SQL UDFs
+-- MAGIC * Use **`CASE`** / **`WHEN`** statements in SQL code
+-- MAGIC * Leverage **`CASE`** / **`WHEN`** statements in SQL UDFs for custom control flow
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC ## Setup
+-- MAGIC Run the following cell to setup your environment.
+
+-- COMMAND ----------
+
+-- MAGIC %run ../Includes/Classroom-Setup-4.8
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC ## Create a Simple Dataset
+-- MAGIC
+-- MAGIC For this notebook, we'll consider the following dataset, registered here as a temporary view.
+
+-- COMMAND ----------
+
+CREATE OR REPLACE TEMPORARY VIEW foods(food) AS VALUES
+("beef"),
+("beans"),
+("potatoes"),
+("bread");
+
+SELECT * FROM foods
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC ## SQL UDFs
+-- MAGIC At minimum, a SQL UDF requires a function name, optional parameters, the type to be returned, and some custom logic.
+-- MAGIC
+-- MAGIC Below, a simple function named **`yelling`** takes one parameter named **`text`**. It returns a string that will be in all uppercase letters with three exclamation points added to the end.
+
+-- COMMAND ----------
+
+CREATE OR REPLACE FUNCTION yelling(text STRING)
+RETURNS STRING
+RETURN concat(upper(text), "!!!")
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC Note that this function is applied to all values of the column in a parallel fashion within the Spark processing engine. SQL UDFs are an efficient way to define custom logic that is optimized for execution on Databricks.
+
+-- COMMAND ----------
+
+SELECT yelling(food) FROM foods
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC ## Scoping and Permissions of SQL UDFs
+-- MAGIC
+-- MAGIC Note that SQL UDFs will persist between execution environments (which can include notebooks, DBSQL queries, and jobs).
+-- MAGIC
+-- MAGIC We can describe the function to see where it was registered and basic information about expected inputs and what is returned.
+
+-- COMMAND ----------
+
+DESCRIBE FUNCTION yelling
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC By describing extended, we can get even more information.
+-- MAGIC
+-- MAGIC Note that the **`Body`** field at the bottom of the function description shows the SQL logic used in the function itself.
+
+-- COMMAND ----------
+
+DESCRIBE FUNCTION EXTENDED yelling
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC SQL UDFs exist as objects in the metastore and are governed by the same Table ACLs as databases, tables, or views.
+-- MAGIC
+-- MAGIC In order to use a SQL UDF, a user must have **`USAGE`** and **`SELECT`** permissions on the function.
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC ## CASE/WHEN
+-- MAGIC
+-- MAGIC The standard SQL syntactic construct **`CASE`** / **`WHEN`** allows the evaluation of multiple conditional statements with alternative outcomes based on table contents.
+-- MAGIC
+-- MAGIC Again, everything is evaluated natively in Spark, and so is optimized for parallel execution.
+
+-- COMMAND ----------
+
+SELECT *,
+ CASE
+ WHEN food = "beans" THEN "I love beans"
+ WHEN food = "potatoes" THEN "My favorite vegetable is potatoes"
+ WHEN food <> "beef" THEN concat("Do you have any good recipes for ", food ,"?")
+ ELSE concat("I don't eat ", food)
+ END
+FROM foods
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC ## Simple Control Flow Functions
+-- MAGIC
+-- MAGIC Combining SQL UDFs with control flow in the form of **`CASE`** / **`WHEN`** clauses provides optimized execution for control flows within SQL workloads.
+-- MAGIC
+-- MAGIC Here, we demonstrate wrapping the previous logic in a function that will be reusable anywhere we can execute SQL.
+
+-- COMMAND ----------
+
+CREATE FUNCTION foods_i_like(food STRING)
+RETURNS STRING
+RETURN CASE
+ WHEN food = "beans" THEN "I love beans"
+ WHEN food = "potatoes" THEN "My favorite vegetable is potatoes"
+ WHEN food <> "beef" THEN concat("Do you have any good recipes for ", food ,"?")
+ ELSE concat("I don't eat ", food)
+END;
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC Using this method on our data provides the desired outcome.
+
+-- COMMAND ----------
+
+SELECT foods_i_like(food) FROM foods
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC While the example provided here are simple string methods, these same basic principles can be used to add custom computations and logic for native execution in Spark SQL.
+-- MAGIC
+-- MAGIC Especially for enterprises that might be migrating users from systems with many defined procedures or custom-defined formulas, SQL UDFs can allow a handful of users to define the complex logic needed for common reporting and analytic queries.
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC Run the following cell to delete the tables and files associated with this lesson.
+
+-- COMMAND ----------
+
+-- MAGIC %python
+-- MAGIC DA.cleanup()
+
+-- COMMAND ----------
+
+-- MAGIC %md-sandbox
+-- MAGIC © 2022 Databricks, Inc. All rights reserved.
+-- MAGIC Apache, Apache Spark, Spark and the Spark logo are trademarks of the Apache Software Foundation.
+-- MAGIC
+-- MAGIC Privacy Policy | Terms of Use | Support
diff --git a/Data-Engineering-With-Databricks/Solutions/02 - ELT with Spark SQL and Python/Labs/DE 2.2.9L - Reshaping Data.sql b/Data-Engineering-with-Databricks/Solutions/04 - ETL with Spark SQL/DE 4.9L - Reshaping Data Lab.sql
similarity index 59%
rename from Data-Engineering-With-Databricks/Solutions/02 - ELT with Spark SQL and Python/Labs/DE 2.2.9L - Reshaping Data.sql
rename to Data-Engineering-with-Databricks/Solutions/04 - ETL with Spark SQL/DE 4.9L - Reshaping Data Lab.sql
index f617fda..0078fe7 100644
--- a/Data-Engineering-With-Databricks/Solutions/02 - ELT with Spark SQL and Python/Labs/DE 2.2.9L - Reshaping Data.sql
+++ b/Data-Engineering-with-Databricks/Solutions/04 - ETL with Spark SQL/DE 4.9L - Reshaping Data Lab.sql
@@ -8,39 +8,50 @@
-- COMMAND ----------
-- MAGIC %md
+-- MAGIC
+-- MAGIC
-- MAGIC # Reshaping Data Lab
-- MAGIC
--- MAGIC In this lab, you will create a `clickpaths` table that aggregates the number of times each user took a particular action in `events` and then join this information with the flattened view of `transactions` created in the previous notebook.
+-- MAGIC In this lab, you will create a **`clickpaths`** table that aggregates the number of times each user took a particular action in **`events`** and then join this information with the flattened view of **`transactions`** created in the previous notebook.
-- MAGIC
--- MAGIC You'll also explore a new higher order function to flag items recorded in `sales` based on information extracted from item names.
+-- MAGIC You'll also explore a new higher order function to flag items recorded in **`sales`** based on information extracted from item names.
-- MAGIC
--- MAGIC ##### Objectives
+-- MAGIC ## Learning Objectives
+-- MAGIC By the end of this lab, you should be able to:
-- MAGIC - Pivot and join tables to create clickpaths for each user
-- MAGIC - Apply higher order functions to flag types of products purchased
-- COMMAND ----------
-- MAGIC %md
+-- MAGIC
+-- MAGIC
-- MAGIC ## Run Setup
-- MAGIC
-- MAGIC The setup script will create the data and declare necessary values for the rest of this notebook to execute.
-- COMMAND ----------
--- MAGIC %run ../../Includes/setup-transactions
+-- MAGIC %run ../Includes/Classroom-Setup-4.9L
-- COMMAND ----------
-- MAGIC %md
+-- MAGIC
+-- MAGIC
-- MAGIC ## Reshape Datasets to Create Click Paths
--- MAGIC This operation will join data from your `events` and `transactions` tables in order to create a record of all actions a user took on the site and what their final order looked like.
+-- MAGIC This operation will join data from your **`events`** and **`transactions`** tables in order to create a record of all actions a user took on the site and what their final order looked like.
-- MAGIC
--- MAGIC The `clickpaths` table should contain all the fields from your `transactions` table, as well as a count of every `event_name` in its own column. Each user that completed a purchase should have a single row in the final table. Let's start by pivoting the `events` table to get counts for each `event_name`.
+-- MAGIC The **`clickpaths`** table should contain all the fields from your **`transactions`** table, as well as a count of every **`event_name`** in its own column. Each user that completed a purchase should have a single row in the final table. Let's start by pivoting the **`events`** table to get counts for each **`event_name`**.
-- COMMAND ----------
--- MAGIC %md ### 1. Pivot `events` to count actions for each user
--- MAGIC We want to aggregate the number of times each user performed a specific event, specified in the `event_name` column. To do this, group by `user` and pivot on `event_name` to provide a count of every event type in its own column, resulting in the schema below.
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC
+-- MAGIC ### 1. Pivot **`events`** to count actions for each user
+-- MAGIC We want to aggregate the number of times each user performed a specific event, specified in the **`event_name`** column. To do this, group by **`user`** and pivot on **`event_name`** to provide a count of every event type in its own column, resulting in the schema below.
-- MAGIC
-- MAGIC | field | type |
-- MAGIC | --- | --- |
@@ -86,31 +97,42 @@ SELECT * FROM (
-- COMMAND ----------
-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC
-- MAGIC **NOTE**: We'll use Python to run checks occasionally throughout the lab. The helper functions below will return an error with a message on what needs to change if you have not followed instructions. No output means that you have completed this step.
-- COMMAND ----------
-- MAGIC %python
-- MAGIC def check_table_results(table_name, column_names, num_rows):
--- MAGIC assert spark.table(table_name), f"Table named `{table_name}` does not exist"
+-- MAGIC assert spark.table(table_name), f"Table named **`{table_name}`** does not exist"
-- MAGIC assert spark.table(table_name).columns == column_names, "Please name the columns in the order provided above"
-- MAGIC assert spark.table(table_name).count() == num_rows, f"The table should have {num_rows} records"
-- COMMAND ----------
--- MAGIC %md Run the cell below to confirm the view was created correctly.
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC
+-- MAGIC Run the cell below to confirm the view was created correctly.
-- COMMAND ----------
-- MAGIC %python
-- MAGIC event_columns = ['user', 'cart', 'pillows', 'login', 'main', 'careers', 'guest', 'faq', 'down', 'warranty', 'finalize', 'register', 'shipping_info', 'checkout', 'mattresses', 'add_item', 'press', 'email_coupon', 'cc_info', 'foam', 'reviews', 'original', 'delivery', 'premium']
--- MAGIC check_table_results("events_pivot", event_columns, 4085296)
+-- MAGIC check_table_results("events_pivot", event_columns, 204586)
-- COMMAND ----------
--- MAGIC %md ### 2. Join event counts and transactions for all users
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
-- MAGIC
--- MAGIC Next, join `events_pivot` with `transactions` to create the table `clickpaths`. This table should have the same event name columns from the `events_pivot` table created above, followed by columns from the `transactions` table, as shown below.
+-- MAGIC ### 2. Join event counts and transactions for all users
+-- MAGIC
+-- MAGIC Next, join **`events_pivot`** with **`transactions`** to create the table **`clickpaths`**. This table should have the same event name columns from the **`events_pivot`** table created above, followed by columns from the **`transactions`** table, as shown below.
-- MAGIC
-- MAGIC | field | type |
-- MAGIC | --- | --- |
@@ -147,30 +169,36 @@ JOIN transactions b
-- COMMAND ----------
--- MAGIC %md Run the cell below to confirm the table was created correctly.
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC
+-- MAGIC Run the cell below to confirm the table was created correctly.
-- COMMAND ----------
-- MAGIC %python
-- MAGIC clickpath_columns = event_columns + ['user_id', 'order_id', 'transaction_timestamp', 'total_item_quantity', 'purchase_revenue_in_usd', 'unique_items', 'P_FOAM_K', 'M_STAN_Q', 'P_FOAM_S', 'M_PREM_Q', 'M_STAN_F', 'M_STAN_T', 'M_PREM_K', 'M_PREM_F', 'M_STAN_K', 'M_PREM_T', 'P_DOWN_S', 'P_DOWN_K']
--- MAGIC check_table_results("clickpaths", clickpath_columns, 180680)
+-- MAGIC check_table_results("clickpaths", clickpath_columns, 9085)
-- COMMAND ----------
-- MAGIC %md
+-- MAGIC
+-- MAGIC
-- MAGIC ## Flag Types of Products Purchased
--- MAGIC Here, you'll use the higher order function `EXISTS` to create boolean columns `mattress` and `pillow` that indicate whether the item purchased was a mattress or pillow product.
+-- MAGIC Here, you'll use the higher order function **`EXISTS`** to create boolean columns **`mattress`** and **`pillow`** that indicate whether the item purchased was a mattress or pillow product.
-- MAGIC
--- MAGIC For example, if `item_name` from the `items` column ends with the string `"Mattress"`, the column value for `mattress` should be `true` and the value for `pillow` should be `false`. Here are a few examples of items and the resulting values.
+-- MAGIC For example, if **`item_name`** from the **`items`** column ends with the string **`"Mattress"`**, the column value for **`mattress`** should be **`true`** and the value for **`pillow`** should be **`false`**. Here are a few examples of items and the resulting values.
-- MAGIC
-- MAGIC | items | mattress | pillow |
-- MAGIC | ------- | -------- | ------ |
--- MAGIC | `[{..., "item_id": "M_PREM_K", "item_name": "Premium King Mattress", ...}]` | true | false |
--- MAGIC | `[{..., "item_id": "P_FOAM_S", "item_name": "Standard Foam Pillow", ...}]` | false | true |
--- MAGIC | `[{..., "item_id": "M_STAN_F", "item_name": "Standard Full Mattress", ...}]` | true | false |
+-- MAGIC | **`[{..., "item_id": "M_PREM_K", "item_name": "Premium King Mattress", ...}]`** | true | false |
+-- MAGIC | **`[{..., "item_id": "P_FOAM_S", "item_name": "Standard Foam Pillow", ...}]`** | false | true |
+-- MAGIC | **`[{..., "item_id": "M_STAN_F", "item_name": "Standard Full Mattress", ...}]`** | true | false |
-- MAGIC
--- MAGIC See documentation for the [exists](https://docs.databricks.com/sql/language-manual/functions/exists.html) function.
--- MAGIC You can use the condition expression `item_name LIKE "%Mattress"` to check whether the string `item_name` ends with the word "Mattress".
+-- MAGIC See documentation for the exists function.
+-- MAGIC You can use the condition expression **`item_name LIKE "%Mattress"`** to check whether the string **`item_name`** ends with the word "Mattress".
-- COMMAND ----------
@@ -184,14 +212,30 @@ FROM sales
-- COMMAND ----------
--- MAGIC %md Run the cell below to confirm the table was created correctly.
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC
+-- MAGIC Run the cell below to confirm the table was created correctly.
-- COMMAND ----------
-- MAGIC %python
--- MAGIC check_table_results("sales_product_flags", ['items', 'mattress', 'pillow'], 210370)
+-- MAGIC check_table_results("sales_product_flags", ['items', 'mattress', 'pillow'], 10539)
-- MAGIC product_counts = spark.sql("SELECT sum(CAST(mattress AS INT)) num_mattress, sum(CAST(pillow AS INT)) num_pillow FROM sales_product_flags").first().asDict()
--- MAGIC assert product_counts == {'num_mattress': 199764, 'num_pillow': 27481}, "There should be 199764 rows where mattress is true, and 27481 where pillow is true"
+-- MAGIC assert product_counts == {'num_mattress': 10015, 'num_pillow': 1386}, "There should be 10015 rows where mattress is true, and 1386 where pillow is true"
+
+-- COMMAND ----------
+
+-- MAGIC %md
+-- MAGIC
+-- MAGIC
+-- MAGIC Run the following cell to delete the tables and files associated with this lesson.
+
+-- COMMAND ----------
+
+-- MAGIC %python
+-- MAGIC DA.cleanup()
-- COMMAND ----------
diff --git a/Data-Engineering-With-Databricks/02 - ELT with Spark SQL and Python/DE 2.3.1 - Python Basics.py b/Data-Engineering-with-Databricks/Solutions/05 - OPTIONAL Python for Spark SQL/DE 5.1 - Python Basics.py
similarity index 77%
rename from Data-Engineering-With-Databricks/02 - ELT with Spark SQL and Python/DE 2.3.1 - Python Basics.py
rename to Data-Engineering-with-Databricks/Solutions/05 - OPTIONAL Python for Spark SQL/DE 5.1 - Python Basics.py
index 5d8e634..8e97427 100644
--- a/Data-Engineering-With-Databricks/02 - ELT with Spark SQL and Python/DE 2.3.1 - Python Basics.py
+++ b/Data-Engineering-with-Databricks/Solutions/05 - OPTIONAL Python for Spark SQL/DE 5.1 - Python Basics.py
@@ -8,6 +8,8 @@
# COMMAND ----------
# MAGIC %md
+# MAGIC
+# MAGIC
# MAGIC # Just Enough Python for Databricks SQL
# MAGIC
# MAGIC While Databricks SQL provides an ANSI-compliant flavor of SQL with many additional custom methods (including the entire Delta Lake SQL syntax), users migrating from some systems may run into missing features, especially around control flow and error handling.
@@ -17,7 +19,7 @@
# MAGIC Mastering just a handful of Python concepts will unlock powerful new design practices for engineers and analysts proficient in SQL. Rather than trying to teach the entire language, this lesson focuses on those features that can immediately be leveraged to write more extensible SQL programs on Databricks.
# MAGIC
# MAGIC ## Learning Objectives
-# MAGIC By the end of this lesson, students should be able to:
+# MAGIC By the end of this lesson, you should be able to:
# MAGIC * Print and manipulate multi-line Python strings
# MAGIC * Define variables and functions
# MAGIC * Use f-strings for variable substitution
@@ -25,8 +27,10 @@
# COMMAND ----------
# MAGIC %md
+# MAGIC
+# MAGIC
# MAGIC ## Strings
-# MAGIC Characters enclosed in single (`'`) or double (`"`) quotes are considered strings.
+# MAGIC Characters enclosed in single (**`'`**) or double (**`"`**) quotes are considered strings.
# COMMAND ----------
@@ -35,7 +39,9 @@
# COMMAND ----------
# MAGIC %md
-# MAGIC To preview how a string will render, we can call `print()`.
+# MAGIC
+# MAGIC
+# MAGIC To preview how a string will render, we can call **`print()`**.
# COMMAND ----------
@@ -44,7 +50,9 @@
# COMMAND ----------
# MAGIC %md
-# MAGIC By wrapping a string in triple quotes (`"""`), it's possible to use multiple lines.
+# MAGIC
+# MAGIC
+# MAGIC By wrapping a string in triple quotes (**`"""`**), it's possible to use multiple lines.
# COMMAND ----------
@@ -59,6 +67,8 @@
# COMMAND ----------
# MAGIC %md
+# MAGIC
+# MAGIC
# MAGIC This makes it easy to turn SQL queries into Python strings.
# COMMAND ----------
@@ -71,7 +81,9 @@
# COMMAND ----------
# MAGIC %md
-# MAGIC When we execute SQL from a Python cell, we will pass a string as an argument to `spark.sql()`.
+# MAGIC
+# MAGIC
+# MAGIC When we execute SQL from a Python cell, we will pass a string as an argument to **`spark.sql()`**.
# COMMAND ----------
@@ -80,7 +92,9 @@
# COMMAND ----------
# MAGIC %md
-# MAGIC To render a query the way it would appear in a normal SQL notebook, we call `display()` on this function.
+# MAGIC
+# MAGIC
+# MAGIC To render a query the way it would appear in a normal SQL notebook, we call **`display()`** on this function.
# COMMAND ----------
@@ -89,21 +103,25 @@
# COMMAND ----------
# MAGIC %md
-# MAGIC **NOTE**: Executing a cell with only a Python string in it will just print the string. Using `print()` with a string just renders it back to the notebook.
# MAGIC
-# MAGIC To execute a string that contains SQL using Python, it must be passed within a call to `spark.sql()`.
+# MAGIC
+# MAGIC **NOTE**: Executing a cell with only a Python string in it will just print the string. Using **`print()`** with a string just renders it back to the notebook.
+# MAGIC
+# MAGIC To execute a string that contains SQL using Python, it must be passed within a call to **`spark.sql()`**.
# COMMAND ----------
# MAGIC %md
+# MAGIC
+# MAGIC
# MAGIC ## Variables
-# MAGIC Python variables are assigned using the `=`.
+# MAGIC Python variables are assigned using the **`=`**.
# MAGIC
-# MAGIC Python variable names need to start with a letter, and can only contain letters, numbers, hyphens, and underscores.
+# MAGIC Python variable names need to start with a letter, and can only contain letters, numbers, and underscores. (Variable names starting with underscores are valid but typically reserved for special use cases.)
# MAGIC
# MAGIC Many Python programmers favor snake casing, which uses only lowercase letters and underscores for all variables.
# MAGIC
-# MAGIC The cell below creates the variable `my_string`.
+# MAGIC The cell below creates the variable **`my_string`**.
# COMMAND ----------
@@ -112,6 +130,8 @@
# COMMAND ----------
# MAGIC %md
+# MAGIC
+# MAGIC
# MAGIC Executing a cell with this variable will return its value.
# COMMAND ----------
@@ -121,7 +141,9 @@
# COMMAND ----------
# MAGIC %md
-# MAGIC The output here is the same as if we typed `"This is a string"` into the cell and ran it.
+# MAGIC
+# MAGIC
+# MAGIC The output here is the same as if we typed **`"This is a string"`** into the cell and ran it.
# MAGIC
# MAGIC Note that the quotation marks aren't part of the string, as shown when we print it.
@@ -132,9 +154,11 @@
# COMMAND ----------
# MAGIC %md
+# MAGIC
+# MAGIC
# MAGIC This variable can be used the same way a string would be.
# MAGIC
-# MAGIC String concatenation (joining to strings together) can be performed with a `+`.
+# MAGIC String concatenation (joining to strings together) can be performed with a **`+`**.
# COMMAND ----------
@@ -143,6 +167,8 @@
# COMMAND ----------
# MAGIC %md
+# MAGIC
+# MAGIC
# MAGIC We can join string variables with other string variables.
# COMMAND ----------
@@ -153,12 +179,14 @@
# COMMAND ----------
# MAGIC %md
+# MAGIC
+# MAGIC
# MAGIC ## Functions
-# MAGIC Functions allow you to specify local variables as arguments and then apply custom logic. We define a function using the keyword `def` followed by the function name and, enclosed in parentheses, any variable arguments we wish to pass into the function. Finally, the function header has a `:` at the end.
+# MAGIC Functions allow you to specify local variables as arguments and then apply custom logic. We define a function using the keyword **`def`** followed by the function name and, enclosed in parentheses, any variable arguments we wish to pass into the function. Finally, the function header has a **`:`** at the end.
# MAGIC
# MAGIC Note: In Python, indentation matters. You can see in the cell below that the logic of the function is indented in from the left margin. Any code that is indented to this level is part of the function.
# MAGIC
-# MAGIC The function below takes one argument (`arg`) and then prints it.
+# MAGIC The function below takes one argument (**`arg`**) and then prints it.
# COMMAND ----------
@@ -168,6 +196,8 @@ def print_string(arg):
# COMMAND ----------
# MAGIC %md
+# MAGIC
+# MAGIC
# MAGIC When we pass a string as the argument, it will be printed.
# COMMAND ----------
@@ -177,6 +207,8 @@ def print_string(arg):
# COMMAND ----------
# MAGIC %md
+# MAGIC
+# MAGIC
# MAGIC We can also pass a variable as an argument.
# COMMAND ----------
@@ -186,7 +218,9 @@ def print_string(arg):
# COMMAND ----------
# MAGIC %md
-# MAGIC Oftentimes we want to return the results of our function for use elsewhere. For this we use the `return` keyword.
+# MAGIC
+# MAGIC
+# MAGIC Oftentimes we want to return the results of our function for use elsewhere. For this we use the **`return`** keyword.
# MAGIC
# MAGIC The function below constructs a new string by concatenating our argument. Note that both functions and arguments can have arbitrary names, just like variables (and follow the same rules).
@@ -198,6 +232,8 @@ def return_new_string(string_arg):
# COMMAND ----------
# MAGIC %md
+# MAGIC
+# MAGIC
# MAGIC Running this function returns the output.
# COMMAND ----------
@@ -207,6 +243,8 @@ def return_new_string(string_arg):
# COMMAND ----------
# MAGIC %md
+# MAGIC
+# MAGIC
# MAGIC Assigning it to a variable captures the output for reuse elsewhere.
# COMMAND ----------
@@ -216,6 +254,8 @@ def return_new_string(string_arg):
# COMMAND ----------
# MAGIC %md
+# MAGIC
+# MAGIC
# MAGIC This variable doesn't contain our function, just the results of our function (a string).
# COMMAND ----------
@@ -225,8 +265,10 @@ def return_new_string(string_arg):
# COMMAND ----------
# MAGIC %md
+# MAGIC
+# MAGIC
# MAGIC ## F-strings
-# MAGIC By adding the letter `f` before a Python string, you can inject variables or evaluated Python code by inserted them inside curly braces (`{}`).
+# MAGIC By adding the letter **`f`** before a Python string, you can inject variables or evaluated Python code by inserted them inside curly braces (**`{}`**).
# MAGIC
# MAGIC Evaluate the cell below to see string variable substitution.
@@ -237,6 +279,8 @@ def return_new_string(string_arg):
# COMMAND ----------
# MAGIC %md
+# MAGIC
+# MAGIC
# MAGIC The following cell inserts the string returned by a function.
# COMMAND ----------
@@ -246,6 +290,8 @@ def return_new_string(string_arg):
# COMMAND ----------
# MAGIC %md
+# MAGIC
+# MAGIC
# MAGIC Combine this with triple quotes and you can format a paragraph or list, like below.
# COMMAND ----------
@@ -261,6 +307,8 @@ def return_new_string(string_arg):
# COMMAND ----------
# MAGIC %md
+# MAGIC
+# MAGIC
# MAGIC Or you could format a SQL query.
# COMMAND ----------
diff --git a/Data-Engineering-With-Databricks/02 - ELT with Spark SQL and Python/DE 2.3.2 - Python Control Flow.py b/Data-Engineering-with-Databricks/Solutions/05 - OPTIONAL Python for Spark SQL/DE 5.2 - Python Control Flow.py
similarity index 60%
rename from Data-Engineering-With-Databricks/02 - ELT with Spark SQL and Python/DE 2.3.2 - Python Control Flow.py
rename to Data-Engineering-with-Databricks/Solutions/05 - OPTIONAL Python for Spark SQL/DE 5.2 - Python Control Flow.py
index 3b73ffa..251c62f 100644
--- a/Data-Engineering-With-Databricks/02 - ELT with Spark SQL and Python/DE 2.3.2 - Python Control Flow.py
+++ b/Data-Engineering-with-Databricks/Solutions/05 - OPTIONAL Python for Spark SQL/DE 5.2 - Python Control Flow.py
@@ -8,27 +8,33 @@
# COMMAND ----------
# MAGIC %md
+# MAGIC
+# MAGIC
# MAGIC # Just Enough Python for Databricks SQL
# MAGIC
# MAGIC ## Learning Objectives
-# MAGIC By the end of this lesson, students should be able to:
-# MAGIC * Leverage `if/else`
+# MAGIC By the end of this lesson, you should be able to:
+# MAGIC * Leverage **`if`** / **`else`**
# MAGIC * Describe how errors impact notebook execution
-# MAGIC * Write simple tests with `assert`
-# MAGIC * Use `try/except` to handle errors
+# MAGIC * Write simple tests with **`assert`**
+# MAGIC * Use **`try`** / **`except`** to handle errors
# COMMAND ----------
# MAGIC %md
-# MAGIC ## `if/else`
# MAGIC
-# MAGIC `if/else` clauses are common in many programming languages.
# MAGIC
-# MAGIC Note that SQL has the `CASE WHEN ... ELSE` construct, which is similar.
+# MAGIC ## if/else
+# MAGIC
+# MAGIC **`if`** / **`else`** clauses are common in many programming languages.
+# MAGIC
+# MAGIC Note that SQL has the **`CASE WHEN ... ELSE`** construct, which is similar.
# MAGIC
-# MAGIC **If you're seeking to evaluate conditions within your tables or queries, use `CASE WHEN`.** Python control flow should be reserved for evaluating conditions outside of your query.
+# MAGIC If you're seeking to evaluate conditions within your tables or queries, use **`CASE WHEN`**.
# MAGIC
-# MAGIC More on this later. First, an example with `"beans"`.
+# MAGIC Python control flow should be reserved for evaluating conditions outside of your query.
+# MAGIC
+# MAGIC More on this later. First, an example with **`"beans"`**.
# COMMAND ----------
@@ -37,18 +43,20 @@
# COMMAND ----------
# MAGIC %md
-# MAGIC Working with `if` and `else` is all about evaluating whether or not certain conditions are true in your execution environment.
+# MAGIC
+# MAGIC
+# MAGIC Working with **`if`** and **`else`** is all about evaluating whether or not certain conditions are true in your execution environment.
# MAGIC
# MAGIC Note that in Python, we have the following comparison operators:
# MAGIC
# MAGIC | Syntax | Operation |
# MAGIC | --- | --- |
-# MAGIC | `==` | equals |
-# MAGIC | `>` | greater than |
-# MAGIC | `<` | less than |
-# MAGIC | `>=` | greater than or equal |
-# MAGIC | `<=` | less than or equal |
-# MAGIC | `!=` | not equal |
+# MAGIC | **`==`** | equals |
+# MAGIC | **`>`** | greater than |
+# MAGIC | **`<`** | less than |
+# MAGIC | **`>=`** | greater than or equal |
+# MAGIC | **`<=`** | less than or equal |
+# MAGIC | **`!=`** | not equal |
# MAGIC
# MAGIC If you read the sentence below out loud, you will be describing the control flow of your program.
@@ -62,7 +70,9 @@
# COMMAND ----------
# MAGIC %md
-# MAGIC As expected, because the variable `food` is the string literal `"beans"`, the `if` statement evaluated to `True` and the first print statement evaluated.
+# MAGIC
+# MAGIC
+# MAGIC As expected, because the variable **`food`** is the string literal **`"beans"`**, the **`if`** statement evaluated to **`True`** and the first print statement evaluated.
# MAGIC
# MAGIC Let's assign a different value to the variable.
@@ -73,7 +83,11 @@
# COMMAND ----------
# MAGIC %md
-# MAGIC Now the first condition will evaluate as `False`. What do you think will happen when you run the following cell?
+# MAGIC
+# MAGIC
+# MAGIC Now the first condition will evaluate as **`False`**.
+# MAGIC
+# MAGIC What do you think will happen when you run the following cell?
# COMMAND ----------
@@ -85,6 +99,8 @@
# COMMAND ----------
# MAGIC %md
+# MAGIC
+# MAGIC
# MAGIC Note that each time we assign a new value to a variable, this completely erases the old variable.
# COMMAND ----------
@@ -95,14 +111,16 @@
# COMMAND ----------
# MAGIC %md
-# MAGIC The Python keyword `elif` (short for `else if`) allows us to evaluate multiple conditions.
+# MAGIC
+# MAGIC
+# MAGIC The Python keyword **`elif`** (short for **`else`** + **`if`**) allows us to evaluate multiple conditions.
# MAGIC
# MAGIC Note that conditions are evaluated from top to bottom. Once a condition evaluates to true, no further conditions will be evaluated.
# MAGIC
-# MAGIC `if/else` control flow patterns:
-# MAGIC 1. Must contain an `if` clause
-# MAGIC 1. Can contain any number of `elif` clauses
-# MAGIC 1. Can contain at most one `else` clause
+# MAGIC **`if`** / **`else`** control flow patterns:
+# MAGIC 1. Must contain an **`if`** clause
+# MAGIC 1. Can contain any number of **`elif`** clauses
+# MAGIC 1. Can contain at most one **`else`** clause
# COMMAND ----------
@@ -118,6 +136,8 @@
# COMMAND ----------
# MAGIC %md
+# MAGIC
+# MAGIC
# MAGIC By encapsulating the above logic in a function, we can reuse this logic and formatting with arbitrary arguments rather than referencing globally-defined variables.
# COMMAND ----------
@@ -135,7 +155,9 @@ def foods_i_like(food):
# COMMAND ----------
# MAGIC %md
-# MAGIC Here, we pass the string `"bread"` to the function.
+# MAGIC
+# MAGIC
+# MAGIC Here, we pass the string **`"bread"`** to the function.
# COMMAND ----------
@@ -144,9 +166,11 @@ def foods_i_like(food):
# COMMAND ----------
# MAGIC %md
-# MAGIC As we evaluate the function, we locally assign the string `"bread"` to the `food` variable, and the logic behaves as expected.
# MAGIC
-# MAGIC Note that we don't overwrite the value of the `food` variable as previously defined in the notebook.
+# MAGIC
+# MAGIC As we evaluate the function, we locally assign the string **`"bread"`** to the **`food`** variable, and the logic behaves as expected.
+# MAGIC
+# MAGIC Note that we don't overwrite the value of the **`food`** variable as previously defined in the notebook.
# COMMAND ----------
@@ -155,9 +179,11 @@ def foods_i_like(food):
# COMMAND ----------
# MAGIC %md
+# MAGIC
+# MAGIC
# MAGIC ## try/except
# MAGIC
-# MAGIC While `if/else` clauses allow us to define conditional logic based on evaluating conditional statements, `try/except` focuses on providing robust error handling.
+# MAGIC While **`if`** / **`else`** clauses allow us to define conditional logic based on evaluating conditional statements, **`try`** / **`except`** focuses on providing robust error handling.
# MAGIC
# MAGIC Let's begin by considering a simple function.
@@ -169,6 +195,8 @@ def three_times(number):
# COMMAND ----------
# MAGIC %md
+# MAGIC
+# MAGIC
# MAGIC Let's assume that the desired use of this function is to multiply an integer value by 3.
# MAGIC
# MAGIC The below cell demonstrates this behavior.
@@ -180,6 +208,8 @@ def three_times(number):
# COMMAND ----------
# MAGIC %md
+# MAGIC
+# MAGIC
# MAGIC Note what happens if a string is passed to the function.
# COMMAND ----------
@@ -189,11 +219,15 @@ def three_times(number):
# COMMAND ----------
# MAGIC %md
+# MAGIC
+# MAGIC
# MAGIC In this case, we don't get an error, but we also do not get the desired outcome.
# MAGIC
-# MAGIC `assert` statements allow us to run simple tests of Python code. If an `assert` statement evaluates to true, nothing happens. If it evaluates to false, an error is raised.
+# MAGIC **`assert`** statements allow us to run simple tests of Python code. If an **`assert`** statement evaluates to true, nothing happens.
# MAGIC
-# MAGIC Run the two cells below to assert the types of `2` and `"2"`.
+# MAGIC If it evaluates to false, an error is raised.
+# MAGIC
+# MAGIC Run the following cell to assert that the number **`2`** is an integer
# COMMAND ----------
@@ -201,14 +235,26 @@ def three_times(number):
# COMMAND ----------
-assert type("2") == int
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC
+# MAGIC Uncomment the following cell and then run it to assert that the string **`"2"`"** is an integer.
+# MAGIC
+# MAGIC It should throw an **`AssertionError`**.
+
+# COMMAND ----------
+
+# assert type("2") == int
# COMMAND ----------
# MAGIC %md
-# MAGIC As expected, the string `"2"` does not evaluate as an integer.
# MAGIC
-# MAGIC Python strings have a property to report whether or not they can be safely cast as numeric values.
+# MAGIC
+# MAGIC As expected, the string **`"2"`** is not an integer.
+# MAGIC
+# MAGIC Python strings have a property to report whether or not they can be safely cast as numeric value as seen below.
# COMMAND ----------
@@ -217,9 +263,13 @@ def three_times(number):
# COMMAND ----------
# MAGIC %md
+# MAGIC
+# MAGIC
# MAGIC String numbers are common; you may see them as results from an API query, raw records in a JSON or CSV file, or returned by a SQL query.
# MAGIC
-# MAGIC `int()` and `float()` are two common methods for casting values to numeric types. An `int` will always be a whole number, while a `float` will always have a decimal.
+# MAGIC **`int()`** and **`float()`** are two common methods for casting values to numeric types.
+# MAGIC
+# MAGIC An **`int`** will always be a whole number, while a **`float`** will always have a decimal.
# COMMAND ----------
@@ -228,18 +278,24 @@ def three_times(number):
# COMMAND ----------
# MAGIC %md
+# MAGIC
+# MAGIC
# MAGIC While Python will gladly cast a string containing numeric characters to a numeric type, it will not allow you to change other strings to numbers.
+# MAGIC
+# MAGIC Uncomment the following cell and give it a try:
# COMMAND ----------
-int("two")
+# int("two")
# COMMAND ----------
# MAGIC %md
+# MAGIC
+# MAGIC
# MAGIC Note that errors will stop the execution of a notebook script; all cells after an error will be skipped when a notebook is scheduled as a production job.
# MAGIC
-# MAGIC If we enclose code that might throw an error in a `try` statement, we can define alternate logic when an error is encountered.
+# MAGIC If we enclose code that might throw an error in a **`try`** statement, we can define alternate logic when an error is encountered.
# MAGIC
# MAGIC Below is a simple function that demonstrates this.
@@ -247,13 +303,18 @@ def three_times(number):
def try_int(num_string):
try:
- return int(num_string)
+ int(num_string)
+ result = f"{num_string} is a number."
except:
- print(f"{num_string} is not a number!")
+ result = f"{num_string} is not a number!"
+
+ print(result)
# COMMAND ----------
# MAGIC %md
+# MAGIC
+# MAGIC
# MAGIC When a numeric string is passed, the function will return the result as an integer.
# COMMAND ----------
@@ -263,6 +324,8 @@ def try_int(num_string):
# COMMAND ----------
# MAGIC %md
+# MAGIC
+# MAGIC
# MAGIC When a non-numeric string is passed, an informative message is printed out.
# MAGIC
# MAGIC **NOTE**: An error is **not** raised, even though an error occurred, and no value was returned. Implementing logic that suppresses errors can lead to logic silently failing.
@@ -274,6 +337,8 @@ def try_int(num_string):
# COMMAND ----------
# MAGIC %md
+# MAGIC
+# MAGIC
# MAGIC Below, our earlier function is updated to include logic for handling errors to return an informative message.
# COMMAND ----------
@@ -282,15 +347,15 @@ def three_times(number):
try:
return int(number) * 3
except ValueError as e:
- print(f"""
- You passed the string variable '{number}'.
- The result of using this function would be to return the string '{number * 3}'.
- Try passing an integer instead.
- """)
+ print(f"You passed the string variable '{number}'.\n")
+ print(f"Try passing an integer instead.")
+ return None
# COMMAND ----------
# MAGIC %md
+# MAGIC
+# MAGIC
# MAGIC Now our function can process numbers passed as strings.
# COMMAND ----------
@@ -300,6 +365,8 @@ def three_times(number):
# COMMAND ----------
# MAGIC %md
+# MAGIC
+# MAGIC
# MAGIC And prints an informative message when a string is passed.
# COMMAND ----------
@@ -309,11 +376,15 @@ def three_times(number):
# COMMAND ----------
# MAGIC %md
+# MAGIC
+# MAGIC
# MAGIC Note that as implemented, this logic would only be useful for interactive execution of this logic (the message isn't currently being logged anywhere, and the code will not return the data in the desired format; human intervention would be required to act upon the printed message).
# COMMAND ----------
# MAGIC %md
+# MAGIC
+# MAGIC
# MAGIC ## Applying Python Control Flow for SQL Queries
# MAGIC
# MAGIC While the above examples demonstrate the basic principles of using these designs in Python, the goal of this lesson is to learn how to apply these concepts to executing SQL logic on Databricks.
@@ -333,6 +404,8 @@ def three_times(number):
# COMMAND ----------
# MAGIC %md
+# MAGIC
+# MAGIC
# MAGIC Run the SQL cell below to preview the contents of this temp view.
# COMMAND ----------
@@ -343,7 +416,9 @@ def three_times(number):
# COMMAND ----------
# MAGIC %md
-# MAGIC Running SQL in a Python cell simply requires passing the string query to `spark.sql()`.
+# MAGIC
+# MAGIC
+# MAGIC Running SQL in a Python cell simply requires passing the string query to **`spark.sql()`**.
# COMMAND ----------
@@ -353,7 +428,9 @@ def three_times(number):
# COMMAND ----------
# MAGIC %md
-# MAGIC But recall that executing a query with `spark.sql()` returns the results as a DataFrame rather than displaying them; below, the code is augmented to capture the result and display it.
+# MAGIC
+# MAGIC
+# MAGIC But recall that executing a query with **`spark.sql()`** returns the results as a DataFrame rather than displaying them; below, the code is augmented to capture the result and display it.
# COMMAND ----------
@@ -364,7 +441,9 @@ def three_times(number):
# COMMAND ----------
# MAGIC %md
-# MAGIC Using a simple `if` clause with a function allows us to execute arbitrary SQL queries, optionally displaying the results, and always returning the resultant DataFrame.
+# MAGIC
+# MAGIC
+# MAGIC Using a simple **`if`** clause with a function allows us to execute arbitrary SQL queries, optionally displaying the results, and always returning the resultant DataFrame.
# COMMAND ----------
@@ -381,7 +460,9 @@ def simple_query_function(query, preview=True):
# COMMAND ----------
# MAGIC %md
-# MAGIC Below, we execute a different query and set preview to `False`, as the purpose of the query is to create a temp view rather than return a preview of data.
+# MAGIC
+# MAGIC
+# MAGIC Below, we execute a different query and set preview to **`False`**, as the purpose of the query is to create a temp view rather than return a preview of data.
# COMMAND ----------
@@ -392,6 +473,8 @@ def simple_query_function(query, preview=True):
# COMMAND ----------
# MAGIC %md
+# MAGIC
+# MAGIC
# MAGIC We now have a simple extensible function that could be further parameterized depending on the needs of our organization.
# MAGIC
# MAGIC For example, suppose we want to protect our company from malicious SQL, like the query below.
@@ -403,30 +486,71 @@ def simple_query_function(query, preview=True):
# COMMAND ----------
# MAGIC %md
-# MAGIC Below, we define a simple search for a semi-colon in the text, then use an assert statement with `try/except` to raise a custom error message.
+# MAGIC
+# MAGIC
+# MAGIC
+# MAGIC We can use the **`find()`** method to test for multiple SQL statements by looking for a semicolon.
+
+# COMMAND ----------
+
+injection_query.find(";")
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC
+# MAGIC If it's not found it will return **`-1`**
+
+# COMMAND ----------
+
+injection_query.find("x")
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC
+# MAGIC With that knowledge, we can define a simple search for a semicolon in the query string and raise a custom error message if it was found (not **`-1`**)
# COMMAND ----------
def injection_check(query):
semicolon_index = query.find(";")
- try:
- assert semicolon_index < 0, f"Query contains semi-colon at index {semicolon_index}\nBlocking execution to avoid SQL injection attack"
- except AssertionError as e:
- print(query)
- raise e
+ if semicolon_index >= 0:
+ raise ValueError(f"Query contains semi-colon at index {semicolon_index}\nBlocking execution to avoid SQL injection attack")
# COMMAND ----------
# MAGIC %md
-# MAGIC **NOTE**: The example shown here is not sophisticated, but seeks to demonstrate a general principle. Always be wary of allowing untrusted users to pass text that will be passed to SQL queries. Also note that only one query can be executed using `spark.sql()`, so text with a semi-colon will always throw an error.
+# MAGIC
+# MAGIC
+# MAGIC
+# MAGIC **NOTE**: The example shown here is not sophisticated, but seeks to demonstrate a general principle.
+# MAGIC
+# MAGIC Always be wary of allowing untrusted users to pass text that will be passed to SQL queries.
+# MAGIC
+# MAGIC Also note that only one query can be executed using **`spark.sql()`**, so text with a semi-colon will always throw an error.
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC
+# MAGIC Uncomment the following cell and give it a try:
# COMMAND ----------
-injection_check(injection_query)
+# injection_check(injection_query)
# COMMAND ----------
# MAGIC %md
+# MAGIC
+# MAGIC
# MAGIC If we add this method to our earlier query function, we now have a more robust function that will assess each query for potential threats before execution.
# COMMAND ----------
@@ -441,6 +565,8 @@ def secure_query_function(query, preview=True):
# COMMAND ----------
# MAGIC %md
+# MAGIC
+# MAGIC
# MAGIC As expected, we see normal performance with a safe query.
# COMMAND ----------
@@ -450,6 +576,8 @@ def secure_query_function(query, preview=True):
# COMMAND ----------
# MAGIC %md
+# MAGIC
+# MAGIC
# MAGIC But prevent execution when when bad logic is run.
# COMMAND ----------
diff --git a/Data-Engineering-with-Databricks/Solutions/05 - OPTIONAL Python for Spark SQL/DE 5.3L - Python for SQL Lab.py b/Data-Engineering-with-Databricks/Solutions/05 - OPTIONAL Python for Spark SQL/DE 5.3L - Python for SQL Lab.py
new file mode 100644
index 0000000..7ec3cce
--- /dev/null
+++ b/Data-Engineering-with-Databricks/Solutions/05 - OPTIONAL Python for Spark SQL/DE 5.3L - Python for SQL Lab.py
@@ -0,0 +1,292 @@
+# Databricks notebook source
+# MAGIC %md-sandbox
+# MAGIC
+# MAGIC
+# MAGIC

+# MAGIC
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC # Just Enough Python for Databricks SQL Lab
+# MAGIC
+# MAGIC ## Learning Objectives
+# MAGIC By the end of this lab, you should be able to:
+# MAGIC * Review basic Python code and describe expected outcomes of code execution
+# MAGIC * Reason through control flow statements in Python functions
+# MAGIC * Add parameters to a SQL query by wrapping it in a Python function
+
+# COMMAND ----------
+
+# MAGIC %run ../Includes/Classroom-Setup-5.3L
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC # Reviewing Python Basics
+# MAGIC
+# MAGIC In the previous notebook, we briefly explored using **`spark.sql()`** to execute arbitrary SQL commands from Python.
+# MAGIC
+# MAGIC Look at the following 3 cells. Before executing each cell, identify:
+# MAGIC 1. The expected output of cell execution
+# MAGIC 1. What logic is being executed
+# MAGIC 1. Changes to the resultant state of the environment
+# MAGIC
+# MAGIC Then execute the cells, compare the results to your expectations, and see the explanations below.
+
+# COMMAND ----------
+
+course = "dewd"
+
+# COMMAND ----------
+
+spark.sql(f"SELECT '{course}' AS course_name")
+
+# COMMAND ----------
+
+df = spark.sql(f"SELECT '{course}' AS course_name")
+display(df)
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC 1. **Cmd 5** assigns a string to a variable. When a variable assignment is successful, no output is displayed to the notebook. A new variable is added to the current execution environment.
+# MAGIC 1. **Cmd 6** executes a SQL query and displays the schema for the DataFrame alongside the word **`DataFrame`**. In this case, the SQL query is just to select a string, so no changes to our environment occur.
+# MAGIC 1. **Cmd 7** executes the same SQL query and displays the output of the DataFrame. This combination of **`display()`** and **`spark.sql()`** most closely mirrors executing logic in a **`%sql`** cell; the results will always be printed in a formatted table, assuming results are returned by the query; some queries will instead manipulate tables or databases, in which case the work **`OK`** will print to show successful execution. In this case, no changes to our environment occur from running this code.
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC ## Setting Up a Development Environment
+# MAGIC
+# MAGIC Throughout this course, we use logic similar to the follow cell to capture information about the user currently executing the notebook and create an isolated development database.
+# MAGIC
+# MAGIC The **`re`** library is the standard Python library for regex.
+# MAGIC
+# MAGIC Databricks SQL has a special method to capture the username of the **`current_user()`**; and the **`.first()[0]`** code is a quick hack to capture the first row of the first column of a query executed with **`spark.sql()`** (in this case, we do this safely knowing that there will only be 1 row and 1 column).
+# MAGIC
+# MAGIC All other logic below is just string formatting.
+
+# COMMAND ----------
+
+import re
+
+username = spark.sql("SELECT current_user()").first()[0]
+clean_username = re.sub("[^a-zA-Z0-9]", "_", username)
+db_name = f"dbacademy_{clean_username}_{course}_5_3l"
+working_dir = f"dbfs:/user/{username}/dbacademy/{course}/5.3l"
+
+print(f"username: {username}")
+print(f"db_name: {db_name}")
+print(f"working_dir: {working_dir}")
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC Below, we add a simple control flow statement to this logic to create and use this user-specific database.
+# MAGIC
+# MAGIC Optionally, we will reset this database and drop all of the contents on repeat execution. (Note the the default value for the parameter **`reset`** is **`True`**).
+
+# COMMAND ----------
+
+def create_database(course, reset=True):
+ import re
+
+ username = spark.sql("SELECT current_user()").first()[0]
+ clean_username = re.sub("[^a-zA-Z0-9]", "_", username)
+ db_name = f"dbacademy_{clean_username}_{course}_5_3l"
+ working_dir = f"dbfs:/user/{username}/dbacademy/{course}/5.3l"
+
+ print(f"username: {username}")
+ print(f"db_name: {db_name}")
+ print(f"working_dir: {working_dir}")
+
+ if reset:
+ spark.sql(f"DROP DATABASE IF EXISTS {db_name} CASCADE")
+ dbutils.fs.rm(working_dir, True)
+
+ spark.sql(f"CREATE DATABASE IF NOT EXISTS {db_name} LOCATION '{working_dir}/{db_name}.db'")
+ spark.sql(f"USE {db_name}")
+
+create_database(course)
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC While this logic as defined is geared toward isolating students in shared workspaces for instructional purposes, the same basic design could be leveraged for testing new logic in an isolated environment before pushing to production.
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC ## Handling Errors Gracefully
+# MAGIC
+# MAGIC Review the logic in the function below.
+# MAGIC
+# MAGIC Note that we've just declared a new database that currently contains no tables.
+
+# COMMAND ----------
+
+def query_or_make_demo_table(table_name):
+ try:
+ display(spark.sql(f"SELECT * FROM {table_name}"))
+ print(f"Displayed results for the table {table_name}")
+
+ except:
+ spark.sql(f"CREATE TABLE {table_name} (id INT, name STRING, value DOUBLE, state STRING)")
+ spark.sql(f"""INSERT INTO {table_name}
+ VALUES (1, "Yve", 1.0, "CA"),
+ (2, "Omar", 2.5, "NY"),
+ (3, "Elia", 3.3, "OH"),
+ (4, "Rebecca", 4.7, "TX"),
+ (5, "Ameena", 5.3, "CA"),
+ (6, "Ling", 6.6, "NY"),
+ (7, "Pedro", 7.1, "KY")""")
+
+ display(spark.sql(f"SELECT * FROM {table_name}"))
+ print(f"Created the table {table_name}")
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC Try to identify the following before executing the next cell:
+# MAGIC 1. The expected output of cell execution
+# MAGIC 1. What logic is being executed
+# MAGIC 1. Changes to the resultant state of the environment
+
+# COMMAND ----------
+
+query_or_make_demo_table("demo_table")
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC Now answer the same three questions before running the same query below.
+
+# COMMAND ----------
+
+query_or_make_demo_table("demo_table")
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC - On the first execution, the table **`demo_table`** did not yet exist. As such, the attempt to return the contents of the table created an error, which resulted in our **`except`** block of logic executing. This block:
+# MAGIC 1. Created the table
+# MAGIC 1. Inserted values
+# MAGIC 1. Printed or displayed the contents of the table
+# MAGIC - On the second execution, the table **`demo_table`** already exists, and so the first query in the **`try`** block executes without error. As a result, we just display the results of the query without modifying anything in our environment.
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC ## Adapting SQL to Python
+# MAGIC Let's consider the following SQL query against our demo table created above.
+
+# COMMAND ----------
+
+# MAGIC %sql
+# MAGIC SELECT id, value
+# MAGIC FROM demo_table
+# MAGIC WHERE state = "CA"
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC
+# MAGIC which can also be expressed using the PySpark API and the **`display`** function as seen here:
+
+# COMMAND ----------
+
+results = spark.sql("SELECT id, value FROM demo_table WHERE state = 'CA'")
+display(results)
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC Let's use this simple example to practice creating a Python function that adds optional functionality.
+# MAGIC
+# MAGIC Our target function will:
+# MAGIC * Be based upon a query that only includes the **`id`** and **`value`** columns from the a table named **`demo_table`**
+# MAGIC * Will allow filtering of that query by **`state`** where the the default behavior is to include all states
+# MAGIC * Will optionally render the results of the query using the **`display`** function where the default behavior is to not render
+# MAGIC * Will return:
+# MAGIC * The query result object (a PySpark DataFrame) if **`render_results`** is False
+# MAGIC * The **`None`** value if **`render_results`** is True
+# MAGIC
+# MAGIC Stretch Goal:
+# MAGIC * Add an assert statement to verify that the value passed for the **`state`** parameter contains two, uppercase letters
+# MAGIC
+# MAGIC Some starter logic has been provided below:
+
+# COMMAND ----------
+
+# ANSWER
+def preview_values(state=None, render_results=False):
+ query = "SELECT id, value FROM demo_table"
+
+ if state is not None:
+ assert state == state.upper() and len(state) == 2, "Please use the standard 2-letter, uppercase, state abbreviations"
+ query += f" WHERE state = '{state}'"
+
+ query_results = spark.sql(query)
+
+ if render_results:
+ display(query_results)
+ return None
+ else:
+ return query_results
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC The assert statements below can be used to check whether or not your function works as intended.
+
+# COMMAND ----------
+
+import pyspark.sql.dataframe
+
+assert type(preview_values()) == pyspark.sql.dataframe.DataFrame, "Function should return the results as a DataFrame"
+assert preview_values().columns == ["id", "value"], "Query should only return **`id`** and **`value`** columns"
+
+assert preview_values(render_results=True) is None, "Function should not return None when rendering"
+assert preview_values(render_results=False) is not None, "Function should return DataFrame when not rendering"
+
+assert preview_values(state=None).count() == 7, "Function should allow no state"
+assert preview_values(state="NY").count() == 2, "Function should allow filtering by state"
+assert preview_values(state="CA").count() == 2, "Function should allow filtering by state"
+assert preview_values(state="OH").count() == 1, "Function should allow filtering by state"
+
+# COMMAND ----------
+
+# MAGIC %md-sandbox
+# MAGIC © 2022 Databricks, Inc. All rights reserved.
+# MAGIC Apache, Apache Spark, Spark and the Spark logo are trademarks of the Apache Software Foundation.
+# MAGIC
+# MAGIC Privacy Policy | Terms of Use | Support
diff --git a/Data-Engineering-with-Databricks/Solutions/06 - Incremental Data Processing/DE 6.1 - Incremental Data Ingestion with Auto Loader.py b/Data-Engineering-with-Databricks/Solutions/06 - Incremental Data Processing/DE 6.1 - Incremental Data Ingestion with Auto Loader.py
new file mode 100644
index 0000000..7904cf1
--- /dev/null
+++ b/Data-Engineering-with-Databricks/Solutions/06 - Incremental Data Processing/DE 6.1 - Incremental Data Ingestion with Auto Loader.py
@@ -0,0 +1,279 @@
+# Databricks notebook source
+# MAGIC %md-sandbox
+# MAGIC
+# MAGIC
+# MAGIC

+# MAGIC
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC # Incremental Data Ingestion with Auto Loader
+# MAGIC
+# MAGIC Incremental ETL is important since it allows us to deal solely with new data that has been encountered since the last ingestion. Reliably processing only the new data reduces redundant processing and helps enterprises reliably scale data pipelines.
+# MAGIC
+# MAGIC The first step for any successful data lakehouse implementation is ingesting into a Delta Lake table from cloud storage.
+# MAGIC
+# MAGIC Historically, ingesting files from a data lake into a database has been a complicated process.
+# MAGIC
+# MAGIC Databricks Auto Loader provides an easy-to-use mechanism for incrementally and efficiently processing new data files as they arrive in cloud file storage. In this notebook, you'll see Auto Loader in action.
+# MAGIC
+# MAGIC Due to the benefits and scalability that Auto Loader delivers, Databricks recommends its use as general **best practice** when ingesting data from cloud object storage.
+# MAGIC
+# MAGIC ## Learning Objectives
+# MAGIC By the end of this lesson, you should be able to:
+# MAGIC * Execute Auto Loader code to incrementally ingest data from cloud storage to Delta Lake
+# MAGIC * Describe what happens when a new file arrives in a directory configured for Auto Loader
+# MAGIC * Query a table fed by a streaming Auto Loader query
+# MAGIC
+# MAGIC ## Dataset Used
+# MAGIC This demo uses simplified artificially generated medical data representing heart rate recordings delivered in the JSON format.
+# MAGIC
+# MAGIC | Field | Type |
+# MAGIC | --- | --- |
+# MAGIC | device_id | int |
+# MAGIC | mrn | long |
+# MAGIC | time | double |
+# MAGIC | heartrate | double |
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC
+# MAGIC ## Getting Started
+# MAGIC
+# MAGIC Run the following cell to reset the demo and configure required variables and help functions.
+
+# COMMAND ----------
+
+# MAGIC %run ../Includes/Classroom-Setup-6.1
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC ## Using Auto Loader
+# MAGIC
+# MAGIC In the cell below, a function is defined to demonstrate using Databricks Auto Loader with the PySpark API. This code includes both a Structured Streaming read and write.
+# MAGIC
+# MAGIC The following notebook will provide a more robust overview of Structured Streaming. If you wish to learn more about Auto Loader options, refer to the documentation.
+# MAGIC
+# MAGIC Note that when using Auto Loader with automatic schema inference and evolution, the 4 arguments shown here should allow ingestion of most datasets. These arguments are explained below.
+# MAGIC
+# MAGIC | argument | what it is | how it's used |
+# MAGIC | --- | --- | --- |
+# MAGIC | **`data_source`** | The directory of the source data | Auto Loader will detect new files as they arrive in this location and queue them for ingestion; passed to the **`.load()`** method |
+# MAGIC | **`source_format`** | The format of the source data | While the format for all Auto Loader queries will be **`cloudFiles`**, the format of the source data should always be specified for the **`cloudFiles.format`** option |
+# MAGIC | **`table_name`** | The name of the target table | Spark Structured Streaming supports writing directly to Delta Lake tables by passing a table name as a string to the **`.table()`** method. Note that you can either append to an existing table or create a new table |
+# MAGIC | **`checkpoint_directory`** | The location for storing metadata about the stream | This argument is pass to the **`checkpointLocation`** and **`cloudFiles.schemaLocation`** options. Checkpoints keep track of streaming progress, while the schema location tracks updates to the fields in the source dataset |
+# MAGIC
+# MAGIC **NOTE**: The code below has been streamlined to demonstrate Auto Loader functionality. We'll see in later lessons that additional transformations can be applied to source data before saving them to Delta Lake.
+
+# COMMAND ----------
+
+def autoload_to_table(data_source, source_format, table_name, checkpoint_directory):
+ query = (spark.readStream
+ .format("cloudFiles")
+ .option("cloudFiles.format", source_format)
+ .option("cloudFiles.schemaLocation", checkpoint_directory)
+ .load(data_source)
+ .writeStream
+ .option("checkpointLocation", checkpoint_directory)
+ .option("mergeSchema", "true")
+ .table(table_name))
+ return query
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC In the following cell, we use the previously defined function and some path variables defined in the setup script to begin an Auto Loader stream.
+# MAGIC
+# MAGIC Here, we're reading from a source directory of JSON files.
+
+# COMMAND ----------
+
+query = autoload_to_table(data_source = f"{DA.paths.working_dir}/tracker",
+ source_format = "json",
+ table_name = "target_table",
+ checkpoint_directory = f"{DA.paths.checkpoints}/target_table")
+
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC Because Auto Loader uses Spark Structured Streaming to load data incrementally, the code above doesn't appear to finish executing.
+# MAGIC
+# MAGIC We can think of this as a **continuously active query**. This means that as soon as new data arrives in our data source, it will be processed through our logic and loaded into our target table. We'll explore this in just a second.
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC ## Helper Function for Streaming Lessons
+# MAGIC
+# MAGIC Our notebook-based lessons combine streaming functions with batch and streaming queries against the results of those operations. These notebooks are for instructional purposes and intended for interactive, cell-by-cell execution. This pattern is not intended for production.
+# MAGIC
+# MAGIC Below, we define a helper function that prevents our notebook from executing the next cell just long enough to ensure data has been written out by a given streaming query. This code should not be necessary in a production job.
+
+# COMMAND ----------
+
+def block_until_stream_is_ready(query, min_batches=2):
+ import time
+ while len(query.recentProgress) < min_batches:
+ time.sleep(5) # Give it a couple of seconds
+
+ print(f"The stream has processed {len(query.recentProgress)} batchs")
+
+block_until_stream_is_ready(query)
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC ## Query Target Table
+# MAGIC
+# MAGIC Once data has been ingested to Delta Lake with Auto Loader, users can interact with it the same way they would any table.
+
+# COMMAND ----------
+
+# MAGIC %sql
+# MAGIC SELECT * FROM target_table
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC Note that the **`_rescued_data`** column is added by Auto Loader automatically to capture any data that might be malformed and not fit into the table otherwise.
+# MAGIC
+# MAGIC While Auto Loader captured the field names for our data correctly, note that it encoded all fields as **`STRING`** type. Because JSON is a text-based format, this is the safest and most permissive type, ensuring that the least amount of data is dropped or ignored at ingestion due to type mismatch.
+
+# COMMAND ----------
+
+# MAGIC %sql
+# MAGIC DESCRIBE TABLE target_table
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC Use the cell below to define a temporary view that summarizes the recordings in our target table.
+# MAGIC
+# MAGIC We'll use this view below to demonstrate how new data is automatically ingested with Auto Loader.
+
+# COMMAND ----------
+
+# MAGIC %sql
+# MAGIC CREATE OR REPLACE TEMP VIEW device_counts AS
+# MAGIC SELECT device_id, count(*) total_recordings
+# MAGIC FROM target_table
+# MAGIC GROUP BY device_id;
+# MAGIC
+# MAGIC SELECT * FROM device_counts
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC ## Land New Data
+# MAGIC
+# MAGIC As mentioned previously, Auto Loader is configured to incrementally process files from a directory in cloud object storage into a Delta Lake table.
+# MAGIC
+# MAGIC We have configured and are currently executing a query to process JSON files from the location specified by **`source_path`** into a table named **`target_table`**. Let's review the contents of the **`source_path`** directory.
+
+# COMMAND ----------
+
+files = dbutils.fs.ls(f"{DA.paths.working_dir}/tracker")
+display(files)
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC At present, you should see a single JSON file listed in this location.
+# MAGIC
+# MAGIC The method in the cell below was configured in our setup script to allow us to model an external system writing data to this directory. Each time you execute the cell below, a new file will land in the **`source_path`** directory.
+
+# COMMAND ----------
+
+DA.data_factory.load()
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC List the contents of the **`source_path`** again using the cell below. You should see an additional JSON file for each time you ran the previous cell.
+
+# COMMAND ----------
+
+files = dbutils.fs.ls(f"{DA.paths.working_dir}/tracker")
+display(files)
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC ## Tracking Ingestion Progress
+# MAGIC
+# MAGIC Historically, many systems have been configured to either reprocess all records in a source directory to calculate current results or require data engineers to implement custom logic to identify new data that's arrived since the last time a table was updated.
+# MAGIC
+# MAGIC With Auto Loader, your table has already been updated.
+# MAGIC
+# MAGIC Run the query below to confirm that new data has been ingested.
+
+# COMMAND ----------
+
+# MAGIC %sql
+# MAGIC SELECT * FROM device_counts
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC The Auto Loader query we configured earlier automatically detects and processes records from the source directory into the target table. There is a slight delay as records are ingested, but an Auto Loader query executing with default streaming configuration should update results in near real time.
+# MAGIC
+# MAGIC The query below shows the table history. A new table version should be indicated for each **`STREAMING UPDATE`**. These update events coincide with new batches of data arriving at the source.
+
+# COMMAND ----------
+
+# MAGIC %sql
+# MAGIC DESCRIBE HISTORY target_table
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC ## Clean Up
+# MAGIC Feel free to continue landing new data and exploring the table results with the cells above.
+# MAGIC
+# MAGIC When you're finished, run the following cell to stop all active streams and remove created resources before continuing.
+
+# COMMAND ----------
+
+DA.cleanup()
+
+# COMMAND ----------
+
+# MAGIC %md-sandbox
+# MAGIC © 2022 Databricks, Inc. All rights reserved.
+# MAGIC Apache, Apache Spark, Spark and the Spark logo are trademarks of the Apache Software Foundation.
+# MAGIC
+# MAGIC Privacy Policy | Terms of Use | Support
diff --git a/Data-Engineering-with-Databricks/Solutions/06 - Incremental Data Processing/DE 6.2 - Reasoning about Incremental Data.py b/Data-Engineering-with-Databricks/Solutions/06 - Incremental Data Processing/DE 6.2 - Reasoning about Incremental Data.py
new file mode 100644
index 0000000..fe8cc79
--- /dev/null
+++ b/Data-Engineering-with-Databricks/Solutions/06 - Incremental Data Processing/DE 6.2 - Reasoning about Incremental Data.py
@@ -0,0 +1,397 @@
+# Databricks notebook source
+# MAGIC %md-sandbox
+# MAGIC
+# MAGIC
+# MAGIC

+# MAGIC
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC # Reasoning about Incremental Data
+# MAGIC
+# MAGIC Spark Structured Streaming extends the functionality of Apache Spark to allow for simplified configuration and bookkeeping when processing incremental datasets. In the past, much of the emphasis for streaming with big data has focused on reducing latency to provide near real time analytic insights. While Structured Streaming provides exceptional performance in achieving these goals, this lesson will focus more on the applications of incremental data processing.
+# MAGIC
+# MAGIC While incremental processing is not absolutely necessary to work successfully in the data lakehouse, our experience helping some of the world's largest companies derive insights from the world's largest datasets has led to the conclusion that many workloads can benefit substantially from an incremental processing approach. Many of the core features at the heart of Databricks have been optimized specifically to handle these ever-growing datasets.
+# MAGIC
+# MAGIC Consider the following datasets and use cases:
+# MAGIC * Data scientists need secure, de-identified, versioned access to frequently updated records in an operational database
+# MAGIC * Credit card transactions need to be compared to past customer behavior to identify and flag fraud
+# MAGIC * A multi-national retailer seeks to serve custom product recommendations using purchase history
+# MAGIC * Log files from distributed systems need to be analayzed to detect and respond to instabilities
+# MAGIC * Clickstream data from millions of online shoppers needs to be leveraged for A/B testing of UX
+# MAGIC
+# MAGIC The above are just a small sample of datasets that grow incrementally and infinitely over time.
+# MAGIC
+# MAGIC In this lesson, we'll explore the basics of working with Spark Structured Streaming to allow incremental processing of data. In the next lesson, we'll talk more about how this incremental processing model simplifies data processing in the data lakehouse.
+# MAGIC
+# MAGIC ## Learning Objectives
+# MAGIC By the end of this lesson, you should be able to:
+# MAGIC * Describe the programming model used by Spark Structured Streaming
+# MAGIC * Configure required options to perform a streaming read on a source
+# MAGIC * Describe the requirements for end-to-end fault tolerance
+# MAGIC * Configure required options to perform a streaming write to a sink
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC
+# MAGIC ## Getting Started
+# MAGIC
+# MAGIC Run the following cell to configure our "classroom."
+
+# COMMAND ----------
+
+# MAGIC %run ../Includes/Classroom-Setup-6.2
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC
+# MAGIC ## Treating Infinite Data as a Table
+# MAGIC
+# MAGIC The magic behind Spark Structured Streaming is that it allows users to interact with ever-growing data sources as if they were just a static table of records.
+# MAGIC
+# MAGIC
+# MAGIC
+# MAGIC In the graphic above, a **data stream** describes any data source that grows over time. New data in a data stream might correspond to:
+# MAGIC * A new JSON log file landing in cloud storage
+# MAGIC * Updates to a database captured in a CDC feed
+# MAGIC * Events queued in a pub/sub messaging feed
+# MAGIC * A CSV file of sales closed the previous day
+# MAGIC
+# MAGIC Many organizations have traditionally taken an approach of reprocessing the entire source dataset each time they want to update their results. Another approach would be to write custom logic to only capture those files or records that have been added since the last time an update was run.
+# MAGIC
+# MAGIC Structured Streaming lets us define a query against the data source and automatically detect new records and propagate them through previously defined logic.
+# MAGIC
+# MAGIC **Spark Structured Streaming is optimized on Databricks to integrate closely with Delta Lake and Auto Loader.**
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC ## Basic Concepts
+# MAGIC
+# MAGIC - The developer defines an **input table** by configuring a streaming read against a **source**. The syntax for doing this is similar to working with static data.
+# MAGIC - A **query** is defined against the input table. Both the DataFrames API and Spark SQL can be used to easily define transformations and actions against the input table.
+# MAGIC - This logical query on the input table generates the **results table**. The results table contains the incremental state information of the stream.
+# MAGIC - The **output** of a streaming pipeline will persist updates to the results table by writing to an external **sink**. Generally, a sink will be a durable system such as files or a pub/sub messaging bus.
+# MAGIC - New rows are appended to the input table for each **trigger interval**. These new rows are essentially analogous to micro-batch transactions and will be automatically propagated through the results table to the sink.
+# MAGIC
+# MAGIC
+# MAGIC
+# MAGIC
+# MAGIC For more information, see the analogous section in the Structured Streaming Programming Guide (from which several images have been borrowed).
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC ## End-to-end Fault Tolerance
+# MAGIC
+# MAGIC Structured Streaming ensures end-to-end exactly-once fault-tolerance guarantees through _checkpointing_ (discussed below) and Write Ahead Logs.
+# MAGIC
+# MAGIC Structured Streaming sources, sinks, and the underlying execution engine work together to track the progress of stream processing. If a failure occurs, the streaming engine attempts to restart and/or reprocess the data.
+# MAGIC For best practices on recovering from a failed streaming query see docs.
+# MAGIC
+# MAGIC This approach _only_ works if the streaming source is replayable; replayable sources include cloud-based object storage and pub/sub messaging services.
+# MAGIC
+# MAGIC At a high level, the underlying streaming mechanism relies on a couple of approaches:
+# MAGIC
+# MAGIC * First, Structured Streaming uses checkpointing and write-ahead logs to record the offset range of data being processed during each trigger interval.
+# MAGIC * Next, the streaming sinks are designed to be _idempotent_ - that is, multiple writes of the same data (as identified by the offset) do _not_ result in duplicates being written to the sink.
+# MAGIC
+# MAGIC Taken together, replayable data sources and idempotent sinks allow Structured Streaming to ensure **end-to-end, exactly-once semantics** under any failure condition.
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC
+# MAGIC ## Reading a Stream
+# MAGIC
+# MAGIC The **`spark.readStream()`** method returns a **`DataStreamReader`** used to configure and query the stream.
+# MAGIC
+# MAGIC In the previous lesson, we saw code configured for incrementally reading with Auto Loader. Here, we'll show how easy it is to incrementally read a Delta Lake table.
+# MAGIC
+# MAGIC The code uses the PySpark API to incrementally read a Delta Lake table named **`bronze`** and register a streaming temp view named **`streaming_tmp_vw`**.
+# MAGIC
+# MAGIC **NOTE**: A number of optional configurations (not shown here) can be set when configuring incremental reads, the most important of which allows you to limit the input rate.
+
+# COMMAND ----------
+
+(spark.readStream
+ .table("bronze")
+ .createOrReplaceTempView("streaming_tmp_vw"))
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC
+# MAGIC When we execute a query on a streaming temporary view, we'll continue to update the results of the query as new data arrives in the source.
+# MAGIC
+# MAGIC Think of a query executed against a streaming temp view as an **always-on incremental query**.
+# MAGIC
+# MAGIC **NOTE**: Generally speaking, unless a human is actively monitoring the output of a query during development or live dashboarding, we won't return streaming results to a notebook.
+
+# COMMAND ----------
+
+# MAGIC %sql
+# MAGIC SELECT * FROM streaming_tmp_vw
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC You will recognize the data as being the same as the Delta table written out in our previous lesson.
+# MAGIC
+# MAGIC Before continuing, click **`Stop Execution`** at the top of the notebook, **`Cancel`** immediately under the cell, or run the following cell to stop all active streaming queries.
+
+# COMMAND ----------
+
+for s in spark.streams.active:
+ print("Stopping " + s.id)
+ s.stop()
+ s.awaitTermination()
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC ## Working with Streaming Data
+# MAGIC We can execute most transformation against streaming temp views the same way we would with static data. Here, we'll run a simple aggregation to get counts of records for each **`device_id`**.
+# MAGIC
+# MAGIC Because we are querying a streaming temp view, this becomes a streaming query that executes indefinitely, rather than completing after retrieving a single set of results. For streaming queries like this, Databricks Notebooks include interactive dashboards that allow users to monitor streaming performance. Explore this below.
+# MAGIC
+# MAGIC One important note regarding this example: this is merely displaying an aggregation of input as seen by the stream. **None of these records are being persisted anywhere at this point.**
+
+# COMMAND ----------
+
+# MAGIC %sql
+# MAGIC SELECT device_id, count(device_id) AS total_recordings
+# MAGIC FROM streaming_tmp_vw
+# MAGIC GROUP BY device_id
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC Before continuing, click **`Stop Execution`** at the top of the notebook, **`Cancel`** immediately under the cell, or run the following cell to stop all active streaming queries.
+
+# COMMAND ----------
+
+for s in spark.streams.active:
+ print("Stopping " + s.id)
+ s.stop()
+ s.awaitTermination()
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC ## Unsupported Operations
+# MAGIC
+# MAGIC Most operations on a streaming DataFrame are identical to a static DataFrame. There are some exceptions to this.
+# MAGIC
+# MAGIC Consider the model of the data as a constantly appending table. Sorting is one of a handful of operations that is either too complex or logically not possible to do when working with streaming data.
+# MAGIC
+# MAGIC A full discussion of these exceptions is out of scope for this course. Note that advanced streaming methods like windowing and watermarking can be used to add additional functionality to incremental workloads.
+# MAGIC
+# MAGIC Uncomment and run the following cell how this failure may appear:
+
+# COMMAND ----------
+
+# %sql
+# SELECT *
+# FROM streaming_tmp_vw
+# ORDER BY time
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC ## Persisting Streaming Results
+# MAGIC
+# MAGIC In order to persist incremental results, we need to pass our logic back to the PySpark Structured Streaming DataFrames API.
+# MAGIC
+# MAGIC Above, we created a temp view from a PySpark streaming DataFrame. If we create another temp view from the results of a query against a streaming temp view, we'll again have a streaming temp view.
+
+# COMMAND ----------
+
+# MAGIC %sql
+# MAGIC CREATE OR REPLACE TEMP VIEW device_counts_tmp_vw AS (
+# MAGIC SELECT device_id, COUNT(device_id) AS total_recordings
+# MAGIC FROM streaming_tmp_vw
+# MAGIC GROUP BY device_id
+# MAGIC )
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC
+# MAGIC ## Writing a Stream
+# MAGIC
+# MAGIC To persist the results of a streaming query, we must write them out to durable storage. The **`DataFrame.writeStream`** method returns a **`DataStreamWriter`** used to configure the output.
+# MAGIC
+# MAGIC When writing to Delta Lake tables, we typically will only need to worry about 3 settings, discussed here.
+# MAGIC
+# MAGIC ### Checkpointing
+# MAGIC
+# MAGIC Databricks creates checkpoints by storing the current state of your streaming job to cloud storage.
+# MAGIC
+# MAGIC Checkpointing combines with write ahead logs to allow a terminated stream to be restarted and continue from where it left off.
+# MAGIC
+# MAGIC Checkpoints cannot be shared between separate streams. A checkpoint is required for every streaming write to ensure processing guarantees.
+# MAGIC
+# MAGIC ### Output Modes
+# MAGIC
+# MAGIC Streaming jobs have output modes similar to static/batch workloads. More details here.
+# MAGIC
+# MAGIC | Mode | Example | Notes |
+# MAGIC | ------------- | ----------- | --- |
+# MAGIC | **Append** | **`.outputMode("append")`** | **This is the default.** Only newly appended rows are incrementally appended to the target table with each batch |
+# MAGIC | **Complete** | **`.outputMode("complete")`** | The Results Table is recalculated each time a write is triggered; the target table is overwritten with each batch |
+# MAGIC
+# MAGIC
+# MAGIC ### Trigger Intervals
+# MAGIC
+# MAGIC When defining a streaming write, the **`trigger`** method specifies when the system should process the next set of data..
+# MAGIC
+# MAGIC
+# MAGIC | Trigger Type | Example | Behavior |
+# MAGIC |----------------------------------------|----------|----------|
+# MAGIC | Unspecified | | **This is the default.** This is equivalent to using **`processingTime="500ms"`** |
+# MAGIC | Fixed interval micro-batches | **`.trigger(processingTime="2 minutes")`** | The query will be executed in micro-batches and kicked off at the user-specified intervals |
+# MAGIC | Triggered micro-batch | **`.trigger(once=True)`** | The query will execute a single micro-batch to process all the available data and then stop on its own |
+# MAGIC | Triggered micro-batches | **`.trigger(availableNow=True)`** | The query will execute multiple micro-batches to process all the available data and then stop on its own |
+# MAGIC
+# MAGIC Triggers are specified when defining how data will be written to a sink and control the frequency of micro-batches. By default, Spark will automatically detect and process all data in the source that has been added since the last trigger.
+# MAGIC
+# MAGIC **NOTE:** **`Trigger.AvailableNow`** is a new trigger type that is available in DBR 10.1 for Scala only and available in DBR 10.2 and above for Python and Scala.
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC ## Pulling It All Together
+# MAGIC
+# MAGIC The code below demonstrates using **`spark.table()`** to load data from a streaming temp view back to a DataFrame. Note that Spark will always load streaming views as a streaming DataFrame and static views as static DataFrames (meaning that incremental processing must be defined with read logic to support incremental writing).
+# MAGIC
+# MAGIC In this first query, we'll demonstrate using **`trigger(availableNow=True)`** to perform incremental batch processing.
+
+# COMMAND ----------
+
+(spark.table("device_counts_tmp_vw")
+ .writeStream
+ .option("checkpointLocation", f"{DA.paths.checkpoints}/silver")
+ .outputMode("complete")
+ .trigger(availableNow=True)
+ .table("device_counts")
+ .awaitTermination() # This optional method blocks execution of the next cell until the incremental batch write has succeeded
+)
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC Below, we change our trigger method to change this query from a triggered incremental batch to an always-on query triggered every 4 seconds.
+# MAGIC
+# MAGIC **NOTE**: As we start this query, no new records exist in our source table. We'll add new data shortly.
+
+# COMMAND ----------
+
+query = (spark.table("device_counts_tmp_vw")
+ .writeStream
+ .option("checkpointLocation", f"{DA.paths.checkpoints}/silver")
+ .outputMode("complete")
+ .trigger(processingTime='4 seconds')
+ .table("device_counts"))
+
+# Like before, wait until our stream has processed some data
+DA.block_until_stream_is_ready(query)
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC ## Querying the Output
+# MAGIC Now let's query the output we've written from SQL. Because the result is a table, we only need to deserialize the data to return the results.
+# MAGIC
+# MAGIC Because we are now querying a table (not a streaming DataFrame), the following will **not** be a streaming query.
+
+# COMMAND ----------
+
+# MAGIC %sql
+# MAGIC SELECT *
+# MAGIC FROM device_counts
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC ## Land New Data
+# MAGIC
+# MAGIC As in our previous lesson, we have configured a helper function to process new records into our source table.
+# MAGIC
+# MAGIC Run the cell below to land another batch of data.
+
+# COMMAND ----------
+
+DA.data_factory.load()
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC Query the target table again to see the updated counts for each **`device_id`**.
+
+# COMMAND ----------
+
+# MAGIC %sql
+# MAGIC SELECT *
+# MAGIC FROM device_counts
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC ## Clean Up
+# MAGIC Feel free to continue landing new data and exploring the table results with the cells above.
+# MAGIC
+# MAGIC When you're finished, run the following cell to stop all active streams and remove created resources before continuing.
+
+# COMMAND ----------
+
+DA.cleanup()
+
+# COMMAND ----------
+
+# MAGIC %md-sandbox
+# MAGIC © 2022 Databricks, Inc. All rights reserved.
+# MAGIC Apache, Apache Spark, Spark and the Spark logo are trademarks of the Apache Software Foundation.
+# MAGIC
+# MAGIC Privacy Policy | Terms of Use | Support
diff --git a/Data-Engineering-with-Databricks/Solutions/06 - Incremental Data Processing/DE 6.3L - Using Auto Loader and Structured Streaming with Spark SQL Lab.py b/Data-Engineering-with-Databricks/Solutions/06 - Incremental Data Processing/DE 6.3L - Using Auto Loader and Structured Streaming with Spark SQL Lab.py
new file mode 100644
index 0000000..231b970
--- /dev/null
+++ b/Data-Engineering-with-Databricks/Solutions/06 - Incremental Data Processing/DE 6.3L - Using Auto Loader and Structured Streaming with Spark SQL Lab.py
@@ -0,0 +1,186 @@
+# Databricks notebook source
+# MAGIC %md-sandbox
+# MAGIC
+# MAGIC
+# MAGIC

+# MAGIC
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC # Using Auto Loader and Structured Streaming with Spark SQL
+# MAGIC
+# MAGIC ## Learning Objectives
+# MAGIC By the end of this lab, you should be able to:
+# MAGIC * Ingest data using Auto Loader
+# MAGIC * Aggregate streaming data
+# MAGIC * Stream data to a Delta table
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC ## Setup
+# MAGIC Run the following script to setup necessary variables and clear out past runs of this notebook. Note that re-executing this cell will allow you to start the lab over.
+
+# COMMAND ----------
+
+# MAGIC %run ../Includes/Classroom-Setup-6.3L
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC
+# MAGIC ## Configure Streaming Read
+# MAGIC
+# MAGIC This lab uses a collection of customer-related CSV data from DBFS found in */databricks-datasets/retail-org/customers/*.
+# MAGIC
+# MAGIC Read this data using Auto Loader using its schema inference (use **`customers_checkpoint_path`** to store the schema info). Create a streaming temporary view called **`customers_raw_temp`**.
+
+# COMMAND ----------
+
+# ANSWER
+customers_checkpoint_path = f"{DA.paths.checkpoints}/customers"
+
+(spark.readStream
+ .format("cloudFiles")
+ .option("cloudFiles.format", "csv")
+ .option("cloudFiles.schemaLocation", customers_checkpoint_path)
+ .load("/databricks-datasets/retail-org/customers/")
+ .createOrReplaceTempView("customers_raw_temp"))
+
+# COMMAND ----------
+
+from pyspark.sql import Row
+assert Row(tableName="customers_raw_temp", isTemporary=True) in spark.sql("show tables").select("tableName", "isTemporary").collect(), "Table not present or not temporary"
+assert spark.table("customers_raw_temp").dtypes == [('customer_id', 'string'),
+ ('tax_id', 'string'),
+ ('tax_code', 'string'),
+ ('customer_name', 'string'),
+ ('state', 'string'),
+ ('city', 'string'),
+ ('postcode', 'string'),
+ ('street', 'string'),
+ ('number', 'string'),
+ ('unit', 'string'),
+ ('region', 'string'),
+ ('district', 'string'),
+ ('lon', 'string'),
+ ('lat', 'string'),
+ ('ship_to_address', 'string'),
+ ('valid_from', 'string'),
+ ('valid_to', 'string'),
+ ('units_purchased', 'string'),
+ ('loyalty_segment', 'string'),
+ ('_rescued_data', 'string')], "Incorrect Schema"
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC
+# MAGIC ## Define a streaming aggregation
+# MAGIC
+# MAGIC Using CTAS syntax, define a new streaming view called **`customer_count_by_state_temp`** that counts the number of customers per **`state`**, in a field called **`customer_count`**.
+
+# COMMAND ----------
+
+# MAGIC %sql
+# MAGIC -- ANSWER
+# MAGIC
+# MAGIC CREATE OR REPLACE TEMPORARY VIEW customer_count_by_state_temp AS
+# MAGIC SELECT
+# MAGIC state,
+# MAGIC count(customer_id) AS customer_count
+# MAGIC FROM customers_raw_temp
+# MAGIC GROUP BY
+# MAGIC state
+
+# COMMAND ----------
+
+assert Row(tableName="customer_count_by_state_temp", isTemporary=True) in spark.sql("show tables").select("tableName", "isTemporary").collect(), "Table not present or not temporary"
+assert spark.table("customer_count_by_state_temp").dtypes == [('state', 'string'), ('customer_count', 'bigint')], "Incorrect Schema"
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC
+# MAGIC ## Write aggregated data to a Delta table
+# MAGIC
+# MAGIC Stream data from the **`customer_count_by_state_temp`** view to a Delta table called **`customer_count_by_state`**.
+
+# COMMAND ----------
+
+# ANSWER
+customers_count_checkpoint_path = f"{DA.paths.checkpoints}/customers_count"
+
+query = (spark.table("customer_count_by_state_temp")
+ .writeStream
+ .format("delta")
+ .option("checkpointLocation", customers_count_checkpoint_path)
+ .outputMode("complete")
+ .table("customer_count_by_state"))
+
+# COMMAND ----------
+
+DA.block_until_stream_is_ready(query)
+
+# COMMAND ----------
+
+assert Row(tableName="customer_count_by_state", isTemporary=False) in spark.sql("show tables").select("tableName", "isTemporary").collect(), "Table not present or not temporary"
+assert spark.table("customer_count_by_state").dtypes == [('state', 'string'), ('customer_count', 'bigint')], "Incorrect Schema"
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC
+# MAGIC ## Query the results
+# MAGIC
+# MAGIC Query the **`customer_count_by_state`** table (this will not be a streaming query). Plot the results as a bar graph and also using the map plot.
+
+# COMMAND ----------
+
+# MAGIC %sql
+# MAGIC -- ANSWER
+# MAGIC SELECT * FROM customer_count_by_state
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC ## Wrapping Up
+# MAGIC
+# MAGIC Run the following cell to remove the database and all data associated with this lab.
+
+# COMMAND ----------
+
+DA.cleanup()
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC By completing this lab, you should now feel comfortable:
+# MAGIC * Using PySpark to configure Auto Loader for incremental data ingestion
+# MAGIC * Using Spark SQL to aggregate streaming data
+# MAGIC * Streaming data to a Delta table
+
+# COMMAND ----------
+
+# MAGIC %md-sandbox
+# MAGIC © 2022 Databricks, Inc. All rights reserved.
+# MAGIC Apache, Apache Spark, Spark and the Spark logo are trademarks of the Apache Software Foundation.
+# MAGIC
+# MAGIC Privacy Policy | Terms of Use | Support
diff --git a/Data-Engineering-With-Databricks/Solutions/03 - Incremental Data and Delta Live Tables/DE 3.2.1 - Incremental Multi-Hop in the Lakehouse.py b/Data-Engineering-with-Databricks/Solutions/07 - Multi-Hop Architecture/DE 7.1 - Incremental Multi-Hop in the Lakehouse.py
similarity index 80%
rename from Data-Engineering-With-Databricks/Solutions/03 - Incremental Data and Delta Live Tables/DE 3.2.1 - Incremental Multi-Hop in the Lakehouse.py
rename to Data-Engineering-with-Databricks/Solutions/07 - Multi-Hop Architecture/DE 7.1 - Incremental Multi-Hop in the Lakehouse.py
index 3a82aac..ff85bf7 100644
--- a/Data-Engineering-With-Databricks/Solutions/03 - Incremental Data and Delta Live Tables/DE 3.2.1 - Incremental Multi-Hop in the Lakehouse.py
+++ b/Data-Engineering-with-Databricks/Solutions/07 - Multi-Hop Architecture/DE 7.1 - Incremental Multi-Hop in the Lakehouse.py
@@ -8,6 +8,8 @@
# COMMAND ----------
# MAGIC %md
+# MAGIC
+# MAGIC
# MAGIC # Incremental Multi-Hop in the Lakehouse
# MAGIC
# MAGIC Now that we have a better understanding of how to work with incremental data processing by combining Structured Streaming APIs and Spark SQL, we can explore the tight integration between Structured Streaming and Delta Lake.
@@ -22,6 +24,8 @@
# COMMAND ----------
# MAGIC %md
+# MAGIC
+# MAGIC
# MAGIC ## Incremental Updates in the Lakehouse
# MAGIC
# MAGIC Delta Lake allows users to easily combine streaming and batch workloads in a unified multi-hop pipeline. Each stage of the pipeline represents a state of our data valuable to driving core use cases within the business. Because all data and metadata lives in object storage in the cloud, multiple users and applications can access data in near-real time, allowing analysts to access the freshest data as it's being processed.
@@ -43,6 +47,8 @@
# COMMAND ----------
# MAGIC %md
+# MAGIC
+# MAGIC
# MAGIC ## Datasets Used
# MAGIC
# MAGIC This demo uses simplified artificially generated medical data. The schema of our two datasets is represented below. Note that we will be manipulating these schema during various steps.
@@ -68,34 +74,42 @@
# COMMAND ----------
# MAGIC %md
+# MAGIC
+# MAGIC
# MAGIC ## Getting Started
# MAGIC
# MAGIC Run the following cell to configure the lab environment.
# COMMAND ----------
-# MAGIC %run "../Includes/multi-hop-setup" $mode="reset"
+# MAGIC %run ../Includes/Classroom-Setup-7.1
# COMMAND ----------
# MAGIC %md
+# MAGIC
+# MAGIC
# MAGIC ## Data Simulator
-# MAGIC Databricks Auto Loader can automatically process files as they land in your cloud object stores. To simulate this process, you will be asked to run the following operation several times throughout the course.
+# MAGIC Databricks Auto Loader can automatically process files as they land in your cloud object stores.
+# MAGIC
+# MAGIC To simulate this process, you will be asked to run the following operation several times throughout the course.
# COMMAND ----------
-File.newData()
+DA.data_factory.load()
# COMMAND ----------
# MAGIC %md
+# MAGIC
+# MAGIC
# MAGIC ## Bronze Table: Ingesting Raw JSON Recordings
# MAGIC
# MAGIC Below, we configure a read on a raw JSON source using Auto Loader with schema inference.
# MAGIC
# MAGIC Note that while you need to use the Spark DataFrame API to set up an incremental read, once configured you can immediately register a temp view to leverage Spark SQL for streaming transformations on your data.
# MAGIC
-# MAGIC **NOTE**: For a JSON data source, Auto Loader will default to inferring each column as a string. Here, we demonstrate specifying the data type for the `time` column using the `cloudFiles.schemaHints` option. Note that specifying improper types for a field will result in null values.
+# MAGIC **NOTE**: For a JSON data source, Auto Loader will default to inferring each column as a string. Here, we demonstrate specifying the data type for the **`time`** column using the **`cloudFiles.schemaHints`** option. Note that specifying improper types for a field will result in null values.
# COMMAND ----------
@@ -103,13 +117,15 @@
.format("cloudFiles")
.option("cloudFiles.format", "json")
.option("cloudFiles.schemaHints", "time DOUBLE")
- .option("cloudFiles.schemaLocation", bronzeCheckpoint)
- .load(dataLandingLocation)
+ .option("cloudFiles.schemaLocation", f"{DA.paths.checkpoints}/bronze")
+ .load(DA.paths.data_landing_location)
.createOrReplaceTempView("recordings_raw_temp"))
# COMMAND ----------
# MAGIC %md
+# MAGIC
+# MAGIC
# MAGIC Here, we'll enrich our raw data with additional metadata describing the source file and the time it was ingested. This additional metadata can be ignored during downstream processing while providing useful information for troubleshooting errors if corrupt data is encountered.
# COMMAND ----------
@@ -123,29 +139,35 @@
# COMMAND ----------
# MAGIC %md
+# MAGIC
+# MAGIC
# MAGIC The code below passes our enriched raw data back to PySpark API to process an incremental write to a Delta Lake table.
# COMMAND ----------
(spark.table("recordings_bronze_temp")
- .writeStream
- .format("delta")
- .option("checkpointLocation", bronzeCheckpoint)
- .outputMode("append")
- .table("bronze"))
+ .writeStream
+ .format("delta")
+ .option("checkpointLocation", f"{DA.paths.checkpoints}/bronze")
+ .outputMode("append")
+ .table("bronze"))
# COMMAND ----------
# MAGIC %md
+# MAGIC
+# MAGIC
# MAGIC Trigger another file arrival with the following cell and you'll see the changes immediately detected by the streaming query you've written.
# COMMAND ----------
-File.newData()
+DA.data_factory.load()
# COMMAND ----------
# MAGIC %md
+# MAGIC
+# MAGIC
# MAGIC ### Load Static Lookup Table
# MAGIC The ACID guarantees that Delta Lake brings to your data are managed at the table level, ensuring that only fully successfully commits are reflected in your tables. If you choose to merge these data with other data sources, be aware of how those sources version data and what sort of consistency guarantees they have.
# MAGIC
@@ -153,13 +175,12 @@
# COMMAND ----------
-(spark
- .read
- .format("csv")
- .schema("mrn STRING, name STRING")
- .option("header", True)
- .load(f"{dataSource}/patient/patient_info.csv")
- .createOrReplaceTempView("pii"))
+(spark.read
+ .format("csv")
+ .schema("mrn STRING, name STRING")
+ .option("header", True)
+ .load(f"{DA.paths.data_source}/patient/patient_info.csv")
+ .createOrReplaceTempView("pii"))
# COMMAND ----------
@@ -169,10 +190,12 @@
# COMMAND ----------
# MAGIC %md
+# MAGIC
+# MAGIC
# MAGIC ## Silver Table: Enriched Recording Data
# MAGIC As a second hop in our silver level, we will do the follow enrichments and checks:
# MAGIC - Our recordings data will be joined with the PII to add patient names
-# MAGIC - The time for our recordings will be parsed to the format `'yyyy-MM-dd HH:mm:ss'` to be human-readable
+# MAGIC - The time for our recordings will be parsed to the format **`'yyyy-MM-dd HH:mm:ss'`** to be human-readable
# MAGIC - We will exclude heart rates that are <= 0, as we know that these either represent the absence of the patient or an error in transmission
# COMMAND ----------
@@ -194,15 +217,17 @@
# COMMAND ----------
(spark.table("recordings_w_pii")
- .writeStream
- .format("delta")
- .option("checkpointLocation", recordingsEnrichedCheckpoint)
- .outputMode("append")
- .table("recordings_enriched"))
+ .writeStream
+ .format("delta")
+ .option("checkpointLocation", f"{DA.paths.checkpoints}/recordings_enriched")
+ .outputMode("append")
+ .table("recordings_enriched"))
# COMMAND ----------
# MAGIC %md
+# MAGIC
+# MAGIC
# MAGIC Trigger another new file and wait for it propagate through both previous queries.
# COMMAND ----------
@@ -212,14 +237,16 @@
# COMMAND ----------
-File.newData()
+DA.data_factory.load()
# COMMAND ----------
# MAGIC %md
+# MAGIC
+# MAGIC
# MAGIC ## Gold Table: Daily Averages
# MAGIC
-# MAGIC Here we read a stream of data from `recordingsEnrichedPath` and write another stream to create an aggregate gold table of daily averages for each patient.
+# MAGIC Here we read a stream of data from **`recordings_enriched`** and write another stream to create an aggregate gold table of daily averages for each patient.
# COMMAND ----------
@@ -238,7 +265,9 @@
# COMMAND ----------
# MAGIC %md
-# MAGIC Note that we're using `.trigger(once=True)` below. This provides us the ability to continue to use the strengths of structured streaming while trigger this job as a single batch. To recap, these strengths include:
+# MAGIC
+# MAGIC
+# MAGIC Note that we're using **`.trigger(availableNow=True)`** below. This provides us the ability to continue to use the strengths of structured streaming while trigger this job one-time to process all available data in micro-batches. To recap, these strengths include:
# MAGIC - exactly once end-to-end fault tolerant processing
# MAGIC - automatic detection of changes in upstream data sources
# MAGIC
@@ -249,22 +278,23 @@
# COMMAND ----------
(spark.table("patient_avg")
- .writeStream
- .format("delta")
- .outputMode("complete")
- .option("checkpointLocation", dailyAvgCheckpoint)
- .trigger(once=True)
- .table("daily_patient_avg")
-)
+ .writeStream
+ .format("delta")
+ .outputMode("complete")
+ .option("checkpointLocation", f"{DA.paths.checkpoints}/daily_avg")
+ .trigger(availableNow=True)
+ .table("daily_patient_avg"))
# COMMAND ----------
# MAGIC %md
-# MAGIC #### Important Considerations for `complete` Output with Delta
# MAGIC
-# MAGIC When using `complete` output mode, we rewrite the entire state of our table each time our logic runs. While this is ideal for calculating aggregates, we **cannot** read a stream from this directory, as Structured Streaming assumes data is only being appended in the upstream logic.
# MAGIC
-# MAGIC **NOTE**: Certain options can be set to change this behavior, but have other limitations attached. For more details, refer to [Delta Streaming: Ignoring Updates and Deletes](https://docs.databricks.com/delta/delta-streaming.html#ignoring-updates-and-deletes).
+# MAGIC #### Important Considerations for complete Output with Delta
+# MAGIC
+# MAGIC When using **`complete`** output mode, we rewrite the entire state of our table each time our logic runs. While this is ideal for calculating aggregates, we **cannot** read a stream from this directory, as Structured Streaming assumes data is only being appended in the upstream logic.
+# MAGIC
+# MAGIC **NOTE**: Certain options can be set to change this behavior, but have other limitations attached. For more details, refer to Delta Streaming: Ignoring Updates and Deletes.
# MAGIC
# MAGIC The gold Delta table we have just registered will perform a static read of the current state of the data each time we run the following query.
@@ -276,6 +306,8 @@
# COMMAND ----------
# MAGIC %md
+# MAGIC
+# MAGIC
# MAGIC Note the above table includes all days for all users. If the predicates for our ad hoc queries match the data encoded here, we can push down our predicates to files at the source and very quickly generate more limited aggregate views.
# COMMAND ----------
@@ -288,27 +320,33 @@
# COMMAND ----------
# MAGIC %md
+# MAGIC
+# MAGIC
# MAGIC ## Process Remaining Records
-# MAGIC The following cell will land additional files for the rest of 2020 in your source directory. You'll be able to see these process through the first 3 tables in your Delta Lake, but will need to re-run your final query to update your `daily_patient_avg` table, since this query uses the trigger once syntax.
+# MAGIC The following cell will land additional files for the rest of 2020 in your source directory. You'll be able to see these process through the first 3 tables in your Delta Lake, but will need to re-run your final query to update your **`daily_patient_avg`** table, since this query uses the trigger available now syntax.
# COMMAND ----------
-File.newData(continuous=True)
+DA.data_factory.load(continuous=True)
# COMMAND ----------
# MAGIC %md
+# MAGIC
+# MAGIC
# MAGIC ## Wrapping Up
# MAGIC
# MAGIC Finally, make sure all streams are stopped.
# COMMAND ----------
-# MAGIC %run "../Includes/multi-hop-setup" $mode="clean"
+DA.cleanup()
# COMMAND ----------
# MAGIC %md
+# MAGIC
+# MAGIC
# MAGIC ## Summary
# MAGIC
# MAGIC Delta Lake and Structured Streaming combine to provide near real-time analytic access to data in the lakehouse.
@@ -316,6 +354,8 @@
# COMMAND ----------
# MAGIC %md
+# MAGIC
+# MAGIC
# MAGIC ## Additional Topics & Resources
# MAGIC
# MAGIC * Table Streaming Reads and Writes
diff --git a/Data-Engineering-with-Databricks/Solutions/07 - Multi-Hop Architecture/DE 7.2L - Propagating Incremental Updates with Structured Streaming and Delta Lake Lab.py b/Data-Engineering-with-Databricks/Solutions/07 - Multi-Hop Architecture/DE 7.2L - Propagating Incremental Updates with Structured Streaming and Delta Lake Lab.py
new file mode 100644
index 0000000..486fa7f
--- /dev/null
+++ b/Data-Engineering-with-Databricks/Solutions/07 - Multi-Hop Architecture/DE 7.2L - Propagating Incremental Updates with Structured Streaming and Delta Lake Lab.py
@@ -0,0 +1,290 @@
+# Databricks notebook source
+# MAGIC %md-sandbox
+# MAGIC
+# MAGIC
+# MAGIC

+# MAGIC
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC # Propagating Incremental Updates with Structured Streaming and Delta Lake
+# MAGIC
+# MAGIC ## Learning Objectives
+# MAGIC By the end of this lab, you should be able to:
+# MAGIC * Apply your knowledge of structured streaming and Auto Loader to implement a simple multi-hop architecture
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC ## Setup
+# MAGIC Run the following script to setup necessary variables and clear out past runs of this notebook. Note that re-executing this cell will allow you to start the lab over.
+
+# COMMAND ----------
+
+# MAGIC %run ../Includes/Classroom-Setup-7.2L
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC
+# MAGIC ## Ingest data
+# MAGIC
+# MAGIC This lab uses a collection of customer-related CSV data from DBFS found in */databricks-datasets/retail-org/customers/*.
+# MAGIC
+# MAGIC Read this data using Auto Loader using its schema inference (use **`customers_checkpoint_path`** to store the schema info). Stream the raw data to a Delta table called **`bronze`**.
+
+# COMMAND ----------
+
+# ANSWER
+customers_checkpoint_path = f"{DA.paths.checkpoints}/customers"
+
+query = (spark.readStream
+ .format("cloudFiles")
+ .option("cloudFiles.format", "csv")
+ .option("cloudFiles.schemaLocation", customers_checkpoint_path)
+ .load("/databricks-datasets/retail-org/customers/")
+ .writeStream
+ .format("delta")
+ .option("checkpointLocation", customers_checkpoint_path)
+ .outputMode("append")
+ .table("bronze"))
+
+# COMMAND ----------
+
+DA.block_until_stream_is_ready(query)
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC Run the cell below to check your work.
+
+# COMMAND ----------
+
+assert spark.table("bronze"), "Table named `bronze` does not exist"
+assert spark.sql(f"SHOW TABLES").filter(f"tableName == 'bronze'").first()["isTemporary"] == False, "Table is temporary"
+assert spark.table("bronze").dtypes == [('customer_id', 'string'), ('tax_id', 'string'), ('tax_code', 'string'), ('customer_name', 'string'), ('state', 'string'), ('city', 'string'), ('postcode', 'string'), ('street', 'string'), ('number', 'string'), ('unit', 'string'), ('region', 'string'), ('district', 'string'), ('lon', 'string'), ('lat', 'string'), ('ship_to_address', 'string'), ('valid_from', 'string'), ('valid_to', 'string'), ('units_purchased', 'string'), ('loyalty_segment', 'string'), ('_rescued_data', 'string')], "Incorrect Schema"
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC
+# MAGIC Let's create a streaming temporary view into the bronze table, so that we can perform transforms using SQL.
+
+# COMMAND ----------
+
+(spark
+ .readStream
+ .table("bronze")
+ .createOrReplaceTempView("bronze_temp"))
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC ## Clean and enhance data
+# MAGIC
+# MAGIC Using CTAS syntax, define a new streaming view called **`bronze_enhanced_temp`** that does the following:
+# MAGIC * Skips records with a null **`postcode`** (set to zero)
+# MAGIC * Inserts a column called **`receipt_time`** containing a current timestamp
+# MAGIC * Inserts a column called **`source_file`** containing the input filename
+
+# COMMAND ----------
+
+# MAGIC %sql
+# MAGIC -- ANSWER
+# MAGIC CREATE OR REPLACE TEMPORARY VIEW bronze_enhanced_temp AS
+# MAGIC SELECT
+# MAGIC *, current_timestamp() receipt_time, input_file_name() source_file
+# MAGIC FROM bronze_temp
+# MAGIC WHERE postcode > 0
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC Run the cell below to check your work.
+
+# COMMAND ----------
+
+assert spark.table("bronze_enhanced_temp"), "Table named `bronze_enhanced_temp` does not exist"
+assert spark.sql(f"SHOW TABLES").filter(f"tableName == 'bronze_enhanced_temp'").first()["isTemporary"] == True, "Table is not temporary"
+assert spark.table("bronze_enhanced_temp").dtypes == [('customer_id', 'string'), ('tax_id', 'string'), ('tax_code', 'string'), ('customer_name', 'string'), ('state', 'string'), ('city', 'string'), ('postcode', 'string'), ('street', 'string'), ('number', 'string'), ('unit', 'string'), ('region', 'string'), ('district', 'string'), ('lon', 'string'), ('lat', 'string'), ('ship_to_address', 'string'), ('valid_from', 'string'), ('valid_to', 'string'), ('units_purchased', 'string'), ('loyalty_segment', 'string'), ('_rescued_data', 'string'), ('receipt_time', 'timestamp'), ('source_file', 'string')], "Incorrect Schema"
+assert spark.table("bronze_enhanced_temp").isStreaming, "Not a streaming table"
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC ## Silver table
+# MAGIC
+# MAGIC Stream the data from **`bronze_enhanced_temp`** to a table called **`silver`**.
+
+# COMMAND ----------
+
+# ANSWER
+silver_checkpoint_path = f"{DA.paths.checkpoints}/silver"
+
+query = (spark.table("bronze_enhanced_temp")
+ .writeStream
+ .format("delta")
+ .option("checkpointLocation", silver_checkpoint_path)
+ .outputMode("append")
+ .table("silver"))
+
+# COMMAND ----------
+
+DA.block_until_stream_is_ready(query)
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC Run the cell below to check your work.
+
+# COMMAND ----------
+
+assert spark.table("silver"), "Table named `silver` does not exist"
+assert spark.sql(f"SHOW TABLES").filter(f"tableName == 'silver'").first()["isTemporary"] == False, "Table is temporary"
+assert spark.table("silver").dtypes == [('customer_id', 'string'), ('tax_id', 'string'), ('tax_code', 'string'), ('customer_name', 'string'), ('state', 'string'), ('city', 'string'), ('postcode', 'string'), ('street', 'string'), ('number', 'string'), ('unit', 'string'), ('region', 'string'), ('district', 'string'), ('lon', 'string'), ('lat', 'string'), ('ship_to_address', 'string'), ('valid_from', 'string'), ('valid_to', 'string'), ('units_purchased', 'string'), ('loyalty_segment', 'string'), ('_rescued_data', 'string'), ('receipt_time', 'timestamp'), ('source_file', 'string')], "Incorrect Schema"
+assert spark.table("silver").filter("postcode <= 0").count() == 0, "Null postcodes present"
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC
+# MAGIC Let's create a streaming temporary view into the silver table, so that we can perform business-level using SQL.
+
+# COMMAND ----------
+
+(spark
+ .readStream
+ .table("silver")
+ .createOrReplaceTempView("silver_temp"))
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC
+# MAGIC ## Gold tables
+# MAGIC
+# MAGIC Using CTAS syntax, define a new streaming view called **`customer_count_temp`** that counts customers per state.
+
+# COMMAND ----------
+
+# MAGIC %sql
+# MAGIC -- ANSWER
+# MAGIC CREATE OR REPLACE TEMPORARY VIEW customer_count_temp AS
+# MAGIC SELECT state, count(customer_id) AS customer_count
+# MAGIC FROM silver_temp
+# MAGIC GROUP BY
+# MAGIC state
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC Run the cell below to check your work.
+
+# COMMAND ----------
+
+assert spark.table("customer_count_temp"), "Table named `customer_count_temp` does not exist"
+assert spark.sql(f"SHOW TABLES").filter(f"tableName == 'customer_count_temp'").first()["isTemporary"] == True, "Table is not temporary"
+assert spark.table("customer_count_temp").dtypes == [('state', 'string'), ('customer_count', 'bigint')], "Incorrect Schema"
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC Finally, stream the data from the **`customer_count_temp`** view to a Delta table called **`gold_customer_count_by_state`**.
+
+# COMMAND ----------
+
+# ANSWER
+customers_count_checkpoint_path = f"{DA.paths.checkpoints}/customers_counts"
+
+query = (spark.table("customer_count_temp")
+ .writeStream
+ .format("delta")
+ .option("checkpointLocation", customers_count_checkpoint_path)
+ .outputMode("complete")
+ .table("gold_customer_count_by_state"))
+
+# COMMAND ----------
+
+DA.block_until_stream_is_ready(query)
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC Run the cell below to check your work.
+
+# COMMAND ----------
+
+assert spark.table("gold_customer_count_by_state"), "Table named `gold_customer_count_by_state` does not exist"
+assert spark.sql(f"show tables").filter(f"tableName == 'gold_customer_count_by_state'").first()["isTemporary"] == False, "Table is temporary"
+assert spark.table("gold_customer_count_by_state").dtypes == [('state', 'string'), ('customer_count', 'bigint')], "Incorrect Schema"
+assert spark.table("gold_customer_count_by_state").count() == 51, "Incorrect number of rows"
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC
+# MAGIC ## Query the results
+# MAGIC
+# MAGIC Query the **`gold_customer_count_by_state`** table (this will not be a streaming query). Plot the results as a bar graph and also using the map plot.
+
+# COMMAND ----------
+
+# MAGIC %sql
+# MAGIC SELECT * FROM gold_customer_count_by_state
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC ## Wrapping Up
+# MAGIC
+# MAGIC Run the following cell to remove the database and all data associated with this lab.
+
+# COMMAND ----------
+
+DA.cleanup()
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC By completing this lab, you should now feel comfortable:
+# MAGIC * Using PySpark to configure Auto Loader for incremental data ingestion
+# MAGIC * Using Spark SQL to aggregate streaming data
+# MAGIC * Streaming data to a Delta table
+
+# COMMAND ----------
+
+# MAGIC %md-sandbox
+# MAGIC © 2022 Databricks, Inc. All rights reserved.
+# MAGIC Apache, Apache Spark, Spark and the Spark logo are trademarks of the Apache Software Foundation.
+# MAGIC
+# MAGIC Privacy Policy | Terms of Use | Support
diff --git a/Data-Engineering-With-Databricks/03 - Incremental Data and Delta Live Tables/DE 3.3.1 - DLT UI Walkthrough.py b/Data-Engineering-with-Databricks/Solutions/08 - Delta Live Tables/DE 8.1 DLT/DE 8.1.1 - DLT UI Walkthrough.py
similarity index 54%
rename from Data-Engineering-With-Databricks/03 - Incremental Data and Delta Live Tables/DE 3.3.1 - DLT UI Walkthrough.py
rename to Data-Engineering-with-Databricks/Solutions/08 - Delta Live Tables/DE 8.1 DLT/DE 8.1.1 - DLT UI Walkthrough.py
index c35c33d..4f05fca 100644
--- a/Data-Engineering-With-Databricks/03 - Incremental Data and Delta Live Tables/DE 3.3.1 - DLT UI Walkthrough.py
+++ b/Data-Engineering-with-Databricks/Solutions/08 - Delta Live Tables/DE 8.1 DLT/DE 8.1.1 - DLT UI Walkthrough.py
@@ -8,10 +8,15 @@
# COMMAND ----------
# MAGIC %md
+# MAGIC
+# MAGIC
# MAGIC # Using the Delta Live Tables UI
# MAGIC
-# MAGIC This demo will explore the DLT UI. By the end of this lesson you will be able to:
+# MAGIC This demo will explore the DLT UI.
+# MAGIC
# MAGIC
+# MAGIC ## Learning Objectives
+# MAGIC By the end of this lesson, you should be able to:
# MAGIC * Deploy a DLT pipeline
# MAGIC * Explore the resultant DAG
# MAGIC * Execute an update of the pipeline
@@ -20,65 +25,99 @@
# COMMAND ----------
# MAGIC %md
+# MAGIC
+# MAGIC
# MAGIC ## Run Setup
# MAGIC
# MAGIC The following cell is configured to reset this demo.
# COMMAND ----------
-# MAGIC %run ../Includes/dlt-setup $course="dlt_demo" $mode="reset"
+# MAGIC %run ../../Includes/Classroom-Setup-8.1.1
# COMMAND ----------
# MAGIC %md
-# MAGIC Execute the following cell to print out two values that will be used during the following configuration steps.
+# MAGIC
+# MAGIC
+# MAGIC Execute the following cell to print out values that will be used during the following configuration steps.
+
+# COMMAND ----------
+
+DA.print_pipeline_config()
# COMMAND ----------
-print(f"Target: {database}")
-print(f"Storage location: {userhome.split(':')[1]}")
+# ANSWER
+
+# This function is provided for students who do not
+# want to work through the exercise of creating the pipeline.
+DA.create_pipeline()
+
+# This function is provided to start the pipeline and block
+# until it has completed, canceled or failed
+DA.start_pipeline()
# COMMAND ----------
# MAGIC %md
-# MAGIC ## Create and configure a pipeline
+# MAGIC
+# MAGIC
+# MAGIC ## Create and Configure a Pipeline
# MAGIC
# MAGIC In this section you will create a pipeline using a notebook provided with the courseware. We'll explore the contents of the notebook in the following lesson.
# MAGIC
-# MAGIC 1. Click the **Jobs** button on the sidebar,
+# MAGIC 1. Click the **Jobs** button on the sidebar.
# MAGIC 1. Select the **Delta Live Tables** tab.
# MAGIC 1. Click **Create Pipeline**.
-# MAGIC 1. Fill in a **Pipeline Name** of your choosing.
-# MAGIC 1. For **Notebook Libraries**, use the navigator to locate and select the companion notebook called **3.3.2 - SQL for Delta Live Tables**.
-# MAGIC * Though this document is a standard Databricks Notebook, the SQL syntax is specialized to DLT table declarations. We will be exploring the syntax in the exercise that follows.
-# MAGIC 1. In the **Target** field, specify the database name printed out next to **Target** in the cell above. (This should follow the pattern `dbacademy__dlt_demo`)
+# MAGIC 1. Leave **Product Edition** as **Advanced**.
+# MAGIC 1. Fill in a **Pipeline Name** - because these names must be unique, we suggest using the **`Pipeline Name`** provided by the cell above.
+# MAGIC 1. For **Notebook Libraries**, use the navigator to locate and select the companion notebook called **DE 8.1.2 - SQL for Delta Live Tables**.
+# MAGIC * Alternatively, you can copy the **`Notebook Path`** provided by the cell above and paste it into the provided field.
+# MAGIC * Even though this document is a standard Databricks Notebook, the SQL syntax is specialized to DLT table declarations.
+# MAGIC * We will be exploring the syntax in the exercise that follows.
+# MAGIC 1. In the **Target** field, specify the database name printed out next to **`Target`** in the cell above.
+# MAGIC This should follow the pattern **`dbacademy__dewd_dlt_demo_81`**
# MAGIC * This field is optional; if not specified, then tables will not be registered to a metastore, but will still be available in the DBFS. Refer to the documentation for more information on this option.
-# MAGIC 1. In the **Storage location** field, copy the directory as printed above.
-# MAGIC * This optional field allows the user to specify a location to store logs, tables, and other information related to pipeline execution. If not specified, DLT will automatically generate a directory.
+# MAGIC 1. In the **Storage location** field, copy the **`Storage Location`** path printed by the cell above.
+# MAGIC * This optional field allows the user to specify a location to store logs, tables, and other information related to pipeline execution.
+# MAGIC * If not specified, DLT will automatically generate a directory.
# MAGIC 1. For **Pipeline Mode**, select **Triggered**
-# MAGIC * This field specifies how the pipeline will be run. **Triggered** pipelines run once and then shut down until the next manual or scheduled update. **Continuous** pipelines run continuously, ingesting new data as it arrives. Choose the mode based on latency and cost requirements.
-# MAGIC 1. Uncheck the **Enable autoscaling** box, and set the number of workers to 1.,
+# MAGIC * This field specifies how the pipeline will be run.
+# MAGIC * **Triggered** pipelines run once and then shut down until the next manual or scheduled update.
+# MAGIC * **Continuous** pipelines run continuously, ingesting new data as it arrives. Choose the mode based on latency and cost requirements.
+# MAGIC 1. Uncheck the **Enable autoscaling** box, and set the number of workers to **`1`** (one).
# MAGIC * **Enable autoscaling**, **Min Workers** and **Max Workers** control the worker configuration for the underlying cluster processing the pipeline. Notice the DBU estimate provided, similar to that provided when configuring interactive clusters.
# MAGIC 1. Click **Create**.
# COMMAND ----------
# MAGIC %md
-# MAGIC ## Run a pipeline
+# MAGIC
+# MAGIC
+# MAGIC ## Run a Pipeline
# MAGIC
# MAGIC With a pipeline created, you will now run the pipeline.
# MAGIC
-# MAGIC 1. Select **Development** to run the pipeline in development mode. Development mode provides for more expeditious iterative development by reusing the cluster (as opposed to creating a new cluster for each run) and disabling retries so that you can readily identify and fix errors. Refer to the documentation for more information on this feature.
+# MAGIC 1. Select **Development** to run the pipeline in development mode.
+# MAGIC * Development mode provides for more expeditious iterative development by reusing the cluster (as opposed to creating a new cluster for each run) and disabling retries so that you can readily identify and fix errors.
+# MAGIC * Refer to the documentation for more information on this feature.
# MAGIC 2. Click **Start**.
# MAGIC
-# MAGIC The initial run will take several minutes while a cluster is provisioned. Subsequent runs will be appreciably quicker.
+# MAGIC The initial run will take several minutes while a cluster is provisioned.
+# MAGIC
+# MAGIC Subsequent runs will be appreciably quicker.
# COMMAND ----------
# MAGIC %md
+# MAGIC
+# MAGIC
# MAGIC ## Exploring the DAG
# MAGIC
-# MAGIC As the pipeline completes, the execution flow is graphed. Select the tables review the details.
+# MAGIC As the pipeline completes, the execution flow is graphed.
+# MAGIC
+# MAGIC Selecting the tables reviews the details.
# MAGIC
# MAGIC Select **sales_orders_cleaned**. Notice the results reported in the **Data Quality** section. Because this flow has data expectations declared, those metrics are tracked here. No records are dropped because the constraint is declared in a way that allows violating records to be included in the output. This will be covered in more details in the next exercise.
diff --git a/Data-Engineering-With-Databricks/03 - Incremental Data and Delta Live Tables/DE 3.3.2 - SQL for Delta Live Tables.sql b/Data-Engineering-with-Databricks/Solutions/08 - Delta Live Tables/DE 8.1 DLT/DE 8.1.2 - SQL for Delta Live Tables.sql
similarity index 50%
rename from Data-Engineering-With-Databricks/03 - Incremental Data and Delta Live Tables/DE 3.3.2 - SQL for Delta Live Tables.sql
rename to Data-Engineering-with-Databricks/Solutions/08 - Delta Live Tables/DE 8.1 DLT/DE 8.1.2 - SQL for Delta Live Tables.sql
index aa76e29..f3a5966 100644
--- a/Data-Engineering-With-Databricks/03 - Incremental Data and Delta Live Tables/DE 3.3.2 - SQL for Delta Live Tables.sql
+++ b/Data-Engineering-with-Databricks/Solutions/08 - Delta Live Tables/DE 8.1 DLT/DE 8.1.2 - SQL for Delta Live Tables.sql
@@ -8,62 +8,66 @@
-- COMMAND ----------
-- MAGIC %md
+-- MAGIC
+-- MAGIC
-- MAGIC # SQL for Delta Live Tables
-- MAGIC
-- MAGIC In the last lesson, we walked through the process of scheduling this notebook as a Delta Live Table (DLT) pipeline. Now we'll explore the contents of this notebook to better understand the syntax used by Delta Live Tables.
-- MAGIC
-- MAGIC This notebook uses SQL to declare Delta Live Tables that together implement a simple multi-hop architecture based on a Databricks-provided example dataset loaded by default into Databricks workspaces.
-- MAGIC
--- MAGIC At its simplest, you can think of DLT SQL as a slight modification to traditional CTAS statements. DLT tables and views will always be preceded by the `LIVE` keyword.
+-- MAGIC At its simplest, you can think of DLT SQL as a slight modification to traditional CTAS statements. DLT tables and views will always be preceded by the **`LIVE`** keyword.
-- MAGIC
-- MAGIC ## Learning Objectives
--- MAGIC
--- MAGIC By the end of this lesson, students should feel confident:
--- MAGIC * Defining tables and views with Delta Live Tables
--- MAGIC * Using SQL to incrementally ingest raw data with Auto Loader
--- MAGIC * Performing incremental reads on Delta tables with SQL
--- MAGIC * Updating code and redeploying a pipeline
+-- MAGIC By the end of this lesson, you should be able to:
+-- MAGIC * Define tables and views with Delta Live Tables
+-- MAGIC * Use SQL to incrementally ingest raw data with Auto Loader
+-- MAGIC * Perform incremental reads on Delta tables with SQL
+-- MAGIC * Update code and redeploy a pipeline
-- COMMAND ----------
-- MAGIC %md
+-- MAGIC
+-- MAGIC
-- MAGIC ## Declare Bronze Layer Tables
-- MAGIC
--- MAGIC Below we declare a table and view implementing the bronze layer. This represents data in its rawest form, but captured in a format that can be retained indefinitely and queried with the performance and benefits that Delta Lake has to offer.
+-- MAGIC Below we declare two tables implementing the bronze layer. This represents data in its rawest form, but captured in a format that can be retained indefinitely and queried with the performance and benefits that Delta Lake has to offer.
-- COMMAND ----------
-- MAGIC %md
--- MAGIC ### `sales_orders_raw`
-- MAGIC
--- MAGIC `sales_orders_raw` ingests JSON data incrementally from the example dataset found in */databricks-datasets/retail-org/sales_orders/*.
-- MAGIC
--- MAGIC Incremental processing via Auto Loader (which uses the same processing model as Structured Streaming), requires the addition of the `INCREMENTAL` keyword in the declaration as seen below. The `cloud_files()` method enables Auto Loader to be used natively with SQL. This method takes the following positional parameters:
+-- MAGIC ### sales_orders_raw
+-- MAGIC
+-- MAGIC **`sales_orders_raw`** ingests JSON data incrementally from the example dataset found in */databricks-datasets/retail-org/sales_orders/*.
+-- MAGIC
+-- MAGIC Incremental processing via Auto Loader (which uses the same processing model as Structured Streaming), requires the addition of the **`STREAMING`** keyword in the declaration as seen below. The **`cloud_files()`** method enables Auto Loader to be used natively with SQL. This method takes the following positional parameters:
-- MAGIC * The source location, as mentioned above
-- MAGIC * The source data format, which is JSON in this case
--- MAGIC * An arbitrarily sized array of optional reader options. In this case, we set `cloudFiles.inferColumnTypes` to `true`
+-- MAGIC * An arbitrarily sized array of optional reader options. In this case, we set **`cloudFiles.inferColumnTypes`** to **`true`**
-- MAGIC
-- MAGIC The following declaration also demonstrates the declaration of additional table metadata (a comment and properties in this case) that would be visible to anyone exploring the data catalog.
-- COMMAND ----------
-CREATE INCREMENTAL LIVE TABLE sales_orders_raw
+CREATE OR REFRESH STREAMING LIVE TABLE sales_orders_raw
COMMENT "The raw sales orders, ingested from /databricks-datasets."
-AS
-SELECT * FROM cloud_files("/databricks-datasets/retail-org/sales_orders/", "json", map("cloudFiles.inferColumnTypes", "true"))
+AS SELECT * FROM cloud_files("/databricks-datasets/retail-org/sales_orders/", "json", map("cloudFiles.inferColumnTypes", "true"))
-- COMMAND ----------
-- MAGIC %md
--- MAGIC ### `customers`
-- MAGIC
--- MAGIC `customers` presents a **view** into CSV customer data found in */databricks-datasets/retail-org/customers/*. A view differs from a table in that there is no actual data bound to the view; it can be thought of as a stored query.
-- MAGIC
--- MAGIC This view will soon be used in a join operation to look up customer data based on sales records.
+-- MAGIC ### customers
+-- MAGIC
+-- MAGIC **`customers`** presents CSV customer data found in */databricks-datasets/retail-org/customers/*. This table will soon be used in a join operation to look up customer data based on sales records.
-- COMMAND ----------
-CREATE INCREMENTAL LIVE TABLE customers
+CREATE OR REFRESH STREAMING LIVE TABLE customers
COMMENT "The customers buying finished products, ingested from /databricks-datasets."
AS SELECT * FROM cloud_files("/databricks-datasets/retail-org/customers/", "csv");
@@ -71,6 +75,8 @@ AS SELECT * FROM cloud_files("/databricks-datasets/retail-org/customers/", "csv"
-- MAGIC %md
-- MAGIC
+-- MAGIC
+-- MAGIC
-- MAGIC ## Declare Silver Layer Tables
-- MAGIC
-- MAGIC Now we declare tables implementing the silver layer. This layer represents a refined copy of data from the bronze layer, with the intention of optimizing downstream applications. At this level we apply operations like data cleansing and enrichment.
@@ -78,7 +84,9 @@ AS SELECT * FROM cloud_files("/databricks-datasets/retail-org/customers/", "csv"
-- COMMAND ----------
-- MAGIC %md
--- MAGIC ### `sales_orders_cleaned`
+-- MAGIC
+-- MAGIC
+-- MAGIC ### sales_orders_cleaned
-- MAGIC
-- MAGIC Here we declare our first silver table, which enriches the sales transaction data with customer information in addition to implementing quality control by rejecting records with a null order number.
-- MAGIC
@@ -86,60 +94,65 @@ AS SELECT * FROM cloud_files("/databricks-datasets/retail-org/customers/", "csv"
-- MAGIC
-- MAGIC #### Quality Control
-- MAGIC
--- MAGIC The `CONSTRAINT` keyword introduces quality control. Similar in function to a traditional `WHERE` clause, `CONSTRAINT` integrates with DLT, enabling it to collect metrics on constraint violations. Constraints provide an optional `ON VIOLATION` clause, specifying an action to take on records that violate the constraint. The three modes currently supported by DLT include:
+-- MAGIC The **`CONSTRAINT`** keyword introduces quality control. Similar in function to a traditional **`WHERE`** clause, **`CONSTRAINT`** integrates with DLT, enabling it to collect metrics on constraint violations. Constraints provide an optional **`ON VIOLATION`** clause, specifying an action to take on records that violate the constraint. The three modes currently supported by DLT include:
-- MAGIC
--- MAGIC | `ON VIOLATION` | Behavior |
+-- MAGIC | **`ON VIOLATION`** | Behavior |
-- MAGIC | --- | --- |
--- MAGIC | `FAIL UPDATE` | Pipeline failure when constraint is violated |
--- MAGIC | `DROP ROW` | Discard records that violate constraints |
+-- MAGIC | **`FAIL UPDATE`** | Pipeline failure when constraint is violated |
+-- MAGIC | **`DROP ROW`** | Discard records that violate constraints |
-- MAGIC | Omitted | Records violating constraints will be included (but violations will be reported in metrics) |
-- MAGIC
-- MAGIC #### References to DLT Tables and Views
--- MAGIC References to other DLT tables and views will always include the `live.` prefix. A target database name will automatically be substituted at runtime, allowing for easily migration of pipelines between DEV/QA/PROD environments.
+-- MAGIC References to other DLT tables and views will always include the **`live.`** prefix. A target database name will automatically be substituted at runtime, allowing for easily migration of pipelines between DEV/QA/PROD environments.
-- MAGIC
-- MAGIC #### References to Streaming Tables
-- MAGIC
--- MAGIC References to streaming DLT tables use the `STREAM()`, supplying the table name as an argument.
+-- MAGIC References to streaming DLT tables use the **`STREAM()`**, supplying the table name as an argument.
-- COMMAND ----------
-CREATE INCREMENTAL LIVE TABLE sales_orders_cleaned(
+CREATE OR REFRESH STREAMING LIVE TABLE sales_orders_cleaned(
CONSTRAINT valid_order_number EXPECT (order_number IS NOT NULL) ON VIOLATION DROP ROW
)
COMMENT "The cleaned sales orders with valid order_number(s) and partitioned by order_datetime."
AS
-SELECT f.customer_id, f.customer_name, f.number_of_line_items,
- TIMESTAMP(from_unixtime((cast(f.order_datetime as long)))) as order_datetime,
- DATE(from_unixtime((cast(f.order_datetime as long)))) as order_date,
- f.order_number, f.ordered_products, c.state, c.city, c.lon, c.lat, c.units_purchased, c.loyalty_segment
+ SELECT f.customer_id, f.customer_name, f.number_of_line_items,
+ timestamp(from_unixtime((cast(f.order_datetime as long)))) as order_datetime,
+ date(from_unixtime((cast(f.order_datetime as long)))) as order_date,
+ f.order_number, f.ordered_products, c.state, c.city, c.lon, c.lat, c.units_purchased, c.loyalty_segment
FROM STREAM(LIVE.sales_orders_raw) f
LEFT JOIN LIVE.customers c
- ON c.customer_id = f.customer_id
- AND c.customer_name = f.customer_name
+ ON c.customer_id = f.customer_id
+ AND c.customer_name = f.customer_name
-- COMMAND ----------
-- MAGIC %md
+-- MAGIC
+-- MAGIC
-- MAGIC ## Declare Gold Table
-- MAGIC
-- MAGIC At the most refined level of the architecture, we declare a table delivering an aggregation with business value, in this case a collection of sales order data based in a specific region. In aggregating, the report generates counts and totals of orders by date and customer.
-- COMMAND ----------
-CREATE LIVE TABLE sales_order_in_la
+CREATE OR REFRESH LIVE TABLE sales_order_in_la
COMMENT "Sales orders in LA."
AS
-SELECT city, order_date, customer_id, customer_name, ordered_products_explode.curr, SUM(ordered_products_explode.price) as sales, SUM(ordered_products_explode.qty) as quantity, COUNT(ordered_products_explode.id) as product_count
-FROM (
- SELECT city, order_date, customer_id, customer_name, EXPLODE(ordered_products) as ordered_products_explode
- FROM LIVE.sales_orders_cleaned
- WHERE city = 'Los Angeles'
- )
-GROUP BY order_date, city, customer_id, customer_name, ordered_products_explode.curr
+ SELECT city, order_date, customer_id, customer_name, ordered_products_explode.curr,
+ sum(ordered_products_explode.price) as sales,
+ sum(ordered_products_explode.qty) as quantity,
+ count(ordered_products_explode.id) as product_count
+ FROM (SELECT city, order_date, customer_id, customer_name, explode(ordered_products) as ordered_products_explode
+ FROM LIVE.sales_orders_cleaned
+ WHERE city = 'Los Angeles')
+ GROUP BY order_date, city, customer_id, customer_name, ordered_products_explode.curr
-- COMMAND ----------
-- MAGIC %md
+-- MAGIC
+-- MAGIC
-- MAGIC ## Explore Results
-- MAGIC
-- MAGIC Explore the DAG (Directed Acyclic Graph) representing the entities involved in the pipeline and the relationships between them. Click on each to view a summary, which includes:
@@ -148,27 +161,37 @@ GROUP BY order_date, city, customer_id, customer_name, ordered_products_explode.
-- MAGIC * Schema
-- MAGIC * Data quality metrics
-- MAGIC
--- MAGIC Refer to this companion notebook to inspect tables and logs.
+-- MAGIC Refer to this companion notebook to inspect tables and logs.
-- COMMAND ----------
-- MAGIC %md
+-- MAGIC
+-- MAGIC
-- MAGIC ## Update Pipeline
-- MAGIC
--- MAGIC Uncomment the following cell to declare another gold table. Similar to the previous gold table declaration, this filters for the `city` of Chicago. Re-run your pipeline to examine the updated results. Does it run as expected? Can you identify any issues?
+-- MAGIC Uncomment the following cell to declare another gold table. Similar to the previous gold table declaration, this filters for the **`city`** of Chicago.
+-- MAGIC
+-- MAGIC Re-run your pipeline to examine the updated results.
+-- MAGIC
+-- MAGIC Does it run as expected?
+-- MAGIC
+-- MAGIC Can you identify any issues?
-- COMMAND ----------
--- CREATE LIVE TABLE sales_order_in_chicago
--- COMMENT "Sales orders in Chicago."
--- AS
--- SELECT city, order_date, customer_id, customer_name, ordered_products_explode.curr, SUM(ordered_products_explode.price) as sales, SUM(ordered_products_explode.qty) as quantity, COUNT(ordered_products_explode.id) as product_count
--- FROM (
--- SELECT city, order_date, customer_id, customer_name, EXPLODE(ordered_products) as ordered_products_explode
--- FROM sales_orders_cleaned
--- WHERE city = 'Chicago'
--- )
--- GROUP BY order_date, city, customer_id, customer_name, ordered_products_explode.curr
+-- ANSWER
+CREATE OR REFRESH LIVE TABLE sales_order_in_chicago
+COMMENT "Sales orders in Chicago."
+AS
+ SELECT city, order_date, customer_id, customer_name, ordered_products_explode.curr,
+ sum(ordered_products_explode.price) as sales,
+ sum(ordered_products_explode.qty) as quantity,
+ count(ordered_products_explode.id) as product_count
+ FROM (SELECT city, order_date, customer_id, customer_name, explode(ordered_products) as ordered_products_explode
+ FROM LIVE.sales_orders_cleaned
+ WHERE city = 'Chicago')
+ GROUP BY order_date, city, customer_id, customer_name, ordered_products_explode.curr
-- COMMAND ----------
diff --git a/Data-Engineering-with-Databricks/Solutions/08 - Delta Live Tables/DE 8.1 DLT/DE 8.1.3 - Pipeline Results.py b/Data-Engineering-with-Databricks/Solutions/08 - Delta Live Tables/DE 8.1 DLT/DE 8.1.3 - Pipeline Results.py
new file mode 100644
index 0000000..d3b6cb8
--- /dev/null
+++ b/Data-Engineering-with-Databricks/Solutions/08 - Delta Live Tables/DE 8.1 DLT/DE 8.1.3 - Pipeline Results.py
@@ -0,0 +1,76 @@
+# Databricks notebook source
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC # Exploring the Results of a DLT Pipeline
+# MAGIC
+# MAGIC This notebook explores the execution results of a DLT pipeline.
+
+# COMMAND ----------
+
+# MAGIC %run ../../Includes/Classroom-Setup-8.1.3
+
+# COMMAND ----------
+
+files = dbutils.fs.ls(DA.paths.storage_location)
+display(files)
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC The **`system`** directory captures events associated with the pipeline.
+
+# COMMAND ----------
+
+files = dbutils.fs.ls(f"{DA.paths.storage_location}/system/events")
+display(files)
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC These event logs are stored as a Delta table. Let's query the table.
+
+# COMMAND ----------
+
+# MAGIC %sql
+# MAGIC SELECT * FROM delta.`${da.paths.storage_location}/system/events`
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC Let's view the contents of the *tables* directory.
+
+# COMMAND ----------
+
+files = dbutils.fs.ls(f"{DA.paths.storage_location}/tables")
+display(files)
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC Let's query the gold table.
+
+# COMMAND ----------
+
+# MAGIC %sql
+# MAGIC SELECT * FROM ${da.db_name}.sales_order_in_la
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC Run the following cell to delete the tables and files associated with this lesson.
+
+# COMMAND ----------
+
+DA.cleanup()
+
diff --git a/Data-Engineering-with-Databricks/Solutions/08 - Delta Live Tables/DE 8.2 DLT Lab/DE 8.2.1L - Lab Instructions.py b/Data-Engineering-with-Databricks/Solutions/08 - Delta Live Tables/DE 8.2 DLT Lab/DE 8.2.1L - Lab Instructions.py
new file mode 100644
index 0000000..0787c72
--- /dev/null
+++ b/Data-Engineering-with-Databricks/Solutions/08 - Delta Live Tables/DE 8.2 DLT Lab/DE 8.2.1L - Lab Instructions.py
@@ -0,0 +1,176 @@
+# Databricks notebook source
+# MAGIC %md-sandbox
+# MAGIC
+# MAGIC
+# MAGIC

+# MAGIC
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC # Lab: Migrating SQL Notebooks to Delta Live Tables
+# MAGIC
+# MAGIC This notebook describes the overall structure for the lab exercise, configures the environment for the lab, provides simulated data streaming, and performs cleanup once you are done. A notebook like this is not typically needed in a production pipeline scenario.
+# MAGIC
+# MAGIC ## Learning Objectives
+# MAGIC By the end of this lab, you should be able to:
+# MAGIC * Convert existing data pipelines to Delta Live Tables
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC ## Datasets Used
+# MAGIC
+# MAGIC This demo uses simplified artificially generated medical data. The schema of our two datasets is represented below. Note that we will be manipulating these schema during various steps.
+# MAGIC
+# MAGIC #### Recordings
+# MAGIC The main dataset uses heart rate recordings from medical devices delivered in the JSON format.
+# MAGIC
+# MAGIC | Field | Type |
+# MAGIC | --- | --- |
+# MAGIC | device_id | int |
+# MAGIC | mrn | long |
+# MAGIC | time | double |
+# MAGIC | heartrate | double |
+# MAGIC
+# MAGIC #### PII
+# MAGIC These data will later be joined with a static table of patient information stored in an external system to identify patients by name.
+# MAGIC
+# MAGIC | Field | Type |
+# MAGIC | --- | --- |
+# MAGIC | mrn | long |
+# MAGIC | name | string |
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC ## Getting Started
+# MAGIC
+# MAGIC Begin by running the following cell to configure the lab environment.
+
+# COMMAND ----------
+
+# MAGIC %run ../../Includes/Classroom-Setup-8.2.1L
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC ## Land Initial Data
+# MAGIC Seed the landing zone with some data before proceeding. You will re-run this command to land additional data later.
+
+# COMMAND ----------
+
+DA.data_factory.load()
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC Execute the following cell to print out values that will be used during the following configuration steps.
+
+# COMMAND ----------
+
+DA.print_pipeline_config()
+
+# COMMAND ----------
+
+# ANSWER
+
+# This function is provided for those students that do not
+# want to work through the exercise of creating the pipline.
+DA.create_pipeline()
+
+# This function is provided to start the pipline and block
+# until it has comleted, is canceled or failed
+DA.start_pipeline()
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC ## Create and Configure a Pipeline
+# MAGIC
+# MAGIC 1. Click the **Jobs** button on the sidebar, then select the **Delta Live Tables** tab.
+# MAGIC 1. Click **Create Pipeline**.
+# MAGIC 1. Leave **Product Edition** as **Advanced**.
+# MAGIC 1. Fill in a **Pipeline Name** - because these names must be unique, we suggest using the **Pipline Name** provided in the cell above.
+# MAGIC 1. For **Notebook Libraries**, use the navigator to locate and select the notebook **`DE 8.2.2L - Migrating a SQL Pipeline to DLT Lab`**.
+# MAGIC 1. Configure the Source
+# MAGIC * Click **`Add configuration`**
+# MAGIC * Enter the word **`source`** in the **Key** field
+# MAGIC * Enter the **Source** value specified above to the **`Value`** field
+# MAGIC 1. Enter the database name printed next to **`Target`** below in the **Target** field.
+# MAGIC 1. Enter the location printed next to **`Storage Location`** below in the **Storage Location** field.
+# MAGIC 1. Set **Pipeline Mode** to **Triggered**.
+# MAGIC 1. Disable autoscaling.
+# MAGIC 1. Set the number of **`workers`** to **`1`** (one).
+# MAGIC 1. Click **Create**.
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC ## Open and Complete DLT Pipeline Notebook
+# MAGIC
+# MAGIC You will perform your work in the companion notebook [DE 8.2.2L - Migrating a SQL Pipeline to DLT Lab]($./DE 8.2.2L - Migrating a SQL Pipeline to DLT Lab),
+# MAGIC which you will ultimately deploy as a pipeline.
+# MAGIC
+# MAGIC Open the Notebook and, following the guidelines provided therein, fill in the cells where prompted to
+# MAGIC implement a multi-hop architecture similar to the one we worked with in the previous section.
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC ## Run your Pipeline
+# MAGIC
+# MAGIC Select **Development** mode, which accelerates the development lifecycle by reusing the same cluster across runs.
+# MAGIC It will also turn off automatic retries when jobs fail.
+# MAGIC
+# MAGIC Click **Start** to begin the first update to your table.
+# MAGIC
+# MAGIC Delta Live Tables will automatically deploy all the necessary infrastructure and resolve the dependencies between all datasets.
+# MAGIC
+# MAGIC **NOTE**: The first table update may take several minutes as relationships are resolved and infrastructure deploys.
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC ## Troubleshooting Code in Development Mode
+# MAGIC
+# MAGIC Don't despair if your pipeline fails the first time. Delta Live Tables is in active development, and error messages are improving all the time.
+# MAGIC
+# MAGIC Because relationships between tables are mapped as a DAG, error messages will often indicate that a dataset isn't found.
+# MAGIC
+# MAGIC Let's consider our DAG below:
+# MAGIC
+# MAGIC
+# MAGIC
+# MAGIC If the error message **`Dataset not found: 'recordings_parsed'`** is raised, there may be several culprits:
+# MAGIC 1. The logic defining **`recordings_parsed`** is invalid
+# MAGIC 1. There is an error reading from **`recordings_bronze`**
+# MAGIC 1. A typo exists in either **`recordings_parsed`** or **`recordings_bronze`**
+# MAGIC
+# MAGIC The safest way to identify the culprit is to iteratively add table/view definitions back into your DAG starting from your initial ingestion tables. You can simply comment out later table/view definitions and uncomment these between runs.
+
+# COMMAND ----------
+
+# MAGIC %md-sandbox
+# MAGIC © 2022 Databricks, Inc. All rights reserved.
+# MAGIC Apache, Apache Spark, Spark and the Spark logo are trademarks of the Apache Software Foundation.
+# MAGIC
+# MAGIC Privacy Policy | Terms of Use | Support
diff --git a/Data-Engineering-With-Databricks/Solutions/03 - Incremental Data and Delta Live Tables/Labs/DE 3.3.5L - Migrating a SQL Pipeline to DLT Lab.sql b/Data-Engineering-with-Databricks/Solutions/08 - Delta Live Tables/DE 8.2 DLT Lab/DE 8.2.2L - Migrating a SQL Pipeline to DLT Lab.sql
similarity index 61%
rename from Data-Engineering-With-Databricks/Solutions/03 - Incremental Data and Delta Live Tables/Labs/DE 3.3.5L - Migrating a SQL Pipeline to DLT Lab.sql
rename to Data-Engineering-with-Databricks/Solutions/08 - Delta Live Tables/DE 8.2 DLT Lab/DE 8.2.2L - Migrating a SQL Pipeline to DLT Lab.sql
index 56fd65e..7f65c4f 100644
--- a/Data-Engineering-With-Databricks/Solutions/03 - Incremental Data and Delta Live Tables/Labs/DE 3.3.5L - Migrating a SQL Pipeline to DLT Lab.sql
+++ b/Data-Engineering-with-Databricks/Solutions/08 - Delta Live Tables/DE 8.2 DLT Lab/DE 8.2.2L - Migrating a SQL Pipeline to DLT Lab.sql
@@ -8,37 +8,41 @@
-- COMMAND ----------
-- MAGIC %md
+-- MAGIC
+-- MAGIC
-- MAGIC # Lab: Migrating a SQL Pipeline to Delta Live Tables
-- MAGIC
--- MAGIC This notebook will be completed by you to implement a DLT pipeline using SQL. It is **not intended** to be executed interactively, but rather to be deployed as a pipeline once you have completed your changes.
+-- MAGIC This notebook will be completed by you to implement a DLT pipeline using SQL.
+-- MAGIC
+-- MAGIC It is **not intended** to be executed interactively, but rather to be deployed as a pipeline once you have completed your changes.
-- MAGIC
-- MAGIC To aid in completion of this Notebook, please refer to the DLT syntax documentation.
-- COMMAND ----------
--- MAGIC %run ../../Includes/classic-setup $mode="reset"
-
--- COMMAND ----------
-
-- MAGIC %md
+-- MAGIC
+-- MAGIC
-- MAGIC ## Declare Bronze Table
-- MAGIC
--- MAGIC Declare a bronze table that ingests JSON data incrementally (using Auto Loader) from the simulated cloud source. Here you will need to substitute the value obtained from the companion setup Notebook.
+-- MAGIC Declare a bronze table that ingests JSON data incrementally (using Auto Loader) from the simulated cloud source. The source location is already supplied as an argument; using this value is illustrated in the cell below.
-- MAGIC
-- MAGIC As we did previously, include two additional columns:
--- MAGIC * `receipt_time` that records a timestamp as returned by `current_timestamp()`
--- MAGIC * `source_file` that is obtained by `input_file_name()`
+-- MAGIC * **`receipt_time`** that records a timestamp as returned by **`current_timestamp()`**
+-- MAGIC * **`source_file`** that is obtained by **`input_file_name()`**
-- COMMAND ----------
-- ANSWER
-CREATE INCREMENTAL LIVE TABLE recordings_bronze
+CREATE OR REFRESH STREAMING LIVE TABLE recordings_bronze
AS SELECT current_timestamp() receipt_time, input_file_name() source_file, *
FROM cloud_files("${source}", "json", map("cloudFiles.schemaHints", "time DOUBLE"))
-- COMMAND ----------
-- MAGIC %md
+-- MAGIC
+-- MAGIC
-- MAGIC ### PII File
-- MAGIC
-- MAGIC Using a similar CTAS syntax, create a live **table** into the CSV data found at */mnt/training/healthcare/patient*.
@@ -47,41 +51,44 @@ AS SELECT current_timestamp() receipt_time, input_file_name() source_file, *
-- MAGIC
-- MAGIC | option | value |
-- MAGIC | --- | --- |
--- MAGIC | `header` | `true` |
--- MAGIC | `cloudFiles.inferColumnTypes` | `true` |
+-- MAGIC | **`header`** | **`true`** |
+-- MAGIC | **`cloudFiles.inferColumnTypes`** | **`true`** |
-- MAGIC
-- MAGIC
Auto Loader configurations for CSV can be found here.
-- COMMAND ----------
-- ANSWER
-CREATE INCREMENTAL LIVE TABLE pii
+CREATE OR REFRESH STREAMING LIVE TABLE pii
AS SELECT *
FROM cloud_files("/mnt/training/healthcare/patient", "csv", map("header", "true", "cloudFiles.inferColumnTypes", "true"))
-- COMMAND ----------
-- MAGIC %md
+-- MAGIC
+-- MAGIC
-- MAGIC ## Declare Silver Tables
-- MAGIC
--- MAGIC Our silver tables, `recordings_parsed`, will subscribe to the `recordings` dataset and cast the fields as follows:
+-- MAGIC Our silver table, **`recordings_parsed`**, will consist of the following fields:
-- MAGIC
-- MAGIC | Field | Type |
-- MAGIC | --- | --- |
--- MAGIC | `device_id` | `INTEGER` |
--- MAGIC | `mrn` | `LONG` |
--- MAGIC | `heartrate` | `DOUBLE` |
--- MAGIC | `time` | `TIMESTAMP` (example provided below) |
+-- MAGIC | **`device_id`** | **`INTEGER`** |
+-- MAGIC | **`mrn`** | **`LONG`** |
+-- MAGIC | **`heartrate`** | **`DOUBLE`** |
+-- MAGIC | **`time`** | **`TIMESTAMP`** (example provided below) |
+-- MAGIC | **`name`** | **`STRING`** |
-- MAGIC
--- MAGIC This query should also enrich the data through an inner join with the `pii` table on the common `mrn` field.
+-- MAGIC This query should also enrich the data through an inner join with the **`pii`** table on the common **`mrn`** field to obtain the name.
-- MAGIC
--- MAGIC Implement quality control by applying a contraint to drop records with an invalid `heartrate` (that is, not greater than zero).
+-- MAGIC Implement quality control by applying a constraint to drop records with an invalid **`heartrate`** (that is, not greater than zero).
-- COMMAND ----------
-- ANSWER
-CREATE INCREMENTAL LIVE TABLE recordings_enriched
+CREATE OR REFRESH STREAMING LIVE TABLE recordings_enriched
(CONSTRAINT positive_heartrate EXPECT (heartrate > 0) ON VIOLATION DROP ROW)
AS SELECT
CAST(a.device_id AS INTEGER) device_id,
@@ -96,26 +103,28 @@ AS SELECT
-- COMMAND ----------
-- MAGIC %md
+-- MAGIC
+-- MAGIC
-- MAGIC ## Gold Table
-- MAGIC
--- MAGIC Create a gold table, `daily_patient_avg`, that aggregates `recordings_enriched` by `mrn`, `name`, and `date` and delivers the following columns:
+-- MAGIC Create a gold table, **`daily_patient_avg`**, that aggregates **`recordings_enriched`** by **`mrn`**, **`name`**, and **`date`** and delivers the following columns:
-- MAGIC
-- MAGIC | Column name | Value |
-- MAGIC | --- | --- |
--- MAGIC | `mrn` | `mrn` from source |
--- MAGIC | `name` | `name` from source |
--- MAGIC | `avg_heartrate` | Average `heartrate` from the grouping |
--- MAGIC | `date` | Date extracted from `time` |
+-- MAGIC | **`mrn`** | **`mrn`** from source |
+-- MAGIC | **`name`** | **`name`** from source |
+-- MAGIC | **`avg_heartrate`** | Average **`heartrate`** from the grouping |
+-- MAGIC | **`date`** | Date extracted from **`time`** |
-- COMMAND ----------
-- ANSWER
-CREATE INCREMENTAL LIVE TABLE daily_patient_avg
+CREATE OR REFRESH STREAMING LIVE TABLE daily_patient_avg
COMMENT "Daily mean heartrates by patient"
-AS SELECT mrn, name, MEAN(heartrate) avg_heartrate, DATE(time) `date`
- FROM STREAM(live.recordings_enriched)
- GROUP BY mrn, name, DATE(time)
+ AS SELECT mrn, name, MEAN(heartrate) avg_heartrate, DATE(time) `date`
+ FROM STREAM(live.recordings_enriched)
+ GROUP BY mrn, name, DATE(time)
-- COMMAND ----------
diff --git a/Data-Engineering-with-Databricks/Solutions/08 - Delta Live Tables/DE 8.2 DLT Lab/DE 8.2.3L - Lab Conclusion.py b/Data-Engineering-with-Databricks/Solutions/08 - Delta Live Tables/DE 8.2 DLT Lab/DE 8.2.3L - Lab Conclusion.py
new file mode 100644
index 0000000..31a8de3
--- /dev/null
+++ b/Data-Engineering-with-Databricks/Solutions/08 - Delta Live Tables/DE 8.2 DLT Lab/DE 8.2.3L - Lab Conclusion.py
@@ -0,0 +1,91 @@
+# Databricks notebook source
+# MAGIC %md-sandbox
+# MAGIC
+# MAGIC
+# MAGIC

+# MAGIC
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC # Lab: Conclusion
+# MAGIC Running the following cell to configure the lab environment:
+
+# COMMAND ----------
+
+# MAGIC %run ../../Includes/Classroom-Setup-8.2.3L
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC ## Display Results
+# MAGIC
+# MAGIC Assuming your pipeline runs successfully, display the contents of the gold table.
+# MAGIC
+# MAGIC **NOTE**: Because we specified a value for **Target**, tables are published to the specified database. Without a **Target** specification, we would need to query the table based on its underlying location in DBFS (relative to the **Storage Location**).
+
+# COMMAND ----------
+
+# MAGIC %sql
+# MAGIC SELECT * FROM ${da.db_name}.daily_patient_avg
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC Trigger another file arrival with the following cell.
+# MAGIC
+# MAGIC Feel free to run it a couple more times if desired.
+# MAGIC
+# MAGIC Following this, run the pipeline again and view the results.
+# MAGIC
+# MAGIC Feel free to re-run the cell above to gain an updated view of the **`daily_patient_avg`** table.
+
+# COMMAND ----------
+
+DA.data_factory.load()
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC ## Wrapping Up
+# MAGIC
+# MAGIC Ensure that you delete your pipeline from the DLT UI, and run the following cell to clean up the files and tables that were created as part of the lab setup and execution.
+
+# COMMAND ----------
+
+DA.cleanup()
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC ## Summary
+# MAGIC
+# MAGIC In this lab, you learned to convert an existing data pipeline to a Delta Live Tables SQL pipeline, and deployed that pipeline using the DLT UI.
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC ## Additional Topics & Resources
+# MAGIC
+# MAGIC * Delta Live Tables Documentation
+# MAGIC * Delta Live Tables Demo
+
+# COMMAND ----------
+
+# MAGIC %md-sandbox
+# MAGIC © 2022 Databricks, Inc. All rights reserved.
+# MAGIC Apache, Apache Spark, Spark and the Spark logo are trademarks of the Apache Software Foundation.
+# MAGIC
+# MAGIC Privacy Policy | Terms of Use | Support
diff --git a/Data-Engineering-with-Databricks/Solutions/09 - Task Orchestration with Jobs/DE 9.1.1 - Task Orchestration with Databricks Jobs.py b/Data-Engineering-with-Databricks/Solutions/09 - Task Orchestration with Jobs/DE 9.1.1 - Task Orchestration with Databricks Jobs.py
new file mode 100644
index 0000000..a325efd
--- /dev/null
+++ b/Data-Engineering-with-Databricks/Solutions/09 - Task Orchestration with Jobs/DE 9.1.1 - Task Orchestration with Databricks Jobs.py
@@ -0,0 +1,196 @@
+# Databricks notebook source
+# MAGIC %md-sandbox
+# MAGIC
+# MAGIC
+# MAGIC

+# MAGIC
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC # Orchestrating Jobs with Databricks
+# MAGIC
+# MAGIC New updates to the Databricks Jobs UI have added the ability to schedule multiple tasks as part of a job, allowing Databricks Jobs to fully handle orchestration for most production workloads.
+# MAGIC
+# MAGIC Here, we'll start by reviewing the steps for scheduling a notebook as a triggered standalone job, and then add a dependent job using a DLT pipeline.
+# MAGIC
+# MAGIC ## Learning Objectives
+# MAGIC By the end of this lesson, you should be able to:
+# MAGIC * Schedule a notebook as a Databricks Job
+# MAGIC * Describe job scheduling options and differences between cluster types
+# MAGIC * Review Job Runs to track progress and see results
+# MAGIC * Schedule a DLT pipeline as a Databricks Job
+# MAGIC * Configure linear dependencies between tasks using the Databricks Jobs UI
+
+# COMMAND ----------
+
+# MAGIC %run ../Includes/Classroom-Setup-9.1.1
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC ## Create and configure a pipeline
+# MAGIC The pipeline we create here is nearly identical to the one in the previous unit.
+# MAGIC
+# MAGIC We will use it as part of a scheduled job in this lesson.
+# MAGIC
+# MAGIC Execute the following cell to print out the values that will be used during the following configuration steps.
+
+# COMMAND ----------
+
+print_pipeline_config()
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC ## Create and configure a pipeline
+# MAGIC
+# MAGIC Steps:
+# MAGIC 1. Click the **Jobs** button on the sidebar,
+# MAGIC 1. Select the **Delta Live Tables** tab.
+# MAGIC 1. Click **Create Pipeline**.
+# MAGIC 1. Fill in a **Pipeline Name** - because these names must be unique, we suggest using the **Pipeline Name** provided in the cell above.
+# MAGIC 1. For **Notebook Libraries**, use the navigator to locate and select the companion notebook called **DE 9.1.3 - DLT Job**. Alternatively, you can copy the **Notebook Path** and paste it into the field provided.
+# MAGIC 1. In the **Target** field, specify the database name printed out next to **Target** in the cell above.
+# MAGIC This should follow the pattern **`dbacademy__dewd_dlt_demo_91`**
+# MAGIC 1. In the **Storage location** field, copy the directory as printed above.
+# MAGIC 1. For **Pipeline Mode**, select **Triggered**
+# MAGIC 1. Uncheck the **Enable autoscaling** box
+# MAGIC 1. Set the number of workers to **`1`** (one)
+# MAGIC 1. Click **Create**.
+# MAGIC
+# MAGIC
**Note**: we won't be executing this pipline directly as it will be executed by our job later in this lesson,
+# MAGIC but if you want to test it real quick, you can click the **Start** button now.
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC
+# MAGIC ## Schedule a Notebook Job
+# MAGIC
+# MAGIC When using the Jobs UI to orchestrate a workload with multiple tasks, you'll always begin by scheduling a single task.
+# MAGIC
+# MAGIC Before we start run the following cell to get the values used in this step.
+
+# COMMAND ----------
+
+print_job_config()
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC Here, we'll start by scheduling the next notebook
+# MAGIC
+# MAGIC Steps:
+# MAGIC 1. Navigate to the Jobs UI using the Databricks left side navigation bar.
+# MAGIC 1. Click the blue **`Create Job`** button
+# MAGIC 1. Configure the task:
+# MAGIC 1. Enter **`reset`** for the task name
+# MAGIC 1. Select the notebook **`DE 9.1.2 - Reset`** using the notebook picker.
+# MAGIC 1. From the **Cluster** dropdown, under **Existing All Purpose Clusters**, select your cluster
+# MAGIC 1. Click **Create**
+# MAGIC 1. In the top-left of the screen rename the job (not the task) from **`reset`** (the defaulted value) to the **Job Name** provided for you in the previous cell.
+# MAGIC 1. Click the blue **Run now** button in the top right to start the job.
+# MAGIC
+# MAGIC
**Note**: When selecting your all-purpose cluster, you will get a warning about how this will be billed as all-purpose compute. Production jobs should always be scheduled against new job clusters appropriately sized for the workload, as this is billed at a much lower rate.
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC ## Chron Scheduling of Databricks Jobs
+# MAGIC
+# MAGIC Note that on the right hand side of the Jobs UI, directly under the **Job Details** section is a section labeled **Schedule**.
+# MAGIC
+# MAGIC Click on the **Edit schedule** button to explore scheduling options.
+# MAGIC
+# MAGIC Changing the **Schedule type** field from **Manual** to **Scheduled** will bring up a chron scheduling UI.
+# MAGIC
+# MAGIC This UI provides extensive options for setting up chronological scheduling of your Jobs. Settings configured with the UI can also be output in chron syntax, which can be edited if custom configuration not available with the UI is needed.
+# MAGIC
+# MAGIC At this time, we'll leave our job set with **Manual** scheduling.
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC ## Review Run
+# MAGIC
+# MAGIC As currently configured, our single notebook provides identical performance to the legacy Databricks Jobs UI, which only allowed a single notebook to be scheduled.
+# MAGIC
+# MAGIC To Review the Job Run
+# MAGIC 1. Select the **Runs** tab in the top-left of the screen (you should currently be on the **Tasks** tab)
+# MAGIC 1. Find your job. If **the job is still running**, it will be under the **Active runs** section. If **the job finished running**, it will be under the **Completed runs** section
+# MAGIC 1. Open the Output details by click on the timestamp field under the **Start time** column
+# MAGIC 1. If **the job is still running**, you will see the active state of the notebook with a **Status** of **`Pending`** or **`Running`** in the right side panel. If **the job has completed**, you will see the full execution of the notebook with a **Status** of **`Succeeded`** or **`Failed`** in the right side panel
+# MAGIC
+# MAGIC The notebook employs the magic command **`%run`** to call an additional notebook using a relative path. Note that while not covered in this course, new functionality added to Databricks Repos allows loading Python modules using relative paths.
+# MAGIC
+# MAGIC The actual outcome of the scheduled notebook is to reset the environment for our new job and pipeline.
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC ## Schedule a DLT Pipeline as a Task
+# MAGIC
+# MAGIC In this step, we'll add a DLT pipeline to execute after the success of the task we configured at the start of this lesson.
+# MAGIC
+# MAGIC Steps:
+# MAGIC 1. At the top left of your screen, you'll see the **Runs** tab is currently selected; click the **Tasks** tab.
+# MAGIC 1. Click the large blue circle with a **+** at the center bottom of the screen to add a new task
+# MAGIC 1. Specify the **Task name** as **`dlt`**
+# MAGIC 1. From **Type**, select **`Delta Live Tables pipeline`**
+# MAGIC 1. Click the **Pipeline** field and select the DLT pipeline you configured previously
+# MAGIC Note: The pipeline will start with **Jobs-Demo-91** and will end with your email address.
+# MAGIC 1. The **Depends on** field defaults to your previously defined task but may have renamed itself from the value **reset** that you specified previously to something like **Jobs-Demo-91-youremailaddress**.
+# MAGIC 1. Click the blue **Create task** button
+# MAGIC
+# MAGIC You should now see a screen with 2 boxes and a downward arrow between them.
+# MAGIC
+# MAGIC Your **`reset`** task (possibly renamed to something like **Jobs-Demo-91-youremailaddress**) will be at the top,
+# MAGIC leading into your **`dlt`** task.
+# MAGIC
+# MAGIC This visualization represents the dependencies between these tasks.
+# MAGIC
+# MAGIC Click **Run now** to execute your job.
+# MAGIC
+# MAGIC **NOTE**: You may need to wait a few minutes as infrastructure for your job and pipeline is deployed.
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC ## Review Multi-Task Run Results
+# MAGIC
+# MAGIC Select the **Runs** tab again and then the most recent run under **Active runs** or **Completed runs** depending on if the job has completed or not.
+# MAGIC
+# MAGIC The visualizations for tasks will update in real time to reflect which tasks are actively running, and will change colors if task failures occur.
+# MAGIC
+# MAGIC Clicking on a task box will render the scheduled notebook in the UI.
+# MAGIC
+# MAGIC You can think of this as just an additional layer of orchestration on top of the previous Databricks Jobs UI, if that helps; note that if you have workloads scheduling jobs with the CLI or REST API, the JSON structure used to configure and get results about jobs has seen similar updates to the UI.
+# MAGIC
+# MAGIC **NOTE**: At this time, DLT pipelines scheduled as tasks do not directly render results in the Runs GUI; instead, you will be directed back to the DLT Pipeline GUI for the scheduled Pipeline.
+
+# COMMAND ----------
+
+# MAGIC %md-sandbox
+# MAGIC © 2022 Databricks, Inc. All rights reserved.
+# MAGIC Apache, Apache Spark, Spark and the Spark logo are trademarks of the Apache Software Foundation.
+# MAGIC
+# MAGIC Privacy Policy | Terms of Use | Support
diff --git a/Data-Engineering-with-Databricks/Solutions/09 - Task Orchestration with Jobs/DE 9.1.2 - Reset.py b/Data-Engineering-with-Databricks/Solutions/09 - Task Orchestration with Jobs/DE 9.1.2 - Reset.py
new file mode 100644
index 0000000..3090a9b
--- /dev/null
+++ b/Data-Engineering-with-Databricks/Solutions/09 - Task Orchestration with Jobs/DE 9.1.2 - Reset.py
@@ -0,0 +1,18 @@
+# Databricks notebook source
+# MAGIC %md-sandbox
+# MAGIC
+# MAGIC
+# MAGIC

+# MAGIC
+
+# COMMAND ----------
+
+# MAGIC %run ../Includes/Classroom-Setup-9.1.1
+
+# COMMAND ----------
+
+# MAGIC %md-sandbox
+# MAGIC © 2022 Databricks, Inc. All rights reserved.
+# MAGIC Apache, Apache Spark, Spark and the Spark logo are trademarks of the Apache Software Foundation.
+# MAGIC
+# MAGIC Privacy Policy | Terms of Use | Support
diff --git a/Data-Engineering-With-Databricks/04 - Managing Data Access and Production Pipelines/4.1.1 - Jobs/2 - DLT Job.sql b/Data-Engineering-with-Databricks/Solutions/09 - Task Orchestration with Jobs/DE 9.1.3 - DLT Job.sql
similarity index 89%
rename from Data-Engineering-With-Databricks/04 - Managing Data Access and Production Pipelines/4.1.1 - Jobs/2 - DLT Job.sql
rename to Data-Engineering-with-Databricks/Solutions/09 - Task Orchestration with Jobs/DE 9.1.3 - DLT Job.sql
index 85abadd..a434b53 100644
--- a/Data-Engineering-With-Databricks/04 - Managing Data Access and Production Pipelines/4.1.1 - Jobs/2 - DLT Job.sql
+++ b/Data-Engineering-with-Databricks/Solutions/09 - Task Orchestration with Jobs/DE 9.1.3 - DLT Job.sql
@@ -1,18 +1,18 @@
-- Databricks notebook source
-CREATE INCREMENTAL LIVE TABLE sales_orders_raw
+CREATE OR REFRESH STREAMING LIVE TABLE sales_orders_raw
COMMENT "The raw sales orders, ingested from /databricks-datasets."
AS
SELECT * FROM cloud_files("/databricks-datasets/retail-org/sales_orders/", "json", map("cloudFiles.inferColumnTypes", "true"))
-- COMMAND ----------
-CREATE INCREMENTAL LIVE TABLE customers
+CREATE OR REFRESH STREAMING LIVE TABLE customers
COMMENT "The customers buying finished products, ingested from /databricks-datasets."
AS SELECT * FROM cloud_files("/databricks-datasets/retail-org/customers/", "csv");
-- COMMAND ----------
-CREATE INCREMENTAL LIVE TABLE sales_orders_cleaned(
+CREATE OR REFRESH STREAMING LIVE TABLE sales_orders_cleaned(
CONSTRAINT valid_order_number EXPECT (order_number IS NOT NULL) ON VIOLATION DROP ROW
)
COMMENT "The cleaned sales orders with valid order_number(s) and partitioned by order_datetime."
@@ -28,7 +28,7 @@ SELECT f.customer_id, f.customer_name, f.number_of_line_items,
-- COMMAND ----------
-CREATE LIVE TABLE sales_order_in_la
+CREATE OR REFRESH LIVE TABLE sales_order_in_la
COMMENT "Sales orders in LA."
AS
SELECT city, order_date, customer_id, customer_name, ordered_products_explode.curr, SUM(ordered_products_explode.price) as sales, SUM(ordered_products_explode.qty) as quantity, COUNT(ordered_products_explode.id) as product_count
@@ -41,7 +41,7 @@ GROUP BY order_date, city, customer_id, customer_name, ordered_products_explode.
-- COMMAND ----------
-CREATE LIVE TABLE sales_order_in_chicago
+CREATE OR REFRESH LIVE TABLE sales_order_in_chicago
COMMENT "Sales orders in Chicago."
AS
SELECT city, order_date, customer_id, customer_name, ordered_products_explode.curr, SUM(ordered_products_explode.price) as sales, SUM(ordered_products_explode.qty) as quantity, COUNT(ordered_products_explode.id) as product_count
diff --git a/Data-Engineering-with-Databricks/Solutions/09 - Task Orchestration with Jobs/DE 9.2L - Jobs Lab/DE 9.2.1L - Lab Instructions.py b/Data-Engineering-with-Databricks/Solutions/09 - Task Orchestration with Jobs/DE 9.2L - Jobs Lab/DE 9.2.1L - Lab Instructions.py
new file mode 100644
index 0000000..dea121f
--- /dev/null
+++ b/Data-Engineering-with-Databricks/Solutions/09 - Task Orchestration with Jobs/DE 9.2L - Jobs Lab/DE 9.2.1L - Lab Instructions.py
@@ -0,0 +1,179 @@
+# Databricks notebook source
+# MAGIC %md-sandbox
+# MAGIC
+# MAGIC
+# MAGIC

+# MAGIC
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC # Lab: Orchestrating Jobs with Databricks
+# MAGIC
+# MAGIC In this lab, you'll be configuring a multi-task job comprising of:
+# MAGIC * A notebook that lands a new batch of data in a storage directory
+# MAGIC * A Delta Live Table pipeline that processes this data through a series of tables
+# MAGIC * A notebook that queries the gold table produced by this pipeline as well as various metrics output by DLT
+# MAGIC
+# MAGIC ## Learning Objectives
+# MAGIC By the end of this lab, you should be able to:
+# MAGIC * Schedule a notebook as a Databricks Job
+# MAGIC * Schedule a DLT pipeline as a Databricks Job
+# MAGIC * Configure linear dependencies between tasks using the Databricks Jobs UI
+
+# COMMAND ----------
+
+# MAGIC %run ../../Includes/Classroom-Setup-9.2.1L
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC ## Land Initial Data
+# MAGIC Seed the landing zone with some data before proceeding. You will re-run this command to land additional data later.
+
+# COMMAND ----------
+
+DA.data_factory.load()
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC ## Create and Configure a Pipeline
+# MAGIC
+# MAGIC The pipeline we create here is nearly identical to the one in the previous unit.
+# MAGIC
+# MAGIC We will use it as part of a scheduled job in this lesson.
+# MAGIC
+# MAGIC Execute the following cell to print out the values that will be used during the following configuration steps.
+
+# COMMAND ----------
+
+print_pipeline_config()
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC Steps:
+# MAGIC 1. Click the **Jobs** button on the sidebar.
+# MAGIC 1. Select the **Delta Live Tables** tab.
+# MAGIC 1. Click **Create Pipeline**.
+# MAGIC 1. Fill in a **Pipeline Name** - because these names must be unique, we suggest using the **Pipeline Name** provided in the cell above.
+# MAGIC 1. For **Notebook Libraries**, use the navigator to locate and select the companion notebook called **DE 9.2.3L - DLT Job**.
+# MAGIC * Alternatively, you can copy the **Notebook Path** specified above and paste it into the field provided.
+# MAGIC 1. Configure the Source
+# MAGIC * Click **`Add configuration`**
+# MAGIC * Enter the word **`source`** in the **Key** field
+# MAGIC * Enter the **Source** value specified above to the **`Value`** field
+# MAGIC 1. In the **Target** field, specify the database name printed out next to **Target** in the cell above.
+# MAGIC This should follow the pattern **`dbacademy__dewd_jobs_lab_92`**
+# MAGIC 1. In the **Storage location** field, copy the directory as printed above.
+# MAGIC 1. For **Pipeline Mode**, select **Triggered**
+# MAGIC 1. Uncheck the **Enable autoscaling** box
+# MAGIC 1. Set the number of workers to **`1`** (one)
+# MAGIC 1. Click **Create**.
+# MAGIC
+# MAGIC
+# MAGIC
**Note**: we won't be executing this pipline directly as it will be executed by our job later in this lesson,
+# MAGIC but if you want to test it real quick, you can click the **Start** button now.
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC ## Schedule a Notebook Job
+# MAGIC
+# MAGIC When using the Jobs UI to orchestrate a workload with multiple tasks, you'll always begin by scheduling a single task.
+# MAGIC
+# MAGIC Before we start run the following cell to get the values used in this step.
+
+# COMMAND ----------
+
+print_job_config()
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC Here, we'll start by scheduling the notebook batch job.
+# MAGIC
+# MAGIC Steps:
+# MAGIC 1. Navigate to the Jobs UI using the Databricks left side navigation bar.
+# MAGIC 1. Click the blue **Create Job** button
+# MAGIC 1. Configure the task:
+# MAGIC 1. Enter **Batch-Job** for the task name
+# MAGIC 1. Select the notebook **DE 9.2.2L - Batch Job** using the notebook picker
+# MAGIC 1. From the **Cluster** dropdown, under **Existing All Purpose Cluster**, select your cluster
+# MAGIC 1. Click **Create**
+# MAGIC 1. In the top-left of the screen rename the job (not the task) from **`Batch-Job`** (the defaulted value) to the **Job Name** provided for you in the previous cell.
+# MAGIC 1. Click the blue **Run now** button in the top right to start the job to test the job real quick.
+# MAGIC
+# MAGIC
**Note**: When selecting your all purpose cluster, you will get a warning about how this will be billed as all purpose compute. Production jobs should always be scheduled against new job clusters appropriately sized for the workload, as this is billed at a much lower rate.
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC ## Schedule a DLT Pipeline as a Task
+# MAGIC
+# MAGIC In this step, we'll add a DLT pipeline to execute after the success of the task we configured at the start of this lesson.
+# MAGIC
+# MAGIC Steps:
+# MAGIC 1. At the top left of your screen, click the **Tasks** tab if it is not already selected.
+# MAGIC 1. Click the large blue circle with a **+** at the center bottom of the screen to add a new task
+# MAGIC 1. Specify the **Task name** as **DLT-Pipeline**
+# MAGIC 1. From **Type**, select **`Delta Live Tables pipeline`**
+# MAGIC 1. Click the **Pipeline** field and select the DLT pipeline you configured previously
+# MAGIC Note: The pipeline will start with **Jobs-Labs-92** and will end with your email address.
+# MAGIC 1. The **Depends on** field defaults to your previously defined task but may have renamed itself from the value **reset** that you specified previously to something like **Jobs-Lab-92-youremailaddress**.
+# MAGIC 1. Click the blue **Create task** button
+# MAGIC
+# MAGIC You should now see a screen with 2 boxes and a downward arrow between them.
+# MAGIC
+# MAGIC Your **`Batch-Job`** task (possibly renamed to something like **Jobs-Labs-92-youremailaddress**) will be at the top,
+# MAGIC leading into your **`DLT-Pipeline`** task.
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC ## Schedule an Additional Notebook Task
+# MAGIC
+# MAGIC An additional notebook has been provided which queries some of the DLT metrics and the gold table defined in the DLT pipeline.
+# MAGIC
+# MAGIC We'll add this as a final task in our job.
+# MAGIC
+# MAGIC Steps:
+# MAGIC 1. At the top left of your screen, click the **Tasks** tab if it is not already selected.
+# MAGIC 1. Click the large blue circle with a **+** at the center bottom of the screen to add a new task
+# MAGIC 1. Specify the **Task name** as **Query-Results**
+# MAGIC 1. Leave the **Type** set to **Notebook**
+# MAGIC 1. Select the notebook **DE 9.2.4L - Query Results Job** using the notebook picker
+# MAGIC 1. Note that the **Depends on** field defaults to your previously defined task, **DLT-Pipeline**
+# MAGIC 1. From the **Cluster** dropdown, under **Existing All Purpose Cluster**, select your cluster
+# MAGIC 1. Click the blue **Create task** button
+# MAGIC
+# MAGIC Click the blue **Run now** button in the top right of the screen to run this job.
+# MAGIC
+# MAGIC From the **Runs** tab, you will be able to click on the start time for this run under the **Active runs** section and visually track task progress.
+# MAGIC
+# MAGIC Once all your tasks have succeeded, review the contents of each task to confirm expected behavior.
+
+# COMMAND ----------
+
+# MAGIC %md-sandbox
+# MAGIC © 2022 Databricks, Inc. All rights reserved.
+# MAGIC Apache, Apache Spark, Spark and the Spark logo are trademarks of the Apache Software Foundation.
+# MAGIC
+# MAGIC Privacy Policy | Terms of Use | Support
diff --git a/Data-Engineering-with-Databricks/Solutions/09 - Task Orchestration with Jobs/DE 9.2L - Jobs Lab/DE 9.2.2L - Batch Job.py b/Data-Engineering-with-Databricks/Solutions/09 - Task Orchestration with Jobs/DE 9.2L - Jobs Lab/DE 9.2.2L - Batch Job.py
new file mode 100644
index 0000000..55656d3
--- /dev/null
+++ b/Data-Engineering-with-Databricks/Solutions/09 - Task Orchestration with Jobs/DE 9.2L - Jobs Lab/DE 9.2.2L - Batch Job.py
@@ -0,0 +1,7 @@
+# Databricks notebook source
+# MAGIC %run ../../Includes/Classroom-Setup-9.2.2L
+
+# COMMAND ----------
+
+DA.data_factory.load()
+
diff --git a/Data-Engineering-With-Databricks/Solutions/04 - Managing Data Access and Production Pipelines/4.4.2 - LAB - End-to-End ELT in the Lakehouse/1 - DLT Task.sql b/Data-Engineering-with-Databricks/Solutions/09 - Task Orchestration with Jobs/DE 9.2L - Jobs Lab/DE 9.2.3L - DLT Job.sql
similarity index 81%
rename from Data-Engineering-With-Databricks/Solutions/04 - Managing Data Access and Production Pipelines/4.4.2 - LAB - End-to-End ELT in the Lakehouse/1 - DLT Task.sql
rename to Data-Engineering-with-Databricks/Solutions/09 - Task Orchestration with Jobs/DE 9.2L - Jobs Lab/DE 9.2.3L - DLT Job.sql
index 55e4d4e..a812762 100644
--- a/Data-Engineering-With-Databricks/Solutions/04 - Managing Data Access and Production Pipelines/4.4.2 - LAB - End-to-End ELT in the Lakehouse/1 - DLT Task.sql
+++ b/Data-Engineering-with-Databricks/Solutions/09 - Task Orchestration with Jobs/DE 9.2L - Jobs Lab/DE 9.2.3L - DLT Job.sql
@@ -1,17 +1,17 @@
-- Databricks notebook source
-CREATE INCREMENTAL LIVE TABLE recordings_bronze
+CREATE OR REFRESH STREAMING LIVE TABLE recordings_bronze
AS SELECT current_timestamp() receipt_time, input_file_name() source_file, *
FROM cloud_files("${source}", "json", map("cloudFiles.schemaHints", "time DOUBLE"))
-- COMMAND ----------
-CREATE INCREMENTAL LIVE TABLE pii
+CREATE OR REFRESH STREAMING LIVE TABLE pii
AS SELECT *
FROM cloud_files("/mnt/training/healthcare/patient", "csv", map("header", "true", "cloudFiles.inferColumnTypes", "true"))
-- COMMAND ----------
-CREATE INCREMENTAL LIVE TABLE recordings_enriched
+CREATE OR REFRESH STREAMING LIVE TABLE recordings_enriched
(CONSTRAINT positive_heartrate EXPECT (heartrate > 0) ON VIOLATION DROP ROW)
AS SELECT
CAST(a.device_id AS INTEGER) device_id,
@@ -25,7 +25,7 @@ AS SELECT
-- COMMAND ----------
-CREATE INCREMENTAL LIVE TABLE daily_patient_avg
+CREATE OR REFRESH STREAMING LIVE TABLE daily_patient_avg
COMMENT "Daily mean heartrates by patient"
AS SELECT mrn, name, MEAN(heartrate) avg_heartrate, DATE(time) `date`
FROM STREAM(live.recordings_enriched)
diff --git a/Data-Engineering-with-Databricks/Solutions/09 - Task Orchestration with Jobs/DE 9.2L - Jobs Lab/DE 9.2.4L - Query Results Job.py b/Data-Engineering-with-Databricks/Solutions/09 - Task Orchestration with Jobs/DE 9.2L - Jobs Lab/DE 9.2.4L - Query Results Job.py
new file mode 100644
index 0000000..158cba1
--- /dev/null
+++ b/Data-Engineering-with-Databricks/Solutions/09 - Task Orchestration with Jobs/DE 9.2L - Jobs Lab/DE 9.2.4L - Query Results Job.py
@@ -0,0 +1,71 @@
+# Databricks notebook source
+# MAGIC %run ../../Includes/Classroom-Setup-9.2.4L
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC # Exploring the Results of a DLT Pipeline
+# MAGIC
+# MAGIC Run the following cell to enumerate the output of your storage location:
+
+# COMMAND ----------
+
+files = dbutils.fs.ls(f"{DA.paths.working_dir}/storage")
+display(files)
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC The **system** directory captures events associated with the pipeline.
+
+# COMMAND ----------
+
+files = dbutils.fs.ls(f"{DA.paths.working_dir}/storage/system/events")
+display(files)
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC These event logs are stored as a Delta table.
+# MAGIC
+# MAGIC Let's query the table.
+
+# COMMAND ----------
+
+# MAGIC %sql
+# MAGIC SELECT * FROM delta.`${da.paths.working_dir}/storage/system/events`
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC Let's view the contents of the *tables* directory.
+
+# COMMAND ----------
+
+files = dbutils.fs.ls(f"{DA.paths.working_dir}/storage/tables")
+display(files)
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC Let's query the gold table.
+
+# COMMAND ----------
+
+# MAGIC %sql
+# MAGIC SELECT * FROM ${da.db_name}.daily_patient_avg
+
+# COMMAND ----------
+
+DA.cleanup()
+
diff --git a/Data-Engineering-With-Databricks/Solutions/04 - Managing Data Access and Production Pipelines/4.2.1 - Navigating Databricks SQL and Attaching to Endpoints.py b/Data-Engineering-with-Databricks/Solutions/10 - Running a DBSQL Query/DE 10.1 - Navigating Databricks SQL and Attaching to Endpoints.py
similarity index 65%
rename from Data-Engineering-With-Databricks/Solutions/04 - Managing Data Access and Production Pipelines/4.2.1 - Navigating Databricks SQL and Attaching to Endpoints.py
rename to Data-Engineering-with-Databricks/Solutions/10 - Running a DBSQL Query/DE 10.1 - Navigating Databricks SQL and Attaching to Endpoints.py
index 7916b00..1dfdf45 100644
--- a/Data-Engineering-With-Databricks/Solutions/04 - Managing Data Access and Production Pipelines/4.2.1 - Navigating Databricks SQL and Attaching to Endpoints.py
+++ b/Data-Engineering-with-Databricks/Solutions/10 - Running a DBSQL Query/DE 10.1 - Navigating Databricks SQL and Attaching to Endpoints.py
@@ -8,34 +8,36 @@
# COMMAND ----------
# MAGIC %md
+# MAGIC
+# MAGIC
# MAGIC # Navigating Databricks SQL and Attaching to Endpoints
# MAGIC
# MAGIC * Navigate to Databricks SQL
# MAGIC * Make sure that SQL is selected from the workspace option in the sidebar (directly below the Databricks logo)
# MAGIC * Make sure a SQL endpoint is on and accessible
-# MAGIC * Navigate to SQL enpoints in the sidebar
-# MAGIC * If a SQL endpoint exists and has the State `Running`, you'll use this endpoint
-# MAGIC * If a SQL endpoint exists but is `Stopped`, click the `Start` button if you have this option (**NOTE**: Start the smallest endpoint you have available to you)
-# MAGIC * If no endpoints exist and you have the option, click `Create SQL Endpoint`; name the endpoint something you'll recognize and set the cluster size to 2X-Small. Leave all other options as default.
+# MAGIC * Navigate to SQL endpoints in the sidebar
+# MAGIC * If a SQL endpoint exists and has the State **`Running`**, you'll use this endpoint
+# MAGIC * If a SQL endpoint exists but is **`Stopped`**, click the **`Start`** button if you have this option (**NOTE**: Start the smallest endpoint you have available to you)
+# MAGIC * If no endpoints exist and you have the option, click **`Create SQL Endpoint`**; name the endpoint something you'll recognize and set the cluster size to 2X-Small. Leave all other options as default.
# MAGIC * If you have no way to create or attach to a SQL endpoint, you'll need to contact a workspace administrator and request access to compute resources in Databricks SQL to continue.
# MAGIC * Navigate to home page in Databricks SQL
# MAGIC * Click the Databricks logo at the top of the side nav bar
-# MAGIC * Locate the **Sample dashboards** and click `Visit gallery`
-# MAGIC * Click `Import` next to the **Retail Revenue & Supply Chain** option
+# MAGIC * Locate the **Sample dashboards** and click **`Visit gallery`**
+# MAGIC * Click **`Import`** next to the **Retail Revenue & Supply Chain** option
# MAGIC * Assuming you have a SQL endpoint available, this should load a dashboard and immediately display results
# MAGIC * Click **Refresh** in the top right (the underlying data has not changed, but this is the button that would be used to pick up changes)
# MAGIC
# MAGIC # Updating a DBSQL Dashboard
# MAGIC
# MAGIC * Use the sidebar navigator to find the **Dashboards**
-# MAGIC * Locate the sample dashboard you just loaded; it should be called **Retail Revenue & Supply Chain** and have your username under the `Created By` field. **NOTE**: the **My Dashboards** option on the right hand side can serve as a shortcut to filter out other dashboards in the workspace
+# MAGIC * Locate the sample dashboard you just loaded; it should be called **Retail Revenue & Supply Chain** and have your username under the **`Created By`** field. **NOTE**: the **My Dashboards** option on the right hand side can serve as a shortcut to filter out other dashboards in the workspace
# MAGIC * Click on the dashboard name to view it
# MAGIC * View the query behind the **Shifts in Pricing Priorities** plot
# MAGIC * Hover over the plot; three vertical dots should appear. Click on these
# MAGIC * Select **View Query** from the menu that appears
# MAGIC * Review the SQL code used to populate this plot
# MAGIC * Note that 3 tier namespacing is used to identify the source table; this is a preview of new functionality to be supported by Unity Catalog
-# MAGIC * Click `Run` in the top right of the screen to preview the results of the query
+# MAGIC * Click **`Run`** in the top right of the screen to preview the results of the query
# MAGIC * Review the visualization
# MAGIC * Under the query, a tab named **Table** should be selected; click **Price by Priority over Time** to switch to a preview of your plot
# MAGIC * Click **Edit Visualization** at the bottom of the screen to review settings
@@ -43,37 +45,37 @@
# MAGIC * If you wish to apply your changes, click **Save**; otherwise, click **Cancel**
# MAGIC * Back in the query editor, click the **Add Visualization** button to the right of the visualization name
# MAGIC * Create a bar graph
-# MAGIC * Set the **X Column** as `Date`
-# MAGIC * Set the **Y Column** as `Total Price`
-# MAGIC * **Group by** `Priority`
-# MAGIC * Set **Stacking** to `Stack`
+# MAGIC * Set the **X Column** as **`Date`**
+# MAGIC * Set the **Y Column** as **`Total Price`**
+# MAGIC * **Group by** **`Priority`**
+# MAGIC * Set **Stacking** to **`Stack`**
# MAGIC * Leave all other settings as defaults
# MAGIC * Click **Save**
-# MAGIC * Back in the query editor, click the default name for this visualization to edit it; change the visualization name to `Stacked Price`
-# MAGIC * Add the bottom of the screen, click the three vertical dots to the left of the `Edit Visualization` button
+# MAGIC * Back in the query editor, click the default name for this visualization to edit it; change the visualization name to **`Stacked Price`**
+# MAGIC * Add the bottom of the screen, click the three vertical dots to the left of the **`Edit Visualization`** button
# MAGIC * Select **Add to Dashboard** from the menu
-# MAGIC * Select your `Retail Revenue & Supply Chain` dashboard
+# MAGIC * Select your **`Retail Revenue & Supply Chain`** dashboard
# MAGIC * Navigate back to your dashboard to view this change
# MAGIC
# MAGIC # Create a New Query
# MAGIC
# MAGIC * Use the sidebar to navigate to **Queries**
-# MAGIC * Click the `Create Query` button
-# MAGIC * In the **Schema Browser**, click on the current metastore and select `samples`
-# MAGIC * Select the `tpch` database
-# MAGIC * Click on the `partsupp` table to get a preview of the schema
-# MAGIC * While hovering over the `partsupp` table name, click the `>>` button to insert the table name into your query text
+# MAGIC * Click the **`Create Query`** button
+# MAGIC * Make sure you are connected to an endpoint. In the **Schema Browser**, click on the current metastore and select **`samples`**.
+# MAGIC * Select the **`tpch`** database
+# MAGIC * Click on the **`partsupp`** table to get a preview of the schema
+# MAGIC * While hovering over the **`partsupp`** table name, click the **>>** button to insert the table name into your query text
# MAGIC * Write your first query:
-# MAGIC * `SELECT * FROM` the `partsupp` table using the full name imported in the last step; click **Run** to preview results
-# MAGIC * Modify this query to `GROUP BY ps_partkey` and return the `ps_partkey` and `sum(ps_availqty)`; click **Run** to preview results
-# MAGIC * Update your query to alias the 2nd column to be named `total_availqty` and re-execute the query
+# MAGIC * **`SELECT * FROM`** the **`partsupp`** table using the full name imported in the last step; click **Run** to preview results
+# MAGIC * Modify this query to **`GROUP BY ps_partkey`** and return the **`ps_partkey`** and **`sum(ps_availqty)`**; click **Run** to preview results
+# MAGIC * Update your query to alias the 2nd column to be named **`total_availqty`** and re-execute the query
# MAGIC * Save your query
# MAGIC * Click the **Save** button next to **Run** near the top right of the screen
# MAGIC * Give the query a name you'll remember
# MAGIC * Add the query to your dashboard
# MAGIC * Click the three vertical buttons at the bottom of the screen
# MAGIC * Click **Add to Dashboard**
-# MAGIC * Select your `Retail Revenue & Supply Chain` dashboard
+# MAGIC * Select your **`Retail Revenue & Supply Chain`** dashboard
# MAGIC * Navigate back to your dashboard to view this change
# MAGIC * If you wish to change the organization of visualizations, click the three vertical buttons in the top right of the screen; click **Edit** in the menu that appears and you'll be able to drag and resize visualizations
diff --git a/Data-Engineering-With-Databricks/04 - Managing Data Access and Production Pipelines/4.3.1 - Managing Permissions for Databases, Tables, and Views.py b/Data-Engineering-with-Databricks/Solutions/11 - Managing Permissions/DE 11.1 - Managing Permissions for Databases, Tables, and Views.py
similarity index 79%
rename from Data-Engineering-With-Databricks/04 - Managing Data Access and Production Pipelines/4.3.1 - Managing Permissions for Databases, Tables, and Views.py
rename to Data-Engineering-with-Databricks/Solutions/11 - Managing Permissions/DE 11.1 - Managing Permissions for Databases, Tables, and Views.py
index ac3fca8..d8f2d04 100644
--- a/Data-Engineering-With-Databricks/04 - Managing Data Access and Production Pipelines/4.3.1 - Managing Permissions for Databases, Tables, and Views.py
+++ b/Data-Engineering-with-Databricks/Solutions/11 - Managing Permissions/DE 11.1 - Managing Permissions for Databases, Tables, and Views.py
@@ -8,12 +8,15 @@
# COMMAND ----------
# MAGIC %md
+# MAGIC
+# MAGIC
# MAGIC # Managing Permissions for Databases, Tables, and Views
# MAGIC
# MAGIC The instructions as detailed below are provided for groups of users to explore how Table ACLs on Databricks work. It leverages Databricks SQL and the Data Explorer to accomplish these tasks, and assumes that at least one user in the group has administrator status (or that an admin has previously configured permissions to allow proper permissions for users to create databases, tables, and views).
# MAGIC
# MAGIC As written, these instructions are for the admin user to complete. The following notebook will have a similar exercise for users to complete in pairs.
# MAGIC
+# MAGIC ## Learning Objectives
# MAGIC By the end of this lesson, you should be able to:
# MAGIC * Describe the default permissions for users and admins in DBSQL
# MAGIC * Identify the default owner for databases, tables, and views created in DBSQL and change ownership
@@ -23,65 +26,43 @@
# COMMAND ----------
+# MAGIC %run ../Includes/Classroom-Setup-11.1
+
+# COMMAND ----------
+
# MAGIC %md
+# MAGIC
+# MAGIC
# MAGIC ## Generate Setup Statements
# MAGIC
-# MAGIC The following cell uses Python to extract username of the present user and format this into several statements used to create databases, tables, and views.
+# MAGIC The following cell uses Python to extract username of the current user and format this into several statements used to create databases, tables, and views.
# MAGIC
# MAGIC Only the admin needs to execute the following cell. Successful execution will print out a series of formatted SQL queries, which can be copied into the DBSQL query editor and executed.
# COMMAND ----------
-def generate_query(course, mode="reset"):
- import re
-
- username = spark.sql("SELECT current_user()").first()[0]
- userhome = f"dbfs:/user/{username}/{course}"
- database = f"""dbacademy_{re.sub("[^a-zA-Z0-9]", "_", username)}_{course}"""
-
- if mode == "reset":
- spark.sql(f"DROP DATABASE IF EXISTS {database} CASCADE")
- dbutils.fs.rm(userhome, True)
-
- print(f"""
-CREATE DATABASE IF NOT EXISTS {database}
-LOCATION '{userhome}';
-
-USE {database};
-
-CREATE TABLE users
-(id INT, name STRING, value DOUBLE, state STRING);
-
-INSERT INTO users
-VALUES (1, "Yve", 1.0, "CA"),
- (2, "Omar", 2.5, "NY"),
- (3, "Elia", 3.3, "OH"),
- (4, "Rebecca", 4.7, "TX"),
- (5, "Ameena", 5.3, "CA"),
- (6, "Ling", 6.6, "NY"),
- (7, "Pedro", 7.1, "KY");
-
-CREATE VIEW ny_users_vw
-AS SELECT * FROM users WHERE state = 'NY';
- """)
-generate_query("acls_demo")
+DA.generate_users_table()
# COMMAND ----------
# MAGIC %md
+# MAGIC
+# MAGIC
# MAGIC Steps:
-# MAGIC * Run the cell above
-# MAGIC * Copy the entire output to your clipboard
-# MAGIC * Navigate to the Databricks SQL workspace
-# MAGIC * Make sure that a DBSQL endpoint is running
-# MAGIC * Use the left sidebar to select the **SQL Editor**
-# MAGIC * Paste the query above and click the blue **Run** in the top right
+# MAGIC 1. Run the cell above
+# MAGIC 1. Copy the entire output to your clipboard
+# MAGIC 1. Navigate to the Databricks SQL workspace
+# MAGIC 1. Make sure that a DBSQL endpoint is running
+# MAGIC 1. Use the left sidebar to select the **SQL Editor**
+# MAGIC 1. Paste the query above and click the blue **Run** in the top right
# MAGIC
# MAGIC **NOTE**: You will need to be connected to a DBSQL endpoint to execute these queries successfully. If you cannot connect to a DBSQL endpoint, you will need to contact your administrator to give you access.
# COMMAND ----------
# MAGIC %md
+# MAGIC
+# MAGIC
# MAGIC ## Using Data Explorer
# MAGIC
# MAGIC * Use the left sidebar navigator to select the **Data** tab; this places you in the **Data Explorer**
@@ -93,7 +74,7 @@ def generate_query(course, mode="reset"):
# MAGIC * Explore data schema, metadata, and history
# MAGIC * Set and modify permissions of relational entities
# MAGIC
-# MAGIC Note that at the moment these instructions are being written, Unity Catalog is not yet generally available. The 3 tier namespacing functionality it adds can be previewed to an extent by switching between the default `hive_metastore` and the `sample` catalog used for example dashboards and queries. Expect the Data Explorer UI and functionality to evolve as Unity Catalog is added to workspaces.
+# MAGIC Note that at the moment these instructions are being written, Unity Catalog is not yet generally available. The 3 tier namespacing functionality it adds can be previewed to an extent by switching between the default **`hive_metastore`** and the **`sample`** catalog used for example dashboards and queries. Expect the Data Explorer UI and functionality to evolve as Unity Catalog is added to workspaces.
# MAGIC
# MAGIC ## Configuring Permissions
# MAGIC
@@ -114,7 +95,7 @@ def generate_query(course, mode="reset"):
# MAGIC | FUNCTION | controls access to a named function. |
# MAGIC | ANY FILE | controls access to the underlying filesystem. Users granted access to ANY FILE can bypass the restrictions put on the catalog, databases, tables, and views by reading from the file system directly. |
# MAGIC
-# MAGIC **NOTE**: At present, the `ANY FILE` object cannot be set from Data Explorer.
+# MAGIC **NOTE**: At present, the **`ANY FILE`** object cannot be set from Data Explorer.
# MAGIC
# MAGIC ## Granting Privileges
# MAGIC
@@ -145,8 +126,10 @@ def generate_query(course, mode="reset"):
# COMMAND ----------
# MAGIC %md
+# MAGIC
+# MAGIC
# MAGIC ## Review the Default Permissions
-# MAGIC In the Data Explorer, find the database you created earlier (this should follow the pattern `dbacademy__acls_demo`).
+# MAGIC In the Data Explorer, find the database you created earlier (this should follow the pattern **`dbacademy__acls_demo`**).
# MAGIC
# MAGIC Clicking on the database name should display a list of the contained tables and views on the left hand side. On the right, you'll see some details about the database, including the **Owner** and **Location**.
# MAGIC
@@ -155,6 +138,8 @@ def generate_query(course, mode="reset"):
# COMMAND ----------
# MAGIC %md
+# MAGIC
+# MAGIC
# MAGIC ## Assigning Ownership
# MAGIC
# MAGIC Click the blue pencil next to the **Owner** field. Note that an owner can be set as an individual OR a group. For most implementations, having one or several small groups of trusted power users as owners will limit admin access to important datasets while ensuring that a single user does not create a choke point in productivity.
@@ -164,11 +149,13 @@ def generate_query(course, mode="reset"):
# COMMAND ----------
# MAGIC %md
+# MAGIC
+# MAGIC
# MAGIC ## Change Database Permissions
# MAGIC
# MAGIC Begin by allowing all users to review metadata about the database.
# MAGIC
-# MAGIC Step:
+# MAGIC Steps:
# MAGIC 1. Make sure you have the **Permissions** tab selected for the database
# MAGIC 1. Click the blue **Grant** button
# MAGIC 1. Select the **USAGE** and **READ_METADATA** options
@@ -180,14 +167,16 @@ def generate_query(course, mode="reset"):
# COMMAND ----------
# MAGIC %md
+# MAGIC
+# MAGIC
# MAGIC ## Change View Permissions
# MAGIC
# MAGIC While users can now see information about this database, they won't be able to interact with the table of view declared above.
# MAGIC
# MAGIC Let's start by giving users the ability to query our view.
# MAGIC
-# MAGIC Step:
-# MAGIC 1. Select the `ny_users_vw`
+# MAGIC Steps:
+# MAGIC 1. Select the **`ny_users_vw`**
# MAGIC 1. Select the **Permissions** tab
# MAGIC * Users should have inherited the permissions granted at the database level; you'll be able to see which permissions users currently have on an asset, as well as where that permission is inherited from
# MAGIC 1. Click the blue **Grant** button
@@ -199,25 +188,29 @@ def generate_query(course, mode="reset"):
# COMMAND ----------
# MAGIC %md
+# MAGIC
+# MAGIC
# MAGIC ## Run a Query to Confirm
# MAGIC
# MAGIC In the **SQL Editor**, all users should use the **Schema Browser** on the lefthand side to navigate to the database being controlled by the admin.
# MAGIC
-# MAGIC Users should start a query by typing `SELECT * FROM ` and then click the **>>** that appears while hovering over the view name to insert it into their query.
+# MAGIC Users should start a query by typing **`SELECT * FROM`** and then click the **>>** that appears while hovering over the view name to insert it into their query.
# MAGIC
# MAGIC This query should return 2 results.
# MAGIC
-# MAGIC **NOTE**: This view is defined against the `users` table, which has not had any permissions set yet. Note that users have access only to that portion of the data that passes through the filters defined on the view; this pattern demonstrates how a single underlying table can be used to drive controlled access to data for relevant stakeholders.
+# MAGIC **NOTE**: This view is defined against the **`users`** table, which has not had any permissions set yet. Note that users have access only to that portion of the data that passes through the filters defined on the view; this pattern demonstrates how a single underlying table can be used to drive controlled access to data for relevant stakeholders.
# COMMAND ----------
# MAGIC %md
+# MAGIC
+# MAGIC
# MAGIC ## Change Table Permissions
# MAGIC
-# MAGIC Perform the same steps as above, but now for the `users` table.
+# MAGIC Perform the same steps as above, but now for the **`users`** table.
# MAGIC
-# MAGIC Step:
-# MAGIC 1. Select the `users` table
+# MAGIC Steps:
+# MAGIC 1. Select the **`users`** table
# MAGIC 1. Select the **Permissions** tab
# MAGIC 1. Click the blue **Grant** button
# MAGIC 1. Select the **SELECT** and **READ_METADATA** options
@@ -227,7 +220,9 @@ def generate_query(course, mode="reset"):
# COMMAND ----------
# MAGIC %md
-# MAGIC ## Have Users Attempt to `DROP TABLE`
+# MAGIC
+# MAGIC
+# MAGIC ## Have Users Attempt to **`DROP TABLE`**
# MAGIC
# MAGIC In the **SQL Editor**, encourage users to explore the data in this table.
# MAGIC
@@ -236,6 +231,8 @@ def generate_query(course, mode="reset"):
# COMMAND ----------
# MAGIC %md
+# MAGIC
+# MAGIC
# MAGIC ## Create a Database for Derivative Datasets
# MAGIC
# MAGIC In most cases users will need a location to save out derivative datasets. At present, users may not have the ability to create new tables in any location (depending on existing ACLs in the workspace and databases created during previous lessons students have completed).
@@ -246,22 +243,13 @@ def generate_query(course, mode="reset"):
# COMMAND ----------
-import re
-
-username = spark.sql("SELECT current_user()").first()[0]
-database = f"""dbacademy_{re.sub("[^a-zA-Z0-9]", "_", username)}_derivative"""
-
-print(f"""
-CREATE DATABASE {database};
-
-GRANT USAGE, READ_METADATA, CREATE, MODIFY, SELECT ON DATABASE `{database}` TO `users`;
-
-SHOW GRANT ON DATABASE `{database}`
-""")
+DA.generate_create_database_with_grants()
# COMMAND ----------
# MAGIC %md
+# MAGIC
+# MAGIC
# MAGIC ## Have Users Create New Tables or Views
# MAGIC
# MAGIC Give users a moment to test that they can create tables and views in this new database.
@@ -271,21 +259,19 @@ def generate_query(course, mode="reset"):
# COMMAND ----------
# MAGIC %md
+# MAGIC
+# MAGIC
# MAGIC ## Admin Configuration
# MAGIC
-# MAGIC At present, users do not have any Table ACL permissions granted on the default catalog `hive_metastore` by default. The next lab assumes that users will be able to create databases.
+# MAGIC At present, users do not have any Table ACL permissions granted on the default catalog **`hive_metastore`** by default. The next lab assumes that users will be able to create databases.
# MAGIC
# MAGIC To enable the ability to create databases and tables in the default catalog using Databricks SQL, have a workspace admin run the following command in the DBSQL query editor:
# MAGIC
-# MAGIC ```
-# MAGIC GRANT usage, create ON CATALOG `hive_metastore` TO `users`
-# MAGIC ```
+# MAGIC GRANT usage, create ON CATALOG `hive_metastore` TO `users`
# MAGIC
# MAGIC To confirm this has run successfully, execute the following query:
# MAGIC
-# MAGIC ```
-# MAGIC SHOW GRANT ON CATALOG `hive_metastore`
-# MAGIC ```
+# MAGIC SHOW GRANT ON CATALOG `hive_metastore`
# COMMAND ----------
diff --git a/Data-Engineering-with-Databricks/Solutions/11 - Managing Permissions/DE 11.2L - Configuring Privileges for Production Data and Derived Tables Lab.py b/Data-Engineering-with-Databricks/Solutions/11 - Managing Permissions/DE 11.2L - Configuring Privileges for Production Data and Derived Tables Lab.py
new file mode 100644
index 0000000..c4328ac
--- /dev/null
+++ b/Data-Engineering-with-Databricks/Solutions/11 - Managing Permissions/DE 11.2L - Configuring Privileges for Production Data and Derived Tables Lab.py
@@ -0,0 +1,215 @@
+# Databricks notebook source
+# MAGIC %md-sandbox
+# MAGIC
+# MAGIC
+# MAGIC

+# MAGIC
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC # Configuring Privileges for Production Data and Derived Tables
+# MAGIC
+# MAGIC The instructions as detailed below are provided for pairs of users to explore how Table ACLs on Databricks work. It leverages Databricks SQL and the Data Explorer to accomplish these tasks, and assumes that neither user has admin privileges for the workspace. An admin will need to have previously granted **`CREATE`** and **`USAGE`** privileges on a catalog for users to be able to create databases in Databricks SQL.
+# MAGIC
+# MAGIC ##Learning Objectives
+# MAGIC
+# MAGIC By the end of this lab, you should be able to:
+# MAGIC * Use Data Explorer to navigate relational entities
+# MAGIC * Configure permissions for tables and views with Data Explorer
+# MAGIC * Configure minimal permissions to allow for table discovery and querying
+# MAGIC * Change ownership for databases, tables, and views created in DBSQL
+
+# COMMAND ----------
+
+# MAGIC %run ../Includes/Classroom-Setup-11.2L
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC ## Exchange User Names with your Partner
+# MAGIC If you are not in a workspace where your usernames correspond with your email address, make sure your partner has your username.
+# MAGIC
+# MAGIC They will need this when assigning privileges and searching for your database at later steps.
+# MAGIC
+# MAGIC The following cell will print your username.
+
+# COMMAND ----------
+
+print(f"Your username: {DA.username}")
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC ## Generate Setup Statements
+# MAGIC
+# MAGIC The following cell uses Python to extract the username of the current user and format this into several statements used to create databases, tables, and views.
+# MAGIC
+# MAGIC Both students should execute the following cell.
+# MAGIC
+# MAGIC Successful execution will print out a series of formatted SQL queries, which can be copied into the DBSQL query editor and executed.
+
+# COMMAND ----------
+
+DA.generate_query()
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC Steps:
+# MAGIC 1. Run the cell above
+# MAGIC 1. Copy the entire output to your clipboard
+# MAGIC 1. Navigate to the Databricks SQL workspace
+# MAGIC 1. Make sure that a DBSQL endpoint is running
+# MAGIC 1. Use the left sidebar to select the **SQL Editor**
+# MAGIC 1. Paste the query above and click the blue **Run** in the top right
+# MAGIC
+# MAGIC **NOTE**: You will need to be connected to a DBSQL endpoint to execute these queries successfully. If you cannot connect to a DBSQL endpoint, you will need to contact your administrator to give you access.
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC ## Find Your Database
+# MAGIC In the Data Explorer, find the database you created earlier (this should follow the pattern **`dbacademy__dewd_acls_lab`**).
+# MAGIC
+# MAGIC Clicking on the database name should display a list of the contained tables and views on the left hand side.
+# MAGIC
+# MAGIC On the right, you'll see some details about the database, including the **Owner** and **Location**.
+# MAGIC
+# MAGIC Click the **Permissions** tab to review who presently has permissions (depending on your workspace configuration, some permissions may have been inherited from settings on the catalog).
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC ## Change Database Permissions
+# MAGIC
+# MAGIC Steps:
+# MAGIC 1. Make sure you have the **Permissions** tab selected for the database
+# MAGIC 1. Click the blue **Grant** button
+# MAGIC 1. Select the **USAGE**, **SELECT**, and **READ_METADATA** options
+# MAGIC 1. Enter the username of your partner in the field at the top.
+# MAGIC 1. Click **OK**
+# MAGIC
+# MAGIC Confirm with your partner that you can each see each others' databases and tables.
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC ## Run a Query to Confirm
+# MAGIC
+# MAGIC By granting **`USAGE`**, **`SELECT`**, and **`READ_METADATA`** on your database, your partner should now be able to freely query the tables and views in this database, but will not be able to create new tables OR modify your data.
+# MAGIC
+# MAGIC In the SQL Editor, each user should run a series of queries to confirm this behavior in the database they were just added to.
+# MAGIC
+# MAGIC **Make sure you specify your partner's database while running the queries below.**
+# MAGIC
+# MAGIC **NOTE**: These first 3 queries should succeed, but the last should fail.
+
+# COMMAND ----------
+
+# Replace FILL_IN with your partner's username
+DA.generate_confirmation_query("FILL_IN")
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC ## Execute a Query to Generate the Union of Your Beans
+# MAGIC
+# MAGIC Execute the query below against your own databases.
+# MAGIC
+# MAGIC **NOTE**: Because random values were inserted for the **`grams`** and **`delicious`** columns, you should see 2 distinct rows for each **`name`**, **`color`** pair.
+
+# COMMAND ----------
+
+DA.generate_union_query()
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC ## Register a Derivative View to Your Database
+# MAGIC
+# MAGIC Execute the query below to register the results of the previous query to your database.
+
+# COMMAND ----------
+
+DA.generate_derivative_view()
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC ## Query Your Partner's View
+# MAGIC
+# MAGIC Once your partner has successfully completed the previous step, run the following query against each of your tables; you should get the same results:
+
+# COMMAND ----------
+
+# Replace FILL_IN with your partner's username
+DA.generate_partner_view("FILL_IN")
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC ## Add Modify Permissions
+# MAGIC
+# MAGIC Now try to drop each other's **`beans`** tables.
+# MAGIC
+# MAGIC At the moment, this shouldn't work.
+# MAGIC
+# MAGIC Using the Data Explorer, add the **`MODIFY`** permission for your **`beans`** table for your partner.
+# MAGIC
+# MAGIC Again, attempt to drop your partner's **`beans`** table.
+# MAGIC
+# MAGIC It should again fail.
+# MAGIC
+# MAGIC **Only the owner of a table should be able to issue this statement**.
+# MAGIC (Note that ownership can be transferred from an individual to a group, if desired).
+# MAGIC
+# MAGIC Instead, execute a query to delete records from your partner's table:
+
+# COMMAND ----------
+
+# Replace FILL_IN with your partner's username
+DA.generate_delete_query("FILL_IN")
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC This query should successfully drop all records from the target table.
+# MAGIC
+# MAGIC Try to re-execute queries against any of the views of tables you'd previously queried in this lab.
+# MAGIC
+# MAGIC **NOTE**: If steps were completed successfully, none of your previous queries should return results, as the data referenced by your views has been deleted. This demonstrates the risks associated with providing **`MODIFY`** privileges to users on data that will be used in production applications and dashboards.
+# MAGIC
+# MAGIC If you have additional time, see if you can use the Delta methods **`DESCRIBE HISTORY`** and **`RESTORE`** to revert the records in your table.
+
+# COMMAND ----------
+
+# MAGIC %md-sandbox
+# MAGIC © 2022 Databricks, Inc. All rights reserved.
+# MAGIC Apache, Apache Spark, Spark and the Spark logo are trademarks of the Apache Software Foundation.
+# MAGIC
+# MAGIC Privacy Policy | Terms of Use | Support
diff --git a/Data-Engineering-with-Databricks/Solutions/12 - Productionalizing Dashboards and Queries in DBSQL/DE 12.1 - Last Mile ETL with DBSQL.py b/Data-Engineering-with-Databricks/Solutions/12 - Productionalizing Dashboards and Queries in DBSQL/DE 12.1 - Last Mile ETL with DBSQL.py
new file mode 100644
index 0000000..171a1e1
--- /dev/null
+++ b/Data-Engineering-with-Databricks/Solutions/12 - Productionalizing Dashboards and Queries in DBSQL/DE 12.1 - Last Mile ETL with DBSQL.py
@@ -0,0 +1,304 @@
+# Databricks notebook source
+# MAGIC %md-sandbox
+# MAGIC
+# MAGIC
+# MAGIC

+# MAGIC
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC # Last Mile ETL with Databricks SQL
+# MAGIC
+# MAGIC Before we continue, let's do a recap of some of the things we've learned so far:
+# MAGIC 1. The Databricks workspace contains a suite of tools to simplify the data engineering development lifecycle
+# MAGIC 1. Databricks notebooks allow users to mix SQL with other programming languages to define ETL workloads
+# MAGIC 1. Delta Lake provides ACID compliant transactions and makes incremental data processing easy in the Lakehouse
+# MAGIC 1. Delta Live Tables extends the SQL syntax to support many design patterns in the Lakehouse, and simplifies infrastructure deployment
+# MAGIC 1. Multi-task jobs allows for full task orchestration, adding dependencies while scheduling a mix of notebooks and DLT pipelines
+# MAGIC 1. Databricks SQL allows users to edit and execute SQL queries, build visualizations, and define dashboards
+# MAGIC 1. Data Explorer simplifies managing Table ACLs, making Lakehouse data available to SQL analysts (soon to be expanded greatly by Unity Catalog)
+# MAGIC
+# MAGIC In this section, we'll focus on exploring more DBSQL functionality to support production workloads.
+# MAGIC
+# MAGIC We'll start by focusing on leveraging Databricks SQL to configure queries that support last mile ETL for analytics. Note that while we'll be using the Databricks SQL UI for this demo, SQL Endpoints integrate with a number of other tools to allow external query execution, as well as having full API support for executing arbitrary queries programmatically.
+# MAGIC
+# MAGIC From these query results, we'll generate a series of visualizations, which we'll combine into a dashboard.
+# MAGIC
+# MAGIC Finally, we'll walk through scheduling updates for queries and dashboards, and demonstrate setting alerts to help monitor the state of production datasets over time.
+# MAGIC
+# MAGIC ## Learning Objectives
+# MAGIC By the end of this lesson, you should be able to:
+# MAGIC * Use Databricks SQL as a tool to support production ETL tasks backing analytic workloads
+# MAGIC * Configure SQL queries and visualizations with the Databricks SQL Editor
+# MAGIC * Create dashboards in Databricks SQL
+# MAGIC * Schedule updates for queries and dashboards
+# MAGIC * Set alerts for SQL queries
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC ## Run Setup Script
+# MAGIC The following cells runs a notebook that defines a class we'll use to generate SQL queries.
+
+# COMMAND ----------
+
+# MAGIC %run ../Includes/Classroom-Setup-12.1
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC ## Create a Demo Database
+# MAGIC Execute the following cell and copy the results into the Databricks SQL Editor.
+# MAGIC
+# MAGIC These queries:
+# MAGIC * Create a new database
+# MAGIC * Declare two tables (we'll use these for loading data)
+# MAGIC * Declare two functions (we'll use these for generating data)
+# MAGIC
+# MAGIC Once copied, execute the query using the **Run** button.
+
+# COMMAND ----------
+
+DA.generate_config()
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC **NOTE**: The queries above are only designed to be run once after resetting the demo completely to reconfigure the environment. Users will need to have **`CREATE`** and **`USAGE`** permissions on the catalog to execute them.
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC
+# MAGIC
+# MAGIC **WARNING:** Make sure to select your database before proceeding as the **`USE`** statement
doesn't yet change the database against which your queries will execute
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC ## Create a Query to Load Data
+# MAGIC Steps:
+# MAGIC 1. Execute the cell below to print out a formatted SQL query for loading data in the **`user_ping`** table created in the previous step.
+# MAGIC 1. Save this query with the name **Load Ping Data**.
+# MAGIC 1. Run this query to load a batch of data.
+
+# COMMAND ----------
+
+DA.generate_load()
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC Executing the query should load some data and return a preview of the data in the table.
+# MAGIC
+# MAGIC **NOTE**: Random numbers are being used to define and load data, so each user will have slightly different values present.
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC ## Set a Query Refresh Schedule
+# MAGIC
+# MAGIC Steps:
+# MAGIC 1. Locate the **Refresh Schedule** field at the bottom right of the SQL query editor box; click the blue **Never**
+# MAGIC 1. Use the drop down to change to Refresh every **1 minute**
+# MAGIC 1. For **Ends**, click the **On** radio button
+# MAGIC 1. Select tomorrow's date
+# MAGIC 1. Click **OK**
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC ## Create a Query to Track Total Records
+# MAGIC Steps:
+# MAGIC 1. Execute the cell below.
+# MAGIC 1. Save this query with the name **User Counts**.
+# MAGIC 1. Run the query to calculate the current results.
+
+# COMMAND ----------
+
+DA.generate_user_counts()
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC ## Create a Bar Graph Visualization
+# MAGIC
+# MAGIC Steps:
+# MAGIC 1. Click the **Add Visualization** button, located beneath the Refresh Schedule button in the bottom right-hand corner of the query window
+# MAGIC 1. Click on the name (should default to something like **`Visualization 1`**) and change the name to **Total User Records**
+# MAGIC 1. Set **`user_id`** for the **X Column**
+# MAGIC 1. Set **`total_records`** for the **Y Columns**
+# MAGIC 1. Click **Save**
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC ## Create a New Dashboard
+# MAGIC
+# MAGIC Steps:
+# MAGIC 1. Click the button with three vertical dots at the bottom of the screen and select **Add to Dashboard**.
+# MAGIC 1. Click the **Create new dashboard** option
+# MAGIC 1. Name your dashboard User Ping Summary **``**
+# MAGIC 1. Click **Save** to create the new dashboard
+# MAGIC 1. Your newly created dashboard should now be selected as the target; click **OK** to add your visualization
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC ## Create a Query to Calculate the Recent Average Ping
+# MAGIC Steps:
+# MAGIC 1. Execute the cell below to print out the formatted SQL query.
+# MAGIC 1. Save this query with the name **Avg Ping**.
+# MAGIC 1. Run the query to calculate the current results.
+
+# COMMAND ----------
+
+DA.generate_avg_ping()
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC ## Add a Line Plot Visualization to your Dashboard
+# MAGIC
+# MAGIC Steps:
+# MAGIC 1. Click the **Add Visualization** button
+# MAGIC 1. Click on the name (should default to something like **`Visualization 1`**) and change the name to **Avg User Ping**
+# MAGIC 1. Select **`Line`** for the **Visualization Type**
+# MAGIC 1. Set **`end_time`** for the **X Column**
+# MAGIC 1. Set **`avg_ping`** for the **Y Columns**
+# MAGIC 1. Set **`user_id`** for the **Group by**
+# MAGIC 1. Click **Save**
+# MAGIC 1. Click the button with three vertical dots at the bottom of the screen and select **Add to Dashboard**.
+# MAGIC 1. Select the dashboard you created earlier
+# MAGIC 1. Click **OK** to add your visualization
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC ## Create a Query to Report Summary Statistics
+# MAGIC Steps:
+# MAGIC 1. Execute the cell below.
+# MAGIC 1. Save this query with the name **Ping Summary**.
+# MAGIC 1. Run the query to calculate the current results.
+
+# COMMAND ----------
+
+DA.generate_summary()
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC ## Add the Summary Table to your Dashboard
+# MAGIC
+# MAGIC Steps:
+# MAGIC 1. Click the button with three vertical dots at the bottom of the screen and select **Add to Dashboard**.
+# MAGIC 1. Select the dashboard you created earlier
+# MAGIC 1. Click **OK** to add your visualization
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC ## Review and Refresh your Dashboard
+# MAGIC
+# MAGIC Steps:
+# MAGIC 1. Use the left side bar to navigate to **Dashboards**
+# MAGIC 1. Find the dashboard you've added your queries to
+# MAGIC 1. Click the blue **Refresh** button to update your dashboard
+# MAGIC 1. Click the **Schedule** button to review dashboard scheduling options
+# MAGIC * Note that scheduling a dashboard to update will execute all queries associated with that dashboard
+# MAGIC * Do not schedule the dashboard at this time
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC ## Share your Dashboard
+# MAGIC
+# MAGIC Steps:
+# MAGIC 1. Click the blue **Share** button
+# MAGIC 1. Select **All Users** from the top field
+# MAGIC 1. Choose **Can Run** from the right field
+# MAGIC 1. Click **Add**
+# MAGIC 1. Change the **Credentials** to **Run as viewer**
+# MAGIC
+# MAGIC **NOTE**: At present, no other users should have any permissions to run your dashboard, as they have not been granted permissions to the underlying databases and tables using Table ACLs. If you wish other users to be able to trigger updates to your dashboard, you will either need to grant them permissions to **Run as owner** or add permissions for the tables referenced in your queries.
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC ## Set Up an Alert
+# MAGIC
+# MAGIC Steps:
+# MAGIC 1. Use the left side bar to navigate to **Alerts**
+# MAGIC 1. Click **Create Alert** in the top right
+# MAGIC 1. Click the field at the top left of the screen to give the alert a name **` Count Check`**
+# MAGIC 1. Select your **User Counts** query
+# MAGIC 1. For the **Trigger when** options, configure:
+# MAGIC * **Value column**: **`total_records`**
+# MAGIC * **Condition**: **`>`**
+# MAGIC * **Threshold**: **`15`**
+# MAGIC 1. For **Refresh**, select **Never**
+# MAGIC 1. Click **Create Alert**
+# MAGIC 1. On the next screen, click the blue **Refresh** in the top right to evaluate the alert
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC ## Review Alert Destination Options
+# MAGIC
+# MAGIC
+# MAGIC
+# MAGIC Steps:
+# MAGIC 1. From the preview of your alert, click the blue **Add** button to the right of **Destinations** on the right side of the screen
+# MAGIC 1. At the bottom of the window that pops up, locate the and click the blue text in the message **Create new destinations in Alert Destinations**
+# MAGIC 1. Review the available alerting options
+
+# COMMAND ----------
+
+DA.cleanup()
+
+# COMMAND ----------
+
+# MAGIC %md-sandbox
+# MAGIC © 2022 Databricks, Inc. All rights reserved.
+# MAGIC Apache, Apache Spark, Spark and the Spark logo are trademarks of the Apache Software Foundation.
+# MAGIC
+# MAGIC Privacy Policy | Terms of Use | Support
diff --git a/Data-Engineering-with-Databricks/Solutions/12 - Productionalizing Dashboards and Queries in DBSQL/DE 12.2L - OPTIONAL Capstone/DE 12.2.1L - Instructions and Configuration.py b/Data-Engineering-with-Databricks/Solutions/12 - Productionalizing Dashboards and Queries in DBSQL/DE 12.2L - OPTIONAL Capstone/DE 12.2.1L - Instructions and Configuration.py
new file mode 100644
index 0000000..41f73f6
--- /dev/null
+++ b/Data-Engineering-with-Databricks/Solutions/12 - Productionalizing Dashboards and Queries in DBSQL/DE 12.2L - OPTIONAL Capstone/DE 12.2.1L - Instructions and Configuration.py
@@ -0,0 +1,236 @@
+# Databricks notebook source
+# MAGIC %md-sandbox
+# MAGIC
+# MAGIC
+# MAGIC

+# MAGIC
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC
+# MAGIC ## End-to-End ETL in the Lakehouse
+# MAGIC
+# MAGIC In this notebook, you will pull together concepts learned throughout the course to complete an example data pipeline.
+# MAGIC
+# MAGIC The following is a non-exhaustive list of skills and tasks necessary to successfully complete this exercise:
+# MAGIC * Using Databricks notebooks to write queries in SQL and Python
+# MAGIC * Creating and modifying databases, tables, and views
+# MAGIC * Using Auto Loader and Spark Structured Streaming for incremental data processing in a multi-hop architecture
+# MAGIC * Using Delta Live Table SQL syntax
+# MAGIC * Configuring a Delta Live Table pipeline for continuous processing
+# MAGIC * Using Databricks Jobs to orchestrate tasks from notebooks stored in Repos
+# MAGIC * Setting chronological scheduling for Databricks Jobs
+# MAGIC * Defining queries in Databricks SQL
+# MAGIC * Creating visualizations in Databricks SQL
+# MAGIC * Defining Databricks SQL dashboards to review metrics and results
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC ## Run Setup
+# MAGIC Run the following cell to reset all the databases and directories associated with this lab.
+
+# COMMAND ----------
+
+# MAGIC %run ../../Includes/Classroom-Setup-12.2.1L
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC ## Land Initial Data
+# MAGIC Seed the landing zone with some data before proceeding.
+
+# COMMAND ----------
+
+DA.data_factory.load()
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC ## Create and Configure a DLT Pipeline
+# MAGIC **NOTE**: The main difference between the instructions here and in previous labs with DLT is that in this instance, we will be setting up our pipeline for **Continuous** execution in **Production** mode.
+
+# COMMAND ----------
+
+print_pipeline_config()
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC Steps:
+# MAGIC 1. Click the **Jobs** button on the sidebar.
+# MAGIC 1. Select the **Delta Live Tables** tab.
+# MAGIC 1. Click **Create Pipeline**.
+# MAGIC 1. Fill in a **Pipeline Name** - because these names must be unique, we suggest using the **Pipline Name** provided in the cell above.
+# MAGIC 1. For **Notebook Libraries**, use the navigator to locate and select the notebook **DE 12.2.2L - DLT Task**.
+# MAGIC * Alternatively, you can copy the **Notebook Path** specified above and paste it into the field provided.
+# MAGIC 1. Configure the Source
+# MAGIC * Click **`Add configuration`**
+# MAGIC * Enter the word **`source`** in the **Key** field
+# MAGIC * Enter the **Source** value specified above to the **`Value`** field
+# MAGIC 1. In the **Target** field, specify the database name printed out next to **Target** in the cell above.
+# MAGIC This should follow the pattern **`dbacademy__dewd_cap_12`**
+# MAGIC 1. In the **Storage location** field, copy the directory as printed above.
+# MAGIC 1. For **Pipeline Mode**, select **Continuous**
+# MAGIC 1. Uncheck the **Enable autoscaling** box
+# MAGIC 1. Set the number of workers to **`1`** (one)
+# MAGIC 1. Click **Create**.
+# MAGIC 1. After the UI updates, change from **Development** to **Production** mode
+# MAGIC
+# MAGIC This should begin the deployment of infrastructure.
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC ## Schedule a Notebook Job
+# MAGIC
+# MAGIC Our DLT pipeline is setup to process data as soon as it arrives.
+# MAGIC
+# MAGIC We'll schedule a notebook to land a new batch of data each minute so we can see this functionality in action.
+# MAGIC
+# MAGIC Before we start run the following cell to get the values used in this step.
+
+# COMMAND ----------
+
+print_job_config()
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC Steps:
+# MAGIC 1. Navigate to the Jobs UI using the Databricks left side navigation bar.
+# MAGIC 1. Click the blue **Create Job** button
+# MAGIC 1. Configure the task:
+# MAGIC 1. Enter **Land-Data** for the task name
+# MAGIC 1. Select the notebook **DE 12.2.3L - Land New Data** using the notebook picker
+# MAGIC 1. From the **Cluster** dropdown, under **Existing All Purpose Cluster**, select your cluster
+# MAGIC 1. Click **Create**
+# MAGIC 1. In the top-left of the screen rename the job (not the task) from **`Land-Data`** (the defaulted value) to the **Job Name** provided for you in the previous cell.
+# MAGIC
+# MAGIC
**Note**: When selecting your all purpose cluster, you will get a warning about how this will be billed as all purpose compute. Production jobs should always be scheduled against new job clusters appropriately sized for the workload, as this is billed at a much lower rate.
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC ## Set a Chronological Schedule for your Job
+# MAGIC Steps:
+# MAGIC 1. Navigate to the **Jobs UI** and click on the job you just created.
+# MAGIC 1. Locate the **Schedule** section in the side panel on the right.
+# MAGIC 1. Click on the **Edit schedule** button to explore scheduling options.
+# MAGIC 1. Change the **Schedule type** field from **Manual** to **Scheduled**, which will bring up a chron scheduling UI.
+# MAGIC 1. Set the schedule to update **Every 2**, **Minutes** from **00**
+# MAGIC 1. Click **Save**
+# MAGIC
+# MAGIC **NOTE**: If you wish, you can click **Run now** to trigger the first run, or wait until the top of the next minute to make sure your scheduling has worked successfully.
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC ## Register DLT Event Metrics for Querying with DBSQL
+# MAGIC
+# MAGIC The following cell prints out SQL statements to register the DLT event logs to your target database for querying in DBSQL.
+# MAGIC
+# MAGIC Execute the output code with the DBSQL Query Editor to register these tables and views.
+# MAGIC
+# MAGIC Explore each and make note of the logged event metrics.
+
+# COMMAND ----------
+
+DA.generate_register_dlt_event_metrics_sql()
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC ## Define a Query on the Gold Table
+# MAGIC
+# MAGIC The **daily_patient_avg** table is automatically updated each time a new batch of data is processed through the DLT pipeline. Each time a query is executed against this table, DBSQL will confirm if there is a newer version and then materialize results from the newest available version.
+# MAGIC
+# MAGIC Run the following cell to print out a query with your database name. Save this as a DBSQL query.
+
+# COMMAND ----------
+
+DA.generate_daily_patient_avg()
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC ## Add a Line Plot Visualization
+# MAGIC
+# MAGIC To track trends in patient averages over time, create a line plot and add it to a new dashboard.
+# MAGIC
+# MAGIC Create a line plot with the following settings:
+# MAGIC * **X Column**: **`date`**
+# MAGIC * **Y Column**: **`avg_heartrate`**
+# MAGIC * **Group By**: **`name`**
+# MAGIC
+# MAGIC Add this visualization to a dashboard.
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC ## Track Data Processing Progress
+# MAGIC
+# MAGIC The code below extracts the **`flow_name`**, **`timestamp`**, and **`num_output_rows`** from the DLT event logs.
+# MAGIC
+# MAGIC Save this query in DBSQL, then define a bar plot visualization that shows:
+# MAGIC * **X Column**: **`timestamp`**
+# MAGIC * **Y Column**: **`num_output_rows`**
+# MAGIC * **Group By**: **`flow_name`**
+# MAGIC
+# MAGIC Add your visualization to your dashboard.
+
+# COMMAND ----------
+
+DA.generate_visualization_query()
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC ## Refresh your Dashboard and Track Results
+# MAGIC
+# MAGIC The **Land-Data** notebook scheduled with Jobs above has 12 batches of data, each representing a month of recordings for our small sampling of patients. As configured per our instructions, it should take just over 20 minutes for all of these batches of data to be triggered and processed (we scheduled the Databricks Job to run every 2 minutes, and batches of data will process through our pipeline very quickly after initial ingestion).
+# MAGIC
+# MAGIC Refresh your dashboard and review your visualizations to see how many batches of data have been processed. (If you followed the instructions as outlined here, there should be 12 distinct flow updates tracked by your DLT metrics.) If all source data has not yet been processed, you can go back to the Databricks Jobs UI and manually trigger additional batches.
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC
+# MAGIC With everything configured, you can now continue to the final part of your lab in the notebook [DE 12.2.4L - Final Steps]($./DE 12.2.4L - Final Steps)
+
+# COMMAND ----------
+
+# MAGIC %md-sandbox
+# MAGIC © 2022 Databricks, Inc. All rights reserved.
+# MAGIC Apache, Apache Spark, Spark and the Spark logo are trademarks of the Apache Software Foundation.
+# MAGIC
+# MAGIC Privacy Policy | Terms of Use | Support
diff --git a/Data-Engineering-With-Databricks/04 - Managing Data Access and Production Pipelines/4.1.2 - LAB - Jobs/2 - DLT Job.sql b/Data-Engineering-with-Databricks/Solutions/12 - Productionalizing Dashboards and Queries in DBSQL/DE 12.2L - OPTIONAL Capstone/DE 12.2.2L - DLT Task.sql
similarity index 81%
rename from Data-Engineering-With-Databricks/04 - Managing Data Access and Production Pipelines/4.1.2 - LAB - Jobs/2 - DLT Job.sql
rename to Data-Engineering-with-Databricks/Solutions/12 - Productionalizing Dashboards and Queries in DBSQL/DE 12.2L - OPTIONAL Capstone/DE 12.2.2L - DLT Task.sql
index 55e4d4e..a812762 100644
--- a/Data-Engineering-With-Databricks/04 - Managing Data Access and Production Pipelines/4.1.2 - LAB - Jobs/2 - DLT Job.sql
+++ b/Data-Engineering-with-Databricks/Solutions/12 - Productionalizing Dashboards and Queries in DBSQL/DE 12.2L - OPTIONAL Capstone/DE 12.2.2L - DLT Task.sql
@@ -1,17 +1,17 @@
-- Databricks notebook source
-CREATE INCREMENTAL LIVE TABLE recordings_bronze
+CREATE OR REFRESH STREAMING LIVE TABLE recordings_bronze
AS SELECT current_timestamp() receipt_time, input_file_name() source_file, *
FROM cloud_files("${source}", "json", map("cloudFiles.schemaHints", "time DOUBLE"))
-- COMMAND ----------
-CREATE INCREMENTAL LIVE TABLE pii
+CREATE OR REFRESH STREAMING LIVE TABLE pii
AS SELECT *
FROM cloud_files("/mnt/training/healthcare/patient", "csv", map("header", "true", "cloudFiles.inferColumnTypes", "true"))
-- COMMAND ----------
-CREATE INCREMENTAL LIVE TABLE recordings_enriched
+CREATE OR REFRESH STREAMING LIVE TABLE recordings_enriched
(CONSTRAINT positive_heartrate EXPECT (heartrate > 0) ON VIOLATION DROP ROW)
AS SELECT
CAST(a.device_id AS INTEGER) device_id,
@@ -25,7 +25,7 @@ AS SELECT
-- COMMAND ----------
-CREATE INCREMENTAL LIVE TABLE daily_patient_avg
+CREATE OR REFRESH STREAMING LIVE TABLE daily_patient_avg
COMMENT "Daily mean heartrates by patient"
AS SELECT mrn, name, MEAN(heartrate) avg_heartrate, DATE(time) `date`
FROM STREAM(live.recordings_enriched)
diff --git a/Data-Engineering-with-Databricks/Solutions/12 - Productionalizing Dashboards and Queries in DBSQL/DE 12.2L - OPTIONAL Capstone/DE 12.2.3L - Land New Data.py b/Data-Engineering-with-Databricks/Solutions/12 - Productionalizing Dashboards and Queries in DBSQL/DE 12.2L - OPTIONAL Capstone/DE 12.2.3L - Land New Data.py
new file mode 100644
index 0000000..01adf27
--- /dev/null
+++ b/Data-Engineering-with-Databricks/Solutions/12 - Productionalizing Dashboards and Queries in DBSQL/DE 12.2L - OPTIONAL Capstone/DE 12.2.3L - Land New Data.py
@@ -0,0 +1,7 @@
+# Databricks notebook source
+# MAGIC %run ../../Includes/Classroom-Setup-12.2.3L
+
+# COMMAND ----------
+
+DA.data_factory.load()
+
diff --git a/Data-Engineering-with-Databricks/Solutions/12 - Productionalizing Dashboards and Queries in DBSQL/DE 12.2L - OPTIONAL Capstone/DE 12.2.4L - Final Steps.py b/Data-Engineering-with-Databricks/Solutions/12 - Productionalizing Dashboards and Queries in DBSQL/DE 12.2L - OPTIONAL Capstone/DE 12.2.4L - Final Steps.py
new file mode 100644
index 0000000..73ca1fb
--- /dev/null
+++ b/Data-Engineering-with-Databricks/Solutions/12 - Productionalizing Dashboards and Queries in DBSQL/DE 12.2L - OPTIONAL Capstone/DE 12.2.4L - Final Steps.py
@@ -0,0 +1,137 @@
+# Databricks notebook source
+# MAGIC %md-sandbox
+# MAGIC
+# MAGIC
+# MAGIC

+# MAGIC
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC
+# MAGIC # End-to-End ETL in the Lakehouse
+# MAGIC ## Final Steps
+# MAGIC
+# MAGIC We are picking up from the first notebook in this lab, [DE 12.2.1L - Instructions and Configuration]($./DE 12.2.1L - Instructions and Configuration)
+# MAGIC
+# MAGIC If everything is setup correctly, you should have:
+# MAGIC * A DLT Pipeline running in **Continuous** mode
+# MAGIC * A job that is feeding that pipline new data every 2 minutes
+# MAGIC * A series of Databricks SQL Queries analysing the outputs of that pipeline
+
+# COMMAND ----------
+
+# MAGIC %run ../../Includes/Classroom-Setup-12.2.4L
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC ## Execute a Query to Repair Broken Data
+# MAGIC
+# MAGIC Review the code that defined the **`recordings_enriched`** table to identify the filter applied for the quality check.
+# MAGIC
+# MAGIC In the cell below, write a query that returns all the records from the **`recordings_bronze`** table that were refused by this quality check.
+
+# COMMAND ----------
+
+# MAGIC %sql
+# MAGIC -- ANSWER
+# MAGIC SELECT * FROM ${da.db_name}.recordings_bronze WHERE heartrate <= 0
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC For the purposes of our demo, let's assume that thorough manual review of our data and systems has demonstrated that occasionally otherwise valid heartrate recordings are returned as negative values.
+# MAGIC
+# MAGIC Run the following query to examine these same rows with the negative sign removed.
+
+# COMMAND ----------
+
+# MAGIC %sql
+# MAGIC SELECT abs(heartrate), * FROM ${da.db_name}.recordings_bronze WHERE heartrate <= 0
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC To complete our dataset, we wish to insert these fixed records into the silver **`recordings_enriched`** table.
+# MAGIC
+# MAGIC Use the cell below to update the query used in the DLT pipeline to execute this repair.
+# MAGIC
+# MAGIC **NOTE**: Make sure you update the code to only process those records that were previously rejected due to the quality check.
+
+# COMMAND ----------
+
+# MAGIC %sql
+# MAGIC -- ANSWER
+# MAGIC
+# MAGIC MERGE INTO ${da.db_name}.recordings_enriched t
+# MAGIC USING (SELECT
+# MAGIC CAST(a.device_id AS INTEGER) device_id,
+# MAGIC CAST(a.mrn AS LONG) mrn,
+# MAGIC abs(CAST(a.heartrate AS DOUBLE)) heartrate,
+# MAGIC CAST(from_unixtime(a.time, 'yyyy-MM-dd HH:mm:ss') AS TIMESTAMP) time,
+# MAGIC b.name
+# MAGIC FROM ${da.db_name}.recordings_bronze a
+# MAGIC INNER JOIN ${da.db_name}.pii b
+# MAGIC ON a.mrn = b.mrn
+# MAGIC WHERE heartrate <= 0) v
+# MAGIC ON t.mrn=v.mrn AND t.time=v.time
+# MAGIC WHEN NOT MATCHED THEN INSERT *
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC Use the cell below to manually or programmatically confirm that this update has been successful.
+# MAGIC
+# MAGIC (The total number of records in the **`recordings_bronze`** should now be equal to the total records in **`recordings_enriched`**).
+
+# COMMAND ----------
+
+# ANSWER
+assert spark.table(f"{DA.db_name}.recordings_bronze").count() == spark.table(f"{DA.db_name}.recordings_enriched").count()
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC ## Consider Production Data Permissions
+# MAGIC
+# MAGIC Note that while our manual repair of the data was successful, as the owner of these datasets, by default we have permissions to modify or delete these data from any location we're executing code.
+# MAGIC
+# MAGIC To put this another way: our current permissions would allow us to change or drop our production tables permanently if an errant SQL query is accidentally executed with the current user's permissions (or if other users are granted similar permissions).
+# MAGIC
+# MAGIC While for the purposes of this lab, we desired to have full permissions on our data, as we move code from development to production, it is safer to leverage service principals when scheduling Jobs and DLT Pipelines to avoid accidental data modifications.
+
+# COMMAND ----------
+
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC ## Shut Down Production Infrastructure
+# MAGIC
+# MAGIC Note that Databricks Jobs, DLT Pipelines, and scheduled DBSQL queries and dashboards are all designed to provide sustained execution of production code. In this end-to-end demo, you were instructed to configure a Job and Pipeline for continuous data processing. To prevent these workloads from continuing to execute, you should **Pause** your Databricks Job and **Stop** your DLT pipeline. Deleting these assets will also ensure that production infrastructure is terminated.
+# MAGIC
+# MAGIC **NOTE**: All instructions for DBSQL asset scheduling in previous lessons instructed users to set the update schedule to end tomorrow. You may choose to go back and also cancel these updates to prevent DBSQL endpoints from staying on until that time.
+
+# COMMAND ----------
+
+DA.cleanup()
+
+# COMMAND ----------
+
+# MAGIC %md-sandbox
+# MAGIC © 2022 Databricks, Inc. All rights reserved.
+# MAGIC Apache, Apache Spark, Spark and the Spark logo are trademarks of the Apache Software Foundation.
+# MAGIC
+# MAGIC Privacy Policy | Terms of Use | Support
diff --git a/Data-Engineering-with-Databricks/Solutions/Includes/Classroom-Setup-1.2.py b/Data-Engineering-with-Databricks/Solutions/Includes/Classroom-Setup-1.2.py
new file mode 100644
index 0000000..d0762d6
--- /dev/null
+++ b/Data-Engineering-with-Databricks/Solutions/Includes/Classroom-Setup-1.2.py
@@ -0,0 +1,21 @@
+# Databricks notebook source
+# MAGIC %run ./_utility-methods $lesson="1.2"
+
+# COMMAND ----------
+
+def create_demo_tmp_vw():
+ print("Creating the temp view demo_tmp_vw")
+
+ spark.sql("""
+ CREATE OR REPLACE TEMP VIEW demo_tmp_vw(name, value) AS VALUES
+ ("Yi", 1),
+ ("Ali", 2),
+ ("Selina", 3)
+ """)
+
+# COMMAND ----------
+
+DA.init(create_db=False)
+create_demo_tmp_vw()
+DA.conclude_setup()
+
diff --git a/Data-Engineering-with-Databricks/Solutions/Includes/Classroom-Setup-11.1.py b/Data-Engineering-with-Databricks/Solutions/Includes/Classroom-Setup-11.1.py
new file mode 100644
index 0000000..43c5046
--- /dev/null
+++ b/Data-Engineering-with-Databricks/Solutions/Includes/Classroom-Setup-11.1.py
@@ -0,0 +1,53 @@
+# Databricks notebook source
+# MAGIC %run ./_utility-methods $lesson="11.1"
+
+# COMMAND ----------
+
+def print_sql(rows, sql):
+ html = f""""""
+ displayHTML(html)
+
+# COMMAND ----------
+
+def _generate_users_table():
+ print_sql(20, f"""
+CREATE DATABASE IF NOT EXISTS {DA.db_name}
+LOCATION '{DA.paths.user_db}';
+
+USE {DA.db_name};
+
+CREATE TABLE users (id INT, name STRING, value DOUBLE, state STRING);
+
+INSERT INTO users
+VALUES (1, "Yve", 1.0, "CA"),
+ (2, "Omar", 2.5, "NY"),
+ (3, "Elia", 3.3, "OH"),
+ (4, "Rebecca", 4.7, "TX"),
+ (5, "Ameena", 5.3, "CA"),
+ (6, "Ling", 6.6, "NY"),
+ (7, "Pedro", 7.1, "KY");
+
+CREATE VIEW ny_users_vw
+AS SELECT * FROM users WHERE state = 'NY';
+""")
+
+DA.generate_users_table = _generate_users_table
+
+# COMMAND ----------
+
+def _generate_create_database_with_grants():
+ print_sql(7, f"""
+CREATE DATABASE {DA.db_name}_derivative;
+
+GRANT USAGE, READ_METADATA, CREATE, MODIFY, SELECT ON DATABASE `{DA.db_name}_derivative` TO `users`;
+
+SHOW GRANT ON DATABASE `{DA.db_name}_derivative`;""")
+
+DA.generate_create_database_with_grants = _generate_create_database_with_grants
+
+# COMMAND ----------
+
+DA.cleanup()
+DA.init(create_db=False)
+DA.conclude_setup()
+
diff --git a/Data-Engineering-with-Databricks/Solutions/Includes/Classroom-Setup-11.2L.py b/Data-Engineering-with-Databricks/Solutions/Includes/Classroom-Setup-11.2L.py
new file mode 100644
index 0000000..af1f1d3
--- /dev/null
+++ b/Data-Engineering-with-Databricks/Solutions/Includes/Classroom-Setup-11.2L.py
@@ -0,0 +1,122 @@
+# Databricks notebook source
+# MAGIC %run ./_utility-methods $lesson="acls_lab"
+
+# COMMAND ----------
+
+def print_sql(rows, sql):
+ displayHTML(f"""""")
+
+# COMMAND ----------
+
+def _generate_query():
+ import re
+ import random
+
+ print_sql(23, f"""
+CREATE DATABASE IF NOT EXISTS {DA.db_name}
+LOCATION '{DA.paths.user_db}';
+
+USE {DA.db_name};
+
+CREATE TABLE beans
+(name STRING, color STRING, grams FLOAT, delicious BOOLEAN);
+
+INSERT INTO beans
+VALUES ('black', 'black', {random.uniform(0, 5000):.2f}, {random.choice(["true", "false"])}),
+ ('lentils', 'brown', {random.uniform(0, 5000):.2f}, {random.choice(["true", "false"])}),
+ ('jelly', 'rainbow', {random.uniform(0, 5000):.2f}, {random.choice(["true", "false"])}),
+ ('pinto', 'brown', {random.uniform(0, 5000):.2f}, {random.choice(["true", "false"])}),
+ ('green', 'green', {random.uniform(0, 5000):.2f}, {random.choice(["true", "false"])}),
+ ('beanbag chair', 'white', {random.uniform(0, 5000):.2f}, {random.choice(["true", "false"])}),
+ ('lentils', 'green', {random.uniform(0, 5000):.2f}, {random.choice(["true", "false"])}),
+ ('kidney', 'red', {random.uniform(0, 5000):.2f}, {random.choice(["true", "false"])}),
+ ('castor', 'brown', {random.uniform(0, 5000):.2f}, {random.choice(["true", "false"])});
+
+CREATE VIEW tasty_beans
+AS SELECT * FROM beans WHERE delicious = true;
+ """)
+
+DA.generate_query = _generate_query
+
+# COMMAND ----------
+
+def _generate_confirmation_query(username):
+ import re
+ clean_username = re.sub("[^a-zA-Z0-9]", "_", username)
+ database = DA.db_name.replace(DA.clean_username, clean_username)
+
+ print_sql(11, f"""
+USE {database};
+
+SELECT * FROM beans;
+SELECT * FROM tasty_beans;
+SELECT * FROM beans MINUS SELECT * FROM tasty_beans;
+
+UPDATE beans
+SET color = 'pink'
+WHERE name = 'black'
+""")
+
+DA.generate_confirmation_query = _generate_confirmation_query
+
+# COMMAND ----------
+
+def _generate_union_query():
+ print_sql(6, f"""
+USE {DA.db_name};
+
+SELECT * FROM beans
+UNION ALL TABLE beans;""")
+
+DA.generate_union_query = _generate_union_query
+
+# COMMAND ----------
+
+def _generate_derivative_view():
+ print_sql(7, f"""
+USE {DA.db_name};
+
+CREATE VIEW our_beans
+AS SELECT * FROM beans
+UNION ALL TABLE beans;
+""")
+
+DA.generate_derivative_view = _generate_derivative_view
+
+# COMMAND ----------
+
+def _generate_partner_view(username):
+ import re
+ clean_username = re.sub("[^a-zA-Z0-9]", "_", username)
+ database = DA.db_name.replace(DA.clean_username, clean_username)
+
+ print_sql(7, f"""
+USE {database};
+
+SELECT name, color, delicious, sum(grams)
+FROM our_beans
+GROUP BY name, color, delicious;""")
+
+DA.generate_partner_view = _generate_partner_view
+
+# COMMAND ----------
+
+def _generate_delete_query(username):
+ import re
+ clean_username = re.sub("[^a-zA-Z0-9]", "_", username)
+ database = DA.db_name.replace(DA.clean_username, clean_username)
+
+ print_sql(5, f"""
+USE {database};
+
+DELETE FROM beans
+ """)
+
+DA.generate_delete_query = _generate_delete_query
+
+# COMMAND ----------
+
+DA.cleanup()
+DA.init(create_db=False)
+DA.conclude_setup()
+
diff --git a/Data-Engineering-with-Databricks/Solutions/Includes/Classroom-Setup-12.1.py b/Data-Engineering-with-Databricks/Solutions/Includes/Classroom-Setup-12.1.py
new file mode 100644
index 0000000..d2f0100
--- /dev/null
+++ b/Data-Engineering-with-Databricks/Solutions/Includes/Classroom-Setup-12.1.py
@@ -0,0 +1,118 @@
+# Databricks notebook source
+# MAGIC %run ./_utility-methods $lesson="12.1"
+
+# COMMAND ----------
+
+DA.cleanup()
+DA.init(create_db=False)
+DA.conclude_setup()
+
+# COMMAND ----------
+
+def print_sql(rows, sql):
+ html = f""
+ displayHTML(html)
+
+# COMMAND ----------
+
+def _generate_config():
+ print_sql(33, f"""
+CREATE DATABASE IF NOT EXISTS {DA.db_name}
+LOCATION '{DA.paths.working_dir}';
+
+USE {DA.db_name};
+
+CREATE TABLE user_ping
+(user_id STRING, ping INTEGER, time TIMESTAMP);
+
+CREATE TABLE user_ids (user_id STRING);
+
+INSERT INTO user_ids VALUES
+("potato_luver"),
+("beanbag_lyfe"),
+("default_username"),
+("the_king"),
+("n00b"),
+("frodo"),
+("data_the_kid"),
+("el_matador"),
+("the_wiz");
+
+CREATE FUNCTION get_ping()
+ RETURNS INT
+ RETURN int(rand() * 250);
+
+CREATE FUNCTION is_active()
+ RETURNS BOOLEAN
+ RETURN CASE
+ WHEN rand() > .25 THEN true
+ ELSE false
+ END;
+""")
+
+DA.generate_config = _generate_config
+
+# COMMAND ----------
+
+def _generate_load():
+ print_sql(12, f"""
+USE {DA.db_name};
+
+INSERT INTO user_ping
+SELECT *,
+ get_ping() ping,
+ current_timestamp() time
+FROM user_ids
+WHERE is_active()=true;
+
+SELECT * FROM user_ping;
+""")
+
+DA.generate_load = _generate_load
+
+# COMMAND ----------
+
+def _generate_user_counts():
+ print_sql(10, f"""
+USE {DA.db_name};
+
+SELECT user_id, count(*) total_records
+FROM user_ping
+GROUP BY user_id
+ORDER BY
+ total_records DESC,
+ user_id ASC;
+""")
+
+DA.generate_user_counts = _generate_user_counts
+
+# COMMAND ----------
+
+def _generate_avg_ping():
+ print_sql(10, f"""
+USE {DA.db_name};
+
+SELECT user_id, window.end end_time, mean(ping) avg_ping
+FROM user_ping
+GROUP BY user_id, window(time, '3 minutes')
+ORDER BY
+ end_time DESC,
+ user_id ASC;
+""")
+
+DA.generate_avg_ping = _generate_avg_ping
+
+# COMMAND ----------
+
+def _generate_summary():
+ print_sql(8, f"""
+USE {DA.db_name};
+
+SELECT user_id, min(time) first_seen, max(time) last_seen, count(*) total_records, avg(ping) total_avg_ping
+FROM user_ping
+GROUP BY user_id
+ORDER BY user_id ASC;
+""")
+
+DA.generate_summary = _generate_summary
+
diff --git a/Data-Engineering-with-Databricks/Solutions/Includes/Classroom-Setup-12.2.1L.py b/Data-Engineering-with-Databricks/Solutions/Includes/Classroom-Setup-12.2.1L.py
new file mode 100644
index 0000000..4b906bf
--- /dev/null
+++ b/Data-Engineering-with-Databricks/Solutions/Includes/Classroom-Setup-12.2.1L.py
@@ -0,0 +1,83 @@
+# Databricks notebook source
+# MAGIC %run ./_utility-methods $lesson="cap_12"
+
+# COMMAND ----------
+
+# MAGIC %run ./mount-datasets
+
+# COMMAND ----------
+
+def print_sql(rows, sql):
+ displayHTML(f"""""")
+
+
+# COMMAND ----------
+
+def _generate_daily_patient_avg():
+ sql = f"SELECT * FROM {DA.db_name}.daily_patient_avg"
+ print_sql(3, sql)
+
+DA.generate_daily_patient_avg = _generate_daily_patient_avg
+
+# COMMAND ----------
+
+def _generate_visualization_query():
+ sql = f"""
+SELECT flow_name, timestamp, int(details:flow_progress:metrics:num_output_rows) num_output_rows
+FROM {DA.db_name}.dlt_metrics
+ORDER BY timestamp DESC;"""
+
+ print_sql(5, sql)
+
+DA.generate_visualization_query = _generate_visualization_query
+
+# COMMAND ----------
+
+generate_register_dlt_event_metrics_sql_string = ""
+
+def _generate_register_dlt_event_metrics_sql():
+ global generate_register_dlt_event_metrics_sql_string
+
+ generate_register_dlt_event_metrics_sql_string = f"""
+CREATE TABLE IF NOT EXISTS {DA.db_name}.dlt_events
+LOCATION '{DA.paths.working_dir}/storage/system/events';
+
+CREATE VIEW IF NOT EXISTS {DA.db_name}.dlt_success AS
+SELECT * FROM {DA.db_name}.dlt_events
+WHERE details:flow_progress:metrics IS NOT NULL;
+
+CREATE VIEW IF NOT EXISTS {DA.db_name}.dlt_metrics AS
+SELECT timestamp, origin.flow_name, details
+FROM {DA.db_name}.dlt_success
+ORDER BY timestamp DESC;""".strip()
+
+ print_sql(13, generate_register_dlt_event_metrics_sql_string)
+
+DA.generate_register_dlt_event_metrics_sql = _generate_register_dlt_event_metrics_sql
+
+# COMMAND ----------
+
+def print_pipeline_config():
+ path = dbutils.entry_point.getDbutils().notebook().getContext().notebookPath().getOrElse(None)
+ path = "/".join(path.split("/")[:-1]) + "/DE 12.2.2L - DLT Task"
+
+ displayHTML(f"""
+ Pipeline Name: | Cap-12-{DA.username} |
+ Source: | {DA.paths.working_dir}/source/tracker |
+ Target: | {DA.db_name} |
+ Storage Location: | {DA.paths.working_dir}/storage |
+ Notebook Path: | {path} |
+
""")
+
+def print_job_config():
+ displayHTML(f"""
+ Job Name: | Cap-12-{DA.username} |
+
""")
+
+# COMMAND ----------
+
+DA.cleanup()
+DA.init()
+DA.data_factory = DltDataFactory()
+DA.conclude_setup()
+
diff --git a/Data-Engineering-with-Databricks/Solutions/Includes/Classroom-Setup-12.2.3L.py b/Data-Engineering-with-Databricks/Solutions/Includes/Classroom-Setup-12.2.3L.py
new file mode 100644
index 0000000..9777fb2
--- /dev/null
+++ b/Data-Engineering-with-Databricks/Solutions/Includes/Classroom-Setup-12.2.3L.py
@@ -0,0 +1,15 @@
+# Databricks notebook source
+# MAGIC %run ./_utility-methods $lesson="cap_12"
+
+# COMMAND ----------
+
+# MAGIC %run ./mount-datasets
+
+# COMMAND ----------
+
+# Don't clean up, continue where we left off.
+# DA.cleanup()
+DA.init(create_db=False)
+DA.data_factory = DltDataFactory()
+DA.conclude_setup()
+
diff --git a/Data-Engineering-with-Databricks/Solutions/Includes/Classroom-Setup-12.2.4L.py b/Data-Engineering-with-Databricks/Solutions/Includes/Classroom-Setup-12.2.4L.py
new file mode 100644
index 0000000..d9f6771
--- /dev/null
+++ b/Data-Engineering-with-Databricks/Solutions/Includes/Classroom-Setup-12.2.4L.py
@@ -0,0 +1,14 @@
+# Databricks notebook source
+# MAGIC %run ./_utility-methods $lesson="cap_12"
+
+# COMMAND ----------
+
+# MAGIC %run ./mount-datasets
+
+# COMMAND ----------
+
+# Don't clean up, continue where we left off.
+# DA.cleanup()
+DA.init(create_db=False)
+DA.conclude_setup()
+
diff --git a/Data-Engineering-with-Databricks/Solutions/Includes/Classroom-Setup-2.1.py b/Data-Engineering-with-Databricks/Solutions/Includes/Classroom-Setup-2.1.py
new file mode 100644
index 0000000..a4038dd
--- /dev/null
+++ b/Data-Engineering-with-Databricks/Solutions/Includes/Classroom-Setup-2.1.py
@@ -0,0 +1,9 @@
+# Databricks notebook source
+# MAGIC %run ./_utility-methods $lesson="2.1"
+
+# COMMAND ----------
+
+DA.cleanup()
+DA.init()
+DA.conclude_setup()
+
diff --git a/Data-Engineering-with-Databricks/Solutions/Includes/Classroom-Setup-2.2L.py b/Data-Engineering-with-Databricks/Solutions/Includes/Classroom-Setup-2.2L.py
new file mode 100644
index 0000000..16ed498
--- /dev/null
+++ b/Data-Engineering-with-Databricks/Solutions/Includes/Classroom-Setup-2.2L.py
@@ -0,0 +1,9 @@
+# Databricks notebook source
+# MAGIC %run ./_utility-methods $lesson="2.2L"
+
+# COMMAND ----------
+
+DA.cleanup()
+DA.init()
+DA.conclude_setup()
+
diff --git a/Data-Engineering-with-Databricks/Solutions/Includes/Classroom-Setup-2.3.py b/Data-Engineering-with-Databricks/Solutions/Includes/Classroom-Setup-2.3.py
new file mode 100644
index 0000000..60734f0
--- /dev/null
+++ b/Data-Engineering-with-Databricks/Solutions/Includes/Classroom-Setup-2.3.py
@@ -0,0 +1,9 @@
+# Databricks notebook source
+# MAGIC %run ./_utility-methods $lesson="2.3"
+
+# COMMAND ----------
+
+DA.cleanup()
+DA.init()
+DA.conclude_setup()
+
diff --git a/Data-Engineering-with-Databricks/Solutions/Includes/Classroom-Setup-2.4L.py b/Data-Engineering-with-Databricks/Solutions/Includes/Classroom-Setup-2.4L.py
new file mode 100644
index 0000000..b59dd06
--- /dev/null
+++ b/Data-Engineering-with-Databricks/Solutions/Includes/Classroom-Setup-2.4L.py
@@ -0,0 +1,9 @@
+# Databricks notebook source
+# MAGIC %run ./_utility-methods $lesson="2.4L"
+
+# COMMAND ----------
+
+DA.cleanup()
+DA.init()
+DA.conclude_setup()
+
diff --git a/Data-Engineering-with-Databricks/Solutions/Includes/Classroom-Setup-3.1.py b/Data-Engineering-with-Databricks/Solutions/Includes/Classroom-Setup-3.1.py
new file mode 100644
index 0000000..4562868
--- /dev/null
+++ b/Data-Engineering-with-Databricks/Solutions/Includes/Classroom-Setup-3.1.py
@@ -0,0 +1,12 @@
+# Databricks notebook source
+# MAGIC %run ./_utility-methods $lesson="3.1"
+
+# COMMAND ----------
+
+DA.cleanup()
+DA.init(create_db=False)
+install_dtavod_datasets(reinstall=False)
+print()
+copy_source_dataset(f"{DA.working_dir_prefix}/source/dtavod/flights/departuredelays.csv", f"{DA.paths.working_dir}/flights/departuredelays.csv", "csv", "flights")
+DA.conclude_setup()
+
diff --git a/Data-Engineering-with-Databricks/Solutions/Includes/Classroom-Setup-3.2A.py b/Data-Engineering-with-Databricks/Solutions/Includes/Classroom-Setup-3.2A.py
new file mode 100644
index 0000000..0d2d298
--- /dev/null
+++ b/Data-Engineering-with-Databricks/Solutions/Includes/Classroom-Setup-3.2A.py
@@ -0,0 +1,17 @@
+# Databricks notebook source
+# MAGIC %run ./_utility-methods $lesson="3.2"
+
+# COMMAND ----------
+
+DA.cleanup()
+DA.init()
+
+# Clean out the global_temp database.
+for row in spark.sql("SHOW TABLES IN global_temp").select("tableName").collect():
+ table_name = row[0]
+ spark.sql(f"DROP TABLE global_temp.{table_name}")
+
+print()
+install_dtavod_datasets(reinstall=False)
+DA.conclude_setup()
+
diff --git a/Data-Engineering-with-Databricks/Solutions/Includes/Classroom-Setup-3.2B.py b/Data-Engineering-with-Databricks/Solutions/Includes/Classroom-Setup-3.2B.py
new file mode 100644
index 0000000..397a759
--- /dev/null
+++ b/Data-Engineering-with-Databricks/Solutions/Includes/Classroom-Setup-3.2B.py
@@ -0,0 +1,22 @@
+# Databricks notebook source
+# MAGIC %run ./_utility-methods $lesson="3.2"
+
+# COMMAND ----------
+
+# We want the state from the previous lesson
+# DA.cleanup() # DO NOT EXECUTE
+
+tags = sc._jvm.scala.collection.JavaConversions.mapAsJavaMap(dbutils.entry_point.getDbutils().notebook().getContext().tags())
+is_job = "jobId" in tags
+if is_job: print("Mocking global temp view")
+
+DA.init(create_db=is_job)
+
+if is_job:
+ spark.sql(f"""USE {DA.db_name}""")
+ spark.sql("""CREATE TABLE IF NOT EXISTS external_table USING CSV OPTIONS (path '${da.paths.working_dir}/flight_delays', header "true", mode "FAILFAST");""")
+ spark.sql("""CREATE OR REPLACE GLOBAL TEMPORARY VIEW global_temp_view_dist_gt_1000 AS SELECT * FROM external_table WHERE distance > 1000;""")
+
+print()
+DA.conclude_setup()
+
diff --git a/Data-Engineering-with-Databricks/Solutions/Includes/Classroom-Setup-3.3L.py b/Data-Engineering-with-Databricks/Solutions/Includes/Classroom-Setup-3.3L.py
new file mode 100644
index 0000000..7f5c2c6
--- /dev/null
+++ b/Data-Engineering-with-Databricks/Solutions/Includes/Classroom-Setup-3.3L.py
@@ -0,0 +1,12 @@
+# Databricks notebook source
+# MAGIC %run ./_utility-methods $lesson="3.3L"
+
+# COMMAND ----------
+
+DA.cleanup()
+DA.init(create_db=False)
+install_dtavod_datasets(reinstall=False)
+print()
+copy_source_dataset(f"{DA.working_dir_prefix}/source/dtavod/weather", f"{DA.paths.working_dir}/weather", "parquet", "weather")
+DA.conclude_setup()
+
diff --git a/Data-Engineering-with-Databricks/Solutions/Includes/Classroom-Setup-4.1.py b/Data-Engineering-with-Databricks/Solutions/Includes/Classroom-Setup-4.1.py
new file mode 100644
index 0000000..63ef9c5
--- /dev/null
+++ b/Data-Engineering-with-Databricks/Solutions/Includes/Classroom-Setup-4.1.py
@@ -0,0 +1,10 @@
+# Databricks notebook source
+# MAGIC %run ./_utility-methods $lesson="4.1"
+
+# COMMAND ----------
+
+DA.cleanup()
+DA.init()
+install_eltwss_datasets(reinstall=False)
+DA.conclude_setup()
+
diff --git a/Data-Engineering-with-Databricks/Solutions/Includes/Classroom-Setup-4.2.py b/Data-Engineering-with-Databricks/Solutions/Includes/Classroom-Setup-4.2.py
new file mode 100644
index 0000000..7d52166
--- /dev/null
+++ b/Data-Engineering-with-Databricks/Solutions/Includes/Classroom-Setup-4.2.py
@@ -0,0 +1,11 @@
+# Databricks notebook source
+# MAGIC %run ./_utility-methods $lesson="4.2"
+
+# COMMAND ----------
+
+DA.cleanup()
+DA.init()
+install_eltwss_datasets(reinstall=False)
+load_eltwss_external_tables()
+DA.conclude_setup()
+
diff --git a/Data-Engineering-with-Databricks/Solutions/Includes/Classroom-Setup-4.3.py b/Data-Engineering-with-Databricks/Solutions/Includes/Classroom-Setup-4.3.py
new file mode 100644
index 0000000..a03307e
--- /dev/null
+++ b/Data-Engineering-with-Databricks/Solutions/Includes/Classroom-Setup-4.3.py
@@ -0,0 +1,11 @@
+# Databricks notebook source
+# MAGIC %run ./_utility-methods $lesson="4.3"
+
+# COMMAND ----------
+
+DA.cleanup()
+DA.init()
+install_eltwss_datasets(reinstall=False)
+load_eltwss_external_tables()
+DA.conclude_setup()
+
diff --git a/Data-Engineering-with-Databricks/Solutions/Includes/Classroom-Setup-4.4.py b/Data-Engineering-with-Databricks/Solutions/Includes/Classroom-Setup-4.4.py
new file mode 100644
index 0000000..d5c8a52
--- /dev/null
+++ b/Data-Engineering-with-Databricks/Solutions/Includes/Classroom-Setup-4.4.py
@@ -0,0 +1,23 @@
+# Databricks notebook source
+# MAGIC %run ./_utility-methods $lesson="4.4"
+
+# COMMAND ----------
+
+DA.cleanup()
+DA.init()
+install_eltwss_datasets(reinstall=False)
+
+print()
+
+clone_source_table("sales", f"{DA.paths.datasets}/delta", "sales_hist")
+clone_source_table("users", f"{DA.paths.datasets}/delta", "users_hist")
+clone_source_table("events", f"{DA.paths.datasets}/delta", "events_hist")
+
+clone_source_table("users_update", f"{DA.paths.datasets}/delta")
+clone_source_table("events_update", f"{DA.paths.datasets}/delta")
+
+# clone_source_table("events_raw", f"{DA.paths.datasets}/delta")
+# clone_source_table("item_lookup", f"{DA.paths.datasets}/delta")
+
+DA.conclude_setup()
+
diff --git a/Data-Engineering-with-Databricks/Solutions/Includes/Classroom-Setup-4.5L.py b/Data-Engineering-with-Databricks/Solutions/Includes/Classroom-Setup-4.5L.py
new file mode 100644
index 0000000..19f59c7
--- /dev/null
+++ b/Data-Engineering-with-Databricks/Solutions/Includes/Classroom-Setup-4.5L.py
@@ -0,0 +1,10 @@
+# Databricks notebook source
+# MAGIC %run ./_utility-methods $lesson="4.5L"
+
+# COMMAND ----------
+
+DA.cleanup()
+DA.init()
+install_eltwss_datasets(reinstall=False)
+DA.conclude_setup()
+
diff --git a/Data-Engineering-with-Databricks/Solutions/Includes/Classroom-Setup-4.6.py b/Data-Engineering-with-Databricks/Solutions/Includes/Classroom-Setup-4.6.py
new file mode 100644
index 0000000..86ba4b9
--- /dev/null
+++ b/Data-Engineering-with-Databricks/Solutions/Includes/Classroom-Setup-4.6.py
@@ -0,0 +1,14 @@
+# Databricks notebook source
+# MAGIC %run ./_utility-methods $lesson="4.6"
+
+# COMMAND ----------
+
+DA.cleanup()
+DA.init()
+install_eltwss_datasets(reinstall=False)
+
+print()
+create_eltwss_users_update()
+
+DA.conclude_setup()
+
diff --git a/Data-Engineering-with-Databricks/Solutions/Includes/Classroom-Setup-4.7.py b/Data-Engineering-with-Databricks/Solutions/Includes/Classroom-Setup-4.7.py
new file mode 100644
index 0000000..c4b714f
--- /dev/null
+++ b/Data-Engineering-with-Databricks/Solutions/Includes/Classroom-Setup-4.7.py
@@ -0,0 +1,23 @@
+# Databricks notebook source
+# MAGIC %run ./_utility-methods $lesson="4.7"
+
+# COMMAND ----------
+
+DA.cleanup()
+DA.init()
+install_eltwss_datasets(reinstall=False)
+
+print()
+
+clone_source_table("sales", f"{DA.paths.datasets}/delta", "sales_hist")
+# clone_source_table("users", f"{DA.paths.datasets}/delta", "users_hist")
+clone_source_table("events", f"{DA.paths.datasets}/delta", "events_hist")
+
+# clone_source_table("users_update", f"{DA.paths.datasets}/delta")
+clone_source_table("events_update", f"{DA.paths.datasets}/delta")
+
+clone_source_table("events_raw", f"{DA.paths.datasets}/delta")
+clone_source_table("item_lookup", f"{DA.paths.datasets}/delta")
+
+DA.conclude_setup()
+
diff --git a/Data-Engineering-with-Databricks/Solutions/Includes/Classroom-Setup-4.8.py b/Data-Engineering-with-Databricks/Solutions/Includes/Classroom-Setup-4.8.py
new file mode 100644
index 0000000..1cdde71
--- /dev/null
+++ b/Data-Engineering-with-Databricks/Solutions/Includes/Classroom-Setup-4.8.py
@@ -0,0 +1,9 @@
+# Databricks notebook source
+# MAGIC %run ./_utility-methods $lesson="4.8"
+
+# COMMAND ----------
+
+DA.cleanup()
+DA.init()
+DA.conclude_setup()
+
diff --git a/Data-Engineering-with-Databricks/Solutions/Includes/Classroom-Setup-4.9L.py b/Data-Engineering-with-Databricks/Solutions/Includes/Classroom-Setup-4.9L.py
new file mode 100644
index 0000000..a938f41
--- /dev/null
+++ b/Data-Engineering-with-Databricks/Solutions/Includes/Classroom-Setup-4.9L.py
@@ -0,0 +1,12 @@
+# Databricks notebook source
+# MAGIC %run ./_utility-methods $lesson="4.9L"
+
+# COMMAND ----------
+
+DA.cleanup()
+DA.init()
+install_eltwss_datasets(reinstall=False)
+print()
+load_eltwss_tables()
+DA.conclude_setup()
+
diff --git a/Data-Engineering-with-Databricks/Solutions/Includes/Classroom-Setup-5.3L.py b/Data-Engineering-with-Databricks/Solutions/Includes/Classroom-Setup-5.3L.py
new file mode 100644
index 0000000..399dba2
--- /dev/null
+++ b/Data-Engineering-with-Databricks/Solutions/Includes/Classroom-Setup-5.3L.py
@@ -0,0 +1,9 @@
+# Databricks notebook source
+# MAGIC %run ./_utility-methods $lesson="5.3L"
+
+# COMMAND ----------
+
+DA.cleanup()
+DA.init(create_db=False)
+DA.conclude_setup()
+
diff --git a/Data-Engineering-with-Databricks/Solutions/Includes/Classroom-Setup-6.1.py b/Data-Engineering-with-Databricks/Solutions/Includes/Classroom-Setup-6.1.py
new file mode 100644
index 0000000..bc915b1
--- /dev/null
+++ b/Data-Engineering-with-Databricks/Solutions/Includes/Classroom-Setup-6.1.py
@@ -0,0 +1,43 @@
+# Databricks notebook source
+# MAGIC %run ./_utility-methods $lesson="6.1"
+
+# COMMAND ----------
+
+# MAGIC %run ./mount-datasets
+
+# COMMAND ----------
+
+class DataFactory:
+ def __init__(self, ):
+ self.source = "/mnt/training/healthcare/tracker/streaming/"
+ self.userdir = f"{DA.paths.working_dir}/tracker"
+ self.curr_mo = 1
+
+ def load(self, continuous=False):
+ if self.curr_mo > 12:
+ print("Data source exhausted\n")
+
+ elif continuous == True:
+ while self.curr_mo <= 12:
+ curr_file = f"{self.curr_mo:02}.json"
+ dbutils.fs.cp(self.source + curr_file, self.userdir + curr_file)
+ self.curr_mo += 1
+ else:
+ curr_file = f"{str(self.curr_mo).zfill(2)}.json"
+ target_dir = f"{self.userdir}/{curr_file}"
+ print(f"Loading the file {curr_file} to the tracker dataset")
+ dbutils.fs.cp(f"{self.source}/{curr_file}", target_dir)
+ self.curr_mo += 1
+
+# COMMAND ----------
+
+DA.init()
+DA.paths.checkpoints = f"{DA.paths.working_dir}/checkpoints"
+DA.data_factory = DataFactory()
+
+print()
+DA.data_factory.load()
+DA.conclude_setup()
+
+sqlContext.setConf("spark.sql.shuffle.partitions", spark.sparkContext.defaultParallelism)
+
diff --git a/Data-Engineering-with-Databricks/Solutions/Includes/Classroom-Setup-6.2.py b/Data-Engineering-with-Databricks/Solutions/Includes/Classroom-Setup-6.2.py
new file mode 100644
index 0000000..20eed0d
--- /dev/null
+++ b/Data-Engineering-with-Databricks/Solutions/Includes/Classroom-Setup-6.2.py
@@ -0,0 +1,63 @@
+# Databricks notebook source
+# MAGIC %run ./_utility-methods $lesson="6.2"
+
+# COMMAND ----------
+
+# MAGIC %run ./mount-datasets
+
+# COMMAND ----------
+
+def autoload_to_table(data_source, source_format, table_name, checkpoint_directory):
+ (spark.readStream
+ .format("cloudFiles")
+ .option("cloudFiles.format", source_format)
+ .option("cloudFiles.schemaLocation", checkpoint_directory)
+ .load(data_source)
+ .writeStream
+ .option("checkpointLocation", checkpoint_directory)
+ .option("mergeSchema", "true")
+ .trigger(availableNow=True)
+ .table(table_name)
+ .awaitTermination()
+ )
+
+# COMMAND ----------
+
+class DataFactory:
+ def __init__(self):
+ self.source = "/mnt/training/healthcare/tracker/streaming/"
+ self.userdir = f"{DA.paths.working_dir}/tracker"
+ self.curr_mo = 1
+
+ def load(self, continuous=False):
+ if self.curr_mo > 12:
+ print("Data source exhausted\n")
+
+ elif continuous == True:
+ while self.curr_mo <= 12:
+ curr_file = f"{self.curr_mo:02}.json"
+ dbutils.fs.cp(f"{self.source}/{curr_file}", f"{self.userdir}/{curr_file}")
+ self.curr_mo += 1
+ autoload_to_table(self.userdir, "json", "bronze", f"{DA.paths.checkpoints}/bronze")
+ else:
+ curr_file = f"{str(self.curr_mo).zfill(2)}.json"
+ target_dir = f"{self.userdir}/{curr_file}"
+ print(f"Loading the file {curr_file} to the {target_dir}")
+
+ dbutils.fs.cp(f"{self.source}/{curr_file}", f"{self.userdir}/{curr_file}")
+ self.curr_mo += 1
+ autoload_to_table(self.userdir, "json", "bronze", f"{DA.paths.checkpoints}/bronze")
+
+
+# COMMAND ----------
+
+DA.init()
+DA.paths.checkpoints = f"{DA.paths.working_dir}/_checkpoints"
+DA.data_factory = DataFactory()
+
+print()
+DA.data_factory.load()
+DA.conclude_setup()
+
+sqlContext.setConf("spark.sql.shuffle.partitions", spark.sparkContext.defaultParallelism)
+
diff --git a/Data-Engineering-with-Databricks/Solutions/Includes/Classroom-Setup-6.3L.py b/Data-Engineering-with-Databricks/Solutions/Includes/Classroom-Setup-6.3L.py
new file mode 100644
index 0000000..c35fd86
--- /dev/null
+++ b/Data-Engineering-with-Databricks/Solutions/Includes/Classroom-Setup-6.3L.py
@@ -0,0 +1,12 @@
+# Databricks notebook source
+# MAGIC %run ./_utility-methods $lesson="6.3L"
+
+# COMMAND ----------
+
+DA.cleanup()
+DA.init()
+DA.paths.checkpoints = f"{DA.paths.working_dir}/_checkpoints"
+DA.conclude_setup()
+
+sqlContext.setConf("spark.sql.shuffle.partitions", spark.sparkContext.defaultParallelism)
+
diff --git a/Data-Engineering-with-Databricks/Solutions/Includes/Classroom-Setup-7.1.py b/Data-Engineering-with-Databricks/Solutions/Includes/Classroom-Setup-7.1.py
new file mode 100644
index 0000000..c581e45
--- /dev/null
+++ b/Data-Engineering-with-Databricks/Solutions/Includes/Classroom-Setup-7.1.py
@@ -0,0 +1,57 @@
+# Databricks notebook source
+# MAGIC %run ./_utility-methods $lesson="7.1"
+
+# COMMAND ----------
+
+# MAGIC %run ./mount-datasets
+
+# COMMAND ----------
+
+class DataFactory:
+ def __init__(self):
+ self.source = f"{DA.paths.data_source}/tracker/streaming/"
+ self.userdir = DA.paths.data_landing_location
+ self.curr_mo = 1
+
+ def load(self, continuous=False):
+ if self.curr_mo > 12:
+ print("Data source exhausted\n")
+ elif continuous == True:
+ while self.curr_mo <= 12:
+ curr_file = f"{self.curr_mo:02}.json"
+ target_dir = f"{self.userdir}/{curr_file}"
+ print(f"Loading the file {curr_file} to the {target_dir}")
+ dbutils.fs.cp(f"{self.source}/{curr_file}", target_dir)
+ self.curr_mo += 1
+ else:
+ curr_file = f"{str(self.curr_mo).zfill(2)}.json"
+ target_dir = f"{self.userdir}/{curr_file}"
+ print(f"Loading the file {curr_file} to the {target_dir}")
+
+ dbutils.fs.cp(f"{self.source}/{curr_file}", target_dir)
+ self.curr_mo += 1
+
+
+# COMMAND ----------
+
+DA.init()
+DA.paths.checkpoints = f"{DA.paths.working_dir}/_checkpoints"
+DA.paths.data_source = "/mnt/training/healthcare"
+DA.paths.data_landing_location = f"{DA.paths.working_dir}/source/tracker"
+
+# bronzePath = f"{DA.paths.wokring_dir}/bronze"
+# recordingsParsedPath = f"{DA.paths.wokring_dir}/silver/recordings_parsed"
+# recordingsEnrichedPath = f"{DA.paths.wokring_dir}/silver/recordings_enriched"
+# dailyAvgPath = f"{DA.paths.wokring_dir}/gold/dailyAvg"
+
+# checkpointPath = f"{DA.paths.wokring_dir}/checkpoints"
+#bronzeCheckpoint = f"{DA.paths.checkpoints}/bronze"
+# recordingsParsedCheckpoint = f"{DA.paths.checkpoints}/recordings_parsed"
+# recordingsEnrichedCheckpoint = f"{DA.paths.checkpoints}/recordings_enriched"
+# dailyAvgCheckpoint = f"{DA.paths.checkpoints}/dailyAvgPath"
+
+DA.data_factory = DataFactory()
+DA.conclude_setup()
+
+sqlContext.setConf("spark.sql.shuffle.partitions", spark.sparkContext.defaultParallelism)
+
diff --git a/Data-Engineering-with-Databricks/Solutions/Includes/Classroom-Setup-7.2L.py b/Data-Engineering-with-Databricks/Solutions/Includes/Classroom-Setup-7.2L.py
new file mode 100644
index 0000000..e12f6b5
--- /dev/null
+++ b/Data-Engineering-with-Databricks/Solutions/Includes/Classroom-Setup-7.2L.py
@@ -0,0 +1,12 @@
+# Databricks notebook source
+# MAGIC %run ./_utility-methods $lesson="7.2L"
+
+# COMMAND ----------
+
+DA.cleanup()
+DA.init()
+DA.paths.checkpoints = f"{DA.paths.working_dir}/_checkpoints"
+DA.conclude_setup()
+
+sqlContext.setConf("spark.sql.shuffle.partitions", spark.sparkContext.defaultParallelism)
+
diff --git a/Data-Engineering-with-Databricks/Solutions/Includes/Classroom-Setup-8.1.1.py b/Data-Engineering-with-Databricks/Solutions/Includes/Classroom-Setup-8.1.1.py
new file mode 100644
index 0000000..736ff02
--- /dev/null
+++ b/Data-Engineering-with-Databricks/Solutions/Includes/Classroom-Setup-8.1.1.py
@@ -0,0 +1,102 @@
+# Databricks notebook source
+# MAGIC %run ./_utility-methods $lesson="dlt_demo_81"
+
+# COMMAND ----------
+
+# MAGIC %run ./mount-datasets
+
+# COMMAND ----------
+
+def get_pipeline_config():
+ path = dbutils.entry_point.getDbutils().notebook().getContext().notebookPath().getOrElse(None)
+ path = "/".join(path.split("/")[:-1]) + "/DE 8.1.2 - SQL for Delta Live Tables"
+
+ return f"DLT-Demo-81-{DA.username}", path
+
+def _print_pipeline_config():
+ "Provided by DBAcademy, this function renders the configuration of the pipeline as HTML"
+ pipeline_name, path = get_pipeline_config()
+
+ displayHTML(f"""""")
+
+DA.print_pipeline_config = _print_pipeline_config
+
+# COMMAND ----------
+
+def _create_pipeline():
+ "Provided by DBAcademy, this function creates the prescribed pipline"
+
+ from dbacademy.dbrest import DBAcademyRestClient
+ client = DBAcademyRestClient()
+
+ pipeline_name, path = get_pipeline_config()
+
+ # Delete the existing pipeline if it exists
+ client.pipelines().delete_by_name(pipeline_name)
+
+ # Create the new pipeline
+ pipeline = client.pipelines().create(
+ name = pipeline_name,
+ storage = DA.paths.storage_location,
+ target = DA.db_name,
+ notebooks = [path])
+
+ DA.pipeline_id = pipeline.get("pipeline_id")
+
+DA.create_pipeline = _create_pipeline
+
+# COMMAND ----------
+
+def _start_pipeline():
+ "Provided by DBAcademy, this function starts the pipeline and then blocks until it has completed, failed or was canceled"
+
+ import time
+ from dbacademy.dbrest import DBAcademyRestClient
+ client = DBAcademyRestClient()
+
+ # Start the pipeline
+ start = client.pipelines().start_by_id(DA.pipeline_id)
+ update_id = start.get("update_id")
+
+ # Get the status and block until it is done
+ update = client.pipelines().get_update_by_id(DA.pipeline_id, update_id)
+ state = update.get("update").get("state")
+
+ done = ["COMPLETED", "FAILED", "CANCELED"]
+ while state not in done:
+ duration = 15
+ time.sleep(duration)
+ print(f"Current state is {state}, sleeping {duration} seconds.")
+ update = client.pipelines().get_update_by_id(DA.pipeline_id, update_id)
+ state = update.get("update").get("state")
+
+ print(f"The final state is {state}.")
+ assert state == "COMPLETED", f"Expected the state to be COMPLETED, found {state}"
+
+DA.start_pipeline = _start_pipeline
+
+# COMMAND ----------
+
+DA.cleanup()
+DA.init()
+
+DA.paths.data_source = "/mnt/training/healthcare"
+DA.paths.storage_location = f"{DA.paths.working_dir}/storage"
+DA.paths.data_landing_location = f"{DA.paths.working_dir}/source/tracker"
+
+DA.data_factory = DltDataFactory()
+DA.conclude_setup()
+
diff --git a/Data-Engineering-with-Databricks/Solutions/Includes/Classroom-Setup-8.1.3.py b/Data-Engineering-with-Databricks/Solutions/Includes/Classroom-Setup-8.1.3.py
new file mode 100644
index 0000000..d6ca2c5
--- /dev/null
+++ b/Data-Engineering-with-Databricks/Solutions/Includes/Classroom-Setup-8.1.3.py
@@ -0,0 +1,20 @@
+# Databricks notebook source
+# MAGIC %run ./_utility-methods $lesson="dlt_demo_81"
+
+# COMMAND ----------
+
+# MAGIC %run ./mount-datasets
+
+# COMMAND ----------
+
+# Continues where 8.1.1 picks up, don't remove assets
+# DA.cleanup()
+DA.init()
+
+DA.paths.data_source = "/mnt/training/healthcare"
+DA.paths.storage_location = f"{DA.paths.working_dir}/storage"
+DA.paths.data_landing_location = f"{DA.paths.working_dir}/source/tracker"
+
+DA.data_factory = DltDataFactory()
+DA.conclude_setup()
+
diff --git a/Data-Engineering-with-Databricks/Solutions/Includes/Classroom-Setup-8.2.1L.py b/Data-Engineering-with-Databricks/Solutions/Includes/Classroom-Setup-8.2.1L.py
new file mode 100644
index 0000000..88f4cb2
--- /dev/null
+++ b/Data-Engineering-with-Databricks/Solutions/Includes/Classroom-Setup-8.2.1L.py
@@ -0,0 +1,110 @@
+# Databricks notebook source
+# MAGIC %run ./_utility-methods $lesson="dlt_lab_82"
+
+# COMMAND ----------
+
+# MAGIC %run ./mount-datasets
+
+# COMMAND ----------
+
+def get_pipeline_config():
+ path = dbutils.entry_point.getDbutils().notebook().getContext().notebookPath().getOrElse(None)
+ path = "/".join(path.split("/")[:-1]) + "/DE 8.2.2L - Migrating a SQL Pipeline to DLT Lab"
+
+ pipeline_name = f"DLT-Lab-82L-{DA.username}"
+ source = f"{DA.paths.working_dir}/source/tracker"
+ return pipeline_name, path, source
+
+def _print_pipeline_config():
+ "Provided by DBAcademy, this function renders the configuration of the pipeline as HTML"
+ pipeline_name, path, source = get_pipeline_config()
+
+ displayHTML(f"""""")
+
+DA.print_pipeline_config = _print_pipeline_config
+
+# COMMAND ----------
+
+def _create_pipeline():
+ "Provided by DBAcademy, this function creates the prescribed pipline"
+
+ from dbacademy.dbrest import DBAcademyRestClient
+ client = DBAcademyRestClient()
+
+ pipeline_name, path, source = get_pipeline_config()
+
+ # Delete the existing pipeline if it exists
+ client.pipelines().delete_by_name(pipeline_name)
+
+ # Create the new pipeline
+ pipeline = client.pipelines().create(
+ name = pipeline_name,
+ storage = f"{DA.paths.working_dir}/storage",
+ target = DA.db_name,
+ notebooks = [path],
+ configuration = {"source": source})
+
+ DA.pipline_id = pipeline.get("pipeline_id")
+
+DA.create_pipeline = _create_pipeline
+
+# COMMAND ----------
+
+def _start_pipeline():
+ "Provided by DBAcademy, this function starts the pipline and then blocks until it has completed, failed or was canceled"
+
+ import time
+ from dbacademy.dbrest import DBAcademyRestClient
+ client = DBAcademyRestClient()
+
+ # Start the pipeline
+ start = client.pipelines().start_by_id(DA.pipline_id)
+ update_id = start.get("update_id")
+
+ # Get the status and block until it is done
+ update = client.pipelines().get_update_by_id(DA.pipline_id, update_id)
+ state = update.get("update").get("state")
+
+ done = ["COMPLETED", "FAILED", "CANCELED"]
+ while state not in done:
+ duration = 15
+ time.sleep(duration)
+ print(f"Current state is {state}, sleeping {duration} seconds.")
+ update = client.pipelines().get_update_by_id(DA.pipline_id, update_id)
+ state = update.get("update").get("state")
+
+ print(f"The final state is {state}.")
+ assert state == "COMPLETED", f"Expected the state to be COMPLETED, found {state}"
+
+DA.start_pipeline = _start_pipeline
+
+# COMMAND ----------
+
+DA.cleanup()
+DA.init()
+
+# DA.paths.data_source = "/mnt/training/healthcare"
+# DA.paths.storage_location = f"{DA.paths.working_dir}/storage"
+# DA.paths.data_landing_location = f"{DA.paths.working_dir}/source/tracker"
+
+DA.data_factory = DltDataFactory()
+DA.conclude_setup()
+
diff --git a/Data-Engineering-with-Databricks/Solutions/Includes/Classroom-Setup-8.2.3L.py b/Data-Engineering-with-Databricks/Solutions/Includes/Classroom-Setup-8.2.3L.py
new file mode 100644
index 0000000..8358dc3
--- /dev/null
+++ b/Data-Engineering-with-Databricks/Solutions/Includes/Classroom-Setup-8.2.3L.py
@@ -0,0 +1,21 @@
+# Databricks notebook source
+# MAGIC %run ./_utility-methods $lesson="dlt_lab_82"
+
+# COMMAND ----------
+
+# MAGIC %run ./mount-datasets
+
+# COMMAND ----------
+
+# Continuing from 8.2.3L, do not remove assets
+# DA.cleanup()
+DA.init()
+
+DA.paths.data_source = "/mnt/training/healthcare"
+DA.paths.storage_location = f"{DA.paths.working_dir}/storage"
+
+DA.paths.data_landing_location = f"{DA.paths.working_dir}/source/tracker"
+
+DA.data_factory = DltDataFactory()
+DA.conclude_setup()
+
diff --git a/Data-Engineering-with-Databricks/Solutions/Includes/Classroom-Setup-9.1.1.py b/Data-Engineering-with-Databricks/Solutions/Includes/Classroom-Setup-9.1.1.py
new file mode 100644
index 0000000..bb17c2b
--- /dev/null
+++ b/Data-Engineering-with-Databricks/Solutions/Includes/Classroom-Setup-9.1.1.py
@@ -0,0 +1,37 @@
+# Databricks notebook source
+# MAGIC %run ./_utility-methods $lesson="jobs_demo_91"
+
+# COMMAND ----------
+
+# MAGIC %run ./mount-datasets
+
+# COMMAND ----------
+
+def print_pipeline_config():
+ path = dbutils.entry_point.getDbutils().notebook().getContext().notebookPath().getOrElse(None)
+ path = "/".join(path.split("/")[:-1]) + "/DE 9.1.3 - DLT Job"
+
+ displayHTML(f"""
+ Pipeline Name: | Jobs-Demo-91-{DA.username} |
+ Target: | {DA.db_name} |
+ Storage Location: | {DA.paths.working_dir}/storage |
+ Notebook Path: | {path} |
+
""")
+
+def print_job_config():
+# path = dbutils.entry_point.getDbutils().notebook().getContext().notebookPath().getOrElse(None)
+# path = "/".join(path.split("/")[:-1]) + "/DE 9.1.2 - Reset"
+# Notebook Path: | {path} |
+
+ displayHTML(f"""
+ Job Name: | Jobs-Demo-91-{DA.username} |
+
+
""")
+
+# COMMAND ----------
+
+DA.cleanup()
+DA.init()
+DA.data_factory = DltDataFactory()
+DA.conclude_setup()
+
diff --git a/Data-Engineering-with-Databricks/Solutions/Includes/Classroom-Setup-9.1.2.py b/Data-Engineering-with-Databricks/Solutions/Includes/Classroom-Setup-9.1.2.py
new file mode 100644
index 0000000..2aa9973
--- /dev/null
+++ b/Data-Engineering-with-Databricks/Solutions/Includes/Classroom-Setup-9.1.2.py
@@ -0,0 +1,14 @@
+# Databricks notebook source
+# MAGIC %run ./_utility-methods $lesson="jobs_demo_91"
+
+# COMMAND ----------
+
+# MAGIC %run ./mount-datasets
+
+# COMMAND ----------
+
+DA.cleanup()
+DA.init()
+DA.data_factory = DltDataFactory()
+DA.conclude_setup()
+
diff --git a/Data-Engineering-with-Databricks/Solutions/Includes/Classroom-Setup-9.2.1L.py b/Data-Engineering-with-Databricks/Solutions/Includes/Classroom-Setup-9.2.1L.py
new file mode 100644
index 0000000..ebf54cb
--- /dev/null
+++ b/Data-Engineering-with-Databricks/Solutions/Includes/Classroom-Setup-9.2.1L.py
@@ -0,0 +1,33 @@
+# Databricks notebook source
+# MAGIC %run ./_utility-methods $lesson="jobs_lab_92"
+
+# COMMAND ----------
+
+# MAGIC %run ./mount-datasets
+
+# COMMAND ----------
+
+def print_pipeline_config():
+ path = dbutils.entry_point.getDbutils().notebook().getContext().notebookPath().getOrElse(None)
+ path = "/".join(path.split("/")[:-1]) + "/DE 9.2.3L - DLT Job"
+
+ displayHTML(f"""
+ Pipeline Name: | Jobs-Lab-92-{DA.username} |
+ Source: | {DA.paths.working_dir}/source/tracker |
+ Target: | {DA.db_name} |
+ Storage Location: | {DA.paths.working_dir}/storage |
+ Notebook Path: | {path} |
+
""")
+
+def print_job_config():
+ displayHTML(f"""
+ Job Name: | Jobs-Lab-92-{DA.username} |
+
""")
+
+# COMMAND ----------
+
+DA.cleanup()
+DA.init()
+DA.data_factory = DltDataFactory()
+DA.conclude_setup()
+
diff --git a/Data-Engineering-with-Databricks/Solutions/Includes/Classroom-Setup-9.2.2L.py b/Data-Engineering-with-Databricks/Solutions/Includes/Classroom-Setup-9.2.2L.py
new file mode 100644
index 0000000..a82d3ee
--- /dev/null
+++ b/Data-Engineering-with-Databricks/Solutions/Includes/Classroom-Setup-9.2.2L.py
@@ -0,0 +1,15 @@
+# Databricks notebook source
+# MAGIC %run ./_utility-methods $lesson="jobs_lab_92"
+
+# COMMAND ----------
+
+# MAGIC %run ./mount-datasets
+
+# COMMAND ----------
+
+# Don't reset our database or other assets
+# DA.cleanup()
+DA.init(create_db=False)
+DA.data_factory = DltDataFactory()
+DA.conclude_setup()
+
diff --git a/Data-Engineering-with-Databricks/Solutions/Includes/Classroom-Setup-9.2.4L.py b/Data-Engineering-with-Databricks/Solutions/Includes/Classroom-Setup-9.2.4L.py
new file mode 100644
index 0000000..f250172
--- /dev/null
+++ b/Data-Engineering-with-Databricks/Solutions/Includes/Classroom-Setup-9.2.4L.py
@@ -0,0 +1,14 @@
+# Databricks notebook source
+# MAGIC %run ./_utility-methods $lesson="jobs_lab_92"
+
+# COMMAND ----------
+
+# MAGIC %run ./mount-datasets
+
+# COMMAND ----------
+
+# Don't reset our database or other assets
+# DA.cleanup()
+DA.init(create_db=False)
+DA.conclude_setup()
+
diff --git a/Data-Engineering-with-Databricks/Solutions/Includes/Classroom-Setup-DLT-Lab.py b/Data-Engineering-with-Databricks/Solutions/Includes/Classroom-Setup-DLT-Lab.py
new file mode 100644
index 0000000..f8e0da8
--- /dev/null
+++ b/Data-Engineering-with-Databricks/Solutions/Includes/Classroom-Setup-DLT-Lab.py
@@ -0,0 +1,110 @@
+# Databricks notebook source
+# MAGIC %run ./_utility-methods $lesson="dlt_lab"
+
+# COMMAND ----------
+
+# MAGIC %run ./mount-datasets
+
+# COMMAND ----------
+
+def print_sql(rows, sql):
+ displayHTML(f"""""")
+
+
+# COMMAND ----------
+
+generate_register_dlt_event_metrics_sql_string = ""
+
+def _generate_register_dlt_event_metrics_sql():
+ global generate_register_dlt_event_metrics_sql_string
+
+ generate_register_dlt_event_metrics_sql_string = f"""
+CREATE TABLE IF NOT EXISTS {DA.db_name}.dlt_events
+LOCATION '{DA.paths.storage_location}/system/events';
+
+CREATE VIEW IF NOT EXISTS {DA.db_name}.dlt_success AS
+SELECT * FROM {DA.db_name}.dlt_events
+WHERE details:flow_progress:metrics IS NOT NULL;
+
+CREATE VIEW IF NOT EXISTS {DA.db_name}.dlt_metrics AS
+SELECT timestamp, origin.flow_name, details
+FROM {DA.db_name}.dlt_success
+ORDER BY timestamp DESC;""".strip()
+
+ print_sql(13, generate_register_dlt_event_metrics_sql_string)
+DA.generate_register_dlt_event_metrics_sql = _generate_register_dlt_event_metrics_sql
+
+# COMMAND ----------
+
+def _generate_daily_patient_avg():
+ sql = f"SELECT * FROM {DA.db_name}.daily_patient_avg"
+ print_sql(3, sql)
+
+DA.generate_daily_patient_avg = _generate_daily_patient_avg
+
+# COMMAND ----------
+
+def _generate_visualization_query():
+ sql = f"""
+SELECT flow_name, timestamp, int(details:flow_progress:metrics:num_output_rows) num_output_rows
+FROM {DA.db_name}.dlt_metrics
+ORDER BY timestamp DESC;"""
+
+ print_sql(5, sql)
+
+DA.generate_visualization_query = _generate_visualization_query
+
+# COMMAND ----------
+
+class DataFactory:
+ def __init__(self):
+ self.source = f"{DA.paths.data_source}/tracker/streaming/"
+ self.userdir = DA.paths.data_landing_location
+ try:
+ self.curr_mo = 1 + int(max([x[1].split(".")[0] for x in dbutils.fs.ls(self.userdir)]))
+ except:
+ self.curr_mo = 1
+
+ def load(self, continuous=False):
+ if self.curr_mo > 12:
+ print("Data source exhausted\n")
+ elif continuous == True:
+ while self.curr_mo <= 12:
+ curr_file = f"{self.curr_mo:02}.json"
+ target_dir = f"{self.userdir}/{curr_file}"
+ print(f"Loading the file {curr_file} to the {target_dir}")
+ dbutils.fs.cp(f"{self.source}/{curr_file}", target_dir)
+ self.curr_mo += 1
+ else:
+ curr_file = f"{str(self.curr_mo).zfill(2)}.json"
+ target_dir = f"{self.userdir}/{curr_file}"
+ print(f"Loading the file {curr_file} to the {target_dir}")
+
+ dbutils.fs.cp(f"{self.source}/{curr_file}", target_dir)
+ self.curr_mo += 1
+
+# COMMAND ----------
+
+DA.init()
+
+DA.paths.data_source = "/mnt/training/healthcare"
+DA.paths.storage_location = f"{DA.paths.working_dir}/storage"
+
+DA.paths.data_landing_location = f"{DA.paths.working_dir}/source/tracker"
+
+# bronzePath = f"{DA.paths.wokring_dir}/bronze"
+# recordingsParsedPath = f"{DA.paths.wokring_dir}/silver/recordings_parsed"
+# recordingsEnrichedPath = f"{DA.paths.wokring_dir}/silver/recordings_enriched"
+# dailyAvgPath = f"{DA.paths.wokring_dir}/gold/daily_avg"
+
+# checkpointPath = f"{DA.paths.wokring_dir}/checkpoints"
+#bronzeCheckpoint = f"{DA.paths.checkpoints}/bronze"
+# recordingsParsedCheckpoint = f"{DA.paths.checkpoints}/recordings_parsed"
+# recordingsEnrichedCheckpoint = f"{DA.paths.checkpoints}/recordings_enriched"
+# dailyAvgCheckpoint = f"{DA.paths.checkpoints}/dailyAvgPath"
+
+DA.data_factory = DataFactory()
+DA.conclude_setup()
+
+# sqlContext.setConf("spark.sql.shuffle.partitions", spark.sparkContext.defaultParallelism)
+
diff --git a/Data-Engineering-with-Databricks/Solutions/Includes/_utility-methods.py b/Data-Engineering-with-Databricks/Solutions/Includes/_utility-methods.py
new file mode 100644
index 0000000..b27e619
--- /dev/null
+++ b/Data-Engineering-with-Databricks/Solutions/Includes/_utility-methods.py
@@ -0,0 +1,267 @@
+# Databricks notebook source
+# MAGIC %pip install \
+# MAGIC git+https://github.com/databricks-academy/dbacademy-gems \
+# MAGIC git+https://github.com/databricks-academy/dbacademy-rest \
+# MAGIC --quiet --disable-pip-version-check
+
+# COMMAND ----------
+
+class Paths():
+ def __init__(self, working_dir, clean_lesson):
+ self.working_dir = working_dir
+
+ if clean_lesson: self.user_db = f"{working_dir}/{clean_lesson}.db"
+ else: self.user_db = f"{working_dir}/database.db"
+
+ def exists(self, path):
+ try: return len(dbutils.fs.ls(path)) >= 0
+ except Exception:return False
+
+ def print(self, padding=" "):
+ max_key_len = 0
+ for key in self.__dict__: max_key_len = len(key) if len(key) > max_key_len else max_key_len
+ for key in self.__dict__:
+ label = f"{padding}DA.paths.{key}:"
+ print(label.ljust(max_key_len+13) + DA.paths.__dict__[key])
+
+class DBAcademyHelper():
+ def __init__(self, lesson=None):
+ import re, time
+
+ self.start = int(time.time())
+
+ self.course_name = "dewd"
+ self.lesson = lesson.lower()
+ self.data_source_uri = "wasbs://courseware@dbacademy.blob.core.windows.net/data-engineering-with-databricks/v02"
+
+ # Define username
+ self.username = spark.sql("SELECT current_user()").first()[0]
+ self.clean_username = re.sub("[^a-zA-Z0-9]", "_", self.username)
+
+ self.db_name_prefix = f"dbacademy_{self.clean_username}_{self.course_name}"
+ self.source_db_name = None
+
+ self.working_dir_prefix = f"dbfs:/user/{self.username}/dbacademy/{self.course_name}"
+
+ if self.lesson:
+ clean_lesson = re.sub("[^a-zA-Z0-9]", "_", self.lesson)
+ working_dir = f"{self.working_dir_prefix}/{self.lesson}"
+ self.paths = Paths(working_dir, clean_lesson)
+ self.hidden = Paths(working_dir, clean_lesson)
+ self.db_name = f"{self.db_name_prefix}_{clean_lesson}"
+ else:
+ working_dir = self.working_dir_prefix
+ self.paths = Paths(working_dir, None)
+ self.hidden = Paths(working_dir, None)
+ self.db_name = self.db_name_prefix
+
+ def init(self, create_db=True):
+ spark.catalog.clearCache()
+ self.create_db = create_db
+
+ if create_db:
+ print(f"\nCreating the database \"{self.db_name}\"")
+ spark.sql(f"CREATE DATABASE IF NOT EXISTS {self.db_name} LOCATION '{self.paths.user_db}'")
+ spark.sql(f"USE {self.db_name}")
+
+ def cleanup(self):
+ for stream in spark.streams.active:
+ print(f"Stopping the stream \"{stream.name}\"")
+ stream.stop()
+ try: stream.awaitTermination()
+ except: pass # Bury any exceptions
+
+ if spark.sql(f"SHOW DATABASES").filter(f"databaseName == '{self.db_name}'").count() == 1:
+ print(f"Dropping the database \"{self.db_name}\"")
+ spark.sql(f"DROP DATABASE {self.db_name} CASCADE")
+
+ if self.paths.exists(self.paths.working_dir):
+ print(f"Removing the working directory \"{self.paths.working_dir}\"")
+ dbutils.fs.rm(self.paths.working_dir, True)
+
+ def conclude_setup(self):
+ import time
+
+ spark.conf.set("da.username", self.username)
+ spark.conf.set("da.db_name", self.db_name)
+ for key in self.paths.__dict__:
+ spark.conf.set(f"da.paths.{key.lower()}", self.paths.__dict__[key])
+
+ print("\nPredefined Paths:")
+ DA.paths.print()
+
+ if self.source_db_name:
+ print(f"\nPredefined tables in {self.source_db_name}:")
+ tables = spark.sql(f"SHOW TABLES IN {self.source_db_name}").filter("isTemporary == false").select("tableName").collect()
+ if len(tables) == 0: print(" -none-")
+ for row in tables: print(f" {row[0]}")
+
+ if self.create_db:
+ print(f"\nPredefined tables in {self.db_name}:")
+ tables = spark.sql(f"SHOW TABLES IN {self.db_name}").filter("isTemporary == false").select("tableName").collect()
+ if len(tables) == 0: print(" -none-")
+ for row in tables: print(f" {row[0]}")
+
+ print(f"\nSetup completed in {int(time.time())-self.start} seconds")
+
+ def block_until_stream_is_ready(self, query, min_batches=2):
+ import time
+ while len(query.recentProgress) < min_batches:
+ time.sleep(5) # Give it a couple of seconds
+
+ print(f"The stream has processed {len(query.recentProgress)} batchs")
+
+dbutils.widgets.text("lesson", "missing")
+lesson = dbutils.widgets.get("lesson")
+if lesson == "none": lesson = None
+assert lesson != "missing", f"The lesson must be passed to the DBAcademyHelper"
+
+DA = DBAcademyHelper(lesson)
+
+# COMMAND ----------
+
+def install_source_dataset(source_uri, reinstall, subdir):
+ target_dir = f"{DA.working_dir_prefix}/source/{subdir}"
+
+# if reinstall and DA.paths.exists(target_dir):
+# print(f"Removing existing dataset at {target_dir}")
+# dbutils.fs.rm(target_dir, True)
+
+ if DA.paths.exists(target_dir):
+ print(f"Skipping install to \"{target_dir}\", dataset already exists")
+ else:
+ print(f"Installing datasets to \"{target_dir}\"")
+ dbutils.fs.cp(source_uri, target_dir, True)
+
+ return target_dir
+
+# COMMAND ----------
+
+def install_dtavod_datasets(reinstall):
+ source_uri = "wasbs://courseware@dbacademy.blob.core.windows.net/databases_tables_and_views_on_databricks/v02"
+ DA.paths.datasets = install_source_dataset(source_uri, reinstall, "dtavod")
+
+ copy_source_dataset(f"{DA.paths.datasets}/flights/departuredelays.csv",
+ f"{DA.paths.working_dir}/flight_delays",
+ format="csv", name="flight_delays")
+
+# COMMAND ----------
+
+def install_eltwss_datasets(reinstall):
+ source_uri = "wasbs://courseware@dbacademy.blob.core.windows.net/elt-with-spark-sql/v02/small-datasets"
+ DA.paths.datasets = install_source_dataset(source_uri, reinstall, "eltwss")
+
+# COMMAND ----------
+
+def clone_source_table(table_name, source_path, source_name=None):
+ import time
+ start = int(time.time())
+
+ source_name = table_name if source_name is None else source_name
+ print(f"Cloning the {table_name} table from {source_path}/{source_name}", end="...")
+
+ spark.sql(f"""
+ CREATE OR REPLACE TABLE {table_name}
+ SHALLOW CLONE delta.`{source_path}/{source_name}`
+ """)
+
+ total = spark.read.table(table_name).count()
+ print(f"({int(time.time())-start} seconds / {total:,} records)")
+
+def load_eltwss_tables():
+ clone_source_table("events", f"{DA.paths.datasets}/delta")
+ clone_source_table("sales", f"{DA.paths.datasets}/delta")
+ clone_source_table("users", f"{DA.paths.datasets}/delta")
+ clone_source_table("transactions", f"{DA.paths.datasets}/delta")
+
+# COMMAND ----------
+
+def copy_source_dataset(src_path, dst_path, format, name):
+ import time
+ start = int(time.time())
+ print(f"Creating the {name} dataset", end="...")
+
+ dbutils.fs.cp(src_path, dst_path, True)
+
+ total = spark.read.format(format).load(dst_path).count()
+ print(f"({int(time.time())-start} seconds / {total:,} records)")
+
+def load_eltwss_external_tables():
+ copy_source_dataset(f"{DA.paths.datasets}/raw/sales-csv",
+ f"{DA.paths.working_dir}/sales-csv", "csv", "sales-csv")
+
+ import time
+ start = int(time.time())
+ print(f"Creating the users table", end="...")
+
+ # REFACTORING - Making lesson-specific copy
+ dbutils.fs.cp(f"{DA.paths.datasets}/raw/users-historical",
+ f"{DA.paths.working_dir}/users-historical", True)
+
+ # https://spark.apache.org/docs/latest/sql-data-sources-jdbc.html
+ (spark.read
+ .format("parquet")
+ .load(f"{DA.paths.working_dir}/users-historical")
+ .repartition(1)
+ .write
+ .format("org.apache.spark.sql.jdbc")
+ .option("url", f"jdbc:sqlite:/{DA.username}_ecommerce.db")
+ .option("dbtable", "users") # The table name in sqllight
+ .mode("overwrite")
+ .save())
+
+ total = spark.read.parquet(f"{DA.paths.working_dir}/users-historical").count()
+ print(f"({int(time.time())-start} seconds / {total:,} records)")
+
+# COMMAND ----------
+
+# lesson: Writing delta
+def create_eltwss_users_update():
+ import time
+ start = int(time.time())
+ print(f"Creating the users_dirty table", end="...")
+
+ # REFACTORING - Making lesson-specific copy
+ dbutils.fs.cp(f"{DA.paths.datasets}/raw/users-30m",
+ f"{DA.paths.working_dir}/users-30m", True)
+
+ spark.sql(f"""
+ CREATE OR REPLACE TABLE users_dirty AS
+ SELECT *, current_timestamp() updated
+ FROM parquet.`{DA.paths.working_dir}/users-30m`
+ """)
+
+ spark.sql("INSERT INTO users_dirty VALUES (NULL, NULL, NULL, NULL), (NULL, NULL, NULL, NULL), (NULL, NULL, NULL, NULL)")
+
+ total = spark.read.table("users_dirty").count()
+ print(f"({int(time.time())-start} seconds / {total:,} records)")
+
+# COMMAND ----------
+
+class DltDataFactory:
+ def __init__(self):
+ self.source = f"/mnt/training/healthcare/tracker/streaming"
+ self.userdir = f"{DA.paths.working_dir}/source/tracker"
+ try:
+ self.curr_mo = 1 + int(max([x[1].split(".")[0] for x in dbutils.fs.ls(self.userdir)]))
+ except:
+ self.curr_mo = 1
+
+ def load(self, continuous=False):
+ if self.curr_mo > 12:
+ print("Data source exhausted\n")
+ elif continuous == True:
+ while self.curr_mo <= 12:
+ curr_file = f"{self.curr_mo:02}.json"
+ target_dir = f"{self.userdir}/{curr_file}"
+ print(f"Loading the file {curr_file} to the {target_dir}")
+ dbutils.fs.cp(f"{self.source}/{curr_file}", target_dir)
+ self.curr_mo += 1
+ else:
+ curr_file = f"{str(self.curr_mo).zfill(2)}.json"
+ target_dir = f"{self.userdir}/{curr_file}"
+ print(f"Loading the file {curr_file} to the {target_dir}")
+
+ dbutils.fs.cp(f"{self.source}/{curr_file}", target_dir)
+ self.curr_mo += 1
+
diff --git a/Data-Engineering-With-Databricks/Solutions/Includes/mount-datasets.py b/Data-Engineering-with-Databricks/Solutions/Includes/mount-datasets.py
similarity index 100%
rename from Data-Engineering-With-Databricks/Solutions/Includes/mount-datasets.py
rename to Data-Engineering-with-Databricks/Solutions/Includes/mount-datasets.py
diff --git a/Data-Engineering-With-Databricks/Solutions/Includes/setup-entities.py b/Data-Engineering-with-Databricks/Solutions/Includes/setup-entities.py
similarity index 100%
rename from Data-Engineering-With-Databricks/Solutions/Includes/setup-entities.py
rename to Data-Engineering-with-Databricks/Solutions/Includes/setup-entities.py
diff --git a/Data-Engineering-with-Databricks/Untitled Notebook 2023-07-26 17:20:55 (1).py b/Data-Engineering-with-Databricks/Untitled Notebook 2023-07-26 17:20:55 (1).py
new file mode 100644
index 0000000..e835ace
--- /dev/null
+++ b/Data-Engineering-with-Databricks/Untitled Notebook 2023-07-26 17:20:55 (1).py
@@ -0,0 +1,6 @@
+# Databricks notebook source
+print('hello')
+
+# COMMAND ----------
+
+
diff --git a/Data-Engineering-With-Databricks/Version Info.py b/Data-Engineering-with-Databricks/Version Info.py
similarity index 84%
rename from Data-Engineering-With-Databricks/Version Info.py
rename to Data-Engineering-with-Databricks/Version Info.py
index 63d004c..ad37f88 100644
--- a/Data-Engineering-With-Databricks/Version Info.py
+++ b/Data-Engineering-with-Databricks/Version Info.py
@@ -7,11 +7,15 @@
# COMMAND ----------
-# MAGIC %md # Project Information
+# MAGIC %md
+# MAGIC
+# MAGIC
+# MAGIC
+# MAGIC # Project Information
# MAGIC
# MAGIC * Name: **Data Engineering with Databricks**
-# MAGIC * Version: **beta.2**
-# MAGIC * Built On: **Jan 19, 2022 at 14:41:04 UTC**
+# MAGIC * Version: **2.2.2**
+# MAGIC * Built On: **May 12, 2022 at 15:26:04 UTC**
# COMMAND ----------
diff --git a/README.md b/README.md
index 9589221..9f63c30 100644
--- a/README.md
+++ b/README.md
@@ -1,3 +1,8 @@
# Data Engineering with Databricks
-This is a beta build; please contact the Databricks curriculum team before distributing content.
+This repository contains the resources students need to follow along with the instructor teaching this course, in addition to the various labs and their solutions.
+
+There are two ways to get started (with and w/o Databricks Repos). Your instructor will indicate which procedure you should use and when.
+
+For your convenience, both procedures are documented for you at
+https://www.databricks.training/step-by-step/importing-courseware-from-github.
diff --git a/platform-demos/1-workspace.md b/platform-demos/1-workspace.md
deleted file mode 100644
index 3fe8189..0000000
--- a/platform-demos/1-workspace.md
+++ /dev/null
@@ -1,56 +0,0 @@
-# Navigating the Databricks Data Science and Engineering Workspace
-
-This demo will explore the Databricks Data Science and Engineering Workspace. By the end of this lesson you will be able to:
-* Describe the Databricks architecture and its services
-* Navigate the Data Science and Engineering workspace
-
-## Home page
-
-Go over the different sections of the home page. Be sure to highlight the `What's new` section that provides information on the current and historical Databricks versions, as well as a service status dashboard. Mention that there are handy links to perform some common tasks, all of which are available elsewhere in the UI. Finally, call out to the `Quickstart Tutorial` which is a great resource for getting started with a Notebook.
-
-## Sidebar
-
-The sidebar contains links to different sections of your Workspace. The links available depend on the service selected in the persona switcher.
-
-## Persona switcher
-
-Use the persona switcher to demonstrate switching to Databricks SQL and Databrics Machine Learning. Highlight that you can pin a selection to make it the default when logging in to Databricks.
-
-### Icons
-
-Explore the various icons. In particular:
-* Open the **Create** menu for creating common assets
-* Show the **Workspace** file browsing functionality. Show user and home folders at a minimum. Display the options available at folder and file levels. Discuss how permissions can be applied to folders within this structure to facilitate a secure, collaborative Workspace.
-* Make a forward mention of **Repos**. While Repos apply the same functionality and UI metaphors as the Workspace, they deliver git integration.
-* Highlight that **Recents** can be used to revisit recently accessed assets, and make it easier to switch between Notebooks in a single tab.
-* Make a forward mention of **Data**, which will be used to explore tables and files used for processing.
-* Make a forward mention of **Compute** for managing your clusters
-* Make a forward mention of **Jobs** that can be used to non-interactively execute and schedule workloads.
-
-## Help
-
-Explore the different resources available under the **Help** item.
-
-## Settings
-
-There are three distinct sections for settings.
-
-### User Settings
-
-Highight that this is where we go to update passwords, personal acess tokens, integration with a git server, and various settings related to your Workspace.
-
-### Admin Console
-
-For sufficiently privileged users, this option is available to administer various aspects of the Workspace. Configure global settings, create users, groups, permissions; set global cluster initialization scripts.
-
-### Manage Account
-
-Configure your Databricks account.
-
-## Menu options
-
-Show the options to contol behaviour of the sidebar.
-
-## User menu
-
-Highlight the option used to log off or switch Workspaces, when multiple Workspaces are configured.
diff --git a/platform-demos/2-clusters.md b/platform-demos/2-clusters.md
deleted file mode 100644
index 39a434d..0000000
--- a/platform-demos/2-clusters.md
+++ /dev/null
@@ -1,54 +0,0 @@
-# Create and manage interactive clusters
-
-This demo will cover creating and managing all-purpose Databricks clusters using the Databricks Data Science and Engineering Workspace. By the end of this lesson you will be able to:
-* Describe cluster structures
-* Create and manage clusters
-
-## Create Cluster
-
-Create a new cluster by using the link in the **Common Tasks** section of the home page, or by going to the **Compute** page and clicking **Create Cluster**. In either case, be sure to mention that there are a couple ways to do this, like many common tasks.
-
-Discuss the options. Be sure to mention at least the following:
-* **Cluster mode**: as mentioned in the slides, there are three different modes. For the small workloads like the ones we use in the training, you can use the **Single Node** option here, but note that this disables some other options. For more info, see https://docs.databricks.com/clusters/configure.html#cluster-mode
-* **Databricks Runtime Version**: this specifies the software to deploy to the clusters.
- * Highlight the different familes to choose from (**Standard** vs **ML** for machine learning workloads)
- * Generally we choose the latest version though do mention that the versions marked "LTS" carry extended support which might be a preferential option for some production systems. Refer to https://docs.databricks.com/release-notes/runtime/databricks-runtime-ver.html#runtime-support for more info.
- * The **Photon** checkbox filters versions that support Databricks' new vectorized query engine. For more info, see https://docs.databricks.com/runtime/photon.html.
- For general info on Databricks Runtime, refer to https://docs.databricks.com/runtime/dbr.html,
-* **Enable autoscaling** allows the dynamic adjustment (up or down) to the number of worker nodes through a range (**Min Workers** and **Max Worker**) based on workload. Note that this option is not available when **Cluster Mode** is set to **Single Node**
-* **Enable autoscaling local storage** allows the additional EBS volumes to be dynamically attached if disk space is getting low (increase only). See https://docs.databricks.com/clusters/configure.html#autoscaling-local-storage for more deteails.
-* **Terminate after** to control compute costs by automatically terminating clusters after a period of inactivity (that is, absence of Spark jobs)
-* **Worker Type** to specify the cloud-specfic VM profile for the worker nodes, determining the CPU/RAM configuration for each. Note that this option is not available when **Cluster Mode** is set to **Single Node**
-* **Workers** to specify the number of worker nodes. Note that this option is not available when **Cluster Mode** is set to **Single Node**, or the **Enable autoscaling** option is selected
-* **Min Workers** and **Max Workers** to specify the minimum and maximum number of worker nodes. Note that these are only available when **Enable autoscaling** option is selected.
-* **Driver Type** (or **Node Type** when **Cluster Mode** is set to **Single Node**) specifies the cloud-specfic VM profile for the driver node, determining the CPU/RAM configuration.
-
-With respect to the Worker/Driver/Node Type, here are some general recommendations:
-* Memory optimized (eg: r4, DSv2): Memory-intensive applications
-* Compute optimized (eg: c5, Fsv2): Structured Streaming, Distributed Analytics, Data Science Applications
-* Storage optimized (eg: i3, Lsv2): Applications that require higher disk throughput and IO
-* General purpose (eg: m4, DSv2): Enterprise-grade applications, relational databases, and analytics with in-memory caching
-
-Highlight the DBU estimation. Adjust settings (like Cluster Mode, Workers/Min Workers/Max Workers, and Worker and Driver Types) to see how it impacts this estimate.
-
-Open the **Advanced Options** to show what's there, but we won't go into details at this point.
-
-Create the cluster. While the cluster spins up, it's an opportune moment to talk about the merits of using Pools. You can demonstrate the workflow quickly by:
-1. Visiting the **Pools** tab
-2. Create a pool with all the default settings
-3. Go back to the cluster creation page (create a new cluster), and open the **Worker Type** and/or **Driver Type** dropdowns, and notice how the option to attach to a pool is presented.
-4. Clean up by deleting the pool.
-
-## Manage clusters
-
-With the cluster created, go back to the **Compute** page to view the cluster(s). Remind learners that as their organizations grow so will the list, and so you can mention the options to filter, search and sort the list.
-
-Select a cluster to adjust configuration. Click the **Edit** button and show how settings can be modified. Call out that some settings may require running clusters to be restarted.
-
-Though we don't get heavy into permissions, show the **Permissions** dialog and highlight the fact that we can control which users can access the cluster and what they can do with it, referring back to the Access Control table in the slides.
-
-Show the **Clone** funcitonality, which allows us to quickly rubberstamp cluster configurations. Also highlight the run controls and **Delete** button.
-
-Show the **Libraries** tab, which allows us to install addtional libraries (jar files) onto the cluster. These are used to install drivers or libraries needed by workloads
-
-Walk through the various logs.
diff --git a/platform-demos/3-dbfs.md b/platform-demos/3-dbfs.md
deleted file mode 100644
index 5fb82bc..0000000
--- a/platform-demos/3-dbfs.md
+++ /dev/null
@@ -1,74 +0,0 @@
-# Manage data with DBFS
-
-This demo will explore DBFS from the Databricks Data Science and Engineering Workspace. By the end of this lesson you will be able to:
-
-* Describe and navigate the Databricks File System (DBFS)
-* Import files into DBFS
-
-Before proceeding, ensure that:
-* DBFS browsing functionality is enabled in your Workspace (**Settings→Admin Console→Workspace Settings→Advanced→DBFS File Browser**)
-* There's a running cluster you can attach to. For basic DBFS browsing from the Workspace, this isn't a strict requirement – but it will be good to have one running to give a better demonstration.
-* Have a sample data file on hand for upload. Suggest using uszips.csv, which can be downloaded from here: https://simplemaps.com/data/us-zips. The file contains census and geographical information for each of the tens of thousands of US zip codes. Displaying the website in class satisfies the licensing requirements for using this sample dataset.
-
-## Explore DBFS
-
-Go to the **Data** page, where we can access DBFS. Mention that DBFS browsing is a feature that can be turned on or off by the administrator (can show this if desired).
-
-What we see here represents the *DBFS root* – that is, the top-level directory within DBFS. The DBFS root is backed by a storage bucket that was set up by your Databricks platform administrator.
-
-Explain some of the special folders:
-
-* /Filestore: this multi-purpose directory stores files uploaded to DBFS from the Workspace, such as data files, images and libraries. Output files (like images created by Notebook visualizations) are also stored here, from where they can be downloaded.
-* /databricks-datasets (not visible in the browser as it is mounted and not physically copied): this directory contains example datasets provided by Databricks to accompany product documentation. See https://docs.databricks.com/data/databricks-datasets.html for more information.
-* /databricks-results: this directory contains the full results of your queries. These files are generated when you download the full results of a query that returns more than the 1000 rows displayed by default.
-* /databricks-init (only visible if set up): this directory is used to host initialization scripts that are executed on each node of a starting cluster prior to invoking the JVM environment for the driver or worker.
-* /user/hive/warehouse: also known as the Databricks Hive metastore, this directory contains metadata related to Databricks tables and, in general, the table data itself. Note that Databricks is capable of using an external Hive metastore if needed.
-* /mnt: this directory contains object storage mount points
-* /tmp: this directory provides a space to store temporary working files
-
-Also mention the following general points regarding DBFS:
-* All nodes in your clusters will be able to see everything we see here in the Workspace
-* Don't confuse DBFS with the filesystem-like organization of the Workspace (feel free to open the **Workspace** page as a reminder). The two are unrelated.
-* DBFS does not represent the local file system running on your cluster nodes; each node has its own local file system into which DBFS is mounted.
-
-Use the browser to explore some of these. **/FileStore** and **/usr/hive** are good examples. Also look at **/mnt** if attached to a running cluster, which is where external data sources are mounted by convention. Remind them that the directories inside **/mnt** are not "real" directories, but rather *mountpoints* (that is, a virtual directory that redirects to an external filesystem-like resources). Because they require some degree of processing, we must be attached to a running cluster to see them.
-
-## Cluster view of DBFS
-
-To help reinforce these points about DBFS, demo the following in a new Python Notebook. And though we get more into Notebooks in the next lesson, for now just say enough: that Notebooks provide an interactive environmnet for running code on our clusters.
-
-Create and execute a cell with the following:
-
- display(dbutils.fs.ls('/'))
-
-This is using the DBFS utility class to get a list of entries in the top-level directory of DBFS, then displaying them with the multi-purpose Databricks `display()` function. Raise the following points:
-* We see some entries (like **databricks-datasets**) here but not in the Workspace browser
-
-Create a new cell and contrast the results from above with the following:
-
- import os
- print(os.listdir('/'))
-
-This is using the standard os utility class to get a list of entries in the top-level directory of the cluster's local file system. Raise the following points:
-* there are a collection of standard Linux file system directories and files found here, because we are listing the contents of the local file system, not DBFS
-* there is a **/dbfs** directory, where DBFS is actually mounted.
-
-## Upload from Workspace
-
-Let’s upload a file to DBFS.
-
-With the DBFS tab in the Data page selected, click the **Upload** button. Browse to locate the .csv file (contained in the .zip file downloaded from above), or drag the file to the shared area of the dialog.
-
-Call out that the file will be uploaded into the **/FileStore** directory. We could create additional sub-directories here if desired, but when uploading through he UI it's always going to be somewhere under **FileStore**.
-
-Show that it's there by navigating to the **/FileStore** in the Workspace. Can also re-run the Notebook created earlier to check the file's presence.
-
-Bring up the point that this example file represents a relatively small dataset. For production environments:
-* uploading large datasets into DBFS is generally not recommended. In that case, the preferred approach is to connect, or mount, an external data source onto DBFS and maintain your data there.
-* uploading via the user interface is not recommended. Consider automating this using the CLI or API
-
-## File Management
-
-Call out to the prefix searching capabilities of the UI to help you find files as your DBFS scales.
-
-Also demonstrate usage of the chevron element on each item that allows us to perform some additional operations. For the file we just uploaded, we could move, rename or delete it as needed.
diff --git a/platform-demos/4-notebooks.md b/platform-demos/4-notebooks.md
deleted file mode 100644
index b18e025..0000000
--- a/platform-demos/4-notebooks.md
+++ /dev/null
@@ -1,131 +0,0 @@
-# Create and run Databricks notebooks
-
-This demo will cover the creation and management of some simple Databricks Notebooks. By the end of this lesson you will be able to:
-
-* Create and populate your own multi-cell Notebook
-* Incorporate visual elements into your Notebooks
-* Import and export Notebooks
-
-Before proceeding, ensure that:
-* You have a cluster running as it will be needed to run commands
-* Have a sample data file for reading. The code example here assumes the existence of **/FileStore/uszips.csv** in DBFS, as per the DBFS demo
-
-## Create Notebook
-
-Create a new Notebook. Highlight that because it's such a common thing to do, there are a few ways, including:
-* From the home page
-* From the **Create** menu
-* From any folder item in the Workspace for which you have appropriate permissions (click the chevron, then **Create→Notebook**)
-
-When choosing a name, be sure to mention that you can easily change the name afterward.
-
-When selecting default language, mention that since Notebooks are essentially a collection of commands, you should choose the language you anticipate using the most. That said, there's no need to overthink this since it too can be changed after, and individual cells can also override this choice. For the sake of an example, choose **Python**.
-
-For cluster, choose a running cluster for which you have permissions. These compute resources will be needed when you go to execute commands in the Notebook.
-
-## Create a Markdown cell
-
-Start by documenting the Notebook with a bit of text.
-
- %md
- # Example Notebook
- This is a description of the Notebook
-
-Take a moment to talk about the *magic command* in the first line. By default, Databricks will assume this cell contains Python (the default language). The magic command overrides this. Databricks supports a few different magic commands for such designatations and various other tasks.
-
-Draw attention to the syntax highlight as you type, which start to become very handing when writing SQL, Python or others.
-
-Add another Markdown cell with the following contents.
-
- %md
- ## Read a data file
- Read and display a CSV from DBFS.
-
-Open the table of contents panel and illustrate how thoughtful application of Markdown can make your Notebooks more easy to read and navigate.
-
-## Create a Python cell
-
-Now add another cell containing the following Python code:
-
- df = spark.read.csv("/FileStore/uszips.csv",
- header="true",
- inferSchema="true")
- display(df)
-
-Draw attention to the fact that we don't need a magic command for this cell because Python is the default language for the Notebook.
-
-Here we are leveraging the automatically created SparkSession object, **spark**, to read the CSV file located in the DBFS **FileStore** directory into a **DataFrame** object named `df`. The parameters intercept the header row, and causes the schema to be inferred from sapling the input data.
-
-Then we display the data using the Databricks `display()` function. Databricks formats this output as a table by default. Highlight that you can scroll through the data, and sort it by clicking on the headers.
-
-Add another cell with the code:
-
- df.createOrReplaceTempView('temp')
-
-This code creates a *temporary view*, that is, a database table local to this Notebook, based on the data referred to by the `df` object. Running it gives us the opportunity to reinforce some important points:
-* execution state is maintained across cells in a Notebook (per language). In this cell we can seamlessly refer to `df` that was created in a different cell.
-* no output is generated here because we didn't call `display()`. It's not necessary anyway since there's nothing new to display; we're simply creating an alternate representation of data we already read in.
-
-## Create an SQL cell
-
-Add another cell:
-
- %sql
- SELECT * FROM temp
-
-A few things of note:
-* here we need a magic command since we're departing from the default language.
-* we are simply querying all the data from a table named **temp**; that is, the temporary view we created in the previous cell from Python code
-* temporary views can be used to create alternate representations of data that you don't want to make globablly available; they're also useful for querying DataFrames from SQL
-* Without having to do anything extra, Databricks is displaying the output in a table
-* the data is identical to the earlier cell (as it should be, since it's the same data; the only thing that has changed is how it's being stored)
-
-## Add Visualizations
-
-Create a new cell with the following:
-
- %sql
- SELECT `state_id` AS `state`,COUNT(`zip`) AS `nzips`
- FROM temp
- WHERE `state_id` NOT IN ('AS','GU','MP','PR','VI')
- GROUP BY `state`
- ORDER BY `nzips`
-
-This more elaborate query pulls only the **state_id** and **zip** columns, and aggregates by **zip**. It's also filtering out some states and sorting the output by the count. The end result is a record per state with the count of zip codes in that state. Run the cell. Once you get a table output, click the bar graph plot. Let’s run the query to see the output. This gives us a 51-row table, as expected, counting the number of reported zip codes for each state. Click the bar graph to switch visualiations. Highlight how you can customize these and, ultimately using DBSQL, could pull these graphics into a dashboard.
-
-For another great visual, add the following cell:
-
- %sql
- SELECT `state_id` AS `state`,SUM(`population`) AS `population`
- FROM temp
- WHERE `state_id` NOT IN ('AS','GU','MP','PR','VI')
- GROUP BY `state`
-
-Run and select the **Map** plot. This gives us a heatmap presenting the population per state.
-
-## Export and Import Notebooks
-
-You can share Notebooks by exporting them. Open **File→Export**, and highlight 3 important options:
-* **DBC Archive**: an archive that can be easily imported into another Workspace. This includes state and results
-* **Source File**: a source code file (in the syntax of the default language) representing the text/code in the Notebook (no state or results are captured)
-* **HTML**: a static web page capturing the Notebook (and results), useful for publishing or documentation
-
-Export the Notebook using HTML, then open the resulting .html file in a web browser. Highlight that the visuals are all included and as interactive as they were in the Notebook.
-
-Now export as a DBC Archive.
-
-## Import Notebooks
-
-Let's highlight two ways to import. First create a folder in your home directory in the Workspace. Call it **Test**. In that folder, select the import option. Now drag the .dbc file downloaded previously to the shared area of the dialog. This highlights the file import method (you can also browse for the file rather than dropping it onto the dialog). This gives us a copy of the Notebook we exported previously.
-
-Now go back to the **Test** folder and import again. This time use the URL option and paste the link:
-
- https://docs.databricks.com/_static/notebooks/delta/quickstart-python.html
-
-## Comments
-
-Like many online document collaboration platforms, Notebooks support comments. Highlight some code, click the icon and add a comment. As you might expect, you can edit or reply to comments.
-
-## Revision history
-
-Notebooks also have built-in revision history. Though not as powerful as an external revisioin control system like git, it does provide some basic abilities to inspect the history of a Notebook, what changed when, by whom, etc. Git integration through Databricks Repos, which we discuss shortly, provide additional capabilities.
diff --git a/platform-demos/5-repos.md b/platform-demos/5-repos.md
deleted file mode 100644
index a5cf664..0000000
--- a/platform-demos/5-repos.md
+++ /dev/null
@@ -1,129 +0,0 @@
-# Integrate Git control for Databricks Repos
-
-This demo will cover the creation and management of Databricks Repos. By the end of this lesson you will be able to:
-* Integrate your Workspace with a supported Git service
-* Create and manage Repos
-* Add Notebooks to a Repo
-* Perform various revision control operations on the Repo
-
-Before proceeding, ensure that:
-* Repos are enabled in your Workspace (**Settings→Admin Console→Workspace Settings→Advanced→Repos**)
-* If you are using an exising account with a supported git provider, set up the integration now (**Settings→User Settings→Git Integration**) before sharing screen with learners to avoid leakage of credentials.
-* If you are not using an existing git account, create a throw-away account with GitHub.
-
-## Integrating git
-
-First mention that the Repos feature can be turned on or off by the administrator (can show this if desired). The allow list can also be configured there for improved security.
-
-Now introduce learners to the page where they configure git integration (**Settings→User Settings→Git Integration**). Click on the **Change settings** button.
-
-Click on the **Git provider** dropdown to display supported providers (note that **GitHub Enterprise** is currently in private preview; if someone is interested in that integration, then they would need to work with their Databricks representative to get that set up).
-
-Select a few different ones and draw attention to the fact that the UI provides a link to instructions on crating a token based on the selection. But we will walk through this.
-
-Select the one that applies to you.
-
-If you have already configured git integration because you are using an existing account, proceed as follows:
-* Show them (in the git provider UI) how to obtain the username
-* How to create a personal access token with appropriate permissions, which is displayed in the Workspace UI based on the selection. NOTE: do NOT actually create a token!
-* How they would populate the **Username** and **Token** fields
-* Do NOT save any changes
-
-If you are using a throw-away GitHub account:
-* Show them where to find the account username in the GitHub UI
-* How to create a personal access token with **repo** permissions. See https://docs.github.com/en/authentication/keeping-your-account-and-data-secure/creating-a-personal-access-token
-* Copy the token and transfer that value to the **Token** field in the Workspace UI
-* Transfer the username to the **Username** field in the Workspace UI
-* Click **Save**
-
-## Create Repo
-
-Remind learners of the 1:1 mapping between a Databricks Repo and a git repository. So first we need a git repository.
-
-### Create git repository
-
-In your git service UI:
-* Create a new repository initialized with some content (for example, the **Add a README file** in GitHub); this way the repository is automatically initialized
-* Capture the HTTPS URL.
-
-### Create Databricks Repo
-
-In the **Repos** page, click **Add Repo**. Mention that it's possible to start a Repo and add the remote URL later, but that's not the workflow we show here. Click **Clone remote Git repo** and paste the URL. THe **Git provider** and **Repo name** will be inferred though you can change the name if desired. Click **Create**.
-
-## Add folder
-
-With a new Repo created, navigate to it so that we can add some content. Remind learners that the UI metaphors are identical to the Workspace and that Repos is merely an extension of that to accomodate integration with git revision control.
-
-Inside the Repo, create a folder (click on the chevron and select **Create→Folder**). Name the folder anything you like.
-
-## Add Notebooks
-
-Now let’s add Notebooks. Let's walk through a few different ways.
-
-### Create new Notebook
-
-If beginning a brand new project, you might be starting from a blank slate so in this case, creating a new Notebook might be the way to go.
-
-On the folder you created, click the chevron and select **Create→Notebook**. From there, the workflow is identical to creating a new Notebook in the Workspace, which we have seen before.
-
-From there, create a simple markdown cell:
-
- %md
- # Sample notebook
- Sample description
-
-### Clone an existing Notebook
-
-If you have existing Notebooks in your Workspace or another Repo, cloning is an option.
-
-Navigate to a Notebook you have created in your Workspace. Click the chevron and select **Clone**.
-
-You will likely want to overwrite the auto-generated value for **New Name**. For the destination, select **Repos** then navigate to the desired Repo and folder within, and click **Clone**.
-
-### Import a Notebook
-
-If you have existing Notebooks from others that you want to add, importing them is an option. Tell learners that they would first need to have them exported (ideally a DBC Archive).
-
-From there, demonstrate the import workflow. On the folder you created in the Repo, click the chevron and select **Importk**. Again the workflow is similar to importing into the Workspace. If you have a DBC from that lesson then use that. Otherwise you can import by URL and use the following:
-
- https://docs.databricks.com/_static/notebooks/delta/quickstart-python.html
-
-## Commit and push
-
-We have set up a new Repo, and locally we created a new folder containing some Notebooks. Let’s push this upstream to our remote repository.
-
-We do this from the Repo dialog. Open that from the Repos page or from one of the Notebooks inside the Repo.
-
-Talk about the dialog and how it itemizes the changes. This is handy because sometimes by the time we finally get around to committing, we forget what we’ve changed. Selecting each change in the list provides a preview of the changes to the associated file.
-
-We can commit each change individually or as many as we'd like. It’s good practice to logically group commits, and sometimes we forget to commit before we have made additional unrelated changes, so this option helps with that.
-
-For each commit, we must provide a summary; be descriptive and concise. If desired, additional verbosity can be provided in the description.
-
-Let’s commit the changes by clicking Commit & Push.
-
-Point out that what we did here covers functionality, but doesn't necessarily reflect best practice. Things can get a little more complicated when multiple developers are collaborating on the same branch. If someone else has pushed their own changes to the remote repository since you last pulled from it, you will not be able to push your changes. You will have to pull the remote changes first, and potentially deal with any merging conflicts that can sometimes happen if conflicting changes are detected.
-
-So, if developers must collaborate on the same branch, then pulling is important before you begin your development work.
-
-## Best practices
-
-Best practices advocate creating feature branches for your development. This way your changes are isolated and you are largely immune to the potential conflict situations mentioned above. This is particularly appropriate when working on features that aren’t tied tightly to development work being carried out by others in your team.
-
-Once you complete your changes and they have been unit tested, reviewed and approved, then merging with other branches can be handled in a more controlled manner elsewhere in your process.
-
-## Branching
-
-To support best practices, let's create a feature branch called **dev**. Open the Repo dialog, which can be accessed from the **Repos** page or within any Notebook inside the Repo.
-
-Click the **+** button to the right of the branch dropdown. The dropdown then becomes editable. Specify the name of the new branch. When creating a new branch, it will automatically become the active branch, though you can use the dropdown at any time to switch to a different branch.
-
-With the development branch created and activated, we can now begin making changes as needed.
-
-Import a new Notebook into the folder you created in the Repo. As an example you can use the following URL:
-
- https://docs.databricks.com/_static/notebooks/structured-streaming-python.html
-
-Revisit the Repo dialog and notice how the changes are itemized before. Fill out a summary and commit and push the changes, just like we did before. The key difference is that now the main branch is unaffected by our changes. Everything we did is isolated in the **dev** branch. Verify this by switching branches back to main, using the dropdown in the Repo dialog. Notice how the new Notebook is closed, and the folder no longer contains that new Notebook.
-
-Switch back to **dev** to see it reappear.
diff --git a/platform-demos/6-LAB.md b/platform-demos/6-LAB.md
deleted file mode 100644
index 6250d9d..0000000
--- a/platform-demos/6-LAB.md
+++ /dev/null
@@ -1,187 +0,0 @@
-# Hands On Lab: Getting Started with the Databricks Platform
-
-In this lab, you'll apply the skills you've just learned to:
-- Create and manage an interactive cluster
-- Import a Repo
-- Create and clone a notebook
-- Load a dataset into the DBFS
-- Attach a notebook to a cluster and run a cell
-- Review code changes in Repos
-
-Before proceeding, ensure that you:
-- Are logged into Databricks.
-- Are in the **Data Science & Engineering Workspace** by selecting the appropriate entry from the persona menu.
-
-## Create a Cluster
-
-Running commands and processing data requires compute resources, which in Databricks is supplied by clusters. In this section, we will create a new interactive cluster which we will later use to run commands.
-
-1. From the home page, select **New Cluster**, or click the **Compute** icon in the sidebar and click **Create Cluster**.
-2. Specify *my_cluster* for **Cluster Name**.
-3. Select **Single Node** for **Cluster Mode**. This will provide ample compute resources for this lab while minimizing compute costs.
-4. Specify *60* to terminate the cluster after 60 minutes of inactivity. This more agressive value will further reduce compute costs.
-5. Select the most recent version of the **Standard** runtime for **Databricks Runtime Version**.
-6. Leave the remainder of the settings in their default states.
-7. Click **Create Cluster**.
-
-Cluster Creation will take several minutes. In the meantime, you may continue with the next section.
-
-## Import a Repo
-
-Databricks Repos is a feature that extends the concept of the Workspace to include revision control through its git integration. Repos also provides an API that enables integration with CI/CD tools.
-
-In this section, we will create a Repo based on an existing repository on GitHub.
-
-1. Click the **Repos** icon in the sidebar and click **Add Repo**.
-2. With **Clone remote Git repo** selected, paste the following URL into the **Git repo URL** field:
- ```
- https://github.com/databricks-academy/data-engineering-with-databricks
- ```
- Notice that values for **Git provider** and **Repo name** are inferred. For this exercise, leave the inferred values as they are.
-3. Click **Create**.
-
-We now have a Repo called **data-engineering-with-databricks** that contains a copy of the materials from the underlying git repository. Though parallel to the folders of your Workspace, the user interface metaphors for Repos are identical and it is easy to move material back and forth as we will soon see.
-
-## Create a Notebook
-
-A Notebook is an interactive web document that allows use to run commands on our clusters in four different languages: Python, R, Scala and SQL. We can also intermix Markdown to embed structured documentation. In this section we will create a Notebook in the Workspace.
-
-1. Click the **Workspace** icon in the sidebar.
-2. Select the **Users** folder, which contains a personal folder for each user in the Workspace.
-3. Identify the folder associated with your user id (this maps to the user id you use to login to Databricks). This is your personal folder for storing Databricks assets.
-5. Create a new folder named `Home`:
- 1. Click the chevron on the right side of your personal folder. Select **Create→Folder** from the menu.
- 2. Specify *Home* for the folder name.
- 3. Click **Create Folder**.
- 4. Navigate to this new folder; select your personal folder to view the contents, then select **Home**.
-6. Create a new Notebook named `my_name`:
- 1. Click the chevron on the right side of the **Home** folder. Select **Create→Notebook** from the menu.
- 2. Specify *my_name* for **Name**.
- 3. Select **Python** as the **Default Language**.
- 4. Select **my_cluster** for **Cluster**.
- 5. Click **Create**. You now have a blank Notebook at the following path: */Users/<user id>/Home/my_name*. Let's begin adding some content to this Notebook.
-7. Add a single line of Python code to the first cell of the Notebook. Substituting your own name on the right-hand side, this will assigne that value to a variable named `name`.
- ```
- name = ""
- ```
-
-## Clone a Notebook
-
-Let's return our attention to the Repo we created earlier. When setting up Repos, we often want to copy in Notebooks we have been developing in our Workspace. This process of copying Notebooks is referred to as cloning the Notebook. You can clone a Notebook from your Workspace to a different location in your Workspace, from your Workspace to a Repo, from a Repo to your Workspace, or even from one Repo to another Repo. In this section, we clone a Notebook to transfer it from the Workspace into the Repo we created.
-
-The cloning function is available from both the Workspace navigator, or from within the Notebook if you have it open (where it can be found in the **File** menu).
-
-**NOTE**: When cloning your notebook, be _very_ specific about the location; we'll leverage another notebook that uses a `%run` to call this notebook from a relative location and confirm success.
-
-1. With the Notebook open, open the **File** menu and select **Clone**.
-2. Replace the auto-generated value of **New Name** with the string `my_name`.
-3. Specify the destination.
- 1. Select **Repos** in the left-most column.
- 2. Select the folder in the right column named after your user id.
- 3. Select the **data-engineering-with-databricks** Repo that appears in the rightmost column.
- 4. Use the file picker to navigate into the **platform-demos** directory, and then the **assets** folder.
- 5. Click **Clone**.
-
-The newly created copy of the Notebook opens. Note that there is now a Repo control button in the top-left because we are editing a Notebook contained in a Repo. The text appearing in this button reflects the branch of the Repo that is currently active; the Github repository we cloned uses a branch called `published` for its main production branch.
-
-## Load a Dataset
-
-NOTE: managing database tables, which we do in the next section, requires compute resources supplied by your running cluster. Let's ensure it's running now. If it isn't, let's restart it. This operation takes a few minutes and we can continue through this section while that completes.
-
-1. Click the **Compute** icon in the sidebar.
-2. Locate the cluster you created earlier. If the state is shown as **Terminated**, then restart it by clicking the **Start** button in the **Actions** column (these buttons only appear when hovering over the row).
-3. The operation takes a couple of minutes, but you can complete this section in the meantime.
-
-In this section we will upload a data file to DBFS using the Databricks UI. While this is a useful training exercise, this approach is not advised in a production scenario for two reasons:
-- It's better to automate this, so that the entire environment can be replicated without human intervention
-- It's not good practice to store your datasets in the DBFS root. Datasets should be stored in external storage that is mounted onto DBFS under */mnt*.
-
-For this exercise, we use a sample data file we obtained from SimpleMaps (https://simplemaps.com/data/us-zips) that provides census and geographical information for each of the tens of thousands of US zip codes. Visit their website for more information or related products.
-
-1. Download the data file. We provide a copy that can be directly downloaded from [here](./assets/uszips.csv).
-2. In case you are operating in a shared environment where name conflicts may occur, rename the file using a pattern that's guaranteed to be unique. Use your full name (no spaces or other punctuation characters), but retain the *.csv* extension.
-3. Upload the file to DBFS.
- 1. Click the **Data** icon in the sidebar.
- 2. Select **DBFS** to open the DBFS file browser.
- 3. Click **Upload**.
- 4. Leave the **DBFS Target Directory** blank; this will upload the file into the */FileStore* directory of DBFS.
- 5. Click to use your operating system file browser to locate the file, or drag it from your local storage area to the drop zone. Either way, wait a few moments for it to upload.
- 6. Once the upload completes, click **Done**.
-4. (Optional) Navigate to the */Filestore* directory in the DBFS file navigator to validate that the file is present.
-
-## Create a Table
-
-With a data file loaded to DBFS, we will create a table based on it using the Databricks UI. Once again, this is a useful training exercise, but this approach is not advised in a production scenario for two reasons:
-- It's better to automate this, so that the entire environment can be replicated without human intervention
-- Particularly for large datasets, creating a Delta table will deliver superior performance. Creating an unmanaged table is also better since it decouples the table data and metadata. Neither of these options is available in the table creation UI.
-
-1. Click the **Data** icon in the sidebar.
-2. Select **Database Tables** to view and manage the databases and tables.
-3. Click **Create Table**.
-4. Select **DBFS** for **Data Source**, since the data file has been uploaded to DBFS already.
-5. Navigate to and select the *.csv* file uploaded previously, located in the */FileStore* directory.
-6. Click **Create Table with UI**.
-7. Select your cluster from the **Cluster** dropdown.
-8. Click **Preview Table**. Note the value for **Table Name** but leave it as is. You will need this value shortly.
-9. Enable **First row is header** to promote the first row to be the column names.
-10. Enable **Infer schema** to allow Spark to infer the data types for each column. Note that usage of this option is dependent on how you plan to use this table and whether you prefer all values to be treated as STRINGs in the table or if you would prefer the type to reflect the actual nature of the data in that column.
-11. With the remainder of the options in their default states, click **Create Table**.
-
-## Attach a Notebook to a Cluster
-
-It is often necessary to attach a Notebook to a cluster. There are a number of reason this need might arise, including:
-We need compute resources to run cells in our Notebooks, but maybe the Notebook is detached. This can happen for a few different reasons:
-- Notebook was created without attaching to any cluster.
-- The cluster originally attached to the Notebook was deleted.
-- Need to test a Notebook against a different cluster configuration.
-
-In this section, we will attach a Notebook from the Repo to our running cluster.
-
-1. Click on the **Repos** icon in the sidebar.
-2. Navigate to the **data-engineering-with-databricks** Repo.
-3. Find the **platform-demos** directory, and then the **assets** folder.
-4. Select the Notebook named **population_heatmap**. The Notebook opens.
-5. Locate the cluster dropdown at the top-right corner. From the dropdown, select your cluster.
-
-With a running cluster attached, we can now run cells within the Notebook.
-
-## Run a Cell
-
-Having attached a running cluster to our Notebook, let's run some cells.
-
-1. Locate the first runnable cell in the Notebook, **Cmd 3**. This cell uses the `%run` *magic command* (code preceded with a percent sign) to source another Notebook named **my_name** (recall that was the Notebook we created earlier). This is a useful technique for modularizing code.
-2. Run the cell using either of the following options:
- - Click the play button at the top-right corner of the cell, then select **Run Cell** from the menu.
- - With the cell selected, use the keyboard shortcut `Shift+Enter`.
- Because this cell runs a different Notebook, no output is captured. Instead, a summary of the execution time is provided.
-3. Let's advance to the next runnable cell, **Cmd 5**. Note the following with regards to this cell:
- - It contains SQL, demonstrating that you can mix and match languages within a single Notebook
- - Because the default language for this Notebook is Python, this cell begins with the `%sql` magic command to denote that the cell is SQL.
- - It queries the table we created earlier, named in the Notebook **my_name**. This query builds a list of states with population counts for each.
-4. Run the cell using one of the aforementioned methods.
- - Does it succeed?
- - If it did, you can advance to the next section.
- - If not, can you determine the reason it failed and fix it?
- - The remainder of this section walks through the fix.
-5. Understand the root cause of the failure and how to fix it:
- - The query failed because of a mismatch between the table named in **my_name** and the actual name of the table.
- - Replace the name in **my_name** with the name of the table created earlier.
-6. Locate and open the Notebook **my_name** within the Repo (*not* the copy in your Workspace).
-7. Replace the value on the right-hand side of the assignment in **Cmd 1** with the table name noted earlier.
-8. Return to the **population_heatmap** Notebook. Note, the **Recents** menu, accessible from the sidebar, is very handy for switching between Notebooks quickly.
-9. Run the entire Notebook again by clicking **Run All**. This will ensure the updated name is pulled in prior to attempting the query again. This time, we are met with success.
-
-## Review Changes in Repos
-
-Let's see how our changes are reflected by the revision control capabilites that Repos provide.
-
-1. Click the button at the top-right corner of the Notebook to open the **Repo** dialog.
-2. Notice the itemized changes. Selecting each one in turn highlights what changed on the right-hand side of the dialog.
-3. As write permissions are not available on the provided repository, you will not be able to commit and push. Instead, click **Close**.
-
-One thing to note: nothing else we did in this lab is reflected in the changes:
-- The *Home* directory we created
-- The datasets we uploaded
-- The first instance of the **my_name** Notebook
-
-These changes were made outside the Repo and are hence not tracked. Notice also that other metadata (state, results, and comments, if any) are also not tracked.
diff --git a/platform-demos/README.md b/platform-demos/README.md
deleted file mode 100644
index 60f7845..0000000
--- a/platform-demos/README.md
+++ /dev/null
@@ -1,3 +0,0 @@
-# Platform Demos
-
-This collection of markdown files and assets is provided for reference by instructors and students as part of the Data Engineering with Databricks course.
diff --git a/platform-demos/assets/population_heatmap.py b/platform-demos/assets/population_heatmap.py
deleted file mode 100644
index 6c56f3a..0000000
--- a/platform-demos/assets/population_heatmap.py
+++ /dev/null
@@ -1,27 +0,0 @@
-# Databricks notebook source
-# MAGIC %md
-# MAGIC # Population Heatmap by State
-# MAGIC Using *uszips.csv* as a data source, aggregate the populations by state.
-# MAGIC Note: data file provided courtesy of SimpleMaps (https://simplemaps.com/data/us-zips)
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC Source a Notebook to configure the table name. If `my_name` resides in a different relative path, then adjust the code in **Cmd 3** accordingly.
-
-# COMMAND ----------
-
-# MAGIC %run ./my_name
-
-# COMMAND ----------
-
-# MAGIC %md
-# MAGIC Query the table that was named in the `my_name` Notebook. Aggregate the population, grouping by state. For maximum effectiveness, select the **Map** plot to visualize the output.
-
-# COMMAND ----------
-
-# MAGIC %sql
-# MAGIC SELECT `state_id` AS `state`,SUM(`population`) AS `population`
-# MAGIC FROM ${conf.name}
-# MAGIC WHERE `state_id` NOT IN ('AS','GU','MP','PR','VI')
-# MAGIC GROUP BY `state`
diff --git a/platform-demos/assets/uszips.csv b/platform-demos/assets/uszips.csv
deleted file mode 100644
index ed619bc..0000000
--- a/platform-demos/assets/uszips.csv
+++ /dev/null
@@ -1,33122 +0,0 @@
-"zip","lat","lng","city","state_id","state_name","zcta","parent_zcta","population","density","county_fips","county_name","county_weights","county_names_all","county_fips_all","imprecise","military","timezone"
-"00601","18.18005","-66.75218","Adjuntas","PR","Puerto Rico","TRUE","","17113","102.7","72001","Adjuntas","{""72001"": ""99.43"", ""72141"": ""0.57""}","Adjuntas|Utuado","72001|72141","FALSE","FALSE","America/Puerto_Rico"
-"00602","18.36074","-67.17519","Aguada","PR","Puerto Rico","TRUE","","37751","476.0","72003","Aguada","{""72003"": ""100""}","Aguada","72003","FALSE","FALSE","America/Puerto_Rico"
-"00603","18.4544","-67.12201","Aguadilla","PR","Puerto Rico","TRUE","","47081","574.9","72005","Aguadilla","{""72005"": ""100""}","Aguadilla","72005","FALSE","FALSE","America/Puerto_Rico"
-"00606","18.16721","-66.93828","Maricao","PR","Puerto Rico","TRUE","","6392","58.3","72093","Maricao","{""72093"": ""94.88"", ""72153"": ""3.78"", ""72121"": ""1.35""}","Maricao|Yauco|Sabana Grande","72093|72153|72121","FALSE","FALSE","America/Puerto_Rico"
-"00610","18.29032","-67.12244","Anasco","PR","Puerto Rico","TRUE","","26686","286.9","72011","Añasco","{""72011"": ""99.45"", ""72003"": ""0.55""}","Añasco|Aguada","72011|72003","FALSE","FALSE","America/Puerto_Rico"
-"00612","18.40699","-66.70805","Arecibo","PR","Puerto Rico","TRUE","","59369","339.1","72013","Arecibo","{""72013"": ""99.89"", ""72017"": ""0.11""}","Arecibo|Barceloneta","72013|72017","FALSE","FALSE","America/Puerto_Rico"
-"00616","18.41752","-66.66814","Bajadero","PR","Puerto Rico","TRUE","","10022","335.6","72013","Arecibo","{""72013"": ""100""}","Arecibo","72013","FALSE","FALSE","America/Puerto_Rico"
-"00617","18.44125","-66.55916","Barceloneta","PR","Puerto Rico","TRUE","","23750","603.5","72017","Barceloneta","{""72017"": ""99.43"", ""72054"": ""0.57""}","Barceloneta|Florida","72017|72054","FALSE","FALSE","America/Puerto_Rico"
-"00622","17.99174","-67.15248","Boqueron","PR","Puerto Rico","TRUE","","6741","89.8","72023","Cabo Rojo","{""72023"": ""100""}","Cabo Rojo","72023","FALSE","FALSE","America/Puerto_Rico"
-"00623","18.08354","-67.15418","Cabo Rojo","PR","Puerto Rico","TRUE","","41746","424.5","72023","Cabo Rojo","{""72023"": ""100""}","Cabo Rojo","72023","FALSE","FALSE","America/Puerto_Rico"
-"00624","18.06465","-66.71823","Penuelas","PR","Puerto Rico","TRUE","","21936","196.2","72111","Peñuelas","{""72111"": ""92.53"", ""72113"": ""7.47""}","Peñuelas|Ponce","72111|72113","FALSE","FALSE","America/Puerto_Rico"
-"00627","18.419","-66.86033","Camuy","PR","Puerto Rico","TRUE","","31598","263.2","72027","Camuy","{""72027"": ""100""}","Camuy","72027","FALSE","FALSE","America/Puerto_Rico"
-"00631","18.18555","-66.83327","Castaner","PR","Puerto Rico","TRUE","","1499","143.9","72081","Lares","{""72081"": ""67.01"", ""72001"": ""32.99""}","Lares|Adjuntas","72081|72001","FALSE","FALSE","America/Puerto_Rico"
-"00637","18.0798","-66.94274","Sabana Grande","PR","Puerto Rico","TRUE","","22383","250.9","72121","Sabana Grande","{""72121"": ""99.56"", ""72153"": ""0.44""}","Sabana Grande|Yauco","72121|72153","FALSE","FALSE","America/Puerto_Rico"
-"00638","18.28905","-66.5151","Ciales","PR","Puerto Rico","TRUE","","16412","95.9","72039","Ciales","{""72039"": ""98.27"", ""72091"": ""1.73""}","Ciales|Manatí","72039|72091","FALSE","FALSE","America/Puerto_Rico"
-"00641","18.26408","-66.71376","Utuado","PR","Puerto Rico","TRUE","","26712","110.3","72141","Utuado","{""72141"": ""99.79"", ""72001"": ""0.21""}","Utuado|Adjuntas","72141|72001","FALSE","FALSE","America/Puerto_Rico"
-"00646","18.43401","-66.2833","Dorado","PR","Puerto Rico","TRUE","","37095","691.0","72051","Dorado","{""72051"": ""99.89"", ""72143"": ""0.11""}","Dorado|Vega Alta","72051|72143","FALSE","FALSE","America/Puerto_Rico"
-"00647","17.96612","-66.94383","Ensenada","PR","Puerto Rico","TRUE","","5809","147.5","72055","Guánica","{""72055"": ""98.88"", ""72079"": ""1.12""}","Guánica|Lajas","72055|72079","FALSE","FALSE","America/Puerto_Rico"
-"00650","18.34321","-66.58601","Florida","PR","Puerto Rico","TRUE","","14534","183.9","72054","Florida","{""72054"": ""83.61"", ""72141"": ""11.84"", ""72017"": ""1.91"", ""72013"": ""1.51"", ""72039"": ""1.13""}","Florida|Utuado|Barceloneta|Arecibo|Ciales","72054|72141|72017|72013|72039","FALSE","FALSE","America/Puerto_Rico"
-"00652","18.45542","-66.60635","Garrochales","PR","Puerto Rico","TRUE","","3565","199.0","72013","Arecibo","{""72013"": ""100""}","Arecibo","72013","FALSE","FALSE","America/Puerto_Rico"
-"00653","17.98572","-66.89031","Guanica","PR","Puerto Rico","TRUE","","10484","265.6","72055","Guánica","{""72055"": ""100""}","Guánica","72055","FALSE","FALSE","America/Puerto_Rico"
-"00656","18.05281","-66.79182","Guayanilla","PR","Puerto Rico","TRUE","","18485","220.2","72059","Guayanilla","{""72059"": ""100""}","Guayanilla","72059","FALSE","FALSE","America/Puerto_Rico"
-"00659","18.41069","-66.79648","Hatillo","PR","Puerto Rico","TRUE","","39950","369.2","72065","Hatillo","{""72065"": ""100""}","Hatillo","72065","FALSE","FALSE","America/Puerto_Rico"
-"00660","18.13419","-67.11403","Hormigueros","PR","Puerto Rico","TRUE","","15943","542.6","72067","Hormigueros","{""72067"": ""100""}","Hormigueros","72067","FALSE","FALSE","America/Puerto_Rico"
-"00662","18.46208","-67.01444","Isabela","PR","Puerto Rico","TRUE","","39700","345.4","72071","Isabela","{""72071"": ""100""}","Isabela","72071","FALSE","FALSE","America/Puerto_Rico"
-"00664","18.21151","-66.5889","Jayuya","PR","Puerto Rico","TRUE","","14693","124.6","72073","Jayuya","{""72073"": ""99.15"", ""72141"": ""0.85""}","Jayuya|Utuado","72073|72141","FALSE","FALSE","America/Puerto_Rico"
-"00667","18.01227","-67.0409","Lajas","PR","Puerto Rico","TRUE","","23186","148.4","72079","Lajas","{""72079"": ""98.91"", ""72125"": ""1.09""}","Lajas|San Germán","72079|72125","FALSE","FALSE","America/Puerto_Rico"
-"00669","18.27102","-66.86982","Lares","PR","Puerto Rico","TRUE","","24803","155.6","72081","Lares","{""72081"": ""99.22"", ""72083"": ""0.62"", ""72131"": ""0.16""}","Lares|Las Marías|San Sebastián","72081|72083|72131","FALSE","FALSE","America/Puerto_Rico"
-"00670","18.23776","-66.98875","Las Marias","PR","Puerto Rico","TRUE","","8364","70.9","72083","Las Marías","{""72083"": ""98.88"", ""72011"": ""1.12""}","Las Marías|Añasco","72083|72011","FALSE","FALSE","America/Puerto_Rico"
-"00674","18.42123","-66.49003","Manati","PR","Puerto Rico","TRUE","","38971","334.7","72091","Manatí","{""72091"": ""98.49"", ""72145"": ""1.51""}","Manatí|Vega Baja","72091|72145","FALSE","FALSE","America/Puerto_Rico"
-"00676","18.37789","-67.08084","Moca","PR","Puerto Rico","TRUE","","36299","277.9","72099","Moca","{""72099"": ""99.49"", ""72003"": ""0.51""}","Moca|Aguada","72099|72003","FALSE","FALSE","America/Puerto_Rico"
-"00677","18.3357","-67.23168","Rincon","PR","Puerto Rico","TRUE","","14093","379.5","72117","Rincón","{""72117"": ""99.53"", ""72003"": ""0.47""}","Rincón|Aguada","72117|72003","FALSE","FALSE","America/Puerto_Rico"
-"00678","18.4327","-66.92813","Quebradillas","PR","Puerto Rico","TRUE","","25624","375.3","72115","Quebradillas","{""72115"": ""93.17"", ""72071"": ""5.36"", ""72131"": ""1.47""}","Quebradillas|Isabela|San Sebastián","72115|72071|72131","FALSE","FALSE","America/Puerto_Rico"
-"00680","18.16328","-67.36192","Mayaguez","PR","Puerto Rico","TRUE","","45190","271.7","72097","Mayagüez","{""72097"": ""97.01"", ""72125"": ""2.53"", ""72011"": ""0.46""}","Mayagüez|San Germán|Añasco","72097|72125|72011","FALSE","FALSE","America/Puerto_Rico"
-"00682","18.22118","-67.15381","Mayaguez","PR","Puerto Rico","TRUE","","31735","850.7","72097","Mayagüez","{""72097"": ""100""}","Mayagüez","72097","FALSE","FALSE","America/Puerto_Rico"
-"00683","18.10998","-67.0373","San German","PR","Puerto Rico","TRUE","","29487","218.2","72125","San Germán","{""72125"": ""100""}","San Germán","72125","FALSE","FALSE","America/Puerto_Rico"
-"00685","18.33625","-66.97225","San Sebastian","PR","Puerto Rico","TRUE","","37058","184.5","72131","San Sebastián","{""72131"": ""98"", ""72071"": ""2""}","San Sebastián|Isabela","72131|72071","FALSE","FALSE","America/Puerto_Rico"
-"00687","18.31708","-66.4203","Morovis","PR","Puerto Rico","TRUE","","30962","307.5","72101","Morovis","{""72101"": ""100""}","Morovis","72101","FALSE","FALSE","America/Puerto_Rico"
-"00688","18.38056","-66.62425","Sabana Hoyos","PR","Puerto Rico","TRUE","","12139","147.3","72013","Arecibo","{""72013"": ""100""}","Arecibo","72013","FALSE","FALSE","America/Puerto_Rico"
-"00690","18.49563","-67.09822","San Antonio","PR","Puerto Rico","TRUE","","5722","784.6","72005","Aguadilla","{""72005"": ""100""}","Aguadilla","72005","FALSE","FALSE","America/Puerto_Rico"
-"00692","18.40845","-66.33691","Vega Alta","PR","Puerto Rico","TRUE","","35135","506.9","72143","Vega Alta","{""72143"": ""100""}","Vega Alta","72143","FALSE","FALSE","America/Puerto_Rico"
-"00693","18.42132","-66.40012","Vega Baja","PR","Puerto Rico","TRUE","","53360","524.1","72145","Vega Baja","{""72145"": ""96.07"", ""72143"": ""3.93""}","Vega Baja|Vega Alta","72145|72143","FALSE","FALSE","America/Puerto_Rico"
-"00694","18.48329","-66.39261","Vega Baja","PR","Puerto Rico","TRUE","","64","30.9","72145","Vega Baja","{""72145"": ""100""}","Vega Baja","72145","FALSE","FALSE","America/Puerto_Rico"
-"00698","18.06727","-66.85273","Yauco","PR","Puerto Rico","TRUE","","35317","195.9","72153","Yauco","{""72153"": ""99.76"", ""72059"": ""0.24""}","Yauco|Guayanilla","72153|72059","FALSE","FALSE","America/Puerto_Rico"
-"00703","18.24843","-66.13117","Aguas Buenas","PR","Puerto Rico","TRUE","","26097","339.6","72007","Aguas Buenas","{""72007"": ""95.47"", ""72045"": ""4.53""}","Aguas Buenas|Comerío","72007|72045","FALSE","FALSE","America/Puerto_Rico"
-"00704","17.96719","-66.22013","Aguirre","PR","Puerto Rico","TRUE","","8108","641.9","72123","Salinas","{""72123"": ""92.28"", ""72057"": ""7.72""}","Salinas|Guayama","72123|72057","FALSE","FALSE","America/Puerto_Rico"
-"00705","18.12946","-66.26477","Aibonito","PR","Puerto Rico","TRUE","","22662","273.9","72009","Aibonito","{""72009"": ""99.79"", ""72043"": ""0.21""}","Aibonito|Coamo","72009|72043","FALSE","FALSE","America/Puerto_Rico"
-"00707","18.01813","-65.922","Maunabo","PR","Puerto Rico","TRUE","","10721","196.5","72095","Maunabo","{""72095"": ""100""}","Maunabo","72095","FALSE","FALSE","America/Puerto_Rico"
-"00714","17.99854","-66.05606","Arroyo","PR","Puerto Rico","TRUE","","17739","468.5","72015","Arroyo","{""72015"": ""100""}","Arroyo","72015","FALSE","FALSE","America/Puerto_Rico"
-"00715","18.01174","-66.55987","Mercedita","PR","Puerto Rico","TRUE","","2818","138.3","72113","Ponce","{""72113"": ""74.26"", ""72075"": ""25.74""}","Ponce|Juana Díaz","72113|72075","FALSE","FALSE","America/Puerto_Rico"
-"00716","17.99942","-66.60014","Ponce","PR","Puerto Rico","TRUE","","27513","1240.8","72113","Ponce","{""72113"": ""100""}","Ponce","72113","FALSE","FALSE","America/Puerto_Rico"
-"00717","18.00342","-66.61325","Ponce","PR","Puerto Rico","TRUE","","16086","2955.1","72113","Ponce","{""72113"": ""100""}","Ponce","72113","FALSE","FALSE","America/Puerto_Rico"
-"00718","18.2333","-65.7611","Naguabo","PR","Puerto Rico","TRUE","","25430","217.0","72103","Naguabo","{""72103"": ""100""}","Naguabo","72103","FALSE","FALSE","America/Puerto_Rico"
-"00719","18.2888","-66.25336","Naranjito","PR","Puerto Rico","TRUE","","28556","393.7","72105","Naranjito","{""72105"": ""98.1"", ""72047"": ""1.42"", ""72135"": ""0.48""}","Naranjito|Corozal|Toa Alta","72105|72047|72135","FALSE","FALSE","America/Puerto_Rico"
-"00720","18.21772","-66.42816","Orocovis","PR","Puerto Rico","TRUE","","20758","134.5","72107","Orocovis","{""72107"": ""99.48"", ""72043"": ""0.52""}","Orocovis|Coamo","72107|72043","FALSE","FALSE","America/Puerto_Rico"
-"00723","18.03237","-66.01233","Patillas","PR","Puerto Rico","TRUE","","16984","142.1","72109","Patillas","{""72109"": ""100""}","Patillas","72109","FALSE","FALSE","America/Puerto_Rico"
-"00725","18.21857","-66.04275","Caguas","PR","Puerto Rico","TRUE","","80537","736.5","72025","Caguas","{""72025"": ""94.56"", ""72061"": ""2.76"", ""72007"": ""1.51"", ""72127"": ""0.6"", ""72035"": ""0.43"", ""72129"": ""0.14""}","Caguas|Guaynabo|Aguas Buenas|San Juan|Cayey|San Lorenzo","72025|72061|72007|72127|72035|72129","FALSE","FALSE","America/Puerto_Rico"
-"00727","18.21496","-66.07356","Caguas","PR","Puerto Rico","TRUE","","52743","947.3","72025","Caguas","{""72025"": ""100""}","Caguas","72025","FALSE","FALSE","America/Puerto_Rico"
-"00728","18.00627","-66.6612","Ponce","PR","Puerto Rico","TRUE","","39083","964.4","72113","Ponce","{""72113"": ""100""}","Ponce","72113","FALSE","FALSE","America/Puerto_Rico"
-"00729","18.33113","-65.88722","Canovanas","PR","Puerto Rico","TRUE","","51015","580.0","72029","Canóvanas","{""72029"": ""87.09"", ""72087"": ""12.91""}","Canóvanas|Loíza","72029|72087","FALSE","FALSE","America/Puerto_Rico"
-"00730","18.03091","-66.61659","Ponce","PR","Puerto Rico","TRUE","","30175","1788.3","72113","Ponce","{""72113"": ""100""}","Ponce","72113","FALSE","FALSE","America/Puerto_Rico"
-"00731","18.09776","-66.63356","Ponce","PR","Puerto Rico","TRUE","","12657","102.4","72113","Ponce","{""72113"": ""97.8"", ""72001"": ""2.2""}","Ponce|Adjuntas","72113|72001","FALSE","FALSE","America/Puerto_Rico"
-"00735","18.25365","-65.68306","Ceiba","PR","Puerto Rico","TRUE","","12159","201.4","72037","Ceiba","{""72037"": ""99.18"", ""72103"": ""0.82""}","Ceiba|Naguabo","72037|72103","FALSE","FALSE","America/Puerto_Rico"
-"00736","18.10652","-66.15258","Cayey","PR","Puerto Rico","TRUE","","46085","322.9","72035","Cayey","{""72035"": ""92.62"", ""72041"": ""7.38""}","Cayey|Cidra","72035|72041","FALSE","FALSE","America/Puerto_Rico"
-"00738","18.31828","-65.66785","Fajardo","PR","Puerto Rico","TRUE","","29196","382.4","72053","Fajardo","{""72053"": ""100""}","Fajardo","72053","FALSE","FALSE","America/Puerto_Rico"
-"00739","18.17681","-66.16055","Cidra","PR","Puerto Rico","TRUE","","36734","449.1","72041","Cidra","{""72041"": ""100""}","Cidra","72041","FALSE","FALSE","America/Puerto_Rico"
-"00740","18.3322","-65.63429","Puerto Real","PR","Puerto Rico","TRUE","","1915","1735.5","72053","Fajardo","{""72053"": ""100""}","Fajardo","72053","FALSE","FALSE","America/Puerto_Rico"
-"00741","18.16564","-65.75563","Punta Santiago","PR","Puerto Rico","TRUE","","4074","665.5","72069","Humacao","{""72069"": ""100""}","Humacao","72069","FALSE","FALSE","America/Puerto_Rico"
-"00745","18.34827","-65.8172","Rio Grande","PR","Puerto Rico","TRUE","","50435","377.3","72119","Río Grande","{""72119"": ""98.6"", ""72029"": ""1.4""}","Río Grande|Canóvanas","72119|72029","FALSE","FALSE","America/Puerto_Rico"
-"00751","18.01021","-66.24751","Salinas","PR","Puerto Rico","TRUE","","20677","169.9","72123","Salinas","{""72123"": ""100""}","Salinas","72123","FALSE","FALSE","America/Puerto_Rico"
-"00754","18.1457","-65.97606","San Lorenzo","PR","Puerto Rico","TRUE","","36893","279.1","72129","San Lorenzo","{""72129"": ""100""}","San Lorenzo","72129","FALSE","FALSE","America/Puerto_Rico"
-"00757","17.99728","-66.38891","Santa Isabel","PR","Puerto Rico","TRUE","","21757","281.6","72133","Santa Isabel","{""72133"": ""100""}","Santa Isabel","72133","FALSE","FALSE","America/Puerto_Rico"
-"00765","18.12852","-65.44088","Vieques","PR","Puerto Rico","TRUE","","8523","172.8","72147","Vieques","{""72147"": ""100""}","Vieques","72147","FALSE","FALSE","America/Puerto_Rico"
-"00766","18.13299","-66.47703","Villalba","PR","Puerto Rico","TRUE","","22687","218.8","72149","Villalba","{""72149"": ""98.43"", ""72107"": ""1.57""}","Villalba|Orocovis","72149|72107","FALSE","FALSE","America/Puerto_Rico"
-"00767","18.07052","-65.89606","Yabucoa","PR","Puerto Rico","TRUE","","33499","233.4","72151","Yabucoa","{""72151"": ""99.79"", ""72069"": ""0.21""}","Yabucoa|Humacao","72151|72069","FALSE","FALSE","America/Puerto_Rico"
-"00769","18.097","-66.36102","Coamo","PR","Puerto Rico","TRUE","","38812","195.9","72043","Coamo","{""72043"": ""100""}","Coamo","72043","FALSE","FALSE","America/Puerto_Rico"
-"00771","18.18746","-65.86932","Las Piedras","PR","Puerto Rico","TRUE","","36906","421.3","72085","Las Piedras","{""72085"": ""100""}","Las Piedras","72085","FALSE","FALSE","America/Puerto_Rico"
-"00772","18.43267","-65.90836","Loiza","PR","Puerto Rico","TRUE","","19529","514.4","72087","Loíza","{""72087"": ""100""}","Loíza","72087","FALSE","FALSE","America/Puerto_Rico"
-"00773","18.34174","-65.7274","Luquillo","PR","Puerto Rico","TRUE","","18224","289.4","72089","Luquillo","{""72089"": ""100""}","Luquillo","72089","FALSE","FALSE","America/Puerto_Rico"
-"00775","18.31347","-65.29017","Culebra","PR","Puerto Rico","TRUE","","1299","47.5","72049","Culebra","{""72049"": ""100""}","Culebra","72049","FALSE","FALSE","America/Puerto_Rico"
-"00777","18.22357","-65.90881","Juncos","PR","Puerto Rico","TRUE","","39609","575.3","72077","Juncos","{""72077"": ""99.03"", ""72085"": ""0.69"", ""72029"": ""0.16"", ""72063"": ""0.12""}","Juncos|Las Piedras|Canóvanas|Gurabo","72077|72085|72029|72063","FALSE","FALSE","America/Puerto_Rico"
-"00778","18.26339","-65.97936","Gurabo","PR","Puerto Rico","TRUE","","46707","608.4","72063","Gurabo","{""72063"": ""99.76"", ""72129"": ""0.24""}","Gurabo|San Lorenzo","72063|72129","FALSE","FALSE","America/Puerto_Rico"
-"00780","18.10416","-66.57175","Coto Laurel","PR","Puerto Rico","TRUE","","11016","211.4","72113","Ponce","{""72113"": ""95.54"", ""72075"": ""4.46""}","Ponce|Juana Díaz","72113|72075","FALSE","FALSE","America/Puerto_Rico"
-"00782","18.22544","-66.22218","Comerio","PR","Puerto Rico","TRUE","","17670","256.1","72045","Comerío","{""72045"": ""100""}","Comerío","72045","FALSE","FALSE","America/Puerto_Rico"
-"00783","18.3041","-66.32847","Corozal","PR","Puerto Rico","TRUE","","32769","302.4","72047","Corozal","{""72047"": ""100""}","Corozal","72047","FALSE","FALSE","America/Puerto_Rico"
-"00784","18.00544","-66.13392","Guayama","PR","Puerto Rico","TRUE","","39823","276.8","72057","Guayama","{""72057"": ""100""}","Guayama","72057","FALSE","FALSE","America/Puerto_Rico"
-"00786","18.15536","-66.22992","La Plata","PR","Puerto Rico","TRUE","","360","540.3","72009","Aibonito","{""72009"": ""100""}","Aibonito","72009","FALSE","FALSE","America/Puerto_Rico"
-"00791","18.14069","-65.818","Humacao","PR","Puerto Rico","TRUE","","48433","506.5","72069","Humacao","{""72069"": ""100""}","Humacao","72069","FALSE","FALSE","America/Puerto_Rico"
-"00794","18.20154","-66.30873","Barranquitas","PR","Puerto Rico","TRUE","","28434","311.0","72019","Barranquitas","{""72019"": ""99.13"", ""72045"": ""0.59"", ""72043"": ""0.29""}","Barranquitas|Comerío|Coamo","72019|72045|72043","FALSE","FALSE","America/Puerto_Rico"
-"00795","18.05932","-66.50178","Juana Diaz","PR","Puerto Rico","TRUE","","43873","366.2","72075","Juana Díaz","{""72075"": ""100""}","Juana Díaz","72075","FALSE","FALSE","America/Puerto_Rico"
-"00801","18.34856","-64.97502","St Thomas","VI","Virgin Islands","TRUE","","","","78030","St. Thomas","{""78030"": 100}","St. Thomas","78030","FALSE","FALSE","America/St_Thomas"
-"00802","18.34225","-64.92657","St Thomas","VI","Virgin Islands","TRUE","","","","78030","St. Thomas","{""78030"": 100}","St. Thomas","78030","FALSE","FALSE","America/St_Thomas"
-"00820","17.74147","-64.687","Christiansted","VI","Virgin Islands","TRUE","","","","78010","St. Croix","{""78010"": 100}","St. Croix","78010","FALSE","FALSE","America/St_Thomas"
-"00823","17.73281","-64.74653","Christiansted","VI","Virgin Islands","TRUE","","","","78010","St. Croix","{""78010"": 100}","St. Croix","78010","FALSE","FALSE","America/St_Thomas"
-"00824","17.74461","-64.68276","Christiansted","VI","Virgin Islands","TRUE","","","","78010","St. Croix","{""78010"": 100}","St. Croix","78010","FALSE","FALSE","America/St_Thomas"
-"00830","18.33851","-64.73804","St John","VI","Virgin Islands","TRUE","","","","78020","St. John","{""78020"": 100}","St. John","78020","FALSE","FALSE","America/St_Thomas"
-"00831","18.32716","-64.78676","St John","VI","Virgin Islands","TRUE","","","","78020","St. John","{""78020"": 100}","St. John","78020","FALSE","FALSE","America/St_Thomas"
-"00840","17.72484","-64.85931","Frederiksted","VI","Virgin Islands","TRUE","","","","78010","St. Croix","{""78010"": 100}","St. Croix","78010","FALSE","FALSE","America/St_Thomas"
-"00841","17.73373","-64.83742","Frederiksted","VI","Virgin Islands","TRUE","","","","78010","St. Croix","{""78010"": 100}","St. Croix","78010","FALSE","FALSE","America/St_Thomas"
-"00850","17.72819","-64.7939","Kingshill","VI","Virgin Islands","TRUE","","","","78010","St. Croix","{""78010"": 100}","St. Croix","78010","FALSE","FALSE","America/St_Thomas"
-"00851","17.73267","-64.77158","Kingshill","VI","Virgin Islands","TRUE","","","","78010","St. Croix","{""78010"": 100}","St. Croix","78010","FALSE","FALSE","America/St_Thomas"
-"00901","18.46532","-66.10485","San Juan","PR","Puerto Rico","TRUE","","6617","2609.6","72127","San Juan","{""72127"": ""100""}","San Juan","72127","FALSE","FALSE","America/Puerto_Rico"
-"00906","18.46446","-66.09499","San Juan","PR","Puerto Rico","TRUE","","191","23159.9","72127","San Juan","{""72127"": ""100""}","San Juan","72127","FALSE","FALSE","America/Puerto_Rico"
-"00907","18.45313","-66.07778","San Juan","PR","Puerto Rico","TRUE","","15151","4858.2","72127","San Juan","{""72127"": ""100""}","San Juan","72127","FALSE","FALSE","America/Puerto_Rico"
-"00909","18.44153","-66.06723","San Juan","PR","Puerto Rico","TRUE","","4698","2971.6","72127","San Juan","{""72127"": ""100""}","San Juan","72127","FALSE","FALSE","America/Puerto_Rico"
-"00911","18.45135","-66.05631","San Juan","PR","Puerto Rico","TRUE","","7089","5751.7","72127","San Juan","{""72127"": ""100""}","San Juan","72127","FALSE","FALSE","America/Puerto_Rico"
-"00912","18.44534","-66.06018","San Juan","PR","Puerto Rico","TRUE","","5660","6558.7","72127","San Juan","{""72127"": ""100""}","San Juan","72127","FALSE","FALSE","America/Puerto_Rico"
-"00913","18.45022","-66.04266","San Juan","PR","Puerto Rico","TRUE","","7890","9451.0","72127","San Juan","{""72127"": ""100""}","San Juan","72127","FALSE","FALSE","America/Puerto_Rico"
-"00915","18.43691","-66.04562","San Juan","PR","Puerto Rico","TRUE","","24888","6880.9","72127","San Juan","{""72127"": ""100""}","San Juan","72127","FALSE","FALSE","America/Puerto_Rico"
-"00917","18.4214","-66.05005","San Juan","PR","Puerto Rico","TRUE","","18196","5415.5","72127","San Juan","{""72127"": ""100""}","San Juan","72127","FALSE","FALSE","America/Puerto_Rico"
-"00918","18.42138","-66.06589","San Juan","PR","Puerto Rico","TRUE","","15759","2856.5","72127","San Juan","{""72127"": ""100""}","San Juan","72127","FALSE","FALSE","America/Puerto_Rico"
-"00920","18.41573","-66.08887","San Juan","PR","Puerto Rico","TRUE","","16281","2211.1","72127","San Juan","{""72127"": ""100""}","San Juan","72127","FALSE","FALSE","America/Puerto_Rico"
-"00921","18.39225","-66.08854","San Juan","PR","Puerto Rico","TRUE","","31801","4593.3","72127","San Juan","{""72127"": ""100""}","San Juan","72127","FALSE","FALSE","America/Puerto_Rico"
-"00923","18.40955","-66.03866","San Juan","PR","Puerto Rico","TRUE","","23851","4512.5","72127","San Juan","{""72127"": ""100""}","San Juan","72127","FALSE","FALSE","America/Puerto_Rico"
-"00924","18.39826","-66.01288","San Juan","PR","Puerto Rico","TRUE","","48141","3960.6","72127","San Juan","{""72127"": ""95.86"", ""72031"": ""4.14""}","San Juan|Carolina","72127|72031","FALSE","FALSE","America/Puerto_Rico"
-"00925","18.40033","-66.05053","San Juan","PR","Puerto Rico","TRUE","","6640","5733.6","72127","San Juan","{""72127"": ""100""}","San Juan","72127","FALSE","FALSE","America/Puerto_Rico"
-"00926","18.3462","-66.05234","San Juan","PR","Puerto Rico","TRUE","","93330","1491.4","72127","San Juan","{""72127"": ""88.13"", ""72139"": ""11.47"", ""72061"": ""0.39""}","San Juan|Trujillo Alto|Guaynabo","72127|72139|72061","FALSE","FALSE","America/Puerto_Rico"
-"00927","18.38874","-66.07191","San Juan","PR","Puerto Rico","TRUE","","13626","2002.1","72127","San Juan","{""72127"": ""100""}","San Juan","72127","FALSE","FALSE","America/Puerto_Rico"
-"00934","18.41138","-66.124","Fort Buchanan","PR","Puerto Rico","TRUE","","109","56.2","72061","Guaynabo","{""72061"": ""57.99"", ""72021"": ""42.01""}","Guaynabo|Bayamón","72061|72021","FALSE","FALSE","America/Puerto_Rico"
-"00936","18.39548","-66.07376","San Juan","PR","Puerto Rico","TRUE","","773","1849.5","72127","San Juan","{""72127"": ""100""}","San Juan","72127","FALSE","FALSE","America/Puerto_Rico"
-"00949","18.43017","-66.20884","Toa Baja","PR","Puerto Rico","TRUE","","72943","1601.9","72137","Toa Baja","{""72137"": ""95.85"", ""72033"": ""4.15""}","Toa Baja|Cataño","72137|72033","FALSE","FALSE","America/Puerto_Rico"
-"00950","18.46208","-66.2376","Toa Baja","PR","Puerto Rico","TRUE","","0","0.0","72051","Dorado","{""72051"": ""100""}","Dorado","72051","FALSE","FALSE","America/Puerto_Rico"
-"00951","18.42839","-66.25661","Toa Baja","PR","Puerto Rico","TRUE","","0","0.0","72137","Toa Baja","{""72137"": ""100""}","Toa Baja","72137","FALSE","FALSE","America/Puerto_Rico"
-"00952","18.42748","-66.18207","Sabana Seca","PR","Puerto Rico","TRUE","","7598","2370.7","72137","Toa Baja","{""72137"": ""100""}","Toa Baja","72137","FALSE","FALSE","America/Puerto_Rico"
-"00953","18.36312","-66.2475","Toa Alta","PR","Puerto Rico","TRUE","","71174","1029.4","72135","Toa Alta","{""72135"": ""98.93"", ""72137"": ""0.87"", ""72047"": ""0.2""}","Toa Alta|Toa Baja|Corozal","72135|72137|72047","FALSE","FALSE","America/Puerto_Rico"
-"00956","18.32082","-66.17175","Bayamon","PR","Puerto Rico","TRUE","","63264","922.7","72021","Bayamón","{""72021"": ""99.8"", ""72135"": ""0.2""}","Bayamón|Toa Alta","72021|72135","FALSE","FALSE","America/Puerto_Rico"
-"00957","18.36734","-66.18869","Bayamon","PR","Puerto Rico","TRUE","","38198","3191.7","72021","Bayamón","{""72021"": ""97.07"", ""72135"": ""2.93""}","Bayamón|Toa Alta","72021|72135","FALSE","FALSE","America/Puerto_Rico"
-"00959","18.38482","-66.15585","Bayamon","PR","Puerto Rico","TRUE","","46441","2794.6","72021","Bayamón","{""72021"": ""97.64"", ""72061"": ""1.88"", ""72135"": ""0.36"", ""72137"": ""0.12""}","Bayamón|Guaynabo|Toa Alta|Toa Baja","72021|72061|72135|72137","FALSE","FALSE","America/Puerto_Rico"
-"00960","18.41701","-66.14444","Bayamon","PR","Puerto Rico","TRUE","","2205","931.8","72021","Bayamón","{""72021"": ""100""}","Bayamón","72021","FALSE","FALSE","America/Puerto_Rico"
-"00961","18.41011","-66.16537","Bayamon","PR","Puerto Rico","TRUE","","29743","2218.9","72021","Bayamón","{""72021"": ""98.88"", ""72033"": ""1.12""}","Bayamón|Cataño","72021|72033","FALSE","FALSE","America/Puerto_Rico"
-"00962","18.43903","-66.13928","Catano","PR","Puerto Rico","TRUE","","19082","1929.7","72033","Cataño","{""72033"": ""100""}","Cataño","72033","FALSE","FALSE","America/Puerto_Rico"
-"00965","18.43385","-66.11486","Guaynabo","PR","Puerto Rico","TRUE","","6709","3841.6","72061","Guaynabo","{""72061"": ""79.52"", ""72033"": ""20.48""}","Guaynabo|Cataño","72061|72033","FALSE","FALSE","America/Puerto_Rico"
-"00966","18.40226","-66.11758","Guaynabo","PR","Puerto Rico","TRUE","","15254","1828.8","72061","Guaynabo","{""72061"": ""91.02"", ""72127"": ""5.86"", ""72021"": ""3.12""}","Guaynabo|San Juan|Bayamón","72061|72127|72021","FALSE","FALSE","America/Puerto_Rico"
-"00968","18.40611","-66.10124","Guaynabo","PR","Puerto Rico","TRUE","","3448","2908.1","72061","Guaynabo","{""72061"": ""100""}","Guaynabo","72061","FALSE","FALSE","America/Puerto_Rico"
-"00969","18.36751","-66.10852","Guaynabo","PR","Puerto Rico","TRUE","","41941","3316.4","72061","Guaynabo","{""72061"": ""84.94"", ""72127"": ""13.45"", ""72021"": ""1.6""}","Guaynabo|San Juan|Bayamón","72061|72127|72021","FALSE","FALSE","America/Puerto_Rico"
-"00971","18.32131","-66.11811","Guaynabo","PR","Puerto Rico","TRUE","","25925","627.0","72061","Guaynabo","{""72061"": ""99.51"", ""72021"": ""0.33"", ""72127"": ""0.16""}","Guaynabo|Bayamón|San Juan","72061|72021|72127","FALSE","FALSE","America/Puerto_Rico"
-"00976","18.33844","-65.99209","Trujillo Alto","PR","Puerto Rico","TRUE","","58640","1352.7","72139","Trujillo Alto","{""72139"": ""95.15"", ""72031"": ""2.87"", ""72127"": ""1.98""}","Trujillo Alto|Carolina|San Juan","72139|72031|72127","FALSE","FALSE","America/Puerto_Rico"
-"00979","18.43651","-66.017","Carolina","PR","Puerto Rico","TRUE","","16130","3985.5","72031","Carolina","{""72031"": ""100""}","Carolina","72031","FALSE","FALSE","America/Puerto_Rico"
-"00982","18.40992","-65.9917","Carolina","PR","Puerto Rico","TRUE","","14346","3906.5","72031","Carolina","{""72031"": ""100""}","Carolina","72031","FALSE","FALSE","America/Puerto_Rico"
-"00983","18.41804","-65.97631","Carolina","PR","Puerto Rico","TRUE","","33947","3784.0","72031","Carolina","{""72031"": ""100""}","Carolina","72031","FALSE","FALSE","America/Puerto_Rico"
-"00985","18.40825","-65.94842","Carolina","PR","Puerto Rico","TRUE","","31682","1503.7","72031","Carolina","{""72031"": ""100""}","Carolina","72031","FALSE","FALSE","America/Puerto_Rico"
-"00987","18.33934","-65.94312","Carolina","PR","Puerto Rico","TRUE","","54241","843.0","72031","Carolina","{""72031"": ""99.42"", ""72139"": ""0.58""}","Carolina|Trujillo Alto","72031|72139","FALSE","FALSE","America/Puerto_Rico"
-"01001","42.06259","-72.62589","Agawam","MA","Massachusetts","TRUE","","17312","581.0","25013","Hampden","{""25013"": ""100""}","Hampden","25013","FALSE","FALSE","America/New_York"
-"01002","42.37492","-72.4621","Amherst","MA","Massachusetts","TRUE","","30014","210.5","25015","Hampshire","{""25015"": ""99.03"", ""25011"": ""0.97""}","Hampshire|Franklin","25015|25011","FALSE","FALSE","America/New_York"
-"01003","42.39192","-72.52479","Amherst","MA","Massachusetts","TRUE","","11357","6164.3","25015","Hampshire","{""25015"": ""100""}","Hampshire","25015","FALSE","FALSE","America/New_York"
-"01005","42.42017","-72.10615","Barre","MA","Massachusetts","TRUE","","5128","44.7","25027","Worcester","{""25027"": ""100""}","Worcester","25027","FALSE","FALSE","America/New_York"
-"01007","42.27875","-72.40036","Belchertown","MA","Massachusetts","TRUE","","15005","110.1","25015","Hampshire","{""25015"": ""100""}","Hampshire","25015","FALSE","FALSE","America/New_York"
-"01008","42.18428","-72.95203","Blandford","MA","Massachusetts","TRUE","","1140","8.2","25013","Hampden","{""25013"": ""100""}","Hampden","25013","FALSE","FALSE","America/New_York"
-"01009","42.20972","-72.33971","Bondsville","MA","Massachusetts","TRUE","","261","124.0","25013","Hampden","{""25013"": ""100""}","Hampden","25013","FALSE","FALSE","America/New_York"
-"01010","42.12863","-72.20624","Brimfield","MA","Massachusetts","TRUE","","3658","40.6","25013","Hampden","{""25013"": ""100""}","Hampden","25013","FALSE","FALSE","America/New_York"
-"01011","42.29652","-72.95968","Chester","MA","Massachusetts","TRUE","","1430","17.5","25013","Hampden","{""25013"": ""86.35"", ""25015"": ""13.65""}","Hampden|Hampshire","25013|25015","FALSE","FALSE","America/New_York"
-"01012","42.38699","-72.84634","Chesterfield","MA","Massachusetts","TRUE","","585","17.2","25015","Hampshire","{""25015"": ""100""}","Hampshire","25015","FALSE","FALSE","America/New_York"
-"01013","42.1595","-72.60825","Chicopee","MA","Massachusetts","TRUE","","22733","1558.3","25013","Hampden","{""25013"": ""100""}","Hampden","25013","FALSE","FALSE","America/New_York"
-"01020","42.17637","-72.56538","Chicopee","MA","Massachusetts","TRUE","","30108","928.1","25013","Hampden","{""25013"": ""100""}","Hampden","25013","FALSE","FALSE","America/New_York"
-"01022","42.19731","-72.54267","Chicopee","MA","Massachusetts","TRUE","","2586","209.2","25013","Hampden","{""25013"": ""100""}","Hampden","25013","FALSE","FALSE","America/New_York"
-"01026","42.4633","-72.92024","Cummington","MA","Massachusetts","TRUE","","933","15.0","25015","Hampshire","{""25015"": ""100""}","Hampshire","25015","FALSE","FALSE","America/New_York"
-"01027","42.29508","-72.74309","Easthampton","MA","Massachusetts","TRUE","","17818","169.9","25015","Hampshire","{""25015"": ""100""}","Hampshire","25015","FALSE","FALSE","America/New_York"
-"01028","42.05968","-72.49908","East Longmeadow","MA","Massachusetts","TRUE","","16242","484.8","25013","Hampden","{""25013"": ""100""}","Hampden","25013","FALSE","FALSE","America/New_York"
-"01029","42.19632","-73.04836","East Otis","MA","Massachusetts","TRUE","","538","13.1","25003","Berkshire","{""25003"": ""100""}","Berkshire","25003","FALSE","FALSE","America/New_York"
-"01030","42.06886","-72.67998","Feeding Hills","MA","Massachusetts","TRUE","","11384","371.9","25013","Hampden","{""25013"": ""100""}","Hampden","25013","FALSE","FALSE","America/New_York"
-"01031","42.32934","-72.19822","Gilbertville","MA","Massachusetts","TRUE","","1135","54.0","25027","Worcester","{""25027"": ""100""}","Worcester","25027","FALSE","FALSE","America/New_York"
-"01032","42.45031","-72.81299","Goshen","MA","Massachusetts","TRUE","","495","16.2","25015","Hampshire","{""25015"": ""100""}","Hampshire","25015","FALSE","FALSE","America/New_York"
-"01033","42.26081","-72.50363","Granby","MA","Massachusetts","TRUE","","6322","87.8","25015","Hampshire","{""25015"": ""100""}","Hampshire","25015","FALSE","FALSE","America/New_York"
-"01034","42.08485","-72.95765","Granville","MA","Massachusetts","TRUE","","2186","11.8","25013","Hampden","{""25013"": ""100""}","Hampden","25013","FALSE","FALSE","America/New_York"
-"01035","42.35564","-72.56921","Hadley","MA","Massachusetts","TRUE","","5319","89.0","25015","Hampshire","{""25015"": ""100""}","Hampshire","25015","FALSE","FALSE","America/New_York"
-"01036","42.06369","-72.4159","Hampden","MA","Massachusetts","TRUE","","5178","102.6","25013","Hampden","{""25013"": ""100""}","Hampden","25013","FALSE","FALSE","America/New_York"
-"01037","42.37011","-72.19771","Hardwick","MA","Massachusetts","TRUE","","747","20.4","25027","Worcester","{""25027"": ""100""}","Worcester","25027","FALSE","FALSE","America/New_York"
-"01038","42.38548","-72.60701","Hatfield","MA","Massachusetts","TRUE","","2734","105.7","25015","Hampshire","{""25015"": ""100""}","Hampshire","25015","FALSE","FALSE","America/New_York"
-"01039","42.40629","-72.69363","Haydenville","MA","Massachusetts","TRUE","","1207","35.3","25015","Hampshire","{""25015"": ""84.88"", ""25011"": ""15.12""}","Hampshire|Franklin","25015|25011","FALSE","FALSE","America/New_York"
-"01040","42.21256","-72.64107","Holyoke","MA","Massachusetts","TRUE","","40241","734.1","25013","Hampden","{""25013"": ""100""}","Hampden","25013","FALSE","FALSE","America/New_York"
-"01050","42.28784","-72.86986","Huntington","MA","Massachusetts","TRUE","","2438","24.6","25015","Hampshire","{""25015"": ""86.17"", ""25013"": ""13.83""}","Hampshire|Hampden","25015|25013","FALSE","FALSE","America/New_York"
-"01053","42.35347","-72.71162","Leeds","MA","Massachusetts","TRUE","","1593","119.9","25015","Hampshire","{""25015"": ""100""}","Hampshire","25015","FALSE","FALSE","America/New_York"
-"01054","42.47363","-72.48746","Leverett","MA","Massachusetts","TRUE","","2001","33.9","25011","Franklin","{""25011"": ""100""}","Franklin","25011","FALSE","FALSE","America/New_York"
-"01056","42.19211","-72.45804","Ludlow","MA","Massachusetts","TRUE","","21291","302.2","25013","Hampden","{""25013"": ""100""}","Hampden","25013","FALSE","FALSE","America/New_York"
-"01057","42.09164","-72.32432","Monson","MA","Massachusetts","TRUE","","8824","75.8","25013","Hampden","{""25013"": ""100""}","Hampden","25013","FALSE","FALSE","America/New_York"
-"01060","42.32229","-72.63128","Northampton","MA","Massachusetts","TRUE","","15948","563.7","25015","Hampshire","{""25015"": ""100""}","Hampshire","25015","FALSE","FALSE","America/New_York"
-"01062","42.32188","-72.69278","Florence","MA","Massachusetts","TRUE","","10364","220.4","25015","Hampshire","{""25015"": ""100""}","Hampshire","25015","FALSE","FALSE","America/New_York"
-"01063","42.31901","-72.63905","Northampton","MA","Massachusetts","TRUE","","611","6079.5","25015","Hampshire","{""25015"": ""100""}","Hampshire","25015","FALSE","FALSE","America/New_York"
-"01066","42.40763","-72.6548","North Hatfield","MA","Massachusetts","TRUE","","31","16.8","25015","Hampshire","{""25015"": ""100""}","Hampshire","25015","FALSE","FALSE","America/New_York"
-"01068","42.35002","-72.04606","Oakham","MA","Massachusetts","TRUE","","1833","34.0","25027","Worcester","{""25027"": ""100""}","Worcester","25027","FALSE","FALSE","America/New_York"
-"01069","42.18807","-72.30555","Palmer","MA","Massachusetts","TRUE","","8556","117.6","25013","Hampden","{""25013"": ""100""}","Hampden","25013","FALSE","FALSE","America/New_York"
-"01070","42.51853","-72.92391","Plainfield","MA","Massachusetts","TRUE","","648","12.1","25015","Hampshire","{""25015"": ""100""}","Hampshire","25015","FALSE","FALSE","America/New_York"
-"01071","42.16035","-72.86","Russell","MA","Massachusetts","TRUE","","1318","32.7","25013","Hampden","{""25013"": ""100""}","Hampden","25013","FALSE","FALSE","America/New_York"
-"01072","42.45737","-72.41841","Shutesbury","MA","Massachusetts","TRUE","","1478","28.4","25011","Franklin","{""25011"": ""100""}","Franklin","25011","FALSE","FALSE","America/New_York"
-"01073","42.23083","-72.73857","Southampton","MA","Massachusetts","TRUE","","6144","84.3","25015","Hampshire","{""25015"": ""100""}","Hampshire","25015","FALSE","FALSE","America/New_York"
-"01074","42.38672","-72.09404","South Barre","MA","Massachusetts","TRUE","","411","1865.9","25027","Worcester","{""25027"": ""100""}","Worcester","25027","FALSE","FALSE","America/New_York"
-"01075","42.25674","-72.57923","South Hadley","MA","Massachusetts","TRUE","","17703","385.8","25015","Hampshire","{""25015"": ""100""}","Hampshire","25015","FALSE","FALSE","America/New_York"
-"01077","42.05437","-72.77851","Southwick","MA","Massachusetts","TRUE","","9720","121.8","25013","Hampden","{""25013"": ""100""}","Hampden","25013","FALSE","FALSE","America/New_York"
-"01079","42.19437","-72.33014","Thorndike","MA","Massachusetts","TRUE","","781","268.1","25013","Hampden","{""25013"": ""100""}","Hampden","25013","FALSE","FALSE","America/New_York"
-"01080","42.18206","-72.36564","Three Rivers","MA","Massachusetts","TRUE","","2709","605.7","25013","Hampden","{""25013"": ""100""}","Hampden","25013","FALSE","FALSE","America/New_York"
-"01081","42.06234","-72.23095","Wales","MA","Massachusetts","TRUE","","1883","50.1","25013","Hampden","{""25013"": ""100""}","Hampden","25013","FALSE","FALSE","America/New_York"
-"01082","42.2948","-72.27776","Ware","MA","Massachusetts","TRUE","","10580","88.6","25015","Hampshire","{""25015"": ""95.64"", ""25027"": ""4.36""}","Hampshire|Worcester","25015|25027","FALSE","FALSE","America/New_York"
-"01083","42.20382","-72.19495","Warren","MA","Massachusetts","TRUE","","3094","75.8","25027","Worcester","{""25027"": ""100""}","Worcester","25027","FALSE","FALSE","America/New_York"
-"01084","42.39038","-72.88089","West Chesterfield","MA","Massachusetts","TRUE","","168","7.1","25015","Hampshire","{""25015"": ""100""}","Hampshire","25015","FALSE","FALSE","America/New_York"
-"01085","42.15371","-72.76958","Westfield","MA","Massachusetts","TRUE","","41780","270.2","25013","Hampden","{""25013"": ""100""}","Hampden","25013","FALSE","FALSE","America/New_York"
-"01086","42.13044","-72.79402","Westfield","MA","Massachusetts","TRUE","","363","3775.3","25013","Hampden","{""25013"": ""100""}","Hampden","25013","FALSE","FALSE","America/New_York"
-"01088","42.39012","-72.6478","West Hatfield","MA","Massachusetts","TRUE","","509","37.8","25015","Hampshire","{""25015"": ""100""}","Hampshire","25015","FALSE","FALSE","America/New_York"
-"01089","42.12534","-72.65027","West Springfield","MA","Massachusetts","TRUE","","28609","660.4","25013","Hampden","{""25013"": ""100""}","Hampden","25013","FALSE","FALSE","America/New_York"
-"01092","42.19972","-72.23727","West Warren","MA","Massachusetts","TRUE","","1278","73.6","25027","Worcester","{""25027"": ""100""}","Worcester","25027","FALSE","FALSE","America/New_York"
-"01093","42.43438","-72.65305","Whately","MA","Massachusetts","TRUE","","313","24.0","25011","Franklin","{""25011"": ""100""}","Franklin","25011","FALSE","FALSE","America/New_York"
-"01094","42.35945","-72.13847","Wheelwright","MA","Massachusetts","TRUE","","387","130.9","25027","Worcester","{""25027"": ""100""}","Worcester","25027","FALSE","FALSE","America/New_York"
-"01095","42.12764","-72.42993","Wilbraham","MA","Massachusetts","TRUE","","14728","252.8","25013","Hampden","{""25013"": ""100""}","Hampden","25013","FALSE","FALSE","America/New_York"
-"01096","42.40418","-72.76819","Williamsburg","MA","Massachusetts","TRUE","","2443","29.8","25015","Hampshire","{""25015"": ""100""}","Hampshire","25015","FALSE","FALSE","America/New_York"
-"01097","42.17603","-72.8313","Woronoco","MA","Massachusetts","TRUE","","56","11.5","25013","Hampden","{""25013"": ""100""}","Hampden","25013","FALSE","FALSE","America/New_York"
-"01098","42.3946","-72.94242","Worthington","MA","Massachusetts","TRUE","","1263","15.5","25015","Hampshire","{""25015"": ""100""}","Hampshire","25015","FALSE","FALSE","America/New_York"
-"01103","42.104","-72.5921","Springfield","MA","Massachusetts","TRUE","","2332","1956.6","25013","Hampden","{""25013"": ""100""}","Hampden","25013","FALSE","FALSE","America/New_York"
-"01104","42.13404","-72.56679","Springfield","MA","Massachusetts","TRUE","","23740","1757.3","25013","Hampden","{""25013"": ""100""}","Hampden","25013","FALSE","FALSE","America/New_York"
-"01105","42.09917","-72.57899","Springfield","MA","Massachusetts","TRUE","","11841","3678.4","25013","Hampden","{""25013"": ""100""}","Hampden","25013","FALSE","FALSE","America/New_York"
-"01106","42.04791","-72.57176","Longmeadow","MA","Massachusetts","TRUE","","15987","665.7","25013","Hampden","{""25013"": ""100""}","Hampden","25013","FALSE","FALSE","America/New_York"
-"01107","42.12129","-72.6055","Springfield","MA","Massachusetts","TRUE","","11562","2962.0","25013","Hampden","{""25013"": ""100""}","Hampden","25013","FALSE","FALSE","America/New_York"
-"01108","42.08055","-72.55983","Springfield","MA","Massachusetts","TRUE","","27054","2804.1","25013","Hampden","{""25013"": ""100""}","Hampden","25013","FALSE","FALSE","America/New_York"
-"01109","42.11837","-72.54875","Springfield","MA","Massachusetts","TRUE","","30383","2155.4","25013","Hampden","{""25013"": ""100""}","Hampden","25013","FALSE","FALSE","America/New_York"
-"01118","42.09476","-72.52533","Springfield","MA","Massachusetts","TRUE","","14830","1592.5","25013","Hampden","{""25013"": ""100""}","Hampden","25013","FALSE","FALSE","America/New_York"
-"01119","42.12455","-72.51122","Springfield","MA","Massachusetts","TRUE","","13681","1488.0","25013","Hampden","{""25013"": ""100""}","Hampden","25013","FALSE","FALSE","America/New_York"
-"01128","42.09488","-72.48814","Springfield","MA","Massachusetts","TRUE","","2541","880.0","25013","Hampden","{""25013"": ""100""}","Hampden","25013","FALSE","FALSE","America/New_York"
-"01129","42.121","-72.48773","Springfield","MA","Massachusetts","TRUE","","6941","782.1","25013","Hampden","{""25013"": ""100""}","Hampden","25013","FALSE","FALSE","America/New_York"
-"01151","42.15295","-72.50881","Indian Orchard","MA","Massachusetts","TRUE","","9032","1472.2","25013","Hampden","{""25013"": ""100""}","Hampden","25013","FALSE","FALSE","America/New_York"
-"01199","42.12065","-72.6045","Springfield","MA","Massachusetts","TRUE","","0","0.0","25013","Hampden","{""25013"": ""0""}","Hampden","25013","FALSE","FALSE","America/New_York"
-"01201","42.44993","-73.27644","Pittsfield","MA","Massachusetts","TRUE","","44458","324.3","25003","Berkshire","{""25003"": ""100""}","Berkshire","25003","FALSE","FALSE","America/New_York"
-"01220","42.62372","-73.11718","Adams","MA","Massachusetts","TRUE","","8179","128.4","25003","Berkshire","{""25003"": ""100""}","Berkshire","25003","FALSE","FALSE","America/New_York"
-"01222","42.05899","-73.32081","Ashley Falls","MA","Massachusetts","TRUE","","807","94.2","25003","Berkshire","{""25003"": ""100""}","Berkshire","25003","FALSE","FALSE","America/New_York"
-"01223","42.31176","-73.0994","Becket","MA","Massachusetts","TRUE","","2443","13.5","25003","Berkshire","{""25003"": ""100""}","Berkshire","25003","FALSE","FALSE","America/New_York"
-"01224","42.50661","-73.19746","Berkshire","MA","Massachusetts","TRUE","","125","173.5","25003","Berkshire","{""25003"": ""100""}","Berkshire","25003","FALSE","FALSE","America/New_York"
-"01225","42.56267","-73.15484","Cheshire","MA","Massachusetts","TRUE","","3105","47.7","25003","Berkshire","{""25003"": ""100""}","Berkshire","25003","FALSE","FALSE","America/New_York"
-"01226","42.48168","-73.13992","Dalton","MA","Massachusetts","TRUE","","6769","99.1","25003","Berkshire","{""25003"": ""100""}","Berkshire","25003","FALSE","FALSE","America/New_York"
-"01229","42.27796","-73.33212","Glendale","MA","Massachusetts","TRUE","","91","47.9","25003","Berkshire","{""25003"": ""100""}","Berkshire","25003","FALSE","FALSE","America/New_York"
-"01230","42.18475","-73.3437","Great Barrington","MA","Massachusetts","TRUE","","8525","36.0","25003","Berkshire","{""25003"": ""100""}","Berkshire","25003","FALSE","FALSE","America/New_York"
-"01235","42.42975","-73.07241","Hinsdale","MA","Massachusetts","TRUE","","2567","21.7","25003","Berkshire","{""25003"": ""100""}","Berkshire","25003","FALSE","FALSE","America/New_York"
-"01236","42.26658","-73.3767","Housatonic","MA","Massachusetts","TRUE","","1311","105.4","25003","Berkshire","{""25003"": ""100""}","Berkshire","25003","FALSE","FALSE","America/New_York"
-"01237","42.54971","-73.26265","Lanesborough","MA","Massachusetts","TRUE","","2488","15.5","25003","Berkshire","{""25003"": ""100""}","Berkshire","25003","FALSE","FALSE","America/New_York"
-"01238","42.29522","-73.2288","Lee","MA","Massachusetts","TRUE","","5814","64.4","25003","Berkshire","{""25003"": ""100""}","Berkshire","25003","FALSE","FALSE","America/New_York"
-"01240","42.37208","-73.27645","Lenox","MA","Massachusetts","TRUE","","4453","80.4","25003","Berkshire","{""25003"": ""100""}","Berkshire","25003","FALSE","FALSE","America/New_York"
-"01242","42.33328","-73.24921","Lenox Dale","MA","Massachusetts","TRUE","","471","365.2","25003","Berkshire","{""25003"": ""100""}","Berkshire","25003","FALSE","FALSE","America/New_York"
-"01243","42.35146","-73.02323","Middlefield","MA","Massachusetts","TRUE","","268","5.6","25015","Hampshire","{""25015"": ""100""}","Hampshire","25015","FALSE","FALSE","America/New_York"
-"01244","42.11608","-73.2627","Mill River","MA","Massachusetts","TRUE","","132","20.8","25003","Berkshire","{""25003"": ""100""}","Berkshire","25003","FALSE","FALSE","America/New_York"
-"01245","42.18815","-73.2189","Monterey","MA","Massachusetts","TRUE","","836","11.5","25003","Berkshire","{""25003"": ""100""}","Berkshire","25003","FALSE","FALSE","America/New_York"
-"01247","42.69547","-73.07997","North Adams","MA","Massachusetts","TRUE","","15466","113.7","25003","Berkshire","{""25003"": ""100""}","Berkshire","25003","FALSE","FALSE","America/New_York"
-"01253","42.21187","-73.11616","Otis","MA","Massachusetts","TRUE","","769","16.2","25003","Berkshire","{""25003"": ""100""}","Berkshire","25003","FALSE","FALSE","America/New_York"
-"01254","42.37982","-73.36545","Richmond","MA","Massachusetts","TRUE","","902","23.9","25003","Berkshire","{""25003"": ""100""}","Berkshire","25003","FALSE","FALSE","America/New_York"
-"01255","42.10834","-73.1229","Sandisfield","MA","Massachusetts","TRUE","","891","6.6","25003","Berkshire","{""25003"": ""100""}","Berkshire","25003","FALSE","FALSE","America/New_York"
-"01256","42.59628","-73.01957","Savoy","MA","Massachusetts","TRUE","","680","7.3","25003","Berkshire","{""25003"": ""100""}","Berkshire","25003","FALSE","FALSE","America/New_York"
-"01257","42.09701","-73.36886","Sheffield","MA","Massachusetts","TRUE","","2017","21.5","25003","Berkshire","{""25003"": ""100""}","Berkshire","25003","FALSE","FALSE","America/New_York"
-"01258","42.10257","-73.46176","South Egremont","MA","Massachusetts","TRUE","","488","7.3","25003","Berkshire","{""25003"": ""100""}","Berkshire","25003","FALSE","FALSE","America/New_York"
-"01259","42.07553","-73.23564","Southfield","MA","Massachusetts","TRUE","","540","8.2","25003","Berkshire","{""25003"": ""100""}","Berkshire","25003","FALSE","FALSE","America/New_York"
-"01260","42.29587","-73.34517","South Lee","MA","Massachusetts","TRUE","","427","65.7","25003","Berkshire","{""25003"": ""100""}","Berkshire","25003","FALSE","FALSE","America/New_York"
-"01262","42.29354","-73.3177","Stockbridge","MA","Massachusetts","TRUE","","1005","32.2","25003","Berkshire","{""25003"": ""100""}","Berkshire","25003","FALSE","FALSE","America/New_York"
-"01264","42.23411","-73.19903","Tyringham","MA","Massachusetts","TRUE","","206","7.0","25003","Berkshire","{""25003"": ""100""}","Berkshire","25003","FALSE","FALSE","America/New_York"
-"01266","42.308","-73.38408","West Stockbridge","MA","Massachusetts","TRUE","","1295","19.2","25003","Berkshire","{""25003"": ""100""}","Berkshire","25003","FALSE","FALSE","America/New_York"
-"01267","42.67197","-73.23904","Williamstown","MA","Massachusetts","TRUE","","7753","54.9","25003","Berkshire","{""25003"": ""100""}","Berkshire","25003","FALSE","FALSE","America/New_York"
-"01270","42.51492","-73.04125","Windsor","MA","Massachusetts","TRUE","","796","9.6","25003","Berkshire","{""25003"": ""100""}","Berkshire","25003","FALSE","FALSE","America/New_York"
-"01301","42.62406","-72.60401","Greenfield","MA","Massachusetts","TRUE","","17617","266.8","25011","Franklin","{""25011"": ""100""}","Franklin","25011","FALSE","FALSE","America/New_York"
-"01330","42.51377","-72.81395","Ashfield","MA","Massachusetts","TRUE","","1276","14.8","25011","Franklin","{""25011"": ""100""}","Franklin","25011","FALSE","FALSE","America/New_York"
-"01331","42.56728","-72.18294","Athol","MA","Massachusetts","TRUE","","13486","97.8","25027","Worcester","{""25027"": ""100""}","Worcester","25027","FALSE","FALSE","America/New_York"
-"01337","42.69503","-72.5771","Bernardston","MA","Massachusetts","TRUE","","2532","26.2","25011","Franklin","{""25011"": ""100""}","Franklin","25011","FALSE","FALSE","America/New_York"
-"01338","42.57358","-72.82134","Buckland","MA","Massachusetts","TRUE","","113","12.6","25011","Franklin","{""25011"": ""100""}","Franklin","25011","FALSE","FALSE","America/New_York"
-"01339","42.60801","-72.89006","Charlemont","MA","Massachusetts","TRUE","","1371","9.6","25011","Franklin","{""25011"": ""100""}","Franklin","25011","FALSE","FALSE","America/New_York"
-"01340","42.6832","-72.71797","Colrain","MA","Massachusetts","TRUE","","1779","15.7","25011","Franklin","{""25011"": ""100""}","Franklin","25011","FALSE","FALSE","America/New_York"
-"01341","42.50447","-72.70514","Conway","MA","Massachusetts","TRUE","","1929","20.9","25011","Franklin","{""25011"": ""100""}","Franklin","25011","FALSE","FALSE","America/New_York"
-"01342","42.54451","-72.60591","Deerfield","MA","Massachusetts","TRUE","","1259","27.2","25011","Franklin","{""25011"": ""100""}","Franklin","25011","FALSE","FALSE","America/New_York"
-"01343","42.65444","-72.98109","Drury","MA","Massachusetts","TRUE","","78","6.2","25003","Berkshire","{""25003"": ""100""}","Berkshire","25003","FALSE","FALSE","America/New_York"
-"01344","42.60777","-72.42883","Erving","MA","Massachusetts","TRUE","","1380","39.1","25011","Franklin","{""25011"": ""100""}","Franklin","25011","FALSE","FALSE","America/New_York"
-"01346","42.68892","-72.817","Heath","MA","Massachusetts","TRUE","","471","8.5","25011","Franklin","{""25011"": ""100""}","Franklin","25011","FALSE","FALSE","America/New_York"
-"01347","42.56137","-72.51694","Lake Pleasant","MA","Massachusetts","TRUE","","154","102.7","25011","Franklin","{""25011"": ""100""}","Franklin","25011","FALSE","FALSE","America/New_York"
-"01349","42.57271","-72.48332","Millers Falls","MA","Massachusetts","TRUE","","1391","69.9","25011","Franklin","{""25011"": ""100""}","Franklin","25011","FALSE","FALSE","America/New_York"
-"01350","42.72265","-72.98245","Monroe Bridge","MA","Massachusetts","TRUE","","87","3.1","25011","Franklin","{""25011"": ""100""}","Franklin","25011","FALSE","FALSE","America/New_York"
-"01351","42.54281","-72.51905","Montague","MA","Massachusetts","TRUE","","2114","39.0","25011","Franklin","{""25011"": ""100""}","Franklin","25011","FALSE","FALSE","America/New_York"
-"01354","42.63366","-72.51108","Gill","MA","Massachusetts","TRUE","","1596","44.8","25011","Franklin","{""25011"": ""100""}","Franklin","25011","FALSE","FALSE","America/New_York"
-"01355","42.45289","-72.33044","New Salem","MA","Massachusetts","TRUE","","931","7.6","25011","Franklin","{""25011"": ""100""}","Franklin","25011","FALSE","FALSE","America/New_York"
-"01360","42.67575","-72.44594","Northfield","MA","Massachusetts","TRUE","","2981","33.6","25011","Franklin","{""25011"": ""100""}","Franklin","25011","FALSE","FALSE","America/New_York"
-"01364","42.61292","-72.29242","Orange","MA","Massachusetts","TRUE","","7729","76.1","25011","Franklin","{""25011"": ""100""}","Franklin","25011","FALSE","FALSE","America/New_York"
-"01366","42.48054","-72.18772","Petersham","MA","Massachusetts","TRUE","","1188","11.4","25027","Worcester","{""25027"": ""100""}","Worcester","25027","FALSE","FALSE","America/New_York"
-"01367","42.6958","-72.91185","Rowe","MA","Massachusetts","TRUE","","639","9.3","25011","Franklin","{""25011"": ""100""}","Franklin","25011","FALSE","FALSE","America/New_York"
-"01368","42.68082","-72.18602","Royalston","MA","Massachusetts","TRUE","","1377","12.7","25027","Worcester","{""25027"": ""100""}","Worcester","25027","FALSE","FALSE","America/New_York"
-"01370","42.59655","-72.72864","Shelburne Falls","MA","Massachusetts","TRUE","","3852","29.9","25011","Franklin","{""25011"": ""100""}","Franklin","25011","FALSE","FALSE","America/New_York"
-"01373","42.47292","-72.61561","South Deerfield","MA","Massachusetts","TRUE","","4854","77.5","25011","Franklin","{""25011"": ""100""}","Franklin","25011","FALSE","FALSE","America/New_York"
-"01375","42.4651","-72.55461","Sunderland","MA","Massachusetts","TRUE","","3647","99.0","25011","Franklin","{""25011"": ""100""}","Franklin","25011","FALSE","FALSE","America/New_York"
-"01376","42.59532","-72.55577","Turners Falls","MA","Massachusetts","TRUE","","5013","702.4","25011","Franklin","{""25011"": ""100""}","Franklin","25011","FALSE","FALSE","America/New_York"
-"01378","42.6748","-72.34581","Warwick","MA","Massachusetts","TRUE","","792","9.0","25011","Franklin","{""25011"": ""100""}","Franklin","25011","FALSE","FALSE","America/New_York"
-"01379","42.55286","-72.40253","Wendell","MA","Massachusetts","TRUE","","829","10.6","25011","Franklin","{""25011"": ""100""}","Franklin","25011","FALSE","FALSE","America/New_York"
-"01420","42.58578","-71.81662","Fitchburg","MA","Massachusetts","TRUE","","40702","518.4","25027","Worcester","{""25027"": ""100""}","Worcester","25027","FALSE","FALSE","America/New_York"
-"01430","42.66019","-71.92369","Ashburnham","MA","Massachusetts","TRUE","","6297","65.8","25027","Worcester","{""25027"": ""100""}","Worcester","25027","FALSE","FALSE","America/New_York"
-"01431","42.67652","-71.82322","Ashby","MA","Massachusetts","TRUE","","3220","52.5","25017","Middlesex","{""25017"": ""100""}","Middlesex","25017","FALSE","FALSE","America/New_York"
-"01432","42.56469","-71.57135","Ayer","MA","Massachusetts","TRUE","","7699","350.9","25017","Middlesex","{""25017"": ""100""}","Middlesex","25017","FALSE","FALSE","America/New_York"
-"01434","42.53858","-71.6114","Devens","MA","Massachusetts","TRUE","","1969","144.0","25027","Worcester","{""25027"": ""81.17"", ""25017"": ""18.83""}","Worcester|Middlesex","25027|25017","FALSE","FALSE","America/New_York"
-"01436","42.60546","-72.08846","Baldwinville","MA","Massachusetts","TRUE","","3374","135.8","25027","Worcester","{""25027"": ""100""}","Worcester","25027","FALSE","FALSE","America/New_York"
-"01438","42.5618","-72.0317","East Templeton","MA","Massachusetts","TRUE","","694","494.3","25027","Worcester","{""25027"": ""100""}","Worcester","25027","FALSE","FALSE","America/New_York"
-"01440","42.58737","-71.98649","Gardner","MA","Massachusetts","TRUE","","20610","331.1","25027","Worcester","{""25027"": ""100""}","Worcester","25027","FALSE","FALSE","America/New_York"
-"01450","42.61368","-71.56141","Groton","MA","Massachusetts","TRUE","","11313","133.3","25017","Middlesex","{""25017"": ""100""}","Middlesex","25017","FALSE","FALSE","America/New_York"
-"01451","42.50124","-71.57378","Harvard","MA","Massachusetts","TRUE","","4731","95.3","25027","Worcester","{""25027"": ""100""}","Worcester","25027","FALSE","FALSE","America/New_York"
-"01452","42.48379","-72.00514","Hubbardston","MA","Massachusetts","TRUE","","4708","44.3","25027","Worcester","{""25027"": ""100""}","Worcester","25027","FALSE","FALSE","America/New_York"
-"01453","42.51864","-71.76138","Leominster","MA","Massachusetts","TRUE","","41647","564.6","25027","Worcester","{""25027"": ""100""}","Worcester","25027","FALSE","FALSE","America/New_York"
-"01460","42.53501","-71.4891","Littleton","MA","Massachusetts","TRUE","","10071","235.4","25017","Middlesex","{""25017"": ""100""}","Middlesex","25017","FALSE","FALSE","America/New_York"
-"01462","42.58968","-71.7199","Lunenburg","MA","Massachusetts","TRUE","","11402","166.8","25027","Worcester","{""25027"": ""100""}","Worcester","25027","FALSE","FALSE","America/New_York"
-"01463","42.67127","-71.60426","Pepperell","MA","Massachusetts","TRUE","","12105","207.0","25017","Middlesex","{""25017"": ""100""}","Middlesex","25017","FALSE","FALSE","America/New_York"
-"01464","42.5733","-71.64836","Shirley","MA","Massachusetts","TRUE","","7633","196.8","25017","Middlesex","{""25017"": ""100""}","Middlesex","25017","FALSE","FALSE","America/New_York"
-"01467","42.48772","-71.61729","Still River","MA","Massachusetts","TRUE","","276","56.4","25027","Worcester","{""25027"": ""100""}","Worcester","25027","FALSE","FALSE","America/New_York"
-"01468","42.55207","-72.06894","Templeton","MA","Massachusetts","TRUE","","4062","73.3","25027","Worcester","{""25027"": ""100""}","Worcester","25027","FALSE","FALSE","America/New_York"
-"01469","42.66673","-71.69396","Townsend","MA","Massachusetts","TRUE","","7670","130.0","25017","Middlesex","{""25017"": ""100""}","Middlesex","25017","FALSE","FALSE","America/New_York"
-"01473","42.55122","-71.90266","Westminster","MA","Massachusetts","TRUE","","7766","84.6","25027","Worcester","{""25027"": ""100""}","Worcester","25027","FALSE","FALSE","America/New_York"
-"01474","42.66784","-71.75221","West Townsend","MA","Massachusetts","TRUE","","1803","70.1","25017","Middlesex","{""25017"": ""100""}","Middlesex","25017","FALSE","FALSE","America/New_York"
-"01475","42.66667","-72.04899","Winchendon","MA","Massachusetts","TRUE","","10825","97.5","25027","Worcester","{""25027"": ""100""}","Worcester","25027","FALSE","FALSE","America/New_York"
-"01501","42.19721","-71.84534","Auburn","MA","Massachusetts","TRUE","","16619","415.0","25027","Worcester","{""25027"": ""100""}","Worcester","25027","FALSE","FALSE","America/New_York"
-"01503","42.38378","-71.63551","Berlin","MA","Massachusetts","TRUE","","3182","94.7","25027","Worcester","{""25027"": ""100""}","Worcester","25027","FALSE","FALSE","America/New_York"
-"01504","42.0399","-71.53124","Blackstone","MA","Massachusetts","TRUE","","9263","321.9","25027","Worcester","{""25027"": ""100""}","Worcester","25027","FALSE","FALSE","America/New_York"
-"01505","42.35633","-71.72123","Boylston","MA","Massachusetts","TRUE","","4623","111.2","25027","Worcester","{""25027"": ""100""}","Worcester","25027","FALSE","FALSE","America/New_York"
-"01506","42.19365","-72.10442","Brookfield","MA","Massachusetts","TRUE","","3441","85.6","25027","Worcester","{""25027"": ""100""}","Worcester","25027","FALSE","FALSE","America/New_York"
-"01507","42.13509","-71.96803","Charlton","MA","Massachusetts","TRUE","","13550","124.0","25027","Worcester","{""25027"": ""100""}","Worcester","25027","FALSE","FALSE","America/New_York"
-"01510","42.4119","-71.68882","Clinton","MA","Massachusetts","TRUE","","13935","951.7","25027","Worcester","{""25027"": ""100""}","Worcester","25027","FALSE","FALSE","America/New_York"
-"01515","42.20328","-72.0467","East Brookfield","MA","Massachusetts","TRUE","","2040","79.8","25027","Worcester","{""25027"": ""100""}","Worcester","25027","FALSE","FALSE","America/New_York"
-"01516","42.05284","-71.75092","Douglas","MA","Massachusetts","TRUE","","8859","93.0","25027","Worcester","{""25027"": ""100""}","Worcester","25027","FALSE","FALSE","America/New_York"
-"01518","42.12349","-72.11861","Fiskdale","MA","Massachusetts","TRUE","","3947","171.6","25027","Worcester","{""25027"": ""100""}","Worcester","25027","FALSE","FALSE","America/New_York"
-"01519","42.20102","-71.68008","Grafton","MA","Massachusetts","TRUE","","7042","249.1","25027","Worcester","{""25027"": ""100""}","Worcester","25027","FALSE","FALSE","America/New_York"
-"01520","42.33536","-71.85284","Holden","MA","Massachusetts","TRUE","","15781","337.0","25027","Worcester","{""25027"": ""100""}","Worcester","25027","FALSE","FALSE","America/New_York"
-"01521","42.06012","-72.16592","Holland","MA","Massachusetts","TRUE","","2630","82.6","25013","Hampden","{""25013"": ""100""}","Hampden","25013","FALSE","FALSE","America/New_York"
-"01522","42.38137","-71.86913","Jefferson","MA","Massachusetts","TRUE","","3270","77.1","25027","Worcester","{""25027"": ""100""}","Worcester","25027","FALSE","FALSE","America/New_York"
-"01523","42.47971","-71.67844","Lancaster","MA","Massachusetts","TRUE","","7794","119.4","25027","Worcester","{""25027"": ""100""}","Worcester","25027","FALSE","FALSE","America/New_York"
-"01524","42.24921","-71.91982","Leicester","MA","Massachusetts","TRUE","","6654","160.7","25027","Worcester","{""25027"": ""100""}","Worcester","25027","FALSE","FALSE","America/New_York"
-"01525","42.10683","-71.63236","Linwood","MA","Massachusetts","TRUE","","544","468.0","25027","Worcester","{""25027"": ""100""}","Worcester","25027","FALSE","FALSE","America/New_York"
-"01527","42.19218","-71.77416","Millbury","MA","Massachusetts","TRUE","","13732","340.4","25027","Worcester","{""25027"": ""100""}","Worcester","25027","FALSE","FALSE","America/New_York"
-"01529","42.03905","-71.57766","Millville","MA","Massachusetts","TRUE","","3256","258.5","25027","Worcester","{""25027"": ""100""}","Worcester","25027","FALSE","FALSE","America/New_York"
-"01531","42.31929","-72.12796","New Braintree","MA","Massachusetts","TRUE","","1211","22.5","25027","Worcester","{""25027"": ""100""}","Worcester","25027","FALSE","FALSE","America/New_York"
-"01532","42.32315","-71.64621","Northborough","MA","Massachusetts","TRUE","","15056","314.7","25027","Worcester","{""25027"": ""100""}","Worcester","25027","FALSE","FALSE","America/New_York"
-"01534","42.14044","-71.64291","Northbridge","MA","Massachusetts","TRUE","","6296","277.6","25027","Worcester","{""25027"": ""100""}","Worcester","25027","FALSE","FALSE","America/New_York"
-"01535","42.2695","-72.07795","North Brookfield","MA","Massachusetts","TRUE","","4774","86.7","25027","Worcester","{""25027"": ""100""}","Worcester","25027","FALSE","FALSE","America/New_York"
-"01536","42.23236","-71.69101","North Grafton","MA","Massachusetts","TRUE","","7576","350.9","25027","Worcester","{""25027"": ""100""}","Worcester","25027","FALSE","FALSE","America/New_York"
-"01537","42.16158","-71.89149","North Oxford","MA","Massachusetts","TRUE","","2201","121.7","25027","Worcester","{""25027"": ""100""}","Worcester","25027","FALSE","FALSE","America/New_York"
-"01540","42.11634","-71.85733","Oxford","MA","Massachusetts","TRUE","","11581","231.1","25027","Worcester","{""25027"": ""100""}","Worcester","25027","FALSE","FALSE","America/New_York"
-"01541","42.45649","-71.88128","Princeton","MA","Massachusetts","TRUE","","3455","37.6","25027","Worcester","{""25027"": ""100""}","Worcester","25027","FALSE","FALSE","America/New_York"
-"01542","42.20185","-71.91079","Rochdale","MA","Massachusetts","TRUE","","2567","246.2","25027","Worcester","{""25027"": ""100""}","Worcester","25027","FALSE","FALSE","America/New_York"
-"01543","42.38481","-71.96726","Rutland","MA","Massachusetts","TRUE","","8685","95.5","25027","Worcester","{""25027"": ""100""}","Worcester","25027","FALSE","FALSE","America/New_York"
-"01545","42.28423","-71.71554","Shrewsbury","MA","Massachusetts","TRUE","","37086","690.2","25027","Worcester","{""25027"": ""100""}","Worcester","25027","FALSE","FALSE","America/New_York"
-"01550","42.06039","-72.03377","Southbridge","MA","Massachusetts","TRUE","","16887","322.2","25027","Worcester","{""25027"": ""100""}","Worcester","25027","FALSE","FALSE","America/New_York"
-"01560","42.17496","-71.67763","South Grafton","MA","Massachusetts","TRUE","","4396","476.5","25027","Worcester","{""25027"": ""100""}","Worcester","25027","FALSE","FALSE","America/New_York"
-"01561","42.44394","-71.68551","South Lancaster","MA","Massachusetts","TRUE","","209","654.6","25027","Worcester","{""25027"": ""100""}","Worcester","25027","FALSE","FALSE","America/New_York"
-"01562","42.24715","-71.99189","Spencer","MA","Massachusetts","TRUE","","11928","140.2","25027","Worcester","{""25027"": ""100""}","Worcester","25027","FALSE","FALSE","America/New_York"
-"01564","42.44124","-71.77297","Sterling","MA","Massachusetts","TRUE","","8091","102.0","25027","Worcester","{""25027"": ""100""}","Worcester","25027","FALSE","FALSE","America/New_York"
-"01566","42.1024","-72.08116","Sturbridge","MA","Massachusetts","TRUE","","5592","76.2","25027","Worcester","{""25027"": ""100""}","Worcester","25027","FALSE","FALSE","America/New_York"
-"01568","42.17702","-71.60462","Upton","MA","Massachusetts","TRUE","","7894","142.1","25027","Worcester","{""25027"": ""100""}","Worcester","25027","FALSE","FALSE","America/New_York"
-"01569","42.05872","-71.63709","Uxbridge","MA","Massachusetts","TRUE","","14025","186.2","25027","Worcester","{""25027"": ""100""}","Worcester","25027","FALSE","FALSE","America/New_York"
-"01570","42.05206","-71.8485","Webster","MA","Massachusetts","TRUE","","16973","530.3","25027","Worcester","{""25027"": ""100""}","Worcester","25027","FALSE","FALSE","America/New_York"
-"01571","42.05501","-71.93519","Dudley","MA","Massachusetts","TRUE","","11723","217.3","25027","Worcester","{""25027"": ""100""}","Worcester","25027","FALSE","FALSE","America/New_York"
-"01581","42.26816","-71.61402","Westborough","MA","Massachusetts","TRUE","","19037","356.8","25027","Worcester","{""25027"": ""100""}","Worcester","25027","FALSE","FALSE","America/New_York"
-"01583","42.37025","-71.78499","West Boylston","MA","Massachusetts","TRUE","","7693","235.4","25027","Worcester","{""25027"": ""100""}","Worcester","25027","FALSE","FALSE","America/New_York"
-"01585","42.24153","-72.16193","West Brookfield","MA","Massachusetts","TRUE","","4569","69.1","25027","Worcester","{""25027"": ""100""}","Worcester","25027","FALSE","FALSE","America/New_York"
-"01588","42.11998","-71.66956","Whitinsville","MA","Massachusetts","TRUE","","9750","437.3","25027","Worcester","{""25027"": ""100""}","Worcester","25027","FALSE","FALSE","America/New_York"
-"01590","42.13395","-71.75087","Sutton","MA","Massachusetts","TRUE","","9404","113.4","25027","Worcester","{""25027"": ""100""}","Worcester","25027","FALSE","FALSE","America/New_York"
-"01602","42.27225","-71.84952","Worcester","MA","Massachusetts","TRUE","","22900","1532.9","25027","Worcester","{""25027"": ""100""}","Worcester","25027","FALSE","FALSE","America/New_York"
-"01603","42.24407","-71.84445","Worcester","MA","Massachusetts","TRUE","","19731","1688.4","25027","Worcester","{""25027"": ""100""}","Worcester","25027","FALSE","FALSE","America/New_York"
-"01604","42.25151","-71.76772","Worcester","MA","Massachusetts","TRUE","","38191","2290.2","25027","Worcester","{""25027"": ""100""}","Worcester","25027","FALSE","FALSE","America/New_York"
-"01605","42.28947","-71.78751","Worcester","MA","Massachusetts","TRUE","","28533","1952.9","25027","Worcester","{""25027"": ""100""}","Worcester","25027","FALSE","FALSE","America/New_York"
-"01606","42.31444","-71.79556","Worcester","MA","Massachusetts","TRUE","","19896","1295.8","25027","Worcester","{""25027"": ""100""}","Worcester","25027","FALSE","FALSE","America/New_York"
-"01607","42.22747","-71.78872","Worcester","MA","Massachusetts","TRUE","","8167","997.0","25027","Worcester","{""25027"": ""100""}","Worcester","25027","FALSE","FALSE","America/New_York"
-"01608","42.26187","-71.80159","Worcester","MA","Massachusetts","TRUE","","4471","3857.3","25027","Worcester","{""25027"": ""100""}","Worcester","25027","FALSE","FALSE","America/New_York"
-"01609","42.28645","-71.82895","Worcester","MA","Massachusetts","TRUE","","21628","2185.4","25027","Worcester","{""25027"": ""100""}","Worcester","25027","FALSE","FALSE","America/New_York"
-"01610","42.24674","-71.80967","Worcester","MA","Massachusetts","TRUE","","22023","4002.8","25027","Worcester","{""25027"": ""100""}","Worcester","25027","FALSE","FALSE","America/New_York"
-"01611","42.2383","-71.87725","Cherry Valley","MA","Massachusetts","TRUE","","2277","255.4","25027","Worcester","{""25027"": ""100""}","Worcester","25027","FALSE","FALSE","America/New_York"
-"01612","42.31035","-71.93077","Paxton","MA","Massachusetts","TRUE","","4900","123.5","25027","Worcester","{""25027"": ""100""}","Worcester","25027","FALSE","FALSE","America/New_York"
-"01701","42.32174","-71.43817","Framingham","MA","Massachusetts","TRUE","","32590","741.6","25017","Middlesex","{""25017"": ""100""}","Middlesex","25017","FALSE","FALSE","America/New_York"
-"01702","42.28217","-71.43387","Framingham","MA","Massachusetts","TRUE","","39799","1899.6","25017","Middlesex","{""25017"": ""100""}","Middlesex","25017","FALSE","FALSE","America/New_York"
-"01718","42.51978","-71.42928","Acton","MA","Massachusetts","TRUE","","790","6569.1","25017","Middlesex","{""25017"": ""100""}","Middlesex","25017","FALSE","FALSE","America/New_York"
-"01719","42.48836","-71.51782","Boxborough","MA","Massachusetts","TRUE","","5561","208.8","25017","Middlesex","{""25017"": ""100""}","Middlesex","25017","FALSE","FALSE","America/New_York"
-"01720","42.48416","-71.43805","Acton","MA","Massachusetts","TRUE","","22791","446.4","25017","Middlesex","{""25017"": ""100""}","Middlesex","25017","FALSE","FALSE","America/New_York"
-"01721","42.25729","-71.46866","Ashland","MA","Massachusetts","TRUE","","17710","554.2","25017","Middlesex","{""25017"": ""100""}","Middlesex","25017","FALSE","FALSE","America/New_York"
-"01730","42.49697","-71.27833","Bedford","MA","Massachusetts","TRUE","","14070","396.5","25017","Middlesex","{""25017"": ""100""}","Middlesex","25017","FALSE","FALSE","America/New_York"
-"01731","42.45675","-71.27952","Hanscom Afb","MA","Massachusetts","TRUE","","2059","1003.5","25017","Middlesex","{""25017"": ""100""}","Middlesex","25017","FALSE","FALSE","America/New_York"
-"01740","42.43616","-71.60728","Bolton","MA","Massachusetts","TRUE","","5299","102.6","25027","Worcester","{""25027"": ""100""}","Worcester","25027","FALSE","FALSE","America/New_York"
-"01741","42.53001","-71.35128","Carlisle","MA","Massachusetts","TRUE","","5224","132.1","25017","Middlesex","{""25017"": ""100""}","Middlesex","25017","FALSE","FALSE","America/New_York"
-"01742","42.46225","-71.36424","Concord","MA","Massachusetts","TRUE","","19121","302.1","25017","Middlesex","{""25017"": ""100""}","Middlesex","25017","FALSE","FALSE","America/New_York"
-"01745","42.29183","-71.50108","Fayville","MA","Massachusetts","TRUE","","595","575.7","25027","Worcester","{""25027"": ""100""}","Worcester","25027","FALSE","FALSE","America/New_York"
-"01746","42.19777","-71.44497","Holliston","MA","Massachusetts","TRUE","","14724","304.8","25017","Middlesex","{""25017"": ""100""}","Middlesex","25017","FALSE","FALSE","America/New_York"
-"01747","42.12481","-71.5351","Hopedale","MA","Massachusetts","TRUE","","5947","443.7","25027","Worcester","{""25027"": ""100""}","Worcester","25027","FALSE","FALSE","America/New_York"
-"01748","42.2255","-71.53779","Hopkinton","MA","Massachusetts","TRUE","","17598","259.1","25017","Middlesex","{""25017"": ""100""}","Middlesex","25017","FALSE","FALSE","America/New_York"
-"01749","42.38868","-71.54647","Hudson","MA","Massachusetts","TRUE","","19887","666.1","25017","Middlesex","{""25017"": ""100""}","Middlesex","25017","FALSE","FALSE","America/New_York"
-"01752","42.3494","-71.54681","Marlborough","MA","Massachusetts","TRUE","","39736","735.3","25017","Middlesex","{""25017"": ""100""}","Middlesex","25017","FALSE","FALSE","America/New_York"
-"01754","42.4264","-71.45612","Maynard","MA","Massachusetts","TRUE","","10754","797.1","25017","Middlesex","{""25017"": ""100""}","Middlesex","25017","FALSE","FALSE","America/New_York"
-"01756","42.09303","-71.5515","Mendon","MA","Massachusetts","TRUE","","6115","132.8","25027","Worcester","{""25027"": ""100""}","Worcester","25027","FALSE","FALSE","America/New_York"
-"01757","42.15678","-71.51911","Milford","MA","Massachusetts","TRUE","","28883","748.7","25027","Worcester","{""25027"": ""100""}","Worcester","25027","FALSE","FALSE","America/New_York"
-"01760","42.28435","-71.34981","Natick","MA","Massachusetts","TRUE","","35761","931.9","25017","Middlesex","{""25017"": ""100""}","Middlesex","25017","FALSE","FALSE","America/New_York"
-"01770","42.23417","-71.37529","Sherborn","MA","Massachusetts","TRUE","","4316","105.5","25017","Middlesex","{""25017"": ""100""}","Middlesex","25017","FALSE","FALSE","America/New_York"
-"01772","42.30144","-71.53041","Southborough","MA","Massachusetts","TRUE","","9526","270.4","25027","Worcester","{""25027"": ""100""}","Worcester","25027","FALSE","FALSE","America/New_York"
-"01773","42.4252","-71.31039","Lincoln","MA","Massachusetts","TRUE","","4884","138.4","25017","Middlesex","{""25017"": ""100""}","Middlesex","25017","FALSE","FALSE","America/New_York"
-"01775","42.42983","-71.51148","Stow","MA","Massachusetts","TRUE","","7133","159.0","25017","Middlesex","{""25017"": ""100""}","Middlesex","25017","FALSE","FALSE","America/New_York"
-"01776","42.38473","-71.4234","Sudbury","MA","Massachusetts","TRUE","","19122","304.6","25017","Middlesex","{""25017"": ""100""}","Middlesex","25017","FALSE","FALSE","America/New_York"
-"01778","42.35829","-71.35918","Wayland","MA","Massachusetts","TRUE","","14088","357.7","25017","Middlesex","{""25017"": ""100""}","Middlesex","25017","FALSE","FALSE","America/New_York"
-"01801","42.487","-71.15426","Woburn","MA","Massachusetts","TRUE","","40359","1230.2","25017","Middlesex","{""25017"": ""100""}","Middlesex","25017","FALSE","FALSE","America/New_York"
-"01803","42.50216","-71.20257","Burlington","MA","Massachusetts","TRUE","","27650","911.7","25017","Middlesex","{""25017"": ""100""}","Middlesex","25017","FALSE","FALSE","America/New_York"
-"01810","42.64655","-71.16505","Andover","MA","Massachusetts","TRUE","","35816","448.6","25009","Essex","{""25009"": ""100""}","Essex","25009","FALSE","FALSE","America/New_York"
-"01821","42.55016","-71.25217","Billerica","MA","Massachusetts","TRUE","","32797","764.4","25017","Middlesex","{""25017"": ""100""}","Middlesex","25017","FALSE","FALSE","America/New_York"
-"01824","42.59111","-71.35563","Chelmsford","MA","Massachusetts","TRUE","","25754","559.8","25017","Middlesex","{""25017"": ""100""}","Middlesex","25017","FALSE","FALSE","America/New_York"
-"01826","42.68314","-71.30061","Dracut","MA","Massachusetts","TRUE","","31294","584.6","25017","Middlesex","{""25017"": ""100""}","Middlesex","25017","FALSE","FALSE","America/New_York"
-"01827","42.67642","-71.5005","Dunstable","MA","Massachusetts","TRUE","","3366","79.0","25017","Middlesex","{""25017"": ""100""}","Middlesex","25017","FALSE","FALSE","America/New_York"
-"01830","42.79591","-71.05311","Haverhill","MA","Massachusetts","TRUE","","26305","734.7","25009","Essex","{""25009"": ""100""}","Essex","25009","FALSE","FALSE","America/New_York"
-"01832","42.79103","-71.13128","Haverhill","MA","Massachusetts","TRUE","","23270","788.1","25009","Essex","{""25009"": ""100""}","Essex","25009","FALSE","FALSE","America/New_York"
-"01833","42.72401","-70.9821","Georgetown","MA","Massachusetts","TRUE","","8695","261.1","25009","Essex","{""25009"": ""100""}","Essex","25009","FALSE","FALSE","America/New_York"
-"01834","42.75199","-71.01486","Groveland","MA","Massachusetts","TRUE","","6780","294.7","25009","Essex","{""25009"": ""100""}","Essex","25009","FALSE","FALSE","America/New_York"
-"01835","42.75293","-71.08594","Haverhill","MA","Massachusetts","TRUE","","13958","689.9","25009","Essex","{""25009"": ""100""}","Essex","25009","FALSE","FALSE","America/New_York"
-"01840","42.70688","-71.1601","Lawrence","MA","Massachusetts","TRUE","","5573","4318.9","25009","Essex","{""25009"": ""100""}","Essex","25009","FALSE","FALSE","America/New_York"
-"01841","42.71083","-71.1651","Lawrence","MA","Massachusetts","TRUE","","49367","6172.0","25009","Essex","{""25009"": ""100""}","Essex","25009","FALSE","FALSE","America/New_York"
-"01843","42.68984","-71.16097","Lawrence","MA","Massachusetts","TRUE","","25002","2861.6","25009","Essex","{""25009"": ""100""}","Essex","25009","FALSE","FALSE","America/New_York"
-"01844","42.73401","-71.18889","Methuen","MA","Massachusetts","TRUE","","50282","874.0","25009","Essex","{""25009"": ""100""}","Essex","25009","FALSE","FALSE","America/New_York"
-"01845","42.67135","-71.08653","North Andover","MA","Massachusetts","TRUE","","30842","453.1","25009","Essex","{""25009"": ""100""}","Essex","25009","FALSE","FALSE","America/New_York"
-"01850","42.65569","-71.30292","Lowell","MA","Massachusetts","TRUE","","16151","4586.5","25017","Middlesex","{""25017"": ""100""}","Middlesex","25017","FALSE","FALSE","America/New_York"
-"01851","42.62812","-71.33565","Lowell","MA","Massachusetts","TRUE","","30686","3542.4","25017","Middlesex","{""25017"": ""100""}","Middlesex","25017","FALSE","FALSE","America/New_York"
-"01852","42.63232","-71.29534","Lowell","MA","Massachusetts","TRUE","","35532","2760.4","25017","Middlesex","{""25017"": ""100""}","Middlesex","25017","FALSE","FALSE","America/New_York"
-"01854","42.64906","-71.348","Lowell","MA","Massachusetts","TRUE","","28937","2839.8","25017","Middlesex","{""25017"": ""100""}","Middlesex","25017","FALSE","FALSE","America/New_York"
-"01860","42.83857","-71.01192","Merrimac","MA","Massachusetts","TRUE","","6890","313.1","25009","Essex","{""25009"": ""100""}","Essex","25009","FALSE","FALSE","America/New_York"
-"01862","42.57488","-71.29343","North Billerica","MA","Massachusetts","TRUE","","10623","443.9","25017","Middlesex","{""25017"": ""100""}","Middlesex","25017","FALSE","FALSE","America/New_York"
-"01863","42.63239","-71.39055","North Chelmsford","MA","Massachusetts","TRUE","","9372","783.2","25017","Middlesex","{""25017"": ""100""}","Middlesex","25017","FALSE","FALSE","America/New_York"
-"01864","42.58157","-71.08757","North Reading","MA","Massachusetts","TRUE","","15581","457.1","25017","Middlesex","{""25017"": ""100""}","Middlesex","25017","FALSE","FALSE","America/New_York"
-"01867","42.53507","-71.10555","Reading","MA","Massachusetts","TRUE","","25077","972.6","25017","Middlesex","{""25017"": ""100""}","Middlesex","25017","FALSE","FALSE","America/New_York"
-"01876","42.61224","-71.22746","Tewksbury","MA","Massachusetts","TRUE","","30878","582.5","25017","Middlesex","{""25017"": ""100""}","Middlesex","25017","FALSE","FALSE","America/New_York"
-"01879","42.66638","-71.42869","Tyngsboro","MA","Massachusetts","TRUE","","12443","286.0","25017","Middlesex","{""25017"": ""100""}","Middlesex","25017","FALSE","FALSE","America/New_York"
-"01880","42.50222","-71.06702","Wakefield","MA","Massachusetts","TRUE","","26720","1492.6","25017","Middlesex","{""25017"": ""100""}","Middlesex","25017","FALSE","FALSE","America/New_York"
-"01886","42.58642","-71.44008","Westford","MA","Massachusetts","TRUE","","24342","310.8","25017","Middlesex","{""25017"": ""100""}","Middlesex","25017","FALSE","FALSE","America/New_York"
-"01887","42.56099","-71.16545","Wilmington","MA","Massachusetts","TRUE","","23377","531.4","25017","Middlesex","{""25017"": ""100""}","Middlesex","25017","FALSE","FALSE","America/New_York"
-"01890","42.4518","-71.1463","Winchester","MA","Massachusetts","TRUE","","22738","1455.3","25017","Middlesex","{""25017"": ""100""}","Middlesex","25017","FALSE","FALSE","America/New_York"
-"01901","42.46104","-70.94657","Lynn","MA","Massachusetts","TRUE","","2135","3329.1","25009","Essex","{""25009"": ""100""}","Essex","25009","FALSE","FALSE","America/New_York"
-"01902","42.47086","-70.93991","Lynn","MA","Massachusetts","TRUE","","49641","7975.8","25009","Essex","{""25009"": ""100""}","Essex","25009","FALSE","FALSE","America/New_York"
-"01904","42.49153","-70.97273","Lynn","MA","Massachusetts","TRUE","","17294","1476.3","25009","Essex","{""25009"": ""100""}","Essex","25009","FALSE","FALSE","America/New_York"
-"01905","42.46614","-70.97589","Lynn","MA","Massachusetts","TRUE","","24580","2667.4","25009","Essex","{""25009"": ""100""}","Essex","25009","FALSE","FALSE","America/New_York"
-"01906","42.46799","-71.01441","Saugus","MA","Massachusetts","TRUE","","28222","1009.1","25009","Essex","{""25009"": ""100""}","Essex","25009","FALSE","FALSE","America/New_York"
-"01907","42.47583","-70.90673","Swampscott","MA","Massachusetts","TRUE","","15278","1943.7","25009","Essex","{""25009"": ""100""}","Essex","25009","FALSE","FALSE","America/New_York"
-"01908","42.42978","-70.92729","Nahant","MA","Massachusetts","TRUE","","3502","1256.9","25009","Essex","{""25009"": ""100""}","Essex","25009","FALSE","FALSE","America/New_York"
-"01913","42.85296","-70.94458","Amesbury","MA","Massachusetts","TRUE","","17434","547.6","25009","Essex","{""25009"": ""100""}","Essex","25009","FALSE","FALSE","America/New_York"
-"01915","42.5681","-70.86273","Beverly","MA","Massachusetts","TRUE","","41885","1071.7","25009","Essex","{""25009"": ""100""}","Essex","25009","FALSE","FALSE","America/New_York"
-"01921","42.68152","-71.01897","Boxford","MA","Massachusetts","TRUE","","8282","135.8","25009","Essex","{""25009"": ""100""}","Essex","25009","FALSE","FALSE","America/New_York"
-"01922","42.75872","-70.91448","Byfield","MA","Massachusetts","TRUE","","3910","157.4","25009","Essex","{""25009"": ""100""}","Essex","25009","FALSE","FALSE","America/New_York"
-"01923","42.57399","-70.94926","Danvers","MA","Massachusetts","TRUE","","27406","801.3","25009","Essex","{""25009"": ""100""}","Essex","25009","FALSE","FALSE","America/New_York"
-"01929","42.63474","-70.77689","Essex","MA","Massachusetts","TRUE","","3745","103.6","25009","Essex","{""25009"": ""100""}","Essex","25009","FALSE","FALSE","America/New_York"
-"01930","42.62589","-70.68968","Gloucester","MA","Massachusetts","TRUE","","30162","444.5","25009","Essex","{""25009"": ""100""}","Essex","25009","FALSE","FALSE","America/New_York"
-"01937","42.58573","-70.98403","Hathorne","MA","Massachusetts","TRUE","","180","951.3","25009","Essex","{""25009"": ""100""}","Essex","25009","FALSE","FALSE","America/New_York"
-"01938","42.68366","-70.84325","Ipswich","MA","Massachusetts","TRUE","","13963","177.2","25009","Essex","{""25009"": ""100""}","Essex","25009","FALSE","FALSE","America/New_York"
-"01940","42.53457","-71.03755","Lynnfield","MA","Massachusetts","TRUE","","13474","493.4","25009","Essex","{""25009"": ""98.36"", ""25017"": ""1.64""}","Essex|Middlesex","25009|25017","FALSE","FALSE","America/New_York"
-"01944","42.58154","-70.76825","Manchester","MA","Massachusetts","TRUE","","5383","225.2","25009","Essex","{""25009"": ""100""}","Essex","25009","FALSE","FALSE","America/New_York"
-"01945","42.49911","-70.86368","Marblehead","MA","Massachusetts","TRUE","","20500","1803.2","25009","Essex","{""25009"": ""100""}","Essex","25009","FALSE","FALSE","America/New_York"
-"01949","42.60432","-71.01643","Middleton","MA","Massachusetts","TRUE","","9872","283.5","25009","Essex","{""25009"": ""100""}","Essex","25009","FALSE","FALSE","America/New_York"
-"01950","42.81238","-70.88787","Newburyport","MA","Massachusetts","TRUE","","18077","835.9","25009","Essex","{""25009"": ""100""}","Essex","25009","FALSE","FALSE","America/New_York"
-"01951","42.77804","-70.84979","Newbury","MA","Massachusetts","TRUE","","3150","88.3","25009","Essex","{""25009"": ""100""}","Essex","25009","FALSE","FALSE","America/New_York"
-"01952","42.84654","-70.86162","Salisbury","MA","Massachusetts","TRUE","","9379","235.5","25009","Essex","{""25009"": ""100""}","Essex","25009","FALSE","FALSE","America/New_York"
-"01960","42.53372","-70.97223","Peabody","MA","Massachusetts","TRUE","","52628","1269.2","25009","Essex","{""25009"": ""100""}","Essex","25009","FALSE","FALSE","America/New_York"
-"01966","42.65435","-70.6222","Rockport","MA","Massachusetts","TRUE","","7231","399.5","25009","Essex","{""25009"": ""100""}","Essex","25009","FALSE","FALSE","America/New_York"
-"01969","42.72121","-70.89294","Rowley","MA","Massachusetts","TRUE","","6372","140.7","25009","Essex","{""25009"": ""100""}","Essex","25009","FALSE","FALSE","America/New_York"
-"01970","42.5126","-70.90376","Salem","MA","Massachusetts","TRUE","","43033","2048.3","25009","Essex","{""25009"": ""100""}","Essex","25009","FALSE","FALSE","America/New_York"
-"01982","42.62676","-70.85795","South Hamilton","MA","Massachusetts","TRUE","","8031","218.7","25009","Essex","{""25009"": ""100""}","Essex","25009","FALSE","FALSE","America/New_York"
-"01983","42.63728","-70.94256","Topsfield","MA","Massachusetts","TRUE","","6568","212.9","25009","Essex","{""25009"": ""100""}","Essex","25009","FALSE","FALSE","America/New_York"
-"01984","42.60082","-70.88249","Wenham","MA","Massachusetts","TRUE","","5240","264.2","25009","Essex","{""25009"": ""100""}","Essex","25009","FALSE","FALSE","America/New_York"
-"01985","42.79391","-70.96908","West Newbury","MA","Massachusetts","TRUE","","4631","133.0","25009","Essex","{""25009"": ""100""}","Essex","25009","FALSE","FALSE","America/New_York"
-"02019","42.07774","-71.47409","Bellingham","MA","Massachusetts","TRUE","","17108","360.1","25021","Norfolk","{""25021"": ""100""}","Norfolk","25021","FALSE","FALSE","America/New_York"
-"02021","42.17515","-71.12655","Canton","MA","Massachusetts","TRUE","","23369","480.2","25021","Norfolk","{""25021"": ""100""}","Norfolk","25021","FALSE","FALSE","America/New_York"
-"02025","42.23604","-70.81903","Cohasset","MA","Massachusetts","TRUE","","8484","334.7","25021","Norfolk","{""25021"": ""100""}","Norfolk","25021","FALSE","FALSE","America/New_York"
-"02026","42.2467","-71.17775","Dedham","MA","Massachusetts","TRUE","","25265","952.0","25021","Norfolk","{""25021"": ""100""}","Norfolk","25021","FALSE","FALSE","America/New_York"
-"02030","42.23663","-71.28418","Dover","MA","Massachusetts","TRUE","","6044","154.6","25021","Norfolk","{""25021"": ""100""}","Norfolk","25021","FALSE","FALSE","America/New_York"
-"02032","42.15491","-71.21548","East Walpole","MA","Massachusetts","TRUE","","4194","692.5","25021","Norfolk","{""25021"": ""100""}","Norfolk","25021","FALSE","FALSE","America/New_York"
-"02035","42.06266","-71.24613","Foxboro","MA","Massachusetts","TRUE","","17727","344.7","25021","Norfolk","{""25021"": ""100""}","Norfolk","25021","FALSE","FALSE","America/New_York"
-"02038","42.08622","-71.41126","Franklin","MA","Massachusetts","TRUE","","33256","482.0","25021","Norfolk","{""25021"": ""100""}","Norfolk","25021","FALSE","FALSE","America/New_York"
-"02043","42.21678","-70.88499","Hingham","MA","Massachusetts","TRUE","","23652","411.7","25023","Plymouth","{""25023"": ""100""}","Plymouth","25023","FALSE","FALSE","America/New_York"
-"02045","42.28436","-70.88269","Hull","MA","Massachusetts","TRUE","","10455","1511.1","25023","Plymouth","{""25023"": ""100""}","Plymouth","25023","FALSE","FALSE","America/New_York"
-"02047","42.13346","-70.68674","Humarock","MA","Massachusetts","TRUE","","97","156.6","25023","Plymouth","{""25023"": ""100""}","Plymouth","25023","FALSE","FALSE","America/New_York"
-"02048","42.01626","-71.21868","Mansfield","MA","Massachusetts","TRUE","","23947","459.9","25005","Bristol","{""25005"": ""100""}","Bristol","25005","FALSE","FALSE","America/New_York"
-"02050","42.11488","-70.71475","Marshfield","MA","Massachusetts","TRUE","","26222","347.9","25023","Plymouth","{""25023"": ""100""}","Plymouth","25023","FALSE","FALSE","America/New_York"
-"02052","42.18481","-71.305","Medfield","MA","Massachusetts","TRUE","","12841","344.1","25021","Norfolk","{""25021"": ""100""}","Norfolk","25021","FALSE","FALSE","America/New_York"
-"02053","42.15352","-71.42907","Medway","MA","Massachusetts","TRUE","","13325","446.0","25021","Norfolk","{""25021"": ""100""}","Norfolk","25021","FALSE","FALSE","America/New_York"
-"02054","42.16932","-71.36256","Millis","MA","Massachusetts","TRUE","","8233","264.2","25021","Norfolk","{""25021"": ""100""}","Norfolk","25021","FALSE","FALSE","America/New_York"
-"02056","42.11637","-71.32963","Norfolk","MA","Massachusetts","TRUE","","11309","293.8","25021","Norfolk","{""25021"": ""100""}","Norfolk","25021","FALSE","FALSE","America/New_York"
-"02061","42.16073","-70.81774","Norwell","MA","Massachusetts","TRUE","","11054","203.8","25023","Plymouth","{""25023"": ""100""}","Plymouth","25023","FALSE","FALSE","America/New_York"
-"02062","42.18605","-71.19492","Norwood","MA","Massachusetts","TRUE","","29306","1092.4","25021","Norfolk","{""25021"": ""100""}","Norfolk","25021","FALSE","FALSE","America/New_York"
-"02066","42.20146","-70.76181","Scituate","MA","Massachusetts","TRUE","","18239","426.9","25023","Plymouth","{""25023"": ""100""}","Plymouth","25023","FALSE","FALSE","America/New_York"
-"02067","42.10811","-71.18143","Sharon","MA","Massachusetts","TRUE","","18508","315.1","25021","Norfolk","{""25021"": ""100""}","Norfolk","25021","FALSE","FALSE","America/New_York"
-"02071","42.10279","-71.2721","South Walpole","MA","Massachusetts","TRUE","","1526","607.1","25021","Norfolk","{""25021"": ""100""}","Norfolk","25021","FALSE","FALSE","America/New_York"
-"02072","42.11923","-71.10189","Stoughton","MA","Massachusetts","TRUE","","28639","687.3","25021","Norfolk","{""25021"": ""100""}","Norfolk","25021","FALSE","FALSE","America/New_York"
-"02081","42.14652","-71.25883","Walpole","MA","Massachusetts","TRUE","","19904","428.7","25021","Norfolk","{""25021"": ""100""}","Norfolk","25021","FALSE","FALSE","America/New_York"
-"02090","42.22026","-71.21068","Westwood","MA","Massachusetts","TRUE","","16154","572.4","25021","Norfolk","{""25021"": ""100""}","Norfolk","25021","FALSE","FALSE","America/New_York"
-"02093","42.0513","-71.35522","Wrentham","MA","Massachusetts","TRUE","","11823","210.3","25021","Norfolk","{""25021"": ""100""}","Norfolk","25021","FALSE","FALSE","America/New_York"
-"02108","42.35767","-71.06505","Boston","MA","Massachusetts","TRUE","","4454","12604.8","25025","Suffolk","{""25025"": ""100""}","Suffolk","25025","FALSE","FALSE","America/New_York"
-"02109","42.36459","-71.05298","Boston","MA","Massachusetts","TRUE","","4190","9335.2","25025","Suffolk","{""25025"": ""100""}","Suffolk","25025","FALSE","FALSE","America/New_York"
-"02110","42.35826","-71.05175","Boston","MA","Massachusetts","TRUE","","2314","4931.3","25025","Suffolk","{""25025"": ""100""}","Suffolk","25025","FALSE","FALSE","America/New_York"
-"02111","42.35007","-71.05911","Boston","MA","Massachusetts","TRUE","","7926","11319.2","25025","Suffolk","{""25025"": ""100""}","Suffolk","25025","FALSE","FALSE","America/New_York"
-"02113","42.36542","-71.0554","Boston","MA","Massachusetts","TRUE","","6966","26817.5","25025","Suffolk","{""25025"": ""100""}","Suffolk","25025","FALSE","FALSE","America/New_York"
-"02114","42.36316","-71.06732","Boston","MA","Massachusetts","TRUE","","13335","11472.1","25025","Suffolk","{""25025"": ""100""}","Suffolk","25025","FALSE","FALSE","America/New_York"
-"02115","42.34109","-71.09456","Boston","MA","Massachusetts","TRUE","","28652","15628.1","25025","Suffolk","{""25025"": ""100""}","Suffolk","25025","FALSE","FALSE","America/New_York"
-"02116","42.35062","-71.07564","Boston","MA","Massachusetts","TRUE","","23157","14180.3","25025","Suffolk","{""25025"": ""100""}","Suffolk","25025","FALSE","FALSE","America/New_York"
-"02118","42.3382","-71.07074","Boston","MA","Massachusetts","TRUE","","28262","9952.5","25025","Suffolk","{""25025"": ""100""}","Suffolk","25025","FALSE","FALSE","America/New_York"
-"02119","42.3241","-71.08483","Roxbury","MA","Massachusetts","TRUE","","27818","6723.3","25025","Suffolk","{""25025"": ""100""}","Suffolk","25025","FALSE","FALSE","America/New_York"
-"02120","42.3321","-71.09637","Roxbury Crossing","MA","Massachusetts","TRUE","","15188","9448.3","25025","Suffolk","{""25025"": ""100""}","Suffolk","25025","FALSE","FALSE","America/New_York"
-"02121","42.30589","-71.08583","Dorchester","MA","Massachusetts","TRUE","","30159","6671.8","25025","Suffolk","{""25025"": ""100""}","Suffolk","25025","FALSE","FALSE","America/New_York"
-"02122","42.30007","-71.03352","Dorchester","MA","Massachusetts","TRUE","","24485","4645.6","25025","Suffolk","{""25025"": ""100""}","Suffolk","25025","FALSE","FALSE","America/New_York"
-"02124","42.28572","-71.07105","Dorchester Center","MA","Massachusetts","TRUE","","56649","7301.7","25025","Suffolk","{""25025"": ""100""}","Suffolk","25025","FALSE","FALSE","America/New_York"
-"02125","42.31545","-71.05594","Dorchester","MA","Massachusetts","TRUE","","34847","6309.8","25025","Suffolk","{""25025"": ""100""}","Suffolk","25025","FALSE","FALSE","America/New_York"
-"02126","42.2743","-71.09388","Mattapan","MA","Massachusetts","TRUE","","29620","5499.5","25025","Suffolk","{""25025"": ""100""}","Suffolk","25025","FALSE","FALSE","America/New_York"
-"02127","42.33479","-71.03902","South Boston","MA","Massachusetts","TRUE","","37634","7182.4","25025","Suffolk","{""25025"": ""100""}","Suffolk","25025","FALSE","FALSE","America/New_York"
-"02128","42.37266","-71.01656","East Boston","MA","Massachusetts","TRUE","","47263","3761.8","25025","Suffolk","{""25025"": ""100""}","Suffolk","25025","FALSE","FALSE","America/New_York"
-"02129","42.37975","-71.06169","Charlestown","MA","Massachusetts","TRUE","","19890","5684.1","25025","Suffolk","{""25025"": ""100""}","Suffolk","25025","FALSE","FALSE","America/New_York"
-"02130","42.30986","-71.11486","Jamaica Plain","MA","Massachusetts","TRUE","","40749","4718.9","25025","Suffolk","{""25025"": ""100""}","Suffolk","25025","FALSE","FALSE","America/New_York"
-"02131","42.2847","-71.12652","Roslindale","MA","Massachusetts","TRUE","","34419","5137.3","25025","Suffolk","{""25025"": ""100""}","Suffolk","25025","FALSE","FALSE","America/New_York"
-"02132","42.28025","-71.16145","West Roxbury","MA","Massachusetts","TRUE","","27801","2354.2","25025","Suffolk","{""25025"": ""100""}","Suffolk","25025","FALSE","FALSE","America/New_York"
-"02134","42.35788","-71.12942","Allston","MA","Massachusetts","TRUE","","19907","5795.1","25025","Suffolk","{""25025"": ""100""}","Suffolk","25025","FALSE","FALSE","America/New_York"
-"02135","42.34981","-71.15386","Brighton","MA","Massachusetts","TRUE","","44951","6588.9","25025","Suffolk","{""25025"": ""100""}","Suffolk","25025","FALSE","FALSE","America/New_York"
-"02136","42.25535","-71.12937","Hyde Park","MA","Massachusetts","TRUE","","35213","2961.5","25025","Suffolk","{""25025"": ""100""}","Suffolk","25025","FALSE","FALSE","America/New_York"
-"02138","42.38004","-71.13464","Cambridge","MA","Massachusetts","TRUE","","38504","5424.3","25017","Middlesex","{""25017"": ""100""}","Middlesex","25017","FALSE","FALSE","America/New_York"
-"02139","42.36253","-71.10302","Cambridge","MA","Massachusetts","TRUE","","38715","9595.7","25017","Middlesex","{""25017"": ""100""}","Middlesex","25017","FALSE","FALSE","America/New_York"
-"02140","42.39329","-71.13329","Cambridge","MA","Massachusetts","TRUE","","21490","7185.5","25017","Middlesex","{""25017"": ""100""}","Middlesex","25017","FALSE","FALSE","America/New_York"
-"02141","42.36997","-71.08268","Cambridge","MA","Massachusetts","TRUE","","14522","8709.4","25017","Middlesex","{""25017"": ""100""}","Middlesex","25017","FALSE","FALSE","America/New_York"
-"02142","42.36195","-71.08196","Cambridge","MA","Massachusetts","TRUE","","3676","5106.3","25017","Middlesex","{""25017"": ""100""}","Middlesex","25017","FALSE","FALSE","America/New_York"
-"02143","42.38145","-71.09684","Somerville","MA","Massachusetts","TRUE","","25327","6333.3","25017","Middlesex","{""25017"": ""100""}","Middlesex","25017","FALSE","FALSE","America/New_York"
-"02144","42.40065","-71.12186","Somerville","MA","Massachusetts","TRUE","","24818","8865.7","25017","Middlesex","{""25017"": ""100""}","Middlesex","25017","FALSE","FALSE","America/New_York"
-"02145","42.39203","-71.08951","Somerville","MA","Massachusetts","TRUE","","28402","7855.4","25017","Middlesex","{""25017"": ""100""}","Middlesex","25017","FALSE","FALSE","America/New_York"
-"02148","42.43048","-71.0576","Malden","MA","Massachusetts","TRUE","","60984","4667.0","25017","Middlesex","{""25017"": ""100""}","Middlesex","25017","FALSE","FALSE","America/New_York"
-"02149","42.40642","-71.05447","Everett","MA","Massachusetts","TRUE","","46118","5201.8","25017","Middlesex","{""25017"": ""100"", ""25025"": ""0""}","Middlesex|Suffolk","25017|25025","FALSE","FALSE","America/New_York"
-"02150","42.39594","-71.03244","Chelsea","MA","Massachusetts","TRUE","","39983","6981.6","25025","Suffolk","{""25025"": ""100""}","Suffolk","25025","FALSE","FALSE","America/New_York"
-"02151","42.41841","-71.00347","Revere","MA","Massachusetts","TRUE","","53701","3530.4","25025","Suffolk","{""25025"": ""100""}","Suffolk","25025","FALSE","FALSE","America/New_York"
-"02152","42.37279","-70.97789","Winthrop","MA","Massachusetts","TRUE","","18542","3629.6","25025","Suffolk","{""25025"": ""100""}","Suffolk","25025","FALSE","FALSE","America/New_York"
-"02155","42.42324","-71.10885","Medford","MA","Massachusetts","TRUE","","59735","2814.0","25017","Middlesex","{""25017"": ""100""}","Middlesex","25017","FALSE","FALSE","America/New_York"
-"02163","42.36636","-71.12076","Boston","MA","Massachusetts","TRUE","","2621","10209.2","25025","Suffolk","{""25025"": ""100""}","Suffolk","25025","FALSE","FALSE","America/New_York"
-"02169","42.24759","-71.00322","Quincy","MA","Massachusetts","TRUE","","56523","2432.6","25021","Norfolk","{""25021"": ""100""}","Norfolk","25021","FALSE","FALSE","America/New_York"
-"02170","42.26649","-71.01615","Quincy","MA","Massachusetts","TRUE","","19848","3679.2","25021","Norfolk","{""25021"": ""100""}","Norfolk","25021","FALSE","FALSE","America/New_York"
-"02171","42.28822","-71.02459","Quincy","MA","Massachusetts","TRUE","","17836","2807.9","25021","Norfolk","{""25021"": ""100""}","Norfolk","25021","FALSE","FALSE","America/New_York"
-"02176","42.45561","-71.05901","Melrose","MA","Massachusetts","TRUE","","28113","2318.1","25017","Middlesex","{""25017"": ""100""}","Middlesex","25017","FALSE","FALSE","America/New_York"
-"02180","42.47407","-71.09723","Stoneham","MA","Massachusetts","TRUE","","23223","1490.7","25017","Middlesex","{""25017"": ""100""}","Middlesex","25017","FALSE","FALSE","America/New_York"
-"02184","42.20384","-71.00221","Braintree","MA","Massachusetts","TRUE","","37220","1044.2","25021","Norfolk","{""25021"": ""100""}","Norfolk","25021","FALSE","FALSE","America/New_York"
-"02186","42.24123","-71.08437","Milton","MA","Massachusetts","TRUE","","27572","817.9","25021","Norfolk","{""25021"": ""100""}","Norfolk","25021","FALSE","FALSE","America/New_York"
-"02188","42.20808","-70.95748","Weymouth","MA","Massachusetts","TRUE","","15831","1643.2","25021","Norfolk","{""25021"": ""100""}","Norfolk","25021","FALSE","FALSE","America/New_York"
-"02189","42.20876","-70.9316","East Weymouth","MA","Massachusetts","TRUE","","15296","1551.5","25021","Norfolk","{""25021"": ""100""}","Norfolk","25021","FALSE","FALSE","America/New_York"
-"02190","42.16646","-70.95271","South Weymouth","MA","Massachusetts","TRUE","","17247","936.6","25021","Norfolk","{""25021"": ""100""}","Norfolk","25021","FALSE","FALSE","America/New_York"
-"02191","42.24364","-70.94148","North Weymouth","MA","Massachusetts","TRUE","","8360","1594.7","25021","Norfolk","{""25021"": ""100""}","Norfolk","25021","FALSE","FALSE","America/New_York"
-"02199","42.34747","-71.08202","Boston","MA","Massachusetts","TRUE","","1157","7805.7","25025","Suffolk","{""25025"": ""100""}","Suffolk","25025","FALSE","FALSE","America/New_York"
-"02203","42.3605","-71.05896","Boston","MA","Massachusetts","TRUE","","30","365.1","25025","Suffolk","{""25025"": ""0""}","Suffolk","25025","FALSE","FALSE","America/New_York"
-"02210","42.34781","-71.03905","Boston","MA","Massachusetts","TRUE","","3715","1492.7","25025","Suffolk","{""25025"": ""100""}","Suffolk","25025","FALSE","FALSE","America/New_York"
-"02215","42.34778","-71.10287","Boston","MA","Massachusetts","TRUE","","25770","13006.0","25025","Suffolk","{""25025"": ""100"", ""25021"": ""0""}","Suffolk|Norfolk","25025|25021","FALSE","FALSE","America/New_York"
-"02301","42.07791","-71.04225","Brockton","MA","Massachusetts","TRUE","","63420","1967.9","25023","Plymouth","{""25023"": ""100""}","Plymouth","25023","FALSE","FALSE","America/New_York"
-"02302","42.08784","-70.99871","Brockton","MA","Massachusetts","TRUE","","32174","1398.0","25023","Plymouth","{""25023"": ""100""}","Plymouth","25023","FALSE","FALSE","America/New_York"
-"02322","42.12666","-71.04924","Avon","MA","Massachusetts","TRUE","","4500","404.8","25021","Norfolk","{""25021"": ""100""}","Norfolk","25021","FALSE","FALSE","America/New_York"
-"02324","41.97282","-70.97489","Bridgewater","MA","Massachusetts","TRUE","","27436","388.8","25023","Plymouth","{""25023"": ""100""}","Plymouth","25023","FALSE","FALSE","America/New_York"
-"02330","41.87389","-70.75635","Carver","MA","Massachusetts","TRUE","","11720","121.3","25023","Plymouth","{""25023"": ""100""}","Plymouth","25023","FALSE","FALSE","America/New_York"
-"02332","42.0467","-70.71496","Duxbury","MA","Massachusetts","TRUE","","15812","257.6","25023","Plymouth","{""25023"": ""100""}","Plymouth","25023","FALSE","FALSE","America/New_York"
-"02333","42.03515","-70.94241","East Bridgewater","MA","Massachusetts","TRUE","","14466","324.1","25023","Plymouth","{""25023"": ""100""}","Plymouth","25023","FALSE","FALSE","America/New_York"
-"02338","41.99141","-70.86326","Halifax","MA","Massachusetts","TRUE","","7842","189.5","25023","Plymouth","{""25023"": ""100""}","Plymouth","25023","FALSE","FALSE","America/New_York"
-"02339","42.12239","-70.85666","Hanover","MA","Massachusetts","TRUE","","14459","359.3","25023","Plymouth","{""25023"": ""100""}","Plymouth","25023","FALSE","FALSE","America/New_York"
-"02341","42.05579","-70.87232","Hanson","MA","Massachusetts","TRUE","","10777","277.0","25023","Plymouth","{""25023"": ""100""}","Plymouth","25023","FALSE","FALSE","America/New_York"
-"02343","42.14729","-71.00482","Holbrook","MA","Massachusetts","TRUE","","10423","574.1","25021","Norfolk","{""25021"": ""100""}","Norfolk","25021","FALSE","FALSE","America/New_York"
-"02346","41.88036","-70.87432","Middleboro","MA","Massachusetts","TRUE","","24802","139.1","25023","Plymouth","{""25023"": ""100""}","Plymouth","25023","FALSE","FALSE","America/New_York"
-"02347","41.83127","-70.95914","Lakeville","MA","Massachusetts","TRUE","","11420","148.0","25023","Plymouth","{""25023"": ""100""}","Plymouth","25023","FALSE","FALSE","America/New_York"
-"02351","42.11724","-70.95962","Abington","MA","Massachusetts","TRUE","","16436","656.2","25023","Plymouth","{""25023"": ""100""}","Plymouth","25023","FALSE","FALSE","America/New_York"
-"02356","42.05507","-71.12059","North Easton","MA","Massachusetts","TRUE","","13312","374.9","25005","Bristol","{""25005"": ""100""}","Bristol","25005","FALSE","FALSE","America/New_York"
-"02357","42.05774","-71.08074","North Easton","MA","Massachusetts","TRUE","","1061","851.4","25005","Bristol","{""25005"": ""100""}","Bristol","25005","FALSE","FALSE","America/New_York"
-"02359","42.06547","-70.80143","Pembroke","MA","Massachusetts","TRUE","","18380","325.8","25023","Plymouth","{""25023"": ""100""}","Plymouth","25023","FALSE","FALSE","America/New_York"
-"02360","41.87859","-70.63066","Plymouth","MA","Massachusetts","TRUE","","59826","241.9","25023","Plymouth","{""25023"": ""100""}","Plymouth","25023","FALSE","FALSE","America/New_York"
-"02364","41.98617","-70.74823","Kingston","MA","Massachusetts","TRUE","","13566","281.0","25023","Plymouth","{""25023"": ""100""}","Plymouth","25023","FALSE","FALSE","America/New_York"
-"02366","41.85079","-70.65722","South Carver","MA","Massachusetts","TRUE","","198","80.8","25023","Plymouth","{""25023"": ""100""}","Plymouth","25023","FALSE","FALSE","America/New_York"
-"02367","41.96345","-70.80973","Plympton","MA","Massachusetts","TRUE","","2954","77.7","25023","Plymouth","{""25023"": ""100""}","Plymouth","25023","FALSE","FALSE","America/New_York"
-"02368","42.17697","-71.05341","Randolph","MA","Massachusetts","TRUE","","34686","1329.4","25021","Norfolk","{""25021"": ""100""}","Norfolk","25021","FALSE","FALSE","America/New_York"
-"02370","42.12987","-70.91096","Rockland","MA","Massachusetts","TRUE","","17953","672.4","25023","Plymouth","{""25023"": ""100""}","Plymouth","25023","FALSE","FALSE","America/New_York"
-"02375","42.01746","-71.10147","South Easton","MA","Massachusetts","TRUE","","10248","271.6","25005","Bristol","{""25005"": ""100""}","Bristol","25005","FALSE","FALSE","America/New_York"
-"02379","42.02139","-71.02669","West Bridgewater","MA","Massachusetts","TRUE","","7198","181.3","25023","Plymouth","{""25023"": ""100""}","Plymouth","25023","FALSE","FALSE","America/New_York"
-"02382","42.07999","-70.93991","Whitman","MA","Massachusetts","TRUE","","15056","838.1","25023","Plymouth","{""25023"": ""100""}","Plymouth","25023","FALSE","FALSE","America/New_York"
-"02420","42.45633","-71.21668","Lexington","MA","Massachusetts","TRUE","","14718","862.7","25017","Middlesex","{""25017"": ""100""}","Middlesex","25017","FALSE","FALSE","America/New_York"
-"02421","42.43853","-71.23999","Lexington","MA","Massachusetts","TRUE","","18622","730.1","25017","Middlesex","{""25017"": ""100""}","Middlesex","25017","FALSE","FALSE","America/New_York"
-"02445","42.32599","-71.13396","Brookline","MA","Massachusetts","TRUE","","21074","3125.0","25021","Norfolk","{""25021"": ""100""}","Norfolk","25021","FALSE","FALSE","America/New_York"
-"02446","42.34356","-71.12167","Brookline","MA","Massachusetts","TRUE","","29862","8958.5","25021","Norfolk","{""25021"": ""100""}","Norfolk","25021","FALSE","FALSE","America/New_York"
-"02451","42.39821","-71.25711","Waltham","MA","Massachusetts","TRUE","","18246","1275.0","25017","Middlesex","{""25017"": ""100""}","Middlesex","25017","FALSE","FALSE","America/New_York"
-"02452","42.39357","-71.21961","Waltham","MA","Massachusetts","TRUE","","14909","1555.2","25017","Middlesex","{""25017"": ""100""}","Middlesex","25017","FALSE","FALSE","America/New_York"
-"02453","42.36913","-71.24024","Waltham","MA","Massachusetts","TRUE","","29505","3247.5","25017","Middlesex","{""25017"": ""100""}","Middlesex","25017","FALSE","FALSE","America/New_York"
-"02457","42.29836","-71.26833","Babson Park","MA","Massachusetts","TRUE","","1752","4239.7","25021","Norfolk","{""25021"": ""100""}","Norfolk","25021","FALSE","FALSE","America/New_York"
-"02458","42.3528","-71.18748","Newton","MA","Massachusetts","TRUE","","12778","2470.9","25017","Middlesex","{""25017"": ""100""}","Middlesex","25017","FALSE","FALSE","America/New_York"
-"02459","42.31493","-71.19174","Newton Center","MA","Massachusetts","TRUE","","19012","1467.1","25017","Middlesex","{""25017"": ""100""}","Middlesex","25017","FALSE","FALSE","America/New_York"
-"02460","42.35196","-71.2083","Newtonville","MA","Massachusetts","TRUE","","9773","2807.7","25017","Middlesex","{""25017"": ""100""}","Middlesex","25017","FALSE","FALSE","America/New_York"
-"02461","42.31681","-71.20849","Newton Highlands","MA","Massachusetts","TRUE","","7084","1879.6","25017","Middlesex","{""25017"": ""100""}","Middlesex","25017","FALSE","FALSE","America/New_York"
-"02462","42.32991","-71.25616","Newton Lower Falls","MA","Massachusetts","TRUE","","1389","1015.8","25017","Middlesex","{""25017"": ""100""}","Middlesex","25017","FALSE","FALSE","America/New_York"
-"02464","42.31292","-71.21947","Newton Upper Falls","MA","Massachusetts","TRUE","","3326","2276.8","25017","Middlesex","{""25017"": ""100""}","Middlesex","25017","FALSE","FALSE","America/New_York"
-"02465","42.34914","-71.22665","West Newton","MA","Massachusetts","TRUE","","11814","2034.3","25017","Middlesex","{""25017"": ""100""}","Middlesex","25017","FALSE","FALSE","America/New_York"
-"02466","42.34412","-71.24806","Auburndale","MA","Massachusetts","TRUE","","8929","1926.5","25017","Middlesex","{""25017"": ""100""}","Middlesex","25017","FALSE","FALSE","America/New_York"
-"02467","42.3164","-71.16117","Chestnut Hill","MA","Massachusetts","TRUE","","22269","1764.4","25021","Norfolk","{""25021"": ""38.86"", ""25017"": ""37.9"", ""25025"": ""23.24""}","Norfolk|Middlesex|Suffolk","25021|25017|25025","FALSE","FALSE","America/New_York"
-"02468","42.3273","-71.23077","Waban","MA","Massachusetts","TRUE","","5623","1465.4","25017","Middlesex","{""25017"": ""100""}","Middlesex","25017","FALSE","FALSE","America/New_York"
-"02472","42.37","-71.17725","Watertown","MA","Massachusetts","TRUE","","35518","3397.1","25017","Middlesex","{""25017"": ""100""}","Middlesex","25017","FALSE","FALSE","America/New_York"
-"02474","42.42026","-71.15651","Arlington","MA","Massachusetts","TRUE","","27878","3528.6","25017","Middlesex","{""25017"": ""100""}","Middlesex","25017","FALSE","FALSE","America/New_York"
-"02476","42.41624","-71.17518","Arlington","MA","Massachusetts","TRUE","","17426","3214.7","25017","Middlesex","{""25017"": ""100""}","Middlesex","25017","FALSE","FALSE","America/New_York"
-"02478","42.39603","-71.17952","Belmont","MA","Massachusetts","TRUE","","26099","2170.2","25017","Middlesex","{""25017"": ""100""}","Middlesex","25017","FALSE","FALSE","America/New_York"
-"02481","42.31293","-71.27431","Wellesley Hills","MA","Massachusetts","TRUE","","16140","1104.7","25021","Norfolk","{""25021"": ""100""}","Norfolk","25021","FALSE","FALSE","America/New_York"
-"02482","42.29384","-71.29987","Wellesley","MA","Massachusetts","TRUE","","10855","995.0","25021","Norfolk","{""25021"": ""100""}","Norfolk","25021","FALSE","FALSE","America/New_York"
-"02492","42.27612","-71.24374","Needham","MA","Massachusetts","TRUE","","20571","832.6","25021","Norfolk","{""25021"": ""100""}","Norfolk","25021","FALSE","FALSE","America/New_York"
-"02493","42.35894","-71.3001","Weston","MA","Massachusetts","TRUE","","12112","278.0","25017","Middlesex","{""25017"": ""100""}","Middlesex","25017","FALSE","FALSE","America/New_York"
-"02494","42.29966","-71.23201","Needham Heights","MA","Massachusetts","TRUE","","10399","1451.4","25021","Norfolk","{""25021"": ""100""}","Norfolk","25021","FALSE","FALSE","America/New_York"
-"02532","41.75162","-70.59728","Buzzards Bay","MA","Massachusetts","TRUE","","13218","357.6","25001","Barnstable","{""25001"": ""84.5"", ""25023"": ""15.5""}","Barnstable|Plymouth","25001|25023","FALSE","FALSE","America/New_York"
-"02534","41.66709","-70.61991","Cataumet","MA","Massachusetts","TRUE","","887","149.7","25001","Barnstable","{""25001"": ""100""}","Barnstable","25001","FALSE","FALSE","America/New_York"
-"02535","41.34896","-70.74629","Chilmark","MA","Massachusetts","TRUE","","1753","27.8","25007","Dukes","{""25007"": ""100""}","Dukes","25007","FALSE","FALSE","America/New_York"
-"02536","41.59694","-70.56721","East Falmouth","MA","Massachusetts","TRUE","","19630","273.9","25001","Barnstable","{""25001"": ""100""}","Barnstable","25001","FALSE","FALSE","America/New_York"
-"02537","41.72948","-70.44014","East Sandwich","MA","Massachusetts","TRUE","","6689","211.6","25001","Barnstable","{""25001"": ""100""}","Barnstable","25001","FALSE","FALSE","America/New_York"
-"02538","41.77699","-70.64919","East Wareham","MA","Massachusetts","TRUE","","4128","351.0","25023","Plymouth","{""25023"": ""100""}","Plymouth","25023","FALSE","FALSE","America/New_York"
-"02539","41.37993","-70.53227","Edgartown","MA","Massachusetts","TRUE","","4320","62.2","25007","Dukes","{""25007"": ""100""}","Dukes","25007","FALSE","FALSE","America/New_York"
-"02540","41.57197","-70.62793","Falmouth","MA","Massachusetts","TRUE","","8346","300.7","25001","Barnstable","{""25001"": ""100""}","Barnstable","25001","FALSE","FALSE","America/New_York"
-"02542","41.70259","-70.54687","Buzzards Bay","MA","Massachusetts","TRUE","","949","11.9","25001","Barnstable","{""25001"": ""100""}","Barnstable","25001","FALSE","FALSE","America/New_York"
-"02543","41.49345","-70.73109","Woods Hole","MA","Massachusetts","TRUE","","649","25.2","25001","Barnstable","{""25001"": ""96.38"", ""25007"": ""3.62""}","Barnstable|Dukes","25001|25007","FALSE","FALSE","America/New_York"
-"02553","41.71336","-70.61883","Monument Beach","MA","Massachusetts","TRUE","","111","168.6","25001","Barnstable","{""25001"": ""100""}","Barnstable","25001","FALSE","FALSE","America/New_York"
-"02554","41.28538","-70.07982","Nantucket","MA","Massachusetts","TRUE","","10935","104.6","25019","Nantucket","{""25019"": ""100""}","Nantucket","25019","FALSE","FALSE","America/New_York"
-"02556","41.63949","-70.62584","North Falmouth","MA","Massachusetts","TRUE","","2499","249.6","25001","Barnstable","{""25001"": ""100""}","Barnstable","25001","FALSE","FALSE","America/New_York"
-"02557","41.4366","-70.58","Oak Bluffs","MA","Massachusetts","TRUE","","4665","250.6","25007","Dukes","{""25007"": ""100""}","Dukes","25007","FALSE","FALSE","America/New_York"
-"02558","41.74478","-70.65348","Onset","MA","Massachusetts","TRUE","","1170","367.4","25023","Plymouth","{""25023"": ""100""}","Plymouth","25023","FALSE","FALSE","America/New_York"
-"02559","41.69166","-70.61524","Pocasset","MA","Massachusetts","TRUE","","3746","287.2","25001","Barnstable","{""25001"": ""100""}","Barnstable","25001","FALSE","FALSE","America/New_York"
-"02561","41.76887","-70.53319","Sagamore","MA","Massachusetts","TRUE","","296","186.0","25001","Barnstable","{""25001"": ""100""}","Barnstable","25001","FALSE","FALSE","America/New_York"
-"02562","41.78718","-70.52691","Sagamore Beach","MA","Massachusetts","TRUE","","3094","354.4","25001","Barnstable","{""25001"": ""100""}","Barnstable","25001","FALSE","FALSE","America/New_York"
-"02563","41.71963","-70.478","Sandwich","MA","Massachusetts","TRUE","","9861","288.1","25001","Barnstable","{""25001"": ""100""}","Barnstable","25001","FALSE","FALSE","America/New_York"
-"02564","41.26534","-69.98431","Siasconset","MA","Massachusetts","TRUE","","233","15.7","25019","Nantucket","{""25019"": ""100""}","Nantucket","25019","FALSE","FALSE","America/New_York"
-"02568","41.45264","-70.61758","Vineyard Haven","MA","Massachusetts","TRUE","","4107","238.4","25007","Dukes","{""25007"": ""100""}","Dukes","25007","FALSE","FALSE","America/New_York"
-"02571","41.76358","-70.69796","Wareham","MA","Massachusetts","TRUE","","10608","205.9","25023","Plymouth","{""25023"": ""100""}","Plymouth","25023","FALSE","FALSE","America/New_York"
-"02575","41.39993","-70.65454","West Tisbury","MA","Massachusetts","TRUE","","2418","37.3","25007","Dukes","{""25007"": ""100""}","Dukes","25007","FALSE","FALSE","America/New_York"
-"02576","41.77807","-70.7637","West Wareham","MA","Massachusetts","TRUE","","4383","173.9","25023","Plymouth","{""25023"": ""100""}","Plymouth","25023","FALSE","FALSE","America/New_York"
-"02584","41.25883","-70.00735","Nantucket","MA","Massachusetts","TRUE","","0","0.0","25019","Nantucket","{""25019"": ""100""}","Nantucket","25019","FALSE","FALSE","America/New_York"
-"02601","41.6603","-70.29682","Hyannis","MA","Massachusetts","TRUE","","15677","704.3","25001","Barnstable","{""25001"": ""100""}","Barnstable","25001","FALSE","FALSE","America/New_York"
-"02630","41.70459","-70.30335","Barnstable","MA","Massachusetts","TRUE","","1957","188.4","25001","Barnstable","{""25001"": ""100""}","Barnstable","25001","FALSE","FALSE","America/New_York"
-"02631","41.74684","-70.06942","Brewster","MA","Massachusetts","TRUE","","9730","170.5","25001","Barnstable","{""25001"": ""100""}","Barnstable","25001","FALSE","FALSE","America/New_York"
-"02632","41.66056","-70.34749","Centerville","MA","Massachusetts","TRUE","","10208","538.5","25001","Barnstable","{""25001"": ""100""}","Barnstable","25001","FALSE","FALSE","America/New_York"
-"02633","41.68893","-69.97225","Chatham","MA","Massachusetts","TRUE","","4070","207.9","25001","Barnstable","{""25001"": ""100""}","Barnstable","25001","FALSE","FALSE","America/New_York"
-"02635","41.62372","-70.44051","Cotuit","MA","Massachusetts","TRUE","","3004","209.4","25001","Barnstable","{""25001"": ""100""}","Barnstable","25001","FALSE","FALSE","America/New_York"
-"02637","41.70571","-70.27243","Cummaquid","MA","Massachusetts","TRUE","","199","109.8","25001","Barnstable","{""25001"": ""100""}","Barnstable","25001","FALSE","FALSE","America/New_York"
-"02638","41.73226","-70.19361","Dennis","MA","Massachusetts","TRUE","","3126","203.4","25001","Barnstable","{""25001"": ""100""}","Barnstable","25001","FALSE","FALSE","America/New_York"
-"02639","41.66634","-70.1353","Dennis Port","MA","Massachusetts","TRUE","","3198","444.9","25001","Barnstable","{""25001"": ""100""}","Barnstable","25001","FALSE","FALSE","America/New_York"
-"02641","41.75059","-70.15223","East Dennis","MA","Massachusetts","TRUE","","194","35.9","25001","Barnstable","{""25001"": ""100""}","Barnstable","25001","FALSE","FALSE","America/New_York"
-"02642","41.83957","-69.97697","Eastham","MA","Massachusetts","TRUE","","4876","135.6","25001","Barnstable","{""25001"": ""100""}","Barnstable","25001","FALSE","FALSE","America/New_York"
-"02643","41.76568","-69.93648","East Orleans","MA","Massachusetts","TRUE","","0","0.0","25001","Barnstable","{""25001"": ""100""}","Barnstable","25001","FALSE","FALSE","America/New_York"
-"02644","41.68422","-70.51024","Forestdale","MA","Massachusetts","TRUE","","3791","409.0","25001","Barnstable","{""25001"": ""100""}","Barnstable","25001","FALSE","FALSE","America/New_York"
-"02645","41.70422","-70.06082","Harwich","MA","Massachusetts","TRUE","","9116","211.5","25001","Barnstable","{""25001"": ""100""}","Barnstable","25001","FALSE","FALSE","America/New_York"
-"02646","41.67079","-70.07195","Harwich Port","MA","Massachusetts","TRUE","","2094","268.5","25001","Barnstable","{""25001"": ""100""}","Barnstable","25001","FALSE","FALSE","America/New_York"
-"02647","41.63184","-70.30805","Hyannis Port","MA","Massachusetts","TRUE","","97","79.1","25001","Barnstable","{""25001"": ""100""}","Barnstable","25001","FALSE","FALSE","America/New_York"
-"02648","41.67071","-70.41635","Marstons Mills","MA","Massachusetts","TRUE","","6667","277.5","25001","Barnstable","{""25001"": ""100""}","Barnstable","25001","FALSE","FALSE","America/New_York"
-"02649","41.61764","-70.49053","Mashpee","MA","Massachusetts","TRUE","","14148","234.9","25001","Barnstable","{""25001"": ""100""}","Barnstable","25001","FALSE","FALSE","America/New_York"
-"02650","41.70341","-69.96591","North Chatham","MA","Massachusetts","TRUE","","901","241.6","25001","Barnstable","{""25001"": ""100""}","Barnstable","25001","FALSE","FALSE","America/New_York"
-"02651","41.87507","-70.0034","North Eastham","MA","Massachusetts","TRUE","","25","134.2","25001","Barnstable","{""25001"": ""100""}","Barnstable","25001","FALSE","FALSE","America/New_York"
-"02652","42.04411","-70.09475","North Truro","MA","Massachusetts","TRUE","","687","33.2","25001","Barnstable","{""25001"": ""100""}","Barnstable","25001","FALSE","FALSE","America/New_York"
-"02653","41.76877","-69.9739","Orleans","MA","Massachusetts","TRUE","","5856","187.3","25001","Barnstable","{""25001"": ""100""}","Barnstable","25001","FALSE","FALSE","America/New_York"
-"02655","41.62996","-70.39258","Osterville","MA","Massachusetts","TRUE","","3208","189.7","25001","Barnstable","{""25001"": ""100""}","Barnstable","25001","FALSE","FALSE","America/New_York"
-"02657","42.06139","-70.19814","Provincetown","MA","Massachusetts","TRUE","","2973","118.7","25001","Barnstable","{""25001"": ""100""}","Barnstable","25001","FALSE","FALSE","America/New_York"
-"02659","41.68304","-70.0223","South Chatham","MA","Massachusetts","TRUE","","1021","192.7","25001","Barnstable","{""25001"": ""100""}","Barnstable","25001","FALSE","FALSE","America/New_York"
-"02660","41.70548","-70.15434","South Dennis","MA","Massachusetts","TRUE","","6196","310.3","25001","Barnstable","{""25001"": ""100""}","Barnstable","25001","FALSE","FALSE","America/New_York"
-"02663","41.90674","-69.99749","South Wellfleet","MA","Massachusetts","TRUE","","102","27.9","25001","Barnstable","{""25001"": ""100""}","Barnstable","25001","FALSE","FALSE","America/New_York"
-"02664","41.67465","-70.19464","South Yarmouth","MA","Massachusetts","TRUE","","8693","483.9","25001","Barnstable","{""25001"": ""100""}","Barnstable","25001","FALSE","FALSE","America/New_York"
-"02666","41.98943","-70.04569","Truro","MA","Massachusetts","TRUE","","435","13.2","25001","Barnstable","{""25001"": ""100""}","Barnstable","25001","FALSE","FALSE","America/New_York"
-"02667","41.9279","-70.01813","Wellfleet","MA","Massachusetts","TRUE","","3515","72.9","25001","Barnstable","{""25001"": ""100""}","Barnstable","25001","FALSE","FALSE","America/New_York"
-"02668","41.71181","-70.35676","West Barnstable","MA","Massachusetts","TRUE","","2660","67.6","25001","Barnstable","{""25001"": ""100""}","Barnstable","25001","FALSE","FALSE","America/New_York"
-"02669","41.67105","-69.9928","West Chatham","MA","Massachusetts","TRUE","","27","11.1","25001","Barnstable","{""25001"": ""100""}","Barnstable","25001","FALSE","FALSE","America/New_York"
-"02670","41.65987","-70.1716","West Dennis","MA","Massachusetts","TRUE","","1195","221.3","25001","Barnstable","{""25001"": ""100""}","Barnstable","25001","FALSE","FALSE","America/New_York"
-"02671","41.6721","-70.11095","West Harwich","MA","Massachusetts","TRUE","","1026","196.7","25001","Barnstable","{""25001"": ""100""}","Barnstable","25001","FALSE","FALSE","America/New_York"
-"02672","41.63551","-70.31791","West Hyannisport","MA","Massachusetts","TRUE","","277","216.4","25001","Barnstable","{""25001"": ""100""}","Barnstable","25001","FALSE","FALSE","America/New_York"
-"02673","41.65731","-70.24666","West Yarmouth","MA","Massachusetts","TRUE","","8517","329.0","25001","Barnstable","{""25001"": ""100""}","Barnstable","25001","FALSE","FALSE","America/New_York"
-"02675","41.70486","-70.23063","Yarmouth Port","MA","Massachusetts","TRUE","","6580","281.4","25001","Barnstable","{""25001"": ""100""}","Barnstable","25001","FALSE","FALSE","America/New_York"
-"02702","41.78453","-71.06116","Assonet","MA","Massachusetts","TRUE","","4382","100.8","25005","Bristol","{""25005"": ""100""}","Bristol","25005","FALSE","FALSE","America/New_York"
-"02703","41.93105","-71.29505","Attleboro","MA","Massachusetts","TRUE","","44789","645.7","25005","Bristol","{""25005"": ""100""}","Bristol","25005","FALSE","FALSE","America/New_York"
-"02713","41.43437","-70.87573","Cuttyhunk","MA","Massachusetts","TRUE","","49","3.7","25007","Dukes","{""25007"": ""100""}","Dukes","25007","FALSE","FALSE","America/New_York"
-"02715","41.81747","-71.15057","Dighton","MA","Massachusetts","TRUE","","3893","131.2","25005","Bristol","{""25005"": ""100""}","Bristol","25005","FALSE","FALSE","America/New_York"
-"02717","41.75874","-70.97166","East Freetown","MA","Massachusetts","TRUE","","4917","107.4","25005","Bristol","{""25005"": ""100""}","Bristol","25005","FALSE","FALSE","America/New_York"
-"02718","41.86891","-71.01162","East Taunton","MA","Massachusetts","TRUE","","6394","238.6","25005","Bristol","{""25005"": ""100""}","Bristol","25005","FALSE","FALSE","America/New_York"
-"02719","41.63945","-70.87321","Fairhaven","MA","Massachusetts","TRUE","","16045","500.3","25005","Bristol","{""25005"": ""100""}","Bristol","25005","FALSE","FALSE","America/New_York"
-"02720","41.73286","-71.11808","Fall River","MA","Massachusetts","TRUE","","30160","1071.4","25005","Bristol","{""25005"": ""100""}","Bristol","25005","FALSE","FALSE","America/New_York"
-"02721","41.67459","-71.14768","Fall River","MA","Massachusetts","TRUE","","25978","2457.6","25005","Bristol","{""25005"": ""100""}","Bristol","25005","FALSE","FALSE","America/New_York"
-"02723","41.69271","-71.12968","Fall River","MA","Massachusetts","TRUE","","15066","3642.5","25005","Bristol","{""25005"": ""100""}","Bristol","25005","FALSE","FALSE","America/New_York"
-"02724","41.684","-71.17942","Fall River","MA","Massachusetts","TRUE","","17769","3691.9","25005","Bristol","{""25005"": ""100""}","Bristol","25005","FALSE","FALSE","America/New_York"
-"02725","41.71252","-71.18426","Somerset","MA","Massachusetts","TRUE","","2487","404.6","25005","Bristol","{""25005"": ""100""}","Bristol","25005","FALSE","FALSE","America/New_York"
-"02726","41.76075","-71.14438","Somerset","MA","Massachusetts","TRUE","","15678","1095.1","25005","Bristol","{""25005"": ""100""}","Bristol","25005","FALSE","FALSE","America/New_York"
-"02738","41.70912","-70.76355","Marion","MA","Massachusetts","TRUE","","5132","140.0","25023","Plymouth","{""25023"": ""100""}","Plymouth","25023","FALSE","FALSE","America/New_York"
-"02739","41.66869","-70.81706","Mattapoisett","MA","Massachusetts","TRUE","","6336","140.7","25023","Plymouth","{""25023"": ""100""}","Plymouth","25023","FALSE","FALSE","America/New_York"
-"02740","41.63787","-70.93814","New Bedford","MA","Massachusetts","TRUE","","43454","2950.9","25005","Bristol","{""25005"": ""100""}","Bristol","25005","FALSE","FALSE","America/New_York"
-"02743","41.71385","-70.90123","Acushnet","MA","Massachusetts","TRUE","","10529","220.6","25005","Bristol","{""25005"": ""100""}","Bristol","25005","FALSE","FALSE","America/New_York"
-"02744","41.60799","-70.91269","New Bedford","MA","Massachusetts","TRUE","","11170","3341.7","25005","Bristol","{""25005"": ""100""}","Bristol","25005","FALSE","FALSE","America/New_York"
-"02745","41.69887","-70.94819","New Bedford","MA","Massachusetts","TRUE","","24993","934.2","25005","Bristol","{""25005"": ""100""}","Bristol","25005","FALSE","FALSE","America/New_York"
-"02746","41.66144","-70.94169","New Bedford","MA","Massachusetts","TRUE","","15417","2813.2","25005","Bristol","{""25005"": ""100""}","Bristol","25005","FALSE","FALSE","America/New_York"
-"02747","41.66783","-71.01627","North Dartmouth","MA","Massachusetts","TRUE","","22947","181.6","25005","Bristol","{""25005"": ""100""}","Bristol","25005","FALSE","FALSE","America/New_York"
-"02748","41.5605","-70.97897","South Dartmouth","MA","Massachusetts","TRUE","","11607","199.3","25005","Bristol","{""25005"": ""100""}","Bristol","25005","FALSE","FALSE","America/New_York"
-"02760","41.97006","-71.33585","North Attleboro","MA","Massachusetts","TRUE","","27474","590.9","25005","Bristol","{""25005"": ""100""}","Bristol","25005","FALSE","FALSE","America/New_York"
-"02762","42.01409","-71.33642","Plainville","MA","Massachusetts","TRUE","","9183","322.7","25021","Norfolk","{""25021"": ""100""}","Norfolk","25021","FALSE","FALSE","America/New_York"
-"02763","41.96669","-71.30749","Attleboro Falls","MA","Massachusetts","TRUE","","1706","729.6","25005","Bristol","{""25005"": ""100""}","Bristol","25005","FALSE","FALSE","America/New_York"
-"02764","41.85663","-71.16052","North Dighton","MA","Massachusetts","TRUE","","3837","139.8","25005","Bristol","{""25005"": ""100""}","Bristol","25005","FALSE","FALSE","America/New_York"
-"02766","41.96402","-71.18418","Norton","MA","Massachusetts","TRUE","","19745","273.9","25005","Bristol","{""25005"": ""100""}","Bristol","25005","FALSE","FALSE","America/New_York"
-"02767","41.93707","-71.05109","Raynham","MA","Massachusetts","TRUE","","14488","235.0","25005","Bristol","{""25005"": ""100""}","Bristol","25005","FALSE","FALSE","America/New_York"
-"02769","41.84394","-71.24559","Rehoboth","MA","Massachusetts","TRUE","","12173","100.1","25005","Bristol","{""25005"": ""100""}","Bristol","25005","FALSE","FALSE","America/New_York"
-"02770","41.75849","-70.84084","Rochester","MA","Massachusetts","TRUE","","5407","64.9","25023","Plymouth","{""25023"": ""100""}","Plymouth","25023","FALSE","FALSE","America/New_York"
-"02771","41.83786","-71.31735","Seekonk","MA","Massachusetts","TRUE","","15441","324.3","25005","Bristol","{""25005"": ""100""}","Bristol","25005","FALSE","FALSE","America/New_York"
-"02777","41.75703","-71.21203","Swansea","MA","Massachusetts","TRUE","","16567","282.3","25005","Bristol","{""25005"": ""100""}","Bristol","25005","FALSE","FALSE","America/New_York"
-"02779","41.83491","-71.07543","Berkley","MA","Massachusetts","TRUE","","6730","157.4","25005","Bristol","{""25005"": ""100""}","Bristol","25005","FALSE","FALSE","America/New_York"
-"02780","41.90755","-71.11956","Taunton","MA","Massachusetts","TRUE","","50438","589.4","25005","Bristol","{""25005"": ""100""}","Bristol","25005","FALSE","FALSE","America/New_York"
-"02790","41.59989","-71.08324","Westport","MA","Massachusetts","TRUE","","15793","113.6","25005","Bristol","{""25005"": ""100""}","Bristol","25005","FALSE","FALSE","America/New_York"
-"02791","41.528","-71.07806","Westport Point","MA","Massachusetts","TRUE","","402","147.2","25005","Bristol","{""25005"": ""100""}","Bristol","25005","FALSE","FALSE","America/New_York"
-"02802","41.95195","-71.45534","Albion","RI","Rhode Island","TRUE","","723","1427.7","44007","Providence","{""44007"": ""100""}","Providence","44007","FALSE","FALSE","America/New_York"
-"02804","41.43188","-71.77236","Ashaway","RI","Rhode Island","TRUE","","1849","70.7","44009","Washington","{""44009"": ""100""}","Washington","44009","FALSE","FALSE","America/New_York"
-"02806","41.74438","-71.31461","Barrington","RI","Rhode Island","TRUE","","16153","759.3","44001","Bristol","{""44001"": ""100""}","Bristol","44001","FALSE","FALSE","America/New_York"
-"02807","41.17762","-71.57854","Block Island","RI","Rhode Island","TRUE","","916","38.9","44009","Washington","{""44009"": ""100""}","Washington","44009","FALSE","FALSE","America/New_York"
-"02808","41.40855","-71.74867","Bradford","RI","Rhode Island","TRUE","","2312","112.1","44009","Washington","{""44009"": ""100""}","Washington","44009","FALSE","FALSE","America/New_York"
-"02809","41.68271","-71.2694","Bristol","RI","Rhode Island","TRUE","","22172","872.2","44001","Bristol","{""44001"": ""100""}","Bristol","44001","FALSE","FALSE","America/New_York"
-"02812","41.47768","-71.65437","Carolina","RI","Rhode Island","TRUE","","1207","70.2","44009","Washington","{""44009"": ""100""}","Washington","44009","FALSE","FALSE","America/New_York"
-"02813","41.39727","-71.67017","Charlestown","RI","Rhode Island","TRUE","","7799","82.6","44009","Washington","{""44009"": ""100""}","Washington","44009","FALSE","FALSE","America/New_York"
-"02814","41.89875","-71.69752","Chepachet","RI","Rhode Island","TRUE","","7901","68.1","44007","Providence","{""44007"": ""100""}","Providence","44007","FALSE","FALSE","America/New_York"
-"02815","41.77305","-71.65833","Clayville","RI","Rhode Island","TRUE","","367","34.0","44007","Providence","{""44007"": ""100""}","Providence","44007","FALSE","FALSE","America/New_York"
-"02816","41.69086","-71.61977","Coventry","RI","Rhode Island","TRUE","","32738","333.5","44003","Kent","{""44003"": ""99.98"", ""44007"": ""0.02""}","Kent|Providence","44003|44007","FALSE","FALSE","America/New_York"
-"02817","41.62906","-71.6675","West Greenwich","RI","Rhode Island","TRUE","","6224","47.9","44003","Kent","{""44003"": ""100""}","Kent","44003","FALSE","FALSE","America/New_York"
-"02818","41.64311","-71.49293","East Greenwich","RI","Rhode Island","TRUE","","18292","323.3","44003","Kent","{""44003"": ""100""}","Kent","44003","FALSE","FALSE","America/New_York"
-"02822","41.56724","-71.63243","Exeter","RI","Rhode Island","TRUE","","6304","43.6","44009","Washington","{""44009"": ""100""}","Washington","44009","FALSE","FALSE","America/New_York"
-"02825","41.78117","-71.72612","Foster","RI","Rhode Island","TRUE","","5768","41.2","44007","Providence","{""44007"": ""100""}","Providence","44007","FALSE","FALSE","America/New_York"
-"02826","41.97399","-71.63706","Glendale","RI","Rhode Island","TRUE","","418","64.6","44007","Providence","{""44007"": ""100""}","Providence","44007","FALSE","FALSE","America/New_York"
-"02827","41.69785","-71.73955","Greene","RI","Rhode Island","TRUE","","2202","40.3","44003","Kent","{""44003"": ""100""}","Kent","44003","FALSE","FALSE","America/New_York"
-"02828","41.87799","-71.55938","Greenville","RI","Rhode Island","TRUE","","7592","614.3","44007","Providence","{""44007"": ""100""}","Providence","44007","FALSE","FALSE","America/New_York"
-"02830","41.98212","-71.64988","Harrisville","RI","Rhode Island","TRUE","","6255","125.1","44007","Providence","{""44007"": ""100""}","Providence","44007","FALSE","FALSE","America/New_York"
-"02831","41.75264","-71.58911","Hope","RI","Rhode Island","TRUE","","3277","131.4","44007","Providence","{""44007"": ""96.13"", ""44003"": ""3.87""}","Providence|Kent","44007|44003","FALSE","FALSE","America/New_York"
-"02832","41.50835","-71.72597","Hope Valley","RI","Rhode Island","TRUE","","4795","82.9","44009","Washington","{""44009"": ""100""}","Washington","44009","FALSE","FALSE","America/New_York"
-"02833","41.48737","-71.77825","Hopkinton","RI","Rhode Island","TRUE","","1141","62.4","44009","Washington","{""44009"": ""100""}","Washington","44009","FALSE","FALSE","America/New_York"
-"02835","41.51497","-71.3771","Jamestown","RI","Rhode Island","TRUE","","5494","224.5","44005","Newport","{""44005"": ""100""}","Newport","44005","FALSE","FALSE","America/New_York"
-"02836","41.45232","-71.62048","Kenyon","RI","Rhode Island","TRUE","","150","188.4","44009","Washington","{""44009"": ""100""}","Washington","44009","FALSE","FALSE","America/New_York"
-"02837","41.51523","-71.16455","Little Compton","RI","Rhode Island","TRUE","","3489","65.6","44005","Newport","{""44005"": ""100""}","Newport","44005","FALSE","FALSE","America/New_York"
-"02838","41.96513","-71.47617","Manville","RI","Rhode Island","TRUE","","3495","943.8","44007","Providence","{""44007"": ""100""}","Providence","44007","FALSE","FALSE","America/New_York"
-"02839","41.94292","-71.64314","Mapleville","RI","Rhode Island","TRUE","","2098","188.6","44007","Providence","{""44007"": ""100""}","Providence","44007","FALSE","FALSE","America/New_York"
-"02840","41.47775","-71.32036","Newport","RI","Rhode Island","TRUE","","23112","1235.7","44005","Newport","{""44005"": ""100""}","Newport","44005","FALSE","FALSE","America/New_York"
-"02841","41.51334","-71.32381","Newport","RI","Rhode Island","TRUE","","1633","1351.5","44005","Newport","{""44005"": ""100""}","Newport","44005","FALSE","FALSE","America/New_York"
-"02842","41.51735","-71.2771","Middletown","RI","Rhode Island","TRUE","","15936","484.4","44005","Newport","{""44005"": ""100""}","Newport","44005","FALSE","FALSE","America/New_York"
-"02852","41.58765","-71.46086","North Kingstown","RI","Rhode Island","TRUE","","22048","275.7","44009","Washington","{""44009"": ""100""}","Washington","44009","FALSE","FALSE","America/New_York"
-"02857","41.82934","-71.63203","North Scituate","RI","Rhode Island","TRUE","","8206","75.9","44007","Providence","{""44007"": ""100""}","Providence","44007","FALSE","FALSE","America/New_York"
-"02858","41.96346","-71.64831","Oakland","RI","Rhode Island","TRUE","","774","517.0","44007","Providence","{""44007"": ""100""}","Providence","44007","FALSE","FALSE","America/New_York"
-"02859","41.96667","-71.74516","Pascoag","RI","Rhode Island","TRUE","","7070","96.2","44007","Providence","{""44007"": ""100""}","Providence","44007","FALSE","FALSE","America/New_York"
-"02860","41.87002","-71.3883","Pawtucket","RI","Rhode Island","TRUE","","46363","3312.5","44007","Providence","{""44007"": ""100""}","Providence","44007","FALSE","FALSE","America/New_York"
-"02861","41.87853","-71.35227","Pawtucket","RI","Rhode Island","TRUE","","25622","2775.4","44007","Providence","{""44007"": ""99.95"", ""25005"": ""0.05""}","Providence|Bristol","44007|25005","FALSE","FALSE","America/New_York"
-"02863","41.89005","-71.39344","Central Falls","RI","Rhode Island","TRUE","","19411","6244.2","44007","Providence","{""44007"": ""100""}","Providence","44007","FALSE","FALSE","America/New_York"
-"02864","41.97039","-71.41978","Cumberland","RI","Rhode Island","TRUE","","34797","508.5","44007","Providence","{""44007"": ""100""}","Providence","44007","FALSE","FALSE","America/New_York"
-"02865","41.91265","-71.44847","Lincoln","RI","Rhode Island","TRUE","","17667","409.7","44007","Providence","{""44007"": ""100""}","Providence","44007","FALSE","FALSE","America/New_York"
-"02871","41.58391","-71.25635","Portsmouth","RI","Rhode Island","TRUE","","17119","387.9","44005","Newport","{""44005"": ""100""}","Newport","44005","FALSE","FALSE","America/New_York"
-"02872","41.61718","-71.32886","Prudence Island","RI","Rhode Island","TRUE","","244","15.8","44005","Newport","{""44005"": ""100""}","Newport","44005","FALSE","FALSE","America/New_York"
-"02873","41.53107","-71.77576","Rockville","RI","Rhode Island","TRUE","","200","27.4","44009","Washington","{""44009"": ""100""}","Washington","44009","FALSE","FALSE","America/New_York"
-"02874","41.51543","-71.46878","Saunderstown","RI","Rhode Island","TRUE","","6045","153.9","44009","Washington","{""44009"": ""100""}","Washington","44009","FALSE","FALSE","America/New_York"
-"02875","41.45557","-71.63813","Shannock","RI","Rhode Island","TRUE","","466","155.9","44009","Washington","{""44009"": ""100""}","Washington","44009","FALSE","FALSE","America/New_York"
-"02876","41.99625","-71.58169","Slatersville","RI","Rhode Island","TRUE","","353","1075.9","44007","Providence","{""44007"": ""100""}","Providence","44007","FALSE","FALSE","America/New_York"
-"02878","41.60908","-71.1741","Tiverton","RI","Rhode Island","TRUE","","15774","209.4","44005","Newport","{""44005"": ""100""}","Newport","44005","FALSE","FALSE","America/New_York"
-"02879","41.4267","-71.53625","Wakefield","RI","Rhode Island","TRUE","","20610","212.9","44009","Washington","{""44009"": ""100""}","Washington","44009","FALSE","FALSE","America/New_York"
-"02881","41.47893","-71.52341","Kingston","RI","Rhode Island","TRUE","","7629","815.0","44009","Washington","{""44009"": ""100""}","Washington","44009","FALSE","FALSE","America/New_York"
-"02882","41.42484","-71.46856","Narragansett","RI","Rhode Island","TRUE","","14029","423.3","44009","Washington","{""44009"": ""100""}","Washington","44009","FALSE","FALSE","America/New_York"
-"02885","41.72826","-71.26282","Warren","RI","Rhode Island","TRUE","","10461","658.7","44001","Bristol","{""44001"": ""100""}","Bristol","44001","FALSE","FALSE","America/New_York"
-"02886","41.70572","-71.45857","Warwick","RI","Rhode Island","TRUE","","28776","744.9","44003","Kent","{""44003"": ""100""}","Kent","44003","FALSE","FALSE","America/New_York"
-"02888","41.74861","-71.41036","Warwick","RI","Rhode Island","TRUE","","18687","1216.6","44003","Kent","{""44003"": ""100""}","Kent","44003","FALSE","FALSE","America/New_York"
-"02889","41.7057","-71.39206","Warwick","RI","Rhode Island","TRUE","","27807","1234.4","44003","Kent","{""44003"": ""100""}","Kent","44003","FALSE","FALSE","America/New_York"
-"02891","41.36026","-71.79357","Westerly","RI","Rhode Island","TRUE","","21143","309.8","44009","Washington","{""44009"": ""100""}","Washington","44009","FALSE","FALSE","America/New_York"
-"02892","41.49598","-71.59689","West Kingston","RI","Rhode Island","TRUE","","5611","79.0","44009","Washington","{""44009"": ""100""}","Washington","44009","FALSE","FALSE","America/New_York"
-"02893","41.69855","-71.51538","West Warwick","RI","Rhode Island","TRUE","","29143","1435.9","44003","Kent","{""44003"": ""100""}","Kent","44003","FALSE","FALSE","America/New_York"
-"02894","41.44726","-71.70056","Wood River Junction","RI","Rhode Island","TRUE","","517","46.1","44009","Washington","{""44009"": ""100""}","Washington","44009","FALSE","FALSE","America/New_York"
-"02895","42.00101","-71.49934","Woonsocket","RI","Rhode Island","TRUE","","41603","2072.3","44007","Providence","{""44007"": ""100""}","Providence","44007","FALSE","FALSE","America/New_York"
-"02896","41.97241","-71.5511","North Smithfield","RI","Rhode Island","TRUE","","12060","196.0","44007","Providence","{""44007"": ""100""}","Providence","44007","FALSE","FALSE","America/New_York"
-"02898","41.51526","-71.6757","Wyoming","RI","Rhode Island","TRUE","","1289","43.1","44009","Washington","{""44009"": ""100""}","Washington","44009","FALSE","FALSE","America/New_York"
-"02903","41.81805","-71.40901","Providence","RI","Rhode Island","TRUE","","10979","2420.1","44007","Providence","{""44007"": ""100""}","Providence","44007","FALSE","FALSE","America/New_York"
-"02904","41.8604","-71.43538","Providence","RI","Rhode Island","TRUE","","30613","2264.2","44007","Providence","{""44007"": ""100""}","Providence","44007","FALSE","FALSE","America/New_York"
-"02905","41.78722","-71.39886","Providence","RI","Rhode Island","TRUE","","26174","2747.1","44007","Providence","{""44007"": ""100""}","Providence","44007","FALSE","FALSE","America/New_York"
-"02906","41.83917","-71.38994","Providence","RI","Rhode Island","TRUE","","27825","3315.6","44007","Providence","{""44007"": ""100""}","Providence","44007","FALSE","FALSE","America/New_York"
-"02907","41.79828","-71.4255","Providence","RI","Rhode Island","TRUE","","31294","5490.0","44007","Providence","{""44007"": ""100""}","Providence","44007","FALSE","FALSE","America/New_York"
-"02908","41.83912","-71.43687","Providence","RI","Rhode Island","TRUE","","36314","4436.6","44007","Providence","{""44007"": ""100""}","Providence","44007","FALSE","FALSE","America/New_York"
-"02909","41.82025","-71.45146","Providence","RI","Rhode Island","TRUE","","40809","4548.8","44007","Providence","{""44007"": ""100""}","Providence","44007","FALSE","FALSE","America/New_York"
-"02910","41.77564","-71.43574","Cranston","RI","Rhode Island","TRUE","","22387","2506.9","44007","Providence","{""44007"": ""100""}","Providence","44007","FALSE","FALSE","America/New_York"
-"02911","41.85475","-71.47355","North Providence","RI","Rhode Island","TRUE","","15921","2467.6","44007","Providence","{""44007"": ""100""}","Providence","44007","FALSE","FALSE","America/New_York"
-"02912","41.82561","-71.40224","Providence","RI","Rhode Island","TRUE","","1340","11916.8","44007","Providence","{""44007"": ""100""}","Providence","44007","FALSE","FALSE","America/New_York"
-"02914","41.81371","-71.36504","East Providence","RI","Rhode Island","TRUE","","21487","1697.6","44007","Providence","{""44007"": ""100""}","Providence","44007","FALSE","FALSE","America/New_York"
-"02915","41.77759","-71.35015","Riverside","RI","Rhode Island","TRUE","","16660","1160.9","44007","Providence","{""44007"": ""100""}","Providence","44007","FALSE","FALSE","America/New_York"
-"02916","41.84456","-71.35203","Rumford","RI","Rhode Island","TRUE","","9238","1391.9","44007","Providence","{""44007"": ""100""}","Providence","44007","FALSE","FALSE","America/New_York"
-"02917","41.90647","-71.52459","Smithfield","RI","Rhode Island","TRUE","","14139","255.8","44007","Providence","{""44007"": ""100""}","Providence","44007","FALSE","FALSE","America/New_York"
-"02919","41.82736","-71.52001","Johnston","RI","Rhode Island","TRUE","","29307","480.7","44007","Providence","{""44007"": ""100""}","Providence","44007","FALSE","FALSE","America/New_York"
-"02920","41.76743","-71.46599","Cranston","RI","Rhode Island","TRUE","","37165","1560.4","44007","Providence","{""44007"": ""100""}","Providence","44007","FALSE","FALSE","America/New_York"
-"02921","41.76211","-71.51725","Cranston","RI","Rhode Island","TRUE","","12243","359.3","44007","Providence","{""44007"": ""100""}","Providence","44007","FALSE","FALSE","America/New_York"
-"03031","42.87036","-71.6079","Amherst","NH","New Hampshire","TRUE","","11475","128.7","33011","Hillsborough","{""33011"": ""100""}","Hillsborough","33011","FALSE","FALSE","America/New_York"
-"03032","42.9906","-71.34379","Auburn","NH","New Hampshire","TRUE","","5446","83.1","33015","Rockingham","{""33015"": ""100""}","Rockingham","33015","FALSE","FALSE","America/New_York"
-"03033","42.74641","-71.67057","Brookline","NH","New Hampshire","TRUE","","5348","104.2","33011","Hillsborough","{""33011"": ""100""}","Hillsborough","33011","FALSE","FALSE","America/New_York"
-"03034","43.06357","-71.31141","Candia","NH","New Hampshire","TRUE","","4046","47.4","33015","Rockingham","{""33015"": ""100""}","Rockingham","33015","FALSE","FALSE","America/New_York"
-"03036","42.96717","-71.25088","Chester","NH","New Hampshire","TRUE","","5129","76.1","33015","Rockingham","{""33015"": ""100""}","Rockingham","33015","FALSE","FALSE","America/New_York"
-"03037","43.13975","-71.25262","Deerfield","NH","New Hampshire","TRUE","","4366","35.0","33015","Rockingham","{""33015"": ""100""}","Rockingham","33015","FALSE","FALSE","America/New_York"
-"03038","42.88877","-71.27988","Derry","NH","New Hampshire","TRUE","","33643","362.5","33015","Rockingham","{""33015"": ""100""}","Rockingham","33015","FALSE","FALSE","America/New_York"
-"03042","43.05005","-71.07478","Epping","NH","New Hampshire","TRUE","","6966","103.6","33015","Rockingham","{""33015"": ""100""}","Rockingham","33015","FALSE","FALSE","America/New_York"
-"03043","42.99406","-71.81349","Francestown","NH","New Hampshire","TRUE","","1577","19.6","33011","Hillsborough","{""33011"": ""100""}","Hillsborough","33011","FALSE","FALSE","America/New_York"
-"03044","42.98868","-71.12527","Fremont","NH","New Hampshire","TRUE","","4659","106.0","33015","Rockingham","{""33015"": ""100""}","Rockingham","33015","FALSE","FALSE","America/New_York"
-"03045","43.01995","-71.57006","Goffstown","NH","New Hampshire","TRUE","","13621","146.9","33011","Hillsborough","{""33011"": ""100""}","Hillsborough","33011","FALSE","FALSE","America/New_York"
-"03046","43.10184","-71.60561","Dunbarton","NH","New Hampshire","TRUE","","2827","35.4","33013","Merrimack","{""33013"": ""100""}","Merrimack","33013","FALSE","FALSE","America/New_York"
-"03047","42.94007","-71.87021","Greenfield","NH","New Hampshire","TRUE","","1913","28.0","33011","Hillsborough","{""33011"": ""100""}","Hillsborough","33011","FALSE","FALSE","America/New_York"
-"03048","42.74824","-71.76183","Greenville","NH","New Hampshire","TRUE","","3515","45.9","33011","Hillsborough","{""33011"": ""100""}","Hillsborough","33011","FALSE","FALSE","America/New_York"
-"03049","42.74942","-71.58344","Hollis","NH","New Hampshire","TRUE","","7918","96.4","33011","Hillsborough","{""33011"": ""100""}","Hillsborough","33011","FALSE","FALSE","America/New_York"
-"03051","42.76392","-71.40709","Hudson","NH","New Hampshire","TRUE","","25408","346.8","33011","Hillsborough","{""33011"": ""100""}","Hillsborough","33011","FALSE","FALSE","America/New_York"
-"03052","42.84285","-71.455","Litchfield","NH","New Hampshire","TRUE","","8514","220.7","33011","Hillsborough","{""33011"": ""100""}","Hillsborough","33011","FALSE","FALSE","America/New_York"
-"03053","42.8786","-71.38633","Londonderry","NH","New Hampshire","TRUE","","25732","241.8","33015","Rockingham","{""33015"": ""100""}","Rockingham","33015","FALSE","FALSE","America/New_York"
-"03054","42.85469","-71.51884","Merrimack","NH","New Hampshire","TRUE","","25945","307.4","33011","Hillsborough","{""33011"": ""100""}","Hillsborough","33011","FALSE","FALSE","America/New_York"
-"03055","42.81745","-71.6734","Milford","NH","New Hampshire","TRUE","","15632","241.3","33011","Hillsborough","{""33011"": ""100""}","Hillsborough","33011","FALSE","FALSE","America/New_York"
-"03057","42.90244","-71.68336","Mont Vernon","NH","New Hampshire","TRUE","","2607","59.7","33011","Hillsborough","{""33011"": ""100""}","Hillsborough","33011","FALSE","FALSE","America/New_York"
-"03060","42.74127","-71.45927","Nashua","NH","New Hampshire","TRUE","","30155","1781.0","33011","Hillsborough","{""33011"": ""100""}","Hillsborough","33011","FALSE","FALSE","America/New_York"
-"03062","42.72218","-71.49566","Nashua","NH","New Hampshire","TRUE","","27793","889.3","33011","Hillsborough","{""33011"": ""100""}","Hillsborough","33011","FALSE","FALSE","America/New_York"
-"03063","42.77951","-71.51939","Nashua","NH","New Hampshire","TRUE","","16426","781.9","33011","Hillsborough","{""33011"": ""100""}","Hillsborough","33011","FALSE","FALSE","America/New_York"
-"03064","42.77879","-71.47462","Nashua","NH","New Hampshire","TRUE","","14441","1348.7","33011","Hillsborough","{""33011"": ""100""}","Hillsborough","33011","FALSE","FALSE","America/New_York"
-"03070","42.97734","-71.68637","New Boston","NH","New Hampshire","TRUE","","5685","51.0","33011","Hillsborough","{""33011"": ""100""}","Hillsborough","33011","FALSE","FALSE","America/New_York"
-"03071","42.74893","-71.87471","New Ipswich","NH","New Hampshire","TRUE","","5337","63.0","33011","Hillsborough","{""33011"": ""100""}","Hillsborough","33011","FALSE","FALSE","America/New_York"
-"03076","42.7335","-71.32391","Pelham","NH","New Hampshire","TRUE","","13798","202.4","33011","Hillsborough","{""33011"": ""100""}","Hillsborough","33011","FALSE","FALSE","America/New_York"
-"03077","43.03293","-71.19804","Raymond","NH","New Hampshire","TRUE","","10376","136.0","33015","Rockingham","{""33015"": ""100""}","Rockingham","33015","FALSE","FALSE","America/New_York"
-"03079","42.79023","-71.22023","Salem","NH","New Hampshire","TRUE","","29234","454.7","33015","Rockingham","{""33015"": ""100""}","Rockingham","33015","FALSE","FALSE","America/New_York"
-"03082","42.90024","-71.77423","Lyndeborough","NH","New Hampshire","TRUE","","1660","22.4","33011","Hillsborough","{""33011"": ""100""}","Hillsborough","33011","FALSE","FALSE","America/New_York"
-"03084","42.82853","-71.85496","Temple","NH","New Hampshire","TRUE","","1264","22.1","33011","Hillsborough","{""33011"": ""100""}","Hillsborough","33011","FALSE","FALSE","America/New_York"
-"03086","42.82935","-71.77106","Wilton","NH","New Hampshire","TRUE","","3816","54.6","33011","Hillsborough","{""33011"": ""100""}","Hillsborough","33011","FALSE","FALSE","America/New_York"
-"03087","42.80759","-71.29945","Windham","NH","New Hampshire","TRUE","","14610","210.9","33015","Rockingham","{""33015"": ""100""}","Rockingham","33015","FALSE","FALSE","America/New_York"
-"03101","42.98892","-71.46588","Manchester","NH","New Hampshire","TRUE","","2953","1473.3","33011","Hillsborough","{""33011"": ""100""}","Hillsborough","33011","FALSE","FALSE","America/New_York"
-"03102","43.00798","-71.49129","Manchester","NH","New Hampshire","TRUE","","33003","1408.9","33011","Hillsborough","{""33011"": ""100""}","Hillsborough","33011","FALSE","FALSE","America/New_York"
-"03103","42.95352","-71.44429","Manchester","NH","New Hampshire","TRUE","","36938","1462.8","33011","Hillsborough","{""33011"": ""100"", ""33015"": ""0""}","Hillsborough|Rockingham","33011|33015","FALSE","FALSE","America/New_York"
-"03104","43.00934","-71.44145","Manchester","NH","New Hampshire","TRUE","","33071","1544.6","33011","Hillsborough","{""33011"": ""99.77"", ""33013"": ""0.23""}","Hillsborough|Merrimack","33011|33013","FALSE","FALSE","America/New_York"
-"03106","43.07112","-71.43637","Hooksett","NH","New Hampshire","TRUE","","14273","152.5","33013","Merrimack","{""33013"": ""100""}","Merrimack","33013","FALSE","FALSE","America/New_York"
-"03109","42.96625","-71.40168","Manchester","NH","New Hampshire","TRUE","","10600","555.9","33011","Hillsborough","{""33011"": ""100""}","Hillsborough","33011","FALSE","FALSE","America/New_York"
-"03110","42.94066","-71.53028","Bedford","NH","New Hampshire","TRUE","","22535","265.5","33011","Hillsborough","{""33011"": ""100""}","Hillsborough","33011","FALSE","FALSE","America/New_York"
-"03215","43.9453","-71.45282","Waterville Valley","NH","New Hampshire","TRUE","","186","1.5","33009","Grafton","{""33009"": ""100""}","Grafton","33009","FALSE","FALSE","America/New_York"
-"03216","43.44563","-71.79571","Andover","NH","New Hampshire","TRUE","","2477","25.0","33013","Merrimack","{""33013"": ""100""}","Merrimack","33013","FALSE","FALSE","America/New_York"
-"03217","43.7153","-71.63091","Ashland","NH","New Hampshire","TRUE","","2017","71.1","33009","Grafton","{""33009"": ""100""}","Grafton","33009","FALSE","FALSE","America/New_York"
-"03218","43.33463","-71.28921","Barnstead","NH","New Hampshire","TRUE","","963","26.0","33001","Belknap","{""33001"": ""100""}","Belknap","33001","FALSE","FALSE","America/New_York"
-"03220","43.46768","-71.47519","Belmont","NH","New Hampshire","TRUE","","7563","95.4","33001","Belknap","{""33001"": ""98.91"", ""33013"": ""1.09""}","Belknap|Merrimack","33001|33013","FALSE","FALSE","America/New_York"
-"03221","43.25179","-71.96171","Bradford","NH","New Hampshire","TRUE","","2095","17.5","33013","Merrimack","{""33013"": ""100""}","Merrimack","33013","FALSE","FALSE","America/New_York"
-"03222","43.6275","-71.78286","Bristol","NH","New Hampshire","TRUE","","5896","31.3","33009","Grafton","{""33009"": ""100""}","Grafton","33009","FALSE","FALSE","America/New_York"
-"03223","43.84968","-71.68155","Campton","NH","New Hampshire","TRUE","","3373","17.8","33009","Grafton","{""33009"": ""100""}","Grafton","33009","FALSE","FALSE","America/New_York"
-"03224","43.34986","-71.55093","Canterbury","NH","New Hampshire","TRUE","","2339","22.4","33013","Merrimack","{""33013"": ""100""}","Merrimack","33013","FALSE","FALSE","America/New_York"
-"03225","43.35839","-71.23805","Center Barnstead","NH","New Hampshire","TRUE","","3673","48.6","33001","Belknap","{""33001"": ""99.26"", ""33017"": ""0.74""}","Belknap|Strafford","33001|33017","FALSE","FALSE","America/New_York"
-"03226","43.70403","-71.51126","Center Harbor","NH","New Hampshire","TRUE","","1056","30.3","33001","Belknap","{""33001"": ""100""}","Belknap","33001","FALSE","FALSE","America/New_York"
-"03227","43.82774","-71.4678","Center Sandwich","NH","New Hampshire","TRUE","","1040","6.2","33003","Carroll","{""33003"": ""100""}","Carroll","33003","FALSE","FALSE","America/New_York"
-"03229","43.19787","-71.69678","Contoocook","NH","New Hampshire","TRUE","","5691","50.7","33013","Merrimack","{""33013"": ""100""}","Merrimack","33013","FALSE","FALSE","America/New_York"
-"03230","43.52599","-71.87149","Danbury","NH","New Hampshire","TRUE","","1222","11.5","33013","Merrimack","{""33013"": ""100""}","Merrimack","33013","FALSE","FALSE","America/New_York"
-"03231","43.46656","-71.75669","East Andover","NH","New Hampshire","TRUE","","305","53.6","33013","Merrimack","{""33013"": ""100""}","Merrimack","33013","FALSE","FALSE","America/New_York"
-"03233","43.4252","-71.93316","Elkins","NH","New Hampshire","TRUE","","127","87.2","33013","Merrimack","{""33013"": ""100""}","Merrimack","33013","FALSE","FALSE","America/New_York"
-"03234","43.21491","-71.33907","Epsom","NH","New Hampshire","TRUE","","4722","53.0","33013","Merrimack","{""33013"": ""100""}","Merrimack","33013","FALSE","FALSE","America/New_York"
-"03235","43.44838","-71.67183","Franklin","NH","New Hampshire","TRUE","","8762","113.8","33013","Merrimack","{""33013"": ""100""}","Merrimack","33013","FALSE","FALSE","America/New_York"
-"03237","43.4296","-71.38212","Gilmanton","NH","New Hampshire","TRUE","","2372","24.7","33001","Belknap","{""33001"": ""100""}","Belknap","33001","FALSE","FALSE","America/New_York"
-"03238","43.98288","-71.89868","Glencliff","NH","New Hampshire","TRUE","","109","15.3","33009","Grafton","{""33009"": ""100""}","Grafton","33009","FALSE","FALSE","America/New_York"
-"03240","43.57599","-71.97223","Grafton","NH","New Hampshire","TRUE","","1362","12.7","33009","Grafton","{""33009"": ""100""}","Grafton","33009","FALSE","FALSE","America/New_York"
-"03241","43.7217","-71.81986","Hebron","NH","New Hampshire","TRUE","","756","7.0","33009","Grafton","{""33009"": ""100""}","Grafton","33009","FALSE","FALSE","America/New_York"
-"03242","43.1736","-71.82244","Henniker","NH","New Hampshire","TRUE","","4962","43.5","33013","Merrimack","{""33013"": ""100""}","Merrimack","33013","FALSE","FALSE","America/New_York"
-"03243","43.52493","-71.76467","Hill","NH","New Hampshire","TRUE","","920","13.5","33013","Merrimack","{""33013"": ""100""}","Merrimack","33013","FALSE","FALSE","America/New_York"
-"03244","43.11797","-71.91877","Hillsborough","NH","New Hampshire","TRUE","","7652","36.0","33011","Hillsborough","{""33011"": ""100""}","Hillsborough","33011","FALSE","FALSE","America/New_York"
-"03245","43.75003","-71.58789","Holderness","NH","New Hampshire","TRUE","","2054","26.1","33009","Grafton","{""33009"": ""100""}","Grafton","33009","FALSE","FALSE","America/New_York"
-"03246","43.57267","-71.47744","Laconia","NH","New Hampshire","TRUE","","16460","318.0","33001","Belknap","{""33001"": ""100""}","Belknap","33001","FALSE","FALSE","America/New_York"
-"03249","43.55791","-71.38502","Gilford","NH","New Hampshire","TRUE","","7169","71.3","33001","Belknap","{""33001"": ""100""}","Belknap","33001","FALSE","FALSE","America/New_York"
-"03251","44.08544","-71.57272","Lincoln","NH","New Hampshire","TRUE","","945","2.4","33009","Grafton","{""33009"": ""100""}","Grafton","33009","FALSE","FALSE","America/New_York"
-"03253","43.63072","-71.49963","Meredith","NH","New Hampshire","TRUE","","6347","63.0","33001","Belknap","{""33001"": ""100""}","Belknap","33001","FALSE","FALSE","America/New_York"
-"03254","43.72491","-71.37776","Moultonborough","NH","New Hampshire","TRUE","","4116","26.7","33003","Carroll","{""33003"": ""99.88"", ""33001"": ""0.12""}","Carroll|Belknap","33003|33001","FALSE","FALSE","America/New_York"
-"03255","43.31479","-72.02625","Newbury","NH","New Hampshire","TRUE","","2176","22.9","33013","Merrimack","{""33013"": ""100""}","Merrimack","33013","FALSE","FALSE","America/New_York"
-"03256","43.62434","-71.63353","New Hampton","NH","New Hampshire","TRUE","","2272","23.3","33001","Belknap","{""33001"": ""100""}","Belknap","33001","FALSE","FALSE","America/New_York"
-"03257","43.41691","-71.9906","New London","NH","New Hampshire","TRUE","","4495","75.8","33013","Merrimack","{""33013"": ""100""}","Merrimack","33013","FALSE","FALSE","America/New_York"
-"03258","43.25754","-71.39917","Chichester","NH","New Hampshire","TRUE","","2667","48.7","33013","Merrimack","{""33013"": ""100""}","Merrimack","33013","FALSE","FALSE","America/New_York"
-"03259","43.87212","-71.39649","North Sandwich","NH","New Hampshire","TRUE","","393","6.4","33003","Carroll","{""33003"": ""100""}","Carroll","33003","FALSE","FALSE","America/New_York"
-"03260","43.35365","-71.92174","North Sutton","NH","New Hampshire","TRUE","","757","11.9","33013","Merrimack","{""33013"": ""100""}","Merrimack","33013","FALSE","FALSE","America/New_York"
-"03261","43.21341","-71.20966","Northwood","NH","New Hampshire","TRUE","","4335","59.5","33015","Rockingham","{""33015"": ""100""}","Rockingham","33015","FALSE","FALSE","America/New_York"
-"03262","43.99914","-71.73805","North Woodstock","NH","New Hampshire","TRUE","","826","5.6","33009","Grafton","{""33009"": ""100""}","Grafton","33009","FALSE","FALSE","America/New_York"
-"03263","43.29468","-71.311","Pittsfield","NH","New Hampshire","TRUE","","4112","65.6","33013","Merrimack","{""33013"": ""100""}","Merrimack","33013","FALSE","FALSE","America/New_York"
-"03264","43.72976","-71.71127","Plymouth","NH","New Hampshire","TRUE","","7290","76.5","33009","Grafton","{""33009"": ""100""}","Grafton","33009","FALSE","FALSE","America/New_York"
-"03266","43.79034","-71.89609","Rumney","NH","New Hampshire","TRUE","","2152","8.1","33009","Grafton","{""33009"": ""100""}","Grafton","33009","FALSE","FALSE","America/New_York"
-"03268","43.38648","-71.75656","Salisbury","NH","New Hampshire","TRUE","","1270","16.2","33013","Merrimack","{""33013"": ""100""}","Merrimack","33013","FALSE","FALSE","America/New_York"
-"03269","43.52789","-71.60144","Sanbornton","NH","New Hampshire","TRUE","","2908","23.7","33001","Belknap","{""33001"": ""100""}","Belknap","33001","FALSE","FALSE","America/New_York"
-"03273","43.29903","-71.93208","South Sutton","NH","New Hampshire","TRUE","","310","20.3","33013","Merrimack","{""33013"": ""100""}","Merrimack","33013","FALSE","FALSE","America/New_York"
-"03275","43.16019","-71.41794","Suncook","NH","New Hampshire","TRUE","","11577","103.9","33013","Merrimack","{""33013"": ""100""}","Merrimack","33013","FALSE","FALSE","America/New_York"
-"03276","43.42788","-71.57503","Tilton","NH","New Hampshire","TRUE","","8268","81.0","33013","Merrimack","{""33013"": ""57.15"", ""33001"": ""42.85""}","Merrimack|Belknap","33013|33001","FALSE","FALSE","America/New_York"
-"03278","43.29331","-71.82605","Warner","NH","New Hampshire","TRUE","","2946","18.3","33013","Merrimack","{""33013"": ""100""}","Merrimack","33013","FALSE","FALSE","America/New_York"
-"03279","43.94318","-71.88139","Warren","NH","New Hampshire","TRUE","","765","6.5","33009","Grafton","{""33009"": ""100""}","Grafton","33009","FALSE","FALSE","America/New_York"
-"03280","43.18298","-72.08925","Washington","NH","New Hampshire","TRUE","","1199","10.2","33019","Sullivan","{""33019"": ""100""}","Sullivan","33019","FALSE","FALSE","America/New_York"
-"03281","43.08126","-71.72208","Weare","NH","New Hampshire","TRUE","","9031","59.0","33011","Hillsborough","{""33011"": ""100""}","Hillsborough","33011","FALSE","FALSE","America/New_York"
-"03282","43.86015","-71.92935","Wentworth","NH","New Hampshire","TRUE","","889","8.3","33009","Grafton","{""33009"": ""100""}","Grafton","33009","FALSE","FALSE","America/New_York"
-"03284","43.49281","-72.03075","Springfield","NH","New Hampshire","TRUE","","832","8.3","33019","Sullivan","{""33019"": ""100""}","Sullivan","33019","FALSE","FALSE","America/New_York"
-"03285","43.92411","-71.64361","Thornton","NH","New Hampshire","TRUE","","2499","19.3","33009","Grafton","{""33009"": ""100""}","Grafton","33009","FALSE","FALSE","America/New_York"
-"03287","43.44516","-71.91669","Wilmot","NH","New Hampshire","TRUE","","1550","22.8","33013","Merrimack","{""33013"": ""100""}","Merrimack","33013","FALSE","FALSE","America/New_York"
-"03290","43.12457","-71.12081","Nottingham","NH","New Hampshire","TRUE","","4965","41.9","33015","Rockingham","{""33015"": ""100""}","Rockingham","33015","FALSE","FALSE","America/New_York"
-"03291","43.17918","-71.1427","West Nottingham","NH","New Hampshire","TRUE","","109","231.0","33015","Rockingham","{""33015"": ""100""}","Rockingham","33015","FALSE","FALSE","America/New_York"
-"03293","43.97009","-71.67827","Woodstock","NH","New Hampshire","TRUE","","300","71.4","33009","Grafton","{""33009"": ""100""}","Grafton","33009","FALSE","FALSE","America/New_York"
-"03301","43.22434","-71.54337","Concord","NH","New Hampshire","TRUE","","33162","259.2","33013","Merrimack","{""33013"": ""100""}","Merrimack","33013","FALSE","FALSE","America/New_York"
-"03303","43.29814","-71.67194","Concord","NH","New Hampshire","TRUE","","15849","90.6","33013","Merrimack","{""33013"": ""100""}","Merrimack","33013","FALSE","FALSE","America/New_York"
-"03304","43.13079","-71.53069","Bow","NH","New Hampshire","TRUE","","7880","108.0","33013","Merrimack","{""33013"": ""100""}","Merrimack","33013","FALSE","FALSE","America/New_York"
-"03307","43.32538","-71.44364","Loudon","NH","New Hampshire","TRUE","","5534","43.3","33013","Merrimack","{""33013"": ""100""}","Merrimack","33013","FALSE","FALSE","America/New_York"
-"03431","42.96265","-72.29556","Keene","NH","New Hampshire","TRUE","","25148","163.5","33005","Cheshire","{""33005"": ""100""}","Cheshire","33005","FALSE","FALSE","America/New_York"
-"03440","43.05408","-71.98229","Antrim","NH","New Hampshire","TRUE","","3147","33.6","33011","Hillsborough","{""33011"": ""100""}","Hillsborough","33011","FALSE","FALSE","America/New_York"
-"03441","42.77998","-72.43849","Ashuelot","NH","New Hampshire","TRUE","","154","15.2","33005","Cheshire","{""33005"": ""100""}","Cheshire","33005","FALSE","FALSE","America/New_York"
-"03442","43.01242","-71.90818","Bennington","NH","New Hampshire","TRUE","","1510","51.3","33011","Hillsborough","{""33011"": ""100""}","Hillsborough","33011","FALSE","FALSE","America/New_York"
-"03443","42.87709","-72.46158","Chesterfield","NH","New Hampshire","TRUE","","425","14.8","33005","Cheshire","{""33005"": ""100""}","Cheshire","33005","FALSE","FALSE","America/New_York"
-"03444","42.89433","-72.07224","Dublin","NH","New Hampshire","TRUE","","1448","20.0","33005","Cheshire","{""33005"": ""100""}","Cheshire","33005","FALSE","FALSE","America/New_York"
-"03445","43.01434","-72.213","Sullivan","NH","New Hampshire","TRUE","","797","15.4","33005","Cheshire","{""33005"": ""100""}","Cheshire","33005","FALSE","FALSE","America/New_York"
-"03446","42.86048","-72.29758","Swanzey","NH","New Hampshire","TRUE","","5994","54.2","33005","Cheshire","{""33005"": ""100""}","Cheshire","33005","FALSE","FALSE","America/New_York"
-"03447","42.75901","-72.14848","Fitzwilliam","NH","New Hampshire","TRUE","","2364","26.1","33005","Cheshire","{""33005"": ""100""}","Cheshire","33005","FALSE","FALSE","America/New_York"
-"03448","43.03964","-72.27194","Gilsum","NH","New Hampshire","TRUE","","804","15.9","33005","Cheshire","{""33005"": ""100""}","Cheshire","33005","FALSE","FALSE","America/New_York"
-"03449","42.97584","-71.99579","Hancock","NH","New Hampshire","TRUE","","1751","22.6","33011","Hillsborough","{""33011"": ""100""}","Hillsborough","33011","FALSE","FALSE","America/New_York"
-"03450","42.94158","-72.09127","Harrisville","NH","New Hampshire","TRUE","","927","19.2","33005","Cheshire","{""33005"": ""100""}","Cheshire","33005","FALSE","FALSE","America/New_York"
-"03451","42.80751","-72.49863","Hinsdale","NH","New Hampshire","TRUE","","3911","70.6","33005","Cheshire","{""33005"": ""100""}","Cheshire","33005","FALSE","FALSE","America/New_York"
-"03452","42.82928","-72.05965","Jaffrey","NH","New Hampshire","TRUE","","5283","53.1","33005","Cheshire","{""33005"": ""100""}","Cheshire","33005","FALSE","FALSE","America/New_York"
-"03455","42.89841","-72.18349","Marlborough","NH","New Hampshire","TRUE","","2417","39.7","33005","Cheshire","{""33005"": ""100""}","Cheshire","33005","FALSE","FALSE","America/New_York"
-"03456","43.13096","-72.21499","Marlow","NH","New Hampshire","TRUE","","829","12.3","33005","Cheshire","{""33005"": ""100""}","Cheshire","33005","FALSE","FALSE","America/New_York"
-"03457","42.99585","-72.12252","Nelson","NH","New Hampshire","TRUE","","826","13.9","33005","Cheshire","{""33005"": ""100""}","Cheshire","33005","FALSE","FALSE","America/New_York"
-"03458","42.86906","-71.93782","Peterborough","NH","New Hampshire","TRUE","","7022","50.5","33011","Hillsborough","{""33011"": ""99.89"", ""33005"": ""0.11""}","Hillsborough|Cheshire","33011|33005","FALSE","FALSE","America/New_York"
-"03461","42.75237","-72.01072","Rindge","NH","New Hampshire","TRUE","","6054","62.9","33005","Cheshire","{""33005"": ""100""}","Cheshire","33005","FALSE","FALSE","America/New_York"
-"03462","42.8955","-72.40479","Spofford","NH","New Hampshire","TRUE","","1326","26.2","33005","Cheshire","{""33005"": ""100""}","Cheshire","33005","FALSE","FALSE","America/New_York"
-"03464","43.07926","-72.1142","Stoddard","NH","New Hampshire","TRUE","","1042","8.1","33005","Cheshire","{""33005"": ""100""}","Cheshire","33005","FALSE","FALSE","America/New_York"
-"03465","42.82723","-72.19011","Troy","NH","New Hampshire","TRUE","","2002","43.7","33005","Cheshire","{""33005"": ""100""}","Cheshire","33005","FALSE","FALSE","America/New_York"
-"03466","42.89558","-72.50974","West Chesterfield","NH","New Hampshire","TRUE","","1856","46.9","33005","Cheshire","{""33005"": ""100""}","Cheshire","33005","FALSE","FALSE","America/New_York"
-"03467","42.96935","-72.43221","Westmoreland","NH","New Hampshire","TRUE","","1590","17.3","33005","Cheshire","{""33005"": ""100""}","Cheshire","33005","FALSE","FALSE","America/New_York"
-"03470","42.77883","-72.34417","Winchester","NH","New Hampshire","TRUE","","5155","22.8","33005","Cheshire","{""33005"": ""100""}","Cheshire","33005","FALSE","FALSE","America/New_York"
-"03561","44.33165","-71.81169","Littleton","NH","New Hampshire","TRUE","","5920","45.0","33009","Grafton","{""33009"": ""100""}","Grafton","33009","FALSE","FALSE","America/New_York"
-"03570","44.49905","-71.15716","Berlin","NH","New Hampshire","TRUE","","10221","37.5","33007","Coos","{""33007"": ""100""}","Coos","33007","FALSE","FALSE","America/New_York"
-"03574","44.25344","-71.59886","Bethlehem","NH","New Hampshire","TRUE","","2569","10.9","33009","Grafton","{""33009"": ""100""}","Grafton","33009","FALSE","FALSE","America/New_York"
-"03575","44.29607","-71.42372","Bretton Woods","NH","New Hampshire","TRUE","","68","0.9","33007","Coos","{""33007"": ""100""}","Coos","33007","FALSE","FALSE","America/New_York"
-"03576","44.91614","-71.38478","Colebrook","NH","New Hampshire","TRUE","","2804","7.6","33007","Coos","{""33007"": ""100""}","Coos","33007","FALSE","FALSE","America/New_York"
-"03579","44.96868","-71.03296","Errol","NH","New Hampshire","TRUE","","307","0.2","33007","Coos","{""33007"": ""77.66"", ""23017"": ""22.34""}","Coos|Oxford","33007|23017","FALSE","FALSE","America/New_York"
-"03580","44.16777","-71.70147","Franconia","NH","New Hampshire","TRUE","","1408","5.7","33009","Grafton","{""33009"": ""100""}","Grafton","33009","FALSE","FALSE","America/New_York"
-"03581","44.33931","-71.13252","Gorham","NH","New Hampshire","TRUE","","3054","7.8","33007","Coos","{""33007"": ""100""}","Coos","33007","FALSE","FALSE","America/New_York"
-"03582","44.59552","-71.43867","Groveton","NH","New Hampshire","TRUE","","2530","11.4","33007","Coos","{""33007"": ""100""}","Coos","33007","FALSE","FALSE","America/New_York"
-"03583","44.39677","-71.46472","Jefferson","NH","New Hampshire","TRUE","","850","6.5","33007","Coos","{""33007"": ""100""}","Coos","33007","FALSE","FALSE","America/New_York"
-"03584","44.48489","-71.54566","Lancaster","NH","New Hampshire","TRUE","","3673","24.0","33007","Coos","{""33007"": ""100""}","Coos","33007","FALSE","FALSE","America/New_York"
-"03585","44.22063","-71.89455","Lisbon","NH","New Hampshire","TRUE","","2832","13.5","33009","Grafton","{""33009"": ""100""}","Grafton","33009","FALSE","FALSE","America/New_York"
-"03586","44.22036","-71.79641","Sugar Hill","NH","New Hampshire","TRUE","","636","14.7","33009","Grafton","{""33009"": ""100""}","Grafton","33009","FALSE","FALSE","America/New_York"
-"03588","44.61213","-71.20771","Milan","NH","New Hampshire","TRUE","","1638","4.4","33007","Coos","{""33007"": ""100""}","Coos","33007","FALSE","FALSE","America/New_York"
-"03590","44.74767","-71.51821","North Stratford","NH","New Hampshire","TRUE","","901","3.3","33007","Coos","{""33007"": ""100""}","Coos","33007","FALSE","FALSE","America/New_York"
-"03592","45.12296","-71.26298","Pittsburg","NH","New Hampshire","TRUE","","1064","1.2","33007","Coos","{""33007"": ""100""}","Coos","33007","FALSE","FALSE","America/New_York"
-"03593","44.31658","-71.30374","Randolph","NH","New Hampshire","TRUE","","376","1.6","33007","Coos","{""33007"": ""100""}","Coos","33007","FALSE","FALSE","America/New_York"
-"03595","44.30622","-71.5268","Twin Mountain","NH","New Hampshire","TRUE","","704","7.4","33007","Coos","{""33007"": ""100""}","Coos","33007","FALSE","FALSE","America/New_York"
-"03597","44.73595","-71.39278","West Stewartstown","NH","New Hampshire","TRUE","","452","3.3","33007","Coos","{""33007"": ""100""}","Coos","33007","FALSE","FALSE","America/New_York"
-"03598","44.37976","-71.63225","Whitefield","NH","New Hampshire","TRUE","","3166","19.8","33007","Coos","{""33007"": ""100""}","Coos","33007","FALSE","FALSE","America/New_York"
-"03601","43.2338","-72.29576","Acworth","NH","New Hampshire","TRUE","","423","8.5","33019","Sullivan","{""33019"": ""100""}","Sullivan","33019","FALSE","FALSE","America/New_York"
-"03602","43.13384","-72.33036","Alstead","NH","New Hampshire","TRUE","","2465","16.4","33005","Cheshire","{""33005"": ""72.98"", ""33019"": ""27.02""}","Cheshire|Sullivan","33005|33019","FALSE","FALSE","America/New_York"
-"03603","43.25149","-72.38134","Charlestown","NH","New Hampshire","TRUE","","5318","48.2","33019","Sullivan","{""33019"": ""100""}","Sullivan","33019","FALSE","FALSE","America/New_York"
-"03604","43.128","-72.37984","Drewsville","NH","New Hampshire","TRUE","","123","96.7","33005","Cheshire","{""33005"": ""100""}","Cheshire","33005","FALSE","FALSE","America/New_York"
-"03605","43.22739","-72.1814","Lempster","NH","New Hampshire","TRUE","","928","11.1","33019","Sullivan","{""33019"": ""100""}","Sullivan","33019","FALSE","FALSE","America/New_York"
-"03607","43.19552","-72.26883","South Acworth","NH","New Hampshire","TRUE","","392","9.8","33019","Sullivan","{""33019"": ""100""}","Sullivan","33019","FALSE","FALSE","America/New_York"
-"03608","43.07067","-72.40643","Walpole","NH","New Hampshire","TRUE","","2981","34.0","33005","Cheshire","{""33005"": ""100""}","Cheshire","33005","FALSE","FALSE","America/New_York"
-"03609","43.1446","-72.44526","North Walpole","NH","New Hampshire","TRUE","","832","360.0","33005","Cheshire","{""33005"": ""100""}","Cheshire","33005","FALSE","FALSE","America/New_York"
-"03740","44.18086","-71.98272","Bath","NH","New Hampshire","TRUE","","712","8.0","33009","Grafton","{""33009"": ""100""}","Grafton","33009","FALSE","FALSE","America/New_York"
-"03741","43.67188","-72.01584","Canaan","NH","New Hampshire","TRUE","","4043","20.3","33009","Grafton","{""33009"": ""100""}","Grafton","33009","FALSE","FALSE","America/New_York"
-"03743","43.35826","-72.3253","Claremont","NH","New Hampshire","TRUE","","13681","86.3","33019","Sullivan","{""33019"": ""100""}","Sullivan","33019","FALSE","FALSE","America/New_York"
-"03745","43.47011","-72.33239","Cornish","NH","New Hampshire","TRUE","","1550","17.1","33019","Sullivan","{""33019"": ""100""}","Sullivan","33019","FALSE","FALSE","America/New_York"
-"03746","43.49432","-72.2574","Cornish Flat","NH","New Hampshire","TRUE","","233","12.7","33019","Sullivan","{""33019"": ""100""}","Sullivan","33019","FALSE","FALSE","America/New_York"
-"03748","43.59369","-72.1139","Enfield","NH","New Hampshire","TRUE","","4866","43.7","33009","Grafton","{""33009"": ""96.03"", ""33019"": ""3.97""}","Grafton|Sullivan","33009|33019","FALSE","FALSE","America/New_York"
-"03750","43.7076","-72.20263","Etna","NH","New Hampshire","TRUE","","1037","31.9","33009","Grafton","{""33009"": ""100""}","Grafton","33009","FALSE","FALSE","America/New_York"
-"03751","43.44896","-72.08876","Georges Mills","NH","New Hampshire","TRUE","","468","59.3","33019","Sullivan","{""33019"": ""100""}","Sullivan","33019","FALSE","FALSE","America/New_York"
-"03752","43.28921","-72.11523","Goshen","NH","New Hampshire","TRUE","","702","12.1","33019","Sullivan","{""33019"": ""100""}","Sullivan","33019","FALSE","FALSE","America/New_York"
-"03753","43.51701","-72.14972","Grantham","NH","New Hampshire","TRUE","","2869","40.8","33019","Sullivan","{""33019"": ""100""}","Sullivan","33019","FALSE","FALSE","America/New_York"
-"03754","43.37746","-72.13839","Guild","NH","New Hampshire","TRUE","","51","512.8","33019","Sullivan","{""33019"": ""100""}","Sullivan","33019","FALSE","FALSE","America/New_York"
-"03755","43.71777","-72.18929","Hanover","NH","New Hampshire","TRUE","","10595","113.4","33009","Grafton","{""33009"": ""100""}","Grafton","33009","FALSE","FALSE","America/New_York"
-"03765","44.0343","-72.05286","Haverhill","NH","New Hampshire","TRUE","","609","52.9","33009","Grafton","{""33009"": ""100""}","Grafton","33009","FALSE","FALSE","America/New_York"
-"03766","43.63467","-72.23724","Lebanon","NH","New Hampshire","TRUE","","9388","114.1","33009","Grafton","{""33009"": ""100""}","Grafton","33009","FALSE","FALSE","America/New_York"
-"03768","43.80527","-72.11572","Lyme","NH","New Hampshire","TRUE","","1852","13.3","33009","Grafton","{""33009"": ""100""}","Grafton","33009","FALSE","FALSE","America/New_York"
-"03770","43.53406","-72.26647","Meriden","NH","New Hampshire","TRUE","","531","41.4","33019","Sullivan","{""33019"": ""100""}","Sullivan","33019","FALSE","FALSE","America/New_York"
-"03771","44.28502","-72.00934","Monroe","NH","New Hampshire","TRUE","","942","16.5","33009","Grafton","{""33009"": ""100""}","Grafton","33009","FALSE","FALSE","America/New_York"
-"03773","43.38523","-72.19935","Newport","NH","New Hampshire","TRUE","","7858","32.8","33019","Sullivan","{""33019"": ""100""}","Sullivan","33019","FALSE","FALSE","America/New_York"
-"03774","44.08904","-71.99508","North Haverhill","NH","New Hampshire","TRUE","","1954","29.1","33009","Grafton","{""33009"": ""100""}","Grafton","33009","FALSE","FALSE","America/New_York"
-"03777","43.89512","-72.06962","Orford","NH","New Hampshire","TRUE","","1444","12.3","33009","Grafton","{""33009"": ""100""}","Grafton","33009","FALSE","FALSE","America/New_York"
-"03779","43.97237","-72.02873","Piermont","NH","New Hampshire","TRUE","","868","8.4","33009","Grafton","{""33009"": ""100""}","Grafton","33009","FALSE","FALSE","America/New_York"
-"03780","44.03228","-71.97743","Pike","NH","New Hampshire","TRUE","","435","10.3","33009","Grafton","{""33009"": ""100""}","Grafton","33009","FALSE","FALSE","America/New_York"
-"03781","43.55276","-72.28405","Plainfield","NH","New Hampshire","TRUE","","2024","16.5","33019","Sullivan","{""33019"": ""100""}","Sullivan","33019","FALSE","FALSE","America/New_York"
-"03782","43.39093","-72.09279","Sunapee","NH","New Hampshire","TRUE","","3105","56.9","33019","Sullivan","{""33019"": ""100""}","Sullivan","33019","FALSE","FALSE","America/New_York"
-"03784","43.6368","-72.30594","West Lebanon","NH","New Hampshire","TRUE","","4109","189.2","33009","Grafton","{""33009"": ""100""}","Grafton","33009","FALSE","FALSE","America/New_York"
-"03785","44.06393","-71.89424","Woodsville","NH","New Hampshire","TRUE","","2358","15.2","33009","Grafton","{""33009"": ""100""}","Grafton","33009","FALSE","FALSE","America/New_York"
-"03801","43.07292","-70.8052","Portsmouth","NH","New Hampshire","TRUE","","22488","365.3","33015","Rockingham","{""33015"": ""100""}","Rockingham","33015","FALSE","FALSE","America/New_York"
-"03809","43.45369","-71.21237","Alton","NH","New Hampshire","TRUE","","3524","33.4","33001","Belknap","{""33001"": ""100""}","Belknap","33001","FALSE","FALSE","America/New_York"
-"03810","43.52705","-71.28103","Alton Bay","NH","New Hampshire","TRUE","","1779","29.5","33001","Belknap","{""33001"": ""100""}","Belknap","33001","FALSE","FALSE","America/New_York"
-"03811","42.83696","-71.16039","Atkinson","NH","New Hampshire","TRUE","","6952","241.1","33015","Rockingham","{""33015"": ""100""}","Rockingham","33015","FALSE","FALSE","America/New_York"
-"03812","44.0806","-71.29205","Bartlett","NH","New Hampshire","TRUE","","596","3.8","33003","Carroll","{""33003"": ""100""}","Carroll","33003","FALSE","FALSE","America/New_York"
-"03813","44.09738","-71.04513","Center Conway","NH","New Hampshire","TRUE","","2663","10.7","33003","Carroll","{""33003"": ""100""}","Carroll","33003","FALSE","FALSE","America/New_York"
-"03814","43.76919","-71.18478","Center Ossipee","NH","New Hampshire","TRUE","","2315","28.3","33003","Carroll","{""33003"": ""100""}","Carroll","33003","FALSE","FALSE","America/New_York"
-"03816","43.68469","-71.25517","Center Tuftonboro","NH","New Hampshire","TRUE","","1506","20.2","33003","Carroll","{""33003"": ""100""}","Carroll","33003","FALSE","FALSE","America/New_York"
-"03817","43.88741","-71.23211","Chocorua","NH","New Hampshire","TRUE","","931","36.8","33003","Carroll","{""33003"": ""100""}","Carroll","33003","FALSE","FALSE","America/New_York"
-"03818","43.97359","-71.25003","Conway","NH","New Hampshire","TRUE","","3845","17.4","33003","Carroll","{""33003"": ""100""}","Carroll","33003","FALSE","FALSE","America/New_York"
-"03819","42.92842","-71.12117","Danville","NH","New Hampshire","TRUE","","4496","149.0","33015","Rockingham","{""33015"": ""100""}","Rockingham","33015","FALSE","FALSE","America/New_York"
-"03820","43.18879","-70.88678","Dover","NH","New Hampshire","TRUE","","31629","440.1","33017","Strafford","{""33017"": ""100""}","Strafford","33017","FALSE","FALSE","America/New_York"
-"03823","43.17288","-70.94094","Madbury","NH","New Hampshire","TRUE","","1849","67.4","33017","Strafford","{""33017"": ""100""}","Strafford","33017","FALSE","FALSE","America/New_York"
-"03824","43.11744","-70.91946","Durham","NH","New Hampshire","TRUE","","16481","283.9","33017","Strafford","{""33017"": ""100""}","Strafford","33017","FALSE","FALSE","America/New_York"
-"03825","43.21357","-71.04284","Barrington","NH","New Hampshire","TRUE","","9245","77.3","33017","Strafford","{""33017"": ""100""}","Strafford","33017","FALSE","FALSE","America/New_York"
-"03826","42.88621","-71.13378","East Hampstead","NH","New Hampshire","TRUE","","2250","313.4","33015","Rockingham","{""33015"": ""100""}","Rockingham","33015","FALSE","FALSE","America/New_York"
-"03827","42.90685","-70.98774","East Kingston","NH","New Hampshire","TRUE","","3152","68.2","33015","Rockingham","{""33015"": ""100""}","Rockingham","33015","FALSE","FALSE","America/New_York"
-"03830","43.63391","-71.00259","East Wakefield","NH","New Hampshire","TRUE","","1932","57.9","33003","Carroll","{""33003"": ""100""}","Carroll","33003","FALSE","FALSE","America/New_York"
-"03832","43.90307","-71.04786","Eaton Center","NH","New Hampshire","TRUE","","299","4.6","33003","Carroll","{""33003"": ""100""}","Carroll","33003","FALSE","FALSE","America/New_York"
-"03833","42.97477","-70.98917","Exeter","NH","New Hampshire","TRUE","","22116","175.5","33015","Rockingham","{""33015"": ""100""}","Rockingham","33015","FALSE","FALSE","America/New_York"
-"03835","43.36275","-71.07607","Farmington","NH","New Hampshire","TRUE","","6930","73.0","33017","Strafford","{""33017"": ""100""}","Strafford","33017","FALSE","FALSE","America/New_York"
-"03836","43.82621","-71.07147","Freedom","NH","New Hampshire","TRUE","","1349","14.9","33003","Carroll","{""33003"": ""100""}","Carroll","33003","FALSE","FALSE","America/New_York"
-"03837","43.42165","-71.32909","Gilmanton Iron Works","NH","New Hampshire","TRUE","","1410","27.1","33001","Belknap","{""33001"": ""100""}","Belknap","33001","FALSE","FALSE","America/New_York"
-"03838","44.11231","-71.24091","Glen","NH","New Hampshire","TRUE","","1169","19.6","33003","Carroll","{""33003"": ""100""}","Carroll","33003","FALSE","FALSE","America/New_York"
-"03839","43.26199","-70.98373","Rochester","NH","New Hampshire","TRUE","","4048","186.5","33017","Strafford","{""33017"": ""100""}","Strafford","33017","FALSE","FALSE","America/New_York"
-"03840","43.0385","-70.8481","Greenland","NH","New Hampshire","TRUE","","3993","146.9","33015","Rockingham","{""33015"": ""100""}","Rockingham","33015","FALSE","FALSE","America/New_York"
-"03841","42.88314","-71.1809","Hampstead","NH","New Hampshire","TRUE","","6559","231.0","33015","Rockingham","{""33015"": ""100""}","Rockingham","33015","FALSE","FALSE","America/New_York"
-"03842","42.93963","-70.8371","Hampton","NH","New Hampshire","TRUE","","15353","464.1","33015","Rockingham","{""33015"": ""100""}","Rockingham","33015","FALSE","FALSE","America/New_York"
-"03844","42.92705","-70.88586","Hampton Falls","NH","New Hampshire","TRUE","","2371","74.3","33015","Rockingham","{""33015"": ""100""}","Rockingham","33015","FALSE","FALSE","America/New_York"
-"03845","44.10676","-71.12499","Intervale","NH","New Hampshire","TRUE","","1091","31.7","33003","Carroll","{""33003"": ""100""}","Carroll","33003","FALSE","FALSE","America/New_York"
-"03846","44.1853","-71.19065","Jackson","NH","New Hampshire","TRUE","","884","5.3","33003","Carroll","{""33003"": ""100""}","Carroll","33003","FALSE","FALSE","America/New_York"
-"03847","44.07005","-71.11317","Kearsarge","NH","New Hampshire","TRUE","","363","164.6","33003","Carroll","{""33003"": ""100""}","Carroll","33003","FALSE","FALSE","America/New_York"
-"03848","42.9156","-71.0665","Kingston","NH","New Hampshire","TRUE","","6260","122.2","33015","Rockingham","{""33015"": ""100""}","Rockingham","33015","FALSE","FALSE","America/New_York"
-"03849","43.90044","-71.13378","Madison","NH","New Hampshire","TRUE","","1478","22.8","33003","Carroll","{""33003"": ""100""}","Carroll","33003","FALSE","FALSE","America/New_York"
-"03850","43.69273","-71.302","Melvin Village","NH","New Hampshire","TRUE","","233","29.8","33003","Carroll","{""33003"": ""100""}","Carroll","33003","FALSE","FALSE","America/New_York"
-"03851","43.4361","-71.01649","Milton","NH","New Hampshire","TRUE","","4080","59.7","33017","Strafford","{""33017"": ""100""}","Strafford","33017","FALSE","FALSE","America/New_York"
-"03852","43.4982","-70.97547","Milton Mills","NH","New Hampshire","TRUE","","543","31.1","33017","Strafford","{""33017"": ""100""}","Strafford","33017","FALSE","FALSE","America/New_York"
-"03853","43.63952","-71.27902","Mirror Lake","NH","New Hampshire","TRUE","","474","23.1","33003","Carroll","{""33003"": ""100""}","Carroll","33003","FALSE","FALSE","America/New_York"
-"03854","43.06559","-70.72005","New Castle","NH","New Hampshire","TRUE","","835","398.7","33015","Rockingham","{""33015"": ""100""}","Rockingham","33015","FALSE","FALSE","America/New_York"
-"03855","43.46363","-71.14194","New Durham","NH","New Hampshire","TRUE","","2697","25.2","33017","Strafford","{""33017"": ""100""}","Strafford","33017","FALSE","FALSE","America/New_York"
-"03856","43.03923","-70.96629","Newfields","NH","New Hampshire","TRUE","","1757","95.7","33015","Rockingham","{""33015"": ""100""}","Rockingham","33015","FALSE","FALSE","America/New_York"
-"03857","43.06913","-70.95182","Newmarket","NH","New Hampshire","TRUE","","9063","276.7","33015","Rockingham","{""33015"": ""100""}","Rockingham","33015","FALSE","FALSE","America/New_York"
-"03858","42.8684","-71.04356","Newton","NH","New Hampshire","TRUE","","4920","193.4","33015","Rockingham","{""33015"": ""100""}","Rockingham","33015","FALSE","FALSE","America/New_York"
-"03860","44.04206","-71.1199","North Conway","NH","New Hampshire","TRUE","","4479","86.0","33003","Carroll","{""33003"": ""100""}","Carroll","33003","FALSE","FALSE","America/New_York"
-"03861","43.11969","-71.00682","Lee","NH","New Hampshire","TRUE","","4485","86.6","33017","Strafford","{""33017"": ""100""}","Strafford","33017","FALSE","FALSE","America/New_York"
-"03862","42.97904","-70.83024","North Hampton","NH","New Hampshire","TRUE","","4473","124.6","33015","Rockingham","{""33015"": ""100""}","Rockingham","33015","FALSE","FALSE","America/New_York"
-"03864","43.69143","-71.10883","Ossipee","NH","New Hampshire","TRUE","","1853","20.9","33003","Carroll","{""33003"": ""100""}","Carroll","33003","FALSE","FALSE","America/New_York"
-"03865","42.84028","-71.09606","Plaistow","NH","New Hampshire","TRUE","","7689","280.1","33015","Rockingham","{""33015"": ""100""}","Rockingham","33015","FALSE","FALSE","America/New_York"
-"03867","43.30327","-70.98691","Rochester","NH","New Hampshire","TRUE","","21591","281.8","33017","Strafford","{""33017"": ""100""}","Strafford","33017","FALSE","FALSE","America/New_York"
-"03868","43.32027","-70.94164","Rochester","NH","New Hampshire","TRUE","","5316","271.8","33017","Strafford","{""33017"": ""100""}","Strafford","33017","FALSE","FALSE","America/New_York"
-"03869","43.22066","-70.84199","Rollinsford","NH","New Hampshire","TRUE","","2522","137.3","33017","Strafford","{""33017"": ""100""}","Strafford","33017","FALSE","FALSE","America/New_York"
-"03870","43.0152","-70.76077","Rye","NH","New Hampshire","TRUE","","5293","167.3","33015","Rockingham","{""33015"": ""100""}","Rockingham","33015","FALSE","FALSE","America/New_York"
-"03871","42.98222","-70.77484","Rye Beach","NH","New Hampshire","TRUE","","173","159.9","33015","Rockingham","{""33015"": ""100""}","Rockingham","33015","FALSE","FALSE","America/New_York"
-"03872","43.5697","-71.045","Sanbornville","NH","New Hampshire","TRUE","","3621","29.5","33003","Carroll","{""33003"": ""100""}","Carroll","33003","FALSE","FALSE","America/New_York"
-"03873","42.93399","-71.18209","Sandown","NH","New Hampshire","TRUE","","6220","180.4","33015","Rockingham","{""33015"": ""100""}","Rockingham","33015","FALSE","FALSE","America/New_York"
-"03874","42.88708","-70.86067","Seabrook","NH","New Hampshire","TRUE","","8925","382.5","33015","Rockingham","{""33015"": ""100""}","Rockingham","33015","FALSE","FALSE","America/New_York"
-"03875","43.89547","-71.18603","Silver Lake","NH","New Hampshire","TRUE","","1099","30.5","33003","Carroll","{""33003"": ""100""}","Carroll","33003","FALSE","FALSE","America/New_York"
-"03878","43.25288","-70.88522","Somersworth","NH","New Hampshire","TRUE","","11970","461.8","33017","Strafford","{""33017"": ""100""}","Strafford","33017","FALSE","FALSE","America/New_York"
-"03882","43.74565","-71.0422","Effingham","NH","New Hampshire","TRUE","","1630","16.3","33003","Carroll","{""33003"": ""100""}","Carroll","33003","FALSE","FALSE","America/New_York"
-"03883","43.80765","-71.30773","South Tamworth","NH","New Hampshire","TRUE","","334","10.2","33003","Carroll","{""33003"": ""100""}","Carroll","33003","FALSE","FALSE","America/New_York"
-"03884","43.2797","-71.14834","Strafford","NH","New Hampshire","TRUE","","3958","31.6","33017","Strafford","{""33017"": ""100""}","Strafford","33017","FALSE","FALSE","America/New_York"
-"03885","43.01569","-70.90062","Stratham","NH","New Hampshire","TRUE","","7386","188.2","33015","Rockingham","{""33015"": ""100""}","Rockingham","33015","FALSE","FALSE","America/New_York"
-"03886","43.86243","-71.28686","Tamworth","NH","New Hampshire","TRUE","","1680","17.0","33003","Carroll","{""33003"": ""100""}","Carroll","33003","FALSE","FALSE","America/New_York"
-"03887","43.48597","-71.06265","Union","NH","New Hampshire","TRUE","","2076","39.9","33017","Strafford","{""33017"": ""82.78"", ""33003"": ""17.22""}","Strafford|Carroll","33017|33003","FALSE","FALSE","America/New_York"
-"03890","43.80809","-71.19664","West Ossipee","NH","New Hampshire","TRUE","","166","14.0","33003","Carroll","{""33003"": ""100""}","Carroll","33003","FALSE","FALSE","America/New_York"
-"03894","43.61213","-71.17163","Wolfeboro","NH","New Hampshire","TRUE","","6320","49.8","33003","Carroll","{""33003"": ""100""}","Carroll","33003","FALSE","FALSE","America/New_York"
-"03901","43.30056","-70.84329","Berwick","ME","Maine","TRUE","","7683","78.8","23031","York","{""23031"": ""100""}","York","23031","FALSE","FALSE","America/New_York"
-"03902","43.22146","-70.63766","Cape Neddick","ME","Maine","TRUE","","2419","47.7","23031","York","{""23031"": ""100""}","York","23031","FALSE","FALSE","America/New_York"
-"03903","43.14881","-70.78597","Eliot","ME","Maine","TRUE","","6589","128.5","23031","York","{""23031"": ""100""}","York","23031","FALSE","FALSE","America/New_York"
-"03904","43.11055","-70.73108","Kittery","ME","Maine","TRUE","","7996","274.8","23031","York","{""23031"": ""100""}","York","23031","FALSE","FALSE","America/New_York"
-"03905","43.08684","-70.68718","Kittery Point","ME","Maine","TRUE","","1735","102.1","23031","York","{""23031"": ""100""}","York","23031","FALSE","FALSE","America/New_York"
-"03906","43.346","-70.77759","North Berwick","ME","Maine","TRUE","","4713","47.6","23031","York","{""23031"": ""100""}","York","23031","FALSE","FALSE","America/New_York"
-"03907","43.25464","-70.61096","Ogunquit","ME","Maine","TRUE","","1062","100.2","23031","York","{""23031"": ""100""}","York","23031","FALSE","FALSE","America/New_York"
-"03908","43.23876","-70.74781","South Berwick","ME","Maine","TRUE","","7470","89.7","23031","York","{""23031"": ""100""}","York","23031","FALSE","FALSE","America/New_York"
-"03909","43.16755","-70.68247","York","ME","Maine","TRUE","","10240","114.9","23031","York","{""23031"": ""100""}","York","23031","FALSE","FALSE","America/New_York"
-"03910","43.17286","-70.61671","York Beach","ME","Maine","TRUE","","320","356.9","23031","York","{""23031"": ""100""}","York","23031","FALSE","FALSE","America/New_York"
-"03911","43.13488","-70.63485","York Harbor","ME","Maine","TRUE","","59","65.5","23031","York","{""23031"": ""100""}","York","23031","FALSE","FALSE","America/New_York"
-"04001","43.52727","-70.92098","Acton","ME","Maine","TRUE","","2580","27.7","23031","York","{""23031"": ""100""}","York","23031","FALSE","FALSE","America/New_York"
-"04002","43.49588","-70.67943","Alfred","ME","Maine","TRUE","","7558","44.2","23031","York","{""23031"": ""100""}","York","23031","FALSE","FALSE","America/New_York"
-"04003","43.73158","-69.98824","Bailey Island","ME","Maine","TRUE","","329","122.1","23005","Cumberland","{""23005"": ""100""}","Cumberland","23005","FALSE","FALSE","America/New_York"
-"04005","43.49603","-70.49547","Biddeford","ME","Maine","TRUE","","23486","189.3","23031","York","{""23031"": ""100""}","York","23031","FALSE","FALSE","America/New_York"
-"04006","43.44439","-70.34472","Biddeford Pool","ME","Maine","TRUE","","162","831.9","23031","York","{""23031"": ""100""}","York","23031","FALSE","FALSE","America/New_York"
-"04008","44.03716","-69.86207","Bowdoinham","ME","Maine","TRUE","","2795","30.2","23023","Sagadahoc","{""23023"": ""100""}","Sagadahoc","23023","FALSE","FALSE","America/New_York"
-"04009","44.0483","-70.73382","Bridgton","ME","Maine","TRUE","","5304","36.1","23005","Cumberland","{""23005"": ""100""}","Cumberland","23005","FALSE","FALSE","America/New_York"
-"04010","43.93305","-70.91671","Brownfield","ME","Maine","TRUE","","1401","12.2","23017","Oxford","{""23017"": ""100""}","Oxford","23017","FALSE","FALSE","America/New_York"
-"04011","43.9007","-69.97606","Brunswick","ME","Maine","TRUE","","20517","169.4","23005","Cumberland","{""23005"": ""100""}","Cumberland","23005","FALSE","FALSE","America/New_York"
-"04015","43.97437","-70.51792","Casco","ME","Maine","TRUE","","3895","47.3","23005","Cumberland","{""23005"": ""100""}","Cumberland","23005","FALSE","FALSE","America/New_York"
-"04017","43.73003","-70.11457","Chebeague Island","ME","Maine","TRUE","","449","48.5","23005","Cumberland","{""23005"": ""100""}","Cumberland","23005","FALSE","FALSE","America/New_York"
-"04019","43.69149","-70.0999","Cliff Island","ME","Maine","TRUE","","23","10.7","23005","Cumberland","{""23005"": ""100""}","Cumberland","23005","FALSE","FALSE","America/New_York"
-"04020","43.76815","-70.81022","Cornish","ME","Maine","TRUE","","1369","23.8","23031","York","{""23031"": ""100""}","York","23031","FALSE","FALSE","America/New_York"
-"04021","43.79747","-70.26495","Cumberland Center","ME","Maine","TRUE","","6422","120.3","23005","Cumberland","{""23005"": ""100""}","Cumberland","23005","FALSE","FALSE","America/New_York"
-"04022","43.98049","-70.80722","Denmark","ME","Maine","TRUE","","1282","10.7","23017","Oxford","{""23017"": ""100""}","Oxford","23017","FALSE","FALSE","America/New_York"
-"04024","43.83304","-70.67771","East Baldwin","ME","Maine","TRUE","","639","15.6","23005","Cumberland","{""23005"": ""100""}","Cumberland","23005","FALSE","FALSE","America/New_York"
-"04027","43.40332","-70.91154","Lebanon","ME","Maine","TRUE","","6270","44.0","23031","York","{""23031"": ""100""}","York","23031","FALSE","FALSE","America/New_York"
-"04029","43.90164","-70.68772","Sebago","ME","Maine","TRUE","","1600","18.8","23005","Cumberland","{""23005"": ""100""}","Cumberland","23005","FALSE","FALSE","America/New_York"
-"04030","43.5895","-70.69236","East Waterboro","ME","Maine","TRUE","","2163","50.1","23031","York","{""23031"": ""100""}","York","23031","FALSE","FALSE","America/New_York"
-"04032","43.85562","-70.1008","Freeport","ME","Maine","TRUE","","8439","93.8","23005","Cumberland","{""23005"": ""100""}","Cumberland","23005","FALSE","FALSE","America/New_York"
-"04037","44.09281","-70.94984","Fryeburg","ME","Maine","TRUE","","3869","18.1","23017","Oxford","{""23017"": ""100""}","Oxford","23017","FALSE","FALSE","America/New_York"
-"04038","43.70338","-70.4581","Gorham","ME","Maine","TRUE","","17582","134.2","23005","Cumberland","{""23005"": ""100""}","Cumberland","23005","FALSE","FALSE","America/New_York"
-"04039","43.88747","-70.3422","Gray","ME","Maine","TRUE","","7625","72.4","23005","Cumberland","{""23005"": ""100""}","Cumberland","23005","FALSE","FALSE","America/New_York"
-"04040","44.11094","-70.7185","Harrison","ME","Maine","TRUE","","3234","20.3","23005","Cumberland","{""23005"": ""87.85"", ""23017"": ""12.15""}","Cumberland|Oxford","23005|23017","FALSE","FALSE","America/New_York"
-"04041","43.86397","-70.82561","Hiram","ME","Maine","TRUE","","1734","17.9","23017","Oxford","{""23017"": ""100""}","Oxford","23017","FALSE","FALSE","America/New_York"
-"04042","43.62952","-70.62453","Hollis Center","ME","Maine","TRUE","","4607","55.5","23031","York","{""23031"": ""100""}","York","23031","FALSE","FALSE","America/New_York"
-"04043","43.3976","-70.57101","Kennebunk","ME","Maine","TRUE","","11424","124.8","23031","York","{""23031"": ""100""}","York","23031","FALSE","FALSE","America/New_York"
-"04046","43.42031","-70.492","Kennebunkport","ME","Maine","TRUE","","7873","68.4","23031","York","{""23031"": ""100""}","York","23031","FALSE","FALSE","America/New_York"
-"04047","43.7362","-70.91076","Parsonsfield","ME","Maine","TRUE","","1920","12.7","23031","York","{""23031"": ""100""}","York","23031","FALSE","FALSE","America/New_York"
-"04048","43.68732","-70.78284","Limerick","ME","Maine","TRUE","","3030","41.5","23031","York","{""23031"": ""100""}","York","23031","FALSE","FALSE","America/New_York"
-"04049","43.73768","-70.70296","Limington","ME","Maine","TRUE","","3744","35.3","23031","York","{""23031"": ""100""}","York","23031","FALSE","FALSE","America/New_York"
-"04050","43.69205","-70.15696","Long Island","ME","Maine","TRUE","","314","84.4","23005","Cumberland","{""23005"": ""100""}","Cumberland","23005","FALSE","FALSE","America/New_York"
-"04051","44.18874","-70.88469","Lovell","ME","Maine","TRUE","","1013","9.0","23017","Oxford","{""23017"": ""100""}","Oxford","23017","FALSE","FALSE","America/New_York"
-"04055","43.9702","-70.61545","Naples","ME","Maine","TRUE","","3901","48.4","23005","Cumberland","{""23005"": ""100""}","Cumberland","23005","FALSE","FALSE","America/New_York"
-"04056","43.65403","-70.86296","Newfield","ME","Maine","TRUE","","355","24.3","23031","York","{""23031"": ""100""}","York","23031","FALSE","FALSE","America/New_York"
-"04057","44.10162","-70.69888","North Bridgton","ME","Maine","TRUE","","78","546.4","23005","Cumberland","{""23005"": ""100""}","Cumberland","23005","FALSE","FALSE","America/New_York"
-"04061","43.63377","-70.74209","North Waterboro","ME","Maine","TRUE","","3498","68.8","23031","York","{""23031"": ""100""}","York","23031","FALSE","FALSE","America/New_York"
-"04062","43.79746","-70.40447","Windham","ME","Maine","TRUE","","18478","151.8","23005","Cumberland","{""23005"": ""100""}","Cumberland","23005","FALSE","FALSE","America/New_York"
-"04063","43.50109","-70.3961","Ocean Park","ME","Maine","TRUE","","468","269.6","23031","York","{""23031"": ""100""}","York","23031","FALSE","FALSE","America/New_York"
-"04064","43.52613","-70.38985","Old Orchard Beach","ME","Maine","TRUE","","8394","479.1","23031","York","{""23031"": ""100""}","York","23031","FALSE","FALSE","America/New_York"
-"04066","43.77278","-69.96827","Orrs Island","ME","Maine","TRUE","","616","131.9","23005","Cumberland","{""23005"": ""100""}","Cumberland","23005","FALSE","FALSE","America/New_York"
-"04068","43.84003","-70.94067","Porter","ME","Maine","TRUE","","1440","17.6","23017","Oxford","{""23017"": ""100""}","Oxford","23017","FALSE","FALSE","America/New_York"
-"04069","43.89918","-70.18192","Pownal","ME","Maine","TRUE","","1635","27.6","23005","Cumberland","{""23005"": ""100""}","Cumberland","23005","FALSE","FALSE","America/New_York"
-"04071","43.92839","-70.4508","Raymond","ME","Maine","TRUE","","5096","53.0","23005","Cumberland","{""23005"": ""100""}","Cumberland","23005","FALSE","FALSE","America/New_York"
-"04072","43.53899","-70.46233","Saco","ME","Maine","TRUE","","19497","195.6","23031","York","{""23031"": ""100""}","York","23031","FALSE","FALSE","America/New_York"
-"04073","43.41338","-70.74238","Sanford","ME","Maine","TRUE","","16452","169.8","23031","York","{""23031"": ""100""}","York","23031","FALSE","FALSE","America/New_York"
-"04074","43.59108","-70.36821","Scarborough","ME","Maine","TRUE","","19885","161.4","23005","Cumberland","{""23005"": ""100""}","Cumberland","23005","FALSE","FALSE","America/New_York"
-"04076","43.55246","-70.83794","Shapleigh","ME","Maine","TRUE","","2739","27.3","23031","York","{""23031"": ""100""}","York","23031","FALSE","FALSE","America/New_York"
-"04079","43.80344","-69.94972","Harpswell","ME","Maine","TRUE","","3953","71.8","23005","Cumberland","{""23005"": ""100""}","Cumberland","23005","FALSE","FALSE","America/New_York"
-"04083","43.46727","-70.81383","Springvale","ME","Maine","TRUE","","4605","178.0","23031","York","{""23031"": ""100""}","York","23031","FALSE","FALSE","America/New_York"
-"04084","43.76606","-70.566","Standish","ME","Maine","TRUE","","7403","60.9","23005","Cumberland","{""23005"": ""100""}","Cumberland","23005","FALSE","FALSE","America/New_York"
-"04085","43.77448","-70.62667","Steep Falls","ME","Maine","TRUE","","2675","85.6","23005","Cumberland","{""23005"": ""100""}","Cumberland","23005","FALSE","FALSE","America/New_York"
-"04086","43.96149","-69.95876","Topsham","ME","Maine","TRUE","","8810","105.7","23023","Sagadahoc","{""23023"": ""100""}","Sagadahoc","23023","FALSE","FALSE","America/New_York"
-"04087","43.56551","-70.75251","Waterboro","ME","Maine","TRUE","","2185","44.3","23031","York","{""23031"": ""100""}","York","23031","FALSE","FALSE","America/New_York"
-"04088","44.19301","-70.71635","Waterford","ME","Maine","TRUE","","1454","11.7","23017","Oxford","{""23017"": ""100""}","Oxford","23017","FALSE","FALSE","America/New_York"
-"04090","43.3267","-70.63359","Wells","ME","Maine","TRUE","","10366","69.4","23031","York","{""23031"": ""100""}","York","23031","FALSE","FALSE","America/New_York"
-"04091","43.83211","-70.75141","West Baldwin","ME","Maine","TRUE","","867","17.3","23005","Cumberland","{""23005"": ""100""}","Cumberland","23005","FALSE","FALSE","America/New_York"
-"04092","43.69532","-70.35388","Westbrook","ME","Maine","TRUE","","18633","418.4","23005","Cumberland","{""23005"": ""100""}","Cumberland","23005","FALSE","FALSE","America/New_York"
-"04093","43.64281","-70.5377","Buxton","ME","Maine","TRUE","","8243","78.5","23031","York","{""23031"": ""100""}","York","23031","FALSE","FALSE","America/New_York"
-"04095","43.63562","-70.91523","West Newfield","ME","Maine","TRUE","","1042","13.9","23031","York","{""23031"": ""100""}","York","23031","FALSE","FALSE","America/New_York"
-"04096","43.79784","-70.17185","Yarmouth","ME","Maine","TRUE","","8529","245.7","23005","Cumberland","{""23005"": ""100""}","Cumberland","23005","FALSE","FALSE","America/New_York"
-"04097","43.85122","-70.23636","North Yarmouth","ME","Maine","TRUE","","3779","68.7","23005","Cumberland","{""23005"": ""100""}","Cumberland","23005","FALSE","FALSE","America/New_York"
-"04101","43.66239","-70.25838","Portland","ME","Maine","TRUE","","17236","3320.6","23005","Cumberland","{""23005"": ""100""}","Cumberland","23005","FALSE","FALSE","America/New_York"
-"04102","43.65872","-70.30614","Portland","ME","Maine","TRUE","","17612","1132.9","23005","Cumberland","{""23005"": ""100""}","Cumberland","23005","FALSE","FALSE","America/New_York"
-"04103","43.69379","-70.29088","Portland","ME","Maine","TRUE","","30787","1157.1","23005","Cumberland","{""23005"": ""100""}","Cumberland","23005","FALSE","FALSE","America/New_York"
-"04105","43.74754","-70.28249","Falmouth","ME","Maine","TRUE","","11876","156.4","23005","Cumberland","{""23005"": ""100""}","Cumberland","23005","FALSE","FALSE","America/New_York"
-"04106","43.63068","-70.28913","South Portland","ME","Maine","TRUE","","25906","813.5","23005","Cumberland","{""23005"": ""100""}","Cumberland","23005","FALSE","FALSE","America/New_York"
-"04107","43.58873","-70.23768","Cape Elizabeth","ME","Maine","TRUE","","9178","244.5","23005","Cumberland","{""23005"": ""100""}","Cumberland","23005","FALSE","FALSE","America/New_York"
-"04108","43.66057","-70.18901","Peaks Island","ME","Maine","TRUE","","867","281.1","23005","Cumberland","{""23005"": ""100""}","Cumberland","23005","FALSE","FALSE","America/New_York"
-"04109","43.66732","-70.19984","Portland","ME","Maine","TRUE","","70","21.3","23005","Cumberland","{""23005"": ""100""}","Cumberland","23005","FALSE","FALSE","America/New_York"
-"04110","43.75825","-70.19871","Cumberland Foreside","ME","Maine","TRUE","","1576","270.5","23005","Cumberland","{""23005"": ""100""}","Cumberland","23005","FALSE","FALSE","America/New_York"
-"04210","44.0849","-70.24922","Auburn","ME","Maine","TRUE","","23187","151.0","23001","Androscoggin","{""23001"": ""100""}","Androscoggin","23001","FALSE","FALSE","America/New_York"
-"04216","44.70684","-70.82149","Andover","ME","Maine","TRUE","","475","1.3","23017","Oxford","{""23017"": ""100""}","Oxford","23017","FALSE","FALSE","America/New_York"
-"04217","44.36776","-70.83319","Bethel","ME","Maine","TRUE","","3321","7.0","23017","Oxford","{""23017"": ""100""}","Oxford","23017","FALSE","FALSE","America/New_York"
-"04219","44.40924","-70.59286","Bryant Pond","ME","Maine","TRUE","","1416","8.9","23017","Oxford","{""23017"": ""100""}","Oxford","23017","FALSE","FALSE","America/New_York"
-"04220","44.33654","-70.35329","Buckfield","ME","Maine","TRUE","","3309","16.3","23017","Oxford","{""23017"": ""100""}","Oxford","23017","FALSE","FALSE","America/New_York"
-"04221","44.46028","-70.29981","Canton","ME","Maine","TRUE","","884","10.6","23017","Oxford","{""23017"": ""100""}","Oxford","23017","FALSE","FALSE","America/New_York"
-"04222","43.96439","-70.12955","Durham","ME","Maine","TRUE","","3944","39.8","23001","Androscoggin","{""23001"": ""100""}","Androscoggin","23001","FALSE","FALSE","America/New_York"
-"04224","44.58017","-70.40111","Dixfield","ME","Maine","TRUE","","2380","12.4","23017","Oxford","{""23017"": ""81.28"", ""23007"": ""18.72""}","Oxford|Franklin","23017|23007","FALSE","FALSE","America/New_York"
-"04226","44.60844","-70.69937","East Andover","ME","Maine","TRUE","","182","6.5","23017","Oxford","{""23017"": ""100""}","Oxford","23017","FALSE","FALSE","America/New_York"
-"04227","44.55721","-70.29763","East Dixfield","ME","Maine","TRUE","","112","75.4","23017","Oxford","{""23017"": ""100""}","Oxford","23017","FALSE","FALSE","America/New_York"
-"04228","44.43256","-70.11501","East Livermore","ME","Maine","TRUE","","0","0.0","23001","Androscoggin","{""23001"": ""100""}","Androscoggin","23001","FALSE","FALSE","America/New_York"
-"04231","44.26422","-70.88725","Stoneham","ME","Maine","TRUE","","272","3.1","23017","Oxford","{""23017"": ""100""}","Oxford","23017","FALSE","FALSE","America/New_York"
-"04234","44.62385","-70.19191","East Wilton","ME","Maine","TRUE","","40","47.1","23007","Franklin","{""23007"": ""100""}","Franklin","23007","FALSE","FALSE","America/New_York"
-"04236","44.19041","-70.14461","Greene","ME","Maine","TRUE","","4342","51.9","23001","Androscoggin","{""23001"": ""100""}","Androscoggin","23001","FALSE","FALSE","America/New_York"
-"04237","44.49665","-70.72564","Hanover","ME","Maine","TRUE","","174","9.5","23017","Oxford","{""23017"": ""100""}","Oxford","23017","FALSE","FALSE","America/New_York"
-"04238","44.21068","-70.38176","Hebron","ME","Maine","TRUE","","1784","30.8","23017","Oxford","{""23017"": ""100""}","Oxford","23017","FALSE","FALSE","America/New_York"
-"04239","44.53058","-70.20968","Jay","ME","Maine","TRUE","","4638","37.0","23007","Franklin","{""23007"": ""100""}","Franklin","23007","FALSE","FALSE","America/New_York"
-"04240","44.09148","-70.16807","Lewiston","ME","Maine","TRUE","","36095","408.1","23001","Androscoggin","{""23001"": ""100""}","Androscoggin","23001","FALSE","FALSE","America/New_York"
-"04250","44.02599","-70.11656","Lisbon","ME","Maine","TRUE","","4148","134.2","23001","Androscoggin","{""23001"": ""100""}","Androscoggin","23001","FALSE","FALSE","America/New_York"
-"04252","44.02706","-70.0596","Lisbon Falls","ME","Maine","TRUE","","4758","168.5","23001","Androscoggin","{""23001"": ""100""}","Androscoggin","23001","FALSE","FALSE","America/New_York"
-"04253","44.4079","-70.21503","Livermore","ME","Maine","TRUE","","2066","21.2","23001","Androscoggin","{""23001"": ""100""}","Androscoggin","23001","FALSE","FALSE","America/New_York"
-"04254","44.43248","-70.14274","Livermore Falls","ME","Maine","TRUE","","3156","62.1","23001","Androscoggin","{""23001"": ""100""}","Androscoggin","23001","FALSE","FALSE","America/New_York"
-"04255","44.33622","-70.67047","Greenwood","ME","Maine","TRUE","","536","5.5","23017","Oxford","{""23017"": ""100""}","Oxford","23017","FALSE","FALSE","America/New_York"
-"04256","44.10237","-70.40898","Mechanic Falls","ME","Maine","TRUE","","2980","102.2","23001","Androscoggin","{""23001"": ""100""}","Androscoggin","23001","FALSE","FALSE","America/New_York"
-"04257","44.57347","-70.51358","Mexico","ME","Maine","TRUE","","2628","43.5","23017","Oxford","{""23017"": ""100""}","Oxford","23017","FALSE","FALSE","America/New_York"
-"04258","44.14833","-70.33787","Minot","ME","Maine","TRUE","","2587","33.7","23001","Androscoggin","{""23001"": ""100""}","Androscoggin","23001","FALSE","FALSE","America/New_York"
-"04259","44.22836","-70.00856","Monmouth","ME","Maine","TRUE","","3288","43.2","23011","Kennebec","{""23011"": ""100""}","Kennebec","23011","FALSE","FALSE","America/New_York"
-"04260","43.96394","-70.2959","New Gloucester","ME","Maine","TRUE","","5738","47.0","23005","Cumberland","{""23005"": ""100""}","Cumberland","23005","FALSE","FALSE","America/New_York"
-"04261","44.56461","-70.92003","Newry","ME","Maine","TRUE","","343","0.6","23017","Oxford","{""23017"": ""100""}","Oxford","23017","FALSE","FALSE","America/New_York"
-"04263","44.29481","-70.13062","Leeds","ME","Maine","TRUE","","2215","21.4","23001","Androscoggin","{""23001"": ""100""}","Androscoggin","23001","FALSE","FALSE","America/New_York"
-"04265","44.28444","-70.04639","North Monmouth","ME","Maine","TRUE","","958","52.4","23011","Kennebec","{""23011"": ""100""}","Kennebec","23011","FALSE","FALSE","America/New_York"
-"04267","44.2104","-70.7902","North Waterford","ME","Maine","TRUE","","64","11.9","23017","Oxford","{""23017"": ""100""}","Oxford","23017","FALSE","FALSE","America/New_York"
-"04268","44.22918","-70.60656","Norway","ME","Maine","TRUE","","4965","42.0","23017","Oxford","{""23017"": ""100""}","Oxford","23017","FALSE","FALSE","America/New_York"
-"04270","44.1124","-70.51561","Oxford","ME","Maine","TRUE","","6350","31.2","23017","Oxford","{""23017"": ""100""}","Oxford","23017","FALSE","FALSE","America/New_York"
-"04271","44.26366","-70.49813","Paris","ME","Maine","TRUE","","0","0.0","23017","Oxford","{""23017"": ""100""}","Oxford","23017","FALSE","FALSE","America/New_York"
-"04274","44.0461","-70.38943","Poland","ME","Maine","TRUE","","5588","51.4","23001","Androscoggin","{""23001"": ""100""}","Androscoggin","23001","FALSE","FALSE","America/New_York"
-"04275","44.68968","-70.63731","Roxbury","ME","Maine","TRUE","","437","1.8","23017","Oxford","{""23017"": ""100""}","Oxford","23017","FALSE","FALSE","America/New_York"
-"04276","44.53469","-70.61541","Rumford","ME","Maine","TRUE","","5719","32.2","23017","Oxford","{""23017"": ""100""}","Oxford","23017","FALSE","FALSE","America/New_York"
-"04280","44.12152","-70.06153","Sabattus","ME","Maine","TRUE","","6752","62.6","23001","Androscoggin","{""23001"": ""100""}","Androscoggin","23001","FALSE","FALSE","America/New_York"
-"04281","44.24443","-70.48828","South Paris","ME","Maine","TRUE","","5111","48.6","23017","Oxford","{""23017"": ""100""}","Oxford","23017","FALSE","FALSE","America/New_York"
-"04282","44.26707","-70.24284","Turner","ME","Maine","TRUE","","5784","37.7","23001","Androscoggin","{""23001"": ""100""}","Androscoggin","23001","FALSE","FALSE","America/New_York"
-"04284","44.35129","-70.06611","Wayne","ME","Maine","TRUE","","1026","23.4","23011","Kennebec","{""23011"": ""100""}","Kennebec","23011","FALSE","FALSE","America/New_York"
-"04285","44.70329","-70.44621","Weld","ME","Maine","TRUE","","383","2.3","23007","Franklin","{""23007"": ""100""}","Franklin","23007","FALSE","FALSE","America/New_York"
-"04286","44.40146","-70.86511","West Bethel","ME","Maine","TRUE","","51","351.2","23017","Oxford","{""23017"": ""100""}","Oxford","23017","FALSE","FALSE","America/New_York"
-"04287","44.05725","-69.96819","Bowdoin","ME","Maine","TRUE","","3342","29.0","23023","Sagadahoc","{""23023"": ""100""}","Sagadahoc","23023","FALSE","FALSE","America/New_York"
-"04289","44.32108","-70.53379","West Paris","ME","Maine","TRUE","","2339","37.2","23017","Oxford","{""23017"": ""100""}","Oxford","23017","FALSE","FALSE","America/New_York"
-"04290","44.47354","-70.45058","Peru","ME","Maine","TRUE","","1386","11.5","23017","Oxford","{""23017"": ""100""}","Oxford","23017","FALSE","FALSE","America/New_York"
-"04292","44.37404","-70.44688","Sumner","ME","Maine","TRUE","","1114","9.7","23017","Oxford","{""23017"": ""100""}","Oxford","23017","FALSE","FALSE","America/New_York"
-"04294","44.62897","-70.26955","Wilton","ME","Maine","TRUE","","3963","26.5","23007","Franklin","{""23007"": ""100""}","Franklin","23007","FALSE","FALSE","America/New_York"
-"04330","44.36394","-69.73739","Augusta","ME","Maine","TRUE","","25712","84.8","23011","Kennebec","{""23011"": ""100""}","Kennebec","23011","FALSE","FALSE","America/New_York"
-"04342","44.07942","-69.73938","Dresden","ME","Maine","TRUE","","1673","21.2","23015","Lincoln","{""23015"": ""100""}","Lincoln","23015","FALSE","FALSE","America/New_York"
-"04343","44.32884","-69.89163","East Winthrop","ME","Maine","TRUE","","0","0.0","23011","Kennebec","{""23011"": ""100""}","Kennebec","23011","FALSE","FALSE","America/New_York"
-"04344","44.25881","-69.82131","Farmingdale","ME","Maine","TRUE","","2906","99.9","23011","Kennebec","{""23011"": ""100""}","Kennebec","23011","FALSE","FALSE","America/New_York"
-"04345","44.19822","-69.78479","Gardiner","ME","Maine","TRUE","","11421","61.2","23011","Kennebec","{""23011"": ""99.9"", ""23023"": ""0.1""}","Kennebec|Sagadahoc","23011|23023","FALSE","FALSE","America/New_York"
-"04346","44.23469","-69.75061","Randolph","ME","Maine","TRUE","","1921","347.4","23011","Kennebec","{""23011"": ""100""}","Kennebec","23011","FALSE","FALSE","America/New_York"
-"04347","44.29046","-69.81412","Hallowell","ME","Maine","TRUE","","2445","161.0","23011","Kennebec","{""23011"": ""100""}","Kennebec","23011","FALSE","FALSE","America/New_York"
-"04348","44.21522","-69.49919","Jefferson","ME","Maine","TRUE","","3169","16.3","23015","Lincoln","{""23015"": ""100""}","Lincoln","23015","FALSE","FALSE","America/New_York"
-"04349","44.4373","-70.06853","Kents Hill","ME","Maine","TRUE","","1080","14.2","23011","Kennebec","{""23011"": ""100""}","Kennebec","23011","FALSE","FALSE","America/New_York"
-"04350","44.16247","-69.93987","Litchfield","ME","Maine","TRUE","","3622","37.7","23011","Kennebec","{""23011"": ""100""}","Kennebec","23011","FALSE","FALSE","America/New_York"
-"04351","44.33132","-69.86104","Manchester","ME","Maine","TRUE","","2539","46.1","23011","Kennebec","{""23011"": ""100""}","Kennebec","23011","FALSE","FALSE","America/New_York"
-"04352","44.4656","-69.96094","Mount Vernon","ME","Maine","TRUE","","1478","15.1","23011","Kennebec","{""23011"": ""100""}","Kennebec","23011","FALSE","FALSE","America/New_York"
-"04353","44.20527","-69.61249","Whitefield","ME","Maine","TRUE","","2389","19.7","23015","Lincoln","{""23015"": ""100""}","Lincoln","23015","FALSE","FALSE","America/New_York"
-"04354","44.39603","-69.42707","Palermo","ME","Maine","TRUE","","1455","13.9","23027","Waldo","{""23027"": ""100""}","Waldo","23027","FALSE","FALSE","America/New_York"
-"04355","44.38211","-69.94907","Readfield","ME","Maine","TRUE","","2556","33.7","23011","Kennebec","{""23011"": ""100""}","Kennebec","23011","FALSE","FALSE","America/New_York"
-"04357","44.12371","-69.82882","Richmond","ME","Maine","TRUE","","3399","43.1","23023","Sagadahoc","{""23023"": ""100""}","Sagadahoc","23023","FALSE","FALSE","America/New_York"
-"04358","44.41818","-69.53288","South China","ME","Maine","TRUE","","4156","32.2","23011","Kennebec","{""23011"": ""100""}","Kennebec","23011","FALSE","FALSE","America/New_York"
-"04359","44.17747","-69.76061","South Gardiner","ME","Maine","TRUE","","330","176.7","23011","Kennebec","{""23011"": ""100""}","Kennebec","23011","FALSE","FALSE","America/New_York"
-"04360","44.54757","-70.00297","Vienna","ME","Maine","TRUE","","468","7.5","23011","Kennebec","{""23011"": ""100""}","Kennebec","23011","FALSE","FALSE","America/New_York"
-"04363","44.31109","-69.57805","Windsor","ME","Maine","TRUE","","2592","28.9","23011","Kennebec","{""23011"": ""100""}","Kennebec","23011","FALSE","FALSE","America/New_York"
-"04364","44.31155","-69.96236","Winthrop","ME","Maine","TRUE","","5915","74.9","23011","Kennebec","{""23011"": ""100""}","Kennebec","23011","FALSE","FALSE","America/New_York"
-"04401","44.84923","-68.84479","Bangor","ME","Maine","TRUE","","44536","171.6","23019","Penobscot","{""23019"": ""100""}","Penobscot","23019","FALSE","FALSE","America/New_York"
-"04406","45.23454","-69.56989","Abbot","ME","Maine","TRUE","","817","3.5","23021","Piscataquis","{""23021"": ""100""}","Piscataquis","23021","FALSE","FALSE","America/New_York"
-"04408","44.99135","-68.23072","Aurora","ME","Maine","TRUE","","167","0.5","23009","Hancock","{""23009"": ""100""}","Hancock","23009","FALSE","FALSE","America/New_York"
-"04410","45.08821","-68.90696","Bradford","ME","Maine","TRUE","","1154","10.8","23019","Penobscot","{""23019"": ""100""}","Penobscot","23019","FALSE","FALSE","America/New_York"
-"04411","44.88125","-68.57612","Bradley","ME","Maine","TRUE","","1715","15.6","23019","Penobscot","{""23019"": ""100""}","Penobscot","23019","FALSE","FALSE","America/New_York"
-"04412","44.78351","-68.73513","Brewer","ME","Maine","TRUE","","9090","230.3","23019","Penobscot","{""23019"": ""100""}","Penobscot","23019","FALSE","FALSE","America/New_York"
-"04413","45.55075","-67.7436","Brookton","ME","Maine","TRUE","","195","1.5","23029","Washington","{""23029"": ""100""}","Washington","23029","FALSE","FALSE","America/New_York"
-"04414","45.44464","-69.10659","Brownville","ME","Maine","TRUE","","1248","2.0","23021","Piscataquis","{""23021"": ""100""}","Piscataquis","23021","FALSE","FALSE","America/New_York"
-"04415","45.38263","-69.06191","Brownville Junction","ME","Maine","TRUE","","317","77.3","23021","Piscataquis","{""23021"": ""100""}","Piscataquis","23021","FALSE","FALSE","America/New_York"
-"04416","44.62724","-68.75286","Bucksport","ME","Maine","TRUE","","5541","37.0","23009","Hancock","{""23009"": ""100""}","Hancock","23009","FALSE","FALSE","America/New_York"
-"04417","45.23486","-68.37908","Burlington","ME","Maine","TRUE","","361","2.2","23019","Penobscot","{""23019"": ""100""}","Penobscot","23019","FALSE","FALSE","America/New_York"
-"04418","45.08638","-68.4722","Greenbush","ME","Maine","TRUE","","1729","4.5","23019","Penobscot","{""23019"": ""100""}","Penobscot","23019","FALSE","FALSE","America/New_York"
-"04419","44.79688","-69.0314","Carmel","ME","Maine","TRUE","","2799","29.6","23019","Penobscot","{""23019"": ""100""}","Penobscot","23019","FALSE","FALSE","America/New_York"
-"04421","44.4111","-68.79524","Castine","ME","Maine","TRUE","","1117","55.5","23009","Hancock","{""23009"": ""100""}","Hancock","23009","FALSE","FALSE","America/New_York"
-"04422","45.07101","-69.03409","Charleston","ME","Maine","TRUE","","1514","14.4","23019","Penobscot","{""23019"": ""100""}","Penobscot","23019","FALSE","FALSE","America/New_York"
-"04424","45.67054","-67.86814","Danforth","ME","Maine","TRUE","","857","3.1","23029","Washington","{""23029"": ""71.57"", ""23003"": ""28.43""}","Washington|Aroostook","23029|23003","FALSE","FALSE","America/New_York"
-"04426","45.21958","-69.18354","Dover Foxcroft","ME","Maine","TRUE","","4524","11.3","23021","Piscataquis","{""23021"": ""100""}","Piscataquis","23021","FALSE","FALSE","America/New_York"
-"04427","44.9806","-69.01076","Corinth","ME","Maine","TRUE","","2803","26.9","23019","Penobscot","{""23019"": ""100""}","Penobscot","23019","FALSE","FALSE","America/New_York"
-"04428","44.80645","-68.55592","Eddington","ME","Maine","TRUE","","3150","20.4","23019","Penobscot","{""23019"": ""100""}","Penobscot","23019","FALSE","FALSE","America/New_York"
-"04429","44.72076","-68.61643","Holden","ME","Maine","TRUE","","4762","26.1","23019","Penobscot","{""23019"": ""65.21"", ""23009"": ""34.79""}","Penobscot|Hancock","23019|23009","FALSE","FALSE","America/New_York"
-"04430","45.63921","-68.58517","East Millinocket","ME","Maine","TRUE","","1682","72.0","23019","Penobscot","{""23019"": ""100""}","Penobscot","23019","FALSE","FALSE","America/New_York"
-"04431","44.56207","-68.67037","East Orland","ME","Maine","TRUE","","37","45.7","23009","Hancock","{""23009"": ""100""}","Hancock","23009","FALSE","FALSE","America/New_York"
-"04434","44.78536","-69.13372","Etna","ME","Maine","TRUE","","1051","16.4","23019","Penobscot","{""23019"": ""100""}","Penobscot","23019","FALSE","FALSE","America/New_York"
-"04435","44.96435","-69.13539","Exeter","ME","Maine","TRUE","","1093","10.9","23019","Penobscot","{""23019"": ""100""}","Penobscot","23019","FALSE","FALSE","America/New_York"
-"04438","44.59856","-68.91904","Frankfort","ME","Maine","TRUE","","1045","16.4","23027","Waldo","{""23027"": ""100""}","Waldo","23027","FALSE","FALSE","America/New_York"
-"04441","45.89602","-69.47534","Greenville","ME","Maine","TRUE","","1613","1.1","23021","Piscataquis","{""23021"": ""100""}","Piscataquis","23021","FALSE","FALSE","America/New_York"
-"04442","45.47946","-69.69393","Greenville Junction","ME","Maine","TRUE","","14","0.1","23021","Piscataquis","{""23021"": ""100""}","Piscataquis","23021","FALSE","FALSE","America/New_York"
-"04443","45.22433","-69.39898","Guilford","ME","Maine","TRUE","","2195","6.2","23021","Piscataquis","{""23021"": ""100""}","Piscataquis","23021","FALSE","FALSE","America/New_York"
-"04444","44.72594","-68.94584","Hampden","ME","Maine","TRUE","","8936","50.0","23019","Penobscot","{""23019"": ""100""}","Penobscot","23019","FALSE","FALSE","America/New_York"
-"04448","45.31869","-68.70995","Howland","ME","Maine","TRUE","","1436","5.0","23019","Penobscot","{""23019"": ""100""}","Penobscot","23019","FALSE","FALSE","America/New_York"
-"04449","44.99775","-68.88397","Hudson","ME","Maine","TRUE","","1369","14.2","23019","Penobscot","{""23019"": ""100""}","Penobscot","23019","FALSE","FALSE","America/New_York"
-"04450","44.91605","-68.92801","Kenduskeag","ME","Maine","TRUE","","1231","28.2","23019","Penobscot","{""23019"": ""100""}","Penobscot","23019","FALSE","FALSE","America/New_York"
-"04451","45.61088","-68.21044","Kingman","ME","Maine","TRUE","","226","1.2","23019","Penobscot","{""23019"": ""69.5"", ""23003"": ""30.5""}","Penobscot|Aroostook","23019|23003","FALSE","FALSE","America/New_York"
-"04453","45.1719","-68.78509","Lagrange","ME","Maine","TRUE","","749","4.3","23019","Penobscot","{""23019"": ""100""}","Penobscot","23019","FALSE","FALSE","America/New_York"
-"04454","45.55588","-67.56379","Lambert Lake","ME","Maine","TRUE","","24","0.2","23029","Washington","{""23029"": ""100""}","Washington","23029","FALSE","FALSE","America/New_York"
-"04455","45.32332","-68.27501","Lee","ME","Maine","TRUE","","736","3.4","23019","Penobscot","{""23019"": ""100""}","Penobscot","23019","FALSE","FALSE","America/New_York"
-"04456","44.88647","-68.99773","Levant","ME","Maine","TRUE","","2974","38.2","23019","Penobscot","{""23019"": ""100""}","Penobscot","23019","FALSE","FALSE","America/New_York"
-"04457","45.41631","-68.47826","Lincoln","ME","Maine","TRUE","","5734","13.4","23019","Penobscot","{""23019"": ""100""}","Penobscot","23019","FALSE","FALSE","America/New_York"
-"04459","45.5941","-68.3406","Mattawamkeag","ME","Maine","TRUE","","903","4.3","23019","Penobscot","{""23019"": ""88.87"", ""23003"": ""11.13""}","Penobscot|Aroostook","23019|23003","FALSE","FALSE","America/New_York"
-"04460","45.6938","-68.5459","Medway","ME","Maine","TRUE","","1297","4.7","23019","Penobscot","{""23019"": ""99.01"", ""23003"": ""0.99""}","Penobscot|Aroostook","23019|23003","FALSE","FALSE","America/New_York"
-"04461","44.96416","-68.56865","Milford","ME","Maine","TRUE","","2991","26.2","23019","Penobscot","{""23019"": ""100""}","Penobscot","23019","FALSE","FALSE","America/New_York"
-"04462","45.93691","-68.98088","Millinocket","ME","Maine","TRUE","","4618","1.5","23019","Penobscot","{""23019"": ""98.97"", ""23021"": ""1.03""}","Penobscot|Piscataquis","23019|23021","FALSE","FALSE","America/New_York"
-"04463","45.27526","-68.90608","Milo","ME","Maine","TRUE","","3196","8.4","23021","Piscataquis","{""23021"": ""100""}","Piscataquis","23021","FALSE","FALSE","America/New_York"
-"04464","45.41868","-69.39805","Monson","ME","Maine","TRUE","","505","1.0","23021","Piscataquis","{""23021"": ""100""}","Piscataquis","23021","FALSE","FALSE","America/New_York"
-"04468","45.02316","-68.72756","Old Town","ME","Maine","TRUE","","9073","29.4","23019","Penobscot","{""23019"": ""100""}","Penobscot","23019","FALSE","FALSE","America/New_York"
-"04469","44.90092","-68.66829","Orono","ME","Maine","TRUE","","2591","4152.7","23019","Penobscot","{""23019"": ""100""}","Penobscot","23019","FALSE","FALSE","America/New_York"
-"04471","45.89108","-67.84714","Orient","ME","Maine","TRUE","","623","2.5","23003","Aroostook","{""23003"": ""100""}","Aroostook","23003","FALSE","FALSE","America/New_York"
-"04472","44.57351","-68.6773","Orland","ME","Maine","TRUE","","2022","16.7","23009","Hancock","{""23009"": ""100""}","Hancock","23009","FALSE","FALSE","America/New_York"
-"04473","44.88648","-68.71719","Orono","ME","Maine","TRUE","","8185","176.2","23019","Penobscot","{""23019"": ""100""}","Penobscot","23019","FALSE","FALSE","America/New_York"
-"04474","44.71498","-68.77898","Orrington","ME","Maine","TRUE","","3671","56.7","23019","Penobscot","{""23019"": ""100""}","Penobscot","23019","FALSE","FALSE","America/New_York"
-"04475","45.18152","-68.58717","Passadumkeag","ME","Maine","TRUE","","568","9.1","23019","Penobscot","{""23019"": ""100""}","Penobscot","23019","FALSE","FALSE","America/New_York"
-"04476","44.47478","-68.7053","Penobscot","ME","Maine","TRUE","","1225","11.9","23009","Hancock","{""23009"": ""100""}","Hancock","23009","FALSE","FALSE","America/New_York"
-"04478","45.86407","-69.87681","Rockwood","ME","Maine","TRUE","","384","0.4","23025","Somerset","{""23025"": ""100""}","Somerset","23025","FALSE","FALSE","America/New_York"
-"04479","45.12757","-69.30704","Sangerville","ME","Maine","TRUE","","1423","14.3","23021","Piscataquis","{""23021"": ""100""}","Piscataquis","23021","FALSE","FALSE","America/New_York"
-"04481","45.24655","-69.10216","Sebec","ME","Maine","TRUE","","530","6.6","23021","Piscataquis","{""23021"": ""100""}","Piscataquis","23021","FALSE","FALSE","America/New_York"
-"04485","45.36098","-69.62022","Shirley Mills","ME","Maine","TRUE","","169","1.5","23021","Piscataquis","{""23021"": ""100""}","Piscataquis","23021","FALSE","FALSE","America/New_York"
-"04487","45.39039","-68.10218","Springfield","ME","Maine","TRUE","","869","1.5","23019","Penobscot","{""23019"": ""100""}","Penobscot","23019","FALSE","FALSE","America/New_York"
-"04488","44.87586","-69.11143","Stetson","ME","Maine","TRUE","","1559","17.2","23019","Penobscot","{""23019"": ""100""}","Penobscot","23019","FALSE","FALSE","America/New_York"
-"04489","44.91017","-68.69005","Stillwater","ME","Maine","TRUE","","266","508.1","23019","Penobscot","{""23019"": ""100""}","Penobscot","23019","FALSE","FALSE","America/New_York"
-"04490","45.43358","-67.85571","Topsfield","ME","Maine","TRUE","","268","0.4","23029","Washington","{""23029"": ""100""}","Washington","23029","FALSE","FALSE","America/New_York"
-"04491","45.57068","-67.4697","Vanceboro","ME","Maine","TRUE","","144","4.3","23029","Washington","{""23029"": ""100""}","Washington","23029","FALSE","FALSE","America/New_York"
-"04492","45.3491","-67.67788","Waite","ME","Maine","TRUE","","123","1.0","23029","Washington","{""23029"": ""100""}","Washington","23029","FALSE","FALSE","America/New_York"
-"04493","45.23786","-68.5338","West Enfield","ME","Maine","TRUE","","1841","10.6","23019","Penobscot","{""23019"": ""100""}","Penobscot","23019","FALSE","FALSE","America/New_York"
-"04495","45.45459","-68.32986","Winn","ME","Maine","TRUE","","442","3.9","23019","Penobscot","{""23019"": ""100""}","Penobscot","23019","FALSE","FALSE","America/New_York"
-"04496","44.6584","-68.9119","Winterport","ME","Maine","TRUE","","3931","42.7","23027","Waldo","{""23027"": ""100""}","Waldo","23027","FALSE","FALSE","America/New_York"
-"04497","45.76367","-68.05134","Wytopitlock","ME","Maine","TRUE","","304","0.5","23003","Aroostook","{""23003"": ""88.17"", ""23019"": ""11.83""}","Aroostook|Penobscot","23003|23019","FALSE","FALSE","America/New_York"
-"04530","43.89158","-69.8306","Bath","ME","Maine","TRUE","","10922","146.5","23023","Sagadahoc","{""23023"": ""100""}","Sagadahoc","23023","FALSE","FALSE","America/New_York"
-"04535","44.08776","-69.63437","Alna","ME","Maine","TRUE","","874","16.1","23015","Lincoln","{""23015"": ""100""}","Lincoln","23015","FALSE","FALSE","America/New_York"
-"04537","43.89673","-69.62343","Boothbay","ME","Maine","TRUE","","2042","47.0","23015","Lincoln","{""23015"": ""100""}","Lincoln","23015","FALSE","FALSE","America/New_York"
-"04538","43.85622","-69.62968","Boothbay Harbor","ME","Maine","TRUE","","1907","151.0","23015","Lincoln","{""23015"": ""100""}","Lincoln","23015","FALSE","FALSE","America/New_York"
-"04539","43.96424","-69.50668","Bristol","ME","Maine","TRUE","","1124","26.6","23015","Lincoln","{""23015"": ""100""}","Lincoln","23015","FALSE","FALSE","America/New_York"
-"04541","43.89571","-69.47667","Chamberlain","ME","Maine","TRUE","","43","9.0","23015","Lincoln","{""23015"": ""100""}","Lincoln","23015","FALSE","FALSE","America/New_York"
-"04543","44.03446","-69.49212","Damariscotta","ME","Maine","TRUE","","2037","63.3","23015","Lincoln","{""23015"": ""100""}","Lincoln","23015","FALSE","FALSE","America/New_York"
-"04544","43.84552","-69.58687","East Boothbay","ME","Maine","TRUE","","675","80.4","23015","Lincoln","{""23015"": ""100""}","Lincoln","23015","FALSE","FALSE","America/New_York"
-"04547","43.99388","-69.32779","Friendship","ME","Maine","TRUE","","1118","30.6","23013","Knox","{""23013"": ""100""}","Knox","23013","FALSE","FALSE","America/New_York"
-"04548","43.81499","-69.74804","Georgetown","ME","Maine","TRUE","","954","19.8","23023","Sagadahoc","{""23023"": ""100""}","Sagadahoc","23023","FALSE","FALSE","America/New_York"
-"04551","44.00648","-69.42701","Bremen","ME","Maine","TRUE","","788","18.5","23015","Lincoln","{""23015"": ""100""}","Lincoln","23015","FALSE","FALSE","America/New_York"
-"04553","44.04786","-69.57146","Newcastle","ME","Maine","TRUE","","1750","23.3","23015","Lincoln","{""23015"": ""100""}","Lincoln","23015","FALSE","FALSE","America/New_York"
-"04554","43.86575","-69.50557","New Harbor","ME","Maine","TRUE","","846","76.3","23015","Lincoln","{""23015"": ""100""}","Lincoln","23015","FALSE","FALSE","America/New_York"
-"04555","44.10599","-69.47687","Nobleboro","ME","Maine","TRUE","","1713","34.9","23015","Lincoln","{""23015"": ""100""}","Lincoln","23015","FALSE","FALSE","America/New_York"
-"04556","43.96868","-69.6231","Edgecomb","ME","Maine","TRUE","","1111","23.7","23015","Lincoln","{""23015"": ""100""}","Lincoln","23015","FALSE","FALSE","America/New_York"
-"04558","43.89873","-69.51577","Pemaquid","ME","Maine","TRUE","","144","13.5","23015","Lincoln","{""23015"": ""100""}","Lincoln","23015","FALSE","FALSE","America/New_York"
-"04562","43.78757","-69.82764","Phippsburg","ME","Maine","TRUE","","2101","28.2","23023","Sagadahoc","{""23023"": ""100""}","Sagadahoc","23023","FALSE","FALSE","America/New_York"
-"04563","44.0151","-69.25655","Cushing","ME","Maine","TRUE","","1512","30.4","23013","Knox","{""23013"": ""100""}","Knox","23013","FALSE","FALSE","America/New_York"
-"04564","43.93503","-69.46469","Round Pond","ME","Maine","TRUE","","590","26.2","23015","Lincoln","{""23015"": ""100""}","Lincoln","23015","FALSE","FALSE","America/New_York"
-"04568","43.88591","-69.5599","South Bristol","ME","Maine","TRUE","","418","32.5","23015","Lincoln","{""23015"": ""100""}","Lincoln","23015","FALSE","FALSE","America/New_York"
-"04570","43.80849","-69.6307","Squirrel Island","ME","Maine","TRUE","","0","0.0","23015","Lincoln","{""23015"": ""100""}","Lincoln","23015","FALSE","FALSE","America/New_York"
-"04571","43.89733","-69.67365","Trevett","ME","Maine","TRUE","","406","74.0","23015","Lincoln","{""23015"": ""100""}","Lincoln","23015","FALSE","FALSE","America/New_York"
-"04572","44.10984","-69.36956","Waldoboro","ME","Maine","TRUE","","5009","27.0","23015","Lincoln","{""23015"": ""100""}","Lincoln","23015","FALSE","FALSE","America/New_York"
-"04573","43.95136","-69.55374","Walpole","ME","Maine","TRUE","","491","23.3","23015","Lincoln","{""23015"": ""100""}","Lincoln","23015","FALSE","FALSE","America/New_York"
-"04574","44.27335","-69.39127","Washington","ME","Maine","TRUE","","1447","14.7","23013","Knox","{""23013"": ""100""}","Knox","23013","FALSE","FALSE","America/New_York"
-"04575","43.85273","-69.662","West Boothbay Harbor","ME","Maine","TRUE","","77","45.2","23015","Lincoln","{""23015"": ""100""}","Lincoln","23015","FALSE","FALSE","America/New_York"
-"04576","43.82228","-69.66695","Southport","ME","Maine","TRUE","","514","38.9","23015","Lincoln","{""23015"": ""100""}","Lincoln","23015","FALSE","FALSE","America/New_York"
-"04578","43.98135","-69.6926","Wiscasset","ME","Maine","TRUE","","4357","50.3","23015","Lincoln","{""23015"": ""100""}","Lincoln","23015","FALSE","FALSE","America/New_York"
-"04579","43.96217","-69.7687","Woolwich","ME","Maine","TRUE","","3105","34.2","23023","Sagadahoc","{""23023"": ""100""}","Sagadahoc","23023","FALSE","FALSE","America/New_York"
-"04605","44.67483","-68.41713","Ellsworth","ME","Maine","TRUE","","14137","19.2","23009","Hancock","{""23009"": ""100""}","Hancock","23009","FALSE","FALSE","America/New_York"
-"04606","44.57718","-67.70304","Addison","ME","Maine","TRUE","","1200","10.9","23029","Washington","{""23029"": ""100""}","Washington","23029","FALSE","FALSE","America/New_York"
-"04607","44.48263","-68.05651","Gouldsboro","ME","Maine","TRUE","","1150","8.9","23009","Hancock","{""23009"": ""100""}","Hancock","23009","FALSE","FALSE","America/New_York"
-"04609","44.38521","-68.27112","Bar Harbor","ME","Maine","TRUE","","5470","50.0","23009","Hancock","{""23009"": ""100""}","Hancock","23009","FALSE","FALSE","America/New_York"
-"04611","44.48771","-67.59633","Beals","ME","Maine","TRUE","","384","26.4","23029","Washington","{""23029"": ""100""}","Washington","23029","FALSE","FALSE","America/New_York"
-"04612","44.25998","-68.37314","Bernard","ME","Maine","TRUE","","551","38.8","23009","Hancock","{""23009"": ""100""}","Hancock","23009","FALSE","FALSE","America/New_York"
-"04613","44.37799","-68.03415","Birch Harbor","ME","Maine","TRUE","","86","17.8","23009","Hancock","{""23009"": ""100""}","Hancock","23009","FALSE","FALSE","America/New_York"
-"04614","44.41784","-68.58452","Blue Hill","ME","Maine","TRUE","","2660","17.1","23009","Hancock","{""23009"": ""100""}","Hancock","23009","FALSE","FALSE","America/New_York"
-"04616","44.28346","-68.57069","Brooklin","ME","Maine","TRUE","","684","14.7","23009","Hancock","{""23009"": ""100""}","Hancock","23009","FALSE","FALSE","America/New_York"
-"04617","44.36621","-68.73678","Brooksville","ME","Maine","TRUE","","826","12.5","23009","Hancock","{""23009"": ""100""}","Hancock","23009","FALSE","FALSE","America/New_York"
-"04619","45.134","-67.224","Calais","ME","Maine","TRUE","","2993","33.7","23029","Washington","{""23029"": ""100""}","Washington","23029","FALSE","FALSE","America/New_York"
-"04622","44.757","-67.98458","Cherryfield","ME","Maine","TRUE","","1033","1.6","23029","Washington","{""23029"": ""95.47"", ""23009"": ""4.53""}","Washington|Hancock","23029|23009","FALSE","FALSE","America/New_York"
-"04623","44.72804","-67.72818","Columbia Falls","ME","Maine","TRUE","","870","2.5","23029","Washington","{""23029"": ""100""}","Washington","23029","FALSE","FALSE","America/New_York"
-"04624","44.42283","-67.98706","Corea","ME","Maine","TRUE","","167","11.3","23009","Hancock","{""23009"": ""100""}","Hancock","23009","FALSE","FALSE","America/New_York"
-"04625","44.2513","-68.26048","Cranberry Isles","ME","Maine","TRUE","","66","12.1","23009","Hancock","{""23009"": ""100""}","Hancock","23009","FALSE","FALSE","America/New_York"
-"04626","44.68494","-67.22169","Cutler","ME","Maine","TRUE","","508","4.2","23029","Washington","{""23029"": ""100""}","Washington","23029","FALSE","FALSE","America/New_York"
-"04627","44.22294","-68.65275","Deer Isle","ME","Maine","TRUE","","1584","28.5","23009","Hancock","{""23009"": ""100""}","Hancock","23009","FALSE","FALSE","America/New_York"
-"04628","44.87152","-67.26987","Dennysville","ME","Maine","TRUE","","689","3.1","23029","Washington","{""23029"": ""100""}","Washington","23029","FALSE","FALSE","America/New_York"
-"04629","44.42822","-68.5176","East Blue Hill","ME","Maine","TRUE","","0","0.0","23009","Hancock","{""23009"": ""100""}","Hancock","23009","FALSE","FALSE","America/New_York"
-"04630","44.8373","-67.4583","East Machias","ME","Maine","TRUE","","1412","6.2","23029","Washington","{""23029"": ""100""}","Washington","23029","FALSE","FALSE","America/New_York"
-"04631","44.9131","-67.01792","Eastport","ME","Maine","TRUE","","1326","140.0","23029","Washington","{""23029"": ""100""}","Washington","23029","FALSE","FALSE","America/New_York"
-"04634","44.64894","-68.22041","Franklin","ME","Maine","TRUE","","1803","6.6","23009","Hancock","{""23009"": ""100""}","Hancock","23009","FALSE","FALSE","America/New_York"
-"04635","44.14299","-68.34483","Frenchboro","ME","Maine","TRUE","","13","1.1","23009","Hancock","{""23009"": ""100""}","Hancock","23009","FALSE","FALSE","America/New_York"
-"04637","45.19615","-67.8076","Grand Lake Stream","ME","Maine","TRUE","","161","0.7","23029","Washington","{""23029"": ""100""}","Washington","23029","FALSE","FALSE","America/New_York"
-"04640","44.53848","-68.30374","Hancock","ME","Maine","TRUE","","2140","29.8","23009","Hancock","{""23009"": ""100""}","Hancock","23009","FALSE","FALSE","America/New_York"
-"04642","44.33383","-68.80434","Harborside","ME","Maine","TRUE","","110","7.5","23009","Hancock","{""23009"": ""100""}","Hancock","23009","FALSE","FALSE","America/New_York"
-"04643","44.57913","-67.80571","Harrington","ME","Maine","TRUE","","1031","18.7","23029","Washington","{""23029"": ""100""}","Washington","23029","FALSE","FALSE","America/New_York"
-"04644","44.41384","-68.25207","Hulls Cove","ME","Maine","TRUE","","0","0.0","23009","Hancock","{""23009"": ""100""}","Hancock","23009","FALSE","FALSE","America/New_York"
-"04645","44.05408","-68.6282","Isle Au Haut","ME","Maine","TRUE","","20","0.6","23013","Knox","{""23013"": ""100""}","Knox","23013","FALSE","FALSE","America/New_York"
-"04646","44.25555","-68.22168","Islesford","ME","Maine","TRUE","","68","24.8","23009","Hancock","{""23009"": ""100""}","Hancock","23009","FALSE","FALSE","America/New_York"
-"04648","44.66395","-67.59028","Jonesboro","ME","Maine","TRUE","","745","8.4","23029","Washington","{""23029"": ""100""}","Washington","23029","FALSE","FALSE","America/New_York"
-"04649","44.56605","-67.5817","Jonesport","ME","Maine","TRUE","","1270","17.2","23029","Washington","{""23029"": ""100""}","Washington","23029","FALSE","FALSE","America/New_York"
-"04650","44.2849","-68.70898","Little Deer Isle","ME","Maine","TRUE","","274","27.5","23009","Hancock","{""23009"": ""100""}","Hancock","23009","FALSE","FALSE","America/New_York"
-"04652","44.82242","-67.07614","Lubec","ME","Maine","TRUE","","1648","10.4","23029","Washington","{""23029"": ""100""}","Washington","23029","FALSE","FALSE","America/New_York"
-"04653","44.2313","-68.34036","Bass Harbor","ME","Maine","TRUE","","565","76.1","23009","Hancock","{""23009"": ""100""}","Hancock","23009","FALSE","FALSE","America/New_York"
-"04654","44.77104","-67.55341","Machias","ME","Maine","TRUE","","3345","12.9","23029","Washington","{""23029"": ""100""}","Washington","23029","FALSE","FALSE","America/New_York"
-"04655","44.66467","-67.39318","Machiasport","ME","Maine","TRUE","","956","17.2","23029","Washington","{""23029"": ""100""}","Washington","23029","FALSE","FALSE","America/New_York"
-"04657","44.97015","-67.42295","Meddybemps","ME","Maine","TRUE","","339","1.3","23029","Washington","{""23029"": ""100""}","Washington","23029","FALSE","FALSE","America/New_York"
-"04658","44.53986","-67.87307","Milbridge","ME","Maine","TRUE","","1560","24.8","23029","Washington","{""23029"": ""100""}","Washington","23029","FALSE","FALSE","America/New_York"
-"04660","44.34056","-68.33312","Mount Desert","ME","Maine","TRUE","","1182","15.8","23009","Hancock","{""23009"": ""100""}","Hancock","23009","FALSE","FALSE","America/New_York"
-"04662","44.30858","-68.29427","Northeast Harbor","ME","Maine","TRUE","","429","61.2","23009","Hancock","{""23009"": ""100""}","Hancock","23009","FALSE","FALSE","America/New_York"
-"04664","44.54693","-68.12714","Sullivan","ME","Maine","TRUE","","1317","14.2","23009","Hancock","{""23009"": ""100""}","Hancock","23009","FALSE","FALSE","America/New_York"
-"04666","44.98173","-67.22515","Pembroke","ME","Maine","TRUE","","1262","7.7","23029","Washington","{""23029"": ""100""}","Washington","23029","FALSE","FALSE","America/New_York"
-"04667","44.97853","-67.10412","Perry","ME","Maine","TRUE","","1391","18.0","23029","Washington","{""23029"": ""100""}","Washington","23029","FALSE","FALSE","America/New_York"
-"04668","45.20968","-67.59013","Princeton","ME","Maine","TRUE","","1512","6.0","23029","Washington","{""23029"": ""100""}","Washington","23029","FALSE","FALSE","America/New_York"
-"04669","44.41669","-68.0175","Prospect Harbor","ME","Maine","TRUE","","149","21.1","23009","Hancock","{""23009"": ""100""}","Hancock","23009","FALSE","FALSE","America/New_York"
-"04671","45.0662","-67.16247","Robbinston","ME","Maine","TRUE","","571","7.8","23029","Washington","{""23029"": ""100""}","Washington","23029","FALSE","FALSE","America/New_York"
-"04673","44.30964","-68.67454","Sargentville","ME","Maine","TRUE","","207","26.5","23009","Hancock","{""23009"": ""100""}","Hancock","23009","FALSE","FALSE","America/New_York"
-"04674","44.29472","-68.4107","Seal Cove","ME","Maine","TRUE","","449","20.4","23009","Hancock","{""23009"": ""100""}","Hancock","23009","FALSE","FALSE","America/New_York"
-"04675","44.30453","-68.25274","Seal Harbor","ME","Maine","TRUE","","143","10.8","23009","Hancock","{""23009"": ""100""}","Hancock","23009","FALSE","FALSE","America/New_York"
-"04676","44.34662","-68.64166","Sedgwick","ME","Maine","TRUE","","1074","17.3","23009","Hancock","{""23009"": ""100""}","Hancock","23009","FALSE","FALSE","America/New_York"
-"04677","44.49016","-68.17945","Sorrento","ME","Maine","TRUE","","246","23.8","23009","Hancock","{""23009"": ""100""}","Hancock","23009","FALSE","FALSE","America/New_York"
-"04679","44.27941","-68.3326","Southwest Harbor","ME","Maine","TRUE","","1491","41.9","23009","Hancock","{""23009"": ""100""}","Hancock","23009","FALSE","FALSE","America/New_York"
-"04680","44.5064","-67.94467","Steuben","ME","Maine","TRUE","","1227","11.0","23029","Washington","{""23029"": ""100""}","Washington","23029","FALSE","FALSE","America/New_York"
-"04681","44.16655","-68.65646","Stonington","ME","Maine","TRUE","","1063","41.8","23009","Hancock","{""23009"": ""100""}","Hancock","23009","FALSE","FALSE","America/New_York"
-"04683","44.22116","-68.75914","Sunset","ME","Maine","TRUE","","109","9.5","23009","Hancock","{""23009"": ""100""}","Hancock","23009","FALSE","FALSE","America/New_York"
-"04684","44.49337","-68.52794","Surry","ME","Maine","TRUE","","1712","17.9","23009","Hancock","{""23009"": ""100""}","Hancock","23009","FALSE","FALSE","America/New_York"
-"04685","44.1562","-68.44848","Swans Island","ME","Maine","TRUE","","449","12.1","23009","Hancock","{""23009"": ""100""}","Hancock","23009","FALSE","FALSE","America/New_York"
-"04686","44.98542","-67.69916","Wesley","ME","Maine","TRUE","","135","0.5","23029","Washington","{""23029"": ""100""}","Washington","23029","FALSE","FALSE","America/New_York"
-"04691","44.76272","-67.251","Whiting","ME","Maine","TRUE","","307","2.5","23029","Washington","{""23029"": ""100""}","Washington","23029","FALSE","FALSE","America/New_York"
-"04693","44.38479","-68.07828","Winter Harbor","ME","Maine","TRUE","","403","10.8","23009","Hancock","{""23009"": ""100""}","Hancock","23009","FALSE","FALSE","America/New_York"
-"04694","45.10333","-67.47223","Baileyville","ME","Maine","TRUE","","2226","6.6","23029","Washington","{""23029"": ""100""}","Washington","23029","FALSE","FALSE","America/New_York"
-"04730","46.13233","-67.91389","Houlton","ME","Maine","TRUE","","9720","16.0","23003","Aroostook","{""23003"": ""100""}","Aroostook","23003","FALSE","FALSE","America/New_York"
-"04732","46.50721","-68.76427","Ashland","ME","Maine","TRUE","","1608","1.4","23003","Aroostook","{""23003"": ""100"", ""23021"": ""0""}","Aroostook|Piscataquis","23003|23021","FALSE","FALSE","America/New_York"
-"04733","45.75697","-68.40146","Benedicta","ME","Maine","TRUE","","240","1.8","23003","Aroostook","{""23003"": ""92.76"", ""23019"": ""7.24""}","Aroostook|Penobscot","23003|23019","FALSE","FALSE","America/New_York"
-"04734","46.47856","-67.92231","Blaine","ME","Maine","TRUE","","710","6.1","23003","Aroostook","{""23003"": ""100""}","Aroostook","23003","FALSE","FALSE","America/New_York"
-"04735","46.41805","-67.86466","Bridgewater","ME","Maine","TRUE","","619","4.9","23003","Aroostook","{""23003"": ""100""}","Aroostook","23003","FALSE","FALSE","America/New_York"
-"04736","46.91531","-68.02117","Caribou","ME","Maine","TRUE","","9120","21.1","23003","Aroostook","{""23003"": ""100""}","Aroostook","23003","FALSE","FALSE","America/New_York"
-"04739","47.01016","-68.69084","Eagle Lake","ME","Maine","TRUE","","780","1.3","23003","Aroostook","{""23003"": ""100""}","Aroostook","23003","FALSE","FALSE","America/New_York"
-"04740","46.64322","-67.85487","Easton","ME","Maine","TRUE","","1261","12.6","23003","Aroostook","{""23003"": ""100""}","Aroostook","23003","FALSE","FALSE","America/New_York"
-"04741","47.44775","-69.1963","Estcourt Station","ME","Maine","TRUE","","4","0.5","23003","Aroostook","{""23003"": ""100""}","Aroostook","23003","FALSE","FALSE","America/Montreal"
-"04742","46.77766","-67.85527","Fort Fairfield","ME","Maine","TRUE","","3320","16.6","23003","Aroostook","{""23003"": ""100""}","Aroostook","23003","FALSE","FALSE","America/New_York"
-"04743","47.19506","-68.61742","Fort Kent","ME","Maine","TRUE","","4456","12.7","23003","Aroostook","{""23003"": ""100""}","Aroostook","23003","FALSE","FALSE","America/New_York"
-"04745","47.28276","-68.39168","Frenchville","ME","Maine","TRUE","","902","14.5","23003","Aroostook","{""23003"": ""100""}","Aroostook","23003","FALSE","FALSE","America/New_York"
-"04746","47.24885","-68.12472","Grand Isle","ME","Maine","TRUE","","382","4.0","23003","Aroostook","{""23003"": ""100""}","Aroostook","23003","FALSE","FALSE","America/New_York"
-"04747","46.00423","-68.23809","Island Falls","ME","Maine","TRUE","","1413","3.3","23003","Aroostook","{""23003"": ""100""}","Aroostook","23003","FALSE","FALSE","America/New_York"
-"04750","46.95826","-67.85713","Limestone","ME","Maine","TRUE","","2226","11.0","23003","Aroostook","{""23003"": ""100""}","Aroostook","23003","FALSE","FALSE","America/New_York"
-"04756","47.32218","-68.30324","Madawaska","ME","Maine","TRUE","","3214","69.6","23003","Aroostook","{""23003"": ""100""}","Aroostook","23003","FALSE","FALSE","America/New_York"
-"04757","46.66268","-68.17241","Mapleton","ME","Maine","TRUE","","2777","8.3","23003","Aroostook","{""23003"": ""100""}","Aroostook","23003","FALSE","FALSE","America/New_York"
-"04758","46.55427","-67.84731","Mars Hill","ME","Maine","TRUE","","1410","15.5","23003","Aroostook","{""23003"": ""100""}","Aroostook","23003","FALSE","FALSE","America/New_York"
-"04760","46.34676","-67.93643","Monticello","ME","Maine","TRUE","","650","2.5","23003","Aroostook","{""23003"": ""100""}","Aroostook","23003","FALSE","FALSE","America/New_York"
-"04761","46.11835","-67.97138","New Limerick","ME","Maine","TRUE","","565","11.9","23003","Aroostook","{""23003"": ""100""}","Aroostook","23003","FALSE","FALSE","America/New_York"
-"04762","46.97077","-68.13464","New Sweden","ME","Maine","TRUE","","531","5.2","23003","Aroostook","{""23003"": ""100""}","Aroostook","23003","FALSE","FALSE","America/New_York"
-"04763","46.08061","-68.10359","Oakfield","ME","Maine","TRUE","","722","8.0","23003","Aroostook","{""23003"": ""100""}","Aroostook","23003","FALSE","FALSE","America/New_York"
-"04764","46.41864","-68.56825","Oxbow","ME","Maine","TRUE","","33","0.2","23003","Aroostook","{""23003"": ""100""}","Aroostook","23003","FALSE","FALSE","America/New_York"
-"04765","46.15346","-68.62626","Patten","ME","Maine","TRUE","","1005","0.7","23019","Penobscot","{""23019"": ""98.34"", ""23003"": ""1.66""}","Penobscot|Aroostook","23019|23003","FALSE","FALSE","America/New_York"
-"04766","46.88162","-68.23912","Perham","ME","Maine","TRUE","","394","4.2","23003","Aroostook","{""23003"": ""100""}","Aroostook","23003","FALSE","FALSE","America/New_York"
-"04768","46.82618","-68.86887","Portage","ME","Maine","TRUE","","378","0.7","23003","Aroostook","{""23003"": ""100""}","Aroostook","23003","FALSE","FALSE","America/New_York"
-"04769","46.68676","-67.98738","Presque Isle","ME","Maine","TRUE","","9116","46.4","23003","Aroostook","{""23003"": ""100""}","Aroostook","23003","FALSE","FALSE","America/New_York"
-"04772","47.22724","-68.31309","Saint Agatha","ME","Maine","TRUE","","780","10.2","23003","Aroostook","{""23003"": ""100""}","Aroostook","23003","FALSE","FALSE","America/New_York"
-"04773","47.27622","-68.2234","Saint David","ME","Maine","TRUE","","575","5.7","23003","Aroostook","{""23003"": ""100""}","Aroostook","23003","FALSE","FALSE","America/New_York"
-"04774","47.07986","-69.12385","Saint Francis","ME","Maine","TRUE","","588","1.3","23003","Aroostook","{""23003"": ""100""}","Aroostook","23003","FALSE","FALSE","America/New_York"
-"04776","45.85109","-68.32344","Sherman","ME","Maine","TRUE","","1017","4.6","23003","Aroostook","{""23003"": ""100""}","Aroostook","23003","FALSE","FALSE","America/New_York"
-"04777","45.84773","-68.50737","Stacyville","ME","Maine","TRUE","","438","1.9","23019","Penobscot","{""23019"": ""100""}","Penobscot","23019","FALSE","FALSE","America/New_York"
-"04779","47.12208","-68.32294","Sinclair","ME","Maine","TRUE","","298","1.2","23003","Aroostook","{""23003"": ""100""}","Aroostook","23003","FALSE","FALSE","America/New_York"
-"04780","46.23761","-68.25263","Smyrna Mills","ME","Maine","TRUE","","880","1.1","23003","Aroostook","{""23003"": ""100""}","Aroostook","23003","FALSE","FALSE","America/New_York"
-"04781","47.14457","-68.60948","Wallagrass","ME","Maine","TRUE","","593","4.7","23003","Aroostook","{""23003"": ""100""}","Aroostook","23003","FALSE","FALSE","America/New_York"
-"04783","47.04254","-68.17584","Stockholm","ME","Maine","TRUE","","472","3.2","23003","Aroostook","{""23003"": ""100""}","Aroostook","23003","FALSE","FALSE","America/New_York"
-"04785","47.13003","-67.98687","Van Buren","ME","Maine","TRUE","","2187","8.3","23003","Aroostook","{""23003"": ""100""}","Aroostook","23003","FALSE","FALSE","America/New_York"
-"04786","46.79208","-68.17877","Washburn","ME","Maine","TRUE","","1933","10.6","23003","Aroostook","{""23003"": ""100""}","Aroostook","23003","FALSE","FALSE","America/New_York"
-"04787","46.55169","-67.97684","Westfield","ME","Maine","TRUE","","655","6.3","23003","Aroostook","{""23003"": ""100""}","Aroostook","23003","FALSE","FALSE","America/New_York"
-"04841","44.12737","-69.13685","Rockland","ME","Maine","TRUE","","7178","215.8","23013","Knox","{""23013"": ""100""}","Knox","23013","FALSE","FALSE","America/New_York"
-"04843","44.2293","-69.08923","Camden","ME","Maine","TRUE","","4817","100.6","23013","Knox","{""23013"": ""100""}","Knox","23013","FALSE","FALSE","America/New_York"
-"04847","44.25104","-69.18961","Hope","ME","Maine","TRUE","","1619","28.5","23013","Knox","{""23013"": ""100""}","Knox","23013","FALSE","FALSE","America/New_York"
-"04848","44.31083","-68.90896","Islesboro","ME","Maine","TRUE","","659","17.8","23027","Waldo","{""23027"": ""100""}","Waldo","23027","FALSE","FALSE","America/New_York"
-"04849","44.31793","-69.04753","Lincolnville","ME","Maine","TRUE","","3889","24.6","23027","Waldo","{""23027"": ""100""}","Waldo","23027","FALSE","FALSE","America/New_York"
-"04851","43.85498","-68.87351","Matinicus","ME","Maine","TRUE","","91","15.1","23013","Knox","{""23013"": ""100""}","Knox","23013","FALSE","FALSE","America/New_York"
-"04852","43.76561","-69.31235","Monhegan","ME","Maine","TRUE","","54","24.5","23015","Lincoln","{""23015"": ""100""}","Lincoln","23015","FALSE","FALSE","America/New_York"
-"04853","44.15172","-68.86311","North Haven","ME","Maine","TRUE","","455","15.5","23013","Knox","{""23013"": ""100""}","Knox","23013","FALSE","FALSE","America/New_York"
-"04854","44.06816","-69.08706","Owls Head","ME","Maine","TRUE","","1524","66.3","23013","Knox","{""23013"": ""100""}","Knox","23013","FALSE","FALSE","America/New_York"
-"04855","43.93459","-69.25745","Port Clyde","ME","Maine","TRUE","","249","41.7","23013","Knox","{""23013"": ""100""}","Knox","23013","FALSE","FALSE","America/New_York"
-"04856","44.17799","-69.12006","Rockport","ME","Maine","TRUE","","3372","60.2","23013","Knox","{""23013"": ""100""}","Knox","23013","FALSE","FALSE","America/New_York"
-"04858","44.04647","-69.14522","South Thomaston","ME","Maine","TRUE","","1219","41.4","23013","Knox","{""23013"": ""100""}","Knox","23013","FALSE","FALSE","America/New_York"
-"04859","43.98894","-69.13754","Spruce Head","ME","Maine","TRUE","","794","46.2","23013","Knox","{""23013"": ""100""}","Knox","23013","FALSE","FALSE","America/New_York"
-"04860","43.96925","-69.22844","Tenants Harbor","ME","Maine","TRUE","","1577","34.1","23013","Knox","{""23013"": ""100""}","Knox","23013","FALSE","FALSE","America/New_York"
-"04861","44.093","-69.17485","Thomaston","ME","Maine","TRUE","","2760","97.4","23013","Knox","{""23013"": ""100""}","Knox","23013","FALSE","FALSE","America/New_York"
-"04862","44.26191","-69.27714","Union","ME","Maine","TRUE","","4351","25.8","23013","Knox","{""23013"": ""100""}","Knox","23013","FALSE","FALSE","America/New_York"
-"04863","44.07898","-68.84384","Vinalhaven","ME","Maine","TRUE","","905","15.0","23013","Knox","{""23013"": ""100""}","Knox","23013","FALSE","FALSE","America/New_York"
-"04864","44.12946","-69.24481","Warren","ME","Maine","TRUE","","4751","39.5","23013","Knox","{""23013"": ""100""}","Knox","23013","FALSE","FALSE","America/New_York"
-"04901","44.55442","-69.57048","Waterville","ME","Maine","TRUE","","26888","131.7","23011","Kennebec","{""23011"": ""100""}","Kennebec","23011","FALSE","FALSE","America/New_York"
-"04910","44.517","-69.44122","Albion","ME","Maine","TRUE","","2217","22.0","23011","Kennebec","{""23011"": ""100""}","Kennebec","23011","FALSE","FALSE","America/New_York"
-"04911","44.77795","-69.9556","Anson","ME","Maine","TRUE","","2192","13.3","23025","Somerset","{""23025"": ""100""}","Somerset","23025","FALSE","FALSE","America/New_York"
-"04912","44.98414","-69.6839","Athens","ME","Maine","TRUE","","974","6.3","23025","Somerset","{""23025"": ""100""}","Somerset","23025","FALSE","FALSE","America/New_York"
-"04915","44.4664","-69.04163","Belfast","ME","Maine","TRUE","","8839","46.7","23027","Waldo","{""23027"": ""100""}","Waldo","23027","FALSE","FALSE","America/New_York"
-"04917","44.48822","-69.84011","Belgrade","ME","Maine","TRUE","","2850","27.7","23011","Kennebec","{""23011"": ""100""}","Kennebec","23011","FALSE","FALSE","America/New_York"
-"04918","44.5173","-69.86687","Belgrade Lakes","ME","Maine","TRUE","","300","32.4","23011","Kennebec","{""23011"": ""100""}","Kennebec","23011","FALSE","FALSE","America/New_York"
-"04920","45.14013","-69.85024","Bingham","ME","Maine","TRUE","","1638","2.5","23025","Somerset","{""23025"": ""100""}","Somerset","23025","FALSE","FALSE","America/New_York"
-"04921","44.57091","-69.13348","Brooks","ME","Maine","TRUE","","1510","12.3","23027","Waldo","{""23027"": ""100""}","Waldo","23027","FALSE","FALSE","America/New_York"
-"04922","44.68739","-69.38255","Burnham","ME","Maine","TRUE","","1081","10.7","23027","Waldo","{""23027"": ""100""}","Waldo","23027","FALSE","FALSE","America/New_York"
-"04923","45.03206","-69.44671","Cambridge","ME","Maine","TRUE","","498","9.0","23025","Somerset","{""23025"": ""100""}","Somerset","23025","FALSE","FALSE","America/New_York"
-"04924","44.7792","-69.54966","Canaan","ME","Maine","TRUE","","2418","22.7","23025","Somerset","{""23025"": ""100""}","Somerset","23025","FALSE","FALSE","America/New_York"
-"04925","45.21793","-69.90477","Caratunk","ME","Maine","TRUE","","68","0.5","23025","Somerset","{""23025"": ""100""}","Somerset","23025","FALSE","FALSE","America/New_York"
-"04926","44.48175","-69.51648","China Village","ME","Maine","TRUE","","105","372.3","23011","Kennebec","{""23011"": ""100""}","Kennebec","23011","FALSE","FALSE","America/New_York"
-"04927","44.67015","-69.5359","Clinton","ME","Maine","TRUE","","3367","29.6","23011","Kennebec","{""23011"": ""100""}","Kennebec","23011","FALSE","FALSE","America/New_York"
-"04928","44.94966","-69.25694","Corinna","ME","Maine","TRUE","","2052","20.5","23019","Penobscot","{""23019"": ""100""}","Penobscot","23019","FALSE","FALSE","America/New_York"
-"04929","44.76209","-69.31062","Detroit","ME","Maine","TRUE","","848","16.5","23025","Somerset","{""23025"": ""100""}","Somerset","23025","FALSE","FALSE","America/New_York"
-"04930","45.03112","-69.31483","Dexter","ME","Maine","TRUE","","4112","29.4","23019","Penobscot","{""23019"": ""90.69"", ""23025"": ""9.31""}","Penobscot|Somerset","23019|23025","FALSE","FALSE","America/New_York"
-"04932","44.6957","-69.13335","Dixmont","ME","Maine","TRUE","","1282","13.6","23019","Penobscot","{""23019"": ""100""}","Penobscot","23019","FALSE","FALSE","America/New_York"
-"04933","44.81758","-69.22918","East Newport","ME","Maine","TRUE","","29","120.6","23019","Penobscot","{""23019"": ""100""}","Penobscot","23019","FALSE","FALSE","America/New_York"
-"04936","45.33572","-70.62836","Eustis","ME","Maine","TRUE","","253","0.2","23007","Franklin","{""23007"": ""100""}","Franklin","23007","FALSE","FALSE","America/New_York"
-"04937","44.63567","-69.67618","Fairfield","ME","Maine","TRUE","","6488","48.1","23025","Somerset","{""23025"": ""100""}","Somerset","23025","FALSE","FALSE","America/New_York"
-"04938","44.65873","-70.10338","Farmington","ME","Maine","TRUE","","9664","30.4","23007","Franklin","{""23007"": ""100""}","Franklin","23007","FALSE","FALSE","America/New_York"
-"04939","45.05436","-69.15859","Garland","ME","Maine","TRUE","","1022","10.5","23019","Penobscot","{""23019"": ""100""}","Penobscot","23019","FALSE","FALSE","America/New_York"
-"04940","44.62494","-70.08322","Farmington Falls","ME","Maine","TRUE","","0","0.0","23007","Franklin","{""23007"": ""100""}","Franklin","23007","FALSE","FALSE","America/New_York"
-"04941","44.46539","-69.30168","Freedom","ME","Maine","TRUE","","1799","10.8","23027","Waldo","{""23027"": ""100""}","Waldo","23027","FALSE","FALSE","America/New_York"
-"04942","45.06371","-69.58551","Harmony","ME","Maine","TRUE","","1188","3.2","23025","Somerset","{""23025"": ""78.43"", ""23021"": ""21.57""}","Somerset|Piscataquis","23025|23021","FALSE","FALSE","America/New_York"
-"04943","44.87993","-69.52049","Hartland","ME","Maine","TRUE","","1653","17.2","23025","Somerset","{""23025"": ""100""}","Somerset","23025","FALSE","FALSE","America/New_York"
-"04944","44.68734","-69.64364","Hinckley","ME","Maine","TRUE","","41","9.8","23025","Somerset","{""23025"": ""100""}","Somerset","23025","FALSE","FALSE","America/New_York"
-"04945","45.76295","-70.2339","Jackman","ME","Maine","TRUE","","1036","0.4","23025","Somerset","{""23025"": ""100""}","Somerset","23025","FALSE","FALSE","America/New_York"
-"04947","45.03266","-70.23876","Kingfield","ME","Maine","TRUE","","1351","4.1","23007","Franklin","{""23007"": ""100""}","Franklin","23007","FALSE","FALSE","America/New_York"
-"04949","44.36712","-69.34029","Liberty","ME","Maine","TRUE","","896","13.3","23027","Waldo","{""23027"": ""100""}","Waldo","23027","FALSE","FALSE","America/New_York"
-"04950","44.8325","-69.80553","Madison","ME","Maine","TRUE","","4651","34.6","23025","Somerset","{""23025"": ""100""}","Somerset","23025","FALSE","FALSE","America/New_York"
-"04951","44.60849","-69.04758","Monroe","ME","Maine","TRUE","","1077","10.3","23027","Waldo","{""23027"": ""100""}","Waldo","23027","FALSE","FALSE","America/New_York"
-"04952","44.40936","-69.1428","Morrill","ME","Maine","TRUE","","1979","25.3","23027","Waldo","{""23027"": ""100""}","Waldo","23027","FALSE","FALSE","America/New_York"
-"04953","44.86019","-69.23297","Newport","ME","Maine","TRUE","","3228","42.3","23019","Penobscot","{""23019"": ""100""}","Penobscot","23019","FALSE","FALSE","America/New_York"
-"04955","44.63926","-70.00701","New Sharon","ME","Maine","TRUE","","1650","14.3","23007","Franklin","{""23007"": ""100""}","Franklin","23007","FALSE","FALSE","America/New_York"
-"04956","44.80839","-70.11433","New Vineyard","ME","Maine","TRUE","","975","9.9","23007","Franklin","{""23007"": ""100""}","Franklin","23007","FALSE","FALSE","America/New_York"
-"04957","44.70147","-69.84608","Norridgewock","ME","Maine","TRUE","","4193","19.9","23025","Somerset","{""23025"": ""100""}","Somerset","23025","FALSE","FALSE","America/New_York"
-"04958","44.90752","-69.93066","North Anson","ME","Maine","TRUE","","1721","12.1","23025","Somerset","{""23025"": ""100""}","Somerset","23025","FALSE","FALSE","America/New_York"
-"04961","45.13299","-70.13469","New Portland","ME","Maine","TRUE","","817","1.1","23025","Somerset","{""23025"": ""100""}","Somerset","23025","FALSE","FALSE","America/New_York"
-"04962","44.48921","-69.62609","North Vassalboro","ME","Maine","TRUE","","134","629.5","23011","Kennebec","{""23011"": ""100""}","Kennebec","23011","FALSE","FALSE","America/New_York"
-"04963","44.56628","-69.81475","Oakland","ME","Maine","TRUE","","7248","54.9","23011","Kennebec","{""23011"": ""100""}","Kennebec","23011","FALSE","FALSE","America/New_York"
-"04964","44.87582","-70.78325","Oquossoc","ME","Maine","TRUE","","111","0.5","23007","Franklin","{""23007"": ""99.55"", ""23017"": ""0.45""}","Franklin|Oxford","23007|23017","FALSE","FALSE","America/New_York"
-"04965","44.84561","-69.36269","Palmyra","ME","Maine","TRUE","","2067","19.9","23025","Somerset","{""23025"": ""100""}","Somerset","23025","FALSE","FALSE","America/New_York"
-"04966","44.82818","-70.43","Phillips","ME","Maine","TRUE","","1904","3.7","23007","Franklin","{""23007"": ""100""}","Franklin","23007","FALSE","FALSE","America/New_York"
-"04967","44.77143","-69.43801","Pittsfield","ME","Maine","TRUE","","4029","32.0","23025","Somerset","{""23025"": ""100""}","Somerset","23025","FALSE","FALSE","America/New_York"
-"04969","44.77016","-69.22461","Plymouth","ME","Maine","TRUE","","1219","15.8","23019","Penobscot","{""23019"": ""100""}","Penobscot","23019","FALSE","FALSE","America/New_York"
-"04970","45.00446","-70.63805","Rangeley","ME","Maine","TRUE","","1497","2.5","23007","Franklin","{""23007"": ""100""}","Franklin","23007","FALSE","FALSE","America/New_York"
-"04971","44.93186","-69.39225","Saint Albans","ME","Maine","TRUE","","1934","16.7","23025","Somerset","{""23025"": ""100""}","Somerset","23025","FALSE","FALSE","America/New_York"
-"04973","44.36225","-69.19305","Searsmont","ME","Maine","TRUE","","1323","13.5","23027","Waldo","{""23027"": ""100""}","Waldo","23027","FALSE","FALSE","America/New_York"
-"04974","44.48927","-68.93004","Searsport","ME","Maine","TRUE","","2592","35.0","23027","Waldo","{""23027"": ""100""}","Waldo","23027","FALSE","FALSE","America/New_York"
-"04975","44.62534","-69.58839","Shawmut","ME","Maine","TRUE","","28","196.7","23025","Somerset","{""23025"": ""100""}","Somerset","23025","FALSE","FALSE","America/New_York"
-"04976","44.79873","-69.66951","Skowhegan","ME","Maine","TRUE","","9770","37.9","23025","Somerset","{""23025"": ""100""}","Somerset","23025","FALSE","FALSE","America/New_York"
-"04978","44.62916","-69.8013","Smithfield","ME","Maine","TRUE","","766","19.6","23025","Somerset","{""23025"": ""100""}","Somerset","23025","FALSE","FALSE","America/New_York"
-"04979","44.94304","-69.79267","Solon","ME","Maine","TRUE","","866","7.6","23025","Somerset","{""23025"": ""100""}","Somerset","23025","FALSE","FALSE","America/New_York"
-"04981","44.53224","-68.85946","Stockton Springs","ME","Maine","TRUE","","2522","25.8","23027","Waldo","{""23027"": ""100""}","Waldo","23027","FALSE","FALSE","America/New_York"
-"04982","45.1116","-70.423","Stratton","ME","Maine","TRUE","","562","4.1","23007","Franklin","{""23007"": ""100""}","Franklin","23007","FALSE","FALSE","America/New_York"
-"04983","44.9228","-70.30926","Strong","ME","Maine","TRUE","","1809","4.6","23007","Franklin","{""23007"": ""100""}","Franklin","23007","FALSE","FALSE","America/New_York"
-"04984","44.70129","-70.26216","Temple","ME","Maine","TRUE","","576","9.4","23007","Franklin","{""23007"": ""100""}","Franklin","23007","FALSE","FALSE","America/New_York"
-"04985","45.37082","-69.94295","West Forks","ME","Maine","TRUE","","51","0.1","23025","Somerset","{""23025"": ""100""}","Somerset","23025","FALSE","FALSE","America/New_York"
-"04986","44.55294","-69.22252","Thorndike","ME","Maine","TRUE","","1657","11.6","23027","Waldo","{""23027"": ""100""}","Waldo","23027","FALSE","FALSE","America/New_York"
-"04987","44.67915","-69.25361","Troy","ME","Maine","TRUE","","960","10.6","23027","Waldo","{""23027"": ""100""}","Waldo","23027","FALSE","FALSE","America/New_York"
-"04988","44.59588","-69.35972","Unity","ME","Maine","TRUE","","2373","18.4","23027","Waldo","{""23027"": ""97.99"", ""23011"": ""2.01""}","Waldo|Kennebec","23027|23011","FALSE","FALSE","America/New_York"
-"04989","44.42988","-69.64786","Vassalboro","ME","Maine","TRUE","","4207","36.8","23011","Kennebec","{""23011"": ""100""}","Kennebec","23011","FALSE","FALSE","America/New_York"
-"04992","44.66302","-70.16006","West Farmington","ME","Maine","TRUE","","105","693.3","23007","Franklin","{""23007"": ""100""}","Franklin","23007","FALSE","FALSE","America/New_York"
-"05001","43.67222","-72.38133","White River Junction","VT","Vermont","TRUE","","9319","83.2","50027","Windsor","{""50027"": ""100""}","Windsor","50027","FALSE","FALSE","America/New_York"
-"05031","43.71205","-72.59101","Barnard","VT","Vermont","TRUE","","115","4.5","50027","Windsor","{""50027"": ""100""}","Windsor","50027","FALSE","FALSE","America/New_York"
-"05032","43.80641","-72.65941","Bethel","VT","Vermont","TRUE","","2419","13.4","50027","Windsor","{""50027"": ""100""}","Windsor","50027","FALSE","FALSE","America/New_York"
-"05033","44.00888","-72.15799","Bradford","VT","Vermont","TRUE","","2572","34.3","50017","Orange","{""50017"": ""100""}","Orange","50017","FALSE","FALSE","America/New_York"
-"05034","43.5846","-72.63205","Bridgewater","VT","Vermont","TRUE","","344","23.4","50027","Windsor","{""50027"": ""100""}","Windsor","50027","FALSE","FALSE","America/New_York"
-"05035","43.60153","-72.68757","Bridgewater Corners","VT","Vermont","TRUE","","708","8.6","50027","Windsor","{""50027"": ""100""}","Windsor","50027","FALSE","FALSE","America/New_York"
-"05036","44.02644","-72.57977","Brookfield","VT","Vermont","TRUE","","996","11.5","50017","Orange","{""50017"": ""100""}","Orange","50017","FALSE","FALSE","America/New_York"
-"05037","43.45943","-72.4915","Brownsville","VT","Vermont","TRUE","","690","25.6","50027","Windsor","{""50027"": ""100""}","Windsor","50027","FALSE","FALSE","America/New_York"
-"05038","43.99436","-72.45721","Chelsea","VT","Vermont","TRUE","","1315","12.8","50017","Orange","{""50017"": ""100""}","Orange","50017","FALSE","FALSE","America/New_York"
-"05039","44.03669","-72.29713","Corinth","VT","Vermont","TRUE","","1131","9.9","50017","Orange","{""50017"": ""100""}","Orange","50017","FALSE","FALSE","America/New_York"
-"05040","44.06711","-72.20241","East Corinth","VT","Vermont","TRUE","","618","22.4","50017","Orange","{""50017"": ""100""}","Orange","50017","FALSE","FALSE","America/New_York"
-"05041","43.95065","-72.54065","East Randolph","VT","Vermont","TRUE","","441","28.9","50017","Orange","{""50017"": ""100""}","Orange","50017","FALSE","FALSE","America/New_York"
-"05042","44.22756","-72.09962","East Ryegate","VT","Vermont","TRUE","","546","8.8","50005","Caledonia","{""50005"": ""100""}","Caledonia","50005","FALSE","FALSE","America/New_York"
-"05043","43.8081","-72.20826","East Thetford","VT","Vermont","TRUE","","1086","51.6","50017","Orange","{""50017"": ""100""}","Orange","50017","FALSE","FALSE","America/New_York"
-"05045","43.91719","-72.19868","Fairlee","VT","Vermont","TRUE","","1773","13.2","50017","Orange","{""50017"": ""100""}","Orange","50017","FALSE","FALSE","America/New_York"
-"05046","44.23643","-72.25272","Groton","VT","Vermont","TRUE","","1109","7.2","50005","Caledonia","{""50005"": ""100""}","Caledonia","50005","FALSE","FALSE","America/New_York"
-"05048","43.58199","-72.4237","Hartland","VT","Vermont","TRUE","","2996","42.1","50027","Windsor","{""50027"": ""100""}","Windsor","50027","FALSE","FALSE","America/New_York"
-"05050","44.26743","-72.06423","McIndoe Falls","VT","Vermont","TRUE","","164","146.7","50005","Caledonia","{""50005"": ""100""}","Caledonia","50005","FALSE","FALSE","America/New_York"
-"05051","44.10302","-72.12118","Newbury","VT","Vermont","TRUE","","1641","13.2","50017","Orange","{""50017"": ""100""}","Orange","50017","FALSE","FALSE","America/New_York"
-"05052","43.59931","-72.35792","North Hartland","VT","Vermont","TRUE","","238","35.6","50027","Windsor","{""50027"": ""100""}","Windsor","50027","FALSE","FALSE","America/New_York"
-"05053","43.71934","-72.48795","North Pomfret","VT","Vermont","TRUE","","403","17.8","50027","Windsor","{""50027"": ""100""}","Windsor","50027","FALSE","FALSE","America/New_York"
-"05055","43.75411","-72.31311","Norwich","VT","Vermont","TRUE","","3230","30.3","50027","Windsor","{""50027"": ""100""}","Windsor","50027","FALSE","FALSE","America/New_York"
-"05056","43.51922","-72.72269","Plymouth","VT","Vermont","TRUE","","480","4.3","50027","Windsor","{""50027"": ""100""}","Windsor","50027","FALSE","FALSE","America/New_York"
-"05058","43.88578","-72.26998","Post Mills","VT","Vermont","TRUE","","352","33.1","50017","Orange","{""50017"": ""100""}","Orange","50017","FALSE","FALSE","America/New_York"
-"05059","43.64003","-72.42622","Quechee","VT","Vermont","TRUE","","427","31.2","50027","Windsor","{""50027"": ""100""}","Windsor","50027","FALSE","FALSE","America/New_York"
-"05060","43.95922","-72.69001","Randolph","VT","Vermont","TRUE","","4417","24.5","50017","Orange","{""50017"": ""95.88"", ""50027"": ""3.9"", ""50023"": ""0.23""}","Orange|Windsor|Washington","50017|50027|50023","FALSE","FALSE","America/New_York"
-"05061","43.9321","-72.58631","Randolph Center","VT","Vermont","TRUE","","1446","21.6","50017","Orange","{""50017"": ""100""}","Orange","50017","FALSE","FALSE","America/New_York"
-"05062","43.49791","-72.59247","Reading","VT","Vermont","TRUE","","551","5.0","50027","Windsor","{""50027"": ""100""}","Windsor","50027","FALSE","FALSE","America/New_York"
-"05065","43.7845","-72.42335","Sharon","VT","Vermont","TRUE","","1038","12.4","50027","Windsor","{""50027"": ""100""}","Windsor","50027","FALSE","FALSE","America/New_York"
-"05067","43.68816","-72.51317","South Pomfret","VT","Vermont","TRUE","","181","4.2","50027","Windsor","{""50027"": ""100""}","Windsor","50027","FALSE","FALSE","America/New_York"
-"05068","43.79648","-72.53527","South Royalton","VT","Vermont","TRUE","","3215","24.1","50027","Windsor","{""50027"": ""99.3"", ""50017"": ""0.7""}","Windsor|Orange","50027|50017","FALSE","FALSE","America/New_York"
-"05069","44.19055","-72.13678","South Ryegate","VT","Vermont","TRUE","","511","16.4","50005","Caledonia","{""50005"": ""92.61"", ""50017"": ""7.39""}","Caledonia|Orange","50005|50017","FALSE","FALSE","America/New_York"
-"05070","43.83988","-72.36404","South Strafford","VT","Vermont","TRUE","","526","14.8","50017","Orange","{""50017"": ""100""}","Orange","50017","FALSE","FALSE","America/New_York"
-"05071","43.56065","-72.55341","South Woodstock","VT","Vermont","TRUE","","146","2.9","50027","Windsor","{""50027"": ""100""}","Windsor","50027","FALSE","FALSE","America/New_York"
-"05072","43.88308","-72.37878","Strafford","VT","Vermont","TRUE","","474","7.0","50017","Orange","{""50017"": ""100""}","Orange","50017","FALSE","FALSE","America/New_York"
-"05075","43.83699","-72.27976","Thetford Center","VT","Vermont","TRUE","","974","14.7","50017","Orange","{""50017"": ""100""}","Orange","50017","FALSE","FALSE","America/New_York"
-"05076","44.1506","-72.23238","Topsham","VT","Vermont","TRUE","","426","5.7","50017","Orange","{""50017"": ""100""}","Orange","50017","FALSE","FALSE","America/New_York"
-"05077","43.90325","-72.48074","Tunbridge","VT","Vermont","TRUE","","1199","11.0","50017","Orange","{""50017"": ""100""}","Orange","50017","FALSE","FALSE","America/New_York"
-"05079","43.95624","-72.3246","Vershire","VT","Vermont","TRUE","","686","7.3","50017","Orange","{""50017"": ""100""}","Orange","50017","FALSE","FALSE","America/New_York"
-"05081","44.13695","-72.0723","Wells River","VT","Vermont","TRUE","","543","22.5","50017","Orange","{""50017"": ""100""}","Orange","50017","FALSE","FALSE","America/New_York"
-"05083","43.91882","-72.26809","West Fairlee","VT","Vermont","TRUE","","309","165.6","50017","Orange","{""50017"": ""100""}","Orange","50017","FALSE","FALSE","America/New_York"
-"05084","43.72711","-72.44982","West Hartford","VT","Vermont","TRUE","","114","18.5","50027","Windsor","{""50027"": ""100""}","Windsor","50027","FALSE","FALSE","America/New_York"
-"05086","44.11433","-72.30077","West Topsham","VT","Vermont","TRUE","","728","11.5","50017","Orange","{""50017"": ""100""}","Orange","50017","FALSE","FALSE","America/New_York"
-"05089","43.49224","-72.44642","Windsor","VT","Vermont","TRUE","","4256","40.0","50027","Windsor","{""50027"": ""100""}","Windsor","50027","FALSE","FALSE","America/New_York"
-"05091","43.64021","-72.57302","Woodstock","VT","Vermont","TRUE","","3303","19.0","50027","Windsor","{""50027"": ""100""}","Windsor","50027","FALSE","FALSE","America/New_York"
-"05101","43.17899","-72.49454","Bellows Falls","VT","Vermont","TRUE","","4434","49.8","50025","Windham","{""50025"": ""100""}","Windham","50025","FALSE","FALSE","America/New_York"
-"05141","43.15352","-72.56688","Cambridgeport","VT","Vermont","TRUE","","232","90.6","50025","Windham","{""50025"": ""100""}","Windham","50025","FALSE","FALSE","America/New_York"
-"05142","43.403","-72.58629","Cavendish","VT","Vermont","TRUE","","806","11.6","50027","Windsor","{""50027"": ""100""}","Windsor","50027","FALSE","FALSE","America/New_York"
-"05143","43.2701","-72.63211","Chester","VT","Vermont","TRUE","","4335","17.6","50027","Windsor","{""50027"": ""85.82"", ""50025"": ""14.18""}","Windsor|Windham","50027|50025","FALSE","FALSE","America/New_York"
-"05146","43.17621","-72.61729","Grafton","VT","Vermont","TRUE","","637","5.6","50025","Windham","{""50025"": ""100""}","Windham","50025","FALSE","FALSE","America/New_York"
-"05148","43.22877","-72.79999","Londonderry","VT","Vermont","TRUE","","975","14.0","50025","Windham","{""50025"": ""91.32"", ""50003"": ""7.46"", ""50027"": ""1.23""}","Windham|Bennington|Windsor","50025|50003|50027","FALSE","FALSE","America/New_York"
-"05149","43.38014","-72.71158","Ludlow","VT","Vermont","TRUE","","1950","17.1","50027","Windsor","{""50027"": ""100""}","Windsor","50027","FALSE","FALSE","America/New_York"
-"05150","43.33458","-72.52925","North Springfield","VT","Vermont","TRUE","","634","102.3","50027","Windsor","{""50027"": ""100""}","Windsor","50027","FALSE","FALSE","America/New_York"
-"05151","43.39699","-72.4906","Perkinsville","VT","Vermont","TRUE","","1539","21.4","50027","Windsor","{""50027"": ""100""}","Windsor","50027","FALSE","FALSE","America/New_York"
-"05152","43.25358","-72.9153","Peru","VT","Vermont","TRUE","","319","3.0","50003","Bennington","{""50003"": ""100""}","Bennington","50003","FALSE","FALSE","America/New_York"
-"05153","43.41","-72.64158","Proctorsville","VT","Vermont","TRUE","","523","16.1","50027","Windsor","{""50027"": ""100""}","Windsor","50027","FALSE","FALSE","America/New_York"
-"05154","43.13561","-72.5355","Saxtons River","VT","Vermont","TRUE","","461","67.2","50025","Windham","{""50025"": ""100""}","Windham","50025","FALSE","FALSE","America/New_York"
-"05155","43.12417","-72.89441","South Londonderry","VT","Vermont","TRUE","","850","7.9","50025","Windham","{""50025"": ""99.28"", ""50003"": ""0.72""}","Windham|Bennington","50025|50003","FALSE","FALSE","America/New_York"
-"05156","43.30577","-72.47029","Springfield","VT","Vermont","TRUE","","9260","59.2","50027","Windsor","{""50027"": ""100""}","Windsor","50027","FALSE","FALSE","America/New_York"
-"05158","43.09816","-72.47035","Westminster","VT","Vermont","TRUE","","1189","40.0","50025","Windham","{""50025"": ""100""}","Windham","50025","FALSE","FALSE","America/New_York"
-"05161","43.31566","-72.80597","Weston","VT","Vermont","TRUE","","606","6.8","50027","Windsor","{""50027"": ""100""}","Windsor","50027","FALSE","FALSE","America/New_York"
-"05201","42.88108","-73.14144","Bennington","VT","Vermont","TRUE","","14084","58.4","50003","Bennington","{""50003"": ""100""}","Bennington","50003","FALSE","FALSE","America/New_York"
-"05250","43.12029","-73.19321","Arlington","VT","Vermont","TRUE","","3731","15.7","50003","Bennington","{""50003"": ""100""}","Bennington","50003","FALSE","FALSE","America/New_York"
-"05251","43.26218","-73.07048","Dorset","VT","Vermont","TRUE","","1092","12.1","50003","Bennington","{""50003"": ""100""}","Bennington","50003","FALSE","FALSE","America/New_York"
-"05252","43.0668","-73.06111","East Arlington","VT","Vermont","TRUE","","312","3.1","50003","Bennington","{""50003"": ""100""}","Bennington","50003","FALSE","FALSE","America/New_York"
-"05253","43.25148","-72.9993","East Dorset","VT","Vermont","TRUE","","585","17.2","50003","Bennington","{""50003"": ""98.39"", ""50021"": ""1.61""}","Bennington|Rutland","50003|50021","FALSE","FALSE","America/New_York"
-"05254","43.15692","-73.06683","Manchester","VT","Vermont","TRUE","","206","39.5","50003","Bennington","{""50003"": ""100""}","Bennington","50003","FALSE","FALSE","America/New_York"
-"05255","43.16674","-73.06638","Manchester Center","VT","Vermont","TRUE","","4047","39.6","50003","Bennington","{""50003"": ""100""}","Bennington","50003","FALSE","FALSE","America/New_York"
-"05257","42.95913","-73.25389","North Bennington","VT","Vermont","TRUE","","2932","89.2","50003","Bennington","{""50003"": ""100""}","Bennington","50003","FALSE","FALSE","America/New_York"
-"05260","42.80718","-73.26493","North Pownal","VT","Vermont","TRUE","","534","21.4","50003","Bennington","{""50003"": ""100""}","Bennington","50003","FALSE","FALSE","America/New_York"
-"05261","42.78226","-73.19745","Pownal","VT","Vermont","TRUE","","2491","29.9","50003","Bennington","{""50003"": ""100""}","Bennington","50003","FALSE","FALSE","America/New_York"
-"05262","42.98044","-73.12684","Shaftsbury","VT","Vermont","TRUE","","2251","11.4","50003","Bennington","{""50003"": ""100""}","Bennington","50003","FALSE","FALSE","America/New_York"
-"05301","42.84622","-72.66073","Brattleboro","VT","Vermont","TRUE","","16200","41.7","50025","Windham","{""50025"": ""100""}","Windham","50025","FALSE","FALSE","America/New_York"
-"05340","43.16232","-72.93418","Bondville","VT","Vermont","TRUE","","743","6.6","50003","Bennington","{""50003"": ""100""}","Bennington","50003","FALSE","FALSE","America/New_York"
-"05341","42.96365","-72.79678","East Dover","VT","Vermont","TRUE","","450","13.2","50025","Windham","{""50025"": ""100""}","Windham","50025","FALSE","FALSE","America/New_York"
-"05342","42.76828","-72.79471","Jacksonville","VT","Vermont","TRUE","","602","15.3","50025","Windham","{""50025"": ""100""}","Windham","50025","FALSE","FALSE","America/New_York"
-"05343","43.09865","-72.80043","Jamaica","VT","Vermont","TRUE","","718","6.1","50025","Windham","{""50025"": ""100""}","Windham","50025","FALSE","FALSE","America/New_York"
-"05345","42.98434","-72.67994","Newfane","VT","Vermont","TRUE","","2165","16.7","50025","Windham","{""50025"": ""100""}","Windham","50025","FALSE","FALSE","America/New_York"
-"05346","43.02506","-72.53167","Putney","VT","Vermont","TRUE","","5030","28.2","50025","Windham","{""50025"": ""100""}","Windham","50025","FALSE","FALSE","America/New_York"
-"05350","42.79875","-72.97178","Readsboro","VT","Vermont","TRUE","","609","6.5","50003","Bennington","{""50003"": ""100""}","Bennington","50003","FALSE","FALSE","America/New_York"
-"05352","42.788","-73.07852","Stamford","VT","Vermont","TRUE","","982","9.6","50003","Bennington","{""50003"": ""100""}","Bennington","50003","FALSE","FALSE","America/New_York"
-"05353","43.06537","-72.66648","Townshend","VT","Vermont","TRUE","","833","8.8","50025","Windham","{""50025"": ""100""}","Windham","50025","FALSE","FALSE","America/New_York"
-"05354","42.76226","-72.52597","Vernon","VT","Vermont","TRUE","","2339","46.4","50025","Windham","{""50025"": ""100""}","Windham","50025","FALSE","FALSE","America/New_York"
-"05355","43.02052","-72.80645","Wardsboro","VT","Vermont","TRUE","","709","10.0","50025","Windham","{""50025"": ""100""}","Windham","50025","FALSE","FALSE","America/New_York"
-"05356","42.95346","-72.86865","West Dover","VT","Vermont","TRUE","","577","10.1","50025","Windham","{""50025"": ""100""}","Windham","50025","FALSE","FALSE","America/New_York"
-"05358","42.7629","-72.72087","West Halifax","VT","Vermont","TRUE","","131","4.0","50025","Windham","{""50025"": ""100""}","Windham","50025","FALSE","FALSE","America/New_York"
-"05359","43.15259","-72.71587","West Townshend","VT","Vermont","TRUE","","574","7.5","50025","Windham","{""50025"": ""100""}","Windham","50025","FALSE","FALSE","America/New_York"
-"05360","43.00253","-72.94412","West Wardsboro","VT","Vermont","TRUE","","172","1.4","50025","Windham","{""50025"": ""100""}","Windham","50025","FALSE","FALSE","America/New_York"
-"05361","42.78275","-72.8765","Whitingham","VT","Vermont","TRUE","","1125","14.3","50025","Windham","{""50025"": ""100""}","Windham","50025","FALSE","FALSE","America/New_York"
-"05362","42.93638","-72.66111","Williamsville","VT","Vermont","TRUE","","80","11.6","50025","Windham","{""50025"": ""100""}","Windham","50025","FALSE","FALSE","America/New_York"
-"05363","42.88181","-72.89291","Wilmington","VT","Vermont","TRUE","","1958","11.8","50025","Windham","{""50025"": ""94.61"", ""50003"": ""5.39""}","Windham|Bennington","50025|50003","FALSE","FALSE","America/New_York"
-"05401","44.47629","-73.20997","Burlington","VT","Vermont","TRUE","","28909","1884.5","50007","Chittenden","{""50007"": ""100""}","Chittenden","50007","FALSE","FALSE","America/New_York"
-"05403","44.44697","-73.17237","South Burlington","VT","Vermont","TRUE","","18761","441.7","50007","Chittenden","{""50007"": ""100""}","Chittenden","50007","FALSE","FALSE","America/New_York"
-"05404","44.49509","-73.18431","Winooski","VT","Vermont","TRUE","","7242","1955.0","50007","Chittenden","{""50007"": ""100""}","Chittenden","50007","FALSE","FALSE","America/New_York"
-"05405","44.47375","-73.19564","Burlington","VT","Vermont","TRUE","","4391","7282.6","50007","Chittenden","{""50007"": ""100""}","Chittenden","50007","FALSE","FALSE","America/New_York"
-"05408","44.512","-73.24919","Burlington","VT","Vermont","TRUE","","9604","878.6","50007","Chittenden","{""50007"": ""100""}","Chittenden","50007","FALSE","FALSE","America/New_York"
-"05439","44.49506","-73.16399","Colchester","VT","Vermont","TRUE","","1455","3120.4","50007","Chittenden","{""50007"": ""100""}","Chittenden","50007","FALSE","FALSE","America/New_York"
-"05440","44.95953","-73.27952","Alburgh","VT","Vermont","TRUE","","1754","23.2","50013","Grand Isle","{""50013"": ""100""}","Grand Isle","50013","FALSE","FALSE","America/New_York"
-"05441","44.79139","-72.76967","Bakersfield","VT","Vermont","TRUE","","812","9.9","50011","Franklin","{""50011"": ""100""}","Franklin","50011","FALSE","FALSE","America/New_York"
-"05442","44.75855","-72.67678","Belvidere Center","VT","Vermont","TRUE","","414","5.0","50015","Lamoille","{""50015"": ""100""}","Lamoille","50015","FALSE","FALSE","America/New_York"
-"05443","44.13347","-73.03668","Bristol","VT","Vermont","TRUE","","6744","23.0","50001","Addison","{""50001"": ""100""}","Addison","50001","FALSE","FALSE","America/New_York"
-"05444","44.64772","-72.90086","Cambridge","VT","Vermont","TRUE","","1678","32.0","50011","Franklin","{""50011"": ""53.38"", ""50015"": ""46.62""}","Franklin|Lamoille","50011|50015","FALSE","FALSE","America/New_York"
-"05445","44.30945","-73.22162","Charlotte","VT","Vermont","TRUE","","3820","35.7","50007","Chittenden","{""50007"": ""100""}","Chittenden","50007","FALSE","FALSE","America/New_York"
-"05446","44.54857","-73.18529","Colchester","VT","Vermont","TRUE","","15868","167.1","50007","Chittenden","{""50007"": ""100""}","Chittenden","50007","FALSE","FALSE","America/New_York"
-"05447","44.93105","-72.70282","East Berkshire","VT","Vermont","TRUE","","88","111.4","50011","Franklin","{""50011"": ""100""}","Franklin","50011","FALSE","FALSE","America/New_York"
-"05448","44.7555","-72.89736","East Fairfield","VT","Vermont","TRUE","","851","8.1","50011","Franklin","{""50011"": ""100""}","Franklin","50011","FALSE","FALSE","America/New_York"
-"05450","44.90025","-72.79113","Enosburg Falls","VT","Vermont","TRUE","","5237","17.0","50011","Franklin","{""50011"": ""100""}","Franklin","50011","FALSE","FALSE","America/New_York"
-"05452","44.52414","-73.06239","Essex Junction","VT","Vermont","TRUE","","21574","200.6","50007","Chittenden","{""50007"": ""100""}","Chittenden","50007","FALSE","FALSE","America/New_York"
-"05454","44.70245","-73.027","Fairfax","VT","Vermont","TRUE","","5076","41.4","50011","Franklin","{""50011"": ""100""}","Franklin","50011","FALSE","FALSE","America/New_York"
-"05455","44.80293","-72.96681","Fairfield","VT","Vermont","TRUE","","1113","12.9","50011","Franklin","{""50011"": ""100""}","Franklin","50011","FALSE","FALSE","America/New_York"
-"05456","44.20764","-73.25509","Ferrisburgh","VT","Vermont","TRUE","","1174","18.9","50001","Addison","{""50001"": ""100""}","Addison","50001","FALSE","FALSE","America/New_York"
-"05457","44.97097","-72.91336","Franklin","VT","Vermont","TRUE","","1590","16.0","50011","Franklin","{""50011"": ""100""}","Franklin","50011","FALSE","FALSE","America/New_York"
-"05458","44.71825","-73.30543","Grand Isle","VT","Vermont","TRUE","","2172","51.2","50013","Grand Isle","{""50013"": ""100""}","Grand Isle","50013","FALSE","FALSE","America/New_York"
-"05459","44.95348","-73.00452","Highgate Center","VT","Vermont","TRUE","","2133","32.1","50011","Franklin","{""50011"": ""100""}","Franklin","50011","FALSE","FALSE","America/New_York"
-"05461","44.32219","-73.09131","Hinesburg","VT","Vermont","TRUE","","4672","43.9","50007","Chittenden","{""50007"": ""96.79"", ""50001"": ""3.21""}","Chittenden|Addison","50007|50001","FALSE","FALSE","America/New_York"
-"05462","44.30058","-72.9538","Huntington","VT","Vermont","TRUE","","1966","20.0","50007","Chittenden","{""50007"": ""100""}","Chittenden","50007","FALSE","FALSE","America/New_York"
-"05463","44.86946","-73.34108","Isle La Motte","VT","Vermont","TRUE","","421","20.6","50013","Grand Isle","{""50013"": ""100""}","Grand Isle","50013","FALSE","FALSE","America/New_York"
-"05464","44.64518","-72.81763","Jeffersonville","VT","Vermont","TRUE","","3330","19.8","50015","Lamoille","{""50015"": ""93.02"", ""50011"": ""6.98""}","Lamoille|Franklin","50015|50011","FALSE","FALSE","America/New_York"
-"05465","44.46831","-72.94993","Jericho","VT","Vermont","TRUE","","5368","47.6","50007","Chittenden","{""50007"": ""100""}","Chittenden","50007","FALSE","FALSE","America/New_York"
-"05468","44.65535","-73.1456","Milton","VT","Vermont","TRUE","","13786","83.3","50007","Chittenden","{""50007"": ""79.99"", ""50011"": ""20.01""}","Chittenden|Franklin","50007|50011","FALSE","FALSE","America/New_York"
-"05471","44.85599","-72.59409","Montgomery Center","VT","Vermont","TRUE","","559","4.2","50011","Franklin","{""50011"": ""96.54"", ""50019"": ""3.46""}","Franklin|Orleans","50011|50019","FALSE","FALSE","America/New_York"
-"05472","44.10887","-73.15993","New Haven","VT","Vermont","TRUE","","1794","17.6","50001","Addison","{""50001"": ""100""}","Addison","50001","FALSE","FALSE","America/New_York"
-"05473","44.24344","-73.19339","North Ferrisburgh","VT","Vermont","TRUE","","1451","29.6","50001","Addison","{""50001"": ""100""}","Addison","50001","FALSE","FALSE","America/New_York"
-"05474","44.84032","-73.27363","North Hero","VT","Vermont","TRUE","","946","27.1","50013","Grand Isle","{""50013"": ""100""}","Grand Isle","50013","FALSE","FALSE","America/New_York"
-"05476","44.96308","-72.64117","Richford","VT","Vermont","TRUE","","3384","20.5","50011","Franklin","{""50011"": ""100""}","Franklin","50011","FALSE","FALSE","America/New_York"
-"05477","44.40316","-72.95475","Richmond","VT","Vermont","TRUE","","4476","37.2","50007","Chittenden","{""50007"": ""100""}","Chittenden","50007","FALSE","FALSE","America/New_York"
-"05478","44.80968","-73.08121","Saint Albans","VT","Vermont","TRUE","","14845","94.8","50011","Franklin","{""50011"": ""100""}","Franklin","50011","FALSE","FALSE","America/New_York"
-"05481","44.77291","-73.20506","Saint Albans Bay","VT","Vermont","TRUE","","0","0.0","50011","Franklin","{""50011"": ""0""}","Franklin","50011","FALSE","FALSE","America/New_York"
-"05482","44.38509","-73.20957","Shelburne","VT","Vermont","TRUE","","7777","122.7","50007","Chittenden","{""50007"": ""100""}","Chittenden","50007","FALSE","FALSE","America/New_York"
-"05483","44.88195","-72.97202","Sheldon","VT","Vermont","TRUE","","1512","28.6","50011","Franklin","{""50011"": ""100""}","Franklin","50011","FALSE","FALSE","America/New_York"
-"05485","44.90718","-72.97536","Sheldon Springs","VT","Vermont","TRUE","","96","362.9","50011","Franklin","{""50011"": ""100""}","Franklin","50011","FALSE","FALSE","America/New_York"
-"05486","44.64061","-73.3108","South Hero","VT","Vermont","TRUE","","1717","44.4","50013","Grand Isle","{""50013"": ""100""}","Grand Isle","50013","FALSE","FALSE","America/New_York"
-"05487","44.2318","-73.01056","Starksboro","VT","Vermont","TRUE","","1668","14.3","50001","Addison","{""50001"": ""98"", ""50007"": ""2""}","Addison|Chittenden","50001|50007","FALSE","FALSE","America/New_York"
-"05488","44.92141","-73.12487","Swanton","VT","Vermont","TRUE","","7752","46.2","50011","Franklin","{""50011"": ""100""}","Franklin","50011","FALSE","FALSE","America/New_York"
-"05489","44.54087","-72.88743","Underhill","VT","Vermont","TRUE","","3361","24.5","50007","Chittenden","{""50007"": ""100""}","Chittenden","50007","FALSE","FALSE","America/New_York"
-"05491","44.11254","-73.30877","Vergennes","VT","Vermont","TRUE","","5750","25.8","50001","Addison","{""50001"": ""100""}","Addison","50001","FALSE","FALSE","America/New_York"
-"05492","44.7166","-72.75421","Waterville","VT","Vermont","TRUE","","661","15.5","50015","Lamoille","{""50015"": ""100""}","Lamoille","50015","FALSE","FALSE","America/New_York"
-"05494","44.6024","-73.00523","Westford","VT","Vermont","TRUE","","1921","21.7","50007","Chittenden","{""50007"": ""100""}","Chittenden","50007","FALSE","FALSE","America/New_York"
-"05495","44.42935","-73.09246","Williston","VT","Vermont","TRUE","","10262","118.0","50007","Chittenden","{""50007"": ""100""}","Chittenden","50007","FALSE","FALSE","America/New_York"
-"05602","44.28362","-72.60497","Montpelier","VT","Vermont","TRUE","","11758","55.9","50023","Washington","{""50023"": ""100""}","Washington","50023","FALSE","FALSE","America/New_York"
-"05640","44.34527","-72.4932","Adamant","VT","Vermont","TRUE","","155","16.1","50023","Washington","{""50023"": ""100""}","Washington","50023","FALSE","FALSE","America/New_York"
-"05641","44.18881","-72.47294","Barre","VT","Vermont","TRUE","","16542","118.1","50023","Washington","{""50023"": ""96.76"", ""50017"": ""3.24""}","Washington|Orange","50023|50017","FALSE","FALSE","America/New_York"
-"05647","44.40805","-72.28833","Cabot","VT","Vermont","TRUE","","1053","13.8","50023","Washington","{""50023"": ""100""}","Washington","50023","FALSE","FALSE","America/New_York"
-"05648","44.38501","-72.49349","Calais","VT","Vermont","TRUE","","472","20.4","50023","Washington","{""50023"": ""100""}","Washington","50023","FALSE","FALSE","America/New_York"
-"05649","44.15608","-72.35782","East Barre","VT","Vermont","TRUE","","359","8.9","50017","Orange","{""50017"": ""59.93"", ""50023"": ""40.07""}","Orange|Washington","50017|50023","FALSE","FALSE","America/New_York"
-"05650","44.38001","-72.44187","East Calais","VT","Vermont","TRUE","","1248","20.5","50023","Washington","{""50023"": ""100""}","Washington","50023","FALSE","FALSE","America/New_York"
-"05651","44.27945","-72.48829","East Montpelier","VT","Vermont","TRUE","","1418","31.9","50023","Washington","{""50023"": ""100""}","Washington","50023","FALSE","FALSE","America/New_York"
-"05652","44.72831","-72.58748","Eden","VT","Vermont","TRUE","","718","8.8","50015","Lamoille","{""50015"": ""100""}","Lamoille","50015","FALSE","FALSE","America/New_York"
-"05653","44.7012","-72.49317","Eden Mills","VT","Vermont","TRUE","","601","7.3","50015","Lamoille","{""50015"": ""100""}","Lamoille","50015","FALSE","FALSE","America/New_York"
-"05654","44.13977","-72.47465","Graniteville","VT","Vermont","TRUE","","1042","139.2","50023","Washington","{""50023"": ""82.99"", ""50017"": ""17.01""}","Washington|Orange","50023|50017","FALSE","FALSE","America/New_York"
-"05655","44.62381","-72.57053","Hyde Park","VT","Vermont","TRUE","","2940","33.4","50015","Lamoille","{""50015"": ""100""}","Lamoille","50015","FALSE","FALSE","America/New_York"
-"05656","44.64938","-72.68772","Johnson","VT","Vermont","TRUE","","3606","29.8","50015","Lamoille","{""50015"": ""100""}","Lamoille","50015","FALSE","FALSE","America/New_York"
-"05657","44.53474","-72.5258","Lake Elmore","VT","Vermont","TRUE","","60","165.0","50015","Lamoille","{""50015"": ""100""}","Lamoille","50015","FALSE","FALSE","America/New_York"
-"05658","44.35812","-72.35581","Marshfield","VT","Vermont","TRUE","","1459","15.1","50023","Washington","{""50023"": ""100""}","Washington","50023","FALSE","FALSE","America/New_York"
-"05660","44.24718","-72.74139","Moretown","VT","Vermont","TRUE","","1743","16.9","50023","Washington","{""50023"": ""100""}","Washington","50023","FALSE","FALSE","America/New_York"
-"05661","44.53797","-72.6184","Morrisville","VT","Vermont","TRUE","","5826","34.0","50015","Lamoille","{""50015"": ""100""}","Lamoille","50015","FALSE","FALSE","America/New_York"
-"05663","44.15144","-72.67702","Northfield","VT","Vermont","TRUE","","6562","46.2","50023","Washington","{""50023"": ""99.79"", ""50017"": ""0.21""}","Washington|Orange","50023|50017","FALSE","FALSE","America/New_York"
-"05664","44.16712","-72.65313","Northfield Falls","VT","Vermont","TRUE","","188","4359.4","50023","Washington","{""50023"": ""100""}","Washington","50023","FALSE","FALSE","America/New_York"
-"05667","44.27112","-72.39185","Plainfield","VT","Vermont","TRUE","","2133","18.2","50023","Washington","{""50023"": ""100""}","Washington","50023","FALSE","FALSE","America/New_York"
-"05669","44.06666","-72.73084","Roxbury","VT","Vermont","TRUE","","652","5.9","50023","Washington","{""50023"": ""95.27"", ""50001"": ""2.84"", ""50017"": ""1.89""}","Washington|Addison|Orange","50023|50001|50017","FALSE","FALSE","America/New_York"
-"05672","44.48134","-72.7219","Stowe","VT","Vermont","TRUE","","4426","23.5","50015","Lamoille","{""50015"": ""100""}","Lamoille","50015","FALSE","FALSE","America/New_York"
-"05673","44.19366","-72.84186","Waitsfield","VT","Vermont","TRUE","","2419","17.0","50023","Washington","{""50023"": ""100""}","Washington","50023","FALSE","FALSE","America/New_York"
-"05674","44.11103","-72.86083","Warren","VT","Vermont","TRUE","","1649","15.9","50023","Washington","{""50023"": ""100""}","Washington","50023","FALSE","FALSE","America/New_York"
-"05675","44.07382","-72.41872","Washington","VT","Vermont","TRUE","","1112","10.8","50017","Orange","{""50017"": ""100""}","Orange","50017","FALSE","FALSE","America/New_York"
-"05676","44.34289","-72.80906","Waterbury","VT","Vermont","TRUE","","4572","17.4","50023","Washington","{""50023"": ""90.21"", ""50007"": ""9.79""}","Washington|Chittenden","50023|50007","FALSE","FALSE","America/New_York"
-"05677","44.39285","-72.70967","Waterbury Center","VT","Vermont","TRUE","","2533","63.5","50023","Washington","{""50023"": ""100""}","Washington","50023","FALSE","FALSE","America/New_York"
-"05678","44.15625","-72.47566","Websterville","VT","Vermont","TRUE","","239","130.5","50023","Washington","{""50023"": ""100""}","Washington","50023","FALSE","FALSE","America/New_York"
-"05679","44.10737","-72.53974","Williamstown","VT","Vermont","TRUE","","3347","32.5","50017","Orange","{""50017"": ""100""}","Orange","50017","FALSE","FALSE","America/New_York"
-"05680","44.54403","-72.47068","Wolcott","VT","Vermont","TRUE","","2233","13.0","50015","Lamoille","{""50015"": ""100""}","Lamoille","50015","FALSE","FALSE","America/New_York"
-"05681","44.45476","-72.40368","Woodbury","VT","Vermont","TRUE","","370","5.6","50023","Washington","{""50023"": ""100""}","Washington","50023","FALSE","FALSE","America/New_York"
-"05682","44.403","-72.57147","Worcester","VT","Vermont","TRUE","","1302","10.9","50023","Washington","{""50023"": ""100""}","Washington","50023","FALSE","FALSE","America/New_York"
-"05701","43.62458","-72.90981","Rutland","VT","Vermont","TRUE","","19984","132.5","50021","Rutland","{""50021"": ""100""}","Rutland","50021","FALSE","FALSE","America/New_York"
-"05730","43.41371","-72.82335","Belmont","VT","Vermont","TRUE","","344","9.6","50021","Rutland","{""50021"": ""100""}","Rutland","50021","FALSE","FALSE","America/New_York"
-"05732","43.68531","-73.18255","Bomoseen","VT","Vermont","TRUE","","625","24.5","50021","Rutland","{""50021"": ""100""}","Rutland","50021","FALSE","FALSE","America/New_York"
-"05733","43.82007","-73.09189","Brandon","VT","Vermont","TRUE","","5762","19.5","50021","Rutland","{""50021"": ""79.93"", ""50001"": ""20.07""}","Rutland|Addison","50021|50001","FALSE","FALSE","America/New_York"
-"05734","43.9821","-73.33027","Bridport","VT","Vermont","TRUE","","1321","11.6","50001","Addison","{""50001"": ""100""}","Addison","50001","FALSE","FALSE","America/New_York"
-"05735","43.64413","-73.15642","Castleton","VT","Vermont","TRUE","","4392","39.6","50021","Rutland","{""50021"": ""100""}","Rutland","50021","FALSE","FALSE","America/New_York"
-"05736","43.61461","-73.00954","Center Rutland","VT","Vermont","TRUE","","543","35.0","50021","Rutland","{""50021"": ""100""}","Rutland","50021","FALSE","FALSE","America/New_York"
-"05737","43.75901","-72.91196","Chittenden","VT","Vermont","TRUE","","1021","6.1","50021","Rutland","{""50021"": ""100""}","Rutland","50021","FALSE","FALSE","America/New_York"
-"05738","43.52929","-72.85566","Cuttingsville","VT","Vermont","TRUE","","1171","9.0","50021","Rutland","{""50021"": ""100""}","Rutland","50021","FALSE","FALSE","America/New_York"
-"05739","43.33996","-73.00605","Danby","VT","Vermont","TRUE","","1390","9.8","50021","Rutland","{""50021"": ""100""}","Rutland","50021","FALSE","FALSE","America/New_York"
-"05740","43.97165","-73.10536","East Middlebury","VT","Vermont","TRUE","","27","374.3","50001","Addison","{""50001"": ""100""}","Addison","50001","FALSE","FALSE","America/New_York"
-"05742","43.43637","-72.90138","East Wallingford","VT","Vermont","TRUE","","616","9.2","50021","Rutland","{""50021"": ""100""}","Rutland","50021","FALSE","FALSE","America/New_York"
-"05743","43.66962","-73.30619","Fair Haven","VT","Vermont","TRUE","","3837","15.0","50021","Rutland","{""50021"": ""100""}","Rutland","50021","FALSE","FALSE","America/New_York"
-"05744","43.69842","-73.08496","Florence","VT","Vermont","TRUE","","657","11.4","50021","Rutland","{""50021"": ""100""}","Rutland","50021","FALSE","FALSE","America/New_York"
-"05747","44.00517","-72.84161","Granville","VT","Vermont","TRUE","","308","2.4","50001","Addison","{""50001"": ""100""}","Addison","50001","FALSE","FALSE","America/New_York"
-"05748","43.91973","-72.91087","Hancock","VT","Vermont","TRUE","","337","3.4","50001","Addison","{""50001"": ""100""}","Addison","50001","FALSE","FALSE","America/New_York"
-"05751","43.65428","-72.78924","Killington","VT","Vermont","TRUE","","675","5.6","50021","Rutland","{""50021"": ""100""}","Rutland","50021","FALSE","FALSE","America/New_York"
-"05753","44.00005","-73.17543","Middlebury","VT","Vermont","TRUE","","10535","48.0","50001","Addison","{""50001"": ""100""}","Addison","50001","FALSE","FALSE","America/New_York"
-"05757","43.4789","-73.12485","Middletown Springs","VT","Vermont","TRUE","","858","13.5","50021","Rutland","{""50021"": ""100""}","Rutland","50021","FALSE","FALSE","America/New_York"
-"05758","43.43386","-72.78729","Mount Holly","VT","Vermont","TRUE","","630","8.1","50021","Rutland","{""50021"": ""100""}","Rutland","50021","FALSE","FALSE","America/New_York"
-"05759","43.53707","-72.96268","North Clarendon","VT","Vermont","TRUE","","1565","33.6","50021","Rutland","{""50021"": ""100""}","Rutland","50021","FALSE","FALSE","America/New_York"
-"05760","43.80274","-73.29282","Orwell","VT","Vermont","TRUE","","1088","10.7","50001","Addison","{""50001"": ""96.08"", ""50021"": ""3.92""}","Addison|Rutland","50001|50021","FALSE","FALSE","America/New_York"
-"05761","43.36223","-73.14953","Pawlet","VT","Vermont","TRUE","","904","9.2","50021","Rutland","{""50021"": ""100""}","Rutland","50021","FALSE","FALSE","America/New_York"
-"05762","43.79273","-72.82914","Pittsfield","VT","Vermont","TRUE","","351","6.8","50021","Rutland","{""50021"": ""100""}","Rutland","50021","FALSE","FALSE","America/New_York"
-"05763","43.72667","-72.99965","Pittsford","VT","Vermont","TRUE","","2574","34.6","50021","Rutland","{""50021"": ""100""}","Rutland","50021","FALSE","FALSE","America/New_York"
-"05764","43.53191","-73.19178","Poultney","VT","Vermont","TRUE","","3281","29.3","50021","Rutland","{""50021"": ""100""}","Rutland","50021","FALSE","FALSE","America/New_York"
-"05765","43.65249","-73.0351","Proctor","VT","Vermont","TRUE","","1713","83.7","50021","Rutland","{""50021"": ""100""}","Rutland","50021","FALSE","FALSE","America/New_York"
-"05766","43.99232","-72.98758","Ripton","VT","Vermont","TRUE","","524","4.4","50001","Addison","{""50001"": ""100""}","Addison","50001","FALSE","FALSE","America/New_York"
-"05767","43.87508","-72.82878","Rochester","VT","Vermont","TRUE","","1065","7.2","50027","Windsor","{""50027"": ""99.65"", ""50021"": ""0.35""}","Windsor|Rutland","50027|50021","FALSE","FALSE","America/New_York"
-"05769","43.91923","-73.11551","Salisbury","VT","Vermont","TRUE","","1192","15.0","50001","Addison","{""50001"": ""100""}","Addison","50001","FALSE","FALSE","America/New_York"
-"05770","43.8869","-73.3204","Shoreham","VT","Vermont","TRUE","","1001","9.4","50001","Addison","{""50001"": ""100""}","Addison","50001","FALSE","FALSE","America/New_York"
-"05772","43.75604","-72.74472","Stockbridge","VT","Vermont","TRUE","","640","5.4","50027","Windsor","{""50027"": ""100""}","Windsor","50027","FALSE","FALSE","America/New_York"
-"05773","43.42157","-72.98612","Wallingford","VT","Vermont","TRUE","","2262","12.4","50021","Rutland","{""50021"": ""100""}","Rutland","50021","FALSE","FALSE","America/New_York"
-"05774","43.43135","-73.1901","Wells","VT","Vermont","TRUE","","1016","17.6","50021","Rutland","{""50021"": ""100""}","Rutland","50021","FALSE","FALSE","America/New_York"
-"05775","43.36247","-73.23133","West Pawlet","VT","Vermont","TRUE","","489","14.9","50021","Rutland","{""50021"": ""100""}","Rutland","50021","FALSE","FALSE","America/New_York"
-"05776","43.26348","-73.19066","West Rupert","VT","Vermont","TRUE","","645","5.6","50003","Bennington","{""50003"": ""100""}","Bennington","50003","FALSE","FALSE","America/New_York"
-"05777","43.55818","-73.05647","West Rutland","VT","Vermont","TRUE","","3414","27.3","50021","Rutland","{""50021"": ""100""}","Rutland","50021","FALSE","FALSE","America/New_York"
-"05778","43.87369","-73.21114","Whiting","VT","Vermont","TRUE","","664","10.3","50001","Addison","{""50001"": ""92.77"", ""50021"": ""7.23""}","Addison|Rutland","50001|50021","FALSE","FALSE","America/New_York"
-"05819","44.40509","-71.98762","Saint Johnsbury","VT","Vermont","TRUE","","9144","38.8","50005","Caledonia","{""50005"": ""100""}","Caledonia","50005","FALSE","FALSE","America/New_York"
-"05820","44.73871","-72.34482","Albany","VT","Vermont","TRUE","","498","8.0","50019","Orleans","{""50019"": ""100""}","Orleans","50019","FALSE","FALSE","America/New_York"
-"05821","44.31356","-72.10953","Barnet","VT","Vermont","TRUE","","1128","12.5","50005","Caledonia","{""50005"": ""100""}","Caledonia","50005","FALSE","FALSE","America/New_York"
-"05822","44.75042","-72.14273","Barton","VT","Vermont","TRUE","","1516","15.1","50019","Orleans","{""50019"": ""100""}","Orleans","50019","FALSE","FALSE","America/New_York"
-"05824","44.4368","-71.86146","Concord","VT","Vermont","TRUE","","1156","8.6","50009","Essex","{""50009"": ""76.47"", ""50005"": ""23.53""}","Essex|Caledonia","50009|50005","FALSE","FALSE","America/New_York"
-"05825","44.86231","-72.24567","Coventry","VT","Vermont","TRUE","","68","10.3","50019","Orleans","{""50019"": ""100""}","Orleans","50019","FALSE","FALSE","America/New_York"
-"05826","44.64661","-72.40245","Craftsbury","VT","Vermont","TRUE","","895","11.0","50019","Orleans","{""50019"": ""100""}","Orleans","50019","FALSE","FALSE","America/New_York"
-"05827","44.68112","-72.35814","Craftsbury Common","VT","Vermont","TRUE","","319","8.4","50019","Orleans","{""50019"": ""100""}","Orleans","50019","FALSE","FALSE","America/New_York"
-"05828","44.43709","-72.11974","Danville","VT","Vermont","TRUE","","1995","14.3","50005","Caledonia","{""50005"": ""100""}","Caledonia","50005","FALSE","FALSE","America/New_York"
-"05829","44.95204","-72.07039","Derby","VT","Vermont","TRUE","","1613","24.4","50019","Orleans","{""50019"": ""100""}","Orleans","50019","FALSE","FALSE","America/New_York"
-"05830","44.98021","-71.98493","Derby Line","VT","Vermont","TRUE","","1355","16.7","50019","Orleans","{""50019"": ""100""}","Orleans","50019","FALSE","FALSE","America/New_York"
-"05832","44.5882","-71.91273","East Burke","VT","Vermont","TRUE","","902","11.9","50005","Caledonia","{""50005"": ""100""}","Caledonia","50005","FALSE","FALSE","America/New_York"
-"05833","44.8257","-71.97743","East Charleston","VT","Vermont","TRUE","","251","6.7","50019","Orleans","{""50019"": ""100""}","Orleans","50019","FALSE","FALSE","America/New_York"
-"05836","44.51521","-72.2663","East Hardwick","VT","Vermont","TRUE","","1173","15.9","50005","Caledonia","{""50005"": ""100""}","Caledonia","50005","FALSE","FALSE","America/New_York"
-"05837","44.65856","-71.81538","East Haven","VT","Vermont","TRUE","","281","2.4","50009","Essex","{""50009"": ""82.15"", ""50005"": ""17.85""}","Essex|Caledonia","50009|50005","FALSE","FALSE","America/New_York"
-"05839","44.67474","-72.21313","Glover","VT","Vermont","TRUE","","735","11.7","50019","Orleans","{""50019"": ""100""}","Orleans","50019","FALSE","FALSE","America/New_York"
-"05841","44.60692","-72.29446","Greensboro","VT","Vermont","TRUE","","364","4.9","50019","Orleans","{""50019"": ""100""}","Orleans","50019","FALSE","FALSE","America/New_York"
-"05842","44.55316","-72.2208","Greensboro Bend","VT","Vermont","TRUE","","571","12.1","50019","Orleans","{""50019"": ""61.3"", ""50005"": ""38.7""}","Orleans|Caledonia","50019|50005","FALSE","FALSE","America/New_York"
-"05843","44.50925","-72.34706","Hardwick","VT","Vermont","TRUE","","2462","26.3","50005","Caledonia","{""50005"": ""99.37"", ""50023"": ""0.63""}","Caledonia|Washington","50005|50023","FALSE","FALSE","America/New_York"
-"05845","44.79642","-72.30023","Irasburg","VT","Vermont","TRUE","","1413","13.0","50019","Orleans","{""50019"": ""100""}","Orleans","50019","FALSE","FALSE","America/New_York"
-"05846","44.80129","-71.86309","Island Pond","VT","Vermont","TRUE","","1206","8.4","50009","Essex","{""50009"": ""100""}","Essex","50009","FALSE","FALSE","America/New_York"
-"05847","44.79153","-72.45682","Lowell","VT","Vermont","TRUE","","787","5.4","50019","Orleans","{""50019"": ""100""}","Orleans","50019","FALSE","FALSE","America/New_York"
-"05850","44.54163","-72.01749","Lyndon Center","VT","Vermont","TRUE","","267","254.3","50005","Caledonia","{""50005"": ""100""}","Caledonia","50005","FALSE","FALSE","America/New_York"
-"05851","44.55542","-72.07157","Lyndonville","VT","Vermont","TRUE","","6329","30.6","50005","Caledonia","{""50005"": ""100""}","Caledonia","50005","FALSE","FALSE","America/New_York"
-"05853","44.89474","-71.96653","Morgan","VT","Vermont","TRUE","","482","6.2","50019","Orleans","{""50019"": ""100""}","Orleans","50019","FALSE","FALSE","America/New_York"
-"05855","44.92782","-72.19223","Newport","VT","Vermont","TRUE","","7046","48.8","50019","Orleans","{""50019"": ""100""}","Orleans","50019","FALSE","FALSE","America/New_York"
-"05857","44.93599","-72.30465","Newport Center","VT","Vermont","TRUE","","2530","23.7","50019","Orleans","{""50019"": ""100""}","Orleans","50019","FALSE","FALSE","America/New_York"
-"05858","44.54945","-71.79566","North Concord","VT","Vermont","TRUE","","442","2.2","50009","Essex","{""50009"": ""100""}","Essex","50009","FALSE","FALSE","America/New_York"
-"05859","44.96727","-72.4453","North Troy","VT","Vermont","TRUE","","1752","12.2","50019","Orleans","{""50019"": ""100""}","Orleans","50019","FALSE","FALSE","America/New_York"
-"05860","44.80176","-72.10307","Orleans","VT","Vermont","TRUE","","2803","14.3","50019","Orleans","{""50019"": ""100""}","Orleans","50019","FALSE","FALSE","America/New_York"
-"05862","44.31892","-72.22587","Peacham","VT","Vermont","TRUE","","307","4.3","50005","Caledonia","{""50005"": ""100""}","Caledonia","50005","FALSE","FALSE","America/New_York"
-"05866","44.64221","-72.12761","Sheffield","VT","Vermont","TRUE","","630","7.5","50005","Caledonia","{""50005"": ""100""}","Caledonia","50005","FALSE","FALSE","America/New_York"
-"05867","44.66286","-72.0422","Sutton","VT","Vermont","TRUE","","935","10.0","50005","Caledonia","{""50005"": ""100""}","Caledonia","50005","FALSE","FALSE","America/New_York"
-"05868","44.89457","-72.37739","Troy","VT","Vermont","TRUE","","303","8.3","50019","Orleans","{""50019"": ""100""}","Orleans","50019","FALSE","FALSE","America/New_York"
-"05871","44.68772","-71.94178","West Burke","VT","Vermont","TRUE","","1464","12.0","50005","Caledonia","{""50005"": ""100""}","Caledonia","50005","FALSE","FALSE","America/New_York"
-"05872","44.8668","-72.04665","West Charleston","VT","Vermont","TRUE","","848","13.6","50019","Orleans","{""50019"": ""100""}","Orleans","50019","FALSE","FALSE","America/New_York"
-"05873","44.42209","-72.20549","West Danville","VT","Vermont","TRUE","","606","7.9","50005","Caledonia","{""50005"": ""100""}","Caledonia","50005","FALSE","FALSE","America/New_York"
-"05874","44.87698","-72.46757","Westfield","VT","Vermont","TRUE","","604","6.4","50019","Orleans","{""50019"": ""100""}","Orleans","50019","FALSE","FALSE","America/New_York"
-"05875","44.71084","-72.25655","Barton","VT","Vermont","TRUE","","359","8.3","50019","Orleans","{""50019"": ""100""}","Orleans","50019","FALSE","FALSE","America/New_York"
-"05901","44.94293","-71.68228","Averill","VT","Vermont","TRUE","","10","0.1","50009","Essex","{""50009"": ""100""}","Essex","50009","FALSE","FALSE","America/New_York"
-"05902","45.00852","-71.49034","Beecher Falls","VT","Vermont","TRUE","","193","69.7","50009","Essex","{""50009"": ""100""}","Essex","50009","FALSE","FALSE","America/New_York"
-"05903","44.93231","-71.58281","Canaan","VT","Vermont","TRUE","","784","4.5","50009","Essex","{""50009"": ""100""}","Essex","50009","FALSE","FALSE","America/New_York"
-"05904","44.4166","-71.70654","Gilman","VT","Vermont","TRUE","","249","168.3","50009","Essex","{""50009"": ""100""}","Essex","50009","FALSE","FALSE","America/New_York"
-"05905","44.69368","-71.66952","Guildhall","VT","Vermont","TRUE","","736","1.5","50009","Essex","{""50009"": ""100""}","Essex","50009","FALSE","FALSE","America/New_York"
-"05906","44.47605","-71.71485","Lunenburg","VT","Vermont","TRUE","","1402","11.2","50009","Essex","{""50009"": ""100""}","Essex","50009","FALSE","FALSE","America/New_York"
-"05907","44.92015","-71.8011","Norton","VT","Vermont","TRUE","","127","0.4","50009","Essex","{""50009"": ""100""}","Essex","50009","FALSE","FALSE","America/New_York"
-"06001","41.7907","-72.85385","Avon","CT","Connecticut","TRUE","","18516","306.7","09003","Hartford","{""09003"": ""100""}","Hartford","09003","FALSE","FALSE","America/New_York"
-"06002","41.84255","-72.7406","Bloomfield","CT","Connecticut","TRUE","","21022","311.4","09003","Hartford","{""09003"": ""100""}","Hartford","09003","FALSE","FALSE","America/New_York"
-"06010","41.68116","-72.94074","Bristol","CT","Connecticut","TRUE","","60218","880.8","09003","Hartford","{""09003"": ""100""}","Hartford","09003","FALSE","FALSE","America/New_York"
-"06013","41.75978","-72.95893","Burlington","CT","Connecticut","TRUE","","9659","125.5","09003","Hartford","{""09003"": ""100""}","Hartford","09003","FALSE","FALSE","America/New_York"
-"06016","41.90417","-72.54448","Broad Brook","CT","Connecticut","TRUE","","6889","177.3","09003","Hartford","{""09003"": ""100""}","Hartford","09003","FALSE","FALSE","America/New_York"
-"06018","42.02648","-73.30872","Canaan","CT","Connecticut","TRUE","","2782","90.3","09005","Litchfield","{""09005"": ""100""}","Litchfield","09005","FALSE","FALSE","America/New_York"
-"06019","41.85964","-72.90698","Canton","CT","Connecticut","TRUE","","10148","170.7","09003","Hartford","{""09003"": ""100""}","Hartford","09003","FALSE","FALSE","America/New_York"
-"06020","41.83455","-72.92862","Canton Center","CT","Connecticut","TRUE","","0","0.0","09003","Hartford","{""09003"": ""0""}","Hartford","09003","FALSE","FALSE","America/New_York"
-"06021","42.02184","-73.10434","Colebrook","CT","Connecticut","TRUE","","383","26.2","09005","Litchfield","{""09005"": ""100""}","Litchfield","09005","FALSE","FALSE","America/New_York"
-"06022","41.86545","-72.92732","Collinsville","CT","Connecticut","TRUE","","140","33.4","09003","Hartford","{""09003"": ""100""}","Hartford","09003","FALSE","FALSE","America/New_York"
-"06023","41.61371","-72.71994","East Berlin","CT","Connecticut","TRUE","","1558","656.5","09003","Hartford","{""09003"": ""100""}","Hartford","09003","FALSE","FALSE","America/New_York"
-"06024","42.01204","-73.27433","East Canaan","CT","Connecticut","TRUE","","460","22.4","09005","Litchfield","{""09005"": ""100""}","Litchfield","09005","FALSE","FALSE","America/New_York"
-"06026","41.9427","-72.74235","East Granby","CT","Connecticut","TRUE","","5304","121.6","09003","Hartford","{""09003"": ""100""}","Hartford","09003","FALSE","FALSE","America/New_York"
-"06027","42.00403","-72.9118","East Hartland","CT","Connecticut","TRUE","","1451","35.6","09003","Hartford","{""09003"": ""100""}","Hartford","09003","FALSE","FALSE","America/New_York"
-"06029","41.91503","-72.44947","Ellington","CT","Connecticut","TRUE","","16125","184.2","09013","Tolland","{""09013"": ""100""}","Tolland","09013","FALSE","FALSE","America/New_York"
-"06031","41.95776","-73.31738","Falls Village","CT","Connecticut","TRUE","","1344","13.5","09005","Litchfield","{""09005"": ""100""}","Litchfield","09005","FALSE","FALSE","America/New_York"
-"06032","41.72527","-72.83124","Farmington","CT","Connecticut","TRUE","","17678","300.7","09003","Hartford","{""09003"": ""100""}","Hartford","09003","FALSE","FALSE","America/New_York"
-"06033","41.70787","-72.54199","Glastonbury","CT","Connecticut","TRUE","","28698","322.7","09003","Hartford","{""09003"": ""100""}","Hartford","09003","FALSE","FALSE","America/New_York"
-"06035","41.96061","-72.80095","Granby","CT","Connecticut","TRUE","","7865","197.7","09003","Hartford","{""09003"": ""100""}","Hartford","09003","FALSE","FALSE","America/New_York"
-"06037","41.6113","-72.77775","Berlin","CT","Connecticut","TRUE","","18926","287.8","09003","Hartford","{""09003"": ""100""}","Hartford","09003","FALSE","FALSE","America/New_York"
-"06039","41.95003","-73.44477","Lakeville","CT","Connecticut","TRUE","","2138","39.3","09005","Litchfield","{""09005"": ""100""}","Litchfield","09005","FALSE","FALSE","America/New_York"
-"06040","41.76167","-72.52251","Manchester","CT","Connecticut","TRUE","","34661","788.7","09003","Hartford","{""09003"": ""100""}","Hartford","09003","FALSE","FALSE","America/New_York"
-"06042","41.7975","-72.52692","Manchester","CT","Connecticut","TRUE","","23144","856.3","09003","Hartford","{""09003"": ""100""}","Hartford","09003","FALSE","FALSE","America/New_York"
-"06043","41.76647","-72.43902","Bolton","CT","Connecticut","TRUE","","4911","131.6","09013","Tolland","{""09013"": ""100""}","Tolland","09013","FALSE","FALSE","America/New_York"
-"06051","41.66514","-72.76974","New Britain","CT","Connecticut","TRUE","","30231","2855.5","09003","Hartford","{""09003"": ""100""}","Hartford","09003","FALSE","FALSE","America/New_York"
-"06052","41.65723","-72.8052","New Britain","CT","Connecticut","TRUE","","8142","1232.3","09003","Hartford","{""09003"": ""100""}","Hartford","09003","FALSE","FALSE","America/New_York"
-"06053","41.68853","-72.79421","New Britain","CT","Connecticut","TRUE","","34452","1661.1","09003","Hartford","{""09003"": ""100""}","Hartford","09003","FALSE","FALSE","America/New_York"
-"06057","41.84407","-73.00623","New Hartford","CT","Connecticut","TRUE","","6201","65.6","09005","Litchfield","{""09005"": ""100""}","Litchfield","09005","FALSE","FALSE","America/New_York"
-"06058","41.97184","-73.19542","Norfolk","CT","Connecticut","TRUE","","1653","12.6","09005","Litchfield","{""09005"": ""100""}","Litchfield","09005","FALSE","FALSE","America/New_York"
-"06059","41.94904","-72.9448","North Canton","CT","Connecticut","TRUE","","0","0.0","09005","Litchfield","{""09005"": ""0""}","Litchfield","09005","FALSE","FALSE","America/New_York"
-"06060","42.00702","-72.84569","North Granby","CT","Connecticut","TRUE","","2691","86.1","09003","Hartford","{""09003"": ""100""}","Hartford","09003","FALSE","FALSE","America/New_York"
-"06061","41.87547","-72.96695","Pine Meadow","CT","Connecticut","TRUE","","367","1109.5","09005","Litchfield","{""09005"": ""100""}","Litchfield","09005","FALSE","FALSE","America/New_York"
-"06062","41.67341","-72.86077","Plainville","CT","Connecticut","TRUE","","17619","778.8","09003","Hartford","{""09003"": ""100""}","Hartford","09003","FALSE","FALSE","America/New_York"
-"06063","41.92703","-72.97157","Barkhamsted","CT","Connecticut","TRUE","","3351","43.7","09005","Litchfield","{""09005"": ""100""}","Litchfield","09005","FALSE","FALSE","America/New_York"
-"06065","41.97396","-73.00405","Riverton","CT","Connecticut","TRUE","","660","26.5","09003","Hartford","{""09003"": ""53.17"", ""09005"": ""46.83""}","Hartford|Litchfield","09003|09005","FALSE","FALSE","America/New_York"
-"06066","41.8364","-72.46061","Vernon Rockville","CT","Connecticut","TRUE","","29277","638.4","09013","Tolland","{""09013"": ""100""}","Tolland","09013","FALSE","FALSE","America/New_York"
-"06067","41.65723","-72.66318","Rocky Hill","CT","Connecticut","TRUE","","20168","578.4","09003","Hartford","{""09003"": ""100""}","Hartford","09003","FALSE","FALSE","America/New_York"
-"06068","42.01475","-73.42049","Salisbury","CT","Connecticut","TRUE","","1386","17.2","09005","Litchfield","{""09005"": ""100""}","Litchfield","09005","FALSE","FALSE","America/New_York"
-"06069","41.85432","-73.44722","Sharon","CT","Connecticut","TRUE","","2342","18.1","09005","Litchfield","{""09005"": ""100""}","Litchfield","09005","FALSE","FALSE","America/New_York"
-"06070","41.8761","-72.81477","Simsbury","CT","Connecticut","TRUE","","15734","277.2","09003","Hartford","{""09003"": ""100""}","Hartford","09003","FALSE","FALSE","America/New_York"
-"06071","41.99465","-72.45213","Somers","CT","Connecticut","TRUE","","11171","149.0","09013","Tolland","{""09013"": ""100""}","Tolland","09013","FALSE","FALSE","America/New_York"
-"06073","41.66029","-72.55771","South Glastonbury","CT","Connecticut","TRUE","","5830","133.1","09003","Hartford","{""09003"": ""100""}","Hartford","09003","FALSE","FALSE","America/New_York"
-"06074","41.83528","-72.57331","South Windsor","CT","Connecticut","TRUE","","25898","356.4","09003","Hartford","{""09003"": ""100""}","Hartford","09003","FALSE","FALSE","America/New_York"
-"06076","41.98966","-72.26165","Stafford Springs","CT","Connecticut","TRUE","","12571","56.7","09013","Tolland","{""09013"": ""100""}","Tolland","09013","FALSE","FALSE","America/New_York"
-"06078","41.98912","-72.64995","Suffield","CT","Connecticut","TRUE","","12282","185.6","09003","Hartford","{""09003"": ""100""}","Hartford","09003","FALSE","FALSE","America/New_York"
-"06081","41.90653","-72.76901","Tariffville","CT","Connecticut","TRUE","","1547","869.7","09003","Hartford","{""09003"": ""100""}","Hartford","09003","FALSE","FALSE","America/New_York"
-"06082","41.98394","-72.55475","Enfield","CT","Connecticut","TRUE","","44143","511.6","09003","Hartford","{""09003"": ""100""}","Hartford","09003","FALSE","FALSE","America/New_York"
-"06084","41.87892","-72.36458","Tolland","CT","Connecticut","TRUE","","14713","142.5","09013","Tolland","{""09013"": ""100""}","Tolland","09013","FALSE","FALSE","America/New_York"
-"06085","41.74637","-72.88809","Unionville","CT","Connecticut","TRUE","","7362","594.3","09003","Hartford","{""09003"": ""100""}","Hartford","09003","FALSE","FALSE","America/New_York"
-"06088","41.90581","-72.59645","East Windsor","CT","Connecticut","TRUE","","4556","156.3","09003","Hartford","{""09003"": ""100""}","Hartford","09003","FALSE","FALSE","America/New_York"
-"06089","41.83733","-72.82288","Weatogue","CT","Connecticut","TRUE","","3100","446.2","09003","Hartford","{""09003"": ""100""}","Hartford","09003","FALSE","FALSE","America/New_York"
-"06090","41.94648","-72.86314","West Granby","CT","Connecticut","TRUE","","835","23.8","09003","Hartford","{""09003"": ""100""}","Hartford","09003","FALSE","FALSE","America/New_York"
-"06091","42.01274","-72.97466","West Hartland","CT","Connecticut","TRUE","","60","2.1","09003","Hartford","{""09003"": ""100""}","Hartford","09003","FALSE","FALSE","America/New_York"
-"06092","41.87329","-72.85912","West Simsbury","CT","Connecticut","TRUE","","4493","201.8","09003","Hartford","{""09003"": ""100""}","Hartford","09003","FALSE","FALSE","America/New_York"
-"06093","42.00283","-72.72423","West Suffield","CT","Connecticut","TRUE","","3406","78.5","09003","Hartford","{""09003"": ""100""}","Hartford","09003","FALSE","FALSE","America/New_York"
-"06095","41.8711","-72.67361","Windsor","CT","Connecticut","TRUE","","28894","376.9","09003","Hartford","{""09003"": ""100""}","Hartford","09003","FALSE","FALSE","America/New_York"
-"06096","41.92752","-72.65703","Windsor Locks","CT","Connecticut","TRUE","","12671","509.7","09003","Hartford","{""09003"": ""100""}","Hartford","09003","FALSE","FALSE","America/New_York"
-"06098","41.95696","-73.08726","Winsted","CT","Connecticut","TRUE","","11962","81.7","09005","Litchfield","{""09005"": ""100""}","Litchfield","09005","FALSE","FALSE","America/New_York"
-"06103","41.76757","-72.67343","Hartford","CT","Connecticut","TRUE","","1878","1542.0","09003","Hartford","{""09003"": ""100""}","Hartford","09003","FALSE","FALSE","America/New_York"
-"06105","41.77474","-72.70508","Hartford","CT","Connecticut","TRUE","","18909","3106.9","09003","Hartford","{""09003"": ""100""}","Hartford","09003","FALSE","FALSE","America/New_York"
-"06106","41.74872","-72.69494","Hartford","CT","Connecticut","TRUE","","38378","3506.0","09003","Hartford","{""09003"": ""100""}","Hartford","09003","FALSE","FALSE","America/New_York"
-"06107","41.75416","-72.75898","West Hartford","CT","Connecticut","TRUE","","19104","1130.6","09003","Hartford","{""09003"": ""100""}","Hartford","09003","FALSE","FALSE","America/New_York"
-"06108","41.78084","-72.62155","East Hartford","CT","Connecticut","TRUE","","24474","1164.2","09003","Hartford","{""09003"": ""100""}","Hartford","09003","FALSE","FALSE","America/New_York"
-"06109","41.7013","-72.67034","Wethersfield","CT","Connecticut","TRUE","","26171","821.4","09003","Hartford","{""09003"": ""100""}","Hartford","09003","FALSE","FALSE","America/New_York"
-"06110","41.73268","-72.73369","West Hartford","CT","Connecticut","TRUE","","12733","1473.9","09003","Hartford","{""09003"": ""100""}","Hartford","09003","FALSE","FALSE","America/New_York"
-"06111","41.687","-72.73084","Newington","CT","Connecticut","TRUE","","30234","888.3","09003","Hartford","{""09003"": ""100""}","Hartford","09003","FALSE","FALSE","America/New_York"
-"06112","41.79312","-72.69644","Hartford","CT","Connecticut","TRUE","","21094","2988.5","09003","Hartford","{""09003"": ""100""}","Hartford","09003","FALSE","FALSE","America/New_York"
-"06114","41.73935","-72.66955","Hartford","CT","Connecticut","TRUE","","28362","2709.5","09003","Hartford","{""09003"": ""100""}","Hartford","09003","FALSE","FALSE","America/New_York"
-"06117","41.78692","-72.76199","West Hartford","CT","Connecticut","TRUE","","16350","635.4","09003","Hartford","{""09003"": ""100""}","Hartford","09003","FALSE","FALSE","America/New_York"
-"06118","41.74871","-72.60988","East Hartford","CT","Connecticut","TRUE","","25834","1007.2","09003","Hartford","{""09003"": ""100""}","Hartford","09003","FALSE","FALSE","America/New_York"
-"06119","41.76334","-72.72717","West Hartford","CT","Connecticut","TRUE","","15236","2882.8","09003","Hartford","{""09003"": ""100""}","Hartford","09003","FALSE","FALSE","America/New_York"
-"06120","41.78938","-72.66535","Hartford","CT","Connecticut","TRUE","","14223","1543.5","09003","Hartford","{""09003"": ""100""}","Hartford","09003","FALSE","FALSE","America/New_York"
-"06160","41.76661","-72.69116","Hartford","CT","Connecticut","TRUE","","0","0.0","09003","Hartford","{""09003"": ""0""}","Hartford","09003","FALSE","FALSE","America/New_York"
-"06226","41.70843","-72.20725","Willimantic","CT","Connecticut","TRUE","","19431","1032.9","09015","Windham","{""09015"": ""97.79"", ""09013"": ""2.21""}","Windham|Tolland","09015|09013","FALSE","FALSE","America/New_York"
-"06231","41.62554","-72.37028","Amston","CT","Connecticut","TRUE","","3907","95.1","09013","Tolland","{""09013"": ""100""}","Tolland","09013","FALSE","FALSE","America/New_York"
-"06232","41.7331","-72.37607","Andover","CT","Connecticut","TRUE","","3203","80.1","09013","Tolland","{""09013"": ""100""}","Tolland","09013","FALSE","FALSE","America/New_York"
-"06234","41.78941","-71.95268","Brooklyn","CT","Connecticut","TRUE","","8253","104.0","09015","Windham","{""09015"": ""100""}","Windham","09015","FALSE","FALSE","America/New_York"
-"06235","41.79295","-72.12758","Chaplin","CT","Connecticut","TRUE","","2472","49.5","09015","Windham","{""09015"": ""100""}","Windham","09015","FALSE","FALSE","America/New_York"
-"06237","41.69423","-72.30725","Columbia","CT","Connecticut","TRUE","","5444","97.5","09013","Tolland","{""09013"": ""100""}","Tolland","09013","FALSE","FALSE","America/New_York"
-"06238","41.78306","-72.33955","Coventry","CT","Connecticut","TRUE","","12406","128.2","09013","Tolland","{""09013"": ""100""}","Tolland","09013","FALSE","FALSE","America/New_York"
-"06239","41.79148","-71.8566","Danielson","CT","Connecticut","TRUE","","11169","189.4","09015","Windham","{""09015"": ""100""}","Windham","09015","FALSE","FALSE","America/New_York"
-"06241","41.85632","-71.84839","Dayville","CT","Connecticut","TRUE","","6386","89.9","09015","Windham","{""09015"": ""100""}","Windham","09015","FALSE","FALSE","America/New_York"
-"06242","41.89298","-72.09518","Eastford","CT","Connecticut","TRUE","","1264","18.7","09015","Windham","{""09015"": ""94.25"", ""09013"": ""5.75""}","Windham|Tolland","09015|09013","FALSE","FALSE","America/New_York"
-"06243","41.84523","-71.80244","East Killingly","CT","Connecticut","TRUE","","171","189.2","09015","Windham","{""09015"": ""100""}","Windham","09015","FALSE","FALSE","America/New_York"
-"06247","41.76708","-72.06624","Hampton","CT","Connecticut","TRUE","","2686","30.5","09015","Windham","{""09015"": ""100""}","Windham","09015","FALSE","FALSE","America/New_York"
-"06248","41.6849","-72.40576","Hebron","CT","Connecticut","TRUE","","5605","102.9","09013","Tolland","{""09013"": ""100""}","Tolland","09013","FALSE","FALSE","America/New_York"
-"06249","41.63128","-72.2402","Lebanon","CT","Connecticut","TRUE","","7215","51.5","09011","New London","{""09011"": ""100""}","New London","09011","FALSE","FALSE","America/New_York"
-"06250","41.77331","-72.19741","Mansfield Center","CT","Connecticut","TRUE","","4706","107.3","09013","Tolland","{""09013"": ""99"", ""09015"": ""1""}","Tolland|Windham","09013|09015","FALSE","FALSE","America/New_York"
-"06254","41.61527","-72.14322","North Franklin","CT","Connecticut","TRUE","","1778","35.2","09011","New London","{""09011"": ""100""}","New London","09011","FALSE","FALSE","America/New_York"
-"06255","41.98828","-71.90256","North Grosvenordale","CT","Connecticut","TRUE","","4357","73.9","09015","Windham","{""09015"": ""100""}","Windham","09015","FALSE","FALSE","America/New_York"
-"06256","41.73708","-72.15733","North Windham","CT","Connecticut","TRUE","","2245","115.9","09015","Windham","{""09015"": ""100""}","Windham","09015","FALSE","FALSE","America/New_York"
-"06259","41.87006","-71.99073","Pomfret Center","CT","Connecticut","TRUE","","4471","41.5","09015","Windham","{""09015"": ""100""}","Windham","09015","FALSE","FALSE","America/New_York"
-"06260","41.90902","-71.87202","Putnam","CT","Connecticut","TRUE","","9353","180.7","09015","Windham","{""09015"": ""100""}","Windham","09015","FALSE","FALSE","America/New_York"
-"06262","42.02038","-71.94817","Quinebaug","CT","Connecticut","TRUE","","812","329.8","09015","Windham","{""09015"": ""100""}","Windham","09015","FALSE","FALSE","America/New_York"
-"06263","41.84039","-71.90617","Rogers","CT","Connecticut","TRUE","","302","505.2","09015","Windham","{""09015"": ""100""}","Windham","09015","FALSE","FALSE","America/New_York"
-"06264","41.6942","-72.10044","Scotland","CT","Connecticut","TRUE","","108","28.8","09015","Windham","{""09015"": ""100""}","Windham","09015","FALSE","FALSE","America/New_York"
-"06266","41.67271","-72.17021","South Windham","CT","Connecticut","TRUE","","562","228.9","09015","Windham","{""09015"": ""100""}","Windham","09015","FALSE","FALSE","America/New_York"
-"06268","41.7997","-72.24776","Storrs Mansfield","CT","Connecticut","TRUE","","10420","153.1","09013","Tolland","{""09013"": ""100""}","Tolland","09013","FALSE","FALSE","America/New_York"
-"06269","41.80832","-72.27003","Storrs Mansfield","CT","Connecticut","TRUE","","10296","3107.5","09013","Tolland","{""09013"": ""100""}","Tolland","09013","FALSE","FALSE","America/New_York"
-"06277","41.96883","-71.83975","Thompson","CT","Connecticut","TRUE","","4099","68.8","09015","Windham","{""09015"": ""100""}","Windham","09015","FALSE","FALSE","America/New_York"
-"06278","41.89103","-72.16992","Ashford","CT","Connecticut","TRUE","","4363","42.5","09015","Windham","{""09015"": ""100""}","Windham","09015","FALSE","FALSE","America/New_York"
-"06279","41.88956","-72.25936","Willington","CT","Connecticut","TRUE","","5893","68.3","09013","Tolland","{""09013"": ""100""}","Tolland","09013","FALSE","FALSE","America/New_York"
-"06280","41.69272","-72.14033","Windham","CT","Connecticut","TRUE","","3055","80.9","09015","Windham","{""09015"": ""100""}","Windham","09015","FALSE","FALSE","America/New_York"
-"06281","41.97245","-72.01529","Woodstock","CT","Connecticut","TRUE","","6897","48.0","09015","Windham","{""09015"": ""100""}","Windham","09015","FALSE","FALSE","America/New_York"
-"06282","41.94246","-72.07969","Woodstock Valley","CT","Connecticut","TRUE","","1030","69.4","09015","Windham","{""09015"": ""100""}","Windham","09015","FALSE","FALSE","America/New_York"
-"06320","41.34937","-72.10238","New London","CT","Connecticut","TRUE","","26999","1883.2","09011","New London","{""09011"": ""100""}","New London","09011","FALSE","FALSE","America/New_York"
-"06330","41.64289","-72.07527","Baltic","CT","Connecticut","TRUE","","3220","67.9","09011","New London","{""09011"": ""88.88"", ""09015"": ""11.12""}","New London|Windham","09011|09015","FALSE","FALSE","America/New_York"
-"06331","41.69792","-71.99975","Canterbury","CT","Connecticut","TRUE","","5069","49.0","09015","Windham","{""09015"": ""100""}","Windham","09015","FALSE","FALSE","America/New_York"
-"06332","41.73131","-71.90217","Central Village","CT","Connecticut","TRUE","","587","493.0","09015","Windham","{""09015"": ""100""}","Windham","09015","FALSE","FALSE","America/New_York"
-"06333","41.38589","-72.24505","East Lyme","CT","Connecticut","TRUE","","7176","118.1","09011","New London","{""09011"": ""100""}","New London","09011","FALSE","FALSE","America/New_York"
-"06334","41.54433","-72.1742","Bozrah","CT","Connecticut","TRUE","","2508","50.0","09011","New London","{""09011"": ""100""}","New London","09011","FALSE","FALSE","America/New_York"
-"06335","41.43116","-72.06161","Gales Ferry","CT","Connecticut","TRUE","","6203","221.2","09011","New London","{""09011"": ""100""}","New London","09011","FALSE","FALSE","America/New_York"
-"06336","41.57934","-72.19505","Gilman","CT","Connecticut","TRUE","","129","81.2","09011","New London","{""09011"": ""100""}","New London","09011","FALSE","FALSE","America/New_York"
-"06339","41.44463","-71.99575","Ledyard","CT","Connecticut","TRUE","","8449","121.3","09011","New London","{""09011"": ""100""}","New London","09011","FALSE","FALSE","America/New_York"
-"06340","41.3571","-72.04526","Groton","CT","Connecticut","TRUE","","30403","512.7","09011","New London","{""09011"": ""100""}","New London","09011","FALSE","FALSE","America/New_York"
-"06350","41.64836","-72.06838","Hanover","CT","Connecticut","TRUE","","47","77.8","09011","New London","{""09011"": ""100""}","New London","09011","FALSE","FALSE","America/New_York"
-"06351","41.58916","-71.94935","Jewett City","CT","Connecticut","TRUE","","15877","117.8","09011","New London","{""09011"": ""100""}","New London","09011","FALSE","FALSE","America/New_York"
-"06353","41.45812","-72.14108","Montville","CT","Connecticut","TRUE","","107","184.5","09011","New London","{""09011"": ""100""}","New London","09011","FALSE","FALSE","America/New_York"
-"06354","41.70271","-71.85619","Moosup","CT","Connecticut","TRUE","","6167","115.5","09015","Windham","{""09015"": ""100""}","Windham","09015","FALSE","FALSE","America/New_York"
-"06355","41.36786","-71.97419","Mystic","CT","Connecticut","TRUE","","12628","346.8","09011","New London","{""09011"": ""100""}","New London","09011","FALSE","FALSE","America/New_York"
-"06357","41.32632","-72.21513","Niantic","CT","Connecticut","TRUE","","11548","422.7","09011","New London","{""09011"": ""100""}","New London","09011","FALSE","FALSE","America/New_York"
-"06359","41.46964","-71.87548","North Stonington","CT","Connecticut","TRUE","","5332","37.9","09011","New London","{""09011"": ""100""}","New London","09011","FALSE","FALSE","America/New_York"
-"06360","41.54883","-72.08927","Norwich","CT","Connecticut","TRUE","","36396","521.4","09011","New London","{""09011"": ""100""}","New London","09011","FALSE","FALSE","America/New_York"
-"06365","41.52232","-72.00107","Preston","CT","Connecticut","TRUE","","4657","58.3","09011","New London","{""09011"": ""100""}","New London","09011","FALSE","FALSE","America/New_York"
-"06370","41.46478","-72.18792","Oakdale","CT","Connecticut","TRUE","","6669","109.2","09011","New London","{""09011"": ""100""}","New London","09011","FALSE","FALSE","America/New_York"
-"06371","41.36438","-72.32688","Old Lyme","CT","Connecticut","TRUE","","9686","68.4","09011","New London","{""09011"": ""100""}","New London","09011","FALSE","FALSE","America/New_York"
-"06373","41.6705","-71.79895","Oneco","CT","Connecticut","TRUE","","181","20.6","09015","Windham","{""09015"": ""100""}","Windham","09015","FALSE","FALSE","America/New_York"
-"06374","41.68042","-71.91421","Plainfield","CT","Connecticut","TRUE","","7250","108.0","09015","Windham","{""09015"": ""100""}","Windham","09015","FALSE","FALSE","America/New_York"
-"06375","41.40513","-72.12491","Quaker Hill","CT","Connecticut","TRUE","","3630","176.8","09011","New London","{""09011"": ""100""}","New London","09011","FALSE","FALSE","America/New_York"
-"06376","41.29418","-72.25379","South Lyme","CT","Connecticut","TRUE","","209","805.6","09011","New London","{""09011"": ""100""}","New London","09011","FALSE","FALSE","America/New_York"
-"06377","41.72621","-71.81754","Sterling","CT","Connecticut","TRUE","","2969","68.8","09015","Windham","{""09015"": ""100""}","Windham","09015","FALSE","FALSE","America/New_York"
-"06378","41.38057","-71.91397","Stonington","CT","Connecticut","TRUE","","5594","101.7","09011","New London","{""09011"": ""100""}","New London","09011","FALSE","FALSE","America/New_York"
-"06379","41.36703","-71.85771","Pawcatuck","CT","Connecticut","TRUE","","8645","278.0","09011","New London","{""09011"": ""100""}","New London","09011","FALSE","FALSE","America/New_York"
-"06380","41.56548","-72.05307","Taftville","CT","Connecticut","TRUE","","2816","1138.9","09011","New London","{""09011"": ""100""}","New London","09011","FALSE","FALSE","America/New_York"
-"06382","41.46233","-72.1177","Uncasville","CT","Connecticut","TRUE","","12021","256.9","09011","New London","{""09011"": ""100""}","New London","09011","FALSE","FALSE","America/New_York"
-"06384","41.58138","-71.83183","Voluntown","CT","Connecticut","TRUE","","2833","28.8","09011","New London","{""09011"": ""97.19"", ""09015"": ""2.81""}","New London|Windham","09011|09015","FALSE","FALSE","America/New_York"
-"06385","41.35743","-72.15578","Waterford","CT","Connecticut","TRUE","","15310","237.0","09011","New London","{""09011"": ""100""}","New London","09011","FALSE","FALSE","America/New_York"
-"06387","41.74281","-71.91049","Wauregan","CT","Connecticut","TRUE","","605","2177.8","09015","Windham","{""09015"": ""100""}","Windham","09015","FALSE","FALSE","America/New_York"
-"06389","41.5642","-72.12928","Yantic","CT","Connecticut","TRUE","","0","0.0","09011","New London","{""09011"": ""100""}","New London","09011","FALSE","FALSE","America/New_York"
-"06390","41.27024","-71.98783","Fishers Island","NY","New York","TRUE","","125","11.9","36103","Suffolk","{""36103"": ""100""}","Suffolk","36103","FALSE","FALSE","America/New_York"
-"06401","41.34424","-73.0689","Ansonia","CT","Connecticut","TRUE","","18725","1203.7","09009","New Haven","{""09009"": ""100""}","New Haven","09009","FALSE","FALSE","America/New_York"
-"06403","41.43901","-73.05679","Beacon Falls","CT","Connecticut","TRUE","","6168","246.2","09009","New Haven","{""09009"": ""100""}","New Haven","09009","FALSE","FALSE","America/New_York"
-"06405","41.28319","-72.79795","Branford","CT","Connecticut","TRUE","","27711","503.4","09009","New Haven","{""09009"": ""100""}","New Haven","09009","FALSE","FALSE","America/New_York"
-"06409","41.35125","-72.4201","Centerbrook","CT","Connecticut","TRUE","","860","245.5","09007","Middlesex","{""09007"": ""100""}","Middlesex","09007","FALSE","FALSE","America/New_York"
-"06410","41.51172","-72.90425","Cheshire","CT","Connecticut","TRUE","","29050","344.3","09009","New Haven","{""09009"": ""100""}","New Haven","09009","FALSE","FALSE","America/New_York"
-"06412","41.40594","-72.48319","Chester","CT","Connecticut","TRUE","","4234","101.8","09007","Middlesex","{""09007"": ""100""}","Middlesex","09007","FALSE","FALSE","America/New_York"
-"06413","41.29801","-72.53002","Clinton","CT","Connecticut","TRUE","","12928","308.2","09007","Middlesex","{""09007"": ""100""}","Middlesex","09007","FALSE","FALSE","America/New_York"
-"06414","41.56674","-72.55587","Cobalt","CT","Connecticut","TRUE","","134","178.4","09007","Middlesex","{""09007"": ""100""}","Middlesex","09007","FALSE","FALSE","America/New_York"
-"06415","41.55747","-72.34738","Colchester","CT","Connecticut","TRUE","","16611","117.8","09011","New London","{""09011"": ""95.4"", ""09007"": ""4.6""}","New London|Middlesex","09011|09007","FALSE","FALSE","America/New_York"
-"06416","41.61412","-72.66421","Cromwell","CT","Connecticut","TRUE","","13910","462.6","09007","Middlesex","{""09007"": ""100""}","Middlesex","09007","FALSE","FALSE","America/New_York"
-"06417","41.36894","-72.46226","Deep River","CT","Connecticut","TRUE","","4480","128.0","09007","Middlesex","{""09007"": ""100""}","Middlesex","09007","FALSE","FALSE","America/New_York"
-"06418","41.32656","-73.08335","Derby","CT","Connecticut","TRUE","","12562","957.0","09009","New Haven","{""09009"": ""100""}","New Haven","09009","FALSE","FALSE","America/New_York"
-"06419","41.37925","-72.57848","Killingworth","CT","Connecticut","TRUE","","6392","69.9","09007","Middlesex","{""09007"": ""100""}","Middlesex","09007","FALSE","FALSE","America/New_York"
-"06420","41.48518","-72.26682","Salem","CT","Connecticut","TRUE","","4192","55.4","09011","New London","{""09011"": ""98.95"", ""09007"": ""1.05""}","New London|Middlesex","09011|09007","FALSE","FALSE","America/New_York"
-"06422","41.46223","-72.68279","Durham","CT","Connecticut","TRUE","","7221","117.8","09007","Middlesex","{""09007"": ""100""}","Middlesex","09007","FALSE","FALSE","America/New_York"
-"06423","41.4671","-72.38797","East Haddam","CT","Connecticut","TRUE","","5374","53.9","09007","Middlesex","{""09007"": ""100""}","Middlesex","09007","FALSE","FALSE","America/New_York"
-"06424","41.55889","-72.50564","East Hampton","CT","Connecticut","TRUE","","12744","122.2","09007","Middlesex","{""09007"": ""100""}","Middlesex","09007","FALSE","FALSE","America/New_York"
-"06426","41.35296","-72.39872","Essex","CT","Connecticut","TRUE","","3401","229.7","09007","Middlesex","{""09007"": ""100""}","Middlesex","09007","FALSE","FALSE","America/New_York"
-"06437","41.33452","-72.70043","Guilford","CT","Connecticut","TRUE","","22216","182.2","09009","New Haven","{""09009"": ""100""}","New Haven","09009","FALSE","FALSE","America/New_York"
-"06438","41.45705","-72.50352","Haddam","CT","Connecticut","TRUE","","2906","91.3","09007","Middlesex","{""09007"": ""100""}","Middlesex","09007","FALSE","FALSE","America/New_York"
-"06441","41.46505","-72.57741","Higganum","CT","Connecticut","TRUE","","5011","74.8","09007","Middlesex","{""09007"": ""100""}","Middlesex","09007","FALSE","FALSE","America/New_York"
-"06442","41.34305","-72.44535","Ivoryton","CT","Connecticut","TRUE","","2343","271.4","09007","Middlesex","{""09007"": ""100""}","Middlesex","09007","FALSE","FALSE","America/New_York"
-"06443","41.33969","-72.62777","Madison","CT","Connecticut","TRUE","","18113","193.5","09009","New Haven","{""09009"": ""100""}","New Haven","09009","FALSE","FALSE","America/New_York"
-"06444","41.56267","-72.93318","Marion","CT","Connecticut","TRUE","","241","141.7","09003","Hartford","{""09003"": ""100""}","Hartford","09003","FALSE","FALSE","America/New_York"
-"06447","41.63306","-72.45472","Marlborough","CT","Connecticut","TRUE","","6368","105.3","09003","Hartford","{""09003"": ""100""}","Hartford","09003","FALSE","FALSE","America/New_York"
-"06450","41.53303","-72.77388","Meriden","CT","Connecticut","TRUE","","35215","968.8","09009","New Haven","{""09009"": ""100""}","New Haven","09009","FALSE","FALSE","America/New_York"
-"06451","41.54204","-72.82349","Meriden","CT","Connecticut","TRUE","","24522","967.9","09009","New Haven","{""09009"": ""99.82"", ""09003"": ""0.18""}","New Haven|Hartford","09009|09003","FALSE","FALSE","America/New_York"
-"06455","41.51502","-72.71719","Middlefield","CT","Connecticut","TRUE","","3077","109.5","09007","Middlesex","{""09007"": ""100""}","Middlesex","09007","FALSE","FALSE","America/New_York"
-"06456","41.53992","-72.55024","Middle Haddam","CT","Connecticut","TRUE","","259","115.3","09007","Middlesex","{""09007"": ""100""}","Middlesex","09007","FALSE","FALSE","America/New_York"
-"06457","41.54764","-72.65489","Middletown","CT","Connecticut","TRUE","","46511","437.8","09007","Middlesex","{""09007"": ""100""}","Middlesex","09007","FALSE","FALSE","America/New_York"
-"06460","41.21513","-73.05142","Milford","CT","Connecticut","TRUE","","38959","1198.2","09009","New Haven","{""09009"": ""100""}","New Haven","09009","FALSE","FALSE","America/New_York"
-"06461","41.23949","-73.07519","Milford","CT","Connecticut","TRUE","","15369","616.5","09009","New Haven","{""09009"": ""100""}","New Haven","09009","FALSE","FALSE","America/New_York"
-"06467","41.56787","-72.89985","Milldale","CT","Connecticut","TRUE","","385","2223.3","09003","Hartford","{""09003"": ""100""}","Hartford","09003","FALSE","FALSE","America/New_York"
-"06468","41.33786","-73.22506","Monroe","CT","Connecticut","TRUE","","19546","289.5","09001","Fairfield","{""09001"": ""100""}","Fairfield","09001","FALSE","FALSE","America/New_York"
-"06469","41.50872","-72.44749","Moodus","CT","Connecticut","TRUE","","2802","107.6","09007","Middlesex","{""09007"": ""100""}","Middlesex","09007","FALSE","FALSE","America/New_York"
-"06470","41.39436","-73.31936","Newtown","CT","Connecticut","TRUE","","16571","172.4","09001","Fairfield","{""09001"": ""100""}","Fairfield","09001","FALSE","FALSE","America/New_York"
-"06471","41.33057","-72.77473","North Branford","CT","Connecticut","TRUE","","7600","325.9","09009","New Haven","{""09009"": ""100""}","New Haven","09009","FALSE","FALSE","America/New_York"
-"06472","41.38024","-72.77887","Northford","CT","Connecticut","TRUE","","6900","163.0","09009","New Haven","{""09009"": ""100""}","New Haven","09009","FALSE","FALSE","America/New_York"
-"06473","41.38069","-72.85601","North Haven","CT","Connecticut","TRUE","","24108","430.0","09009","New Haven","{""09009"": ""100""}","New Haven","09009","FALSE","FALSE","America/New_York"
-"06475","41.30174","-72.38571","Old Saybrook","CT","Connecticut","TRUE","","10090","258.7","09007","Middlesex","{""09007"": ""100""}","Middlesex","09007","FALSE","FALSE","America/New_York"
-"06477","41.28272","-73.02718","Orange","CT","Connecticut","TRUE","","13934","313.1","09009","New Haven","{""09009"": ""100""}","New Haven","09009","FALSE","FALSE","America/New_York"
-"06478","41.43127","-73.13505","Oxford","CT","Connecticut","TRUE","","13086","154.3","09009","New Haven","{""09009"": ""100""}","New Haven","09009","FALSE","FALSE","America/New_York"
-"06479","41.57697","-72.90459","Plantsville","CT","Connecticut","TRUE","","9572","502.2","09003","Hartford","{""09003"": ""100""}","Hartford","09003","FALSE","FALSE","America/New_York"
-"06480","41.59882","-72.58905","Portland","CT","Connecticut","TRUE","","9322","154.1","09007","Middlesex","{""09007"": ""100""}","Middlesex","09007","FALSE","FALSE","America/New_York"
-"06481","41.53358","-72.70034","Rockfall","CT","Connecticut","TRUE","","1304","280.1","09007","Middlesex","{""09007"": ""100""}","Middlesex","09007","FALSE","FALSE","America/New_York"
-"06482","41.40665","-73.24489","Sandy Hook","CT","Connecticut","TRUE","","11251","213.1","09001","Fairfield","{""09001"": ""100""}","Fairfield","09001","FALSE","FALSE","America/New_York"
-"06483","41.38101","-73.0872","Seymour","CT","Connecticut","TRUE","","16508","439.0","09009","New Haven","{""09009"": ""100""}","New Haven","09009","FALSE","FALSE","America/New_York"
-"06484","41.30601","-73.13829","Shelton","CT","Connecticut","TRUE","","41141","518.6","09001","Fairfield","{""09001"": ""100""}","Fairfield","09001","FALSE","FALSE","America/New_York"
-"06488","41.47454","-73.23291","Southbury","CT","Connecticut","TRUE","","19681","194.8","09009","New Haven","{""09009"": ""100""}","New Haven","09009","FALSE","FALSE","America/New_York"
-"06489","41.61333","-72.87252","Southington","CT","Connecticut","TRUE","","33522","465.6","09003","Hartford","{""09003"": ""100""}","Hartford","09003","FALSE","FALSE","America/New_York"
-"06492","41.45912","-72.80462","Wallingford","CT","Connecticut","TRUE","","44693","436.3","09009","New Haven","{""09009"": ""100""}","New Haven","09009","FALSE","FALSE","America/New_York"
-"06498","41.30687","-72.46654","Westbrook","CT","Connecticut","TRUE","","6919","169.3","09007","Middlesex","{""09007"": ""100""}","Middlesex","09007","FALSE","FALSE","America/New_York"
-"06510","41.30648","-72.92601","New Haven","CT","Connecticut","TRUE","","2576","4116.5","09009","New Haven","{""09009"": ""100""}","New Haven","09009","FALSE","FALSE","America/New_York"
-"06511","41.31621","-72.92674","New Haven","CT","Connecticut","TRUE","","53707","3495.9","09009","New Haven","{""09009"": ""100""}","New Haven","09009","FALSE","FALSE","America/New_York"
-"06512","41.28054","-72.87211","East Haven","CT","Connecticut","TRUE","","28444","1044.7","09009","New Haven","{""09009"": ""100""}","New Haven","09009","FALSE","FALSE","America/New_York"
-"06513","41.31968","-72.86821","New Haven","CT","Connecticut","TRUE","","40037","2135.4","09009","New Haven","{""09009"": ""100""}","New Haven","09009","FALSE","FALSE","America/New_York"
-"06514","41.37348","-72.94116","Hamden","CT","Connecticut","TRUE","","27534","948.6","09009","New Haven","{""09009"": ""100""}","New Haven","09009","FALSE","FALSE","America/New_York"
-"06515","41.32793","-72.96956","New Haven","CT","Connecticut","TRUE","","18344","1553.8","09009","New Haven","{""09009"": ""100""}","New Haven","09009","FALSE","FALSE","America/New_York"
-"06516","41.27396","-72.96713","West Haven","CT","Connecticut","TRUE","","54763","1966.9","09009","New Haven","{""09009"": ""100""}","New Haven","09009","FALSE","FALSE","America/New_York"
-"06517","41.34836","-72.90503","Hamden","CT","Connecticut","TRUE","","14313","1083.4","09009","New Haven","{""09009"": ""100""}","New Haven","09009","FALSE","FALSE","America/New_York"
-"06518","41.42763","-72.91349","Hamden","CT","Connecticut","TRUE","","19024","449.3","09009","New Haven","{""09009"": ""100""}","New Haven","09009","FALSE","FALSE","America/New_York"
-"06519","41.29532","-72.93584","New Haven","CT","Connecticut","TRUE","","15690","3623.4","09009","New Haven","{""09009"": ""100""}","New Haven","09009","FALSE","FALSE","America/New_York"
-"06524","41.42613","-72.99309","Bethany","CT","Connecticut","TRUE","","5513","100.8","09009","New Haven","{""09009"": ""100""}","New Haven","09009","FALSE","FALSE","America/New_York"
-"06525","41.35669","-73.01013","Woodbridge","CT","Connecticut","TRUE","","8827","181.2","09009","New Haven","{""09009"": ""100""}","New Haven","09009","FALSE","FALSE","America/New_York"
-"06604","41.17748","-73.20091","Bridgeport","CT","Connecticut","TRUE","","27152","3345.2","09001","Fairfield","{""09001"": ""100""}","Fairfield","09001","FALSE","FALSE","America/New_York"
-"06605","41.16342","-73.21781","Bridgeport","CT","Connecticut","TRUE","","24635","4057.0","09001","Fairfield","{""09001"": ""100""}","Fairfield","09001","FALSE","FALSE","America/New_York"
-"06606","41.21173","-73.20801","Bridgeport","CT","Connecticut","TRUE","","47422","3459.0","09001","Fairfield","{""09001"": ""100""}","Fairfield","09001","FALSE","FALSE","America/New_York"
-"06607","41.17371","-73.16695","Bridgeport","CT","Connecticut","TRUE","","8995","2970.5","09001","Fairfield","{""09001"": ""100""}","Fairfield","09001","FALSE","FALSE","America/New_York"
-"06608","41.1868","-73.18098","Bridgeport","CT","Connecticut","TRUE","","14263","5337.2","09001","Fairfield","{""09001"": ""100""}","Fairfield","09001","FALSE","FALSE","America/New_York"
-"06610","41.20464","-73.16944","Bridgeport","CT","Connecticut","TRUE","","23172","2925.7","09001","Fairfield","{""09001"": ""100""}","Fairfield","09001","FALSE","FALSE","America/New_York"
-"06611","41.26008","-73.20947","Trumbull","CT","Connecticut","TRUE","","35990","580.8","09001","Fairfield","{""09001"": ""100""}","Fairfield","09001","FALSE","FALSE","America/New_York"
-"06612","41.26503","-73.30092","Easton","CT","Connecticut","TRUE","","7529","108.3","09001","Fairfield","{""09001"": ""100""}","Fairfield","09001","FALSE","FALSE","America/New_York"
-"06614","41.23017","-73.12788","Stratford","CT","Connecticut","TRUE","","33299","1169.3","09001","Fairfield","{""09001"": ""100""}","Fairfield","09001","FALSE","FALSE","America/New_York"
-"06615","41.17116","-73.13465","Stratford","CT","Connecticut","TRUE","","18821","1122.4","09001","Fairfield","{""09001"": ""100""}","Fairfield","09001","FALSE","FALSE","America/New_York"
-"06702","41.55719","-73.04563","Waterbury","CT","Connecticut","TRUE","","3080","1860.1","09009","New Haven","{""09009"": ""100""}","New Haven","09009","FALSE","FALSE","America/New_York"
-"06704","41.5865","-73.03304","Waterbury","CT","Connecticut","TRUE","","25136","1225.3","09009","New Haven","{""09009"": ""100""}","New Haven","09009","FALSE","FALSE","America/New_York"
-"06705","41.5488","-72.99312","Waterbury","CT","Connecticut","TRUE","","25653","1783.6","09009","New Haven","{""09009"": ""100""}","New Haven","09009","FALSE","FALSE","America/New_York"
-"06706","41.53246","-73.02329","Waterbury","CT","Connecticut","TRUE","","13997","1416.9","09009","New Haven","{""09009"": ""100""}","New Haven","09009","FALSE","FALSE","America/New_York"
-"06708","41.54957","-73.06718","Waterbury","CT","Connecticut","TRUE","","29619","1198.1","09009","New Haven","{""09009"": ""99.74"", ""09005"": ""0.26""}","New Haven|Litchfield","09009|09005","FALSE","FALSE","America/New_York"
-"06710","41.56911","-73.04581","Waterbury","CT","Connecticut","TRUE","","10774","4217.0","09009","New Haven","{""09009"": ""100""}","New Haven","09009","FALSE","FALSE","America/New_York"
-"06712","41.49925","-72.97604","Prospect","CT","Connecticut","TRUE","","9657","261.9","09009","New Haven","{""09009"": ""100""}","New Haven","09009","FALSE","FALSE","America/New_York"
-"06716","41.60068","-72.97336","Wolcott","CT","Connecticut","TRUE","","16615","313.8","09009","New Haven","{""09009"": ""100""}","New Haven","09009","FALSE","FALSE","America/New_York"
-"06750","41.72316","-73.26415","Bantam","CT","Connecticut","TRUE","","1047","54.3","09005","Litchfield","{""09005"": ""100""}","Litchfield","09005","FALSE","FALSE","America/New_York"
-"06751","41.63795","-73.21222","Bethlehem","CT","Connecticut","TRUE","","3433","69.8","09005","Litchfield","{""09005"": ""100""}","Litchfield","09005","FALSE","FALSE","America/New_York"
-"06752","41.52084","-73.35965","Bridgewater","CT","Connecticut","TRUE","","1718","39.7","09005","Litchfield","{""09005"": ""100""}","Litchfield","09005","FALSE","FALSE","America/New_York"
-"06754","41.7718","-73.35798","Cornwall Bridge","CT","Connecticut","TRUE","","1789","21.3","09005","Litchfield","{""09005"": ""100""}","Litchfield","09005","FALSE","FALSE","America/New_York"
-"06755","41.65035","-73.48116","Gaylordsville","CT","Connecticut","TRUE","","900","77.1","09005","Litchfield","{""09005"": ""100""}","Litchfield","09005","FALSE","FALSE","America/New_York"
-"06756","41.84732","-73.23609","Goshen","CT","Connecticut","TRUE","","2842","30.4","09005","Litchfield","{""09005"": ""100""}","Litchfield","09005","FALSE","FALSE","America/New_York"
-"06757","41.74118","-73.45864","Kent","CT","Connecticut","TRUE","","1974","22.1","09005","Litchfield","{""09005"": ""100""}","Litchfield","09005","FALSE","FALSE","America/New_York"
-"06758","41.67548","-73.24206","Lakeside","CT","Connecticut","TRUE","","341","50.0","09005","Litchfield","{""09005"": ""100""}","Litchfield","09005","FALSE","FALSE","America/New_York"
-"06759","41.75754","-73.21403","Litchfield","CT","Connecticut","TRUE","","5843","44.9","09005","Litchfield","{""09005"": ""100""}","Litchfield","09005","FALSE","FALSE","America/New_York"
-"06762","41.52775","-73.12304","Middlebury","CT","Connecticut","TRUE","","7701","170.8","09009","New Haven","{""09009"": ""100""}","New Haven","09009","FALSE","FALSE","America/New_York"
-"06763","41.69214","-73.20196","Morris","CT","Connecticut","TRUE","","1864","48.9","09005","Litchfield","{""09005"": ""100""}","Litchfield","09005","FALSE","FALSE","America/New_York"
-"06770","41.48923","-73.053","Naugatuck","CT","Connecticut","TRUE","","31557","728.9","09009","New Haven","{""09009"": ""100""}","New Haven","09009","FALSE","FALSE","America/New_York"
-"06776","41.60177","-73.41567","New Milford","CT","Connecticut","TRUE","","26023","180.7","09005","Litchfield","{""09005"": ""99.99"", ""09001"": ""0.01""}","Litchfield|Fairfield","09005|09001","FALSE","FALSE","America/New_York"
-"06777","41.69288","-73.33977","New Preston Marble Dale","CT","Connecticut","TRUE","","1352","32.8","09005","Litchfield","{""09005"": ""100""}","Litchfield","09005","FALSE","FALSE","America/New_York"
-"06778","41.70962","-73.10965","Northfield","CT","Connecticut","TRUE","","1322","71.9","09005","Litchfield","{""09005"": ""100""}","Litchfield","09005","FALSE","FALSE","America/New_York"
-"06779","41.59471","-73.08166","Oakville","CT","Connecticut","TRUE","","7783","940.8","09005","Litchfield","{""09005"": ""100""}","Litchfield","09005","FALSE","FALSE","America/New_York"
-"06782","41.65467","-73.04758","Plymouth","CT","Connecticut","TRUE","","2434","125.0","09005","Litchfield","{""09005"": ""100""}","Litchfield","09005","FALSE","FALSE","America/New_York"
-"06783","41.554","-73.29997","Roxbury","CT","Connecticut","TRUE","","2094","31.3","09005","Litchfield","{""09005"": ""100""}","Litchfield","09005","FALSE","FALSE","America/New_York"
-"06784","41.57844","-73.49572","Sherman","CT","Connecticut","TRUE","","3740","62.3","09001","Fairfield","{""09001"": ""96.96"", ""09005"": ""3.04""}","Fairfield|Litchfield","09001|09005","FALSE","FALSE","America/New_York"
-"06785","41.6995","-73.44446","South Kent","CT","Connecticut","TRUE","","776","22.2","09005","Litchfield","{""09005"": ""100""}","Litchfield","09005","FALSE","FALSE","America/New_York"
-"06786","41.66924","-73.01504","Terryville","CT","Connecticut","TRUE","","9277","249.5","09005","Litchfield","{""09005"": ""100""}","Litchfield","09005","FALSE","FALSE","America/New_York"
-"06787","41.67019","-73.08586","Thomaston","CT","Connecticut","TRUE","","7758","244.8","09005","Litchfield","{""09005"": ""100""}","Litchfield","09005","FALSE","FALSE","America/New_York"
-"06790","41.83779","-73.12875","Torrington","CT","Connecticut","TRUE","","34433","319.6","09005","Litchfield","{""09005"": ""100""}","Litchfield","09005","FALSE","FALSE","America/New_York"
-"06791","41.75507","-73.05837","Harwinton","CT","Connecticut","TRUE","","5456","68.3","09005","Litchfield","{""09005"": ""100""}","Litchfield","09005","FALSE","FALSE","America/New_York"
-"06793","41.62953","-73.2884","Washington","CT","Connecticut","TRUE","","1453","39.7","09005","Litchfield","{""09005"": ""100""}","Litchfield","09005","FALSE","FALSE","America/New_York"
-"06794","41.64951","-73.32353","Washington Depot","CT","Connecticut","TRUE","","909","25.8","09005","Litchfield","{""09005"": ""100""}","Litchfield","09005","FALSE","FALSE","America/New_York"
-"06795","41.6186","-73.12284","Watertown","CT","Connecticut","TRUE","","13861","204.2","09005","Litchfield","{""09005"": ""100""}","Litchfield","09005","FALSE","FALSE","America/New_York"
-"06796","41.87037","-73.33286","West Cornwall","CT","Connecticut","TRUE","","972","10.1","09005","Litchfield","{""09005"": ""100""}","Litchfield","09005","FALSE","FALSE","America/New_York"
-"06798","41.56149","-73.20705","Woodbury","CT","Connecticut","TRUE","","9562","101.5","09005","Litchfield","{""09005"": ""100""}","Litchfield","09005","FALSE","FALSE","America/New_York"
-"06801","41.37473","-73.39284","Bethel","CT","Connecticut","TRUE","","19634","447.1","09001","Fairfield","{""09001"": ""100""}","Fairfield","09001","FALSE","FALSE","America/New_York"
-"06804","41.4674","-73.39226","Brookfield","CT","Connecticut","TRUE","","17292","337.7","09001","Fairfield","{""09001"": ""100""}","Fairfield","09001","FALSE","FALSE","America/New_York"
-"06807","41.0611","-73.59203","Cos Cob","CT","Connecticut","TRUE","","7514","922.4","09001","Fairfield","{""09001"": ""100""}","Fairfield","09001","FALSE","FALSE","America/New_York"
-"06810","41.37629","-73.45924","Danbury","CT","Connecticut","TRUE","","52548","979.5","09001","Fairfield","{""09001"": ""100""}","Fairfield","09001","FALSE","FALSE","America/New_York"
-"06811","41.42442","-73.48159","Danbury","CT","Connecticut","TRUE","","31824","579.4","09001","Fairfield","{""09001"": ""100""}","Fairfield","09001","FALSE","FALSE","America/New_York"
-"06812","41.48799","-73.48822","New Fairfield","CT","Connecticut","TRUE","","13955","263.6","09001","Fairfield","{""09001"": ""100""}","Fairfield","09001","FALSE","FALSE","America/New_York"
-"06820","41.07861","-73.48189","Darien","CT","Connecticut","TRUE","","21742","663.4","09001","Fairfield","{""09001"": ""100""}","Fairfield","09001","FALSE","FALSE","America/New_York"
-"06824","41.1757","-73.28114","Fairfield","CT","Connecticut","TRUE","","35349","677.9","09001","Fairfield","{""09001"": ""100""}","Fairfield","09001","FALSE","FALSE","America/New_York"
-"06825","41.19715","-73.2423","Fairfield","CT","Connecticut","TRUE","","21919","1258.0","09001","Fairfield","{""09001"": ""100""}","Fairfield","09001","FALSE","FALSE","America/New_York"
-"06830","41.04803","-73.62379","Greenwich","CT","Connecticut","TRUE","","25036","711.2","09001","Fairfield","{""09001"": ""100""}","Fairfield","09001","FALSE","FALSE","America/New_York"
-"06831","41.08776","-73.66093","Greenwich","CT","Connecticut","TRUE","","14588","204.6","09001","Fairfield","{""09001"": ""100""}","Fairfield","09001","FALSE","FALSE","America/New_York"
-"06840","41.1592","-73.49917","New Canaan","CT","Connecticut","TRUE","","20276","352.7","09001","Fairfield","{""09001"": ""100""}","Fairfield","09001","FALSE","FALSE","America/New_York"
-"06850","41.12651","-73.44312","Norwalk","CT","Connecticut","TRUE","","17848","1026.7","09001","Fairfield","{""09001"": ""100""}","Fairfield","09001","FALSE","FALSE","America/New_York"
-"06851","41.13943","-73.40411","Norwalk","CT","Connecticut","TRUE","","27118","1371.6","09001","Fairfield","{""09001"": ""100""}","Fairfield","09001","FALSE","FALSE","America/New_York"
-"06853","41.06943","-73.43814","Norwalk","CT","Connecticut","TRUE","","4023","1297.2","09001","Fairfield","{""09001"": ""100""}","Fairfield","09001","FALSE","FALSE","America/New_York"
-"06854","41.08954","-73.42869","Norwalk","CT","Connecticut","TRUE","","30855","2442.1","09001","Fairfield","{""09001"": ""100""}","Fairfield","09001","FALSE","FALSE","America/New_York"
-"06855","41.09297","-73.39691","Norwalk","CT","Connecticut","TRUE","","8540","1388.2","09001","Fairfield","{""09001"": ""100""}","Fairfield","09001","FALSE","FALSE","America/New_York"
-"06856","41.11116","-73.42092","Norwalk","CT","Connecticut","TRUE","","5","522.6","09001","Fairfield","{""09001"": ""100""}","Fairfield","09001","FALSE","FALSE","America/New_York"
-"06870","41.02908","-73.56969","Old Greenwich","CT","Connecticut","TRUE","","7642","1285.4","09001","Fairfield","{""09001"": ""100""}","Fairfield","09001","FALSE","FALSE","America/New_York"
-"06877","41.30644","-73.5022","Ridgefield","CT","Connecticut","TRUE","","25091","279.9","09001","Fairfield","{""09001"": ""100""}","Fairfield","09001","FALSE","FALSE","America/New_York"
-"06878","41.03181","-73.58283","Riverside","CT","Connecticut","TRUE","","8112","1306.0","09001","Fairfield","{""09001"": ""100""}","Fairfield","09001","FALSE","FALSE","America/New_York"
-"06880","41.14286","-73.34746","Westport","CT","Connecticut","TRUE","","28376","544.5","09001","Fairfield","{""09001"": ""100""}","Fairfield","09001","FALSE","FALSE","America/New_York"
-"06883","41.2284","-73.37257","Weston","CT","Connecticut","TRUE","","10287","200.9","09001","Fairfield","{""09001"": ""100""}","Fairfield","09001","FALSE","FALSE","America/New_York"
-"06890","41.14639","-73.28944","Southport","CT","Connecticut","TRUE","","4322","576.6","09001","Fairfield","{""09001"": ""100""}","Fairfield","09001","FALSE","FALSE","America/New_York"
-"06896","41.30512","-73.39151","Redding","CT","Connecticut","TRUE","","9127","112.0","09001","Fairfield","{""09001"": ""100""}","Fairfield","09001","FALSE","FALSE","America/New_York"
-"06897","41.207","-73.44007","Wilton","CT","Connecticut","TRUE","","18463","265.9","09001","Fairfield","{""09001"": ""100""}","Fairfield","09001","FALSE","FALSE","America/New_York"
-"06901","41.05359","-73.53817","Stamford","CT","Connecticut","TRUE","","7186","5964.8","09001","Fairfield","{""09001"": ""100""}","Fairfield","09001","FALSE","FALSE","America/New_York"
-"06902","41.05893","-73.54661","Stamford","CT","Connecticut","TRUE","","69946","2654.8","09001","Fairfield","{""09001"": ""100""}","Fairfield","09001","FALSE","FALSE","America/New_York"
-"06903","41.13558","-73.57219","Stamford","CT","Connecticut","TRUE","","13917","307.3","09001","Fairfield","{""09001"": ""100""}","Fairfield","09001","FALSE","FALSE","America/New_York"
-"06905","41.08883","-73.54348","Stamford","CT","Connecticut","TRUE","","20276","1574.8","09001","Fairfield","{""09001"": ""100""}","Fairfield","09001","FALSE","FALSE","America/New_York"
-"06906","41.07101","-73.52256","Stamford","CT","Connecticut","TRUE","","9244","2951.8","09001","Fairfield","{""09001"": ""100""}","Fairfield","09001","FALSE","FALSE","America/New_York"
-"06907","41.10087","-73.52015","Stamford","CT","Connecticut","TRUE","","8435","1569.8","09001","Fairfield","{""09001"": ""100""}","Fairfield","09001","FALSE","FALSE","America/New_York"
-"07001","40.58338","-74.27004","Avenel","NJ","New Jersey","TRUE","","17981","1843.4","34023","Middlesex","{""34023"": ""100""}","Middlesex","34023","FALSE","FALSE","America/New_York"
-"07002","40.66464","-74.10867","Bayonne","NJ","New Jersey","TRUE","","65091","4297.2","34017","Hudson","{""34017"": ""100""}","Hudson","34017","FALSE","FALSE","America/New_York"
-"07003","40.80999","-74.18679","Bloomfield","NJ","New Jersey","TRUE","","49260","3579.1","34013","Essex","{""34013"": ""100""}","Essex","34013","FALSE","FALSE","America/New_York"
-"07004","40.88278","-74.30415","Fairfield","NJ","New Jersey","TRUE","","7390","281.6","34013","Essex","{""34013"": ""100""}","Essex","34013","FALSE","FALSE","America/New_York"
-"07005","40.92947","-74.421","Boonton","NJ","New Jersey","TRUE","","14939","306.8","34027","Morris","{""34027"": ""100""}","Morris","34027","FALSE","FALSE","America/New_York"
-"07006","40.85215","-74.28167","Caldwell","NJ","New Jersey","TRUE","","25553","1052.1","34013","Essex","{""34013"": ""100""}","Essex","34013","FALSE","FALSE","America/New_York"
-"07008","40.58474","-74.22843","Carteret","NJ","New Jersey","TRUE","","23589","2058.7","34023","Middlesex","{""34023"": ""100""}","Middlesex","34023","FALSE","FALSE","America/New_York"
-"07009","40.85651","-74.22874","Cedar Grove","NJ","New Jersey","TRUE","","12516","1140.7","34013","Essex","{""34013"": ""100""}","Essex","34013","FALSE","FALSE","America/New_York"
-"07010","40.82211","-73.98794","Cliffside Park","NJ","New Jersey","TRUE","","25126","10162.9","34003","Bergen","{""34003"": ""100""}","Bergen","34003","FALSE","FALSE","America/New_York"
-"07011","40.87848","-74.14478","Clifton","NJ","New Jersey","TRUE","","39783","4639.1","34031","Passaic","{""34031"": ""100""}","Passaic","34031","FALSE","FALSE","America/New_York"
-"07012","40.84745","-74.15983","Clifton","NJ","New Jersey","TRUE","","12756","2345.5","34031","Passaic","{""34031"": ""100""}","Passaic","34031","FALSE","FALSE","America/New_York"
-"07013","40.8691","-74.17277","Clifton","NJ","New Jersey","TRUE","","26536","2353.1","34031","Passaic","{""34031"": ""100""}","Passaic","34031","FALSE","FALSE","America/New_York"
-"07014","40.83149","-74.1355","Clifton","NJ","New Jersey","TRUE","","5300","1470.1","34031","Passaic","{""34031"": ""100""}","Passaic","34031","FALSE","FALSE","America/New_York"
-"07016","40.65643","-74.30357","Cranford","NJ","New Jersey","TRUE","","24014","1922.3","34039","Union","{""34039"": ""100""}","Union","34039","FALSE","FALSE","America/New_York"
-"07017","40.77217","-74.20708","East Orange","NJ","New Jersey","TRUE","","36471","6253.5","34013","Essex","{""34013"": ""100""}","Essex","34013","FALSE","FALSE","America/New_York"
-"07018","40.75588","-74.21778","East Orange","NJ","New Jersey","TRUE","","27942","6363.6","34013","Essex","{""34013"": ""100""}","Essex","34013","FALSE","FALSE","America/New_York"
-"07020","40.82366","-73.97397","Edgewater","NJ","New Jersey","TRUE","","12403","4949.4","34003","Bergen","{""34003"": ""100""}","Bergen","34003","FALSE","FALSE","America/New_York"
-"07021","40.82686","-74.27973","Essex Fells","NJ","New Jersey","TRUE","","2095","579.4","34013","Essex","{""34013"": ""100""}","Essex","34013","FALSE","FALSE","America/New_York"
-"07022","40.81818","-74.00221","Fairview","NJ","New Jersey","TRUE","","14258","6528.0","34003","Bergen","{""34003"": ""100""}","Bergen","34003","FALSE","FALSE","America/New_York"
-"07023","40.64173","-74.38568","Fanwood","NJ","New Jersey","TRUE","","7660","2207.7","34039","Union","{""34039"": ""100""}","Union","34039","FALSE","FALSE","America/New_York"
-"07024","40.8508","-73.97123","Fort Lee","NJ","New Jersey","TRUE","","37430","5709.4","34003","Bergen","{""34003"": ""100""}","Bergen","34003","FALSE","FALSE","America/New_York"
-"07026","40.87859","-74.10813","Garfield","NJ","New Jersey","TRUE","","31695","5592.7","34003","Bergen","{""34003"": ""100""}","Bergen","34003","FALSE","FALSE","America/New_York"
-"07027","40.65138","-74.32312","Garwood","NJ","New Jersey","TRUE","","4338","2572.6","34039","Union","{""34039"": ""100""}","Union","34039","FALSE","FALSE","America/New_York"
-"07028","40.80407","-74.20433","Glen Ridge","NJ","New Jersey","TRUE","","7724","2320.3","34013","Essex","{""34013"": ""100""}","Essex","34013","FALSE","FALSE","America/New_York"
-"07029","40.7437","-74.15396","Harrison","NJ","New Jersey","TRUE","","19901","5870.3","34017","Hudson","{""34017"": ""100""}","Hudson","34017","FALSE","FALSE","America/New_York"
-"07030","40.74522","-74.03217","Hoboken","NJ","New Jersey","TRUE","","53193","16500.7","34017","Hudson","{""34017"": ""100""}","Hudson","34017","FALSE","FALSE","America/New_York"
-"07031","40.78748","-74.12719","North Arlington","NJ","New Jersey","TRUE","","15677","2435.3","34003","Bergen","{""34003"": ""100""}","Bergen","34003","FALSE","FALSE","America/New_York"
-"07032","40.75373","-74.12032","Kearny","NJ","New Jersey","TRUE","","41368","1805.2","34017","Hudson","{""34017"": ""100""}","Hudson","34017","FALSE","FALSE","America/New_York"
-"07033","40.67811","-74.28901","Kenilworth","NJ","New Jersey","TRUE","","8161","1464.9","34039","Union","{""34039"": ""100""}","Union","34039","FALSE","FALSE","America/New_York"
-"07034","40.87968","-74.37989","Lake Hiawatha","NJ","New Jersey","TRUE","","9143","2775.7","34027","Morris","{""34027"": ""100""}","Morris","34027","FALSE","FALSE","America/New_York"
-"07035","40.92535","-74.30489","Lincoln Park","NJ","New Jersey","TRUE","","10487","601.3","34027","Morris","{""34027"": ""100""}","Morris","34027","FALSE","FALSE","America/New_York"
-"07036","40.62524","-74.23892","Linden","NJ","New Jersey","TRUE","","43845","1557.0","34039","Union","{""34039"": ""100""}","Union","34039","FALSE","FALSE","America/New_York"
-"07039","40.7855","-74.32908","Livingston","NJ","New Jersey","TRUE","","29846","834.5","34013","Essex","{""34013"": ""100""}","Essex","34013","FALSE","FALSE","America/New_York"
-"07040","40.73061","-74.26963","Maplewood","NJ","New Jersey","TRUE","","24696","2736.7","34013","Essex","{""34013"": ""100""}","Essex","34013","FALSE","FALSE","America/New_York"
-"07041","40.72308","-74.30068","Millburn","NJ","New Jersey","TRUE","","6770","1966.4","34013","Essex","{""34013"": ""100""}","Essex","34013","FALSE","FALSE","America/New_York"
-"07042","40.81369","-74.21768","Montclair","NJ","New Jersey","TRUE","","26293","2715.4","34013","Essex","{""34013"": ""100""}","Essex","34013","FALSE","FALSE","America/New_York"
-"07043","40.84431","-74.20045","Montclair","NJ","New Jersey","TRUE","","12567","1872.8","34013","Essex","{""34013"": ""96.64"", ""34031"": ""3.36""}","Essex|Passaic","34013|34031","FALSE","FALSE","America/New_York"
-"07044","40.83223","-74.24291","Verona","NJ","New Jersey","TRUE","","13622","1865.6","34013","Essex","{""34013"": ""100""}","Essex","34013","FALSE","FALSE","America/New_York"
-"07045","40.91072","-74.36767","Montville","NJ","New Jersey","TRUE","","10670","582.0","34027","Morris","{""34027"": ""100""}","Morris","34027","FALSE","FALSE","America/New_York"
-"07046","40.89064","-74.44053","Mountain Lakes","NJ","New Jersey","TRUE","","4305","629.8","34027","Morris","{""34027"": ""100""}","Morris","34027","FALSE","FALSE","America/New_York"
-"07047","40.79358","-74.02613","North Bergen","NJ","New Jersey","TRUE","","61619","4581.4","34017","Hudson","{""34017"": ""100""}","Hudson","34017","FALSE","FALSE","America/New_York"
-"07050","40.76817","-74.23485","Orange","NJ","New Jersey","TRUE","","30302","5326.7","34013","Essex","{""34013"": ""100""}","Essex","34013","FALSE","FALSE","America/New_York"
-"07052","40.7893","-74.26283","West Orange","NJ","New Jersey","TRUE","","47342","1520.1","34013","Essex","{""34013"": ""100""}","Essex","34013","FALSE","FALSE","America/New_York"
-"07054","40.85565","-74.40225","Parsippany","NJ","New Jersey","TRUE","","29144","813.0","34027","Morris","{""34027"": ""100""}","Morris","34027","FALSE","FALSE","America/New_York"
-"07055","40.8575","-74.12821","Passaic","NJ","New Jersey","TRUE","","70090","8625.6","34031","Passaic","{""34031"": ""100""}","Passaic","34031","FALSE","FALSE","America/New_York"
-"07057","40.85349","-74.10674","Wallington","NJ","New Jersey","TRUE","","11540","4531.3","34003","Bergen","{""34003"": ""100""}","Bergen","34003","FALSE","FALSE","America/New_York"
-"07058","40.86728","-74.34275","Pine Brook","NJ","New Jersey","TRUE","","5109","660.6","34027","Morris","{""34027"": ""100""}","Morris","34027","FALSE","FALSE","America/New_York"
-"07059","40.63237","-74.51459","Warren","NJ","New Jersey","TRUE","","15689","309.3","34035","Somerset","{""34035"": ""100""}","Somerset","34035","FALSE","FALSE","America/New_York"
-"07060","40.61635","-74.42166","Plainfield","NJ","New Jersey","TRUE","","45520","3471.1","34039","Union","{""34039"": ""61.31"", ""34035"": ""38.69""}","Union|Somerset","34039|34035","FALSE","FALSE","America/New_York"
-"07062","40.63162","-74.40333","Plainfield","NJ","New Jersey","TRUE","","12745","2656.9","34039","Union","{""34039"": ""92.07"", ""34035"": ""7.93""}","Union|Somerset","34039|34035","FALSE","FALSE","America/New_York"
-"07063","40.60514","-74.4461","Plainfield","NJ","New Jersey","TRUE","","13589","2931.1","34039","Union","{""34039"": ""75.31"", ""34035"": ""24.69""}","Union|Somerset","34039|34035","FALSE","FALSE","America/New_York"
-"07064","40.56812","-74.24811","Port Reading","NJ","New Jersey","TRUE","","3864","1072.5","34023","Middlesex","{""34023"": ""100""}","Middlesex","34023","FALSE","FALSE","America/New_York"
-"07065","40.60771","-74.2807","Rahway","NJ","New Jersey","TRUE","","29543","2943.7","34039","Union","{""34039"": ""100""}","Union","34039","FALSE","FALSE","America/New_York"
-"07066","40.62022","-74.31357","Clark","NJ","New Jersey","TRUE","","15735","1424.1","34039","Union","{""34039"": ""100""}","Union","34039","FALSE","FALSE","America/New_York"
-"07067","40.59263","-74.31483","Colonia","NJ","New Jersey","TRUE","","18205","1749.7","34023","Middlesex","{""34023"": ""100""}","Middlesex","34023","FALSE","FALSE","America/New_York"
-"07068","40.82073","-74.30866","Roseland","NJ","New Jersey","TRUE","","5834","628.0","34013","Essex","{""34013"": ""100""}","Essex","34013","FALSE","FALSE","America/New_York"
-"07069","40.64247","-74.43952","Watchung","NJ","New Jersey","TRUE","","6191","379.7","34035","Somerset","{""34035"": ""100""}","Somerset","34035","FALSE","FALSE","America/New_York"
-"07070","40.82017","-74.10566","Rutherford","NJ","New Jersey","TRUE","","18398","2526.0","34003","Bergen","{""34003"": ""100""}","Bergen","34003","FALSE","FALSE","America/New_York"
-"07071","40.79635","-74.10991","Lyndhurst","NJ","New Jersey","TRUE","","22298","1890.8","34003","Bergen","{""34003"": ""100""}","Bergen","34003","FALSE","FALSE","America/New_York"
-"07072","40.82467","-74.06105","Carlstadt","NJ","New Jersey","TRUE","","6178","605.5","34003","Bergen","{""34003"": ""100""}","Bergen","34003","FALSE","FALSE","America/New_York"
-"07073","40.81803","-74.08538","East Rutherford","NJ","New Jersey","TRUE","","9584","995.1","34003","Bergen","{""34003"": ""100""}","Bergen","34003","FALSE","FALSE","America/New_York"
-"07074","40.8399","-74.05672","Moonachie","NJ","New Jersey","TRUE","","2716","818.6","34003","Bergen","{""34003"": ""100""}","Bergen","34003","FALSE","FALSE","America/New_York"
-"07075","40.85076","-74.08776","Wood Ridge","NJ","New Jersey","TRUE","","8769","3053.4","34003","Bergen","{""34003"": ""100""}","Bergen","34003","FALSE","FALSE","America/New_York"
-"07076","40.63304","-74.37392","Scotch Plains","NJ","New Jersey","TRUE","","24162","1035.7","34039","Union","{""34039"": ""100""}","Union","34039","FALSE","FALSE","America/New_York"
-"07077","40.55409","-74.25501","Sewaren","NJ","New Jersey","TRUE","","2627","657.3","34023","Middlesex","{""34023"": ""100""}","Middlesex","34023","FALSE","FALSE","America/New_York"
-"07078","40.74207","-74.33378","Short Hills","NJ","New Jersey","TRUE","","13372","800.9","34013","Essex","{""34013"": ""100""}","Essex","34013","FALSE","FALSE","America/New_York"
-"07079","40.74912","-74.26016","South Orange","NJ","New Jersey","TRUE","","16662","2257.4","34013","Essex","{""34013"": ""100""}","Essex","34013","FALSE","FALSE","America/New_York"
-"07080","40.57481","-74.41531","South Plainfield","NJ","New Jersey","TRUE","","23956","1118.6","34023","Middlesex","{""34023"": ""100""}","Middlesex","34023","FALSE","FALSE","America/New_York"
-"07081","40.69948","-74.32543","Springfield","NJ","New Jersey","TRUE","","17406","1303.2","34039","Union","{""34039"": ""100""}","Union","34039","FALSE","FALSE","America/New_York"
-"07082","40.92641","-74.34534","Towaco","NJ","New Jersey","TRUE","","5011","320.0","34027","Morris","{""34027"": ""100""}","Morris","34027","FALSE","FALSE","America/New_York"
-"07083","40.69419","-74.26895","Union","NJ","New Jersey","TRUE","","55162","2460.7","34039","Union","{""34039"": ""99.98"", ""34013"": ""0.02""}","Union|Essex","34039|34013","FALSE","FALSE","America/New_York"
-"07086","40.76808","-74.02087","Weehawken","NJ","New Jersey","TRUE","","14604","7112.6","34017","Hudson","{""34017"": ""100""}","Hudson","34017","FALSE","FALSE","America/New_York"
-"07087","40.76736","-74.03227","Union City","NJ","New Jersey","TRUE","","68256","20359.6","34017","Hudson","{""34017"": ""100""}","Hudson","34017","FALSE","FALSE","America/New_York"
-"07088","40.71787","-74.2849","Vauxhall","NJ","New Jersey","TRUE","","3249","3017.0","34039","Union","{""34039"": ""100""}","Union","34039","FALSE","FALSE","America/New_York"
-"07090","40.65154","-74.34327","Westfield","NJ","New Jersey","TRUE","","29856","1711.1","34039","Union","{""34039"": ""100""}","Union","34039","FALSE","FALSE","America/New_York"
-"07092","40.68103","-74.36024","Mountainside","NJ","New Jersey","TRUE","","6890","661.6","34039","Union","{""34039"": ""100""}","Union","34039","FALSE","FALSE","America/New_York"
-"07093","40.78809","-74.01145","West New York","NJ","New Jersey","TRUE","","63979","20806.4","34017","Hudson","{""34017"": ""100""}","Hudson","34017","FALSE","FALSE","America/New_York"
-"07094","40.78098","-74.0661","Secaucus","NJ","New Jersey","TRUE","","20125","1347.2","34017","Hudson","{""34017"": ""100""}","Hudson","34017","FALSE","FALSE","America/New_York"
-"07095","40.55369","-74.28641","Woodbridge","NJ","New Jersey","TRUE","","19989","1865.5","34023","Middlesex","{""34023"": ""100""}","Middlesex","34023","FALSE","FALSE","America/New_York"
-"07102","40.73591","-74.17355","Newark","NJ","New Jersey","TRUE","","13505","4440.5","34013","Essex","{""34013"": ""100""}","Essex","34013","FALSE","FALSE","America/New_York"
-"07103","40.73869","-74.19554","Newark","NJ","New Jersey","TRUE","","32881","5967.3","34013","Essex","{""34013"": ""100""}","Essex","34013","FALSE","FALSE","America/New_York"
-"07104","40.76734","-74.16831","Newark","NJ","New Jersey","TRUE","","51075","7791.5","34013","Essex","{""34013"": ""100""}","Essex","34013","FALSE","FALSE","America/New_York"
-"07105","40.72288","-74.13883","Newark","NJ","New Jersey","TRUE","","52008","4319.9","34013","Essex","{""34013"": ""100""}","Essex","34013","FALSE","FALSE","America/New_York"
-"07106","40.7418","-74.2304","Newark","NJ","New Jersey","TRUE","","33851","9207.4","34013","Essex","{""34013"": ""100""}","Essex","34013","FALSE","FALSE","America/New_York"
-"07107","40.76182","-74.18655","Newark","NJ","New Jersey","TRUE","","37684","8841.5","34013","Essex","{""34013"": ""100""}","Essex","34013","FALSE","FALSE","America/New_York"
-"07108","40.72312","-74.20016","Newark","NJ","New Jersey","TRUE","","23118","6503.6","34013","Essex","{""34013"": ""100""}","Essex","34013","FALSE","FALSE","America/New_York"
-"07109","40.79496","-74.16165","Belleville","NJ","New Jersey","TRUE","","36173","4218.6","34013","Essex","{""34013"": ""100""}","Essex","34013","FALSE","FALSE","America/New_York"
-"07110","40.81924","-74.15708","Nutley","NJ","New Jersey","TRUE","","28397","3249.2","34013","Essex","{""34013"": ""99.74"", ""34031"": ""0.26""}","Essex|Passaic","34013|34031","FALSE","FALSE","America/New_York"
-"07111","40.7243","-74.23168","Irvington","NJ","New Jersey","TRUE","","54079","7161.7","34013","Essex","{""34013"": ""100""}","Essex","34013","FALSE","FALSE","America/New_York"
-"07112","40.70946","-74.20955","Newark","NJ","New Jersey","TRUE","","25016","5360.9","34013","Essex","{""34013"": ""100""}","Essex","34013","FALSE","FALSE","America/New_York"
-"07114","40.69995","-74.16405","Newark","NJ","New Jersey","TRUE","","12024","624.5","34013","Essex","{""34013"": ""100""}","Essex","34013","FALSE","FALSE","America/New_York"
-"07201","40.672","-74.17661","Elizabeth","NJ","New Jersey","TRUE","","28091","1635.7","34039","Union","{""34039"": ""100""}","Union","34039","FALSE","FALSE","America/New_York"
-"07202","40.65255","-74.21616","Elizabeth","NJ","New Jersey","TRUE","","41671","6946.1","34039","Union","{""34039"": ""100""}","Union","34039","FALSE","FALSE","America/New_York"
-"07203","40.65269","-74.25994","Roselle","NJ","New Jersey","TRUE","","21637","3163.9","34039","Union","{""34039"": ""100""}","Union","34039","FALSE","FALSE","America/New_York"
-"07204","40.66531","-74.2665","Roselle Park","NJ","New Jersey","TRUE","","13581","4279.3","34039","Union","{""34039"": ""100""}","Union","34039","FALSE","FALSE","America/New_York"
-"07205","40.69616","-74.22859","Hillside","NJ","New Jersey","TRUE","","21928","3074.0","34039","Union","{""34039"": ""100""}","Union","34039","FALSE","FALSE","America/New_York"
-"07206","40.65183","-74.18418","Elizabethport","NJ","New Jersey","TRUE","","26995","6522.6","34039","Union","{""34039"": ""100""}","Union","34039","FALSE","FALSE","America/New_York"
-"07208","40.67419","-74.2251","Elizabeth","NJ","New Jersey","TRUE","","31556","6868.0","34039","Union","{""34039"": ""100""}","Union","34039","FALSE","FALSE","America/New_York"
-"07302","40.71978","-74.04681","Jersey City","NJ","New Jersey","TRUE","","46585","12296.9","34017","Hudson","{""34017"": ""100""}","Hudson","34017","FALSE","FALSE","America/New_York"
-"07304","40.71648","-74.07355","Jersey City","NJ","New Jersey","TRUE","","43327","8942.2","34017","Hudson","{""34017"": ""100""}","Hudson","34017","FALSE","FALSE","America/New_York"
-"07305","40.69847","-74.08054","Jersey City","NJ","New Jersey","TRUE","","64994","4345.2","34017","Hudson","{""34017"": ""100""}","Hudson","34017","FALSE","FALSE","America/New_York"
-"07306","40.73458","-74.07178","Jersey City","NJ","New Jersey","TRUE","","52093","7387.6","34017","Hudson","{""34017"": ""100""}","Hudson","34017","FALSE","FALSE","America/New_York"
-"07307","40.75176","-74.05631","Jersey City","NJ","New Jersey","TRUE","","41411","7152.9","34017","Hudson","{""34017"": ""100""}","Hudson","34017","FALSE","FALSE","America/New_York"
-"07310","40.73063","-74.03787","Jersey City","NJ","New Jersey","TRUE","","13148","8375.1","34017","Hudson","{""34017"": ""100""}","Hudson","34017","FALSE","FALSE","America/New_York"
-"07311","40.71909","-74.03293","Jersey City","NJ","New Jersey","TRUE","","352","4105.1","34017","Hudson","{""34017"": ""100""}","Hudson","34017","FALSE","FALSE","America/New_York"
-"07401","41.03319","-74.13328","Allendale","NJ","New Jersey","TRUE","","6765","845.8","34003","Bergen","{""34003"": ""100""}","Bergen","34003","FALSE","FALSE","America/New_York"
-"07403","41.02126","-74.33188","Bloomingdale","NJ","New Jersey","TRUE","","8009","484.7","34031","Passaic","{""34031"": ""100""}","Passaic","34031","FALSE","FALSE","America/New_York"
-"07405","40.98646","-74.38308","Butler","NJ","New Jersey","TRUE","","17508","342.7","34027","Morris","{""34027"": ""100""}","Morris","34027","FALSE","FALSE","America/New_York"
-"07407","40.90494","-74.12005","Elmwood Park","NJ","New Jersey","TRUE","","20059","2930.3","34003","Bergen","{""34003"": ""100""}","Bergen","34003","FALSE","FALSE","America/New_York"
-"07410","40.93588","-74.1177","Fair Lawn","NJ","New Jersey","TRUE","","33017","2483.7","34003","Bergen","{""34003"": ""100""}","Bergen","34003","FALSE","FALSE","America/New_York"
-"07416","41.11589","-74.59775","Franklin","NJ","New Jersey","TRUE","","5523","225.6","34037","Sussex","{""34037"": ""100""}","Sussex","34037","FALSE","FALSE","America/New_York"
-"07417","41.00857","-74.20831","Franklin Lakes","NJ","New Jersey","TRUE","","10946","449.0","34003","Bergen","{""34003"": ""100""}","Bergen","34003","FALSE","FALSE","America/New_York"
-"07418","41.2386","-74.48738","Glenwood","NJ","New Jersey","TRUE","","2367","195.5","34037","Sussex","{""34037"": ""100""}","Sussex","34037","FALSE","FALSE","America/New_York"
-"07419","41.15321","-74.56813","Hamburg","NJ","New Jersey","TRUE","","8799","217.4","34037","Sussex","{""34037"": ""100""}","Sussex","34037","FALSE","FALSE","America/New_York"
-"07420","41.03255","-74.30119","Haskell","NJ","New Jersey","TRUE","","5148","798.1","34031","Passaic","{""34031"": ""100""}","Passaic","34031","FALSE","FALSE","America/New_York"
-"07421","41.16582","-74.36312","Hewitt","NJ","New Jersey","TRUE","","7255","108.3","34031","Passaic","{""34031"": ""93.35"", ""34037"": ""6.65""}","Passaic|Sussex","34031|34037","FALSE","FALSE","America/New_York"
-"07422","41.1816","-74.44914","Highland Lakes","NJ","New Jersey","TRUE","","6450","202.5","34037","Sussex","{""34037"": ""100""}","Sussex","34037","FALSE","FALSE","America/New_York"
-"07423","41.0001","-74.09724","Ho Ho Kus","NJ","New Jersey","TRUE","","4094","908.1","34003","Bergen","{""34003"": ""100""}","Bergen","34003","FALSE","FALSE","America/New_York"
-"07424","40.88374","-74.20587","Little Falls","NJ","New Jersey","TRUE","","27030","1827.6","34031","Passaic","{""34031"": ""100""}","Passaic","34031","FALSE","FALSE","America/New_York"
-"07430","41.08162","-74.18566","Mahwah","NJ","New Jersey","TRUE","","26275","400.5","34003","Bergen","{""34003"": ""100""}","Bergen","34003","FALSE","FALSE","America/New_York"
-"07432","40.99515","-74.14108","Midland Park","NJ","New Jersey","TRUE","","7244","1780.4","34003","Bergen","{""34003"": ""100""}","Bergen","34003","FALSE","FALSE","America/New_York"
-"07435","41.03603","-74.44998","Newfoundland","NJ","New Jersey","TRUE","","2509","64.8","34031","Passaic","{""34031"": ""56.67"", ""34027"": ""43.33""}","Passaic|Morris","34031|34027","FALSE","FALSE","America/New_York"
-"07436","41.03134","-74.24078","Oakland","NJ","New Jersey","TRUE","","12972","589.0","34003","Bergen","{""34003"": ""100""}","Bergen","34003","FALSE","FALSE","America/New_York"
-"07438","41.03023","-74.51968","Oak Ridge","NJ","New Jersey","TRUE","","11567","162.5","34027","Morris","{""34027"": ""88.68"", ""34031"": ""11.32""}","Morris|Passaic","34027|34031","FALSE","FALSE","America/New_York"
-"07439","41.07611","-74.59771","Ogdensburg","NJ","New Jersey","TRUE","","2327","376.6","34037","Sussex","{""34037"": ""100""}","Sussex","34037","FALSE","FALSE","America/New_York"
-"07440","40.94671","-74.29413","Pequannock","NJ","New Jersey","TRUE","","4469","1104.9","34027","Morris","{""34027"": ""100""}","Morris","34027","FALSE","FALSE","America/New_York"
-"07442","41.00247","-74.28578","Pompton Lakes","NJ","New Jersey","TRUE","","11029","1467.0","34031","Passaic","{""34031"": ""100""}","Passaic","34031","FALSE","FALSE","America/New_York"
-"07444","40.96783","-74.30729","Pompton Plains","NJ","New Jersey","TRUE","","10722","792.3","34027","Morris","{""34027"": ""100""}","Morris","34027","FALSE","FALSE","America/New_York"
-"07446","41.05944","-74.14545","Ramsey","NJ","New Jersey","TRUE","","14892","1039.4","34003","Bergen","{""34003"": ""100""}","Bergen","34003","FALSE","FALSE","America/New_York"
-"07450","40.9822","-74.11266","Ridgewood","NJ","New Jersey","TRUE","","25209","1691.3","34003","Bergen","{""34003"": ""100""}","Bergen","34003","FALSE","FALSE","America/New_York"
-"07452","40.9601","-74.1249","Glen Rock","NJ","New Jersey","TRUE","","11780","1677.5","34003","Bergen","{""34003"": ""100""}","Bergen","34003","FALSE","FALSE","America/New_York"
-"07456","41.10644","-74.27492","Ringwood","NJ","New Jersey","TRUE","","12175","183.8","34031","Passaic","{""34031"": ""100""}","Passaic","34031","FALSE","FALSE","America/New_York"
-"07457","40.9921","-74.31247","Riverdale","NJ","New Jersey","TRUE","","4197","797.6","34027","Morris","{""34027"": ""100""}","Morris","34027","FALSE","FALSE","America/New_York"
-"07458","41.04586","-74.09709","Saddle River","NJ","New Jersey","TRUE","","11467","435.7","34003","Bergen","{""34003"": ""100""}","Bergen","34003","FALSE","FALSE","America/New_York"
-"07460","41.11219","-74.495","Stockholm","NJ","New Jersey","TRUE","","3398","39.1","34037","Sussex","{""34037"": ""90.71"", ""34027"": ""6.05"", ""34031"": ""3.24""}","Sussex|Morris|Passaic","34037|34027|34031","FALSE","FALSE","America/New_York"
-"07461","41.241","-74.60648","Sussex","NJ","New Jersey","TRUE","","18094","82.9","34037","Sussex","{""34037"": ""100""}","Sussex","34037","FALSE","FALSE","America/New_York"
-"07462","41.19889","-74.48862","Vernon","NJ","New Jersey","TRUE","","6189","141.2","34037","Sussex","{""34037"": ""100""}","Sussex","34037","FALSE","FALSE","America/New_York"
-"07463","41.01334","-74.12571","Waldwick","NJ","New Jersey","TRUE","","9986","1885.9","34003","Bergen","{""34003"": ""100""}","Bergen","34003","FALSE","FALSE","America/New_York"
-"07465","41.051","-74.2977","Wanaque","NJ","New Jersey","TRUE","","6716","324.3","34031","Passaic","{""34031"": ""100""}","Passaic","34031","FALSE","FALSE","America/New_York"
-"07470","40.94803","-74.24525","Wayne","NJ","New Jersey","TRUE","","53954","876.3","34031","Passaic","{""34031"": ""100""}","Passaic","34031","FALSE","FALSE","America/New_York"
-"07480","41.08748","-74.37737","West Milford","NJ","New Jersey","TRUE","","16439","190.2","34031","Passaic","{""34031"": ""100""}","Passaic","34031","FALSE","FALSE","America/New_York"
-"07481","40.99898","-74.16757","Wyckoff","NJ","New Jersey","TRUE","","17017","995.7","34003","Bergen","{""34003"": ""100""}","Bergen","34003","FALSE","FALSE","America/New_York"
-"07495","41.10444","-74.16321","Mahwah","NJ","New Jersey","TRUE","","0","0.0","34003","Bergen","{""34003"": ""0""}","Bergen","34003","FALSE","FALSE","America/New_York"
-"07501","40.91273","-74.17121","Paterson","NJ","New Jersey","TRUE","","32432","6820.9","34031","Passaic","{""34031"": ""100""}","Passaic","34031","FALSE","FALSE","America/New_York"
-"07502","40.91863","-74.1942","Paterson","NJ","New Jersey","TRUE","","16396","6935.4","34031","Passaic","{""34031"": ""100""}","Passaic","34031","FALSE","FALSE","America/New_York"
-"07503","40.89774","-74.15342","Paterson","NJ","New Jersey","TRUE","","17875","4471.0","34031","Passaic","{""34031"": ""100""}","Passaic","34031","FALSE","FALSE","America/New_York"
-"07504","40.91221","-74.1413","Paterson","NJ","New Jersey","TRUE","","11578","5393.6","34031","Passaic","{""34031"": ""100""}","Passaic","34031","FALSE","FALSE","America/New_York"
-"07505","40.91623","-74.17187","Paterson","NJ","New Jersey","TRUE","","2616","5073.9","34031","Passaic","{""34031"": ""100""}","Passaic","34031","FALSE","FALSE","America/New_York"
-"07506","40.958","-74.15811","Hawthorne","NJ","New Jersey","TRUE","","18784","2185.9","34031","Passaic","{""34031"": ""100""}","Passaic","34031","FALSE","FALSE","America/New_York"
-"07508","40.95433","-74.18441","Haledon","NJ","New Jersey","TRUE","","22627","1702.2","34031","Passaic","{""34031"": ""100""}","Passaic","34031","FALSE","FALSE","America/New_York"
-"07512","40.9039","-74.22123","Totowa","NJ","New Jersey","TRUE","","10828","1055.0","34031","Passaic","{""34031"": ""100""}","Passaic","34031","FALSE","FALSE","America/New_York"
-"07513","40.90574","-74.14861","Paterson","NJ","New Jersey","TRUE","","12348","8040.4","34031","Passaic","{""34031"": ""100""}","Passaic","34031","FALSE","FALSE","America/New_York"
-"07514","40.92622","-74.14452","Paterson","NJ","New Jersey","TRUE","","18100","7576.3","34031","Passaic","{""34031"": ""100""}","Passaic","34031","FALSE","FALSE","America/New_York"
-"07522","40.92502","-74.17853","Paterson","NJ","New Jersey","TRUE","","20615","9686.8","34031","Passaic","{""34031"": ""100""}","Passaic","34031","FALSE","FALSE","America/New_York"
-"07524","40.93215","-74.15682","Paterson","NJ","New Jersey","TRUE","","13750","7039.3","34031","Passaic","{""34031"": ""100""}","Passaic","34031","FALSE","FALSE","America/New_York"
-"07601","40.889","-74.0461","Hackensack","NJ","New Jersey","TRUE","","44339","4081.3","34003","Bergen","{""34003"": ""100""}","Bergen","34003","FALSE","FALSE","America/New_York"
-"07603","40.87508","-74.02932","Bogota","NJ","New Jersey","TRUE","","8360","4269.3","34003","Bergen","{""34003"": ""100""}","Bergen","34003","FALSE","FALSE","America/New_York"
-"07604","40.86195","-74.07409","Hasbrouck Heights","NJ","New Jersey","TRUE","","12082","3053.9","34003","Bergen","{""34003"": ""100""}","Bergen","34003","FALSE","FALSE","America/New_York"
-"07605","40.86382","-73.98978","Leonia","NJ","New Jersey","TRUE","","9086","2274.2","34003","Bergen","{""34003"": ""100""}","Bergen","34003","FALSE","FALSE","America/New_York"
-"07606","40.85725","-74.04668","South Hackensack","NJ","New Jersey","TRUE","","2575","1517.5","34003","Bergen","{""34003"": ""100""}","Bergen","34003","FALSE","FALSE","America/New_York"
-"07607","40.9026","-74.06326","Maywood","NJ","New Jersey","TRUE","","9661","2935.5","34003","Bergen","{""34003"": ""100""}","Bergen","34003","FALSE","FALSE","America/New_York"
-"07608","40.85368","-74.06129","Teterboro","NJ","New Jersey","TRUE","","102","25.5","34003","Bergen","{""34003"": ""100""}","Bergen","34003","FALSE","FALSE","America/New_York"
-"07620","40.96156","-73.91996","Alpine","NJ","New Jersey","TRUE","","1547","93.1","34003","Bergen","{""34003"": ""100""}","Bergen","34003","FALSE","FALSE","America/New_York"
-"07621","40.9238","-73.99859","Bergenfield","NJ","New Jersey","TRUE","","27373","3761.3","34003","Bergen","{""34003"": ""100""}","Bergen","34003","FALSE","FALSE","America/New_York"
-"07624","40.97331","-73.96053","Closter","NJ","New Jersey","TRUE","","8565","1051.4","34003","Bergen","{""34003"": ""100""}","Bergen","34003","FALSE","FALSE","America/New_York"
-"07626","40.94052","-73.95956","Cresskill","NJ","New Jersey","TRUE","","8699","1634.7","34003","Bergen","{""34003"": ""100""}","Bergen","34003","FALSE","FALSE","America/New_York"
-"07627","40.95505","-73.95674","Demarest","NJ","New Jersey","TRUE","","4942","919.9","34003","Bergen","{""34003"": ""100""}","Bergen","34003","FALSE","FALSE","America/New_York"
-"07628","40.94514","-73.99232","Dumont","NJ","New Jersey","TRUE","","17624","3485.9","34003","Bergen","{""34003"": ""100""}","Bergen","34003","FALSE","FALSE","America/New_York"
-"07630","40.97487","-74.02397","Emerson","NJ","New Jersey","TRUE","","7596","1314.8","34003","Bergen","{""34003"": ""100""}","Bergen","34003","FALSE","FALSE","America/New_York"
-"07631","40.89178","-73.97355","Englewood","NJ","New Jersey","TRUE","","28271","2223.8","34003","Bergen","{""34003"": ""100""}","Bergen","34003","FALSE","FALSE","America/New_York"
-"07632","40.8822","-73.94661","Englewood Cliffs","NJ","New Jersey","TRUE","","5453","990.5","34003","Bergen","{""34003"": ""100""}","Bergen","34003","FALSE","FALSE","America/New_York"
-"07640","40.98988","-73.98024","Harrington Park","NJ","New Jersey","TRUE","","4753","999.7","34003","Bergen","{""34003"": ""100""}","Bergen","34003","FALSE","FALSE","America/New_York"
-"07641","40.96221","-73.99753","Haworth","NJ","New Jersey","TRUE","","3418","677.3","34003","Bergen","{""34003"": ""100""}","Bergen","34003","FALSE","FALSE","America/New_York"
-"07642","41.00735","-74.04383","Hillsdale","NJ","New Jersey","TRUE","","10317","1369.6","34003","Bergen","{""34003"": ""100""}","Bergen","34003","FALSE","FALSE","America/New_York"
-"07643","40.84634","-74.03879","Little Ferry","NJ","New Jersey","TRUE","","10782","2821.1","34003","Bergen","{""34003"": ""100""}","Bergen","34003","FALSE","FALSE","America/New_York"
-"07644","40.87848","-74.08138","Lodi","NJ","New Jersey","TRUE","","24430","4119.9","34003","Bergen","{""34003"": ""100""}","Bergen","34003","FALSE","FALSE","America/New_York"
-"07645","41.05292","-74.04988","Montvale","NJ","New Jersey","TRUE","","8489","816.7","34003","Bergen","{""34003"": ""100""}","Bergen","34003","FALSE","FALSE","America/New_York"
-"07646","40.93369","-74.01957","New Milford","NJ","New Jersey","TRUE","","16545","2798.2","34003","Bergen","{""34003"": ""100""}","Bergen","34003","FALSE","FALSE","America/New_York"
-"07647","41.00669","-73.94259","Northvale","NJ","New Jersey","TRUE","","5487","935.0","34003","Bergen","{""34003"": ""100""}","Bergen","34003","FALSE","FALSE","America/New_York"
-"07648","40.9933","-73.95089","Norwood","NJ","New Jersey","TRUE","","5812","805.7","34003","Bergen","{""34003"": ""100""}","Bergen","34003","FALSE","FALSE","America/New_York"
-"07649","40.95625","-74.03147","Oradell","NJ","New Jersey","TRUE","","8141","1304.4","34003","Bergen","{""34003"": ""100""}","Bergen","34003","FALSE","FALSE","America/New_York"
-"07650","40.84714","-73.9968","Palisades Park","NJ","New Jersey","TRUE","","20604","6490.0","34003","Bergen","{""34003"": ""100""}","Bergen","34003","FALSE","FALSE","America/New_York"
-"07652","40.94554","-74.07117","Paramus","NJ","New Jersey","TRUE","","26503","980.5","34003","Bergen","{""34003"": ""100""}","Bergen","34003","FALSE","FALSE","America/New_York"
-"07656","41.03533","-74.04243","Park Ridge","NJ","New Jersey","TRUE","","8795","1296.4","34003","Bergen","{""34003"": ""100""}","Bergen","34003","FALSE","FALSE","America/New_York"
-"07657","40.83134","-74.01475","Ridgefield","NJ","New Jersey","TRUE","","11227","1704.4","34003","Bergen","{""34003"": ""100""}","Bergen","34003","FALSE","FALSE","America/New_York"
-"07660","40.85445","-74.02017","Ridgefield Park","NJ","New Jersey","TRUE","","12922","2943.6","34003","Bergen","{""34003"": ""100""}","Bergen","34003","FALSE","FALSE","America/New_York"
-"07661","40.92695","-74.03872","River Edge","NJ","New Jersey","TRUE","","11500","2428.9","34003","Bergen","{""34003"": ""100""}","Bergen","34003","FALSE","FALSE","America/New_York"
-"07662","40.90715","-74.07936","Rochelle Park","NJ","New Jersey","TRUE","","5597","2145.3","34003","Bergen","{""34003"": ""100""}","Bergen","34003","FALSE","FALSE","America/New_York"
-"07663","40.90321","-74.09559","Saddle Brook","NJ","New Jersey","TRUE","","13845","1997.3","34003","Bergen","{""34003"": ""100""}","Bergen","34003","FALSE","FALSE","America/New_York"
-"07666","40.88988","-74.01063","Teaneck","NJ","New Jersey","TRUE","","40458","2582.4","34003","Bergen","{""34003"": ""100""}","Bergen","34003","FALSE","FALSE","America/New_York"
-"07670","40.91745","-73.95359","Tenafly","NJ","New Jersey","TRUE","","14632","1207.0","34003","Bergen","{""34003"": ""100""}","Bergen","34003","FALSE","FALSE","America/New_York"
-"07675","41.00911","-74.00429","Westwood","NJ","New Jersey","TRUE","","27024","1081.9","34003","Bergen","{""34003"": ""100""}","Bergen","34003","FALSE","FALSE","America/New_York"
-"07676","40.98845","-74.06359","Township Of Washington","NJ","New Jersey","TRUE","","9207","1207.7","34003","Bergen","{""34003"": ""100""}","Bergen","34003","FALSE","FALSE","America/New_York"
-"07677","41.02518","-74.06025","Woodcliff Lake","NJ","New Jersey","TRUE","","5832","666.6","34003","Bergen","{""34003"": ""100""}","Bergen","34003","FALSE","FALSE","America/New_York"
-"07701","40.36144","-74.07745","Red Bank","NJ","New Jersey","TRUE","","24028","998.0","34025","Monmouth","{""34025"": ""100""}","Monmouth","34025","FALSE","FALSE","America/New_York"
-"07702","40.32487","-74.05996","Shrewsbury","NJ","New Jersey","TRUE","","4086","730.1","34025","Monmouth","{""34025"": ""100""}","Monmouth","34025","FALSE","FALSE","America/New_York"
-"07703","40.3145","-74.0423","Fort Monmouth","NJ","New Jersey","TRUE","","132","58.6","34025","Monmouth","{""34025"": ""100""}","Monmouth","34025","FALSE","FALSE","America/New_York"
-"07704","40.36182","-74.03927","Fair Haven","NJ","New Jersey","TRUE","","5873","1413.2","34025","Monmouth","{""34025"": ""100""}","Monmouth","34025","FALSE","FALSE","America/New_York"
-"07711","40.2394","-74.00872","Allenhurst","NJ","New Jersey","TRUE","","1699","818.2","34025","Monmouth","{""34025"": ""100""}","Monmouth","34025","FALSE","FALSE","America/New_York"
-"07712","40.24812","-74.05482","Asbury Park","NJ","New Jersey","TRUE","","38435","1250.1","34025","Monmouth","{""34025"": ""100""}","Monmouth","34025","FALSE","FALSE","America/New_York"
-"07716","40.40136","-74.03087","Atlantic Highlands","NJ","New Jersey","TRUE","","8142","641.9","34025","Monmouth","{""34025"": ""100""}","Monmouth","34025","FALSE","FALSE","America/New_York"
-"07717","40.19125","-74.01659","Avon By The Sea","NJ","New Jersey","TRUE","","1789","1625.1","34025","Monmouth","{""34025"": ""100""}","Monmouth","34025","FALSE","FALSE","America/New_York"
-"07718","40.42076","-74.08494","Belford","NJ","New Jersey","TRUE","","7093","1295.5","34025","Monmouth","{""34025"": ""100""}","Monmouth","34025","FALSE","FALSE","America/New_York"
-"07719","40.1687","-74.07274","Belmar","NJ","New Jersey","TRUE","","21083","628.1","34025","Monmouth","{""34025"": ""100""}","Monmouth","34025","FALSE","FALSE","America/New_York"
-"07720","40.20177","-74.01276","Bradley Beach","NJ","New Jersey","TRUE","","4193","2656.6","34025","Monmouth","{""34025"": ""100""}","Monmouth","34025","FALSE","FALSE","America/New_York"
-"07721","40.43579","-74.2355","Cliffwood","NJ","New Jersey","TRUE","","3123","1307.2","34025","Monmouth","{""34025"": ""97.85"", ""34023"": ""2.15""}","Monmouth|Middlesex","34025|34023","FALSE","FALSE","America/New_York"
-"07722","40.28487","-74.16954","Colts Neck","NJ","New Jersey","TRUE","","10089","106.2","34025","Monmouth","{""34025"": ""100""}","Monmouth","34025","FALSE","FALSE","America/New_York"
-"07723","40.25032","-74.00037","Deal","NJ","New Jersey","TRUE","","701","172.4","34025","Monmouth","{""34025"": ""100""}","Monmouth","34025","FALSE","FALSE","America/New_York"
-"07724","40.29844","-74.07486","Eatontown","NJ","New Jersey","TRUE","","20920","650.6","34025","Monmouth","{""34025"": ""100""}","Monmouth","34025","FALSE","FALSE","America/New_York"
-"07726","40.28248","-74.34246","Englishtown","NJ","New Jersey","TRUE","","43474","517.8","34025","Monmouth","{""34025"": ""100""}","Monmouth","34025","FALSE","FALSE","America/New_York"
-"07727","40.19831","-74.16001","Farmingdale","NJ","New Jersey","TRUE","","6806","119.4","34025","Monmouth","{""34025"": ""100""}","Monmouth","34025","FALSE","FALSE","America/New_York"
-"07728","40.22544","-74.2854","Freehold","NJ","New Jersey","TRUE","","55088","437.4","34025","Monmouth","{""34025"": ""100""}","Monmouth","34025","FALSE","FALSE","America/New_York"
-"07730","40.42483","-74.17571","Hazlet","NJ","New Jersey","TRUE","","16769","1319.4","34025","Monmouth","{""34025"": ""100""}","Monmouth","34025","FALSE","FALSE","America/New_York"
-"07731","40.14979","-74.20007","Howell","NJ","New Jersey","TRUE","","38730","449.9","34025","Monmouth","{""34025"": ""100""}","Monmouth","34025","FALSE","FALSE","America/New_York"
-"07732","40.43092","-73.99198","Highlands","NJ","New Jersey","TRUE","","4868","491.6","34025","Monmouth","{""34025"": ""100""}","Monmouth","34025","FALSE","FALSE","America/New_York"
-"07733","40.3767","-74.17258","Holmdel","NJ","New Jersey","TRUE","","16479","355.0","34025","Monmouth","{""34025"": ""100""}","Monmouth","34025","FALSE","FALSE","America/New_York"
-"07734","40.44294","-74.13513","Keansburg","NJ","New Jersey","TRUE","","12984","2825.5","34025","Monmouth","{""34025"": ""100""}","Monmouth","34025","FALSE","FALSE","America/New_York"
-"07735","40.44121","-74.19961","Keyport","NJ","New Jersey","TRUE","","18223","1376.5","34025","Monmouth","{""34025"": ""89.13"", ""34023"": ""10.87""}","Monmouth|Middlesex","34025|34023","FALSE","FALSE","America/New_York"
-"07737","40.41011","-74.06483","Leonardo","NJ","New Jersey","TRUE","","4032","603.3","34025","Monmouth","{""34025"": ""100""}","Monmouth","34025","FALSE","FALSE","America/New_York"
-"07738","40.33775","-74.12755","Lincroft","NJ","New Jersey","TRUE","","6405","466.4","34025","Monmouth","{""34025"": ""100""}","Monmouth","34025","FALSE","FALSE","America/New_York"
-"07739","40.33574","-74.03457","Little Silver","NJ","New Jersey","TRUE","","5844","835.4","34025","Monmouth","{""34025"": ""100""}","Monmouth","34025","FALSE","FALSE","America/New_York"
-"07740","40.29586","-73.99184","Long Branch","NJ","New Jersey","TRUE","","30744","2247.8","34025","Monmouth","{""34025"": ""100""}","Monmouth","34025","FALSE","FALSE","America/New_York"
-"07746","40.31809","-74.24988","Marlboro","NJ","New Jersey","TRUE","","18233","540.4","34025","Monmouth","{""34025"": ""100""}","Monmouth","34025","FALSE","FALSE","America/New_York"
-"07747","40.4132","-74.25178","Matawan","NJ","New Jersey","TRUE","","31178","960.4","34025","Monmouth","{""34025"": ""65.5"", ""34023"": ""34.5""}","Monmouth|Middlesex","34025|34023","FALSE","FALSE","America/New_York"
-"07748","40.39433","-74.11566","Middletown","NJ","New Jersey","TRUE","","27190","784.9","34025","Monmouth","{""34025"": ""100""}","Monmouth","34025","FALSE","FALSE","America/New_York"
-"07750","40.33643","-73.98632","Monmouth Beach","NJ","New Jersey","TRUE","","3203","1191.7","34025","Monmouth","{""34025"": ""100""}","Monmouth","34025","FALSE","FALSE","America/New_York"
-"07751","40.3626","-74.2591","Morganville","NJ","New Jersey","TRUE","","20149","482.4","34025","Monmouth","{""34025"": ""100""}","Monmouth","34025","FALSE","FALSE","America/New_York"
-"07753","40.21494","-74.07856","Neptune","NJ","New Jersey","TRUE","","36860","782.0","34025","Monmouth","{""34025"": ""100""}","Monmouth","34025","FALSE","FALSE","America/New_York"
-"07755","40.26369","-74.02284","Oakhurst","NJ","New Jersey","TRUE","","6028","819.1","34025","Monmouth","{""34025"": ""100""}","Monmouth","34025","FALSE","FALSE","America/New_York"
-"07756","40.21186","-74.00829","Ocean Grove","NJ","New Jersey","TRUE","","3047","3175.4","34025","Monmouth","{""34025"": ""100""}","Monmouth","34025","FALSE","FALSE","America/New_York"
-"07757","40.31621","-74.01608","Oceanport","NJ","New Jersey","TRUE","","5593","869.3","34025","Monmouth","{""34025"": ""100""}","Monmouth","34025","FALSE","FALSE","America/New_York"
-"07758","40.431","-74.10359","Port Monmouth","NJ","New Jersey","TRUE","","4528","1149.6","34025","Monmouth","{""34025"": ""100""}","Monmouth","34025","FALSE","FALSE","America/New_York"
-"07760","40.36892","-74.00422","Rumson","NJ","New Jersey","TRUE","","8704","443.6","34025","Monmouth","{""34025"": ""100""}","Monmouth","34025","FALSE","FALSE","America/New_York"
-"07762","40.15297","-74.03581","Spring Lake","NJ","New Jersey","TRUE","","8242","1132.5","34025","Monmouth","{""34025"": ""100""}","Monmouth","34025","FALSE","FALSE","America/New_York"
-"07764","40.28832","-74.0185","West Long Branch","NJ","New Jersey","TRUE","","7908","1069.8","34025","Monmouth","{""34025"": ""100""}","Monmouth","34025","FALSE","FALSE","America/New_York"
-"07801","40.91881","-74.5542","Dover","NJ","New Jersey","TRUE","","24570","971.0","34027","Morris","{""34027"": ""100""}","Morris","34027","FALSE","FALSE","America/New_York"
-"07803","40.87768","-74.60045","Mine Hill","NJ","New Jersey","TRUE","","3530","462.4","34027","Morris","{""34027"": ""100""}","Morris","34027","FALSE","FALSE","America/New_York"
-"07820","40.92708","-74.81142","Allamuchy","NJ","New Jersey","TRUE","","8","1.3","34041","Warren","{""34041"": ""100""}","Warren","34041","FALSE","FALSE","America/New_York"
-"07821","40.96469","-74.74995","Andover","NJ","New Jersey","TRUE","","8506","75.7","34037","Sussex","{""34037"": ""90.92"", ""34041"": ""9.08""}","Sussex|Warren","34037|34041","FALSE","FALSE","America/New_York"
-"07822","41.14014","-74.70546","Augusta","NJ","New Jersey","TRUE","","878","51.4","34037","Sussex","{""34037"": ""100""}","Sussex","34037","FALSE","FALSE","America/New_York"
-"07823","40.82796","-75.0365","Belvidere","NJ","New Jersey","TRUE","","7871","119.8","34041","Warren","{""34041"": ""100""}","Warren","34041","FALSE","FALSE","America/New_York"
-"07825","40.9775","-74.96","Blairstown","NJ","New Jersey","TRUE","","9570","47.9","34041","Warren","{""34041"": ""100""}","Warren","34041","FALSE","FALSE","America/New_York"
-"07826","41.19266","-74.76869","Branchville","NJ","New Jersey","TRUE","","5824","43.2","34037","Sussex","{""34037"": ""100""}","Sussex","34037","FALSE","FALSE","America/New_York"
-"07827","41.29226","-74.73934","Montague","NJ","New Jersey","TRUE","","4051","31.6","34037","Sussex","{""34037"": ""100""}","Sussex","34037","FALSE","FALSE","America/New_York"
-"07828","40.88499","-74.75145","Budd Lake","NJ","New Jersey","TRUE","","14967","405.3","34027","Morris","{""34027"": ""100""}","Morris","34027","FALSE","FALSE","America/New_York"
-"07830","40.72104","-74.80747","Califon","NJ","New Jersey","TRUE","","6813","109.8","34019","Hunterdon","{""34019"": ""84.02"", ""34027"": ""15.98""}","Hunterdon|Morris","34019|34027","FALSE","FALSE","America/New_York"
-"07832","40.96014","-75.05705","Columbia","NJ","New Jersey","TRUE","","3437","28.2","34041","Warren","{""34041"": ""100""}","Warren","34041","FALSE","FALSE","America/New_York"
-"07833","40.89189","-75.06774","Delaware","NJ","New Jersey","TRUE","","107","93.3","34041","Warren","{""34041"": ""100""}","Warren","34041","FALSE","FALSE","America/New_York"
-"07834","40.88845","-74.48651","Denville","NJ","New Jersey","TRUE","","17826","558.9","34027","Morris","{""34027"": ""100""}","Morris","34027","FALSE","FALSE","America/New_York"
-"07836","40.84525","-74.70319","Flanders","NJ","New Jersey","TRUE","","12579","303.9","34027","Morris","{""34027"": ""100""}","Morris","34027","FALSE","FALSE","America/New_York"
-"07838","40.88921","-74.91439","Great Meadows","NJ","New Jersey","TRUE","","2927","45.4","34041","Warren","{""34041"": ""100""}","Warren","34041","FALSE","FALSE","America/New_York"
-"07840","40.85408","-74.83573","Hackettstown","NJ","New Jersey","TRUE","","30514","336.0","34041","Warren","{""34041"": ""76.93"", ""34027"": ""23.07""}","Warren|Morris","34041|34027","FALSE","FALSE","America/New_York"
-"07842","40.9411","-74.51033","Hibernia","NJ","New Jersey","TRUE","","95","28.0","34027","Morris","{""34027"": ""100""}","Morris","34027","FALSE","FALSE","America/New_York"
-"07843","40.93959","-74.65981","Hopatcong","NJ","New Jersey","TRUE","","11697","1118.0","34037","Sussex","{""34037"": ""100""}","Sussex","34037","FALSE","FALSE","America/New_York"
-"07846","40.9661","-74.87721","Johnsonburg","NJ","New Jersey","TRUE","","67","188.6","34041","Warren","{""34041"": ""100""}","Warren","34041","FALSE","FALSE","America/New_York"
-"07847","40.8846","-74.62581","Kenvil","NJ","New Jersey","TRUE","","1922","344.9","34027","Morris","{""34027"": ""100""}","Morris","34027","FALSE","FALSE","America/New_York"
-"07848","41.10338","-74.68405","Lafayette","NJ","New Jersey","TRUE","","4901","79.5","34037","Sussex","{""34037"": ""100""}","Sussex","34037","FALSE","FALSE","America/New_York"
-"07849","40.96623","-74.60998","Lake Hopatcong","NJ","New Jersey","TRUE","","9263","485.9","34027","Morris","{""34027"": ""99.49"", ""34037"": ""0.51""}","Morris|Sussex","34027|34037","FALSE","FALSE","America/New_York"
-"07850","40.90607","-74.66402","Landing","NJ","New Jersey","TRUE","","6661","802.1","34027","Morris","{""34027"": ""100""}","Morris","34027","FALSE","FALSE","America/New_York"
-"07851","41.22981","-74.84673","Layton","NJ","New Jersey","TRUE","","61","3.5","34037","Sussex","{""34037"": ""100""}","Sussex","34037","FALSE","FALSE","America/New_York"
-"07852","40.88224","-74.66265","Ledgewood","NJ","New Jersey","TRUE","","3946","500.5","34027","Morris","{""34027"": ""100""}","Morris","34027","FALSE","FALSE","America/New_York"
-"07853","40.78499","-74.78545","Long Valley","NJ","New Jersey","TRUE","","12915","146.8","34027","Morris","{""34027"": ""100""}","Morris","34027","FALSE","FALSE","America/New_York"
-"07856","40.91868","-74.63344","Mount Arlington","NJ","New Jersey","TRUE","","4126","455.9","34027","Morris","{""34027"": ""100""}","Morris","34027","FALSE","FALSE","America/New_York"
-"07857","40.89713","-74.6999","Netcong","NJ","New Jersey","TRUE","","3203","1141.0","34027","Morris","{""34027"": ""100""}","Morris","34027","FALSE","FALSE","America/New_York"
-"07860","41.06025","-74.81341","Newton","NJ","New Jersey","TRUE","","25451","97.4","34037","Sussex","{""34037"": ""98.2"", ""34041"": ""1.8""}","Sussex|Warren","34037|34041","FALSE","FALSE","America/New_York"
-"07863","40.8129","-74.96037","Oxford","NJ","New Jersey","TRUE","","3703","60.4","34041","Warren","{""34041"": ""100""}","Warren","34041","FALSE","FALSE","America/New_York"
-"07865","40.78469","-74.89875","Port Murray","NJ","New Jersey","TRUE","","1910","54.0","34041","Warren","{""34041"": ""64.78"", ""34027"": ""18.04"", ""34019"": ""17.18""}","Warren|Morris|Hunterdon","34041|34027|34019","FALSE","FALSE","America/New_York"
-"07866","40.95384","-74.49016","Rockaway","NJ","New Jersey","TRUE","","23003","400.2","34027","Morris","{""34027"": ""100""}","Morris","34027","FALSE","FALSE","America/New_York"
-"07869","40.84492","-74.58101","Randolph","NJ","New Jersey","TRUE","","25599","491.9","34027","Morris","{""34027"": ""100""}","Morris","34027","FALSE","FALSE","America/New_York"
-"07870","40.80394","-74.81965","Schooleys Mountain","NJ","New Jersey","TRUE","","30","49.9","34027","Morris","{""34027"": ""100""}","Morris","34027","FALSE","FALSE","America/New_York"
-"07871","41.04708","-74.62793","Sparta","NJ","New Jersey","TRUE","","20136","205.5","34037","Sussex","{""34037"": ""100""}","Sussex","34037","FALSE","FALSE","America/New_York"
-"07874","40.92158","-74.73628","Stanhope","NJ","New Jersey","TRUE","","8121","249.0","34037","Sussex","{""34037"": ""99.11"", ""34041"": ""0.89""}","Sussex|Warren","34037|34041","FALSE","FALSE","America/New_York"
-"07876","40.85332","-74.65575","Succasunna","NJ","New Jersey","TRUE","","9943","667.3","34027","Morris","{""34027"": ""100""}","Morris","34027","FALSE","FALSE","America/New_York"
-"07878","40.87177","-74.47627","Mount Tabor","NJ","New Jersey","TRUE","","627","867.1","34027","Morris","{""34027"": ""100""}","Morris","34027","FALSE","FALSE","America/New_York"
-"07880","40.87302","-74.88968","Vienna","NJ","New Jersey","TRUE","","221","388.3","34041","Warren","{""34041"": ""100""}","Warren","34041","FALSE","FALSE","America/New_York"
-"07881","41.125","-74.91088","Wallpack Center","NJ","New Jersey","TRUE","","6","0.1","34037","Sussex","{""34037"": ""100""}","Sussex","34037","FALSE","FALSE","America/New_York"
-"07882","40.75173","-75.01123","Washington","NJ","New Jersey","TRUE","","14417","175.4","34041","Warren","{""34041"": ""97.95"", ""34019"": ""2.05""}","Warren|Hunterdon","34041|34019","FALSE","FALSE","America/New_York"
-"07885","40.93517","-74.57845","Wharton","NJ","New Jersey","TRUE","","10094","258.4","34027","Morris","{""34027"": ""100""}","Morris","34027","FALSE","FALSE","America/New_York"
-"07901","40.71468","-74.36592","Summit","NJ","New Jersey","TRUE","","23567","1435.2","34039","Union","{""34039"": ""100""}","Union","34039","FALSE","FALSE","America/New_York"
-"07920","40.6784","-74.56296","Basking Ridge","NJ","New Jersey","TRUE","","27037","444.8","34035","Somerset","{""34035"": ""99.18"", ""34027"": ""0.82""}","Somerset|Morris","34035|34027","FALSE","FALSE","America/New_York"
-"07921","40.65697","-74.6775","Bedminster","NJ","New Jersey","TRUE","","7474","151.4","34035","Somerset","{""34035"": ""100""}","Somerset","34035","FALSE","FALSE","America/New_York"
-"07922","40.67518","-74.42817","Berkeley Heights","NJ","New Jersey","TRUE","","12314","855.0","34039","Union","{""34039"": ""100""}","Union","34039","FALSE","FALSE","America/New_York"
-"07924","40.72704","-74.58964","Bernardsville","NJ","New Jersey","TRUE","","7544","241.8","34035","Somerset","{""34035"": ""100""}","Somerset","34035","FALSE","FALSE","America/New_York"
-"07926","40.80129","-74.57029","Brookside","NJ","New Jersey","TRUE","","9","13.1","34027","Morris","{""34027"": ""100""}","Morris","34027","FALSE","FALSE","America/New_York"
-"07927","40.82131","-74.45334","Cedar Knolls","NJ","New Jersey","TRUE","","3814","763.6","34027","Morris","{""34027"": ""100""}","Morris","34027","FALSE","FALSE","America/New_York"
-"07928","40.7262","-74.41252","Chatham","NJ","New Jersey","TRUE","","18827","833.3","34027","Morris","{""34027"": ""100""}","Morris","34027","FALSE","FALSE","America/New_York"
-"07930","40.77989","-74.68675","Chester","NJ","New Jersey","TRUE","","8033","122.1","34027","Morris","{""34027"": ""100""}","Morris","34027","FALSE","FALSE","America/New_York"
-"07931","40.70944","-74.65261","Far Hills","NJ","New Jersey","TRUE","","3203","59.7","34035","Somerset","{""34035"": ""75.85"", ""34027"": ""24.15""}","Somerset|Morris","34035|34027","FALSE","FALSE","America/New_York"
-"07932","40.77709","-74.39289","Florham Park","NJ","New Jersey","TRUE","","9902","558.4","34027","Morris","{""34027"": ""100""}","Morris","34027","FALSE","FALSE","America/New_York"
-"07933","40.69196","-74.46494","Gillette","NJ","New Jersey","TRUE","","2981","232.4","34027","Morris","{""34027"": ""100""}","Morris","34027","FALSE","FALSE","America/New_York"
-"07934","40.72066","-74.67808","Gladstone","NJ","New Jersey","TRUE","","1495","159.8","34035","Somerset","{""34035"": ""100""}","Somerset","34035","FALSE","FALSE","America/New_York"
-"07935","40.73656","-74.44403","Green Village","NJ","New Jersey","TRUE","","374","62.9","34027","Morris","{""34027"": ""100""}","Morris","34027","FALSE","FALSE","America/New_York"
-"07936","40.81925","-74.36374","East Hanover","NJ","New Jersey","TRUE","","11072","541.7","34027","Morris","{""34027"": ""100""}","Morris","34027","FALSE","FALSE","America/New_York"
-"07939","40.66736","-74.55378","Lyons","NJ","New Jersey","TRUE","","258","242.5","34035","Somerset","{""34035"": ""100""}","Somerset","34035","FALSE","FALSE","America/New_York"
-"07940","40.75981","-74.41794","Madison","NJ","New Jersey","TRUE","","17523","1455.0","34027","Morris","{""34027"": ""100""}","Morris","34027","FALSE","FALSE","America/New_York"
-"07945","40.78135","-74.59797","Mendham","NJ","New Jersey","TRUE","","9020","185.8","34027","Morris","{""34027"": ""100""}","Morris","34027","FALSE","FALSE","America/New_York"
-"07946","40.67751","-74.51119","Millington","NJ","New Jersey","TRUE","","3215","300.7","34027","Morris","{""34027"": ""100""}","Morris","34027","FALSE","FALSE","America/New_York"
-"07950","40.8445","-74.48239","Morris Plains","NJ","New Jersey","TRUE","","19550","832.9","34027","Morris","{""34027"": ""100""}","Morris","34027","FALSE","FALSE","America/New_York"
-"07960","40.78339","-74.49958","Morristown","NJ","New Jersey","TRUE","","44834","494.4","34027","Morris","{""34027"": ""100""}","Morris","34027","FALSE","FALSE","America/New_York"
-"07961","40.78062","-74.4327","Convent Station","NJ","New Jersey","TRUE","","0","0.0","34027","Morris","{""34027"": ""100""}","Morris","34027","FALSE","FALSE","America/New_York"
-"07970","40.80802","-74.57277","Mount Freedom","NJ","New Jersey","TRUE","","169","267.6","34027","Morris","{""34027"": ""100""}","Morris","34027","FALSE","FALSE","America/New_York"
-"07974","40.6973","-74.4031","New Providence","NJ","New Jersey","TRUE","","12391","1197.5","34039","Union","{""34039"": ""100""}","Union","34039","FALSE","FALSE","America/New_York"
-"07976","40.72292","-74.48638","New Vernon","NJ","New Jersey","TRUE","","734","40.0","34027","Morris","{""34027"": ""100""}","Morris","34027","FALSE","FALSE","America/New_York"
-"07977","40.70628","-74.66373","Peapack","NJ","New Jersey","TRUE","","731","189.6","34035","Somerset","{""34035"": ""100""}","Somerset","34035","FALSE","FALSE","America/New_York"
-"07979","40.70261","-74.72762","Pottersville","NJ","New Jersey","TRUE","","481","77.4","34019","Hunterdon","{""34019"": ""59.59"", ""34035"": ""40.41""}","Hunterdon|Somerset","34019|34035","FALSE","FALSE","America/New_York"
-"07980","40.67865","-74.49385","Stirling","NJ","New Jersey","TRUE","","2394","340.2","34027","Morris","{""34027"": ""100""}","Morris","34027","FALSE","FALSE","America/New_York"
-"07981","40.82207","-74.41904","Whippany","NJ","New Jersey","TRUE","","9051","519.3","34027","Morris","{""34027"": ""100""}","Morris","34027","FALSE","FALSE","America/New_York"
-"08001","39.55073","-75.34977","Alloway","NJ","New Jersey","TRUE","","886","140.5","34033","Salem","{""34033"": ""100""}","Salem","34033","FALSE","FALSE","America/New_York"
-"08002","39.93133","-75.02539","Cherry Hill","NJ","New Jersey","TRUE","","22964","1232.4","34007","Camden","{""34007"": ""100""}","Camden","34007","FALSE","FALSE","America/New_York"
-"08003","39.88323","-74.97228","Cherry Hill","NJ","New Jersey","TRUE","","30194","1053.2","34007","Camden","{""34007"": ""100""}","Camden","34007","FALSE","FALSE","America/New_York"
-"08004","39.76465","-74.87002","Atco","NJ","New Jersey","TRUE","","12169","377.1","34007","Camden","{""34007"": ""100""}","Camden","34007","FALSE","FALSE","America/New_York"
-"08005","39.76366","-74.3153","Barnegat","NJ","New Jersey","TRUE","","24385","199.5","34029","Ocean","{""34029"": ""100""}","Ocean","34029","FALSE","FALSE","America/New_York"
-"08006","39.75428","-74.10813","Barnegat Light","NJ","New Jersey","TRUE","","322","167.3","34029","Ocean","{""34029"": ""100""}","Ocean","34029","FALSE","FALSE","America/New_York"
-"08007","39.86572","-75.05378","Barrington","NJ","New Jersey","TRUE","","4899","1472.6","34007","Camden","{""34007"": ""100""}","Camden","34007","FALSE","FALSE","America/New_York"
-"08008","39.62403","-74.22123","Beach Haven","NJ","New Jersey","TRUE","","6988","247.6","34029","Ocean","{""34029"": ""100""}","Ocean","34029","FALSE","FALSE","America/New_York"
-"08009","39.76519","-74.93262","Berlin","NJ","New Jersey","TRUE","","12847","362.5","34007","Camden","{""34007"": ""100""}","Camden","34007","FALSE","FALSE","America/New_York"
-"08010","40.05333","-74.91419","Beverly","NJ","New Jersey","TRUE","","10983","1104.6","34005","Burlington","{""34005"": ""100""}","Burlington","34005","FALSE","FALSE","America/New_York"
-"08011","39.97272","-74.71292","Birmingham","NJ","New Jersey","TRUE","","0","0.0","34005","Burlington","{""34005"": ""100""}","Burlington","34005","FALSE","FALSE","America/New_York"
-"08012","39.78429","-75.05528","Blackwood","NJ","New Jersey","TRUE","","38504","998.4","34007","Camden","{""34007"": ""55.82"", ""34015"": ""44.18""}","Camden|Gloucester","34007|34015","FALSE","FALSE","America/New_York"
-"08014","39.81795","-75.35809","Bridgeport","NJ","New Jersey","TRUE","","481","64.0","34015","Gloucester","{""34015"": ""100""}","Gloucester","34015","FALSE","FALSE","America/New_York"
-"08015","39.93294","-74.53757","Browns Mills","NJ","New Jersey","TRUE","","19622","158.2","34005","Burlington","{""34005"": ""100""}","Burlington","34005","FALSE","FALSE","America/New_York"
-"08016","40.06937","-74.82981","Burlington","NJ","New Jersey","TRUE","","33259","564.0","34005","Burlington","{""34005"": ""100""}","Burlington","34005","FALSE","FALSE","America/New_York"
-"08019","39.77674","-74.53088","Chatsworth","NJ","New Jersey","TRUE","","1119","7.2","34005","Burlington","{""34005"": ""100""}","Burlington","34005","FALSE","FALSE","America/New_York"
-"08020","39.7974","-75.22411","Clarksboro","NJ","New Jersey","TRUE","","2709","242.5","34015","Gloucester","{""34015"": ""100""}","Gloucester","34015","FALSE","FALSE","America/New_York"
-"08021","39.8067","-75.00058","Clementon","NJ","New Jersey","TRUE","","44369","1320.8","34007","Camden","{""34007"": ""100""}","Camden","34007","FALSE","FALSE","America/New_York"
-"08022","40.0661","-74.70865","Columbus","NJ","New Jersey","TRUE","","9004","158.5","34005","Burlington","{""34005"": ""100""}","Burlington","34005","FALSE","FALSE","America/New_York"
-"08023","39.68741","-75.49759","Deepwater","NJ","New Jersey","TRUE","","285","109.6","34033","Salem","{""34033"": ""100""}","Salem","34033","FALSE","FALSE","America/New_York"
-"08026","39.83322","-74.96571","Gibbsboro","NJ","New Jersey","TRUE","","2163","387.8","34007","Camden","{""34007"": ""100""}","Camden","34007","FALSE","FALSE","America/New_York"
-"08027","39.82999","-75.28737","Gibbstown","NJ","New Jersey","TRUE","","4831","252.4","34015","Gloucester","{""34015"": ""100""}","Gloucester","34015","FALSE","FALSE","America/New_York"
-"08028","39.69436","-75.12054","Glassboro","NJ","New Jersey","TRUE","","21018","529.3","34015","Gloucester","{""34015"": ""100""}","Gloucester","34015","FALSE","FALSE","America/New_York"
-"08029","39.84063","-75.06781","Glendora","NJ","New Jersey","TRUE","","4871","1816.7","34007","Camden","{""34007"": ""100""}","Camden","34007","FALSE","FALSE","America/New_York"
-"08030","39.88971","-75.11772","Gloucester City","NJ","New Jersey","TRUE","","13252","1925.8","34007","Camden","{""34007"": ""100""}","Camden","34007","FALSE","FALSE","America/New_York"
-"08031","39.86668","-75.0945","Bellmawr","NJ","New Jersey","TRUE","","11398","1455.2","34007","Camden","{""34007"": ""100""}","Camden","34007","FALSE","FALSE","America/New_York"
-"08033","39.89319","-75.03702","Haddonfield","NJ","New Jersey","TRUE","","15902","1575.5","34007","Camden","{""34007"": ""100""}","Camden","34007","FALSE","FALSE","America/New_York"
-"08034","39.90608","-74.99927","Cherry Hill","NJ","New Jersey","TRUE","","17967","1170.8","34007","Camden","{""34007"": ""100""}","Camden","34007","FALSE","FALSE","America/New_York"
-"08035","39.87913","-75.06442","Haddon Heights","NJ","New Jersey","TRUE","","7656","1869.9","34007","Camden","{""34007"": ""100""}","Camden","34007","FALSE","FALSE","America/New_York"
-"08036","39.97625","-74.83732","Hainesport","NJ","New Jersey","TRUE","","5917","374.8","34005","Burlington","{""34005"": ""100""}","Burlington","34005","FALSE","FALSE","America/New_York"
-"08037","39.638","-74.77275","Hammonton","NJ","New Jersey","TRUE","","23765","78.6","34001","Atlantic","{""34001"": ""80.73"", ""34007"": ""19.27""}","Atlantic|Camden","34001|34007","FALSE","FALSE","America/New_York"
-"08038","39.47383","-75.4886","Hancocks Bridge","NJ","New Jersey","TRUE","","107","2.4","34033","Salem","{""34033"": ""100""}","Salem","34033","FALSE","FALSE","America/New_York"
-"08039","39.68798","-75.27215","Harrisonville","NJ","New Jersey","TRUE","","182","68.2","34015","Gloucester","{""34015"": ""100""}","Gloucester","34015","FALSE","FALSE","America/New_York"
-"08041","40.03787","-74.68382","Jobstown","NJ","New Jersey","TRUE","","959","32.5","34005","Burlington","{""34005"": ""100""}","Burlington","34005","FALSE","FALSE","America/New_York"
-"08042","40.0151","-74.66234","Juliustown","NJ","New Jersey","TRUE","","214","124.4","34005","Burlington","{""34005"": ""100""}","Burlington","34005","FALSE","FALSE","America/New_York"
-"08043","39.84509","-74.95492","Voorhees","NJ","New Jersey","TRUE","","29218","983.1","34007","Camden","{""34007"": ""100""}","Camden","34007","FALSE","FALSE","America/New_York"
-"08045","39.86722","-75.02974","Lawnside","NJ","New Jersey","TRUE","","2725","808.4","34007","Camden","{""34007"": ""100""}","Camden","34007","FALSE","FALSE","America/New_York"
-"08046","40.02784","-74.88606","Willingboro","NJ","New Jersey","TRUE","","31654","1667.2","34005","Burlington","{""34005"": ""100""}","Burlington","34005","FALSE","FALSE","America/New_York"
-"08048","39.95732","-74.80401","Lumberton","NJ","New Jersey","TRUE","","12195","357.8","34005","Burlington","{""34005"": ""100""}","Burlington","34005","FALSE","FALSE","America/New_York"
-"08049","39.85438","-75.03856","Magnolia","NJ","New Jersey","TRUE","","5335","1636.4","34007","Camden","{""34007"": ""100""}","Camden","34007","FALSE","FALSE","America/New_York"
-"08050","39.70642","-74.24834","Manahawkin","NJ","New Jersey","TRUE","","25278","320.4","34029","Ocean","{""34029"": ""100""}","Ocean","34029","FALSE","FALSE","America/New_York"
-"08051","39.7854","-75.17891","Mantua","NJ","New Jersey","TRUE","","10306","1062.0","34015","Gloucester","{""34015"": ""100""}","Gloucester","34015","FALSE","FALSE","America/New_York"
-"08052","39.95204","-74.99508","Maple Shade","NJ","New Jersey","TRUE","","18642","1878.7","34005","Burlington","{""34005"": ""100""}","Burlington","34005","FALSE","FALSE","America/New_York"
-"08053","39.86049","-74.89467","Marlton","NJ","New Jersey","TRUE","","45135","597.7","34005","Burlington","{""34005"": ""100""}","Burlington","34005","FALSE","FALSE","America/New_York"
-"08054","39.94835","-74.90476","Mount Laurel","NJ","New Jersey","TRUE","","41422","736.4","34005","Burlington","{""34005"": ""100""}","Burlington","34005","FALSE","FALSE","America/New_York"
-"08055","39.86375","-74.82251","Medford","NJ","New Jersey","TRUE","","27322","264.1","34005","Burlington","{""34005"": ""100""}","Burlington","34005","FALSE","FALSE","America/New_York"
-"08056","39.7829","-75.25155","Mickleton","NJ","New Jersey","TRUE","","4841","203.2","34015","Gloucester","{""34015"": ""100""}","Gloucester","34015","FALSE","FALSE","America/New_York"
-"08057","39.97939","-74.94112","Moorestown","NJ","New Jersey","TRUE","","20660","522.1","34005","Burlington","{""34005"": ""100""}","Burlington","34005","FALSE","FALSE","America/New_York"
-"08059","39.88441","-75.09301","Mount Ephraim","NJ","New Jersey","TRUE","","5597","1756.7","34007","Camden","{""34007"": ""100""}","Camden","34007","FALSE","FALSE","America/New_York"
-"08060","40.00858","-74.78952","Mount Holly","NJ","New Jersey","TRUE","","24353","423.6","34005","Burlington","{""34005"": ""100""}","Burlington","34005","FALSE","FALSE","America/New_York"
-"08061","39.80457","-75.20707","Mount Royal","NJ","New Jersey","TRUE","","2980","825.4","34015","Gloucester","{""34015"": ""100""}","Gloucester","34015","FALSE","FALSE","America/New_York"
-"08062","39.71519","-75.22256","Mullica Hill","NJ","New Jersey","TRUE","","16194","205.7","34015","Gloucester","{""34015"": ""100""}","Gloucester","34015","FALSE","FALSE","America/New_York"
-"08063","39.86757","-75.18512","National Park","NJ","New Jersey","TRUE","","3042","1147.3","34015","Gloucester","{""34015"": ""100""}","Gloucester","34015","FALSE","FALSE","America/New_York"
-"08064","39.95758","-74.63366","New Lisbon","NJ","New Jersey","TRUE","","206","62.1","34005","Burlington","{""34005"": ""100""}","Burlington","34005","FALSE","FALSE","America/New_York"
-"08065","40.00235","-75.03587","Palmyra","NJ","New Jersey","TRUE","","7189","1499.2","34005","Burlington","{""34005"": ""100""}","Burlington","34005","FALSE","FALSE","America/New_York"
-"08066","39.8345","-75.2249","Paulsboro","NJ","New Jersey","TRUE","","8402","655.8","34015","Gloucester","{""34015"": ""100""}","Gloucester","34015","FALSE","FALSE","America/New_York"
-"08067","39.73824","-75.41262","Pedricktown","NJ","New Jersey","TRUE","","1636","32.9","34033","Salem","{""34033"": ""100""}","Salem","34033","FALSE","FALSE","America/New_York"
-"08068","39.95939","-74.66295","Pemberton","NJ","New Jersey","TRUE","","7223","120.2","34005","Burlington","{""34005"": ""100""}","Burlington","34005","FALSE","FALSE","America/New_York"
-"08069","39.69949","-75.44961","Penns Grove","NJ","New Jersey","TRUE","","12491","285.9","34033","Salem","{""34033"": ""100""}","Salem","34033","FALSE","FALSE","America/New_York"
-"08070","39.6244","-75.50916","Pennsville","NJ","New Jersey","TRUE","","12330","232.4","34033","Salem","{""34033"": ""100""}","Salem","34033","FALSE","FALSE","America/New_York"
-"08071","39.73228","-75.13387","Pitman","NJ","New Jersey","TRUE","","9419","1094.8","34015","Gloucester","{""34015"": ""100""}","Gloucester","34015","FALSE","FALSE","America/New_York"
-"08072","39.54424","-75.41666","Quinton","NJ","New Jersey","TRUE","","251","425.3","34033","Salem","{""34033"": ""100""}","Salem","34033","FALSE","FALSE","America/New_York"
-"08073","40.00958","-74.86688","Rancocas","NJ","New Jersey","TRUE","","175","705.2","34005","Burlington","{""34005"": ""100""}","Burlington","34005","FALSE","FALSE","America/New_York"
-"08074","39.71571","-75.16404","Richwood","NJ","New Jersey","TRUE","","15","16.9","34015","Gloucester","{""34015"": ""100""}","Gloucester","34015","FALSE","FALSE","America/New_York"
-"08075","40.02928","-74.94989","Riverside","NJ","New Jersey","TRUE","","28663","1114.2","34005","Burlington","{""34005"": ""100""}","Burlington","34005","FALSE","FALSE","America/New_York"
-"08077","40.00192","-74.99523","Riverton","NJ","New Jersey","TRUE","","19121","911.4","34005","Burlington","{""34005"": ""100""}","Burlington","34005","FALSE","FALSE","America/New_York"
-"08078","39.8521","-75.07449","Runnemede","NJ","New Jersey","TRUE","","8318","1599.6","34007","Camden","{""34007"": ""100""}","Camden","34007","FALSE","FALSE","America/New_York"
-"08079","39.54335","-75.4302","Salem","NJ","New Jersey","TRUE","","10030","42.5","34033","Salem","{""34033"": ""100""}","Salem","34033","FALSE","FALSE","America/New_York"
-"08080","39.75582","-75.11888","Sewell","NJ","New Jersey","TRUE","","37532","501.3","34015","Gloucester","{""34015"": ""100""}","Gloucester","34015","FALSE","FALSE","America/New_York"
-"08081","39.73665","-74.97547","Sicklerville","NJ","New Jersey","TRUE","","50067","722.8","34007","Camden","{""34007"": ""96.01"", ""34015"": ""3.99""}","Camden|Gloucester","34007|34015","FALSE","FALSE","America/New_York"
-"08083","39.84125","-75.02862","Somerdale","NJ","New Jersey","TRUE","","9489","1463.5","34007","Camden","{""34007"": ""100""}","Camden","34007","FALSE","FALSE","America/New_York"
-"08084","39.82897","-75.01556","Stratford","NJ","New Jersey","TRUE","","6971","1723.4","34007","Camden","{""34007"": ""100""}","Camden","34007","FALSE","FALSE","America/New_York"
-"08085","39.75939","-75.33192","Swedesboro","NJ","New Jersey","TRUE","","20908","174.6","34015","Gloucester","{""34015"": ""99.26"", ""34033"": ""0.74""}","Gloucester|Salem","34015|34033","FALSE","FALSE","America/New_York"
-"08086","39.84573","-75.19422","Thorofare","NJ","New Jersey","TRUE","","7642","404.1","34015","Gloucester","{""34015"": ""100""}","Gloucester","34015","FALSE","FALSE","America/New_York"
-"08087","39.59283","-74.37545","Tuckerton","NJ","New Jersey","TRUE","","24994","193.3","34029","Ocean","{""34029"": ""96.88"", ""34005"": ""3.12""}","Ocean|Burlington","34029|34005","FALSE","FALSE","America/New_York"
-"08088","39.84924","-74.6927","Vincentown","NJ","New Jersey","TRUE","","23936","66.6","34005","Burlington","{""34005"": ""100""}","Burlington","34005","FALSE","FALSE","America/New_York"
-"08089","39.71826","-74.82432","Waterford Works","NJ","New Jersey","TRUE","","4012","81.0","34007","Camden","{""34007"": ""100""}","Camden","34007","FALSE","FALSE","America/New_York"
-"08090","39.79751","-75.15071","Wenonah","NJ","New Jersey","TRUE","","8087","1218.0","34015","Gloucester","{""34015"": ""100""}","Gloucester","34015","FALSE","FALSE","America/New_York"
-"08091","39.80536","-74.92546","West Berlin","NJ","New Jersey","TRUE","","5553","641.5","34007","Camden","{""34007"": ""100""}","Camden","34007","FALSE","FALSE","America/New_York"
-"08092","39.65483","-74.28431","West Creek","NJ","New Jersey","TRUE","","3393","56.5","34029","Ocean","{""34029"": ""100""}","Ocean","34029","FALSE","FALSE","America/New_York"
-"08093","39.86416","-75.1358","Westville","NJ","New Jersey","TRUE","","9310","770.0","34015","Gloucester","{""34015"": ""100""}","Gloucester","34015","FALSE","FALSE","America/New_York"
-"08094","39.65352","-74.9672","Williamstown","NJ","New Jersey","TRUE","","40347","295.0","34015","Gloucester","{""34015"": ""92.13"", ""34001"": ""7.87""}","Gloucester|Atlantic","34015|34001","FALSE","FALSE","America/New_York"
-"08095","39.64847","-74.86033","Winslow","NJ","New Jersey","TRUE","","39","7.4","34007","Camden","{""34007"": ""100""}","Camden","34007","FALSE","FALSE","America/New_York"
-"08096","39.8266","-75.12674","Woodbury","NJ","New Jersey","TRUE","","35190","899.3","34015","Gloucester","{""34015"": ""100""}","Gloucester","34015","FALSE","FALSE","America/New_York"
-"08097","39.81527","-75.15087","Woodbury Heights","NJ","New Jersey","TRUE","","3329","932.6","34015","Gloucester","{""34015"": ""100""}","Gloucester","34015","FALSE","FALSE","America/New_York"
-"08098","39.63888","-75.3294","Woodstown","NJ","New Jersey","TRUE","","9013","61.7","34033","Salem","{""34033"": ""100""}","Salem","34033","FALSE","FALSE","America/New_York"
-"08102","39.95236","-75.12032","Camden","NJ","New Jersey","TRUE","","7639","3100.6","34007","Camden","{""34007"": ""100""}","Camden","34007","FALSE","FALSE","America/New_York"
-"08103","39.93577","-75.11351","Camden","NJ","New Jersey","TRUE","","14885","2670.8","34007","Camden","{""34007"": ""100""}","Camden","34007","FALSE","FALSE","America/New_York"
-"08104","39.91636","-75.11241","Camden","NJ","New Jersey","TRUE","","21936","2736.7","34007","Camden","{""34007"": ""100""}","Camden","34007","FALSE","FALSE","America/New_York"
-"08105","39.95152","-75.09121","Camden","NJ","New Jersey","TRUE","","27933","4161.2","34007","Camden","{""34007"": ""100""}","Camden","34007","FALSE","FALSE","America/New_York"
-"08106","39.89124","-75.07404","Audubon","NJ","New Jersey","TRUE","","9515","2237.5","34007","Camden","{""34007"": ""100""}","Camden","34007","FALSE","FALSE","America/New_York"
-"08107","39.90763","-75.08336","Oaklyn","NJ","New Jersey","TRUE","","13116","2831.4","34007","Camden","{""34007"": ""100""}","Camden","34007","FALSE","FALSE","America/New_York"
-"08108","39.91431","-75.0618","Collingswood","NJ","New Jersey","TRUE","","18333","2587.5","34007","Camden","{""34007"": ""100""}","Camden","34007","FALSE","FALSE","America/New_York"
-"08109","39.95039","-75.05043","Merchantville","NJ","New Jersey","TRUE","","22235","1763.6","34007","Camden","{""34007"": ""100""}","Camden","34007","FALSE","FALSE","America/New_York"
-"08110","39.97228","-75.0606","Pennsauken","NJ","New Jersey","TRUE","","18753","1127.4","34007","Camden","{""34007"": ""100""}","Camden","34007","FALSE","FALSE","America/New_York"
-"08201","39.42237","-74.49507","Absecon","NJ","New Jersey","TRUE","","10012","678.2","34001","Atlantic","{""34001"": ""100""}","Atlantic","34001","FALSE","FALSE","America/New_York"
-"08202","39.10018","-74.73873","Avalon","NJ","New Jersey","TRUE","","1527","92.9","34009","Cape May","{""34009"": ""100""}","Cape May","34009","FALSE","FALSE","America/New_York"
-"08203","39.41277","-74.38012","Brigantine","NJ","New Jersey","TRUE","","8832","518.9","34001","Atlantic","{""34001"": ""100""}","Atlantic","34001","FALSE","FALSE","America/New_York"
-"08204","38.9732","-74.92006","Cape May","NJ","New Jersey","TRUE","","18505","356.9","34009","Cape May","{""34009"": ""100""}","Cape May","34009","FALSE","FALSE","America/New_York"
-"08205","39.47458","-74.45742","Absecon","NJ","New Jersey","TRUE","","26507","241.6","34001","Atlantic","{""34001"": ""100""}","Atlantic","34001","FALSE","FALSE","America/New_York"
-"08210","39.1172","-74.82352","Cape May Court House","NJ","New Jersey","TRUE","","16298","91.5","34009","Cape May","{""34009"": ""100""}","Cape May","34009","FALSE","FALSE","America/New_York"
-"08212","38.93571","-74.95422","Cape May Point","NJ","New Jersey","TRUE","","176","80.8","34009","Cape May","{""34009"": ""100""}","Cape May","34009","FALSE","FALSE","America/New_York"
-"08215","39.58253","-74.58151","Egg Harbor City","NJ","New Jersey","TRUE","","14155","47.1","34001","Atlantic","{""34001"": ""95"", ""34005"": ""5""}","Atlantic|Burlington","34001|34005","FALSE","FALSE","America/New_York"
-"08217","39.57536","-74.71852","Elwood","NJ","New Jersey","TRUE","","85","708.8","34001","Atlantic","{""34001"": ""100""}","Atlantic","34001","FALSE","FALSE","America/New_York"
-"08221","39.34346","-74.57068","Linwood","NJ","New Jersey","TRUE","","6742","677.1","34001","Atlantic","{""34001"": ""100""}","Atlantic","34001","FALSE","FALSE","America/New_York"
-"08223","39.27017","-74.65709","Marmora","NJ","New Jersey","TRUE","","4254","126.9","34009","Cape May","{""34009"": ""100""}","Cape May","34009","FALSE","FALSE","America/New_York"
-"08224","39.59857","-74.45979","New Gretna","NJ","New Jersey","TRUE","","549","44.9","34005","Burlington","{""34005"": ""100""}","Burlington","34005","FALSE","FALSE","America/New_York"
-"08225","39.36396","-74.54079","Northfield","NJ","New Jersey","TRUE","","8153","505.6","34001","Atlantic","{""34001"": ""100""}","Atlantic","34001","FALSE","FALSE","America/New_York"
-"08226","39.26859","-74.60158","Ocean City","NJ","New Jersey","TRUE","","11132","642.7","34009","Cape May","{""34009"": ""100""}","Cape May","34009","FALSE","FALSE","America/New_York"
-"08230","39.21268","-74.71739","Ocean View","NJ","New Jersey","TRUE","","5449","167.3","34009","Cape May","{""34009"": ""100""}","Cape May","34009","FALSE","FALSE","America/New_York"
-"08232","39.38769","-74.51489","Pleasantville","NJ","New Jersey","TRUE","","19426","1280.3","34001","Atlantic","{""34001"": ""100""}","Atlantic","34001","FALSE","FALSE","America/New_York"
-"08234","39.38657","-74.62376","Egg Harbor Township","NJ","New Jersey","TRUE","","41667","265.4","34001","Atlantic","{""34001"": ""100""}","Atlantic","34001","FALSE","FALSE","America/New_York"
-"08240","39.48729","-74.53176","Pomona","NJ","New Jersey","TRUE","","2404","590.7","34001","Atlantic","{""34001"": ""100""}","Atlantic","34001","FALSE","FALSE","America/New_York"
-"08241","39.53287","-74.48504","Port Republic","NJ","New Jersey","TRUE","","1099","57.5","34001","Atlantic","{""34001"": ""100""}","Atlantic","34001","FALSE","FALSE","America/New_York"
-"08242","39.01806","-74.88884","Rio Grande","NJ","New Jersey","TRUE","","3137","239.5","34009","Cape May","{""34009"": ""100""}","Cape May","34009","FALSE","FALSE","America/New_York"
-"08243","39.15187","-74.698","Sea Isle City","NJ","New Jersey","TRUE","","2147","376.0","34009","Cape May","{""34009"": ""100""}","Cape May","34009","FALSE","FALSE","America/New_York"
-"08244","39.31821","-74.58798","Somers Point","NJ","New Jersey","TRUE","","10394","694.1","34001","Atlantic","{""34001"": ""100""}","Atlantic","34001","FALSE","FALSE","America/New_York"
-"08246","39.18094","-74.76575","South Seaville","NJ","New Jersey","TRUE","","106","126.2","34009","Cape May","{""34009"": ""100""}","Cape May","34009","FALSE","FALSE","America/New_York"
-"08247","39.05103","-74.78329","Stone Harbor","NJ","New Jersey","TRUE","","939","72.9","34009","Cape May","{""34009"": ""100""}","Cape May","34009","FALSE","FALSE","America/New_York"
-"08248","39.19555","-74.66073","Strathmere","NJ","New Jersey","TRUE","","171","119.2","34009","Cape May","{""34009"": ""100""}","Cape May","34009","FALSE","FALSE","America/New_York"
-"08251","39.02704","-74.92736","Villas","NJ","New Jersey","TRUE","","9228","564.0","34009","Cape May","{""34009"": ""100""}","Cape May","34009","FALSE","FALSE","America/New_York"
-"08260","38.9966","-74.8391","Wildwood","NJ","New Jersey","TRUE","","12630","302.7","34009","Cape May","{""34009"": ""100""}","Cape May","34009","FALSE","FALSE","America/New_York"
-"08270","39.2719","-74.79635","Woodbine","NJ","New Jersey","TRUE","","8063","27.0","34009","Cape May","{""34009"": ""92.42"", ""34001"": ""7.58""}","Cape May|Atlantic","34009|34001","FALSE","FALSE","America/New_York"
-"08302","39.4397","-75.26078","Bridgeton","NJ","New Jersey","TRUE","","45056","121.4","34011","Cumberland","{""34011"": ""96.32"", ""34033"": ""3.68""}","Cumberland|Salem","34011|34033","FALSE","FALSE","America/New_York"
-"08310","39.52712","-74.89543","Buena","NJ","New Jersey","TRUE","","1315","45.0","34001","Atlantic","{""34001"": ""100""}","Atlantic","34001","FALSE","FALSE","America/New_York"
-"08311","39.32767","-75.20982","Cedarville","NJ","New Jersey","TRUE","","2251","31.5","34011","Cumberland","{""34011"": ""100""}","Cumberland","34011","FALSE","FALSE","America/New_York"
-"08312","39.66131","-75.0802","Clayton","NJ","New Jersey","TRUE","","8366","556.0","34015","Gloucester","{""34015"": ""100""}","Gloucester","34015","FALSE","FALSE","America/New_York"
-"08314","39.21814","-74.94235","Delmont","NJ","New Jersey","TRUE","","2908","85.9","34011","Cumberland","{""34011"": ""100""}","Cumberland","34011","FALSE","FALSE","America/New_York"
-"08316","39.27321","-74.96125","Dorchester","NJ","New Jersey","TRUE","","286","29.3","34011","Cumberland","{""34011"": ""100""}","Cumberland","34011","FALSE","FALSE","America/New_York"
-"08317","39.40409","-74.82828","Dorothy","NJ","New Jersey","TRUE","","1636","87.7","34001","Atlantic","{""34001"": ""100""}","Atlantic","34001","FALSE","FALSE","America/New_York"
-"08318","39.5563","-75.17636","Elmer","NJ","New Jersey","TRUE","","12087","58.6","34033","Salem","{""34033"": ""98.45"", ""34011"": ""1.55""}","Salem|Cumberland","34033|34011","FALSE","FALSE","America/New_York"
-"08319","39.36864","-74.81691","Estell Manor","NJ","New Jersey","TRUE","","1171","32.0","34001","Atlantic","{""34001"": ""100""}","Atlantic","34001","FALSE","FALSE","America/New_York"
-"08320","39.3851","-75.16059","Fairton","NJ","New Jersey","TRUE","","1043","953.7","34011","Cumberland","{""34011"": ""100""}","Cumberland","34011","FALSE","FALSE","America/New_York"
-"08321","39.22087","-75.1418","Fortescue","NJ","New Jersey","TRUE","","123","5.1","34011","Cumberland","{""34011"": ""100""}","Cumberland","34011","FALSE","FALSE","America/New_York"
-"08322","39.61418","-75.03521","Franklinville","NJ","New Jersey","TRUE","","10902","146.9","34015","Gloucester","{""34015"": ""100""}","Gloucester","34015","FALSE","FALSE","America/New_York"
-"08323","39.39557","-75.36605","Greenwich","NJ","New Jersey","TRUE","","599","13.0","34011","Cumberland","{""34011"": ""100""}","Cumberland","34011","FALSE","FALSE","America/New_York"
-"08324","39.21679","-74.99636","Heislerville","NJ","New Jersey","TRUE","","277","12.6","34011","Cumberland","{""34011"": ""100""}","Cumberland","34011","FALSE","FALSE","America/New_York"
-"08326","39.53767","-74.92829","Landisville","NJ","New Jersey","TRUE","","1322","148.1","34001","Atlantic","{""34001"": ""100""}","Atlantic","34001","FALSE","FALSE","America/New_York"
-"08327","39.24962","-74.98212","Leesburg","NJ","New Jersey","TRUE","","3118","226.1","34011","Cumberland","{""34011"": ""100""}","Cumberland","34011","FALSE","FALSE","America/New_York"
-"08328","39.5784","-75.05917","Malaga","NJ","New Jersey","TRUE","","1301","240.3","34015","Gloucester","{""34015"": ""100""}","Gloucester","34015","FALSE","FALSE","America/New_York"
-"08329","39.27733","-75.00191","Mauricetown","NJ","New Jersey","TRUE","","345","58.4","34011","Cumberland","{""34011"": ""100""}","Cumberland","34011","FALSE","FALSE","America/New_York"
-"08330","39.4761","-74.74148","Mays Landing","NJ","New Jersey","TRUE","","27552","88.5","34001","Atlantic","{""34001"": ""100""}","Atlantic","34001","FALSE","FALSE","America/New_York"
-"08332","39.37701","-75.02428","Millville","NJ","New Jersey","TRUE","","35414","129.0","34011","Cumberland","{""34011"": ""100""}","Cumberland","34011","FALSE","FALSE","America/New_York"
-"08340","39.43609","-74.87302","Milmay","NJ","New Jersey","TRUE","","1327","38.9","34001","Atlantic","{""34001"": ""67.62"", ""34011"": ""32.38""}","Atlantic|Cumberland","34001|34011","FALSE","FALSE","America/New_York"
-"08341","39.52548","-74.95257","Minotola","NJ","New Jersey","TRUE","","2390","377.3","34001","Atlantic","{""34001"": ""100""}","Atlantic","34001","FALSE","FALSE","America/New_York"
-"08343","39.64133","-75.17053","Monroeville","NJ","New Jersey","TRUE","","5331","61.8","34015","Gloucester","{""34015"": ""65.35"", ""34033"": ""34.65""}","Gloucester|Salem","34015|34033","FALSE","FALSE","America/New_York"
-"08344","39.5675","-74.98473","Newfield","NJ","New Jersey","TRUE","","4514","70.7","34015","Gloucester","{""34015"": ""67.2"", ""34011"": ""21.75"", ""34033"": ""8.19"", ""34001"": ""2.86""}","Gloucester|Cumberland|Salem|Atlantic","34015|34011|34033|34001","FALSE","FALSE","America/New_York"
-"08345","39.28108","-75.16505","Newport","NJ","New Jersey","TRUE","","591","11.3","34011","Cumberland","{""34011"": ""100""}","Cumberland","34011","FALSE","FALSE","America/New_York"
-"08346","39.56303","-74.85608","Newtonville","NJ","New Jersey","TRUE","","942","96.1","34001","Atlantic","{""34001"": ""100""}","Atlantic","34001","FALSE","FALSE","America/New_York"
-"08348","39.30747","-74.97523","Port Elizabeth","NJ","New Jersey","TRUE","","155","41.2","34011","Cumberland","{""34011"": ""100""}","Cumberland","34011","FALSE","FALSE","America/New_York"
-"08349","39.27408","-75.07138","Port Norris","NJ","New Jersey","TRUE","","1695","16.1","34011","Cumberland","{""34011"": ""100""}","Cumberland","34011","FALSE","FALSE","America/New_York"
-"08350","39.49174","-74.87832","Richland","NJ","New Jersey","TRUE","","699","67.6","34001","Atlantic","{""34001"": ""100""}","Atlantic","34001","FALSE","FALSE","America/New_York"
-"08352","39.47573","-75.12798","Rosenhayn","NJ","New Jersey","TRUE","","563","739.1","34011","Cumberland","{""34011"": ""100""}","Cumberland","34011","FALSE","FALSE","America/New_York"
-"08353","39.45954","-75.29695","Shiloh","NJ","New Jersey","TRUE","","399","128.0","34011","Cumberland","{""34011"": ""100""}","Cumberland","34011","FALSE","FALSE","America/New_York"
-"08360","39.49427","-75.00641","Vineland","NJ","New Jersey","TRUE","","41906","377.6","34011","Cumberland","{""34011"": ""93.1"", ""34001"": ""4.21"", ""34015"": ""2.68""}","Cumberland|Atlantic|Gloucester","34011|34001|34015","FALSE","FALSE","America/New_York"
-"08361","39.44891","-74.95957","Vineland","NJ","New Jersey","TRUE","","18472","235.1","34011","Cumberland","{""34011"": ""100""}","Cumberland","34011","FALSE","FALSE","America/New_York"
-"08401","39.37961","-74.45278","Atlantic City","NJ","New Jersey","TRUE","","37999","1377.5","34001","Atlantic","{""34001"": ""100""}","Atlantic","34001","FALSE","FALSE","America/New_York"
-"08402","39.3307","-74.50705","Margate City","NJ","New Jersey","TRUE","","5997","1634.0","34001","Atlantic","{""34001"": ""100""}","Atlantic","34001","FALSE","FALSE","America/New_York"
-"08403","39.31914","-74.53541","Longport","NJ","New Jersey","TRUE","","981","179.7","34001","Atlantic","{""34001"": ""100""}","Atlantic","34001","FALSE","FALSE","America/New_York"
-"08406","39.34567","-74.48602","Ventnor City","NJ","New Jersey","TRUE","","10095","1960.0","34001","Atlantic","{""34001"": ""100""}","Atlantic","34001","FALSE","FALSE","America/New_York"
-"08501","40.15563","-74.55438","Allentown","NJ","New Jersey","TRUE","","6226","88.8","34025","Monmouth","{""34025"": ""89.71"", ""34005"": ""5.18"", ""34021"": ""5.1""}","Monmouth|Burlington|Mercer","34025|34005|34021","FALSE","FALSE","America/New_York"
-"08502","40.44827","-74.65564","Belle Mead","NJ","New Jersey","TRUE","","11275","341.2","34035","Somerset","{""34035"": ""100""}","Somerset","34035","FALSE","FALSE","America/New_York"
-"08505","40.10462","-74.73938","Bordentown","NJ","New Jersey","TRUE","","17575","321.3","34005","Burlington","{""34005"": ""100""}","Burlington","34005","FALSE","FALSE","America/New_York"
-"08510","40.19049","-74.4214","Millstone Township","NJ","New Jersey","TRUE","","5692","114.7","34025","Monmouth","{""34025"": ""100""}","Monmouth","34025","FALSE","FALSE","America/New_York"
-"08511","40.043","-74.55391","Cookstown","NJ","New Jersey","TRUE","","1005","147.4","34005","Burlington","{""34005"": ""100""}","Burlington","34005","FALSE","FALSE","America/New_York"
-"08512","40.32022","-74.52661","Cranbury","NJ","New Jersey","TRUE","","10819","196.7","34021","Mercer","{""34021"": ""51.26"", ""34023"": ""48.74""}","Mercer|Middlesex","34021|34023","FALSE","FALSE","America/New_York"
-"08514","40.13303","-74.4964","Cream Ridge","NJ","New Jersey","TRUE","","4804","70.8","34025","Monmouth","{""34025"": ""57.78"", ""34029"": ""42.22""}","Monmouth|Ocean","34025|34029","FALSE","FALSE","America/New_York"
-"08515","40.11626","-74.64586","Chesterfield","NJ","New Jersey","TRUE","","6432","118.1","34005","Burlington","{""34005"": ""100""}","Burlington","34005","FALSE","FALSE","America/New_York"
-"08518","40.11522","-74.80263","Florence","NJ","New Jersey","TRUE","","5402","1099.1","34005","Burlington","{""34005"": ""100""}","Burlington","34005","FALSE","FALSE","America/New_York"
-"08520","40.25527","-74.53163","Hightstown","NJ","New Jersey","TRUE","","26861","591.1","34021","Mercer","{""34021"": ""100""}","Mercer","34021","FALSE","FALSE","America/New_York"
-"08525","40.39621","-74.78327","Hopewell","NJ","New Jersey","TRUE","","4933","85.8","34021","Mercer","{""34021"": ""86.97"", ""34019"": ""13.03""}","Mercer|Hunterdon","34021|34019","FALSE","FALSE","America/New_York"
-"08527","40.10475","-74.34993","Jackson","NJ","New Jersey","TRUE","","56630","256.7","34029","Ocean","{""34029"": ""100""}","Ocean","34029","FALSE","FALSE","America/New_York"
-"08528","40.38659","-74.61873","Kingston","NJ","New Jersey","TRUE","","157","95.4","34035","Somerset","{""34035"": ""74.29"", ""34023"": ""25.71""}","Somerset|Middlesex","34035|34023","FALSE","FALSE","America/New_York"
-"08530","40.37134","-74.89675","Lambertville","NJ","New Jersey","TRUE","","7496","113.9","34019","Hunterdon","{""34019"": ""93.28"", ""34021"": ""6.72""}","Hunterdon|Mercer","34019|34021","FALSE","FALSE","America/New_York"
-"08533","40.07112","-74.49366","New Egypt","NJ","New Jersey","TRUE","","6671","138.4","34029","Ocean","{""34029"": ""100""}","Ocean","34029","FALSE","FALSE","America/New_York"
-"08534","40.33008","-74.79294","Pennington","NJ","New Jersey","TRUE","","12759","224.7","34021","Mercer","{""34021"": ""100""}","Mercer","34021","FALSE","FALSE","America/New_York"
-"08535","40.23562","-74.43932","Millstone Township","NJ","New Jersey","TRUE","","4754","102.6","34025","Monmouth","{""34025"": ""100""}","Monmouth","34025","FALSE","FALSE","America/New_York"
-"08536","40.33428","-74.58235","Plainsboro","NJ","New Jersey","TRUE","","19691","1041.0","34023","Middlesex","{""34023"": ""100""}","Middlesex","34023","FALSE","FALSE","America/New_York"
-"08540","40.3633","-74.65567","Princeton","NJ","New Jersey","TRUE","","48672","361.9","34021","Mercer","{""34021"": ""70.46"", ""34035"": ""15.98"", ""34023"": ""13.56""}","Mercer|Somerset|Middlesex","34021|34035|34023","FALSE","FALSE","America/New_York"
-"08542","40.35292","-74.66041","Princeton","NJ","New Jersey","TRUE","","5840","4352.9","34021","Mercer","{""34021"": ""100""}","Mercer","34021","FALSE","FALSE","America/New_York"
-"08550","40.28106","-74.61756","Princeton Junction","NJ","New Jersey","TRUE","","19277","400.5","34021","Mercer","{""34021"": ""100""}","Mercer","34021","FALSE","FALSE","America/New_York"
-"08551","40.44173","-74.84011","Ringoes","NJ","New Jersey","TRUE","","5347","76.6","34019","Hunterdon","{""34019"": ""100""}","Hunterdon","34019","FALSE","FALSE","America/New_York"
-"08553","40.40015","-74.64054","Rocky Hill","NJ","New Jersey","TRUE","","636","402.0","34035","Somerset","{""34035"": ""100""}","Somerset","34035","FALSE","FALSE","America/New_York"
-"08554","40.11647","-74.778","Roebling","NJ","New Jersey","TRUE","","4123","1507.4","34005","Burlington","{""34005"": ""100""}","Burlington","34005","FALSE","FALSE","America/New_York"
-"08555","40.21995","-74.4718","Roosevelt","NJ","New Jersey","TRUE","","851","194.5","34025","Monmouth","{""34025"": ""100""}","Monmouth","34025","FALSE","FALSE","America/New_York"
-"08558","40.41354","-74.70392","Skillman","NJ","New Jersey","TRUE","","7684","178.0","34035","Somerset","{""34035"": ""98.34"", ""34021"": ""1.66""}","Somerset|Mercer","34035|34021","FALSE","FALSE","America/New_York"
-"08559","40.4375","-74.97093","Stockton","NJ","New Jersey","TRUE","","5307","51.3","34019","Hunterdon","{""34019"": ""100""}","Hunterdon","34019","FALSE","FALSE","America/New_York"
-"08560","40.31342","-74.85903","Titusville","NJ","New Jersey","TRUE","","3695","105.0","34021","Mercer","{""34021"": ""100""}","Mercer","34021","FALSE","FALSE","America/New_York"
-"08561","40.24943","-74.58082","Windsor","NJ","New Jersey","TRUE","","325","104.4","34021","Mercer","{""34021"": ""100""}","Mercer","34021","FALSE","FALSE","America/New_York"
-"08562","40.06655","-74.59483","Wrightstown","NJ","New Jersey","TRUE","","4717","105.9","34005","Burlington","{""34005"": ""100""}","Burlington","34005","FALSE","FALSE","America/New_York"
-"08608","40.21896","-74.76785","Trenton","NJ","New Jersey","TRUE","","889","1080.9","34021","Mercer","{""34021"": ""100""}","Mercer","34021","FALSE","FALSE","America/New_York"
-"08609","40.22595","-74.74081","Trenton","NJ","New Jersey","TRUE","","12562","3551.4","34021","Mercer","{""34021"": ""100""}","Mercer","34021","FALSE","FALSE","America/New_York"
-"08610","40.19247","-74.71582","Trenton","NJ","New Jersey","TRUE","","30842","1543.3","34021","Mercer","{""34021"": ""98.7"", ""34005"": ""1.3""}","Mercer|Burlington","34021|34005","FALSE","FALSE","America/New_York"
-"08611","40.19322","-74.74471","Trenton","NJ","New Jersey","TRUE","","26744","3924.9","34021","Mercer","{""34021"": ""100""}","Mercer","34021","FALSE","FALSE","America/New_York"
-"08618","40.24823","-74.78773","Trenton","NJ","New Jersey","TRUE","","39283","2498.6","34021","Mercer","{""34021"": ""100""}","Mercer","34021","FALSE","FALSE","America/New_York"
-"08619","40.24121","-74.69605","Trenton","NJ","New Jersey","TRUE","","21560","833.5","34021","Mercer","{""34021"": ""100""}","Mercer","34021","FALSE","FALSE","America/New_York"
-"08620","40.16697","-74.6488","Trenton","NJ","New Jersey","TRUE","","11623","501.0","34021","Mercer","{""34021"": ""69.31"", ""34005"": ""30.69""}","Mercer|Burlington","34021|34005","FALSE","FALSE","America/New_York"
-"08628","40.26627","-74.82334","Trenton","NJ","New Jersey","TRUE","","8809","487.3","34021","Mercer","{""34021"": ""100""}","Mercer","34021","FALSE","FALSE","America/New_York"
-"08629","40.22064","-74.73122","Trenton","NJ","New Jersey","TRUE","","13942","6760.5","34021","Mercer","{""34021"": ""100""}","Mercer","34021","FALSE","FALSE","America/New_York"
-"08638","40.25675","-74.763","Trenton","NJ","New Jersey","TRUE","","22339","1498.7","34021","Mercer","{""34021"": ""100""}","Mercer","34021","FALSE","FALSE","America/New_York"
-"08640","40.00351","-74.58932","Joint Base Mdl","NJ","New Jersey","TRUE","","7668","138.1","34005","Burlington","{""34005"": ""100""}","Burlington","34005","FALSE","FALSE","America/New_York"
-"08641","40.02703","-74.58803","Joint Base Mdl","NJ","New Jersey","TRUE","","4248","322.9","34005","Burlington","{""34005"": ""100""}","Burlington","34005","FALSE","FALSE","America/New_York"
-"08648","40.28492","-74.72187","Lawrence Township","NJ","New Jersey","TRUE","","31361","723.9","34021","Mercer","{""34021"": ""100""}","Mercer","34021","FALSE","FALSE","America/New_York"
-"08690","40.22503","-74.66034","Trenton","NJ","New Jersey","TRUE","","18349","1011.1","34021","Mercer","{""34021"": ""100""}","Mercer","34021","FALSE","FALSE","America/New_York"
-"08691","40.20976","-74.59379","Robbinsville","NJ","New Jersey","TRUE","","16850","249.0","34021","Mercer","{""34021"": ""98.42"", ""34025"": ""1.58""}","Mercer|Monmouth","34021|34025","FALSE","FALSE","America/New_York"
-"08701","40.07645","-74.20323","Lakewood","NJ","New Jersey","TRUE","","102466","1607.4","34029","Ocean","{""34029"": ""100""}","Ocean","34029","FALSE","FALSE","America/New_York"
-"08720","40.13872","-74.10104","Allenwood","NJ","New Jersey","TRUE","","808","222.8","34025","Monmouth","{""34025"": ""100""}","Monmouth","34025","FALSE","FALSE","America/New_York"
-"08721","39.90417","-74.15523","Bayville","NJ","New Jersey","TRUE","","21074","523.9","34029","Ocean","{""34029"": ""100""}","Ocean","34029","FALSE","FALSE","America/New_York"
-"08722","39.92854","-74.20228","Beachwood","NJ","New Jersey","TRUE","","11226","1555.2","34029","Ocean","{""34029"": ""100""}","Ocean","34029","FALSE","FALSE","America/New_York"
-"08723","40.03885","-74.11089","Brick","NJ","New Jersey","TRUE","","32846","1052.9","34029","Ocean","{""34029"": ""100""}","Ocean","34029","FALSE","FALSE","America/New_York"
-"08724","40.08988","-74.11458","Brick","NJ","New Jersey","TRUE","","41293","1168.6","34029","Ocean","{""34029"": ""99.89"", ""34025"": ""0.11""}","Ocean|Monmouth","34029|34025","FALSE","FALSE","America/New_York"
-"08730","40.10484","-74.06368","Brielle","NJ","New Jersey","TRUE","","4726","1039.0","34025","Monmouth","{""34025"": ""100""}","Monmouth","34025","FALSE","FALSE","America/New_York"
-"08731","39.86218","-74.26968","Forked River","NJ","New Jersey","TRUE","","19968","161.3","34029","Ocean","{""34029"": ""100""}","Ocean","34029","FALSE","FALSE","America/New_York"
-"08732","39.94175","-74.14494","Island Heights","NJ","New Jersey","TRUE","","1421","1013.2","34029","Ocean","{""34029"": ""100""}","Ocean","34029","FALSE","FALSE","America/New_York"
-"08733","40.02631","-74.32541","Lakehurst","NJ","New Jersey","TRUE","","2756","291.9","34029","Ocean","{""34029"": ""100""}","Ocean","34029","FALSE","FALSE","America/New_York"
-"08734","39.86403","-74.17052","Lanoka Harbor","NJ","New Jersey","TRUE","","8836","594.9","34029","Ocean","{""34029"": ""100""}","Ocean","34029","FALSE","FALSE","America/New_York"
-"08735","39.98229","-74.07259","Lavallette","NJ","New Jersey","TRUE","","3911","870.0","34029","Ocean","{""34029"": ""100""}","Ocean","34029","FALSE","FALSE","America/New_York"
-"08736","40.12001","-74.06847","Manasquan","NJ","New Jersey","TRUE","","13150","1097.9","34025","Monmouth","{""34025"": ""100""}","Monmouth","34025","FALSE","FALSE","America/New_York"
-"08738","40.02112","-74.06223","Mantoloking","NJ","New Jersey","TRUE","","1242","484.1","34029","Ocean","{""34029"": ""100""}","Ocean","34029","FALSE","FALSE","America/New_York"
-"08740","39.9282","-74.13378","Ocean Gate","NJ","New Jersey","TRUE","","1601","1396.8","34029","Ocean","{""34029"": ""100""}","Ocean","34029","FALSE","FALSE","America/New_York"
-"08741","39.93698","-74.16811","Pine Beach","NJ","New Jersey","TRUE","","2613","1245.3","34029","Ocean","{""34029"": ""100""}","Ocean","34029","FALSE","FALSE","America/New_York"
-"08742","40.0808","-74.062","Point Pleasant Beach","NJ","New Jersey","TRUE","","24430","1682.4","34029","Ocean","{""34029"": ""100""}","Ocean","34029","FALSE","FALSE","America/New_York"
-"08750","40.13394","-74.04432","Sea Girt","NJ","New Jersey","TRUE","","3017","615.7","34025","Monmouth","{""34025"": ""100""}","Monmouth","34025","FALSE","FALSE","America/New_York"
-"08751","39.94634","-74.0836","Seaside Heights","NJ","New Jersey","TRUE","","4474","1317.1","34029","Ocean","{""34029"": ""100""}","Ocean","34029","FALSE","FALSE","America/New_York"
-"08752","39.8474","-74.09667","Seaside Park","NJ","New Jersey","TRUE","","2070","167.7","34029","Ocean","{""34029"": ""100""}","Ocean","34029","FALSE","FALSE","America/New_York"
-"08753","39.97937","-74.15558","Toms River","NJ","New Jersey","TRUE","","63415","1061.9","34029","Ocean","{""34029"": ""100""}","Ocean","34029","FALSE","FALSE","America/New_York"
-"08755","40.00967","-74.22456","Toms River","NJ","New Jersey","TRUE","","25928","624.8","34029","Ocean","{""34029"": ""100""}","Ocean","34029","FALSE","FALSE","America/New_York"
-"08757","39.94573","-74.25617","Toms River","NJ","New Jersey","TRUE","","33737","505.3","34029","Ocean","{""34029"": ""100""}","Ocean","34029","FALSE","FALSE","America/New_York"
-"08758","39.78928","-74.23008","Waretown","NJ","New Jersey","TRUE","","7731","238.6","34029","Ocean","{""34029"": ""100""}","Ocean","34029","FALSE","FALSE","America/New_York"
-"08759","39.97836","-74.35623","Manchester Township","NJ","New Jersey","TRUE","","33180","198.8","34029","Ocean","{""34029"": ""100""}","Ocean","34029","FALSE","FALSE","America/New_York"
-"08801","40.6239","-74.88658","Annandale","NJ","New Jersey","TRUE","","8504","201.5","34019","Hunterdon","{""34019"": ""100""}","Hunterdon","34019","FALSE","FALSE","America/New_York"
-"08802","40.67647","-75.02428","Asbury","NJ","New Jersey","TRUE","","3963","64.1","34019","Hunterdon","{""34019"": ""69.68"", ""34041"": ""30.32""}","Hunterdon|Warren","34019|34041","FALSE","FALSE","America/New_York"
-"08804","40.64554","-75.09525","Bloomsbury","NJ","New Jersey","TRUE","","2541","79.8","34019","Hunterdon","{""34019"": ""71.82"", ""34041"": ""28.18""}","Hunterdon|Warren","34019|34041","FALSE","FALSE","America/New_York"
-"08805","40.57164","-74.53689","Bound Brook","NJ","New Jersey","TRUE","","12253","1668.6","34035","Somerset","{""34035"": ""100""}","Somerset","34035","FALSE","FALSE","America/New_York"
-"08807","40.59277","-74.62025","Bridgewater","NJ","New Jersey","TRUE","","38136","576.0","34035","Somerset","{""34035"": ""100""}","Somerset","34035","FALSE","FALSE","America/New_York"
-"08808","40.73214","-75.04926","Broadway","NJ","New Jersey","TRUE","","133","1286.6","34041","Warren","{""34041"": ""100""}","Warren","34041","FALSE","FALSE","America/New_York"
-"08809","40.65125","-74.92233","Clinton","NJ","New Jersey","TRUE","","6446","387.6","34019","Hunterdon","{""34019"": ""100""}","Hunterdon","34019","FALSE","FALSE","America/New_York"
-"08810","40.37271","-74.49384","Dayton","NJ","New Jersey","TRUE","","9507","505.9","34023","Middlesex","{""34023"": ""100""}","Middlesex","34023","FALSE","FALSE","America/New_York"
-"08812","40.59977","-74.4807","Dunellen","NJ","New Jersey","TRUE","","14223","1043.5","34023","Middlesex","{""34023"": ""50.55"", ""34035"": ""49"", ""34039"": ""0.45""}","Middlesex|Somerset|Union","34023|34035|34039","FALSE","FALSE","America/New_York"
-"08816","40.42851","-74.41619","East Brunswick","NJ","New Jersey","TRUE","","46697","875.7","34023","Middlesex","{""34023"": ""100""}","Middlesex","34023","FALSE","FALSE","America/New_York"
-"08817","40.5155","-74.39446","Edison","NJ","New Jersey","TRUE","","45204","1625.9","34023","Middlesex","{""34023"": ""100""}","Middlesex","34023","FALSE","FALSE","America/New_York"
-"08820","40.57722","-74.36588","Edison","NJ","New Jersey","TRUE","","38507","1434.5","34023","Middlesex","{""34023"": ""100""}","Middlesex","34023","FALSE","FALSE","America/New_York"
-"08821","40.52001","-74.68565","Flagtown","NJ","New Jersey","TRUE","","436","562.8","34035","Somerset","{""34035"": ""100""}","Somerset","34035","FALSE","FALSE","America/New_York"
-"08822","40.52109","-74.86364","Flemington","NJ","New Jersey","TRUE","","29868","180.9","34019","Hunterdon","{""34019"": ""100""}","Hunterdon","34019","FALSE","FALSE","America/New_York"
-"08823","40.44153","-74.56506","Franklin Park","NJ","New Jersey","TRUE","","9117","1006.4","34035","Somerset","{""34035"": ""100""}","Somerset","34035","FALSE","FALSE","America/New_York"
-"08824","40.42253","-74.55168","Kendall Park","NJ","New Jersey","TRUE","","12077","1197.6","34023","Middlesex","{""34023"": ""100""}","Middlesex","34023","FALSE","FALSE","America/New_York"
-"08825","40.51299","-75.02495","Frenchtown","NJ","New Jersey","TRUE","","4384","58.1","34019","Hunterdon","{""34019"": ""100""}","Hunterdon","34019","FALSE","FALSE","America/New_York"
-"08826","40.71955","-74.90505","Glen Gardner","NJ","New Jersey","TRUE","","5060","94.3","34019","Hunterdon","{""34019"": ""100""}","Hunterdon","34019","FALSE","FALSE","America/New_York"
-"08827","40.66479","-74.97391","Hampton","NJ","New Jersey","TRUE","","4159","85.4","34019","Hunterdon","{""34019"": ""93.37"", ""34041"": ""6.63""}","Hunterdon|Warren","34019|34041","FALSE","FALSE","America/New_York"
-"08828","40.37766","-74.42385","Helmetta","NJ","New Jersey","TRUE","","2475","1153.7","34023","Middlesex","{""34023"": ""100""}","Middlesex","34023","FALSE","FALSE","America/New_York"
-"08829","40.66801","-74.89421","High Bridge","NJ","New Jersey","TRUE","","3515","550.9","34019","Hunterdon","{""34019"": ""100""}","Hunterdon","34019","FALSE","FALSE","America/New_York"
-"08830","40.56968","-74.31702","Iselin","NJ","New Jersey","TRUE","","17784","2162.3","34023","Middlesex","{""34023"": ""100""}","Middlesex","34023","FALSE","FALSE","America/New_York"
-"08831","40.32664","-74.42968","Monroe Township","NJ","New Jersey","TRUE","","50944","390.8","34023","Middlesex","{""34023"": ""100""}","Middlesex","34023","FALSE","FALSE","America/New_York"
-"08832","40.51723","-74.3077","Keasbey","NJ","New Jersey","TRUE","","3152","833.6","34023","Middlesex","{""34023"": ""100""}","Middlesex","34023","FALSE","FALSE","America/New_York"
-"08833","40.64504","-74.82048","Lebanon","NJ","New Jersey","TRUE","","7984","92.3","34019","Hunterdon","{""34019"": ""100""}","Hunterdon","34019","FALSE","FALSE","America/New_York"
-"08835","40.542","-74.58923","Manville","NJ","New Jersey","TRUE","","10230","1670.9","34035","Somerset","{""34035"": ""100""}","Somerset","34035","FALSE","FALSE","America/New_York"
-"08836","40.59608","-74.55466","Martinsville","NJ","New Jersey","TRUE","","3776","311.1","34035","Somerset","{""34035"": ""100""}","Somerset","34035","FALSE","FALSE","America/New_York"
-"08837","40.51363","-74.34465","Edison","NJ","New Jersey","TRUE","","16674","712.4","34023","Middlesex","{""34023"": ""100""}","Middlesex","34023","FALSE","FALSE","America/New_York"
-"08840","40.54366","-74.35843","Metuchen","NJ","New Jersey","TRUE","","16594","1989.6","34023","Middlesex","{""34023"": ""100""}","Middlesex","34023","FALSE","FALSE","America/New_York"
-"08844","40.49847","-74.6729","Hillsborough","NJ","New Jersey","TRUE","","39604","277.8","34035","Somerset","{""34035"": ""100""}","Somerset","34035","FALSE","FALSE","America/New_York"
-"08846","40.57442","-74.50104","Middlesex","NJ","New Jersey","TRUE","","13662","1512.5","34023","Middlesex","{""34023"": ""100""}","Middlesex","34023","FALSE","FALSE","America/New_York"
-"08848","40.59456","-75.09574","Milford","NJ","New Jersey","TRUE","","8463","97.9","34019","Hunterdon","{""34019"": ""100""}","Hunterdon","34019","FALSE","FALSE","America/New_York"
-"08850","40.44725","-74.44012","Milltown","NJ","New Jersey","TRUE","","8373","1316.3","34023","Middlesex","{""34023"": ""100""}","Middlesex","34023","FALSE","FALSE","America/New_York"
-"08852","40.38788","-74.54822","Monmouth Junction","NJ","New Jersey","TRUE","","18368","505.2","34023","Middlesex","{""34023"": ""100""}","Middlesex","34023","FALSE","FALSE","America/New_York"
-"08853","40.52936","-74.74007","Neshanic Station","NJ","New Jersey","TRUE","","4836","173.3","34035","Somerset","{""34035"": ""87.99"", ""34019"": ""12.01""}","Somerset|Hunterdon","34035|34019","FALSE","FALSE","America/New_York"
-"08854","40.54674","-74.46361","Piscataway","NJ","New Jersey","TRUE","","56946","1169.6","34023","Middlesex","{""34023"": ""100""}","Middlesex","34023","FALSE","FALSE","America/New_York"
-"08857","40.39161","-74.32984","Old Bridge","NJ","New Jersey","TRUE","","39713","629.4","34023","Middlesex","{""34023"": ""100""}","Middlesex","34023","FALSE","FALSE","America/New_York"
-"08858","40.67934","-74.73706","Oldwick","NJ","New Jersey","TRUE","","111","15.6","34019","Hunterdon","{""34019"": ""100""}","Hunterdon","34019","FALSE","FALSE","America/New_York"
-"08859","40.45951","-74.30424","Parlin","NJ","New Jersey","TRUE","","22884","1960.1","34023","Middlesex","{""34023"": ""100""}","Middlesex","34023","FALSE","FALSE","America/New_York"
-"08861","40.52097","-74.27408","Perth Amboy","NJ","New Jersey","TRUE","","53538","4018.6","34023","Middlesex","{""34023"": ""100""}","Middlesex","34023","FALSE","FALSE","America/New_York"
-"08863","40.52715","-74.31559","Fords","NJ","New Jersey","TRUE","","12094","1831.9","34023","Middlesex","{""34023"": ""100""}","Middlesex","34023","FALSE","FALSE","America/New_York"
-"08865","40.70775","-75.1508","Phillipsburg","NJ","New Jersey","TRUE","","28986","260.4","34041","Warren","{""34041"": ""100""}","Warren","34041","FALSE","FALSE","America/New_York"
-"08867","40.57358","-74.96578","Pittstown","NJ","New Jersey","TRUE","","5204","68.9","34019","Hunterdon","{""34019"": ""100""}","Hunterdon","34019","FALSE","FALSE","America/New_York"
-"08869","40.57302","-74.64315","Raritan","NJ","New Jersey","TRUE","","7865","1523.0","34035","Somerset","{""34035"": ""100""}","Somerset","34035","FALSE","FALSE","America/New_York"
-"08872","40.46429","-74.33722","Sayreville","NJ","New Jersey","TRUE","","19852","855.3","34023","Middlesex","{""34023"": ""100""}","Middlesex","34023","FALSE","FALSE","America/New_York"
-"08873","40.49836","-74.53286","Somerset","NJ","New Jersey","TRUE","","54148","647.3","34035","Somerset","{""34035"": ""100""}","Somerset","34035","FALSE","FALSE","America/New_York"
-"08876","40.58799","-74.68739","Somerville","NJ","New Jersey","TRUE","","22257","565.5","34035","Somerset","{""34035"": ""98.92"", ""34019"": ""1.08""}","Somerset|Hunterdon","34035|34019","FALSE","FALSE","America/New_York"
-"08879","40.46555","-74.27731","South Amboy","NJ","New Jersey","TRUE","","23064","1234.3","34023","Middlesex","{""34023"": ""100""}","Middlesex","34023","FALSE","FALSE","America/New_York"
-"08880","40.55353","-74.52772","South Bound Brook","NJ","New Jersey","TRUE","","4534","2708.5","34035","Somerset","{""34035"": ""100""}","Somerset","34035","FALSE","FALSE","America/New_York"
-"08882","40.4456","-74.37841","South River","NJ","New Jersey","TRUE","","15924","2215.0","34023","Middlesex","{""34023"": ""100""}","Middlesex","34023","FALSE","FALSE","America/New_York"
-"08884","40.39511","-74.39148","Spotswood","NJ","New Jersey","TRUE","","8269","1374.2","34023","Middlesex","{""34023"": ""100""}","Middlesex","34023","FALSE","FALSE","America/New_York"
-"08886","40.69315","-75.10526","Stewartsville","NJ","New Jersey","TRUE","","7121","181.8","34041","Warren","{""34041"": ""100""}","Warren","34041","FALSE","FALSE","America/New_York"
-"08887","40.52363","-74.79445","Three Bridges","NJ","New Jersey","TRUE","","1049","581.3","34019","Hunterdon","{""34019"": ""100""}","Hunterdon","34019","FALSE","FALSE","America/New_York"
-"08889","40.60759","-74.75959","Whitehouse Station","NJ","New Jersey","TRUE","","10750","166.6","34019","Hunterdon","{""34019"": ""100""}","Hunterdon","34019","FALSE","FALSE","America/New_York"
-"08890","40.53934","-74.57394","Zarephath","NJ","New Jersey","TRUE","","17","37.4","34035","Somerset","{""34035"": ""100""}","Somerset","34035","FALSE","FALSE","America/New_York"
-"08901","40.48408","-74.44269","New Brunswick","NJ","New Jersey","TRUE","","57572","3485.5","34023","Middlesex","{""34023"": ""100""}","Middlesex","34023","FALSE","FALSE","America/New_York"
-"08902","40.44071","-74.4863","North Brunswick","NJ","New Jersey","TRUE","","40985","1164.4","34023","Middlesex","{""34023"": ""100""}","Middlesex","34023","FALSE","FALSE","America/New_York"
-"08904","40.50056","-74.42829","Highland Park","NJ","New Jersey","TRUE","","13883","2943.5","34023","Middlesex","{""34023"": ""100""}","Middlesex","34023","FALSE","FALSE","America/New_York"
-"10001","40.75065","-73.99718","New York","NY","New York","TRUE","","24117","15153.7","36061","New York","{""36061"": ""100""}","New York","36061","FALSE","FALSE","America/New_York"
-"10002","40.7157","-73.98638","New York","NY","New York","TRUE","","74479","32735.5","36061","New York","{""36061"": ""100""}","New York","36061","FALSE","FALSE","America/New_York"
-"10003","40.7318","-73.98911","New York","NY","New York","TRUE","","53977","36153.3","36061","New York","{""36061"": ""100""}","New York","36061","FALSE","FALSE","America/New_York"
-"10004","40.69465","-74.02106","New York","NY","New York","TRUE","","3335","2391.1","36061","New York","{""36061"": ""100""}","New York","36061","FALSE","FALSE","America/New_York"
-"10005","40.70614","-74.00891","New York","NY","New York","TRUE","","8701","46219.5","36061","New York","{""36061"": ""100""}","New York","36061","FALSE","FALSE","America/New_York"
-"10006","40.70968","-74.01284","New York","NY","New York","TRUE","","3092","12793.4","36061","New York","{""36061"": ""100""}","New York","36061","FALSE","FALSE","America/New_York"
-"10007","40.71395","-74.00764","New York","NY","New York","TRUE","","7408","17931.6","36061","New York","{""36061"": ""100""}","New York","36061","FALSE","FALSE","America/New_York"
-"10009","40.72633","-73.97861","New York","NY","New York","TRUE","","58293","36487.5","36061","New York","{""36061"": ""100""}","New York","36061","FALSE","FALSE","America/New_York"
-"10010","40.73911","-73.98265","New York","NY","New York","TRUE","","35906","36324.6","36061","New York","{""36061"": ""100""}","New York","36061","FALSE","FALSE","America/New_York"
-"10011","40.74187","-74.00052","New York","NY","New York","TRUE","","49949","29140.3","36061","New York","{""36061"": ""100""}","New York","36061","FALSE","FALSE","America/New_York"
-"10012","40.72584","-73.998","New York","NY","New York","TRUE","","23318","27849.0","36061","New York","{""36061"": ""100""}","New York","36061","FALSE","FALSE","America/New_York"
-"10013","40.72022","-74.00463","New York","NY","New York","TRUE","","28799","20208.6","36061","New York","{""36061"": ""100""}","New York","36061","FALSE","FALSE","America/New_York"
-"10014","40.73374","-74.00687","New York","NY","New York","TRUE","","30344","21312.8","36061","New York","{""36061"": ""100""}","New York","36061","FALSE","FALSE","America/New_York"
-"10016","40.74515","-73.9783","New York","NY","New York","TRUE","","52886","38374.2","36061","New York","{""36061"": ""100""}","New York","36061","FALSE","FALSE","America/New_York"
-"10017","40.75221","-73.97251","New York","NY","New York","TRUE","","15846","19302.0","36061","New York","{""36061"": ""100""}","New York","36061","FALSE","FALSE","America/New_York"
-"10018","40.75533","-73.99311","New York","NY","New York","TRUE","","8806","10530.3","36061","New York","{""36061"": ""100""}","New York","36061","FALSE","FALSE","America/New_York"
-"10019","40.7657","-73.98706","New York","NY","New York","TRUE","","45498","25210.6","36061","New York","{""36061"": ""100""}","New York","36061","FALSE","FALSE","America/New_York"
-"10020","40.75906","-73.98026","New York","NY","New York","TRUE","","0","0.0","36061","New York","{""36061"": ""0""}","New York","36061","FALSE","FALSE","America/New_York"
-"10021","40.76939","-73.95871","New York","NY","New York","TRUE","","44280","44872.8","36061","New York","{""36061"": ""100""}","New York","36061","FALSE","FALSE","America/New_York"
-"10022","40.75859","-73.96793","New York","NY","New York","TRUE","","31130","28116.8","36061","New York","{""36061"": ""100""}","New York","36061","FALSE","FALSE","America/New_York"
-"10023","40.77601","-73.98269","New York","NY","New York","TRUE","","62541","49276.1","36061","New York","{""36061"": ""100""}","New York","36061","FALSE","FALSE","America/New_York"
-"10024","40.79227","-73.97482","New York","NY","New York","TRUE","","58102","26141.0","36061","New York","{""36061"": ""100""}","New York","36061","FALSE","FALSE","America/New_York"
-"10025","40.79857","-73.96659","New York","NY","New York","TRUE","","92251","47387.6","36061","New York","{""36061"": ""100""}","New York","36061","FALSE","FALSE","America/New_York"
-"10026","40.80245","-73.9526","New York","NY","New York","TRUE","","38585","44827.6","36061","New York","{""36061"": ""100""}","New York","36061","FALSE","FALSE","America/New_York"
-"10027","40.81184","-73.9534","New York","NY","New York","TRUE","","64988","28875.2","36061","New York","{""36061"": ""100""}","New York","36061","FALSE","FALSE","America/New_York"
-"10028","40.7763","-73.95372","New York","NY","New York","TRUE","","46768","57641.1","36061","New York","{""36061"": ""100""}","New York","36061","FALSE","FALSE","America/New_York"
-"10029","40.79173","-73.94396","New York","NY","New York","TRUE","","76713","36488.9","36061","New York","{""36061"": ""100""}","New York","36061","FALSE","FALSE","America/New_York"
-"10030","40.81823","-73.94288","New York","NY","New York","TRUE","","31060","42987.5","36061","New York","{""36061"": ""100""}","New York","36061","FALSE","FALSE","America/New_York"
-"10031","40.82518","-73.95013","New York","NY","New York","TRUE","","59586","35435.2","36061","New York","{""36061"": ""100""}","New York","36061","FALSE","FALSE","America/New_York"
-"10032","40.83884","-73.94279","New York","NY","New York","TRUE","","63214","37277.8","36061","New York","{""36061"": ""100""}","New York","36061","FALSE","FALSE","America/New_York"
-"10033","40.8506","-73.93391","New York","NY","New York","TRUE","","58349","37787.9","36061","New York","{""36061"": ""100""}","New York","36061","FALSE","FALSE","America/New_York"
-"10034","40.86715","-73.9241","New York","NY","New York","TRUE","","42399","15014.2","36061","New York","{""36061"": ""100""}","New York","36061","FALSE","FALSE","America/New_York"
-"10035","40.79551","-73.92967","New York","NY","New York","TRUE","","36048","9771.4","36061","New York","{""36061"": ""100""}","New York","36061","FALSE","FALSE","America/New_York"
-"10036","40.75927","-73.98999","New York","NY","New York","TRUE","","28487","25040.6","36061","New York","{""36061"": ""100""}","New York","36061","FALSE","FALSE","America/New_York"
-"10037","40.81287","-73.93739","New York","NY","New York","TRUE","","20462","30695.9","36061","New York","{""36061"": ""100""}","New York","36061","FALSE","FALSE","America/New_York"
-"10038","40.70916","-74.00279","New York","NY","New York","TRUE","","23311","30123.9","36061","New York","{""36061"": ""100""}","New York","36061","FALSE","FALSE","America/New_York"
-"10039","40.83076","-73.93619","New York","NY","New York","TRUE","","27854","24590.9","36061","New York","{""36061"": ""100""}","New York","36061","FALSE","FALSE","America/New_York"
-"10040","40.85821","-73.93053","New York","NY","New York","TRUE","","44800","45321.7","36061","New York","{""36061"": ""100""}","New York","36061","FALSE","FALSE","America/New_York"
-"10044","40.76166","-73.95017","New York","NY","New York","TRUE","","12440","20876.5","36061","New York","{""36061"": ""100""}","New York","36061","FALSE","FALSE","America/New_York"
-"10065","40.76474","-73.96314","New York","NY","New York","TRUE","","29530","29990.2","36061","New York","{""36061"": ""100""}","New York","36061","FALSE","FALSE","America/New_York"
-"10069","40.77555","-73.99035","New York","NY","New York","TRUE","","6051","24296.3","36061","New York","{""36061"": ""100""}","New York","36061","FALSE","FALSE","America/New_York"
-"10075","40.77335","-73.95622","New York","NY","New York","TRUE","","22252","46636.5","36061","New York","{""36061"": ""100""}","New York","36061","FALSE","FALSE","America/New_York"
-"10103","40.76078","-73.97767","New York","NY","New York","TRUE","","0","0.0","36061","New York","{""36061"": ""100""}","New York","36061","FALSE","FALSE","America/New_York"
-"10110","40.7545","-73.98226","New York","NY","New York","TRUE","","0","0.0","36061","New York","{""36061"": ""0""}","New York","36061","FALSE","FALSE","America/New_York"
-"10111","40.75892","-73.97746","New York","NY","New York","TRUE","","0","0.0","36061","New York","{""36061"": ""0""}","New York","36061","FALSE","FALSE","America/New_York"
-"10112","40.75917","-73.97967","New York","NY","New York","TRUE","","0","0.0","36061","New York","{""36061"": ""0""}","New York","36061","FALSE","FALSE","America/New_York"
-"10115","40.81085","-73.96374","New York","NY","New York","TRUE","","0","0.0","36061","New York","{""36061"": ""0""}","New York","36061","FALSE","FALSE","America/New_York"
-"10119","40.75031","-73.99298","New York","NY","New York","TRUE","","0","0.0","36061","New York","{""36061"": ""100""}","New York","36061","FALSE","FALSE","America/New_York"
-"10128","40.78138","-73.95016","New York","NY","New York","TRUE","","58636","48612.5","36061","New York","{""36061"": ""100""}","New York","36061","FALSE","FALSE","America/New_York"
-"10152","40.7584","-73.97203","New York","NY","New York","TRUE","","0","0.0","36061","New York","{""36061"": ""0""}","New York","36061","FALSE","FALSE","America/New_York"
-"10153","40.76362","-73.97244","New York","NY","New York","TRUE","","0","0.0","36061","New York","{""36061"": ""0""}","New York","36061","FALSE","FALSE","America/New_York"
-"10154","40.75778","-73.97249","New York","NY","New York","TRUE","","0","0.0","36061","New York","{""36061"": ""0""}","New York","36061","FALSE","FALSE","America/New_York"
-"10162","40.76931","-73.94993","New York","NY","New York","TRUE","","1486","49845.7","36061","New York","{""36061"": ""100""}","New York","36061","FALSE","FALSE","America/New_York"
-"10165","40.75213","-73.97872","New York","NY","New York","TRUE","","0","0.0","36061","New York","{""36061"": ""100""}","New York","36061","FALSE","FALSE","America/New_York"
-"10167","40.75479","-73.97495","New York","NY","New York","TRUE","","0","0.0","36061","New York","{""36061"": ""0""}","New York","36061","FALSE","FALSE","America/New_York"
-"10168","40.75145","-73.9771","New York","NY","New York","TRUE","","0","0.0","36061","New York","{""36061"": ""0""}","New York","36061","FALSE","FALSE","America/New_York"
-"10169","40.75439","-73.9761","New York","NY","New York","TRUE","","0","0.0","36061","New York","{""36061"": ""0""}","New York","36061","FALSE","FALSE","America/New_York"
-"10170","40.75263","-73.97588","New York","NY","New York","TRUE","","0","0.0","36061","New York","{""36061"": ""100""}","New York","36061","FALSE","FALSE","America/New_York"
-"10171","40.7559","-73.97386","New York","NY","New York","TRUE","","0","0.0","36061","New York","{""36061"": ""0""}","New York","36061","FALSE","FALSE","America/New_York"
-"10172","40.75527","-73.97431","New York","NY","New York","TRUE","","0","0.0","36061","New York","{""36061"": ""0""}","New York","36061","FALSE","FALSE","America/New_York"
-"10173","40.75413","-73.97936","New York","NY","New York","TRUE","","0","0.0","36061","New York","{""36061"": ""100""}","New York","36061","FALSE","FALSE","America/New_York"
-"10174","40.75144","-73.975","New York","NY","New York","TRUE","","0","0.0","36061","New York","{""36061"": ""0""}","New York","36061","FALSE","FALSE","America/New_York"
-"10177","40.75498","-73.97589","New York","NY","New York","TRUE","","0","0.0","36061","New York","{""36061"": ""0""}","New York","36061","FALSE","FALSE","America/New_York"
-"10199","40.75138","-73.99715","New York","NY","New York","TRUE","","0","0.0","36061","New York","{""36061"": ""100""}","New York","36061","FALSE","FALSE","America/New_York"
-"10271","40.70824","-74.01054","New York","NY","New York","TRUE","","0","0.0","36061","New York","{""36061"": ""0""}","New York","36061","FALSE","FALSE","America/New_York"
-"10278","40.71514","-74.00377","New York","NY","New York","TRUE","","0","0.0","36061","New York","{""36061"": ""0""}","New York","36061","FALSE","FALSE","America/New_York"
-"10279","40.71263","-74.00867","New York","NY","New York","TRUE","","42","3887.1","36061","New York","{""36061"": ""0""}","New York","36061","FALSE","FALSE","America/New_York"
-"10280","40.71025","-74.01672","New York","NY","New York","TRUE","","9496","31945.9","36061","New York","{""36061"": ""100""}","New York","36061","FALSE","FALSE","America/New_York"
-"10282","40.71683","-74.01494","New York","NY","New York","TRUE","","5783","32516.7","36061","New York","{""36061"": ""100""}","New York","36061","FALSE","FALSE","America/New_York"
-"10301","40.62846","-74.0962","Staten Island","NY","New York","TRUE","","38280","4165.7","36085","Richmond","{""36085"": ""100""}","Richmond","36085","FALSE","FALSE","America/New_York"
-"10302","40.63043","-74.13772","Staten Island","NY","New York","TRUE","","18037","5857.8","36085","Richmond","{""36085"": ""100""}","Richmond","36085","FALSE","FALSE","America/New_York"
-"10303","40.63239","-74.16905","Staten Island","NY","New York","TRUE","","27401","3365.4","36085","Richmond","{""36085"": ""100""}","Richmond","36085","FALSE","FALSE","America/New_York"
-"10304","40.60607","-74.09418","Staten Island","NY","New York","TRUE","","41112","4257.7","36085","Richmond","{""36085"": ""100""}","Richmond","36085","FALSE","FALSE","America/New_York"
-"10305","40.59538","-74.07543","Staten Island","NY","New York","TRUE","","42726","4146.3","36085","Richmond","{""36085"": ""100""}","Richmond","36085","FALSE","FALSE","America/New_York"
-"10306","40.57152","-74.12535","Staten Island","NY","New York","TRUE","","53877","2782.9","36085","Richmond","{""36085"": ""100""}","Richmond","36085","FALSE","FALSE","America/New_York"
-"10307","40.50794","-74.23965","Staten Island","NY","New York","TRUE","","14906","3128.8","36085","Richmond","{""36085"": ""100""}","Richmond","36085","FALSE","FALSE","America/New_York"
-"10308","40.55152","-74.15038","Staten Island","NY","New York","TRUE","","29512","5789.0","36085","Richmond","{""36085"": ""100""}","Richmond","36085","FALSE","FALSE","America/New_York"
-"10309","40.53132","-74.22056","Staten Island","NY","New York","TRUE","","34058","1975.6","36085","Richmond","{""36085"": ""100""}","Richmond","36085","FALSE","FALSE","America/New_York"
-"10310","40.63236","-74.11616","Staten Island","NY","New York","TRUE","","23800","5116.5","36085","Richmond","{""36085"": ""100""}","Richmond","36085","FALSE","FALSE","America/New_York"
-"10311","40.60524","-74.17956","Staten Island","NY","New York","TRUE","","0","0.0","36085","Richmond","{""36085"": ""0""}","Richmond","36085","FALSE","FALSE","America/New_York"
-"10312","40.54534","-74.18153","Staten Island","NY","New York","TRUE","","61392","3126.3","36085","Richmond","{""36085"": ""100""}","Richmond","36085","FALSE","FALSE","America/New_York"
-"10314","40.59913","-74.16572","Staten Island","NY","New York","TRUE","","89792","2534.2","36085","Richmond","{""36085"": ""100""}","Richmond","36085","FALSE","FALSE","America/New_York"
-"10451","40.82077","-73.92387","Bronx","NY","New York","TRUE","","48136","18060.2","36005","Bronx","{""36005"": ""100""}","Bronx","36005","FALSE","FALSE","America/New_York"
-"10452","40.83739","-73.92344","Bronx","NY","New York","TRUE","","75452","29476.0","36005","Bronx","{""36005"": ""100""}","Bronx","36005","FALSE","FALSE","America/New_York"
-"10453","40.85225","-73.91358","Bronx","NY","New York","TRUE","","81716","34442.7","36005","Bronx","{""36005"": ""100""}","Bronx","36005","FALSE","FALSE","America/New_York"
-"10454","40.80549","-73.91661","Bronx","NY","New York","TRUE","","37212","13709.0","36005","Bronx","{""36005"": ""100""}","Bronx","36005","FALSE","FALSE","America/New_York"
-"10455","40.81478","-73.90862","Bronx","NY","New York","TRUE","","41951","22714.2","36005","Bronx","{""36005"": ""100""}","Bronx","36005","FALSE","FALSE","America/New_York"
-"10456","40.83003","-73.90815","Bronx","NY","New York","TRUE","","92717","35177.8","36005","Bronx","{""36005"": ""100""}","Bronx","36005","FALSE","FALSE","America/New_York"
-"10457","40.84713","-73.89871","Bronx","NY","New York","TRUE","","74822","27276.2","36005","Bronx","{""36005"": ""100""}","Bronx","36005","FALSE","FALSE","America/New_York"
-"10458","40.86244","-73.88826","Bronx","NY","New York","TRUE","","85620","32883.9","36005","Bronx","{""36005"": ""100""}","Bronx","36005","FALSE","FALSE","America/New_York"
-"10459","40.82585","-73.89289","Bronx","NY","New York","TRUE","","48780","22962.7","36005","Bronx","{""36005"": ""100""}","Bronx","36005","FALSE","FALSE","America/New_York"
-"10460","40.84172","-73.87956","Bronx","NY","New York","TRUE","","59432","17484.9","36005","Bronx","{""36005"": ""100""}","Bronx","36005","FALSE","FALSE","America/New_York"
-"10461","40.8474","-73.84066","Bronx","NY","New York","TRUE","","49690","8012.2","36005","Bronx","{""36005"": ""100""}","Bronx","36005","FALSE","FALSE","America/New_York"
-"10462","40.84269","-73.8586","Bronx","NY","New York","TRUE","","75714","19830.2","36005","Bronx","{""36005"": ""100""}","Bronx","36005","FALSE","FALSE","America/New_York"
-"10463","40.88077","-73.90662","Bronx","NY","New York","TRUE","","71132","18939.0","36005","Bronx","{""36005"": ""87.55"", ""36061"": ""12.45""}","Bronx|New York","36005|36061","FALSE","FALSE","America/New_York"
-"10464","40.86793","-73.80051","Bronx","NY","New York","TRUE","","4531","503.8","36005","Bronx","{""36005"": ""100""}","Bronx","36005","FALSE","FALSE","America/New_York"
-"10465","40.82391","-73.82298","Bronx","NY","New York","TRUE","","43671","4963.1","36005","Bronx","{""36005"": ""100""}","Bronx","36005","FALSE","FALSE","America/New_York"
-"10466","40.89098","-73.84597","Bronx","NY","New York","TRUE","","75039","14388.5","36005","Bronx","{""36005"": ""100""}","Bronx","36005","FALSE","FALSE","America/New_York"
-"10467","40.88081","-73.87392","Bronx","NY","New York","TRUE","","101255","16738.7","36005","Bronx","{""36005"": ""100""}","Bronx","36005","FALSE","FALSE","America/New_York"
-"10468","40.86804","-73.90006","Bronx","NY","New York","TRUE","","78881","28443.9","36005","Bronx","{""36005"": ""100""}","Bronx","36005","FALSE","FALSE","America/New_York"
-"10469","40.86862","-73.84813","Bronx","NY","New York","TRUE","","72384","11302.3","36005","Bronx","{""36005"": ""100""}","Bronx","36005","FALSE","FALSE","America/New_York"
-"10470","40.89594","-73.86812","Bronx","NY","New York","TRUE","","15716","4243.6","36005","Bronx","{""36005"": ""100""}","Bronx","36005","FALSE","FALSE","America/New_York"
-"10471","40.89947","-73.9018","Bronx","NY","New York","TRUE","","22422","3366.7","36005","Bronx","{""36005"": ""100""}","Bronx","36005","FALSE","FALSE","America/New_York"
-"10472","40.8295","-73.8694","Bronx","NY","New York","TRUE","","67948","24895.4","36005","Bronx","{""36005"": ""100""}","Bronx","36005","FALSE","FALSE","America/New_York"
-"10473","40.81819","-73.85878","Bronx","NY","New York","TRUE","","59579","10755.2","36005","Bronx","{""36005"": ""100""}","Bronx","36005","FALSE","FALSE","America/New_York"
-"10474","40.81066","-73.8844","Bronx","NY","New York","TRUE","","12179","3074.5","36005","Bronx","{""36005"": ""100""}","Bronx","36005","FALSE","FALSE","America/New_York"
-"10475","40.86953","-73.82532","Bronx","NY","New York","TRUE","","42818","9612.7","36005","Bronx","{""36005"": ""100""}","Bronx","36005","FALSE","FALSE","America/New_York"
-"10501","41.29448","-73.76075","Amawalk","NY","New York","TRUE","","1213","334.7","36119","Westchester","{""36119"": ""100""}","Westchester","36119","FALSE","FALSE","America/New_York"
-"10502","41.01145","-73.84149","Ardsley","NY","New York","TRUE","","5514","1004.1","36119","Westchester","{""36119"": ""100""}","Westchester","36119","FALSE","FALSE","America/New_York"
-"10503","41.02651","-73.8752","Ardsley On Hudson","NY","New York","TRUE","","153","3974.3","36119","Westchester","{""36119"": ""100""}","Westchester","36119","FALSE","FALSE","America/New_York"
-"10504","41.13121","-73.70587","Armonk","NY","New York","TRUE","","8196","193.7","36119","Westchester","{""36119"": ""100""}","Westchester","36119","FALSE","FALSE","America/New_York"
-"10505","41.3421","-73.74565","Baldwin Place","NY","New York","TRUE","","1089","644.9","36119","Westchester","{""36119"": ""100""}","Westchester","36119","FALSE","FALSE","America/New_York"
-"10506","41.18883","-73.63393","Bedford","NY","New York","TRUE","","5699","134.6","36119","Westchester","{""36119"": ""100""}","Westchester","36119","FALSE","FALSE","America/New_York"
-"10507","41.2284","-73.68628","Bedford Hills","NY","New York","TRUE","","7134","376.8","36119","Westchester","{""36119"": ""100""}","Westchester","36119","FALSE","FALSE","America/New_York"
-"10509","41.41174","-73.59437","Brewster","NY","New York","TRUE","","19582","209.4","36079","Putnam","{""36079"": ""99.63"", ""36119"": ""0.37""}","Putnam|Westchester","36079|36119","FALSE","FALSE","America/New_York"
-"10510","41.14094","-73.83447","Briarcliff Manor","NY","New York","TRUE","","10438","405.9","36119","Westchester","{""36119"": ""100""}","Westchester","36119","FALSE","FALSE","America/New_York"
-"10511","41.26299","-73.94366","Buchanan","NY","New York","TRUE","","2166","570.1","36119","Westchester","{""36119"": ""100""}","Westchester","36119","FALSE","FALSE","America/New_York"
-"10512","41.44925","-73.71213","Carmel","NY","New York","TRUE","","24672","174.6","36079","Putnam","{""36079"": ""100""}","Putnam","36079","FALSE","FALSE","America/New_York"
-"10514","41.17308","-73.77091","Chappaqua","NY","New York","TRUE","","12667","381.3","36119","Westchester","{""36119"": ""100""}","Westchester","36119","FALSE","FALSE","America/New_York"
-"10516","41.45334","-73.90241","Cold Spring","NY","New York","TRUE","","5375","65.8","36079","Putnam","{""36079"": ""100""}","Putnam","36079","FALSE","FALSE","America/New_York"
-"10517","41.29822","-73.86194","Crompond","NY","New York","TRUE","","459","539.9","36119","Westchester","{""36119"": ""100""}","Westchester","36119","FALSE","FALSE","America/New_York"
-"10518","41.26778","-73.60032","Cross River","NY","New York","TRUE","","1071","120.0","36119","Westchester","{""36119"": ""100""}","Westchester","36119","FALSE","FALSE","America/New_York"
-"10519","41.35021","-73.6557","Croton Falls","NY","New York","TRUE","","289","150.0","36119","Westchester","{""36119"": ""100""}","Westchester","36119","FALSE","FALSE","America/New_York"
-"10520","41.22059","-73.87156","Croton On Hudson","NY","New York","TRUE","","13117","367.9","36119","Westchester","{""36119"": ""100""}","Westchester","36119","FALSE","FALSE","America/New_York"
-"10522","41.01226","-73.86479","Dobbs Ferry","NY","New York","TRUE","","11070","1759.5","36119","Westchester","{""36119"": ""100""}","Westchester","36119","FALSE","FALSE","America/New_York"
-"10523","41.06","-73.81892","Elmsford","NY","New York","TRUE","","9133","975.5","36119","Westchester","{""36119"": ""100""}","Westchester","36119","FALSE","FALSE","America/New_York"
-"10524","41.37063","-73.92197","Garrison","NY","New York","TRUE","","4380","81.3","36079","Putnam","{""36079"": ""100""}","Putnam","36079","FALSE","FALSE","America/New_York"
-"10526","41.29108","-73.66782","Goldens Bridge","NY","New York","TRUE","","1763","206.7","36119","Westchester","{""36119"": ""100""}","Westchester","36119","FALSE","FALSE","America/New_York"
-"10527","41.31915","-73.76447","Granite Springs","NY","New York","TRUE","","925","146.1","36119","Westchester","{""36119"": ""100""}","Westchester","36119","FALSE","FALSE","America/New_York"
-"10528","40.97834","-73.72293","Harrison","NY","New York","TRUE","","13182","1330.1","36119","Westchester","{""36119"": ""100""}","Westchester","36119","FALSE","FALSE","America/New_York"
-"10530","41.02341","-73.8077","Hartsdale","NY","New York","TRUE","","12268","1237.5","36119","Westchester","{""36119"": ""100""}","Westchester","36119","FALSE","FALSE","America/New_York"
-"10532","41.09912","-73.80003","Hawthorne","NY","New York","TRUE","","4952","1005.7","36119","Westchester","{""36119"": ""100""}","Westchester","36119","FALSE","FALSE","America/New_York"
-"10533","41.03836","-73.85569","Irvington","NY","New York","TRUE","","7662","832.1","36119","Westchester","{""36119"": ""100""}","Westchester","36119","FALSE","FALSE","America/New_York"
-"10535","41.33516","-73.79933","Jefferson Valley","NY","New York","TRUE","","390","310.5","36119","Westchester","{""36119"": ""100""}","Westchester","36119","FALSE","FALSE","America/New_York"
-"10536","41.26982","-73.68726","Katonah","NY","New York","TRUE","","10627","160.1","36119","Westchester","{""36119"": ""100""}","Westchester","36119","FALSE","FALSE","America/New_York"
-"10537","41.33785","-73.88514","Lake Peekskill","NY","New York","TRUE","","2441","875.1","36079","Putnam","{""36079"": ""93.71"", ""36119"": ""6.29""}","Putnam|Westchester","36079|36119","FALSE","FALSE","America/New_York"
-"10538","40.938","-73.75667","Larchmont","NY","New York","TRUE","","16302","1751.0","36119","Westchester","{""36119"": ""100""}","Westchester","36119","FALSE","FALSE","America/New_York"
-"10541","41.37973","-73.75123","Mahopac","NY","New York","TRUE","","26321","408.3","36079","Putnam","{""36079"": ""95.43"", ""36119"": ""4.57""}","Putnam|Westchester","36079|36119","FALSE","FALSE","America/New_York"
-"10543","40.95199","-73.73552","Mamaroneck","NY","New York","TRUE","","20951","1980.0","36119","Westchester","{""36119"": ""100""}","Westchester","36119","FALSE","FALSE","America/New_York"
-"10545","41.17861","-73.83549","Maryknoll","NY","New York","TRUE","","128","392.4","36119","Westchester","{""36119"": ""100""}","Westchester","36119","FALSE","FALSE","America/New_York"
-"10546","41.19552","-73.79992","Millwood","NY","New York","TRUE","","1228","422.2","36119","Westchester","{""36119"": ""100""}","Westchester","36119","FALSE","FALSE","America/New_York"
-"10547","41.31169","-73.84622","Mohegan Lake","NY","New York","TRUE","","7690","587.3","36119","Westchester","{""36119"": ""100""}","Westchester","36119","FALSE","FALSE","America/New_York"
-"10548","41.2472","-73.93496","Montrose","NY","New York","TRUE","","3793","625.1","36119","Westchester","{""36119"": ""100""}","Westchester","36119","FALSE","FALSE","America/New_York"
-"10549","41.20069","-73.72098","Mount Kisco","NY","New York","TRUE","","16498","332.0","36119","Westchester","{""36119"": ""100""}","Westchester","36119","FALSE","FALSE","America/New_York"
-"10550","40.90625","-73.83505","Mount Vernon","NY","New York","TRUE","","37429","7282.5","36119","Westchester","{""36119"": ""100""}","Westchester","36119","FALSE","FALSE","America/New_York"
-"10552","40.9238","-73.82509","Mount Vernon","NY","New York","TRUE","","20202","4706.0","36119","Westchester","{""36119"": ""100""}","Westchester","36119","FALSE","FALSE","America/New_York"
-"10553","40.90854","-73.82173","Mount Vernon","NY","New York","TRUE","","10075","5617.6","36119","Westchester","{""36119"": ""100""}","Westchester","36119","FALSE","FALSE","America/New_York"
-"10560","41.33202","-73.60221","North Salem","NY","New York","TRUE","","4792","88.7","36119","Westchester","{""36119"": ""100""}","Westchester","36119","FALSE","FALSE","America/New_York"
-"10562","41.19242","-73.83096","Ossining","NY","New York","TRUE","","31636","885.5","36119","Westchester","{""36119"": ""100""}","Westchester","36119","FALSE","FALSE","America/New_York"
-"10566","41.28919","-73.91845","Peekskill","NY","New York","TRUE","","24010","2120.5","36119","Westchester","{""36119"": ""100""}","Westchester","36119","FALSE","FALSE","America/New_York"
-"10567","41.28896","-73.89799","Cortlandt Manor","NY","New York","TRUE","","20518","357.9","36119","Westchester","{""36119"": ""100""}","Westchester","36119","FALSE","FALSE","America/New_York"
-"10570","41.13006","-73.7872","Pleasantville","NY","New York","TRUE","","12900","764.1","36119","Westchester","{""36119"": ""100""}","Westchester","36119","FALSE","FALSE","America/New_York"
-"10573","41.0168","-73.67728","Port Chester","NY","New York","TRUE","","38816","2736.7","36119","Westchester","{""36119"": ""100""}","Westchester","36119","FALSE","FALSE","America/New_York"
-"10576","41.21336","-73.57373","Pound Ridge","NY","New York","TRUE","","4907","84.2","36119","Westchester","{""36119"": ""100""}","Westchester","36119","FALSE","FALSE","America/New_York"
-"10577","41.03786","-73.71367","Purchase","NY","New York","TRUE","","6356","364.5","36119","Westchester","{""36119"": ""100""}","Westchester","36119","FALSE","FALSE","America/New_York"
-"10578","41.31739","-73.67446","Purdys","NY","New York","TRUE","","801","195.3","36119","Westchester","{""36119"": ""100""}","Westchester","36119","FALSE","FALSE","America/New_York"
-"10579","41.39377","-73.83614","Putnam Valley","NY","New York","TRUE","","8208","96.7","36079","Putnam","{""36079"": ""100""}","Putnam","36079","FALSE","FALSE","America/New_York"
-"10580","40.97889","-73.69306","Rye","NY","New York","TRUE","","17334","788.7","36119","Westchester","{""36119"": ""100""}","Westchester","36119","FALSE","FALSE","America/New_York"
-"10583","40.98924","-73.7931","Scarsdale","NY","New York","TRUE","","40851","1275.8","36119","Westchester","{""36119"": ""100""}","Westchester","36119","FALSE","FALSE","America/New_York"
-"10588","41.33533","-73.82183","Shrub Oak","NY","New York","TRUE","","3087","610.6","36119","Westchester","{""36119"": ""96.41"", ""36079"": ""3.59""}","Westchester|Putnam","36119|36079","FALSE","FALSE","America/New_York"
-"10589","41.32994","-73.69523","Somers","NY","New York","TRUE","","8793","424.6","36119","Westchester","{""36119"": ""100""}","Westchester","36119","FALSE","FALSE","America/New_York"
-"10590","41.25393","-73.53733","South Salem","NY","New York","TRUE","","7078","202.5","36119","Westchester","{""36119"": ""100""}","Westchester","36119","FALSE","FALSE","America/New_York"
-"10591","41.08586","-73.84417","Tarrytown","NY","New York","TRUE","","23044","900.0","36119","Westchester","{""36119"": ""100""}","Westchester","36119","FALSE","FALSE","America/New_York"
-"10594","41.11637","-73.77267","Thornwood","NY","New York","TRUE","","5090","786.3","36119","Westchester","{""36119"": ""100""}","Westchester","36119","FALSE","FALSE","America/New_York"
-"10595","41.08646","-73.78201","Valhalla","NY","New York","TRUE","","8473","550.0","36119","Westchester","{""36119"": ""100""}","Westchester","36119","FALSE","FALSE","America/New_York"
-"10596","41.25608","-73.95911","Verplanck","NY","New York","TRUE","","1242","771.5","36119","Westchester","{""36119"": ""100""}","Westchester","36119","FALSE","FALSE","America/New_York"
-"10597","41.29406","-73.59682","Waccabuc","NY","New York","TRUE","","853","98.6","36119","Westchester","{""36119"": ""100""}","Westchester","36119","FALSE","FALSE","America/New_York"
-"10598","41.2819","-73.79328","Yorktown Heights","NY","New York","TRUE","","29320","426.9","36119","Westchester","{""36119"": ""100""}","Westchester","36119","FALSE","FALSE","America/New_York"
-"10601","41.03295","-73.76504","White Plains","NY","New York","TRUE","","10614","6462.7","36119","Westchester","{""36119"": ""100""}","Westchester","36119","FALSE","FALSE","America/New_York"
-"10603","41.05456","-73.77939","White Plains","NY","New York","TRUE","","17866","2096.3","36119","Westchester","{""36119"": ""100""}","Westchester","36119","FALSE","FALSE","America/New_York"
-"10604","41.05928","-73.73944","West Harrison","NY","New York","TRUE","","11290","641.8","36119","Westchester","{""36119"": ""100""}","Westchester","36119","FALSE","FALSE","America/New_York"
-"10605","41.00919","-73.74605","White Plains","NY","New York","TRUE","","19195","1458.6","36119","Westchester","{""36119"": ""100""}","Westchester","36119","FALSE","FALSE","America/New_York"
-"10606","41.02045","-73.77572","White Plains","NY","New York","TRUE","","16841","4304.4","36119","Westchester","{""36119"": ""100""}","Westchester","36119","FALSE","FALSE","America/New_York"
-"10607","41.0395","-73.81117","White Plains","NY","New York","TRUE","","7578","1318.5","36119","Westchester","{""36119"": ""100""}","Westchester","36119","FALSE","FALSE","America/New_York"
-"10701","40.94544","-73.88034","Yonkers","NY","New York","TRUE","","61604","5610.0","36119","Westchester","{""36119"": ""100""}","Westchester","36119","FALSE","FALSE","America/New_York"
-"10703","40.95974","-73.88031","Yonkers","NY","New York","TRUE","","22148","4895.2","36119","Westchester","{""36119"": ""100""}","Westchester","36119","FALSE","FALSE","America/New_York"
-"10704","40.91886","-73.86176","Yonkers","NY","New York","TRUE","","31683","4579.4","36119","Westchester","{""36119"": ""100""}","Westchester","36119","FALSE","FALSE","America/New_York"
-"10705","40.91925","-73.88976","Yonkers","NY","New York","TRUE","","39944","6969.9","36119","Westchester","{""36119"": ""100""}","Westchester","36119","FALSE","FALSE","America/New_York"
-"10706","40.98976","-73.86752","Hastings On Hudson","NY","New York","TRUE","","8493","1133.2","36119","Westchester","{""36119"": ""100""}","Westchester","36119","FALSE","FALSE","America/New_York"
-"10707","40.96054","-73.82274","Tuckahoe","NY","New York","TRUE","","10260","3051.4","36119","Westchester","{""36119"": ""100""}","Westchester","36119","FALSE","FALSE","America/New_York"
-"10708","40.93816","-73.83075","Bronxville","NY","New York","TRUE","","21769","2730.5","36119","Westchester","{""36119"": ""100""}","Westchester","36119","FALSE","FALSE","America/New_York"
-"10709","40.95459","-73.80935","Eastchester","NY","New York","TRUE","","9603","2720.9","36119","Westchester","{""36119"": ""100""}","Westchester","36119","FALSE","FALSE","America/New_York"
-"10710","40.96732","-73.84713","Yonkers","NY","New York","TRUE","","25262","2129.5","36119","Westchester","{""36119"": ""100""}","Westchester","36119","FALSE","FALSE","America/New_York"
-"10801","40.91757","-73.78437","New Rochelle","NY","New York","TRUE","","41370","4674.3","36119","Westchester","{""36119"": ""100""}","Westchester","36119","FALSE","FALSE","America/New_York"
-"10803","40.9003","-73.80662","Pelham","NY","New York","TRUE","","12510","2207.2","36119","Westchester","{""36119"": ""100""}","Westchester","36119","FALSE","FALSE","America/New_York"
-"10804","40.94912","-73.78636","New Rochelle","NY","New York","TRUE","","15229","1356.7","36119","Westchester","{""36119"": ""100""}","Westchester","36119","FALSE","FALSE","America/New_York"
-"10805","40.89645","-73.7804","New Rochelle","NY","New York","TRUE","","19096","4272.9","36119","Westchester","{""36119"": ""100""}","Westchester","36119","FALSE","FALSE","America/New_York"
-"10901","41.13876","-74.11615","Suffern","NY","New York","TRUE","","23039","493.9","36087","Rockland","{""36087"": ""100""}","Rockland","36087","FALSE","FALSE","America/New_York"
-"10910","41.27707","-74.13522","Arden","NY","New York","TRUE","","0","0.0","36071","Orange","{""36071"": ""100""}","Orange","36071","FALSE","FALSE","America/New_York"
-"10911","41.31682","-74.0031","Bear Mountain","NY","New York","TRUE","","0","0.0","36071","Orange","{""36071"": ""100""}","Orange","36071","FALSE","FALSE","America/New_York"
-"10913","41.06885","-73.95552","Blauvelt","NY","New York","TRUE","","5075","474.5","36087","Rockland","{""36087"": ""100""}","Rockland","36087","FALSE","FALSE","America/New_York"
-"10914","41.41597","-74.19953","Blooming Grove","NY","New York","TRUE","","297","47.0","36071","Orange","{""36071"": ""100""}","Orange","36071","FALSE","FALSE","America/New_York"
-"10915","41.54231","-74.35823","Bullville","NY","New York","TRUE","","85","227.3","36071","Orange","{""36071"": ""100""}","Orange","36071","FALSE","FALSE","America/New_York"
-"10916","41.44214","-74.2487","Campbell Hall","NY","New York","TRUE","","4352","83.2","36071","Orange","{""36071"": ""100""}","Orange","36071","FALSE","FALSE","America/New_York"
-"10917","41.32443","-74.11697","Central Valley","NY","New York","TRUE","","1766","184.0","36071","Orange","{""36071"": ""100""}","Orange","36071","FALSE","FALSE","America/New_York"
-"10918","41.3477","-74.25871","Chester","NY","New York","TRUE","","12653","148.4","36071","Orange","{""36071"": ""100""}","Orange","36071","FALSE","FALSE","America/New_York"
-"10919","41.52855","-74.38317","Circleville","NY","New York","TRUE","","948","88.9","36071","Orange","{""36071"": ""100""}","Orange","36071","FALSE","FALSE","America/New_York"
-"10920","41.15291","-73.94057","Congers","NY","New York","TRUE","","9075","839.1","36087","Rockland","{""36087"": ""100""}","Rockland","36087","FALSE","FALSE","America/New_York"
-"10921","41.32976","-74.36388","Florida","NY","New York","TRUE","","3809","181.3","36071","Orange","{""36071"": ""100""}","Orange","36071","FALSE","FALSE","America/New_York"
-"10922","41.3336","-73.99473","Fort Montgomery","NY","New York","TRUE","","1637","272.1","36071","Orange","{""36071"": ""100""}","Orange","36071","FALSE","FALSE","America/New_York"
-"10923","41.20235","-73.9998","Garnerville","NY","New York","TRUE","","8627","1692.8","36087","Rockland","{""36087"": ""100""}","Rockland","36087","FALSE","FALSE","America/New_York"
-"10924","41.37946","-74.34667","Goshen","NY","New York","TRUE","","13508","136.0","36071","Orange","{""36071"": ""100""}","Orange","36071","FALSE","FALSE","America/New_York"
-"10925","41.21009","-74.3033","Greenwood Lake","NY","New York","TRUE","","3913","383.6","36071","Orange","{""36071"": ""100""}","Orange","36071","FALSE","FALSE","America/New_York"
-"10926","41.30162","-74.12443","Harriman","NY","New York","TRUE","","3592","267.6","36071","Orange","{""36071"": ""100""}","Orange","36071","FALSE","FALSE","America/New_York"
-"10927","41.19257","-73.96708","Haverstraw","NY","New York","TRUE","","12065","2369.2","36087","Rockland","{""36087"": ""100""}","Rockland","36087","FALSE","FALSE","America/New_York"
-"10928","41.35344","-73.99766","Highland Falls","NY","New York","TRUE","","4145","295.1","36071","Orange","{""36071"": ""100""}","Orange","36071","FALSE","FALSE","America/New_York"
-"10930","41.36485","-74.11535","Highland Mills","NY","New York","TRUE","","9425","262.2","36071","Orange","{""36071"": ""100""}","Orange","36071","FALSE","FALSE","America/New_York"
-"10931","41.14745","-74.16455","Hillburn","NY","New York","TRUE","","938","56.7","36087","Rockland","{""36087"": ""100""}","Rockland","36087","FALSE","FALSE","America/New_York"
-"10932","41.48207","-74.46457","Howells","NY","New York","TRUE","","102","263.9","36071","Orange","{""36071"": ""100""}","Orange","36071","FALSE","FALSE","America/New_York"
-"10933","41.36525","-74.5142","Johnson","NY","New York","TRUE","","563","199.0","36071","Orange","{""36071"": ""100""}","Orange","36071","FALSE","FALSE","America/New_York"
-"10940","41.45119","-74.47016","Middletown","NY","New York","TRUE","","48021","285.7","36071","Orange","{""36071"": ""98.69"", ""36105"": ""1.31""}","Orange|Sullivan","36071|36105","FALSE","FALSE","America/New_York"
-"10941","41.48857","-74.34496","Middletown","NY","New York","TRUE","","13786","166.2","36071","Orange","{""36071"": ""100""}","Orange","36071","FALSE","FALSE","America/New_York"
-"10950","41.31837","-74.19886","Monroe","NY","New York","TRUE","","50979","540.7","36071","Orange","{""36071"": ""100""}","Orange","36071","FALSE","FALSE","America/New_York"
-"10952","41.11363","-74.07943","Monsey","NY","New York","TRUE","","42063","1779.8","36087","Rockland","{""36087"": ""100""}","Rockland","36087","FALSE","FALSE","America/New_York"
-"10953","41.40504","-74.07745","Mountainville","NY","New York","TRUE","","109","38.2","36071","Orange","{""36071"": ""100""}","Orange","36071","FALSE","FALSE","America/New_York"
-"10954","41.09997","-74.01276","Nanuet","NY","New York","TRUE","","22931","1286.9","36087","Rockland","{""36087"": ""100""}","Rockland","36087","FALSE","FALSE","America/New_York"
-"10956","41.1569","-73.99436","New City","NY","New York","TRUE","","32289","770.8","36087","Rockland","{""36087"": ""100""}","Rockland","36087","FALSE","FALSE","America/New_York"
-"10958","41.37337","-74.43044","New Hampton","NY","New York","TRUE","","3319","56.1","36071","Orange","{""36071"": ""100""}","Orange","36071","FALSE","FALSE","America/New_York"
-"10960","41.09198","-73.92584","Nyack","NY","New York","TRUE","","15857","1463.4","36087","Rockland","{""36087"": ""100""}","Rockland","36087","FALSE","FALSE","America/New_York"
-"10962","41.04906","-73.95913","Orangeburg","NY","New York","TRUE","","6034","397.5","36087","Rockland","{""36087"": ""100""}","Rockland","36087","FALSE","FALSE","America/New_York"
-"10963","41.46332","-74.54425","Otisville","NY","New York","TRUE","","4487","136.7","36071","Orange","{""36071"": ""100""}","Orange","36071","FALSE","FALSE","America/New_York"
-"10964","41.01624","-73.91438","Palisades","NY","New York","TRUE","","1224","193.4","36087","Rockland","{""36087"": ""100""}","Rockland","36087","FALSE","FALSE","America/New_York"
-"10965","41.06179","-74.01279","Pearl River","NY","New York","TRUE","","15534","1142.3","36087","Rockland","{""36087"": ""100""}","Rockland","36087","FALSE","FALSE","America/New_York"
-"10968","41.03936","-73.91777","Piermont","NY","New York","TRUE","","2400","1595.4","36087","Rockland","{""36087"": ""100""}","Rockland","36087","FALSE","FALSE","America/New_York"
-"10969","41.29255","-74.48882","Pine Island","NY","New York","TRUE","","1329","46.0","36071","Orange","{""36071"": ""100""}","Orange","36071","FALSE","FALSE","America/New_York"
-"10970","41.18793","-74.07769","Pomona","NY","New York","TRUE","","10082","282.6","36087","Rockland","{""36087"": ""100""}","Rockland","36087","FALSE","FALSE","America/New_York"
-"10973","41.38494","-74.47609","Slate Hill","NY","New York","TRUE","","2479","114.0","36071","Orange","{""36071"": ""100""}","Orange","36071","FALSE","FALSE","America/New_York"
-"10974","41.16798","-74.17825","Sloatsburg","NY","New York","TRUE","","3202","133.2","36087","Rockland","{""36087"": ""100""}","Rockland","36087","FALSE","FALSE","America/New_York"
-"10975","41.25801","-74.17403","Southfields","NY","New York","TRUE","","200","13.1","36071","Orange","{""36071"": ""100""}","Orange","36071","FALSE","FALSE","America/New_York"
-"10976","41.02857","-73.92629","Sparkill","NY","New York","TRUE","","2332","784.2","36087","Rockland","{""36087"": ""100""}","Rockland","36087","FALSE","FALSE","America/New_York"
-"10977","41.11768","-74.0481","Spring Valley","NY","New York","TRUE","","66138","2304.9","36087","Rockland","{""36087"": ""100""}","Rockland","36087","FALSE","FALSE","America/New_York"
-"10979","41.18272","-74.31501","Sterling Forest","NY","New York","TRUE","","162","361.5","36071","Orange","{""36071"": ""100""}","Orange","36071","FALSE","FALSE","America/New_York"
-"10980","41.23609","-74.04651","Stony Point","NY","New York","TRUE","","13942","220.7","36087","Rockland","{""36087"": ""100""}","Rockland","36087","FALSE","FALSE","America/New_York"
-"10983","41.02736","-73.94833","Tappan","NY","New York","TRUE","","5999","1139.0","36087","Rockland","{""36087"": ""100""}","Rockland","36087","FALSE","FALSE","America/New_York"
-"10984","41.20855","-74.01752","Thiells","NY","New York","TRUE","","2789","672.5","36087","Rockland","{""36087"": ""100""}","Rockland","36087","FALSE","FALSE","America/New_York"
-"10985","41.58358","-74.3732","Thompson Ridge","NY","New York","TRUE","","162","243.3","36071","Orange","{""36071"": ""100""}","Orange","36071","FALSE","FALSE","America/New_York"
-"10986","41.28157","-73.99502","Tomkins Cove","NY","New York","TRUE","","1899","67.9","36087","Rockland","{""36087"": ""100""}","Rockland","36087","FALSE","FALSE","America/New_York"
-"10987","41.20392","-74.23211","Tuxedo Park","NY","New York","TRUE","","3408","35.5","36071","Orange","{""36071"": ""100""}","Orange","36071","FALSE","FALSE","America/New_York"
-"10988","41.30156","-74.5428","Unionville","NY","New York","TRUE","","636","79.1","36071","Orange","{""36071"": ""100""}","Orange","36071","FALSE","FALSE","America/New_York"
-"10989","41.12464","-73.93617","Valley Cottage","NY","New York","TRUE","","8689","680.3","36087","Rockland","{""36087"": ""100""}","Rockland","36087","FALSE","FALSE","America/New_York"
-"10990","41.26442","-74.366","Warwick","NY","New York","TRUE","","20307","128.9","36071","Orange","{""36071"": ""100""}","Orange","36071","FALSE","FALSE","America/New_York"
-"10992","41.42549","-74.16594","Washingtonville","NY","New York","TRUE","","9360","325.8","36071","Orange","{""36071"": ""100""}","Orange","36071","FALSE","FALSE","America/New_York"
-"10993","41.21013","-73.97552","West Haverstraw","NY","New York","TRUE","","4803","1603.3","36087","Rockland","{""36087"": ""100""}","Rockland","36087","FALSE","FALSE","America/New_York"
-"10994","41.09751","-73.97262","West Nyack","NY","New York","TRUE","","7396","467.6","36087","Rockland","{""36087"": ""100""}","Rockland","36087","FALSE","FALSE","America/New_York"
-"10996","41.38975","-73.97266","West Point","NY","New York","TRUE","","6383","759.7","36071","Orange","{""36071"": ""100""}","Orange","36071","FALSE","FALSE","America/New_York"
-"10998","41.33514","-74.53885","Westtown","NY","New York","TRUE","","3281","67.9","36071","Orange","{""36071"": ""100""}","Orange","36071","FALSE","FALSE","America/New_York"
-"11001","40.72353","-73.70457","Floral Park","NY","New York","TRUE","","28021","4851.6","36059","Nassau","{""36059"": ""84.29"", ""36081"": ""15.71""}","Nassau|Queens","36059|36081","FALSE","FALSE","America/New_York"
-"11003","40.70134","-73.70792","Elmont","NY","New York","TRUE","","44572","4144.6","36059","Nassau","{""36059"": ""99.62"", ""36081"": ""0.38""}","Nassau|Queens","36059|36081","FALSE","FALSE","America/New_York"
-"11004","40.74628","-73.71148","Glen Oaks","NY","New York","TRUE","","15098","6139.6","36081","Queens","{""36081"": ""100""}","Queens","36081","FALSE","FALSE","America/New_York"
-"11005","40.75663","-73.71423","Floral Park","NY","New York","TRUE","","1759","3702.0","36081","Queens","{""36081"": ""100""}","Queens","36081","FALSE","FALSE","America/New_York"
-"11010","40.7006","-73.675","Franklin Square","NY","New York","TRUE","","24752","4023.2","36059","Nassau","{""36059"": ""100""}","Nassau","36059","FALSE","FALSE","America/New_York"
-"11020","40.77106","-73.71278","Great Neck","NY","New York","TRUE","","5774","1135.0","36059","Nassau","{""36059"": ""100""}","Nassau","36059","FALSE","FALSE","America/New_York"
-"11021","40.78645","-73.72899","Great Neck","NY","New York","TRUE","","18245","3017.7","36059","Nassau","{""36059"": ""100""}","Nassau","36059","FALSE","FALSE","America/New_York"
-"11023","40.7991","-73.73351","Great Neck","NY","New York","TRUE","","9301","2168.4","36059","Nassau","{""36059"": ""100""}","Nassau","36059","FALSE","FALSE","America/New_York"
-"11024","40.81632","-73.74172","Great Neck","NY","New York","TRUE","","7786","853.1","36059","Nassau","{""36059"": ""100""}","Nassau","36059","FALSE","FALSE","America/New_York"
-"11030","40.79338","-73.68887","Manhasset","NY","New York","TRUE","","18578","1073.3","36059","Nassau","{""36059"": ""100""}","Nassau","36059","FALSE","FALSE","America/New_York"
-"11040","40.7456","-73.67978","New Hyde Park","NY","New York","TRUE","","41592","3355.2","36059","Nassau","{""36059"": ""94.67"", ""36081"": ""5.33""}","Nassau|Queens","36059|36081","FALSE","FALSE","America/New_York"
-"11042","40.75848","-73.6973","New Hyde Park","NY","New York","TRUE","","506","332.4","36059","Nassau","{""36059"": ""100""}","Nassau","36059","FALSE","FALSE","America/New_York"
-"11050","40.83849","-73.69071","Port Washington","NY","New York","TRUE","","30357","1173.3","36059","Nassau","{""36059"": ""100""}","Nassau","36059","FALSE","FALSE","America/New_York"
-"11096","40.62118","-73.75303","Inwood","NY","New York","TRUE","","8362","2613.6","36059","Nassau","{""36059"": ""100""}","Nassau","36059","FALSE","FALSE","America/New_York"
-"11101","40.74671","-73.93893","Long Island City","NY","New York","TRUE","","31366","4651.5","36081","Queens","{""36081"": ""100""}","Queens","36081","FALSE","FALSE","America/New_York"
-"11102","40.77238","-73.92611","Astoria","NY","New York","TRUE","","29747","14564.2","36081","Queens","{""36081"": ""100""}","Queens","36081","FALSE","FALSE","America/New_York"
-"11103","40.76266","-73.91349","Astoria","NY","New York","TRUE","","35995","19533.1","36081","Queens","{""36081"": ""100""}","Queens","36081","FALSE","FALSE","America/New_York"
-"11104","40.7446","-73.92027","Sunnyside","NY","New York","TRUE","","25114","24986.3","36081","Queens","{""36081"": ""100""}","Queens","36081","FALSE","FALSE","America/New_York"
-"11105","40.77887","-73.90622","Astoria","NY","New York","TRUE","","36983","8488.3","36081","Queens","{""36081"": ""100""}","Queens","36081","FALSE","FALSE","America/New_York"
-"11106","40.76172","-73.93183","Astoria","NY","New York","TRUE","","37690","17023.0","36081","Queens","{""36081"": ""100""}","Queens","36081","FALSE","FALSE","America/New_York"
-"11109","40.74589","-73.95751","Long Island City","NY","New York","TRUE","","5980","46394.4","36081","Queens","{""36081"": ""100""}","Queens","36081","FALSE","FALSE","America/New_York"
-"11201","40.69463","-73.98972","Brooklyn","NY","New York","TRUE","","63378","17389.1","36047","Kings","{""36047"": ""100""}","Kings","36047","FALSE","FALSE","America/New_York"
-"11203","40.64955","-73.93444","Brooklyn","NY","New York","TRUE","","76085","13695.2","36047","Kings","{""36047"": ""100""}","Kings","36047","FALSE","FALSE","America/New_York"
-"11204","40.61871","-73.98492","Brooklyn","NY","New York","TRUE","","76395","18573.3","36047","Kings","{""36047"": ""100""}","Kings","36047","FALSE","FALSE","America/New_York"
-"11205","40.69468","-73.96613","Brooklyn","NY","New York","TRUE","","46843","19140.2","36047","Kings","{""36047"": ""100""}","Kings","36047","FALSE","FALSE","America/New_York"
-"11206","40.70187","-73.94235","Brooklyn","NY","New York","TRUE","","88422","23799.9","36047","Kings","{""36047"": ""100""}","Kings","36047","FALSE","FALSE","America/New_York"
-"11207","40.67073","-73.89429","Brooklyn","NY","New York","TRUE","","91083","13161.5","36047","Kings","{""36047"": ""100""}","Kings","36047","FALSE","FALSE","America/New_York"
-"11208","40.66855","-73.87103","Brooklyn","NY","New York","TRUE","","101313","10934.1","36047","Kings","{""36047"": ""100""}","Kings","36047","FALSE","FALSE","America/New_York"
-"11209","40.62194","-74.03009","Brooklyn","NY","New York","TRUE","","67782","12332.2","36047","Kings","{""36047"": ""100""}","Kings","36047","FALSE","FALSE","America/New_York"
-"11210","40.62821","-73.94627","Brooklyn","NY","New York","TRUE","","64665","15208.5","36047","Kings","{""36047"": ""100""}","Kings","36047","FALSE","FALSE","America/New_York"
-"11211","40.71244","-73.95299","Brooklyn","NY","New York","TRUE","","103123","17219.3","36047","Kings","{""36047"": ""100""}","Kings","36047","FALSE","FALSE","America/New_York"
-"11212","40.66293","-73.91303","Brooklyn","NY","New York","TRUE","","75605","18970.3","36047","Kings","{""36047"": ""100""}","Kings","36047","FALSE","FALSE","America/New_York"
-"11213","40.67111","-73.9363","Brooklyn","NY","New York","TRUE","","67056","23744.0","36047","Kings","{""36047"": ""100""}","Kings","36047","FALSE","FALSE","America/New_York"
-"11214","40.59866","-73.99636","Brooklyn","NY","New York","TRUE","","92644","16492.0","36047","Kings","{""36047"": ""100""}","Kings","36047","FALSE","FALSE","America/New_York"
-"11215","40.6626","-73.98678","Brooklyn","NY","New York","TRUE","","69873","12404.0","36047","Kings","{""36047"": ""100""}","Kings","36047","FALSE","FALSE","America/New_York"
-"11216","40.68075","-73.94937","Brooklyn","NY","New York","TRUE","","57786","23866.7","36047","Kings","{""36047"": ""100""}","Kings","36047","FALSE","FALSE","America/New_York"
-"11217","40.68259","-73.97928","Brooklyn","NY","New York","TRUE","","41813","21526.0","36047","Kings","{""36047"": ""100""}","Kings","36047","FALSE","FALSE","America/New_York"
-"11218","40.64346","-73.97611","Brooklyn","NY","New York","TRUE","","72413","19572.7","36047","Kings","{""36047"": ""100""}","Kings","36047","FALSE","FALSE","America/New_York"
-"11219","40.63267","-73.99669","Brooklyn","NY","New York","TRUE","","89371","23282.7","36047","Kings","{""36047"": ""100""}","Kings","36047","FALSE","FALSE","America/New_York"
-"11220","40.64115","-74.01651","Brooklyn","NY","New York","TRUE","","93170","20614.8","36047","Kings","{""36047"": ""100""}","Kings","36047","FALSE","FALSE","America/New_York"
-"11221","40.69136","-73.92787","Brooklyn","NY","New York","TRUE","","83322","23256.1","36047","Kings","{""36047"": ""100""}","Kings","36047","FALSE","FALSE","America/New_York"
-"11222","40.72858","-73.94774","Brooklyn","NY","New York","TRUE","","36872","9276.7","36047","Kings","{""36047"": ""100""}","Kings","36047","FALSE","FALSE","America/New_York"
-"11223","40.59715","-73.97359","Brooklyn","NY","New York","TRUE","","81388","15153.9","36047","Kings","{""36047"": ""100""}","Kings","36047","FALSE","FALSE","America/New_York"
-"11224","40.57665","-73.98873","Brooklyn","NY","New York","TRUE","","45795","11148.6","36047","Kings","{""36047"": ""100""}","Kings","36047","FALSE","FALSE","America/New_York"
-"11225","40.66304","-73.95431","Brooklyn","NY","New York","TRUE","","56859","24837.3","36047","Kings","{""36047"": ""100""}","Kings","36047","FALSE","FALSE","America/New_York"
-"11226","40.64639","-73.9568","Brooklyn","NY","New York","TRUE","","99558","29812.3","36047","Kings","{""36047"": ""100""}","Kings","36047","FALSE","FALSE","America/New_York"
-"11228","40.61679","-74.013","Brooklyn","NY","New York","TRUE","","44348","11628.6","36047","Kings","{""36047"": ""100""}","Kings","36047","FALSE","FALSE","America/New_York"
-"11229","40.60083","-73.94401","Brooklyn","NY","New York","TRUE","","83119","14862.2","36047","Kings","{""36047"": ""100""}","Kings","36047","FALSE","FALSE","America/New_York"
-"11230","40.62214","-73.96506","Brooklyn","NY","New York","TRUE","","86139","18069.0","36047","Kings","{""36047"": ""100""}","Kings","36047","FALSE","FALSE","America/New_York"
-"11231","40.67767","-74.00465","Brooklyn","NY","New York","TRUE","","37874","10286.4","36047","Kings","{""36047"": ""100""}","Kings","36047","FALSE","FALSE","America/New_York"
-"11232","40.65632","-74.00563","Brooklyn","NY","New York","TRUE","","26430","8567.8","36047","Kings","{""36047"": ""100""}","Kings","36047","FALSE","FALSE","America/New_York"
-"11233","40.6783","-73.91995","Brooklyn","NY","New York","TRUE","","79439","22739.5","36047","Kings","{""36047"": ""100""}","Kings","36047","FALSE","FALSE","America/New_York"
-"11234","40.60602","-73.91071","Brooklyn","NY","New York","TRUE","","93534","4873.7","36047","Kings","{""36047"": ""100""}","Kings","36047","FALSE","FALSE","America/New_York"
-"11235","40.58402","-73.9488","Brooklyn","NY","New York","TRUE","","78775","13552.3","36047","Kings","{""36047"": ""100""}","Kings","36047","FALSE","FALSE","America/New_York"
-"11236","40.63958","-73.90107","Brooklyn","NY","New York","TRUE","","100844","10818.5","36047","Kings","{""36047"": ""100""}","Kings","36047","FALSE","FALSE","America/New_York"
-"11237","40.70429","-73.92107","Brooklyn","NY","New York","TRUE","","48876","19182.7","36047","Kings","{""36047"": ""100""}","Kings","36047","FALSE","FALSE","America/New_York"
-"11238","40.67913","-73.96384","Brooklyn","NY","New York","TRUE","","55210","19264.1","36047","Kings","{""36047"": ""100""}","Kings","36047","FALSE","FALSE","America/New_York"
-"11239","40.64844","-73.87969","Brooklyn","NY","New York","TRUE","","12772","7988.9","36047","Kings","{""36047"": ""100""}","Kings","36047","FALSE","FALSE","America/New_York"
-"11351","40.78076","-73.82543","Flushing","NY","New York","TRUE","","0","0.0","36081","Queens","{""36081"": ""0""}","Queens","36081","FALSE","FALSE","America/New_York"
-"11354","40.76863","-73.82739","Flushing","NY","New York","TRUE","","53684","9516.0","36081","Queens","{""36081"": ""100""}","Queens","36081","FALSE","FALSE","America/New_York"
-"11355","40.75148","-73.82092","Flushing","NY","New York","TRUE","","80987","18020.1","36081","Queens","{""36081"": ""100""}","Queens","36081","FALSE","FALSE","America/New_York"
-"11356","40.78497","-73.84165","College Point","NY","New York","TRUE","","23494","5752.6","36081","Queens","{""36081"": ""100""}","Queens","36081","FALSE","FALSE","America/New_York"
-"11357","40.78636","-73.81097","Whitestone","NY","New York","TRUE","","39407","5413.2","36081","Queens","{""36081"": ""100""}","Queens","36081","FALSE","FALSE","America/New_York"
-"11358","40.76044","-73.79632","Flushing","NY","New York","TRUE","","36515","7234.8","36081","Queens","{""36081"": ""100""}","Queens","36081","FALSE","FALSE","America/New_York"
-"11359","40.79142","-73.77665","Bayside","NY","New York","TRUE","","0","0.0","36081","Queens","{""36081"": ""0""}","Queens","36081","FALSE","FALSE","America/New_York"
-"11360","40.78039","-73.78148","Bayside","NY","New York","TRUE","","18954","5251.8","36081","Queens","{""36081"": ""100""}","Queens","36081","FALSE","FALSE","America/New_York"
-"11361","40.76383","-73.77237","Bayside","NY","New York","TRUE","","27201","5948.6","36081","Queens","{""36081"": ""100""}","Queens","36081","FALSE","FALSE","America/New_York"
-"11362","40.7565","-73.73686","Little Neck","NY","New York","TRUE","","18343","2798.6","36081","Queens","{""36081"": ""100""}","Queens","36081","FALSE","FALSE","America/New_York"
-"11363","40.77268","-73.74671","Little Neck","NY","New York","TRUE","","7096","3185.1","36081","Queens","{""36081"": ""100""}","Queens","36081","FALSE","FALSE","America/New_York"
-"11364","40.74532","-73.76068","Oakland Gardens","NY","New York","TRUE","","36215","5666.4","36081","Queens","{""36081"": ""100""}","Queens","36081","FALSE","FALSE","America/New_York"
-"11365","40.73976","-73.79486","Fresh Meadows","NY","New York","TRUE","","44738","6912.8","36081","Queens","{""36081"": ""100""}","Queens","36081","FALSE","FALSE","America/New_York"
-"11366","40.72817","-73.78491","Fresh Meadows","NY","New York","TRUE","","14360","5072.6","36081","Queens","{""36081"": ""100""}","Queens","36081","FALSE","FALSE","America/New_York"
-"11367","40.73041","-73.82623","Flushing","NY","New York","TRUE","","41207","6754.8","36081","Queens","{""36081"": ""100""}","Queens","36081","FALSE","FALSE","America/New_York"
-"11368","40.74959","-73.8526","Corona","NY","New York","TRUE","","112088","16458.1","36081","Queens","{""36081"": ""100""}","Queens","36081","FALSE","FALSE","America/New_York"
-"11369","40.76339","-73.87238","East Elmhurst","NY","New York","TRUE","","31481","11147.9","36081","Queens","{""36081"": ""100""}","Queens","36081","FALSE","FALSE","America/New_York"
-"11370","40.77568","-73.88738","East Elmhurst","NY","New York","TRUE","","31580","8181.6","36081","Queens","{""36081"": ""72.05"", ""36005"": ""27.95""}","Queens|Bronx","36081|36005","FALSE","FALSE","America/New_York"
-"11371","40.77445","-73.87332","Flushing","NY","New York","TRUE","","0","0.0","36081","Queens","{""36081"": ""0""}","Queens","36081","FALSE","FALSE","America/New_York"
-"11372","40.75166","-73.88361","Jackson Heights","NY","New York","TRUE","","62854","32758.7","36081","Queens","{""36081"": ""100""}","Queens","36081","FALSE","FALSE","America/New_York"
-"11373","40.73886","-73.87858","Elmhurst","NY","New York","TRUE","","94437","23954.7","36081","Queens","{""36081"": ""100""}","Queens","36081","FALSE","FALSE","America/New_York"
-"11374","40.72652","-73.8615","Rego Park","NY","New York","TRUE","","43507","17812.4","36081","Queens","{""36081"": ""100""}","Queens","36081","FALSE","FALSE","America/New_York"
-"11375","40.72092","-73.84611","Forest Hills","NY","New York","TRUE","","73034","14175.6","36081","Queens","{""36081"": ""100""}","Queens","36081","FALSE","FALSE","America/New_York"
-"11377","40.74482","-73.90522","Woodside","NY","New York","TRUE","","83825","12758.9","36081","Queens","{""36081"": ""100""}","Queens","36081","FALSE","FALSE","America/New_York"
-"11378","40.72467","-73.90954","Maspeth","NY","New York","TRUE","","38524","5772.2","36081","Queens","{""36081"": ""100""}","Queens","36081","FALSE","FALSE","America/New_York"
-"11379","40.71676","-73.87953","Middle Village","NY","New York","TRUE","","37991","7069.8","36081","Queens","{""36081"": ""100""}","Queens","36081","FALSE","FALSE","America/New_York"
-"11385","40.70102","-73.89013","Ridgewood","NY","New York","TRUE","","107796","11510.4","36081","Queens","{""36081"": ""100""}","Queens","36081","FALSE","FALSE","America/New_York"
-"11411","40.694","-73.73619","Cambria Heights","NY","New York","TRUE","","20719","6848.9","36081","Queens","{""36081"": ""100""}","Queens","36081","FALSE","FALSE","America/New_York"
-"11412","40.69811","-73.75896","Saint Albans","NY","New York","TRUE","","37857","8874.3","36081","Queens","{""36081"": ""100""}","Queens","36081","FALSE","FALSE","America/New_York"
-"11413","40.66992","-73.7509","Springfield Gardens","NY","New York","TRUE","","41650","5180.5","36081","Queens","{""36081"": ""100""}","Queens","36081","FALSE","FALSE","America/New_York"
-"11414","40.65809","-73.84495","Howard Beach","NY","New York","TRUE","","28313","4728.1","36081","Queens","{""36081"": ""100""}","Queens","36081","FALSE","FALSE","America/New_York"
-"11415","40.70795","-73.82816","Kew Gardens","NY","New York","TRUE","","18891","12887.6","36081","Queens","{""36081"": ""100""}","Queens","36081","FALSE","FALSE","America/New_York"
-"11416","40.68458","-73.8496","Ozone Park","NY","New York","TRUE","","26744","15604.8","36081","Queens","{""36081"": ""100""}","Queens","36081","FALSE","FALSE","America/New_York"
-"11417","40.67637","-73.84441","Ozone Park","NY","New York","TRUE","","31321","10806.2","36081","Queens","{""36081"": ""100""}","Queens","36081","FALSE","FALSE","America/New_York"
-"11418","40.70019","-73.83611","Richmond Hill","NY","New York","TRUE","","38405","9088.4","36081","Queens","{""36081"": ""100""}","Queens","36081","FALSE","FALSE","America/New_York"
-"11419","40.68863","-73.82297","South Richmond Hill","NY","New York","TRUE","","48369","16683.0","36081","Queens","{""36081"": ""100""}","Queens","36081","FALSE","FALSE","America/New_York"
-"11420","40.67358","-73.81787","South Ozone Park","NY","New York","TRUE","","47470","8822.6","36081","Queens","{""36081"": ""100""}","Queens","36081","FALSE","FALSE","America/New_York"
-"11421","40.69401","-73.85869","Woodhaven","NY","New York","TRUE","","41251","12345.0","36081","Queens","{""36081"": ""100""}","Queens","36081","FALSE","FALSE","America/New_York"
-"11422","40.66041","-73.73626","Rosedale","NY","New York","TRUE","","32761","6311.1","36081","Queens","{""36081"": ""100""}","Queens","36081","FALSE","FALSE","America/New_York"
-"11423","40.71561","-73.76843","Hollis","NY","New York","TRUE","","30104","8212.3","36081","Queens","{""36081"": ""100""}","Queens","36081","FALSE","FALSE","America/New_York"
-"11424","40.71424","-73.82714","Jamaica","NY","New York","TRUE","","0","0.0","36081","Queens","{""36081"": ""0""}","Queens","36081","FALSE","FALSE","America/New_York"
-"11425","40.60774","-74.02391","Jamaica","NY","New York","TRUE","","0","0.0","36047","Kings","{""36047"": ""0""}","Kings","36047","FALSE","FALSE","America/New_York"
-"11426","40.73646","-73.72237","Bellerose","NY","New York","TRUE","","20524","5873.7","36081","Queens","{""36081"": ""100""}","Queens","36081","FALSE","FALSE","America/New_York"
-"11427","40.73097","-73.74553","Queens Village","NY","New York","TRUE","","24560","5997.9","36081","Queens","{""36081"": ""100""}","Queens","36081","FALSE","FALSE","America/New_York"
-"11428","40.72098","-73.74227","Queens Village","NY","New York","TRUE","","18836","8745.4","36081","Queens","{""36081"": ""100""}","Queens","36081","FALSE","FALSE","America/New_York"
-"11429","40.70978","-73.7387","Queens Village","NY","New York","TRUE","","27454","8192.7","36081","Queens","{""36081"": ""100""}","Queens","36081","FALSE","FALSE","America/New_York"
-"11430","40.6474","-73.78627","Jamaica","NY","New York","TRUE","","206","11.4","36081","Queens","{""36081"": ""100""}","Queens","36081","FALSE","FALSE","America/New_York"
-"11432","40.71529","-73.79306","Jamaica","NY","New York","TRUE","","64299","11550.3","36081","Queens","{""36081"": ""100""}","Queens","36081","FALSE","FALSE","America/New_York"
-"11433","40.69813","-73.78684","Jamaica","NY","New York","TRUE","","37021","9225.6","36081","Queens","{""36081"": ""100""}","Queens","36081","FALSE","FALSE","America/New_York"
-"11434","40.67677","-73.77626","Jamaica","NY","New York","TRUE","","64304","7596.4","36081","Queens","{""36081"": ""100""}","Queens","36081","FALSE","FALSE","America/New_York"
-"11435","40.70138","-73.80968","Jamaica","NY","New York","TRUE","","59605","15055.8","36081","Queens","{""36081"": ""100""}","Queens","36081","FALSE","FALSE","America/New_York"
-"11436","40.67577","-73.79672","Jamaica","NY","New York","TRUE","","19167","9329.6","36081","Queens","{""36081"": ""100""}","Queens","36081","FALSE","FALSE","America/New_York"
-"11451","40.7012","-73.79596","Jamaica","NY","New York","TRUE","","0","0.0","36081","Queens","{""36081"": ""0""}","Queens","36081","FALSE","FALSE","America/New_York"
-"11501","40.74633","-73.63892","Mineola","NY","New York","TRUE","","19621","3696.2","36059","Nassau","{""36059"": ""100""}","Nassau","36059","FALSE","FALSE","America/New_York"
-"11507","40.77091","-73.65235","Albertson","NY","New York","TRUE","","7225","2585.1","36059","Nassau","{""36059"": ""100""}","Nassau","36059","FALSE","FALSE","America/New_York"
-"11509","40.58877","-73.72852","Atlantic Beach","NY","New York","TRUE","","1920","882.0","36059","Nassau","{""36059"": ""100""}","Nassau","36059","FALSE","FALSE","America/New_York"
-"11510","40.65021","-73.60804","Baldwin","NY","New York","TRUE","","33299","3068.2","36059","Nassau","{""36059"": ""100""}","Nassau","36059","FALSE","FALSE","America/New_York"
-"11514","40.74989","-73.61247","Carle Place","NY","New York","TRUE","","4694","2020.3","36059","Nassau","{""36059"": ""100""}","Nassau","36059","FALSE","FALSE","America/New_York"
-"11516","40.62578","-73.72669","Cedarhurst","NY","New York","TRUE","","7372","3255.2","36059","Nassau","{""36059"": ""100""}","Nassau","36059","FALSE","FALSE","America/New_York"
-"11518","40.63759","-73.66678","East Rockaway","NY","New York","TRUE","","9969","2798.0","36059","Nassau","{""36059"": ""100""}","Nassau","36059","FALSE","FALSE","America/New_York"
-"11520","40.65003","-73.58291","Freeport","NY","New York","TRUE","","43438","3343.5","36059","Nassau","{""36059"": ""100""}","Nassau","36059","FALSE","FALSE","America/New_York"
-"11530","40.72737","-73.63725","Garden City","NY","New York","TRUE","","28460","1549.1","36059","Nassau","{""36059"": ""100""}","Nassau","36059","FALSE","FALSE","America/New_York"
-"11542","40.87093","-73.62885","Glen Cove","NY","New York","TRUE","","27893","1616.7","36059","Nassau","{""36059"": ""100""}","Nassau","36059","FALSE","FALSE","America/New_York"
-"11545","40.82705","-73.58903","Glen Head","NY","New York","TRUE","","12604","424.0","36059","Nassau","{""36059"": ""100""}","Nassau","36059","FALSE","FALSE","America/New_York"
-"11547","40.83073","-73.64435","Glenwood Landing","NY","New York","TRUE","","681","604.5","36059","Nassau","{""36059"": ""100""}","Nassau","36059","FALSE","FALSE","America/New_York"
-"11548","40.81464","-73.60681","Greenvale","NY","New York","TRUE","","2922","1232.1","36059","Nassau","{""36059"": ""100""}","Nassau","36059","FALSE","FALSE","America/New_York"
-"11549","40.7173","-73.6028","Hempstead","NY","New York","TRUE","","2803","15296.2","36059","Nassau","{""36059"": ""100""}","Nassau","36059","FALSE","FALSE","America/New_York"
-"11550","40.70171","-73.62007","Hempstead","NY","New York","TRUE","","57639","5224.8","36059","Nassau","{""36059"": ""100""}","Nassau","36059","FALSE","FALSE","America/New_York"
-"11552","40.69233","-73.65129","West Hempstead","NY","New York","TRUE","","24908","2813.7","36059","Nassau","{""36059"": ""100""}","Nassau","36059","FALSE","FALSE","America/New_York"
-"11553","40.70674","-73.59206","Uniondale","NY","New York","TRUE","","26054","2864.2","36059","Nassau","{""36059"": ""100""}","Nassau","36059","FALSE","FALSE","America/New_York"
-"11554","40.71961","-73.56021","East Meadow","NY","New York","TRUE","","38029","2349.5","36059","Nassau","{""36059"": ""100""}","Nassau","36059","FALSE","FALSE","America/New_York"
-"11556","40.71968","-73.58375","Uniondale","NY","New York","TRUE","","0","0.0","36059","Nassau","{""36059"": ""100""}","Nassau","36059","FALSE","FALSE","America/New_York"
-"11557","40.6374","-73.69197","Hewlett","NY","New York","TRUE","","7878","1506.0","36059","Nassau","{""36059"": ""100""}","Nassau","36059","FALSE","FALSE","America/New_York"
-"11558","40.60481","-73.64927","Island Park","NY","New York","TRUE","","8465","2198.0","36059","Nassau","{""36059"": ""100""}","Nassau","36059","FALSE","FALSE","America/New_York"
-"11559","40.60648","-73.71731","Lawrence","NY","New York","TRUE","","8192","758.1","36059","Nassau","{""36059"": ""100""}","Nassau","36059","FALSE","FALSE","America/New_York"
-"11560","40.88062","-73.59021","Locust Valley","NY","New York","TRUE","","6669","343.2","36059","Nassau","{""36059"": ""100""}","Nassau","36059","FALSE","FALSE","America/New_York"
-"11561","40.58937","-73.64791","Long Beach","NY","New York","TRUE","","37726","3732.3","36059","Nassau","{""36059"": ""100""}","Nassau","36059","FALSE","FALSE","America/New_York"
-"11563","40.65726","-73.67368","Lynbrook","NY","New York","TRUE","","21919","3530.5","36059","Nassau","{""36059"": ""100""}","Nassau","36059","FALSE","FALSE","America/New_York"
-"11565","40.67504","-73.67167","Malverne","NY","New York","TRUE","","8560","2960.9","36059","Nassau","{""36059"": ""100""}","Nassau","36059","FALSE","FALSE","America/New_York"
-"11566","40.66312","-73.55412","Merrick","NY","New York","TRUE","","33331","2364.7","36059","Nassau","{""36059"": ""100""}","Nassau","36059","FALSE","FALSE","America/New_York"
-"11568","40.78694","-73.5965","Old Westbury","NY","New York","TRUE","","4548","196.5","36059","Nassau","{""36059"": ""100""}","Nassau","36059","FALSE","FALSE","America/New_York"
-"11569","40.58975","-73.58228","Point Lookout","NY","New York","TRUE","","1117","1105.4","36059","Nassau","{""36059"": ""100""}","Nassau","36059","FALSE","FALSE","America/New_York"
-"11570","40.66573","-73.63851","Rockville Centre","NY","New York","TRUE","","27234","2857.8","36059","Nassau","{""36059"": ""100""}","Nassau","36059","FALSE","FALSE","America/New_York"
-"11572","40.63232","-73.63686","Oceanside","NY","New York","TRUE","","29243","2372.3","36059","Nassau","{""36059"": ""100""}","Nassau","36059","FALSE","FALSE","America/New_York"
-"11575","40.68046","-73.58527","Roosevelt","NY","New York","TRUE","","17180","3725.5","36059","Nassau","{""36059"": ""100""}","Nassau","36059","FALSE","FALSE","America/New_York"
-"11576","40.79841","-73.64767","Roslyn","NY","New York","TRUE","","12374","1050.6","36059","Nassau","{""36059"": ""100""}","Nassau","36059","FALSE","FALSE","America/New_York"
-"11577","40.78326","-73.63883","Roslyn Heights","NY","New York","TRUE","","12513","1585.7","36059","Nassau","{""36059"": ""100""}","Nassau","36059","FALSE","FALSE","America/New_York"
-"11579","40.84404","-73.64415","Sea Cliff","NY","New York","TRUE","","5214","1793.3","36059","Nassau","{""36059"": ""100""}","Nassau","36059","FALSE","FALSE","America/New_York"
-"11580","40.67496","-73.70357","Valley Stream","NY","New York","TRUE","","42990","4256.7","36059","Nassau","{""36059"": ""100""}","Nassau","36059","FALSE","FALSE","America/New_York"
-"11581","40.65154","-73.71648","Valley Stream","NY","New York","TRUE","","21794","3081.7","36059","Nassau","{""36059"": ""100""}","Nassau","36059","FALSE","FALSE","America/New_York"
-"11590","40.75541","-73.57461","Westbury","NY","New York","TRUE","","47245","2736.3","36059","Nassau","{""36059"": ""100""}","Nassau","36059","FALSE","FALSE","America/New_York"
-"11596","40.75971","-73.64236","Williston Park","NY","New York","TRUE","","10347","2997.9","36059","Nassau","{""36059"": ""100""}","Nassau","36059","FALSE","FALSE","America/New_York"
-"11598","40.63093","-73.71164","Woodmere","NY","New York","TRUE","","14066","2725.6","36059","Nassau","{""36059"": ""100""}","Nassau","36059","FALSE","FALSE","America/New_York"
-"11691","40.60138","-73.76103","Far Rockaway","NY","New York","TRUE","","68543","9613.5","36081","Queens","{""36081"": ""100""}","Queens","36081","FALSE","FALSE","America/New_York"
-"11692","40.59369","-73.79231","Arverne","NY","New York","TRUE","","22074","8501.0","36081","Queens","{""36081"": ""100""}","Queens","36081","FALSE","FALSE","America/New_York"
-"11693","40.5965","-73.81676","Far Rockaway","NY","New York","TRUE","","12944","5068.3","36081","Queens","{""36081"": ""100""}","Queens","36081","FALSE","FALSE","America/New_York"
-"11694","40.57775","-73.84386","Rockaway Park","NY","New York","TRUE","","21202","6126.2","36081","Queens","{""36081"": ""100""}","Queens","36081","FALSE","FALSE","America/New_York"
-"11697","40.55951","-73.9066","Breezy Point","NY","New York","TRUE","","3674","546.5","36081","Queens","{""36081"": ""100""}","Queens","36081","FALSE","FALSE","America/New_York"
-"11701","40.68199","-73.41258","Amityville","NY","New York","TRUE","","28363","2345.2","36103","Suffolk","{""36103"": ""100""}","Suffolk","36103","FALSE","FALSE","America/New_York"
-"11702","40.656","-73.31677","Babylon","NY","New York","TRUE","","14127","599.1","36103","Suffolk","{""36103"": ""100""}","Suffolk","36103","FALSE","FALSE","America/New_York"
-"11703","40.73294","-73.32562","North Babylon","NY","New York","TRUE","","16119","1998.6","36103","Suffolk","{""36103"": ""100""}","Suffolk","36103","FALSE","FALSE","America/New_York"
-"11704","40.71694","-73.35898","West Babylon","NY","New York","TRUE","","39981","1913.2","36103","Suffolk","{""36103"": ""100""}","Suffolk","36103","FALSE","FALSE","America/New_York"
-"11705","40.74517","-73.05508","Bayport","NY","New York","TRUE","","7721","836.9","36103","Suffolk","{""36103"": ""100""}","Suffolk","36103","FALSE","FALSE","America/New_York"
-"11706","40.7217","-73.2508","Bay Shore","NY","New York","TRUE","","68401","1549.8","36103","Suffolk","{""36103"": ""100""}","Suffolk","36103","FALSE","FALSE","America/New_York"
-"11709","40.90688","-73.5597","Bayville","NY","New York","TRUE","","6735","1714.5","36059","Nassau","{""36059"": ""100""}","Nassau","36059","FALSE","FALSE","America/New_York"
-"11710","40.67215","-73.53288","Bellmore","NY","New York","TRUE","","34634","2736.7","36059","Nassau","{""36059"": ""100""}","Nassau","36059","FALSE","FALSE","America/New_York"
-"11713","40.77499","-72.94317","Bellport","NY","New York","TRUE","","9295","720.1","36103","Suffolk","{""36103"": ""100""}","Suffolk","36103","FALSE","FALSE","America/New_York"
-"11714","40.74254","-73.48606","Bethpage","NY","New York","TRUE","","22741","2032.5","36059","Nassau","{""36059"": ""100""}","Nassau","36059","FALSE","FALSE","America/New_York"
-"11715","40.75003","-73.03516","Blue Point","NY","New York","TRUE","","4583","1045.3","36103","Suffolk","{""36103"": ""100""}","Suffolk","36103","FALSE","FALSE","America/New_York"
-"11716","40.77126","-73.12695","Bohemia","NY","New York","TRUE","","9781","432.5","36103","Suffolk","{""36103"": ""100""}","Suffolk","36103","FALSE","FALSE","America/New_York"
-"11717","40.78378","-73.25225","Brentwood","NY","New York","TRUE","","63492","2247.5","36103","Suffolk","{""36103"": ""100""}","Suffolk","36103","FALSE","FALSE","America/New_York"
-"11718","40.71886","-73.26388","Brightwaters","NY","New York","TRUE","","3075","1271.8","36103","Suffolk","{""36103"": ""100""}","Suffolk","36103","FALSE","FALSE","America/New_York"
-"11719","40.78075","-72.91071","Brookhaven","NY","New York","TRUE","","3447","219.9","36103","Suffolk","{""36103"": ""100""}","Suffolk","36103","FALSE","FALSE","America/New_York"
-"11720","40.87035","-73.08212","Centereach","NY","New York","TRUE","","28454","1345.2","36103","Suffolk","{""36103"": ""100""}","Suffolk","36103","FALSE","FALSE","America/New_York"
-"11721","40.89359","-73.36994","Centerport","NY","New York","TRUE","","6288","969.8","36103","Suffolk","{""36103"": ""100""}","Suffolk","36103","FALSE","FALSE","America/New_York"
-"11722","40.78306","-73.19491","Central Islip","NY","New York","TRUE","","31878","1688.7","36103","Suffolk","{""36103"": ""100""}","Suffolk","36103","FALSE","FALSE","America/New_York"
-"11724","40.86532","-73.45289","Cold Spring Harbor","NY","New York","TRUE","","3175","317.6","36103","Suffolk","{""36103"": ""100""}","Suffolk","36103","FALSE","FALSE","America/New_York"
-"11725","40.84045","-73.2808","Commack","NY","New York","TRUE","","29396","1164.5","36103","Suffolk","{""36103"": ""100""}","Suffolk","36103","FALSE","FALSE","America/New_York"
-"11726","40.67885","-73.39564","Copiague","NY","New York","TRUE","","19481","2978.2","36103","Suffolk","{""36103"": ""100""}","Suffolk","36103","FALSE","FALSE","America/New_York"
-"11727","40.88206","-73.00402","Coram","NY","New York","TRUE","","29736","1260.3","36103","Suffolk","{""36103"": ""100""}","Suffolk","36103","FALSE","FALSE","America/New_York"
-"11729","40.76279","-73.32177","Deer Park","NY","New York","TRUE","","27252","1679.4","36103","Suffolk","{""36103"": ""100""}","Suffolk","36103","FALSE","FALSE","America/New_York"
-"11730","40.71749","-73.17397","East Islip","NY","New York","TRUE","","13663","689.7","36103","Suffolk","{""36103"": ""100""}","Suffolk","36103","FALSE","FALSE","America/New_York"
-"11731","40.86267","-73.31691","East Northport","NY","New York","TRUE","","30436","1401.2","36103","Suffolk","{""36103"": ""100""}","Suffolk","36103","FALSE","FALSE","America/New_York"
-"11732","40.84467","-73.53674","East Norwich","NY","New York","TRUE","","3751","946.9","36059","Nassau","{""36059"": ""100""}","Nassau","36059","FALSE","FALSE","America/New_York"
-"11733","40.93757","-73.10591","East Setauket","NY","New York","TRUE","","16363","535.2","36103","Suffolk","{""36103"": ""100""}","Suffolk","36103","FALSE","FALSE","America/New_York"
-"11735","40.73159","-73.4327","Farmingdale","NY","New York","TRUE","","33893","1250.1","36059","Nassau","{""36059"": ""79.8"", ""36103"": ""20.2""}","Nassau|Suffolk","36059|36103","FALSE","FALSE","America/New_York"
-"11738","40.83816","-73.03822","Farmingville","NY","New York","TRUE","","17972","1301.2","36103","Suffolk","{""36103"": ""100""}","Suffolk","36103","FALSE","FALSE","America/New_York"
-"11739","40.72955","-73.16056","Great River","NY","New York","TRUE","","916","440.1","36103","Suffolk","{""36103"": ""100""}","Suffolk","36103","FALSE","FALSE","America/New_York"
-"11740","40.86529","-73.36132","Greenlawn","NY","New York","TRUE","","9693","1009.2","36103","Suffolk","{""36103"": ""100""}","Suffolk","36103","FALSE","FALSE","America/New_York"
-"11741","40.79489","-73.07032","Holbrook","NY","New York","TRUE","","26651","1376.6","36103","Suffolk","{""36103"": ""100""}","Suffolk","36103","FALSE","FALSE","America/New_York"
-"11742","40.81006","-73.04143","Holtsville","NY","New York","TRUE","","12438","960.7","36103","Suffolk","{""36103"": ""100""}","Suffolk","36103","FALSE","FALSE","America/New_York"
-"11743","40.88124","-73.42679","Huntington","NY","New York","TRUE","","41878","637.4","36103","Suffolk","{""36103"": ""100""}","Suffolk","36103","FALSE","FALSE","America/New_York"
-"11746","40.81438","-73.36095","Huntington Station","NY","New York","TRUE","","67863","1096.9","36103","Suffolk","{""36103"": ""100""}","Suffolk","36103","FALSE","FALSE","America/New_York"
-"11747","40.78412","-73.40975","Melville","NY","New York","TRUE","","18288","536.8","36103","Suffolk","{""36103"": ""100""}","Suffolk","36103","FALSE","FALSE","America/New_York"
-"11749","40.80676","-73.17087","Islandia","NY","New York","TRUE","","3341","591.3","36103","Suffolk","{""36103"": ""100""}","Suffolk","36103","FALSE","FALSE","America/New_York"
-"11751","40.72998","-73.21426","Islip","NY","New York","TRUE","","14314","1374.3","36103","Suffolk","{""36103"": ""100""}","Suffolk","36103","FALSE","FALSE","America/New_York"
-"11752","40.75671","-73.17481","Islip Terrace","NY","New York","TRUE","","9656","1004.1","36103","Suffolk","{""36103"": ""100""}","Suffolk","36103","FALSE","FALSE","America/New_York"
-"11753","40.78997","-73.54008","Jericho","NY","New York","TRUE","","12857","1274.8","36059","Nassau","{""36059"": ""100""}","Nassau","36059","FALSE","FALSE","America/New_York"
-"11754","40.88768","-73.24739","Kings Park","NY","New York","TRUE","","17946","939.5","36103","Suffolk","{""36103"": ""100""}","Suffolk","36103","FALSE","FALSE","America/New_York"
-"11755","40.85821","-73.11724","Lake Grove","NY","New York","TRUE","","12598","1498.4","36103","Suffolk","{""36103"": ""100""}","Suffolk","36103","FALSE","FALSE","America/New_York"
-"11756","40.72543","-73.51654","Levittown","NY","New York","TRUE","","43446","3037.2","36059","Nassau","{""36059"": ""100""}","Nassau","36059","FALSE","FALSE","America/New_York"
-"11757","40.68875","-73.37348","Lindenhurst","NY","New York","TRUE","","44368","2532.7","36103","Suffolk","{""36103"": ""100""}","Suffolk","36103","FALSE","FALSE","America/New_York"
-"11758","40.66827","-73.45849","Massapequa","NY","New York","TRUE","","52783","1854.5","36059","Nassau","{""36059"": ""100""}","Nassau","36059","FALSE","FALSE","America/New_York"
-"11762","40.68203","-73.44669","Massapequa Park","NY","New York","TRUE","","22358","2821.1","36059","Nassau","{""36059"": ""100""}","Nassau","36059","FALSE","FALSE","America/New_York"
-"11763","40.82582","-72.9833","Medford","NY","New York","TRUE","","28579","797.7","36103","Suffolk","{""36103"": ""100""}","Suffolk","36103","FALSE","FALSE","America/New_York"
-"11764","40.93594","-72.97548","Miller Place","NY","New York","TRUE","","12981","546.1","36103","Suffolk","{""36103"": ""100""}","Suffolk","36103","FALSE","FALSE","America/New_York"
-"11765","40.88328","-73.55795","Mill Neck","NY","New York","TRUE","","782","123.4","36059","Nassau","{""36059"": ""100""}","Nassau","36059","FALSE","FALSE","America/New_York"
-"11766","40.93582","-73.0165","Mount Sinai","NY","New York","TRUE","","11720","734.1","36103","Suffolk","{""36103"": ""100""}","Suffolk","36103","FALSE","FALSE","America/New_York"
-"11767","40.84386","-73.14476","Nesconset","NY","New York","TRUE","","14952","1381.2","36103","Suffolk","{""36103"": ""100""}","Suffolk","36103","FALSE","FALSE","America/New_York"
-"11768","40.91062","-73.32621","Northport","NY","New York","TRUE","","21113","539.4","36103","Suffolk","{""36103"": ""100""}","Suffolk","36103","FALSE","FALSE","America/New_York"
-"11769","40.73619","-73.1309","Oakdale","NY","New York","TRUE","","8340","760.0","36103","Suffolk","{""36103"": ""100""}","Suffolk","36103","FALSE","FALSE","America/New_York"
-"11770","40.64579","-73.15658","Ocean Beach","NY","New York","TRUE","","56","49.6","36103","Suffolk","{""36103"": ""100""}","Suffolk","36103","FALSE","FALSE","America/New_York"
-"11771","40.86682","-73.52593","Oyster Bay","NY","New York","TRUE","","9150","330.1","36059","Nassau","{""36059"": ""100""}","Nassau","36059","FALSE","FALSE","America/New_York"
-"11772","40.76096","-72.9871","Patchogue","NY","New York","TRUE","","45991","1098.1","36103","Suffolk","{""36103"": ""100""}","Suffolk","36103","FALSE","FALSE","America/New_York"
-"11776","40.91361","-73.04636","Port Jefferson Station","NY","New York","TRUE","","24950","1398.8","36103","Suffolk","{""36103"": ""100""}","Suffolk","36103","FALSE","FALSE","America/New_York"
-"11777","40.95169","-73.06468","Port Jefferson","NY","New York","TRUE","","9007","796.0","36103","Suffolk","{""36103"": ""100""}","Suffolk","36103","FALSE","FALSE","America/New_York"
-"11778","40.9433","-72.93","Rocky Point","NY","New York","TRUE","","12081","681.6","36103","Suffolk","{""36103"": ""100""}","Suffolk","36103","FALSE","FALSE","America/New_York"
-"11779","40.81277","-73.11536","Ronkonkoma","NY","New York","TRUE","","37837","1164.8","36103","Suffolk","{""36103"": ""100""}","Suffolk","36103","FALSE","FALSE","America/New_York"
-"11780","40.89219","-73.16952","Saint James","NY","New York","TRUE","","16099","538.1","36103","Suffolk","{""36103"": ""100""}","Suffolk","36103","FALSE","FALSE","America/New_York"
-"11782","40.73748","-73.08116","Sayville","NY","New York","TRUE","","14965","1041.2","36103","Suffolk","{""36103"": ""100""}","Suffolk","36103","FALSE","FALSE","America/New_York"
-"11783","40.67767","-73.49062","Seaford","NY","New York","TRUE","","21280","2317.0","36059","Nassau","{""36059"": ""100""}","Nassau","36059","FALSE","FALSE","America/New_York"
-"11784","40.86891","-73.04118","Selden","NY","New York","TRUE","","25337","1790.0","36103","Suffolk","{""36103"": ""100""}","Suffolk","36103","FALSE","FALSE","America/New_York"
-"11786","40.94462","-72.88515","Shoreham","NY","New York","TRUE","","6359","426.6","36103","Suffolk","{""36103"": ""100""}","Suffolk","36103","FALSE","FALSE","America/New_York"
-"11787","40.85339","-73.21033","Smithtown","NY","New York","TRUE","","34376","883.7","36103","Suffolk","{""36103"": ""100""}","Suffolk","36103","FALSE","FALSE","America/New_York"
-"11788","40.81808","-73.21328","Hauppauge","NY","New York","TRUE","","16583","744.5","36103","Suffolk","{""36103"": ""100""}","Suffolk","36103","FALSE","FALSE","America/New_York"
-"11789","40.95756","-72.97214","Sound Beach","NY","New York","TRUE","","8301","1883.6","36103","Suffolk","{""36103"": ""100""}","Suffolk","36103","FALSE","FALSE","America/New_York"
-"11790","40.90689","-73.12767","Stony Brook","NY","New York","TRUE","","17304","932.8","36103","Suffolk","{""36103"": ""100""}","Suffolk","36103","FALSE","FALSE","America/New_York"
-"11791","40.8284","-73.50435","Syosset","NY","New York","TRUE","","26135","777.8","36059","Nassau","{""36059"": ""100""}","Nassau","36059","FALSE","FALSE","America/New_York"
-"11792","40.94818","-72.8305","Wading River","NY","New York","TRUE","","7853","307.7","36103","Suffolk","{""36103"": ""100""}","Suffolk","36103","FALSE","FALSE","America/New_York"
-"11793","40.65069","-73.51421","Wantagh","NY","New York","TRUE","","30643","1247.2","36059","Nassau","{""36059"": ""100""}","Nassau","36059","FALSE","FALSE","America/New_York"
-"11794","40.91362","-73.12514","Stony Brook","NY","New York","TRUE","","3024","4131.3","36103","Suffolk","{""36103"": ""100""}","Suffolk","36103","FALSE","FALSE","America/New_York"
-"11795","40.70788","-73.29826","West Islip","NY","New York","TRUE","","24775","1688.8","36103","Suffolk","{""36103"": ""100""}","Suffolk","36103","FALSE","FALSE","America/New_York"
-"11796","40.73135","-73.0997","West Sayville","NY","New York","TRUE","","4160","1179.2","36103","Suffolk","{""36103"": ""100""}","Suffolk","36103","FALSE","FALSE","America/New_York"
-"11797","40.81727","-73.47004","Woodbury","NY","New York","TRUE","","8962","673.6","36059","Nassau","{""36059"": ""100""}","Nassau","36059","FALSE","FALSE","America/New_York"
-"11798","40.75225","-73.37596","Wyandanch","NY","New York","TRUE","","14864","1203.9","36103","Suffolk","{""36103"": ""100""}","Suffolk","36103","FALSE","FALSE","America/New_York"
-"11801","40.76239","-73.52394","Hicksville","NY","New York","TRUE","","40288","2343.9","36059","Nassau","{""36059"": ""100""}","Nassau","36059","FALSE","FALSE","America/New_York"
-"11803","40.7818","-73.4735","Plainview","NY","New York","TRUE","","28520","1820.4","36059","Nassau","{""36059"": ""100""}","Nassau","36059","FALSE","FALSE","America/New_York"
-"11804","40.75874","-73.45697","Old Bethpage","NY","New York","TRUE","","4671","625.5","36059","Nassau","{""36059"": ""100""}","Nassau","36059","FALSE","FALSE","America/New_York"
-"11901","40.92254","-72.64657","Riverhead","NY","New York","TRUE","","28387","198.7","36103","Suffolk","{""36103"": ""100""}","Suffolk","36103","FALSE","FALSE","America/New_York"
-"11930","40.98935","-72.10144","Amagansett","NY","New York","TRUE","","882","36.9","36103","Suffolk","{""36103"": ""100""}","Suffolk","36103","FALSE","FALSE","America/New_York"
-"11931","40.93495","-72.61361","Aquebogue","NY","New York","TRUE","","39","33.4","36103","Suffolk","{""36103"": ""100""}","Suffolk","36103","FALSE","FALSE","America/New_York"
-"11932","40.93905","-72.30785","Bridgehampton","NY","New York","TRUE","","1120","50.1","36103","Suffolk","{""36103"": ""100""}","Suffolk","36103","FALSE","FALSE","America/New_York"
-"11933","40.92378","-72.75494","Calverton","NY","New York","TRUE","","7342","102.3","36103","Suffolk","{""36103"": ""100""}","Suffolk","36103","FALSE","FALSE","America/New_York"
-"11934","40.80008","-72.79363","Center Moriches","NY","New York","TRUE","","7584","626.5","36103","Suffolk","{""36103"": ""100""}","Suffolk","36103","FALSE","FALSE","America/New_York"
-"11935","41.01796","-72.48929","Cutchogue","NY","New York","TRUE","","3160","119.5","36103","Suffolk","{""36103"": ""100""}","Suffolk","36103","FALSE","FALSE","America/New_York"
-"11937","41.00703","-72.1953","East Hampton","NY","New York","TRUE","","16137","145.3","36103","Suffolk","{""36103"": ""100""}","Suffolk","36103","FALSE","FALSE","America/New_York"
-"11939","41.12788","-72.34146","East Marion","NY","New York","TRUE","","999","172.3","36103","Suffolk","{""36103"": ""100""}","Suffolk","36103","FALSE","FALSE","America/New_York"
-"11940","40.8104","-72.75711","East Moriches","NY","New York","TRUE","","5532","386.6","36103","Suffolk","{""36103"": ""100""}","Suffolk","36103","FALSE","FALSE","America/New_York"
-"11941","40.82973","-72.72839","Eastport","NY","New York","TRUE","","1797","282.4","36103","Suffolk","{""36103"": ""100""}","Suffolk","36103","FALSE","FALSE","America/New_York"
-"11942","40.85315","-72.5849","East Quogue","NY","New York","TRUE","","5174","230.7","36103","Suffolk","{""36103"": ""100""}","Suffolk","36103","FALSE","FALSE","America/New_York"
-"11944","41.09988","-72.37089","Greenport","NY","New York","TRUE","","4287","406.3","36103","Suffolk","{""36103"": ""100""}","Suffolk","36103","FALSE","FALSE","America/New_York"
-"11946","40.87787","-72.52651","Hampton Bays","NY","New York","TRUE","","15453","446.0","36103","Suffolk","{""36103"": ""100""}","Suffolk","36103","FALSE","FALSE","America/New_York"
-"11947","40.95518","-72.57717","Jamesport","NY","New York","TRUE","","486","288.8","36103","Suffolk","{""36103"": ""100""}","Suffolk","36103","FALSE","FALSE","America/New_York"
-"11948","40.96594","-72.55795","Laurel","NY","New York","TRUE","","710","100.8","36103","Suffolk","{""36103"": ""100""}","Suffolk","36103","FALSE","FALSE","America/New_York"
-"11949","40.86546","-72.80134","Manorville","NY","New York","TRUE","","13760","154.0","36103","Suffolk","{""36103"": ""100""}","Suffolk","36103","FALSE","FALSE","America/New_York"
-"11950","40.80776","-72.84737","Mastic","NY","New York","TRUE","","16444","1539.4","36103","Suffolk","{""36103"": ""100""}","Suffolk","36103","FALSE","FALSE","America/New_York"
-"11951","40.7634","-72.83056","Mastic Beach","NY","New York","TRUE","","13015","748.6","36103","Suffolk","{""36103"": ""100""}","Suffolk","36103","FALSE","FALSE","America/New_York"
-"11952","40.99698","-72.5437","Mattituck","NY","New York","TRUE","","5010","204.7","36103","Suffolk","{""36103"": ""100""}","Suffolk","36103","FALSE","FALSE","America/New_York"
-"11953","40.88593","-72.95064","Middle Island","NY","New York","TRUE","","13645","514.1","36103","Suffolk","{""36103"": ""100""}","Suffolk","36103","FALSE","FALSE","America/New_York"
-"11954","41.04652","-71.94662","Montauk","NY","New York","TRUE","","3685","76.9","36103","Suffolk","{""36103"": ""100""}","Suffolk","36103","FALSE","FALSE","America/New_York"
-"11955","40.80886","-72.81986","Moriches","NY","New York","TRUE","","3748","504.3","36103","Suffolk","{""36103"": ""100""}","Suffolk","36103","FALSE","FALSE","America/New_York"
-"11956","40.98159","-72.46894","New Suffolk","NY","New York","TRUE","","250","76.1","36103","Suffolk","{""36103"": ""100""}","Suffolk","36103","FALSE","FALSE","America/New_York"
-"11957","41.14927","-72.26173","Orient","NY","New York","TRUE","","835","49.9","36103","Suffolk","{""36103"": ""100""}","Suffolk","36103","FALSE","FALSE","America/New_York"
-"11958","41.03618","-72.46153","Peconic","NY","New York","TRUE","","768","103.1","36103","Suffolk","{""36103"": ""100""}","Suffolk","36103","FALSE","FALSE","America/New_York"
-"11959","40.82255","-72.60118","Quogue","NY","New York","TRUE","","545","54.8","36103","Suffolk","{""36103"": ""100""}","Suffolk","36103","FALSE","FALSE","America/New_York"
-"11960","40.80854","-72.70635","Remsenburg","NY","New York","TRUE","","706","144.4","36103","Suffolk","{""36103"": ""100""}","Suffolk","36103","FALSE","FALSE","America/New_York"
-"11961","40.90392","-72.88749","Ridge","NY","New York","TRUE","","12902","387.5","36103","Suffolk","{""36103"": ""100""}","Suffolk","36103","FALSE","FALSE","America/New_York"
-"11962","40.93565","-72.27269","Sagaponack","NY","New York","TRUE","","324","22.8","36103","Suffolk","{""36103"": ""100""}","Suffolk","36103","FALSE","FALSE","America/New_York"
-"11963","40.99428","-72.3208","Sag Harbor","NY","New York","TRUE","","7161","205.0","36103","Suffolk","{""36103"": ""100""}","Suffolk","36103","FALSE","FALSE","America/New_York"
-"11964","41.0544","-72.32076","Shelter Island","NY","New York","TRUE","","2413","99.4","36103","Suffolk","{""36103"": ""100""}","Suffolk","36103","FALSE","FALSE","America/New_York"
-"11965","41.07777","-72.3527","Shelter Island Heights","NY","New York","TRUE","","380","51.9","36103","Suffolk","{""36103"": ""100""}","Suffolk","36103","FALSE","FALSE","America/New_York"
-"11967","40.79514","-72.8749","Shirley","NY","New York","TRUE","","27854","949.4","36103","Suffolk","{""36103"": ""100""}","Suffolk","36103","FALSE","FALSE","America/New_York"
-"11968","40.907","-72.41279","Southampton","NY","New York","TRUE","","10517","150.2","36103","Suffolk","{""36103"": ""100""}","Suffolk","36103","FALSE","FALSE","America/New_York"
-"11970","40.93914","-72.57747","South Jamesport","NY","New York","TRUE","","212","145.8","36103","Suffolk","{""36103"": ""100""}","Suffolk","36103","FALSE","FALSE","America/New_York"
-"11971","41.05946","-72.4264","Southold","NY","New York","TRUE","","6026","210.3","36103","Suffolk","{""36103"": ""100""}","Suffolk","36103","FALSE","FALSE","America/New_York"
-"11972","40.83354","-72.70683","Speonk","NY","New York","TRUE","","1096","175.7","36103","Suffolk","{""36103"": ""100""}","Suffolk","36103","FALSE","FALSE","America/New_York"
-"11973","40.86786","-72.88213","Upton","NY","New York","TRUE","","40","3.5","36103","Suffolk","{""36103"": ""100""}","Suffolk","36103","FALSE","FALSE","America/New_York"
-"11975","40.94316","-72.24438","Wainscott","NY","New York","TRUE","","272","36.9","36103","Suffolk","{""36103"": ""100""}","Suffolk","36103","FALSE","FALSE","America/New_York"
-"11976","40.92765","-72.34791","Water Mill","NY","New York","TRUE","","1679","52.8","36103","Suffolk","{""36103"": ""100""}","Suffolk","36103","FALSE","FALSE","America/New_York"
-"11977","40.82759","-72.67913","Westhampton","NY","New York","TRUE","","2176","146.7","36103","Suffolk","{""36103"": ""100""}","Suffolk","36103","FALSE","FALSE","America/New_York"
-"11978","40.82936","-72.64734","Westhampton Beach","NY","New York","TRUE","","3086","94.5","36103","Suffolk","{""36103"": ""100""}","Suffolk","36103","FALSE","FALSE","America/New_York"
-"11980","40.83146","-72.92233","Yaphank","NY","New York","TRUE","","5865","172.7","36103","Suffolk","{""36103"": ""100""}","Suffolk","36103","FALSE","FALSE","America/New_York"
-"12007","42.45616","-73.92765","Alcove","NY","New York","TRUE","","9","2.9","36001","Albany","{""36001"": ""100""}","Albany","36001","FALSE","FALSE","America/New_York"
-"12008","42.85301","-73.90799","Alplaus","NY","New York","TRUE","","668","310.2","36093","Schenectady","{""36093"": ""100""}","Schenectady","36093","FALSE","FALSE","America/New_York"
-"12009","42.69824","-74.03178","Altamont","NY","New York","TRUE","","7900","58.4","36001","Albany","{""36001"": ""100""}","Albany","36001","FALSE","FALSE","America/New_York"
-"12010","42.93797","-74.17386","Amsterdam","NY","New York","TRUE","","28152","83.2","36057","Montgomery","{""36057"": ""83.03"", ""36035"": ""13.14"", ""36091"": ""2.41"", ""36093"": ""1.43""}","Montgomery|Fulton|Saratoga|Schenectady","36057|36035|36091|36093","FALSE","FALSE","America/New_York"
-"12015","42.28262","-73.8272","Athens","NY","New York","TRUE","","3026","87.5","36039","Greene","{""36039"": ""100""}","Greene","36039","FALSE","FALSE","America/New_York"
-"12017","42.32118","-73.46216","Austerlitz","NY","New York","TRUE","","403","7.8","36021","Columbia","{""36021"": ""100""}","Columbia","36021","FALSE","FALSE","America/New_York"
-"12018","42.62952","-73.52591","Averill Park","NY","New York","TRUE","","7226","62.6","36083","Rensselaer","{""36083"": ""100""}","Rensselaer","36083","FALSE","FALSE","America/New_York"
-"12019","42.93075","-73.88635","Ballston Lake","NY","New York","TRUE","","14456","189.2","36091","Saratoga","{""36091"": ""94.83"", ""36093"": ""5.17""}","Saratoga|Schenectady","36091|36093","FALSE","FALSE","America/New_York"
-"12020","43.00248","-73.868","Ballston Spa","NY","New York","TRUE","","33563","172.3","36091","Saratoga","{""36091"": ""100""}","Saratoga","36091","FALSE","FALSE","America/New_York"
-"12022","42.67078","-73.34569","Berlin","NY","New York","TRUE","","612","7.3","36083","Rensselaer","{""36083"": ""100""}","Rensselaer","36083","FALSE","FALSE","America/New_York"
-"12023","42.60998","-74.16738","Berne","NY","New York","TRUE","","2187","14.7","36001","Albany","{""36001"": ""82.6"", ""36095"": ""17.4""}","Albany|Schoharie","36001|36095","FALSE","FALSE","America/New_York"
-"12024","42.47678","-73.53331","Brainard","NY","New York","TRUE","","0","0.0","36021","Columbia","{""36021"": ""100""}","Columbia","36021","FALSE","FALSE","America/New_York"
-"12025","43.0833","-74.136","Broadalbin","NY","New York","TRUE","","5388","57.4","36035","Fulton","{""36035"": ""90.17"", ""36091"": ""9.83""}","Fulton|Saratoga","36035|36091","FALSE","FALSE","America/New_York"
-"12027","42.92243","-73.90716","Burnt Hills","NY","New York","TRUE","","3887","209.2","36091","Saratoga","{""36091"": ""82.41"", ""36093"": ""17.59""}","Saratoga|Schenectady","36091|36093","FALSE","FALSE","America/New_York"
-"12028","42.93994","-73.4432","Buskirk","NY","New York","TRUE","","849","14.5","36083","Rensselaer","{""36083"": ""67.75"", ""36115"": ""32.25""}","Rensselaer|Washington","36083|36115","FALSE","FALSE","America/New_York"
-"12029","42.40668","-73.42658","Canaan","NY","New York","TRUE","","1156","22.2","36021","Columbia","{""36021"": ""100""}","Columbia","36021","FALSE","FALSE","America/New_York"
-"12031","42.76477","-74.4569","Carlisle","NY","New York","TRUE","","195","23.2","36095","Schoharie","{""36095"": ""100""}","Schoharie","36095","FALSE","FALSE","America/New_York"
-"12032","43.23363","-74.55081","Caroga Lake","NY","New York","TRUE","","858","3.7","36035","Fulton","{""36035"": ""98.92"", ""36041"": ""1.08""}","Fulton|Hamilton","36035|36041","FALSE","FALSE","America/New_York"
-"12033","42.53754","-73.70714","Castleton On Hudson","NY","New York","TRUE","","7906","113.1","36083","Rensselaer","{""36083"": ""100""}","Rensselaer","36083","FALSE","FALSE","America/New_York"
-"12035","42.73177","-74.35151","Central Bridge","NY","New York","TRUE","","722","44.7","36095","Schoharie","{""36095"": ""100""}","Schoharie","36095","FALSE","FALSE","America/New_York"
-"12036","42.54077","-74.6774","Charlotteville","NY","New York","TRUE","","295","15.4","36095","Schoharie","{""36095"": ""84.65"", ""36077"": ""15.35""}","Schoharie|Otsego","36095|36077","FALSE","FALSE","America/New_York"
-"12037","42.34517","-73.56853","Chatham","NY","New York","TRUE","","4257","53.3","36021","Columbia","{""36021"": ""100""}","Columbia","36021","FALSE","FALSE","America/New_York"
-"12040","42.63738","-73.35077","Cherry Plain","NY","New York","TRUE","","137","40.5","36083","Rensselaer","{""36083"": ""100""}","Rensselaer","36083","FALSE","FALSE","America/New_York"
-"12041","42.58328","-73.96423","Clarksville","NY","New York","TRUE","","571","139.4","36001","Albany","{""36001"": ""100""}","Albany","36001","FALSE","FALSE","America/New_York"
-"12042","42.4021","-73.9202","Climax","NY","New York","TRUE","","225","20.0","36039","Greene","{""36039"": ""100""}","Greene","36039","FALSE","FALSE","America/New_York"
-"12043","42.70454","-74.52273","Cobleskill","NY","New York","TRUE","","8129","50.8","36095","Schoharie","{""36095"": ""99.94"", ""36077"": ""0.06""}","Schoharie|Otsego","36095|36077","FALSE","FALSE","America/New_York"
-"12045","42.47693","-73.7952","Coeymans","NY","New York","TRUE","","506","266.2","36001","Albany","{""36001"": ""100""}","Albany","36001","FALSE","FALSE","America/New_York"
-"12046","42.49182","-73.91917","Coeymans Hollow","NY","New York","TRUE","","1102","27.7","36001","Albany","{""36001"": ""96.45"", ""36039"": ""3.55""}","Albany|Greene","36001|36039","FALSE","FALSE","America/New_York"
-"12047","42.784","-73.72653","Cohoes","NY","New York","TRUE","","21355","933.8","36001","Albany","{""36001"": ""100""}","Albany","36001","FALSE","FALSE","America/New_York"
-"12051","42.34411","-73.84516","Coxsackie","NY","New York","TRUE","","6383","115.6","36039","Greene","{""36039"": ""100""}","Greene","36039","FALSE","FALSE","America/New_York"
-"12052","42.75397","-73.47861","Cropseyville","NY","New York","TRUE","","1611","20.5","36083","Rensselaer","{""36083"": ""100""}","Rensselaer","36083","FALSE","FALSE","America/New_York"
-"12053","42.75365","-74.1923","Delanson","NY","New York","TRUE","","4527","28.3","36093","Schenectady","{""36093"": ""77.61"", ""36095"": ""11.23"", ""36001"": ""9.96"", ""36057"": ""1.2""}","Schenectady|Schoharie|Albany|Montgomery","36093|36095|36001|36057","FALSE","FALSE","America/New_York"
-"12054","42.60874","-73.86582","Delmar","NY","New York","TRUE","","16940","423.4","36001","Albany","{""36001"": ""100""}","Albany","36001","FALSE","FALSE","America/New_York"
-"12056","42.7666","-74.09025","Duanesburg","NY","New York","TRUE","","2847","61.0","36093","Schenectady","{""36093"": ""100""}","Schenectady","36093","FALSE","FALSE","America/New_York"
-"12057","42.96978","-73.34463","Eagle Bridge","NY","New York","TRUE","","1942","21.3","36115","Washington","{""36115"": ""76.19"", ""36083"": ""23.81""}","Washington|Rensselaer","36115|36083","FALSE","FALSE","America/New_York"
-"12058","42.34966","-73.92449","Earlton","NY","New York","TRUE","","1394","28.0","36039","Greene","{""36039"": ""100""}","Greene","36039","FALSE","FALSE","America/New_York"
-"12059","42.61213","-74.05894","East Berne","NY","New York","TRUE","","1682","25.0","36001","Albany","{""36001"": ""100""}","Albany","36001","FALSE","FALSE","America/New_York"
-"12060","42.41679","-73.49419","East Chatham","NY","New York","TRUE","","1414","15.8","36021","Columbia","{""36021"": ""100""}","Columbia","36021","FALSE","FALSE","America/New_York"
-"12061","42.59819","-73.6557","East Greenbush","NY","New York","TRUE","","9656","185.2","36083","Rensselaer","{""36083"": ""100""}","Rensselaer","36083","FALSE","FALSE","America/New_York"
-"12062","42.531","-73.50807","East Nassau","NY","New York","TRUE","","1546","20.6","36083","Rensselaer","{""36083"": ""90.37"", ""36021"": ""9.63""}","Rensselaer|Columbia","36083|36021","FALSE","FALSE","America/New_York"
-"12063","42.56505","-73.63758","East Schodack","NY","New York","TRUE","","524","142.0","36083","Rensselaer","{""36083"": ""100""}","Rensselaer","36083","FALSE","FALSE","America/New_York"
-"12064","42.61434","-74.65729","East Worcester","NY","New York","TRUE","","341","11.5","36077","Otsego","{""36077"": ""91.47"", ""36095"": ""8.53""}","Otsego|Schoharie","36077|36095","FALSE","FALSE","America/New_York"
-"12065","42.85316","-73.78649","Clifton Park","NY","New York","TRUE","","42701","472.5","36091","Saratoga","{""36091"": ""100""}","Saratoga","36091","FALSE","FALSE","America/New_York"
-"12066","42.78057","-74.31049","Esperance","NY","New York","TRUE","","1623","18.6","36095","Schoharie","{""36095"": ""51.42"", ""36057"": ""30.61"", ""36093"": ""17.97""}","Schoharie|Montgomery|Schenectady","36095|36057|36093","FALSE","FALSE","America/New_York"
-"12067","42.55615","-73.92633","Feura Bush","NY","New York","TRUE","","1519","27.4","36001","Albany","{""36001"": ""100""}","Albany","36001","FALSE","FALSE","America/New_York"
-"12068","42.95546","-74.40903","Fonda","NY","New York","TRUE","","3238","40.6","36057","Montgomery","{""36057"": ""99.03"", ""36035"": ""0.97""}","Montgomery|Fulton","36057|36035","FALSE","FALSE","America/New_York"
-"12069","42.94514","-74.27897","Fort Hunter","NY","New York","TRUE","","203","137.8","36057","Montgomery","{""36057"": ""100""}","Montgomery","36057","FALSE","FALSE","America/New_York"
-"12070","42.98469","-74.25387","Fort Johnson","NY","New York","TRUE","","1669","52.6","36057","Montgomery","{""36057"": ""71.42"", ""36035"": ""28.58""}","Montgomery|Fulton","36057|36035","FALSE","FALSE","America/New_York"
-"12071","42.55267","-74.42264","Fultonham","NY","New York","TRUE","","346","14.5","36095","Schoharie","{""36095"": ""100""}","Schoharie","36095","FALSE","FALSE","America/New_York"
-"12072","42.88466","-74.36231","Fultonville","NY","New York","TRUE","","3097","24.8","36057","Montgomery","{""36057"": ""100""}","Montgomery","36057","FALSE","FALSE","America/New_York"
-"12074","43.05038","-74.0445","Galway","NY","New York","TRUE","","3046","33.0","36091","Saratoga","{""36091"": ""100""}","Saratoga","36091","FALSE","FALSE","America/New_York"
-"12075","42.29983","-73.63382","Ghent","NY","New York","TRUE","","2959","29.1","36021","Columbia","{""36021"": ""100""}","Columbia","36021","FALSE","FALSE","America/New_York"
-"12076","42.41003","-74.38858","Gilboa","NY","New York","TRUE","","1308","6.7","36095","Schoharie","{""36095"": ""100""}","Schoharie","36095","FALSE","FALSE","America/New_York"
-"12077","42.59434","-73.78405","Glenmont","NY","New York","TRUE","","6745","258.2","36001","Albany","{""36001"": ""100""}","Albany","36001","FALSE","FALSE","America/New_York"
-"12078","43.1238","-74.36368","Gloversville","NY","New York","TRUE","","23419","83.4","36035","Fulton","{""36035"": ""100""}","Fulton","36035","FALSE","FALSE","America/New_York"
-"12083","42.4303","-74.02664","Greenville","NY","New York","TRUE","","3939","35.3","36039","Greene","{""36039"": ""66.11"", ""36001"": ""33.89""}","Greene|Albany","36039|36001","FALSE","FALSE","America/New_York"
-"12084","42.70421","-73.90096","Guilderland","NY","New York","TRUE","","5005","535.7","36001","Albany","{""36001"": ""100""}","Albany","36001","FALSE","FALSE","America/New_York"
-"12085","42.70336","-73.96335","Guilderland Center","NY","New York","TRUE","","424","932.4","36001","Albany","{""36001"": ""100""}","Albany","36001","FALSE","FALSE","America/New_York"
-"12086","42.99719","-74.10672","Hagaman","NY","New York","TRUE","","1453","92.6","36057","Montgomery","{""36057"": ""71.31"", ""36091"": ""17.32"", ""36035"": ""11.37""}","Montgomery|Saratoga|Fulton","36057|36091|36035","FALSE","FALSE","America/New_York"
-"12087","42.43247","-73.89778","Hannacroix","NY","New York","TRUE","","1109","21.7","36039","Greene","{""36039"": ""87.23"", ""36001"": ""12.77""}","Greene|Albany","36039|36001","FALSE","FALSE","America/New_York"
-"12089","42.86787","-73.31205","Hoosick","NY","New York","TRUE","","64","45.5","36083","Rensselaer","{""36083"": ""100""}","Rensselaer","36083","FALSE","FALSE","America/New_York"
-"12090","42.88022","-73.35532","Hoosick Falls","NY","New York","TRUE","","6350","43.0","36083","Rensselaer","{""36083"": ""100""}","Rensselaer","36083","FALSE","FALSE","America/New_York"
-"12092","42.70126","-74.37659","Howes Cave","NY","New York","TRUE","","752","19.4","36095","Schoharie","{""36095"": ""100""}","Schoharie","36095","FALSE","FALSE","America/New_York"
-"12093","42.4968","-74.6268","Jefferson","NY","New York","TRUE","","1545","9.0","36095","Schoharie","{""36095"": ""79.29"", ""36025"": ""20.71""}","Schoharie|Delaware","36095|36025","FALSE","FALSE","America/New_York"
-"12094","42.89332","-73.48837","Johnsonville","NY","New York","TRUE","","2398","32.8","36083","Rensselaer","{""36083"": ""95.86"", ""36115"": ""4.14""}","Rensselaer|Washington","36083|36115","FALSE","FALSE","America/New_York"
-"12095","43.02702","-74.40419","Johnstown","NY","New York","TRUE","","12046","76.7","36035","Fulton","{""36035"": ""97.3"", ""36057"": ""2.7""}","Fulton|Montgomery","36035|36057","FALSE","FALSE","America/New_York"
-"12106","42.38895","-73.71132","Kinderhook","NY","New York","TRUE","","2333","61.8","36021","Columbia","{""36021"": ""100""}","Columbia","36021","FALSE","FALSE","America/New_York"
-"12108","43.57407","-74.44934","Lake Pleasant","NY","New York","TRUE","","393","1.1","36041","Hamilton","{""36041"": ""100""}","Hamilton","36041","FALSE","FALSE","America/New_York"
-"12110","42.75316","-73.7767","Latham","NY","New York","TRUE","","21665","569.6","36001","Albany","{""36001"": ""100""}","Albany","36001","FALSE","FALSE","America/New_York"
-"12115","42.47281","-73.58074","Malden Bridge","NY","New York","TRUE","","61","4.5","36021","Columbia","{""36021"": ""100""}","Columbia","36021","FALSE","FALSE","America/New_York"
-"12116","42.53723","-74.91524","Maryland","NY","New York","TRUE","","1712","17.2","36077","Otsego","{""36077"": ""100""}","Otsego","36077","FALSE","FALSE","America/New_York"
-"12117","43.16875","-74.2547","Mayfield","NY","New York","TRUE","","3133","27.0","36035","Fulton","{""36035"": ""100""}","Fulton","36035","FALSE","FALSE","America/New_York"
-"12118","42.91684","-73.72138","Mechanicville","NY","New York","TRUE","","15508","189.6","36091","Saratoga","{""36091"": ""96.32"", ""36083"": ""3.68""}","Saratoga|Rensselaer","36091|36083","FALSE","FALSE","America/New_York"
-"12120","42.45141","-74.14424","Medusa","NY","New York","TRUE","","683","15.1","36001","Albany","{""36001"": ""95.6"", ""36039"": ""4.4""}","Albany|Greene","36001|36039","FALSE","FALSE","America/New_York"
-"12121","42.84592","-73.60204","Melrose","NY","New York","TRUE","","1972","36.9","36083","Rensselaer","{""36083"": ""100""}","Rensselaer","36083","FALSE","FALSE","America/New_York"
-"12122","42.54808","-74.31659","Middleburgh","NY","New York","TRUE","","4170","14.9","36095","Schoharie","{""36095"": ""96.03"", ""36001"": ""3.97""}","Schoharie|Albany","36095|36001","FALSE","FALSE","America/New_York"
-"12123","42.52279","-73.60792","Nassau","NY","New York","TRUE","","5398","63.9","36083","Rensselaer","{""36083"": ""100""}","Rensselaer","36083","FALSE","FALSE","America/New_York"
-"12124","42.44906","-73.79272","New Baltimore","NY","New York","TRUE","","711","104.2","36039","Greene","{""36039"": ""100""}","Greene","36039","FALSE","FALSE","America/New_York"
-"12125","42.47602","-73.40481","New Lebanon","NY","New York","TRUE","","1483","31.9","36021","Columbia","{""36021"": ""100""}","Columbia","36021","FALSE","FALSE","America/New_York"
-"12130","42.44206","-73.6595","Niverville","NY","New York","TRUE","","720","465.6","36021","Columbia","{""36021"": ""100""}","Columbia","36021","FALSE","FALSE","America/New_York"
-"12131","42.45964","-74.46805","North Blenheim","NY","New York","TRUE","","91","5.0","36095","Schoharie","{""36095"": ""100""}","Schoharie","36095","FALSE","FALSE","America/New_York"
-"12132","42.47052","-73.63004","North Chatham","NY","New York","TRUE","","297","61.7","36021","Columbia","{""36021"": ""100""}","Columbia","36021","FALSE","FALSE","America/New_York"
-"12134","43.2662","-74.22876","Northville","NY","New York","TRUE","","4059","8.1","36035","Fulton","{""36035"": ""54.86"", ""36091"": ""28.21"", ""36041"": ""16.92""}","Fulton|Saratoga|Hamilton","36035|36091|36041","FALSE","FALSE","America/New_York"
-"12136","42.43618","-73.55836","Old Chatham","NY","New York","TRUE","","732","15.6","36021","Columbia","{""36021"": ""100""}","Columbia","36021","FALSE","FALSE","America/New_York"
-"12137","42.85609","-74.12773","Pattersonville","NY","New York","TRUE","","1764","28.4","36093","Schenectady","{""36093"": ""77.37"", ""36057"": ""22.63""}","Schenectady|Montgomery","36093|36057","FALSE","FALSE","America/New_York"
-"12138","42.74721","-73.37207","Petersburg","NY","New York","TRUE","","3218","15.5","36083","Rensselaer","{""36083"": ""100""}","Rensselaer","36083","FALSE","FALSE","America/New_York"
-"12139","43.53729","-74.56482","Piseco","NY","New York","TRUE","","146","0.2","36041","Hamilton","{""36041"": ""100""}","Hamilton","36041","FALSE","FALSE","America/New_York"
-"12140","42.69179","-73.56269","Poestenkill","NY","New York","TRUE","","1690","78.7","36083","Rensselaer","{""36083"": ""100""}","Rensselaer","36083","FALSE","FALSE","America/New_York"
-"12143","42.48579","-73.85204","Ravena","NY","New York","TRUE","","4728","94.3","36001","Albany","{""36001"": ""93.65"", ""36039"": ""6.35""}","Albany|Greene","36001|36039","FALSE","FALSE","America/New_York"
-"12144","42.62974","-73.71811","Rensselaer","NY","New York","TRUE","","20205","412.0","36083","Rensselaer","{""36083"": ""100""}","Rensselaer","36083","FALSE","FALSE","America/New_York"
-"12147","42.51463","-74.15546","Rensselaerville","NY","New York","TRUE","","487","9.6","36001","Albany","{""36001"": ""100""}","Albany","36001","FALSE","FALSE","America/New_York"
-"12148","42.83454","-73.84743","Rexford","NY","New York","TRUE","","4333","106.9","36091","Saratoga","{""36091"": ""100""}","Saratoga","36091","FALSE","FALSE","America/New_York"
-"12149","42.61829","-74.56493","Richmondville","NY","New York","TRUE","","2423","20.0","36095","Schoharie","{""36095"": ""100""}","Schoharie","36095","FALSE","FALSE","America/New_York"
-"12150","42.87857","-74.05383","Rotterdam Junction","NY","New York","TRUE","","916","324.9","36093","Schenectady","{""36093"": ""100""}","Schenectady","36093","FALSE","FALSE","America/New_York"
-"12151","42.92512","-73.78874","Round Lake","NY","New York","TRUE","","911","135.7","36091","Saratoga","{""36091"": ""100""}","Saratoga","36091","FALSE","FALSE","America/New_York"
-"12153","42.64044","-73.46871","Sand Lake","NY","New York","TRUE","","993","21.3","36083","Rensselaer","{""36083"": ""100""}","Rensselaer","36083","FALSE","FALSE","America/New_York"
-"12154","42.9377","-73.60063","Schaghticoke","NY","New York","TRUE","","2901","26.9","36083","Rensselaer","{""36083"": ""82.22"", ""36115"": ""17.78""}","Rensselaer|Washington","36083|36115","FALSE","FALSE","America/New_York"
-"12155","42.59561","-74.82455","Schenevus","NY","New York","TRUE","","2119","14.4","36077","Otsego","{""36077"": ""93.32"", ""36025"": ""6.68""}","Otsego|Delaware","36077|36025","FALSE","FALSE","America/New_York"
-"12156","42.47719","-73.74355","Schodack Landing","NY","New York","TRUE","","1053","28.3","36083","Rensselaer","{""36083"": ""82.08"", ""36021"": ""17.92""}","Rensselaer|Columbia","36083|36021","FALSE","FALSE","America/New_York"
-"12157","42.66588","-74.29885","Schoharie","NY","New York","TRUE","","4417","39.1","36095","Schoharie","{""36095"": ""99.31"", ""36093"": ""0.54"", ""36001"": ""0.15""}","Schoharie|Schenectady|Albany","36095|36093|36001","FALSE","FALSE","America/New_York"
-"12158","42.54063","-73.82091","Selkirk","NY","New York","TRUE","","6945","87.6","36001","Albany","{""36001"": ""100""}","Albany","36001","FALSE","FALSE","America/New_York"
-"12159","42.6424","-73.88604","Slingerlands","NY","New York","TRUE","","7870","215.7","36001","Albany","{""36001"": ""100""}","Albany","36001","FALSE","FALSE","America/New_York"
-"12160","42.75887","-74.3672","Sloansville","NY","New York","TRUE","","962","21.0","36095","Schoharie","{""36095"": ""100""}","Schoharie","36095","FALSE","FALSE","America/New_York"
-"12161","42.53606","-73.85486","South Bethlehem","NY","New York","TRUE","","191","180.2","36001","Albany","{""36001"": ""100""}","Albany","36001","FALSE","FALSE","America/New_York"
-"12164","43.55385","-74.35818","Speculator","NY","New York","TRUE","","387","3.2","36041","Hamilton","{""36041"": ""100""}","Hamilton","36041","FALSE","FALSE","America/New_York"
-"12165","42.31057","-73.50767","Spencertown","NY","New York","TRUE","","161","19.3","36021","Columbia","{""36021"": ""100""}","Columbia","36021","FALSE","FALSE","America/New_York"
-"12166","42.8387","-74.45279","Sprakers","NY","New York","TRUE","","1148","10.1","36057","Montgomery","{""36057"": ""99.63"", ""36095"": ""0.37""}","Montgomery|Schoharie","36057|36095","FALSE","FALSE","America/New_York"
-"12167","42.42076","-74.58407","Stamford","NY","New York","TRUE","","2678","22.6","36025","Delaware","{""36025"": ""69.73"", ""36095"": ""30.27""}","Delaware|Schoharie","36025|36095","FALSE","FALSE","America/New_York"
-"12168","42.56099","-73.38082","Stephentown","NY","New York","TRUE","","2033","22.5","36083","Rensselaer","{""36083"": ""100""}","Rensselaer","36083","FALSE","FALSE","America/New_York"
-"12169","42.58644","-73.44276","Stephentown","NY","New York","TRUE","","252","10.2","36083","Rensselaer","{""36083"": ""100""}","Rensselaer","36083","FALSE","FALSE","America/New_York"
-"12170","42.99684","-73.66309","Stillwater","NY","New York","TRUE","","4958","63.6","36091","Saratoga","{""36091"": ""100""}","Saratoga","36091","FALSE","FALSE","America/New_York"
-"12172","42.28913","-73.73955","Stottville","NY","New York","TRUE","","296","242.6","36021","Columbia","{""36021"": ""100""}","Columbia","36021","FALSE","FALSE","America/New_York"
-"12173","42.38753","-73.76027","Stuyvesant","NY","New York","TRUE","","1999","44.9","36021","Columbia","{""36021"": ""100""}","Columbia","36021","FALSE","FALSE","America/New_York"
-"12174","42.35336","-73.72854","Stuyvesant Falls","NY","New York","TRUE","","375","126.0","36021","Columbia","{""36021"": ""100""}","Columbia","36021","FALSE","FALSE","America/New_York"
-"12175","42.5515","-74.55282","Summit","NY","New York","TRUE","","528","9.2","36095","Schoharie","{""36095"": ""100""}","Schoharie","36095","FALSE","FALSE","America/New_York"
-"12176","42.38014","-73.96713","Surprise","NY","New York","TRUE","","451","52.4","36039","Greene","{""36039"": ""100""}","Greene","36039","FALSE","FALSE","America/New_York"
-"12177","42.951","-74.28714","Tribes Hill","NY","New York","TRUE","","281","176.2","36057","Montgomery","{""36057"": ""100""}","Montgomery","36057","FALSE","FALSE","America/New_York"
-"12180","42.75062","-73.60223","Troy","NY","New York","TRUE","","53464","376.0","36083","Rensselaer","{""36083"": ""100""}","Rensselaer","36083","FALSE","FALSE","America/New_York"
-"12182","42.80045","-73.63286","Troy","NY","New York","TRUE","","14432","405.5","36083","Rensselaer","{""36083"": ""100""}","Rensselaer","36083","FALSE","FALSE","America/New_York"
-"12183","42.74743","-73.69256","Troy","NY","New York","TRUE","","2592","1339.5","36001","Albany","{""36001"": ""100""}","Albany","36001","FALSE","FALSE","America/New_York"
-"12184","42.42049","-73.65421","Valatie","NY","New York","TRUE","","6840","68.5","36021","Columbia","{""36021"": ""98.82"", ""36083"": ""1.18""}","Columbia|Rensselaer","36021|36083","FALSE","FALSE","America/New_York"
-"12185","42.90329","-73.53123","Valley Falls","NY","New York","TRUE","","2006","31.9","36083","Rensselaer","{""36083"": ""87.63"", ""36115"": ""12.37""}","Rensselaer|Washington","36083|36115","FALSE","FALSE","America/New_York"
-"12186","42.62751","-73.97066","Voorheesville","NY","New York","TRUE","","6193","75.6","36001","Albany","{""36001"": ""100""}","Albany","36001","FALSE","FALSE","America/New_York"
-"12187","42.62196","-74.46226","Warnerville","NY","New York","TRUE","","513","8.6","36095","Schoharie","{""36095"": ""100""}","Schoharie","36095","FALSE","FALSE","America/New_York"
-"12188","42.81988","-73.69582","Waterford","NY","New York","TRUE","","11415","339.6","36091","Saratoga","{""36091"": ""100""}","Saratoga","36091","FALSE","FALSE","America/New_York"
-"12189","42.73626","-73.71765","Watervliet","NY","New York","TRUE","","17290","1047.7","36001","Albany","{""36001"": ""100""}","Albany","36001","FALSE","FALSE","America/New_York"
-"12190","43.47353","-74.27331","Wells","NY","New York","TRUE","","821","1.8","36041","Hamilton","{""36041"": ""100""}","Hamilton","36041","FALSE","FALSE","America/New_York"
-"12192","42.40291","-73.82828","West Coxsackie","NY","New York","TRUE","","1867","42.0","36039","Greene","{""36039"": ""100""}","Greene","36039","FALSE","FALSE","America/New_York"
-"12193","42.5157","-74.04497","Westerlo","NY","New York","TRUE","","1855","18.4","36001","Albany","{""36001"": ""100""}","Albany","36001","FALSE","FALSE","America/New_York"
-"12194","42.52443","-74.45965","West Fulton","NY","New York","TRUE","","156","3.9","36095","Schoharie","{""36095"": ""100""}","Schoharie","36095","FALSE","FALSE","America/New_York"
-"12195","42.48664","-73.47099","West Lebanon","NY","New York","TRUE","","113","22.3","36021","Columbia","{""36021"": ""100""}","Columbia","36021","FALSE","FALSE","America/New_York"
-"12196","42.63157","-73.61698","West Sand Lake","NY","New York","TRUE","","3522","153.8","36083","Rensselaer","{""36083"": ""100""}","Rensselaer","36083","FALSE","FALSE","America/New_York"
-"12197","42.61136","-74.72774","Worcester","NY","New York","TRUE","","1880","10.8","36077","Otsego","{""36077"": ""100""}","Otsego","36077","FALSE","FALSE","America/New_York"
-"12198","42.67673","-73.63404","Wynantskill","NY","New York","TRUE","","7871","232.0","36083","Rensselaer","{""36083"": ""100""}","Rensselaer","36083","FALSE","FALSE","America/New_York"
-"12202","42.63378","-73.76322","Albany","NY","New York","TRUE","","8342","1574.5","36001","Albany","{""36001"": ""100""}","Albany","36001","FALSE","FALSE","America/New_York"
-"12203","42.68108","-73.84822","Albany","NY","New York","TRUE","","30010","1015.7","36001","Albany","{""36001"": ""100""}","Albany","36001","FALSE","FALSE","America/New_York"
-"12204","42.68802","-73.72852","Albany","NY","New York","TRUE","","8318","789.6","36001","Albany","{""36001"": ""100""}","Albany","36001","FALSE","FALSE","America/New_York"
-"12205","42.71896","-73.82934","Albany","NY","New York","TRUE","","26941","657.4","36001","Albany","{""36001"": ""100""}","Albany","36001","FALSE","FALSE","America/New_York"
-"12206","42.67445","-73.78253","Albany","NY","New York","TRUE","","16480","2972.5","36001","Albany","{""36001"": ""100""}","Albany","36001","FALSE","FALSE","America/New_York"
-"12207","42.65728","-73.74608","Albany","NY","New York","TRUE","","2202","804.1","36001","Albany","{""36001"": ""100""}","Albany","36001","FALSE","FALSE","America/New_York"
-"12208","42.65331","-73.8102","Albany","NY","New York","TRUE","","21666","1993.4","36001","Albany","{""36001"": ""100""}","Albany","36001","FALSE","FALSE","America/New_York"
-"12209","42.63807","-73.7899","Albany","NY","New York","TRUE","","9978","1799.2","36001","Albany","{""36001"": ""100""}","Albany","36001","FALSE","FALSE","America/New_York"
-"12210","42.65996","-73.75818","Albany","NY","New York","TRUE","","9583","4209.0","36001","Albany","{""36001"": ""100""}","Albany","36001","FALSE","FALSE","America/New_York"
-"12211","42.70582","-73.76407","Albany","NY","New York","TRUE","","10990","535.5","36001","Albany","{""36001"": ""100""}","Albany","36001","FALSE","FALSE","America/New_York"
-"12222","42.68539","-73.82541","Albany","NY","New York","TRUE","","6198","4384.7","36001","Albany","{""36001"": ""100""}","Albany","36001","FALSE","FALSE","America/New_York"
-"12302","42.88182","-73.98204","Schenectady","NY","New York","TRUE","","27377","249.6","36093","Schenectady","{""36093"": ""98.34"", ""36091"": ""1.66""}","Schenectady|Saratoga","36093|36091","FALSE","FALSE","America/New_York"
-"12303","42.74956","-73.9246","Schenectady","NY","New York","TRUE","","28488","715.0","36093","Schenectady","{""36093"": ""65.31"", ""36001"": ""34.69""}","Schenectady|Albany","36093|36001","FALSE","FALSE","America/New_York"
-"12304","42.7741","-73.8973","Schenectady","NY","New York","TRUE","","22230","1258.9","36093","Schenectady","{""36093"": ""86.87"", ""36001"": ""13.13""}","Schenectady|Albany","36093|36001","FALSE","FALSE","America/New_York"
-"12305","42.81215","-73.95043","Schenectady","NY","New York","TRUE","","5519","1407.2","36093","Schenectady","{""36093"": ""100""}","Schenectady","36093","FALSE","FALSE","America/New_York"
-"12306","42.80481","-74.02857","Schenectady","NY","New York","TRUE","","26799","240.1","36093","Schenectady","{""36093"": ""97.06"", ""36001"": ""2.94""}","Schenectady|Albany","36093|36001","FALSE","FALSE","America/New_York"
-"12307","42.80503","-73.93364","Schenectady","NY","New York","TRUE","","7031","3831.9","36093","Schenectady","{""36093"": ""100""}","Schenectady","36093","FALSE","FALSE","America/New_York"
-"12308","42.82157","-73.91999","Schenectady","NY","New York","TRUE","","14699","2515.9","36093","Schenectady","{""36093"": ""100""}","Schenectady","36093","FALSE","FALSE","America/New_York"
-"12309","42.79915","-73.86951","Schenectady","NY","New York","TRUE","","30007","699.4","36093","Schenectady","{""36093"": ""85.1"", ""36001"": ""14.9""}","Schenectady|Albany","36093|36001","FALSE","FALSE","America/New_York"
-"12401","41.93558","-74.05278","Kingston","NY","New York","TRUE","","35192","232.5","36111","Ulster","{""36111"": ""100""}","Ulster","36111","FALSE","FALSE","America/New_York"
-"12404","41.81464","-74.23593","Accord","NY","New York","TRUE","","3334","36.1","36111","Ulster","{""36111"": ""100""}","Ulster","36111","FALSE","FALSE","America/New_York"
-"12405","42.32139","-74.08988","Acra","NY","New York","TRUE","","633","34.2","36039","Greene","{""36039"": ""100""}","Greene","36039","FALSE","FALSE","America/New_York"
-"12406","42.10202","-74.55241","Arkville","NY","New York","TRUE","","947","8.5","36025","Delaware","{""36025"": ""87"", ""36111"": ""13""}","Delaware|Ulster","36025|36111","FALSE","FALSE","America/New_York"
-"12407","42.31761","-74.35824","Ashland","NY","New York","TRUE","","165","18.9","36039","Greene","{""36039"": ""100""}","Greene","36039","FALSE","FALSE","America/New_York"
-"12409","42.04364","-74.16684","Bearsville","NY","New York","TRUE","","703","19.0","36111","Ulster","{""36111"": ""100""}","Ulster","36111","FALSE","FALSE","America/New_York"
-"12410","42.0699","-74.44976","Big Indian","NY","New York","TRUE","","370","3.5","36111","Ulster","{""36111"": ""100""}","Ulster","36111","FALSE","FALSE","America/New_York"
-"12411","41.87608","-74.04552","Bloomington","NY","New York","TRUE","","353","145.4","36111","Ulster","{""36111"": ""100""}","Ulster","36111","FALSE","FALSE","America/New_York"
-"12412","42.01273","-74.27957","Boiceville","NY","New York","TRUE","","473","30.1","36111","Ulster","{""36111"": ""100""}","Ulster","36111","FALSE","FALSE","America/New_York"
-"12413","42.31255","-74.02123","Cairo","NY","New York","TRUE","","2813","66.4","36039","Greene","{""36039"": ""100""}","Greene","36039","FALSE","FALSE","America/New_York"
-"12414","42.22399","-73.92037","Catskill","NY","New York","TRUE","","9979","64.6","36039","Greene","{""36039"": ""100""}","Greene","36039","FALSE","FALSE","America/New_York"
-"12416","42.10067","-74.28871","Chichester","NY","New York","TRUE","","341","25.9","36111","Ulster","{""36111"": ""100""}","Ulster","36111","FALSE","FALSE","America/New_York"
-"12417","41.90682","-73.98998","Connelly","NY","New York","TRUE","","421","515.2","36111","Ulster","{""36111"": ""100""}","Ulster","36111","FALSE","FALSE","America/New_York"
-"12418","42.35877","-74.16173","Cornwallville","NY","New York","TRUE","","567","15.8","36039","Greene","{""36039"": ""100""}","Greene","36039","FALSE","FALSE","America/New_York"
-"12419","41.85962","-74.10349","Cottekill","NY","New York","TRUE","","624","100.6","36111","Ulster","{""36111"": ""100""}","Ulster","36111","FALSE","FALSE","America/New_York"
-"12420","41.67113","-74.3793","Cragsmoor","NY","New York","TRUE","","242","22.5","36111","Ulster","{""36111"": ""100""}","Ulster","36111","FALSE","FALSE","America/New_York"
-"12421","42.2486","-74.54307","Denver","NY","New York","TRUE","","236","4.6","36025","Delaware","{""36025"": ""100""}","Delaware","36025","FALSE","FALSE","America/New_York"
-"12422","42.3926","-74.20334","Durham","NY","New York","TRUE","","353","13.4","36039","Greene","{""36039"": ""100""}","Greene","36039","FALSE","FALSE","America/New_York"
-"12423","42.37921","-74.10974","East Durham","NY","New York","TRUE","","1050","31.9","36039","Greene","{""36039"": ""100""}","Greene","36039","FALSE","FALSE","America/New_York"
-"12424","42.24686","-74.13529","East Jewett","NY","New York","TRUE","","239","5.2","36039","Greene","{""36039"": ""100""}","Greene","36039","FALSE","FALSE","America/New_York"
-"12427","42.14078","-74.13729","Elka Park","NY","New York","TRUE","","600","5.6","36039","Greene","{""36039"": ""100""}","Greene","36039","FALSE","FALSE","America/New_York"
-"12428","41.73903","-74.44489","Ellenville","NY","New York","TRUE","","6885","49.2","36111","Ulster","{""36111"": ""100""}","Ulster","36111","FALSE","FALSE","America/New_York"
-"12429","41.8291","-73.97495","Esopus","NY","New York","TRUE","","324","59.3","36111","Ulster","{""36111"": ""100""}","Ulster","36111","FALSE","FALSE","America/New_York"
-"12430","42.20346","-74.49959","Fleischmanns","NY","New York","TRUE","","1119","10.9","36025","Delaware","{""36025"": ""78.39"", ""36039"": ""21.61""}","Delaware|Greene","36025|36039","FALSE","FALSE","America/New_York"
-"12431","42.36032","-74.02069","Freehold","NY","New York","TRUE","","1120","28.0","36039","Greene","{""36039"": ""100""}","Greene","36039","FALSE","FALSE","America/New_York"
-"12432","42.04431","-73.94446","Glasco","NY","New York","TRUE","","225","145.1","36111","Ulster","{""36111"": ""100""}","Ulster","36111","FALSE","FALSE","America/New_York"
-"12433","42.00337","-74.15849","Glenford","NY","New York","TRUE","","579","58.5","36111","Ulster","{""36111"": ""100""}","Ulster","36111","FALSE","FALSE","America/New_York"
-"12434","42.36051","-74.50076","Grand Gorge","NY","New York","TRUE","","842","23.6","36025","Delaware","{""36025"": ""100""}","Delaware","36025","FALSE","FALSE","America/New_York"
-"12435","41.7288","-74.5187","Greenfield Park","NY","New York","TRUE","","250","9.7","36111","Ulster","{""36111"": ""100""}","Ulster","36111","FALSE","FALSE","America/New_York"
-"12436","42.19555","-74.07411","Haines Falls","NY","New York","TRUE","","94","2.4","36039","Greene","{""36039"": ""100""}","Greene","36039","FALSE","FALSE","America/New_York"
-"12438","42.20791","-74.60127","Halcottsville","NY","New York","TRUE","","31","27.3","36025","Delaware","{""36025"": ""100""}","Delaware","36025","FALSE","FALSE","America/New_York"
-"12439","42.29608","-74.18386","Hensonville","NY","New York","TRUE","","348","17.2","36039","Greene","{""36039"": ""100""}","Greene","36039","FALSE","FALSE","America/New_York"
-"12440","41.77871","-74.17726","High Falls","NY","New York","TRUE","","1997","33.4","36111","Ulster","{""36111"": ""100""}","Ulster","36111","FALSE","FALSE","America/New_York"
-"12441","42.1353","-74.50865","Highmount","NY","New York","TRUE","","83","5.1","36111","Ulster","{""36111"": ""58.77"", ""36025"": ""41.23""}","Ulster|Delaware","36111|36025","FALSE","FALSE","America/New_York"
-"12442","42.21526","-74.23674","Hunter","NY","New York","TRUE","","675","7.9","36039","Greene","{""36039"": ""100""}","Greene","36039","FALSE","FALSE","America/New_York"
-"12443","41.93397","-74.08537","Hurley","NY","New York","TRUE","","3317","71.1","36111","Ulster","{""36111"": ""100""}","Ulster","36111","FALSE","FALSE","America/New_York"
-"12444","42.26319","-74.29672","Jewett","NY","New York","TRUE","","567","14.2","36039","Greene","{""36039"": ""100""}","Greene","36039","FALSE","FALSE","America/New_York"
-"12446","41.80597","-74.32554","Kerhonkson","NY","New York","TRUE","","5063","28.8","36111","Ulster","{""36111"": ""100""}","Ulster","36111","FALSE","FALSE","America/New_York"
-"12448","42.07925","-74.1829","Lake Hill","NY","New York","TRUE","","413","13.7","36111","Ulster","{""36111"": ""100""}","Ulster","36111","FALSE","FALSE","America/New_York"
-"12449","41.99355","-73.9931","Lake Katrine","NY","New York","TRUE","","3436","366.4","36111","Ulster","{""36111"": ""100""}","Ulster","36111","FALSE","FALSE","America/New_York"
-"12450","42.13328","-74.24421","Lanesville","NY","New York","TRUE","","181","7.1","36039","Greene","{""36039"": ""100""}","Greene","36039","FALSE","FALSE","America/New_York"
-"12451","42.30526","-73.95016","Leeds","NY","New York","TRUE","","1531","50.1","36039","Greene","{""36039"": ""100""}","Greene","36039","FALSE","FALSE","America/New_York"
-"12452","42.25765","-74.36122","Lexington","NY","New York","TRUE","","275","12.4","36039","Greene","{""36039"": ""100""}","Greene","36039","FALSE","FALSE","America/New_York"
-"12453","42.09341","-73.93634","Malden On Hudson","NY","New York","TRUE","","222","173.7","36111","Ulster","{""36111"": ""100""}","Ulster","36111","FALSE","FALSE","America/New_York"
-"12454","42.28669","-74.15098","Maplecrest","NY","New York","TRUE","","366","12.7","36039","Greene","{""36039"": ""100""}","Greene","36039","FALSE","FALSE","America/New_York"
-"12455","42.13971","-74.65986","Margaretville","NY","New York","TRUE","","1755","8.8","36025","Delaware","{""36025"": ""97.38"", ""36111"": ""2.62""}","Delaware|Ulster","36025|36111","FALSE","FALSE","America/New_York"
-"12456","42.03317","-73.99706","Mount Marion","NY","New York","TRUE","","1123","802.6","36111","Ulster","{""36111"": ""100""}","Ulster","36111","FALSE","FALSE","America/New_York"
-"12457","42.04406","-74.2525","Mount Tremper","NY","New York","TRUE","","1070","29.6","36111","Ulster","{""36111"": ""100""}","Ulster","36111","FALSE","FALSE","America/New_York"
-"12458","41.81571","-74.41994","Napanoch","NY","New York","TRUE","","2778","33.2","36111","Ulster","{""36111"": ""95.76"", ""36105"": ""4.24""}","Ulster|Sullivan","36111|36105","FALSE","FALSE","America/New_York"
-"12459","42.23647","-74.68027","New Kingston","NY","New York","TRUE","","213","10.8","36025","Delaware","{""36025"": ""100""}","Delaware","36025","FALSE","FALSE","America/New_York"
-"12460","42.41081","-74.15606","Oak Hill","NY","New York","TRUE","","416","77.8","36039","Greene","{""36039"": ""100""}","Greene","36039","FALSE","FALSE","America/New_York"
-"12461","41.90889","-74.26928","Olivebridge","NY","New York","TRUE","","1654","26.7","36111","Ulster","{""36111"": ""100""}","Ulster","36111","FALSE","FALSE","America/New_York"
-"12463","42.19997","-74.01727","Palenville","NY","New York","TRUE","","1895","67.6","36039","Greene","{""36039"": ""100""}","Greene","36039","FALSE","FALSE","America/New_York"
-"12464","42.03513","-74.35126","Phoenicia","NY","New York","TRUE","","792","6.9","36111","Ulster","{""36111"": ""100""}","Ulster","36111","FALSE","FALSE","America/New_York"
-"12465","42.1531","-74.46732","Pine Hill","NY","New York","TRUE","","206","27.5","36111","Ulster","{""36111"": ""98.12"", ""36025"": ""1.88""}","Ulster|Delaware","36111|36025","FALSE","FALSE","America/New_York"
-"12466","41.90425","-73.97908","Port Ewen","NY","New York","TRUE","","2241","833.7","36111","Ulster","{""36111"": ""100""}","Ulster","36111","FALSE","FALSE","America/New_York"
-"12468","42.29895","-74.42302","Prattsville","NY","New York","TRUE","","998","8.8","36039","Greene","{""36039"": ""94.59"", ""36025"": ""5.41""}","Greene|Delaware","36039|36025","FALSE","FALSE","America/New_York"
-"12469","42.44715","-74.23917","Preston Hollow","NY","New York","TRUE","","607","6.9","36001","Albany","{""36001"": ""81.68"", ""36095"": ""13.74"", ""36039"": ""4.58""}","Albany|Schoharie|Greene","36001|36095|36039","FALSE","FALSE","America/New_York"
-"12470","42.29589","-74.07723","Purling","NY","New York","TRUE","","512","20.2","36039","Greene","{""36039"": ""100""}","Greene","36039","FALSE","FALSE","America/New_York"
-"12471","41.84147","-74.04122","Rifton","NY","New York","TRUE","","281","309.8","36111","Ulster","{""36111"": ""100""}","Ulster","36111","FALSE","FALSE","America/New_York"
-"12472","41.84608","-74.07873","Rosendale","NY","New York","TRUE","","1464","158.4","36111","Ulster","{""36111"": ""100""}","Ulster","36111","FALSE","FALSE","America/New_York"
-"12473","42.25818","-74.04101","Round Top","NY","New York","TRUE","","726","18.7","36039","Greene","{""36039"": ""100""}","Greene","36039","FALSE","FALSE","America/New_York"
-"12474","42.29729","-74.57932","Roxbury","NY","New York","TRUE","","1035","9.0","36025","Delaware","{""36025"": ""100""}","Delaware","36025","FALSE","FALSE","America/New_York"
-"12475","42.0152","-74.01543","Ruby","NY","New York","TRUE","","339","106.5","36111","Ulster","{""36111"": ""100""}","Ulster","36111","FALSE","FALSE","America/New_York"
-"12477","42.08592","-73.9998","Saugerties","NY","New York","TRUE","","18060","105.9","36111","Ulster","{""36111"": ""100""}","Ulster","36111","FALSE","FALSE","America/New_York"
-"12480","42.13631","-74.37742","Shandaken","NY","New York","TRUE","","588","6.7","36111","Ulster","{""36111"": ""89.75"", ""36039"": ""10.25""}","Ulster|Greene","36111|36039","FALSE","FALSE","America/New_York"
-"12481","41.98299","-74.22481","Shokan","NY","New York","TRUE","","1650","50.9","36111","Ulster","{""36111"": ""100""}","Ulster","36111","FALSE","FALSE","America/New_York"
-"12482","42.26813","-73.95546","South Cairo","NY","New York","TRUE","","196","34.2","36039","Greene","{""36039"": ""100""}","Greene","36039","FALSE","FALSE","America/New_York"
-"12483","41.67552","-74.42136","Spring Glen","NY","New York","TRUE","","267","31.1","36111","Ulster","{""36111"": ""78.76"", ""36105"": ""21.24""}","Ulster|Sullivan","36111|36105","FALSE","FALSE","America/New_York"
-"12484","41.87104","-74.17495","Stone Ridge","NY","New York","TRUE","","2612","42.4","36111","Ulster","{""36111"": ""100""}","Ulster","36111","FALSE","FALSE","America/New_York"
-"12485","42.2032","-74.14374","Tannersville","NY","New York","TRUE","","1256","57.8","36039","Greene","{""36039"": ""100""}","Greene","36039","FALSE","FALSE","America/New_York"
-"12486","41.83381","-74.06256","Tillson","NY","New York","TRUE","","1623","184.7","36111","Ulster","{""36111"": ""100""}","Ulster","36111","FALSE","FALSE","America/New_York"
-"12487","41.85934","-73.99538","Ulster Park","NY","New York","TRUE","","3370","82.9","36111","Ulster","{""36111"": ""100""}","Ulster","36111","FALSE","FALSE","America/New_York"
-"12489","41.75069","-74.35549","Wawarsing","NY","New York","TRUE","","1149","72.2","36111","Ulster","{""36111"": ""100""}","Ulster","36111","FALSE","FALSE","America/New_York"
-"12490","42.12466","-73.92605","West Camp","NY","New York","TRUE","","27","20.0","36111","Ulster","{""36111"": ""100""}","Ulster","36111","FALSE","FALSE","America/New_York"
-"12491","41.96747","-74.13696","West Hurley","NY","New York","TRUE","","1478","63.5","36111","Ulster","{""36111"": ""100""}","Ulster","36111","FALSE","FALSE","America/New_York"
-"12492","42.18491","-74.33575","West Kill","NY","New York","TRUE","","140","1.4","36039","Greene","{""36039"": ""100""}","Greene","36039","FALSE","FALSE","America/New_York"
-"12493","41.79614","-73.97687","West Park","NY","New York","TRUE","","128","7.2","36111","Ulster","{""36111"": ""100""}","Ulster","36111","FALSE","FALSE","America/New_York"
-"12494","41.9566","-74.29289","West Shokan","NY","New York","TRUE","","519","10.7","36111","Ulster","{""36111"": ""100""}","Ulster","36111","FALSE","FALSE","America/New_York"
-"12495","42.08489","-74.24067","Willow","NY","New York","TRUE","","131","5.5","36111","Ulster","{""36111"": ""100""}","Ulster","36111","FALSE","FALSE","America/New_York"
-"12496","42.32647","-74.27376","Windham","NY","New York","TRUE","","1456","11.9","36039","Greene","{""36039"": ""100""}","Greene","36039","FALSE","FALSE","America/New_York"
-"12498","42.04851","-74.10639","Woodstock","NY","New York","TRUE","","5045","89.4","36111","Ulster","{""36111"": ""100""}","Ulster","36111","FALSE","FALSE","America/New_York"
-"12501","41.85964","-73.55857","Amenia","NY","New York","TRUE","","2645","33.4","36027","Dutchess","{""36027"": ""100""}","Dutchess","36027","FALSE","FALSE","America/New_York"
-"12502","42.08515","-73.65507","Ancram","NY","New York","TRUE","","1138","13.4","36021","Columbia","{""36021"": ""100""}","Columbia","36021","FALSE","FALSE","America/New_York"
-"12503","42.0385","-73.58041","Ancramdale","NY","New York","TRUE","","573","10.5","36021","Columbia","{""36021"": ""100""}","Columbia","36021","FALSE","FALSE","America/New_York"
-"12504","42.02963","-73.91605","Annandale On Hudson","NY","New York","TRUE","","1494","392.5","36027","Dutchess","{""36027"": ""100""}","Dutchess","36027","FALSE","FALSE","America/New_York"
-"12507","42.00374","-73.92069","Barrytown","NY","New York","TRUE","","250","69.3","36027","Dutchess","{""36027"": ""100""}","Dutchess","36027","FALSE","FALSE","America/New_York"
-"12508","41.49675","-73.95384","Beacon","NY","New York","TRUE","","19825","525.6","36027","Dutchess","{""36027"": ""100""}","Dutchess","36027","FALSE","FALSE","America/New_York"
-"12512","41.55181","-73.96613","Chelsea","NY","New York","TRUE","","151","130.6","36027","Dutchess","{""36027"": ""100""}","Dutchess","36027","FALSE","FALSE","America/New_York"
-"12513","42.21761","-73.72778","Claverack","NY","New York","TRUE","","295","39.0","36021","Columbia","{""36021"": ""100""}","Columbia","36021","FALSE","FALSE","America/New_York"
-"12514","41.87279","-73.76292","Clinton Corners","NY","New York","TRUE","","2807","40.7","36027","Dutchess","{""36027"": ""100""}","Dutchess","36027","FALSE","FALSE","America/New_York"
-"12515","41.68301","-74.06266","Clintondale","NY","New York","TRUE","","1453","112.6","36111","Ulster","{""36111"": ""100""}","Ulster","36111","FALSE","FALSE","America/New_York"
-"12516","42.11175","-73.56537","Copake","NY","New York","TRUE","","1747","44.2","36021","Columbia","{""36021"": ""100""}","Columbia","36021","FALSE","FALSE","America/New_York"
-"12517","42.11828","-73.512","Copake Falls","NY","New York","TRUE","","501","18.5","36021","Columbia","{""36021"": ""100""}","Columbia","36021","FALSE","FALSE","America/New_York"
-"12518","41.41613","-74.03946","Cornwall","NY","New York","TRUE","","5732","223.1","36071","Orange","{""36071"": ""100""}","Orange","36071","FALSE","FALSE","America/New_York"
-"12520","41.43298","-74.00598","Cornwall On Hudson","NY","New York","TRUE","","2932","286.4","36071","Orange","{""36071"": ""100""}","Orange","36071","FALSE","FALSE","America/New_York"
-"12521","42.1701","-73.65029","Craryville","NY","New York","TRUE","","1349","15.8","36021","Columbia","{""36021"": ""100""}","Columbia","36021","FALSE","FALSE","America/New_York"
-"12522","41.72043","-73.59681","Dover Plains","NY","New York","TRUE","","4659","48.1","36027","Dutchess","{""36027"": ""100""}","Dutchess","36027","FALSE","FALSE","America/New_York"
-"12523","42.08684","-73.75327","Elizaville","NY","New York","TRUE","","1626","28.7","36021","Columbia","{""36021"": ""100""}","Columbia","36021","FALSE","FALSE","America/New_York"
-"12524","41.52964","-73.89257","Fishkill","NY","New York","TRUE","","15934","379.4","36027","Dutchess","{""36027"": ""100""}","Dutchess","36027","FALSE","FALSE","America/New_York"
-"12525","41.68638","-74.18568","Gardiner","NY","New York","TRUE","","2956","48.5","36111","Ulster","{""36111"": ""100""}","Ulster","36111","FALSE","FALSE","America/New_York"
-"12526","42.12185","-73.85885","Germantown","NY","New York","TRUE","","3622","43.7","36021","Columbia","{""36021"": ""100""}","Columbia","36021","FALSE","FALSE","America/New_York"
-"12527","41.51944","-73.93565","Glenham","NY","New York","TRUE","","0","0.0","36027","Dutchess","{""36027"": ""100""}","Dutchess","36027","FALSE","FALSE","America/New_York"
-"12528","41.71884","-74.00447","Highland","NY","New York","TRUE","","12797","119.8","36111","Ulster","{""36111"": ""100""}","Ulster","36111","FALSE","FALSE","America/New_York"
-"12529","42.21555","-73.53709","Hillsdale","NY","New York","TRUE","","2453","14.4","36021","Columbia","{""36021"": ""100""}","Columbia","36021","FALSE","FALSE","America/New_York"
-"12530","42.20743","-73.68788","Hollowville","NY","New York","TRUE","","61","68.0","36021","Columbia","{""36021"": ""100""}","Columbia","36021","FALSE","FALSE","America/New_York"
-"12531","41.5369","-73.66963","Holmes","NY","New York","TRUE","","3171","70.0","36027","Dutchess","{""36027"": ""81.89"", ""36079"": ""18.11""}","Dutchess|Putnam","36027|36079","FALSE","FALSE","America/New_York"
-"12533","41.56031","-73.79397","Hopewell Junction","NY","New York","TRUE","","25426","201.9","36027","Dutchess","{""36027"": ""99.78"", ""36079"": ""0.22""}","Dutchess|Putnam","36027|36079","FALSE","FALSE","America/New_York"
-"12534","42.22273","-73.75158","Hudson","NY","New York","TRUE","","18007","79.9","36021","Columbia","{""36021"": ""100""}","Columbia","36021","FALSE","FALSE","America/New_York"
-"12538","41.79248","-73.89308","Hyde Park","NY","New York","TRUE","","14081","206.1","36027","Dutchess","{""36027"": ""100""}","Dutchess","36027","FALSE","FALSE","America/New_York"
-"12540","41.6708","-73.7251","Lagrangeville","NY","New York","TRUE","","8248","93.5","36027","Dutchess","{""36027"": ""100""}","Dutchess","36027","FALSE","FALSE","America/New_York"
-"12542","41.60744","-73.99732","Marlboro","NY","New York","TRUE","","5622","151.6","36111","Ulster","{""36111"": ""95.89"", ""36071"": ""4.11""}","Ulster|Orange","36111|36071","FALSE","FALSE","America/New_York"
-"12543","41.49327","-74.17578","Maybrook","NY","New York","TRUE","","3535","118.8","36071","Orange","{""36071"": ""100""}","Orange","36071","FALSE","FALSE","America/New_York"
-"12545","41.79056","-73.67398","Millbrook","NY","New York","TRUE","","4674","33.3","36027","Dutchess","{""36027"": ""100""}","Dutchess","36027","FALSE","FALSE","America/New_York"
-"12546","41.96789","-73.5345","Millerton","NY","New York","TRUE","","2885","24.4","36027","Dutchess","{""36027"": ""93.75"", ""36021"": ""6.25""}","Dutchess|Columbia","36027|36021","FALSE","FALSE","America/New_York"
-"12547","41.65596","-73.98512","Milton","NY","New York","TRUE","","2855","106.5","36111","Ulster","{""36111"": ""100""}","Ulster","36111","FALSE","FALSE","America/New_York"
-"12548","41.65987","-74.10747","Modena","NY","New York","TRUE","","1306","85.9","36111","Ulster","{""36111"": ""100""}","Ulster","36111","FALSE","FALSE","America/New_York"
-"12549","41.53004","-74.25872","Montgomery","NY","New York","TRUE","","10915","108.6","36071","Orange","{""36071"": ""100""}","Orange","36071","FALSE","FALSE","America/New_York"
-"12550","41.5372","-74.05256","Newburgh","NY","New York","TRUE","","55149","613.2","36071","Orange","{""36071"": ""100""}","Orange","36071","FALSE","FALSE","America/New_York"
-"12553","41.45711","-74.07564","New Windsor","NY","New York","TRUE","","26674","417.5","36071","Orange","{""36071"": ""100""}","Orange","36071","FALSE","FALSE","America/New_York"
-"12561","41.75498","-74.09752","New Paltz","NY","New York","TRUE","","18713","121.4","36111","Ulster","{""36111"": ""100""}","Ulster","36111","FALSE","FALSE","America/New_York"
-"12563","41.49457","-73.58745","Patterson","NY","New York","TRUE","","8431","142.6","36079","Putnam","{""36079"": ""100""}","Putnam","36079","FALSE","FALSE","America/New_York"
-"12564","41.57751","-73.58674","Pawling","NY","New York","TRUE","","7549","71.7","36027","Dutchess","{""36027"": ""100""}","Dutchess","36027","FALSE","FALSE","America/New_York"
-"12565","42.24852","-73.6463","Philmont","NY","New York","TRUE","","1123","298.8","36021","Columbia","{""36021"": ""100""}","Columbia","36021","FALSE","FALSE","America/New_York"
-"12566","41.62101","-74.33126","Pine Bush","NY","New York","TRUE","","11571","82.2","36111","Ulster","{""36111"": ""50.34"", ""36071"": ""44.31"", ""36105"": ""5.35""}","Ulster|Orange|Sullivan","36111|36071|36105","FALSE","FALSE","America/New_York"
-"12567","41.98247","-73.64953","Pine Plains","NY","New York","TRUE","","2633","22.2","36027","Dutchess","{""36027"": ""85.6"", ""36021"": ""14.4""}","Dutchess|Columbia","36027|36021","FALSE","FALSE","America/New_York"
-"12569","41.73432","-73.79584","Pleasant Valley","NY","New York","TRUE","","10047","117.4","36027","Dutchess","{""36027"": ""100""}","Dutchess","36027","FALSE","FALSE","America/New_York"
-"12570","41.61935","-73.67232","Poughquag","NY","New York","TRUE","","6827","122.7","36027","Dutchess","{""36027"": ""100""}","Dutchess","36027","FALSE","FALSE","America/New_York"
-"12571","42.0057","-73.80906","Red Hook","NY","New York","TRUE","","9984","66.6","36027","Dutchess","{""36027"": ""92.73"", ""36021"": ""7.27""}","Dutchess|Columbia","36027|36021","FALSE","FALSE","America/New_York"
-"12572","41.92526","-73.87204","Rhinebeck","NY","New York","TRUE","","8892","67.9","36027","Dutchess","{""36027"": ""100""}","Dutchess","36027","FALSE","FALSE","America/New_York"
-"12574","41.91773","-73.94563","Rhinecliff","NY","New York","TRUE","","388","297.4","36027","Dutchess","{""36027"": ""100""}","Dutchess","36027","FALSE","FALSE","America/New_York"
-"12575","41.47844","-74.15408","Rock Tavern","NY","New York","TRUE","","2308","90.1","36071","Orange","{""36071"": ""100""}","Orange","36071","FALSE","FALSE","America/New_York"
-"12577","41.42586","-74.12296","Salisbury Mills","NY","New York","TRUE","","1783","117.2","36071","Orange","{""36071"": ""100""}","Orange","36071","FALSE","FALSE","America/New_York"
-"12578","41.80843","-73.79486","Salt Point","NY","New York","TRUE","","2123","52.4","36027","Dutchess","{""36027"": ""100""}","Dutchess","36027","FALSE","FALSE","America/New_York"
-"12580","41.85424","-73.87222","Staatsburg","NY","New York","TRUE","","4479","80.2","36027","Dutchess","{""36027"": ""100""}","Dutchess","36027","FALSE","FALSE","America/New_York"
-"12581","41.90699","-73.69347","Stanfordville","NY","New York","TRUE","","2358","22.5","36027","Dutchess","{""36027"": ""100""}","Dutchess","36027","FALSE","FALSE","America/New_York"
-"12582","41.54448","-73.73509","Stormville","NY","New York","TRUE","","6423","194.1","36027","Dutchess","{""36027"": ""99.53"", ""36079"": ""0.47""}","Dutchess|Putnam","36027|36079","FALSE","FALSE","America/New_York"
-"12583","42.06131","-73.86652","Tivoli","NY","New York","TRUE","","2269","67.3","36027","Dutchess","{""36027"": ""69.2"", ""36021"": ""30.8""}","Dutchess|Columbia","36027|36021","FALSE","FALSE","America/New_York"
-"12585","41.72485","-73.7009","Verbank","NY","New York","TRUE","","879","68.9","36027","Dutchess","{""36027"": ""100""}","Dutchess","36027","FALSE","FALSE","America/New_York"
-"12586","41.56504","-74.17331","Walden","NY","New York","TRUE","","12246","199.4","36071","Orange","{""36071"": ""99.9"", ""36111"": ""0.1""}","Orange|Ulster","36071|36111","FALSE","FALSE","America/New_York"
-"12589","41.62667","-74.15905","Wallkill","NY","New York","TRUE","","16882","112.3","36111","Ulster","{""36111"": ""80.31"", ""36071"": ""19.69""}","Ulster|Orange","36111|36071","FALSE","FALSE","America/New_York"
-"12590","41.59496","-73.88774","Wappingers Falls","NY","New York","TRUE","","34910","391.2","36027","Dutchess","{""36027"": ""100""}","Dutchess","36027","FALSE","FALSE","America/New_York"
-"12592","41.79141","-73.55412","Wassaic","NY","New York","TRUE","","1453","29.9","36027","Dutchess","{""36027"": ""100""}","Dutchess","36027","FALSE","FALSE","America/New_York"
-"12594","41.6684","-73.55016","Wingdale","NY","New York","TRUE","","4332","69.5","36027","Dutchess","{""36027"": ""100""}","Dutchess","36027","FALSE","FALSE","America/New_York"
-"12601","41.70358","-73.91165","Poughkeepsie","NY","New York","TRUE","","41392","849.5","36027","Dutchess","{""36027"": ""100""}","Dutchess","36027","FALSE","FALSE","America/New_York"
-"12603","41.67822","-73.86547","Poughkeepsie","NY","New York","TRUE","","42540","508.2","36027","Dutchess","{""36027"": ""100""}","Dutchess","36027","FALSE","FALSE","America/New_York"
-"12604","41.68846","-73.89206","Poughkeepsie","NY","New York","TRUE","","591","2200.2","36027","Dutchess","{""36027"": ""100""}","Dutchess","36027","FALSE","FALSE","America/New_York"
-"12701","41.64914","-74.70027","Monticello","NY","New York","TRUE","","11526","77.4","36105","Sullivan","{""36105"": ""100""}","Sullivan","36105","FALSE","FALSE","America/New_York"
-"12719","41.48855","-74.91187","Barryville","NY","New York","TRUE","","1145","25.7","36105","Sullivan","{""36105"": ""100""}","Sullivan","36105","FALSE","FALSE","America/New_York"
-"12720","41.65846","-74.90424","Bethel","NY","New York","TRUE","","158","4.7","36105","Sullivan","{""36105"": ""100""}","Sullivan","36105","FALSE","FALSE","America/New_York"
-"12721","41.56748","-74.42892","Bloomingburg","NY","New York","TRUE","","6387","97.3","36105","Sullivan","{""36105"": ""76.69"", ""36071"": ""23.31""}","Sullivan|Orange","36105|36071","FALSE","FALSE","America/New_York"
-"12722","41.59064","-74.37424","Burlingham","NY","New York","TRUE","","85","117.9","36105","Sullivan","{""36105"": ""100""}","Sullivan","36105","FALSE","FALSE","America/New_York"
-"12723","41.77568","-75.02832","Callicoon","NY","New York","TRUE","","1625","19.8","36105","Sullivan","{""36105"": ""100""}","Sullivan","36105","FALSE","FALSE","America/New_York"
-"12724","41.85412","-74.9339","Callicoon Center","NY","New York","TRUE","","255","13.0","36105","Sullivan","{""36105"": ""100""}","Sullivan","36105","FALSE","FALSE","America/New_York"
-"12725","41.96001","-74.54538","Claryville","NY","New York","TRUE","","119","0.7","36111","Ulster","{""36111"": ""71.12"", ""36105"": ""28.88""}","Ulster|Sullivan","36111|36105","FALSE","FALSE","America/New_York"
-"12726","41.69411","-74.97726","Cochecton","NY","New York","TRUE","","1222","16.1","36105","Sullivan","{""36105"": ""100""}","Sullivan","36105","FALSE","FALSE","America/New_York"
-"12729","41.47624","-74.6244","Cuddebackville","NY","New York","TRUE","","1797","31.3","36071","Orange","{""36071"": ""95.09"", ""36105"": ""4.91""}","Orange|Sullivan","36071|36105","FALSE","FALSE","America/New_York"
-"12732","41.5627","-74.87396","Eldred","NY","New York","TRUE","","516","7.9","36105","Sullivan","{""36105"": ""100""}","Sullivan","36105","FALSE","FALSE","America/New_York"
-"12733","41.73198","-74.60978","Fallsburg","NY","New York","TRUE","","1367","103.6","36105","Sullivan","{""36105"": ""100""}","Sullivan","36105","FALSE","FALSE","America/New_York"
-"12734","41.73304","-74.75093","Ferndale","NY","New York","TRUE","","890","24.9","36105","Sullivan","{""36105"": ""100""}","Sullivan","36105","FALSE","FALSE","America/New_York"
-"12736","41.85536","-75.03209","Fremont Center","NY","New York","TRUE","","46","2.9","36105","Sullivan","{""36105"": ""100""}","Sullivan","36105","FALSE","FALSE","America/New_York"
-"12737","41.50471","-74.80052","Glen Spey","NY","New York","TRUE","","1963","21.2","36105","Sullivan","{""36105"": ""100""}","Sullivan","36105","FALSE","FALSE","America/New_York"
-"12738","41.65611","-74.57099","Glen Wild","NY","New York","TRUE","","304","17.9","36105","Sullivan","{""36105"": ""100""}","Sullivan","36105","FALSE","FALSE","America/New_York"
-"12740","41.89428","-74.46984","Grahamsville","NY","New York","TRUE","","2035","10.6","36105","Sullivan","{""36105"": ""82.13"", ""36111"": ""17.87""}","Sullivan|Ulster","36105|36111","FALSE","FALSE","America/New_York"
-"12741","41.84156","-75.08108","Hankins","NY","New York","TRUE","","214","10.0","36105","Sullivan","{""36105"": ""100""}","Sullivan","36105","FALSE","FALSE","America/New_York"
-"12742","41.71931","-74.7219","Harris","NY","New York","TRUE","","102","18.3","36105","Sullivan","{""36105"": ""100""}","Sullivan","36105","FALSE","FALSE","America/New_York"
-"12743","41.54276","-74.8477","Highland Lake","NY","New York","TRUE","","420","19.8","36105","Sullivan","{""36105"": ""100""}","Sullivan","36105","FALSE","FALSE","America/New_York"
-"12745","41.78338","-75.02464","Hortonville","NY","New York","TRUE","","100","24.0","36105","Sullivan","{""36105"": ""100""}","Sullivan","36105","FALSE","FALSE","America/New_York"
-"12746","41.44137","-74.66427","Huguenot","NY","New York","TRUE","","948","25.8","36071","Orange","{""36071"": ""100""}","Orange","36071","FALSE","FALSE","America/New_York"
-"12747","41.76737","-74.66463","Hurleyville","NY","New York","TRUE","","2035","56.3","36105","Sullivan","{""36105"": ""100""}","Sullivan","36105","FALSE","FALSE","America/New_York"
-"12748","41.77543","-74.92349","Jeffersonville","NY","New York","TRUE","","2215","39.0","36105","Sullivan","{""36105"": ""100""}","Sullivan","36105","FALSE","FALSE","America/New_York"
-"12749","41.69466","-74.83671","Kauneonga Lake","NY","New York","TRUE","","227","29.8","36105","Sullivan","{""36105"": ""100""}","Sullivan","36105","FALSE","FALSE","America/New_York"
-"12750","41.73212","-74.95709","Kenoza Lake","NY","New York","TRUE","","326","29.6","36105","Sullivan","{""36105"": ""100""}","Sullivan","36105","FALSE","FALSE","America/New_York"
-"12751","41.69363","-74.66427","Kiamesha Lake","NY","New York","TRUE","","1152","130.2","36105","Sullivan","{""36105"": ""100""}","Sullivan","36105","FALSE","FALSE","America/New_York"
-"12752","41.68243","-74.98832","Lake Huntington","NY","New York","TRUE","","270","60.2","36105","Sullivan","{""36105"": ""100""}","Sullivan","36105","FALSE","FALSE","America/New_York"
-"12754","41.79843","-74.73685","Liberty","NY","New York","TRUE","","6602","95.9","36105","Sullivan","{""36105"": ""100""}","Sullivan","36105","FALSE","FALSE","America/New_York"
-"12758","41.94576","-74.74555","Livingston Manor","NY","New York","TRUE","","3835","9.7","36105","Sullivan","{""36105"": ""97.85"", ""36111"": ""1.95"", ""36025"": ""0.2""}","Sullivan|Ulster|Delaware","36105|36111|36025","FALSE","FALSE","America/New_York"
-"12759","41.77915","-74.65336","Loch Sheldrake","NY","New York","TRUE","","2058","128.5","36105","Sullivan","{""36105"": ""100""}","Sullivan","36105","FALSE","FALSE","America/New_York"
-"12760","41.90018","-75.10893","Long Eddy","NY","New York","TRUE","","514","4.7","36025","Delaware","{""36025"": ""55.81"", ""36105"": ""44.19""}","Delaware|Sullivan","36025|36105","FALSE","FALSE","America/New_York"
-"12762","41.66892","-74.79152","Mongaup Valley","NY","New York","TRUE","","545","33.2","36105","Sullivan","{""36105"": ""100""}","Sullivan","36105","FALSE","FALSE","America/New_York"
-"12763","41.67987","-74.52305","Mountain Dale","NY","New York","TRUE","","628","17.0","36105","Sullivan","{""36105"": ""100""}","Sullivan","36105","FALSE","FALSE","America/New_York"
-"12764","41.59528","-74.98458","Narrowsburg","NY","New York","TRUE","","1650","10.7","36105","Sullivan","{""36105"": ""100""}","Sullivan","36105","FALSE","FALSE","America/New_York"
-"12765","41.85542","-74.61939","Neversink","NY","New York","TRUE","","951","29.4","36105","Sullivan","{""36105"": ""100""}","Sullivan","36105","FALSE","FALSE","America/New_York"
-"12766","41.81153","-74.98028","North Branch","NY","New York","TRUE","","364","17.5","36105","Sullivan","{""36105"": ""100""}","Sullivan","36105","FALSE","FALSE","America/New_York"
-"12767","41.8414","-75.00261","Obernburg","NY","New York","TRUE","","140","18.3","36105","Sullivan","{""36105"": ""100""}","Sullivan","36105","FALSE","FALSE","America/New_York"
-"12768","41.87132","-74.71587","Parksville","NY","New York","TRUE","","867","9.6","36105","Sullivan","{""36105"": ""100""}","Sullivan","36105","FALSE","FALSE","America/New_York"
-"12769","41.65793","-74.46733","Phillipsport","NY","New York","TRUE","","332","26.0","36105","Sullivan","{""36105"": ""100""}","Sullivan","36105","FALSE","FALSE","America/New_York"
-"12770","41.44786","-74.85422","Pond Eddy","NY","New York","TRUE","","246","21.1","36105","Sullivan","{""36105"": ""100""}","Sullivan","36105","FALSE","FALSE","America/New_York"
-"12771","41.3744","-74.62464","Port Jervis","NY","New York","TRUE","","14788","164.9","36071","Orange","{""36071"": ""100""}","Orange","36071","FALSE","FALSE","America/New_York"
-"12775","41.61565","-74.59273","Rock Hill","NY","New York","TRUE","","1845","68.0","36105","Sullivan","{""36105"": ""100""}","Sullivan","36105","FALSE","FALSE","America/New_York"
-"12776","41.96089","-74.93463","Roscoe","NY","New York","TRUE","","2078","7.3","36105","Sullivan","{""36105"": ""67.11"", ""36025"": ""32.89""}","Sullivan|Delaware","36105|36025","FALSE","FALSE","America/New_York"
-"12777","41.54832","-74.69615","Forestburgh","NY","New York","TRUE","","1005","7.4","36105","Sullivan","{""36105"": ""100""}","Sullivan","36105","FALSE","FALSE","America/New_York"
-"12778","41.64225","-74.80929","Smallwood","NY","New York","TRUE","","627","42.4","36105","Sullivan","{""36105"": ""100""}","Sullivan","36105","FALSE","FALSE","America/New_York"
-"12779","41.70275","-74.63167","South Fallsburg","NY","New York","TRUE","","1930","86.8","36105","Sullivan","{""36105"": ""100""}","Sullivan","36105","FALSE","FALSE","America/New_York"
-"12780","41.44432","-74.72128","Sparrow Bush","NY","New York","TRUE","","2206","35.7","36071","Orange","{""36071"": ""98.14"", ""36105"": ""1.86""}","Orange|Sullivan","36071|36105","FALSE","FALSE","America/New_York"
-"12781","41.6197","-74.46633","Summitville","NY","New York","TRUE","","278","25.2","36105","Sullivan","{""36105"": ""100""}","Sullivan","36105","FALSE","FALSE","America/New_York"
-"12783","41.74096","-74.83629","Swan Lake","NY","New York","TRUE","","2048","23.8","36105","Sullivan","{""36105"": ""100""}","Sullivan","36105","FALSE","FALSE","America/New_York"
-"12784","41.66983","-74.62598","Thompsonville","NY","New York","TRUE","","44","7.5","36105","Sullivan","{""36105"": ""100""}","Sullivan","36105","FALSE","FALSE","America/New_York"
-"12785","41.52529","-74.56984","Westbrookville","NY","New York","TRUE","","953","22.1","36105","Sullivan","{""36105"": ""51.37"", ""36071"": ""48.63""}","Sullivan|Orange","36105|36071","FALSE","FALSE","America/New_York"
-"12786","41.6405","-74.85503","White Lake","NY","New York","TRUE","","354","9.1","36105","Sullivan","{""36105"": ""100""}","Sullivan","36105","FALSE","FALSE","America/New_York"
-"12787","41.79796","-74.8353","White Sulphur Springs","NY","New York","TRUE","","322","35.4","36105","Sullivan","{""36105"": ""100""}","Sullivan","36105","FALSE","FALSE","America/New_York"
-"12788","41.7894","-74.58833","Woodbourne","NY","New York","TRUE","","2980","49.0","36105","Sullivan","{""36105"": ""100""}","Sullivan","36105","FALSE","FALSE","America/New_York"
-"12789","41.70682","-74.57042","Woodridge","NY","New York","TRUE","","2081","83.8","36105","Sullivan","{""36105"": ""100""}","Sullivan","36105","FALSE","FALSE","America/New_York"
-"12790","41.59141","-74.51581","Wurtsboro","NY","New York","TRUE","","4058","35.3","36105","Sullivan","{""36105"": ""100""}","Sullivan","36105","FALSE","FALSE","America/New_York"
-"12791","41.81225","-74.89007","Youngsville","NY","New York","TRUE","","523","30.8","36105","Sullivan","{""36105"": ""100""}","Sullivan","36105","FALSE","FALSE","America/New_York"
-"12792","41.51836","-74.94767","Yulan","NY","New York","TRUE","","272","31.0","36105","Sullivan","{""36105"": ""100""}","Sullivan","36105","FALSE","FALSE","America/New_York"
-"12801","43.31142","-73.64489","Glens Falls","NY","New York","TRUE","","14358","1404.0","36113","Warren","{""36113"": ""100""}","Warren","36113","FALSE","FALSE","America/New_York"
-"12803","43.28938","-73.62995","South Glens Falls","NY","New York","TRUE","","8357","545.2","36091","Saratoga","{""36091"": ""100""}","Saratoga","36091","FALSE","FALSE","America/New_York"
-"12804","43.33891","-73.68408","Queensbury","NY","New York","TRUE","","26187","190.5","36113","Warren","{""36113"": ""99.85"", ""36115"": ""0.15""}","Warren|Washington","36113|36115","FALSE","FALSE","America/New_York"
-"12808","43.75116","-73.72811","Adirondack","NY","New York","TRUE","","269","4.7","36113","Warren","{""36113"": ""99.35"", ""36031"": ""0.65""}","Warren|Essex","36113|36031","FALSE","FALSE","America/New_York"
-"12809","43.2383","-73.46344","Argyle","NY","New York","TRUE","","3612","27.5","36115","Washington","{""36115"": ""100""}","Washington","36115","FALSE","FALSE","America/New_York"
-"12810","43.49698","-74.01049","Athol","NY","New York","TRUE","","671","3.9","36113","Warren","{""36113"": ""100""}","Warren","36113","FALSE","FALSE","America/New_York"
-"12811","43.60546","-74.02832","Bakers Mills","NY","New York","TRUE","","91","20.4","36113","Warren","{""36113"": ""100""}","Warren","36113","FALSE","FALSE","America/New_York"
-"12812","43.8721","-74.41197","Blue Mountain Lake","NY","New York","TRUE","","143","0.9","36041","Hamilton","{""36041"": ""100""}","Hamilton","36041","FALSE","FALSE","America/New_York"
-"12814","43.61048","-73.64715","Bolton Landing","NY","New York","TRUE","","1284","10.9","36113","Warren","{""36113"": ""100""}","Warren","36113","FALSE","FALSE","America/New_York"
-"12815","43.69032","-73.69708","Brant Lake","NY","New York","TRUE","","1065","11.2","36113","Warren","{""36113"": ""100""}","Warren","36113","FALSE","FALSE","America/New_York"
-"12816","43.04807","-73.37477","Cambridge","NY","New York","TRUE","","4371","26.7","36115","Washington","{""36115"": ""100""}","Washington","36115","FALSE","FALSE","America/New_York"
-"12817","43.63355","-73.82515","Chestertown","NY","New York","TRUE","","1905","13.7","36113","Warren","{""36113"": ""100""}","Warren","36113","FALSE","FALSE","America/New_York"
-"12819","43.59842","-73.47914","Clemons","NY","New York","TRUE","","269","3.6","36115","Washington","{""36115"": ""100""}","Washington","36115","FALSE","FALSE","America/New_York"
-"12821","43.4587","-73.41288","Comstock","NY","New York","TRUE","","2869","199.7","36115","Washington","{""36115"": ""100""}","Washington","36115","FALSE","FALSE","America/New_York"
-"12822","43.2421","-73.88798","Corinth","NY","New York","TRUE","","6060","35.5","36091","Saratoga","{""36091"": ""100""}","Saratoga","36091","FALSE","FALSE","America/New_York"
-"12823","43.18178","-73.40762","Cossayuna","NY","New York","TRUE","","227","20.6","36115","Washington","{""36115"": ""100""}","Washington","36115","FALSE","FALSE","America/New_York"
-"12824","43.51637","-73.70976","Diamond Point","NY","New York","TRUE","","1036","26.4","36113","Warren","{""36113"": ""100""}","Warren","36113","FALSE","FALSE","America/New_York"
-"12827","43.44843","-73.51224","Fort Ann","NY","New York","TRUE","","3622","11.3","36115","Washington","{""36115"": ""100""}","Washington","36115","FALSE","FALSE","America/New_York"
-"12828","43.25509","-73.56407","Fort Edward","NY","New York","TRUE","","9481","79.1","36115","Washington","{""36115"": ""60.94"", ""36091"": ""39.06""}","Washington|Saratoga","36115|36091","FALSE","FALSE","America/New_York"
-"12831","43.19523","-73.68822","Gansevoort","NY","New York","TRUE","","16517","94.9","36091","Saratoga","{""36091"": ""100""}","Saratoga","36091","FALSE","FALSE","America/New_York"
-"12832","43.37072","-73.31797","Granville","NY","New York","TRUE","","6502","31.2","36115","Washington","{""36115"": ""100""}","Washington","36115","FALSE","FALSE","America/New_York"
-"12833","43.14011","-73.83972","Greenfield Center","NY","New York","TRUE","","4134","45.3","36091","Saratoga","{""36091"": ""100""}","Saratoga","36091","FALSE","FALSE","America/New_York"
-"12834","43.0947","-73.50304","Greenwich","NY","New York","TRUE","","6665","29.7","36115","Washington","{""36115"": ""100""}","Washington","36115","FALSE","FALSE","America/New_York"
-"12835","43.33208","-74.0037","Hadley","NY","New York","TRUE","","2456","9.7","36091","Saratoga","{""36091"": ""98.16"", ""36113"": ""1.84""}","Saratoga|Warren","36091|36113","FALSE","FALSE","America/New_York"
-"12836","43.74966","-73.56841","Hague","NY","New York","TRUE","","582","5.1","36113","Warren","{""36113"": ""97.74"", ""36031"": ""2.26""}","Warren|Essex","36113|36031","FALSE","FALSE","America/New_York"
-"12837","43.50881","-73.267","Hampton","NY","New York","TRUE","","1142","29.8","36115","Washington","{""36115"": ""100""}","Washington","36115","FALSE","FALSE","America/New_York"
-"12838","43.34237","-73.40811","Hartford","NY","New York","TRUE","","555","42.2","36115","Washington","{""36115"": ""100""}","Washington","36115","FALSE","FALSE","America/New_York"
-"12839","43.3472","-73.55346","Hudson Falls","NY","New York","TRUE","","12838","152.3","36115","Washington","{""36115"": ""100""}","Washington","36115","FALSE","FALSE","America/New_York"
-"12841","43.63582","-73.50158","Huletts Landing","NY","New York","TRUE","","165","3.8","36115","Washington","{""36115"": ""100""}","Washington","36115","FALSE","FALSE","America/New_York"
-"12842","43.75918","-74.29218","Indian Lake","NY","New York","TRUE","","797","1.6","36041","Hamilton","{""36041"": ""100""}","Hamilton","36041","FALSE","FALSE","America/New_York"
-"12843","43.57505","-74.00429","Johnsburg","NY","New York","TRUE","","547","3.6","36113","Warren","{""36113"": ""100""}","Warren","36113","FALSE","FALSE","America/New_York"
-"12844","43.48947","-73.62118","Kattskill Bay","NY","New York","TRUE","","250","35.3","36115","Washington","{""36115"": ""97.99"", ""36113"": ""2.01""}","Washington|Warren","36115|36113","FALSE","FALSE","America/New_York"
-"12845","43.42409","-73.7133","Lake George","NY","New York","TRUE","","4570","39.9","36113","Warren","{""36113"": ""100""}","Warren","36113","FALSE","FALSE","America/New_York"
-"12846","43.34418","-73.80804","Lake Luzerne","NY","New York","TRUE","","3249","21.6","36113","Warren","{""36113"": ""100""}","Warren","36113","FALSE","FALSE","America/New_York"
-"12847","43.99912","-74.58741","Long Lake","NY","New York","TRUE","","375","0.3","36041","Hamilton","{""36041"": ""99.67"", ""36089"": ""0.33""}","Hamilton|St. Lawrence","36041|36089","FALSE","FALSE","America/New_York"
-"12849","43.44758","-73.29857","Middle Granville","NY","New York","TRUE","","297","42.2","36115","Washington","{""36115"": ""100""}","Washington","36115","FALSE","FALSE","America/New_York"
-"12850","43.10704","-73.98352","Middle Grove","NY","New York","TRUE","","2887","23.8","36091","Saratoga","{""36091"": ""100""}","Saratoga","36091","FALSE","FALSE","America/New_York"
-"12851","43.85581","-74.04157","Minerva","NY","New York","TRUE","","394","1.4","36031","Essex","{""36031"": ""100""}","Essex","36031","FALSE","FALSE","America/New_York"
-"12852","43.94558","-74.16086","Newcomb","NY","New York","TRUE","","375","1.2","36031","Essex","{""36031"": ""100""}","Essex","36031","FALSE","FALSE","America/New_York"
-"12853","43.68126","-74.0086","North Creek","NY","New York","TRUE","","1836","8.1","36113","Warren","{""36113"": ""96.72"", ""36031"": ""3.28""}","Warren|Essex","36113|36031","FALSE","FALSE","America/New_York"
-"12855","44.00199","-73.79646","North Hudson","NY","New York","TRUE","","210","0.4","36031","Essex","{""36031"": ""100""}","Essex","36031","FALSE","FALSE","America/New_York"
-"12856","43.65071","-74.14883","North River","NY","New York","TRUE","","218","1.3","36113","Warren","{""36113"": ""100""}","Warren","36113","FALSE","FALSE","America/New_York"
-"12857","43.82268","-73.91002","Olmstedville","NY","New York","TRUE","","685","6.2","36031","Essex","{""36031"": ""90.36"", ""36113"": ""9.64""}","Essex|Warren","36031|36113","FALSE","FALSE","America/New_York"
-"12858","43.90278","-73.6729","Paradox","NY","New York","TRUE","","116","4.6","36031","Essex","{""36031"": ""100""}","Essex","36031","FALSE","FALSE","America/New_York"
-"12859","43.16697","-73.90979","Porter Corners","NY","New York","TRUE","","2617","45.9","36091","Saratoga","{""36091"": ""100""}","Saratoga","36091","FALSE","FALSE","America/New_York"
-"12860","43.72556","-73.80778","Pottersville","NY","New York","TRUE","","526","12.6","36113","Warren","{""36113"": ""100""}","Warren","36113","FALSE","FALSE","America/New_York"
-"12861","43.74971","-73.41912","Putnam Station","NY","New York","TRUE","","627","7.4","36115","Washington","{""36115"": ""100""}","Washington","36115","FALSE","FALSE","America/New_York"
-"12862","43.67954","-73.91148","Riparius","NY","New York","TRUE","","0","0.0","36113","Warren","{""36113"": ""100""}","Warren","36113","FALSE","FALSE","America/New_York"
-"12863","43.06037","-73.93194","Rock City Falls","NY","New York","TRUE","","835","89.8","36091","Saratoga","{""36091"": ""100""}","Saratoga","36091","FALSE","FALSE","America/New_York"
-"12864","43.72753","-74.30522","Sabael","NY","New York","TRUE","","22","40.4","36041","Hamilton","{""36041"": ""100""}","Hamilton","36041","FALSE","FALSE","America/New_York"
-"12865","43.2142","-73.34102","Salem","NY","New York","TRUE","","3551","19.0","36115","Washington","{""36115"": ""100""}","Washington","36115","FALSE","FALSE","America/New_York"
-"12866","43.07079","-73.74082","Saratoga Springs","NY","New York","TRUE","","39689","228.7","36091","Saratoga","{""36091"": ""100""}","Saratoga","36091","FALSE","FALSE","America/New_York"
-"12870","43.84235","-73.75409","Schroon Lake","NY","New York","TRUE","","1816","6.6","36031","Essex","{""36031"": ""97.95"", ""36113"": ""2.05""}","Essex|Warren","36031|36113","FALSE","FALSE","America/New_York"
-"12871","43.08916","-73.61351","Schuylerville","NY","New York","TRUE","","4418","57.3","36091","Saratoga","{""36091"": ""100""}","Saratoga","36091","FALSE","FALSE","America/New_York"
-"12872","43.87716","-73.72994","Severance","NY","New York","TRUE","","40","50.7","36031","Essex","{""36031"": ""100""}","Essex","36031","FALSE","FALSE","America/New_York"
-"12873","43.11853","-73.3068","Shushan","NY","New York","TRUE","","863","15.8","36115","Washington","{""36115"": ""100""}","Washington","36115","FALSE","FALSE","America/New_York"
-"12874","43.6905","-73.54806","Silver Bay","NY","New York","TRUE","","156","2.8","36113","Warren","{""36113"": ""100""}","Warren","36113","FALSE","FALSE","America/New_York"
-"12878","43.42908","-74.0268","Stony Creek","NY","New York","TRUE","","624","2.8","36113","Warren","{""36113"": ""100""}","Warren","36113","FALSE","FALSE","America/New_York"
-"12883","43.85227","-73.50591","Ticonderoga","NY","New York","TRUE","","4845","23.4","36031","Essex","{""36031"": ""100""}","Essex","36031","FALSE","FALSE","America/New_York"
-"12884","43.08837","-73.59124","Victory Mills","NY","New York","TRUE","","585","453.4","36091","Saratoga","{""36091"": ""100""}","Saratoga","36091","FALSE","FALSE","America/New_York"
-"12885","43.52946","-73.8168","Warrensburg","NY","New York","TRUE","","4410","23.7","36113","Warren","{""36113"": ""100""}","Warren","36113","FALSE","FALSE","America/New_York"
-"12886","43.66527","-73.92998","Wevertown","NY","New York","TRUE","","244","6.5","36113","Warren","{""36113"": ""100""}","Warren","36113","FALSE","FALSE","America/New_York"
-"12887","43.53952","-73.37118","Whitehall","NY","New York","TRUE","","4745","21.9","36115","Washington","{""36115"": ""100""}","Washington","36115","FALSE","FALSE","America/New_York"
-"12901","44.70382","-73.47382","Plattsburgh","NY","New York","TRUE","","33312","169.3","36019","Clinton","{""36019"": ""100""}","Clinton","36019","FALSE","FALSE","America/New_York"
-"12903","44.68041","-73.44692","Plattsburgh","NY","New York","TRUE","","1283","857.4","36019","Clinton","{""36019"": ""100""}","Clinton","36019","FALSE","FALSE","America/New_York"
-"12910","44.85607","-73.64077","Altona","NY","New York","TRUE","","2183","13.0","36019","Clinton","{""36019"": ""100""}","Clinton","36019","FALSE","FALSE","America/New_York"
-"12911","44.51911","-73.46529","Keeseville","NY","New York","TRUE","","0","0.0","36019","Clinton","{""36019"": ""100""}","Clinton","36019","FALSE","FALSE","America/New_York"
-"12912","44.46217","-73.74699","Au Sable Forks","NY","New York","TRUE","","2209","9.4","36019","Clinton","{""36019"": ""55.41"", ""36031"": ""44.59"", ""36033"": ""0""}","Clinton|Essex|Franklin","36019|36031|36033","FALSE","FALSE","America/New_York"
-"12913","44.42207","-74.02075","Bloomingdale","NY","New York","TRUE","","1104","15.7","36031","Essex","{""36031"": ""92.65"", ""36033"": ""7.35""}","Essex|Franklin","36031|36033","FALSE","FALSE","America/New_York"
-"12914","44.92719","-74.59971","Bombay","NY","New York","TRUE","","928","11.2","36033","Franklin","{""36033"": ""90.33"", ""36089"": ""9.67""}","Franklin|St. Lawrence","36033|36089","FALSE","FALSE","America/New_York"
-"12916","44.83521","-74.51591","Brushton","NY","New York","TRUE","","2108","19.6","36033","Franklin","{""36033"": ""100""}","Franklin","36033","FALSE","FALSE","America/New_York"
-"12917","44.92766","-74.17891","Burke","NY","New York","TRUE","","1378","12.4","36033","Franklin","{""36033"": ""100""}","Franklin","36033","FALSE","FALSE","America/New_York"
-"12918","44.69038","-73.6835","Cadyville","NY","New York","TRUE","","2210","21.8","36019","Clinton","{""36019"": ""100""}","Clinton","36019","FALSE","FALSE","America/New_York"
-"12919","44.9679","-73.44937","Champlain","NY","New York","TRUE","","2974","30.0","36019","Clinton","{""36019"": ""100""}","Clinton","36019","FALSE","FALSE","America/New_York"
-"12920","44.87672","-74.0621","Chateaugay","NY","New York","TRUE","","2285","9.5","36033","Franklin","{""36033"": ""97.99"", ""36019"": ""2.01""}","Franklin|Clinton","36033|36019","FALSE","FALSE","America/New_York"
-"12921","44.89118","-73.43791","Chazy","NY","New York","TRUE","","2734","31.8","36019","Clinton","{""36019"": ""100""}","Clinton","36019","FALSE","FALSE","America/New_York"
-"12922","44.28808","-74.71793","Childwold","NY","New York","TRUE","","33","0.3","36089","St. Lawrence","{""36089"": ""100""}","St. Lawrence","36089","FALSE","FALSE","America/New_York"
-"12923","44.95458","-73.93893","Churubusco","NY","New York","TRUE","","562","4.1","36019","Clinton","{""36019"": ""100""}","Clinton","36019","FALSE","FALSE","America/New_York"
-"12924","44.47775","-73.58429","Keeseville","NY","New York","TRUE","","97","13.8","36019","Clinton","{""36019"": ""100""}","Clinton","36019","FALSE","FALSE","America/New_York"
-"12926","44.95325","-74.32481","Constable","NY","New York","TRUE","","2304","18.3","36033","Franklin","{""36033"": ""100""}","Franklin","36033","FALSE","FALSE","America/New_York"
-"12927","44.19929","-74.82126","Cranberry Lake","NY","New York","TRUE","","254","0.9","36089","St. Lawrence","{""36089"": ""100""}","St. Lawrence","36089","FALSE","FALSE","America/New_York"
-"12928","43.95157","-73.52996","Crown Point","NY","New York","TRUE","","1988","10.2","36031","Essex","{""36031"": ""100""}","Essex","36031","FALSE","FALSE","America/New_York"
-"12929","44.72003","-73.71929","Dannemora","NY","New York","TRUE","","3982","1291.2","36019","Clinton","{""36019"": ""100""}","Clinton","36019","FALSE","FALSE","America/New_York"
-"12930","44.72338","-74.54128","Dickinson Center","NY","New York","TRUE","","748","8.0","36033","Franklin","{""36033"": ""98.11"", ""36089"": ""1.89""}","Franklin|St. Lawrence","36033|36089","FALSE","FALSE","America/New_York"
-"12932","44.21219","-73.61264","Elizabethtown","NY","New York","TRUE","","1157","7.0","36031","Essex","{""36031"": ""100""}","Essex","36031","FALSE","FALSE","America/New_York"
-"12933","44.89118","-73.84512","Ellenburg","NY","New York","TRUE","","59","832.7","36019","Clinton","{""36019"": ""100""}","Clinton","36019","FALSE","FALSE","America/New_York"
-"12934","44.86615","-73.88407","Ellenburg Center","NY","New York","TRUE","","1007","6.6","36019","Clinton","{""36019"": ""100""}","Clinton","36019","FALSE","FALSE","America/New_York"
-"12935","44.83475","-73.78753","Ellenburg Depot","NY","New York","TRUE","","1551","6.1","36019","Clinton","{""36019"": ""100""}","Clinton","36019","FALSE","FALSE","America/New_York"
-"12936","44.27795","-73.39874","Essex","NY","New York","TRUE","","439","5.5","36031","Essex","{""36031"": ""100""}","Essex","36031","FALSE","FALSE","America/New_York"
-"12937","44.96094","-74.48086","Fort Covington","NY","New York","TRUE","","2014","23.8","36033","Franklin","{""36033"": ""100""}","Franklin","36033","FALSE","FALSE","America/New_York"
-"12939","44.42776","-74.16691","Gabriels","NY","New York","TRUE","","223","20.8","36033","Franklin","{""36033"": ""100""}","Franklin","36033","FALSE","FALSE","America/New_York"
-"12941","44.35505","-73.71661","Jay","NY","New York","TRUE","","1242","11.8","36031","Essex","{""36031"": ""100""}","Essex","36031","FALSE","FALSE","America/New_York"
-"12942","44.26021","-73.79998","Keene","NY","New York","TRUE","","837","6.1","36031","Essex","{""36031"": ""100""}","Essex","36031","FALSE","FALSE","America/New_York"
-"12943","44.13919","-73.8183","Keene Valley","NY","New York","TRUE","","358","1.3","36031","Essex","{""36031"": ""100""}","Essex","36031","FALSE","FALSE","America/New_York"
-"12944","44.45067","-73.51227","Keeseville","NY","New York","TRUE","","3764","16.1","36031","Essex","{""36031"": ""53.26"", ""36019"": ""46.74""}","Essex|Clinton","36031|36019","FALSE","FALSE","America/New_York"
-"12945","44.33748","-74.23815","Lake Clear","NY","New York","TRUE","","492","5.7","36033","Franklin","{""36033"": ""100""}","Franklin","36033","FALSE","FALSE","America/New_York"
-"12946","44.22892","-73.98407","Lake Placid","NY","New York","TRUE","","4746","14.2","36031","Essex","{""36031"": ""100""}","Essex","36031","FALSE","FALSE","America/New_York"
-"12950","44.32008","-73.58511","Lewis","NY","New York","TRUE","","706","5.8","36031","Essex","{""36031"": ""100""}","Essex","36031","FALSE","FALSE","America/New_York"
-"12952","44.70834","-73.90565","Lyon Mountain","NY","New York","TRUE","","448","6.0","36019","Clinton","{""36019"": ""100""}","Clinton","36019","FALSE","FALSE","America/New_York"
-"12953","44.74094","-74.26329","Malone","NY","New York","TRUE","","15374","28.2","36033","Franklin","{""36033"": ""100""}","Franklin","36033","FALSE","FALSE","America/New_York"
-"12955","44.79079","-73.95709","Lyon Mountain","NY","New York","TRUE","","334","4.2","36019","Clinton","{""36019"": ""87.14"", ""36033"": ""12.86""}","Clinton|Franklin","36019|36033","FALSE","FALSE","America/New_York"
-"12956","44.09325","-73.49542","Mineville","NY","New York","TRUE","","1538","65.9","36031","Essex","{""36031"": ""100""}","Essex","36031","FALSE","FALSE","America/New_York"
-"12957","44.84835","-74.57457","Moira","NY","New York","TRUE","","1723","20.8","36033","Franklin","{""36033"": ""100""}","Franklin","36033","FALSE","FALSE","America/New_York"
-"12958","44.95943","-73.57857","Mooers","NY","New York","TRUE","","1881","19.6","36019","Clinton","{""36019"": ""100""}","Clinton","36019","FALSE","FALSE","America/New_York"
-"12959","44.96035","-73.70387","Mooers Forks","NY","New York","TRUE","","1454","14.5","36019","Clinton","{""36019"": ""100""}","Clinton","36019","FALSE","FALSE","America/New_York"
-"12960","44.02891","-73.55458","Moriah","NY","New York","TRUE","","857","10.9","36031","Essex","{""36031"": ""100""}","Essex","36031","FALSE","FALSE","America/New_York"
-"12961","44.05714","-73.54953","Moriah Center","NY","New York","TRUE","","264","25.5","36031","Essex","{""36031"": ""100""}","Essex","36031","FALSE","FALSE","America/New_York"
-"12962","44.70159","-73.60537","Morrisonville","NY","New York","TRUE","","5256","47.0","36019","Clinton","{""36019"": ""100""}","Clinton","36019","FALSE","FALSE","America/New_York"
-"12964","44.14257","-73.62574","New Russia","NY","New York","TRUE","","148","1.7","36031","Essex","{""36031"": ""100""}","Essex","36031","FALSE","FALSE","America/New_York"
-"12965","44.70304","-74.68052","Nicholville","NY","New York","TRUE","","498","20.2","36089","St. Lawrence","{""36089"": ""100""}","St. Lawrence","36089","FALSE","FALSE","America/New_York"
-"12966","44.79441","-74.4189","North Bangor","NY","New York","TRUE","","2858","12.8","36033","Franklin","{""36033"": ""100""}","Franklin","36033","FALSE","FALSE","America/New_York"
-"12967","44.77356","-74.65949","North Lawrence","NY","New York","TRUE","","1094","11.2","36089","St. Lawrence","{""36089"": ""100""}","St. Lawrence","36089","FALSE","FALSE","America/New_York"
-"12969","44.70303","-74.08563","Owls Head","NY","New York","TRUE","","421","1.6","36033","Franklin","{""36033"": ""100""}","Franklin","36033","FALSE","FALSE","America/New_York"
-"12970","44.48775","-74.31608","Paul Smiths","NY","New York","TRUE","","935","7.2","36033","Franklin","{""36033"": ""100""}","Franklin","36033","FALSE","FALSE","America/New_York"
-"12972","44.55812","-73.57351","Peru","NY","New York","TRUE","","5983","27.9","36019","Clinton","{""36019"": ""99.81"", ""36031"": ""0.19""}","Clinton|Essex","36019|36031","FALSE","FALSE","America/New_York"
-"12973","44.2987","-74.59401","Piercefield","NY","New York","TRUE","","104","1.1","36089","St. Lawrence","{""36089"": ""100""}","St. Lawrence","36089","FALSE","FALSE","America/New_York"
-"12974","44.0529","-73.47041","Port Henry","NY","New York","TRUE","","1529","73.4","36031","Essex","{""36031"": ""100""}","Essex","36031","FALSE","FALSE","America/New_York"
-"12975","44.5291","-73.43052","Port Kent","NY","New York","TRUE","","264","35.7","36031","Essex","{""36031"": ""100""}","Essex","36031","FALSE","FALSE","America/New_York"
-"12976","44.50619","-74.21604","Rainbow Lake","NY","New York","TRUE","","225","2.3","36033","Franklin","{""36033"": ""100""}","Franklin","36033","FALSE","FALSE","America/New_York"
-"12977","44.28018","-74.07955","Ray Brook","NY","New York","TRUE","","1874","80.9","36031","Essex","{""36031"": ""100""}","Essex","36031","FALSE","FALSE","America/New_York"
-"12978","44.61634","-73.80874","Redford","NY","New York","TRUE","","328","48.5","36019","Clinton","{""36019"": ""100""}","Clinton","36019","FALSE","FALSE","America/New_York"
-"12979","44.99163","-73.37333","Rouses Point","NY","New York","TRUE","","2356","267.5","36019","Clinton","{""36019"": ""100""}","Clinton","36019","FALSE","FALSE","America/New_York"
-"12980","44.56117","-74.49364","Saint Regis Falls","NY","New York","TRUE","","1321","2.0","36033","Franklin","{""36033"": ""85.2"", ""36089"": ""14.8""}","Franklin|St. Lawrence","36033|36089","FALSE","FALSE","America/New_York"
-"12981","44.62649","-73.84303","Saranac","NY","New York","TRUE","","2341","8.5","36019","Clinton","{""36019"": ""99.33"", ""36033"": ""0.67""}","Clinton|Franklin","36019|36033","FALSE","FALSE","America/New_York"
-"12983","44.32137","-74.20288","Saranac Lake","NY","New York","TRUE","","7463","13.7","36033","Franklin","{""36033"": ""70.8"", ""36031"": ""29.2""}","Franklin|Essex","36033|36031","FALSE","FALSE","America/New_York"
-"12985","44.56301","-73.74966","Schuyler Falls","NY","New York","TRUE","","1328","9.3","36019","Clinton","{""36019"": ""100""}","Clinton","36019","FALSE","FALSE","America/New_York"
-"12986","44.23209","-74.49055","Tupper Lake","NY","New York","TRUE","","5941","10.1","36033","Franklin","{""36033"": ""98.81"", ""36089"": ""1.19""}","Franklin|St. Lawrence","36033|36089","FALSE","FALSE","America/New_York"
-"12987","44.32195","-73.76709","Upper Jay","NY","New York","TRUE","","198","12.3","36031","Essex","{""36031"": ""100""}","Essex","36031","FALSE","FALSE","America/New_York"
-"12989","44.53739","-74.063","Vermontville","NY","New York","TRUE","","998","2.6","36033","Franklin","{""36033"": ""100""}","Franklin","36033","FALSE","FALSE","America/New_York"
-"12992","44.8158","-73.51816","West Chazy","NY","New York","TRUE","","4197","25.5","36019","Clinton","{""36019"": ""100""}","Clinton","36019","FALSE","FALSE","America/New_York"
-"12993","44.19893","-73.47219","Westport","NY","New York","TRUE","","1330","7.1","36031","Essex","{""36031"": ""100""}","Essex","36031","FALSE","FALSE","America/New_York"
-"12996","44.36021","-73.43946","Willsboro","NY","New York","TRUE","","2119","16.1","36031","Essex","{""36031"": ""100""}","Essex","36031","FALSE","FALSE","America/New_York"
-"12997","44.37545","-73.84318","Wilmington","NY","New York","TRUE","","1069","6.3","36031","Essex","{""36031"": ""100""}","Essex","36031","FALSE","FALSE","America/New_York"
-"12998","44.08463","-73.579","Witherbee","NY","New York","TRUE","","390","12.5","36031","Essex","{""36031"": ""100""}","Essex","36031","FALSE","FALSE","America/New_York"
-"13020","42.81647","-76.07455","Apulia Station","NY","New York","TRUE","","99","81.7","36067","Onondaga","{""36067"": ""100""}","Onondaga","36067","FALSE","FALSE","America/New_York"
-"13021","42.92379","-76.55886","Auburn","NY","New York","TRUE","","37841","121.6","36011","Cayuga","{""36011"": ""99.98"", ""36067"": ""0.02""}","Cayuga|Onondaga","36011|36067","FALSE","FALSE","America/New_York"
-"13024","42.93454","-76.57423","Auburn","NY","New York","TRUE","","1709","15886.3","36011","Cayuga","{""36011"": ""100""}","Cayuga","36011","FALSE","FALSE","America/New_York"
-"13026","42.74967","-76.66094","Aurora","NY","New York","TRUE","","1677","23.0","36011","Cayuga","{""36011"": ""100""}","Cayuga","36011","FALSE","FALSE","America/New_York"
-"13027","43.16746","-76.36419","Baldwinsville","NY","New York","TRUE","","33049","187.5","36067","Onondaga","{""36067"": ""99.9"", ""36011"": ""0.1""}","Onondaga|Cayuga","36067|36011","FALSE","FALSE","America/New_York"
-"13028","43.2969","-75.93471","Bernhards Bay","NY","New York","TRUE","","1229","25.4","36075","Oswego","{""36075"": ""100""}","Oswego","36075","FALSE","FALSE","America/New_York"
-"13029","43.22348","-76.14999","Brewerton","NY","New York","TRUE","","7168","156.1","36067","Onondaga","{""36067"": ""100""}","Onondaga","36067","FALSE","FALSE","America/New_York"
-"13030","43.15504","-75.96071","Bridgeport","NY","New York","TRUE","","3518","102.0","36053","Madison","{""36053"": ""54.62"", ""36067"": ""45.38""}","Madison|Onondaga","36053|36067","FALSE","FALSE","America/New_York"
-"13031","43.04563","-76.30833","Camillus","NY","New York","TRUE","","15080","239.6","36067","Onondaga","{""36067"": ""100""}","Onondaga","36067","FALSE","FALSE","America/New_York"
-"13032","43.07809","-75.76528","Canastota","NY","New York","TRUE","","12208","57.8","36053","Madison","{""36053"": ""100""}","Madison","36053","FALSE","FALSE","America/New_York"
-"13033","43.18619","-76.57006","Cato","NY","New York","TRUE","","3774","23.6","36011","Cayuga","{""36011"": ""100""}","Cayuga","36011","FALSE","FALSE","America/New_York"
-"13034","42.91191","-76.69379","Cayuga","NY","New York","TRUE","","2021","32.1","36011","Cayuga","{""36011"": ""100""}","Cayuga","36011","FALSE","FALSE","America/New_York"
-"13035","42.9408","-75.82567","Cazenovia","NY","New York","TRUE","","8422","43.5","36053","Madison","{""36053"": ""97.11"", ""36067"": ""2.89""}","Madison|Onondaga","36053|36067","FALSE","FALSE","America/New_York"
-"13036","43.32375","-76.17336","Central Square","NY","New York","TRUE","","9064","71.7","36075","Oswego","{""36075"": ""100""}","Oswego","36075","FALSE","FALSE","America/New_York"
-"13037","43.06035","-75.86576","Chittenango","NY","New York","TRUE","","9787","92.3","36053","Madison","{""36053"": ""97.85"", ""36067"": ""2.15""}","Madison|Onondaga","36053|36067","FALSE","FALSE","America/New_York"
-"13039","43.16855","-76.0691","Cicero","NY","New York","TRUE","","17028","291.1","36067","Onondaga","{""36067"": ""100""}","Onondaga","36067","FALSE","FALSE","America/New_York"
-"13040","42.56139","-75.93225","Cincinnatus","NY","New York","TRUE","","2337","9.4","36023","Cortland","{""36023"": ""91.15"", ""36017"": ""8.85""}","Cortland|Chenango","36023|36017","FALSE","FALSE","America/New_York"
-"13041","43.19065","-76.19758","Clay","NY","New York","TRUE","","11409","241.2","36067","Onondaga","{""36067"": ""100""}","Onondaga","36067","FALSE","FALSE","America/New_York"
-"13042","43.26755","-75.85561","Cleveland","NY","New York","TRUE","","2224","25.6","36075","Oswego","{""36075"": ""50.85"", ""36065"": ""49.15""}","Oswego|Oneida","36075|36065","FALSE","FALSE","America/New_York"
-"13044","43.29438","-75.99873","Constantia","NY","New York","TRUE","","2595","36.1","36075","Oswego","{""36075"": ""100""}","Oswego","36075","FALSE","FALSE","America/New_York"
-"13045","42.58146","-76.19211","Cortland","NY","New York","TRUE","","28916","104.8","36023","Cortland","{""36023"": ""96.35"", ""36011"": ""2.15"", ""36109"": ""1.5""}","Cortland|Cayuga|Tompkins","36023|36011|36109","FALSE","FALSE","America/New_York"
-"13051","42.8768","-75.90869","Delphi Falls","NY","New York","TRUE","","157","257.2","36067","Onondaga","{""36067"": ""100""}","Onondaga","36067","FALSE","FALSE","America/New_York"
-"13052","42.72245","-75.86346","De Ruyter","NY","New York","TRUE","","1541","12.3","36053","Madison","{""36053"": ""75.64"", ""36017"": ""16.08"", ""36023"": ""6.19"", ""36067"": ""2.08""}","Madison|Chenango|Cortland|Onondaga","36053|36017|36023|36067","FALSE","FALSE","America/New_York"
-"13053","42.47462","-76.26598","Dryden","NY","New York","TRUE","","5006","58.2","36109","Tompkins","{""36109"": ""89.47"", ""36023"": ""10.53""}","Tompkins|Cortland","36109|36023","FALSE","FALSE","America/New_York"
-"13054","43.17083","-75.67213","Durhamville","NY","New York","TRUE","","1775","31.0","36065","Oneida","{""36065"": ""100""}","Oneida","36065","FALSE","FALSE","America/New_York"
-"13057","43.09534","-76.04015","East Syracuse","NY","New York","TRUE","","13643","189.2","36067","Onondaga","{""36067"": ""100""}","Onondaga","36067","FALSE","FALSE","America/New_York"
-"13060","43.02427","-76.41883","Elbridge","NY","New York","TRUE","","2912","70.3","36067","Onondaga","{""36067"": ""100""}","Onondaga","36067","FALSE","FALSE","America/New_York"
-"13061","42.86189","-75.75686","Erieville","NY","New York","TRUE","","1087","16.1","36053","Madison","{""36053"": ""100""}","Madison","36053","FALSE","FALSE","America/New_York"
-"13062","42.4851","-76.38411","Etna","NY","New York","TRUE","","41","87.8","36109","Tompkins","{""36109"": ""100""}","Tompkins","36109","FALSE","FALSE","America/New_York"
-"13063","42.84626","-75.97705","Fabius","NY","New York","TRUE","","1934","21.5","36067","Onondaga","{""36067"": ""100""}","Onondaga","36067","FALSE","FALSE","America/New_York"
-"13064","43.32924","-76.70983","Fair Haven","NY","New York","TRUE","","165","357.3","36011","Cayuga","{""36011"": ""100""}","Cayuga","36011","FALSE","FALSE","America/New_York"
-"13066","43.03271","-76.00321","Fayetteville","NY","New York","TRUE","","12525","323.0","36067","Onondaga","{""36067"": ""100""}","Onondaga","36067","FALSE","FALSE","America/New_York"
-"13068","42.49979","-76.3587","Freeville","NY","New York","TRUE","","5231","39.5","36109","Tompkins","{""36109"": ""100""}","Tompkins","36109","FALSE","FALSE","America/New_York"
-"13069","43.33216","-76.37919","Fulton","NY","New York","TRUE","","24166","87.0","36075","Oswego","{""36075"": ""100""}","Oswego","36075","FALSE","FALSE","America/New_York"
-"13071","42.67797","-76.54112","Genoa","NY","New York","TRUE","","949","14.8","36011","Cayuga","{""36011"": ""100""}","Cayuga","36011","FALSE","FALSE","America/New_York"
-"13072","42.76325","-75.76409","Georgetown","NY","New York","TRUE","","819","6.7","36053","Madison","{""36053"": ""77.2"", ""36017"": ""22.8""}","Madison|Chenango","36053|36017","FALSE","FALSE","America/New_York"
-"13073","42.58517","-76.39787","Groton","NY","New York","TRUE","","6534","46.0","36109","Tompkins","{""36109"": ""99.02"", ""36011"": ""0.98""}","Tompkins|Cayuga","36109|36011","FALSE","FALSE","America/New_York"
-"13074","43.30983","-76.54781","Hannibal","NY","New York","TRUE","","4050","36.8","36075","Oswego","{""36075"": ""96.55"", ""36011"": ""3.45""}","Oswego|Cayuga","36075|36011","FALSE","FALSE","America/New_York"
-"13076","43.35587","-76.1526","Hastings","NY","New York","TRUE","","2397","60.5","36075","Oswego","{""36075"": ""100""}","Oswego","36075","FALSE","FALSE","America/New_York"
-"13077","42.71392","-76.19595","Homer","NY","New York","TRUE","","7015","38.4","36023","Cortland","{""36023"": ""96.32"", ""36067"": ""3.33"", ""36011"": ""0.36""}","Cortland|Onondaga|Cayuga","36023|36067|36011","FALSE","FALSE","America/New_York"
-"13078","42.96083","-76.06157","Jamesville","NY","New York","TRUE","","10889","108.0","36067","Onondaga","{""36067"": ""100""}","Onondaga","36067","FALSE","FALSE","America/New_York"
-"13080","43.08434","-76.47897","Jordan","NY","New York","TRUE","","3210","44.2","36067","Onondaga","{""36067"": ""74"", ""36011"": ""26""}","Onondaga|Cayuga","36067|36011","FALSE","FALSE","America/New_York"
-"13081","42.67359","-76.62122","King Ferry","NY","New York","TRUE","","1102","14.7","36011","Cayuga","{""36011"": ""100""}","Cayuga","36011","FALSE","FALSE","America/New_York"
-"13082","43.10052","-75.95324","Kirkville","NY","New York","TRUE","","4258","69.7","36053","Madison","{""36053"": ""59.08"", ""36067"": ""40.92""}","Madison|Onondaga","36053|36067","FALSE","FALSE","America/New_York"
-"13083","43.6484","-75.98126","Lacona","NY","New York","TRUE","","2029","13.5","36075","Oswego","{""36075"": ""98.89"", ""36045"": ""1.11""}","Oswego|Jefferson","36075|36045","FALSE","FALSE","America/New_York"
-"13084","42.88899","-76.11305","La Fayette","NY","New York","TRUE","","3659","32.9","36067","Onondaga","{""36067"": ""100""}","Onondaga","36067","FALSE","FALSE","America/New_York"
-"13087","42.7064","-76.15587","Little York","NY","New York","TRUE","","134","252.1","36023","Cortland","{""36023"": ""100""}","Cortland","36023","FALSE","FALSE","America/New_York"
-"13088","43.10998","-76.18713","Liverpool","NY","New York","TRUE","","21917","1063.9","36067","Onondaga","{""36067"": ""100""}","Onondaga","36067","FALSE","FALSE","America/New_York"
-"13090","43.15168","-76.21356","Liverpool","NY","New York","TRUE","","29869","765.7","36067","Onondaga","{""36067"": ""100""}","Onondaga","36067","FALSE","FALSE","America/New_York"
-"13092","42.65168","-76.4234","Locke","NY","New York","TRUE","","2626","20.9","36011","Cayuga","{""36011"": ""90.64"", ""36109"": ""9.36""}","Cayuga|Tompkins","36011|36109","FALSE","FALSE","America/New_York"
-"13101","42.59851","-76.06728","McGraw","NY","New York","TRUE","","2311","22.8","36023","Cortland","{""36023"": ""100""}","Cortland","36023","FALSE","FALSE","America/New_York"
-"13102","42.55271","-76.29248","McLean","NY","New York","TRUE","","47","311.8","36109","Tompkins","{""36109"": ""100""}","Tompkins","36109","FALSE","FALSE","America/New_York"
-"13103","43.32708","-76.10831","Mallory","NY","New York","TRUE","","213","240.3","36075","Oswego","{""36075"": ""100""}","Oswego","36075","FALSE","FALSE","America/New_York"
-"13104","42.96313","-75.9557","Manlius","NY","New York","TRUE","","16052","131.2","36067","Onondaga","{""36067"": ""99.76"", ""36053"": ""0.24""}","Onondaga|Madison","36067|36053","FALSE","FALSE","America/New_York"
-"13108","42.97329","-76.33094","Marcellus","NY","New York","TRUE","","6095","80.7","36067","Onondaga","{""36067"": ""100""}","Onondaga","36067","FALSE","FALSE","America/New_York"
-"13110","42.89315","-76.28534","Marietta","NY","New York","TRUE","","2081","32.7","36067","Onondaga","{""36067"": ""100""}","Onondaga","36067","FALSE","FALSE","America/New_York"
-"13111","43.25868","-76.62045","Martville","NY","New York","TRUE","","1706","24.8","36011","Cayuga","{""36011"": ""81.35"", ""36075"": ""18.65""}","Cayuga|Oswego","36011|36075","FALSE","FALSE","America/New_York"
-"13112","43.10146","-76.41846","Memphis","NY","New York","TRUE","","1673","31.9","36067","Onondaga","{""36067"": ""100""}","Onondaga","36067","FALSE","FALSE","America/New_York"
-"13113","43.16266","-76.53856","Meridian","NY","New York","TRUE","","294","218.6","36011","Cayuga","{""36011"": ""100""}","Cayuga","36011","FALSE","FALSE","America/New_York"
-"13114","43.46386","-76.24422","Mexico","NY","New York","TRUE","","6350","39.0","36075","Oswego","{""36075"": ""100""}","Oswego","36075","FALSE","FALSE","America/New_York"
-"13115","43.39866","-76.47876","Minetto","NY","New York","TRUE","","212","176.5","36075","Oswego","{""36075"": ""100""}","Oswego","36075","FALSE","FALSE","America/New_York"
-"13116","43.07482","-76.00787","Minoa","NY","New York","TRUE","","3468","1013.7","36067","Onondaga","{""36067"": ""100""}","Onondaga","36067","FALSE","FALSE","America/New_York"
-"13117","43.00931","-76.70749","Montezuma","NY","New York","TRUE","","287","136.0","36011","Cayuga","{""36011"": ""100""}","Cayuga","36011","FALSE","FALSE","America/New_York"
-"13118","42.75086","-76.39059","Moravia","NY","New York","TRUE","","6159","23.2","36011","Cayuga","{""36011"": ""100""}","Cayuga","36011","FALSE","FALSE","America/New_York"
-"13120","42.93959","-76.1742","Nedrow","NY","New York","TRUE","","2109","47.6","36067","Onondaga","{""36067"": ""100""}","Onondaga","36067","FALSE","FALSE","America/New_York"
-"13122","42.84187","-75.85947","New Woodstock","NY","New York","TRUE","","1239","25.6","36053","Madison","{""36053"": ""84.67"", ""36067"": ""15.33""}","Madison|Onondaga","36053|36067","FALSE","FALSE","America/New_York"
-"13123","43.23355","-75.76908","North Bay","NY","New York","TRUE","","451","73.6","36065","Oneida","{""36065"": ""100""}","Oneida","36065","FALSE","FALSE","America/New_York"
-"13124","42.64605","-75.81796","North Pitcher","NY","New York","TRUE","","83","6.8","36017","Chenango","{""36017"": ""100""}","Chenango","36017","FALSE","FALSE","America/New_York"
-"13126","43.43486","-76.46232","Oswego","NY","New York","TRUE","","35833","137.3","36075","Oswego","{""36075"": ""99.84"", ""36011"": ""0.16""}","Oswego|Cayuga","36075|36011","FALSE","FALSE","America/New_York"
-"13131","43.42122","-76.09224","Parish","NY","New York","TRUE","","3611","26.3","36075","Oswego","{""36075"": ""100""}","Oswego","36075","FALSE","FALSE","America/New_York"
-"13132","43.26679","-76.2447","Pennellville","NY","New York","TRUE","","3541","57.6","36075","Oswego","{""36075"": ""100""}","Oswego","36075","FALSE","FALSE","America/New_York"
-"13134","42.96738","-75.6847","Peterboro","NY","New York","TRUE","","216","1010.3","36053","Madison","{""36053"": ""100""}","Madison","36053","FALSE","FALSE","America/New_York"
-"13135","43.25488","-76.31913","Phoenix","NY","New York","TRUE","","6392","77.3","36075","Oswego","{""36075"": ""75.08"", ""36067"": ""24.92""}","Oswego|Onondaga","36075|36067","FALSE","FALSE","America/New_York"
-"13136","42.61469","-75.84903","Pitcher","NY","New York","TRUE","","417","8.6","36017","Chenango","{""36017"": ""100""}","Chenango","36017","FALSE","FALSE","America/New_York"
-"13138","42.89915","-76.01454","Pompey","NY","New York","TRUE","","56","544.1","36067","Onondaga","{""36067"": ""100""}","Onondaga","36067","FALSE","FALSE","America/New_York"
-"13140","43.05983","-76.65899","Port Byron","NY","New York","TRUE","","4571","33.8","36011","Cayuga","{""36011"": ""100""}","Cayuga","36011","FALSE","FALSE","America/New_York"
-"13141","42.7632","-76.18349","Preble","NY","New York","TRUE","","616","18.1","36023","Cortland","{""36023"": ""75.17"", ""36067"": ""24.83""}","Cortland|Onondaga","36023|36067","FALSE","FALSE","America/New_York"
-"13142","43.55147","-76.1307","Pulaski","NY","New York","TRUE","","6522","35.7","36075","Oswego","{""36075"": ""100""}","Oswego","36075","FALSE","FALSE","America/New_York"
-"13143","43.23326","-76.71529","Red Creek","NY","New York","TRUE","","2681","24.0","36117","Wayne","{""36117"": ""66.59"", ""36011"": ""33.41""}","Wayne|Cayuga","36117|36011","FALSE","FALSE","America/New_York"
-"13144","43.56996","-75.97433","Richland","NY","New York","TRUE","","1774","17.8","36075","Oswego","{""36075"": ""100""}","Oswego","36075","FALSE","FALSE","America/New_York"
-"13145","43.65044","-76.1212","Sandy Creek","NY","New York","TRUE","","1457","33.7","36075","Oswego","{""36075"": ""100""}","Oswego","36075","FALSE","FALSE","America/New_York"
-"13146","43.0901","-76.75786","Savannah","NY","New York","TRUE","","2462","17.5","36117","Wayne","{""36117"": ""96.48"", ""36099"": ""3.52""}","Wayne|Seneca","36117|36099","FALSE","FALSE","America/New_York"
-"13147","42.77501","-76.5644","Scipio Center","NY","New York","TRUE","","1104","11.9","36011","Cayuga","{""36011"": ""100""}","Cayuga","36011","FALSE","FALSE","America/New_York"
-"13148","42.91464","-76.7847","Seneca Falls","NY","New York","TRUE","","10535","67.7","36099","Seneca","{""36099"": ""100""}","Seneca","36099","FALSE","FALSE","America/New_York"
-"13152","42.8926","-76.38469","Skaneateles","NY","New York","TRUE","","8025","47.9","36067","Onondaga","{""36067"": ""95.24"", ""36011"": ""4.76""}","Onondaga|Cayuga","36067|36011","FALSE","FALSE","America/New_York"
-"13153","42.99654","-76.45361","Skaneateles Falls","NY","New York","TRUE","","408","176.2","36067","Onondaga","{""36067"": ""100""}","Onondaga","36067","FALSE","FALSE","America/New_York"
-"13155","42.65491","-75.78004","South Otselic","NY","New York","TRUE","","497","9.4","36017","Chenango","{""36017"": ""100""}","Chenango","36017","FALSE","FALSE","America/New_York"
-"13156","43.33302","-76.66058","Sterling","NY","New York","TRUE","","1870","24.1","36011","Cayuga","{""36011"": ""95"", ""36117"": ""4.2"", ""36075"": ""0.8""}","Cayuga|Wayne|Oswego","36011|36117|36075","FALSE","FALSE","America/New_York"
-"13157","43.20488","-75.72357","Sylvan Beach","NY","New York","TRUE","","603","419.7","36065","Oneida","{""36065"": ""100""}","Oneida","36065","FALSE","FALSE","America/New_York"
-"13158","42.71911","-75.96671","Truxton","NY","New York","TRUE","","1569","8.5","36023","Cortland","{""36023"": ""98.06"", ""36067"": ""1.94""}","Cortland|Onondaga","36023|36067","FALSE","FALSE","America/New_York"
-"13159","42.80198","-76.11349","Tully","NY","New York","TRUE","","5290","26.2","36067","Onondaga","{""36067"": ""83.95"", ""36023"": ""16.05""}","Onondaga|Cortland","36067|36023","FALSE","FALSE","America/New_York"
-"13160","42.82792","-76.65173","Union Springs","NY","New York","TRUE","","1812","32.9","36011","Cayuga","{""36011"": ""100""}","Cayuga","36011","FALSE","FALSE","America/New_York"
-"13162","43.18407","-75.72001","Verona Beach","NY","New York","TRUE","","215","47.2","36065","Oneida","{""36065"": ""100""}","Oneida","36065","FALSE","FALSE","America/New_York"
-"13163","43.0807","-75.71107","Wampsville","NY","New York","TRUE","","468","340.4","36053","Madison","{""36053"": ""100""}","Madison","36053","FALSE","FALSE","America/New_York"
-"13164","43.09407","-76.3161","Warners","NY","New York","TRUE","","2797","100.6","36067","Onondaga","{""36067"": ""100""}","Onondaga","36067","FALSE","FALSE","America/New_York"
-"13165","42.91188","-76.87612","Waterloo","NY","New York","TRUE","","10376","58.9","36099","Seneca","{""36099"": ""100""}","Seneca","36099","FALSE","FALSE","America/New_York"
-"13166","43.07093","-76.55733","Weedsport","NY","New York","TRUE","","5616","53.1","36011","Cayuga","{""36011"": ""98.41"", ""36067"": ""1.59""}","Cayuga|Onondaga","36011|36067","FALSE","FALSE","America/New_York"
-"13167","43.31407","-76.06023","West Monroe","NY","New York","TRUE","","3067","34.7","36075","Oswego","{""36075"": ""100""}","Oswego","36075","FALSE","FALSE","America/New_York"
-"13202","43.04381","-76.15068","Syracuse","NY","New York","TRUE","","6787","2626.8","36067","Onondaga","{""36067"": ""100""}","Onondaga","36067","FALSE","FALSE","America/New_York"
-"13203","43.06114","-76.13495","Syracuse","NY","New York","TRUE","","16513","3751.0","36067","Onondaga","{""36067"": ""100""}","Onondaga","36067","FALSE","FALSE","America/New_York"
-"13204","43.05077","-76.17707","Syracuse","NY","New York","TRUE","","18741","1647.5","36067","Onondaga","{""36067"": ""100""}","Onondaga","36067","FALSE","FALSE","America/New_York"
-"13205","43.00524","-76.14204","Syracuse","NY","New York","TRUE","","17212","1926.5","36067","Onondaga","{""36067"": ""100""}","Onondaga","36067","FALSE","FALSE","America/New_York"
-"13206","43.07349","-76.1058","Syracuse","NY","New York","TRUE","","16723","1633.9","36067","Onondaga","{""36067"": ""100""}","Onondaga","36067","FALSE","FALSE","America/New_York"
-"13207","43.01383","-76.16415","Syracuse","NY","New York","TRUE","","12597","1574.0","36067","Onondaga","{""36067"": ""100""}","Onondaga","36067","FALSE","FALSE","America/New_York"
-"13208","43.07874","-76.14526","Syracuse","NY","New York","TRUE","","22833","2112.1","36067","Onondaga","{""36067"": ""100""}","Onondaga","36067","FALSE","FALSE","America/New_York"
-"13209","43.08508","-76.2486","Syracuse","NY","New York","TRUE","","12713","386.3","36067","Onondaga","{""36067"": ""100""}","Onondaga","36067","FALSE","FALSE","America/New_York"
-"13210","43.03014","-76.12607","Syracuse","NY","New York","TRUE","","27916","2360.5","36067","Onondaga","{""36067"": ""100""}","Onondaga","36067","FALSE","FALSE","America/New_York"
-"13211","43.10359","-76.11948","Syracuse","NY","New York","TRUE","","5861","480.5","36067","Onondaga","{""36067"": ""100""}","Onondaga","36067","FALSE","FALSE","America/New_York"
-"13212","43.12819","-76.13128","Syracuse","NY","New York","TRUE","","21269","775.3","36067","Onondaga","{""36067"": ""100""}","Onondaga","36067","FALSE","FALSE","America/New_York"
-"13214","43.0382","-76.0743","Syracuse","NY","New York","TRUE","","8439","891.4","36067","Onondaga","{""36067"": ""100""}","Onondaga","36067","FALSE","FALSE","America/New_York"
-"13215","42.97997","-76.23038","Syracuse","NY","New York","TRUE","","14952","170.1","36067","Onondaga","{""36067"": ""100""}","Onondaga","36067","FALSE","FALSE","America/New_York"
-"13219","43.03979","-76.22278","Syracuse","NY","New York","TRUE","","15107","1175.9","36067","Onondaga","{""36067"": ""100""}","Onondaga","36067","FALSE","FALSE","America/New_York"
-"13224","43.03715","-76.1029","Syracuse","NY","New York","TRUE","","8369","1084.6","36067","Onondaga","{""36067"": ""100""}","Onondaga","36067","FALSE","FALSE","America/New_York"
-"13290","43.07079","-76.17364","Syracuse","NY","New York","TRUE","","0","0.0","36067","Onondaga","{""36067"": ""0""}","Onondaga","36067","FALSE","FALSE","America/New_York"
-"13301","43.41729","-75.22038","Alder Creek","NY","New York","TRUE","","168","26.5","36065","Oneida","{""36065"": ""100""}","Oneida","36065","FALSE","FALSE","America/New_York"
-"13302","43.49522","-75.96966","Altmar","NY","New York","TRUE","","1826","16.0","36075","Oswego","{""36075"": ""100""}","Oswego","36075","FALSE","FALSE","America/New_York"
-"13303","43.36598","-75.46494","Ava","NY","New York","TRUE","","1065","11.6","36065","Oneida","{""36065"": ""100""}","Oneida","36065","FALSE","FALSE","America/New_York"
-"13304","43.24242","-75.16453","Barneveld","NY","New York","TRUE","","1617","35.9","36065","Oneida","{""36065"": ""97.86"", ""36043"": ""2.14""}","Oneida|Herkimer","36065|36043","FALSE","FALSE","America/New_York"
-"13305","43.89223","-75.42124","Beaver Falls","NY","New York","TRUE","","220","88.5","36049","Lewis","{""36049"": ""100""}","Lewis","36049","FALSE","FALSE","America/New_York"
-"13308","43.24881","-75.66616","Blossvale","NY","New York","TRUE","","3543","35.4","36065","Oneida","{""36065"": ""100""}","Oneida","36065","FALSE","FALSE","America/New_York"
-"13309","43.47366","-75.3481","Boonville","NY","New York","TRUE","","5748","15.3","36065","Oneida","{""36065"": ""84.11"", ""36049"": ""15.89""}","Oneida|Lewis","36065|36049","FALSE","FALSE","America/New_York"
-"13310","42.89222","-75.57275","Bouckville","NY","New York","TRUE","","553","28.2","36053","Madison","{""36053"": ""100""}","Madison","36053","FALSE","FALSE","America/New_York"
-"13312","43.7074","-75.20768","Brantingham","NY","New York","TRUE","","391","2.4","36049","Lewis","{""36049"": ""100""}","Lewis","36049","FALSE","FALSE","America/New_York"
-"13313","42.88019","-75.27283","Bridgewater","NY","New York","TRUE","","425","72.9","36065","Oneida","{""36065"": ""100""}","Oneida","36065","FALSE","FALSE","America/New_York"
-"13314","42.81673","-75.31946","Brookfield","NY","New York","TRUE","","325","32.4","36053","Madison","{""36053"": ""100""}","Madison","36053","FALSE","FALSE","America/New_York"
-"13315","42.74414","-75.14515","Burlington Flats","NY","New York","TRUE","","1481","11.6","36077","Otsego","{""36077"": ""100""}","Otsego","36077","FALSE","FALSE","America/New_York"
-"13316","43.4095","-75.74262","Camden","NY","New York","TRUE","","6000","14.3","36065","Oneida","{""36065"": ""96.55"", ""36049"": ""2.83"", ""36075"": ""0.62""}","Oneida|Lewis|Oswego","36065|36049|36075","FALSE","FALSE","America/New_York"
-"13317","42.85503","-74.58309","Canajoharie","NY","New York","TRUE","","3926","32.9","36057","Montgomery","{""36057"": ""99.6"", ""36077"": ""0.4""}","Montgomery|Otsego","36057|36077","FALSE","FALSE","America/New_York"
-"13318","42.91908","-75.25773","Cassville","NY","New York","TRUE","","1443","21.9","36065","Oneida","{""36065"": ""100""}","Oneida","36065","FALSE","FALSE","America/New_York"
-"13319","43.0264","-75.26694","Chadwicks","NY","New York","TRUE","","561","244.3","36065","Oneida","{""36065"": ""100""}","Oneida","36065","FALSE","FALSE","America/New_York"
-"13320","42.77725","-74.73844","Cherry Valley","NY","New York","TRUE","","2037","10.2","36077","Otsego","{""36077"": ""99.45"", ""36057"": ""0.55""}","Otsego|Montgomery","36077|36057","FALSE","FALSE","America/New_York"
-"13321","43.0879","-75.37398","Clark Mills","NY","New York","TRUE","","819","391.9","36065","Oneida","{""36065"": ""100""}","Oneida","36065","FALSE","FALSE","America/New_York"
-"13322","42.96517","-75.20226","Clayville","NY","New York","TRUE","","870","27.7","36065","Oneida","{""36065"": ""66.54"", ""36043"": ""33.46""}","Oneida|Herkimer","36065|36043","FALSE","FALSE","America/New_York"
-"13323","43.04174","-75.37911","Clinton","NY","New York","TRUE","","11282","114.5","36065","Oneida","{""36065"": ""100""}","Oneida","36065","FALSE","FALSE","America/New_York"
-"13324","43.32621","-74.95408","Cold Brook","NY","New York","TRUE","","2351","7.6","36043","Herkimer","{""36043"": ""100""}","Herkimer","36043","FALSE","FALSE","America/New_York"
-"13325","43.57631","-75.52688","Constableville","NY","New York","TRUE","","1059","5.3","36049","Lewis","{""36049"": ""100""}","Lewis","36049","FALSE","FALSE","America/New_York"
-"13326","42.7146","-74.90441","Cooperstown","NY","New York","TRUE","","5419","21.9","36077","Otsego","{""36077"": ""100""}","Otsego","36077","FALSE","FALSE","America/New_York"
-"13327","43.95983","-75.27646","Croghan","NY","New York","TRUE","","2038","5.9","36049","Lewis","{""36049"": ""100""}","Lewis","36049","FALSE","FALSE","America/New_York"
-"13328","42.98507","-75.429","Deansboro","NY","New York","TRUE","","1526","37.1","36065","Oneida","{""36065"": ""100""}","Oneida","36065","FALSE","FALSE","America/New_York"
-"13329","43.11123","-74.69824","Dolgeville","NY","New York","TRUE","","4227","30.8","36043","Herkimer","{""36043"": ""73.72"", ""36035"": ""26.28""}","Herkimer|Fulton","36043|36035","FALSE","FALSE","America/New_York"
-"13331","43.84298","-74.90042","Eagle Bay","NY","New York","TRUE","","133","0.6","36043","Herkimer","{""36043"": ""100""}","Herkimer","36043","FALSE","FALSE","America/New_York"
-"13332","42.75678","-75.57549","Earlville","NY","New York","TRUE","","2782","21.8","36053","Madison","{""36053"": ""73.82"", ""36017"": ""26.18""}","Madison|Chenango","36053|36017","FALSE","FALSE","America/New_York"
-"13333","42.83368","-74.82328","East Springfield","NY","New York","TRUE","","34","7.7","36077","Otsego","{""36077"": ""100""}","Otsego","36077","FALSE","FALSE","America/New_York"
-"13334","42.82873","-75.65804","Eaton","NY","New York","TRUE","","1065","14.1","36053","Madison","{""36053"": ""100""}","Madison","36053","FALSE","FALSE","America/New_York"
-"13335","42.70267","-75.25046","Edmeston","NY","New York","TRUE","","1370","13.9","36077","Otsego","{""36077"": ""100""}","Otsego","36077","FALSE","FALSE","America/New_York"
-"13337","42.75391","-74.9812","Fly Creek","NY","New York","TRUE","","662","13.8","36077","Otsego","{""36077"": ""100""}","Otsego","36077","FALSE","FALSE","America/New_York"
-"13338","43.50141","-74.97935","Forestport","NY","New York","TRUE","","1110","1.8","36065","Oneida","{""36065"": ""92.62"", ""36043"": ""7.38""}","Oneida|Herkimer","36065|36043","FALSE","FALSE","America/New_York"
-"13339","42.93996","-74.66664","Fort Plain","NY","New York","TRUE","","6528","23.3","36057","Montgomery","{""36057"": ""84.31"", ""36043"": ""9.02"", ""36035"": ""6.67""}","Montgomery|Herkimer|Fulton","36057|36043|36035","FALSE","FALSE","America/New_York"
-"13340","43.05083","-75.11372","Frankfort","NY","New York","TRUE","","8097","54.0","36043","Herkimer","{""36043"": ""100""}","Herkimer","36043","FALSE","FALSE","America/New_York"
-"13341","43.0361","-75.39698","Franklin Springs","NY","New York","TRUE","","166","348.0","36065","Oneida","{""36065"": ""100""}","Oneida","36065","FALSE","FALSE","America/New_York"
-"13342","42.6546","-75.19102","Garrattsville","NY","New York","TRUE","","209","10.2","36077","Otsego","{""36077"": ""100""}","Otsego","36077","FALSE","FALSE","America/New_York"
-"13343","43.75056","-75.31074","Glenfield","NY","New York","TRUE","","1675","11.5","36049","Lewis","{""36049"": ""100""}","Lewis","36049","FALSE","FALSE","America/New_York"
-"13345","43.68855","-75.33017","Greig","NY","New York","TRUE","","130","10.2","36049","Lewis","{""36049"": ""100""}","Lewis","36049","FALSE","FALSE","America/New_York"
-"13346","42.81801","-75.54386","Hamilton","NY","New York","TRUE","","6241","63.7","36053","Madison","{""36053"": ""100""}","Madison","36053","FALSE","FALSE","America/New_York"
-"13348","42.70859","-75.06768","Hartwick","NY","New York","TRUE","","1411","14.7","36077","Otsego","{""36077"": ""100""}","Otsego","36077","FALSE","FALSE","America/New_York"
-"13350","43.06185","-74.98873","Herkimer","NY","New York","TRUE","","9786","124.2","36043","Herkimer","{""36043"": ""100""}","Herkimer","36043","FALSE","FALSE","America/New_York"
-"13352","43.31274","-75.11641","Hinckley","NY","New York","TRUE","","11","25.3","36065","Oneida","{""36065"": ""100""}","Oneida","36065","FALSE","FALSE","America/New_York"
-"13353","43.46576","-74.72544","Hoffmeister","NY","New York","TRUE","","13","0.0","36041","Hamilton","{""36041"": ""100""}","Hamilton","36041","FALSE","FALSE","America/New_York"
-"13354","43.2631","-75.26965","Holland Patent","NY","New York","TRUE","","3811","28.3","36065","Oneida","{""36065"": ""100""}","Oneida","36065","FALSE","FALSE","America/New_York"
-"13355","42.81267","-75.42864","Hubbardsville","NY","New York","TRUE","","941","12.5","36053","Madison","{""36053"": ""100""}","Madison","36053","FALSE","FALSE","America/New_York"
-"13357","42.96705","-75.08337","Ilion","NY","New York","TRUE","","10786","132.0","36043","Herkimer","{""36043"": ""99.63"", ""36077"": ""0.37""}","Herkimer|Otsego","36043|36077","FALSE","FALSE","America/New_York"
-"13360","43.72756","-74.73795","Inlet","NY","New York","TRUE","","133","0.8","36041","Hamilton","{""36041"": ""100""}","Hamilton","36041","FALSE","FALSE","America/New_York"
-"13361","42.90373","-74.86827","Jordanville","NY","New York","TRUE","","802","10.9","36043","Herkimer","{""36043"": ""85.56"", ""36077"": ""14.44""}","Herkimer|Otsego","36043|36077","FALSE","FALSE","America/New_York"
-"13362","42.98218","-75.52199","Knoxboro","NY","New York","TRUE","","150","209.8","36065","Oneida","{""36065"": ""100""}","Oneida","36065","FALSE","FALSE","America/New_York"
-"13363","43.3273","-75.51383","Lee Center","NY","New York","TRUE","","2453","44.7","36065","Oneida","{""36065"": ""100""}","Oneida","36065","FALSE","FALSE","America/New_York"
-"13364","42.80502","-75.26104","Leonardsville","NY","New York","TRUE","","89","11.6","36053","Madison","{""36053"": ""100""}","Madison","36053","FALSE","FALSE","America/New_York"
-"13365","43.1214","-74.8449","Little Falls","NY","New York","TRUE","","8339","24.0","36043","Herkimer","{""36043"": ""100""}","Herkimer","36043","FALSE","FALSE","America/New_York"
-"13367","43.85827","-75.30587","Lowville","NY","New York","TRUE","","8767","7.5","36049","Lewis","{""36049"": ""99.76"", ""36043"": ""0.24""}","Lewis|Herkimer","36049|36043","FALSE","FALSE","America/New_York"
-"13368","43.63877","-75.27511","Lyons Falls","NY","New York","TRUE","","1062","9.0","36049","Lewis","{""36049"": ""100""}","Lewis","36049","FALSE","FALSE","America/New_York"
-"13402","42.90116","-75.50495","Madison","NY","New York","TRUE","","1659","25.2","36053","Madison","{""36053"": ""98.76"", ""36065"": ""1.24""}","Madison|Oneida","36053|36065","FALSE","FALSE","America/New_York"
-"13403","43.1692","-75.2708","Marcy","NY","New York","TRUE","","7302","105.6","36065","Oneida","{""36065"": ""100""}","Oneida","36065","FALSE","FALSE","America/New_York"
-"13404","43.73635","-75.47172","Martinsburg","NY","New York","TRUE","","124","16.2","36049","Lewis","{""36049"": ""100""}","Lewis","36049","FALSE","FALSE","America/New_York"
-"13406","43.13529","-74.91789","Middleville","NY","New York","TRUE","","721","25.5","36043","Herkimer","{""36043"": ""100""}","Herkimer","36043","FALSE","FALSE","America/New_York"
-"13407","42.96895","-74.94448","Mohawk","NY","New York","TRUE","","5023","35.7","36043","Herkimer","{""36043"": ""100""}","Herkimer","36043","FALSE","FALSE","America/New_York"
-"13408","42.91981","-75.66916","Morrisville","NY","New York","TRUE","","3845","39.4","36053","Madison","{""36053"": ""100""}","Madison","36053","FALSE","FALSE","America/New_York"
-"13409","42.97648","-75.5951","Munnsville","NY","New York","TRUE","","2437","27.3","36053","Madison","{""36053"": ""100""}","Madison","36053","FALSE","FALSE","America/New_York"
-"13410","42.93103","-74.61255","Nelliston","NY","New York","TRUE","","291","1021.5","36057","Montgomery","{""36057"": ""100""}","Montgomery","36057","FALSE","FALSE","America/New_York"
-"13411","42.63306","-75.31162","New Berlin","NY","New York","TRUE","","3152","17.8","36017","Chenango","{""36017"": ""59.01"", ""36077"": ""40.99""}","Chenango|Otsego","36017|36077","FALSE","FALSE","America/New_York"
-"13413","43.05898","-75.27709","New Hartford","NY","New York","TRUE","","15777","306.3","36065","Oneida","{""36065"": ""98.65"", ""36043"": ""1.35""}","Oneida|Herkimer","36065|36043","FALSE","FALSE","America/New_York"
-"13415","42.59653","-75.19847","New Lisbon","NY","New York","TRUE","","73","14.2","36077","Otsego","{""36077"": ""100""}","Otsego","36077","FALSE","FALSE","America/New_York"
-"13416","43.18705","-74.95615","Newport","NY","New York","TRUE","","2189","16.3","36043","Herkimer","{""36043"": ""100""}","Herkimer","36043","FALSE","FALSE","America/New_York"
-"13417","43.10096","-75.2938","New York Mills","NY","New York","TRUE","","3362","993.3","36065","Oneida","{""36065"": ""100""}","Oneida","36065","FALSE","FALSE","America/New_York"
-"13418","42.84506","-75.38218","North Brookfield","NY","New York","TRUE","","345","25.5","36053","Madison","{""36053"": ""100""}","Madison","36053","FALSE","FALSE","America/New_York"
-"13420","43.70795","-74.99236","Old Forge","NY","New York","TRUE","","864","1.5","36043","Herkimer","{""36043"": ""100""}","Herkimer","36043","FALSE","FALSE","America/New_York"
-"13421","43.06521","-75.64464","Oneida","NY","New York","TRUE","","13149","120.8","36053","Madison","{""36053"": ""83.12"", ""36065"": ""16.88""}","Madison|Oneida","36053|36065","FALSE","FALSE","America/New_York"
-"13424","43.15238","-75.36526","Oriskany","NY","New York","TRUE","","2338","81.0","36065","Oneida","{""36065"": ""100""}","Oneida","36065","FALSE","FALSE","America/New_York"
-"13425","42.9635","-75.48701","Oriskany Falls","NY","New York","TRUE","","2318","35.1","36065","Oneida","{""36065"": ""92.94"", ""36053"": ""7.06""}","Oneida|Madison","36065|36053","FALSE","FALSE","America/New_York"
-"13428","42.92177","-74.54059","Palatine Bridge","NY","New York","TRUE","","1615","39.5","36057","Montgomery","{""36057"": ""100""}","Montgomery","36057","FALSE","FALSE","America/New_York"
-"13431","43.21291","-75.07749","Poland","NY","New York","TRUE","","1811","19.0","36043","Herkimer","{""36043"": ""93.52"", ""36065"": ""6.48""}","Herkimer|Oneida","36043|36065","FALSE","FALSE","America/New_York"
-"13433","43.58639","-75.26501","Port Leyden","NY","New York","TRUE","","1791","15.9","36049","Lewis","{""36049"": ""100""}","Lewis","36049","FALSE","FALSE","America/New_York"
-"13435","43.30516","-75.15067","Prospect","NY","New York","TRUE","","393","728.5","36065","Oneida","{""36065"": ""100""}","Oneida","36065","FALSE","FALSE","America/New_York"
-"13436","43.81103","-74.66038","Raquette Lake","NY","New York","TRUE","","74","0.7","36041","Hamilton","{""36041"": ""100""}","Hamilton","36041","FALSE","FALSE","America/New_York"
-"13437","43.59719","-75.80364","Redfield","NY","New York","TRUE","","382","1.5","36075","Oswego","{""36075"": ""90"", ""36049"": ""10""}","Oswego|Lewis","36075|36049","FALSE","FALSE","America/New_York"
-"13438","43.34881","-75.16444","Remsen","NY","New York","TRUE","","3392","15.3","36065","Oneida","{""36065"": ""85.67"", ""36043"": ""14.33""}","Oneida|Herkimer","36065|36043","FALSE","FALSE","America/New_York"
-"13439","42.85611","-74.99561","Richfield Springs","NY","New York","TRUE","","3518","15.8","36077","Otsego","{""36077"": ""76.18"", ""36043"": ""23.82""}","Otsego|Herkimer","36077|36043","FALSE","FALSE","America/New_York"
-"13440","43.21598","-75.46131","Rome","NY","New York","TRUE","","41014","140.3","36065","Oneida","{""36065"": ""100""}","Oneida","36065","FALSE","FALSE","America/New_York"
-"13441","43.22639","-75.40825","Rome","NY","New York","TRUE","","184","19.8","36065","Oneida","{""36065"": ""100""}","Oneida","36065","FALSE","FALSE","America/New_York"
-"13450","42.70193","-74.8103","Roseboom","NY","New York","TRUE","","35","5.7","36077","Otsego","{""36077"": ""100""}","Otsego","36077","FALSE","FALSE","America/New_York"
-"13452","43.03926","-74.6285","Saint Johnsville","NY","New York","TRUE","","4618","23.4","36057","Montgomery","{""36057"": ""57.18"", ""36035"": ""42.82""}","Montgomery|Fulton","36057|36035","FALSE","FALSE","America/New_York"
-"13454","43.20988","-74.75733","Salisbury Center","NY","New York","TRUE","","661","5.9","36043","Herkimer","{""36043"": ""100""}","Herkimer","36043","FALSE","FALSE","America/New_York"
-"13456","42.99999","-75.25549","Sauquoit","NY","New York","TRUE","","4005","55.1","36065","Oneida","{""36065"": ""91.62"", ""36043"": ""8.38""}","Oneida|Herkimer","36065|36043","FALSE","FALSE","America/New_York"
-"13459","42.7765","-74.5882","Sharon Springs","NY","New York","TRUE","","2557","19.4","36095","Schoharie","{""36095"": ""95.86"", ""36057"": ""3.51"", ""36077"": ""0.63""}","Schoharie|Montgomery|Otsego","36095|36057|36077","FALSE","FALSE","America/New_York"
-"13460","42.68706","-75.45419","Sherburne","NY","New York","TRUE","","4414","23.8","36017","Chenango","{""36017"": ""99.62"", ""36053"": ""0.38""}","Chenango|Madison","36017|36053","FALSE","FALSE","America/New_York"
-"13461","43.07041","-75.59912","Sherrill","NY","New York","TRUE","","3000","499.6","36065","Oneida","{""36065"": ""100""}","Oneida","36065","FALSE","FALSE","America/New_York"
-"13464","42.68586","-75.61754","Smyrna","NY","New York","TRUE","","1373","13.8","36017","Chenango","{""36017"": ""100""}","Chenango","36017","FALSE","FALSE","America/New_York"
-"13468","42.84523","-74.85576","Springfield Center","NY","New York","TRUE","","486","19.3","36077","Otsego","{""36077"": ""100""}","Otsego","36077","FALSE","FALSE","America/New_York"
-"13469","43.21526","-75.29956","Stittville","NY","New York","TRUE","","1131","108.7","36065","Oneida","{""36065"": ""100""}","Oneida","36065","FALSE","FALSE","America/New_York"
-"13470","43.19982","-74.64135","Stratford","NY","New York","TRUE","","517","3.0","36035","Fulton","{""36035"": ""82.9"", ""36043"": ""17.1""}","Fulton|Herkimer","36035|36043","FALSE","FALSE","America/New_York"
-"13471","43.42057","-75.6175","Taberg","NY","New York","TRUE","","3291","13.5","36065","Oneida","{""36065"": ""98.76"", ""36049"": ""1.24""}","Oneida|Lewis","36065|36049","FALSE","FALSE","America/New_York"
-"13472","43.69405","-75.0594","Thendara","NY","New York","TRUE","","68","1.8","36043","Herkimer","{""36043"": ""100""}","Herkimer","36043","FALSE","FALSE","America/New_York"
-"13473","43.64444","-75.46384","Turin","NY","New York","TRUE","","776","6.5","36049","Lewis","{""36049"": ""100""}","Lewis","36049","FALSE","FALSE","America/New_York"
-"13475","42.89381","-74.83025","Van Hornesville","NY","New York","TRUE","","16","408.9","36043","Herkimer","{""36043"": ""100""}","Herkimer","36043","FALSE","FALSE","America/New_York"
-"13476","43.08838","-75.50959","Vernon","NY","New York","TRUE","","4150","75.0","36065","Oneida","{""36065"": ""100""}","Oneida","36065","FALSE","FALSE","America/New_York"
-"13477","43.03291","-75.51291","Vernon Center","NY","New York","TRUE","","991","18.9","36065","Oneida","{""36065"": ""100""}","Oneida","36065","FALSE","FALSE","America/New_York"
-"13478","43.14924","-75.58207","Verona","NY","New York","TRUE","","3009","32.5","36065","Oneida","{""36065"": ""100""}","Oneida","36065","FALSE","FALSE","America/New_York"
-"13480","42.91577","-75.3675","Waterville","NY","New York","TRUE","","3372","24.2","36065","Oneida","{""36065"": ""97.82"", ""36053"": ""2.18""}","Oneida|Madison","36065|36053","FALSE","FALSE","America/New_York"
-"13483","43.39757","-75.82556","Westdale","NY","New York","TRUE","","418","23.3","36065","Oneida","{""36065"": ""100""}","Oneida","36065","FALSE","FALSE","America/New_York"
-"13484","42.86633","-75.65921","West Eaton","NY","New York","TRUE","","322","48.8","36053","Madison","{""36053"": ""100""}","Madison","36053","FALSE","FALSE","America/New_York"
-"13485","42.78675","-75.31488","West Edmeston","NY","New York","TRUE","","1029","9.0","36053","Madison","{""36053"": ""69.35"", ""36077"": ""20.76"", ""36017"": ""9.89""}","Madison|Otsego|Chenango","36053|36077|36017","FALSE","FALSE","America/New_York"
-"13486","43.34664","-75.34962","Westernville","NY","New York","TRUE","","937","12.3","36065","Oneida","{""36065"": ""100""}","Oneida","36065","FALSE","FALSE","America/New_York"
-"13488","42.691","-74.74894","Westford","NY","New York","TRUE","","172","15.9","36077","Otsego","{""36077"": ""100""}","Otsego","36077","FALSE","FALSE","America/New_York"
-"13489","43.46716","-75.54189","West Leyden","NY","New York","TRUE","","658","5.9","36049","Lewis","{""36049"": ""96.35"", ""36065"": ""3.65""}","Lewis|Oneida","36049|36065","FALSE","FALSE","America/New_York"
-"13490","43.11009","-75.42646","Westmoreland","NY","New York","TRUE","","1753","57.2","36065","Oneida","{""36065"": ""100""}","Oneida","36065","FALSE","FALSE","America/New_York"
-"13491","42.86272","-75.17634","West Winfield","NY","New York","TRUE","","3606","19.2","36043","Herkimer","{""36043"": ""58.8"", ""36077"": ""29.96"", ""36053"": ""11.23""}","Herkimer|Otsego|Madison","36043|36077|36053","FALSE","FALSE","America/New_York"
-"13492","43.11988","-75.32875","Whitesboro","NY","New York","TRUE","","11154","285.6","36065","Oneida","{""36065"": ""100""}","Oneida","36065","FALSE","FALSE","America/New_York"
-"13493","43.43417","-75.89572","Williamstown","NY","New York","TRUE","","1804","9.3","36075","Oswego","{""36075"": ""100""}","Oswego","36075","FALSE","FALSE","America/New_York"
-"13494","43.53267","-75.14125","Woodgate","NY","New York","TRUE","","287","6.3","36065","Oneida","{""36065"": ""100""}","Oneida","36065","FALSE","FALSE","America/New_York"
-"13495","43.11085","-75.27752","Yorkville","NY","New York","TRUE","","2059","910.9","36065","Oneida","{""36065"": ""100""}","Oneida","36065","FALSE","FALSE","America/New_York"
-"13501","43.08125","-75.22635","Utica","NY","New York","TRUE","","36920","1629.4","36065","Oneida","{""36065"": ""100""}","Oneida","36065","FALSE","FALSE","America/New_York"
-"13502","43.14099","-75.16112","Utica","NY","New York","TRUE","","33314","239.3","36065","Oneida","{""36065"": ""93.72"", ""36043"": ""6.28""}","Oneida|Herkimer","36065|36043","FALSE","FALSE","America/New_York"
-"13601","43.96838","-75.90673","Watertown","NY","New York","TRUE","","37548","103.0","36045","Jefferson","{""36045"": ""99.88"", ""36049"": ""0.12""}","Jefferson|Lewis","36045|36049","FALSE","FALSE","America/New_York"
-"13602","44.05127","-75.76504","Fort Drum","NY","New York","TRUE","","3968","157.1","36045","Jefferson","{""36045"": ""100""}","Jefferson","36045","FALSE","FALSE","America/New_York"
-"13603","44.03703","-75.79779","Watertown","NY","New York","TRUE","","9501","672.7","36045","Jefferson","{""36045"": ""100""}","Jefferson","36045","FALSE","FALSE","America/New_York"
-"13605","43.80618","-76.04894","Adams","NY","New York","TRUE","","5014","24.0","36045","Jefferson","{""36045"": ""100""}","Jefferson","36045","FALSE","FALSE","America/New_York"
-"13606","43.87206","-76.01523","Adams Center","NY","New York","TRUE","","2512","27.6","36045","Jefferson","{""36045"": ""100""}","Jefferson","36045","FALSE","FALSE","America/New_York"
-"13607","44.31524","-75.919","Alexandria Bay","NY","New York","TRUE","","1322","28.6","36045","Jefferson","{""36045"": ""100""}","Jefferson","36045","FALSE","FALSE","America/New_York"
-"13608","44.2403","-75.62522","Antwerp","NY","New York","TRUE","","1607","15.7","36045","Jefferson","{""36045"": ""85.05"", ""36089"": ""14.95""}","Jefferson|St. Lawrence","36045|36089","FALSE","FALSE","America/New_York"
-"13612","43.98821","-75.7716","Black River","NY","New York","TRUE","","2386","52.0","36045","Jefferson","{""36045"": ""100""}","Jefferson","36045","FALSE","FALSE","America/New_York"
-"13613","44.86385","-74.74076","Brasher Falls","NY","New York","TRUE","","2708","12.6","36089","St. Lawrence","{""36089"": ""100""}","St. Lawrence","36089","FALSE","FALSE","America/New_York"
-"13614","44.53089","-75.69114","Brier Hill","NY","New York","TRUE","","339","14.6","36089","St. Lawrence","{""36089"": ""100""}","St. Lawrence","36089","FALSE","FALSE","America/Toronto"
-"13615","44.04018","-75.98509","Brownville","NY","New York","TRUE","","922","93.0","36045","Jefferson","{""36045"": ""100""}","Jefferson","36045","FALSE","FALSE","America/New_York"
-"13616","44.02608","-75.85861","Calcium","NY","New York","TRUE","","1722","120.0","36045","Jefferson","{""36045"": ""100""}","Jefferson","36045","FALSE","FALSE","America/New_York"
-"13617","44.5792","-75.14931","Canton","NY","New York","TRUE","","11137","33.7","36089","St. Lawrence","{""36089"": ""100""}","St. Lawrence","36089","FALSE","FALSE","America/New_York"
-"13618","44.11925","-76.27578","Cape Vincent","NY","New York","TRUE","","1590","12.2","36045","Jefferson","{""36045"": ""100""}","Jefferson","36045","FALSE","FALSE","America/New_York"
-"13619","43.97907","-75.60121","Carthage","NY","New York","TRUE","","10400","36.9","36045","Jefferson","{""36045"": ""88.77"", ""36049"": ""11.23""}","Jefferson|Lewis","36045|36049","FALSE","FALSE","America/New_York"
-"13620","43.91039","-75.45017","Castorland","NY","New York","TRUE","","2267","18.9","36049","Lewis","{""36049"": ""100""}","Lewis","36049","FALSE","FALSE","America/New_York"
-"13621","44.83972","-75.07205","Chase Mills","NY","New York","TRUE","","469","6.7","36089","St. Lawrence","{""36089"": ""100""}","St. Lawrence","36089","FALSE","FALSE","America/New_York"
-"13622","44.09671","-76.11278","Chaumont","NY","New York","TRUE","","2410","16.0","36045","Jefferson","{""36045"": ""100""}","Jefferson","36045","FALSE","FALSE","America/New_York"
-"13623","44.44976","-75.75247","Chippewa Bay","NY","New York","TRUE","","18","17.5","36089","St. Lawrence","{""36089"": ""100""}","St. Lawrence","36089","FALSE","FALSE","America/New_York"
-"13624","44.21199","-76.09426","Clayton","NY","New York","TRUE","","5305","32.3","36045","Jefferson","{""36045"": ""100""}","Jefferson","36045","FALSE","FALSE","America/New_York"
-"13625","44.53799","-74.92593","Colton","NY","New York","TRUE","","1778","12.4","36089","St. Lawrence","{""36089"": ""100""}","St. Lawrence","36089","FALSE","FALSE","America/New_York"
-"13626","43.84126","-75.72062","Copenhagen","NY","New York","TRUE","","2172","8.4","36049","Lewis","{""36049"": ""83.33"", ""36045"": ""16.67""}","Lewis|Jefferson","36049|36045","FALSE","FALSE","America/New_York"
-"13628","44.0316","-75.68246","Deferiet","NY","New York","TRUE","","222","465.2","36045","Jefferson","{""36045"": ""100""}","Jefferson","36045","FALSE","FALSE","America/New_York"
-"13630","44.49742","-75.31529","De Kalb Junction","NY","New York","TRUE","","1448","11.6","36089","St. Lawrence","{""36089"": ""100""}","St. Lawrence","36089","FALSE","FALSE","America/New_York"
-"13633","44.48686","-75.48393","De Peyster","NY","New York","TRUE","","306","6.0","36089","St. Lawrence","{""36089"": ""100""}","St. Lawrence","36089","FALSE","FALSE","America/New_York"
-"13634","44.00948","-76.07736","Dexter","NY","New York","TRUE","","4064","35.6","36045","Jefferson","{""36045"": ""100""}","Jefferson","36045","FALSE","FALSE","America/New_York"
-"13635","44.3039","-75.2504","Edwards","NY","New York","TRUE","","1210","8.5","36089","St. Lawrence","{""36089"": ""100""}","St. Lawrence","36089","FALSE","FALSE","America/New_York"
-"13636","43.74343","-76.11664","Ellisburg","NY","New York","TRUE","","237","28.5","36045","Jefferson","{""36045"": ""100""}","Jefferson","36045","FALSE","FALSE","America/New_York"
-"13637","44.09632","-75.83001","Evans Mills","NY","New York","TRUE","","4318","47.3","36045","Jefferson","{""36045"": ""100""}","Jefferson","36045","FALSE","FALSE","America/New_York"
-"13638","44.02032","-75.74888","Felts Mills","NY","New York","TRUE","","254","80.1","36045","Jefferson","{""36045"": ""100""}","Jefferson","36045","FALSE","FALSE","America/New_York"
-"13639","44.2541","-75.13798","Fine","NY","New York","TRUE","","252","5.0","36089","St. Lawrence","{""36089"": ""100""}","St. Lawrence","36089","FALSE","FALSE","America/New_York"
-"13640","44.32224","-75.99117","Wellesley Island","NY","New York","TRUE","","301","9.4","36045","Jefferson","{""36045"": ""100""}","Jefferson","36045","FALSE","FALSE","America/New_York"
-"13641","44.27524","-76.00474","Fishers Landing","NY","New York","TRUE","","48","59.9","36045","Jefferson","{""36045"": ""100""}","Jefferson","36045","FALSE","FALSE","America/New_York"
-"13642","44.33609","-75.45708","Gouverneur","NY","New York","TRUE","","9909","21.1","36089","St. Lawrence","{""36089"": ""99.42"", ""36045"": ""0.58""}","St. Lawrence|Jefferson","36089|36045","FALSE","FALSE","America/New_York"
-"13643","44.03181","-75.71709","Great Bend","NY","New York","TRUE","","43","458.5","36045","Jefferson","{""36045"": ""100""}","Jefferson","36045","FALSE","FALSE","America/New_York"
-"13646","44.43933","-75.67844","Hammond","NY","New York","TRUE","","2014","7.2","36089","St. Lawrence","{""36089"": ""99.41"", ""36045"": ""0.59""}","St. Lawrence|Jefferson","36089|36045","FALSE","FALSE","America/New_York"
-"13647","44.60584","-74.98059","Hannawa Falls","NY","New York","TRUE","","55","232.6","36089","St. Lawrence","{""36089"": ""100""}","St. Lawrence","36089","FALSE","FALSE","America/New_York"
-"13648","44.14914","-75.31807","Harrisville","NY","New York","TRUE","","2121","4.5","36049","Lewis","{""36049"": ""58.83"", ""36089"": ""41.17""}","Lewis|St. Lawrence","36049|36089","FALSE","FALSE","America/New_York"
-"13650","43.80752","-76.206","Henderson","NY","New York","TRUE","","1567","14.6","36045","Jefferson","{""36045"": ""100""}","Jefferson","36045","FALSE","FALSE","America/New_York"
-"13651","43.868","-76.17874","Henderson Harbor","NY","New York","TRUE","","96","15.1","36045","Jefferson","{""36045"": ""100""}","Jefferson","36045","FALSE","FALSE","America/New_York"
-"13652","44.44226","-75.20324","Hermon","NY","New York","TRUE","","1548","9.0","36089","St. Lawrence","{""36089"": ""100""}","St. Lawrence","36089","FALSE","FALSE","America/New_York"
-"13654","44.56872","-75.45567","Heuvelton","NY","New York","TRUE","","2578","15.0","36089","St. Lawrence","{""36089"": ""100""}","St. Lawrence","36089","FALSE","FALSE","America/New_York"
-"13655","44.97809","-74.6513","Hogansburg","NY","New York","TRUE","","3444","65.8","36033","Franklin","{""36033"": ""95.16"", ""36089"": ""4.84""}","Franklin|St. Lawrence","36033|36089","FALSE","FALSE","America/New_York"
-"13656","44.19138","-75.94969","La Fargeville","NY","New York","TRUE","","3133","14.2","36045","Jefferson","{""36045"": ""100""}","Jefferson","36045","FALSE","FALSE","America/New_York"
-"13658","44.73794","-75.27739","Lisbon","NY","New York","TRUE","","2320","11.4","36089","St. Lawrence","{""36089"": ""100""}","St. Lawrence","36089","FALSE","FALSE","America/New_York"
-"13659","43.73818","-75.87133","Lorraine","NY","New York","TRUE","","439","3.0","36045","Jefferson","{""36045"": ""100""}","Jefferson","36045","FALSE","FALSE","America/New_York"
-"13660","44.77123","-75.15848","Madrid","NY","New York","TRUE","","1697","12.2","36089","St. Lawrence","{""36089"": ""100""}","St. Lawrence","36089","FALSE","FALSE","America/New_York"
-"13661","43.70988","-76.10606","Mannsville","NY","New York","TRUE","","1521","12.8","36045","Jefferson","{""36045"": ""97.21"", ""36075"": ""2.79""}","Jefferson|Oswego","36045|36075","FALSE","FALSE","America/New_York"
-"13662","44.9322","-74.8844","Massena","NY","New York","TRUE","","16267","70.7","36089","St. Lawrence","{""36089"": ""100""}","St. Lawrence","36089","FALSE","FALSE","America/New_York"
-"13664","44.58426","-75.64532","Morristown","NY","New York","TRUE","","306","120.1","36089","St. Lawrence","{""36089"": ""100""}","St. Lawrence","36089","FALSE","FALSE","America/Toronto"
-"13665","44.0477","-75.44368","Natural Bridge","NY","New York","TRUE","","728","6.5","36045","Jefferson","{""36045"": ""64.29"", ""36049"": ""35.71""}","Jefferson|Lewis","36045|36049","FALSE","FALSE","America/New_York"
-"13666","44.21772","-74.94226","Newton Falls","NY","New York","TRUE","","183","1.8","36089","St. Lawrence","{""36089"": ""100""}","St. Lawrence","36089","FALSE","FALSE","America/New_York"
-"13667","44.83726","-74.96392","Norfolk","NY","New York","TRUE","","2898","22.6","36089","St. Lawrence","{""36089"": ""100""}","St. Lawrence","36089","FALSE","FALSE","America/New_York"
-"13668","44.75496","-74.98605","Norwood","NY","New York","TRUE","","3138","33.0","36089","St. Lawrence","{""36089"": ""100""}","St. Lawrence","36089","FALSE","FALSE","America/New_York"
-"13669","44.6441","-75.49517","Ogdensburg","NY","New York","TRUE","","15908","60.1","36089","St. Lawrence","{""36089"": ""100""}","St. Lawrence","36089","FALSE","FALSE","America/New_York"
-"13670","44.16999","-75.11349","Oswegatchie","NY","New York","TRUE","","448","2.4","36089","St. Lawrence","{""36089"": ""100""}","St. Lawrence","36089","FALSE","FALSE","America/New_York"
-"13672","44.50261","-74.68515","Parishville","NY","New York","TRUE","","660","2.0","36089","St. Lawrence","{""36089"": ""100""}","St. Lawrence","36089","FALSE","FALSE","America/New_York"
-"13673","44.16665","-75.71884","Philadelphia","NY","New York","TRUE","","2142","23.7","36045","Jefferson","{""36045"": ""100""}","Jefferson","36045","FALSE","FALSE","America/New_York"
-"13674","43.73823","-76.05526","Pierrepont Manor","NY","New York","TRUE","","155","105.5","36045","Jefferson","{""36045"": ""100""}","Jefferson","36045","FALSE","FALSE","America/New_York"
-"13675","44.27907","-75.84834","Plessis","NY","New York","TRUE","","149","54.6","36045","Jefferson","{""36045"": ""100""}","Jefferson","36045","FALSE","FALSE","America/New_York"
-"13676","44.653","-74.92142","Potsdam","NY","New York","TRUE","","16637","40.3","36089","St. Lawrence","{""36089"": ""100""}","St. Lawrence","36089","FALSE","FALSE","America/New_York"
-"13677","44.51126","-75.17881","Pyrites","NY","New York","TRUE","","39","76.6","36089","St. Lawrence","{""36089"": ""100""}","St. Lawrence","36089","FALSE","FALSE","America/New_York"
-"13678","44.82086","-74.98385","Raymondville","NY","New York","TRUE","","400","196.7","36089","St. Lawrence","{""36089"": ""100""}","St. Lawrence","36089","FALSE","FALSE","America/New_York"
-"13679","44.32437","-75.76427","Redwood","NY","New York","TRUE","","1851","11.4","36045","Jefferson","{""36045"": ""91.8"", ""36089"": ""8.2""}","Jefferson|St. Lawrence","36045|36089","FALSE","FALSE","America/New_York"
-"13680","44.59421","-75.32386","Rensselaer Falls","NY","New York","TRUE","","1702","18.7","36089","St. Lawrence","{""36089"": ""100""}","St. Lawrence","36089","FALSE","FALSE","America/New_York"
-"13681","44.42851","-75.37088","Richville","NY","New York","TRUE","","1053","12.0","36089","St. Lawrence","{""36089"": ""100""}","St. Lawrence","36089","FALSE","FALSE","America/New_York"
-"13682","43.84193","-75.8901","Rodman","NY","New York","TRUE","","731","9.0","36045","Jefferson","{""36045"": ""98.06"", ""36049"": ""1.94""}","Jefferson|Lewis","36045|36049","FALSE","FALSE","America/New_York"
-"13684","44.36187","-75.04066","Russell","NY","New York","TRUE","","1006","2.5","36089","St. Lawrence","{""36089"": ""100""}","St. Lawrence","36089","FALSE","FALSE","America/New_York"
-"13685","43.92448","-76.17347","Sackets Harbor","NY","New York","TRUE","","2460","47.1","36045","Jefferson","{""36045"": ""100""}","Jefferson","36045","FALSE","FALSE","America/New_York"
-"13687","44.42317","-74.82047","South Colton","NY","New York","TRUE","","418","1.2","36089","St. Lawrence","{""36089"": ""100""}","St. Lawrence","36089","FALSE","FALSE","America/New_York"
-"13690","44.11593","-75.01035","Star Lake","NY","New York","TRUE","","633","4.7","36089","St. Lawrence","{""36089"": ""100""}","St. Lawrence","36089","FALSE","FALSE","America/New_York"
-"13691","44.22541","-75.7832","Theresa","NY","New York","TRUE","","3074","16.4","36045","Jefferson","{""36045"": ""100""}","Jefferson","36045","FALSE","FALSE","America/New_York"
-"13692","44.28887","-76.02632","Thousand Island Park","NY","New York","TRUE","","30","42.4","36045","Jefferson","{""36045"": ""100""}","Jefferson","36045","FALSE","FALSE","America/New_York"
-"13693","44.02833","-76.25075","Three Mile Bay","NY","New York","TRUE","","439","8.8","36045","Jefferson","{""36045"": ""100""}","Jefferson","36045","FALSE","FALSE","America/New_York"
-"13694","44.85099","-75.16108","Waddington","NY","New York","TRUE","","1244","21.5","36089","St. Lawrence","{""36089"": ""100""}","St. Lawrence","36089","FALSE","FALSE","America/New_York"
-"13695","44.10979","-74.92161","Wanakena","NY","New York","TRUE","","158","3.6","36089","St. Lawrence","{""36089"": ""100""}","St. Lawrence","36089","FALSE","FALSE","America/New_York"
-"13696","44.69472","-74.88802","West Stockholm","NY","New York","TRUE","","94","19.5","36089","St. Lawrence","{""36089"": ""100""}","St. Lawrence","36089","FALSE","FALSE","America/New_York"
-"13697","44.74892","-74.8095","Winthrop","NY","New York","TRUE","","2047","12.1","36089","St. Lawrence","{""36089"": ""100""}","St. Lawrence","36089","FALSE","FALSE","America/New_York"
-"13730","42.22934","-75.53325","Afton","NY","New York","TRUE","","2687","21.2","36017","Chenango","{""36017"": ""96.51"", ""36007"": ""3.49""}","Chenango|Broome","36017|36007","FALSE","FALSE","America/New_York"
-"13731","42.12927","-74.78925","Andes","NY","New York","TRUE","","923","4.0","36025","Delaware","{""36025"": ""100""}","Delaware","36025","FALSE","FALSE","America/New_York"
-"13732","42.04413","-76.168","Apalachin","NY","New York","TRUE","","7799","91.4","36107","Tioga","{""36107"": ""100""}","Tioga","36107","FALSE","FALSE","America/New_York"
-"13733","42.30321","-75.48204","Bainbridge","NY","New York","TRUE","","4811","20.5","36017","Chenango","{""36017"": ""93.94"", ""36077"": ""3.89"", ""36025"": ""2.17""}","Chenango|Otsego|Delaware","36017|36077|36025","FALSE","FALSE","America/New_York"
-"13734","42.07439","-76.40764","Barton","NY","New York","TRUE","","1817","19.4","36107","Tioga","{""36107"": ""100""}","Tioga","36107","FALSE","FALSE","America/New_York"
-"13736","42.31851","-76.19833","Berkshire","NY","New York","TRUE","","2283","14.5","36107","Tioga","{""36107"": ""84.94"", ""36109"": ""12.92"", ""36007"": ""2.14""}","Tioga|Tompkins|Broome","36107|36109|36007","FALSE","FALSE","America/New_York"
-"13739","42.36614","-74.79281","Bloomville","NY","New York","TRUE","","752","7.2","36025","Delaware","{""36025"": ""100""}","Delaware","36025","FALSE","FALSE","America/New_York"
-"13740","42.27136","-74.75077","Bovina Center","NY","New York","TRUE","","515","5.0","36025","Delaware","{""36025"": ""100""}","Delaware","36025","FALSE","FALSE","America/New_York"
-"13743","42.21616","-76.33854","Candor","NY","New York","TRUE","","3551","23.3","36107","Tioga","{""36107"": ""100""}","Tioga","36107","FALSE","FALSE","America/New_York"
-"13744","42.23865","-75.90912","Castle Creek","NY","New York","TRUE","","1142","38.1","36007","Broome","{""36007"": ""100""}","Broome","36007","FALSE","FALSE","America/New_York"
-"13746","42.27242","-75.83524","Chenango Forks","NY","New York","TRUE","","1954","27.2","36007","Broome","{""36007"": ""84.09"", ""36017"": ""15.91""}","Broome|Chenango","36007|36017","FALSE","FALSE","America/New_York"
-"13748","42.0345","-75.81702","Conklin","NY","New York","TRUE","","3876","112.9","36007","Broome","{""36007"": ""100""}","Broome","36007","FALSE","FALSE","America/New_York"
-"13750","42.47127","-74.84609","Davenport","NY","New York","TRUE","","918","13.2","36025","Delaware","{""36025"": ""100""}","Delaware","36025","FALSE","FALSE","America/New_York"
-"13751","42.4508","-74.90131","Davenport Center","NY","New York","TRUE","","180","35.3","36025","Delaware","{""36025"": ""100""}","Delaware","36025","FALSE","FALSE","America/New_York"
-"13752","42.18312","-74.90136","Delancey","NY","New York","TRUE","","794","6.3","36025","Delaware","{""36025"": ""100""}","Delaware","36025","FALSE","FALSE","America/New_York"
-"13753","42.30733","-74.92678","Delhi","NY","New York","TRUE","","5651","23.3","36025","Delaware","{""36025"": ""100""}","Delaware","36025","FALSE","FALSE","America/New_York"
-"13754","42.09109","-75.4358","Deposit","NY","New York","TRUE","","3147","15.3","36007","Broome","{""36007"": ""55.8"", ""36025"": ""44.2""}","Broome|Delaware","36007|36025","FALSE","FALSE","America/New_York"
-"13755","42.06285","-74.99797","Downsville","NY","New York","TRUE","","1127","7.6","36025","Delaware","{""36025"": ""100""}","Delaware","36025","FALSE","FALSE","America/New_York"
-"13756","42.00622","-75.10093","East Branch","NY","New York","TRUE","","384","3.2","36025","Delaware","{""36025"": ""100""}","Delaware","36025","FALSE","FALSE","America/New_York"
-"13757","42.40895","-74.90374","East Meredith","NY","New York","TRUE","","1338","13.9","36025","Delaware","{""36025"": ""100""}","Delaware","36025","FALSE","FALSE","America/New_York"
-"13760","42.1349","-76.08467","Endicott","NY","New York","TRUE","","42372","332.6","36007","Broome","{""36007"": ""92.06"", ""36107"": ""7.94""}","Broome|Tioga","36007|36107","FALSE","FALSE","America/New_York"
-"13774","41.9655","-75.15925","Fishs Eddy","NY","New York","TRUE","","154","20.8","36025","Delaware","{""36025"": ""100""}","Delaware","36025","FALSE","FALSE","America/New_York"
-"13775","42.3309","-75.1471","Franklin","NY","New York","TRUE","","1829","13.3","36025","Delaware","{""36025"": ""100""}","Delaware","36025","FALSE","FALSE","America/New_York"
-"13776","42.47058","-75.33294","Gilbertsville","NY","New York","TRUE","","546","37.1","36077","Otsego","{""36077"": ""100""}","Otsego","36077","FALSE","FALSE","America/New_York"
-"13777","42.25815","-75.9896","Glen Aubrey","NY","New York","TRUE","","347","22.3","36007","Broome","{""36007"": ""100""}","Broome","36007","FALSE","FALSE","America/New_York"
-"13778","42.34332","-75.75481","Greene","NY","New York","TRUE","","5486","21.9","36017","Chenango","{""36017"": ""98.87"", ""36007"": ""1.13""}","Chenango|Broome","36017|36007","FALSE","FALSE","America/New_York"
-"13780","42.42488","-75.47926","Guilford","NY","New York","TRUE","","929","16.2","36017","Chenango","{""36017"": ""100""}","Chenango","36017","FALSE","FALSE","America/New_York"
-"13782","42.16647","-74.98201","Hamden","NY","New York","TRUE","","777","8.2","36025","Delaware","{""36025"": ""100""}","Delaware","36025","FALSE","FALSE","America/New_York"
-"13783","41.9914","-75.26477","Hancock","NY","New York","TRUE","","2634","8.9","36025","Delaware","{""36025"": ""100""}","Delaware","36025","FALSE","FALSE","America/New_York"
-"13784","42.42693","-76.22137","Harford","NY","New York","TRUE","","130","107.3","36023","Cortland","{""36023"": ""100""}","Cortland","36023","FALSE","FALSE","America/New_York"
-"13786","42.4414","-74.69464","Harpersfield","NY","New York","TRUE","","365","9.1","36025","Delaware","{""36025"": ""100""}","Delaware","36025","FALSE","FALSE","America/New_York"
-"13787","42.20504","-75.66757","Harpursville","NY","New York","TRUE","","3342","20.3","36007","Broome","{""36007"": ""82.2"", ""36017"": ""17.8""}","Broome|Chenango","36007|36017","FALSE","FALSE","America/New_York"
-"13788","42.35102","-74.65813","Hobart","NY","New York","TRUE","","911","10.0","36025","Delaware","{""36025"": ""100""}","Delaware","36025","FALSE","FALSE","America/New_York"
-"13790","42.17019","-75.99803","Johnson City","NY","New York","TRUE","","17964","239.5","36007","Broome","{""36007"": ""100""}","Broome","36007","FALSE","FALSE","America/New_York"
-"13794","42.39312","-76.0137","Killawog","NY","New York","TRUE","","67","36.1","36007","Broome","{""36007"": ""100""}","Broome","36007","FALSE","FALSE","America/New_York"
-"13795","42.0607","-75.77999","Kirkwood","NY","New York","TRUE","","2878","54.6","36007","Broome","{""36007"": ""100""}","Broome","36007","FALSE","FALSE","America/New_York"
-"13796","42.55069","-75.13978","Laurens","NY","New York","TRUE","","1362","23.6","36077","Otsego","{""36077"": ""100""}","Otsego","36077","FALSE","FALSE","America/New_York"
-"13797","42.33042","-76.04827","Lisle","NY","New York","TRUE","","2220","25.7","36007","Broome","{""36007"": ""100""}","Broome","36007","FALSE","FALSE","America/New_York"
-"13801","42.50961","-75.77965","McDonough","NY","New York","TRUE","","1428","8.0","36017","Chenango","{""36017"": ""100""}","Chenango","36017","FALSE","FALSE","America/New_York"
-"13802","42.2494","-76.04051","Maine","NY","New York","TRUE","","711","27.3","36007","Broome","{""36007"": ""100""}","Broome","36007","FALSE","FALSE","America/New_York"
-"13803","42.45654","-76.06327","Marathon","NY","New York","TRUE","","4243","18.3","36023","Cortland","{""36023"": ""91.5"", ""36007"": ""8.5""}","Cortland|Broome","36023|36007","FALSE","FALSE","America/New_York"
-"13804","42.21024","-75.3739","Masonville","NY","New York","TRUE","","323","8.2","36025","Delaware","{""36025"": ""100""}","Delaware","36025","FALSE","FALSE","America/New_York"
-"13806","42.37348","-74.96509","Meridale","NY","New York","TRUE","","229","28.6","36025","Delaware","{""36025"": ""100""}","Delaware","36025","FALSE","FALSE","America/New_York"
-"13807","42.60875","-74.98652","Milford","NY","New York","TRUE","","1163","18.9","36077","Otsego","{""36077"": ""100""}","Otsego","36077","FALSE","FALSE","America/New_York"
-"13808","42.5279","-75.25647","Morris","NY","New York","TRUE","","1544","16.2","36077","Otsego","{""36077"": ""100""}","Otsego","36077","FALSE","FALSE","America/New_York"
-"13809","42.40381","-75.39554","Mount Upton","NY","New York","TRUE","","1531","19.7","36017","Chenango","{""36017"": ""65.85"", ""36077"": ""34.15""}","Chenango|Otsego","36017|36077","FALSE","FALSE","America/New_York"
-"13810","42.61172","-75.1116","Mount Vision","NY","New York","TRUE","","1210","11.7","36077","Otsego","{""36077"": ""100""}","Otsego","36077","FALSE","FALSE","America/New_York"
-"13811","42.23178","-76.17458","Newark Valley","NY","New York","TRUE","","4243","25.8","36107","Tioga","{""36107"": ""92.93"", ""36007"": ""7.07""}","Tioga|Broome","36107|36007","FALSE","FALSE","America/New_York"
-"13812","42.03013","-76.3539","Nichols","NY","New York","TRUE","","2386","29.2","36107","Tioga","{""36107"": ""100""}","Tioga","36107","FALSE","FALSE","America/New_York"
-"13813","42.16688","-75.54751","Nineveh","NY","New York","TRUE","","752","10.4","36007","Broome","{""36007"": ""83.11"", ""36017"": ""16.89""}","Broome|Chenango","36007|36017","FALSE","FALSE","America/New_York"
-"13815","42.54689","-75.53118","Norwich","NY","New York","TRUE","","12930","46.5","36017","Chenango","{""36017"": ""100""}","Chenango","36017","FALSE","FALSE","America/New_York"
-"13820","42.47468","-75.04058","Oneonta","NY","New York","TRUE","","22070","79.4","36077","Otsego","{""36077"": ""92.51"", ""36025"": ""7.49""}","Otsego|Delaware","36077|36025","FALSE","FALSE","America/New_York"
-"13825","42.43937","-75.2022","Otego","NY","New York","TRUE","","2914","19.9","36077","Otsego","{""36077"": ""97.73"", ""36025"": ""2.27""}","Otsego|Delaware","36077|36025","FALSE","FALSE","America/New_York"
-"13826","42.1026","-75.63986","Ouaquaga","NY","New York","TRUE","","15","6.9","36007","Broome","{""36007"": ""100""}","Broome","36007","FALSE","FALSE","America/New_York"
-"13827","42.11192","-76.2546","Owego","NY","New York","TRUE","","11452","48.4","36107","Tioga","{""36107"": ""100""}","Tioga","36107","FALSE","FALSE","America/New_York"
-"13830","42.44002","-75.62797","Oxford","NY","New York","TRUE","","5077","17.7","36017","Chenango","{""36017"": ""100""}","Chenango","36017","FALSE","FALSE","America/New_York"
-"13832","42.65776","-75.67579","Plymouth","NY","New York","TRUE","","576","8.0","36017","Chenango","{""36017"": ""100""}","Chenango","36017","FALSE","FALSE","America/New_York"
-"13833","42.19942","-75.7672","Port Crane","NY","New York","TRUE","","3728","40.3","36007","Broome","{""36007"": ""100""}","Broome","36007","FALSE","FALSE","America/New_York"
-"13834","42.53386","-74.96276","Portlandville","NY","New York","TRUE","","289","320.4","36077","Otsego","{""36077"": ""100""}","Otsego","36077","FALSE","FALSE","America/New_York"
-"13835","42.38956","-76.17119","Richford","NY","New York","TRUE","","1132","10.4","36107","Tioga","{""36107"": ""51.69"", ""36007"": ""26.6"", ""36023"": ""21.71""}","Tioga|Broome|Cortland","36107|36007|36023","FALSE","FALSE","America/New_York"
-"13838","42.28573","-75.39269","Sidney","NY","New York","TRUE","","4099","152.8","36025","Delaware","{""36025"": ""97.3"", ""36077"": ""2.7""}","Delaware|Otsego","36025|36077","FALSE","FALSE","America/New_York"
-"13839","42.26141","-75.25798","Sidney Center","NY","New York","TRUE","","1171","11.4","36025","Delaware","{""36025"": ""100""}","Delaware","36025","FALSE","FALSE","America/New_York"
-"13841","42.41375","-75.83693","Smithville Flats","NY","New York","TRUE","","659","21.4","36017","Chenango","{""36017"": ""88.28"", ""36023"": ""11.72""}","Chenango|Cortland","36017|36023","FALSE","FALSE","America/New_York"
-"13842","42.37369","-74.72398","South Kortright","NY","New York","TRUE","","606","18.7","36025","Delaware","{""36025"": ""100""}","Delaware","36025","FALSE","FALSE","America/New_York"
-"13843","42.52442","-75.37338","South New Berlin","NY","New York","TRUE","","2015","14.3","36017","Chenango","{""36017"": ""53.87"", ""36077"": ""46.13""}","Chenango|Otsego","36017|36077","FALSE","FALSE","America/New_York"
-"13844","42.61008","-75.67041","South Plymouth","NY","New York","TRUE","","790","12.7","36017","Chenango","{""36017"": ""100""}","Chenango","36017","FALSE","FALSE","America/New_York"
-"13845","42.05471","-76.35374","Tioga Center","NY","New York","TRUE","","123","122.4","36107","Tioga","{""36107"": ""100""}","Tioga","36107","FALSE","FALSE","America/New_York"
-"13846","42.36281","-75.05218","Treadwell","NY","New York","TRUE","","369","17.5","36025","Delaware","{""36025"": ""100""}","Delaware","36025","FALSE","FALSE","America/New_York"
-"13847","42.18592","-75.29064","Trout Creek","NY","New York","TRUE","","98","11.6","36025","Delaware","{""36025"": ""100""}","Delaware","36025","FALSE","FALSE","America/New_York"
-"13849","42.34381","-75.31152","Unadilla","NY","New York","TRUE","","4502","26.3","36077","Otsego","{""36077"": ""79.19"", ""36025"": ""20.81""}","Otsego|Delaware","36077|36025","FALSE","FALSE","America/New_York"
-"13850","42.04876","-76.02661","Vestal","NY","New York","TRUE","","22351","168.7","36007","Broome","{""36007"": ""100""}","Broome","36007","FALSE","FALSE","America/New_York"
-"13856","42.16588","-75.16721","Walton","NY","New York","TRUE","","6089","12.7","36025","Delaware","{""36025"": ""100""}","Delaware","36025","FALSE","FALSE","America/New_York"
-"13859","42.37092","-75.24854","Wells Bridge","NY","New York","TRUE","","146","117.5","36077","Otsego","{""36077"": ""100""}","Otsego","36077","FALSE","FALSE","America/New_York"
-"13860","42.4514","-74.93801","West Davenport","NY","New York","TRUE","","27","11.4","36025","Delaware","{""36025"": ""100""}","Delaware","36025","FALSE","FALSE","America/New_York"
-"13861","42.5053","-75.1491","West Oneonta","NY","New York","TRUE","","273","23.9","36077","Otsego","{""36077"": ""100""}","Otsego","36077","FALSE","FALSE","America/New_York"
-"13862","42.33638","-75.93851","Whitney Point","NY","New York","TRUE","","4290","29.3","36007","Broome","{""36007"": ""99.36"", ""36023"": ""0.64""}","Broome|Cortland","36007|36023","FALSE","FALSE","America/New_York"
-"13863","42.44848","-75.90866","Willet","NY","New York","TRUE","","694","17.6","36023","Cortland","{""36023"": ""100""}","Cortland","36023","FALSE","FALSE","America/New_York"
-"13864","42.28926","-76.3927","Willseyville","NY","New York","TRUE","","880","12.7","36107","Tioga","{""36107"": ""73.46"", ""36109"": ""26.54""}","Tioga|Tompkins","36107|36109","FALSE","FALSE","America/New_York"
-"13865","42.06276","-75.63308","Windsor","NY","New York","TRUE","","6297","22.0","36007","Broome","{""36007"": ""100""}","Broome","36007","FALSE","FALSE","America/New_York"
-"13901","42.1824","-75.87988","Binghamton","NY","New York","TRUE","","19230","319.6","36007","Broome","{""36007"": ""100""}","Broome","36007","FALSE","FALSE","America/New_York"
-"13902","42.08888","-75.96892","Binghamton","NY","New York","TRUE","","6130","3323.9","36007","Broome","{""36007"": ""100""}","Broome","36007","FALSE","FALSE","America/New_York"
-"13903","42.04737","-75.89543","Binghamton","NY","New York","TRUE","","18258","178.0","36007","Broome","{""36007"": ""100""}","Broome","36007","FALSE","FALSE","America/New_York"
-"13904","42.13079","-75.81597","Binghamton","NY","New York","TRUE","","10347","172.3","36007","Broome","{""36007"": ""100""}","Broome","36007","FALSE","FALSE","America/New_York"
-"13905","42.18011","-75.94471","Binghamton","NY","New York","TRUE","","25890","369.6","36007","Broome","{""36007"": ""100""}","Broome","36007","FALSE","FALSE","America/New_York"
-"14001","43.03296","-78.51205","Akron","NY","New York","TRUE","","9522","55.8","36029","Erie","{""36029"": ""89.6"", ""36063"": ""6.23"", ""36037"": ""4.16""}","Erie|Niagara|Genesee","36029|36063|36037","FALSE","FALSE","America/New_York"
-"14004","42.89467","-78.50971","Alden","NY","New York","TRUE","","12332","99.3","36029","Erie","{""36029"": ""94.36"", ""36121"": ""4.49"", ""36037"": ""1.16""}","Erie|Wyoming|Genesee","36029|36121|36037","FALSE","FALSE","America/New_York"
-"14005","42.91694","-78.2503","Alexander","NY","New York","TRUE","","1838","21.2","36037","Genesee","{""36037"": ""100""}","Genesee","36037","FALSE","FALSE","America/New_York"
-"14006","42.63368","-79.02321","Angola","NY","New York","TRUE","","9605","143.3","36029","Erie","{""36029"": ""100""}","Erie","36029","FALSE","FALSE","America/New_York"
-"14008","43.31174","-78.62669","Appleton","NY","New York","TRUE","","1415","22.3","36063","Niagara","{""36063"": ""100""}","Niagara","36063","FALSE","FALSE","America/New_York"
-"14009","42.57462","-78.39319","Arcade","NY","New York","TRUE","","5491","28.6","36121","Wyoming","{""36121"": ""89.17"", ""36009"": ""10.83""}","Wyoming|Cattaraugus","36121|36009","FALSE","FALSE","America/New_York"
-"14011","42.83226","-78.29695","Attica","NY","New York","TRUE","","9198","53.2","36121","Wyoming","{""36121"": ""93.28"", ""36037"": ""6.72""}","Wyoming|Genesee","36121|36037","FALSE","FALSE","America/New_York"
-"14012","43.33439","-78.52548","Barker","NY","New York","TRUE","","2334","28.0","36063","Niagara","{""36063"": ""100""}","Niagara","36063","FALSE","FALSE","America/New_York"
-"14013","43.08141","-78.39763","Basom","NY","New York","TRUE","","1703","16.2","36037","Genesee","{""36037"": ""98.46"", ""36029"": ""1.54""}","Genesee|Erie","36037|36029","FALSE","FALSE","America/New_York"
-"14020","42.99624","-78.21274","Batavia","NY","New York","TRUE","","22707","126.9","36037","Genesee","{""36037"": ""100""}","Genesee","36037","FALSE","FALSE","America/New_York"
-"14024","42.58014","-78.2492","Bliss","NY","New York","TRUE","","1552","9.5","36121","Wyoming","{""36121"": ""96.98"", ""36003"": ""3.02""}","Wyoming|Allegany","36121|36003","FALSE","FALSE","America/New_York"
-"14025","42.6222","-78.72705","Boston","NY","New York","TRUE","","3475","59.9","36029","Erie","{""36029"": ""100""}","Erie","36029","FALSE","FALSE","America/New_York"
-"14026","42.94239","-78.68798","Bowmansville","NY","New York","TRUE","","531","270.6","36029","Erie","{""36029"": ""100""}","Erie","36029","FALSE","FALSE","America/New_York"
-"14028","43.3161","-78.71781","Burt","NY","New York","TRUE","","1776","50.7","36063","Niagara","{""36063"": ""100""}","Niagara","36063","FALSE","FALSE","America/New_York"
-"14030","42.56626","-78.50097","Chaffee","NY","New York","TRUE","","1800","35.0","36029","Erie","{""36029"": ""82.51"", ""36009"": ""16.16"", ""36121"": ""1.33""}","Erie|Cattaraugus|Wyoming","36029|36009|36121","FALSE","FALSE","America/New_York"
-"14031","42.98721","-78.61075","Clarence","NY","New York","TRUE","","10468","215.9","36029","Erie","{""36029"": ""100""}","Erie","36029","FALSE","FALSE","America/New_York"
-"14032","43.04672","-78.63074","Clarence Center","NY","New York","TRUE","","9083","151.1","36029","Erie","{""36029"": ""100""}","Erie","36029","FALSE","FALSE","America/New_York"
-"14033","42.66062","-78.68688","Colden","NY","New York","TRUE","","1677","37.5","36029","Erie","{""36029"": ""100""}","Erie","36029","FALSE","FALSE","America/New_York"
-"14034","42.49818","-78.86094","Collins","NY","New York","TRUE","","2716","40.8","36029","Erie","{""36029"": ""100""}","Erie","36029","FALSE","FALSE","America/New_York"
-"14035","42.49073","-78.84831","Collins Center","NY","New York","TRUE","","105","177.4","36029","Erie","{""36029"": ""100""}","Erie","36029","FALSE","FALSE","America/New_York"
-"14036","42.97503","-78.38734","Corfu","NY","New York","TRUE","","4836","34.5","36037","Genesee","{""36037"": ""100""}","Genesee","36037","FALSE","FALSE","America/New_York"
-"14037","42.80578","-78.45513","Cowlesville","NY","New York","TRUE","","1107","24.7","36121","Wyoming","{""36121"": ""86.45"", ""36029"": ""13.55""}","Wyoming|Erie","36121|36029","FALSE","FALSE","America/New_York"
-"14039","42.83638","-78.16926","Dale","NY","New York","TRUE","","90","18.6","36121","Wyoming","{""36121"": ""100""}","Wyoming","36121","FALSE","FALSE","America/New_York"
-"14040","42.88925","-78.38116","Darien Center","NY","New York","TRUE","","1921","25.4","36037","Genesee","{""36037"": ""83.81"", ""36121"": ""16.19""}","Genesee|Wyoming","36037|36121","FALSE","FALSE","America/New_York"
-"14041","42.40358","-78.97358","Dayton","NY","New York","TRUE","","195","33.1","36009","Cattaraugus","{""36009"": ""100""}","Cattaraugus","36009","FALSE","FALSE","America/New_York"
-"14042","42.469","-78.48654","Delevan","NY","New York","TRUE","","4181","35.4","36009","Cattaraugus","{""36009"": ""100""}","Cattaraugus","36009","FALSE","FALSE","America/New_York"
-"14043","42.90191","-78.70339","Depew","NY","New York","TRUE","","24538","1089.7","36029","Erie","{""36029"": ""100""}","Erie","36029","FALSE","FALSE","America/New_York"
-"14047","42.68585","-78.99348","Derby","NY","New York","TRUE","","6549","193.0","36029","Erie","{""36029"": ""100""}","Erie","36029","FALSE","FALSE","America/New_York"
-"14048","42.48052","-79.31161","Dunkirk","NY","New York","TRUE","","14283","236.6","36013","Chautauqua","{""36013"": ""100""}","Chautauqua","36013","FALSE","FALSE","America/New_York"
-"14051","43.04221","-78.69906","East Amherst","NY","New York","TRUE","","20219","477.5","36029","Erie","{""36029"": ""100""}","Erie","36029","FALSE","FALSE","America/New_York"
-"14052","42.77018","-78.58105","East Aurora","NY","New York","TRUE","","16672","103.9","36029","Erie","{""36029"": ""100""}","Erie","36029","FALSE","FALSE","America/New_York"
-"14054","42.91517","-78.1275","East Bethany","NY","New York","TRUE","","1593","24.7","36037","Genesee","{""36037"": ""98.14"", ""36121"": ""1.86""}","Genesee|Wyoming","36037|36121","FALSE","FALSE","America/New_York"
-"14055","42.55467","-78.6014","East Concord","NY","New York","TRUE","","1331","15.9","36029","Erie","{""36029"": ""100""}","Erie","36029","FALSE","FALSE","America/New_York"
-"14057","42.64582","-78.87732","Eden","NY","New York","TRUE","","8022","64.3","36029","Erie","{""36029"": ""100""}","Erie","36029","FALSE","FALSE","America/New_York"
-"14058","43.10243","-78.16272","Elba","NY","New York","TRUE","","1994","19.3","36037","Genesee","{""36037"": ""96.02"", ""36073"": ""3.98""}","Genesee|Orleans","36037|36073","FALSE","FALSE","America/New_York"
-"14059","42.83363","-78.636","Elma","NY","New York","TRUE","","9860","141.3","36029","Erie","{""36029"": ""100""}","Erie","36029","FALSE","FALSE","America/New_York"
-"14060","42.44658","-78.30793","Farmersville Station","NY","New York","TRUE","","326","7.1","36009","Cattaraugus","{""36009"": ""67.49"", ""36003"": ""32.51""}","Cattaraugus|Allegany","36009|36003","FALSE","FALSE","America/New_York"
-"14061","42.59387","-79.07934","Farnham","NY","New York","TRUE","","375","151.1","36029","Erie","{""36029"": ""100""}","Erie","36029","FALSE","FALSE","America/New_York"
-"14062","42.4409","-79.15074","Forestville","NY","New York","TRUE","","3046","16.3","36013","Chautauqua","{""36013"": ""100""}","Chautauqua","36013","FALSE","FALSE","America/New_York"
-"14063","42.414","-79.32601","Fredonia","NY","New York","TRUE","","14302","109.5","36013","Chautauqua","{""36013"": ""100""}","Chautauqua","36013","FALSE","FALSE","America/New_York"
-"14065","42.48717","-78.31345","Freedom","NY","New York","TRUE","","1637","16.9","36009","Cattaraugus","{""36009"": ""77.74"", ""36003"": ""22.26""}","Cattaraugus|Allegany","36009|36003","FALSE","FALSE","America/New_York"
-"14066","42.62421","-78.18037","Gainesville","NY","New York","TRUE","","1260","12.0","36121","Wyoming","{""36121"": ""100""}","Wyoming","36121","FALSE","FALSE","America/New_York"
-"14067","43.21573","-78.56662","Gasport","NY","New York","TRUE","","5076","39.6","36063","Niagara","{""36063"": ""100""}","Niagara","36063","FALSE","FALSE","America/New_York"
-"14068","43.02746","-78.75649","Getzville","NY","New York","TRUE","","6731","746.4","36029","Erie","{""36029"": ""100""}","Erie","36029","FALSE","FALSE","America/New_York"
-"14069","42.60762","-78.63381","Glenwood","NY","New York","TRUE","","792","35.9","36029","Erie","{""36029"": ""100""}","Erie","36029","FALSE","FALSE","America/New_York"
-"14070","42.4361","-78.92583","Gowanda","NY","New York","TRUE","","6894","52.1","36029","Erie","{""36029"": ""56.71"", ""36009"": ""43.29""}","Erie|Cattaraugus","36029|36009","FALSE","FALSE","America/New_York"
-"14072","43.01819","-78.96356","Grand Island","NY","New York","TRUE","","21047","287.4","36029","Erie","{""36029"": ""100""}","Erie","36029","FALSE","FALSE","America/Toronto"
-"14075","42.71394","-78.83238","Hamburg","NY","New York","TRUE","","42780","418.3","36029","Erie","{""36029"": ""100""}","Erie","36029","FALSE","FALSE","America/New_York"
-"14080","42.64406","-78.54661","Holland","NY","New York","TRUE","","4313","31.5","36029","Erie","{""36029"": ""100""}","Erie","36029","FALSE","FALSE","America/New_York"
-"14081","42.56181","-79.06362","Irving","NY","New York","TRUE","","3123","34.3","36029","Erie","{""36029"": ""65.75"", ""36013"": ""32.08"", ""36009"": ""2.16""}","Erie|Chautauqua|Cattaraugus","36029|36013|36009","FALSE","FALSE","America/New_York"
-"14082","42.65656","-78.38237","Java Center","NY","New York","TRUE","","576","22.4","36121","Wyoming","{""36121"": ""100""}","Wyoming","36121","FALSE","FALSE","America/New_York"
-"14085","42.71412","-78.92916","Lake View","NY","New York","TRUE","","7178","398.5","36029","Erie","{""36029"": ""100""}","Erie","36029","FALSE","FALSE","America/New_York"
-"14086","42.90809","-78.62904","Lancaster","NY","New York","TRUE","","32585","371.3","36029","Erie","{""36029"": ""100""}","Erie","36029","FALSE","FALSE","America/New_York"
-"14091","42.54238","-78.88369","Lawtons","NY","New York","TRUE","","1149","20.9","36029","Erie","{""36029"": ""100""}","Erie","36029","FALSE","FALSE","America/New_York"
-"14092","43.17357","-78.99361","Lewiston","NY","New York","TRUE","","10922","214.0","36063","Niagara","{""36063"": ""100""}","Niagara","36063","FALSE","FALSE","America/New_York"
-"14094","43.16018","-78.7009","Lockport","NY","New York","TRUE","","49257","156.0","36063","Niagara","{""36063"": ""100""}","Niagara","36063","FALSE","FALSE","America/New_York"
-"14098","43.33438","-78.3806","Lyndonville","NY","New York","TRUE","","3102","26.0","36073","Orleans","{""36073"": ""100""}","Orleans","36073","FALSE","FALSE","America/New_York"
-"14101","42.38953","-78.54357","Machias","NY","New York","TRUE","","1910","17.4","36009","Cattaraugus","{""36009"": ""100""}","Cattaraugus","36009","FALSE","FALSE","America/New_York"
-"14102","42.83931","-78.55687","Marilla","NY","New York","TRUE","","1255","127.2","36029","Erie","{""36029"": ""100""}","Erie","36029","FALSE","FALSE","America/New_York"
-"14103","43.21227","-78.37666","Medina","NY","New York","TRUE","","10519","50.8","36073","Orleans","{""36073"": ""100""}","Orleans","36073","FALSE","FALSE","America/New_York"
-"14105","43.19782","-78.48395","Middleport","NY","New York","TRUE","","4591","37.6","36063","Niagara","{""36063"": ""93.93"", ""36073"": ""5.96"", ""36037"": ""0.11""}","Niagara|Orleans|Genesee","36063|36073|36037","FALSE","FALSE","America/New_York"
-"14108","43.26333","-78.72701","Newfane","NY","New York","TRUE","","5689","81.1","36063","Niagara","{""36063"": ""100""}","Niagara","36063","FALSE","FALSE","America/New_York"
-"14109","43.13777","-79.03521","Niagara University","NY","New York","TRUE","","1082","880.3","36063","Niagara","{""36063"": ""100""}","Niagara","36063","FALSE","FALSE","America/Toronto"
-"14111","42.58254","-78.9008","North Collins","NY","New York","TRUE","","3425","36.7","36029","Erie","{""36029"": ""100""}","Erie","36029","FALSE","FALSE","America/New_York"
-"14112","42.6981","-78.9395","North Evans","NY","New York","TRUE","","105","1014.9","36029","Erie","{""36029"": ""100""}","Erie","36029","FALSE","FALSE","America/New_York"
-"14113","42.67163","-78.33968","North Java","NY","New York","TRUE","","455","10.3","36121","Wyoming","{""36121"": ""100""}","Wyoming","36121","FALSE","FALSE","America/New_York"
-"14120","43.07363","-78.83645","North Tonawanda","NY","New York","TRUE","","44119","517.8","36063","Niagara","{""36063"": ""100""}","Niagara","36063","FALSE","FALSE","America/New_York"
-"14125","43.0871","-78.2784","Oakfield","NY","New York","TRUE","","3728","41.0","36037","Genesee","{""36037"": ""99.76"", ""36073"": ""0.24""}","Genesee|Orleans","36037|36073","FALSE","FALSE","America/New_York"
-"14126","43.33565","-78.72558","Olcott","NY","New York","TRUE","","608","409.6","36063","Niagara","{""36063"": ""100""}","Niagara","36063","FALSE","FALSE","America/New_York"
-"14127","42.75176","-78.74377","Orchard Park","NY","New York","TRUE","","30191","283.4","36029","Erie","{""36029"": ""100""}","Erie","36029","FALSE","FALSE","America/New_York"
-"14129","42.48009","-79.01038","Perrysburg","NY","New York","TRUE","","1530","19.1","36009","Cattaraugus","{""36009"": ""100""}","Cattaraugus","36009","FALSE","FALSE","America/New_York"
-"14130","42.55599","-78.14771","Pike","NY","New York","TRUE","","170","60.3","36121","Wyoming","{""36121"": ""100""}","Wyoming","36121","FALSE","FALSE","America/New_York"
-"14131","43.23624","-78.89904","Ransomville","NY","New York","TRUE","","4969","45.4","36063","Niagara","{""36063"": ""100""}","Niagara","36063","FALSE","FALSE","America/New_York"
-"14132","43.14932","-78.8777","Sanborn","NY","New York","TRUE","","5632","77.4","36063","Niagara","{""36063"": ""100""}","Niagara","36063","FALSE","FALSE","America/New_York"
-"14134","42.52748","-78.52419","Sardinia","NY","New York","TRUE","","111","50.5","36029","Erie","{""36029"": ""100""}","Erie","36029","FALSE","FALSE","America/New_York"
-"14135","42.48767","-79.2409","Sheridan","NY","New York","TRUE","","147","54.9","36013","Chautauqua","{""36013"": ""100""}","Chautauqua","36013","FALSE","FALSE","America/New_York"
-"14136","42.52306","-79.17042","Silver Creek","NY","New York","TRUE","","4667","77.8","36013","Chautauqua","{""36013"": ""100""}","Chautauqua","36013","FALSE","FALSE","America/New_York"
-"14138","42.37026","-79.05056","South Dayton","NY","New York","TRUE","","1879","15.5","36009","Cattaraugus","{""36009"": ""72.89"", ""36013"": ""27.11""}","Cattaraugus|Chautauqua","36009|36013","FALSE","FALSE","America/New_York"
-"14139","42.71657","-78.53477","South Wales","NY","New York","TRUE","","2193","35.5","36029","Erie","{""36029"": ""100""}","Erie","36029","FALSE","FALSE","America/New_York"
-"14141","42.52208","-78.70939","Springville","NY","New York","TRUE","","7480","41.0","36029","Erie","{""36029"": ""95.13"", ""36009"": ""4.87""}","Erie|Cattaraugus","36029|36009","FALSE","FALSE","America/New_York"
-"14143","42.97556","-78.07337","Stafford","NY","New York","TRUE","","1013","27.0","36037","Genesee","{""36037"": ""100""}","Genesee","36037","FALSE","FALSE","America/New_York"
-"14145","42.73004","-78.42813","Strykersville","NY","New York","TRUE","","1847","25.3","36121","Wyoming","{""36121"": ""97.03"", ""36029"": ""2.97""}","Wyoming|Erie","36121|36029","FALSE","FALSE","America/New_York"
-"14150","42.99782","-78.87829","Tonawanda","NY","New York","TRUE","","40850","1055.5","36029","Erie","{""36029"": ""100""}","Erie","36029","FALSE","FALSE","America/New_York"
-"14167","42.74412","-78.32487","Varysburg","NY","New York","TRUE","","1761","18.1","36121","Wyoming","{""36121"": ""100""}","Wyoming","36121","FALSE","FALSE","America/New_York"
-"14168","42.52038","-78.99068","Versailles","NY","New York","TRUE","","30","292.3","36009","Cattaraugus","{""36009"": ""100""}","Cattaraugus","36009","FALSE","FALSE","America/New_York"
-"14169","42.76612","-78.52369","Wales Center","NY","New York","TRUE","","115","144.1","36029","Erie","{""36029"": ""100""}","Erie","36029","FALSE","FALSE","America/New_York"
-"14170","42.70227","-78.67089","West Falls","NY","New York","TRUE","","2944","92.2","36029","Erie","{""36029"": ""100""}","Erie","36029","FALSE","FALSE","America/New_York"
-"14171","42.42279","-78.64277","West Valley","NY","New York","TRUE","","1918","14.5","36009","Cattaraugus","{""36009"": ""100""}","Cattaraugus","36009","FALSE","FALSE","America/New_York"
-"14172","43.28315","-78.81813","Wilson","NY","New York","TRUE","","3002","47.1","36063","Niagara","{""36063"": ""100""}","Niagara","36063","FALSE","FALSE","America/New_York"
-"14173","42.52601","-78.47312","Yorkshire","NY","New York","TRUE","","281","187.4","36009","Cattaraugus","{""36009"": ""100""}","Cattaraugus","36009","FALSE","FALSE","America/New_York"
-"14174","43.24097","-79.00178","Youngstown","NY","New York","TRUE","","5597","88.5","36063","Niagara","{""36063"": ""100""}","Niagara","36063","FALSE","FALSE","America/New_York"
-"14201","42.89667","-78.88697","Buffalo","NY","New York","TRUE","","11935","4500.5","36029","Erie","{""36029"": ""100""}","Erie","36029","FALSE","FALSE","America/New_York"
-"14202","42.88793","-78.88309","Buffalo","NY","New York","TRUE","","3385","1561.0","36029","Erie","{""36029"": ""100""}","Erie","36029","FALSE","FALSE","America/New_York"
-"14203","42.86381","-78.8658","Buffalo","NY","New York","TRUE","","1733","252.7","36029","Erie","{""36029"": ""100""}","Erie","36029","FALSE","FALSE","America/New_York"
-"14204","42.88221","-78.86135","Buffalo","NY","New York","TRUE","","8643","1856.1","36029","Erie","{""36029"": ""100""}","Erie","36029","FALSE","FALSE","America/New_York"
-"14206","42.88088","-78.8114","Buffalo","NY","New York","TRUE","","20310","1618.9","36029","Erie","{""36029"": ""100""}","Erie","36029","FALSE","FALSE","America/New_York"
-"14207","42.95173","-78.89779","Buffalo","NY","New York","TRUE","","23275","2302.7","36029","Erie","{""36029"": ""100""}","Erie","36029","FALSE","FALSE","America/New_York"
-"14208","42.91609","-78.85301","Buffalo","NY","New York","TRUE","","10574","3008.2","36029","Erie","{""36029"": ""100""}","Erie","36029","FALSE","FALSE","America/New_York"
-"14209","42.91402","-78.86605","Buffalo","NY","New York","TRUE","","7736","3271.1","36029","Erie","{""36029"": ""100""}","Erie","36029","FALSE","FALSE","America/New_York"
-"14210","42.86351","-78.82739","Buffalo","NY","New York","TRUE","","14249","1716.3","36029","Erie","{""36029"": ""100""}","Erie","36029","FALSE","FALSE","America/New_York"
-"14211","42.90779","-78.81906","Buffalo","NY","New York","TRUE","","22495","2144.8","36029","Erie","{""36029"": ""100""}","Erie","36029","FALSE","FALSE","America/New_York"
-"14212","42.89422","-78.82018","Buffalo","NY","New York","TRUE","","10715","2171.9","36029","Erie","{""36029"": ""100""}","Erie","36029","FALSE","FALSE","America/New_York"
-"14213","42.91804","-78.89281","Buffalo","NY","New York","TRUE","","23113","3949.6","36029","Erie","{""36029"": ""100""}","Erie","36029","FALSE","FALSE","America/New_York"
-"14214","42.93952","-78.84083","Buffalo","NY","New York","TRUE","","19492","2628.5","36029","Erie","{""36029"": ""100""}","Erie","36029","FALSE","FALSE","America/New_York"
-"14215","42.93535","-78.81069","Buffalo","NY","New York","TRUE","","41435","3245.5","36029","Erie","{""36029"": ""100""}","Erie","36029","FALSE","FALSE","America/New_York"
-"14216","42.94848","-78.8617","Buffalo","NY","New York","TRUE","","22289","3104.6","36029","Erie","{""36029"": ""100""}","Erie","36029","FALSE","FALSE","America/New_York"
-"14217","42.97183","-78.87686","Buffalo","NY","New York","TRUE","","22975","2760.8","36029","Erie","{""36029"": ""100""}","Erie","36029","FALSE","FALSE","America/New_York"
-"14218","42.81966","-78.82865","Buffalo","NY","New York","TRUE","","18952","896.2","36029","Erie","{""36029"": ""100""}","Erie","36029","FALSE","FALSE","America/New_York"
-"14219","42.78893","-78.82691","Buffalo","NY","New York","TRUE","","12000","658.9","36029","Erie","{""36029"": ""100""}","Erie","36029","FALSE","FALSE","America/New_York"
-"14220","42.84565","-78.82321","Buffalo","NY","New York","TRUE","","22623","2292.9","36029","Erie","{""36029"": ""100""}","Erie","36029","FALSE","FALSE","America/New_York"
-"14221","42.98002","-78.72285","Buffalo","NY","New York","TRUE","","53948","905.4","36029","Erie","{""36029"": ""100""}","Erie","36029","FALSE","FALSE","America/New_York"
-"14222","42.91977","-78.87686","Buffalo","NY","New York","TRUE","","14114","4265.0","36029","Erie","{""36029"": ""100""}","Erie","36029","FALSE","FALSE","America/New_York"
-"14223","42.97346","-78.84621","Buffalo","NY","New York","TRUE","","22225","2500.1","36029","Erie","{""36029"": ""100""}","Erie","36029","FALSE","FALSE","America/New_York"
-"14224","42.83781","-78.74799","Buffalo","NY","New York","TRUE","","40815","777.3","36029","Erie","{""36029"": ""100""}","Erie","36029","FALSE","FALSE","America/New_York"
-"14225","42.92895","-78.75165","Buffalo","NY","New York","TRUE","","33091","1078.9","36029","Erie","{""36029"": ""100""}","Erie","36029","FALSE","FALSE","America/New_York"
-"14226","42.97098","-78.79873","Buffalo","NY","New York","TRUE","","30644","1709.9","36029","Erie","{""36029"": ""100""}","Erie","36029","FALSE","FALSE","America/New_York"
-"14227","42.88425","-78.74615","Buffalo","NY","New York","TRUE","","21497","959.5","36029","Erie","{""36029"": ""100""}","Erie","36029","FALSE","FALSE","America/New_York"
-"14228","43.04091","-78.78122","Buffalo","NY","New York","TRUE","","21839","533.2","36029","Erie","{""36029"": ""100""}","Erie","36029","FALSE","FALSE","America/New_York"
-"14261","43.00198","-78.78534","Buffalo","NY","New York","TRUE","","5702","1894.7","36029","Erie","{""36029"": ""100""}","Erie","36029","FALSE","FALSE","America/New_York"
-"14301","43.09583","-79.04052","Niagara Falls","NY","New York","TRUE","","12704","2933.5","36063","Niagara","{""36063"": ""100""}","Niagara","36063","FALSE","FALSE","America/Toronto"
-"14302","43.0939","-79.04919","Niagara Falls","NY","New York","TRUE","","140","3889.8","36063","Niagara","{""36063"": ""100""}","Niagara","36063","FALSE","FALSE","America/Toronto"
-"14303","43.08501","-79.03812","Niagara Falls","NY","New York","TRUE","","5582","877.4","36063","Niagara","{""36063"": ""100""}","Niagara","36063","FALSE","FALSE","America/Toronto"
-"14304","43.09942","-78.95199","Niagara Falls","NY","New York","TRUE","","29262","509.2","36063","Niagara","{""36063"": ""100""}","Niagara","36063","FALSE","FALSE","America/New_York"
-"14305","43.11961","-79.02227","Niagara Falls","NY","New York","TRUE","","16767","788.6","36063","Niagara","{""36063"": ""100""}","Niagara","36063","FALSE","FALSE","America/Toronto"
-"14411","43.23425","-78.21193","Albion","NY","New York","TRUE","","13776","47.0","36073","Orleans","{""36073"": ""100""}","Orleans","36073","FALSE","FALSE","America/New_York"
-"14414","42.89349","-77.73514","Avon","NY","New York","TRUE","","7017","68.9","36051","Livingston","{""36051"": ""99.75"", ""36055"": ""0.25""}","Livingston|Monroe","36051|36055","FALSE","FALSE","America/New_York"
-"14415","42.75548","-77.01708","Bellona","NY","New York","TRUE","","183","48.7","36123","Yates","{""36123"": ""100""}","Yates","36123","FALSE","FALSE","America/New_York"
-"14416","43.07902","-77.98172","Bergen","NY","New York","TRUE","","3535","36.7","36037","Genesee","{""36037"": ""94.81"", ""36055"": ""5.19""}","Genesee|Monroe","36037|36055","FALSE","FALSE","America/New_York"
-"14418","42.60783","-77.2151","Branchport","NY","New York","TRUE","","1176","12.2","36123","Yates","{""36123"": ""90.19"", ""36101"": ""9.81""}","Yates|Steuben","36123|36101","FALSE","FALSE","America/New_York"
-"14420","43.212","-77.93455","Brockport","NY","New York","TRUE","","21006","134.0","36055","Monroe","{""36055"": ""97.46"", ""36073"": ""2.54""}","Monroe|Orleans","36055|36073","FALSE","FALSE","America/New_York"
-"14422","43.08233","-78.0657","Byron","NY","New York","TRUE","","2221","25.2","36037","Genesee","{""36037"": ""98.26"", ""36073"": ""1.74""}","Genesee|Orleans","36037|36073","FALSE","FALSE","America/New_York"
-"14423","42.94419","-77.82759","Caledonia","NY","New York","TRUE","","4559","34.9","36051","Livingston","{""36051"": ""100""}","Livingston","36051","FALSE","FALSE","America/New_York"
-"14424","42.84815","-77.30818","Canandaigua","NY","New York","TRUE","","27880","84.7","36069","Ontario","{""36069"": ""100""}","Ontario","36069","FALSE","FALSE","America/New_York"
-"14425","42.99155","-77.33801","Farmington","NY","New York","TRUE","","12049","249.1","36069","Ontario","{""36069"": ""100""}","Ontario","36069","FALSE","FALSE","America/New_York"
-"14427","42.62049","-78.05368","Castile","NY","New York","TRUE","","1943","24.8","36121","Wyoming","{""36121"": ""100""}","Wyoming","36121","FALSE","FALSE","America/New_York"
-"14428","43.07741","-77.85949","Churchville","NY","New York","TRUE","","7208","54.4","36055","Monroe","{""36055"": ""100""}","Monroe","36055","FALSE","FALSE","America/New_York"
-"14432","42.95739","-77.1435","Clifton Springs","NY","New York","TRUE","","5875","58.7","36069","Ontario","{""36069"": ""100""}","Ontario","36069","FALSE","FALSE","America/New_York"
-"14433","43.08198","-76.8786","Clyde","NY","New York","TRUE","","4141","24.2","36117","Wayne","{""36117"": ""94.77"", ""36099"": ""5.23""}","Wayne|Seneca","36117|36099","FALSE","FALSE","America/New_York"
-"14435","42.71313","-77.66234","Conesus","NY","New York","TRUE","","2773","29.2","36051","Livingston","{""36051"": ""100""}","Livingston","36051","FALSE","FALSE","America/New_York"
-"14437","42.57523","-77.73829","Dansville","NY","New York","TRUE","","11220","34.9","36051","Livingston","{""36051"": ""92.78"", ""36101"": ""7.22""}","Livingston|Steuben","36051|36101","FALSE","FALSE","America/New_York"
-"14441","42.68523","-76.95727","Dresden","NY","New York","TRUE","","319","351.1","36123","Yates","{""36123"": ""100""}","Yates","36123","FALSE","FALSE","America/New_York"
-"14445","43.11262","-77.48992","East Rochester","NY","New York","TRUE","","7716","1571.9","36055","Monroe","{""36055"": ""100""}","Monroe","36055","FALSE","FALSE","America/New_York"
-"14450","43.09166","-77.41702","Fairport","NY","New York","TRUE","","41546","504.4","36055","Monroe","{""36055"": ""99.95"", ""36117"": ""0.05""}","Monroe|Wayne","36055|36117","FALSE","FALSE","America/New_York"
-"14454","42.7969","-77.77384","Geneseo","NY","New York","TRUE","","11206","85.5","36051","Livingston","{""36051"": ""100""}","Livingston","36051","FALSE","FALSE","America/New_York"
-"14456","42.8459","-77.00121","Geneva","NY","New York","TRUE","","19473","96.4","36069","Ontario","{""36069"": ""93.2"", ""36099"": ""6.5"", ""36123"": ""0.3""}","Ontario|Seneca|Yates","36069|36099|36123","FALSE","FALSE","America/New_York"
-"14462","42.68655","-77.75113","Groveland","NY","New York","TRUE","","534","17.2","36051","Livingston","{""36051"": ""100""}","Livingston","36051","FALSE","FALSE","America/New_York"
-"14464","43.32706","-77.93617","Hamlin","NY","New York","TRUE","","7462","94.4","36055","Monroe","{""36055"": ""98.11"", ""36073"": ""1.89""}","Monroe|Orleans","36055|36073","FALSE","FALSE","America/New_York"
-"14466","42.77652","-77.5811","Hemlock","NY","New York","TRUE","","1576","35.3","36069","Ontario","{""36069"": ""56.31"", ""36051"": ""43.69""}","Ontario|Livingston","36069|36051","FALSE","FALSE","America/New_York"
-"14467","43.04168","-77.61017","Henrietta","NY","New York","TRUE","","10098","361.9","36055","Monroe","{""36055"": ""100""}","Monroe","36055","FALSE","FALSE","America/New_York"
-"14468","43.29112","-77.80539","Hilton","NY","New York","TRUE","","17913","130.5","36055","Monroe","{""36055"": ""100""}","Monroe","36055","FALSE","FALSE","America/New_York"
-"14469","42.87755","-77.46599","Bloomfield","NY","New York","TRUE","","5983","35.0","36069","Ontario","{""36069"": ""100""}","Ontario","36069","FALSE","FALSE","America/New_York"
-"14470","43.21053","-78.05341","Holley","NY","New York","TRUE","","7406","44.6","36073","Orleans","{""36073"": ""97.74"", ""36055"": ""2.26""}","Orleans|Monroe","36073|36055","FALSE","FALSE","America/New_York"
-"14471","42.75386","-77.49222","Honeoye","NY","New York","TRUE","","2458","35.0","36069","Ontario","{""36069"": ""99.89"", ""36051"": ""0.11""}","Ontario|Livingston","36069|36051","FALSE","FALSE","America/New_York"
-"14472","42.96729","-77.57913","Honeoye Falls","NY","New York","TRUE","","8713","77.0","36055","Monroe","{""36055"": ""90.5"", ""36051"": ""5.41"", ""36069"": ""4.09""}","Monroe|Livingston|Ontario","36055|36051|36069","FALSE","FALSE","America/New_York"
-"14475","42.9378","-77.4984","Ionia","NY","New York","TRUE","","391","98.9","36069","Ontario","{""36069"": ""100""}","Ontario","36069","FALSE","FALSE","America/New_York"
-"14476","43.32922","-78.04473","Kendall","NY","New York","TRUE","","2250","35.0","36073","Orleans","{""36073"": ""94.23"", ""36055"": ""5.77""}","Orleans|Monroe","36073|36055","FALSE","FALSE","America/New_York"
-"14477","43.33361","-78.13592","Kent","NY","New York","TRUE","","1411","20.8","36073","Orleans","{""36073"": ""100""}","Orleans","36073","FALSE","FALSE","America/New_York"
-"14478","42.5779","-77.12632","Keuka Park","NY","New York","TRUE","","1501","49.5","36123","Yates","{""36123"": ""100""}","Yates","36123","FALSE","FALSE","America/New_York"
-"14479","43.23624","-78.31386","Knowlesville","NY","New York","TRUE","","115","30.0","36073","Orleans","{""36073"": ""100""}","Orleans","36073","FALSE","FALSE","America/New_York"
-"14480","42.83948","-77.70683","Lakeville","NY","New York","TRUE","","711","212.1","36051","Livingston","{""36051"": ""100""}","Livingston","36051","FALSE","FALSE","America/New_York"
-"14481","42.76189","-77.92144","Leicester","NY","New York","TRUE","","1699","27.6","36051","Livingston","{""36051"": ""100""}","Livingston","36051","FALSE","FALSE","America/New_York"
-"14482","42.97701","-77.97232","Le Roy","NY","New York","TRUE","","8303","54.8","36037","Genesee","{""36037"": ""98.11"", ""36051"": ""1.4"", ""36055"": ""0.48""}","Genesee|Livingston|Monroe","36037|36051|36055","FALSE","FALSE","America/New_York"
-"14485","42.87991","-77.60055","Lima","NY","New York","TRUE","","4010","43.8","36051","Livingston","{""36051"": ""95.5"", ""36069"": ""4.5""}","Livingston|Ontario","36051|36069","FALSE","FALSE","America/New_York"
-"14486","42.8943","-77.92158","Linwood","NY","New York","TRUE","","449","30.8","36051","Livingston","{""36051"": ""100""}","Livingston","36051","FALSE","FALSE","America/New_York"
-"14487","42.81176","-77.63595","Livonia","NY","New York","TRUE","","6159","71.2","36051","Livingston","{""36051"": ""93.99"", ""36069"": ""6.01""}","Livingston|Ontario","36051|36069","FALSE","FALSE","America/New_York"
-"14489","43.08496","-76.99002","Lyons","NY","New York","TRUE","","7113","40.6","36117","Wayne","{""36117"": ""97.39"", ""36069"": ""1.78"", ""36099"": ""0.83""}","Wayne|Ontario|Seneca","36117|36069|36099","FALSE","FALSE","America/New_York"
-"14502","43.09728","-77.33547","Macedon","NY","New York","TRUE","","10733","111.1","36117","Wayne","{""36117"": ""98.31"", ""36055"": ""1.69""}","Wayne|Monroe","36117|36055","FALSE","FALSE","America/New_York"
-"14504","42.96905","-77.23154","Manchester","NY","New York","TRUE","","1839","624.0","36069","Ontario","{""36069"": ""100""}","Ontario","36069","FALSE","FALSE","America/New_York"
-"14505","43.16056","-77.17323","Marion","NY","New York","TRUE","","5002","48.8","36117","Wayne","{""36117"": ""100""}","Wayne","36117","FALSE","FALSE","America/New_York"
-"14506","43.00176","-77.50701","Mendon","NY","New York","TRUE","","1317","176.5","36055","Monroe","{""36055"": ""100""}","Monroe","36055","FALSE","FALSE","America/New_York"
-"14507","42.69781","-77.27025","Middlesex","NY","New York","TRUE","","1157","13.7","36123","Yates","{""36123"": ""100""}","Yates","36123","FALSE","FALSE","America/New_York"
-"14510","42.69013","-77.87462","Mount Morris","NY","New York","TRUE","","4929","27.2","36051","Livingston","{""36051"": ""100""}","Livingston","36051","FALSE","FALSE","America/New_York"
-"14511","42.99763","-77.87806","Mumford","NY","New York","TRUE","","439","73.3","36055","Monroe","{""36055"": ""100""}","Monroe","36055","FALSE","FALSE","America/New_York"
-"14512","42.64558","-77.39159","Naples","NY","New York","TRUE","","4418","16.6","36069","Ontario","{""36069"": ""75.77"", ""36123"": ""18.62"", ""36101"": ""5.61""}","Ontario|Yates|Steuben","36069|36123|36101","FALSE","FALSE","America/New_York"
-"14513","43.07279","-77.09532","Newark","NY","New York","TRUE","","13938","114.7","36117","Wayne","{""36117"": ""97.67"", ""36069"": ""2.33""}","Wayne|Ontario","36117|36069","FALSE","FALSE","America/New_York"
-"14514","43.09985","-77.79969","North Chili","NY","New York","TRUE","","6724","693.5","36055","Monroe","{""36055"": ""100""}","Monroe","36055","FALSE","FALSE","America/New_York"
-"14516","43.20068","-76.91599","North Rose","NY","New York","TRUE","","2392","32.6","36117","Wayne","{""36117"": ""100""}","Wayne","36117","FALSE","FALSE","America/New_York"
-"14517","42.59241","-77.89582","Nunda","NY","New York","TRUE","","2931","33.2","36051","Livingston","{""36051"": ""100""}","Livingston","36051","FALSE","FALSE","America/New_York"
-"14519","43.2326","-77.31398","Ontario","NY","New York","TRUE","","11723","111.0","36117","Wayne","{""36117"": ""97.47"", ""36055"": ""2.53""}","Wayne|Monroe","36117|36055","FALSE","FALSE","America/New_York"
-"14521","42.67538","-76.80747","Ovid","NY","New York","TRUE","","2405","24.6","36099","Seneca","{""36099"": ""100""}","Seneca","36099","FALSE","FALSE","America/New_York"
-"14522","43.06112","-77.22122","Palmyra","NY","New York","TRUE","","9005","74.3","36117","Wayne","{""36117"": ""90.47"", ""36069"": ""9.53""}","Wayne|Ontario","36117|36069","FALSE","FALSE","America/New_York"
-"14525","42.87328","-78.01243","Pavilion","NY","New York","TRUE","","2424","20.5","36037","Genesee","{""36037"": ""69.91"", ""36121"": ""25.86"", ""36051"": ""4.22""}","Genesee|Wyoming|Livingston","36037|36121|36051","FALSE","FALSE","America/New_York"
-"14526","43.15111","-77.44759","Penfield","NY","New York","TRUE","","19973","460.9","36055","Monroe","{""36055"": ""100""}","Monroe","36055","FALSE","FALSE","America/New_York"
-"14527","42.66712","-77.0653","Penn Yan","NY","New York","TRUE","","12745","36.3","36123","Yates","{""36123"": ""100""}","Yates","36123","FALSE","FALSE","America/New_York"
-"14529","42.53997","-77.63825","Perkinsville","NY","New York","TRUE","","137","135.6","36101","Steuben","{""36101"": ""100""}","Steuben","36101","FALSE","FALSE","America/New_York"
-"14530","42.73343","-78.00479","Perry","NY","New York","TRUE","","5306","41.6","36121","Wyoming","{""36121"": ""100""}","Wyoming","36121","FALSE","FALSE","America/New_York"
-"14532","42.96449","-77.0258","Phelps","NY","New York","TRUE","","4273","40.6","36069","Ontario","{""36069"": ""95.08"", ""36099"": ""4.92""}","Ontario|Seneca","36069|36099","FALSE","FALSE","America/New_York"
-"14533","42.84444","-77.88555","Piffard","NY","New York","TRUE","","2206","26.5","36051","Livingston","{""36051"": ""99.4"", ""36121"": ""0.6""}","Livingston|Wyoming","36051|36121","FALSE","FALSE","America/New_York"
-"14534","43.05585","-77.52019","Pittsford","NY","New York","TRUE","","31615","377.5","36055","Monroe","{""36055"": ""98.8"", ""36069"": ""1.2""}","Monroe|Ontario","36055|36069","FALSE","FALSE","America/New_York"
-"14536","42.54192","-78.0833","Portageville","NY","New York","TRUE","","576","12.2","36121","Wyoming","{""36121"": ""73.07"", ""36003"": ""26.93""}","Wyoming|Allegany","36121|36003","FALSE","FALSE","America/New_York"
-"14537","43.03584","-77.16341","Port Gibson","NY","New York","TRUE","","147","167.8","36069","Ontario","{""36069"": ""100""}","Ontario","36069","FALSE","FALSE","America/New_York"
-"14539","42.83458","-77.87489","Retsof","NY","New York","TRUE","","90","164.2","36051","Livingston","{""36051"": ""100""}","Livingston","36051","FALSE","FALSE","America/New_York"
-"14541","42.75657","-76.84444","Romulus","NY","New York","TRUE","","4075","32.0","36099","Seneca","{""36099"": ""100""}","Seneca","36099","FALSE","FALSE","America/New_York"
-"14542","43.14733","-76.86014","Rose","NY","New York","TRUE","","60","12.5","36117","Wayne","{""36117"": ""100""}","Wayne","36117","FALSE","FALSE","America/New_York"
-"14543","42.98756","-77.6774","Rush","NY","New York","TRUE","","3203","49.1","36055","Monroe","{""36055"": ""100""}","Monroe","36055","FALSE","FALSE","America/New_York"
-"14544","42.75658","-77.24347","Rushville","NY","New York","TRUE","","1954","26.7","36123","Yates","{""36123"": ""61.21"", ""36069"": ""38.79""}","Yates|Ontario","36123|36069","FALSE","FALSE","America/New_York"
-"14545","42.66491","-77.70101","Scottsburg","NY","New York","TRUE","","188","50.6","36051","Livingston","{""36051"": ""100""}","Livingston","36051","FALSE","FALSE","America/New_York"
-"14546","43.031","-77.77345","Scottsville","NY","New York","TRUE","","4702","53.1","36055","Monroe","{""36055"": ""100""}","Monroe","36055","FALSE","FALSE","America/New_York"
-"14548","42.97605","-77.24386","Shortsville","NY","New York","TRUE","","3826","49.1","36069","Ontario","{""36069"": ""100""}","Ontario","36069","FALSE","FALSE","America/New_York"
-"14549","42.70004","-78.01723","Silver Lake","NY","New York","TRUE","","76","261.1","36121","Wyoming","{""36121"": ""100""}","Wyoming","36121","FALSE","FALSE","America/New_York"
-"14550","42.67783","-78.09104","Silver Springs","NY","New York","TRUE","","1491","28.8","36121","Wyoming","{""36121"": ""100""}","Wyoming","36121","FALSE","FALSE","America/New_York"
-"14551","43.21915","-77.04497","Sodus","NY","New York","TRUE","","5152","45.5","36117","Wayne","{""36117"": ""100""}","Wayne","36117","FALSE","FALSE","America/New_York"
-"14555","43.25922","-76.97814","Sodus Point","NY","New York","TRUE","","1004","123.6","36117","Wayne","{""36117"": ""100""}","Wayne","36117","FALSE","FALSE","America/New_York"
-"14559","43.18805","-77.81798","Spencerport","NY","New York","TRUE","","18930","171.9","36055","Monroe","{""36055"": ""100""}","Monroe","36055","FALSE","FALSE","America/New_York"
-"14560","42.68378","-77.57082","Springwater","NY","New York","TRUE","","2176","21.6","36051","Livingston","{""36051"": ""61.09"", ""36069"": ""38.91""}","Livingston|Ontario","36051|36069","FALSE","FALSE","America/New_York"
-"14561","42.82046","-77.13175","Stanley","NY","New York","TRUE","","3014","22.4","36069","Ontario","{""36069"": ""97.93"", ""36123"": ""2.07""}","Ontario|Yates","36069|36123","FALSE","FALSE","America/New_York"
-"14564","42.98295","-77.42408","Victor","NY","New York","TRUE","","15082","138.3","36069","Ontario","{""36069"": ""98.54"", ""36055"": ""1.46""}","Ontario|Monroe","36069|36055","FALSE","FALSE","America/New_York"
-"14568","43.14723","-77.28382","Walworth","NY","New York","TRUE","","6232","101.4","36117","Wayne","{""36117"": ""100""}","Wayne","36117","FALSE","FALSE","America/New_York"
-"14569","42.73931","-78.17138","Warsaw","NY","New York","TRUE","","5896","29.8","36121","Wyoming","{""36121"": ""100""}","Wyoming","36121","FALSE","FALSE","America/New_York"
-"14571","43.34256","-78.25309","Waterport","NY","New York","TRUE","","1350","28.4","36073","Orleans","{""36073"": ""100""}","Orleans","36073","FALSE","FALSE","America/New_York"
-"14572","42.56536","-77.571","Wayland","NY","New York","TRUE","","4640","24.0","36101","Steuben","{""36101"": ""81.38"", ""36051"": ""18.62""}","Steuben|Livingston","36101|36051","FALSE","FALSE","America/New_York"
-"14580","43.2193","-77.44551","Webster","NY","New York","TRUE","","52585","476.6","36055","Monroe","{""36055"": ""99.85"", ""36117"": ""0.15""}","Monroe|Wayne","36055|36117","FALSE","FALSE","America/New_York"
-"14585","42.90629","-77.55337","West Bloomfield","NY","New York","TRUE","","85","662.7","36069","Ontario","{""36069"": ""100""}","Ontario","36069","FALSE","FALSE","America/New_York"
-"14586","43.0418","-77.68688","West Henrietta","NY","New York","TRUE","","11875","411.2","36055","Monroe","{""36055"": ""100""}","Monroe","36055","FALSE","FALSE","America/New_York"
-"14588","42.68099","-76.87062","Willard","NY","New York","TRUE","","800","1282.8","36099","Seneca","{""36099"": ""100""}","Seneca","36099","FALSE","FALSE","America/New_York"
-"14589","43.24008","-77.17253","Williamson","NY","New York","TRUE","","7605","67.0","36117","Wayne","{""36117"": ""100""}","Wayne","36117","FALSE","FALSE","America/New_York"
-"14590","43.24228","-76.82725","Wolcott","NY","New York","TRUE","","5316","30.4","36117","Wayne","{""36117"": ""100""}","Wayne","36117","FALSE","FALSE","America/New_York"
-"14591","42.83196","-78.09835","Wyoming","NY","New York","TRUE","","1592","15.2","36121","Wyoming","{""36121"": ""92.45"", ""36037"": ""7.55""}","Wyoming|Genesee","36121|36037","FALSE","FALSE","America/New_York"
-"14592","42.87217","-77.89574","York","NY","New York","TRUE","","64","148.2","36051","Livingston","{""36051"": ""100""}","Livingston","36051","FALSE","FALSE","America/New_York"
-"14604","43.15678","-77.60479","Rochester","NY","New York","TRUE","","2364","2501.6","36055","Monroe","{""36055"": ""100""}","Monroe","36055","FALSE","FALSE","America/New_York"
-"14605","43.1683","-77.60203","Rochester","NY","New York","TRUE","","11932","2548.8","36055","Monroe","{""36055"": ""100""}","Monroe","36055","FALSE","FALSE","America/New_York"
-"14606","43.17128","-77.69857","Rochester","NY","New York","TRUE","","28296","1122.9","36055","Monroe","{""36055"": ""100""}","Monroe","36055","FALSE","FALSE","America/New_York"
-"14607","43.15081","-77.58644","Rochester","NY","New York","TRUE","","16521","3785.4","36055","Monroe","{""36055"": ""100""}","Monroe","36055","FALSE","FALSE","America/New_York"
-"14608","43.1536","-77.6238","Rochester","NY","New York","TRUE","","11542","2547.8","36055","Monroe","{""36055"": ""100""}","Monroe","36055","FALSE","FALSE","America/New_York"
-"14609","43.17753","-77.55277","Rochester","NY","New York","TRUE","","41168","2190.7","36055","Monroe","{""36055"": ""100""}","Monroe","36055","FALSE","FALSE","America/New_York"
-"14610","43.14258","-77.54548","Rochester","NY","New York","TRUE","","13760","1226.3","36055","Monroe","{""36055"": ""100""}","Monroe","36055","FALSE","FALSE","America/New_York"
-"14611","43.14749","-77.64714","Rochester","NY","New York","TRUE","","16962","2262.6","36055","Monroe","{""36055"": ""100""}","Monroe","36055","FALSE","FALSE","America/New_York"
-"14612","43.26574","-77.67613","Rochester","NY","New York","TRUE","","34116","774.8","36055","Monroe","{""36055"": ""100""}","Monroe","36055","FALSE","FALSE","America/New_York"
-"14613","43.18222","-77.6404","Rochester","NY","New York","TRUE","","15381","3250.4","36055","Monroe","{""36055"": ""100""}","Monroe","36055","FALSE","FALSE","America/New_York"
-"14614","43.15754","-77.61503","Rochester","NY","New York","TRUE","","1215","1931.0","36055","Monroe","{""36055"": ""100""}","Monroe","36055","FALSE","FALSE","America/New_York"
-"14615","43.20342","-77.65596","Rochester","NY","New York","TRUE","","16963","1133.9","36055","Monroe","{""36055"": ""100""}","Monroe","36055","FALSE","FALSE","America/New_York"
-"14616","43.23464","-77.65755","Rochester","NY","New York","TRUE","","26948","1750.4","36055","Monroe","{""36055"": ""100""}","Monroe","36055","FALSE","FALSE","America/New_York"
-"14617","43.22509","-77.59363","Rochester","NY","New York","TRUE","","22774","1144.1","36055","Monroe","{""36055"": ""100""}","Monroe","36055","FALSE","FALSE","America/New_York"
-"14618","43.113","-77.55536","Rochester","NY","New York","TRUE","","22597","901.9","36055","Monroe","{""36055"": ""100""}","Monroe","36055","FALSE","FALSE","America/New_York"
-"14619","43.13615","-77.64897","Rochester","NY","New York","TRUE","","13642","3617.6","36055","Monroe","{""36055"": ""100""}","Monroe","36055","FALSE","FALSE","America/New_York"
-"14620","43.12891","-77.60517","Rochester","NY","New York","TRUE","","23835","2054.9","36055","Monroe","{""36055"": ""100""}","Monroe","36055","FALSE","FALSE","America/New_York"
-"14621","43.18971","-77.60374","Rochester","NY","New York","TRUE","","33066","3096.4","36055","Monroe","{""36055"": ""100""}","Monroe","36055","FALSE","FALSE","America/New_York"
-"14622","43.21386","-77.55399","Rochester","NY","New York","TRUE","","11939","1001.9","36055","Monroe","{""36055"": ""100""}","Monroe","36055","FALSE","FALSE","America/New_York"
-"14623","43.08846","-77.64239","Rochester","NY","New York","TRUE","","25893","523.8","36055","Monroe","{""36055"": ""100""}","Monroe","36055","FALSE","FALSE","America/New_York"
-"14624","43.12739","-77.7323","Rochester","NY","New York","TRUE","","36570","505.6","36055","Monroe","{""36055"": ""100""}","Monroe","36055","FALSE","FALSE","America/New_York"
-"14625","43.14899","-77.50534","Rochester","NY","New York","TRUE","","10262","519.2","36055","Monroe","{""36055"": ""100""}","Monroe","36055","FALSE","FALSE","America/New_York"
-"14626","43.2143","-77.71383","Rochester","NY","New York","TRUE","","30292","857.9","36055","Monroe","{""36055"": ""100""}","Monroe","36055","FALSE","FALSE","America/New_York"
-"14627","43.12861","-77.62917","Rochester","NY","New York","TRUE","","2348","5892.1","36055","Monroe","{""36055"": ""100""}","Monroe","36055","FALSE","FALSE","America/New_York"
-"14701","42.0788","-79.25735","Jamestown","NY","New York","TRUE","","39214","163.8","36013","Chautauqua","{""36013"": ""100""}","Chautauqua","36013","FALSE","FALSE","America/New_York"
-"14706","42.11331","-78.52578","Allegany","NY","New York","TRUE","","6163","30.2","36009","Cattaraugus","{""36009"": ""100""}","Cattaraugus","36009","FALSE","FALSE","America/New_York"
-"14707","42.07738","-78.0605","Allentown","NY","New York","TRUE","","129","25.0","36003","Allegany","{""36003"": ""100""}","Allegany","36003","FALSE","FALSE","America/New_York"
-"14708","42.01639","-78.06417","Alma","NY","New York","TRUE","","230","8.5","36003","Allegany","{""36003"": ""100""}","Allegany","36003","FALSE","FALSE","America/New_York"
-"14709","42.35235","-77.98556","Angelica","NY","New York","TRUE","","1389","10.6","36003","Allegany","{""36003"": ""100""}","Allegany","36003","FALSE","FALSE","America/New_York"
-"14710","42.09033","-79.42211","Ashville","NY","New York","TRUE","","3443","27.5","36013","Chautauqua","{""36013"": ""100""}","Chautauqua","36013","FALSE","FALSE","America/New_York"
-"14711","42.32604","-78.12146","Belfast","NY","New York","TRUE","","1814","17.5","36003","Allegany","{""36003"": ""100""}","Allegany","36003","FALSE","FALSE","America/New_York"
-"14712","42.18102","-79.36726","Bemus Point","NY","New York","TRUE","","3044","45.2","36013","Chautauqua","{""36013"": ""100""}","Chautauqua","36013","FALSE","FALSE","America/New_York"
-"14714","42.28999","-78.23324","Black Creek","NY","New York","TRUE","","597","12.7","36003","Allegany","{""36003"": ""100""}","Allegany","36003","FALSE","FALSE","America/New_York"
-"14715","42.0676","-78.14919","Bolivar","NY","New York","TRUE","","2733","24.3","36003","Allegany","{""36003"": ""100""}","Allegany","36003","FALSE","FALSE","America/New_York"
-"14716","42.3788","-79.43513","Brocton","NY","New York","TRUE","","2623","81.7","36013","Chautauqua","{""36013"": ""100""}","Chautauqua","36013","FALSE","FALSE","America/New_York"
-"14717","42.364","-78.18399","Caneadea","NY","New York","TRUE","","509","7.2","36003","Allegany","{""36003"": ""100""}","Allegany","36003","FALSE","FALSE","America/New_York"
-"14718","42.34481","-79.28727","Cassadaga","NY","New York","TRUE","","2041","23.9","36013","Chautauqua","{""36013"": ""100""}","Chautauqua","36013","FALSE","FALSE","America/New_York"
-"14719","42.33848","-78.87923","Cattaraugus","NY","New York","TRUE","","3459","14.2","36009","Cattaraugus","{""36009"": ""100""}","Cattaraugus","36009","FALSE","FALSE","America/New_York"
-"14720","42.10857","-79.28113","Celoron","NY","New York","TRUE","","601","948.0","36013","Chautauqua","{""36013"": ""100""}","Chautauqua","36013","FALSE","FALSE","America/New_York"
-"14721","42.01386","-78.26648","Ceres","NY","New York","TRUE","","150","15.6","36003","Allegany","{""36003"": ""100""}","Allegany","36003","FALSE","FALSE","America/New_York"
-"14722","42.20939","-79.46821","Chautauqua","NY","New York","TRUE","","244","283.1","36013","Chautauqua","{""36013"": ""100""}","Chautauqua","36013","FALSE","FALSE","America/New_York"
-"14723","42.3104","-79.13985","Cherry Creek","NY","New York","TRUE","","1109","9.9","36013","Chautauqua","{""36013"": ""100""}","Chautauqua","36013","FALSE","FALSE","America/New_York"
-"14724","42.05281","-79.6687","Clymer","NY","New York","TRUE","","2405","12.5","36013","Chautauqua","{""36013"": ""100""}","Chautauqua","36013","FALSE","FALSE","America/New_York"
-"14726","42.25158","-79.02122","Conewango Valley","NY","New York","TRUE","","1892","18.0","36009","Cattaraugus","{""36009"": ""85.9"", ""36013"": ""14.1""}","Cattaraugus|Chautauqua","36009|36013","FALSE","FALSE","America/New_York"
-"14727","42.20785","-78.29184","Cuba","NY","New York","TRUE","","5386","19.1","36003","Allegany","{""36003"": ""79.61"", ""36009"": ""20.39""}","Allegany|Cattaraugus","36003|36009","FALSE","FALSE","America/New_York"
-"14728","42.26302","-79.41968","Dewittville","NY","New York","TRUE","","995","14.3","36013","Chautauqua","{""36013"": ""100""}","Chautauqua","36013","FALSE","FALSE","America/New_York"
-"14729","42.4035","-78.7434","East Otto","NY","New York","TRUE","","906","9.9","36009","Cattaraugus","{""36009"": ""100""}","Cattaraugus","36009","FALSE","FALSE","America/New_York"
-"14731","42.3005","-78.65037","Ellicottville","NY","New York","TRUE","","1125","9.5","36009","Cattaraugus","{""36009"": ""100""}","Cattaraugus","36009","FALSE","FALSE","America/New_York"
-"14732","42.2319","-79.11636","Ellington","NY","New York","TRUE","","154","26.6","36013","Chautauqua","{""36013"": ""100""}","Chautauqua","36013","FALSE","FALSE","America/New_York"
-"14733","42.14916","-79.17462","Falconer","NY","New York","TRUE","","3646","50.8","36013","Chautauqua","{""36013"": ""100""}","Chautauqua","36013","FALSE","FALSE","America/New_York"
-"14735","42.45147","-78.09768","Fillmore","NY","New York","TRUE","","2981","13.9","36003","Allegany","{""36003"": ""99.38"", ""36121"": ""0.62""}","Allegany|Wyoming","36003|36121","FALSE","FALSE","America/New_York"
-"14736","42.14089","-79.74611","Findley Lake","NY","New York","TRUE","","203","15.0","36013","Chautauqua","{""36013"": ""100""}","Chautauqua","36013","FALSE","FALSE","America/New_York"
-"14737","42.33512","-78.43048","Franklinville","NY","New York","TRUE","","4322","15.1","36009","Cattaraugus","{""36009"": ""100""}","Cattaraugus","36009","FALSE","FALSE","America/New_York"
-"14738","42.04548","-79.06035","Frewsburg","NY","New York","TRUE","","3252","19.1","36013","Chautauqua","{""36013"": ""92.77"", ""36009"": ""7.23""}","Chautauqua|Cattaraugus","36013|36009","FALSE","FALSE","America/New_York"
-"14739","42.19164","-78.14761","Friendship","NY","New York","TRUE","","2740","13.4","36003","Allegany","{""36003"": ""100""}","Allegany","36003","FALSE","FALSE","America/New_York"
-"14740","42.21957","-79.18406","Gerry","NY","New York","TRUE","","1105","16.4","36013","Chautauqua","{""36013"": ""100""}","Chautauqua","36013","FALSE","FALSE","America/New_York"
-"14741","42.21772","-78.59825","Great Valley","NY","New York","TRUE","","1900","11.9","36009","Cattaraugus","{""36009"": ""100""}","Cattaraugus","36009","FALSE","FALSE","America/New_York"
-"14742","42.12015","-79.30688","Greenhurst","NY","New York","TRUE","","313","538.1","36013","Chautauqua","{""36013"": ""100""}","Chautauqua","36013","FALSE","FALSE","America/New_York"
-"14743","42.20296","-78.40516","Hinsdale","NY","New York","TRUE","","1784","15.9","36009","Cattaraugus","{""36009"": ""100""}","Cattaraugus","36009","FALSE","FALSE","America/New_York"
-"14744","42.42232","-78.21068","Houghton","NY","New York","TRUE","","2175","48.2","36003","Allegany","{""36003"": ""100""}","Allegany","36003","FALSE","FALSE","America/New_York"
-"14747","42.15401","-79.09133","Kennedy","NY","New York","TRUE","","2243","19.9","36013","Chautauqua","{""36013"": ""91.35"", ""36009"": ""8.65""}","Chautauqua|Cattaraugus","36013|36009","FALSE","FALSE","America/New_York"
-"14748","42.13712","-78.63735","Kill Buck","NY","New York","TRUE","","618","13.3","36009","Cattaraugus","{""36009"": ""100""}","Cattaraugus","36009","FALSE","FALSE","America/New_York"
-"14750","42.07978","-79.32928","Lakewood","NY","New York","TRUE","","4419","153.7","36013","Chautauqua","{""36013"": ""100""}","Chautauqua","36013","FALSE","FALSE","America/New_York"
-"14752","42.35173","-79.31982","Lily Dale","NY","New York","TRUE","","345","531.2","36013","Chautauqua","{""36013"": ""100""}","Chautauqua","36013","FALSE","FALSE","America/New_York"
-"14753","42.05049","-78.64552","Limestone","NY","New York","TRUE","","1082","7.6","36009","Cattaraugus","{""36009"": ""100""}","Cattaraugus","36009","FALSE","FALSE","America/New_York"
-"14754","42.02571","-78.2059","Little Genesee","NY","New York","TRUE","","629","14.6","36003","Allegany","{""36003"": ""100""}","Allegany","36003","FALSE","FALSE","America/New_York"
-"14755","42.23644","-78.81303","Little Valley","NY","New York","TRUE","","3011","15.4","36009","Cattaraugus","{""36009"": ""100""}","Cattaraugus","36009","FALSE","FALSE","America/New_York"
-"14756","42.19788","-79.42123","Maple Springs","NY","New York","TRUE","","28","78.8","36013","Chautauqua","{""36013"": ""100""}","Chautauqua","36013","FALSE","FALSE","America/New_York"
-"14757","42.23673","-79.50416","Mayville","NY","New York","TRUE","","3323","27.8","36013","Chautauqua","{""36013"": ""100""}","Chautauqua","36013","FALSE","FALSE","America/New_York"
-"14760","42.07338","-78.41388","Olean","NY","New York","TRUE","","17640","107.3","36009","Cattaraugus","{""36009"": ""100""}","Cattaraugus","36009","FALSE","FALSE","America/New_York"
-"14767","42.05172","-79.51133","Panama","NY","New York","TRUE","","2138","15.5","36013","Chautauqua","{""36013"": ""100""}","Chautauqua","36013","FALSE","FALSE","America/New_York"
-"14769","42.36811","-79.47649","Portland","NY","New York","TRUE","","1124","47.6","36013","Chautauqua","{""36013"": ""100""}","Chautauqua","36013","FALSE","FALSE","America/New_York"
-"14770","42.04244","-78.30415","Portville","NY","New York","TRUE","","2926","38.1","36009","Cattaraugus","{""36009"": ""73"", ""36003"": ""27""}","Cattaraugus|Allegany","36009|36003","FALSE","FALSE","America/New_York"
-"14772","42.155","-78.95337","Randolph","NY","New York","TRUE","","4075","21.3","36009","Cattaraugus","{""36009"": ""100""}","Cattaraugus","36009","FALSE","FALSE","America/New_York"
-"14774","42.08839","-78.14914","Richburg","NY","New York","TRUE","","55","119.2","36003","Allegany","{""36003"": ""100""}","Allegany","36003","FALSE","FALSE","America/New_York"
-"14775","42.2322","-79.69519","Ripley","NY","New York","TRUE","","2545","18.2","36013","Chautauqua","{""36013"": ""100""}","Chautauqua","36013","FALSE","FALSE","America/New_York"
-"14777","42.39179","-78.2615","Rushford","NY","New York","TRUE","","693","18.6","36003","Allegany","{""36003"": ""100""}","Allegany","36003","FALSE","FALSE","America/New_York"
-"14778","42.07758","-78.48324","Saint Bonaventure","NY","New York","TRUE","","1354","1258.3","36009","Cattaraugus","{""36009"": ""100""}","Cattaraugus","36009","FALSE","FALSE","America/New_York"
-"14779","42.10645","-78.77776","Salamanca","NY","New York","TRUE","","6606","22.6","36009","Cattaraugus","{""36009"": ""100""}","Cattaraugus","36009","FALSE","FALSE","America/New_York"
-"14781","42.16117","-79.60186","Sherman","NY","New York","TRUE","","2089","11.1","36013","Chautauqua","{""36013"": ""100""}","Chautauqua","36013","FALSE","FALSE","America/New_York"
-"14782","42.26661","-79.26045","Sinclairville","NY","New York","TRUE","","2270","15.9","36013","Chautauqua","{""36013"": ""100""}","Chautauqua","36013","FALSE","FALSE","America/New_York"
-"14783","42.07798","-78.88412","Steamburg","NY","New York","TRUE","","305","4.7","36009","Cattaraugus","{""36009"": ""100""}","Cattaraugus","36009","FALSE","FALSE","America/New_York"
-"14784","42.3153","-79.38065","Stockton","NY","New York","TRUE","","972","13.0","36013","Chautauqua","{""36013"": ""100""}","Chautauqua","36013","FALSE","FALSE","America/New_York"
-"14787","42.31124","-79.57054","Westfield","NY","New York","TRUE","","4704","43.2","36013","Chautauqua","{""36013"": ""100""}","Chautauqua","36013","FALSE","FALSE","America/New_York"
-"14788","42.06205","-78.38018","Westons Mills","NY","New York","TRUE","","44","80.7","36009","Cattaraugus","{""36009"": ""100""}","Cattaraugus","36009","FALSE","FALSE","America/New_York"
-"14801","42.09688","-77.28862","Addison","NY","New York","TRUE","","5328","18.9","36101","Steuben","{""36101"": ""100""}","Steuben","36101","FALSE","FALSE","America/New_York"
-"14802","42.25326","-77.78926","Alfred","NY","New York","TRUE","","4235","1571.9","36003","Allegany","{""36003"": ""100""}","Allegany","36003","FALSE","FALSE","America/New_York"
-"14803","42.2543","-77.78687","Alfred Station","NY","New York","TRUE","","800","12.4","36003","Allegany","{""36003"": ""93.95"", ""36101"": ""6.05""}","Allegany|Steuben","36003|36101","FALSE","FALSE","America/New_York"
-"14804","42.31717","-77.84886","Almond","NY","New York","TRUE","","1435","9.9","36003","Allegany","{""36003"": ""99.73"", ""36101"": ""0.27""}","Allegany|Steuben","36003|36101","FALSE","FALSE","America/New_York"
-"14805","42.35884","-76.72417","Alpine","NY","New York","TRUE","","1065","14.9","36097","Schuyler","{""36097"": ""100""}","Schuyler","36097","FALSE","FALSE","America/New_York"
-"14806","42.15996","-77.77932","Andover","NY","New York","TRUE","","2121","11.9","36003","Allegany","{""36003"": ""93.12"", ""36101"": ""6.88""}","Allegany|Steuben","36003|36101","FALSE","FALSE","America/New_York"
-"14807","42.41922","-77.71193","Arkport","NY","New York","TRUE","","3138","17.9","36101","Steuben","{""36101"": ""81.5"", ""36003"": ""18.5""}","Steuben|Allegany","36101|36003","FALSE","FALSE","America/New_York"
-"14808","42.55966","-77.46691","Atlanta","NY","New York","TRUE","","607","69.6","36101","Steuben","{""36101"": ""100""}","Steuben","36101","FALSE","FALSE","America/New_York"
-"14809","42.41969","-77.44608","Avoca","NY","New York","TRUE","","2284","15.8","36101","Steuben","{""36101"": ""100""}","Steuben","36101","FALSE","FALSE","America/New_York"
-"14810","42.3487","-77.34272","Bath","NY","New York","TRUE","","12067","38.6","36101","Steuben","{""36101"": ""100""}","Steuben","36101","FALSE","FALSE","America/New_York"
-"14812","42.29326","-76.99553","Beaver Dams","NY","New York","TRUE","","3525","17.6","36097","Schuyler","{""36097"": ""49.22"", ""36015"": ""29.61"", ""36101"": ""21.16""}","Schuyler|Chemung|Steuben","36097|36015|36101","FALSE","FALSE","America/New_York"
-"14813","42.24794","-77.99107","Belmont","NY","New York","TRUE","","2351","14.9","36003","Allegany","{""36003"": ""100""}","Allegany","36003","FALSE","FALSE","America/New_York"
-"14814","42.15003","-76.95274","Big Flats","NY","New York","TRUE","","1942","87.1","36015","Chemung","{""36015"": ""88.81"", ""36101"": ""11.19""}","Chemung|Steuben","36015|36101","FALSE","FALSE","America/New_York"
-"14815","42.37458","-77.09279","Bradford","NY","New York","TRUE","","841","18.8","36097","Schuyler","{""36097"": ""68.18"", ""36101"": ""31.82""}","Schuyler|Steuben","36097|36101","FALSE","FALSE","America/New_York"
-"14816","42.19533","-76.73129","Breesport","NY","New York","TRUE","","527","52.8","36015","Chemung","{""36015"": ""100""}","Chemung","36015","FALSE","FALSE","America/New_York"
-"14817","42.36488","-76.34272","Brooktondale","NY","New York","TRUE","","2658","25.5","36109","Tompkins","{""36109"": ""95.59"", ""36107"": ""4.41""}","Tompkins|Tioga","36109|36107","FALSE","FALSE","America/New_York"
-"14818","42.44809","-76.81885","Burdett","NY","New York","TRUE","","2176","22.5","36097","Schuyler","{""36097"": ""100""}","Schuyler","36097","FALSE","FALSE","America/New_York"
-"14819","42.22047","-77.43861","Cameron","NY","New York","TRUE","","584","5.5","36101","Steuben","{""36101"": ""100""}","Steuben","36101","FALSE","FALSE","America/New_York"
-"14820","42.19226","-77.35933","Cameron Mills","NY","New York","TRUE","","826","10.4","36101","Steuben","{""36101"": ""100""}","Steuben","36101","FALSE","FALSE","America/New_York"
-"14821","42.23413","-77.21433","Campbell","NY","New York","TRUE","","3471","24.7","36101","Steuben","{""36101"": ""100""}","Steuben","36101","FALSE","FALSE","America/New_York"
-"14822","42.43085","-77.84964","Canaseraga","NY","New York","TRUE","","913","7.1","36003","Allegany","{""36003"": ""95.64"", ""36051"": ""4.36""}","Allegany|Livingston","36003|36051","FALSE","FALSE","America/New_York"
-"14823","42.24857","-77.55377","Canisteo","NY","New York","TRUE","","3624","18.0","36101","Steuben","{""36101"": ""100""}","Steuben","36101","FALSE","FALSE","America/New_York"
-"14824","42.26709","-76.70087","Cayuta","NY","New York","TRUE","","611","10.4","36097","Schuyler","{""36097"": ""66.81"", ""36015"": ""33.19""}","Schuyler|Chemung","36097|36015","FALSE","FALSE","America/New_York"
-"14825","42.05508","-76.62115","Chemung","NY","New York","TRUE","","661","15.1","36015","Chemung","{""36015"": ""100""}","Chemung","36015","FALSE","FALSE","America/New_York"
-"14826","42.49153","-77.49693","Cohocton","NY","New York","TRUE","","1957","12.4","36101","Steuben","{""36101"": ""100""}","Steuben","36101","FALSE","FALSE","America/New_York"
-"14827","42.18065","-77.14283","Coopers Plains","NY","New York","TRUE","","186","798.0","36101","Steuben","{""36101"": ""100""}","Steuben","36101","FALSE","FALSE","America/New_York"
-"14830","42.12985","-77.03315","Corning","NY","New York","TRUE","","19521","83.9","36101","Steuben","{""36101"": ""99"", ""36015"": ""1""}","Steuben|Chemung","36101|36015","FALSE","FALSE","America/New_York"
-"14836","42.5163","-77.9178","Dalton","NY","New York","TRUE","","892","11.5","36051","Livingston","{""36051"": ""79.29"", ""36003"": ""20.71""}","Livingston|Allegany","36051|36003","FALSE","FALSE","America/New_York"
-"14837","42.49726","-77.01723","Dundee","NY","New York","TRUE","","5786","28.0","36123","Yates","{""36123"": ""79.43"", ""36097"": ""18.89"", ""36101"": ""1.68""}","Yates|Schuyler|Steuben","36123|36097|36101","FALSE","FALSE","America/New_York"
-"14838","42.18734","-76.66605","Erin","NY","New York","TRUE","","1917","20.5","36015","Chemung","{""36015"": ""100""}","Chemung","36015","FALSE","FALSE","America/New_York"
-"14839","42.13945","-77.64475","Greenwood","NY","New York","TRUE","","811","7.1","36101","Steuben","{""36101"": ""100""}","Steuben","36101","FALSE","FALSE","America/New_York"
-"14840","42.44214","-77.18832","Hammondsport","NY","New York","TRUE","","2631","17.3","36101","Steuben","{""36101"": ""98.89"", ""36097"": ""1.11""}","Steuben|Schuyler","36101|36097","FALSE","FALSE","America/New_York"
-"14841","42.52534","-76.84091","Hector","NY","New York","TRUE","","707","13.9","36097","Schuyler","{""36097"": ""88.31"", ""36099"": ""11.69""}","Schuyler|Seneca","36097|36099","FALSE","FALSE","America/New_York"
-"14842","42.59462","-76.96503","Himrod","NY","New York","TRUE","","1123","25.9","36123","Yates","{""36123"": ""100""}","Yates","36123","FALSE","FALSE","America/New_York"
-"14843","42.31834","-77.64549","Hornell","NY","New York","TRUE","","12814","49.2","36101","Steuben","{""36101"": ""99.59"", ""36003"": ""0.41""}","Steuben|Allegany","36101|36003","FALSE","FALSE","America/New_York"
-"14845","42.20497","-76.83565","Horseheads","NY","New York","TRUE","","20011","96.8","36015","Chemung","{""36015"": ""100""}","Chemung","36015","FALSE","FALSE","America/New_York"
-"14846","42.53471","-78.00099","Hunt","NY","New York","TRUE","","775","8.8","36051","Livingston","{""36051"": ""81.44"", ""36003"": ""18.56""}","Livingston|Allegany","36051|36003","FALSE","FALSE","America/New_York"
-"14847","42.60396","-76.73981","Interlaken","NY","New York","TRUE","","2398","23.8","36099","Seneca","{""36099"": ""100""}","Seneca","36099","FALSE","FALSE","America/New_York"
-"14850","42.43101","-76.49959","Ithaca","NY","New York","TRUE","","64221","196.9","36109","Tompkins","{""36109"": ""100""}","Tompkins","36109","FALSE","FALSE","America/New_York"
-"14853","42.44773","-76.47959","Ithaca","NY","New York","TRUE","","2656","4380.6","36109","Tompkins","{""36109"": ""100""}","Tompkins","36109","FALSE","FALSE","America/New_York"
-"14854","42.50574","-76.61477","Jacksonville","NY","New York","TRUE","","12","203.6","36109","Tompkins","{""36109"": ""100""}","Tompkins","36109","FALSE","FALSE","America/New_York"
-"14855","42.14206","-77.50282","Jasper","NY","New York","TRUE","","940","13.0","36101","Steuben","{""36101"": ""100""}","Steuben","36101","FALSE","FALSE","America/New_York"
-"14856","42.3767","-77.36651","Kanona","NY","New York","TRUE","","300","307.2","36101","Steuben","{""36101"": ""100""}","Steuben","36101","FALSE","FALSE","America/New_York"
-"14858","42.02999","-77.13565","Lindley","NY","New York","TRUE","","1281","13.7","36101","Steuben","{""36101"": ""100""}","Steuben","36101","FALSE","FALSE","America/New_York"
-"14859","42.11991","-76.53526","Lockwood","NY","New York","TRUE","","984","12.2","36107","Tioga","{""36107"": ""69.58"", ""36015"": ""30.42""}","Tioga|Chemung","36107|36015","FALSE","FALSE","America/New_York"
-"14860","42.59358","-76.83621","Lodi","NY","New York","TRUE","","1204","22.1","36099","Seneca","{""36099"": ""100""}","Seneca","36099","FALSE","FALSE","America/New_York"
-"14861","42.08993","-76.68477","Lowman","NY","New York","TRUE","","1125","12.7","36015","Chemung","{""36015"": ""100""}","Chemung","36015","FALSE","FALSE","America/New_York"
-"14864","42.27828","-76.84167","Millport","NY","New York","TRUE","","1197","37.1","36015","Chemung","{""36015"": ""89.14"", ""36097"": ""10.86""}","Chemung|Schuyler","36015|36097","FALSE","FALSE","America/New_York"
-"14865","42.34857","-76.83399","Montour Falls","NY","New York","TRUE","","2874","55.6","36097","Schuyler","{""36097"": ""100""}","Schuyler","36097","FALSE","FALSE","America/New_York"
-"14867","42.34405","-76.61415","Newfield","NY","New York","TRUE","","5676","32.7","36109","Tompkins","{""36109"": ""100""}","Tompkins","36109","FALSE","FALSE","America/New_York"
-"14869","42.36507","-76.77186","Odessa","NY","New York","TRUE","","1259","24.1","36097","Schuyler","{""36097"": ""100""}","Schuyler","36097","FALSE","FALSE","America/New_York"
-"14870","42.16768","-77.13458","Painted Post","NY","New York","TRUE","","9468","59.6","36101","Steuben","{""36101"": ""98.3"", ""36097"": ""1.7""}","Steuben|Schuyler","36101|36097","FALSE","FALSE","America/New_York"
-"14871","42.04026","-76.91143","Pine City","NY","New York","TRUE","","4980","33.6","36015","Chemung","{""36015"": ""90.65"", ""36101"": ""9.35""}","Chemung|Steuben","36015|36101","FALSE","FALSE","America/New_York"
-"14872","42.24239","-76.8678","Pine Valley","NY","New York","TRUE","","657","39.5","36015","Chemung","{""36015"": ""100""}","Chemung","36015","FALSE","FALSE","America/New_York"
-"14873","42.52238","-77.29841","Prattsburgh","NY","New York","TRUE","","2574","13.5","36101","Steuben","{""36101"": ""100""}","Steuben","36101","FALSE","FALSE","America/New_York"
-"14874","42.53016","-77.17551","Pulteney","NY","New York","TRUE","","235","39.2","36101","Steuben","{""36101"": ""100""}","Steuben","36101","FALSE","FALSE","America/New_York"
-"14877","42.05664","-77.6859","Rexville","NY","New York","TRUE","","476","4.3","36101","Steuben","{""36101"": ""98.75"", ""36003"": ""1.25""}","Steuben|Allegany","36101|36003","FALSE","FALSE","America/New_York"
-"14878","42.45028","-76.94341","Rock Stream","NY","New York","TRUE","","644","15.5","36097","Schuyler","{""36097"": ""72.22"", ""36123"": ""27.78""}","Schuyler|Yates","36097|36123","FALSE","FALSE","America/New_York"
-"14879","42.31621","-77.19003","Savona","NY","New York","TRUE","","1998","17.9","36101","Steuben","{""36101"": ""100""}","Steuben","36101","FALSE","FALSE","America/New_York"
-"14880","42.17744","-77.97066","Scio","NY","New York","TRUE","","1640","11.5","36003","Allegany","{""36003"": ""100""}","Allegany","36003","FALSE","FALSE","America/New_York"
-"14881","42.40056","-76.35671","Slaterville Springs","NY","New York","TRUE","","159","50.0","36109","Tompkins","{""36109"": ""100""}","Tompkins","36109","FALSE","FALSE","America/New_York"
-"14882","42.58016","-76.55496","Lansing","NY","New York","TRUE","","4066","47.2","36109","Tompkins","{""36109"": ""100""}","Tompkins","36109","FALSE","FALSE","America/New_York"
-"14883","42.23929","-76.4812","Spencer","NY","New York","TRUE","","4726","25.3","36107","Tioga","{""36107"": ""78.7"", ""36109"": ""21.3""}","Tioga|Tompkins","36107|36109","FALSE","FALSE","America/New_York"
-"14884","42.48015","-77.8885","Swain","NY","New York","TRUE","","306","6.2","36003","Allegany","{""36003"": ""100""}","Allegany","36003","FALSE","FALSE","America/New_York"
-"14885","42.04656","-77.57035","Troupsburg","NY","New York","TRUE","","722","6.6","36101","Steuben","{""36101"": ""100""}","Steuben","36101","FALSE","FALSE","America/New_York"
-"14886","42.50471","-76.68977","Trumansburg","NY","New York","TRUE","","6713","33.4","36109","Tompkins","{""36109"": ""64.67"", ""36097"": ""25.47"", ""36099"": ""9.86""}","Tompkins|Schuyler|Seneca","36109|36097|36099","FALSE","FALSE","America/New_York"
-"14889","42.21521","-76.58135","Van Etten","NY","New York","TRUE","","1539","13.2","36015","Chemung","{""36015"": ""96.1"", ""36097"": ""3.27"", ""36107"": ""0.63""}","Chemung|Schuyler|Tioga","36015|36097|36107","FALSE","FALSE","America/New_York"
-"14891","42.37724","-76.94575","Watkins Glen","NY","New York","TRUE","","4276","31.6","36097","Schuyler","{""36097"": ""100""}","Schuyler","36097","FALSE","FALSE","America/New_York"
-"14892","42.04832","-76.52704","Waverly","NY","New York","TRUE","","8022","72.2","36107","Tioga","{""36107"": ""90.77"", ""36015"": ""9.23""}","Tioga|Chemung","36107|36015","FALSE","FALSE","America/New_York"
-"14893","42.46781","-77.10772","Wayne","NY","New York","TRUE","","0","0.0","36101","Steuben","{""36101"": ""100""}","Steuben","36101","FALSE","FALSE","America/New_York"
-"14894","42.02236","-76.769","Wellsburg","NY","New York","TRUE","","1246","42.7","36015","Chemung","{""36015"": ""100""}","Chemung","36015","FALSE","FALSE","America/New_York"
-"14895","42.07697","-77.93709","Wellsville","NY","New York","TRUE","","9144","31.1","36003","Allegany","{""36003"": ""100""}","Allegany","36003","FALSE","FALSE","America/New_York"
-"14897","42.02921","-77.79237","Whitesville","NY","New York","TRUE","","773","11.7","36003","Allegany","{""36003"": ""98.06"", ""36101"": ""1.94""}","Allegany|Steuben","36003|36101","FALSE","FALSE","America/New_York"
-"14898","42.05701","-77.43902","Woodhull","NY","New York","TRUE","","2018","13.3","36101","Steuben","{""36101"": ""100""}","Steuben","36101","FALSE","FALSE","America/New_York"
-"14901","42.08198","-76.74428","Elmira","NY","New York","TRUE","","15855","163.7","36015","Chemung","{""36015"": ""100""}","Chemung","36015","FALSE","FALSE","America/New_York"
-"14903","42.12526","-76.87563","Elmira","NY","New York","TRUE","","7600","140.6","36015","Chemung","{""36015"": ""100""}","Chemung","36015","FALSE","FALSE","America/New_York"
-"14904","42.06982","-76.79987","Elmira","NY","New York","TRUE","","15176","1043.5","36015","Chemung","{""36015"": ""100""}","Chemung","36015","FALSE","FALSE","America/New_York"
-"14905","42.0883","-76.84392","Elmira","NY","New York","TRUE","","8407","779.1","36015","Chemung","{""36015"": ""100""}","Chemung","36015","FALSE","FALSE","America/New_York"
-"15001","40.59209","-80.31976","Aliquippa","PA","Pennsylvania","TRUE","","31081","199.9","42007","Beaver","{""42007"": ""100""}","Beaver","42007","FALSE","FALSE","America/New_York"
-"15003","40.6011","-80.21386","Ambridge","PA","Pennsylvania","TRUE","","11213","663.1","42007","Beaver","{""42007"": ""92.22"", ""42003"": ""7.78""}","Beaver|Allegheny","42007|42003","FALSE","FALSE","America/New_York"
-"15004","40.34521","-80.38118","Atlasburg","PA","Pennsylvania","TRUE","","521","642.2","42125","Washington","{""42125"": ""100""}","Washington","42125","FALSE","FALSE","America/New_York"
-"15005","40.64462","-80.17588","Baden","PA","Pennsylvania","TRUE","","9319","229.0","42007","Beaver","{""42007"": ""91.29"", ""42003"": ""8.71""}","Beaver|Allegheny","42007|42003","FALSE","FALSE","America/New_York"
-"15006","40.63357","-79.87681","Bairdford","PA","Pennsylvania","TRUE","","423","663.6","42003","Allegheny","{""42003"": ""100""}","Allegheny","42003","FALSE","FALSE","America/New_York"
-"15007","40.65239","-79.93179","Bakerstown","PA","Pennsylvania","TRUE","","623","719.9","42003","Allegheny","{""42003"": ""100""}","Allegheny","42003","FALSE","FALSE","America/New_York"
-"15009","40.69797","-80.36543","Beaver","PA","Pennsylvania","TRUE","","15241","239.8","42007","Beaver","{""42007"": ""100""}","Beaver","42007","FALSE","FALSE","America/New_York"
-"15010","40.76872","-80.3591","Beaver Falls","PA","Pennsylvania","TRUE","","27380","211.3","42007","Beaver","{""42007"": ""100""}","Beaver","42007","FALSE","FALSE","America/New_York"
-"15012","40.15883","-79.81218","Belle Vernon","PA","Pennsylvania","TRUE","","15220","175.1","42129","Westmoreland","{""42129"": ""73.48"", ""42051"": ""26.27"", ""42125"": ""0.25""}","Westmoreland|Fayette|Washington","42129|42051|42125","FALSE","FALSE","America/New_York"
-"15014","40.60798","-79.741","Brackenridge","PA","Pennsylvania","TRUE","","3090","2347.0","42003","Allegheny","{""42003"": ""100""}","Allegheny","42003","FALSE","FALSE","America/New_York"
-"15015","40.63718","-80.08111","Bradfordwoods","PA","Pennsylvania","TRUE","","1225","505.5","42003","Allegheny","{""42003"": ""100""}","Allegheny","42003","FALSE","FALSE","America/New_York"
-"15017","40.34033","-80.1281","Bridgeville","PA","Pennsylvania","TRUE","","15934","471.6","42003","Allegheny","{""42003"": ""91.58"", ""42125"": ""8.42""}","Allegheny|Washington","42003|42125","FALSE","FALSE","America/New_York"
-"15018","40.2732","-79.79382","Buena Vista","PA","Pennsylvania","TRUE","","874","179.2","42003","Allegheny","{""42003"": ""100""}","Allegheny","42003","FALSE","FALSE","America/New_York"
-"15019","40.40657","-80.32926","Bulger","PA","Pennsylvania","TRUE","","1476","25.1","42125","Washington","{""42125"": ""100""}","Washington","42125","FALSE","FALSE","America/New_York"
-"15020","40.23094","-79.94552","Bunola","PA","Pennsylvania","TRUE","","165","48.3","42003","Allegheny","{""42003"": ""100""}","Allegheny","42003","FALSE","FALSE","America/New_York"
-"15021","40.39429","-80.43512","Burgettstown","PA","Pennsylvania","TRUE","","7186","30.3","42125","Washington","{""42125"": ""100""}","Washington","42125","FALSE","FALSE","America/New_York"
-"15022","40.13237","-79.93578","Charleroi","PA","Pennsylvania","TRUE","","9821","210.0","42125","Washington","{""42125"": ""100""}","Washington","42125","FALSE","FALSE","America/New_York"
-"15024","40.57854","-79.84369","Cheswick","PA","Pennsylvania","TRUE","","8624","199.0","42003","Allegheny","{""42003"": ""100""}","Allegheny","42003","FALSE","FALSE","America/New_York"
-"15025","40.29911","-79.92191","Clairton","PA","Pennsylvania","TRUE","","16298","380.0","42003","Allegheny","{""42003"": ""99.96"", ""42125"": ""0.04""}","Allegheny|Washington","42003|42125","FALSE","FALSE","America/New_York"
-"15026","40.51077","-80.36","Clinton","PA","Pennsylvania","TRUE","","3406","39.4","42007","Beaver","{""42007"": ""74.9"", ""42003"": ""18.47"", ""42125"": ""6.64""}","Beaver|Allegheny|Washington","42007|42003|42125","FALSE","FALSE","America/New_York"
-"15027","40.66675","-80.23944","Conway","PA","Pennsylvania","TRUE","","2190","587.3","42007","Beaver","{""42007"": ""100""}","Beaver","42007","FALSE","FALSE","America/New_York"
-"15028","40.30172","-79.79885","Coulters","PA","Pennsylvania","TRUE","","216","417.4","42003","Allegheny","{""42003"": ""100""}","Allegheny","42003","FALSE","FALSE","America/New_York"
-"15030","40.58728","-79.78068","Creighton","PA","Pennsylvania","TRUE","","1130","232.1","42003","Allegheny","{""42003"": ""100""}","Allegheny","42003","FALSE","FALSE","America/New_York"
-"15031","40.34821","-80.16126","Cuddy","PA","Pennsylvania","TRUE","","486","403.2","42003","Allegheny","{""42003"": ""100""}","Allegheny","42003","FALSE","FALSE","America/New_York"
-"15033","40.17928","-79.86462","Donora","PA","Pennsylvania","TRUE","","4721","817.8","42125","Washington","{""42125"": ""100""}","Washington","42125","FALSE","FALSE","America/New_York"
-"15034","40.35083","-79.89066","Dravosburg","PA","Pennsylvania","TRUE","","1730","689.9","42003","Allegheny","{""42003"": ""100""}","Allegheny","42003","FALSE","FALSE","America/New_York"
-"15035","40.38491","-79.80711","East McKeesport","PA","Pennsylvania","TRUE","","1955","1819.2","42003","Allegheny","{""42003"": ""100""}","Allegheny","42003","FALSE","FALSE","America/New_York"
-"15037","40.25735","-79.8508","Elizabeth","PA","Pennsylvania","TRUE","","10485","153.0","42003","Allegheny","{""42003"": ""100""}","Allegheny","42003","FALSE","FALSE","America/New_York"
-"15038","40.25077","-79.9262","Elrama","PA","Pennsylvania","TRUE","","351","309.9","42125","Washington","{""42125"": ""100""}","Washington","42125","FALSE","FALSE","America/New_York"
-"15042","40.68786","-80.20534","Freedom","PA","Pennsylvania","TRUE","","8309","192.4","42007","Beaver","{""42007"": ""100""}","Beaver","42007","FALSE","FALSE","America/New_York"
-"15043","40.55468","-80.48909","Georgetown","PA","Pennsylvania","TRUE","","2091","24.7","42007","Beaver","{""42007"": ""100""}","Beaver","42007","FALSE","FALSE","America/New_York"
-"15044","40.63904","-79.94999","Gibsonia","PA","Pennsylvania","TRUE","","27735","259.1","42003","Allegheny","{""42003"": ""94.74"", ""42019"": ""5.26""}","Allegheny|Butler","42003|42019","FALSE","FALSE","America/New_York"
-"15045","40.32615","-79.88616","Glassport","PA","Pennsylvania","TRUE","","4371","1067.0","42003","Allegheny","{""42003"": ""100""}","Allegheny","42003","FALSE","FALSE","America/New_York"
-"15046","40.55622","-80.22858","Crescent","PA","Pennsylvania","TRUE","","2589","476.6","42003","Allegheny","{""42003"": ""100""}","Allegheny","42003","FALSE","FALSE","America/New_York"
-"15047","40.31584","-79.79998","Greenock","PA","Pennsylvania","TRUE","","107","215.9","42003","Allegheny","{""42003"": ""100""}","Allegheny","42003","FALSE","FALSE","America/New_York"
-"15049","40.55611","-79.80562","Harwick","PA","Pennsylvania","TRUE","","878","786.4","42003","Allegheny","{""42003"": ""100""}","Allegheny","42003","FALSE","FALSE","America/New_York"
-"15050","40.5622","-80.4388","Hookstown","PA","Pennsylvania","TRUE","","2656","43.8","42007","Beaver","{""42007"": ""100""}","Beaver","42007","FALSE","FALSE","America/New_York"
-"15051","40.56245","-79.86712","Indianola","PA","Pennsylvania","TRUE","","536","247.8","42003","Allegheny","{""42003"": ""100""}","Allegheny","42003","FALSE","FALSE","America/New_York"
-"15052","40.66992","-80.43962","Industry","PA","Pennsylvania","TRUE","","3159","69.9","42007","Beaver","{""42007"": ""100""}","Beaver","42007","FALSE","FALSE","America/New_York"
-"15053","40.38101","-80.35983","Joffre","PA","Pennsylvania","TRUE","","106","465.1","42125","Washington","{""42125"": ""100""}","Washington","42125","FALSE","FALSE","America/New_York"
-"15054","40.36236","-80.40768","Langeloth","PA","Pennsylvania","TRUE","","351","1037.7","42125","Washington","{""42125"": ""100""}","Washington","42125","FALSE","FALSE","America/New_York"
-"15055","40.30637","-80.12263","Lawrence","PA","Pennsylvania","TRUE","","986","563.9","42125","Washington","{""42125"": ""100""}","Washington","42125","FALSE","FALSE","America/New_York"
-"15056","40.56483","-80.21384","Leetsdale","PA","Pennsylvania","TRUE","","1136","476.2","42003","Allegheny","{""42003"": ""100""}","Allegheny","42003","FALSE","FALSE","America/New_York"
-"15057","40.35592","-80.24824","McDonald","PA","Pennsylvania","TRUE","","16167","114.2","42125","Washington","{""42125"": ""51.67"", ""42003"": ""48.33""}","Washington|Allegheny","42125|42003","FALSE","FALSE","America/New_York"
-"15059","40.67929","-80.49084","Midland","PA","Pennsylvania","TRUE","","4239","116.2","42007","Beaver","{""42007"": ""100""}","Beaver","42007","FALSE","FALSE","America/New_York"
-"15060","40.36691","-80.29208","Midway","PA","Pennsylvania","TRUE","","735","864.5","42125","Washington","{""42125"": ""100""}","Washington","42125","FALSE","FALSE","America/New_York"
-"15061","40.65875","-80.31819","Monaca","PA","Pennsylvania","TRUE","","12328","264.7","42007","Beaver","{""42007"": ""100""}","Beaver","42007","FALSE","FALSE","America/New_York"
-"15062","40.15033","-79.88044","Monessen","PA","Pennsylvania","TRUE","","7344","843.7","42129","Westmoreland","{""42129"": ""100""}","Westmoreland","42129","FALSE","FALSE","America/New_York"
-"15063","40.19504","-79.92427","Monongahela","PA","Pennsylvania","TRUE","","11481","155.8","42125","Washington","{""42125"": ""85.68"", ""42003"": ""14.32""}","Washington|Allegheny","42125|42003","FALSE","FALSE","America/New_York"
-"15064","40.35638","-80.14995","Morgan","PA","Pennsylvania","TRUE","","256","120.1","42003","Allegheny","{""42003"": ""100""}","Allegheny","42003","FALSE","FALSE","America/New_York"
-"15065","40.64214","-79.72728","Natrona Heights","PA","Pennsylvania","TRUE","","11463","357.5","42003","Allegheny","{""42003"": ""100""}","Allegheny","42003","FALSE","FALSE","America/New_York"
-"15066","40.75195","-80.25304","New Brighton","PA","Pennsylvania","TRUE","","12654","225.8","42007","Beaver","{""42007"": ""100""}","Beaver","42007","FALSE","FALSE","America/New_York"
-"15067","40.20875","-79.96208","New Eagle","PA","Pennsylvania","TRUE","","2406","455.8","42125","Washington","{""42125"": ""100""}","Washington","42125","FALSE","FALSE","America/New_York"
-"15068","40.56164","-79.71289","New Kensington","PA","Pennsylvania","TRUE","","37035","317.1","42129","Westmoreland","{""42129"": ""87.78"", ""42003"": ""12.22""}","Westmoreland|Allegheny","42129|42003","FALSE","FALSE","America/New_York"
-"15071","40.41207","-80.18779","Oakdale","PA","Pennsylvania","TRUE","","10794","227.4","42003","Allegheny","{""42003"": ""100""}","Allegheny","42003","FALSE","FALSE","America/New_York"
-"15072","40.13936","-79.85617","Pricedale","PA","Pennsylvania","TRUE","","11","62.5","42129","Westmoreland","{""42129"": ""100""}","Westmoreland","42129","FALSE","FALSE","America/New_York"
-"15074","40.72785","-80.21831","Rochester","PA","Pennsylvania","TRUE","","7874","203.1","42007","Beaver","{""42007"": ""100""}","Beaver","42007","FALSE","FALSE","America/New_York"
-"15075","40.58606","-79.82683","Rural Ridge","PA","Pennsylvania","TRUE","","197","3207.1","42003","Allegheny","{""42003"": ""100""}","Allegheny","42003","FALSE","FALSE","America/New_York"
-"15076","40.60736","-79.83469","Russellton","PA","Pennsylvania","TRUE","","726","380.5","42003","Allegheny","{""42003"": ""100""}","Allegheny","42003","FALSE","FALSE","America/New_York"
-"15077","40.62422","-80.42206","Shippingport","PA","Pennsylvania","TRUE","","165","56.5","42007","Beaver","{""42007"": ""100""}","Beaver","42007","FALSE","FALSE","America/New_York"
-"15078","40.35585","-80.38491","Slovan","PA","Pennsylvania","TRUE","","541","285.4","42125","Washington","{""42125"": ""100""}","Washington","42125","FALSE","FALSE","America/New_York"
-"15081","40.57457","-80.23629","South Heights","PA","Pennsylvania","TRUE","","344","414.1","42007","Beaver","{""42007"": ""100""}","Beaver","42007","FALSE","FALSE","America/New_York"
-"15082","40.37776","-80.21299","Sturgeon","PA","Pennsylvania","TRUE","","194","239.7","42003","Allegheny","{""42003"": ""100""}","Allegheny","42003","FALSE","FALSE","America/New_York"
-"15083","40.25428","-79.78741","Sutersville","PA","Pennsylvania","TRUE","","692","72.9","42129","Westmoreland","{""42129"": ""100""}","Westmoreland","42129","FALSE","FALSE","America/New_York"
-"15084","40.63007","-79.80281","Tarentum","PA","Pennsylvania","TRUE","","9995","138.7","42003","Allegheny","{""42003"": ""100""}","Allegheny","42003","FALSE","FALSE","America/New_York"
-"15085","40.38573","-79.72227","Trafford","PA","Pennsylvania","TRUE","","7586","307.7","42129","Westmoreland","{""42129"": ""98.6"", ""42003"": ""1.4""}","Westmoreland|Allegheny","42129|42003","FALSE","FALSE","America/New_York"
-"15086","40.66546","-80.0951","Warrendale","PA","Pennsylvania","TRUE","","462","109.6","42003","Allegheny","{""42003"": ""100"", ""42019"": ""0""}","Allegheny|Butler","42003|42019","FALSE","FALSE","America/New_York"
-"15087","40.18957","-79.85302","Webster","PA","Pennsylvania","TRUE","","150","81.0","42129","Westmoreland","{""42129"": ""100""}","Westmoreland","42129","FALSE","FALSE","America/New_York"
-"15088","40.27228","-79.89584","West Elizabeth","PA","Pennsylvania","TRUE","","524","1001.3","42003","Allegheny","{""42003"": ""100""}","Allegheny","42003","FALSE","FALSE","America/New_York"
-"15089","40.22039","-79.74058","West Newton","PA","Pennsylvania","TRUE","","6453","130.2","42129","Westmoreland","{""42129"": ""98.56"", ""42003"": ""1.44""}","Westmoreland|Allegheny","42129|42003","FALSE","FALSE","America/New_York"
-"15090","40.62549","-80.06889","Wexford","PA","Pennsylvania","TRUE","","23016","420.7","42003","Allegheny","{""42003"": ""100""}","Allegheny","42003","FALSE","FALSE","America/New_York"
-"15101","40.58048","-79.95446","Allison Park","PA","Pennsylvania","TRUE","","25493","486.8","42003","Allegheny","{""42003"": ""100""}","Allegheny","42003","FALSE","FALSE","America/New_York"
-"15102","40.32133","-80.03658","Bethel Park","PA","Pennsylvania","TRUE","","29616","1104.3","42003","Allegheny","{""42003"": ""100""}","Allegheny","42003","FALSE","FALSE","America/New_York"
-"15104","40.4038","-79.86263","Braddock","PA","Pennsylvania","TRUE","","8669","1367.0","42003","Allegheny","{""42003"": ""100""}","Allegheny","42003","FALSE","FALSE","America/New_York"
-"15106","40.41015","-80.11423","Carnegie","PA","Pennsylvania","TRUE","","19667","680.1","42003","Allegheny","{""42003"": ""100""}","Allegheny","42003","FALSE","FALSE","America/New_York"
-"15108","40.49997","-80.19959","Coraopolis","PA","Pennsylvania","TRUE","","40971","400.6","42003","Allegheny","{""42003"": ""100""}","Allegheny","42003","FALSE","FALSE","America/New_York"
-"15110","40.37319","-79.85012","Duquesne","PA","Pennsylvania","TRUE","","5543","1177.2","42003","Allegheny","{""42003"": ""100""}","Allegheny","42003","FALSE","FALSE","America/New_York"
-"15112","40.40456","-79.83773","East Pittsburgh","PA","Pennsylvania","TRUE","","2873","1326.7","42003","Allegheny","{""42003"": ""100""}","Allegheny","42003","FALSE","FALSE","America/New_York"
-"15116","40.53908","-79.95047","Glenshaw","PA","Pennsylvania","TRUE","","14061","672.7","42003","Allegheny","{""42003"": ""100""}","Allegheny","42003","FALSE","FALSE","America/New_York"
-"15120","40.39613","-79.90678","Homestead","PA","Pennsylvania","TRUE","","18512","1529.4","42003","Allegheny","{""42003"": ""100""}","Allegheny","42003","FALSE","FALSE","America/New_York"
-"15122","40.36027","-79.90516","West Mifflin","PA","Pennsylvania","TRUE","","19745","604.9","42003","Allegheny","{""42003"": ""100""}","Allegheny","42003","FALSE","FALSE","America/New_York"
-"15126","40.46246","-80.28445","Imperial","PA","Pennsylvania","TRUE","","7411","128.5","42003","Allegheny","{""42003"": ""99.56"", ""42125"": ""0.44""}","Allegheny|Washington","42003|42125","FALSE","FALSE","America/New_York"
-"15129","40.29323","-79.99607","South Park","PA","Pennsylvania","TRUE","","10495","503.1","42003","Allegheny","{""42003"": ""99.26"", ""42125"": ""0.74""}","Allegheny|Washington","42003|42125","FALSE","FALSE","America/New_York"
-"15131","40.33602","-79.8002","Mckeesport","PA","Pennsylvania","TRUE","","7866","416.7","42003","Allegheny","{""42003"": ""94.75"", ""42129"": ""5.25""}","Allegheny|Westmoreland","42003|42129","FALSE","FALSE","America/New_York"
-"15132","40.33984","-79.84315","Mckeesport","PA","Pennsylvania","TRUE","","21136","1445.5","42003","Allegheny","{""42003"": ""100""}","Allegheny","42003","FALSE","FALSE","America/New_York"
-"15133","40.32718","-79.8633","Mckeesport","PA","Pennsylvania","TRUE","","6189","802.5","42003","Allegheny","{""42003"": ""100""}","Allegheny","42003","FALSE","FALSE","America/New_York"
-"15135","40.3016","-79.81539","Mckeesport","PA","Pennsylvania","TRUE","","5223","480.1","42003","Allegheny","{""42003"": ""100""}","Allegheny","42003","FALSE","FALSE","America/New_York"
-"15136","40.46789","-80.10438","McKees Rocks","PA","Pennsylvania","TRUE","","22881","794.3","42003","Allegheny","{""42003"": ""100""}","Allegheny","42003","FALSE","FALSE","America/New_York"
-"15137","40.37796","-79.80895","North Versailles","PA","Pennsylvania","TRUE","","9884","493.4","42003","Allegheny","{""42003"": ""99.66"", ""42129"": ""0.34""}","Allegheny|Westmoreland","42003|42129","FALSE","FALSE","America/New_York"
-"15139","40.52201","-79.83474","Oakmont","PA","Pennsylvania","TRUE","","6480","1299.2","42003","Allegheny","{""42003"": ""100""}","Allegheny","42003","FALSE","FALSE","America/New_York"
-"15140","40.40779","-79.77644","Pitcairn","PA","Pennsylvania","TRUE","","3195","2442.3","42003","Allegheny","{""42003"": ""100""}","Allegheny","42003","FALSE","FALSE","America/New_York"
-"15142","40.38542","-80.12202","Presto","PA","Pennsylvania","TRUE","","1271","337.6","42003","Allegheny","{""42003"": ""100""}","Allegheny","42003","FALSE","FALSE","America/New_York"
-"15143","40.57322","-80.14654","Sewickley","PA","Pennsylvania","TRUE","","21150","221.8","42003","Allegheny","{""42003"": ""94.63"", ""42007"": ""5.37""}","Allegheny|Beaver","42003|42007","FALSE","FALSE","America/New_York"
-"15144","40.54934","-79.78284","Springdale","PA","Pennsylvania","TRUE","","4036","564.9","42003","Allegheny","{""42003"": ""100""}","Allegheny","42003","FALSE","FALSE","America/New_York"
-"15145","40.41527","-79.82411","Turtle Creek","PA","Pennsylvania","TRUE","","6864","1345.0","42003","Allegheny","{""42003"": ""100""}","Allegheny","42003","FALSE","FALSE","America/New_York"
-"15146","40.42626","-79.76041","Monroeville","PA","Pennsylvania","TRUE","","27678","542.4","42003","Allegheny","{""42003"": ""99.95"", ""42129"": ""0.05""}","Allegheny|Westmoreland","42003|42129","FALSE","FALSE","America/New_York"
-"15147","40.49717","-79.82729","Verona","PA","Pennsylvania","TRUE","","17374","662.7","42003","Allegheny","{""42003"": ""100""}","Allegheny","42003","FALSE","FALSE","America/New_York"
-"15148","40.39347","-79.79524","Wilmerding","PA","Pennsylvania","TRUE","","2480","857.4","42003","Allegheny","{""42003"": ""100""}","Allegheny","42003","FALSE","FALSE","America/New_York"
-"15201","40.47511","-79.95285","Pittsburgh","PA","Pennsylvania","TRUE","","12543","1952.8","42003","Allegheny","{""42003"": ""100""}","Allegheny","42003","FALSE","FALSE","America/New_York"
-"15202","40.5053","-80.0685","Pittsburgh","PA","Pennsylvania","TRUE","","19569","1718.5","42003","Allegheny","{""42003"": ""100""}","Allegheny","42003","FALSE","FALSE","America/New_York"
-"15203","40.42632","-79.97638","Pittsburgh","PA","Pennsylvania","TRUE","","10151","2655.2","42003","Allegheny","{""42003"": ""100""}","Allegheny","42003","FALSE","FALSE","America/New_York"
-"15204","40.45597","-80.06083","Pittsburgh","PA","Pennsylvania","TRUE","","8443","1747.9","42003","Allegheny","{""42003"": ""100""}","Allegheny","42003","FALSE","FALSE","America/New_York"
-"15205","40.43808","-80.09918","Pittsburgh","PA","Pennsylvania","TRUE","","21475","804.6","42003","Allegheny","{""42003"": ""100""}","Allegheny","42003","FALSE","FALSE","America/New_York"
-"15206","40.47224","-79.91325","Pittsburgh","PA","Pennsylvania","TRUE","","29460","2381.6","42003","Allegheny","{""42003"": ""100""}","Allegheny","42003","FALSE","FALSE","America/New_York"
-"15207","40.40031","-79.93369","Pittsburgh","PA","Pennsylvania","TRUE","","10602","853.7","42003","Allegheny","{""42003"": ""100""}","Allegheny","42003","FALSE","FALSE","America/New_York"
-"15208","40.45316","-79.89943","Pittsburgh","PA","Pennsylvania","TRUE","","9976","2393.6","42003","Allegheny","{""42003"": ""100""}","Allegheny","42003","FALSE","FALSE","America/New_York"
-"15209","40.49987","-79.97394","Pittsburgh","PA","Pennsylvania","TRUE","","12011","1028.7","42003","Allegheny","{""42003"": ""100""}","Allegheny","42003","FALSE","FALSE","America/New_York"
-"15210","40.40713","-79.98382","Pittsburgh","PA","Pennsylvania","TRUE","","26241","2183.2","42003","Allegheny","{""42003"": ""100""}","Allegheny","42003","FALSE","FALSE","America/New_York"
-"15211","40.43042","-80.01564","Pittsburgh","PA","Pennsylvania","TRUE","","10415","2602.4","42003","Allegheny","{""42003"": ""100""}","Allegheny","42003","FALSE","FALSE","America/New_York"
-"15212","40.47076","-80.00757","Pittsburgh","PA","Pennsylvania","TRUE","","27141","1686.2","42003","Allegheny","{""42003"": ""100""}","Allegheny","42003","FALSE","FALSE","America/New_York"
-"15213","40.44398","-79.95523","Pittsburgh","PA","Pennsylvania","TRUE","","27878","5054.6","42003","Allegheny","{""42003"": ""100""}","Allegheny","42003","FALSE","FALSE","America/New_York"
-"15214","40.48647","-80.01393","Pittsburgh","PA","Pennsylvania","TRUE","","13713","1125.3","42003","Allegheny","{""42003"": ""100""}","Allegheny","42003","FALSE","FALSE","America/New_York"
-"15215","40.5048","-79.91381","Pittsburgh","PA","Pennsylvania","TRUE","","12594","790.3","42003","Allegheny","{""42003"": ""100""}","Allegheny","42003","FALSE","FALSE","America/New_York"
-"15216","40.40263","-80.03483","Pittsburgh","PA","Pennsylvania","TRUE","","22580","2547.1","42003","Allegheny","{""42003"": ""100""}","Allegheny","42003","FALSE","FALSE","America/New_York"
-"15217","40.43073","-79.92056","Pittsburgh","PA","Pennsylvania","TRUE","","27575","2796.6","42003","Allegheny","{""42003"": ""100""}","Allegheny","42003","FALSE","FALSE","America/New_York"
-"15218","40.42381","-79.89003","Pittsburgh","PA","Pennsylvania","TRUE","","13443","2188.7","42003","Allegheny","{""42003"": ""100""}","Allegheny","42003","FALSE","FALSE","America/New_York"
-"15219","40.44227","-79.98321","Pittsburgh","PA","Pennsylvania","TRUE","","16545","2754.3","42003","Allegheny","{""42003"": ""100""}","Allegheny","42003","FALSE","FALSE","America/New_York"
-"15220","40.41964","-80.04904","Pittsburgh","PA","Pennsylvania","TRUE","","17704","1384.0","42003","Allegheny","{""42003"": ""100""}","Allegheny","42003","FALSE","FALSE","America/New_York"
-"15221","40.43459","-79.86545","Pittsburgh","PA","Pennsylvania","TRUE","","30169","1894.9","42003","Allegheny","{""42003"": ""100""}","Allegheny","42003","FALSE","FALSE","America/New_York"
-"15222","40.44763","-79.99336","Pittsburgh","PA","Pennsylvania","TRUE","","5348","2541.2","42003","Allegheny","{""42003"": ""100""}","Allegheny","42003","FALSE","FALSE","America/New_York"
-"15223","40.50507","-79.95289","Pittsburgh","PA","Pennsylvania","TRUE","","6589","1328.0","42003","Allegheny","{""42003"": ""100""}","Allegheny","42003","FALSE","FALSE","America/New_York"
-"15224","40.46412","-79.94489","Pittsburgh","PA","Pennsylvania","TRUE","","10675","4095.7","42003","Allegheny","{""42003"": ""100""}","Allegheny","42003","FALSE","FALSE","America/New_York"
-"15225","40.50637","-80.11158","Pittsburgh","PA","Pennsylvania","TRUE","","993","250.4","42003","Allegheny","{""42003"": ""100""}","Allegheny","42003","FALSE","FALSE","America/New_York"
-"15226","40.39512","-80.01398","Pittsburgh","PA","Pennsylvania","TRUE","","13511","2059.0","42003","Allegheny","{""42003"": ""100""}","Allegheny","42003","FALSE","FALSE","America/New_York"
-"15227","40.37575","-79.97057","Pittsburgh","PA","Pennsylvania","TRUE","","28466","1779.8","42003","Allegheny","{""42003"": ""100""}","Allegheny","42003","FALSE","FALSE","America/New_York"
-"15228","40.37077","-80.04415","Pittsburgh","PA","Pennsylvania","TRUE","","17691","2174.9","42003","Allegheny","{""42003"": ""100""}","Allegheny","42003","FALSE","FALSE","America/New_York"
-"15229","40.52036","-80.03704","Pittsburgh","PA","Pennsylvania","TRUE","","13575","1296.1","42003","Allegheny","{""42003"": ""100""}","Allegheny","42003","FALSE","FALSE","America/New_York"
-"15232","40.45245","-79.93182","Pittsburgh","PA","Pennsylvania","TRUE","","11764","5714.4","42003","Allegheny","{""42003"": ""100""}","Allegheny","42003","FALSE","FALSE","America/New_York"
-"15233","40.46092","-80.03489","Pittsburgh","PA","Pennsylvania","TRUE","","3994","1238.0","42003","Allegheny","{""42003"": ""100""}","Allegheny","42003","FALSE","FALSE","America/New_York"
-"15234","40.36813","-80.01782","Pittsburgh","PA","Pennsylvania","TRUE","","13480","1643.9","42003","Allegheny","{""42003"": ""100""}","Allegheny","42003","FALSE","FALSE","America/New_York"
-"15235","40.45981","-79.82244","Pittsburgh","PA","Pennsylvania","TRUE","","34545","910.0","42003","Allegheny","{""42003"": ""100""}","Allegheny","42003","FALSE","FALSE","America/New_York"
-"15236","40.34744","-79.97544","Pittsburgh","PA","Pennsylvania","TRUE","","28574","993.6","42003","Allegheny","{""42003"": ""100""}","Allegheny","42003","FALSE","FALSE","America/New_York"
-"15237","40.54883","-80.04746","Pittsburgh","PA","Pennsylvania","TRUE","","42561","678.4","42003","Allegheny","{""42003"": ""100""}","Allegheny","42003","FALSE","FALSE","America/New_York"
-"15238","40.53464","-79.88051","Pittsburgh","PA","Pennsylvania","TRUE","","12944","305.4","42003","Allegheny","{""42003"": ""100""}","Allegheny","42003","FALSE","FALSE","America/New_York"
-"15239","40.48368","-79.73808","Pittsburgh","PA","Pennsylvania","TRUE","","20603","497.6","42003","Allegheny","{""42003"": ""100""}","Allegheny","42003","FALSE","FALSE","America/New_York"
-"15241","40.33305","-80.0824","Pittsburgh","PA","Pennsylvania","TRUE","","20732","769.2","42003","Allegheny","{""42003"": ""98.53"", ""42125"": ""1.47""}","Allegheny|Washington","42003|42125","FALSE","FALSE","America/New_York"
-"15243","40.3748","-80.07313","Pittsburgh","PA","Pennsylvania","TRUE","","12952","1662.7","42003","Allegheny","{""42003"": ""100""}","Allegheny","42003","FALSE","FALSE","America/New_York"
-"15260","40.44321","-79.95313","Pittsburgh","PA","Pennsylvania","TRUE","","0","0.0","42003","Allegheny","{""42003"": ""0""}","Allegheny","42003","FALSE","FALSE","America/New_York"
-"15290","40.45734","-80.0193","Pittsburgh","PA","Pennsylvania","TRUE","","0","0.0","42003","Allegheny","{""42003"": ""0""}","Allegheny","42003","FALSE","FALSE","America/New_York"
-"15301","40.16204","-80.25282","Washington","PA","Pennsylvania","TRUE","","48813","154.6","42125","Washington","{""42125"": ""100""}","Washington","42125","FALSE","FALSE","America/New_York"
-"15310","39.79273","-80.48224","Aleppo","PA","Pennsylvania","TRUE","","265","5.5","42059","Greene","{""42059"": ""100""}","Greene","42059","FALSE","FALSE","America/New_York"
-"15311","40.04591","-80.18393","Amity","PA","Pennsylvania","TRUE","","1566","25.7","42125","Washington","{""42125"": ""100""}","Washington","42125","FALSE","FALSE","America/New_York"
-"15312","40.25414","-80.43834","Avella","PA","Pennsylvania","TRUE","","3849","19.8","42125","Washington","{""42125"": ""100""}","Washington","42125","FALSE","FALSE","America/New_York"
-"15313","40.06793","-80.02375","Beallsville","PA","Pennsylvania","TRUE","","370","203.6","42125","Washington","{""42125"": ""100""}","Washington","42125","FALSE","FALSE","America/New_York"
-"15314","40.14567","-80.01814","Bentleyville","PA","Pennsylvania","TRUE","","3560","79.4","42125","Washington","{""42125"": ""100""}","Washington","42125","FALSE","FALSE","America/New_York"
-"15315","39.75816","-79.9828","Bobtown","PA","Pennsylvania","TRUE","","512","147.7","42059","Greene","{""42059"": ""100""}","Greene","42059","FALSE","FALSE","America/New_York"
-"15316","39.72461","-80.25368","Brave","PA","Pennsylvania","TRUE","","123","120.3","42059","Greene","{""42059"": ""100""}","Greene","42059","FALSE","FALSE","America/New_York"
-"15317","40.2706","-80.16677","Canonsburg","PA","Pennsylvania","TRUE","","39019","329.4","42125","Washington","{""42125"": ""100""}","Washington","42125","FALSE","FALSE","America/New_York"
-"15320","39.8769","-79.99369","Carmichaels","PA","Pennsylvania","TRUE","","5682","56.5","42059","Greene","{""42059"": ""100""}","Greene","42059","FALSE","FALSE","America/New_York"
-"15321","40.32333","-80.18813","Cecil","PA","Pennsylvania","TRUE","","1517","538.5","42125","Washington","{""42125"": ""100""}","Washington","42125","FALSE","FALSE","America/New_York"
-"15322","39.97653","-80.05014","Clarksville","PA","Pennsylvania","TRUE","","1728","47.0","42059","Greene","{""42059"": ""67.79"", ""42125"": ""32.21""}","Greene|Washington","42059|42125","FALSE","FALSE","America/New_York"
-"15323","40.10716","-80.4068","Claysville","PA","Pennsylvania","TRUE","","4583","25.6","42125","Washington","{""42125"": ""100""}","Washington","42125","FALSE","FALSE","America/New_York"
-"15324","40.10076","-80.06581","Cokeburg","PA","Pennsylvania","TRUE","","528","530.5","42125","Washington","{""42125"": ""100""}","Washington","42125","FALSE","FALSE","America/New_York"
-"15325","39.94937","-79.96338","Crucible","PA","Pennsylvania","TRUE","","330","527.0","42059","Greene","{""42059"": ""100""}","Greene","42059","FALSE","FALSE","America/New_York"
-"15327","39.74946","-79.96438","Dilliner","PA","Pennsylvania","TRUE","","1696","33.0","42059","Greene","{""42059"": ""100""}","Greene","42059","FALSE","FALSE","America/New_York"
-"15329","40.03057","-80.2755","Prosperity","PA","Pennsylvania","TRUE","","1397","13.3","42125","Washington","{""42125"": ""80.92"", ""42059"": ""19.08""}","Washington|Greene","42125|42059","FALSE","FALSE","America/New_York"
-"15330","40.18026","-80.09452","Eighty Four","PA","Pennsylvania","TRUE","","4945","42.4","42125","Washington","{""42125"": ""100""}","Washington","42125","FALSE","FALSE","America/New_York"
-"15331","40.1074","-80.0216","Ellsworth","PA","Pennsylvania","TRUE","","808","409.7","42125","Washington","{""42125"": ""100""}","Washington","42125","FALSE","FALSE","America/New_York"
-"15332","40.24152","-79.99288","Finleyville","PA","Pennsylvania","TRUE","","8327","117.8","42125","Washington","{""42125"": ""81.9"", ""42003"": ""18.1""}","Washington|Allegheny","42125|42003","FALSE","FALSE","America/New_York"
-"15333","40.027","-80.01504","Fredericktown","PA","Pennsylvania","TRUE","","2114","59.2","42125","Washington","{""42125"": ""100""}","Washington","42125","FALSE","FALSE","America/New_York"
-"15334","39.80832","-79.96793","Garards Fort","PA","Pennsylvania","TRUE","","132","26.9","42059","Greene","{""42059"": ""100""}","Greene","42059","FALSE","FALSE","America/New_York"
-"15337","39.95294","-80.37594","Graysville","PA","Pennsylvania","TRUE","","595","7.2","42059","Greene","{""42059"": ""100""}","Greene","42059","FALSE","FALSE","America/New_York"
-"15338","39.80988","-79.96739","Greensboro","PA","Pennsylvania","TRUE","","1785","37.0","42059","Greene","{""42059"": ""100""}","Greene","42059","FALSE","FALSE","America/New_York"
-"15340","40.28324","-80.31749","Hickory","PA","Pennsylvania","TRUE","","1217","30.4","42125","Washington","{""42125"": ""100""}","Washington","42125","FALSE","FALSE","America/New_York"
-"15341","39.82528","-80.34412","Holbrook","PA","Pennsylvania","TRUE","","796","6.2","42059","Greene","{""42059"": ""100""}","Greene","42059","FALSE","FALSE","America/New_York"
-"15342","40.24419","-80.22122","Houston","PA","Pennsylvania","TRUE","","5084","587.5","42125","Washington","{""42125"": ""100""}","Washington","42125","FALSE","FALSE","America/New_York"
-"15344","39.92034","-80.05852","Jefferson","PA","Pennsylvania","TRUE","","1323","35.7","42059","Greene","{""42059"": ""100""}","Greene","42059","FALSE","FALSE","America/New_York"
-"15345","40.02263","-80.10503","Marianna","PA","Pennsylvania","TRUE","","1399","27.8","42125","Washington","{""42125"": ""97.14"", ""42059"": ""2.86""}","Washington|Greene","42125|42059","FALSE","FALSE","America/New_York"
-"15346","39.93545","-80.0753","Mather","PA","Pennsylvania","TRUE","","477","202.8","42059","Greene","{""42059"": ""100""}","Greene","42059","FALSE","FALSE","America/New_York"
-"15347","40.21742","-80.22683","Meadow Lands","PA","Pennsylvania","TRUE","","795","515.7","42125","Washington","{""42125"": ""100""}","Washington","42125","FALSE","FALSE","America/New_York"
-"15348","39.98831","-79.99615","Millsboro","PA","Pennsylvania","TRUE","","277","660.5","42125","Washington","{""42125"": ""100""}","Washington","42125","FALSE","FALSE","America/New_York"
-"15349","39.75811","-80.084","Mount Morris","PA","Pennsylvania","TRUE","","1576","15.8","42059","Greene","{""42059"": ""100""}","Greene","42059","FALSE","FALSE","America/New_York"
-"15350","40.29292","-80.20101","Muse","PA","Pennsylvania","TRUE","","471","3432.6","42125","Washington","{""42125"": ""100""}","Washington","42125","FALSE","FALSE","America/New_York"
-"15351","39.88099","-79.92802","Nemacolin","PA","Pennsylvania","TRUE","","684","242.0","42059","Greene","{""42059"": ""100""}","Greene","42059","FALSE","FALSE","America/New_York"
-"15352","39.75342","-80.39525","New Freeport","PA","Pennsylvania","TRUE","","880","6.8","42059","Greene","{""42059"": ""100""}","Greene","42059","FALSE","FALSE","America/New_York"
-"15353","39.96211","-80.31086","Nineveh","PA","Pennsylvania","TRUE","","115","750.1","42059","Greene","{""42059"": ""100""}","Greene","42059","FALSE","FALSE","America/New_York"
-"15357","39.94155","-79.98582","Rices Landing","PA","Pennsylvania","TRUE","","1526","73.3","42059","Greene","{""42059"": ""100""}","Greene","42059","FALSE","FALSE","America/New_York"
-"15358","40.05539","-80.00301","Richeyville","PA","Pennsylvania","TRUE","","678","309.6","42125","Washington","{""42125"": ""100""}","Washington","42125","FALSE","FALSE","America/New_York"
-"15359","39.87648","-80.27581","Rogersville","PA","Pennsylvania","TRUE","","153","416.1","42059","Greene","{""42059"": ""100""}","Greene","42059","FALSE","FALSE","America/New_York"
-"15360","40.08492","-80.08241","Scenery Hill","PA","Pennsylvania","TRUE","","1711","25.8","42125","Washington","{""42125"": ""100""}","Washington","42125","FALSE","FALSE","America/New_York"
-"15361","40.32906","-80.25821","Southview","PA","Pennsylvania","TRUE","","268","1090.3","42125","Washington","{""42125"": ""100""}","Washington","42125","FALSE","FALSE","America/New_York"
-"15362","39.76238","-80.21676","Spraggs","PA","Pennsylvania","TRUE","","743","11.1","42059","Greene","{""42059"": ""100""}","Greene","42059","FALSE","FALSE","America/New_York"
-"15363","40.25171","-80.19798","Strabane","PA","Pennsylvania","TRUE","","625","1045.3","42125","Washington","{""42125"": ""100""}","Washington","42125","FALSE","FALSE","America/New_York"
-"15364","39.94149","-80.29058","Sycamore","PA","Pennsylvania","TRUE","","752","7.8","42059","Greene","{""42059"": ""100""}","Greene","42059","FALSE","FALSE","America/New_York"
-"15366","40.15954","-79.97305","Van Voorhis","PA","Pennsylvania","TRUE","","179","194.1","42125","Washington","{""42125"": ""100""}","Washington","42125","FALSE","FALSE","America/New_York"
-"15367","40.26528","-80.05557","Venetia","PA","Pennsylvania","TRUE","","9211","386.4","42125","Washington","{""42125"": ""100""}","Washington","42125","FALSE","FALSE","America/New_York"
-"15368","40.01441","-79.98904","Vestaburg","PA","Pennsylvania","TRUE","","383","776.2","42125","Washington","{""42125"": ""100""}","Washington","42125","FALSE","FALSE","America/New_York"
-"15370","39.87577","-80.17563","Waynesburg","PA","Pennsylvania","TRUE","","14440","37.7","42059","Greene","{""42059"": ""99.77"", ""42125"": ""0.23""}","Greene|Washington","42059|42125","FALSE","FALSE","America/New_York"
-"15376","40.10462","-80.48692","West Alexander","PA","Pennsylvania","TRUE","","1734","17.4","42125","Washington","{""42125"": ""100""}","Washington","42125","FALSE","FALSE","America/New_York"
-"15377","39.9814","-80.45161","West Finley","PA","Pennsylvania","TRUE","","705","6.6","42125","Washington","{""42125"": ""79.01"", ""42059"": ""20.99""}","Washington|Greene","42125|42059","FALSE","FALSE","America/New_York"
-"15378","40.2783","-80.2751","Westland","PA","Pennsylvania","TRUE","","46","316.9","42125","Washington","{""42125"": ""100""}","Washington","42125","FALSE","FALSE","America/New_York"
-"15379","40.2432","-80.42509","West Middletown","PA","Pennsylvania","TRUE","","92","88.8","42125","Washington","{""42125"": ""100""}","Washington","42125","FALSE","FALSE","America/New_York"
-"15380","39.87172","-80.4664","Wind Ridge","PA","Pennsylvania","TRUE","","544","5.4","42059","Greene","{""42059"": ""100""}","Greene","42059","FALSE","FALSE","America/New_York"
-"15401","39.90108","-79.74724","Uniontown","PA","Pennsylvania","TRUE","","31031","205.5","42051","Fayette","{""42051"": ""100""}","Fayette","42051","FALSE","FALSE","America/New_York"
-"15410","39.91461","-79.90521","Adah","PA","Pennsylvania","TRUE","","1092","39.9","42051","Fayette","{""42051"": ""100""}","Fayette","42051","FALSE","FALSE","America/New_York"
-"15411","39.74752","-79.34539","Addison","PA","Pennsylvania","TRUE","","613","13.5","42111","Somerset","{""42111"": ""100""}","Somerset","42111","FALSE","FALSE","America/New_York"
-"15412","40.09232","-79.85647","Allenport","PA","Pennsylvania","TRUE","","487","90.4","42125","Washington","{""42125"": ""100""}","Washington","42125","FALSE","FALSE","America/New_York"
-"15413","39.98529","-79.87119","Allison","PA","Pennsylvania","TRUE","","479","248.9","42051","Fayette","{""42051"": ""100""}","Fayette","42051","FALSE","FALSE","America/New_York"
-"15417","40.01356","-79.91906","Brownsville","PA","Pennsylvania","TRUE","","8320","147.0","42051","Fayette","{""42051"": ""55.25"", ""42125"": ""44.75""}","Fayette|Washington","42051|42125","FALSE","FALSE","America/New_York"
-"15419","40.05555","-79.89447","California","PA","Pennsylvania","TRUE","","4460","993.4","42125","Washington","{""42125"": ""100""}","Washington","42125","FALSE","FALSE","America/New_York"
-"15420","39.96011","-79.86527","Cardale","PA","Pennsylvania","TRUE","","422","355.1","42051","Fayette","{""42051"": ""100""}","Fayette","42051","FALSE","FALSE","America/New_York"
-"15421","39.84582","-79.59717","Chalk Hill","PA","Pennsylvania","TRUE","","48","85.4","42051","Fayette","{""42051"": ""100""}","Fayette","42051","FALSE","FALSE","America/New_York"
-"15422","39.98117","-79.81165","Chestnut Ridge","PA","Pennsylvania","TRUE","","191","815.4","42051","Fayette","{""42051"": ""100""}","Fayette","42051","FALSE","FALSE","America/New_York"
-"15423","40.08765","-79.92707","Coal Center","PA","Pennsylvania","TRUE","","2439","57.4","42125","Washington","{""42125"": ""100""}","Washington","42125","FALSE","FALSE","America/New_York"
-"15424","39.81917","-79.36026","Confluence","PA","Pennsylvania","TRUE","","1988","10.6","42111","Somerset","{""42111"": ""77.78"", ""42051"": ""22.22""}","Somerset|Fayette","42111|42051","FALSE","FALSE","America/New_York"
-"15425","40.02652","-79.55659","Connellsville","PA","Pennsylvania","TRUE","","19136","132.6","42051","Fayette","{""42051"": ""100""}","Fayette","42051","FALSE","FALSE","America/New_York"
-"15427","40.06993","-79.97485","Daisytown","PA","Pennsylvania","TRUE","","1056","39.0","42125","Washington","{""42125"": ""100""}","Washington","42125","FALSE","FALSE","America/New_York"
-"15428","40.08098","-79.68177","Dawson","PA","Pennsylvania","TRUE","","1929","36.3","42051","Fayette","{""42051"": ""100""}","Fayette","42051","FALSE","FALSE","America/New_York"
-"15429","40.00152","-79.94002","Denbo","PA","Pennsylvania","TRUE","","332","413.4","42125","Washington","{""42125"": ""100""}","Washington","42125","FALSE","FALSE","America/New_York"
-"15430","40.04023","-79.65538","Dickerson Run","PA","Pennsylvania","TRUE","","406","441.7","42051","Fayette","{""42051"": ""100""}","Fayette","42051","FALSE","FALSE","America/New_York"
-"15431","39.95032","-79.59689","Dunbar","PA","Pennsylvania","TRUE","","4053","32.0","42051","Fayette","{""42051"": ""100""}","Fayette","42051","FALSE","FALSE","America/New_York"
-"15432","40.11512","-79.86173","Dunlevy","PA","Pennsylvania","TRUE","","457","276.6","42125","Washington","{""42125"": ""100""}","Washington","42125","FALSE","FALSE","America/New_York"
-"15433","39.97029","-79.95817","East Millsboro","PA","Pennsylvania","TRUE","","851","22.8","42051","Fayette","{""42051"": ""100""}","Fayette","42051","FALSE","FALSE","America/New_York"
-"15434","40.08062","-79.88112","Elco","PA","Pennsylvania","TRUE","","274","445.7","42125","Washington","{""42125"": ""100""}","Washington","42125","FALSE","FALSE","America/New_York"
-"15435","39.94364","-79.84992","Fairbank","PA","Pennsylvania","TRUE","","424","149.5","42051","Fayette","{""42051"": ""100""}","Fayette","42051","FALSE","FALSE","America/New_York"
-"15436","39.81782","-79.72481","Fairchance","PA","Pennsylvania","TRUE","","2985","164.9","42051","Fayette","{""42051"": ""100""}","Fayette","42051","FALSE","FALSE","America/New_York"
-"15437","39.79065","-79.60852","Farmington","PA","Pennsylvania","TRUE","","2838","15.7","42051","Fayette","{""42051"": ""100""}","Fayette","42051","FALSE","FALSE","America/New_York"
-"15438","40.07556","-79.84248","Fayette City","PA","Pennsylvania","TRUE","","2256","76.0","42051","Fayette","{""42051"": ""100""}","Fayette","42051","FALSE","FALSE","America/New_York"
-"15440","39.73533","-79.61665","Gibbon Glade","PA","Pennsylvania","TRUE","","134","3.4","42051","Fayette","{""42051"": ""100""}","Fayette","42051","FALSE","FALSE","America/New_York"
-"15442","40.01734","-79.84075","Grindstone","PA","Pennsylvania","TRUE","","1978","50.9","42051","Fayette","{""42051"": ""100""}","Fayette","42051","FALSE","FALSE","America/New_York"
-"15443","39.91961","-79.88078","Hibbs","PA","Pennsylvania","TRUE","","202","45.9","42051","Fayette","{""42051"": ""100""}","Fayette","42051","FALSE","FALSE","America/New_York"
-"15444","40.01201","-79.90875","Hiller","PA","Pennsylvania","TRUE","","338","206.9","42051","Fayette","{""42051"": ""100""}","Fayette","42051","FALSE","FALSE","America/New_York"
-"15445","39.8728","-79.65691","Hopwood","PA","Pennsylvania","TRUE","","2609","48.0","42051","Fayette","{""42051"": ""100""}","Fayette","42051","FALSE","FALSE","America/New_York"
-"15446","40.03339","-79.39916","Indian Head","PA","Pennsylvania","TRUE","","206","53.1","42051","Fayette","{""42051"": ""100""}","Fayette","42051","FALSE","FALSE","America/New_York"
-"15447","39.94384","-79.93692","Isabella","PA","Pennsylvania","TRUE","","103","101.7","42051","Fayette","{""42051"": ""100""}","Fayette","42051","FALSE","FALSE","America/New_York"
-"15448","40.13568","-79.73395","Jacobs Creek","PA","Pennsylvania","TRUE","","218","87.9","42129","Westmoreland","{""42129"": ""100""}","Westmoreland","42129","FALSE","FALSE","America/New_York"
-"15449","39.96428","-79.78337","Keisterville","PA","Pennsylvania","TRUE","","330","816.4","42051","Fayette","{""42051"": ""100""}","Fayette","42051","FALSE","FALSE","America/New_York"
-"15450","40.00363","-79.9742","La Belle","PA","Pennsylvania","TRUE","","2275","537.7","42051","Fayette","{""42051"": ""100""}","Fayette","42051","FALSE","FALSE","America/New_York"
-"15451","39.73866","-79.83804","Lake Lynn","PA","Pennsylvania","TRUE","","1095","41.6","42051","Fayette","{""42051"": ""100""}","Fayette","42051","FALSE","FALSE","America/New_York"
-"15454","39.86311","-79.87189","Leckrone","PA","Pennsylvania","TRUE","","131","39.0","42051","Fayette","{""42051"": ""100""}","Fayette","42051","FALSE","FALSE","America/New_York"
-"15455","40.0033","-79.64231","Leisenring","PA","Pennsylvania","TRUE","","488","468.2","42051","Fayette","{""42051"": ""100""}","Fayette","42051","FALSE","FALSE","America/New_York"
-"15456","39.92547","-79.65418","Lemont Furnace","PA","Pennsylvania","TRUE","","2866","145.0","42051","Fayette","{""42051"": ""100""}","Fayette","42051","FALSE","FALSE","America/New_York"
-"15458","39.89012","-79.8512","McClellandtown","PA","Pennsylvania","TRUE","","2320","57.2","42051","Fayette","{""42051"": ""100""}","Fayette","42051","FALSE","FALSE","America/New_York"
-"15459","39.76654","-79.46612","Markleysburg","PA","Pennsylvania","TRUE","","1657","19.2","42051","Fayette","{""42051"": ""100""}","Fayette","42051","FALSE","FALSE","America/New_York"
-"15460","39.81192","-79.91221","Martin","PA","Pennsylvania","TRUE","","136","125.5","42051","Fayette","{""42051"": ""100""}","Fayette","42051","FALSE","FALSE","America/New_York"
-"15461","39.84236","-79.90028","Masontown","PA","Pennsylvania","TRUE","","4100","150.1","42051","Fayette","{""42051"": ""100""}","Fayette","42051","FALSE","FALSE","America/New_York"
-"15462","40.05684","-79.39018","Melcroft","PA","Pennsylvania","TRUE","","573","156.7","42051","Fayette","{""42051"": ""100""}","Fayette","42051","FALSE","FALSE","America/New_York"
-"15463","39.96554","-79.89986","Merrittstown","PA","Pennsylvania","TRUE","","125","153.1","42051","Fayette","{""42051"": ""100""}","Fayette","42051","FALSE","FALSE","America/New_York"
-"15464","39.92447","-79.43666","Mill Run","PA","Pennsylvania","TRUE","","1672","14.0","42051","Fayette","{""42051"": ""100""}","Fayette","42051","FALSE","FALSE","America/New_York"
-"15466","40.07537","-79.89176","Newell","PA","Pennsylvania","TRUE","","479","433.3","42051","Fayette","{""42051"": ""100""}","Fayette","42051","FALSE","FALSE","America/New_York"
-"15467","39.78532","-79.91784","New Geneva","PA","Pennsylvania","TRUE","","119","45.9","42051","Fayette","{""42051"": ""100""}","Fayette","42051","FALSE","FALSE","America/New_York"
-"15468","39.95606","-79.83006","New Salem","PA","Pennsylvania","TRUE","","2186","84.1","42051","Fayette","{""42051"": ""100""}","Fayette","42051","FALSE","FALSE","America/New_York"
-"15469","40.01394","-79.4236","Normalville","PA","Pennsylvania","TRUE","","2174","24.7","42051","Fayette","{""42051"": ""100""}","Fayette","42051","FALSE","FALSE","America/New_York"
-"15470","39.86865","-79.53348","Ohiopyle","PA","Pennsylvania","TRUE","","683","8.4","42051","Fayette","{""42051"": ""100""}","Fayette","42051","FALSE","FALSE","America/New_York"
-"15472","39.91932","-79.71678","Oliver","PA","Pennsylvania","TRUE","","94","149.1","42051","Fayette","{""42051"": ""100""}","Fayette","42051","FALSE","FALSE","America/New_York"
-"15473","40.06986","-79.76979","Perryopolis","PA","Pennsylvania","TRUE","","3608","59.7","42051","Fayette","{""42051"": ""100""}","Fayette","42051","FALSE","FALSE","America/New_York"
-"15474","39.74968","-79.90068","Point Marion","PA","Pennsylvania","TRUE","","2113","116.3","42051","Fayette","{""42051"": ""100""}","Fayette","42051","FALSE","FALSE","America/New_York"
-"15475","39.95164","-79.8775","Republic","PA","Pennsylvania","TRUE","","1276","152.4","42051","Fayette","{""42051"": ""100""}","Fayette","42051","FALSE","FALSE","America/New_York"
-"15476","39.86975","-79.9206","Ronco","PA","Pennsylvania","TRUE","","83","845.6","42051","Fayette","{""42051"": ""100""}","Fayette","42051","FALSE","FALSE","America/New_York"
-"15477","40.07819","-79.86373","Roscoe","PA","Pennsylvania","TRUE","","779","1612.1","42125","Washington","{""42125"": ""100""}","Washington","42125","FALSE","FALSE","America/New_York"
-"15478","39.78778","-79.80315","Smithfield","PA","Pennsylvania","TRUE","","5892","36.2","42051","Fayette","{""42051"": ""100""}","Fayette","42051","FALSE","FALSE","America/New_York"
-"15479","40.15302","-79.71437","Smithton","PA","Pennsylvania","TRUE","","2063","37.5","42129","Westmoreland","{""42129"": ""100""}","Westmoreland","42129","FALSE","FALSE","America/New_York"
-"15480","39.9867","-79.77209","Smock","PA","Pennsylvania","TRUE","","1887","40.3","42051","Fayette","{""42051"": ""100""}","Fayette","42051","FALSE","FALSE","America/New_York"
-"15482","40.0608","-79.76575","Star Junction","PA","Pennsylvania","TRUE","","290","97.3","42051","Fayette","{""42051"": ""100""}","Fayette","42051","FALSE","FALSE","America/New_York"
-"15483","40.08335","-79.85071","Stockdale","PA","Pennsylvania","TRUE","","393","555.5","42125","Washington","{""42125"": ""100""}","Washington","42125","FALSE","FALSE","America/New_York"
-"15484","39.89269","-79.7837","Uledi","PA","Pennsylvania","TRUE","","103","62.5","42051","Fayette","{""42051"": ""100""}","Fayette","42051","FALSE","FALSE","America/New_York"
-"15486","40.02532","-79.70476","Vanderbilt","PA","Pennsylvania","TRUE","","2411","47.7","42051","Fayette","{""42051"": ""100""}","Fayette","42051","FALSE","FALSE","America/New_York"
-"15489","39.96644","-79.696","West Leisenring","PA","Pennsylvania","TRUE","","413","170.9","42051","Fayette","{""42051"": ""100""}","Fayette","42051","FALSE","FALSE","America/New_York"
-"15490","40.07238","-79.4544","White","PA","Pennsylvania","TRUE","","384","15.4","42051","Fayette","{""42051"": ""100""}","Fayette","42051","FALSE","FALSE","America/New_York"
-"15492","40.11942","-79.76242","Wickhaven","PA","Pennsylvania","TRUE","","89","57.0","42051","Fayette","{""42051"": ""100""}","Fayette","42051","FALSE","FALSE","America/New_York"
-"15501","40.03596","-79.12871","Somerset","PA","Pennsylvania","TRUE","","16254","46.8","42111","Somerset","{""42111"": ""99.84"", ""42129"": ""0.16""}","Somerset|Westmoreland","42111|42129","FALSE","FALSE","America/New_York"
-"15502","40.0358","-79.24605","Hidden Valley","PA","Pennsylvania","TRUE","","109","7.0","42111","Somerset","{""42111"": ""100""}","Somerset","42111","FALSE","FALSE","America/New_York"
-"15510","39.96695","-79.04005","Somerset","PA","Pennsylvania","TRUE","","2592","2656.3","42111","Somerset","{""42111"": ""100""}","Somerset","42111","FALSE","FALSE","America/New_York"
-"15520","40.10635","-79.06055","Acosta","PA","Pennsylvania","TRUE","","264","150.5","42111","Somerset","{""42111"": ""100""}","Somerset","42111","FALSE","FALSE","America/New_York"
-"15521","40.19912","-78.635","Alum Bank","PA","Pennsylvania","TRUE","","1878","20.4","42009","Bedford","{""42009"": ""100""}","Bedford","42009","FALSE","FALSE","America/New_York"
-"15522","39.94935","-78.55186","Bedford","PA","Pennsylvania","TRUE","","11402","23.5","42009","Bedford","{""42009"": ""100""}","Bedford","42009","FALSE","FALSE","America/New_York"
-"15530","39.94797","-78.90938","Berlin","PA","Pennsylvania","TRUE","","5244","23.1","42111","Somerset","{""42111"": ""100""}","Somerset","42111","FALSE","FALSE","America/New_York"
-"15531","40.18448","-79.07961","Boswell","PA","Pennsylvania","TRUE","","3834","25.1","42111","Somerset","{""42111"": ""99.33"", ""42129"": ""0.67""}","Somerset|Westmoreland","42111|42129","FALSE","FALSE","America/New_York"
-"15532","39.76206","-79.06082","Boynton","PA","Pennsylvania","TRUE","","137","78.3","42111","Somerset","{""42111"": ""100""}","Somerset","42111","FALSE","FALSE","America/New_York"
-"15533","39.98276","-78.24053","Breezewood","PA","Pennsylvania","TRUE","","1531","15.9","42009","Bedford","{""42009"": ""93.43"", ""42057"": ""6.57""}","Bedford|Fulton","42009|42057","FALSE","FALSE","America/New_York"
-"15534","39.89839","-78.69695","Buffalo Mills","PA","Pennsylvania","TRUE","","903","7.2","42009","Bedford","{""42009"": ""98.5"", ""42111"": ""1.5""}","Bedford|Somerset","42009|42111","FALSE","FALSE","America/New_York"
-"15535","39.82445","-78.45201","Clearville","PA","Pennsylvania","TRUE","","2166","5.3","42009","Bedford","{""42009"": ""100""}","Bedford","42009","FALSE","FALSE","America/New_York"
-"15536","39.95168","-78.20812","Crystal Spring","PA","Pennsylvania","TRUE","","434","4.9","42057","Fulton","{""42057"": ""100""}","Fulton","42057","FALSE","FALSE","America/New_York"
-"15537","40.00171","-78.36501","Everett","PA","Pennsylvania","TRUE","","7836","27.0","42009","Bedford","{""42009"": ""100""}","Bedford","42009","FALSE","FALSE","America/New_York"
-"15538","39.86797","-78.83622","Fairhope","PA","Pennsylvania","TRUE","","695","3.6","42111","Somerset","{""42111"": ""100""}","Somerset","42111","FALSE","FALSE","America/New_York"
-"15539","40.12842","-78.59148","Fishertown","PA","Pennsylvania","TRUE","","377","105.7","42009","Bedford","{""42009"": ""100""}","Bedford","42009","FALSE","FALSE","America/New_York"
-"15540","39.79442","-79.23894","Fort Hill","PA","Pennsylvania","TRUE","","173","1.9","42111","Somerset","{""42111"": ""100""}","Somerset","42111","FALSE","FALSE","America/New_York"
-"15541","40.04808","-78.97719","Friedens","PA","Pennsylvania","TRUE","","3403","36.5","42111","Somerset","{""42111"": ""100""}","Somerset","42111","FALSE","FALSE","America/New_York"
-"15542","39.87569","-79.07152","Garrett","PA","Pennsylvania","TRUE","","1064","12.6","42111","Somerset","{""42111"": ""100""}","Somerset","42111","FALSE","FALSE","America/New_York"
-"15544","40.13565","-79.09342","Gray","PA","Pennsylvania","TRUE","","118","78.3","42111","Somerset","{""42111"": ""100""}","Somerset","42111","FALSE","FALSE","America/New_York"
-"15545","39.78412","-78.77385","Hyndman","PA","Pennsylvania","TRUE","","2744","21.4","42009","Bedford","{""42009"": ""79.96"", ""42111"": ""20.04""}","Bedford|Somerset","42009|42111","FALSE","FALSE","America/New_York"
-"15546","40.13667","-79.04803","Jenners","PA","Pennsylvania","TRUE","","411","205.7","42111","Somerset","{""42111"": ""100""}","Somerset","42111","FALSE","FALSE","America/New_York"
-"15547","40.16212","-79.07168","Jennerstown","PA","Pennsylvania","TRUE","","537","228.8","42111","Somerset","{""42111"": ""100""}","Somerset","42111","FALSE","FALSE","America/New_York"
-"15550","39.98679","-78.64393","Manns Choice","PA","Pennsylvania","TRUE","","1719","12.2","42009","Bedford","{""42009"": ""100""}","Bedford","42009","FALSE","FALSE","America/New_York"
-"15551","39.88566","-79.27776","Markleton","PA","Pennsylvania","TRUE","","746","8.0","42111","Somerset","{""42111"": ""100""}","Somerset","42111","FALSE","FALSE","America/New_York"
-"15552","39.79393","-78.99184","Meyersdale","PA","Pennsylvania","TRUE","","5908","21.9","42111","Somerset","{""42111"": ""100""}","Somerset","42111","FALSE","FALSE","America/New_York"
-"15554","40.12543","-78.61847","New Paris","PA","Pennsylvania","TRUE","","2454","26.6","42009","Bedford","{""42009"": ""100""}","Bedford","42009","FALSE","FALSE","America/New_York"
-"15555","40.09241","-79.08224","Quecreek","PA","Pennsylvania","TRUE","","89","457.8","42111","Somerset","{""42111"": ""100""}","Somerset","42111","FALSE","FALSE","America/New_York"
-"15557","39.93032","-79.21492","Rockwood","PA","Pennsylvania","TRUE","","3375","14.4","42111","Somerset","{""42111"": ""99.62"", ""42051"": ""0.38""}","Somerset|Fayette","42111|42051","FALSE","FALSE","America/New_York"
-"15558","39.75016","-79.11157","Salisbury","PA","Pennsylvania","TRUE","","2225","23.6","42111","Somerset","{""42111"": ""100""}","Somerset","42111","FALSE","FALSE","America/New_York"
-"15559","40.05541","-78.68145","Schellsburg","PA","Pennsylvania","TRUE","","1839","15.2","42009","Bedford","{""42009"": ""99.59"", ""42111"": ""0.41""}","Bedford|Somerset","42009|42111","FALSE","FALSE","America/New_York"
-"15560","40.01631","-78.90689","Shanksville","PA","Pennsylvania","TRUE","","178","517.3","42111","Somerset","{""42111"": ""100""}","Somerset","42111","FALSE","FALSE","America/New_York"
-"15561","40.09556","-79.08772","Sipesville","PA","Pennsylvania","TRUE","","184","124.2","42111","Somerset","{""42111"": ""100""}","Somerset","42111","FALSE","FALSE","America/New_York"
-"15562","39.73904","-79.13644","Springs","PA","Pennsylvania","TRUE","","238","56.6","42111","Somerset","{""42111"": ""100""}","Somerset","42111","FALSE","FALSE","America/New_York"
-"15563","40.09781","-78.93805","Stoystown","PA","Pennsylvania","TRUE","","3027","20.6","42111","Somerset","{""42111"": ""100""}","Somerset","42111","FALSE","FALSE","America/New_York"
-"15564","39.73","-78.83777","Wellersburg","PA","Pennsylvania","TRUE","","52","16.6","42111","Somerset","{""42111"": ""100""}","Somerset","42111","FALSE","FALSE","America/New_York"
-"15601","40.31519","-79.53552","Greensburg","PA","Pennsylvania","TRUE","","56955","255.1","42129","Westmoreland","{""42129"": ""100""}","Westmoreland","42129","FALSE","FALSE","America/New_York"
-"15610","40.1416","-79.41489","Acme","PA","Pennsylvania","TRUE","","3604","36.1","42129","Westmoreland","{""42129"": ""55.59"", ""42051"": ""44.41""}","Westmoreland|Fayette","42129|42051","FALSE","FALSE","America/New_York"
-"15611","40.30652","-79.65264","Adamsburg","PA","Pennsylvania","TRUE","","771","432.1","42129","Westmoreland","{""42129"": ""100""}","Westmoreland","42129","FALSE","FALSE","America/New_York"
-"15612","40.13737","-79.59981","Alverton","PA","Pennsylvania","TRUE","","413","63.6","42129","Westmoreland","{""42129"": ""100""}","Westmoreland","42129","FALSE","FALSE","America/New_York"
-"15613","40.5538","-79.56425","Apollo","PA","Pennsylvania","TRUE","","13536","87.5","42129","Westmoreland","{""42129"": ""63.13"", ""42005"": ""36.87""}","Westmoreland|Armstrong","42129|42005","FALSE","FALSE","America/New_York"
-"15615","40.36523","-79.73419","Ardara","PA","Pennsylvania","TRUE","","357","140.1","42129","Westmoreland","{""42129"": ""100""}","Westmoreland","42129","FALSE","FALSE","America/New_York"
-"15616","40.22471","-79.5584","Armbrust","PA","Pennsylvania","TRUE","","0","0.0","42129","Westmoreland","{""42129"": ""100""}","Westmoreland","42129","FALSE","FALSE","America/New_York"
-"15617","40.26907","-79.65778","Arona","PA","Pennsylvania","TRUE","","311","272.2","42129","Westmoreland","{""42129"": ""100""}","Westmoreland","42129","FALSE","FALSE","America/New_York"
-"15618","40.56219","-79.44515","Avonmore","PA","Pennsylvania","TRUE","","2371","33.0","42129","Westmoreland","{""42129"": ""68.72"", ""42005"": ""30.26"", ""42063"": ""1.03""}","Westmoreland|Armstrong|Indiana","42129|42005|42063","FALSE","FALSE","America/New_York"
-"15620","40.32358","-79.33864","Bradenville","PA","Pennsylvania","TRUE","","514","207.6","42129","Westmoreland","{""42129"": ""100""}","Westmoreland","42129","FALSE","FALSE","America/New_York"
-"15621","40.21383","-79.48387","Calumet","PA","Pennsylvania","TRUE","","79","4749.3","42129","Westmoreland","{""42129"": ""100""}","Westmoreland","42129","FALSE","FALSE","America/New_York"
-"15622","40.04173","-79.32285","Champion","PA","Pennsylvania","TRUE","","1379","16.5","42051","Fayette","{""42051"": ""67.77"", ""42129"": ""22.64"", ""42111"": ""9.59""}","Fayette|Westmoreland|Somerset","42051|42129|42111","FALSE","FALSE","America/New_York"
-"15623","40.36727","-79.62031","Claridge","PA","Pennsylvania","TRUE","","584","129.6","42129","Westmoreland","{""42129"": ""100""}","Westmoreland","42129","FALSE","FALSE","America/New_York"
-"15624","40.36491","-79.47022","Crabtree","PA","Pennsylvania","TRUE","","545","338.7","42129","Westmoreland","{""42129"": ""100""}","Westmoreland","42129","FALSE","FALSE","America/New_York"
-"15625","40.26951","-79.67976","Darragh","PA","Pennsylvania","TRUE","","70","46.1","42129","Westmoreland","{""42129"": ""100""}","Westmoreland","42129","FALSE","FALSE","America/New_York"
-"15626","40.40706","-79.57613","Delmont","PA","Pennsylvania","TRUE","","4975","486.9","42129","Westmoreland","{""42129"": ""100""}","Westmoreland","42129","FALSE","FALSE","America/New_York"
-"15627","40.35126","-79.30599","Derry","PA","Pennsylvania","TRUE","","6282","85.4","42129","Westmoreland","{""42129"": ""100""}","Westmoreland","42129","FALSE","FALSE","America/New_York"
-"15628","40.10054","-79.37343","Donegal","PA","Pennsylvania","TRUE","","704","105.7","42129","Westmoreland","{""42129"": ""100""}","Westmoreland","42129","FALSE","FALSE","America/New_York"
-"15629","40.59727","-79.56313","East Vandergrift","PA","Pennsylvania","TRUE","","761","2288.7","42129","Westmoreland","{""42129"": ""100""}","Westmoreland","42129","FALSE","FALSE","America/New_York"
-"15631","40.08746","-79.58534","Everson","PA","Pennsylvania","TRUE","","1102","544.8","42051","Fayette","{""42051"": ""100""}","Fayette","42051","FALSE","FALSE","America/New_York"
-"15632","40.43898","-79.60686","Export","PA","Pennsylvania","TRUE","","9961","141.9","42129","Westmoreland","{""42129"": ""100""}","Westmoreland","42129","FALSE","FALSE","America/New_York"
-"15633","40.35732","-79.52395","Forbes Road","PA","Pennsylvania","TRUE","","618","378.7","42129","Westmoreland","{""42129"": ""100""}","Westmoreland","42129","FALSE","FALSE","America/New_York"
-"15634","40.32369","-79.60463","Grapeville","PA","Pennsylvania","TRUE","","421","1075.6","42129","Westmoreland","{""42129"": ""100""}","Westmoreland","42129","FALSE","FALSE","America/New_York"
-"15635","40.349","-79.499","Hannastown","PA","Pennsylvania","TRUE","","136","173.9","42129","Westmoreland","{""42129"": ""100""}","Westmoreland","42129","FALSE","FALSE","America/New_York"
-"15636","40.36538","-79.65704","Harrison City","PA","Pennsylvania","TRUE","","3790","493.6","42129","Westmoreland","{""42129"": ""100""}","Westmoreland","42129","FALSE","FALSE","America/New_York"
-"15637","40.26497","-79.71185","Herminie","PA","Pennsylvania","TRUE","","1507","124.6","42129","Westmoreland","{""42129"": ""100""}","Westmoreland","42129","FALSE","FALSE","America/New_York"
-"15638","40.26436","-79.39891","Hostetter","PA","Pennsylvania","TRUE","","156","337.8","42129","Westmoreland","{""42129"": ""100""}","Westmoreland","42129","FALSE","FALSE","America/New_York"
-"15639","40.20816","-79.59383","Hunker","PA","Pennsylvania","TRUE","","2128","71.3","42129","Westmoreland","{""42129"": ""100""}","Westmoreland","42129","FALSE","FALSE","America/New_York"
-"15640","40.22468","-79.72906","Hutchinson","PA","Pennsylvania","TRUE","","589","314.8","42129","Westmoreland","{""42129"": ""100""}","Westmoreland","42129","FALSE","FALSE","America/New_York"
-"15641","40.63162","-79.58918","Hyde Park","PA","Pennsylvania","TRUE","","466","748.4","42129","Westmoreland","{""42129"": ""100""}","Westmoreland","42129","FALSE","FALSE","America/New_York"
-"15642","40.31918","-79.72046","Irwin","PA","Pennsylvania","TRUE","","44277","386.4","42129","Westmoreland","{""42129"": ""99.6"", ""42003"": ""0.4""}","Westmoreland|Allegheny","42129|42003","FALSE","FALSE","America/New_York"
-"15644","40.3474","-79.61125","Jeannette","PA","Pennsylvania","TRUE","","18537","324.0","42129","Westmoreland","{""42129"": ""100""}","Westmoreland","42129","FALSE","FALSE","America/New_York"
-"15646","40.08989","-79.3356","Jones Mills","PA","Pennsylvania","TRUE","","203","54.9","42129","Westmoreland","{""42129"": ""100""}","Westmoreland","42129","FALSE","FALSE","America/New_York"
-"15647","40.34543","-79.7238","Larimer","PA","Pennsylvania","TRUE","","223","303.3","42129","Westmoreland","{""42129"": ""100""}","Westmoreland","42129","FALSE","FALSE","America/New_York"
-"15650","40.27576","-79.3932","Latrobe","PA","Pennsylvania","TRUE","","27029","139.8","42129","Westmoreland","{""42129"": ""100""}","Westmoreland","42129","FALSE","FALSE","America/New_York"
-"15655","40.20148","-79.17506","Laughlintown","PA","Pennsylvania","TRUE","","176","5.3","42129","Westmoreland","{""42129"": ""100""}","Westmoreland","42129","FALSE","FALSE","America/New_York"
-"15656","40.64637","-79.62207","Leechburg","PA","Pennsylvania","TRUE","","10400","106.7","42129","Westmoreland","{""42129"": ""55.57"", ""42005"": ""44.43""}","Westmoreland|Armstrong","42129|42005","FALSE","FALSE","America/New_York"
-"15658","40.25042","-79.22323","Ligonier","PA","Pennsylvania","TRUE","","8708","34.2","42129","Westmoreland","{""42129"": ""100""}","Westmoreland","42129","FALSE","FALSE","America/New_York"
-"15660","40.24468","-79.77438","Lowber","PA","Pennsylvania","TRUE","","460","340.3","42129","Westmoreland","{""42129"": ""100""}","Westmoreland","42129","FALSE","FALSE","America/New_York"
-"15661","40.32215","-79.36","Loyalhanna","PA","Pennsylvania","TRUE","","646","673.8","42129","Westmoreland","{""42129"": ""100""}","Westmoreland","42129","FALSE","FALSE","America/New_York"
-"15662","40.33438","-79.47848","Luxor","PA","Pennsylvania","TRUE","","235","553.0","42129","Westmoreland","{""42129"": ""100""}","Westmoreland","42129","FALSE","FALSE","America/New_York"
-"15663","40.25179","-79.67922","Madison","PA","Pennsylvania","TRUE","","447","175.8","42129","Westmoreland","{""42129"": ""100""}","Westmoreland","42129","FALSE","FALSE","America/New_York"
-"15665","40.33592","-79.66083","Manor","PA","Pennsylvania","TRUE","","1557","696.0","42129","Westmoreland","{""42129"": ""100""}","Westmoreland","42129","FALSE","FALSE","America/New_York"
-"15666","40.15618","-79.51442","Mount Pleasant","PA","Pennsylvania","TRUE","","15795","110.9","42129","Westmoreland","{""42129"": ""88.17"", ""42051"": ""11.83""}","Westmoreland|Fayette","42129|42051","FALSE","FALSE","America/New_York"
-"15668","40.46203","-79.67125","Murrysville","PA","Pennsylvania","TRUE","","12117","198.6","42129","Westmoreland","{""42129"": ""99.82"", ""42003"": ""0.18""}","Westmoreland|Allegheny","42129|42003","FALSE","FALSE","America/New_York"
-"15670","40.40695","-79.43008","New Alexandria","PA","Pennsylvania","TRUE","","3125","31.6","42129","Westmoreland","{""42129"": ""100""}","Westmoreland","42129","FALSE","FALSE","America/New_York"
-"15671","40.35624","-79.32177","New Derry","PA","Pennsylvania","TRUE","","655","79.2","42129","Westmoreland","{""42129"": ""100""}","Westmoreland","42129","FALSE","FALSE","America/New_York"
-"15672","40.24366","-79.63109","New Stanton","PA","Pennsylvania","TRUE","","3244","107.9","42129","Westmoreland","{""42129"": ""100""}","Westmoreland","42129","FALSE","FALSE","America/New_York"
-"15673","40.5938","-79.5563","North Apollo","PA","Pennsylvania","TRUE","","1252","895.5","42005","Armstrong","{""42005"": ""100""}","Armstrong","42005","FALSE","FALSE","America/New_York"
-"15675","40.33531","-79.63708","Penn","PA","Pennsylvania","TRUE","","895","373.3","42129","Westmoreland","{""42129"": ""100""}","Westmoreland","42129","FALSE","FALSE","America/New_York"
-"15676","40.24088","-79.4657","Pleasant Unity","PA","Pennsylvania","TRUE","","807","335.3","42129","Westmoreland","{""42129"": ""100""}","Westmoreland","42129","FALSE","FALSE","America/New_York"
-"15677","40.14314","-79.23733","Rector","PA","Pennsylvania","TRUE","","346","6.8","42129","Westmoreland","{""42129"": ""100""}","Westmoreland","42129","FALSE","FALSE","America/New_York"
-"15678","40.28723","-79.72629","Rillton","PA","Pennsylvania","TRUE","","731","492.2","42129","Westmoreland","{""42129"": ""100""}","Westmoreland","42129","FALSE","FALSE","America/New_York"
-"15679","40.17515","-79.65085","Ruffs Dale","PA","Pennsylvania","TRUE","","2400","39.4","42129","Westmoreland","{""42129"": ""100""}","Westmoreland","42129","FALSE","FALSE","America/New_York"
-"15680","40.52077","-79.49927","Salina","PA","Pennsylvania","TRUE","","117","3806.2","42129","Westmoreland","{""42129"": ""100""}","Westmoreland","42129","FALSE","FALSE","America/New_York"
-"15681","40.50095","-79.43852","Saltsburg","PA","Pennsylvania","TRUE","","4363","32.2","42063","Indiana","{""42063"": ""51.25"", ""42129"": ""48.75""}","Indiana|Westmoreland","42063|42129","FALSE","FALSE","America/New_York"
-"15683","40.10767","-79.60721","Scottdale","PA","Pennsylvania","TRUE","","7638","189.0","42129","Westmoreland","{""42129"": ""87.6"", ""42051"": ""12.4""}","Westmoreland|Fayette","42129|42051","FALSE","FALSE","America/New_York"
-"15684","40.46071","-79.52062","Slickville","PA","Pennsylvania","TRUE","","821","63.1","42129","Westmoreland","{""42129"": ""100""}","Westmoreland","42129","FALSE","FALSE","America/New_York"
-"15686","40.61948","-79.43271","Spring Church","PA","Pennsylvania","TRUE","","780","29.6","42005","Armstrong","{""42005"": ""100""}","Armstrong","42005","FALSE","FALSE","America/New_York"
-"15687","40.13246","-79.32095","Stahlstown","PA","Pennsylvania","TRUE","","1187","15.9","42129","Westmoreland","{""42129"": ""100""}","Westmoreland","42129","FALSE","FALSE","America/New_York"
-"15688","40.16864","-79.58474","Tarrs","PA","Pennsylvania","TRUE","","1179","292.6","42129","Westmoreland","{""42129"": ""100""}","Westmoreland","42129","FALSE","FALSE","America/New_York"
-"15689","40.22141","-79.49141","United","PA","Pennsylvania","TRUE","","218","833.1","42129","Westmoreland","{""42129"": ""100""}","Westmoreland","42129","FALSE","FALSE","America/New_York"
-"15690","40.64173","-79.53991","Vandergrift","PA","Pennsylvania","TRUE","","8745","138.4","42129","Westmoreland","{""42129"": ""62.54"", ""42005"": ""37.46""}","Westmoreland|Armstrong","42129|42005","FALSE","FALSE","America/New_York"
-"15691","40.29537","-79.68615","Wendel","PA","Pennsylvania","TRUE","","74","859.2","42129","Westmoreland","{""42129"": ""100""}","Westmoreland","42129","FALSE","FALSE","America/New_York"
-"15692","40.33172","-79.67884","Westmoreland City","PA","Pennsylvania","TRUE","","1047","888.2","42129","Westmoreland","{""42129"": ""100""}","Westmoreland","42129","FALSE","FALSE","America/New_York"
-"15693","40.25312","-79.40769","Whitney","PA","Pennsylvania","TRUE","","202","1128.1","42129","Westmoreland","{""42129"": ""100""}","Westmoreland","42129","FALSE","FALSE","America/New_York"
-"15695","40.19731","-79.69334","Wyano","PA","Pennsylvania","TRUE","","451","323.1","42129","Westmoreland","{""42129"": ""100""}","Westmoreland","42129","FALSE","FALSE","America/New_York"
-"15696","40.2801","-79.36615","Youngstown","PA","Pennsylvania","TRUE","","378","1113.7","42129","Westmoreland","{""42129"": ""100""}","Westmoreland","42129","FALSE","FALSE","America/New_York"
-"15697","40.24073","-79.57962","Youngwood","PA","Pennsylvania","TRUE","","2884","619.8","42129","Westmoreland","{""42129"": ""100""}","Westmoreland","42129","FALSE","FALSE","America/New_York"
-"15698","40.21638","-79.68947","Yukon","PA","Pennsylvania","TRUE","","609","155.6","42129","Westmoreland","{""42129"": ""100""}","Westmoreland","42129","FALSE","FALSE","America/New_York"
-"15701","40.62828","-79.14966","Indiana","PA","Pennsylvania","TRUE","","34052","114.0","42063","Indiana","{""42063"": ""100""}","Indiana","42063","FALSE","FALSE","America/New_York"
-"15710","40.64016","-78.87253","Alverda","PA","Pennsylvania","TRUE","","289","67.0","42063","Indiana","{""42063"": ""100""}","Indiana","42063","FALSE","FALSE","America/New_York"
-"15711","41.00813","-78.96225","Anita","PA","Pennsylvania","TRUE","","435","134.5","42065","Jefferson","{""42065"": ""100""}","Jefferson","42065","FALSE","FALSE","America/New_York"
-"15712","40.79044","-78.84789","Arcadia","PA","Pennsylvania","TRUE","","217","51.7","42063","Indiana","{""42063"": ""100""}","Indiana","42063","FALSE","FALSE","America/New_York"
-"15713","40.56977","-79.26171","Aultman","PA","Pennsylvania","TRUE","","341","100.1","42063","Indiana","{""42063"": ""100""}","Indiana","42063","FALSE","FALSE","America/New_York"
-"15714","40.64535","-78.82308","Northern Cambria","PA","Pennsylvania","TRUE","","4742","66.7","42021","Cambria","{""42021"": ""90.93"", ""42063"": ""9.07""}","Cambria|Indiana","42021|42063","FALSE","FALSE","America/New_York"
-"15715","40.97016","-78.87619","Big Run","PA","Pennsylvania","TRUE","","424","242.2","42065","Jefferson","{""42065"": ""100""}","Jefferson","42065","FALSE","FALSE","America/New_York"
-"15716","40.46688","-79.18799","Black Lick","PA","Pennsylvania","TRUE","","967","460.4","42063","Indiana","{""42063"": ""100""}","Indiana","42063","FALSE","FALSE","America/New_York"
-"15717","40.45265","-79.24304","Blairsville","PA","Pennsylvania","TRUE","","9985","40.3","42063","Indiana","{""42063"": ""78.47"", ""42129"": ""21.53""}","Indiana|Westmoreland","42063|42129","FALSE","FALSE","America/New_York"
-"15721","40.81462","-78.79247","Burnside","PA","Pennsylvania","TRUE","","176","35.3","42033","Clearfield","{""42033"": ""100""}","Clearfield","42033","FALSE","FALSE","America/New_York"
-"15722","40.5949","-78.72062","Carrolltown","PA","Pennsylvania","TRUE","","2282","43.2","42021","Cambria","{""42021"": ""100""}","Cambria","42021","FALSE","FALSE","America/New_York"
-"15723","40.7002","-79.15918","Chambersville","PA","Pennsylvania","TRUE","","15","5.5","42063","Indiana","{""42063"": ""100""}","Indiana","42063","FALSE","FALSE","America/New_York"
-"15724","40.73909","-78.81775","Cherry Tree","PA","Pennsylvania","TRUE","","2233","18.2","42063","Indiana","{""42063"": ""75.29"", ""42033"": ""17.04"", ""42021"": ""7.67""}","Indiana|Clearfield|Cambria","42063|42033|42021","FALSE","FALSE","America/New_York"
-"15725","40.51993","-79.3414","Clarksburg","PA","Pennsylvania","TRUE","","1602","20.6","42063","Indiana","{""42063"": ""100""}","Indiana","42063","FALSE","FALSE","America/New_York"
-"15727","40.55803","-79.30976","Clune","PA","Pennsylvania","TRUE","","209","58.9","42063","Indiana","{""42063"": ""100""}","Indiana","42063","FALSE","FALSE","America/New_York"
-"15728","40.67553","-78.96699","Clymer","PA","Pennsylvania","TRUE","","3429","30.9","42063","Indiana","{""42063"": ""100""}","Indiana","42063","FALSE","FALSE","America/New_York"
-"15729","40.7046","-78.9203","Commodore","PA","Pennsylvania","TRUE","","1443","29.3","42063","Indiana","{""42063"": ""100""}","Indiana","42063","FALSE","FALSE","America/New_York"
-"15730","41.05477","-79.0935","Coolspring","PA","Pennsylvania","TRUE","","99","46.0","42065","Jefferson","{""42065"": ""100""}","Jefferson","42065","FALSE","FALSE","America/New_York"
-"15731","40.50364","-79.17634","Coral","PA","Pennsylvania","TRUE","","187","300.9","42063","Indiana","{""42063"": ""100""}","Indiana","42063","FALSE","FALSE","America/New_York"
-"15732","40.72711","-79.21358","Creekside","PA","Pennsylvania","TRUE","","1563","20.5","42063","Indiana","{""42063"": ""92.63"", ""42005"": ""7.37""}","Indiana|Armstrong","42063|42005","FALSE","FALSE","America/New_York"
-"15733","40.98691","-78.96071","De Lancey","PA","Pennsylvania","TRUE","","135","131.1","42065","Jefferson","{""42065"": ""100""}","Jefferson","42065","FALSE","FALSE","America/New_York"
-"15734","40.72485","-79.00127","Dixonville","PA","Pennsylvania","TRUE","","502","135.3","42063","Indiana","{""42063"": ""100""}","Indiana","42063","FALSE","FALSE","America/New_York"
-"15736","40.70125","-79.36647","Elderton","PA","Pennsylvania","TRUE","","875","102.5","42005","Armstrong","{""42005"": ""100""}","Armstrong","42005","FALSE","FALSE","America/New_York"
-"15737","40.60517","-78.75778","Elmora","PA","Pennsylvania","TRUE","","70","152.8","42021","Cambria","{""42021"": ""100""}","Cambria","42021","FALSE","FALSE","America/New_York"
-"15738","40.69153","-78.78518","Emeigh","PA","Pennsylvania","TRUE","","189","27.8","42021","Cambria","{""42021"": ""100""}","Cambria","42021","FALSE","FALSE","America/New_York"
-"15739","40.67611","-79.16795","Ernest","PA","Pennsylvania","TRUE","","523","317.7","42063","Indiana","{""42063"": ""100""}","Indiana","42063","FALSE","FALSE","America/New_York"
-"15741","40.80657","-78.88963","Gipsy","PA","Pennsylvania","TRUE","","62","13.6","42063","Indiana","{""42063"": ""100""}","Indiana","42063","FALSE","FALSE","America/New_York"
-"15742","40.81439","-78.863","Glen Campbell","PA","Pennsylvania","TRUE","","991","16.3","42063","Indiana","{""42063"": ""92.32"", ""42033"": ""7.68""}","Indiana|Clearfield","42063|42033","FALSE","FALSE","America/New_York"
-"15744","40.92332","-79.08315","Hamilton","PA","Pennsylvania","TRUE","","153","13.3","42065","Jefferson","{""42065"": ""100""}","Jefferson","42065","FALSE","FALSE","America/New_York"
-"15745","40.62316","-78.91511","Heilwood","PA","Pennsylvania","TRUE","","217","58.9","42063","Indiana","{""42063"": ""100""}","Indiana","42063","FALSE","FALSE","America/New_York"
-"15746","40.75876","-78.88588","Hillsdale","PA","Pennsylvania","TRUE","","102","25.7","42063","Indiana","{""42063"": ""100""}","Indiana","42063","FALSE","FALSE","America/New_York"
-"15747","40.76788","-79.14812","Home","PA","Pennsylvania","TRUE","","1941","24.5","42063","Indiana","{""42063"": ""100""}","Indiana","42063","FALSE","FALSE","America/New_York"
-"15748","40.52449","-79.08432","Homer City","PA","Pennsylvania","TRUE","","6584","34.3","42063","Indiana","{""42063"": ""100""}","Indiana","42063","FALSE","FALSE","America/New_York"
-"15750","40.48473","-79.18082","Josephine","PA","Pennsylvania","TRUE","","406","323.4","42063","Indiana","{""42063"": ""100""}","Indiana","42063","FALSE","FALSE","America/New_York"
-"15752","40.5399","-79.28301","Kent","PA","Pennsylvania","TRUE","","54","461.0","42063","Indiana","{""42063"": ""100""}","Indiana","42063","FALSE","FALSE","America/New_York"
-"15753","40.78761","-78.65143","La Jose","PA","Pennsylvania","TRUE","","468","4.6","42033","Clearfield","{""42033"": ""100""}","Clearfield","42033","FALSE","FALSE","America/New_York"
-"15754","40.55664","-79.15153","Lucernemines","PA","Pennsylvania","TRUE","","770","688.6","42063","Indiana","{""42063"": ""100""}","Indiana","42063","FALSE","FALSE","America/New_York"
-"15756","40.56853","-79.29763","McIntyre","PA","Pennsylvania","TRUE","","203","89.0","42063","Indiana","{""42063"": ""100""}","Indiana","42063","FALSE","FALSE","America/New_York"
-"15757","40.88746","-78.73536","Mahaffey","PA","Pennsylvania","TRUE","","1538","7.5","42033","Clearfield","{""42033"": ""96.54"", ""42063"": ""3.46""}","Clearfield|Indiana","42033|42063","FALSE","FALSE","America/New_York"
-"15759","40.77111","-79.03035","Marion Center","PA","Pennsylvania","TRUE","","2997","20.2","42063","Indiana","{""42063"": ""100""}","Indiana","42063","FALSE","FALSE","America/New_York"
-"15760","40.64833","-78.80016","Marsteller","PA","Pennsylvania","TRUE","","173","42.4","42021","Cambria","{""42021"": ""100""}","Cambria","42021","FALSE","FALSE","America/New_York"
-"15761","40.63227","-78.88974","Mentcle","PA","Pennsylvania","TRUE","","140","52.2","42063","Indiana","{""42063"": ""100""}","Indiana","42063","FALSE","FALSE","America/New_York"
-"15762","40.59721","-78.82989","Nicktown","PA","Pennsylvania","TRUE","","905","26.1","42021","Cambria","{""42021"": ""100""}","Cambria","42021","FALSE","FALSE","America/New_York"
-"15764","40.99257","-79.02905","Oliveburg","PA","Pennsylvania","TRUE","","212","48.2","42065","Jefferson","{""42065"": ""100""}","Jefferson","42065","FALSE","FALSE","America/New_York"
-"15765","40.59762","-78.9961","Penn Run","PA","Pennsylvania","TRUE","","1480","15.2","42063","Indiana","{""42063"": ""100""}","Indiana","42063","FALSE","FALSE","America/New_York"
-"15767","40.96007","-78.96756","Punxsutawney","PA","Pennsylvania","TRUE","","14374","33.6","42065","Jefferson","{""42065"": ""93.97"", ""42063"": ""5.19"", ""42033"": ""0.85""}","Jefferson|Indiana|Clearfield","42065|42063|42033","FALSE","FALSE","America/New_York"
-"15770","40.99583","-79.15645","Ringgold","PA","Pennsylvania","TRUE","","255","24.1","42065","Jefferson","{""42065"": ""100""}","Jefferson","42065","FALSE","FALSE","America/New_York"
-"15771","40.83085","-78.9892","Rochester Mills","PA","Pennsylvania","TRUE","","871","10.1","42063","Indiana","{""42063"": ""100""}","Indiana","42063","FALSE","FALSE","America/New_York"
-"15772","40.87486","-78.89658","Rossiter","PA","Pennsylvania","TRUE","","1589","19.2","42063","Indiana","{""42063"": ""100""}","Indiana","42063","FALSE","FALSE","America/New_York"
-"15773","40.62676","-78.73546","Saint Benedict","PA","Pennsylvania","TRUE","","507","51.5","42021","Cambria","{""42021"": ""100""}","Cambria","42021","FALSE","FALSE","America/New_York"
-"15774","40.65694","-79.32667","Shelocta","PA","Pennsylvania","TRUE","","2858","20.6","42063","Indiana","{""42063"": ""51.17"", ""42005"": ""48.83""}","Indiana|Armstrong","42063|42005","FALSE","FALSE","America/New_York"
-"15775","40.62725","-78.78183","Spangler","PA","Pennsylvania","TRUE","","711","79.3","42021","Cambria","{""42021"": ""100""}","Cambria","42021","FALSE","FALSE","America/New_York"
-"15776","41.01333","-79.11395","Sprankle Mills","PA","Pennsylvania","TRUE","","54","9.6","42065","Jefferson","{""42065"": ""100""}","Jefferson","42065","FALSE","FALSE","America/New_York"
-"15777","40.69385","-78.96539","Starford","PA","Pennsylvania","TRUE","","78","26.8","42063","Indiana","{""42063"": ""100""}","Indiana","42063","FALSE","FALSE","America/New_York"
-"15778","40.96755","-79.19735","Timblin","PA","Pennsylvania","TRUE","","155","65.8","42065","Jefferson","{""42065"": ""100""}","Jefferson","42065","FALSE","FALSE","America/New_York"
-"15779","40.39925","-79.2177","Torrance","PA","Pennsylvania","TRUE","","846","41.3","42129","Westmoreland","{""42129"": ""100""}","Westmoreland","42129","FALSE","FALSE","America/New_York"
-"15780","40.91609","-79.05678","Valier","PA","Pennsylvania","TRUE","","147","44.3","42065","Jefferson","{""42065"": ""100""}","Jefferson","42065","FALSE","FALSE","America/New_York"
-"15781","40.96379","-78.98679","Walston","PA","Pennsylvania","TRUE","","116","42.7","42065","Jefferson","{""42065"": ""100""}","Jefferson","42065","FALSE","FALSE","America/New_York"
-"15783","40.60677","-79.34801","West Lebanon","PA","Pennsylvania","TRUE","","95","17.7","42063","Indiana","{""42063"": ""100""}","Indiana","42063","FALSE","FALSE","America/New_York"
-"15784","41.02502","-79.14045","Worthville","PA","Pennsylvania","TRUE","","62","71.7","42065","Jefferson","{""42065"": ""100""}","Jefferson","42065","FALSE","FALSE","America/New_York"
-"15801","41.125","-78.72553","Du Bois","PA","Pennsylvania","TRUE","","19018","113.6","42033","Clearfield","{""42033"": ""100""}","Clearfield","42033","FALSE","FALSE","America/New_York"
-"15821","41.35537","-78.36769","Benezett","PA","Pennsylvania","TRUE","","125","1.4","42047","Elk","{""42047"": ""100""}","Elk","42047","FALSE","FALSE","America/New_York"
-"15823","41.25841","-78.70952","Brockport","PA","Pennsylvania","TRUE","","1194","12.5","42047","Elk","{""42047"": ""81.34"", ""42065"": ""18.66""}","Elk|Jefferson","42047|42065","FALSE","FALSE","America/New_York"
-"15824","41.24985","-78.84256","Brockway","PA","Pennsylvania","TRUE","","5146","27.2","42065","Jefferson","{""42065"": ""98.21"", ""42033"": ""1.79""}","Jefferson|Clearfield","42065|42033","FALSE","FALSE","America/New_York"
-"15825","41.1753","-79.04035","Brookville","PA","Pennsylvania","TRUE","","8920","21.5","42065","Jefferson","{""42065"": ""100""}","Jefferson","42065","FALSE","FALSE","America/New_York"
-"15827","41.31921","-78.52169","Byrnedale","PA","Pennsylvania","TRUE","","255","34.2","42047","Elk","{""42047"": ""100""}","Elk","42047","FALSE","FALSE","America/New_York"
-"15828","41.35264","-79.13648","Clarington","PA","Pennsylvania","TRUE","","212","3.5","42065","Jefferson","{""42065"": ""54.9"", ""42053"": ""45.1""}","Jefferson|Forest","42065|42053","FALSE","FALSE","America/New_York"
-"15829","41.1762","-79.19759","Corsica","PA","Pennsylvania","TRUE","","1380","15.1","42065","Jefferson","{""42065"": ""76.84"", ""42031"": ""23.16""}","Jefferson|Clarion","42065|42031","FALSE","FALSE","America/New_York"
-"15832","41.35637","-78.19169","Driftwood","PA","Pennsylvania","TRUE","","227","0.8","42023","Cameron","{""42023"": ""95.12"", ""42047"": ""4.88""}","Cameron|Elk","42023|42047","FALSE","FALSE","America/New_York"
-"15834","41.51217","-78.27772","Emporium","PA","Pennsylvania","TRUE","","4180","7.9","42023","Cameron","{""42023"": ""100""}","Cameron","42023","FALSE","FALSE","America/New_York"
-"15840","41.17204","-78.82612","Falls Creek","PA","Pennsylvania","TRUE","","1942","39.1","42065","Jefferson","{""42065"": ""96.44"", ""42033"": ""3.56""}","Jefferson|Clearfield","42065|42033","FALSE","FALSE","America/New_York"
-"15841","41.26294","-78.52986","Force","PA","Pennsylvania","TRUE","","342","31.6","42047","Elk","{""42047"": ""100""}","Elk","42047","FALSE","FALSE","America/New_York"
-"15845","41.50048","-78.69572","Johnsonburg","PA","Pennsylvania","TRUE","","3108","38.7","42047","Elk","{""42047"": ""100""}","Elk","42047","FALSE","FALSE","America/New_York"
-"15846","41.34038","-78.56787","Kersey","PA","Pennsylvania","TRUE","","3462","14.4","42047","Elk","{""42047"": ""100""}","Elk","42047","FALSE","FALSE","America/New_York"
-"15847","41.08936","-79.03245","Knox Dale","PA","Pennsylvania","TRUE","","300","42.7","42065","Jefferson","{""42065"": ""100""}","Jefferson","42065","FALSE","FALSE","America/New_York"
-"15848","41.03163","-78.71906","Luthersburg","PA","Pennsylvania","TRUE","","1241","23.7","42033","Clearfield","{""42033"": ""100""}","Clearfield","42033","FALSE","FALSE","America/New_York"
-"15849","41.17933","-78.55935","Penfield","PA","Pennsylvania","TRUE","","1155","5.7","42033","Clearfield","{""42033"": ""100""}","Clearfield","42033","FALSE","FALSE","America/New_York"
-"15851","41.09965","-78.90269","Reynoldsville","PA","Pennsylvania","TRUE","","6733","27.8","42065","Jefferson","{""42065"": ""100""}","Jefferson","42065","FALSE","FALSE","America/New_York"
-"15853","41.39403","-78.79405","Ridgway","PA","Pennsylvania","TRUE","","6318","16.2","42047","Elk","{""42047"": ""99.76"", ""42065"": ""0.24""}","Elk|Jefferson","42047|42065","FALSE","FALSE","America/New_York"
-"15856","41.09282","-78.62455","Rockton","PA","Pennsylvania","TRUE","","852","9.1","42033","Clearfield","{""42033"": ""100""}","Clearfield","42033","FALSE","FALSE","America/New_York"
-"15857","41.45703","-78.53431","Saint Marys","PA","Pennsylvania","TRUE","","12567","48.4","42047","Elk","{""42047"": ""100""}","Elk","42047","FALSE","FALSE","America/New_York"
-"15860","41.34781","-79.04804","Sigel","PA","Pennsylvania","TRUE","","1077","3.3","42065","Jefferson","{""42065"": ""84.51"", ""42047"": ""9.2"", ""42031"": ""6.29""}","Jefferson|Elk|Clarion","42065|42047|42031","FALSE","FALSE","America/New_York"
-"15861","41.31854","-78.07816","Sinnamahoning","PA","Pennsylvania","TRUE","","160","0.9","42023","Cameron","{""42023"": ""100""}","Cameron","42023","FALSE","FALSE","America/New_York"
-"15863","41.01435","-78.83977","Stump Creek","PA","Pennsylvania","TRUE","","208","119.6","42065","Jefferson","{""42065"": ""100""}","Jefferson","42065","FALSE","FALSE","America/New_York"
-"15864","41.10234","-79.19817","Summerville","PA","Pennsylvania","TRUE","","1623","17.1","42065","Jefferson","{""42065"": ""62.28"", ""42031"": ""37.72""}","Jefferson|Clarion","42065|42031","FALSE","FALSE","America/New_York"
-"15865","41.04525","-78.82744","Sykesville","PA","Pennsylvania","TRUE","","1259","144.7","42065","Jefferson","{""42065"": ""100""}","Jefferson","42065","FALSE","FALSE","America/New_York"
-"15866","41.02537","-78.79112","Troutville","PA","Pennsylvania","TRUE","","259","80.6","42033","Clearfield","{""42033"": ""100""}","Clearfield","42033","FALSE","FALSE","America/New_York"
-"15868","41.28138","-78.38364","Weedville","PA","Pennsylvania","TRUE","","1357","5.5","42047","Elk","{""42047"": ""100""}","Elk","42047","FALSE","FALSE","America/New_York"
-"15870","41.58334","-78.57446","Wilcox","PA","Pennsylvania","TRUE","","1198","3.6","42047","Elk","{""42047"": ""98.72"", ""42083"": ""1.28""}","Elk|McKean","42047|42083","FALSE","FALSE","America/New_York"
-"15901","40.32839","-78.9142","Johnstown","PA","Pennsylvania","TRUE","","3572","931.0","42021","Cambria","{""42021"": ""100""}","Cambria","42021","FALSE","FALSE","America/New_York"
-"15902","40.31992","-78.88034","Johnstown","PA","Pennsylvania","TRUE","","10969","464.8","42021","Cambria","{""42021"": ""100""}","Cambria","42021","FALSE","FALSE","America/New_York"
-"15904","40.30345","-78.84491","Johnstown","PA","Pennsylvania","TRUE","","15943","200.7","42021","Cambria","{""42021"": ""100""}","Cambria","42021","FALSE","FALSE","America/New_York"
-"15905","40.28713","-78.97841","Johnstown","PA","Pennsylvania","TRUE","","19739","212.6","42021","Cambria","{""42021"": ""88.58"", ""42111"": ""11.42""}","Cambria|Somerset","42021|42111","FALSE","FALSE","America/New_York"
-"15906","40.3727","-78.94602","Johnstown","PA","Pennsylvania","TRUE","","10803","119.7","42021","Cambria","{""42021"": ""100""}","Cambria","42021","FALSE","FALSE","America/New_York"
-"15909","40.40974","-78.87126","Johnstown","PA","Pennsylvania","TRUE","","5201","116.6","42021","Cambria","{""42021"": ""100""}","Cambria","42021","FALSE","FALSE","America/New_York"
-"15920","40.46603","-79.05146","Armagh","PA","Pennsylvania","TRUE","","672","33.3","42063","Indiana","{""42063"": ""100""}","Indiana","42063","FALSE","FALSE","America/New_York"
-"15921","40.31733","-78.70089","Beaverdale","PA","Pennsylvania","TRUE","","54","63.4","42021","Cambria","{""42021"": ""100""}","Cambria","42021","FALSE","FALSE","America/New_York"
-"15922","40.51762","-78.87663","Belsano","PA","Pennsylvania","TRUE","","222","124.4","42021","Cambria","{""42021"": ""100""}","Cambria","42021","FALSE","FALSE","America/New_York"
-"15923","40.3556","-79.16409","Bolivar","PA","Pennsylvania","TRUE","","1672","24.8","42129","Westmoreland","{""42129"": ""100""}","Westmoreland","42129","FALSE","FALSE","America/New_York"
-"15924","40.10664","-78.77536","Cairnbrook","PA","Pennsylvania","TRUE","","1087","15.8","42111","Somerset","{""42111"": ""100""}","Somerset","42111","FALSE","FALSE","America/New_York"
-"15925","40.40856","-78.64065","Cassandra","PA","Pennsylvania","TRUE","","211","1066.3","42021","Cambria","{""42021"": ""100""}","Cambria","42021","FALSE","FALSE","America/New_York"
-"15926","40.05189","-78.82426","Central City","PA","Pennsylvania","TRUE","","2452","33.7","42111","Somerset","{""42111"": ""100""}","Somerset","42111","FALSE","FALSE","America/New_York"
-"15927","40.53999","-78.77867","Colver","PA","Pennsylvania","TRUE","","956","77.6","42021","Cambria","{""42021"": ""100""}","Cambria","42021","FALSE","FALSE","America/New_York"
-"15928","40.24024","-78.91725","Davidsville","PA","Pennsylvania","TRUE","","1762","108.9","42111","Somerset","{""42111"": ""100""}","Somerset","42111","FALSE","FALSE","America/New_York"
-"15929","40.46763","-79.00552","Dilltown","PA","Pennsylvania","TRUE","","28","18.6","42063","Indiana","{""42063"": ""100""}","Indiana","42063","FALSE","FALSE","America/New_York"
-"15930","40.29488","-78.71872","Dunlo","PA","Pennsylvania","TRUE","","183","245.9","42021","Cambria","{""42021"": ""100""}","Cambria","42021","FALSE","FALSE","America/New_York"
-"15931","40.51598","-78.75705","Ebensburg","PA","Pennsylvania","TRUE","","8834","44.0","42021","Cambria","{""42021"": ""100""}","Cambria","42021","FALSE","FALSE","America/New_York"
-"15934","40.27903","-78.80403","Elton","PA","Pennsylvania","TRUE","","24","27.2","42021","Cambria","{""42021"": ""100""}","Cambria","42021","FALSE","FALSE","America/New_York"
-"15935","40.20378","-78.9663","Hollsopple","PA","Pennsylvania","TRUE","","3460","55.4","42111","Somerset","{""42111"": ""100""}","Somerset","42111","FALSE","FALSE","America/New_York"
-"15936","40.16337","-78.89446","Hooversville","PA","Pennsylvania","TRUE","","1215","19.1","42111","Somerset","{""42111"": ""100""}","Somerset","42111","FALSE","FALSE","America/New_York"
-"15937","40.20529","-78.98465","Jerome","PA","Pennsylvania","TRUE","","667","267.0","42111","Somerset","{""42111"": ""100""}","Somerset","42111","FALSE","FALSE","America/New_York"
-"15938","40.42017","-78.61174","Lilly","PA","Pennsylvania","TRUE","","2310","45.0","42021","Cambria","{""42021"": ""100""}","Cambria","42021","FALSE","FALSE","America/New_York"
-"15940","40.52169","-78.62885","Loretto","PA","Pennsylvania","TRUE","","3964","57.5","42021","Cambria","{""42021"": ""100""}","Cambria","42021","FALSE","FALSE","America/New_York"
-"15942","40.40348","-78.81228","Mineral Point","PA","Pennsylvania","TRUE","","1789","37.3","42021","Cambria","{""42021"": ""100""}","Cambria","42021","FALSE","FALSE","America/New_York"
-"15943","40.47467","-78.83967","Nanty Glo","PA","Pennsylvania","TRUE","","3476","69.8","42021","Cambria","{""42021"": ""100""}","Cambria","42021","FALSE","FALSE","America/New_York"
-"15944","40.36353","-79.07969","New Florence","PA","Pennsylvania","TRUE","","2924","17.1","42129","Westmoreland","{""42129"": ""60.14"", ""42063"": ""39.86""}","Westmoreland|Indiana","42129|42063","FALSE","FALSE","America/New_York"
-"15945","40.35788","-78.86693","Parkhill","PA","Pennsylvania","TRUE","","81","51.0","42021","Cambria","{""42021"": ""100""}","Cambria","42021","FALSE","FALSE","America/New_York"
-"15946","40.37234","-78.63277","Portage","PA","Pennsylvania","TRUE","","6532","49.9","42021","Cambria","{""42021"": ""93.02"", ""42013"": ""6.22"", ""42009"": ""0.76""}","Cambria|Blair|Bedford","42021|42013|42009","FALSE","FALSE","America/New_York"
-"15948","40.48995","-78.76472","Revloc","PA","Pennsylvania","TRUE","","552","288.9","42021","Cambria","{""42021"": ""100""}","Cambria","42021","FALSE","FALSE","America/New_York"
-"15949","40.3956","-79.12425","Robinson","PA","Pennsylvania","TRUE","","444","66.4","42063","Indiana","{""42063"": ""100""}","Indiana","42063","FALSE","FALSE","America/New_York"
-"15951","40.33187","-78.77107","Saint Michael","PA","Pennsylvania","TRUE","","507","180.9","42021","Cambria","{""42021"": ""100""}","Cambria","42021","FALSE","FALSE","America/New_York"
-"15952","40.3035","-78.77614","Salix","PA","Pennsylvania","TRUE","","1706","199.0","42021","Cambria","{""42021"": ""100""}","Cambria","42021","FALSE","FALSE","America/New_York"
-"15953","40.20918","-78.8882","Seanor","PA","Pennsylvania","TRUE","","190","88.6","42111","Somerset","{""42111"": ""100""}","Somerset","42111","FALSE","FALSE","America/New_York"
-"15954","40.42184","-78.99974","Seward","PA","Pennsylvania","TRUE","","2159","45.9","42063","Indiana","{""42063"": ""52.26"", ""42129"": ""47.74""}","Indiana|Westmoreland","42063|42129","FALSE","FALSE","America/New_York"
-"15955","40.32239","-78.69726","Sidman","PA","Pennsylvania","TRUE","","2392","36.7","42021","Cambria","{""42021"": ""100""}","Cambria","42021","FALSE","FALSE","America/New_York"
-"15956","40.34731","-78.78559","South Fork","PA","Pennsylvania","TRUE","","2675","128.3","42021","Cambria","{""42021"": ""100""}","Cambria","42021","FALSE","FALSE","America/New_York"
-"15957","40.55657","-78.89737","Strongstown","PA","Pennsylvania","TRUE","","626","25.5","42063","Indiana","{""42063"": ""78.15"", ""42021"": ""21.85""}","Indiana|Cambria","42063|42021","FALSE","FALSE","America/New_York"
-"15958","40.38931","-78.73205","Summerhill","PA","Pennsylvania","TRUE","","2231","45.1","42021","Cambria","{""42021"": ""100""}","Cambria","42021","FALSE","FALSE","America/New_York"
-"15960","40.49842","-78.88906","Twin Rocks","PA","Pennsylvania","TRUE","","378","30.9","42021","Cambria","{""42021"": ""100""}","Cambria","42021","FALSE","FALSE","America/New_York"
-"15961","40.46679","-78.93769","Vintondale","PA","Pennsylvania","TRUE","","766","17.7","42063","Indiana","{""42063"": ""53.28"", ""42021"": ""46.72""}","Indiana|Cambria","42063|42021","FALSE","FALSE","America/New_York"
-"15962","40.38814","-78.71507","Wilmore","PA","Pennsylvania","TRUE","","173","330.5","42021","Cambria","{""42021"": ""100""}","Cambria","42021","FALSE","FALSE","America/New_York"
-"15963","40.22052","-78.763","Windber","PA","Pennsylvania","TRUE","","10476","41.4","42111","Somerset","{""42111"": ""74.91"", ""42021"": ""25.09""}","Somerset|Cambria","42111|42021","FALSE","FALSE","America/New_York"
-"16001","40.9095","-79.9438","Butler","PA","Pennsylvania","TRUE","","38847","204.3","42019","Butler","{""42019"": ""100""}","Butler","42019","FALSE","FALSE","America/New_York"
-"16002","40.81578","-79.85737","Butler","PA","Pennsylvania","TRUE","","15257","81.6","42019","Butler","{""42019"": ""100""}","Butler","42019","FALSE","FALSE","America/New_York"
-"16020","41.11533","-79.89856","Boyers","PA","Pennsylvania","TRUE","","1153","17.5","42019","Butler","{""42019"": ""100""}","Butler","42019","FALSE","FALSE","America/New_York"
-"16022","41.05401","-79.73382","Bruin","PA","Pennsylvania","TRUE","","386","185.4","42019","Butler","{""42019"": ""100""}","Butler","42019","FALSE","FALSE","America/New_York"
-"16023","40.78551","-79.75032","Cabot","PA","Pennsylvania","TRUE","","4460","65.5","42019","Butler","{""42019"": ""100""}","Butler","42019","FALSE","FALSE","America/New_York"
-"16024","40.74266","-80.03854","Callery","PA","Pennsylvania","TRUE","","232","379.3","42019","Butler","{""42019"": ""100""}","Butler","42019","FALSE","FALSE","America/New_York"
-"16025","40.94467","-79.75638","Chicora","PA","Pennsylvania","TRUE","","5194","37.7","42019","Butler","{""42019"": ""92.29"", ""42005"": ""7.71""}","Butler|Armstrong","42019|42005","FALSE","FALSE","America/New_York"
-"16027","40.82019","-80.01925","Connoquenessing","PA","Pennsylvania","TRUE","","256","186.4","42019","Butler","{""42019"": ""100""}","Butler","42019","FALSE","FALSE","America/New_York"
-"16028","40.95792","-79.63702","East Brady","PA","Pennsylvania","TRUE","","1615","39.1","42031","Clarion","{""42031"": ""51.86"", ""42005"": ""48.14""}","Clarion|Armstrong","42031|42005","FALSE","FALSE","America/New_York"
-"16029","40.87929","-79.84656","East Butler","PA","Pennsylvania","TRUE","","742","331.0","42019","Butler","{""42019"": ""100""}","Butler","42019","FALSE","FALSE","America/New_York"
-"16030","41.13637","-79.79704","Eau Claire","PA","Pennsylvania","TRUE","","297","105.8","42019","Butler","{""42019"": ""100""}","Butler","42019","FALSE","FALSE","America/New_York"
-"16033","40.79163","-80.04531","Evans City","PA","Pennsylvania","TRUE","","6260","78.2","42019","Butler","{""42019"": ""100""}","Butler","42019","FALSE","FALSE","America/New_York"
-"16034","40.86139","-79.72973","Fenelton","PA","Pennsylvania","TRUE","","1906","37.1","42019","Butler","{""42019"": ""100""}","Butler","42019","FALSE","FALSE","America/New_York"
-"16035","41.10672","-80.00996","Forestville","PA","Pennsylvania","TRUE","","146","100.7","42019","Butler","{""42019"": ""100""}","Butler","42019","FALSE","FALSE","America/New_York"
-"16036","41.13541","-79.66917","Foxburg","PA","Pennsylvania","TRUE","","164","28.4","42031","Clarion","{""42031"": ""100""}","Clarion","42031","FALSE","FALSE","America/New_York"
-"16037","40.85315","-80.12822","Harmony","PA","Pennsylvania","TRUE","","4573","50.7","42019","Butler","{""42019"": ""93.57"", ""42073"": ""4.86"", ""42007"": ""1.57""}","Butler|Lawrence|Beaver","42019|42073|42007","FALSE","FALSE","America/New_York"
-"16038","41.16001","-79.95132","Harrisville","PA","Pennsylvania","TRUE","","3592","29.0","42019","Butler","{""42019"": ""63.26"", ""42121"": ""36.74""}","Butler|Venango","42019|42121","FALSE","FALSE","America/New_York"
-"16040","41.09255","-79.84301","Hilliards","PA","Pennsylvania","TRUE","","1023","20.1","42019","Butler","{""42019"": ""100""}","Butler","42019","FALSE","FALSE","America/New_York"
-"16041","41.00531","-79.71495","Karns City","PA","Pennsylvania","TRUE","","2112","29.3","42019","Butler","{""42019"": ""76.01"", ""42005"": ""23.99""}","Butler|Armstrong","42019|42005","FALSE","FALSE","America/New_York"
-"16045","40.85285","-79.91668","Lyndora","PA","Pennsylvania","TRUE","","996","668.9","42019","Butler","{""42019"": ""100""}","Butler","42019","FALSE","FALSE","America/New_York"
-"16046","40.70069","-80.03006","Mars","PA","Pennsylvania","TRUE","","16699","283.2","42019","Butler","{""42019"": ""87.75"", ""42003"": ""12.25""}","Butler|Allegheny","42019|42003","FALSE","FALSE","America/New_York"
-"16048","41.05318","-79.81842","North Washington","PA","Pennsylvania","TRUE","","142","49.6","42019","Butler","{""42019"": ""100""}","Butler","42019","FALSE","FALSE","America/New_York"
-"16049","41.09663","-79.67259","Parker","PA","Pennsylvania","TRUE","","3080","12.9","42031","Clarion","{""42031"": ""37.4"", ""42019"": ""31.75"", ""42005"": ""30.85""}","Clarion|Butler|Armstrong","42031|42019|42005","FALSE","FALSE","America/New_York"
-"16050","41.04332","-79.77173","Petrolia","PA","Pennsylvania","TRUE","","1373","21.6","42019","Butler","{""42019"": ""100""}","Butler","42019","FALSE","FALSE","America/New_York"
-"16051","40.94671","-80.13852","Portersville","PA","Pennsylvania","TRUE","","2834","28.1","42019","Butler","{""42019"": ""61.45"", ""42073"": ""38.55""}","Butler|Lawrence","42019|42073","FALSE","FALSE","America/New_York"
-"16052","40.90468","-80.0614","Prospect","PA","Pennsylvania","TRUE","","2534","48.6","42019","Butler","{""42019"": ""100""}","Butler","42019","FALSE","FALSE","America/New_York"
-"16053","40.81188","-79.98316","Renfrew","PA","Pennsylvania","TRUE","","4518","81.3","42019","Butler","{""42019"": ""100""}","Butler","42019","FALSE","FALSE","America/New_York"
-"16054","41.15704","-79.65744","Saint Petersburg","PA","Pennsylvania","TRUE","","377","77.0","42031","Clarion","{""42031"": ""100""}","Clarion","42031","FALSE","FALSE","America/New_York"
-"16055","40.7157","-79.74802","Sarver","PA","Pennsylvania","TRUE","","7996","79.3","42019","Butler","{""42019"": ""96.87"", ""42005"": ""3"", ""42003"": ""0.13""}","Butler|Armstrong|Allegheny","42019|42005|42003","FALSE","FALSE","America/New_York"
-"16056","40.723","-79.84105","Saxonburg","PA","Pennsylvania","TRUE","","4785","87.2","42019","Butler","{""42019"": ""100""}","Butler","42019","FALSE","FALSE","America/New_York"
-"16057","41.03455","-80.05676","Slippery Rock","PA","Pennsylvania","TRUE","","14624","64.7","42019","Butler","{""42019"": ""93.68"", ""42073"": ""5.32"", ""42085"": ""1""}","Butler|Lawrence|Mercer","42019|42073|42085","FALSE","FALSE","America/New_York"
-"16059","40.70401","-79.9285","Valencia","PA","Pennsylvania","TRUE","","8242","124.0","42019","Butler","{""42019"": ""97.03"", ""42003"": ""2.97""}","Butler|Allegheny","42019|42003","FALSE","FALSE","America/New_York"
-"16061","41.00659","-79.88699","West Sunbury","PA","Pennsylvania","TRUE","","2556","22.5","42019","Butler","{""42019"": ""100""}","Butler","42019","FALSE","FALSE","America/New_York"
-"16063","40.76488","-80.1274","Zelienople","PA","Pennsylvania","TRUE","","7005","152.1","42019","Butler","{""42019"": ""92.5"", ""42007"": ""7.5""}","Butler|Beaver","42019|42007","FALSE","FALSE","America/New_York"
-"16066","40.71109","-80.10588","Cranberry Township","PA","Pennsylvania","TRUE","","30719","530.7","42019","Butler","{""42019"": ""100""}","Butler","42019","FALSE","FALSE","America/New_York"
-"16101","40.98532","-80.28716","New Castle","PA","Pennsylvania","TRUE","","32616","176.8","42073","Lawrence","{""42073"": ""100""}","Lawrence","42073","FALSE","FALSE","America/New_York"
-"16102","40.96067","-80.42074","New Castle","PA","Pennsylvania","TRUE","","5581","89.6","42073","Lawrence","{""42073"": ""100""}","Lawrence","42073","FALSE","FALSE","America/New_York"
-"16105","41.05351","-80.33815","New Castle","PA","Pennsylvania","TRUE","","15016","211.3","42073","Lawrence","{""42073"": ""100""}","Lawrence","42073","FALSE","FALSE","America/New_York"
-"16110","41.50609","-80.3849","Adamsville","PA","Pennsylvania","TRUE","","340","17.4","42039","Crawford","{""42039"": ""87.58"", ""42085"": ""12.42""}","Crawford|Mercer","42039|42085","FALSE","FALSE","America/New_York"
-"16111","41.52038","-80.2826","Atlantic","PA","Pennsylvania","TRUE","","1249","17.2","42039","Crawford","{""42039"": ""100""}","Crawford","42039","FALSE","FALSE","America/New_York"
-"16112","40.96819","-80.50177","Bessemer","PA","Pennsylvania","TRUE","","1512","86.8","42073","Lawrence","{""42073"": ""100""}","Lawrence","42073","FALSE","FALSE","America/New_York"
-"16113","41.28153","-80.42506","Clark","PA","Pennsylvania","TRUE","","475","251.1","42085","Mercer","{""42085"": ""100""}","Mercer","42085","FALSE","FALSE","America/New_York"
-"16114","41.40413","-80.18545","Clarks Mills","PA","Pennsylvania","TRUE","","627","23.9","42085","Mercer","{""42085"": ""100""}","Mercer","42085","FALSE","FALSE","America/New_York"
-"16115","40.79345","-80.46336","Darlington","PA","Pennsylvania","TRUE","","3324","31.9","42007","Beaver","{""42007"": ""100""}","Beaver","42007","FALSE","FALSE","America/New_York"
-"16116","41.03631","-80.45212","Edinburg","PA","Pennsylvania","TRUE","","2741","40.1","42073","Lawrence","{""42073"": ""100""}","Lawrence","42073","FALSE","FALSE","America/New_York"
-"16117","40.87294","-80.25591","Ellwood City","PA","Pennsylvania","TRUE","","16999","178.4","42073","Lawrence","{""42073"": ""68.16"", ""42007"": ""31.84""}","Lawrence|Beaver","42073|42007","FALSE","FALSE","America/New_York"
-"16120","40.89169","-80.47295","Enon Valley","PA","Pennsylvania","TRUE","","2245","26.2","42073","Lawrence","{""42073"": ""91.11"", ""42007"": ""8.89""}","Lawrence|Beaver","42073|42007","FALSE","FALSE","America/New_York"
-"16121","41.21121","-80.49725","Farrell","PA","Pennsylvania","TRUE","","4668","797.7","42085","Mercer","{""42085"": ""100""}","Mercer","42085","FALSE","FALSE","America/New_York"
-"16123","40.81959","-80.19818","Fombell","PA","Pennsylvania","TRUE","","2207","42.1","42007","Beaver","{""42007"": ""94.55"", ""42073"": ""5.45""}","Beaver|Lawrence","42007|42073","FALSE","FALSE","America/New_York"
-"16124","41.33181","-80.2659","Fredonia","PA","Pennsylvania","TRUE","","1938","26.7","42085","Mercer","{""42085"": ""100""}","Mercer","42085","FALSE","FALSE","America/New_York"
-"16125","41.40597","-80.37338","Greenville","PA","Pennsylvania","TRUE","","16974","59.9","42085","Mercer","{""42085"": ""99.41"", ""42039"": ""0.59""}","Mercer|Crawford","42085|42039","FALSE","FALSE","America/New_York"
-"16127","41.17286","-80.07283","Grove City","PA","Pennsylvania","TRUE","","15599","83.8","42085","Mercer","{""42085"": ""98.66"", ""42121"": ""0.92"", ""42019"": ""0.24"", ""42073"": ""0.19""}","Mercer|Venango|Butler|Lawrence","42085|42121|42019|42073","FALSE","FALSE","America/New_York"
-"16130","41.44324","-80.21527","Hadley","PA","Pennsylvania","TRUE","","2119","26.4","42085","Mercer","{""42085"": ""100""}","Mercer","42085","FALSE","FALSE","America/New_York"
-"16131","41.55038","-80.37756","Hartstown","PA","Pennsylvania","TRUE","","979","18.1","42039","Crawford","{""42039"": ""100""}","Crawford","42039","FALSE","FALSE","America/New_York"
-"16132","41.00591","-80.50568","Hillsville","PA","Pennsylvania","TRUE","","390","85.1","42073","Lawrence","{""42073"": ""100""}","Lawrence","42073","FALSE","FALSE","America/New_York"
-"16133","41.27175","-80.11534","Jackson Center","PA","Pennsylvania","TRUE","","1621","22.6","42085","Mercer","{""42085"": ""100""}","Mercer","42085","FALSE","FALSE","America/New_York"
-"16134","41.50588","-80.46407","Jamestown","PA","Pennsylvania","TRUE","","3774","31.1","42039","Crawford","{""42039"": ""59.47"", ""42085"": ""40.53""}","Crawford|Mercer","42039|42085","FALSE","FALSE","America/New_York"
-"16136","40.83423","-80.3237","Koppel","PA","Pennsylvania","TRUE","","740","387.5","42007","Beaver","{""42007"": ""100""}","Beaver","42007","FALSE","FALSE","America/New_York"
-"16137","41.23013","-80.23846","Mercer","PA","Pennsylvania","TRUE","","12363","44.2","42085","Mercer","{""42085"": ""100""}","Mercer","42085","FALSE","FALSE","America/New_York"
-"16140","41.0953","-80.5141","New Bedford","PA","Pennsylvania","TRUE","","170","380.9","42073","Lawrence","{""42073"": ""100""}","Lawrence","42073","FALSE","FALSE","America/New_York"
-"16141","40.87041","-80.39624","New Galilee","PA","Pennsylvania","TRUE","","1609","30.3","42073","Lawrence","{""42073"": ""50.78"", ""42007"": ""49.22""}","Lawrence|Beaver","42073|42007","FALSE","FALSE","America/New_York"
-"16142","41.14055","-80.33906","New Wilmington","PA","Pennsylvania","TRUE","","6771","62.3","42073","Lawrence","{""42073"": ""63.53"", ""42085"": ""36.47""}","Lawrence|Mercer","42073|42085","FALSE","FALSE","America/New_York"
-"16143","41.10551","-80.45301","Pulaski","PA","Pennsylvania","TRUE","","2427","35.9","42073","Lawrence","{""42073"": ""79.25"", ""42085"": ""20.75""}","Lawrence|Mercer","42073|42085","FALSE","FALSE","America/New_York"
-"16145","41.38525","-80.07182","Sandy Lake","PA","Pennsylvania","TRUE","","2750","21.9","42085","Mercer","{""42085"": ""100""}","Mercer","42085","FALSE","FALSE","America/New_York"
-"16146","41.23412","-80.49958","Sharon","PA","Pennsylvania","TRUE","","13242","1337.3","42085","Mercer","{""42085"": ""100""}","Mercer","42085","FALSE","FALSE","America/New_York"
-"16148","41.23117","-80.43193","Hermitage","PA","Pennsylvania","TRUE","","16120","194.1","42085","Mercer","{""42085"": ""100""}","Mercer","42085","FALSE","FALSE","America/New_York"
-"16150","41.28553","-80.44388","Sharpsville","PA","Pennsylvania","TRUE","","6960","117.0","42085","Mercer","{""42085"": ""100""}","Mercer","42085","FALSE","FALSE","America/New_York"
-"16151","41.4437","-80.207","Sheakleyville","PA","Pennsylvania","TRUE","","134","444.1","42085","Mercer","{""42085"": ""100""}","Mercer","42085","FALSE","FALSE","America/New_York"
-"16153","41.31813","-80.08106","Stoneboro","PA","Pennsylvania","TRUE","","2341","20.9","42085","Mercer","{""42085"": ""93.52"", ""42121"": ""6.48""}","Mercer|Venango","42085|42121","FALSE","FALSE","America/New_York"
-"16154","41.32448","-80.42086","Transfer","PA","Pennsylvania","TRUE","","2390","35.4","42085","Mercer","{""42085"": ""100""}","Mercer","42085","FALSE","FALSE","America/New_York"
-"16155","41.0677","-80.51078","Villa Maria","PA","Pennsylvania","TRUE","","125","71.3","42073","Lawrence","{""42073"": ""100""}","Lawrence","42073","FALSE","FALSE","America/New_York"
-"16156","41.0956","-80.21801","Volant","PA","Pennsylvania","TRUE","","2912","22.6","42073","Lawrence","{""42073"": ""76.2"", ""42085"": ""23.8""}","Lawrence|Mercer","42073|42085","FALSE","FALSE","America/New_York"
-"16157","40.88881","-80.33558","Wampum","PA","Pennsylvania","TRUE","","3071","47.3","42073","Lawrence","{""42073"": ""83.92"", ""42007"": ""16.08""}","Lawrence|Beaver","42073|42007","FALSE","FALSE","America/New_York"
-"16159","41.15855","-80.46838","West Middlesex","PA","Pennsylvania","TRUE","","4689","66.5","42085","Mercer","{""42085"": ""91.88"", ""42073"": ""8.12""}","Mercer|Lawrence","42085|42073","FALSE","FALSE","America/New_York"
-"16160","40.92782","-80.36355","West Pittsburg","PA","Pennsylvania","TRUE","","743","229.8","42073","Lawrence","{""42073"": ""100""}","Lawrence","42073","FALSE","FALSE","America/New_York"
-"16161","41.19701","-80.49587","Wheatland","PA","Pennsylvania","TRUE","","606","264.9","42085","Mercer","{""42085"": ""100""}","Mercer","42085","FALSE","FALSE","America/New_York"
-"16201","40.80913","-79.47288","Kittanning","PA","Pennsylvania","TRUE","","16971","57.1","42005","Armstrong","{""42005"": ""100""}","Armstrong","42005","FALSE","FALSE","America/New_York"
-"16210","40.89804","-79.51387","Adrian","PA","Pennsylvania","TRUE","","931","18.2","42005","Armstrong","{""42005"": ""100""}","Armstrong","42005","FALSE","FALSE","America/New_York"
-"16211","40.7945","-79.20253","Beyer","PA","Pennsylvania","TRUE","","110","42.0","42063","Indiana","{""42063"": ""100""}","Indiana","42063","FALSE","FALSE","America/New_York"
-"16212","40.75312","-79.58463","Cadogan","PA","Pennsylvania","TRUE","","312","125.9","42005","Armstrong","{""42005"": ""100""}","Armstrong","42005","FALSE","FALSE","America/New_York"
-"16213","41.12569","-79.55779","Callensburg","PA","Pennsylvania","TRUE","","114","306.1","42031","Clarion","{""42031"": ""100""}","Clarion","42031","FALSE","FALSE","America/New_York"
-"16214","41.20315","-79.35754","Clarion","PA","Pennsylvania","TRUE","","10114","79.4","42031","Clarion","{""42031"": ""100""}","Clarion","42031","FALSE","FALSE","America/New_York"
-"16217","41.33655","-79.18477","Cooksburg","PA","Pennsylvania","TRUE","","73","5.0","42053","Forest","{""42053"": ""71.29"", ""42065"": ""28.71""}","Forest|Jefferson","42053|42065","FALSE","FALSE","America/New_York"
-"16218","40.92679","-79.592","Cowansville","PA","Pennsylvania","TRUE","","1135","15.5","42005","Armstrong","{""42005"": ""100""}","Armstrong","42005","FALSE","FALSE","America/New_York"
-"16222","40.87377","-79.26088","Dayton","PA","Pennsylvania","TRUE","","2671","15.7","42005","Armstrong","{""42005"": ""89.94"", ""42063"": ""7.28"", ""42065"": ""2.77""}","Armstrong|Indiana|Jefferson","42005|42063|42065","FALSE","FALSE","America/New_York"
-"16223","40.97594","-79.3643","Distant","PA","Pennsylvania","TRUE","","183","65.3","42005","Armstrong","{""42005"": ""100""}","Armstrong","42005","FALSE","FALSE","America/New_York"
-"16224","41.0623","-79.29393","Fairmount City","PA","Pennsylvania","TRUE","","1221","23.5","42031","Clarion","{""42031"": ""90.94"", ""42005"": ""9.06""}","Clarion|Armstrong","42031|42005","FALSE","FALSE","America/New_York"
-"16226","40.71097","-79.48683","Ford City","PA","Pennsylvania","TRUE","","7567","50.5","42005","Armstrong","{""42005"": ""100""}","Armstrong","42005","FALSE","FALSE","America/New_York"
-"16228","40.76079","-79.53575","Ford Cliff","PA","Pennsylvania","TRUE","","424","2154.1","42005","Armstrong","{""42005"": ""100""}","Armstrong","42005","FALSE","FALSE","America/New_York"
-"16229","40.71796","-79.64488","Freeport","PA","Pennsylvania","TRUE","","5269","81.8","42005","Armstrong","{""42005"": ""80.71"", ""42019"": ""16.97"", ""42129"": ""2.32""}","Armstrong|Butler|Westmoreland","42005|42019|42129","FALSE","FALSE","America/New_York"
-"16230","41.02099","-79.2782","Hawthorn","PA","Pennsylvania","TRUE","","419","157.9","42031","Clarion","{""42031"": ""100""}","Clarion","42031","FALSE","FALSE","America/New_York"
-"16232","41.22117","-79.54863","Knox","PA","Pennsylvania","TRUE","","4201","28.4","42031","Clarion","{""42031"": ""99.77"", ""42121"": ""0.23""}","Clarion|Venango","42031|42121","FALSE","FALSE","America/New_York"
-"16233","41.36617","-79.272","Leeper","PA","Pennsylvania","TRUE","","1084","10.3","42031","Clarion","{""42031"": ""100""}","Clarion","42031","FALSE","FALSE","America/New_York"
-"16235","41.31759","-79.35437","Lucinda","PA","Pennsylvania","TRUE","","1157","15.9","42031","Clarion","{""42031"": ""100""}","Clarion","42031","FALSE","FALSE","America/New_York"
-"16236","40.78487","-79.52323","McGrann","PA","Pennsylvania","TRUE","","288","1692.2","42005","Armstrong","{""42005"": ""100""}","Armstrong","42005","FALSE","FALSE","America/New_York"
-"16238","40.78776","-79.52068","Manorville","PA","Pennsylvania","TRUE","","434","1807.6","42005","Armstrong","{""42005"": ""100""}","Armstrong","42005","FALSE","FALSE","America/New_York"
-"16239","41.49187","-79.13575","Marienville","PA","Pennsylvania","TRUE","","4952","9.7","42053","Forest","{""42053"": ""100""}","Forest","42053","FALSE","FALSE","America/New_York"
-"16240","41.0335","-79.22467","Mayport","PA","Pennsylvania","TRUE","","1541","11.1","42031","Clarion","{""42031"": ""38.23"", ""42005"": ""32.62"", ""42065"": ""29.16""}","Clarion|Armstrong|Jefferson","42031|42005|42065","FALSE","FALSE","America/New_York"
-"16242","41.00749","-79.36039","New Bethlehem","PA","Pennsylvania","TRUE","","4233","18.1","42031","Clarion","{""42031"": ""54.66"", ""42005"": ""45.34""}","Clarion|Armstrong","42031|42005","FALSE","FALSE","America/New_York"
-"16244","40.79217","-79.27665","Nu Mine","PA","Pennsylvania","TRUE","","376","120.4","42005","Armstrong","{""42005"": ""100""}","Armstrong","42005","FALSE","FALSE","America/New_York"
-"16245","41.00681","-79.29843","Oak Ridge","PA","Pennsylvania","TRUE","","213","138.6","42005","Armstrong","{""42005"": ""100""}","Armstrong","42005","FALSE","FALSE","America/New_York"
-"16246","40.79169","-79.18222","Plumville","PA","Pennsylvania","TRUE","","257","293.2","42063","Indiana","{""42063"": ""100""}","Indiana","42063","FALSE","FALSE","America/New_York"
-"16248","41.03487","-79.50536","Rimersburg","PA","Pennsylvania","TRUE","","3052","22.6","42031","Clarion","{""42031"": ""100""}","Clarion","42031","FALSE","FALSE","America/New_York"
-"16249","40.7665","-79.31512","Rural Valley","PA","Pennsylvania","TRUE","","2005","27.9","42005","Armstrong","{""42005"": ""100""}","Armstrong","42005","FALSE","FALSE","America/New_York"
-"16250","40.76826","-79.23986","Sagamore","PA","Pennsylvania","TRUE","","544","76.2","42005","Armstrong","{""42005"": ""100""}","Armstrong","42005","FALSE","FALSE","America/New_York"
-"16253","40.95148","-79.34286","Seminole","PA","Pennsylvania","TRUE","","95","173.6","42005","Armstrong","{""42005"": ""100""}","Armstrong","42005","FALSE","FALSE","America/New_York"
-"16254","41.26841","-79.45741","Shippenville","PA","Pennsylvania","TRUE","","3264","24.7","42031","Clarion","{""42031"": ""100""}","Clarion","42031","FALSE","FALSE","America/New_York"
-"16255","41.12753","-79.46442","Sligo","PA","Pennsylvania","TRUE","","1573","14.8","42031","Clarion","{""42031"": ""100""}","Clarion","42031","FALSE","FALSE","America/New_York"
-"16256","40.86666","-79.13758","Smicksburg","PA","Pennsylvania","TRUE","","2138","20.7","42063","Indiana","{""42063"": ""100""}","Indiana","42063","FALSE","FALSE","America/New_York"
-"16258","41.23343","-79.27797","Strattanville","PA","Pennsylvania","TRUE","","1876","21.2","42031","Clarion","{""42031"": ""100""}","Clarion","42031","FALSE","FALSE","America/New_York"
-"16259","40.92681","-79.45501","Templeton","PA","Pennsylvania","TRUE","","1994","16.6","42005","Armstrong","{""42005"": ""100""}","Armstrong","42005","FALSE","FALSE","America/New_York"
-"16260","41.39565","-79.22659","Vowinckel","PA","Pennsylvania","TRUE","","377","15.7","42031","Clarion","{""42031"": ""100""}","Clarion","42031","FALSE","FALSE","America/New_York"
-"16262","40.83904","-79.65217","Worthington","PA","Pennsylvania","TRUE","","2888","31.9","42005","Armstrong","{""42005"": ""100""}","Armstrong","42005","FALSE","FALSE","America/New_York"
-"16263","40.7974","-79.33506","Yatesboro","PA","Pennsylvania","TRUE","","261","64.2","42005","Armstrong","{""42005"": ""100""}","Armstrong","42005","FALSE","FALSE","America/New_York"
-"16301","41.45555","-79.6353","Oil City","PA","Pennsylvania","TRUE","","15418","55.8","42121","Venango","{""42121"": ""100""}","Venango","42121","FALSE","FALSE","America/New_York"
-"16311","41.45675","-80.03446","Carlton","PA","Pennsylvania","TRUE","","516","13.6","42085","Mercer","{""42085"": ""95.92"", ""42121"": ""4.08""}","Mercer|Venango","42085|42121","FALSE","FALSE","America/New_York"
-"16312","41.93214","-79.30324","Chandlers Valley","PA","Pennsylvania","TRUE","","0","0.0","42123","Warren","{""42123"": ""100""}","Warren","42123","FALSE","FALSE","America/New_York"
-"16313","41.7342","-79.12155","Clarendon","PA","Pennsylvania","TRUE","","1776","7.0","42123","Warren","{""42123"": ""100""}","Warren","42123","FALSE","FALSE","America/New_York"
-"16314","41.51705","-80.06621","Cochranton","PA","Pennsylvania","TRUE","","5365","22.7","42039","Crawford","{""42039"": ""86.94"", ""42085"": ""6.88"", ""42121"": ""6.17""}","Crawford|Mercer|Venango","42039|42085|42121","FALSE","FALSE","America/New_York"
-"16316","41.60181","-80.30344","Conneaut Lake","PA","Pennsylvania","TRUE","","5159","41.9","42039","Crawford","{""42039"": ""100""}","Crawford","42039","FALSE","FALSE","America/New_York"
-"16317","41.53254","-79.85367","Cooperstown","PA","Pennsylvania","TRUE","","1321","17.1","42121","Venango","{""42121"": ""98.42"", ""42039"": ""1.58""}","Venango|Crawford","42121|42039","FALSE","FALSE","America/New_York"
-"16319","41.31974","-79.63169","Cranberry","PA","Pennsylvania","TRUE","","1374","15.5","42121","Venango","{""42121"": ""75.5"", ""42031"": ""24.5""}","Venango|Clarion","42121|42031","FALSE","FALSE","America/New_York"
-"16321","41.57103","-79.3996","East Hickory","PA","Pennsylvania","TRUE","","47","14.2","42053","Forest","{""42053"": ""100""}","Forest","42053","FALSE","FALSE","America/New_York"
-"16322","41.59896","-79.3737","Endeavor","PA","Pennsylvania","TRUE","","81","5.1","42053","Forest","{""42053"": ""100""}","Forest","42053","FALSE","FALSE","America/New_York"
-"16323","41.41271","-79.82922","Franklin","PA","Pennsylvania","TRUE","","15624","59.9","42121","Venango","{""42121"": ""100""}","Venango","42121","FALSE","FALSE","America/New_York"
-"16326","41.3673","-79.43182","Fryburg","PA","Pennsylvania","TRUE","","380","21.5","42031","Clarion","{""42031"": ""100""}","Clarion","42031","FALSE","FALSE","America/New_York"
-"16327","41.63245","-79.96066","Guys Mills","PA","Pennsylvania","TRUE","","2916","17.0","42039","Crawford","{""42039"": ""100""}","Crawford","42039","FALSE","FALSE","America/New_York"
-"16328","41.65297","-79.72511","Hydetown","PA","Pennsylvania","TRUE","","346","2361.8","42039","Crawford","{""42039"": ""100""}","Crawford","42039","FALSE","FALSE","America/New_York"
-"16329","41.80994","-79.26449","Irvine","PA","Pennsylvania","TRUE","","511","24.0","42123","Warren","{""42123"": ""100""}","Warren","42123","FALSE","FALSE","America/New_York"
-"16331","41.29258","-79.56554","Kossuth","PA","Pennsylvania","TRUE","","58","17.0","42031","Clarion","{""42031"": ""100""}","Clarion","42031","FALSE","FALSE","America/New_York"
-"16332","41.35695","-79.368","Lickingville","PA","Pennsylvania","TRUE","","61","7.9","42031","Clarion","{""42031"": ""100""}","Clarion","42031","FALSE","FALSE","America/New_York"
-"16333","41.70345","-78.92856","Ludlow","PA","Pennsylvania","TRUE","","309","18.2","42083","McKean","{""42083"": ""100""}","McKean","42083","FALSE","FALSE","America/New_York"
-"16334","41.29108","-79.45521","Marble","PA","Pennsylvania","TRUE","","327","23.2","42031","Clarion","{""42031"": ""100""}","Clarion","42031","FALSE","FALSE","America/New_York"
-"16335","41.63092","-80.15633","Meadville","PA","Pennsylvania","TRUE","","27419","94.4","42039","Crawford","{""42039"": ""100""}","Crawford","42039","FALSE","FALSE","America/New_York"
-"16340","41.8024","-79.41765","Pittsfield","PA","Pennsylvania","TRUE","","1705","6.8","42123","Warren","{""42123"": ""100""}","Warren","42123","FALSE","FALSE","America/New_York"
-"16341","41.56607","-79.54934","Pleasantville","PA","Pennsylvania","TRUE","","1831","10.5","42121","Venango","{""42121"": ""87.54"", ""42053"": ""12.46""}","Venango|Forest","42121|42053","FALSE","FALSE","America/New_York"
-"16342","41.32265","-79.93081","Polk","PA","Pennsylvania","TRUE","","2139","13.4","42121","Venango","{""42121"": ""99.56"", ""42085"": ""0.44""}","Venango|Mercer","42121|42085","FALSE","FALSE","America/New_York"
-"16343","41.42206","-79.75234","Reno","PA","Pennsylvania","TRUE","","571","46.4","42121","Venango","{""42121"": ""100""}","Venango","42121","FALSE","FALSE","America/New_York"
-"16344","41.47041","-79.68456","Rouseville","PA","Pennsylvania","TRUE","","458","197.9","42121","Venango","{""42121"": ""100""}","Venango","42121","FALSE","FALSE","America/New_York"
-"16345","41.95196","-79.07196","Russell","PA","Pennsylvania","TRUE","","3541","15.3","42123","Warren","{""42123"": ""100""}","Warren","42123","FALSE","FALSE","America/New_York"
-"16346","41.3785","-79.67198","Seneca","PA","Pennsylvania","TRUE","","3214","75.5","42121","Venango","{""42121"": ""100""}","Venango","42121","FALSE","FALSE","America/New_York"
-"16347","41.6471","-79.06077","Sheffield","PA","Pennsylvania","TRUE","","2121","8.0","42123","Warren","{""42123"": ""94.77"", ""42053"": ""5.23""}","Warren|Forest","42123|42053","FALSE","FALSE","America/New_York"
-"16350","41.96557","-79.3343","Sugar Grove","PA","Pennsylvania","TRUE","","2577","21.6","42123","Warren","{""42123"": ""100""}","Warren","42123","FALSE","FALSE","America/New_York"
-"16351","41.67827","-79.35991","Tidioute","PA","Pennsylvania","TRUE","","1518","5.9","42123","Warren","{""42123"": ""94.76"", ""42053"": ""5.24""}","Warren|Forest","42123|42053","FALSE","FALSE","America/New_York"
-"16352","41.76719","-79.03847","Tiona","PA","Pennsylvania","TRUE","","206","6.2","42123","Warren","{""42123"": ""100""}","Warren","42123","FALSE","FALSE","America/New_York"
-"16353","41.50109","-79.377","Tionesta","PA","Pennsylvania","TRUE","","2753","7.3","42053","Forest","{""42053"": ""68.43"", ""42031"": ""28.55"", ""42121"": ""3.02""}","Forest|Clarion|Venango","42053|42031|42121","FALSE","FALSE","America/New_York"
-"16354","41.6137","-79.70641","Titusville","PA","Pennsylvania","TRUE","","10539","32.8","42039","Crawford","{""42039"": ""73.2"", ""42121"": ""24.62"", ""42123"": ""2.19""}","Crawford|Venango|Warren","42039|42121|42123","FALSE","FALSE","America/New_York"
-"16360","41.68422","-79.88966","Townville","PA","Pennsylvania","TRUE","","1305","17.5","42039","Crawford","{""42039"": ""100""}","Crawford","42039","FALSE","FALSE","America/New_York"
-"16361","41.38596","-79.34279","Tylersburg","PA","Pennsylvania","TRUE","","22","3.9","42031","Clarion","{""42031"": ""100""}","Clarion","42031","FALSE","FALSE","America/New_York"
-"16362","41.45033","-79.96236","Utica","PA","Pennsylvania","TRUE","","968","14.2","42121","Venango","{""42121"": ""92.56"", ""42085"": ""7.44""}","Venango|Mercer","42121|42085","FALSE","FALSE","America/New_York"
-"16364","41.36403","-79.51593","Venus","PA","Pennsylvania","TRUE","","1261","14.6","42121","Venango","{""42121"": ""69.56"", ""42031"": ""30.44""}","Venango|Clarion","42121|42031","FALSE","FALSE","America/New_York"
-"16365","41.84174","-79.15831","Warren","PA","Pennsylvania","TRUE","","17639","46.7","42123","Warren","{""42123"": ""100""}","Warren","42123","FALSE","FALSE","America/New_York"
-"16370","41.57139","-79.44023","West Hickory","PA","Pennsylvania","TRUE","","234","7.2","42053","Forest","{""42053"": ""100""}","Forest","42053","FALSE","FALSE","America/New_York"
-"16371","41.86682","-79.31889","Youngsville","PA","Pennsylvania","TRUE","","3115","39.3","42123","Warren","{""42123"": ""100""}","Warren","42123","FALSE","FALSE","America/New_York"
-"16372","41.19996","-79.87306","Clintonville","PA","Pennsylvania","TRUE","","448","145.8","42121","Venango","{""42121"": ""100""}","Venango","42121","FALSE","FALSE","America/New_York"
-"16373","41.20719","-79.6994","Emlenton","PA","Pennsylvania","TRUE","","3325","16.0","42121","Venango","{""42121"": ""64.33"", ""42031"": ""25.36"", ""42019"": ""10.31""}","Venango|Clarion|Butler","42121|42031|42019","FALSE","FALSE","America/New_York"
-"16374","41.26215","-79.81382","Kennerdell","PA","Pennsylvania","TRUE","","1846","10.0","42121","Venango","{""42121"": ""100""}","Venango","42121","FALSE","FALSE","America/New_York"
-"16401","41.8811","-80.40485","Albion","PA","Pennsylvania","TRUE","","6780","45.9","42049","Erie","{""42049"": ""98.39"", ""42039"": ""1.61""}","Erie|Crawford","42049|42039","FALSE","FALSE","America/New_York"
-"16402","41.95791","-79.46564","Bear Lake","PA","Pennsylvania","TRUE","","855","14.9","42123","Warren","{""42123"": ""100""}","Warren","42123","FALSE","FALSE","America/New_York"
-"16403","41.79277","-80.02015","Cambridge Springs","PA","Pennsylvania","TRUE","","6790","28.3","42039","Crawford","{""42039"": ""94.52"", ""42049"": ""5.48""}","Crawford|Erie","42039|42049","FALSE","FALSE","America/New_York"
-"16404","41.72561","-79.78907","Centerville","PA","Pennsylvania","TRUE","","3433","14.7","42039","Crawford","{""42039"": ""100""}","Crawford","42039","FALSE","FALSE","America/New_York"
-"16405","41.94691","-79.53472","Columbus","PA","Pennsylvania","TRUE","","801","12.8","42123","Warren","{""42123"": ""100""}","Warren","42123","FALSE","FALSE","America/New_York"
-"16406","41.74949","-80.36272","Conneautville","PA","Pennsylvania","TRUE","","3069","15.5","42039","Crawford","{""42039"": ""100""}","Crawford","42039","FALSE","FALSE","America/New_York"
-"16407","41.91978","-79.66328","Corry","PA","Pennsylvania","TRUE","","11034","39.6","42049","Erie","{""42049"": ""86.65"", ""42123"": ""11.8"", ""42039"": ""1.56""}","Erie|Warren|Crawford","42049|42123|42039","FALSE","FALSE","America/New_York"
-"16410","41.92107","-80.30603","Cranesville","PA","Pennsylvania","TRUE","","1727","29.6","42049","Erie","{""42049"": ""100""}","Erie","42049","FALSE","FALSE","America/New_York"
-"16411","41.98131","-80.4463","East Springfield","PA","Pennsylvania","TRUE","","1590","34.6","42049","Erie","{""42049"": ""100""}","Erie","42049","FALSE","FALSE","America/New_York"
-"16412","41.88323","-80.16634","Edinboro","PA","Pennsylvania","TRUE","","10629","51.2","42049","Erie","{""42049"": ""93.65"", ""42039"": ""6.35""}","Erie|Crawford","42049|42039","FALSE","FALSE","America/New_York"
-"16415","42.0309","-80.23041","Fairview","PA","Pennsylvania","TRUE","","9596","157.0","42049","Erie","{""42049"": ""100""}","Erie","42049","FALSE","FALSE","America/New_York"
-"16416","41.82575","-79.4727","Garland","PA","Pennsylvania","TRUE","","206","20.3","42123","Warren","{""42123"": ""100""}","Warren","42123","FALSE","FALSE","America/New_York"
-"16417","41.97087","-80.31327","Girard","PA","Pennsylvania","TRUE","","7861","65.4","42049","Erie","{""42049"": ""100""}","Erie","42049","FALSE","FALSE","America/New_York"
-"16420","41.69633","-79.54726","Grand Valley","PA","Pennsylvania","TRUE","","634","5.0","42123","Warren","{""42123"": ""100""}","Warren","42123","FALSE","FALSE","America/New_York"
-"16421","42.17118","-79.9328","Harborcreek","PA","Pennsylvania","TRUE","","2618","95.4","42049","Erie","{""42049"": ""100""}","Erie","42049","FALSE","FALSE","America/New_York"
-"16422","41.66559","-80.31447","Harmonsburg","PA","Pennsylvania","TRUE","","410","115.0","42039","Crawford","{""42039"": ""100""}","Crawford","42039","FALSE","FALSE","America/New_York"
-"16423","42.01841","-80.34342","Lake City","PA","Pennsylvania","TRUE","","4204","171.9","42049","Erie","{""42049"": ""100""}","Erie","42049","FALSE","FALSE","America/New_York"
-"16424","41.65917","-80.44202","Linesville","PA","Pennsylvania","TRUE","","4662","26.4","42039","Crawford","{""42039"": ""100""}","Crawford","42039","FALSE","FALSE","America/New_York"
-"16426","41.97966","-80.14223","McKean","PA","Pennsylvania","TRUE","","3548","50.6","42049","Erie","{""42049"": ""100""}","Erie","42049","FALSE","FALSE","America/New_York"
-"16427","41.87732","-79.96793","Mill Village","PA","Pennsylvania","TRUE","","176","262.1","42049","Erie","{""42049"": ""100""}","Erie","42049","FALSE","FALSE","America/New_York"
-"16428","42.17062","-79.82852","North East","PA","Pennsylvania","TRUE","","12279","64.6","42049","Erie","{""42049"": ""100""}","Erie","42049","FALSE","FALSE","America/New_York"
-"16433","41.73522","-80.14297","Saegertown","PA","Pennsylvania","TRUE","","5148","35.4","42039","Crawford","{""42039"": ""100""}","Crawford","42039","FALSE","FALSE","America/New_York"
-"16434","41.79378","-79.66503","Spartansburg","PA","Pennsylvania","TRUE","","3217","19.8","42039","Crawford","{""42039"": ""92.34"", ""42123"": ""7.66""}","Crawford|Warren","42039|42123","FALSE","FALSE","America/New_York"
-"16435","41.81823","-80.38408","Springboro","PA","Pennsylvania","TRUE","","1785","12.4","42039","Crawford","{""42039"": ""97.77"", ""42049"": ""2.23""}","Crawford|Erie","42039|42049","FALSE","FALSE","America/New_York"
-"16436","41.85371","-79.50646","Spring Creek","PA","Pennsylvania","TRUE","","865","7.2","42123","Warren","{""42123"": ""100""}","Warren","42123","FALSE","FALSE","America/New_York"
-"16438","41.89229","-79.84418","Union City","PA","Pennsylvania","TRUE","","7568","28.3","42049","Erie","{""42049"": ""80.77"", ""42039"": ""19.23""}","Erie|Crawford","42049|42039","FALSE","FALSE","America/New_York"
-"16440","41.78768","-80.12758","Venango","PA","Pennsylvania","TRUE","","888","31.3","42039","Crawford","{""42039"": ""100""}","Crawford","42039","FALSE","FALSE","America/New_York"
-"16441","41.95586","-79.98764","Waterford","PA","Pennsylvania","TRUE","","10562","36.2","42049","Erie","{""42049"": ""98.33"", ""42039"": ""1.67""}","Erie|Crawford","42049|42039","FALSE","FALSE","America/New_York"
-"16442","42.04031","-79.82596","Wattsburg","PA","Pennsylvania","TRUE","","3061","23.5","42049","Erie","{""42049"": ""100""}","Erie","42049","FALSE","FALSE","America/New_York"
-"16443","41.93882","-80.48026","West Springfield","PA","Pennsylvania","TRUE","","1247","42.5","42049","Erie","{""42049"": ""100""}","Erie","42049","FALSE","FALSE","America/New_York"
-"16444","41.87069","-80.12175","Edinboro","PA","Pennsylvania","TRUE","","1101","1620.4","42049","Erie","{""42049"": ""100""}","Erie","42049","FALSE","FALSE","America/New_York"
-"16501","42.12129","-80.08922","Erie","PA","Pennsylvania","TRUE","","1829","1065.2","42049","Erie","{""42049"": ""100""}","Erie","42049","FALSE","FALSE","America/New_York"
-"16502","42.11066","-80.10143","Erie","PA","Pennsylvania","TRUE","","15752","2352.7","42049","Erie","{""42049"": ""100""}","Erie","42049","FALSE","FALSE","America/New_York"
-"16503","42.12696","-80.06119","Erie","PA","Pennsylvania","TRUE","","16089","2544.5","42049","Erie","{""42049"": ""100""}","Erie","42049","FALSE","FALSE","America/New_York"
-"16504","42.10904","-80.04903","Erie","PA","Pennsylvania","TRUE","","15572","2156.9","42049","Erie","{""42049"": ""100""}","Erie","42049","FALSE","FALSE","America/New_York"
-"16505","42.11426","-80.14822","Erie","PA","Pennsylvania","TRUE","","15911","520.3","42049","Erie","{""42049"": ""100""}","Erie","42049","FALSE","FALSE","America/New_York"
-"16506","42.06376","-80.15268","Erie","PA","Pennsylvania","TRUE","","24438","670.3","42049","Erie","{""42049"": ""100""}","Erie","42049","FALSE","FALSE","America/New_York"
-"16507","42.13615","-80.08658","Erie","PA","Pennsylvania","TRUE","","9572","1719.7","42049","Erie","{""42049"": ""100""}","Erie","42049","FALSE","FALSE","America/New_York"
-"16508","42.09657","-80.09348","Erie","PA","Pennsylvania","TRUE","","16182","2209.8","42049","Erie","{""42049"": ""100""}","Erie","42049","FALSE","FALSE","America/New_York"
-"16509","42.05876","-80.04254","Erie","PA","Pennsylvania","TRUE","","26863","271.9","42049","Erie","{""42049"": ""100""}","Erie","42049","FALSE","FALSE","America/New_York"
-"16510","42.11289","-79.95458","Erie","PA","Pennsylvania","TRUE","","25952","306.4","42049","Erie","{""42049"": ""100""}","Erie","42049","FALSE","FALSE","America/New_York"
-"16511","42.16584","-79.99514","Erie","PA","Pennsylvania","TRUE","","11207","572.3","42049","Erie","{""42049"": ""100""}","Erie","42049","FALSE","FALSE","America/New_York"
-"16546","42.10496","-80.05346","Erie","PA","Pennsylvania","TRUE","","762","5299.0","42049","Erie","{""42049"": ""100""}","Erie","42049","FALSE","FALSE","America/New_York"
-"16563","42.11924","-79.98653","Erie","PA","Pennsylvania","TRUE","","1626","1403.4","42049","Erie","{""42049"": ""100""}","Erie","42049","FALSE","FALSE","America/New_York"
-"16601","40.55566","-78.37018","Altoona","PA","Pennsylvania","TRUE","","31545","140.8","42013","Blair","{""42013"": ""100""}","Blair","42013","FALSE","FALSE","America/New_York"
-"16602","40.5124","-78.37222","Altoona","PA","Pennsylvania","TRUE","","28968","755.6","42013","Blair","{""42013"": ""100""}","Blair","42013","FALSE","FALSE","America/New_York"
-"16611","40.5674","-78.10768","Alexandria","PA","Pennsylvania","TRUE","","2512","22.7","42061","Huntingdon","{""42061"": ""100""}","Huntingdon","42061","FALSE","FALSE","America/New_York"
-"16613","40.54804","-78.53759","Ashville","PA","Pennsylvania","TRUE","","1370","20.6","42021","Cambria","{""42021"": ""99.28"", ""42013"": ""0.72""}","Cambria|Blair","42021|42013","FALSE","FALSE","America/New_York"
-"16616","40.76829","-78.44556","Beccaria","PA","Pennsylvania","TRUE","","127","21.5","42033","Clearfield","{""42033"": ""100""}","Clearfield","42033","FALSE","FALSE","America/New_York"
-"16617","40.60364","-78.33053","Bellwood","PA","Pennsylvania","TRUE","","2851","678.0","42013","Blair","{""42013"": ""100""}","Blair","42013","FALSE","FALSE","America/New_York"
-"16619","40.66207","-78.44157","Blandburg","PA","Pennsylvania","TRUE","","313","9.1","42021","Cambria","{""42021"": ""100""}","Cambria","42021","FALSE","FALSE","America/New_York"
-"16620","40.8395","-78.35112","Brisbin","PA","Pennsylvania","TRUE","","358","161.6","42033","Clearfield","{""42033"": ""100""}","Clearfield","42033","FALSE","FALSE","America/New_York"
-"16621","40.23229","-78.12518","Broad Top","PA","Pennsylvania","TRUE","","716","21.2","42061","Huntingdon","{""42061"": ""100""}","Huntingdon","42061","FALSE","FALSE","America/New_York"
-"16622","40.32864","-78.06643","Calvin","PA","Pennsylvania","TRUE","","185","9.6","42061","Huntingdon","{""42061"": ""100""}","Huntingdon","42061","FALSE","FALSE","America/New_York"
-"16623","40.27155","-78.05223","Cassville","PA","Pennsylvania","TRUE","","553","16.5","42061","Huntingdon","{""42061"": ""100""}","Huntingdon","42061","FALSE","FALSE","America/New_York"
-"16624","40.5704","-78.60044","Chest Springs","PA","Pennsylvania","TRUE","","218","71.7","42021","Cambria","{""42021"": ""100""}","Cambria","42021","FALSE","FALSE","America/New_York"
-"16625","40.28208","-78.50833","Claysburg","PA","Pennsylvania","TRUE","","4060","48.9","42013","Blair","{""42013"": ""76.99"", ""42009"": ""23.01""}","Blair|Bedford","42013|42009","FALSE","FALSE","America/New_York"
-"16627","40.75578","-78.49757","Coalport","PA","Pennsylvania","TRUE","","2063","24.5","42033","Clearfield","{""42033"": ""96.14"", ""42021"": ""3.86""}","Clearfield|Cambria","42033|42021","FALSE","FALSE","America/New_York"
-"16630","40.45615","-78.57642","Cresson","PA","Pennsylvania","TRUE","","4869","171.6","42021","Cambria","{""42021"": ""100""}","Cambria","42021","FALSE","FALSE","America/New_York"
-"16631","40.27276","-78.34561","Curryville","PA","Pennsylvania","TRUE","","96","61.6","42013","Blair","{""42013"": ""100""}","Blair","42013","FALSE","FALSE","America/New_York"
-"16633","40.15742","-78.23491","Defiance","PA","Pennsylvania","TRUE","","278","317.6","42009","Bedford","{""42009"": ""100""}","Bedford","42009","FALSE","FALSE","America/New_York"
-"16634","40.21093","-78.17274","Dudley","PA","Pennsylvania","TRUE","","348","38.8","42061","Huntingdon","{""42061"": ""100""}","Huntingdon","42061","FALSE","FALSE","America/New_York"
-"16635","40.41513","-78.4893","Duncansville","PA","Pennsylvania","TRUE","","12477","84.8","42013","Blair","{""42013"": ""100""}","Blair","42013","FALSE","FALSE","America/New_York"
-"16636","40.60247","-78.50332","Dysart","PA","Pennsylvania","TRUE","","982","13.5","42021","Cambria","{""42021"": ""94.74"", ""42013"": ""5.26""}","Cambria|Blair","42021|42013","FALSE","FALSE","America/New_York"
-"16637","40.34111","-78.46718","East Freedom","PA","Pennsylvania","TRUE","","2157","44.4","42013","Blair","{""42013"": ""100""}","Blair","42013","FALSE","FALSE","America/New_York"
-"16638","40.3366","-78.20362","Entriken","PA","Pennsylvania","TRUE","","39","21.9","42061","Huntingdon","{""42061"": ""100""}","Huntingdon","42061","FALSE","FALSE","America/New_York"
-"16639","40.69468","-78.454","Fallentimber","PA","Pennsylvania","TRUE","","1534","16.4","42021","Cambria","{""42021"": ""90.7"", ""42033"": ""9.3""}","Cambria|Clearfield","42021|42033","FALSE","FALSE","America/New_York"
-"16640","40.7069","-78.57689","Flinton","PA","Pennsylvania","TRUE","","670","19.6","42021","Cambria","{""42021"": ""100""}","Cambria","42021","FALSE","FALSE","America/New_York"
-"16641","40.501","-78.54076","Gallitzin","PA","Pennsylvania","TRUE","","2464","56.6","42021","Cambria","{""42021"": ""94.57"", ""42013"": ""5.43""}","Cambria|Blair","42021|42013","FALSE","FALSE","America/New_York"
-"16645","40.7989","-78.49901","Glen Hope","PA","Pennsylvania","TRUE","","138","30.2","42033","Clearfield","{""42033"": ""100""}","Clearfield","42033","FALSE","FALSE","America/New_York"
-"16646","40.6807","-78.71439","Hastings","PA","Pennsylvania","TRUE","","2271","45.8","42021","Cambria","{""42021"": ""99.37"", ""42033"": ""0.63""}","Cambria|Clearfield","42021|42033","FALSE","FALSE","America/New_York"
-"16647","40.39906","-78.10079","Hesston","PA","Pennsylvania","TRUE","","682","12.0","42061","Huntingdon","{""42061"": ""100""}","Huntingdon","42061","FALSE","FALSE","America/New_York"
-"16648","40.43804","-78.33669","Hollidaysburg","PA","Pennsylvania","TRUE","","14648","98.2","42013","Blair","{""42013"": ""100""}","Blair","42013","FALSE","FALSE","America/New_York"
-"16650","40.11793","-78.28902","Hopewell","PA","Pennsylvania","TRUE","","1749","15.0","42009","Bedford","{""42009"": ""100""}","Bedford","42009","FALSE","FALSE","America/New_York"
-"16651","40.84911","-78.38025","Houtzdale","PA","Pennsylvania","TRUE","","5834","53.1","42033","Clearfield","{""42033"": ""100""}","Clearfield","42033","FALSE","FALSE","America/New_York"
-"16652","40.51478","-77.95686","Huntingdon","PA","Pennsylvania","TRUE","","17916","39.1","42061","Huntingdon","{""42061"": ""100""}","Huntingdon","42061","FALSE","FALSE","America/New_York"
-"16655","40.24865","-78.55158","Imler","PA","Pennsylvania","TRUE","","1451","16.1","42009","Bedford","{""42009"": ""94.57"", ""42013"": ""5.43""}","Bedford|Blair","42009|42013","FALSE","FALSE","America/New_York"
-"16656","40.80683","-78.56415","Irvona","PA","Pennsylvania","TRUE","","1293","17.4","42033","Clearfield","{""42033"": ""100""}","Clearfield","42033","FALSE","FALSE","America/New_York"
-"16657","40.32177","-78.17793","James Creek","PA","Pennsylvania","TRUE","","1380","10.2","42061","Huntingdon","{""42061"": ""99.18"", ""42009"": ""0.82""}","Huntingdon|Bedford","42061|42009","FALSE","FALSE","America/New_York"
-"16659","40.16155","-78.38969","Loysburg","PA","Pennsylvania","TRUE","","259","54.9","42009","Bedford","{""42009"": ""100""}","Bedford","42009","FALSE","FALSE","America/New_York"
-"16661","40.83603","-78.45653","Madera","PA","Pennsylvania","TRUE","","873","16.7","42033","Clearfield","{""42033"": ""100""}","Clearfield","42033","FALSE","FALSE","America/New_York"
-"16662","40.31357","-78.29615","Martinsburg","PA","Pennsylvania","TRUE","","5561","36.3","42013","Blair","{""42013"": ""93.63"", ""42009"": ""6.37""}","Blair|Bedford","42013|42009","FALSE","FALSE","America/New_York"
-"16664","40.17966","-78.4243","New Enterprise","PA","Pennsylvania","TRUE","","2091","19.8","42009","Bedford","{""42009"": ""100""}","Bedford","42009","FALSE","FALSE","America/New_York"
-"16665","40.38872","-78.43429","Newry","PA","Pennsylvania","TRUE","","328","313.5","42013","Blair","{""42013"": ""100""}","Blair","42013","FALSE","FALSE","America/New_York"
-"16666","40.87687","-78.32334","Osceola Mills","PA","Pennsylvania","TRUE","","3067","45.5","42033","Clearfield","{""42033"": ""86.11"", ""42027"": ""13.89""}","Clearfield|Centre","42033|42027","FALSE","FALSE","America/New_York"
-"16667","40.17991","-78.53107","Osterburg","PA","Pennsylvania","TRUE","","1454","33.1","42009","Bedford","{""42009"": ""100""}","Bedford","42009","FALSE","FALSE","America/New_York"
-"16668","40.652","-78.62041","Patton","PA","Pennsylvania","TRUE","","3307","23.6","42021","Cambria","{""42021"": ""100""}","Cambria","42021","FALSE","FALSE","America/New_York"
-"16669","40.65652","-77.90714","Petersburg","PA","Pennsylvania","TRUE","","2231","8.1","42061","Huntingdon","{""42061"": ""100""}","Huntingdon","42061","FALSE","FALSE","America/New_York"
-"16670","40.26267","-78.50805","Queen","PA","Pennsylvania","TRUE","","47","114.0","42009","Bedford","{""42009"": ""100""}","Bedford","42009","FALSE","FALSE","America/New_York"
-"16671","40.79412","-78.40205","Ramey","PA","Pennsylvania","TRUE","","504","79.7","42033","Clearfield","{""42033"": ""100""}","Clearfield","42033","FALSE","FALSE","America/New_York"
-"16672","40.17222","-78.24212","Riddlesburg","PA","Pennsylvania","TRUE","","214","19.0","42009","Bedford","{""42009"": ""100""}","Bedford","42009","FALSE","FALSE","America/New_York"
-"16673","40.31244","-78.39148","Roaring Spring","PA","Pennsylvania","TRUE","","5470","68.0","42013","Blair","{""42013"": ""86.9"", ""42009"": ""13.1""}","Blair|Bedford","42013|42009","FALSE","FALSE","America/New_York"
-"16674","40.18941","-78.08824","Robertsdale","PA","Pennsylvania","TRUE","","689","11.8","42061","Huntingdon","{""42061"": ""95.38"", ""42057"": ""4.62""}","Huntingdon|Fulton","42061|42057","FALSE","FALSE","America/New_York"
-"16677","40.81181","-78.24366","Sandy Ridge","PA","Pennsylvania","TRUE","","337","56.4","42027","Centre","{""42027"": ""100""}","Centre","42027","FALSE","FALSE","America/New_York"
-"16678","40.22378","-78.23818","Saxton","PA","Pennsylvania","TRUE","","2488","21.2","42009","Bedford","{""42009"": ""78.32"", ""42061"": ""21.68""}","Bedford|Huntingdon","42009|42061","FALSE","FALSE","America/New_York"
-"16679","40.15712","-78.19729","Six Mile Run","PA","Pennsylvania","TRUE","","767","14.1","42009","Bedford","{""42009"": ""100""}","Bedford","42009","FALSE","FALSE","America/New_York"
-"16680","40.75065","-78.40127","Smithmill","PA","Pennsylvania","TRUE","","292","16.7","42033","Clearfield","{""42033"": ""100""}","Clearfield","42033","FALSE","FALSE","America/New_York"
-"16682","40.26608","-78.45782","Sproul","PA","Pennsylvania","TRUE","","39","70.2","42013","Blair","{""42013"": ""100""}","Blair","42013","FALSE","FALSE","America/New_York"
-"16683","40.64783","-78.08316","Spruce Creek","PA","Pennsylvania","TRUE","","337","8.6","42061","Huntingdon","{""42061"": ""100""}","Huntingdon","42061","FALSE","FALSE","America/New_York"
-"16685","40.28753","-78.08262","Todd","PA","Pennsylvania","TRUE","","148","6.3","42061","Huntingdon","{""42061"": ""100""}","Huntingdon","42061","FALSE","FALSE","America/New_York"
-"16686","40.66829","-78.25087","Tyrone","PA","Pennsylvania","TRUE","","13198","37.7","42013","Blair","{""42013"": ""91.1"", ""42061"": ""7.23"", ""42027"": ""1.67""}","Blair|Huntingdon|Centre","42013|42061|42027","FALSE","FALSE","America/New_York"
-"16689","40.10467","-78.09632","Waterfall","PA","Pennsylvania","TRUE","","466","8.8","42057","Fulton","{""42057"": ""100""}","Fulton","42057","FALSE","FALSE","America/New_York"
-"16691","40.07749","-78.14592","Wells Tannery","PA","Pennsylvania","TRUE","","299","4.0","42057","Fulton","{""42057"": ""100""}","Fulton","42057","FALSE","FALSE","America/New_York"
-"16692","40.75601","-78.72003","Westover","PA","Pennsylvania","TRUE","","655","15.0","42033","Clearfield","{""42033"": ""100""}","Clearfield","42033","FALSE","FALSE","America/New_York"
-"16693","40.4727","-78.21444","Williamsburg","PA","Pennsylvania","TRUE","","4228","21.8","42013","Blair","{""42013"": ""100""}","Blair","42013","FALSE","FALSE","America/New_York"
-"16694","40.15625","-78.14856","Wood","PA","Pennsylvania","TRUE","","106","18.5","42009","Bedford","{""42009"": ""50"", ""42061"": ""46.85"", ""42057"": ""3.15""}","Bedford|Huntingdon|Fulton","42009|42061|42057","FALSE","FALSE","America/New_York"
-"16695","40.20859","-78.36079","Woodbury","PA","Pennsylvania","TRUE","","1193","29.2","42009","Bedford","{""42009"": ""100""}","Bedford","42009","FALSE","FALSE","America/New_York"
-"16699","40.44736","-78.56054","Cresson","PA","Pennsylvania","TRUE","","0","0.0","42021","Cambria","{""42021"": ""100""}","Cambria","42021","FALSE","FALSE","America/New_York"
-"16701","41.9179","-78.76293","Bradford","PA","Pennsylvania","TRUE","","17126","30.6","42083","McKean","{""42083"": ""99.93"", ""42123"": ""0.07""}","McKean|Warren","42083|42123","FALSE","FALSE","America/New_York"
-"16720","41.5841","-78.03707","Austin","PA","Pennsylvania","TRUE","","1294","1.7","42105","Potter","{""42105"": ""92.6"", ""42023"": ""4.74"", ""42083"": ""2.66""}","Potter|Cameron|McKean","42105|42023|42083","FALSE","FALSE","America/New_York"
-"16724","41.73335","-78.37117","Crosby","PA","Pennsylvania","TRUE","","118","20.2","42083","McKean","{""42083"": ""100""}","McKean","42083","FALSE","FALSE","America/New_York"
-"16725","41.90645","-78.65296","Custer City","PA","Pennsylvania","TRUE","","268","236.5","42083","McKean","{""42083"": ""100""}","McKean","42083","FALSE","FALSE","America/New_York"
-"16726","41.80767","-78.57296","Cyclone","PA","Pennsylvania","TRUE","","737","11.2","42083","McKean","{""42083"": ""100""}","McKean","42083","FALSE","FALSE","America/New_York"
-"16727","41.981","-78.53002","Derrick City","PA","Pennsylvania","TRUE","","250","22.4","42083","McKean","{""42083"": ""100""}","McKean","42083","FALSE","FALSE","America/New_York"
-"16728","41.56577","-78.92422","De Young","PA","Pennsylvania","TRUE","","52","3.6","42047","Elk","{""42047"": ""100""}","Elk","42047","FALSE","FALSE","America/New_York"
-"16729","41.96243","-78.47598","Duke Center","PA","Pennsylvania","TRUE","","917","25.6","42083","McKean","{""42083"": ""100""}","McKean","42083","FALSE","FALSE","America/New_York"
-"16730","41.81688","-78.42266","East Smethport","PA","Pennsylvania","TRUE","","76","50.2","42083","McKean","{""42083"": ""100""}","McKean","42083","FALSE","FALSE","America/New_York"
-"16731","41.94555","-78.37465","Eldred","PA","Pennsylvania","TRUE","","2341","15.2","42083","McKean","{""42083"": ""100""}","McKean","42083","FALSE","FALSE","America/New_York"
-"16732","41.85724","-78.61727","Gifford","PA","Pennsylvania","TRUE","","238","13.9","42083","McKean","{""42083"": ""100""}","McKean","42083","FALSE","FALSE","America/New_York"
-"16733","41.70324","-78.59526","Hazel Hurst","PA","Pennsylvania","TRUE","","161","5.4","42083","McKean","{""42083"": ""100""}","McKean","42083","FALSE","FALSE","America/New_York"
-"16734","41.61853","-78.84053","James City","PA","Pennsylvania","TRUE","","264","125.5","42047","Elk","{""42047"": ""100""}","Elk","42047","FALSE","FALSE","America/New_York"
-"16735","41.64109","-78.81382","Kane","PA","Pennsylvania","TRUE","","5875","8.3","42083","McKean","{""42083"": ""95.15"", ""42047"": ""4.85""}","McKean|Elk","42083|42047","FALSE","FALSE","America/New_York"
-"16738","41.80802","-78.71912","Lewis Run","PA","Pennsylvania","TRUE","","2498","14.7","42083","McKean","{""42083"": ""100""}","McKean","42083","FALSE","FALSE","America/New_York"
-"16740","41.70402","-78.57091","Mount Jewett","PA","Pennsylvania","TRUE","","1034","9.4","42083","McKean","{""42083"": ""100""}","McKean","42083","FALSE","FALSE","America/New_York"
-"16743","41.78909","-78.26196","Port Allegany","PA","Pennsylvania","TRUE","","3808","13.7","42083","McKean","{""42083"": ""97.59"", ""42105"": ""2.41""}","McKean|Potter","42083|42105","FALSE","FALSE","America/New_York"
-"16744","41.86705","-78.56709","Rew","PA","Pennsylvania","TRUE","","172","9.7","42083","McKean","{""42083"": ""100""}","McKean","42083","FALSE","FALSE","America/New_York"
-"16745","41.92213","-78.48345","Rixford","PA","Pennsylvania","TRUE","","552","19.0","42083","McKean","{""42083"": ""100""}","McKean","42083","FALSE","FALSE","America/New_York"
-"16746","41.79396","-78.13637","Roulette","PA","Pennsylvania","TRUE","","1248","11.6","42105","Potter","{""42105"": ""100""}","Potter","42105","FALSE","FALSE","America/New_York"
-"16748","41.94449","-78.15296","Shinglehouse","PA","Pennsylvania","TRUE","","2718","10.2","42105","Potter","{""42105"": ""77.58"", ""42083"": ""22.42""}","Potter|McKean","42105|42083","FALSE","FALSE","America/New_York"
-"16749","41.76542","-78.4365","Smethport","PA","Pennsylvania","TRUE","","4031","9.5","42083","McKean","{""42083"": ""100""}","McKean","42083","FALSE","FALSE","America/New_York"
-"16750","41.88542","-78.29434","Turtlepoint","PA","Pennsylvania","TRUE","","505","10.1","42083","McKean","{""42083"": ""100""}","McKean","42083","FALSE","FALSE","America/New_York"
-"16801","40.77888","-77.84134","State College","PA","Pennsylvania","TRUE","","45280","559.1","42027","Centre","{""42027"": ""100""}","Centre","42027","FALSE","FALSE","America/New_York"
-"16802","40.80269","-77.86063","University Park","PA","Pennsylvania","TRUE","","11485","5317.4","42027","Centre","{""42027"": ""100""}","Centre","42027","FALSE","FALSE","America/New_York"
-"16803","40.80168","-77.89958","State College","PA","Pennsylvania","TRUE","","25708","409.4","42027","Centre","{""42027"": ""100""}","Centre","42027","FALSE","FALSE","America/New_York"
-"16820","40.89564","-77.39238","Aaronsburg","PA","Pennsylvania","TRUE","","1327","18.1","42027","Centre","{""42027"": ""100""}","Centre","42027","FALSE","FALSE","America/New_York"
-"16821","40.96282","-78.20181","Allport","PA","Pennsylvania","TRUE","","321","115.6","42033","Clearfield","{""42033"": ""100""}","Clearfield","42033","FALSE","FALSE","America/New_York"
-"16822","41.15516","-77.70409","Beech Creek","PA","Pennsylvania","TRUE","","2202","8.6","42035","Clinton","{""42035"": ""83.53"", ""42027"": ""16.47""}","Clinton|Centre","42035|42027","FALSE","FALSE","America/New_York"
-"16823","40.93769","-77.77303","Bellefonte","PA","Pennsylvania","TRUE","","30367","91.4","42027","Centre","{""42027"": ""100""}","Centre","42027","FALSE","FALSE","America/New_York"
-"16825","40.98624","-78.31193","Bigler","PA","Pennsylvania","TRUE","","257","184.8","42033","Clearfield","{""42033"": ""100""}","Clearfield","42033","FALSE","FALSE","America/New_York"
-"16826","41.0642","-77.59501","Blanchard","PA","Pennsylvania","TRUE","","461","54.3","42027","Centre","{""42027"": ""100""}","Centre","42027","FALSE","FALSE","America/New_York"
-"16827","40.76094","-77.76561","Boalsburg","PA","Pennsylvania","TRUE","","4693","103.4","42027","Centre","{""42027"": ""100""}","Centre","42027","FALSE","FALSE","America/New_York"
-"16828","40.81299","-77.68795","Centre Hall","PA","Pennsylvania","TRUE","","4427","30.4","42027","Centre","{""42027"": ""100""}","Centre","42027","FALSE","FALSE","America/New_York"
-"16829","41.08391","-77.89326","Clarence","PA","Pennsylvania","TRUE","","730","8.8","42027","Centre","{""42027"": ""100""}","Centre","42027","FALSE","FALSE","America/New_York"
-"16830","41.08445","-78.43609","Clearfield","PA","Pennsylvania","TRUE","","13264","40.0","42033","Clearfield","{""42033"": ""100""}","Clearfield","42033","FALSE","FALSE","America/New_York"
-"16832","40.84161","-77.46914","Coburn","PA","Pennsylvania","TRUE","","526","11.8","42027","Centre","{""42027"": ""100""}","Centre","42027","FALSE","FALSE","America/New_York"
-"16833","40.94064","-78.57434","Curwensville","PA","Pennsylvania","TRUE","","5332","28.8","42033","Clearfield","{""42033"": ""100""}","Clearfield","42033","FALSE","FALSE","America/New_York"
-"16834","41.03914","-78.10393","Drifting","PA","Pennsylvania","TRUE","","280","5.9","42033","Clearfield","{""42033"": ""100""}","Clearfield","42033","FALSE","FALSE","America/New_York"
-"16835","40.90753","-77.8773","Fleming","PA","Pennsylvania","TRUE","","203","469.8","42027","Centre","{""42027"": ""100""}","Centre","42027","FALSE","FALSE","America/New_York"
-"16836","41.14532","-78.2706","Frenchville","PA","Pennsylvania","TRUE","","1098","3.5","42033","Clearfield","{""42033"": ""100""}","Clearfield","42033","FALSE","FALSE","America/New_York"
-"16837","40.94576","-78.47494","Glen Richey","PA","Pennsylvania","TRUE","","197","89.9","42033","Clearfield","{""42033"": ""100""}","Clearfield","42033","FALSE","FALSE","America/New_York"
-"16838","40.99369","-78.64028","Grampian","PA","Pennsylvania","TRUE","","1792","16.9","42033","Clearfield","{""42033"": ""100""}","Clearfield","42033","FALSE","FALSE","America/New_York"
-"16839","41.00357","-78.11043","Grassflat","PA","Pennsylvania","TRUE","","800","288.9","42033","Clearfield","{""42033"": ""100""}","Clearfield","42033","FALSE","FALSE","America/New_York"
-"16840","40.92303","-78.20378","Hawk Run","PA","Pennsylvania","TRUE","","504","256.6","42033","Clearfield","{""42033"": ""100""}","Clearfield","42033","FALSE","FALSE","America/New_York"
-"16841","41.03834","-77.69914","Howard","PA","Pennsylvania","TRUE","","6300","18.6","42027","Centre","{""42027"": ""99.12"", ""42035"": ""0.88""}","Centre|Clinton","42027|42035","FALSE","FALSE","America/New_York"
-"16843","41.00216","-78.46608","Hyde","PA","Pennsylvania","TRUE","","578","559.0","42033","Clearfield","{""42033"": ""100""}","Clearfield","42033","FALSE","FALSE","America/New_York"
-"16844","40.90908","-77.93204","Julian","PA","Pennsylvania","TRUE","","2699","16.6","42027","Centre","{""42027"": ""100""}","Centre","42027","FALSE","FALSE","America/New_York"
-"16845","41.1506","-78.03224","Karthaus","PA","Pennsylvania","TRUE","","970","3.1","42033","Clearfield","{""42033"": ""65.9"", ""42027"": ""34.1""}","Clearfield|Centre","42033|42027","FALSE","FALSE","America/New_York"
-"16847","40.99921","-78.16469","Kylertown","PA","Pennsylvania","TRUE","","263","78.7","42033","Clearfield","{""42033"": ""100""}","Clearfield","42033","FALSE","FALSE","America/New_York"
-"16848","41.0114","-77.5363","Lamar","PA","Pennsylvania","TRUE","","375","378.9","42035","Clinton","{""42035"": ""100""}","Clinton","42035","FALSE","FALSE","America/New_York"
-"16849","40.96044","-78.11433","Lanse","PA","Pennsylvania","TRUE","","236","22.1","42033","Clearfield","{""42033"": ""100""}","Clearfield","42033","FALSE","FALSE","America/New_York"
-"16851","40.82189","-77.78713","Lemont","PA","Pennsylvania","TRUE","","593","55.5","42027","Centre","{""42027"": ""100""}","Centre","42027","FALSE","FALSE","America/New_York"
-"16852","40.93704","-77.51867","Madisonburg","PA","Pennsylvania","TRUE","","321","36.9","42027","Centre","{""42027"": ""100""}","Centre","42027","FALSE","FALSE","America/New_York"
-"16853","40.93909","-77.78707","Milesburg","PA","Pennsylvania","TRUE","","161","233.4","42027","Centre","{""42027"": ""100""}","Centre","42027","FALSE","FALSE","America/New_York"
-"16854","40.89799","-77.47309","Millheim","PA","Pennsylvania","TRUE","","614","99.2","42027","Centre","{""42027"": ""100""}","Centre","42027","FALSE","FALSE","America/New_York"
-"16855","40.99735","-78.37705","Mineral Springs","PA","Pennsylvania","TRUE","","146","21.1","42033","Clearfield","{""42033"": ""100""}","Clearfield","42033","FALSE","FALSE","America/New_York"
-"16858","41.00053","-78.20035","Morrisdale","PA","Pennsylvania","TRUE","","3737","26.9","42033","Clearfield","{""42033"": ""100""}","Clearfield","42033","FALSE","FALSE","America/New_York"
-"16859","41.04074","-78.02324","Moshannon","PA","Pennsylvania","TRUE","","566","9.6","42027","Centre","{""42027"": ""100""}","Centre","42027","FALSE","FALSE","America/New_York"
-"16860","40.94675","-78.17069","Munson","PA","Pennsylvania","TRUE","","194","13.1","42033","Clearfield","{""42033"": ""59.2"", ""42027"": ""40.8""}","Clearfield|Centre","42033|42027","FALSE","FALSE","America/New_York"
-"16861","40.86515","-78.52366","New Millport","PA","Pennsylvania","TRUE","","303","9.6","42033","Clearfield","{""42033"": ""100""}","Clearfield","42033","FALSE","FALSE","America/New_York"
-"16863","40.91038","-78.47498","Olanta","PA","Pennsylvania","TRUE","","648","9.8","42033","Clearfield","{""42033"": ""100""}","Clearfield","42033","FALSE","FALSE","America/New_York"
-"16865","40.71019","-77.99599","Pennsylvania Furnace","PA","Pennsylvania","TRUE","","1949","21.4","42027","Centre","{""42027"": ""90.1"", ""42061"": ""9.9""}","Centre|Huntingdon","42027|42061","FALSE","FALSE","America/New_York"
-"16866","40.86697","-78.17477","Philipsburg","PA","Pennsylvania","TRUE","","10072","24.3","42027","Centre","{""42027"": ""57.71"", ""42033"": ""42.29""}","Centre|Clearfield","42027|42033","FALSE","FALSE","America/New_York"
-"16868","40.73196","-77.88061","Pine Grove Mills","PA","Pennsylvania","TRUE","","400","257.3","42027","Centre","{""42027"": ""100""}","Centre","42027","FALSE","FALSE","America/New_York"
-"16870","40.80007","-78.06028","Port Matilda","PA","Pennsylvania","TRUE","","7298","41.4","42027","Centre","{""42027"": ""100""}","Centre","42027","FALSE","FALSE","America/New_York"
-"16871","41.18599","-78.02609","Pottersdale","PA","Pennsylvania","TRUE","","30","0.5","42033","Clearfield","{""42033"": ""54.35"", ""42035"": ""45.65""}","Clearfield|Clinton","42033|42035","FALSE","FALSE","America/New_York"
-"16872","40.9674","-77.35842","Rebersburg","PA","Pennsylvania","TRUE","","1893","12.6","42027","Centre","{""42027"": ""99.68"", ""42035"": ""0.32""}","Centre|Clinton","42027|42035","FALSE","FALSE","America/New_York"
-"16874","40.99793","-77.95747","Snow Shoe","PA","Pennsylvania","TRUE","","1327","14.8","42027","Centre","{""42027"": ""100""}","Centre","42027","FALSE","FALSE","America/New_York"
-"16875","40.8473","-77.5718","Spring Mills","PA","Pennsylvania","TRUE","","4081","20.2","42027","Centre","{""42027"": ""100""}","Centre","42027","FALSE","FALSE","America/New_York"
-"16876","40.96634","-78.2909","Wallaceton","PA","Pennsylvania","TRUE","","267","94.5","42033","Clearfield","{""42033"": ""100""}","Clearfield","42033","FALSE","FALSE","America/New_York"
-"16877","40.73859","-78.06109","Warriors Mark","PA","Pennsylvania","TRUE","","2092","25.7","42061","Huntingdon","{""42061"": ""64.76"", ""42027"": ""35.24""}","Huntingdon|Centre","42061|42027","FALSE","FALSE","America/New_York"
-"16878","40.94825","-78.32864","West Decatur","PA","Pennsylvania","TRUE","","1756","33.2","42033","Clearfield","{""42033"": ""100""}","Clearfield","42033","FALSE","FALSE","America/New_York"
-"16879","40.96977","-78.15064","Winburne","PA","Pennsylvania","TRUE","","411","74.5","42033","Clearfield","{""42033"": ""100""}","Clearfield","42033","FALSE","FALSE","America/New_York"
-"16881","41.0262","-78.31399","Woodland","PA","Pennsylvania","TRUE","","2379","29.3","42033","Clearfield","{""42033"": ""100""}","Clearfield","42033","FALSE","FALSE","America/New_York"
-"16882","40.91244","-77.32347","Woodward","PA","Pennsylvania","TRUE","","387","5.7","42027","Centre","{""42027"": ""100""}","Centre","42027","FALSE","FALSE","America/New_York"
-"16901","41.73083","-77.32717","Wellsboro","PA","Pennsylvania","TRUE","","10245","17.0","42117","Tioga","{""42117"": ""100""}","Tioga","42117","FALSE","FALSE","America/New_York"
-"16911","41.65672","-77.12533","Arnot","PA","Pennsylvania","TRUE","","479","21.3","42117","Tioga","{""42117"": ""100""}","Tioga","42117","FALSE","FALSE","America/New_York"
-"16912","41.67764","-77.04331","Blossburg","PA","Pennsylvania","TRUE","","2358","36.0","42117","Tioga","{""42117"": ""100""}","Tioga","42117","FALSE","FALSE","America/New_York"
-"16914","41.86377","-76.78241","Columbia Cross Roads","PA","Pennsylvania","TRUE","","2224","11.4","42015","Bradford","{""42015"": ""95.99"", ""42117"": ""4.01""}","Bradford|Tioga","42015|42117","FALSE","FALSE","America/New_York"
-"16915","41.78312","-77.96438","Coudersport","PA","Pennsylvania","TRUE","","6134","9.7","42105","Potter","{""42105"": ""100""}","Potter","42105","FALSE","FALSE","America/New_York"
-"16917","41.72843","-77.05971","Covington","PA","Pennsylvania","TRUE","","1112","9.7","42117","Tioga","{""42117"": ""100""}","Tioga","42117","FALSE","FALSE","America/New_York"
-"16920","41.98208","-77.28831","Elkland","PA","Pennsylvania","TRUE","","1976","80.1","42117","Tioga","{""42117"": ""100""}","Tioga","42117","FALSE","FALSE","America/New_York"
-"16921","41.71164","-77.55895","Gaines","PA","Pennsylvania","TRUE","","408","2.6","42117","Tioga","{""42117"": ""100""}","Tioga","42117","FALSE","FALSE","America/New_York"
-"16922","41.66899","-77.69782","Galeton","PA","Pennsylvania","TRUE","","1868","4.7","42105","Potter","{""42105"": ""100""}","Potter","42105","FALSE","FALSE","America/New_York"
-"16923","41.94018","-77.87242","Genesee","PA","Pennsylvania","TRUE","","1482","7.3","42105","Potter","{""42105"": ""100""}","Potter","42105","FALSE","FALSE","America/New_York"
-"16925","41.9516","-76.79174","Gillett","PA","Pennsylvania","TRUE","","3484","17.4","42015","Bradford","{""42015"": ""100""}","Bradford","42015","FALSE","FALSE","America/New_York"
-"16926","41.72064","-76.69837","Granville Summit","PA","Pennsylvania","TRUE","","886","14.1","42015","Bradford","{""42015"": ""100""}","Bradford","42015","FALSE","FALSE","America/New_York"
-"16927","41.95872","-77.65875","Harrison Valley","PA","Pennsylvania","TRUE","","494","10.1","42105","Potter","{""42105"": ""100""}","Potter","42105","FALSE","FALSE","America/New_York"
-"16928","41.9534","-77.43454","Knoxville","PA","Pennsylvania","TRUE","","1479","16.6","42117","Tioga","{""42117"": ""100""}","Tioga","42117","FALSE","FALSE","America/New_York"
-"16929","41.97086","-77.1486","Lawrenceville","PA","Pennsylvania","TRUE","","2529","21.1","42117","Tioga","{""42117"": ""100""}","Tioga","42117","FALSE","FALSE","America/New_York"
-"16930","41.5739","-77.14507","Liberty","PA","Pennsylvania","TRUE","","1237","7.2","42117","Tioga","{""42117"": ""82.15"", ""42081"": ""17.85""}","Tioga|Lycoming","42117|42081","FALSE","FALSE","America/New_York"
-"16932","41.77608","-76.94236","Mainesburg","PA","Pennsylvania","TRUE","","867","15.7","42117","Tioga","{""42117"": ""100""}","Tioga","42117","FALSE","FALSE","America/New_York"
-"16933","41.81906","-77.06663","Mansfield","PA","Pennsylvania","TRUE","","6518","25.8","42117","Tioga","{""42117"": ""100""}","Tioga","42117","FALSE","FALSE","America/New_York"
-"16935","41.86636","-77.3128","Middlebury Center","PA","Pennsylvania","TRUE","","1177","9.1","42117","Tioga","{""42117"": ""100""}","Tioga","42117","FALSE","FALSE","America/New_York"
-"16936","41.94603","-76.96035","Millerton","PA","Pennsylvania","TRUE","","2008","16.1","42117","Tioga","{""42117"": ""90.69"", ""42015"": ""9.31""}","Tioga|Bradford","42117|42015","FALSE","FALSE","America/New_York"
-"16937","41.96562","-77.71116","Mills","PA","Pennsylvania","TRUE","","151","7.9","42105","Potter","{""42105"": ""100""}","Potter","42105","FALSE","FALSE","America/New_York"
-"16938","41.57618","-77.35357","Morris","PA","Pennsylvania","TRUE","","696","2.5","42117","Tioga","{""42117"": ""80.59"", ""42081"": ""19.41""}","Tioga|Lycoming","42117|42081","FALSE","FALSE","America/New_York"
-"16939","41.67105","-77.02225","Morris Run","PA","Pennsylvania","TRUE","","279","39.9","42117","Tioga","{""42117"": ""100""}","Tioga","42117","FALSE","FALSE","America/New_York"
-"16940","41.98537","-77.23822","Nelson","PA","Pennsylvania","TRUE","","222","36.7","42117","Tioga","{""42117"": ""100""}","Tioga","42117","FALSE","FALSE","America/New_York"
-"16941","41.98838","-77.75798","Genesee","PA","Pennsylvania","TRUE","","69","10.9","42105","Potter","{""42105"": ""100""}","Potter","42105","FALSE","FALSE","America/New_York"
-"16942","41.96248","-77.35216","Osceola","PA","Pennsylvania","TRUE","","830","13.5","42117","Tioga","{""42117"": ""100""}","Tioga","42117","FALSE","FALSE","America/New_York"
-"16943","41.84084","-77.61545","Sabinsville","PA","Pennsylvania","TRUE","","505","5.2","42117","Tioga","{""42117"": ""65.94"", ""42105"": ""34.06""}","Tioga|Potter","42117|42105","FALSE","FALSE","America/New_York"
-"16946","41.90894","-77.13781","Tioga","PA","Pennsylvania","TRUE","","2389","15.0","42117","Tioga","{""42117"": ""100""}","Tioga","42117","FALSE","FALSE","America/New_York"
-"16947","41.76854","-76.79508","Troy","PA","Pennsylvania","TRUE","","4699","15.7","42015","Bradford","{""42015"": ""95.5"", ""42117"": ""4.5""}","Bradford|Tioga","42015|42117","FALSE","FALSE","America/New_York"
-"16948","41.84897","-77.75802","Ulysses","PA","Pennsylvania","TRUE","","1540","6.4","42105","Potter","{""42105"": ""100""}","Potter","42105","FALSE","FALSE","America/New_York"
-"16950","41.90101","-77.53337","Westfield","PA","Pennsylvania","TRUE","","3190","10.7","42117","Tioga","{""42117"": ""91.27"", ""42105"": ""8.73""}","Tioga|Potter","42117|42105","FALSE","FALSE","America/New_York"
-"17002","40.50755","-77.83922","Allensville","PA","Pennsylvania","TRUE","","815","23.0","42087","Mifflin","{""42087"": ""79.72"", ""42061"": ""20.28""}","Mifflin|Huntingdon","42087|42061","FALSE","FALSE","America/New_York"
-"17003","40.36394","-76.5649","Annville","PA","Pennsylvania","TRUE","","11903","96.6","42075","Lebanon","{""42075"": ""100""}","Lebanon","42075","FALSE","FALSE","America/New_York"
-"17004","40.60064","-77.73048","Belleville","PA","Pennsylvania","TRUE","","4934","39.0","42087","Mifflin","{""42087"": ""100""}","Mifflin","42087","FALSE","FALSE","America/New_York"
-"17005","40.60285","-76.80968","Berrysburg","PA","Pennsylvania","TRUE","","339","230.0","42043","Dauphin","{""42043"": ""100""}","Dauphin","42043","FALSE","FALSE","America/New_York"
-"17006","40.28559","-77.54373","Blain","PA","Pennsylvania","TRUE","","1105","5.5","42099","Perry","{""42099"": ""100""}","Perry","42099","FALSE","FALSE","America/New_York"
-"17007","40.13083","-77.1182","Boiling Springs","PA","Pennsylvania","TRUE","","6228","115.7","42041","Cumberland","{""42041"": ""100""}","Cumberland","42041","FALSE","FALSE","America/New_York"
-"17009","40.63605","-77.5658","Burnham","PA","Pennsylvania","TRUE","","1958","508.7","42087","Mifflin","{""42087"": ""100""}","Mifflin","42087","FALSE","FALSE","America/New_York"
-"17010","40.27768","-76.58177","Campbelltown","PA","Pennsylvania","TRUE","","373","4179.2","42075","Lebanon","{""42075"": ""100""}","Lebanon","42075","FALSE","FALSE","America/New_York"
-"17011","40.23514","-76.92916","Camp Hill","PA","Pennsylvania","TRUE","","36532","1083.8","42041","Cumberland","{""42041"": ""96.04"", ""42133"": ""3.96""}","Cumberland|York","42041|42133","FALSE","FALSE","America/New_York"
-"17013","40.24171","-77.19827","Carlisle","PA","Pennsylvania","TRUE","","36184","325.7","42041","Cumberland","{""42041"": ""100""}","Cumberland","42041","FALSE","FALSE","America/New_York"
-"17015","40.17719","-77.23116","Carlisle","PA","Pennsylvania","TRUE","","20923","71.1","42041","Cumberland","{""42041"": ""100""}","Cumberland","42041","FALSE","FALSE","America/New_York"
-"17016","40.27754","-76.40238","Cornwall","PA","Pennsylvania","TRUE","","963","513.1","42075","Lebanon","{""42075"": ""100""}","Lebanon","42075","FALSE","FALSE","America/New_York"
-"17017","40.64332","-76.88259","Dalmatia","PA","Pennsylvania","TRUE","","1589","28.2","42097","Northumberland","{""42097"": ""92.71"", ""42043"": ""7.29""}","Northumberland|Dauphin","42097|42043","FALSE","FALSE","America/New_York"
-"17018","40.40248","-76.8812","Dauphin","PA","Pennsylvania","TRUE","","4239","41.1","42043","Dauphin","{""42043"": ""100""}","Dauphin","42043","FALSE","FALSE","America/New_York"
-"17019","40.09011","-77.02253","Dillsburg","PA","Pennsylvania","TRUE","","18237","111.9","42133","York","{""42133"": ""98.83"", ""42041"": ""0.68"", ""42001"": ""0.49""}","York|Cumberland|Adams","42133|42041|42001","FALSE","FALSE","America/New_York"
-"17020","40.41182","-77.04341","Duncannon","PA","Pennsylvania","TRUE","","9147","61.4","42099","Perry","{""42099"": ""99.83"", ""42043"": ""0.17""}","Perry|Dauphin","42099|42043","FALSE","FALSE","America/New_York"
-"17021","40.33957","-77.65933","East Waterford","PA","Pennsylvania","TRUE","","855","6.3","42067","Juniata","{""42067"": ""89.61"", ""42099"": ""9.47"", ""42055"": ""0.92""}","Juniata|Perry|Franklin","42067|42099|42055","FALSE","FALSE","America/New_York"
-"17022","40.16632","-76.60867","Elizabethtown","PA","Pennsylvania","TRUE","","30855","216.5","42071","Lancaster","{""42071"": ""88.52"", ""42043"": ""11.48""}","Lancaster|Dauphin","42071|42043","FALSE","FALSE","America/New_York"
-"17023","40.58425","-76.81627","Elizabethville","PA","Pennsylvania","TRUE","","3500","60.0","42043","Dauphin","{""42043"": ""100""}","Dauphin","42043","FALSE","FALSE","America/New_York"
-"17024","40.4096","-77.31211","Elliottsburg","PA","Pennsylvania","TRUE","","1935","23.7","42099","Perry","{""42099"": ""100""}","Perry","42099","FALSE","FALSE","America/New_York"
-"17025","40.29511","-76.97594","Enola","PA","Pennsylvania","TRUE","","16651","425.9","42041","Cumberland","{""42041"": ""100""}","Cumberland","42041","FALSE","FALSE","America/New_York"
-"17026","40.46203","-76.42852","Fredericksburg","PA","Pennsylvania","TRUE","","4105","70.6","42075","Lebanon","{""42075"": ""90.93"", ""42011"": ""9.07""}","Lebanon|Berks","42075|42011","FALSE","FALSE","America/New_York"
-"17027","40.15617","-76.99573","Grantham","PA","Pennsylvania","TRUE","","1980","2038.6","42041","Cumberland","{""42041"": ""100""}","Cumberland","42041","FALSE","FALSE","America/New_York"
-"17028","40.39419","-76.65823","Grantville","PA","Pennsylvania","TRUE","","3703","58.9","42043","Dauphin","{""42043"": ""71.51"", ""42075"": ""28.49""}","Dauphin|Lebanon","42043|42075","FALSE","FALSE","America/New_York"
-"17029","40.55451","-77.62196","Granville","PA","Pennsylvania","TRUE","","192","54.3","42087","Mifflin","{""42087"": ""100""}","Mifflin","42087","FALSE","FALSE","America/New_York"
-"17030","40.60926","-76.72563","Gratz","PA","Pennsylvania","TRUE","","859","81.5","42043","Dauphin","{""42043"": ""100""}","Dauphin","42043","FALSE","FALSE","America/New_York"
-"17032","40.49316","-76.82065","Halifax","PA","Pennsylvania","TRUE","","8123","28.4","42043","Dauphin","{""42043"": ""100""}","Dauphin","42043","FALSE","FALSE","America/New_York"
-"17033","40.27319","-76.63536","Hershey","PA","Pennsylvania","TRUE","","17751","267.0","42043","Dauphin","{""42043"": ""99.66"", ""42075"": ""0.34""}","Dauphin|Lebanon","42043|42075","FALSE","FALSE","America/New_York"
-"17034","40.20871","-76.78531","Highspire","PA","Pennsylvania","TRUE","","2492","1290.2","42043","Dauphin","{""42043"": ""100""}","Dauphin","42043","FALSE","FALSE","America/New_York"
-"17035","40.41635","-77.57482","Honey Grove","PA","Pennsylvania","TRUE","","934","10.2","42067","Juniata","{""42067"": ""98.69"", ""42099"": ""1.31""}","Juniata|Perry","42067|42099","FALSE","FALSE","America/New_York"
-"17036","40.28545","-76.69875","Hummelstown","PA","Pennsylvania","TRUE","","22390","317.0","42043","Dauphin","{""42043"": ""100""}","Dauphin","42043","FALSE","FALSE","America/New_York"
-"17037","40.43391","-77.42031","Ickesburg","PA","Pennsylvania","TRUE","","1006","15.7","42099","Perry","{""42099"": ""100""}","Perry","42099","FALSE","FALSE","America/New_York"
-"17038","40.46929","-76.5461","Jonestown","PA","Pennsylvania","TRUE","","8334","44.7","42075","Lebanon","{""42075"": ""100""}","Lebanon","42075","FALSE","FALSE","America/New_York"
-"17039","40.29071","-76.241","Kleinfeltersville","PA","Pennsylvania","TRUE","","67","43.1","42075","Lebanon","{""42075"": ""100""}","Lebanon","42075","FALSE","FALSE","America/New_York"
-"17040","40.31691","-77.3161","Landisburg","PA","Pennsylvania","TRUE","","2376","18.3","42099","Perry","{""42099"": ""100""}","Perry","42099","FALSE","FALSE","America/New_York"
-"17041","40.21665","-76.53951","Lawn","PA","Pennsylvania","TRUE","","386","264.8","42075","Lebanon","{""42075"": ""100""}","Lebanon","42075","FALSE","FALSE","America/New_York"
-"17042","40.29452","-76.42499","Lebanon","PA","Pennsylvania","TRUE","","38400","224.1","42075","Lebanon","{""42075"": ""100""}","Lebanon","42075","FALSE","FALSE","America/New_York"
-"17043","40.24684","-76.90009","Lemoyne","PA","Pennsylvania","TRUE","","5720","1092.7","42041","Cumberland","{""42041"": ""100""}","Cumberland","42041","FALSE","FALSE","America/New_York"
-"17044","40.57841","-77.59429","Lewistown","PA","Pennsylvania","TRUE","","20986","82.6","42087","Mifflin","{""42087"": ""100""}","Mifflin","42087","FALSE","FALSE","America/New_York"
-"17045","40.58876","-77.00341","Liverpool","PA","Pennsylvania","TRUE","","3316","32.6","42099","Perry","{""42099"": ""67.82"", ""42067"": ""23.91"", ""42109"": ""8.27""}","Perry|Juniata|Snyder","42099|42067|42109","FALSE","FALSE","America/New_York"
-"17046","40.38268","-76.43004","Lebanon","PA","Pennsylvania","TRUE","","31040","313.4","42075","Lebanon","{""42075"": ""100""}","Lebanon","42075","FALSE","FALSE","America/New_York"
-"17047","40.36378","-77.41819","Loysville","PA","Pennsylvania","TRUE","","2654","22.2","42099","Perry","{""42099"": ""100""}","Perry","42099","FALSE","FALSE","America/New_York"
-"17048","40.60783","-76.72609","Lykens","PA","Pennsylvania","TRUE","","4220","47.0","42043","Dauphin","{""42043"": ""100""}","Dauphin","42043","FALSE","FALSE","America/New_York"
-"17049","40.65303","-77.25612","McAlisterville","PA","Pennsylvania","TRUE","","3609","34.8","42067","Juniata","{""42067"": ""100""}","Juniata","42067","FALSE","FALSE","America/New_York"
-"17050","40.24856","-77.02628","Mechanicsburg","PA","Pennsylvania","TRUE","","38141","458.9","42041","Cumberland","{""42041"": ""100""}","Cumberland","42041","FALSE","FALSE","America/New_York"
-"17051","40.45876","-77.77506","McVeytown","PA","Pennsylvania","TRUE","","4831","21.2","42087","Mifflin","{""42087"": ""100""}","Mifflin","42087","FALSE","FALSE","America/New_York"
-"17052","40.3169","-77.98105","Mapleton Depot","PA","Pennsylvania","TRUE","","1635","15.7","42061","Huntingdon","{""42061"": ""100""}","Huntingdon","42061","FALSE","FALSE","America/New_York"
-"17053","40.32557","-77.03153","Marysville","PA","Pennsylvania","TRUE","","4948","66.4","42099","Perry","{""42099"": ""98.38"", ""42041"": ""1.62""}","Perry|Cumberland","42099|42041","FALSE","FALSE","America/New_York"
-"17055","40.17895","-77.00361","Mechanicsburg","PA","Pennsylvania","TRUE","","37232","345.0","42041","Cumberland","{""42041"": ""97.86"", ""42133"": ""2.14""}","Cumberland|York","42041|42133","FALSE","FALSE","America/New_York"
-"17056","40.53757","-77.35426","Mexico","PA","Pennsylvania","TRUE","","45","205.7","42067","Juniata","{""42067"": ""100""}","Juniata","42067","FALSE","FALSE","America/New_York"
-"17057","40.19378","-76.72521","Middletown","PA","Pennsylvania","TRUE","","23029","275.3","42043","Dauphin","{""42043"": ""100""}","Dauphin","42043","FALSE","FALSE","America/New_York"
-"17058","40.4962","-77.55429","Mifflin","PA","Pennsylvania","TRUE","","1832","17.9","42067","Juniata","{""42067"": ""100""}","Juniata","42067","FALSE","FALSE","America/New_York"
-"17059","40.59169","-77.38457","Mifflintown","PA","Pennsylvania","TRUE","","7943","37.3","42067","Juniata","{""42067"": ""100""}","Juniata","42067","FALSE","FALSE","America/New_York"
-"17060","40.46787","-77.89671","Mill Creek","PA","Pennsylvania","TRUE","","1095","16.8","42061","Huntingdon","{""42061"": ""100""}","Huntingdon","42061","FALSE","FALSE","America/New_York"
-"17061","40.56663","-76.91225","Millersburg","PA","Pennsylvania","TRUE","","7188","81.2","42043","Dauphin","{""42043"": ""100""}","Dauphin","42043","FALSE","FALSE","America/New_York"
-"17062","40.55205","-77.16722","Millerstown","PA","Pennsylvania","TRUE","","4462","21.2","42099","Perry","{""42099"": ""75.77"", ""42067"": ""24.23""}","Perry|Juniata","42099|42067","FALSE","FALSE","America/New_York"
-"17063","40.76197","-77.47581","Milroy","PA","Pennsylvania","TRUE","","3265","13.5","42087","Mifflin","{""42087"": ""99.49"", ""42109"": ""0.51""}","Mifflin|Snyder","42087|42109","FALSE","FALSE","America/New_York"
-"17064","40.24237","-76.47607","Mount Gretna","PA","Pennsylvania","TRUE","","788","255.4","42075","Lebanon","{""42075"": ""100""}","Lebanon","42075","FALSE","FALSE","America/New_York"
-"17065","40.11146","-77.19018","Mount Holly Springs","PA","Pennsylvania","TRUE","","3782","169.2","42041","Cumberland","{""42041"": ""100""}","Cumberland","42041","FALSE","FALSE","America/New_York"
-"17066","40.35601","-77.86192","Mount Union","PA","Pennsylvania","TRUE","","5387","65.0","42061","Huntingdon","{""42061"": ""76.22"", ""42087"": ""23.78""}","Huntingdon|Mifflin","42061|42087","FALSE","FALSE","America/New_York"
-"17067","40.38704","-76.31538","Myerstown","PA","Pennsylvania","TRUE","","15389","121.1","42075","Lebanon","{""42075"": ""87.11"", ""42011"": ""12.89""}","Lebanon|Berks","42075|42011","FALSE","FALSE","America/New_York"
-"17068","40.40981","-77.17702","New Bloomfield","PA","Pennsylvania","TRUE","","4223","48.6","42099","Perry","{""42099"": ""100""}","Perry","42099","FALSE","FALSE","America/New_York"
-"17069","40.45397","-76.97003","New Buffalo","PA","Pennsylvania","TRUE","","158","1244.7","42099","Perry","{""42099"": ""100""}","Perry","42099","FALSE","FALSE","America/New_York"
-"17070","40.20299","-76.86587","New Cumberland","PA","Pennsylvania","TRUE","","16119","464.3","42041","Cumberland","{""42041"": ""53.31"", ""42133"": ""46.69""}","Cumberland|York","42041|42133","FALSE","FALSE","America/New_York"
-"17071","40.29922","-77.60076","New Germantown","PA","Pennsylvania","TRUE","","121","5.6","42099","Perry","{""42099"": ""100""}","Perry","42099","FALSE","FALSE","America/New_York"
-"17072","40.23372","-77.08174","New Kingstown","PA","Pennsylvania","TRUE","","244","1411.0","42041","Cumberland","{""42041"": ""100""}","Cumberland","42041","FALSE","FALSE","America/New_York"
-"17073","40.30318","-76.25604","Newmanstown","PA","Pennsylvania","TRUE","","5566","82.6","42075","Lebanon","{""42075"": ""99.81"", ""42071"": ""0.19""}","Lebanon|Lancaster","42075|42071","FALSE","FALSE","America/New_York"
-"17074","40.4804","-77.14455","Newport","PA","Pennsylvania","TRUE","","7296","44.3","42099","Perry","{""42099"": ""100""}","Perry","42099","FALSE","FALSE","America/New_York"
-"17075","40.39453","-77.83312","Newton Hamilton","PA","Pennsylvania","TRUE","","100","258.6","42087","Mifflin","{""42087"": ""100""}","Mifflin","42087","FALSE","FALSE","America/New_York"
-"17076","40.6162","-77.31165","Oakland Mills","PA","Pennsylvania","TRUE","","13","33.0","42067","Juniata","{""42067"": ""100""}","Juniata","42067","FALSE","FALSE","America/New_York"
-"17077","40.40301","-76.53593","Ono","PA","Pennsylvania","TRUE","","106","11406.4","42075","Lebanon","{""42075"": ""100""}","Lebanon","42075","FALSE","FALSE","America/New_York"
-"17078","40.28594","-76.58355","Palmyra","PA","Pennsylvania","TRUE","","21646","276.5","42075","Lebanon","{""42075"": ""93.18"", ""42043"": ""6.82""}","Lebanon|Dauphin","42075|42043","FALSE","FALSE","America/New_York"
-"17080","40.64067","-76.80307","Pillow","PA","Pennsylvania","TRUE","","320","257.7","42043","Dauphin","{""42043"": ""100""}","Dauphin","42043","FALSE","FALSE","America/New_York"
-"17081","40.20101","-77.28333","Plainfield","PA","Pennsylvania","TRUE","","406","256.6","42041","Cumberland","{""42041"": ""100""}","Cumberland","42041","FALSE","FALSE","America/New_York"
-"17082","40.4984","-77.42765","Port Royal","PA","Pennsylvania","TRUE","","3097","20.6","42067","Juniata","{""42067"": ""100""}","Juniata","42067","FALSE","FALSE","America/New_York"
-"17083","40.27759","-76.43759","Quentin","PA","Pennsylvania","TRUE","","97","1047.9","42075","Lebanon","{""42075"": ""100""}","Lebanon","42075","FALSE","FALSE","America/New_York"
-"17084","40.68509","-77.62789","Reedsville","PA","Pennsylvania","TRUE","","4524","54.6","42087","Mifflin","{""42087"": ""100""}","Mifflin","42087","FALSE","FALSE","America/New_York"
-"17086","40.69061","-77.12442","Richfield","PA","Pennsylvania","TRUE","","2377","24.0","42067","Juniata","{""42067"": ""63.99"", ""42109"": ""36.01""}","Juniata|Snyder","42067|42109","FALSE","FALSE","America/New_York"
-"17087","40.40523","-76.26228","Richland","PA","Pennsylvania","TRUE","","2739","86.2","42075","Lebanon","{""42075"": ""74.2"", ""42011"": ""25.8""}","Lebanon|Berks","42075|42011","FALSE","FALSE","America/New_York"
-"17088","40.30069","-76.29418","Schaefferstown","PA","Pennsylvania","TRUE","","943","199.2","42075","Lebanon","{""42075"": ""100""}","Lebanon","42075","FALSE","FALSE","America/New_York"
-"17090","40.32928","-77.18197","Shermans Dale","PA","Pennsylvania","TRUE","","5645","64.4","42099","Perry","{""42099"": ""100""}","Perry","42099","FALSE","FALSE","America/New_York"
-"17093","40.30772","-76.93128","Summerdale","PA","Pennsylvania","TRUE","","1386","1427.3","42041","Cumberland","{""42041"": ""100""}","Cumberland","42041","FALSE","FALSE","America/New_York"
-"17094","40.58321","-77.21767","Thompsontown","PA","Pennsylvania","TRUE","","2427","31.3","42067","Juniata","{""42067"": ""100""}","Juniata","42067","FALSE","FALSE","America/New_York"
-"17097","40.58009","-76.67748","Wiconisco","PA","Pennsylvania","TRUE","","801","102.6","42043","Dauphin","{""42043"": ""100""}","Dauphin","42043","FALSE","FALSE","America/New_York"
-"17098","40.58895","-76.63236","Williamstown","PA","Pennsylvania","TRUE","","2265","89.9","42043","Dauphin","{""42043"": ""100""}","Dauphin","42043","FALSE","FALSE","America/New_York"
-"17099","40.64519","-77.57574","Yeagertown","PA","Pennsylvania","TRUE","","1031","259.5","42087","Mifflin","{""42087"": ""100""}","Mifflin","42087","FALSE","FALSE","America/New_York"
-"17101","40.25916","-76.88769","Harrisburg","PA","Pennsylvania","TRUE","","1936","1576.6","42043","Dauphin","{""42043"": ""100""}","Dauphin","42043","FALSE","FALSE","America/New_York"
-"17102","40.27153","-76.89673","Harrisburg","PA","Pennsylvania","TRUE","","7434","3658.5","42043","Dauphin","{""42043"": ""100""}","Dauphin","42043","FALSE","FALSE","America/New_York"
-"17103","40.27589","-76.86635","Harrisburg","PA","Pennsylvania","TRUE","","12317","2312.0","42043","Dauphin","{""42043"": ""100""}","Dauphin","42043","FALSE","FALSE","America/New_York"
-"17104","40.25481","-76.86264","Harrisburg","PA","Pennsylvania","TRUE","","20208","2905.5","42043","Dauphin","{""42043"": ""100""}","Dauphin","42043","FALSE","FALSE","America/New_York"
-"17109","40.28993","-76.82433","Harrisburg","PA","Pennsylvania","TRUE","","24351","1250.0","42043","Dauphin","{""42043"": ""100""}","Dauphin","42043","FALSE","FALSE","America/New_York"
-"17110","40.31559","-76.88557","Harrisburg","PA","Pennsylvania","TRUE","","24743","748.3","42043","Dauphin","{""42043"": ""100""}","Dauphin","42043","FALSE","FALSE","America/New_York"
-"17111","40.26895","-76.78491","Harrisburg","PA","Pennsylvania","TRUE","","32624","684.0","42043","Dauphin","{""42043"": ""100""}","Dauphin","42043","FALSE","FALSE","America/New_York"
-"17112","40.37311","-76.77649","Harrisburg","PA","Pennsylvania","TRUE","","35818","200.4","42043","Dauphin","{""42043"": ""100""}","Dauphin","42043","FALSE","FALSE","America/New_York"
-"17113","40.22555","-76.82749","Harrisburg","PA","Pennsylvania","TRUE","","10852","982.9","42043","Dauphin","{""42043"": ""100""}","Dauphin","42043","FALSE","FALSE","America/New_York"
-"17120","40.26517","-76.88281","Harrisburg","PA","Pennsylvania","TRUE","","0","0.0","42043","Dauphin","{""42043"": ""0""}","Dauphin","42043","FALSE","FALSE","America/New_York"
-"17201","39.9611","-77.65615","Chambersburg","PA","Pennsylvania","TRUE","","26330","536.7","42055","Franklin","{""42055"": ""100""}","Franklin","42055","FALSE","FALSE","America/New_York"
-"17202","39.92137","-77.67753","Chambersburg","PA","Pennsylvania","TRUE","","29278","95.0","42055","Franklin","{""42055"": ""100""}","Franklin","42055","FALSE","FALSE","America/New_York"
-"17210","40.19639","-77.66123","Amberson","PA","Pennsylvania","TRUE","","163","5.1","42055","Franklin","{""42055"": ""100""}","Franklin","42055","FALSE","FALSE","America/New_York"
-"17211","39.75258","-78.40712","Artemas","PA","Pennsylvania","TRUE","","439","6.8","42009","Bedford","{""42009"": ""100""}","Bedford","42009","FALSE","FALSE","America/New_York"
-"17212","39.8127","-78.06452","Big Cove Tannery","PA","Pennsylvania","TRUE","","734","8.0","42057","Fulton","{""42057"": ""100""}","Fulton","42057","FALSE","FALSE","America/New_York"
-"17213","40.25362","-77.77059","Blairs Mills","PA","Pennsylvania","TRUE","","627","6.1","42061","Huntingdon","{""42061"": ""100""}","Huntingdon","42061","FALSE","FALSE","America/New_York"
-"17214","39.74793","-77.47117","Blue Ridge Summit","PA","Pennsylvania","TRUE","","819","78.3","42055","Franklin","{""42055"": ""100""}","Franklin","42055","FALSE","FALSE","America/New_York"
-"17215","40.07784","-77.89396","Burnt Cabins","PA","Pennsylvania","TRUE","","286","9.3","42057","Fulton","{""42057"": ""58.79"", ""42061"": ""41.21""}","Fulton|Huntingdon","42057|42061","FALSE","FALSE","America/New_York"
-"17217","40.23864","-77.72154","Concord","PA","Pennsylvania","TRUE","","220","22.0","42055","Franklin","{""42055"": ""100""}","Franklin","42055","FALSE","FALSE","America/New_York"
-"17219","40.23127","-77.68563","Doylesburg","PA","Pennsylvania","TRUE","","406","11.9","42055","Franklin","{""42055"": ""100""}","Franklin","42055","FALSE","FALSE","America/New_York"
-"17220","40.18486","-77.74114","Dry Run","PA","Pennsylvania","TRUE","","415","12.2","42055","Franklin","{""42055"": ""100""}","Franklin","42055","FALSE","FALSE","America/New_York"
-"17221","40.06664","-77.81668","Fannettsburg","PA","Pennsylvania","TRUE","","577","21.6","42055","Franklin","{""42055"": ""100""}","Franklin","42055","FALSE","FALSE","America/New_York"
-"17222","39.89527","-77.49231","Fayetteville","PA","Pennsylvania","TRUE","","11576","76.0","42055","Franklin","{""42055"": ""93.68"", ""42001"": ""6.32""}","Franklin|Adams","42055|42001","FALSE","FALSE","America/New_York"
-"17223","40.07801","-77.95317","Fort Littleton","PA","Pennsylvania","TRUE","","233","8.3","42057","Fulton","{""42057"": ""100""}","Fulton","42057","FALSE","FALSE","America/New_York"
-"17224","39.96797","-77.89747","Fort Loudon","PA","Pennsylvania","TRUE","","1743","18.4","42055","Franklin","{""42055"": ""100"", ""42057"": ""0""}","Franklin|Fulton","42055|42057","FALSE","FALSE","America/New_York"
-"17225","39.7864","-77.75933","Greencastle","PA","Pennsylvania","TRUE","","20844","98.8","42055","Franklin","{""42055"": ""100""}","Franklin","42055","FALSE","FALSE","America/New_York"
-"17228","39.98715","-78.09328","Harrisonville","PA","Pennsylvania","TRUE","","1154","15.5","42057","Fulton","{""42057"": ""100""}","Fulton","42057","FALSE","FALSE","America/New_York"
-"17229","40.0783","-78.01128","Hustontown","PA","Pennsylvania","TRUE","","1206","17.1","42057","Fulton","{""42057"": ""86.68"", ""42061"": ""13.32""}","Fulton|Huntingdon","42057|42061","FALSE","FALSE","America/New_York"
-"17233","39.95524","-78.00169","McConnellsburg","PA","Pennsylvania","TRUE","","5311","25.7","42057","Fulton","{""42057"": ""100""}","Fulton","42057","FALSE","FALSE","America/New_York"
-"17235","39.85718","-77.69796","Marion","PA","Pennsylvania","TRUE","","949","616.0","42055","Franklin","{""42055"": ""100""}","Franklin","42055","FALSE","FALSE","America/New_York"
-"17236","39.79806","-77.94519","Mercersburg","PA","Pennsylvania","TRUE","","7939","24.7","42055","Franklin","{""42055"": ""97.41"", ""42057"": ""2.59""}","Franklin|Fulton","42055|42057","FALSE","FALSE","America/New_York"
-"17237","39.83858","-77.54183","Mont Alto","PA","Pennsylvania","TRUE","","1998","265.0","42055","Franklin","{""42055"": ""100""}","Franklin","42055","FALSE","FALSE","America/New_York"
-"17238","39.85819","-78.13094","Needmore","PA","Pennsylvania","TRUE","","1685","11.9","42057","Fulton","{""42057"": ""100""}","Fulton","42057","FALSE","FALSE","America/New_York"
-"17239","40.13174","-77.83678","Neelyton","PA","Pennsylvania","TRUE","","219","9.4","42061","Huntingdon","{""42061"": ""100""}","Huntingdon","42061","FALSE","FALSE","America/New_York"
-"17240","40.15424","-77.58309","Newburg","PA","Pennsylvania","TRUE","","4001","32.2","42041","Cumberland","{""42041"": ""70.49"", ""42055"": ""29.51""}","Cumberland|Franklin","42041|42055","FALSE","FALSE","America/New_York"
-"17241","40.1778","-77.40336","Newville","PA","Pennsylvania","TRUE","","12127","41.7","42041","Cumberland","{""42041"": ""100""}","Cumberland","42041","FALSE","FALSE","America/New_York"
-"17243","40.27763","-77.81968","Orbisonia","PA","Pennsylvania","TRUE","","1193","7.7","42061","Huntingdon","{""42061"": ""97.67"", ""42067"": ""2.33""}","Huntingdon|Juniata","42061|42067","FALSE","FALSE","America/New_York"
-"17244","40.08489","-77.66265","Orrstown","PA","Pennsylvania","TRUE","","2216","33.0","42055","Franklin","{""42055"": ""100""}","Franklin","42055","FALSE","FALSE","America/New_York"
-"17246","40.05441","-77.66083","Pleasant Hall","PA","Pennsylvania","TRUE","","216","51.3","42055","Franklin","{""42055"": ""100""}","Franklin","42055","FALSE","FALSE","America/New_York"
-"17247","39.79867","-77.57942","Quincy","PA","Pennsylvania","TRUE","","501","1330.1","42055","Franklin","{""42055"": ""100""}","Franklin","42055","FALSE","FALSE","America/New_York"
-"17249","40.24143","-77.89949","Rockhill Furnace","PA","Pennsylvania","TRUE","","401","495.4","42061","Huntingdon","{""42061"": ""100""}","Huntingdon","42061","FALSE","FALSE","America/New_York"
-"17250","39.73702","-77.52425","Rouzerville","PA","Pennsylvania","TRUE","","34","1496.3","42055","Franklin","{""42055"": ""100""}","Franklin","42055","FALSE","FALSE","America/New_York"
-"17251","40.13098","-77.68093","Roxbury","PA","Pennsylvania","TRUE","","111","19.2","42055","Franklin","{""42055"": ""100""}","Franklin","42055","FALSE","FALSE","America/New_York"
-"17252","39.91342","-77.81846","Saint Thomas","PA","Pennsylvania","TRUE","","3844","53.3","42055","Franklin","{""42055"": ""100""}","Franklin","42055","FALSE","FALSE","America/New_York"
-"17253","40.21316","-78.00685","Saltillo","PA","Pennsylvania","TRUE","","281","409.4","42061","Huntingdon","{""42061"": ""100""}","Huntingdon","42061","FALSE","FALSE","America/New_York"
-"17254","39.9703","-77.59034","Scotland","PA","Pennsylvania","TRUE","","80","87.0","42055","Franklin","{""42055"": ""100""}","Franklin","42055","FALSE","FALSE","America/New_York"
-"17255","40.16129","-77.86247","Shade Gap","PA","Pennsylvania","TRUE","","1114","14.3","42061","Huntingdon","{""42061"": ""100""}","Huntingdon","42061","FALSE","FALSE","America/New_York"
-"17256","39.78325","-77.67758","Shady Grove","PA","Pennsylvania","TRUE","","186","676.8","42055","Franklin","{""42055"": ""100""}","Franklin","42055","FALSE","FALSE","America/New_York"
-"17257","40.04912","-77.49141","Shippensburg","PA","Pennsylvania","TRUE","","29524","97.1","42041","Cumberland","{""42041"": ""66.26"", ""42055"": ""33.74""}","Cumberland|Franklin","42041|42055","FALSE","FALSE","America/New_York"
-"17260","40.29452","-77.89587","Shirleysburg","PA","Pennsylvania","TRUE","","1123","12.1","42061","Huntingdon","{""42061"": ""100""}","Huntingdon","42061","FALSE","FALSE","America/New_York"
-"17261","39.86096","-77.50816","South Mountain","PA","Pennsylvania","TRUE","","277","44.5","42055","Franklin","{""42055"": ""100""}","Franklin","42055","FALSE","FALSE","America/New_York"
-"17262","40.14603","-77.73624","Spring Run","PA","Pennsylvania","TRUE","","1455","21.2","42055","Franklin","{""42055"": ""100""}","Franklin","42055","FALSE","FALSE","America/New_York"
-"17263","39.72732","-77.71763","State Line","PA","Pennsylvania","TRUE","","573","628.3","42055","Franklin","{""42055"": ""100""}","Franklin","42055","FALSE","FALSE","America/New_York"
-"17264","40.17993","-77.99369","Three Springs","PA","Pennsylvania","TRUE","","2423","17.2","42061","Huntingdon","{""42061"": ""95.1"", ""42057"": ""4.9""}","Huntingdon|Fulton","42061|42057","FALSE","FALSE","America/New_York"
-"17265","40.02817","-77.78664","Upperstrasburg","PA","Pennsylvania","TRUE","","667","6.8","42055","Franklin","{""42055"": ""100""}","Franklin","42055","FALSE","FALSE","America/New_York"
-"17266","40.08751","-77.4119","Walnut Bottom","PA","Pennsylvania","TRUE","","507","145.5","42041","Cumberland","{""42041"": ""100""}","Cumberland","42041","FALSE","FALSE","America/New_York"
-"17267","39.80255","-78.24066","Warfordsburg","PA","Pennsylvania","TRUE","","2697","10.9","42057","Fulton","{""42057"": ""100""}","Fulton","42057","FALSE","FALSE","America/New_York"
-"17268","39.77564","-77.57384","Waynesboro","PA","Pennsylvania","TRUE","","29374","143.4","42055","Franklin","{""42055"": ""100""}","Franklin","42055","FALSE","FALSE","America/New_York"
-"17271","40.0977","-77.80314","Willow Hill","PA","Pennsylvania","TRUE","","259","9.4","42055","Franklin","{""42055"": ""100""}","Franklin","42055","FALSE","FALSE","America/New_York"
-"17272","39.76946","-77.62188","Zullinger","PA","Pennsylvania","TRUE","","376","789.6","42055","Franklin","{""42055"": ""100""}","Franklin","42055","FALSE","FALSE","America/New_York"
-"17301","39.89062","-76.9803","Abbottstown","PA","Pennsylvania","TRUE","","4479","131.8","42001","Adams","{""42001"": ""74.24"", ""42133"": ""25.76""}","Adams|York","42001|42133","FALSE","FALSE","America/New_York"
-"17302","39.81564","-76.40924","Airville","PA","Pennsylvania","TRUE","","2431","24.4","42133","York","{""42133"": ""100""}","York","42133","FALSE","FALSE","America/New_York"
-"17304","39.97676","-77.23064","Aspers","PA","Pennsylvania","TRUE","","2736","43.6","42001","Adams","{""42001"": ""100""}","Adams","42001","FALSE","FALSE","America/New_York"
-"17306","39.98089","-77.24963","Bendersville","PA","Pennsylvania","TRUE","","353","396.2","42001","Adams","{""42001"": ""100""}","Adams","42001","FALSE","FALSE","America/New_York"
-"17307","39.95083","-77.32222","Biglerville","PA","Pennsylvania","TRUE","","5854","37.9","42001","Adams","{""42001"": ""99.49"", ""42041"": ""0.51""}","Adams|Cumberland","42001|42041","FALSE","FALSE","America/New_York"
-"17309","39.87129","-76.45019","Brogue","PA","Pennsylvania","TRUE","","2162","33.7","42133","York","{""42133"": ""100""}","York","42133","FALSE","FALSE","America/New_York"
-"17311","39.81637","-76.84245","Codorus","PA","Pennsylvania","TRUE","","193","1358.1","42133","York","{""42133"": ""100""}","York","42133","FALSE","FALSE","America/New_York"
-"17313","39.88617","-76.65658","Dallastown","PA","Pennsylvania","TRUE","","10907","397.5","42133","York","{""42133"": ""100""}","York","42133","FALSE","FALSE","America/New_York"
-"17314","39.75474","-76.32953","Delta","PA","Pennsylvania","TRUE","","6304","68.5","42133","York","{""42133"": ""100""}","York","42133","FALSE","FALSE","America/New_York"
-"17315","40.02324","-76.86497","Dover","PA","Pennsylvania","TRUE","","26610","164.4","42133","York","{""42133"": ""100""}","York","42133","FALSE","FALSE","America/New_York"
-"17316","39.9669","-77.00425","East Berlin","PA","Pennsylvania","TRUE","","8408","77.8","42001","Adams","{""42001"": ""78.27"", ""42133"": ""21.73""}","Adams|York","42001|42133","FALSE","FALSE","America/New_York"
-"17317","39.97079","-76.52294","East Prospect","PA","Pennsylvania","TRUE","","649","1103.4","42133","York","{""42133"": ""100""}","York","42133","FALSE","FALSE","America/New_York"
-"17318","40.02213","-76.72299","Emigsville","PA","Pennsylvania","TRUE","","455","303.4","42133","York","{""42133"": ""100""}","York","42133","FALSE","FALSE","America/New_York"
-"17319","40.16042","-76.7941","Etters","PA","Pennsylvania","TRUE","","11440","254.7","42133","York","{""42133"": ""100""}","York","42133","FALSE","FALSE","America/New_York"
-"17320","39.76858","-77.38764","Fairfield","PA","Pennsylvania","TRUE","","7861","54.7","42001","Adams","{""42001"": ""100""}","Adams","42001","FALSE","FALSE","America/New_York"
-"17321","39.75475","-76.44716","Fawn Grove","PA","Pennsylvania","TRUE","","2347","55.6","42133","York","{""42133"": ""100""}","York","42133","FALSE","FALSE","America/New_York"
-"17322","39.85592","-76.53272","Felton","PA","Pennsylvania","TRUE","","5705","57.7","42133","York","{""42133"": ""100""}","York","42133","FALSE","FALSE","America/New_York"
-"17324","40.03482","-77.22834","Gardners","PA","Pennsylvania","TRUE","","4549","33.7","42041","Cumberland","{""42041"": ""59.85"", ""42001"": ""40.15""}","Cumberland|Adams","42041|42001","FALSE","FALSE","America/New_York"
-"17325","39.82788","-77.22677","Gettysburg","PA","Pennsylvania","TRUE","","28391","85.3","42001","Adams","{""42001"": ""100""}","Adams","42001","FALSE","FALSE","America/New_York"
-"17327","39.77959","-76.75311","Glen Rock","PA","Pennsylvania","TRUE","","7590","63.8","42133","York","{""42133"": ""100""}","York","42133","FALSE","FALSE","America/New_York"
-"17329","39.76184","-76.85112","Glenville","PA","Pennsylvania","TRUE","","2599","61.3","42133","York","{""42133"": ""100""}","York","42133","FALSE","FALSE","America/New_York"
-"17331","39.79014","-76.97832","Hanover","PA","Pennsylvania","TRUE","","51893","264.1","42133","York","{""42133"": ""80.26"", ""42001"": ""19.74""}","York|Adams","42133|42001","FALSE","FALSE","America/New_York"
-"17339","40.13511","-76.88376","Lewisberry","PA","Pennsylvania","TRUE","","6930","95.5","42133","York","{""42133"": ""100""}","York","42133","FALSE","FALSE","America/New_York"
-"17340","39.75558","-77.11257","Littlestown","PA","Pennsylvania","TRUE","","11083","110.6","42001","Adams","{""42001"": ""100""}","Adams","42001","FALSE","FALSE","America/New_York"
-"17343","39.87026","-77.33375","McKnightstown","PA","Pennsylvania","TRUE","","35","17.7","42001","Adams","{""42001"": ""100""}","Adams","42001","FALSE","FALSE","America/New_York"
-"17344","39.8057","-77.01915","McSherrystown","PA","Pennsylvania","TRUE","","3567","1723.7","42001","Adams","{""42001"": ""100""}","Adams","42001","FALSE","FALSE","America/New_York"
-"17345","40.07752","-76.7354","Manchester","PA","Pennsylvania","TRUE","","7551","288.5","42133","York","{""42133"": ""100""}","York","42133","FALSE","FALSE","America/New_York"
-"17347","40.05525","-76.68892","Mount Wolf","PA","Pennsylvania","TRUE","","6644","183.0","42133","York","{""42133"": ""100""}","York","42133","FALSE","FALSE","America/New_York"
-"17349","39.75429","-76.68019","New Freedom","PA","Pennsylvania","TRUE","","7183","133.6","42133","York","{""42133"": ""100""}","York","42133","FALSE","FALSE","America/New_York"
-"17350","39.88904","-77.07993","New Oxford","PA","Pennsylvania","TRUE","","13019","115.9","42001","Adams","{""42001"": ""100""}","Adams","42001","FALSE","FALSE","America/New_York"
-"17352","39.76123","-76.49988","New Park","PA","Pennsylvania","TRUE","","1348","37.8","42133","York","{""42133"": ""100""}","York","42133","FALSE","FALSE","America/New_York"
-"17353","39.88898","-77.38512","Orrtanna","PA","Pennsylvania","TRUE","","3410","32.3","42001","Adams","{""42001"": ""100""}","Adams","42001","FALSE","FALSE","America/New_York"
-"17355","39.75982","-76.69605","Railroad","PA","Pennsylvania","TRUE","","259","163.8","42133","York","{""42133"": ""100""}","York","42133","FALSE","FALSE","America/New_York"
-"17356","39.8966","-76.58225","Red Lion","PA","Pennsylvania","TRUE","","21302","252.9","42133","York","{""42133"": ""100""}","York","42133","FALSE","FALSE","America/New_York"
-"17360","39.85197","-76.7548","Seven Valleys","PA","Pennsylvania","TRUE","","7150","102.8","42133","York","{""42133"": ""100""}","York","42133","FALSE","FALSE","America/New_York"
-"17361","39.76552","-76.67702","Shrewsbury","PA","Pennsylvania","TRUE","","6315","781.6","42133","York","{""42133"": ""100""}","York","42133","FALSE","FALSE","America/New_York"
-"17362","39.85196","-76.86854","Spring Grove","PA","Pennsylvania","TRUE","","13040","104.4","42133","York","{""42133"": ""100""}","York","42133","FALSE","FALSE","America/New_York"
-"17363","39.76864","-76.5864","Stewartstown","PA","Pennsylvania","TRUE","","9476","97.2","42133","York","{""42133"": ""100""}","York","42133","FALSE","FALSE","America/New_York"
-"17364","39.92939","-76.89936","Thomasville","PA","Pennsylvania","TRUE","","3474","80.3","42133","York","{""42133"": ""100""}","York","42133","FALSE","FALSE","America/New_York"
-"17365","40.05559","-76.9379","Wellsville","PA","Pennsylvania","TRUE","","2462","47.9","42133","York","{""42133"": ""100""}","York","42133","FALSE","FALSE","America/New_York"
-"17366","39.93234","-76.55891","Windsor","PA","Pennsylvania","TRUE","","5472","187.6","42133","York","{""42133"": ""100""}","York","42133","FALSE","FALSE","America/New_York"
-"17368","39.9839","-76.51873","Wrightsville","PA","Pennsylvania","TRUE","","7539","158.8","42133","York","{""42133"": ""100""}","York","42133","FALSE","FALSE","America/New_York"
-"17370","40.11847","-76.77619","York Haven","PA","Pennsylvania","TRUE","","5664","194.3","42133","York","{""42133"": ""100""}","York","42133","FALSE","FALSE","America/New_York"
-"17371","39.9026","-76.78798","York New Salem","PA","Pennsylvania","TRUE","","216","417.0","42133","York","{""42133"": ""100""}","York","42133","FALSE","FALSE","America/New_York"
-"17372","40.00129","-77.10586","York Springs","PA","Pennsylvania","TRUE","","4075","48.1","42001","Adams","{""42001"": ""97.71"", ""42133"": ""2.29""}","Adams|York","42001|42133","FALSE","FALSE","America/New_York"
-"17401","39.95905","-76.73364","York","PA","Pennsylvania","TRUE","","17100","4595.6","42133","York","{""42133"": ""100""}","York","42133","FALSE","FALSE","America/New_York"
-"17402","39.95893","-76.65922","York","PA","Pennsylvania","TRUE","","38078","763.9","42133","York","{""42133"": ""100""}","York","42133","FALSE","FALSE","America/New_York"
-"17403","39.92298","-76.71338","York","PA","Pennsylvania","TRUE","","40216","760.8","42133","York","{""42133"": ""100""}","York","42133","FALSE","FALSE","America/New_York"
-"17404","40.00233","-76.77122","York","PA","Pennsylvania","TRUE","","35899","654.5","42133","York","{""42133"": ""100""}","York","42133","FALSE","FALSE","America/New_York"
-"17406","40.01093","-76.63837","York","PA","Pennsylvania","TRUE","","23651","184.4","42133","York","{""42133"": ""100""}","York","42133","FALSE","FALSE","America/New_York"
-"17407","39.88321","-76.71192","York","PA","Pennsylvania","TRUE","","2292","617.4","42133","York","{""42133"": ""100""}","York","42133","FALSE","FALSE","America/New_York"
-"17408","39.9337","-76.80297","York","PA","Pennsylvania","TRUE","","23778","354.9","42133","York","{""42133"": ""100""}","York","42133","FALSE","FALSE","America/New_York"
-"17501","40.15723","-76.20403","Akron","PA","Pennsylvania","TRUE","","4425","1227.6","42071","Lancaster","{""42071"": ""100""}","Lancaster","42071","FALSE","FALSE","America/New_York"
-"17502","40.10002","-76.66633","Bainbridge","PA","Pennsylvania","TRUE","","2677","104.4","42071","Lancaster","{""42071"": ""100""}","Lancaster","42071","FALSE","FALSE","America/New_York"
-"17505","40.06035","-76.19127","Bird In Hand","PA","Pennsylvania","TRUE","","1742","97.5","42071","Lancaster","{""42071"": ""100""}","Lancaster","42071","FALSE","FALSE","America/New_York"
-"17507","40.19787","-76.01631","Bowmansville","PA","Pennsylvania","TRUE","","117","2122.6","42071","Lancaster","{""42071"": ""100""}","Lancaster","42071","FALSE","FALSE","America/New_York"
-"17508","40.12384","-76.21761","Brownstown","PA","Pennsylvania","TRUE","","485","1268.7","42071","Lancaster","{""42071"": ""100""}","Lancaster","42071","FALSE","FALSE","America/New_York"
-"17509","39.90967","-76.03006","Christiana","PA","Pennsylvania","TRUE","","4822","72.2","42071","Lancaster","{""42071"": ""100""}","Lancaster","42071","FALSE","FALSE","America/New_York"
-"17512","40.03939","-76.48599","Columbia","PA","Pennsylvania","TRUE","","18027","427.5","42071","Lancaster","{""42071"": ""100""}","Lancaster","42071","FALSE","FALSE","America/New_York"
-"17516","39.94011","-76.37551","Conestoga","PA","Pennsylvania","TRUE","","4469","83.0","42071","Lancaster","{""42071"": ""100""}","Lancaster","42071","FALSE","FALSE","America/New_York"
-"17517","40.24451","-76.13248","Denver","PA","Pennsylvania","TRUE","","16745","184.8","42071","Lancaster","{""42071"": ""100""}","Lancaster","42071","FALSE","FALSE","America/New_York"
-"17518","39.8055","-76.25671","Drumore","PA","Pennsylvania","TRUE","","1615","44.1","42071","Lancaster","{""42071"": ""100""}","Lancaster","42071","FALSE","FALSE","America/New_York"
-"17519","40.14156","-76.02062","East Earl","PA","Pennsylvania","TRUE","","6762","117.6","42071","Lancaster","{""42071"": ""100""}","Lancaster","42071","FALSE","FALSE","America/New_York"
-"17520","40.09794","-76.349","East Petersburg","PA","Pennsylvania","TRUE","","4691","971.1","42071","Lancaster","{""42071"": ""100""}","Lancaster","42071","FALSE","FALSE","America/New_York"
-"17522","40.1722","-76.17074","Ephrata","PA","Pennsylvania","TRUE","","34163","301.9","42071","Lancaster","{""42071"": ""100""}","Lancaster","42071","FALSE","FALSE","America/New_York"
-"17527","40.01353","-75.99485","Gap","PA","Pennsylvania","TRUE","","6134","115.9","42071","Lancaster","{""42071"": ""96.32"", ""42029"": ""3.68""}","Lancaster|Chester","42071|42029","FALSE","FALSE","America/New_York"
-"17529","40.03979","-76.10019","Gordonville","PA","Pennsylvania","TRUE","","4866","119.7","42071","Lancaster","{""42071"": ""100""}","Lancaster","42071","FALSE","FALSE","America/New_York"
-"17532","39.85354","-76.29623","Holtwood","PA","Pennsylvania","TRUE","","2925","53.3","42071","Lancaster","{""42071"": ""100""}","Lancaster","42071","FALSE","FALSE","America/New_York"
-"17535","40.00647","-76.04056","Kinzers","PA","Pennsylvania","TRUE","","2703","96.3","42071","Lancaster","{""42071"": ""100""}","Lancaster","42071","FALSE","FALSE","America/New_York"
-"17536","39.84442","-76.07301","Kirkwood","PA","Pennsylvania","TRUE","","2987","53.3","42071","Lancaster","{""42071"": ""100""}","Lancaster","42071","FALSE","FALSE","America/New_York"
-"17538","40.08919","-76.41567","Landisville","PA","Pennsylvania","TRUE","","6669","670.9","42071","Lancaster","{""42071"": ""100""}","Lancaster","42071","FALSE","FALSE","America/New_York"
-"17540","40.09654","-76.18709","Leola","PA","Pennsylvania","TRUE","","10875","214.5","42071","Lancaster","{""42071"": ""100""}","Lancaster","42071","FALSE","FALSE","America/New_York"
-"17543","40.18459","-76.30153","Lititz","PA","Pennsylvania","TRUE","","45051","250.9","42071","Lancaster","{""42071"": ""100""}","Lancaster","42071","FALSE","FALSE","America/New_York"
-"17545","40.17339","-76.43144","Manheim","PA","Pennsylvania","TRUE","","21792","118.6","42071","Lancaster","{""42071"": ""97.42"", ""42075"": ""2.58""}","Lancaster|Lebanon","42071|42075","FALSE","FALSE","America/New_York"
-"17547","40.07047","-76.58553","Marietta","PA","Pennsylvania","TRUE","","7377","237.3","42071","Lancaster","{""42071"": ""100""}","Lancaster","42071","FALSE","FALSE","America/New_York"
-"17550","40.07597","-76.58321","Maytown","PA","Pennsylvania","TRUE","","953","2096.1","42071","Lancaster","{""42071"": ""100""}","Lancaster","42071","FALSE","FALSE","America/New_York"
-"17551","39.97851","-76.37368","Millersville","PA","Pennsylvania","TRUE","","11538","441.6","42071","Lancaster","{""42071"": ""100""}","Lancaster","42071","FALSE","FALSE","America/New_York"
-"17552","40.10825","-76.51038","Mount Joy","PA","Pennsylvania","TRUE","","20071","238.9","42071","Lancaster","{""42071"": ""100""}","Lancaster","42071","FALSE","FALSE","America/New_York"
-"17554","40.03958","-76.42604","Mountville","PA","Pennsylvania","TRUE","","7877","971.1","42071","Lancaster","{""42071"": ""100""}","Lancaster","42071","FALSE","FALSE","America/New_York"
-"17555","40.12135","-75.96421","Narvon","PA","Pennsylvania","TRUE","","7547","83.4","42071","Lancaster","{""42071"": ""99.75"", ""42011"": ""0.25""}","Lancaster|Berks","42071|42011","FALSE","FALSE","America/New_York"
-"17557","40.10116","-76.07287","New Holland","PA","Pennsylvania","TRUE","","14668","174.5","42071","Lancaster","{""42071"": ""100""}","Lancaster","42071","FALSE","FALSE","America/New_York"
-"17560","39.91085","-76.22738","New Providence","PA","Pennsylvania","TRUE","","4560","109.7","42071","Lancaster","{""42071"": ""100""}","Lancaster","42071","FALSE","FALSE","America/New_York"
-"17562","39.97598","-76.09117","Paradise","PA","Pennsylvania","TRUE","","4640","104.9","42071","Lancaster","{""42071"": ""100""}","Lancaster","42071","FALSE","FALSE","America/New_York"
-"17563","39.76423","-76.18659","Peach Bottom","PA","Pennsylvania","TRUE","","4094","50.1","42071","Lancaster","{""42071"": ""100""}","Lancaster","42071","FALSE","FALSE","America/New_York"
-"17565","39.89864","-76.33183","Pequea","PA","Pennsylvania","TRUE","","2675","75.0","42071","Lancaster","{""42071"": ""100""}","Lancaster","42071","FALSE","FALSE","America/New_York"
-"17566","39.86968","-76.14818","Quarryville","PA","Pennsylvania","TRUE","","12468","82.5","42071","Lancaster","{""42071"": ""100""}","Lancaster","42071","FALSE","FALSE","America/New_York"
-"17569","40.2689","-76.09563","Reinholds","PA","Pennsylvania","TRUE","","5834","137.8","42071","Lancaster","{""42071"": ""83.06"", ""42011"": ""16.94""}","Lancaster|Berks","42071|42011","FALSE","FALSE","America/New_York"
-"17570","40.12975","-76.56846","Rheems","PA","Pennsylvania","TRUE","","117","654.0","42071","Lancaster","{""42071"": ""100""}","Lancaster","42071","FALSE","FALSE","America/New_York"
-"17572","40.0086","-76.15302","Ronks","PA","Pennsylvania","TRUE","","4671","103.6","42071","Lancaster","{""42071"": ""100""}","Lancaster","42071","FALSE","FALSE","America/New_York"
-"17576","40.03754","-76.19688","Smoketown","PA","Pennsylvania","TRUE","","272","2055.9","42071","Lancaster","{""42071"": ""100""}","Lancaster","42071","FALSE","FALSE","America/New_York"
-"17578","40.22177","-76.16309","Stevens","PA","Pennsylvania","TRUE","","7438","187.5","42071","Lancaster","{""42071"": ""100""}","Lancaster","42071","FALSE","FALSE","America/New_York"
-"17579","39.95754","-76.17992","Strasburg","PA","Pennsylvania","TRUE","","6236","173.0","42071","Lancaster","{""42071"": ""100""}","Lancaster","42071","FALSE","FALSE","America/New_York"
-"17581","40.15852","-76.04965","Terre Hill","PA","Pennsylvania","TRUE","","775","893.8","42071","Lancaster","{""42071"": ""100""}","Lancaster","42071","FALSE","FALSE","America/New_York"
-"17582","39.97442","-76.44656","Washington Boro","PA","Pennsylvania","TRUE","","2266","98.5","42071","Lancaster","{""42071"": ""100""}","Lancaster","42071","FALSE","FALSE","America/New_York"
-"17584","39.95884","-76.26504","Willow Street","PA","Pennsylvania","TRUE","","10585","281.9","42071","Lancaster","{""42071"": ""100""}","Lancaster","42071","FALSE","FALSE","America/New_York"
-"17601","40.07357","-76.31453","Lancaster","PA","Pennsylvania","TRUE","","52552","609.0","42071","Lancaster","{""42071"": ""100""}","Lancaster","42071","FALSE","FALSE","America/New_York"
-"17602","40.01501","-76.24597","Lancaster","PA","Pennsylvania","TRUE","","50417","759.1","42071","Lancaster","{""42071"": ""100""}","Lancaster","42071","FALSE","FALSE","America/New_York"
-"17603","40.01301","-76.35232","Lancaster","PA","Pennsylvania","TRUE","","64242","832.1","42071","Lancaster","{""42071"": ""100""}","Lancaster","42071","FALSE","FALSE","America/New_York"
-"17606","40.11172","-76.30402","Lancaster","PA","Pennsylvania","TRUE","","413","3399.3","42071","Lancaster","{""42071"": ""100""}","Lancaster","42071","FALSE","FALSE","America/New_York"
-"17701","41.33749","-76.90232","Williamsport","PA","Pennsylvania","TRUE","","43218","186.6","42081","Lycoming","{""42081"": ""99.95"", ""42113"": ""0.05""}","Lycoming|Sullivan","42081|42113","FALSE","FALSE","America/New_York"
-"17702","41.18342","-77.07838","Williamsport","PA","Pennsylvania","TRUE","","10384","64.8","42081","Lycoming","{""42081"": ""100""}","Lycoming","42081","FALSE","FALSE","America/New_York"
-"17721","41.18361","-77.31844","Avis","PA","Pennsylvania","TRUE","","1579","825.1","42035","Clinton","{""42035"": ""100""}","Clinton","42035","FALSE","FALSE","America/New_York"
-"17723","41.432","-77.45613","Cammal","PA","Pennsylvania","TRUE","","50","1.5","42081","Lycoming","{""42081"": ""100""}","Lycoming","42081","FALSE","FALSE","America/New_York"
-"17724","41.64177","-76.80387","Canton","PA","Pennsylvania","TRUE","","4740","16.3","42015","Bradford","{""42015"": ""93.62"", ""42117"": ""6.16"", ""42081"": ""0.22""}","Bradford|Tioga|Lycoming","42015|42117|42081","FALSE","FALSE","America/New_York"
-"17727","41.52994","-77.49167","Cedar Run","PA","Pennsylvania","TRUE","","74","0.3","42081","Lycoming","{""42081"": ""94.44"", ""42117"": ""5.56""}","Lycoming|Tioga","42081|42117","FALSE","FALSE","America/New_York"
-"17728","41.32762","-77.08533","Cogan Station","PA","Pennsylvania","TRUE","","4972","40.4","42081","Lycoming","{""42081"": ""100""}","Lycoming","42081","FALSE","FALSE","America/New_York"
-"17729","41.49557","-77.74755","Cross Fork","PA","Pennsylvania","TRUE","","63","0.2","42035","Clinton","{""42035"": ""53.46"", ""42105"": ""46.54""}","Clinton|Potter","42035|42105","FALSE","FALSE","America/New_York"
-"17730","41.11044","-76.8785","Dewart","PA","Pennsylvania","TRUE","","229","523.2","42097","Northumberland","{""42097"": ""100""}","Northumberland","42097","FALSE","FALSE","America/New_York"
-"17731","41.42874","-76.56675","Eagles Mere","PA","Pennsylvania","TRUE","","238","6.6","42113","Sullivan","{""42113"": ""100""}","Sullivan","42113","FALSE","FALSE","America/New_York"
-"17737","41.29888","-76.68821","Hughesville","PA","Pennsylvania","TRUE","","6604","35.4","42081","Lycoming","{""42081"": ""99.84"", ""42113"": ""0.16""}","Lycoming|Sullivan","42081|42113","FALSE","FALSE","America/New_York"
-"17739","41.39347","-77.40858","Jersey Mills","PA","Pennsylvania","TRUE","","32","1.0","42081","Lycoming","{""42081"": ""100""}","Lycoming","42081","FALSE","FALSE","America/New_York"
-"17740","41.24706","-77.27062","Jersey Shore","PA","Pennsylvania","TRUE","","12407","35.1","42081","Lycoming","{""42081"": ""81.53"", ""42035"": ""18.47""}","Lycoming|Clinton","42081|42035","FALSE","FALSE","America/New_York"
-"17742","41.23589","-76.60501","Lairdsville","PA","Pennsylvania","TRUE","","46","233.6","42081","Lycoming","{""42081"": ""100""}","Lycoming","42081","FALSE","FALSE","America/New_York"
-"17744","41.24453","-77.15989","Linden","PA","Pennsylvania","TRUE","","2996","48.3","42081","Lycoming","{""42081"": ""100""}","Lycoming","42081","FALSE","FALSE","America/New_York"
-"17745","41.2708","-77.47638","Lock Haven","PA","Pennsylvania","TRUE","","18397","32.9","42035","Clinton","{""42035"": ""99.42"", ""42081"": ""0.58""}","Clinton|Lycoming","42035|42081","FALSE","FALSE","America/New_York"
-"17747","41.03855","-77.32321","Loganton","PA","Pennsylvania","TRUE","","3426","13.7","42035","Clinton","{""42035"": ""100""}","Clinton","42035","FALSE","FALSE","America/New_York"
-"17748","41.15045","-77.35306","McElhattan","PA","Pennsylvania","TRUE","","186","137.4","42035","Clinton","{""42035"": ""100""}","Clinton","42035","FALSE","FALSE","America/New_York"
-"17749","41.07222","-76.81891","McEwensville","PA","Pennsylvania","TRUE","","286","1030.0","42097","Northumberland","{""42097"": ""100""}","Northumberland","42097","FALSE","FALSE","America/New_York"
-"17750","41.05521","-77.47728","Mackeyville","PA","Pennsylvania","TRUE","","176","44.7","42035","Clinton","{""42035"": ""100""}","Clinton","42035","FALSE","FALSE","America/New_York"
-"17751","41.1368","-77.53826","Mill Hall","PA","Pennsylvania","TRUE","","7169","21.9","42035","Clinton","{""42035"": ""100""}","Clinton","42035","FALSE","FALSE","America/New_York"
-"17752","41.17894","-76.92958","Montgomery","PA","Pennsylvania","TRUE","","4595","50.1","42081","Lycoming","{""42081"": ""100""}","Lycoming","42081","FALSE","FALSE","America/New_York"
-"17754","41.31115","-76.885","Montoursville","PA","Pennsylvania","TRUE","","12404","79.6","42081","Lycoming","{""42081"": ""100""}","Lycoming","42081","FALSE","FALSE","America/New_York"
-"17756","41.20791","-76.73741","Muncy","PA","Pennsylvania","TRUE","","11978","41.1","42081","Lycoming","{""42081"": ""90.41"", ""42097"": ""7.41"", ""42093"": ""1.61"", ""42037"": ""0.57""}","Lycoming|Northumberland|Montour|Columbia","42081|42097|42093|42037","FALSE","FALSE","America/New_York"
-"17758","41.36478","-76.52849","Muncy Valley","PA","Pennsylvania","TRUE","","981","4.6","42113","Sullivan","{""42113"": ""79.98"", ""42081"": ""20.02""}","Sullivan|Lycoming","42113|42081","FALSE","FALSE","America/New_York"
-"17760","41.40825","-77.66414","North Bend","PA","Pennsylvania","TRUE","","648","3.0","42035","Clinton","{""42035"": ""100""}","Clinton","42035","FALSE","FALSE","America/New_York"
-"17762","41.28314","-76.70707","Picture Rocks","PA","Pennsylvania","TRUE","","469","311.9","42081","Lycoming","{""42081"": ""100""}","Lycoming","42081","FALSE","FALSE","America/New_York"
-"17763","41.51534","-76.97576","Ralston","PA","Pennsylvania","TRUE","","178","2.8","42081","Lycoming","{""42081"": ""100""}","Lycoming","42081","FALSE","FALSE","America/New_York"
-"17764","41.33441","-77.81989","Renovo","PA","Pennsylvania","TRUE","","2294","5.5","42035","Clinton","{""42035"": ""100""}","Clinton","42035","FALSE","FALSE","America/New_York"
-"17765","41.57369","-76.9709","Roaring Branch","PA","Pennsylvania","TRUE","","1236","5.8","42117","Tioga","{""42117"": ""80.46"", ""42081"": ""19.54""}","Tioga|Lycoming","42117|42081","FALSE","FALSE","America/New_York"
-"17768","41.54763","-76.74961","Shunk","PA","Pennsylvania","TRUE","","336","4.4","42113","Sullivan","{""42113"": ""100""}","Sullivan","42113","FALSE","FALSE","America/New_York"
-"17771","41.43171","-77.03932","Trout Run","PA","Pennsylvania","TRUE","","3194","5.7","42081","Lycoming","{""42081"": ""100""}","Lycoming","42081","FALSE","FALSE","America/New_York"
-"17772","41.11836","-76.71678","Turbotville","PA","Pennsylvania","TRUE","","2377","40.8","42097","Northumberland","{""42097"": ""60.4"", ""42093"": ""39.6""}","Northumberland|Montour","42097|42093","FALSE","FALSE","America/New_York"
-"17774","41.27923","-76.52915","Unityville","PA","Pennsylvania","TRUE","","1388","11.2","42081","Lycoming","{""42081"": ""87.71"", ""42113"": ""10.02"", ""42037"": ""2.27""}","Lycoming|Sullivan|Columbia","42081|42113|42037","FALSE","FALSE","America/New_York"
-"17776","41.40567","-77.31273","Waterville","PA","Pennsylvania","TRUE","","264","1.2","42081","Lycoming","{""42081"": ""100""}","Lycoming","42081","FALSE","FALSE","America/New_York"
-"17777","41.1031","-76.8255","Watsontown","PA","Pennsylvania","TRUE","","7211","73.9","42097","Northumberland","{""42097"": ""97.79"", ""42093"": ""2.21""}","Northumberland|Montour","42097|42093","FALSE","FALSE","America/New_York"
-"17778","41.28639","-77.96688","Westport","PA","Pennsylvania","TRUE","","161","0.7","42035","Clinton","{""42035"": ""100""}","Clinton","42035","FALSE","FALSE","America/New_York"
-"17779","41.20455","-77.38003","Woolrich","PA","Pennsylvania","TRUE","","386","102.5","42035","Clinton","{""42035"": ""100""}","Clinton","42035","FALSE","FALSE","America/New_York"
-"17801","40.83453","-76.7574","Sunbury","PA","Pennsylvania","TRUE","","15701","91.9","42097","Northumberland","{""42097"": ""100""}","Northumberland","42097","FALSE","FALSE","America/New_York"
-"17810","41.11204","-77.0315","Allenwood","PA","Pennsylvania","TRUE","","5803","39.5","42119","Union","{""42119"": ""74.78"", ""42081"": ""25.22""}","Union|Lycoming","42119|42081","FALSE","FALSE","America/New_York"
-"17812","40.74069","-77.22815","Beaver Springs","PA","Pennsylvania","TRUE","","1258","21.7","42109","Snyder","{""42109"": ""100""}","Snyder","42109","FALSE","FALSE","America/New_York"
-"17813","40.7829","-77.17549","Beavertown","PA","Pennsylvania","TRUE","","2074","23.4","42109","Snyder","{""42109"": ""100""}","Snyder","42109","FALSE","FALSE","America/New_York"
-"17814","41.27606","-76.36933","Benton","PA","Pennsylvania","TRUE","","4899","13.7","42037","Columbia","{""42037"": ""75.86"", ""42079"": ""15.31"", ""42113"": ""7.1"", ""42081"": ""1.73""}","Columbia|Luzerne|Sullivan|Lycoming","42037|42079|42113|42081","FALSE","FALSE","America/New_York"
-"17815","41.01702","-76.42381","Bloomsburg","PA","Pennsylvania","TRUE","","29764","84.7","42037","Columbia","{""42037"": ""99.01"", ""42079"": ""0.74"", ""42093"": ""0.25""}","Columbia|Luzerne|Montour","42037|42079|42093","FALSE","FALSE","America/New_York"
-"17820","40.89893","-76.40947","Catawissa","PA","Pennsylvania","TRUE","","5616","24.0","42037","Columbia","{""42037"": ""97.08"", ""42093"": ""2.92""}","Columbia|Montour","42037|42093","FALSE","FALSE","America/New_York"
-"17821","40.98871","-76.63927","Danville","PA","Pennsylvania","TRUE","","18402","53.2","42093","Montour","{""42093"": ""86.32"", ""42097"": ""11.45"", ""42037"": ""2.23""}","Montour|Northumberland|Columbia","42093|42097|42037","FALSE","FALSE","America/New_York"
-"17822","40.96811","-76.60515","Danville","PA","Pennsylvania","TRUE","","0","0.0","42093","Montour","{""42093"": ""0""}","Montour","42093","FALSE","FALSE","America/New_York"
-"17823","40.72172","-76.72414","Dornsife","PA","Pennsylvania","TRUE","","1258","14.1","42097","Northumberland","{""42097"": ""100""}","Northumberland","42097","FALSE","FALSE","America/New_York"
-"17824","40.85381","-76.50035","Elysburg","PA","Pennsylvania","TRUE","","3889","56.9","42097","Northumberland","{""42097"": ""84.5"", ""42037"": ""15.5""}","Northumberland|Columbia","42097|42037","FALSE","FALSE","America/New_York"
-"17827","40.75453","-76.962","Freeburg","PA","Pennsylvania","TRUE","","672","135.2","42109","Snyder","{""42109"": ""100""}","Snyder","42109","FALSE","FALSE","America/New_York"
-"17829","40.90055","-77.15582","Hartleton","PA","Pennsylvania","TRUE","","244","115.6","42119","Union","{""42119"": ""100""}","Union","42119","FALSE","FALSE","America/New_York"
-"17830","40.68817","-76.79457","Herndon","PA","Pennsylvania","TRUE","","1913","24.2","42097","Northumberland","{""42097"": ""100""}","Northumberland","42097","FALSE","FALSE","America/New_York"
-"17832","40.80594","-76.45906","Marion Heights","PA","Pennsylvania","TRUE","","803","793.9","42097","Northumberland","{""42097"": ""100""}","Northumberland","42097","FALSE","FALSE","America/New_York"
-"17834","40.7793","-76.4682","Kulpmont","PA","Pennsylvania","TRUE","","3374","253.8","42097","Northumberland","{""42097"": ""100""}","Northumberland","42097","FALSE","FALSE","America/New_York"
-"17835","40.88165","-77.20329","Laurelton","PA","Pennsylvania","TRUE","","415","315.5","42119","Union","{""42119"": ""100""}","Union","42119","FALSE","FALSE","America/New_York"
-"17836","40.71336","-76.6016","Leck Kill","PA","Pennsylvania","TRUE","","217","20.5","42097","Northumberland","{""42097"": ""100""}","Northumberland","42097","FALSE","FALSE","America/New_York"
-"17837","40.9811","-76.94856","Lewisburg","PA","Pennsylvania","TRUE","","19660","121.8","42119","Union","{""42119"": ""100""}","Union","42119","FALSE","FALSE","America/New_York"
-"17840","40.77208","-76.43312","Locust Gap","PA","Pennsylvania","TRUE","","598","92.7","42097","Northumberland","{""42097"": ""100""}","Northumberland","42097","FALSE","FALSE","America/New_York"
-"17841","40.72492","-77.35292","McClure","PA","Pennsylvania","TRUE","","4926","24.0","42087","Mifflin","{""42087"": ""54.59"", ""42109"": ""45.41""}","Mifflin|Snyder","42087|42109","FALSE","FALSE","America/New_York"
-"17842","40.80403","-77.04166","Middleburg","PA","Pennsylvania","TRUE","","8625","40.2","42109","Snyder","{""42109"": ""100""}","Snyder","42109","FALSE","FALSE","America/New_York"
-"17844","40.96546","-77.0863","Mifflinburg","PA","Pennsylvania","TRUE","","10296","35.5","42119","Union","{""42119"": ""100""}","Union","42119","FALSE","FALSE","America/New_York"
-"17845","40.8853","-77.21116","Millmont","PA","Pennsylvania","TRUE","","2170","12.8","42119","Union","{""42119"": ""100""}","Union","42119","FALSE","FALSE","America/New_York"
-"17846","41.14531","-76.51724","Millville","PA","Pennsylvania","TRUE","","3912","32.5","42037","Columbia","{""42037"": ""99.2"", ""42081"": ""0.8""}","Columbia|Lycoming","42037|42081","FALSE","FALSE","America/New_York"
-"17847","41.0057","-76.80591","Milton","PA","Pennsylvania","TRUE","","11572","95.2","42097","Northumberland","{""42097"": ""94.27"", ""42093"": ""5.73""}","Northumberland|Montour","42097|42093","FALSE","FALSE","America/New_York"
-"17850","40.9658","-76.8575","Montandon","PA","Pennsylvania","TRUE","","680","806.7","42097","Northumberland","{""42097"": ""100""}","Northumberland","42097","FALSE","FALSE","America/New_York"
-"17851","40.80428","-76.43246","Mount Carmel","PA","Pennsylvania","TRUE","","7405","188.7","42097","Northumberland","{""42097"": ""100""}","Northumberland","42097","FALSE","FALSE","America/New_York"
-"17853","40.69423","-77.00953","Mount Pleasant Mills","PA","Pennsylvania","TRUE","","3363","30.7","42109","Snyder","{""42109"": ""86.53"", ""42067"": ""13.47""}","Snyder|Juniata","42109|42067","FALSE","FALSE","America/New_York"
-"17855","40.88731","-76.97223","New Berlin","PA","Pennsylvania","TRUE","","1031","203.9","42119","Union","{""42119"": ""100""}","Union","42119","FALSE","FALSE","America/New_York"
-"17856","41.06099","-76.94567","New Columbia","PA","Pennsylvania","TRUE","","3161","34.4","42119","Union","{""42119"": ""100""}","Union","42119","FALSE","FALSE","America/New_York"
-"17857","40.92793","-76.76739","Northumberland","PA","Pennsylvania","TRUE","","7306","105.4","42097","Northumberland","{""42097"": ""100""}","Northumberland","42097","FALSE","FALSE","America/New_York"
-"17859","41.11781","-76.39304","Orangeville","PA","Pennsylvania","TRUE","","2807","28.1","42037","Columbia","{""42037"": ""100""}","Columbia","42037","FALSE","FALSE","America/New_York"
-"17860","40.82666","-76.63614","Paxinos","PA","Pennsylvania","TRUE","","2633","38.5","42097","Northumberland","{""42097"": ""100""}","Northumberland","42097","FALSE","FALSE","America/New_York"
-"17861","40.77231","-77.08325","Paxtonville","PA","Pennsylvania","TRUE","","169","452.6","42109","Snyder","{""42109"": ""100""}","Snyder","42109","FALSE","FALSE","America/New_York"
-"17862","40.86052","-77.05692","Penns Creek","PA","Pennsylvania","TRUE","","527","494.8","42109","Snyder","{""42109"": ""100""}","Snyder","42109","FALSE","FALSE","America/New_York"
-"17864","40.70372","-76.90494","Port Trevorton","PA","Pennsylvania","TRUE","","2206","42.5","42109","Snyder","{""42109"": ""100""}","Snyder","42109","FALSE","FALSE","America/New_York"
-"17865","40.99015","-76.78678","Potts Grove","PA","Pennsylvania","TRUE","","128","317.8","42097","Northumberland","{""42097"": ""100""}","Northumberland","42097","FALSE","FALSE","America/New_York"
-"17866","40.78848","-76.54899","Coal Township","PA","Pennsylvania","TRUE","","10297","158.4","42097","Northumberland","{""42097"": ""100""}","Northumberland","42097","FALSE","FALSE","America/New_York"
-"17867","40.71407","-76.68838","Rebuck","PA","Pennsylvania","TRUE","","127","13.8","42097","Northumberland","{""42097"": ""100""}","Northumberland","42097","FALSE","FALSE","America/New_York"
-"17868","40.95787","-76.634","Riverside","PA","Pennsylvania","TRUE","","1135","653.3","42097","Northumberland","{""42097"": ""100""}","Northumberland","42097","FALSE","FALSE","America/New_York"
-"17870","40.81313","-76.88654","Selinsgrove","PA","Pennsylvania","TRUE","","15407","131.8","42109","Snyder","{""42109"": ""99.01"", ""42119"": ""0.99""}","Snyder|Union","42109|42119","FALSE","FALSE","America/New_York"
-"17872","40.76654","-76.61207","Shamokin","PA","Pennsylvania","TRUE","","9202","87.6","42097","Northumberland","{""42097"": ""100""}","Northumberland","42097","FALSE","FALSE","America/New_York"
-"17876","40.85466","-76.82307","Shamokin Dam","PA","Pennsylvania","TRUE","","1919","399.9","42109","Snyder","{""42109"": ""100""}","Snyder","42109","FALSE","FALSE","America/New_York"
-"17878","41.17213","-76.32236","Stillwater","PA","Pennsylvania","TRUE","","1443","26.4","42037","Columbia","{""42037"": ""58.97"", ""42079"": ""41.03""}","Columbia|Luzerne","42037|42079","FALSE","FALSE","America/New_York"
-"17880","40.89224","-77.12174","Swengel","PA","Pennsylvania","TRUE","","128","397.9","42119","Union","{""42119"": ""100""}","Union","42119","FALSE","FALSE","America/New_York"
-"17881","40.78285","-76.67013","Trevorton","PA","Pennsylvania","TRUE","","1424","115.7","42097","Northumberland","{""42097"": ""100""}","Northumberland","42097","FALSE","FALSE","America/New_York"
-"17884","41.0556","-76.66865","Washingtonville","PA","Pennsylvania","TRUE","","201","157.2","42093","Montour","{""42093"": ""100""}","Montour","42093","FALSE","FALSE","America/New_York"
-"17885","40.85601","-77.31861","Weikert","PA","Pennsylvania","TRUE","","212","7.6","42119","Union","{""42119"": ""100""}","Union","42119","FALSE","FALSE","America/New_York"
-"17886","41.01667","-76.87519","West Milton","PA","Pennsylvania","TRUE","","1630","646.1","42119","Union","{""42119"": ""100""}","Union","42119","FALSE","FALSE","America/New_York"
-"17887","41.11521","-76.91786","White Deer","PA","Pennsylvania","TRUE","","227","77.7","42119","Union","{""42119"": ""100""}","Union","42119","FALSE","FALSE","America/New_York"
-"17888","40.81034","-76.3771","Wilburton","PA","Pennsylvania","TRUE","","281","38.1","42037","Columbia","{""42037"": ""100""}","Columbia","42037","FALSE","FALSE","America/New_York"
-"17889","40.88262","-76.91803","Winfield","PA","Pennsylvania","TRUE","","2516","42.8","42119","Union","{""42119"": ""54.59"", ""42109"": ""45.41""}","Union|Snyder","42119|42109","FALSE","FALSE","America/New_York"
-"17901","40.69364","-76.25521","Pottsville","PA","Pennsylvania","TRUE","","22670","112.2","42107","Schuylkill","{""42107"": ""100""}","Schuylkill","42107","FALSE","FALSE","America/New_York"
-"17920","40.81614","-76.32812","Aristes","PA","Pennsylvania","TRUE","","338","29.4","42037","Columbia","{""42037"": ""100""}","Columbia","42037","FALSE","FALSE","America/New_York"
-"17921","40.7503","-76.36289","Ashland","PA","Pennsylvania","TRUE","","7321","74.9","42107","Schuylkill","{""42107"": ""99.82"", ""42037"": ""0.18""}","Schuylkill|Columbia","42107|42037","FALSE","FALSE","America/New_York"
-"17922","40.59121","-76.11425","Auburn","PA","Pennsylvania","TRUE","","4772","60.6","42107","Schuylkill","{""42107"": ""100""}","Schuylkill","42107","FALSE","FALSE","America/New_York"
-"17923","40.64109","-76.31849","Branchdale","PA","Pennsylvania","TRUE","","438","19.5","42107","Schuylkill","{""42107"": ""100""}","Schuylkill","42107","FALSE","FALSE","America/New_York"
-"17925","40.75608","-76.0702","Brockton","PA","Pennsylvania","TRUE","","364","143.8","42107","Schuylkill","{""42107"": ""100""}","Schuylkill","42107","FALSE","FALSE","America/New_York"
-"17929","40.63065","-76.1942","Cressona","PA","Pennsylvania","TRUE","","1554","595.8","42107","Schuylkill","{""42107"": ""100""}","Schuylkill","42107","FALSE","FALSE","America/New_York"
-"17930","40.70867","-76.1153","Cumbola","PA","Pennsylvania","TRUE","","387","48.9","42107","Schuylkill","{""42107"": ""100""}","Schuylkill","42107","FALSE","FALSE","America/New_York"
-"17931","40.78374","-76.21507","Frackville","PA","Pennsylvania","TRUE","","8751","323.2","42107","Schuylkill","{""42107"": ""100""}","Schuylkill","42107","FALSE","FALSE","America/New_York"
-"17933","40.6043","-76.24311","Friedensburg","PA","Pennsylvania","TRUE","","135","580.3","42107","Schuylkill","{""42107"": ""100""}","Schuylkill","42107","FALSE","FALSE","America/New_York"
-"17934","40.79771","-76.21661","Gilberton","PA","Pennsylvania","TRUE","","395","161.2","42107","Schuylkill","{""42107"": ""100""}","Schuylkill","42107","FALSE","FALSE","America/New_York"
-"17935","40.79602","-76.2832","Girardville","PA","Pennsylvania","TRUE","","1595","141.2","42107","Schuylkill","{""42107"": ""100""}","Schuylkill","42107","FALSE","FALSE","America/New_York"
-"17936","40.75013","-76.33989","Gordon","PA","Pennsylvania","TRUE","","821","534.6","42107","Schuylkill","{""42107"": ""100""}","Schuylkill","42107","FALSE","FALSE","America/New_York"
-"17938","40.65139","-76.51595","Hegins","PA","Pennsylvania","TRUE","","2308","22.5","42107","Schuylkill","{""42107"": ""100""}","Schuylkill","42107","FALSE","FALSE","America/New_York"
-"17941","40.68402","-76.61416","Klingerstown","PA","Pennsylvania","TRUE","","772","12.1","42107","Schuylkill","{""42107"": ""78.9"", ""42097"": ""21.1""}","Schuylkill|Northumberland","42107|42097","FALSE","FALSE","America/New_York"
-"17943","40.75658","-76.38796","Lavelle","PA","Pennsylvania","TRUE","","113","74.9","42107","Schuylkill","{""42107"": ""100""}","Schuylkill","42107","FALSE","FALSE","America/New_York"
-"17944","40.67245","-76.27917","Llewellyn","PA","Pennsylvania","TRUE","","136","367.9","42107","Schuylkill","{""42107"": ""100""}","Schuylkill","42107","FALSE","FALSE","America/New_York"
-"17945","40.78458","-76.37512","Locustdale","PA","Pennsylvania","TRUE","","188","70.0","42037","Columbia","{""42037"": ""51.67"", ""42107"": ""48.33""}","Columbia|Schuylkill","42037|42107","FALSE","FALSE","America/New_York"
-"17946","40.81204","-76.24909","Lost Creek","PA","Pennsylvania","TRUE","","146","29.5","42107","Schuylkill","{""42107"": ""100""}","Schuylkill","42107","FALSE","FALSE","America/New_York"
-"17948","40.84075","-76.11385","Mahanoy City","PA","Pennsylvania","TRUE","","4677","70.5","42107","Schuylkill","{""42107"": ""100""}","Schuylkill","42107","FALSE","FALSE","America/New_York"
-"17949","40.79397","-76.24226","Mahanoy Plane","PA","Pennsylvania","TRUE","","222","851.4","42107","Schuylkill","{""42107"": ""100""}","Schuylkill","42107","FALSE","FALSE","America/New_York"
-"17951","40.67845","-76.24483","Mar Lin","PA","Pennsylvania","TRUE","","238","497.4","42107","Schuylkill","{""42107"": ""100""}","Schuylkill","42107","FALSE","FALSE","America/New_York"
-"17952","40.75544","-76.05854","Mary D","PA","Pennsylvania","TRUE","","274","30.4","42107","Schuylkill","{""42107"": ""100""}","Schuylkill","42107","FALSE","FALSE","America/New_York"
-"17953","40.75185","-76.12392","Middleport","PA","Pennsylvania","TRUE","","427","12.1","42107","Schuylkill","{""42107"": ""100""}","Schuylkill","42107","FALSE","FALSE","America/New_York"
-"17954","40.69042","-76.25973","Minersville","PA","Pennsylvania","TRUE","","4460","2473.9","42107","Schuylkill","{""42107"": ""100""}","Schuylkill","42107","FALSE","FALSE","America/New_York"
-"17957","40.5918","-76.51829","Muir","PA","Pennsylvania","TRUE","","299","734.5","42107","Schuylkill","{""42107"": ""100""}","Schuylkill","42107","FALSE","FALSE","America/New_York"
-"17959","40.73328","-76.14463","New Philadelphia","PA","Pennsylvania","TRUE","","1362","58.3","42107","Schuylkill","{""42107"": ""100""}","Schuylkill","42107","FALSE","FALSE","America/New_York"
-"17960","40.69973","-75.94584","New Ringgold","PA","Pennsylvania","TRUE","","4114","30.8","42107","Schuylkill","{""42107"": ""100""}","Schuylkill","42107","FALSE","FALSE","America/New_York"
-"17961","40.64791","-76.06158","Orwigsburg","PA","Pennsylvania","TRUE","","6590","95.6","42107","Schuylkill","{""42107"": ""100""}","Schuylkill","42107","FALSE","FALSE","America/New_York"
-"17963","40.56124","-76.38315","Pine Grove","PA","Pennsylvania","TRUE","","9043","38.5","42107","Schuylkill","{""42107"": ""99.32"", ""42075"": ""0.68""}","Schuylkill|Lebanon","42107|42075","FALSE","FALSE","America/New_York"
-"17964","40.71419","-76.49698","Pitman","PA","Pennsylvania","TRUE","","801","13.5","42107","Schuylkill","{""42107"": ""94.61"", ""42097"": ""5.39""}","Schuylkill|Northumberland","42107|42097","FALSE","FALSE","America/New_York"
-"17965","40.69859","-76.16533","Port Carbon","PA","Pennsylvania","TRUE","","1989","1077.0","42107","Schuylkill","{""42107"": ""100""}","Schuylkill","42107","FALSE","FALSE","America/New_York"
-"17967","40.85556","-76.22076","Ringtown","PA","Pennsylvania","TRUE","","2488","33.0","42107","Schuylkill","{""42107"": ""100""}","Schuylkill","42107","FALSE","FALSE","America/New_York"
-"17968","40.63868","-76.61229","Sacramento","PA","Pennsylvania","TRUE","","259","25.6","42107","Schuylkill","{""42107"": ""100""}","Schuylkill","42107","FALSE","FALSE","America/New_York"
-"17970","40.72018","-76.19185","Saint Clair","PA","Pennsylvania","TRUE","","3105","874.5","42107","Schuylkill","{""42107"": ""100""}","Schuylkill","42107","FALSE","FALSE","America/New_York"
-"17972","40.58962","-76.20538","Schuylkill Haven","PA","Pennsylvania","TRUE","","11308","106.6","42107","Schuylkill","{""42107"": ""100""}","Schuylkill","42107","FALSE","FALSE","America/New_York"
-"17974","40.69572","-76.23628","Seltzer","PA","Pennsylvania","TRUE","","281","1595.0","42107","Schuylkill","{""42107"": ""100""}","Schuylkill","42107","FALSE","FALSE","America/New_York"
-"17976","40.82081","-76.20974","Shenandoah","PA","Pennsylvania","TRUE","","6644","334.4","42107","Schuylkill","{""42107"": ""100""}","Schuylkill","42107","FALSE","FALSE","America/New_York"
-"17978","40.62546","-76.61487","Spring Glen","PA","Pennsylvania","TRUE","","286","39.8","42107","Schuylkill","{""42107"": ""100""}","Schuylkill","42107","FALSE","FALSE","America/New_York"
-"17979","40.56151","-76.19974","Summit Station","PA","Pennsylvania","TRUE","","197","72.1","42107","Schuylkill","{""42107"": ""100""}","Schuylkill","42107","FALSE","FALSE","America/New_York"
-"17980","40.5406","-76.60773","Tower City","PA","Pennsylvania","TRUE","","3037","29.5","42107","Schuylkill","{""42107"": ""92.87"", ""42043"": ""7.13""}","Schuylkill|Dauphin","42107|42043","FALSE","FALSE","America/New_York"
-"17981","40.63435","-76.39047","Tremont","PA","Pennsylvania","TRUE","","2713","38.3","42107","Schuylkill","{""42107"": ""100""}","Schuylkill","42107","FALSE","FALSE","America/New_York"
-"17982","40.78586","-76.02126","Tuscarora","PA","Pennsylvania","TRUE","","452","35.8","42107","Schuylkill","{""42107"": ""100""}","Schuylkill","42107","FALSE","FALSE","America/New_York"
-"17983","40.6426","-76.54716","Valley View","PA","Pennsylvania","TRUE","","1543","237.4","42107","Schuylkill","{""42107"": ""100""}","Schuylkill","42107","FALSE","FALSE","America/New_York"
-"17985","40.91353","-76.21827","Zion Grove","PA","Pennsylvania","TRUE","","1204","17.7","42107","Schuylkill","{""42107"": ""87.68"", ""42037"": ""12.32""}","Schuylkill|Columbia","42107|42037","FALSE","FALSE","America/New_York"
-"18011","40.47124","-75.64643","Alburtis","PA","Pennsylvania","TRUE","","5580","130.5","42077","Lehigh","{""42077"": ""70.57"", ""42011"": ""29.43""}","Lehigh|Berks","42077|42011","FALSE","FALSE","America/New_York"
-"18013","40.85301","-75.17174","Bangor","PA","Pennsylvania","TRUE","","18037","115.6","42095","Northampton","{""42095"": ""100""}","Northampton","42095","FALSE","FALSE","America/New_York"
-"18014","40.76509","-75.40936","Bath","PA","Pennsylvania","TRUE","","11660","135.0","42095","Northampton","{""42095"": ""100""}","Northampton","42095","FALSE","FALSE","America/New_York"
-"18015","40.59008","-75.37082","Bethlehem","PA","Pennsylvania","TRUE","","33447","608.2","42095","Northampton","{""42095"": ""78.13"", ""42077"": ""21.87""}","Northampton|Lehigh","42095|42077","FALSE","FALSE","America/New_York"
-"18016","40.63234","-75.3931","Bethlehem","PA","Pennsylvania","TRUE","","0","0.0","42077","Lehigh","{""42077"": ""0""}","Lehigh","42077","FALSE","FALSE","America/New_York"
-"18017","40.65971","-75.38684","Bethlehem","PA","Pennsylvania","TRUE","","39453","942.7","42095","Northampton","{""42095"": ""96.76"", ""42077"": ""3.24""}","Northampton|Lehigh","42095|42077","FALSE","FALSE","America/New_York"
-"18018","40.62772","-75.39528","Bethlehem","PA","Pennsylvania","TRUE","","31304","2341.2","42077","Lehigh","{""42077"": ""55.93"", ""42095"": ""44.07""}","Lehigh|Northampton","42077|42095","FALSE","FALSE","America/New_York"
-"18020","40.67227","-75.32689","Bethlehem","PA","Pennsylvania","TRUE","","20393","569.4","42095","Northampton","{""42095"": ""100""}","Northampton","42095","FALSE","FALSE","America/New_York"
-"18030","40.80223","-75.66404","Bowmanstown","PA","Pennsylvania","TRUE","","610","524.9","42025","Carbon","{""42025"": ""100""}","Carbon","42025","FALSE","FALSE","America/New_York"
-"18031","40.55399","-75.65287","Breinigsville","PA","Pennsylvania","TRUE","","10622","300.3","42077","Lehigh","{""42077"": ""99.76"", ""42011"": ""0.24""}","Lehigh|Berks","42077|42011","FALSE","FALSE","America/New_York"
-"18032","40.65696","-75.4678","Catasauqua","PA","Pennsylvania","TRUE","","9399","1805.8","42077","Lehigh","{""42077"": ""69.32"", ""42095"": ""30.68""}","Lehigh|Northampton","42077|42095","FALSE","FALSE","America/New_York"
-"18034","40.54349","-75.41632","Center Valley","PA","Pennsylvania","TRUE","","9186","312.8","42077","Lehigh","{""42077"": ""100""}","Lehigh","42077","FALSE","FALSE","America/New_York"
-"18035","40.74673","-75.53873","Cherryville","PA","Pennsylvania","TRUE","","29","31.9","42095","Northampton","{""42095"": ""100""}","Northampton","42095","FALSE","FALSE","America/New_York"
-"18036","40.50901","-75.38593","Coopersburg","PA","Pennsylvania","TRUE","","13942","183.7","42077","Lehigh","{""42077"": ""83.33"", ""42017"": ""16.67""}","Lehigh|Bucks","42077|42017","FALSE","FALSE","America/New_York"
-"18037","40.68217","-75.545","Coplay","PA","Pennsylvania","TRUE","","7806","413.1","42077","Lehigh","{""42077"": ""100""}","Lehigh","42077","FALSE","FALSE","America/New_York"
-"18038","40.79594","-75.48226","Danielsville","PA","Pennsylvania","TRUE","","2846","84.1","42095","Northampton","{""42095"": ""100""}","Northampton","42095","FALSE","FALSE","America/New_York"
-"18040","40.74492","-75.22169","Easton","PA","Pennsylvania","TRUE","","16586","378.1","42095","Northampton","{""42095"": ""100""}","Northampton","42095","FALSE","FALSE","America/New_York"
-"18041","40.41948","-75.51485","East Greenville","PA","Pennsylvania","TRUE","","5252","146.0","42091","Montgomery","{""42091"": ""87.37"", ""42077"": ""9.83"", ""42011"": ""2.3"", ""42017"": ""0.5""}","Montgomery|Lehigh|Berks|Bucks","42091|42077|42011|42017","FALSE","FALSE","America/New_York"
-"18042","40.65153","-75.22403","Easton","PA","Pennsylvania","TRUE","","42299","770.8","42095","Northampton","{""42095"": ""100""}","Northampton","42095","FALSE","FALSE","America/New_York"
-"18045","40.69399","-75.27423","Easton","PA","Pennsylvania","TRUE","","26881","562.4","42095","Northampton","{""42095"": ""100""}","Northampton","42095","FALSE","FALSE","America/New_York"
-"18046","40.54805","-75.5603","East Texas","PA","Pennsylvania","TRUE","","0","0.0","42077","Lehigh","{""42077"": ""100""}","Lehigh","42077","FALSE","FALSE","America/New_York"
-"18049","40.51741","-75.5008","Emmaus","PA","Pennsylvania","TRUE","","17578","452.5","42077","Lehigh","{""42077"": ""100""}","Lehigh","42077","FALSE","FALSE","America/New_York"
-"18051","40.59337","-75.66623","Fogelsville","PA","Pennsylvania","TRUE","","3429","158.3","42077","Lehigh","{""42077"": ""100""}","Lehigh","42077","FALSE","FALSE","America/New_York"
-"18052","40.65684","-75.50458","Whitehall","PA","Pennsylvania","TRUE","","27678","843.0","42077","Lehigh","{""42077"": ""100""}","Lehigh","42077","FALSE","FALSE","America/New_York"
-"18053","40.71797","-75.70698","Germansville","PA","Pennsylvania","TRUE","","2182","51.3","42077","Lehigh","{""42077"": ""100""}","Lehigh","42077","FALSE","FALSE","America/New_York"
-"18054","40.35423","-75.43661","Green Lane","PA","Pennsylvania","TRUE","","4653","109.6","42091","Montgomery","{""42091"": ""81.44"", ""42017"": ""18.56""}","Montgomery|Bucks","42091|42017","FALSE","FALSE","America/New_York"
-"18055","40.5892","-75.29957","Hellertown","PA","Pennsylvania","TRUE","","11742","211.5","42095","Northampton","{""42095"": ""98.95"", ""42017"": ""1.05""}","Northampton|Bucks","42095|42017","FALSE","FALSE","America/New_York"
-"18056","40.4491","-75.54912","Hereford","PA","Pennsylvania","TRUE","","916","210.9","42011","Berks","{""42011"": ""100""}","Berks","42011","FALSE","FALSE","America/New_York"
-"18058","40.89122","-75.49311","Kunkletown","PA","Pennsylvania","TRUE","","10056","75.2","42089","Monroe","{""42089"": ""87.42"", ""42025"": ""12.58""}","Monroe|Carbon","42089|42025","FALSE","FALSE","America/New_York"
-"18059","40.72339","-75.53629","Laurys Station","PA","Pennsylvania","TRUE","","973","233.1","42077","Lehigh","{""42077"": ""100""}","Lehigh","42077","FALSE","FALSE","America/New_York"
-"18062","40.50251","-75.58301","Macungie","PA","Pennsylvania","TRUE","","25769","466.8","42077","Lehigh","{""42077"": ""92.04"", ""42011"": ""7.96""}","Lehigh|Berks","42077|42011","FALSE","FALSE","America/New_York"
-"18063","40.7824","-75.17201","Martins Creek","PA","Pennsylvania","TRUE","","391","150.4","42095","Northampton","{""42095"": ""100""}","Northampton","42095","FALSE","FALSE","America/New_York"
-"18064","40.75742","-75.31792","Nazareth","PA","Pennsylvania","TRUE","","26396","265.3","42095","Northampton","{""42095"": ""100""}","Northampton","42095","FALSE","FALSE","America/New_York"
-"18066","40.66491","-75.74498","New Tripoli","PA","Pennsylvania","TRUE","","6404","54.2","42077","Lehigh","{""42077"": ""100""}","Lehigh","42077","FALSE","FALSE","America/New_York"
-"18067","40.71692","-75.47803","Northampton","PA","Pennsylvania","TRUE","","17879","276.6","42095","Northampton","{""42095"": ""100""}","Northampton","42095","FALSE","FALSE","America/New_York"
-"18068","40.48482","-75.52003","Old Zionsville","PA","Pennsylvania","TRUE","","0","0.0","42077","Lehigh","{""42077"": ""100""}","Lehigh","42077","FALSE","FALSE","America/New_York"
-"18069","40.62593","-75.61736","Orefield","PA","Pennsylvania","TRUE","","7973","222.7","42077","Lehigh","{""42077"": ""100""}","Lehigh","42077","FALSE","FALSE","America/New_York"
-"18070","40.43217","-75.53529","Palm","PA","Pennsylvania","TRUE","","922","149.3","42091","Montgomery","{""42091"": ""78.76"", ""42011"": ""21.24""}","Montgomery|Berks","42091|42011","FALSE","FALSE","America/New_York"
-"18071","40.82964","-75.58125","Palmerton","PA","Pennsylvania","TRUE","","10150","128.5","42025","Carbon","{""42025"": ""99.2"", ""42089"": ""0.8""}","Carbon|Monroe","42025|42089","FALSE","FALSE","America/New_York"
-"18072","40.84556","-75.25759","Pen Argyl","PA","Pennsylvania","TRUE","","6550","167.7","42095","Northampton","{""42095"": ""100""}","Northampton","42095","FALSE","FALSE","America/New_York"
-"18073","40.38414","-75.47555","Pennsburg","PA","Pennsylvania","TRUE","","10745","216.9","42091","Montgomery","{""42091"": ""92.79"", ""42017"": ""7.21""}","Montgomery|Bucks","42091|42017","FALSE","FALSE","America/New_York"
-"18074","40.31952","-75.51609","Perkiomenville","PA","Pennsylvania","TRUE","","5836","119.2","42091","Montgomery","{""42091"": ""100""}","Montgomery","42091","FALSE","FALSE","America/New_York"
-"18076","40.37475","-75.48076","Red Hill","PA","Pennsylvania","TRUE","","2882","927.0","42091","Montgomery","{""42091"": ""100""}","Montgomery","42091","FALSE","FALSE","America/New_York"
-"18077","40.56687","-75.2435","Riegelsville","PA","Pennsylvania","TRUE","","2349","62.2","42017","Bucks","{""42017"": ""91.94"", ""42095"": ""8.06""}","Bucks|Northampton","42017|42095","FALSE","FALSE","America/New_York"
-"18078","40.67323","-75.61893","Schnecksville","PA","Pennsylvania","TRUE","","7621","186.7","42077","Lehigh","{""42077"": ""100""}","Lehigh","42077","FALSE","FALSE","America/New_York"
-"18079","40.74411","-75.65793","Slatedale","PA","Pennsylvania","TRUE","","751","1230.4","42077","Lehigh","{""42077"": ""100""}","Lehigh","42077","FALSE","FALSE","America/New_York"
-"18080","40.7358","-75.63322","Slatington","PA","Pennsylvania","TRUE","","11211","140.7","42077","Lehigh","{""42077"": ""100""}","Lehigh","42077","FALSE","FALSE","America/New_York"
-"18081","40.56225","-75.28391","Springtown","PA","Pennsylvania","TRUE","","251","184.1","42017","Bucks","{""42017"": ""100""}","Bucks","42017","FALSE","FALSE","America/New_York"
-"18083","40.75457","-75.26709","Stockertown","PA","Pennsylvania","TRUE","","408","257.0","42095","Northampton","{""42095"": ""100""}","Northampton","42095","FALSE","FALSE","America/New_York"
-"18085","40.74131","-75.25519","Tatamy","PA","Pennsylvania","TRUE","","1032","788.4","42095","Northampton","{""42095"": ""100""}","Northampton","42095","FALSE","FALSE","America/New_York"
-"18086","40.73713","-75.54829","Treichlers","PA","Pennsylvania","TRUE","","841","683.4","42095","Northampton","{""42095"": ""100""}","Northampton","42095","FALSE","FALSE","America/New_York"
-"18087","40.55421","-75.59481","Trexlertown","PA","Pennsylvania","TRUE","","942","331.8","42077","Lehigh","{""42077"": ""100""}","Lehigh","42077","FALSE","FALSE","America/New_York"
-"18088","40.76596","-75.55657","Walnutport","PA","Pennsylvania","TRUE","","8649","171.9","42095","Northampton","{""42095"": ""100""}","Northampton","42095","FALSE","FALSE","America/New_York"
-"18091","40.82612","-75.32005","Wind Gap","PA","Pennsylvania","TRUE","","5385","134.8","42095","Northampton","{""42095"": ""100""}","Northampton","42095","FALSE","FALSE","America/New_York"
-"18092","40.47045","-75.51533","Zionsville","PA","Pennsylvania","TRUE","","3192","82.4","42077","Lehigh","{""42077"": ""97.21"", ""42011"": ""2.79""}","Lehigh|Berks","42077|42011","FALSE","FALSE","America/New_York"
-"18101","40.6027","-75.46925","Allentown","PA","Pennsylvania","TRUE","","4720","5214.5","42077","Lehigh","{""42077"": ""100""}","Lehigh","42077","FALSE","FALSE","America/New_York"
-"18102","40.6083","-75.4763","Allentown","PA","Pennsylvania","TRUE","","49497","6377.8","42077","Lehigh","{""42077"": ""100""}","Lehigh","42077","FALSE","FALSE","America/New_York"
-"18103","40.57044","-75.48232","Allentown","PA","Pennsylvania","TRUE","","46393","1017.1","42077","Lehigh","{""42077"": ""100""}","Lehigh","42077","FALSE","FALSE","America/New_York"
-"18104","40.61129","-75.54707","Allentown","PA","Pennsylvania","TRUE","","44908","750.6","42077","Lehigh","{""42077"": ""100""}","Lehigh","42077","FALSE","FALSE","America/New_York"
-"18105","40.60141","-75.49394","Allentown","PA","Pennsylvania","TRUE","","31","1554.1","42077","Lehigh","{""42077"": ""100""}","Lehigh","42077","FALSE","FALSE","America/New_York"
-"18106","40.57568","-75.59616","Allentown","PA","Pennsylvania","TRUE","","7265","340.1","42077","Lehigh","{""42077"": ""100""}","Lehigh","42077","FALSE","FALSE","America/New_York"
-"18109","40.6366","-75.44047","Allentown","PA","Pennsylvania","TRUE","","17794","838.2","42077","Lehigh","{""42077"": ""98.78"", ""42095"": ""1.22""}","Lehigh|Northampton","42077|42095","FALSE","FALSE","America/New_York"
-"18195","40.58427","-75.62479","Allentown","PA","Pennsylvania","TRUE","","0","0.0","42077","Lehigh","{""42077"": ""0""}","Lehigh","42077","FALSE","FALSE","America/New_York"
-"18201","40.94888","-75.95625","Hazleton","PA","Pennsylvania","TRUE","","26983","483.8","42079","Luzerne","{""42079"": ""99.33"", ""42107"": ""0.41"", ""42025"": ""0.26""}","Luzerne|Schuylkill|Carbon","42079|42107|42025","FALSE","FALSE","America/New_York"
-"18202","40.95148","-76.04683","Hazleton","PA","Pennsylvania","TRUE","","11853","140.0","42079","Luzerne","{""42079"": ""96.42"", ""42107"": ""3.58""}","Luzerne|Schuylkill","42079|42107","FALSE","FALSE","America/New_York"
-"18210","41.00118","-75.57188","Albrightsville","PA","Pennsylvania","TRUE","","7614","93.9","42025","Carbon","{""42025"": ""77.45"", ""42089"": ""22.55""}","Carbon|Monroe","42025|42089","FALSE","FALSE","America/New_York"
-"18211","40.74377","-75.82539","Andreas","PA","Pennsylvania","TRUE","","1115","20.2","42107","Schuylkill","{""42107"": ""97.39"", ""42025"": ""2.61""}","Schuylkill|Carbon","42107|42025","FALSE","FALSE","America/New_York"
-"18212","40.77523","-75.70957","Ashfield","PA","Pennsylvania","TRUE","","121","27.4","42025","Carbon","{""42025"": ""100""}","Carbon","42025","FALSE","FALSE","America/New_York"
-"18214","40.7988","-76.0815","Barnesville","PA","Pennsylvania","TRUE","","1908","30.8","42107","Schuylkill","{""42107"": ""100""}","Schuylkill","42107","FALSE","FALSE","America/New_York"
-"18216","40.9415","-75.89283","Beaver Meadows","PA","Pennsylvania","TRUE","","1289","96.3","42025","Carbon","{""42025"": ""96.63"", ""42079"": ""3.37""}","Carbon|Luzerne","42025|42079","FALSE","FALSE","America/New_York"
-"18218","40.81973","-75.9161","Coaldale","PA","Pennsylvania","TRUE","","2245","398.5","42107","Schuylkill","{""42107"": ""100""}","Schuylkill","42107","FALSE","FALSE","America/New_York"
-"18219","40.99086","-76.0575","Conyngham","PA","Pennsylvania","TRUE","","1554","726.6","42079","Luzerne","{""42079"": ""100""}","Luzerne","42079","FALSE","FALSE","America/New_York"
-"18220","40.84049","-76.06034","Delano","PA","Pennsylvania","TRUE","","260","107.9","42107","Schuylkill","{""42107"": ""100""}","Schuylkill","42107","FALSE","FALSE","America/New_York"
-"18221","41.00179","-75.91731","Drifton","PA","Pennsylvania","TRUE","","212","41.4","42079","Luzerne","{""42079"": ""100""}","Luzerne","42079","FALSE","FALSE","America/New_York"
-"18222","41.03504","-76.0005","Drums","PA","Pennsylvania","TRUE","","9484","97.5","42079","Luzerne","{""42079"": ""100""}","Luzerne","42079","FALSE","FALSE","America/New_York"
-"18223","40.98235","-75.9502","Ebervale","PA","Pennsylvania","TRUE","","186","57.6","42079","Luzerne","{""42079"": ""100""}","Luzerne","42079","FALSE","FALSE","America/New_York"
-"18224","41.02248","-75.87949","Freeland","PA","Pennsylvania","TRUE","","6134","148.6","42079","Luzerne","{""42079"": ""100""}","Luzerne","42079","FALSE","FALSE","America/New_York"
-"18225","40.98132","-75.97121","Harleigh","PA","Pennsylvania","TRUE","","249","2236.3","42079","Luzerne","{""42079"": ""100""}","Luzerne","42079","FALSE","FALSE","America/New_York"
-"18229","40.93059","-75.67677","Jim Thorpe","PA","Pennsylvania","TRUE","","8867","55.2","42025","Carbon","{""42025"": ""100""}","Carbon","42025","FALSE","FALSE","America/New_York"
-"18230","40.92114","-75.93445","Junedale","PA","Pennsylvania","TRUE","","88","12.5","42025","Carbon","{""42025"": ""100""}","Carbon","42025","FALSE","FALSE","America/New_York"
-"18231","40.90427","-76.00791","Kelayres","PA","Pennsylvania","TRUE","","487","189.5","42107","Schuylkill","{""42107"": ""100""}","Schuylkill","42107","FALSE","FALSE","America/New_York"
-"18232","40.83307","-75.88478","Lansford","PA","Pennsylvania","TRUE","","3796","954.0","42025","Carbon","{""42025"": ""100""}","Carbon","42025","FALSE","FALSE","America/New_York"
-"18234","40.99254","-75.96435","Lattimer Mines","PA","Pennsylvania","TRUE","","171","255.0","42079","Luzerne","{""42079"": ""100""}","Luzerne","42079","FALSE","FALSE","America/New_York"
-"18235","40.82991","-75.69736","Lehighton","PA","Pennsylvania","TRUE","","19188","93.6","42025","Carbon","{""42025"": ""100""}","Carbon","42025","FALSE","FALSE","America/New_York"
-"18237","40.8835","-75.99638","Mcadoo","PA","Pennsylvania","TRUE","","3343","199.1","42107","Schuylkill","{""42107"": ""99.36"", ""42025"": ""0.64""}","Schuylkill|Carbon","42107|42025","FALSE","FALSE","America/New_York"
-"18239","40.9875","-75.98248","Milnesville","PA","Pennsylvania","TRUE","","423","606.4","42079","Luzerne","{""42079"": ""100""}","Luzerne","42079","FALSE","FALSE","America/New_York"
-"18240","40.86055","-75.87024","Nesquehoning","PA","Pennsylvania","TRUE","","3862","50.6","42025","Carbon","{""42025"": ""86.07"", ""42107"": ""13.93""}","Carbon|Schuylkill","42025|42107","FALSE","FALSE","America/New_York"
-"18241","40.94539","-76.14607","Nuremberg","PA","Pennsylvania","TRUE","","769","126.7","42107","Schuylkill","{""42107"": ""52.94"", ""42079"": ""47.06""}","Schuylkill|Luzerne","42107|42079","FALSE","FALSE","America/New_York"
-"18242","40.91137","-76.12435","Oneida","PA","Pennsylvania","TRUE","","130","39.8","42107","Schuylkill","{""42107"": ""100""}","Schuylkill","42107","FALSE","FALSE","America/New_York"
-"18244","40.8987","-75.73183","Parryville","PA","Pennsylvania","TRUE","","284","114.1","42025","Carbon","{""42025"": ""74.63"", ""42079"": ""25.37""}","Carbon|Luzerne","42025|42079","FALSE","FALSE","America/New_York"
-"18245","40.85318","-76.0335","Quakake","PA","Pennsylvania","TRUE","","264","28.3","42107","Schuylkill","{""42107"": ""100""}","Schuylkill","42107","FALSE","FALSE","America/New_York"
-"18246","40.95722","-76.19524","Rock Glen","PA","Pennsylvania","TRUE","","270","49.1","42079","Luzerne","{""42079"": ""100""}","Luzerne","42079","FALSE","FALSE","America/New_York"
-"18248","40.89323","-76.10742","Sheppton","PA","Pennsylvania","TRUE","","499","13.4","42107","Schuylkill","{""42107"": ""100""}","Schuylkill","42107","FALSE","FALSE","America/New_York"
-"18249","40.98721","-76.1236","Sugarloaf","PA","Pennsylvania","TRUE","","3722","45.0","42079","Luzerne","{""42079"": ""100""}","Luzerne","42079","FALSE","FALSE","America/New_York"
-"18250","40.82483","-75.84637","Summit Hill","PA","Pennsylvania","TRUE","","2943","130.7","42025","Carbon","{""42025"": ""100""}","Carbon","42025","FALSE","FALSE","America/New_York"
-"18251","41.00788","-76.07726","Sybertsville","PA","Pennsylvania","TRUE","","17","61.8","42079","Luzerne","{""42079"": ""100""}","Luzerne","42079","FALSE","FALSE","America/New_York"
-"18252","40.77236","-75.97612","Tamaqua","PA","Pennsylvania","TRUE","","10491","68.5","42107","Schuylkill","{""42107"": ""100""}","Schuylkill","42107","FALSE","FALSE","America/New_York"
-"18254","40.91594","-75.96564","Tresckow","PA","Pennsylvania","TRUE","","1073","234.7","42025","Carbon","{""42025"": ""100""}","Carbon","42025","FALSE","FALSE","America/New_York"
-"18255","40.9328","-75.8314","Weatherly","PA","Pennsylvania","TRUE","","4509","23.8","42025","Carbon","{""42025"": ""97.86"", ""42079"": ""2.14""}","Carbon|Luzerne","42025|42079","FALSE","FALSE","America/New_York"
-"18256","40.9409","-76.14677","Weston","PA","Pennsylvania","TRUE","","325","115.5","42079","Luzerne","{""42079"": ""100""}","Luzerne","42079","FALSE","FALSE","America/New_York"
-"18301","41.03197","-75.17993","East Stroudsburg","PA","Pennsylvania","TRUE","","29660","290.1","42089","Monroe","{""42089"": ""100""}","Monroe","42089","FALSE","FALSE","America/New_York"
-"18302","41.09367","-75.11881","East Stroudsburg","PA","Pennsylvania","TRUE","","17678","110.2","42089","Monroe","{""42089"": ""99.21"", ""42103"": ""0.79""}","Monroe|Pike","42089|42103","FALSE","FALSE","America/New_York"
-"18321","41.01685","-75.28975","Bartonsville","PA","Pennsylvania","TRUE","","1682","238.1","42089","Monroe","{""42089"": ""100""}","Monroe","42089","FALSE","FALSE","America/New_York"
-"18322","40.92284","-75.39879","Brodheadsville","PA","Pennsylvania","TRUE","","2502","139.9","42089","Monroe","{""42089"": ""100""}","Monroe","42089","FALSE","FALSE","America/New_York"
-"18323","41.19658","-75.27346","Buck Hill Falls","PA","Pennsylvania","TRUE","","111","23.0","42089","Monroe","{""42089"": ""100""}","Monroe","42089","FALSE","FALSE","America/New_York"
-"18324","41.15197","-75.00303","Bushkill","PA","Pennsylvania","TRUE","","9229","78.0","42103","Pike","{""42103"": ""97.95"", ""42089"": ""2.05""}","Pike|Monroe","42103|42089","FALSE","FALSE","America/New_York"
-"18325","41.21399","-75.22","Canadensis","PA","Pennsylvania","TRUE","","2417","21.7","42089","Monroe","{""42089"": ""79.72"", ""42103"": ""20.28""}","Monroe|Pike","42089|42103","FALSE","FALSE","America/New_York"
-"18326","41.15412","-75.27256","Cresco","PA","Pennsylvania","TRUE","","3956","45.8","42089","Monroe","{""42089"": ""100""}","Monroe","42089","FALSE","FALSE","America/New_York"
-"18327","40.97462","-75.13872","Delaware Water Gap","PA","Pennsylvania","TRUE","","594","122.2","42089","Monroe","{""42089"": ""100""}","Monroe","42089","FALSE","FALSE","America/New_York"
-"18328","41.22452","-75.00356","Dingmans Ferry","PA","Pennsylvania","TRUE","","7377","34.2","42103","Pike","{""42103"": ""100""}","Pike","42103","FALSE","FALSE","America/New_York"
-"18330","40.97068","-75.44909","Effort","PA","Pennsylvania","TRUE","","8452","199.0","42089","Monroe","{""42089"": ""100""}","Monroe","42089","FALSE","FALSE","America/New_York"
-"18331","40.91247","-75.44503","Gilbert","PA","Pennsylvania","TRUE","","537","60.5","42089","Monroe","{""42089"": ""100""}","Monroe","42089","FALSE","FALSE","America/New_York"
-"18332","41.08952","-75.262","Henryville","PA","Pennsylvania","TRUE","","2527","70.1","42089","Monroe","{""42089"": ""100""}","Monroe","42089","FALSE","FALSE","America/New_York"
-"18333","40.90235","-75.4917","Kresgeville","PA","Pennsylvania","TRUE","","554","99.6","42089","Monroe","{""42089"": ""100""}","Monroe","42089","FALSE","FALSE","America/New_York"
-"18334","41.06061","-75.44551","Long Pond","PA","Pennsylvania","TRUE","","4691","83.1","42089","Monroe","{""42089"": ""100""}","Monroe","42089","FALSE","FALSE","America/New_York"
-"18335","41.0656","-75.10538","Marshalls Creek","PA","Pennsylvania","TRUE","","606","260.9","42089","Monroe","{""42089"": ""100""}","Monroe","42089","FALSE","FALSE","America/New_York"
-"18336","41.37605","-74.74178","Matamoras","PA","Pennsylvania","TRUE","","4075","112.6","42103","Pike","{""42103"": ""100""}","Pike","42103","FALSE","FALSE","America/New_York"
-"18337","41.3271","-74.87894","Milford","PA","Pennsylvania","TRUE","","14226","69.6","42103","Pike","{""42103"": ""100""}","Pike","42103","FALSE","FALSE","America/New_York"
-"18340","41.41988","-74.76756","Millrift","PA","Pennsylvania","TRUE","","208","25.9","42103","Pike","{""42103"": ""100""}","Pike","42103","FALSE","FALSE","America/New_York"
-"18342","41.16691","-75.27267","Mountainhome","PA","Pennsylvania","TRUE","","660","231.9","42089","Monroe","{""42089"": ""100""}","Monroe","42089","FALSE","FALSE","America/New_York"
-"18343","40.89562","-75.10849","Mount Bethel","PA","Pennsylvania","TRUE","","4255","73.9","42095","Northampton","{""42095"": ""100""}","Northampton","42095","FALSE","FALSE","America/New_York"
-"18344","41.11849","-75.34097","Mount Pocono","PA","Pennsylvania","TRUE","","3879","213.4","42089","Monroe","{""42089"": ""100""}","Monroe","42089","FALSE","FALSE","America/New_York"
-"18346","41.13535","-75.40792","Pocono Summit","PA","Pennsylvania","TRUE","","2534","88.6","42089","Monroe","{""42089"": ""100""}","Monroe","42089","FALSE","FALSE","America/New_York"
-"18347","41.13379","-75.55732","Pocono Lake","PA","Pennsylvania","TRUE","","2779","39.7","42089","Monroe","{""42089"": ""100""}","Monroe","42089","FALSE","FALSE","America/New_York"
-"18349","41.10199","-75.36813","Pocono Manor","PA","Pennsylvania","TRUE","","312","85.9","42089","Monroe","{""42089"": ""100""}","Monroe","42089","FALSE","FALSE","America/New_York"
-"18350","41.12567","-75.46659","Pocono Pines","PA","Pennsylvania","TRUE","","1612","28.1","42089","Monroe","{""42089"": ""100""}","Monroe","42089","FALSE","FALSE","America/New_York"
-"18351","40.92277","-75.09941","Portland","PA","Pennsylvania","TRUE","","600","629.2","42095","Northampton","{""42095"": ""100""}","Northampton","42095","FALSE","FALSE","America/New_York"
-"18352","41.00786","-75.3547","Reeders","PA","Pennsylvania","TRUE","","823","84.6","42089","Monroe","{""42089"": ""100""}","Monroe","42089","FALSE","FALSE","America/New_York"
-"18353","40.89651","-75.367","Saylorsburg","PA","Pennsylvania","TRUE","","12730","104.2","42089","Monroe","{""42089"": ""100""}","Monroe","42089","FALSE","FALSE","America/New_York"
-"18354","40.92571","-75.32502","Sciota","PA","Pennsylvania","TRUE","","834","95.2","42089","Monroe","{""42089"": ""100""}","Monroe","42089","FALSE","FALSE","America/New_York"
-"18355","41.07598","-75.35392","Scotrun","PA","Pennsylvania","TRUE","","1501","81.3","42089","Monroe","{""42089"": ""100""}","Monroe","42089","FALSE","FALSE","America/New_York"
-"18356","41.01115","-75.11796","Shawnee On Delaware","PA","Pennsylvania","TRUE","","109","64.5","42089","Monroe","{""42089"": ""100""}","Monroe","42089","FALSE","FALSE","America/New_York"
-"18357","41.22767","-75.21847","Skytop","PA","Pennsylvania","TRUE","","111","10.8","42089","Monroe","{""42089"": ""100""}","Monroe","42089","FALSE","FALSE","America/New_York"
-"18360","40.97392","-75.28367","Stroudsburg","PA","Pennsylvania","TRUE","","27468","133.6","42089","Monroe","{""42089"": ""100""}","Monroe","42089","FALSE","FALSE","America/New_York"
-"18370","41.09181","-75.34138","Swiftwater","PA","Pennsylvania","TRUE","","969","71.8","42089","Monroe","{""42089"": ""100""}","Monroe","42089","FALSE","FALSE","America/New_York"
-"18371","41.15868","-75.0417","Tamiment","PA","Pennsylvania","TRUE","","796","87.0","42103","Pike","{""42103"": ""100""}","Pike","42103","FALSE","FALSE","America/New_York"
-"18372","41.04724","-75.32455","Tannersville","PA","Pennsylvania","TRUE","","2918","127.2","42089","Monroe","{""42089"": ""100""}","Monroe","42089","FALSE","FALSE","America/New_York"
-"18403","41.50042","-75.52959","Archbald","PA","Pennsylvania","TRUE","","6653","107.9","42069","Lackawanna","{""42069"": ""100""}","Lackawanna","42069","FALSE","FALSE","America/New_York"
-"18405","41.593","-75.10266","Beach Lake","PA","Pennsylvania","TRUE","","2697","28.2","42127","Wayne","{""42127"": ""91.76"", ""42103"": ""8.24""}","Wayne|Pike","42127|42103","FALSE","FALSE","America/New_York"
-"18407","41.59954","-75.52782","Carbondale","PA","Pennsylvania","TRUE","","13119","120.9","42069","Lackawanna","{""42069"": ""97.73"", ""42115"": ""2.27""}","Lackawanna|Susquehanna","42069|42115","FALSE","FALSE","America/New_York"
-"18411","41.45427","-75.74522","Clarks Summit","PA","Pennsylvania","TRUE","","21878","155.5","42069","Lackawanna","{""42069"": ""100""}","Lackawanna","42069","FALSE","FALSE","America/New_York"
-"18413","41.64816","-75.58949","Clifford","PA","Pennsylvania","TRUE","","191","82.4","42115","Susquehanna","{""42115"": ""100""}","Susquehanna","42115","FALSE","FALSE","America/New_York"
-"18414","41.54011","-75.7403","Dalton","PA","Pennsylvania","TRUE","","5216","48.3","42069","Lackawanna","{""42069"": ""72.98"", ""42131"": ""27.02""}","Lackawanna|Wyoming","42069|42131","FALSE","FALSE","America/New_York"
-"18415","41.74419","-75.11477","Damascus","PA","Pennsylvania","TRUE","","1222","14.3","42127","Wayne","{""42127"": ""100""}","Wayne","42127","FALSE","FALSE","America/New_York"
-"18417","41.80469","-75.19853","Equinunk","PA","Pennsylvania","TRUE","","1018","6.7","42127","Wayne","{""42127"": ""100""}","Wayne","42127","FALSE","FALSE","America/New_York"
-"18419","41.58581","-75.79094","Factoryville","PA","Pennsylvania","TRUE","","4786","47.9","42131","Wyoming","{""42131"": ""75.23"", ""42069"": ""24.23"", ""42115"": ""0.54""}","Wyoming|Lackawanna|Susquehanna","42131|42069|42115","FALSE","FALSE","America/New_York"
-"18420","41.60201","-75.71012","Fleetville","PA","Pennsylvania","TRUE","","47","64.7","42069","Lackawanna","{""42069"": ""100""}","Lackawanna","42069","FALSE","FALSE","America/New_York"
-"18421","41.6645","-75.46973","Forest City","PA","Pennsylvania","TRUE","","4981","54.6","42115","Susquehanna","{""42115"": ""58.62"", ""42127"": ""21.9"", ""42069"": ""19.48""}","Susquehanna|Wayne|Lackawanna","42115|42127|42069","FALSE","FALSE","America/New_York"
-"18424","41.22515","-75.51595","Gouldsboro","PA","Pennsylvania","TRUE","","5046","23.6","42069","Lackawanna","{""42069"": ""61.38"", ""42127"": ""32.91"", ""42089"": ""4.63"", ""42079"": ""1.09""}","Lackawanna|Wayne|Monroe|Luzerne","42069|42127|42089|42079","FALSE","FALSE","America/New_York"
-"18425","41.42577","-75.02051","Greeley","PA","Pennsylvania","TRUE","","1276","21.9","42103","Pike","{""42103"": ""100""}","Pike","42103","FALSE","FALSE","America/New_York"
-"18426","41.31382","-75.23551","Greentown","PA","Pennsylvania","TRUE","","4304","28.1","42103","Pike","{""42103"": ""100""}","Pike","42103","FALSE","FALSE","America/New_York"
-"18427","41.40467","-75.4069","Hamlin","PA","Pennsylvania","TRUE","","121","68.6","42127","Wayne","{""42127"": ""100""}","Wayne","42127","FALSE","FALSE","America/New_York"
-"18428","41.41607","-75.12311","Hawley","PA","Pennsylvania","TRUE","","11898","27.7","42103","Pike","{""42103"": ""64.46"", ""42127"": ""35.54""}","Pike|Wayne","42103|42127","FALSE","FALSE","America/New_York"
-"18430","41.74811","-75.47403","Herrick Center","PA","Pennsylvania","TRUE","","6","1.3","42115","Susquehanna","{""42115"": ""100""}","Susquehanna","42115","FALSE","FALSE","America/New_York"
-"18431","41.62299","-75.25748","Honesdale","PA","Pennsylvania","TRUE","","11903","34.2","42127","Wayne","{""42127"": ""100""}","Wayne","42127","FALSE","FALSE","America/New_York"
-"18433","41.57448","-75.5882","Jermyn","PA","Pennsylvania","TRUE","","6448","89.8","42069","Lackawanna","{""42069"": ""100""}","Lackawanna","42069","FALSE","FALSE","America/New_York"
-"18434","41.46147","-75.54831","Jessup","PA","Pennsylvania","TRUE","","3859","224.3","42069","Lackawanna","{""42069"": ""100""}","Lackawanna","42069","FALSE","FALSE","America/New_York"
-"18435","41.48906","-75.00234","Lackawaxen","PA","Pennsylvania","TRUE","","835","32.6","42103","Pike","{""42103"": ""100""}","Pike","42103","FALSE","FALSE","America/New_York"
-"18436","41.43676","-75.39302","Lake Ariel","PA","Pennsylvania","TRUE","","12610","53.6","42127","Wayne","{""42127"": ""75.44"", ""42069"": ""24.56""}","Wayne|Lackawanna","42127|42069","FALSE","FALSE","America/New_York"
-"18437","41.8678","-75.30636","Lake Como","PA","Pennsylvania","TRUE","","201","6.6","42127","Wayne","{""42127"": ""100""}","Wayne","42127","FALSE","FALSE","America/New_York"
-"18438","41.43596","-75.25095","Lakeville","PA","Pennsylvania","TRUE","","1298","68.2","42127","Wayne","{""42127"": ""100""}","Wayne","42127","FALSE","FALSE","America/New_York"
-"18439","41.82684","-75.34922","Lakewood","PA","Pennsylvania","TRUE","","494","6.2","42127","Wayne","{""42127"": ""100""}","Wayne","42127","FALSE","FALSE","America/New_York"
-"18441","41.65949","-75.62839","Lenoxville","PA","Pennsylvania","TRUE","","201","26.6","42115","Susquehanna","{""42115"": ""100""}","Susquehanna","42115","FALSE","FALSE","America/New_York"
-"18443","41.66231","-75.10116","Milanville","PA","Pennsylvania","TRUE","","436","12.3","42127","Wayne","{""42127"": ""100""}","Wayne","42127","FALSE","FALSE","America/New_York"
-"18444","41.33107","-75.55095","Moscow","PA","Pennsylvania","TRUE","","13817","45.5","42069","Lackawanna","{""42069"": ""87.66"", ""42127"": ""12.34""}","Lackawanna|Wayne","42069|42127","FALSE","FALSE","America/New_York"
-"18445","41.2966","-75.36063","Newfoundland","PA","Pennsylvania","TRUE","","2536","26.9","42127","Wayne","{""42127"": ""79.48"", ""42103"": ""20.52""}","Wayne|Pike","42127|42103","FALSE","FALSE","America/New_York"
-"18446","41.645","-75.75704","Nicholson","PA","Pennsylvania","TRUE","","3156","24.0","42131","Wyoming","{""42131"": ""51.51"", ""42115"": ""41.49"", ""42069"": ""6.99""}","Wyoming|Susquehanna|Lackawanna","42131|42115|42069","FALSE","FALSE","America/New_York"
-"18447","41.50831","-75.61664","Olyphant","PA","Pennsylvania","TRUE","","10692","201.3","42069","Lackawanna","{""42069"": ""100""}","Lackawanna","42069","FALSE","FALSE","America/New_York"
-"18451","41.40818","-75.21646","Paupack","PA","Pennsylvania","TRUE","","646","50.8","42103","Pike","{""42103"": ""100""}","Pike","42103","FALSE","FALSE","America/New_York"
-"18452","41.48361","-75.59016","Peckville","PA","Pennsylvania","TRUE","","4853","952.7","42069","Lackawanna","{""42069"": ""100""}","Lackawanna","42069","FALSE","FALSE","America/New_York"
-"18453","41.75457","-75.36203","Pleasant Mount","PA","Pennsylvania","TRUE","","978","7.5","42127","Wayne","{""42127"": ""100""}","Wayne","42127","FALSE","FALSE","America/New_York"
-"18454","41.829","-75.42667","Poyntelle","PA","Pennsylvania","TRUE","","17","2.4","42127","Wayne","{""42127"": ""100""}","Wayne","42127","FALSE","FALSE","America/New_York"
-"18455","41.88678","-75.35605","Preston Park","PA","Pennsylvania","TRUE","","105","9.1","42127","Wayne","{""42127"": ""100""}","Wayne","42127","FALSE","FALSE","America/New_York"
-"18456","41.6262","-75.34428","Prompton","PA","Pennsylvania","TRUE","","371","30.2","42127","Wayne","{""42127"": ""100""}","Wayne","42127","FALSE","FALSE","America/New_York"
-"18457","41.47197","-75.04858","Rowland","PA","Pennsylvania","TRUE","","178","143.0","42103","Pike","{""42103"": ""100""}","Pike","42103","FALSE","FALSE","America/New_York"
-"18458","41.40926","-74.91634","Shohola","PA","Pennsylvania","TRUE","","2445","17.3","42103","Pike","{""42103"": ""100""}","Pike","42103","FALSE","FALSE","America/New_York"
-"18459","41.50495","-75.42905","South Canaan","PA","Pennsylvania","TRUE","","3","17.4","42127","Wayne","{""42127"": ""100""}","Wayne","42127","FALSE","FALSE","America/New_York"
-"18460","41.25393","-75.32354","South Sterling","PA","Pennsylvania","TRUE","","115","13.4","42127","Wayne","{""42127"": ""80.98"", ""42103"": ""19.02""}","Wayne|Pike","42127|42103","FALSE","FALSE","America/New_York"
-"18461","41.92781","-75.3282","Starlight","PA","Pennsylvania","TRUE","","295","5.3","42127","Wayne","{""42127"": ""100""}","Wayne","42127","FALSE","FALSE","America/New_York"
-"18462","41.90749","-75.4223","Starrucca","PA","Pennsylvania","TRUE","","305","4.4","42127","Wayne","{""42127"": ""100""}","Wayne","42127","FALSE","FALSE","America/New_York"
-"18463","41.34925","-75.40332","Sterling","PA","Pennsylvania","TRUE","","236","31.9","42127","Wayne","{""42127"": ""100""}","Wayne","42127","FALSE","FALSE","America/New_York"
-"18464","41.40327","-75.17869","Tafton","PA","Pennsylvania","TRUE","","1401","45.0","42103","Pike","{""42103"": ""100""}","Pike","42103","FALSE","FALSE","America/New_York"
-"18465","41.82946","-75.51184","Thompson","PA","Pennsylvania","TRUE","","1358","11.1","42115","Susquehanna","{""42115"": ""92.69"", ""42127"": ""7.31""}","Susquehanna|Wayne","42115|42127","FALSE","FALSE","America/New_York"
-"18466","41.19551","-75.38564","Tobyhanna","PA","Pennsylvania","TRUE","","17421","187.0","42089","Monroe","{""42089"": ""100""}","Monroe","42089","FALSE","FALSE","America/New_York"
-"18469","41.70113","-75.14217","Tyler Hill","PA","Pennsylvania","TRUE","","252","10.5","42127","Wayne","{""42127"": ""100""}","Wayne","42127","FALSE","FALSE","America/New_York"
-"18470","41.72793","-75.53824","Union Dale","PA","Pennsylvania","TRUE","","2283","14.3","42115","Susquehanna","{""42115"": ""93.53"", ""42127"": ""6.47""}","Susquehanna|Wayne","42115|42127","FALSE","FALSE","America/New_York"
-"18471","41.52832","-75.69221","Waverly","PA","Pennsylvania","TRUE","","667","93.2","42069","Lackawanna","{""42069"": ""100""}","Lackawanna","42069","FALSE","FALSE","America/New_York"
-"18472","41.58381","-75.39848","Waymart","PA","Pennsylvania","TRUE","","7466","45.0","42127","Wayne","{""42127"": ""100""}","Wayne","42127","FALSE","FALSE","America/New_York"
-"18473","41.52436","-75.21087","White Mills","PA","Pennsylvania","TRUE","","670","207.7","42127","Wayne","{""42127"": ""100""}","Wayne","42127","FALSE","FALSE","America/New_York"
-"18503","41.41128","-75.66769","Scranton","PA","Pennsylvania","TRUE","","1247","1039.9","42069","Lackawanna","{""42069"": ""100""}","Lackawanna","42069","FALSE","FALSE","America/New_York"
-"18504","41.42553","-75.69991","Scranton","PA","Pennsylvania","TRUE","","20525","919.4","42069","Lackawanna","{""42069"": ""100""}","Lackawanna","42069","FALSE","FALSE","America/New_York"
-"18505","41.3878","-75.65313","Scranton","PA","Pennsylvania","TRUE","","21581","979.2","42069","Lackawanna","{""42069"": ""100""}","Lackawanna","42069","FALSE","FALSE","America/New_York"
-"18507","41.35534","-75.68053","Moosic","PA","Pennsylvania","TRUE","","5154","204.5","42069","Lackawanna","{""42069"": ""100""}","Lackawanna","42069","FALSE","FALSE","America/New_York"
-"18508","41.45493","-75.65793","Scranton","PA","Pennsylvania","TRUE","","12606","715.4","42069","Lackawanna","{""42069"": ""100""}","Lackawanna","42069","FALSE","FALSE","America/New_York"
-"18509","41.43081","-75.6428","Scranton","PA","Pennsylvania","TRUE","","13851","1863.1","42069","Lackawanna","{""42069"": ""100""}","Lackawanna","42069","FALSE","FALSE","America/New_York"
-"18510","41.4073","-75.6368","Scranton","PA","Pennsylvania","TRUE","","13375","2407.2","42069","Lackawanna","{""42069"": ""100""}","Lackawanna","42069","FALSE","FALSE","America/New_York"
-"18512","41.42739","-75.59457","Scranton","PA","Pennsylvania","TRUE","","11666","402.5","42069","Lackawanna","{""42069"": ""100""}","Lackawanna","42069","FALSE","FALSE","America/New_York"
-"18517","41.39461","-75.71365","Taylor","PA","Pennsylvania","TRUE","","4980","458.6","42069","Lackawanna","{""42069"": ""100""}","Lackawanna","42069","FALSE","FALSE","America/New_York"
-"18518","41.37501","-75.73959","Old Forge","PA","Pennsylvania","TRUE","","7965","761.0","42069","Lackawanna","{""42069"": ""100""}","Lackawanna","42069","FALSE","FALSE","America/New_York"
-"18519","41.46192","-75.63073","Scranton","PA","Pennsylvania","TRUE","","4659","747.2","42069","Lackawanna","{""42069"": ""100""}","Lackawanna","42069","FALSE","FALSE","America/New_York"
-"18602","41.18765","-75.75521","Bear Creek","PA","Pennsylvania","TRUE","","241","48.0","42079","Luzerne","{""42079"": ""100""}","Luzerne","42079","FALSE","FALSE","America/New_York"
-"18603","41.08296","-76.24887","Berwick","PA","Pennsylvania","TRUE","","19357","144.8","42037","Columbia","{""42037"": ""79.75"", ""42079"": ""20.25""}","Columbia|Luzerne","42037|42079","FALSE","FALSE","America/New_York"
-"18610","41.06305","-75.54612","Blakeslee","PA","Pennsylvania","TRUE","","4820","61.7","42089","Monroe","{""42089"": ""99.72"", ""42025"": ""0.18"", ""42079"": ""0.1""}","Monroe|Carbon|Luzerne","42089|42025|42079","FALSE","FALSE","America/New_York"
-"18612","41.34938","-75.98332","Dallas","PA","Pennsylvania","TRUE","","18432","132.0","42079","Luzerne","{""42079"": ""98.11"", ""42131"": ""1.89""}","Luzerne|Wyoming","42079|42131","FALSE","FALSE","America/New_York"
-"18614","41.48972","-76.37811","Dushore","PA","Pennsylvania","TRUE","","2121","5.9","42113","Sullivan","{""42113"": ""99.26"", ""42131"": ""0.74""}","Sullivan|Wyoming","42113|42131","FALSE","FALSE","America/New_York"
-"18615","41.46186","-75.85726","Falls","PA","Pennsylvania","TRUE","","2121","44.7","42131","Wyoming","{""42131"": ""94.43"", ""42079"": ""4.71"", ""42069"": ""0.86""}","Wyoming|Luzerne|Lackawanna","42131|42079|42069","FALSE","FALSE","America/New_York"
-"18616","41.50966","-76.62372","Forksville","PA","Pennsylvania","TRUE","","583","4.1","42113","Sullivan","{""42113"": ""100""}","Sullivan","42113","FALSE","FALSE","America/New_York"
-"18617","41.17062","-76.07668","Glen Lyon","PA","Pennsylvania","TRUE","","1766","112.5","42079","Luzerne","{""42079"": ""100""}","Luzerne","42079","FALSE","FALSE","America/New_York"
-"18618","41.37478","-76.03487","Harveys Lake","PA","Pennsylvania","TRUE","","3843","83.9","42079","Luzerne","{""42079"": ""86.21"", ""42131"": ""13.79""}","Luzerne|Wyoming","42079|42131","FALSE","FALSE","America/New_York"
-"18619","41.44803","-76.71127","Hillsgrove","PA","Pennsylvania","TRUE","","259","2.9","42113","Sullivan","{""42113"": ""100""}","Sullivan","42113","FALSE","FALSE","America/New_York"
-"18621","41.25328","-76.09282","Hunlock Creek","PA","Pennsylvania","TRUE","","6728","58.5","42079","Luzerne","{""42079"": ""100""}","Luzerne","42079","FALSE","FALSE","America/New_York"
-"18622","41.20378","-76.27304","Huntington Mills","PA","Pennsylvania","TRUE","","130","13.7","42079","Luzerne","{""42079"": ""100""}","Luzerne","42079","FALSE","FALSE","America/New_York"
-"18623","41.67031","-76.14769","Laceyville","PA","Pennsylvania","TRUE","","2645","18.1","42131","Wyoming","{""42131"": ""52.07"", ""42015"": ""32.2"", ""42115"": ""15.73""}","Wyoming|Bradford|Susquehanna","42131|42015|42115","FALSE","FALSE","America/New_York"
-"18624","41.05777","-75.62088","Lake Harmony","PA","Pennsylvania","TRUE","","254","6.1","42025","Carbon","{""42025"": ""100""}","Carbon","42025","FALSE","FALSE","America/New_York"
-"18625","41.50959","-75.85078","Lake Winola","PA","Pennsylvania","TRUE","","404","204.5","42131","Wyoming","{""42131"": ""100""}","Wyoming","42131","FALSE","FALSE","America/New_York"
-"18626","41.4044","-76.5132","Laporte","PA","Pennsylvania","TRUE","","521","7.9","42113","Sullivan","{""42113"": ""100""}","Sullivan","42113","FALSE","FALSE","America/New_York"
-"18628","41.43793","-76.31442","Lopez","PA","Pennsylvania","TRUE","","214","4.0","42113","Sullivan","{""42113"": ""100""}","Sullivan","42113","FALSE","FALSE","America/New_York"
-"18629","41.51147","-76.13828","Mehoopany","PA","Pennsylvania","TRUE","","1749","7.2","42131","Wyoming","{""42131"": ""100""}","Wyoming","42131","FALSE","FALSE","America/New_York"
-"18630","41.6674","-76.02944","Meshoppen","PA","Pennsylvania","TRUE","","3146","18.4","42131","Wyoming","{""42131"": ""51.8"", ""42115"": ""48.2""}","Wyoming|Susquehanna","42131|42115","FALSE","FALSE","America/New_York"
-"18631","41.02958","-76.30335","Mifflinville","PA","Pennsylvania","TRUE","","1180","265.4","42037","Columbia","{""42037"": ""100""}","Columbia","42037","FALSE","FALSE","America/New_York"
-"18632","41.46691","-76.38343","Mildred","PA","Pennsylvania","TRUE","","538","39.9","42113","Sullivan","{""42113"": ""100""}","Sullivan","42113","FALSE","FALSE","America/New_York"
-"18634","41.18918","-76.02153","Nanticoke","PA","Pennsylvania","TRUE","","13148","342.3","42079","Luzerne","{""42079"": ""100""}","Luzerne","42079","FALSE","FALSE","America/New_York"
-"18635","41.03053","-76.20174","Nescopeck","PA","Pennsylvania","TRUE","","3797","38.4","42079","Luzerne","{""42079"": ""78.33"", ""42037"": ""21.67""}","Luzerne|Columbia","42079|42037","FALSE","FALSE","America/New_York"
-"18636","41.4026","-76.09751","Noxen","PA","Pennsylvania","TRUE","","1246","10.8","42131","Wyoming","{""42131"": ""82.27"", ""42079"": ""17.73""}","Wyoming|Luzerne","42131|42079","FALSE","FALSE","America/New_York"
-"18640","41.29714","-75.74029","Pittston","PA","Pennsylvania","TRUE","","16850","229.5","42079","Luzerne","{""42079"": ""100""}","Luzerne","42079","FALSE","FALSE","America/New_York"
-"18641","41.33603","-75.73045","Pittston","PA","Pennsylvania","TRUE","","6829","603.4","42079","Luzerne","{""42079"": ""87.82"", ""42069"": ""12.18""}","Luzerne|Lackawanna","42079|42069","FALSE","FALSE","America/New_York"
-"18642","41.35387","-75.77672","Duryea","PA","Pennsylvania","TRUE","","3998","284.7","42079","Luzerne","{""42079"": ""100""}","Luzerne","42079","FALSE","FALSE","America/New_York"
-"18643","41.36655","-75.83624","Pittston","PA","Pennsylvania","TRUE","","12478","253.4","42079","Luzerne","{""42079"": ""100""}","Luzerne","42079","FALSE","FALSE","America/New_York"
-"18644","41.33134","-75.87861","Wyoming","PA","Pennsylvania","TRUE","","7245","170.5","42079","Luzerne","{""42079"": ""100""}","Luzerne","42079","FALSE","FALSE","America/New_York"
-"18651","41.24756","-75.96185","Plymouth","PA","Pennsylvania","TRUE","","8693","278.2","42079","Luzerne","{""42079"": ""100""}","Luzerne","42079","FALSE","FALSE","America/New_York"
-"18653","41.39328","-75.82357","Ransom","PA","Pennsylvania","TRUE","","211","329.6","42069","Lackawanna","{""42069"": ""100""}","Lackawanna","42069","FALSE","FALSE","America/New_York"
-"18655","41.18175","-76.19614","Shickshinny","PA","Pennsylvania","TRUE","","5625","30.1","42079","Luzerne","{""42079"": ""96.1"", ""42037"": ""3.9""}","Luzerne|Columbia","42079|42037","FALSE","FALSE","America/New_York"
-"18656","41.32264","-76.20947","Sweet Valley","PA","Pennsylvania","TRUE","","2238","16.6","42079","Luzerne","{""42079"": ""100""}","Luzerne","42079","FALSE","FALSE","America/New_York"
-"18657","41.52521","-75.95419","Tunkhannock","PA","Pennsylvania","TRUE","","11720","36.7","42131","Wyoming","{""42131"": ""100""}","Wyoming","42131","FALSE","FALSE","America/New_York"
-"18660","41.10388","-76.06491","Wapwallopen","PA","Pennsylvania","TRUE","","3732","33.9","42079","Luzerne","{""42079"": ""100""}","Luzerne","42079","FALSE","FALSE","America/New_York"
-"18661","41.08606","-75.75357","White Haven","PA","Pennsylvania","TRUE","","5299","15.2","42079","Luzerne","{""42079"": ""85.88"", ""42025"": ""14.12""}","Luzerne|Carbon","42079|42025","FALSE","FALSE","America/New_York"
-"18701","41.24368","-75.88508","Wilkes Barre","PA","Pennsylvania","TRUE","","3449","2491.9","42079","Luzerne","{""42079"": ""100""}","Luzerne","42079","FALSE","FALSE","America/New_York"
-"18702","41.22084","-75.77365","Wilkes Barre","PA","Pennsylvania","TRUE","","40090","223.3","42079","Luzerne","{""42079"": ""100""}","Luzerne","42079","FALSE","FALSE","America/New_York"
-"18704","41.27661","-75.89463","Kingston","PA","Pennsylvania","TRUE","","30441","1174.5","42079","Luzerne","{""42079"": ""100""}","Luzerne","42079","FALSE","FALSE","America/New_York"
-"18705","41.27183","-75.84331","Wilkes Barre","PA","Pennsylvania","TRUE","","14683","1040.5","42079","Luzerne","{""42079"": ""100""}","Luzerne","42079","FALSE","FALSE","America/New_York"
-"18706","41.20436","-75.91138","Wilkes Barre","PA","Pennsylvania","TRUE","","15885","231.5","42079","Luzerne","{""42079"": ""100""}","Luzerne","42079","FALSE","FALSE","America/New_York"
-"18707","41.13369","-75.92644","Mountain Top","PA","Pennsylvania","TRUE","","15891","123.4","42079","Luzerne","{""42079"": ""100""}","Luzerne","42079","FALSE","FALSE","America/New_York"
-"18708","41.29414","-75.96534","Shavertown","PA","Pennsylvania","TRUE","","8772","205.0","42079","Luzerne","{""42079"": ""100""}","Luzerne","42079","FALSE","FALSE","America/New_York"
-"18709","41.28549","-75.89639","Luzerne","PA","Pennsylvania","TRUE","","2914","1425.5","42079","Luzerne","{""42079"": ""100""}","Luzerne","42079","FALSE","FALSE","America/New_York"
-"18801","41.82978","-75.93836","Montrose","PA","Pennsylvania","TRUE","","8076","19.2","42115","Susquehanna","{""42115"": ""100""}","Susquehanna","42115","FALSE","FALSE","America/New_York"
-"18810","41.93569","-76.50452","Athens","PA","Pennsylvania","TRUE","","5911","49.6","42015","Bradford","{""42015"": ""100""}","Bradford","42015","FALSE","FALSE","America/New_York"
-"18812","41.96666","-75.95747","Brackney","PA","Pennsylvania","TRUE","","1557","19.1","42115","Susquehanna","{""42115"": ""100""}","Susquehanna","42115","FALSE","FALSE","America/New_York"
-"18814","41.78173","-76.60551","Burlington","PA","Pennsylvania","TRUE","","210","138.9","42015","Bradford","{""42015"": ""100""}","Bradford","42015","FALSE","FALSE","America/New_York"
-"18816","41.74982","-75.91554","Dimock","PA","Pennsylvania","TRUE","","123","40.8","42115","Susquehanna","{""42115"": ""100""}","Susquehanna","42115","FALSE","FALSE","America/New_York"
-"18817","41.87005","-76.6263","East Smithfield","PA","Pennsylvania","TRUE","","308","64.6","42015","Bradford","{""42015"": ""100""}","Bradford","42015","FALSE","FALSE","America/New_York"
-"18818","41.91031","-76.04687","Friendsville","PA","Pennsylvania","TRUE","","1115","9.4","42115","Susquehanna","{""42115"": ""100""}","Susquehanna","42115","FALSE","FALSE","America/New_York"
-"18821","41.98652","-75.73635","Great Bend","PA","Pennsylvania","TRUE","","1404","156.9","42115","Susquehanna","{""42115"": ""100""}","Susquehanna","42115","FALSE","FALSE","America/New_York"
-"18822","41.94977","-75.80145","Hallstead","PA","Pennsylvania","TRUE","","3197","29.7","42115","Susquehanna","{""42115"": ""100""}","Susquehanna","42115","FALSE","FALSE","America/New_York"
-"18823","41.77608","-75.69351","Harford","PA","Pennsylvania","TRUE","","187","27.1","42115","Susquehanna","{""42115"": ""100""}","Susquehanna","42115","FALSE","FALSE","America/New_York"
-"18824","41.7041","-75.78357","Hop Bottom","PA","Pennsylvania","TRUE","","1422","18.4","42115","Susquehanna","{""42115"": ""100""}","Susquehanna","42115","FALSE","FALSE","America/New_York"
-"18825","41.80766","-75.60101","Jackson","PA","Pennsylvania","TRUE","","103","12.0","42115","Susquehanna","{""42115"": ""100""}","Susquehanna","42115","FALSE","FALSE","America/New_York"
-"18826","41.75105","-75.74653","Kingsley","PA","Pennsylvania","TRUE","","1404","11.9","42115","Susquehanna","{""42115"": ""100""}","Susquehanna","42115","FALSE","FALSE","America/New_York"
-"18828","41.79647","-76.10448","Lawton","PA","Pennsylvania","TRUE","","339","13.1","42115","Susquehanna","{""42115"": ""100""}","Susquehanna","42115","FALSE","FALSE","America/New_York"
-"18829","41.8345","-76.16968","Le Raysville","PA","Pennsylvania","TRUE","","693","10.4","42015","Bradford","{""42015"": ""100""}","Bradford","42015","FALSE","FALSE","America/New_York"
-"18830","41.95142","-76.10742","Little Meadows","PA","Pennsylvania","TRUE","","598","9.6","42115","Susquehanna","{""42115"": ""96.6"", ""42015"": ""3.4""}","Susquehanna|Bradford","42115|42015","FALSE","FALSE","America/New_York"
-"18831","41.89121","-76.60085","Milan","PA","Pennsylvania","TRUE","","1180","15.6","42015","Bradford","{""42015"": ""100""}","Bradford","42015","FALSE","FALSE","America/New_York"
-"18832","41.67702","-76.55657","Monroeton","PA","Pennsylvania","TRUE","","1791","11.6","42015","Bradford","{""42015"": ""100""}","Bradford","42015","FALSE","FALSE","America/New_York"
-"18833","41.59759","-76.479","New Albany","PA","Pennsylvania","TRUE","","1888","6.9","42015","Bradford","{""42015"": ""95.67"", ""42113"": ""4.33""}","Bradford|Sullivan","42015|42113","FALSE","FALSE","America/New_York"
-"18834","41.8435","-75.71432","New Milford","PA","Pennsylvania","TRUE","","3506","20.4","42115","Susquehanna","{""42115"": ""100""}","Susquehanna","42115","FALSE","FALSE","America/New_York"
-"18837","41.92085","-76.29649","Rome","PA","Pennsylvania","TRUE","","3134","13.4","42015","Bradford","{""42015"": ""100""}","Bradford","42015","FALSE","FALSE","America/New_York"
-"18840","41.97183","-76.53575","Sayre","PA","Pennsylvania","TRUE","","10440","89.5","42015","Bradford","{""42015"": ""100""}","Bradford","42015","FALSE","FALSE","America/New_York"
-"18842","41.75811","-75.62108","South Gibson","PA","Pennsylvania","TRUE","","252","23.6","42115","Susquehanna","{""42115"": ""100""}","Susquehanna","42115","FALSE","FALSE","America/New_York"
-"18843","41.79442","-75.89978","South Montrose","PA","Pennsylvania","TRUE","","189","83.2","42115","Susquehanna","{""42115"": ""100""}","Susquehanna","42115","FALSE","FALSE","America/New_York"
-"18844","41.69516","-75.9143","Springville","PA","Pennsylvania","TRUE","","1933","21.8","42115","Susquehanna","{""42115"": ""98.77"", ""42131"": ""1.23""}","Susquehanna|Wyoming","42115|42131","FALSE","FALSE","America/New_York"
-"18845","41.7881","-76.18461","Stevensville","PA","Pennsylvania","TRUE","","317","12.6","42015","Bradford","{""42015"": ""100""}","Bradford","42015","FALSE","FALSE","America/New_York"
-"18846","41.60238","-76.241","Sugar Run","PA","Pennsylvania","TRUE","","1099","15.7","42015","Bradford","{""42015"": ""100""}","Bradford","42015","FALSE","FALSE","America/New_York"
-"18847","41.92957","-75.56896","Susquehanna","PA","Pennsylvania","TRUE","","5677","15.5","42115","Susquehanna","{""42115"": ""95.34"", ""42127"": ""4.66""}","Susquehanna|Wayne","42115|42127","FALSE","FALSE","America/New_York"
-"18848","41.75212","-76.45419","Towanda","PA","Pennsylvania","TRUE","","8746","31.9","42015","Bradford","{""42015"": ""100""}","Bradford","42015","FALSE","FALSE","America/New_York"
-"18850","41.85292","-76.49997","Ulster","PA","Pennsylvania","TRUE","","2159","13.8","42015","Bradford","{""42015"": ""100""}","Bradford","42015","FALSE","FALSE","America/New_York"
-"18851","41.93406","-76.17605","Warren Center","PA","Pennsylvania","TRUE","","755","10.4","42015","Bradford","{""42015"": ""100""}","Bradford","42015","FALSE","FALSE","America/New_York"
-"18853","41.72067","-76.26901","Wyalusing","PA","Pennsylvania","TRUE","","4179","15.8","42015","Bradford","{""42015"": ""100""}","Bradford","42015","FALSE","FALSE","America/New_York"
-"18854","41.79465","-76.35532","Wysox","PA","Pennsylvania","TRUE","","1576","22.9","42015","Bradford","{""42015"": ""100""}","Bradford","42015","FALSE","FALSE","America/New_York"
-"18901","40.30543","-75.14884","Doylestown","PA","Pennsylvania","TRUE","","27851","532.5","42017","Bucks","{""42017"": ""100""}","Bucks","42017","FALSE","FALSE","America/New_York"
-"18902","40.35307","-75.09676","Doylestown","PA","Pennsylvania","TRUE","","21557","299.2","42017","Bucks","{""42017"": ""100""}","Bucks","42017","FALSE","FALSE","America/New_York"
-"18912","40.32373","-75.05437","Buckingham","PA","Pennsylvania","TRUE","","280","272.3","42017","Bucks","{""42017"": ""100""}","Bucks","42017","FALSE","FALSE","America/New_York"
-"18913","40.38173","-75.05577","Carversville","PA","Pennsylvania","TRUE","","44","11.6","42017","Bucks","{""42017"": ""100""}","Bucks","42017","FALSE","FALSE","America/New_York"
-"18914","40.289","-75.20985","Chalfont","PA","Pennsylvania","TRUE","","21182","460.8","42017","Bucks","{""42017"": ""100""}","Bucks","42017","FALSE","FALSE","America/New_York"
-"18915","40.27218","-75.25677","Colmar","PA","Pennsylvania","TRUE","","784","287.4","42091","Montgomery","{""42091"": ""100""}","Montgomery","42091","FALSE","FALSE","America/New_York"
-"18917","40.37303","-75.20409","Dublin","PA","Pennsylvania","TRUE","","2178","1442.7","42017","Bucks","{""42017"": ""100""}","Bucks","42017","FALSE","FALSE","America/New_York"
-"18920","40.49613","-75.08428","Erwinna","PA","Pennsylvania","TRUE","","232","32.8","42017","Bucks","{""42017"": ""100""}","Bucks","42017","FALSE","FALSE","America/New_York"
-"18923","40.35772","-75.17108","Fountainville","PA","Pennsylvania","TRUE","","1197","265.9","42017","Bucks","{""42017"": ""100""}","Bucks","42017","FALSE","FALSE","America/New_York"
-"18925","40.28623","-75.05641","Furlong","PA","Pennsylvania","TRUE","","6692","240.6","42017","Bucks","{""42017"": ""100""}","Bucks","42017","FALSE","FALSE","America/New_York"
-"18929","40.25521","-75.07984","Jamison","PA","Pennsylvania","TRUE","","9570","454.8","42017","Bucks","{""42017"": ""100""}","Bucks","42017","FALSE","FALSE","America/New_York"
-"18930","40.52155","-75.21355","Kintnersville","PA","Pennsylvania","TRUE","","2881","49.9","42017","Bucks","{""42017"": ""100""}","Bucks","42017","FALSE","FALSE","America/New_York"
-"18932","40.29426","-75.2558","Line Lexington","PA","Pennsylvania","TRUE","","511","156.9","42017","Bucks","{""42017"": ""100""}","Bucks","42017","FALSE","FALSE","America/New_York"
-"18935","40.43725","-75.40108","Milford Square","PA","Pennsylvania","TRUE","","20","107.3","42017","Bucks","{""42017"": ""100""}","Bucks","42017","FALSE","FALSE","America/New_York"
-"18936","40.22398","-75.23102","Montgomeryville","PA","Pennsylvania","TRUE","","0","0.0","42091","Montgomery","{""42091"": ""100""}","Montgomery","42091","FALSE","FALSE","America/New_York"
-"18938","40.35238","-74.9975","New Hope","PA","Pennsylvania","TRUE","","14156","133.5","42017","Bucks","{""42017"": ""100""}","Bucks","42017","FALSE","FALSE","America/New_York"
-"18940","40.2632","-74.94751","Newtown","PA","Pennsylvania","TRUE","","28915","341.6","42017","Bucks","{""42017"": ""100""}","Bucks","42017","FALSE","FALSE","America/New_York"
-"18942","40.47019","-75.15929","Ottsville","PA","Pennsylvania","TRUE","","2773","47.7","42017","Bucks","{""42017"": ""100""}","Bucks","42017","FALSE","FALSE","America/New_York"
-"18944","40.39137","-75.23465","Perkasie","PA","Pennsylvania","TRUE","","25475","213.1","42017","Bucks","{""42017"": ""100""}","Bucks","42017","FALSE","FALSE","America/New_York"
-"18947","40.4244","-75.11448","Pipersville","PA","Pennsylvania","TRUE","","6309","101.9","42017","Bucks","{""42017"": ""100""}","Bucks","42017","FALSE","FALSE","America/New_York"
-"18950","40.44282","-75.07147","Point Pleasant","PA","Pennsylvania","TRUE","","215","71.4","42017","Bucks","{""42017"": ""100""}","Bucks","42017","FALSE","FALSE","America/New_York"
-"18951","40.4524","-75.34461","Quakertown","PA","Pennsylvania","TRUE","","35203","204.0","42017","Bucks","{""42017"": ""99.89"", ""42077"": ""0.11""}","Bucks|Lehigh","42017|42077","FALSE","FALSE","America/New_York"
-"18954","40.22264","-74.99932","Richboro","PA","Pennsylvania","TRUE","","9453","541.0","42017","Bucks","{""42017"": ""100""}","Bucks","42017","FALSE","FALSE","America/New_York"
-"18955","40.47756","-75.3152","Richlandtown","PA","Pennsylvania","TRUE","","1624","238.1","42017","Bucks","{""42017"": ""100""}","Bucks","42017","FALSE","FALSE","America/New_York"
-"18960","40.36405","-75.32503","Sellersville","PA","Pennsylvania","TRUE","","11898","238.5","42017","Bucks","{""42017"": ""100""}","Bucks","42017","FALSE","FALSE","America/New_York"
-"18962","40.346","-75.27068","Silverdale","PA","Pennsylvania","TRUE","","331","527.1","42017","Bucks","{""42017"": ""100""}","Bucks","42017","FALSE","FALSE","America/New_York"
-"18964","40.29739","-75.33329","Souderton","PA","Pennsylvania","TRUE","","14092","581.6","42091","Montgomery","{""42091"": ""96.76"", ""42017"": ""3.24""}","Montgomery|Bucks","42091|42017","FALSE","FALSE","America/New_York"
-"18966","40.18764","-75.00629","Southampton","PA","Pennsylvania","TRUE","","37739","898.1","42017","Bucks","{""42017"": ""100""}","Bucks","42017","FALSE","FALSE","America/New_York"
-"18969","40.32631","-75.37272","Telford","PA","Pennsylvania","TRUE","","15435","352.5","42091","Montgomery","{""42091"": ""69.44"", ""42017"": ""30.56""}","Montgomery|Bucks","42091|42017","FALSE","FALSE","America/New_York"
-"18970","40.41201","-75.38118","Trumbauersville","PA","Pennsylvania","TRUE","","693","660.0","42017","Bucks","{""42017"": ""100""}","Bucks","42017","FALSE","FALSE","America/New_York"
-"18972","40.53343","-75.1196","Upper Black Eddy","PA","Pennsylvania","TRUE","","3386","55.5","42017","Bucks","{""42017"": ""100""}","Bucks","42017","FALSE","FALSE","America/New_York"
-"18974","40.21597","-75.07296","Warminster","PA","Pennsylvania","TRUE","","40543","820.7","42017","Bucks","{""42017"": ""100""}","Bucks","42017","FALSE","FALSE","America/New_York"
-"18976","40.24792","-75.1443","Warrington","PA","Pennsylvania","TRUE","","20681","737.6","42017","Bucks","{""42017"": ""100""}","Bucks","42017","FALSE","FALSE","America/New_York"
-"18977","40.28725","-74.88067","Washington Crossing","PA","Pennsylvania","TRUE","","4172","308.1","42017","Bucks","{""42017"": ""100""}","Bucks","42017","FALSE","FALSE","America/New_York"
-"18980","40.26793","-75.01415","Wycombe","PA","Pennsylvania","TRUE","","445","72.3","42017","Bucks","{""42017"": ""100""}","Bucks","42017","FALSE","FALSE","America/New_York"
-"19001","40.12594","-75.12543","Abington","PA","Pennsylvania","TRUE","","17139","1912.5","42091","Montgomery","{""42091"": ""100""}","Montgomery","42091","FALSE","FALSE","America/New_York"
-"19002","40.18382","-75.20993","Ambler","PA","Pennsylvania","TRUE","","32241","599.2","42091","Montgomery","{""42091"": ""100""}","Montgomery","42091","FALSE","FALSE","America/New_York"
-"19003","40.00154","-75.29898","Ardmore","PA","Pennsylvania","TRUE","","13427","2669.7","42091","Montgomery","{""42091"": ""51.14"", ""42045"": ""48.86""}","Montgomery|Delaware","42091|42045","FALSE","FALSE","America/New_York"
-"19004","40.01373","-75.23007","Bala Cynwyd","PA","Pennsylvania","TRUE","","9524","1345.1","42091","Montgomery","{""42091"": ""100""}","Montgomery","42091","FALSE","FALSE","America/New_York"
-"19006","40.13296","-75.06155","Huntingdon Valley","PA","Pennsylvania","TRUE","","21899","658.6","42091","Montgomery","{""42091"": ""94.65"", ""42017"": ""5.35""}","Montgomery|Bucks","42091|42017","FALSE","FALSE","America/New_York"
-"19007","40.11389","-74.85855","Bristol","PA","Pennsylvania","TRUE","","20944","1187.9","42017","Bucks","{""42017"": ""100""}","Bucks","42017","FALSE","FALSE","America/New_York"
-"19008","39.97385","-75.36075","Broomall","PA","Pennsylvania","TRUE","","20934","1233.1","42045","Delaware","{""42045"": ""100""}","Delaware","42045","FALSE","FALSE","America/New_York"
-"19009","40.13778","-75.06425","Bryn Athyn","PA","Pennsylvania","TRUE","","840","249.3","42091","Montgomery","{""42091"": ""100""}","Montgomery","42091","FALSE","FALSE","America/New_York"
-"19010","40.02359","-75.32978","Bryn Mawr","PA","Pennsylvania","TRUE","","21572","988.3","42045","Delaware","{""42045"": ""61.26"", ""42091"": ""38.74""}","Delaware|Montgomery","42045|42091","FALSE","FALSE","America/New_York"
-"19012","40.05972","-75.10587","Cheltenham","PA","Pennsylvania","TRUE","","6328","1390.9","42091","Montgomery","{""42091"": ""100""}","Montgomery","42091","FALSE","FALSE","America/New_York"
-"19013","39.84791","-75.37611","Chester","PA","Pennsylvania","TRUE","","35134","2372.1","42045","Delaware","{""42045"": ""100""}","Delaware","42045","FALSE","FALSE","America/New_York"
-"19014","39.86362","-75.43358","Aston","PA","Pennsylvania","TRUE","","20900","897.3","42045","Delaware","{""42045"": ""100""}","Delaware","42045","FALSE","FALSE","America/New_York"
-"19015","39.86921","-75.39286","Brookhaven","PA","Pennsylvania","TRUE","","16809","1978.3","42045","Delaware","{""42045"": ""100""}","Delaware","42045","FALSE","FALSE","America/New_York"
-"19017","39.8909","-75.4644","Chester Heights","PA","Pennsylvania","TRUE","","271","117.2","42045","Delaware","{""42045"": ""100""}","Delaware","42045","FALSE","FALSE","America/New_York"
-"19018","39.92304","-75.29861","Clifton Heights","PA","Pennsylvania","TRUE","","23445","3349.8","42045","Delaware","{""42045"": ""100""}","Delaware","42045","FALSE","FALSE","America/New_York"
-"19020","40.10451","-74.93857","Bensalem","PA","Pennsylvania","TRUE","","54985","1229.9","42017","Bucks","{""42017"": ""100""}","Bucks","42017","FALSE","FALSE","America/New_York"
-"19021","40.08904","-74.89153","Croydon","PA","Pennsylvania","TRUE","","10063","1135.8","42017","Bucks","{""42017"": ""100""}","Bucks","42017","FALSE","FALSE","America/New_York"
-"19022","39.86143","-75.33704","Crum Lynne","PA","Pennsylvania","TRUE","","3696","1084.5","42045","Delaware","{""42045"": ""100""}","Delaware","42045","FALSE","FALSE","America/New_York"
-"19023","39.91716","-75.26745","Darby","PA","Pennsylvania","TRUE","","22088","4270.1","42045","Delaware","{""42045"": ""100""}","Delaware","42045","FALSE","FALSE","America/New_York"
-"19025","40.14644","-75.16198","Dresher","PA","Pennsylvania","TRUE","","5861","754.9","42091","Montgomery","{""42091"": ""100""}","Montgomery","42091","FALSE","FALSE","America/New_York"
-"19026","39.9503","-75.30406","Drexel Hill","PA","Pennsylvania","TRUE","","30573","3257.7","42045","Delaware","{""42045"": ""100""}","Delaware","42045","FALSE","FALSE","America/New_York"
-"19027","40.07349","-75.1242","Elkins Park","PA","Pennsylvania","TRUE","","20068","1960.2","42091","Montgomery","{""42091"": ""100""}","Montgomery","42091","FALSE","FALSE","America/New_York"
-"19029","39.86955","-75.29113","Essington","PA","Pennsylvania","TRUE","","4013","687.6","42045","Delaware","{""42045"": ""100""}","Delaware","42045","FALSE","FALSE","America/New_York"
-"19030","40.18068","-74.83717","Fairless Hills","PA","Pennsylvania","TRUE","","11792","1004.0","42017","Bucks","{""42017"": ""100""}","Bucks","42017","FALSE","FALSE","America/New_York"
-"19031","40.1092","-75.21701","Flourtown","PA","Pennsylvania","TRUE","","4618","620.6","42091","Montgomery","{""42091"": ""100""}","Montgomery","42091","FALSE","FALSE","America/New_York"
-"19032","39.89122","-75.2795","Folcroft","PA","Pennsylvania","TRUE","","6627","2518.6","42045","Delaware","{""42045"": ""100""}","Delaware","42045","FALSE","FALSE","America/New_York"
-"19033","39.89093","-75.32837","Folsom","PA","Pennsylvania","TRUE","","8826","3091.0","42045","Delaware","{""42045"": ""100""}","Delaware","42045","FALSE","FALSE","America/New_York"
-"19034","40.13427","-75.20482","Fort Washington","PA","Pennsylvania","TRUE","","5852","361.9","42091","Montgomery","{""42091"": ""100""}","Montgomery","42091","FALSE","FALSE","America/New_York"
-"19035","40.0492","-75.28147","Gladwyne","PA","Pennsylvania","TRUE","","3453","280.1","42091","Montgomery","{""42091"": ""100""}","Montgomery","42091","FALSE","FALSE","America/New_York"
-"19036","39.90359","-75.29342","Glenolden","PA","Pennsylvania","TRUE","","12894","3256.5","42045","Delaware","{""42045"": ""100""}","Delaware","42045","FALSE","FALSE","America/New_York"
-"19038","40.10169","-75.17242","Glenside","PA","Pennsylvania","TRUE","","31415","1534.6","42091","Montgomery","{""42091"": ""100""}","Montgomery","42091","FALSE","FALSE","America/New_York"
-"19040","40.17697","-75.10567","Hatboro","PA","Pennsylvania","TRUE","","20901","1362.3","42091","Montgomery","{""42091"": ""98.91"", ""42017"": ""1.09""}","Montgomery|Bucks","42091|42017","FALSE","FALSE","America/New_York"
-"19041","40.00718","-75.31653","Haverford","PA","Pennsylvania","TRUE","","6494","759.2","42045","Delaware","{""42045"": ""52.19"", ""42091"": ""47.81""}","Delaware|Montgomery","42045|42091","FALSE","FALSE","America/New_York"
-"19043","39.90032","-75.30889","Holmes","PA","Pennsylvania","TRUE","","2470","2421.8","42045","Delaware","{""42045"": ""100""}","Delaware","42045","FALSE","FALSE","America/New_York"
-"19044","40.18607","-75.15287","Horsham","PA","Pennsylvania","TRUE","","16206","771.4","42091","Montgomery","{""42091"": ""100""}","Montgomery","42091","FALSE","FALSE","America/New_York"
-"19046","40.10141","-75.10557","Jenkintown","PA","Pennsylvania","TRUE","","17660","1029.3","42091","Montgomery","{""42091"": ""100""}","Montgomery","42091","FALSE","FALSE","America/New_York"
-"19047","40.18131","-74.9104","Langhorne","PA","Pennsylvania","TRUE","","34479","760.7","42017","Bucks","{""42017"": ""100""}","Bucks","42017","FALSE","FALSE","America/New_York"
-"19050","39.93752","-75.26369","Lansdowne","PA","Pennsylvania","TRUE","","27976","2928.0","42045","Delaware","{""42045"": ""100""}","Delaware","42045","FALSE","FALSE","America/New_York"
-"19053","40.15467","-74.97955","Feasterville Trevose","PA","Pennsylvania","TRUE","","26293","969.2","42017","Bucks","{""42017"": ""100""}","Bucks","42017","FALSE","FALSE","America/New_York"
-"19054","40.17083","-74.82041","Levittown","PA","Pennsylvania","TRUE","","16180","1509.8","42017","Bucks","{""42017"": ""100""}","Bucks","42017","FALSE","FALSE","America/New_York"
-"19055","40.14967","-74.83881","Levittown","PA","Pennsylvania","TRUE","","14032","1902.8","42017","Bucks","{""42017"": ""100""}","Bucks","42017","FALSE","FALSE","America/New_York"
-"19056","40.14969","-74.8858","Levittown","PA","Pennsylvania","TRUE","","15249","1602.3","42017","Bucks","{""42017"": ""100""}","Bucks","42017","FALSE","FALSE","America/New_York"
-"19057","40.14008","-74.85645","Levittown","PA","Pennsylvania","TRUE","","17449","1526.8","42017","Bucks","{""42017"": ""100""}","Bucks","42017","FALSE","FALSE","America/New_York"
-"19060","39.84973","-75.49395","Garnet Valley","PA","Pennsylvania","TRUE","","11319","557.6","42045","Delaware","{""42045"": ""100""}","Delaware","42045","FALSE","FALSE","America/New_York"
-"19061","39.82937","-75.43547","Marcus Hook","PA","Pennsylvania","TRUE","","20248","1115.1","42045","Delaware","{""42045"": ""100""}","Delaware","42045","FALSE","FALSE","America/New_York"
-"19063","39.92181","-75.4141","Media","PA","Pennsylvania","TRUE","","35764","598.3","42045","Delaware","{""42045"": ""100""}","Delaware","42045","FALSE","FALSE","America/New_York"
-"19064","39.9333","-75.34114","Springfield","PA","Pennsylvania","TRUE","","24664","1196.1","42045","Delaware","{""42045"": ""100""}","Delaware","42045","FALSE","FALSE","America/New_York"
-"19066","40.00262","-75.24908","Merion Station","PA","Pennsylvania","TRUE","","5662","1601.9","42091","Montgomery","{""42091"": ""100""}","Montgomery","42091","FALSE","FALSE","America/New_York"
-"19067","40.20632","-74.81597","Morrisville","PA","Pennsylvania","TRUE","","52689","713.6","42017","Bucks","{""42017"": ""100""}","Bucks","42017","FALSE","FALSE","America/New_York"
-"19070","39.90624","-75.3247","Morton","PA","Pennsylvania","TRUE","","6924","2466.3","42045","Delaware","{""42045"": ""100""}","Delaware","42045","FALSE","FALSE","America/New_York"
-"19072","40.02433","-75.25771","Narberth","PA","Pennsylvania","TRUE","","9802","1179.1","42091","Montgomery","{""42091"": ""100""}","Montgomery","42091","FALSE","FALSE","America/New_York"
-"19073","39.98103","-75.43487","Newtown Square","PA","Pennsylvania","TRUE","","19763","368.6","42045","Delaware","{""42045"": ""89"", ""42029"": ""11""}","Delaware|Chester","42045|42029","FALSE","FALSE","America/New_York"
-"19074","39.88644","-75.29637","Norwood","PA","Pennsylvania","TRUE","","5893","2925.2","42045","Delaware","{""42045"": ""100""}","Delaware","42045","FALSE","FALSE","America/New_York"
-"19075","40.11404","-75.18635","Oreland","PA","Pennsylvania","TRUE","","7632","1304.0","42091","Montgomery","{""42091"": ""100""}","Montgomery","42091","FALSE","FALSE","America/New_York"
-"19076","39.88589","-75.30755","Prospect Park","PA","Pennsylvania","TRUE","","6555","3383.6","42045","Delaware","{""42045"": ""100""}","Delaware","42045","FALSE","FALSE","America/New_York"
-"19078","39.87477","-75.32185","Ridley Park","PA","Pennsylvania","TRUE","","11562","2207.9","42045","Delaware","{""42045"": ""100""}","Delaware","42045","FALSE","FALSE","America/New_York"
-"19079","39.89888","-75.26663","Sharon Hill","PA","Pennsylvania","TRUE","","9223","1928.2","42045","Delaware","{""42045"": ""100""}","Delaware","42045","FALSE","FALSE","America/New_York"
-"19081","39.89805","-75.34715","Swarthmore","PA","Pennsylvania","TRUE","","9923","1715.0","42045","Delaware","{""42045"": ""100""}","Delaware","42045","FALSE","FALSE","America/New_York"
-"19082","39.96041","-75.27045","Upper Darby","PA","Pennsylvania","TRUE","","41741","6234.7","42045","Delaware","{""42045"": ""100""}","Delaware","42045","FALSE","FALSE","America/New_York"
-"19083","39.97701","-75.3121","Havertown","PA","Pennsylvania","TRUE","","36633","2545.4","42045","Delaware","{""42045"": ""99.82"", ""42091"": ""0.18""}","Delaware|Montgomery","42045|42091","FALSE","FALSE","America/New_York"
-"19085","40.03738","-75.34956","Villanova","PA","Pennsylvania","TRUE","","8778","560.7","42045","Delaware","{""42045"": ""68.24"", ""42091"": ""31.76""}","Delaware|Montgomery","42045|42091","FALSE","FALSE","America/New_York"
-"19086","39.8906","-75.37007","Wallingford","PA","Pennsylvania","TRUE","","11746","1176.4","42045","Delaware","{""42045"": ""100""}","Delaware","42045","FALSE","FALSE","America/New_York"
-"19087","40.06116","-75.39987","Wayne","PA","Pennsylvania","TRUE","","32765","792.7","42029","Chester","{""42029"": ""45.28"", ""42045"": ""43.12"", ""42091"": ""11.61""}","Chester|Delaware|Montgomery","42029|42045|42091","FALSE","FALSE","America/New_York"
-"19090","40.15675","-75.12687","Willow Grove","PA","Pennsylvania","TRUE","","18357","1319.0","42091","Montgomery","{""42091"": ""100""}","Montgomery","42091","FALSE","FALSE","America/New_York"
-"19094","39.87482","-75.34659","Woodlyn","PA","Pennsylvania","TRUE","","4060","1954.2","42045","Delaware","{""42045"": ""100""}","Delaware","42045","FALSE","FALSE","America/New_York"
-"19095","40.08597","-75.15119","Wyncote","PA","Pennsylvania","TRUE","","7070","1292.2","42091","Montgomery","{""42091"": ""100""}","Montgomery","42091","FALSE","FALSE","America/New_York"
-"19096","39.99786","-75.27419","Wynnewood","PA","Pennsylvania","TRUE","","13695","1509.1","42091","Montgomery","{""42091"": ""96.04"", ""42045"": ""3.96""}","Montgomery|Delaware","42091|42045","FALSE","FALSE","America/New_York"
-"19102","39.95287","-75.16549","Philadelphia","PA","Pennsylvania","TRUE","","5147","10523.0","42101","Philadelphia","{""42101"": ""100""}","Philadelphia","42101","FALSE","FALSE","America/New_York"
-"19103","39.9528","-75.17397","Philadelphia","PA","Pennsylvania","TRUE","","24214","14630.6","42101","Philadelphia","{""42101"": ""100""}","Philadelphia","42101","FALSE","FALSE","America/New_York"
-"19104","39.95917","-75.19842","Philadelphia","PA","Pennsylvania","TRUE","","53560","6862.5","42101","Philadelphia","{""42101"": ""100""}","Philadelphia","42101","FALSE","FALSE","America/New_York"
-"19106","39.94865","-75.14296","Philadelphia","PA","Pennsylvania","TRUE","","12592","6052.4","42101","Philadelphia","{""42101"": ""100""}","Philadelphia","42101","FALSE","FALSE","America/New_York"
-"19107","39.95182","-75.15861","Philadelphia","PA","Pennsylvania","TRUE","","14526","10209.7","42101","Philadelphia","{""42101"": ""100""}","Philadelphia","42101","FALSE","FALSE","America/New_York"
-"19109","39.94966","-75.16365","Philadelphia","PA","Pennsylvania","TRUE","","0","0.0","42101","Philadelphia","{""42101"": ""0""}","Philadelphia","42101","FALSE","FALSE","America/New_York"
-"19111","40.06025","-75.08041","Philadelphia","PA","Pennsylvania","TRUE","","68113","5442.2","42101","Philadelphia","{""42101"": ""100""}","Philadelphia","42101","FALSE","FALSE","America/New_York"
-"19112","39.8899","-75.16977","Philadelphia","PA","Pennsylvania","TRUE","","0","0.0","42101","Philadelphia","{""42101"": ""100""}","Philadelphia","42101","FALSE","FALSE","America/New_York"
-"19113","39.86742","-75.25335","Philadelphia","PA","Pennsylvania","TRUE","","96","10.6","42045","Delaware","{""42045"": ""100""}","Delaware","42045","FALSE","FALSE","America/New_York"
-"19114","40.06736","-75.00358","Philadelphia","PA","Pennsylvania","TRUE","","31668","2178.0","42101","Philadelphia","{""42101"": ""100""}","Philadelphia","42101","FALSE","FALSE","America/New_York"
-"19115","40.09108","-75.04576","Philadelphia","PA","Pennsylvania","TRUE","","35346","2432.4","42101","Philadelphia","{""42101"": ""100""}","Philadelphia","42101","FALSE","FALSE","America/New_York"
-"19116","40.11679","-75.01276","Philadelphia","PA","Pennsylvania","TRUE","","34747","2680.6","42101","Philadelphia","{""42101"": ""100""}","Philadelphia","42101","FALSE","FALSE","America/New_York"
-"19118","40.0727","-75.21247","Philadelphia","PA","Pennsylvania","TRUE","","10884","1315.1","42101","Philadelphia","{""42101"": ""99.18"", ""42091"": ""0.82""}","Philadelphia|Montgomery","42101|42091","FALSE","FALSE","America/New_York"
-"19119","40.05382","-75.19094","Philadelphia","PA","Pennsylvania","TRUE","","28192","3360.8","42101","Philadelphia","{""42101"": ""100""}","Philadelphia","42101","FALSE","FALSE","America/New_York"
-"19120","40.03365","-75.11998","Philadelphia","PA","Pennsylvania","TRUE","","74060","8401.2","42101","Philadelphia","{""42101"": ""100""}","Philadelphia","42101","FALSE","FALSE","America/New_York"
-"19121","39.98216","-75.17866","Philadelphia","PA","Pennsylvania","TRUE","","32385","5654.4","42101","Philadelphia","{""42101"": ""100""}","Philadelphia","42101","FALSE","FALSE","America/New_York"
-"19122","39.97778","-75.14582","Philadelphia","PA","Pennsylvania","TRUE","","21666","6591.1","42101","Philadelphia","{""42101"": ""100""}","Philadelphia","42101","FALSE","FALSE","America/New_York"
-"19123","39.9642","-75.14586","Philadelphia","PA","Pennsylvania","TRUE","","17351","5285.2","42101","Philadelphia","{""42101"": ""100""}","Philadelphia","42101","FALSE","FALSE","America/New_York"
-"19124","40.01711","-75.09304","Philadelphia","PA","Pennsylvania","TRUE","","70304","5567.6","42101","Philadelphia","{""42101"": ""100""}","Philadelphia","42101","FALSE","FALSE","America/New_York"
-"19125","39.97617","-75.1248","Philadelphia","PA","Pennsylvania","TRUE","","25850","7249.0","42101","Philadelphia","{""42101"": ""100""}","Philadelphia","42101","FALSE","FALSE","America/New_York"
-"19126","40.05538","-75.13752","Philadelphia","PA","Pennsylvania","TRUE","","15656","5288.7","42101","Philadelphia","{""42101"": ""100""}","Philadelphia","42101","FALSE","FALSE","America/New_York"
-"19127","40.02828","-75.22732","Philadelphia","PA","Pennsylvania","TRUE","","5760","4046.3","42101","Philadelphia","{""42101"": ""100""}","Philadelphia","42101","FALSE","FALSE","America/New_York"
-"19128","40.04881","-75.22899","Philadelphia","PA","Pennsylvania","TRUE","","37644","2059.9","42101","Philadelphia","{""42101"": ""100""}","Philadelphia","42101","FALSE","FALSE","America/New_York"
-"19129","40.01358","-75.18461","Philadelphia","PA","Pennsylvania","TRUE","","11275","1980.3","42101","Philadelphia","{""42101"": ""100""}","Philadelphia","42101","FALSE","FALSE","America/New_York"
-"19130","39.96776","-75.17544","Philadelphia","PA","Pennsylvania","TRUE","","27093","8082.5","42101","Philadelphia","{""42101"": ""100""}","Philadelphia","42101","FALSE","FALSE","America/New_York"
-"19131","39.98856","-75.21792","Philadelphia","PA","Pennsylvania","TRUE","","44723","3272.2","42101","Philadelphia","{""42101"": ""100""}","Philadelphia","42101","FALSE","FALSE","America/New_York"
-"19132","39.99628","-75.17077","Philadelphia","PA","Pennsylvania","TRUE","","31378","5597.4","42101","Philadelphia","{""42101"": ""100""}","Philadelphia","42101","FALSE","FALSE","America/New_York"
-"19133","39.99259","-75.14138","Philadelphia","PA","Pennsylvania","TRUE","","27102","8046.4","42101","Philadelphia","{""42101"": ""100""}","Philadelphia","42101","FALSE","FALSE","America/New_York"
-"19134","39.98981","-75.10843","Philadelphia","PA","Pennsylvania","TRUE","","62087","6833.2","42101","Philadelphia","{""42101"": ""100""}","Philadelphia","42101","FALSE","FALSE","America/New_York"
-"19135","40.02188","-75.04929","Philadelphia","PA","Pennsylvania","TRUE","","35427","5888.1","42101","Philadelphia","{""42101"": ""100""}","Philadelphia","42101","FALSE","FALSE","America/New_York"
-"19136","40.03972","-75.01894","Philadelphia","PA","Pennsylvania","TRUE","","34741","2884.0","42101","Philadelphia","{""42101"": ""100""}","Philadelphia","42101","FALSE","FALSE","America/New_York"
-"19137","39.9946","-75.074","Philadelphia","PA","Pennsylvania","TRUE","","8347","1332.8","42101","Philadelphia","{""42101"": ""100""}","Philadelphia","42101","FALSE","FALSE","America/New_York"
-"19138","40.05611","-75.15901","Philadelphia","PA","Pennsylvania","TRUE","","32766","7343.2","42101","Philadelphia","{""42101"": ""100""}","Philadelphia","42101","FALSE","FALSE","America/New_York"
-"19139","39.96144","-75.22981","Philadelphia","PA","Pennsylvania","TRUE","","46397","10122.4","42101","Philadelphia","{""42101"": ""100""}","Philadelphia","42101","FALSE","FALSE","America/New_York"
-"19140","40.01241","-75.14508","Philadelphia","PA","Pennsylvania","TRUE","","51766","6536.1","42101","Philadelphia","{""42101"": ""100""}","Philadelphia","42101","FALSE","FALSE","America/New_York"
-"19141","40.03757","-75.14578","Philadelphia","PA","Pennsylvania","TRUE","","34701","7389.1","42101","Philadelphia","{""42101"": ""100""}","Philadelphia","42101","FALSE","FALSE","America/New_York"
-"19142","39.92272","-75.23414","Philadelphia","PA","Pennsylvania","TRUE","","29078","6657.6","42101","Philadelphia","{""42101"": ""100""}","Philadelphia","42101","FALSE","FALSE","America/New_York"
-"19143","39.94289","-75.22636","Philadelphia","PA","Pennsylvania","TRUE","","64630","7844.0","42101","Philadelphia","{""42101"": ""100""}","Philadelphia","42101","FALSE","FALSE","America/New_York"
-"19144","40.03311","-75.17495","Philadelphia","PA","Pennsylvania","TRUE","","43884","4934.8","42101","Philadelphia","{""42101"": ""100""}","Philadelphia","42101","FALSE","FALSE","America/New_York"
-"19145","39.9149","-75.1921","Philadelphia","PA","Pennsylvania","TRUE","","46052","3651.4","42101","Philadelphia","{""42101"": ""100""}","Philadelphia","42101","FALSE","FALSE","America/New_York"
-"19146","39.9394","-75.18353","Philadelphia","PA","Pennsylvania","TRUE","","39282","8977.9","42101","Philadelphia","{""42101"": ""100""}","Philadelphia","42101","FALSE","FALSE","America/New_York"
-"19147","39.93585","-75.15224","Philadelphia","PA","Pennsylvania","TRUE","","38472","10551.4","42101","Philadelphia","{""42101"": ""100""}","Philadelphia","42101","FALSE","FALSE","America/New_York"
-"19148","39.91162","-75.15143","Philadelphia","PA","Pennsylvania","TRUE","","52259","4778.5","42101","Philadelphia","{""42101"": ""100""}","Philadelphia","42101","FALSE","FALSE","America/New_York"
-"19149","40.03772","-75.06572","Philadelphia","PA","Pennsylvania","TRUE","","58055","9230.5","42101","Philadelphia","{""42101"": ""100""}","Philadelphia","42101","FALSE","FALSE","America/New_York"
-"19150","40.07255","-75.17183","Philadelphia","PA","Pennsylvania","TRUE","","22299","5710.7","42101","Philadelphia","{""42101"": ""100"", ""42091"": ""0""}","Philadelphia|Montgomery","42101|42091","FALSE","FALSE","America/New_York"
-"19151","39.97561","-75.25622","Philadelphia","PA","Pennsylvania","TRUE","","33343","5382.7","42101","Philadelphia","{""42101"": ""100""}","Philadelphia","42101","FALSE","FALSE","America/New_York"
-"19152","40.0607","-75.04673","Philadelphia","PA","Pennsylvania","TRUE","","36379","4977.1","42101","Philadelphia","{""42101"": ""100""}","Philadelphia","42101","FALSE","FALSE","America/New_York"
-"19153","39.89333","-75.22832","Philadelphia","PA","Pennsylvania","TRUE","","13006","696.2","42101","Philadelphia","{""42101"": ""100""}","Philadelphia","42101","FALSE","FALSE","America/New_York"
-"19154","40.09506","-74.98161","Philadelphia","PA","Pennsylvania","TRUE","","35098","2121.0","42101","Philadelphia","{""42101"": ""100""}","Philadelphia","42101","FALSE","FALSE","America/New_York"
-"19301","40.04115","-75.48032","Paoli","PA","Pennsylvania","TRUE","","6375","732.3","42029","Chester","{""42029"": ""100""}","Chester","42029","FALSE","FALSE","America/New_York"
-"19310","39.93546","-75.96963","Atglen","PA","Pennsylvania","TRUE","","3072","91.1","42029","Chester","{""42029"": ""97"", ""42071"": ""3""}","Chester|Lancaster","42029|42071","FALSE","FALSE","America/New_York"
-"19311","39.82265","-75.76893","Avondale","PA","Pennsylvania","TRUE","","8999","275.9","42029","Chester","{""42029"": ""100""}","Chester","42029","FALSE","FALSE","America/New_York"
-"19312","40.03239","-75.45165","Berwyn","PA","Pennsylvania","TRUE","","11618","473.3","42029","Chester","{""42029"": ""99.8"", ""42045"": ""0.2""}","Chester|Delaware","42029|42045","FALSE","FALSE","America/New_York"
-"19316","40.05543","-75.83641","Brandamore","PA","Pennsylvania","TRUE","","238","103.2","42029","Chester","{""42029"": ""100""}","Chester","42029","FALSE","FALSE","America/New_York"
-"19317","39.85766","-75.6017","Chadds Ford","PA","Pennsylvania","TRUE","","9968","182.4","42045","Delaware","{""42045"": ""55.34"", ""42029"": ""44.66""}","Delaware|Chester","42045|42029","FALSE","FALSE","America/New_York"
-"19319","39.92825","-75.52054","Cheyney","PA","Pennsylvania","TRUE","","655","399.8","42045","Delaware","{""42045"": ""99.82"", ""42029"": ""0.18""}","Delaware|Chester","42045|42029","FALSE","FALSE","America/New_York"
-"19320","39.96904","-75.83098","Coatesville","PA","Pennsylvania","TRUE","","54617","249.4","42029","Chester","{""42029"": ""100""}","Chester","42029","FALSE","FALSE","America/New_York"
-"19330","39.87242","-75.9165","Cochranville","PA","Pennsylvania","TRUE","","5351","61.3","42029","Chester","{""42029"": ""100""}","Chester","42029","FALSE","FALSE","America/New_York"
-"19333","40.04109","-75.42325","Devon","PA","Pennsylvania","TRUE","","6911","772.9","42029","Chester","{""42029"": ""100""}","Chester","42029","FALSE","FALSE","America/New_York"
-"19335","40.02282","-75.72018","Downingtown","PA","Pennsylvania","TRUE","","48962","444.9","42029","Chester","{""42029"": ""100""}","Chester","42029","FALSE","FALSE","America/New_York"
-"19341","40.04104","-75.63669","Exton","PA","Pennsylvania","TRUE","","17572","526.5","42029","Chester","{""42029"": ""100""}","Chester","42029","FALSE","FALSE","America/New_York"
-"19342","39.90579","-75.49672","Glen Mills","PA","Pennsylvania","TRUE","","18843","372.9","42045","Delaware","{""42045"": ""98.7"", ""42029"": ""1.3""}","Delaware|Chester","42045|42029","FALSE","FALSE","America/New_York"
-"19343","40.1014","-75.75458","Glenmoore","PA","Pennsylvania","TRUE","","7810","111.2","42029","Chester","{""42029"": ""100""}","Chester","42029","FALSE","FALSE","America/New_York"
-"19344","40.08403","-75.88149","Honey Brook","PA","Pennsylvania","TRUE","","11988","141.8","42029","Chester","{""42029"": ""97.42"", ""42071"": ""2.58""}","Chester|Lancaster","42029|42071","FALSE","FALSE","America/New_York"
-"19345","40.0294","-75.56539","Immaculata","PA","Pennsylvania","TRUE","","661","1245.7","42029","Chester","{""42029"": ""100""}","Chester","42029","FALSE","FALSE","America/New_York"
-"19348","39.86726","-75.71376","Kennett Square","PA","Pennsylvania","TRUE","","23934","249.6","42029","Chester","{""42029"": ""100""}","Chester","42029","FALSE","FALSE","America/New_York"
-"19350","39.76322","-75.7947","Landenberg","PA","Pennsylvania","TRUE","","11424","158.3","42029","Chester","{""42029"": ""100""}","Chester","42029","FALSE","FALSE","America/New_York"
-"19352","39.77689","-75.8893","Lincoln University","PA","Pennsylvania","TRUE","","11109","223.5","42029","Chester","{""42029"": ""100""}","Chester","42029","FALSE","FALSE","America/New_York"
-"19355","40.04684","-75.53098","Malvern","PA","Pennsylvania","TRUE","","26778","269.6","42029","Chester","{""42029"": ""100""}","Chester","42029","FALSE","FALSE","America/New_York"
-"19358","39.9617","-75.80273","Modena","PA","Pennsylvania","TRUE","","820","1009.4","42029","Chester","{""42029"": ""100""}","Chester","42029","FALSE","FALSE","America/New_York"
-"19362","39.7525","-76.06797","Nottingham","PA","Pennsylvania","TRUE","","5845","74.7","42029","Chester","{""42029"": ""60.14"", ""42071"": ""39.86""}","Chester|Lancaster","42029|42071","FALSE","FALSE","America/New_York"
-"19363","39.78697","-75.97447","Oxford","PA","Pennsylvania","TRUE","","17274","134.0","42029","Chester","{""42029"": ""97.53"", ""42071"": ""2.47""}","Chester|Lancaster","42029|42071","FALSE","FALSE","America/New_York"
-"19365","39.96409","-75.92512","Parkesburg","PA","Pennsylvania","TRUE","","7431","160.7","42029","Chester","{""42029"": ""100""}","Chester","42029","FALSE","FALSE","America/New_York"
-"19367","39.96298","-75.88401","Pomeroy","PA","Pennsylvania","TRUE","","76","173.6","42029","Chester","{""42029"": ""100""}","Chester","42029","FALSE","FALSE","America/New_York"
-"19372","39.99844","-75.75887","Thorndale","PA","Pennsylvania","TRUE","","1886","1246.6","42029","Chester","{""42029"": ""100""}","Chester","42029","FALSE","FALSE","America/New_York"
-"19373","39.90249","-75.53387","Thornton","PA","Pennsylvania","TRUE","","4823","449.6","42045","Delaware","{""42045"": ""100""}","Delaware","42045","FALSE","FALSE","America/New_York"
-"19374","39.83343","-75.75329","Toughkenamon","PA","Pennsylvania","TRUE","","1086","243.8","42029","Chester","{""42029"": ""100""}","Chester","42029","FALSE","FALSE","America/New_York"
-"19375","39.90044","-75.74032","Unionville","PA","Pennsylvania","TRUE","","0","0.0","42029","Chester","{""42029"": ""100""}","Chester","42029","FALSE","FALSE","America/New_York"
-"19380","39.98485","-75.60717","West Chester","PA","Pennsylvania","TRUE","","50956","623.3","42029","Chester","{""42029"": ""100""}","Chester","42029","FALSE","FALSE","America/New_York"
-"19382","39.92809","-75.6123","West Chester","PA","Pennsylvania","TRUE","","55036","459.1","42029","Chester","{""42029"": ""98.27"", ""42045"": ""1.73""}","Chester|Delaware","42029|42045","FALSE","FALSE","America/New_York"
-"19383","39.95163","-75.60163","West Chester","PA","Pennsylvania","TRUE","","3122","20116.0","42029","Chester","{""42029"": ""100""}","Chester","42029","FALSE","FALSE","America/New_York"
-"19390","39.8329","-75.84009","West Grove","PA","Pennsylvania","TRUE","","14684","217.1","42029","Chester","{""42029"": ""100""}","Chester","42029","FALSE","FALSE","America/New_York"
-"19401","40.13038","-75.33136","Norristown","PA","Pennsylvania","TRUE","","41897","2682.4","42091","Montgomery","{""42091"": ""100""}","Montgomery","42091","FALSE","FALSE","America/New_York"
-"19403","40.14964","-75.37966","Norristown","PA","Pennsylvania","TRUE","","46592","758.0","42091","Montgomery","{""42091"": ""100""}","Montgomery","42091","FALSE","FALSE","America/New_York"
-"19405","40.10382","-75.34071","Bridgeport","PA","Pennsylvania","TRUE","","5250","2799.6","42091","Montgomery","{""42091"": ""100""}","Montgomery","42091","FALSE","FALSE","America/New_York"
-"19406","40.09442","-75.38244","King Of Prussia","PA","Pennsylvania","TRUE","","25105","701.0","42091","Montgomery","{""42091"": ""100""}","Montgomery","42091","FALSE","FALSE","America/New_York"
-"19422","40.15734","-75.27722","Blue Bell","PA","Pennsylvania","TRUE","","18852","573.4","42091","Montgomery","{""42091"": ""100""}","Montgomery","42091","FALSE","FALSE","America/New_York"
-"19425","40.10221","-75.64641","Chester Springs","PA","Pennsylvania","TRUE","","15950","228.4","42029","Chester","{""42029"": ""100""}","Chester","42029","FALSE","FALSE","America/New_York"
-"19426","40.19137","-75.43729","Collegeville","PA","Pennsylvania","TRUE","","40720","463.4","42091","Montgomery","{""42091"": ""100""}","Montgomery","42091","FALSE","FALSE","America/New_York"
-"19428","40.08044","-75.30085","Conshohocken","PA","Pennsylvania","TRUE","","17222","873.7","42091","Montgomery","{""42091"": ""100""}","Montgomery","42091","FALSE","FALSE","America/New_York"
-"19435","40.32745","-75.56918","Frederick","PA","Pennsylvania","TRUE","","175","87.1","42091","Montgomery","{""42091"": ""100""}","Montgomery","42091","FALSE","FALSE","America/New_York"
-"19436","40.20152","-75.247","Gwynedd","PA","Pennsylvania","TRUE","","711","781.9","42091","Montgomery","{""42091"": ""100""}","Montgomery","42091","FALSE","FALSE","America/New_York"
-"19437","40.18241","-75.2586","Gwynedd Valley","PA","Pennsylvania","TRUE","","1122","397.5","42091","Montgomery","{""42091"": ""100""}","Montgomery","42091","FALSE","FALSE","America/New_York"
-"19438","40.26979","-75.39513","Harleysville","PA","Pennsylvania","TRUE","","24780","428.9","42091","Montgomery","{""42091"": ""100""}","Montgomery","42091","FALSE","FALSE","America/New_York"
-"19440","40.28646","-75.2895","Hatfield","PA","Pennsylvania","TRUE","","19350","663.1","42091","Montgomery","{""42091"": ""92.13"", ""42017"": ""7.87""}","Montgomery|Bucks","42091|42017","FALSE","FALSE","America/New_York"
-"19442","40.12953","-75.58314","Kimberton","PA","Pennsylvania","TRUE","","0","0.0","42029","Chester","{""42029"": ""100""}","Chester","42029","FALSE","FALSE","America/New_York"
-"19444","40.08782","-75.25319","Lafayette Hill","PA","Pennsylvania","TRUE","","10890","868.5","42091","Montgomery","{""42091"": ""100""}","Montgomery","42091","FALSE","FALSE","America/New_York"
-"19446","40.23199","-75.30376","Lansdale","PA","Pennsylvania","TRUE","","56720","971.2","42091","Montgomery","{""42091"": ""100""}","Montgomery","42091","FALSE","FALSE","America/New_York"
-"19453","40.13916","-75.50156","Mont Clare","PA","Pennsylvania","TRUE","","1732","1015.2","42091","Montgomery","{""42091"": ""100""}","Montgomery","42091","FALSE","FALSE","America/New_York"
-"19454","40.22346","-75.24321","North Wales","PA","Pennsylvania","TRUE","","28977","857.3","42091","Montgomery","{""42091"": ""100""}","Montgomery","42091","FALSE","FALSE","America/New_York"
-"19456","40.13331","-75.46104","Oaks","PA","Pennsylvania","TRUE","","537","505.0","42091","Montgomery","{""42091"": ""100""}","Montgomery","42091","FALSE","FALSE","America/New_York"
-"19457","40.20466","-75.58813","Parker Ford","PA","Pennsylvania","TRUE","","87","170.6","42029","Chester","{""42029"": ""100""}","Chester","42029","FALSE","FALSE","America/New_York"
-"19460","40.12704","-75.53008","Phoenixville","PA","Pennsylvania","TRUE","","42063","459.4","42029","Chester","{""42029"": ""87.87"", ""42091"": ""12.13""}","Chester|Montgomery","42029|42091","FALSE","FALSE","America/New_York"
-"19462","40.11552","-75.28382","Plymouth Meeting","PA","Pennsylvania","TRUE","","15811","721.4","42091","Montgomery","{""42091"": ""100""}","Montgomery","42091","FALSE","FALSE","America/New_York"
-"19464","40.25886","-75.61574","Pottstown","PA","Pennsylvania","TRUE","","46904","713.8","42091","Montgomery","{""42091"": ""99.89"", ""42011"": ""0.11""}","Montgomery|Berks","42091|42011","FALSE","FALSE","America/New_York"
-"19465","40.19855","-75.67292","Pottstown","PA","Pennsylvania","TRUE","","17473","188.4","42029","Chester","{""42029"": ""100""}","Chester","42029","FALSE","FALSE","America/New_York"
-"19468","40.20755","-75.53285","Royersford","PA","Pennsylvania","TRUE","","26008","612.7","42091","Montgomery","{""42091"": ""100""}","Montgomery","42091","FALSE","FALSE","America/New_York"
-"19472","40.33695","-75.57379","Sassamansville","PA","Pennsylvania","TRUE","","10","22.9","42091","Montgomery","{""42091"": ""100""}","Montgomery","42091","FALSE","FALSE","America/New_York"
-"19473","40.25899","-75.47484","Schwenksville","PA","Pennsylvania","TRUE","","16426","258.5","42091","Montgomery","{""42091"": ""100""}","Montgomery","42091","FALSE","FALSE","America/New_York"
-"19474","40.22353","-75.40403","Skippack","PA","Pennsylvania","TRUE","","488","969.1","42091","Montgomery","{""42091"": ""100""}","Montgomery","42091","FALSE","FALSE","America/New_York"
-"19475","40.17046","-75.60067","Spring City","PA","Pennsylvania","TRUE","","11260","262.9","42029","Chester","{""42029"": ""100""}","Chester","42029","FALSE","FALSE","America/New_York"
-"19477","40.1836","-75.23319","Spring House","PA","Pennsylvania","TRUE","","128","968.2","42091","Montgomery","{""42091"": ""100""}","Montgomery","42091","FALSE","FALSE","America/New_York"
-"19492","40.28555","-75.49204","Zieglerville","PA","Pennsylvania","TRUE","","339","111.3","42091","Montgomery","{""42091"": ""100""}","Montgomery","42091","FALSE","FALSE","America/New_York"
-"19501","40.24277","-76.05842","Adamstown","PA","Pennsylvania","TRUE","","1239","474.2","42071","Lancaster","{""42071"": ""100""}","Lancaster","42071","FALSE","FALSE","America/New_York"
-"19503","40.40504","-75.57682","Bally","PA","Pennsylvania","TRUE","","1518","392.7","42011","Berks","{""42011"": ""100""}","Berks","42011","FALSE","FALSE","America/New_York"
-"19504","40.40704","-75.58838","Barto","PA","Pennsylvania","TRUE","","4996","85.7","42011","Berks","{""42011"": ""65.07"", ""42091"": ""34.93""}","Berks|Montgomery","42011|42091","FALSE","FALSE","America/New_York"
-"19505","40.38151","-75.62132","Bechtelsville","PA","Pennsylvania","TRUE","","3540","154.5","42011","Berks","{""42011"": ""92.72"", ""42091"": ""7.28""}","Berks|Montgomery","42011|42091","FALSE","FALSE","America/New_York"
-"19506","40.45959","-76.12575","Bernville","PA","Pennsylvania","TRUE","","7466","42.4","42011","Berks","{""42011"": ""100""}","Berks","42011","FALSE","FALSE","America/New_York"
-"19507","40.49175","-76.28584","Bethel","PA","Pennsylvania","TRUE","","3211","32.9","42011","Berks","{""42011"": ""100""}","Berks","42011","FALSE","FALSE","America/New_York"
-"19508","40.26378","-75.8416","Birdsboro","PA","Pennsylvania","TRUE","","15796","160.4","42011","Berks","{""42011"": ""100""}","Berks","42011","FALSE","FALSE","America/New_York"
-"19510","40.44782","-75.88259","Blandon","PA","Pennsylvania","TRUE","","8710","601.6","42011","Berks","{""42011"": ""100""}","Berks","42011","FALSE","FALSE","America/New_York"
-"19511","40.48469","-75.74379","Bowers","PA","Pennsylvania","TRUE","","137","168.6","42011","Berks","{""42011"": ""100""}","Berks","42011","FALSE","FALSE","America/New_York"
-"19512","40.34849","-75.67943","Boyertown","PA","Pennsylvania","TRUE","","17048","152.0","42011","Berks","{""42011"": ""91.93"", ""42091"": ""8.07""}","Berks|Montgomery","42011|42091","FALSE","FALSE","America/New_York"
-"19518","40.26888","-75.75305","Douglassville","PA","Pennsylvania","TRUE","","15566","166.3","42011","Berks","{""42011"": ""100""}","Berks","42011","FALSE","FALSE","America/New_York"
-"19519","40.32031","-75.73344","Earlville","PA","Pennsylvania","TRUE","","134","427.9","42011","Berks","{""42011"": ""100""}","Berks","42011","FALSE","FALSE","America/New_York"
-"19520","40.16253","-75.79711","Elverson","PA","Pennsylvania","TRUE","","5716","59.1","42029","Chester","{""42029"": ""81.98"", ""42011"": ""18.02""}","Chester|Berks","42029|42011","FALSE","FALSE","America/New_York"
-"19522","40.44729","-75.81851","Fleetwood","PA","Pennsylvania","TRUE","","14034","120.5","42011","Berks","{""42011"": ""100""}","Berks","42011","FALSE","FALSE","America/New_York"
-"19523","40.20269","-75.84566","Geigertown","PA","Pennsylvania","TRUE","","390","106.3","42011","Berks","{""42011"": ""100""}","Berks","42011","FALSE","FALSE","America/New_York"
-"19525","40.3076","-75.58676","Gilbertsville","PA","Pennsylvania","TRUE","","16598","379.9","42091","Montgomery","{""42091"": ""100""}","Montgomery","42091","FALSE","FALSE","America/New_York"
-"19526","40.54661","-75.99626","Hamburg","PA","Pennsylvania","TRUE","","11256","75.2","42011","Berks","{""42011"": ""100""}","Berks","42011","FALSE","FALSE","America/New_York"
-"19529","40.63128","-75.8646","Kempton","PA","Pennsylvania","TRUE","","3321","22.1","42011","Berks","{""42011"": ""53.82"", ""42077"": ""46.18""}","Berks|Lehigh","42011|42077","FALSE","FALSE","America/New_York"
-"19530","40.53822","-75.77793","Kutztown","PA","Pennsylvania","TRUE","","16116","111.5","42011","Berks","{""42011"": ""96.04"", ""42077"": ""3.96""}","Berks|Lehigh","42011|42077","FALSE","FALSE","America/New_York"
-"19533","40.42404","-75.98742","Leesport","PA","Pennsylvania","TRUE","","8059","174.0","42011","Berks","{""42011"": ""100""}","Berks","42011","FALSE","FALSE","America/New_York"
-"19534","40.57334","-75.87452","Lenhartsville","PA","Pennsylvania","TRUE","","1979","38.0","42011","Berks","{""42011"": ""100""}","Berks","42011","FALSE","FALSE","America/New_York"
-"19535","40.33994","-75.80406","Limekiln","PA","Pennsylvania","TRUE","","10","83.9","42011","Berks","{""42011"": ""100""}","Berks","42011","FALSE","FALSE","America/New_York"
-"19536","40.48043","-75.75882","Lyon Station","PA","Pennsylvania","TRUE","","459","458.6","42011","Berks","{""42011"": ""100""}","Berks","42011","FALSE","FALSE","America/New_York"
-"19538","40.54701","-75.70038","Maxatawny","PA","Pennsylvania","TRUE","","48","38.5","42011","Berks","{""42011"": ""100""}","Berks","42011","FALSE","FALSE","America/New_York"
-"19539","40.48988","-75.68948","Mertztown","PA","Pennsylvania","TRUE","","4848","84.6","42011","Berks","{""42011"": ""98.32"", ""42077"": ""1.68""}","Berks|Lehigh","42011|42077","FALSE","FALSE","America/New_York"
-"19540","40.23692","-75.96612","Mohnton","PA","Pennsylvania","TRUE","","11270","127.9","42011","Berks","{""42011"": ""92.43"", ""42071"": ""7.57""}","Berks|Lancaster","42011|42071","FALSE","FALSE","America/New_York"
-"19541","40.47989","-76.02544","Mohrsville","PA","Pennsylvania","TRUE","","4366","75.3","42011","Berks","{""42011"": ""100""}","Berks","42011","FALSE","FALSE","America/New_York"
-"19543","40.17118","-75.89241","Morgantown","PA","Pennsylvania","TRUE","","6141","107.1","42011","Berks","{""42011"": ""81.05"", ""42071"": ""14.95"", ""42029"": ""4""}","Berks|Lancaster|Chester","42011|42071|42029","FALSE","FALSE","America/New_York"
-"19544","40.41714","-76.29612","Mount Aetna","PA","Pennsylvania","TRUE","","118","290.3","42011","Berks","{""42011"": ""100""}","Berks","42011","FALSE","FALSE","America/New_York"
-"19545","40.34153","-75.62407","New Berlinville","PA","Pennsylvania","TRUE","","608","527.7","42011","Berks","{""42011"": ""100""}","Berks","42011","FALSE","FALSE","America/New_York"
-"19547","40.38112","-75.76542","Oley","PA","Pennsylvania","TRUE","","4417","59.7","42011","Berks","{""42011"": ""100""}","Berks","42011","FALSE","FALSE","America/New_York"
-"19549","40.58455","-76.02102","Port Clinton","PA","Pennsylvania","TRUE","","313","86.8","42107","Schuylkill","{""42107"": ""100""}","Schuylkill","42107","FALSE","FALSE","America/New_York"
-"19550","40.45574","-76.2507","Rehrersburg","PA","Pennsylvania","TRUE","","549","131.7","42011","Berks","{""42011"": ""100""}","Berks","42011","FALSE","FALSE","America/New_York"
-"19551","40.35953","-76.14055","Robesonia","PA","Pennsylvania","TRUE","","4844","75.1","42011","Berks","{""42011"": ""93.62"", ""42075"": ""5.64"", ""42071"": ""0.74""}","Berks|Lebanon|Lancaster","42011|42075|42071","FALSE","FALSE","America/New_York"
-"19554","40.51284","-76.10386","Shartlesville","PA","Pennsylvania","TRUE","","396","341.4","42011","Berks","{""42011"": ""100""}","Berks","42011","FALSE","FALSE","America/New_York"
-"19555","40.49392","-75.95131","Shoemakersville","PA","Pennsylvania","TRUE","","3554","100.6","42011","Berks","{""42011"": ""100""}","Berks","42011","FALSE","FALSE","America/New_York"
-"19559","40.49444","-76.18254","Strausstown","PA","Pennsylvania","TRUE","","419","573.1","42011","Berks","{""42011"": ""100""}","Berks","42011","FALSE","FALSE","America/New_York"
-"19560","40.40346","-75.89416","Temple","PA","Pennsylvania","TRUE","","7886","374.4","42011","Berks","{""42011"": ""100""}","Berks","42011","FALSE","FALSE","America/New_York"
-"19562","40.50497","-75.70237","Topton","PA","Pennsylvania","TRUE","","2257","857.6","42011","Berks","{""42011"": ""100""}","Berks","42011","FALSE","FALSE","America/New_York"
-"19564","40.52158","-75.87444","Virginville","PA","Pennsylvania","TRUE","","155","290.1","42011","Berks","{""42011"": ""100""}","Berks","42011","FALSE","FALSE","America/New_York"
-"19565","40.34286","-76.08641","Wernersville","PA","Pennsylvania","TRUE","","8801","178.0","42011","Berks","{""42011"": ""100""}","Berks","42011","FALSE","FALSE","America/New_York"
-"19567","40.39342","-76.21164","Womelsdorf","PA","Pennsylvania","TRUE","","5616","96.1","42011","Berks","{""42011"": ""100""}","Berks","42011","FALSE","FALSE","America/New_York"
-"19601","40.35261","-75.94103","Reading","PA","Pennsylvania","TRUE","","33208","3441.6","42011","Berks","{""42011"": ""100""}","Berks","42011","FALSE","FALSE","America/New_York"
-"19602","40.32862","-75.91455","Reading","PA","Pennsylvania","TRUE","","16582","2588.7","42011","Berks","{""42011"": ""100""}","Berks","42011","FALSE","FALSE","America/New_York"
-"19604","40.35756","-75.91062","Reading","PA","Pennsylvania","TRUE","","28346","5004.3","42011","Berks","{""42011"": ""100""}","Berks","42011","FALSE","FALSE","America/New_York"
-"19605","40.39827","-75.94362","Reading","PA","Pennsylvania","TRUE","","19833","457.1","42011","Berks","{""42011"": ""100""}","Berks","42011","FALSE","FALSE","America/New_York"
-"19606","40.33712","-75.85738","Reading","PA","Pennsylvania","TRUE","","35413","496.9","42011","Berks","{""42011"": ""100""}","Berks","42011","FALSE","FALSE","America/New_York"
-"19607","40.29164","-75.94441","Reading","PA","Pennsylvania","TRUE","","23494","809.6","42011","Berks","{""42011"": ""100""}","Berks","42011","FALSE","FALSE","America/New_York"
-"19608","40.31133","-76.03456","Reading","PA","Pennsylvania","TRUE","","22935","344.9","42011","Berks","{""42011"": ""100""}","Berks","42011","FALSE","FALSE","America/New_York"
-"19609","40.32801","-75.9971","Reading","PA","Pennsylvania","TRUE","","10476","1630.6","42011","Berks","{""42011"": ""100""}","Berks","42011","FALSE","FALSE","America/New_York"
-"19610","40.34005","-75.97604","Reading","PA","Pennsylvania","TRUE","","15417","847.1","42011","Berks","{""42011"": ""100""}","Berks","42011","FALSE","FALSE","America/New_York"
-"19611","40.32476","-75.94098","Reading","PA","Pennsylvania","TRUE","","10720","2045.0","42011","Berks","{""42011"": ""100""}","Berks","42011","FALSE","FALSE","America/New_York"
-"19701","39.58435","-75.69939","Bear","DE","Delaware","TRUE","","40173","583.0","10003","New Castle","{""10003"": ""100""}","New Castle","10003","FALSE","FALSE","America/New_York"
-"19702","39.62225","-75.72748","Newark","DE","Delaware","TRUE","","55537","757.2","10003","New Castle","{""10003"": ""100""}","New Castle","10003","FALSE","FALSE","America/New_York"
-"19703","39.80435","-75.45765","Claymont","DE","Delaware","TRUE","","15362","1511.5","10003","New Castle","{""10003"": ""100""}","New Castle","10003","FALSE","FALSE","America/New_York"
-"19706","39.57275","-75.5988","Delaware City","DE","Delaware","TRUE","","1803","188.9","10003","New Castle","{""10003"": ""100""}","New Castle","10003","FALSE","FALSE","America/New_York"
-"19707","39.78587","-75.68083","Hockessin","DE","Delaware","TRUE","","15821","462.7","10003","New Castle","{""10003"": ""100""}","New Castle","10003","FALSE","FALSE","America/New_York"
-"19709","39.48886","-75.68227","Middletown","DE","Delaware","TRUE","","42480","205.9","10003","New Castle","{""10003"": ""100""}","New Castle","10003","FALSE","FALSE","America/New_York"
-"19710","39.79503","-75.58815","Montchanin","DE","Delaware","TRUE","","0","0.0","10003","New Castle","{""10003"": ""100""}","New Castle","10003","FALSE","FALSE","America/New_York"
-"19711","39.7143","-75.73965","Newark","DE","Delaware","TRUE","","52547","740.9","10003","New Castle","{""10003"": ""100""}","New Castle","10003","FALSE","FALSE","America/New_York"
-"19713","39.67079","-75.71218","Newark","DE","Delaware","TRUE","","30260","853.8","10003","New Castle","{""10003"": ""100""}","New Castle","10003","FALSE","FALSE","America/New_York"
-"19716","39.68964","-75.75851","Newark","DE","Delaware","TRUE","","1429","10498.5","10003","New Castle","{""10003"": ""100""}","New Castle","10003","FALSE","FALSE","America/New_York"
-"19717","39.67852","-75.75205","Newark","DE","Delaware","TRUE","","3868","8038.0","10003","New Castle","{""10003"": ""100""}","New Castle","10003","FALSE","FALSE","America/New_York"
-"19720","39.64699","-75.60633","New Castle","DE","Delaware","TRUE","","59664","620.9","10003","New Castle","{""10003"": ""100""}","New Castle","10003","FALSE","FALSE","America/New_York"
-"19730","39.45925","-75.65356","Odessa","DE","Delaware","TRUE","","1100","310.6","10003","New Castle","{""10003"": ""100""}","New Castle","10003","FALSE","FALSE","America/New_York"
-"19731","39.5189","-75.5833","Port Penn","DE","Delaware","TRUE","","322","129.7","10003","New Castle","{""10003"": ""100""}","New Castle","10003","FALSE","FALSE","America/New_York"
-"19732","39.78406","-75.57011","Rockland","DE","Delaware","TRUE","","88","53.7","10003","New Castle","{""10003"": ""100""}","New Castle","10003","FALSE","FALSE","America/New_York"
-"19733","39.55623","-75.65095","Saint Georges","DE","Delaware","TRUE","","89","837.8","10003","New Castle","{""10003"": ""100""}","New Castle","10003","FALSE","FALSE","America/New_York"
-"19734","39.38356","-75.64947","Townsend","DE","Delaware","TRUE","","13115","64.8","10003","New Castle","{""10003"": ""100""}","New Castle","10003","FALSE","FALSE","America/New_York"
-"19735","39.80544","-75.60231","Winterthur","DE","Delaware","TRUE","","9","17.9","10003","New Castle","{""10003"": ""100""}","New Castle","10003","FALSE","FALSE","America/New_York"
-"19736","39.80611","-75.67645","Yorklyn","DE","Delaware","TRUE","","66","192.1","10003","New Castle","{""10003"": ""100""}","New Castle","10003","FALSE","FALSE","America/New_York"
-"19801","39.7286","-75.54354","Wilmington","DE","Delaware","TRUE","","17035","1590.8","10003","New Castle","{""10003"": ""100""}","New Castle","10003","FALSE","FALSE","America/New_York"
-"19802","39.75678","-75.52898","Wilmington","DE","Delaware","TRUE","","25715","3129.8","10003","New Castle","{""10003"": ""100""}","New Castle","10003","FALSE","FALSE","America/New_York"
-"19803","39.79996","-75.54202","Wilmington","DE","Delaware","TRUE","","21867","670.1","10003","New Castle","{""10003"": ""100""}","New Castle","10003","FALSE","FALSE","America/New_York"
-"19804","39.71687","-75.61837","Wilmington","DE","Delaware","TRUE","","17511","904.2","10003","New Castle","{""10003"": ""100""}","New Castle","10003","FALSE","FALSE","America/New_York"
-"19805","39.74475","-75.59269","Wilmington","DE","Delaware","TRUE","","38457","2791.3","10003","New Castle","{""10003"": ""100""}","New Castle","10003","FALSE","FALSE","America/New_York"
-"19806","39.76328","-75.56421","Wilmington","DE","Delaware","TRUE","","9887","1980.2","10003","New Castle","{""10003"": ""100""}","New Castle","10003","FALSE","FALSE","America/New_York"
-"19807","39.79762","-75.60979","Wilmington","DE","Delaware","TRUE","","7515","147.9","10003","New Castle","{""10003"": ""100""}","New Castle","10003","FALSE","FALSE","America/New_York"
-"19808","39.73838","-75.66525","Wilmington","DE","Delaware","TRUE","","38657","1067.4","10003","New Castle","{""10003"": ""100""}","New Castle","10003","FALSE","FALSE","America/New_York"
-"19809","39.7587","-75.50237","Wilmington","DE","Delaware","TRUE","","15139","835.3","10003","New Castle","{""10003"": ""100""}","New Castle","10003","FALSE","FALSE","America/New_York"
-"19810","39.81865","-75.50651","Wilmington","DE","Delaware","TRUE","","25978","1270.3","10003","New Castle","{""10003"": ""100""}","New Castle","10003","FALSE","FALSE","America/New_York"
-"19901","39.17172","-75.47693","Dover","DE","Delaware","TRUE","","37182","180.3","10001","Kent","{""10001"": ""100""}","Kent","10001","FALSE","FALSE","America/New_York"
-"19902","39.12528","-75.48168","Dover Afb","DE","Delaware","TRUE","","300","317.5","10001","Kent","{""10001"": ""100""}","Kent","10001","FALSE","FALSE","America/New_York"
-"19904","39.17023","-75.59493","Dover","DE","Delaware","TRUE","","37467","328.7","10001","Kent","{""10001"": ""100""}","Kent","10001","FALSE","FALSE","America/New_York"
-"19930","38.55095","-75.06487","Bethany Beach","DE","Delaware","TRUE","","2300","157.3","10005","Sussex","{""10005"": ""100""}","Sussex","10005","FALSE","FALSE","America/New_York"
-"19931","38.57399","-75.62294","Bethel","DE","Delaware","TRUE","","309","130.9","10005","Sussex","{""10005"": ""100""}","Sussex","10005","FALSE","FALSE","America/New_York"
-"19933","38.736","-75.60953","Bridgeville","DE","Delaware","TRUE","","10903","66.5","10005","Sussex","{""10005"": ""100""}","Sussex","10005","FALSE","FALSE","America/New_York"
-"19934","39.08335","-75.62911","Camden Wyoming","DE","Delaware","TRUE","","13748","121.1","10001","Kent","{""10001"": ""100""}","Kent","10001","FALSE","FALSE","America/New_York"
-"19936","39.21909","-75.5845","Cheswold","DE","Delaware","TRUE","","319","542.4","10001","Kent","{""10001"": ""100""}","Kent","10001","FALSE","FALSE","America/New_York"
-"19938","39.25719","-75.69923","Clayton","DE","Delaware","TRUE","","8856","70.2","10001","Kent","{""10001"": ""92.47"", ""10003"": ""7.53""}","Kent|New Castle","10001|10003","FALSE","FALSE","America/New_York"
-"19939","38.56479","-75.21064","Dagsboro","DE","Delaware","TRUE","","7399","109.7","10005","Sussex","{""10005"": ""100""}","Sussex","10005","FALSE","FALSE","America/New_York"
-"19940","38.47787","-75.56893","Delmar","DE","Delaware","TRUE","","5575","52.0","10005","Sussex","{""10005"": ""100""}","Sussex","10005","FALSE","FALSE","America/New_York"
-"19941","38.79557","-75.42556","Ellendale","DE","Delaware","TRUE","","3270","37.6","10005","Sussex","{""10005"": ""100""}","Sussex","10005","FALSE","FALSE","America/New_York"
-"19943","39.0058","-75.60881","Felton","DE","Delaware","TRUE","","12887","75.5","10001","Kent","{""10001"": ""100""}","Kent","10001","FALSE","FALSE","America/New_York"
-"19944","38.47578","-75.05559","Fenwick Island","DE","Delaware","TRUE","","697","212.2","10005","Sussex","{""10005"": ""100""}","Sussex","10005","FALSE","FALSE","America/New_York"
-"19945","38.50476","-75.22888","Frankford","DE","Delaware","TRUE","","6771","41.8","10005","Sussex","{""10005"": ""100""}","Sussex","10005","FALSE","FALSE","America/New_York"
-"19946","39.03423","-75.45416","Frederica","DE","Delaware","TRUE","","5294","92.7","10001","Kent","{""10001"": ""100""}","Kent","10001","FALSE","FALSE","America/New_York"
-"19947","38.67239","-75.39668","Georgetown","DE","Delaware","TRUE","","19992","64.5","10005","Sussex","{""10005"": ""100""}","Sussex","10005","FALSE","FALSE","America/New_York"
-"19950","38.82013","-75.59728","Greenwood","DE","Delaware","TRUE","","7453","38.5","10005","Sussex","{""10005"": ""79.05"", ""10001"": ""20.95""}","Sussex|Kent","10005|10001","FALSE","FALSE","America/New_York"
-"19951","38.69117","-75.25454","Harbeson","DE","Delaware","TRUE","","2103","80.3","10005","Sussex","{""10005"": ""100""}","Sussex","10005","FALSE","FALSE","America/New_York"
-"19952","38.91587","-75.62609","Harrington","DE","Delaware","TRUE","","10094","44.3","10001","Kent","{""10001"": ""99.07"", ""10005"": ""0.93""}","Kent|Sussex","10001|10005","FALSE","FALSE","America/New_York"
-"19953","39.15217","-75.69809","Hartly","DE","Delaware","TRUE","","4545","59.9","10001","Kent","{""10001"": ""100""}","Kent","10001","FALSE","FALSE","America/New_York"
-"19954","38.89744","-75.52036","Houston","DE","Delaware","TRUE","","1523","68.1","10001","Kent","{""10001"": ""100""}","Kent","10001","FALSE","FALSE","America/New_York"
-"19955","39.22599","-75.66854","Kenton","DE","Delaware","TRUE","","53","353.9","10001","Kent","{""10001"": ""100""}","Kent","10001","FALSE","FALSE","America/New_York"
-"19956","38.54787","-75.54079","Laurel","DE","Delaware","TRUE","","15117","57.7","10005","Sussex","{""10005"": ""100""}","Sussex","10005","FALSE","FALSE","America/New_York"
-"19958","38.72894","-75.16498","Lewes","DE","Delaware","TRUE","","26235","206.5","10005","Sussex","{""10005"": ""100""}","Sussex","10005","FALSE","FALSE","America/New_York"
-"19960","38.84899","-75.41363","Lincoln","DE","Delaware","TRUE","","6505","85.0","10005","Sussex","{""10005"": ""100""}","Sussex","10005","FALSE","FALSE","America/New_York"
-"19962","39.07016","-75.49745","Magnolia","DE","Delaware","TRUE","","11710","312.8","10001","Kent","{""10001"": ""100""}","Kent","10001","FALSE","FALSE","America/New_York"
-"19963","38.9361","-75.38158","Milford","DE","Delaware","TRUE","","20743","75.1","10005","Sussex","{""10005"": ""59.13"", ""10001"": ""40.87""}","Sussex|Kent","10005|10001","FALSE","FALSE","America/New_York"
-"19964","39.09067","-75.72329","Marydel","DE","Delaware","TRUE","","1136","46.2","10001","Kent","{""10001"": ""100""}","Kent","10001","FALSE","FALSE","America/New_York"
-"19966","38.58114","-75.28158","Millsboro","DE","Delaware","TRUE","","29324","130.7","10005","Sussex","{""10005"": ""100""}","Sussex","10005","FALSE","FALSE","America/New_York"
-"19967","38.53871","-75.12258","Millville","DE","Delaware","TRUE","","1246","331.0","10005","Sussex","{""10005"": ""100""}","Sussex","10005","FALSE","FALSE","America/New_York"
-"19968","38.77759","-75.28649","Milton","DE","Delaware","TRUE","","11659","71.8","10005","Sussex","{""10005"": ""100""}","Sussex","10005","FALSE","FALSE","America/New_York"
-"19970","38.56188","-75.09661","Ocean View","DE","Delaware","TRUE","","8505","339.7","10005","Sussex","{""10005"": ""100""}","Sussex","10005","FALSE","FALSE","America/New_York"
-"19971","38.68808","-75.10114","Rehoboth Beach","DE","Delaware","TRUE","","13739","320.5","10005","Sussex","{""10005"": ""100""}","Sussex","10005","FALSE","FALSE","America/New_York"
-"19973","38.63927","-75.61578","Seaford","DE","Delaware","TRUE","","24745","121.5","10005","Sussex","{""10005"": ""100""}","Sussex","10005","FALSE","FALSE","America/New_York"
-"19975","38.47014","-75.17488","Selbyville","DE","Delaware","TRUE","","9661","137.1","10005","Sussex","{""10005"": ""100""}","Sussex","10005","FALSE","FALSE","America/New_York"
-"19977","39.29628","-75.55079","Smyrna","DE","Delaware","TRUE","","25670","118.9","10001","Kent","{""10001"": ""81.06"", ""10003"": ""18.94""}","Kent|New Castle","10001|10003","FALSE","FALSE","America/New_York"
-"19979","39.04875","-75.57251","Viola","DE","Delaware","TRUE","","719","136.8","10001","Kent","{""10001"": ""100""}","Kent","10001","FALSE","FALSE","America/New_York"
-"20001","38.91085","-77.0179","Washington","DC","District of Columbia","TRUE","","47748","8442.3","11001","District of Columbia","{""11001"": ""100""}","District of Columbia","11001","FALSE","FALSE","America/New_York"
-"20002","38.90511","-76.98437","Washington","DC","District of Columbia","TRUE","","67750","4985.3","11001","District of Columbia","{""11001"": ""100""}","District of Columbia","11001","FALSE","FALSE","America/New_York"
-"20003","38.88125","-76.99056","Washington","DC","District of Columbia","TRUE","","32675","5624.0","11001","District of Columbia","{""11001"": ""100""}","District of Columbia","11001","FALSE","FALSE","America/New_York"
-"20004","38.89485","-77.02861","Washington","DC","District of Columbia","TRUE","","1923","2134.2","11001","District of Columbia","{""11001"": ""100""}","District of Columbia","11001","FALSE","FALSE","America/New_York"
-"20005","38.90453","-77.03171","Washington","DC","District of Columbia","TRUE","","12347","11187.4","11001","District of Columbia","{""11001"": ""100""}","District of Columbia","11001","FALSE","FALSE","America/New_York"
-"20006","38.89856","-77.04129","Washington","DC","District of Columbia","TRUE","","2774","3154.1","11001","District of Columbia","{""11001"": ""100""}","District of Columbia","11001","FALSE","FALSE","America/New_York"
-"20007","38.91418","-77.07866","Washington","DC","District of Columbia","TRUE","","27201","3498.5","11001","District of Columbia","{""11001"": ""100""}","District of Columbia","11001","FALSE","FALSE","America/New_York"
-"20008","38.93595","-77.05931","Washington","DC","District of Columbia","TRUE","","29292","3720.9","11001","District of Columbia","{""11001"": ""100""}","District of Columbia","11001","FALSE","FALSE","America/New_York"
-"20009","38.91996","-77.03752","Washington","DC","District of Columbia","TRUE","","52338","15373.8","11001","District of Columbia","{""11001"": ""100""}","District of Columbia","11001","FALSE","FALSE","America/New_York"
-"20010","38.93238","-77.02995","Washington","DC","District of Columbia","TRUE","","34223","12207.4","11001","District of Columbia","{""11001"": ""100""}","District of Columbia","11001","FALSE","FALSE","America/New_York"
-"20011","38.95241","-77.02278","Washington","DC","District of Columbia","TRUE","","69710","5524.1","11001","District of Columbia","{""11001"": ""100""}","District of Columbia","11001","FALSE","FALSE","America/New_York"
-"20012","38.97704","-77.03195","Washington","DC","District of Columbia","TRUE","","17576","2997.7","11001","District of Columbia","{""11001"": ""100""}","District of Columbia","11001","FALSE","FALSE","America/New_York"
-"20015","38.9666","-77.05848","Washington","DC","District of Columbia","TRUE","","16202","1814.0","11001","District of Columbia","{""11001"": ""100""}","District of Columbia","11001","FALSE","FALSE","America/New_York"
-"20016","38.93815","-77.09147","Washington","DC","District of Columbia","TRUE","","33518","2916.1","11001","District of Columbia","{""11001"": ""100""}","District of Columbia","11001","FALSE","FALSE","America/New_York"
-"20017","38.93845","-76.99318","Washington","DC","District of Columbia","TRUE","","20889","3642.0","11001","District of Columbia","{""11001"": ""100""}","District of Columbia","11001","FALSE","FALSE","America/New_York"
-"20018","38.92612","-76.97273","Washington","DC","District of Columbia","TRUE","","20641","2637.2","11001","District of Columbia","{""11001"": ""100""}","District of Columbia","11001","FALSE","FALSE","America/New_York"
-"20019","38.8918","-76.9427","Washington","DC","District of Columbia","TRUE","","63829","3936.4","11001","District of Columbia","{""11001"": ""100""}","District of Columbia","11001","FALSE","FALSE","America/New_York"
-"20020","38.86159","-76.9753","Washington","DC","District of Columbia","TRUE","","56897","4760.7","11001","District of Columbia","{""11001"": ""100""}","District of Columbia","11001","FALSE","FALSE","America/New_York"
-"20024","38.87826","-77.02758","Washington","DC","District of Columbia","TRUE","","14530","2145.2","11001","District of Columbia","{""11001"": ""100""}","District of Columbia","11001","FALSE","FALSE","America/New_York"
-"20032","38.83437","-77.00674","Washington","DC","District of Columbia","TRUE","","42800","3148.5","11001","District of Columbia","{""11001"": ""100""}","District of Columbia","11001","FALSE","FALSE","America/New_York"
-"20036","38.90696","-77.04166","Washington","DC","District of Columbia","TRUE","","5455","6326.7","11001","District of Columbia","{""11001"": ""100""}","District of Columbia","11001","FALSE","FALSE","America/New_York"
-"20037","38.89797","-77.05609","Washington","DC","District of Columbia","TRUE","","15179","9122.6","11001","District of Columbia","{""11001"": ""100""}","District of Columbia","11001","FALSE","FALSE","America/New_York"
-"20045","38.89673","-77.0308","Washington","DC","District of Columbia","TRUE","","0","0.0","11001","District of Columbia","{""11001"": ""0""}","District of Columbia","11001","FALSE","FALSE","America/New_York"
-"20052","38.90013","-77.04698","Washington","DC","District of Columbia","TRUE","","126","17842.0","11001","District of Columbia","{""11001"": ""100""}","District of Columbia","11001","FALSE","FALSE","America/New_York"
-"20053","38.88419","-77.011","Washington","DC","District of Columbia","TRUE","","0","0.0","11001","District of Columbia","{""11001"": ""0""}","District of Columbia","11001","FALSE","FALSE","America/New_York"
-"20057","38.90917","-77.0756","Washington","DC","District of Columbia","TRUE","","3900","8858.9","11001","District of Columbia","{""11001"": ""100""}","District of Columbia","11001","FALSE","FALSE","America/New_York"
-"20064","38.93636","-76.99921","Washington","DC","District of Columbia","TRUE","","2175","4327.2","11001","District of Columbia","{""11001"": ""100""}","District of Columbia","11001","FALSE","FALSE","America/New_York"
-"20105","38.96273","-77.61002","Aldie","VA","Virginia","TRUE","","25168","261.7","51107","Loudoun","{""51107"": ""100""}","Loudoun","51107","FALSE","FALSE","America/New_York"
-"20106","38.68699","-78.01175","Amissville","VA","Virginia","TRUE","","5087","32.6","51047","Culpeper","{""51047"": ""61.42"", ""51157"": ""34.89"", ""51061"": ""3.7""}","Culpeper|Rappahannock|Fauquier","51047|51157|51061","FALSE","FALSE","America/New_York"
-"20109","38.79282","-77.52658","Manassas","VA","Virginia","TRUE","","43093","817.5","51153","Prince William","{""51153"": ""99.72"", ""51683"": ""0.28""}","Prince William|Manassas","51153|51683","FALSE","FALSE","America/New_York"
-"20110","38.74711","-77.48591","Manassas","VA","Virginia","TRUE","","47574","1454.2","51683","Manassas","{""51683"": ""85.96"", ""51153"": ""14.04""}","Manassas|Prince William","51683|51153","FALSE","FALSE","America/New_York"
-"20111","38.74928","-77.43012","Manassas","VA","Virginia","TRUE","","36375","865.4","51153","Prince William","{""51153"": ""53.34"", ""51685"": ""46.66""}","Prince William|Manassas Park","51153|51685","FALSE","FALSE","America/New_York"
-"20112","38.66651","-77.42484","Manassas","VA","Virginia","TRUE","","26648","263.2","51153","Prince William","{""51153"": ""100""}","Prince William","51153","FALSE","FALSE","America/New_York"
-"20115","38.82155","-77.9001","Marshall","VA","Virginia","TRUE","","7142","29.0","51061","Fauquier","{""51061"": ""100""}","Fauquier","51061","FALSE","FALSE","America/New_York"
-"20117","38.99204","-77.74336","Middleburg","VA","Virginia","TRUE","","2295","19.8","51107","Loudoun","{""51107"": ""93.72"", ""51061"": ""6.28""}","Loudoun|Fauquier","51107|51061","FALSE","FALSE","America/New_York"
-"20118","38.9678","-77.73746","Middleburg","VA","Virginia","TRUE","","7","262.4","51107","Loudoun","{""51107"": ""100""}","Loudoun","51107","FALSE","FALSE","America/New_York"
-"20119","38.61839","-77.62492","Catlett","VA","Virginia","TRUE","","3850","23.2","51061","Fauquier","{""51061"": ""100""}","Fauquier","51061","FALSE","FALSE","America/New_York"
-"20120","38.85433","-77.47715","Centreville","VA","Virginia","TRUE","","41312","928.0","51059","Fairfax","{""51059"": ""99.96"", ""51107"": ""0.04""}","Fairfax|Loudoun","51059|51107","FALSE","FALSE","America/New_York"
-"20121","38.81767","-77.46029","Centreville","VA","Virginia","TRUE","","29426","1311.9","51059","Fairfax","{""51059"": ""100""}","Fairfax","51059","FALSE","FALSE","America/New_York"
-"20124","38.7815","-77.39162","Clifton","VA","Virginia","TRUE","","15114","274.4","51059","Fairfax","{""51059"": ""100""}","Fairfax","51059","FALSE","FALSE","America/New_York"
-"20129","39.16223","-77.6018","Paeonian Springs","VA","Virginia","TRUE","","522","62.8","51107","Loudoun","{""51107"": ""100""}","Loudoun","51107","FALSE","FALSE","America/New_York"
-"20130","39.02747","-77.9491","Paris","VA","Virginia","TRUE","","236","11.0","51043","Clarke","{""51043"": ""77.58"", ""51061"": ""22.42""}","Clarke|Fauquier","51043|51061","FALSE","FALSE","America/New_York"
-"20132","39.16773","-77.72706","Purcellville","VA","Virginia","TRUE","","18053","84.1","51107","Loudoun","{""51107"": ""100""}","Loudoun","51107","FALSE","FALSE","America/New_York"
-"20135","39.09525","-77.87125","Bluemont","VA","Virginia","TRUE","","3187","27.6","51043","Clarke","{""51043"": ""63.02"", ""51107"": ""32.04"", ""54037"": ""4.94""}","Clarke|Loudoun|Jefferson","51043|51107|54037","FALSE","FALSE","America/New_York"
-"20136","38.73801","-77.55371","Bristow","VA","Virginia","TRUE","","29875","787.3","51153","Prince William","{""51153"": ""100""}","Prince William","51153","FALSE","FALSE","America/New_York"
-"20137","38.81012","-77.72103","Broad Run","VA","Virginia","TRUE","","1527","34.3","51061","Fauquier","{""51061"": ""67.81"", ""51153"": ""32.19""}","Fauquier|Prince William","51061|51153","FALSE","FALSE","America/New_York"
-"20139","38.65629","-77.69719","Casanova","VA","Virginia","TRUE","","245","28.9","51061","Fauquier","{""51061"": ""100""}","Fauquier","51061","FALSE","FALSE","America/New_York"
-"20141","39.11358","-77.78901","Round Hill","VA","Virginia","TRUE","","7853","111.3","51107","Loudoun","{""51107"": ""100""}","Loudoun","51107","FALSE","FALSE","America/New_York"
-"20143","38.86001","-77.56762","Catharpin","VA","Virginia","TRUE","","827","41.5","51153","Prince William","{""51153"": ""100""}","Prince William","51153","FALSE","FALSE","America/New_York"
-"20144","38.91354","-77.94242","Delaplane","VA","Virginia","TRUE","","1086","10.4","51061","Fauquier","{""51061"": ""100""}","Fauquier","51061","FALSE","FALSE","America/New_York"
-"20147","39.04152","-77.47954","Ashburn","VA","Virginia","TRUE","","63878","1240.0","51107","Loudoun","{""51107"": ""100""}","Loudoun","51107","FALSE","FALSE","America/New_York"
-"20148","38.99608","-77.52734","Ashburn","VA","Virginia","TRUE","","51243","1215.9","51107","Loudoun","{""51107"": ""100""}","Loudoun","51107","FALSE","FALSE","America/New_York"
-"20151","38.89574","-77.44484","Chantilly","VA","Virginia","TRUE","","23068","575.0","51059","Fairfax","{""51059"": ""100""}","Fairfax","51059","FALSE","FALSE","America/New_York"
-"20152","38.91757","-77.50414","Chantilly","VA","Virginia","TRUE","","35302","546.9","51107","Loudoun","{""51107"": ""100""}","Loudoun","51107","FALSE","FALSE","America/New_York"
-"20155","38.81015","-77.61837","Gainesville","VA","Virginia","TRUE","","36642","490.2","51153","Prince William","{""51153"": ""100""}","Prince William","51153","FALSE","FALSE","America/New_York"
-"20158","39.13859","-77.65443","Hamilton","VA","Virginia","TRUE","","4610","122.3","51107","Loudoun","{""51107"": ""100""}","Loudoun","51107","FALSE","FALSE","America/New_York"
-"20164","39.0127","-77.39565","Sterling","VA","Virginia","TRUE","","41684","2171.4","51107","Loudoun","{""51107"": ""100""}","Loudoun","51107","FALSE","FALSE","America/New_York"
-"20165","39.05056","-77.3887","Sterling","VA","Virginia","TRUE","","31912","1254.9","51107","Loudoun","{""51107"": ""100""}","Loudoun","51107","FALSE","FALSE","America/New_York"
-"20166","38.9858","-77.45517","Sterling","VA","Virginia","TRUE","","12236","270.6","51107","Loudoun","{""51107"": ""100""}","Loudoun","51107","FALSE","FALSE","America/New_York"
-"20169","38.87344","-77.6454","Haymarket","VA","Virginia","TRUE","","25619","307.4","51153","Prince William","{""51153"": ""100""}","Prince William","51153","FALSE","FALSE","America/New_York"
-"20170","38.98079","-77.38038","Herndon","VA","Virginia","TRUE","","42690","1879.4","51059","Fairfax","{""51059"": ""100""}","Fairfax","51059","FALSE","FALSE","America/New_York"
-"20171","38.92363","-77.39821","Herndon","VA","Virginia","TRUE","","51093","1629.3","51059","Fairfax","{""51059"": ""100""}","Fairfax","51059","FALSE","FALSE","America/New_York"
-"20175","39.05928","-77.60071","Leesburg","VA","Virginia","TRUE","","34857","215.5","51107","Loudoun","{""51107"": ""100""}","Loudoun","51107","FALSE","FALSE","America/New_York"
-"20176","39.1821","-77.53593","Leesburg","VA","Virginia","TRUE","","52862","358.2","51107","Loudoun","{""51107"": ""100""}","Loudoun","51107","FALSE","FALSE","America/New_York"
-"20180","39.26836","-77.63875","Lovettsville","VA","Virginia","TRUE","","7705","69.6","51107","Loudoun","{""51107"": ""100""}","Loudoun","51107","FALSE","FALSE","America/New_York"
-"20181","38.6869","-77.57076","Nokesville","VA","Virginia","TRUE","","9350","61.3","51153","Prince William","{""51153"": ""90.16"", ""51061"": ""9.84""}","Prince William|Fauquier","51153|51061","FALSE","FALSE","America/New_York"
-"20184","39.00275","-77.88265","Upperville","VA","Virginia","TRUE","","496","4.8","51061","Fauquier","{""51061"": ""55.3"", ""51107"": ""44.7""}","Fauquier|Loudoun","51061|51107","FALSE","FALSE","America/New_York"
-"20186","38.70158","-77.84441","Warrenton","VA","Virginia","TRUE","","14839","88.9","51061","Fauquier","{""51061"": ""99.9"", ""51047"": ""0.1""}","Fauquier|Culpeper","51061|51047","FALSE","FALSE","America/New_York"
-"20187","38.72258","-77.74269","Warrenton","VA","Virginia","TRUE","","18738","148.9","51061","Fauquier","{""51061"": ""100""}","Fauquier","51061","FALSE","FALSE","America/New_York"
-"20190","38.95978","-77.33688","Reston","VA","Virginia","TRUE","","19950","1709.3","51059","Fairfax","{""51059"": ""100""}","Fairfax","51059","FALSE","FALSE","America/New_York"
-"20191","38.93382","-77.35084","Reston","VA","Virginia","TRUE","","30181","1416.0","51059","Fairfax","{""51059"": ""100""}","Fairfax","51059","FALSE","FALSE","America/New_York"
-"20194","38.98034","-77.34299","Reston","VA","Virginia","TRUE","","12467","1527.1","51059","Fairfax","{""51059"": ""100""}","Fairfax","51059","FALSE","FALSE","America/New_York"
-"20197","39.19499","-77.62629","Waterford","VA","Virginia","TRUE","","2467","70.9","51107","Loudoun","{""51107"": ""100""}","Loudoun","51107","FALSE","FALSE","America/New_York"
-"20198","38.88034","-77.75758","The Plains","VA","Virginia","TRUE","","1905","10.1","51061","Fauquier","{""51061"": ""100""}","Fauquier","51061","FALSE","FALSE","America/New_York"
-"20202","38.88707","-77.02101","Washington","DC","District of Columbia","TRUE","","0","0.0","11001","District of Columbia","{""11001"": ""0""}","District of Columbia","11001","FALSE","FALSE","America/New_York"
-"20204","38.88556","-77.01443","Washington","DC","District of Columbia","TRUE","","0","0.0","11001","District of Columbia","{""11001"": ""0""}","District of Columbia","11001","FALSE","FALSE","America/New_York"
-"20228","38.88631","-77.03016","Washington","DC","District of Columbia","TRUE","","0","0.0","11001","District of Columbia","{""11001"": ""0""}","District of Columbia","11001","FALSE","FALSE","America/New_York"
-"20230","38.89379","-77.0328","Washington","DC","District of Columbia","TRUE","","0","0.0","11001","District of Columbia","{""11001"": ""0""}","District of Columbia","11001","FALSE","FALSE","America/New_York"
-"20240","38.89449","-77.04261","Washington","DC","District of Columbia","TRUE","","0","0.0","11001","District of Columbia","{""11001"": ""0""}","District of Columbia","11001","FALSE","FALSE","America/New_York"
-"20245","38.89337","-77.0446","Washington","DC","District of Columbia","TRUE","","0","0.0","11001","District of Columbia","{""11001"": ""0""}","District of Columbia","11001","FALSE","FALSE","America/New_York"
-"20260","38.88368","-77.02504","Washington","DC","District of Columbia","TRUE","","0","0.0","11001","District of Columbia","{""11001"": ""0""}","District of Columbia","11001","FALSE","FALSE","America/New_York"
-"20317","38.93633","-77.01235","Washington","DC","District of Columbia","TRUE","","416","351.1","11001","District of Columbia","{""11001"": ""100""}","District of Columbia","11001","FALSE","FALSE","America/New_York"
-"20319","38.86554","-77.01784","Washington","DC","District of Columbia","TRUE","","36","100.2","11001","District of Columbia","{""11001"": ""100""}","District of Columbia","11001","FALSE","FALSE","America/New_York"
-"20373","38.8584","-77.00804","Naval Anacost Annex","DC","District of Columbia","TRUE","","141","149.9","11001","District of Columbia","{""11001"": ""100""}","District of Columbia","11001","FALSE","FALSE","America/New_York"
-"20390","38.87901","-76.99375","Washington","DC","District of Columbia","TRUE","","326","29812.5","11001","District of Columbia","{""11001"": ""100""}","District of Columbia","11001","FALSE","FALSE","America/New_York"
-"20405","38.89638","-77.04259","Washington","DC","District of Columbia","TRUE","","0","0.0","11001","District of Columbia","{""11001"": ""0""}","District of Columbia","11001","FALSE","FALSE","America/New_York"
-"20418","38.8928","-77.04776","Washington","DC","District of Columbia","TRUE","","0","0.0","11001","District of Columbia","{""11001"": ""0""}","District of Columbia","11001","FALSE","FALSE","America/New_York"
-"20427","38.90207","-77.04755","Washington","DC","District of Columbia","TRUE","","0","0.0","11001","District of Columbia","{""11001"": ""0""}","District of Columbia","11001","FALSE","FALSE","America/New_York"
-"20506","38.89703","-77.03866","Washington","DC","District of Columbia","TRUE","","0","0.0","11001","District of Columbia","{""11001"": ""0""}","District of Columbia","11001","FALSE","FALSE","America/New_York"
-"20510","38.89278","-77.00689","Washington","DC","District of Columbia","TRUE","","0","0.0","11001","District of Columbia","{""11001"": ""0""}","District of Columbia","11001","FALSE","FALSE","America/New_York"
-"20520","38.8947","-77.04848","Washington","DC","District of Columbia","TRUE","","0","0.0","11001","District of Columbia","{""11001"": ""0""}","District of Columbia","11001","FALSE","FALSE","America/New_York"
-"20535","38.89447","-77.02485","Washington","DC","District of Columbia","TRUE","","0","0.0","11001","District of Columbia","{""11001"": ""100""}","District of Columbia","11001","FALSE","FALSE","America/New_York"
-"20540","38.88793","-77.00471","Washington","DC","District of Columbia","TRUE","","0","0.0","11001","District of Columbia","{""11001"": ""0""}","District of Columbia","11001","FALSE","FALSE","America/New_York"
-"20551","38.8928","-77.0458","Washington","DC","District of Columbia","TRUE","","0","0.0","11001","District of Columbia","{""11001"": ""0""}","District of Columbia","11001","FALSE","FALSE","America/New_York"
-"20553","38.88695","-77.02297","Washington","DC","District of Columbia","TRUE","","0","0.0","11001","District of Columbia","{""11001"": ""0""}","District of Columbia","11001","FALSE","FALSE","America/New_York"
-"20560","38.88824","-77.02596","Washington","DC","District of Columbia","TRUE","","0","0.0","11001","District of Columbia","{""11001"": ""0""}","District of Columbia","11001","FALSE","FALSE","America/New_York"
-"20565","38.89062","-77.01939","Washington","DC","District of Columbia","TRUE","","0","0.0","11001","District of Columbia","{""11001"": ""0""}","District of Columbia","11001","FALSE","FALSE","America/New_York"
-"20566","38.89564","-77.05501","Washington","DC","District of Columbia","TRUE","","0","0.0","11001","District of Columbia","{""11001"": ""0""}","District of Columbia","11001","FALSE","FALSE","America/New_York"
-"20593","38.86671","-77.01021","Washington","DC","District of Columbia","TRUE","","0","0.0","11001","District of Columbia","{""11001"": ""0""}","District of Columbia","11001","FALSE","FALSE","America/New_York"
-"20601","38.6137","-76.85088","Waldorf","MD","Maryland","TRUE","","25517","220.6","24017","Charles","{""24017"": ""98.8"", ""24033"": ""1.2""}","Charles|Prince George's","24017|24033","FALSE","FALSE","America/New_York"
-"20602","38.58396","-76.89426","Waldorf","MD","Maryland","TRUE","","26550","739.1","24017","Charles","{""24017"": ""100""}","Charles","24017","FALSE","FALSE","America/New_York"
-"20603","38.62939","-76.97697","Waldorf","MD","Maryland","TRUE","","31975","722.7","24017","Charles","{""24017"": ""100""}","Charles","24017","FALSE","FALSE","America/New_York"
-"20606","38.25952","-76.73699","Abell","MD","Maryland","TRUE","","374","49.5","24037","St. Mary's","{""24037"": ""100""}","St. Mary's","24037","FALSE","FALSE","America/New_York"
-"20607","38.67227","-77.02018","Accokeek","MD","Maryland","TRUE","","10843","199.4","24033","Prince George's","{""24033"": ""99.56"", ""24017"": ""0.44""}","Prince George's|Charles","24033|24017","FALSE","FALSE","America/New_York"
-"20608","38.58625","-76.70692","Aquasco","MD","Maryland","TRUE","","860","18.9","24033","Prince George's","{""24033"": ""100""}","Prince George's","24033","FALSE","FALSE","America/New_York"
-"20609","38.27423","-76.75504","Avenue","MD","Maryland","TRUE","","1151","44.6","24037","St. Mary's","{""24037"": ""100""}","St. Mary's","24037","FALSE","FALSE","America/New_York"
-"20611","38.46079","-76.98456","Bel Alton","MD","Maryland","TRUE","","1634","89.6","24017","Charles","{""24017"": ""100""}","Charles","24017","FALSE","FALSE","America/New_York"
-"20612","38.50707","-76.67788","Benedict","MD","Maryland","TRUE","","203","335.7","24017","Charles","{""24017"": ""100""}","Charles","24017","FALSE","FALSE","America/New_York"
-"20613","38.67247","-76.8088","Brandywine","MD","Maryland","TRUE","","14020","71.6","24033","Prince George's","{""24033"": ""86.7"", ""24017"": ""13.3""}","Prince George's|Charles","24033|24017","FALSE","FALSE","America/New_York"
-"20615","38.42013","-76.54786","Broomes Island","MD","Maryland","TRUE","","421","223.6","24009","Calvert","{""24009"": ""100""}","Calvert","24009","FALSE","FALSE","America/New_York"
-"20616","38.65412","-77.08845","Bryans Road","MD","Maryland","TRUE","","6389","251.3","24017","Charles","{""24017"": ""100""}","Charles","24017","FALSE","FALSE","America/New_York"
-"20617","38.54127","-76.85245","Bryantown","MD","Maryland","TRUE","","832","49.1","24017","Charles","{""24017"": ""100""}","Charles","24017","FALSE","FALSE","America/New_York"
-"20618","38.28161","-76.79027","Bushwood","MD","Maryland","TRUE","","406","28.0","24037","St. Mary's","{""24037"": ""100""}","St. Mary's","24037","FALSE","FALSE","America/New_York"
-"20619","38.29102","-76.52683","California","MD","Maryland","TRUE","","15052","370.8","24037","St. Mary's","{""24037"": ""100""}","St. Mary's","24037","FALSE","FALSE","America/New_York"
-"20620","38.23157","-76.52327","Callaway","MD","Maryland","TRUE","","1369","136.5","24037","St. Mary's","{""24037"": ""100""}","St. Mary's","24037","FALSE","FALSE","America/New_York"
-"20621","38.33131","-76.79647","Chaptico","MD","Maryland","TRUE","","960","26.6","24037","St. Mary's","{""24037"": ""100""}","St. Mary's","24037","FALSE","FALSE","America/New_York"
-"20622","38.45397","-76.84481","Charlotte Hall","MD","Maryland","TRUE","","6887","71.1","24017","Charles","{""24017"": ""63.88"", ""24037"": ""36.12""}","Charles|St. Mary's","24017|24037","FALSE","FALSE","America/New_York"
-"20623","38.74247","-76.83723","Cheltenham","MD","Maryland","TRUE","","2997","600.9","24033","Prince George's","{""24033"": ""100""}","Prince George's","24033","FALSE","FALSE","America/New_York"
-"20624","38.33643","-76.73785","Clements","MD","Maryland","TRUE","","1409","43.2","24037","St. Mary's","{""24037"": ""100""}","St. Mary's","24037","FALSE","FALSE","America/New_York"
-"20625","38.26234","-76.84842","Cobb Island","MD","Maryland","TRUE","","646","504.8","24017","Charles","{""24017"": ""100""}","Charles","24017","FALSE","FALSE","America/New_York"
-"20626","38.23109","-76.76088","Coltons Point","MD","Maryland","TRUE","","304","96.6","24037","St. Mary's","{""24037"": ""100""}","St. Mary's","24037","FALSE","FALSE","America/New_York"
-"20628","38.14941","-76.35096","Dameron","MD","Maryland","TRUE","","477","27.7","24037","St. Mary's","{""24037"": ""100""}","St. Mary's","24037","FALSE","FALSE","America/New_York"
-"20629","38.3365","-76.45232","Dowell","MD","Maryland","TRUE","","383","342.9","24009","Calvert","{""24009"": ""100""}","Calvert","24009","FALSE","FALSE","America/New_York"
-"20630","38.16257","-76.47243","Drayden","MD","Maryland","TRUE","","301","20.4","24037","St. Mary's","{""24037"": ""100""}","St. Mary's","24037","FALSE","FALSE","America/New_York"
-"20632","38.43207","-76.95195","Faulkner","MD","Maryland","TRUE","","432","22.7","24017","Charles","{""24017"": ""100""}","Charles","24017","FALSE","FALSE","America/New_York"
-"20634","38.24376","-76.4952","Great Mills","MD","Maryland","TRUE","","6478","363.7","24037","St. Mary's","{""24037"": ""100""}","St. Mary's","24037","FALSE","FALSE","America/New_York"
-"20636","38.35215","-76.5703","Hollywood","MD","Maryland","TRUE","","10805","113.3","24037","St. Mary's","{""24037"": ""100""}","St. Mary's","24037","FALSE","FALSE","America/New_York"
-"20637","38.52625","-76.77615","Hughesville","MD","Maryland","TRUE","","5751","71.7","24017","Charles","{""24017"": ""100""}","Charles","24017","FALSE","FALSE","America/New_York"
-"20639","38.60752","-76.60715","Huntingtown","MD","Maryland","TRUE","","15793","145.6","24009","Calvert","{""24009"": ""100""}","Calvert","24009","FALSE","FALSE","America/New_York"
-"20640","38.55696","-77.16199","Indian Head","MD","Maryland","TRUE","","10333","95.7","24017","Charles","{""24017"": ""100""}","Charles","24017","FALSE","FALSE","America/New_York"
-"20645","38.29668","-76.90644","Issue","MD","Maryland","TRUE","","749","131.3","24017","Charles","{""24017"": ""100""}","Charles","24017","FALSE","FALSE","America/New_York"
-"20646","38.5226","-77.00017","La Plata","MD","Maryland","TRUE","","21951","102.7","24017","Charles","{""24017"": ""100""}","Charles","24017","FALSE","FALSE","America/New_York"
-"20650","38.27242","-76.63437","Leonardtown","MD","Maryland","TRUE","","14672","93.5","24037","St. Mary's","{""24037"": ""100""}","St. Mary's","24037","FALSE","FALSE","America/New_York"
-"20653","38.23019","-76.43372","Lexington Park","MD","Maryland","TRUE","","24274","286.8","24037","St. Mary's","{""24037"": ""100""}","St. Mary's","24037","FALSE","FALSE","America/New_York"
-"20657","38.38362","-76.44544","Lusby","MD","Maryland","TRUE","","19226","246.8","24009","Calvert","{""24009"": ""100""}","Calvert","24009","FALSE","FALSE","America/New_York"
-"20658","38.56349","-77.16134","Marbury","MD","Maryland","TRUE","","848","108.8","24017","Charles","{""24017"": ""100""}","Charles","24017","FALSE","FALSE","America/New_York"
-"20659","38.42062","-76.73142","Mechanicsville","MD","Maryland","TRUE","","23312","95.7","24037","St. Mary's","{""24037"": ""98.43"", ""24017"": ""1.57""}","St. Mary's|Charles","24037|24017","FALSE","FALSE","America/New_York"
-"20660","38.37019","-76.7067","Morganza","MD","Maryland","TRUE","","0","0.0","24037","St. Mary's","{""24037"": ""100""}","St. Mary's","24037","FALSE","FALSE","America/New_York"
-"20662","38.43515","-77.20182","Nanjemoy","MD","Maryland","TRUE","","2876","19.4","24017","Charles","{""24017"": ""100""}","Charles","24017","FALSE","FALSE","America/New_York"
-"20664","38.35251","-76.92152","Newburg","MD","Maryland","TRUE","","3462","32.5","24017","Charles","{""24017"": ""100""}","Charles","24017","FALSE","FALSE","America/New_York"
-"20667","38.21768","-76.44286","Park Hall","MD","Maryland","TRUE","","633","121.1","24037","St. Mary's","{""24037"": ""100""}","St. Mary's","24037","FALSE","FALSE","America/New_York"
-"20670","38.28223","-76.42039","Patuxent River","MD","Maryland","TRUE","","1441","59.1","24037","St. Mary's","{""24037"": ""100""}","St. Mary's","24037","FALSE","FALSE","America/New_York"
-"20674","38.13424","-76.50078","Piney Point","MD","Maryland","TRUE","","848","155.4","24037","St. Mary's","{""24037"": ""100""}","St. Mary's","24037","FALSE","FALSE","America/New_York"
-"20675","38.58095","-77.0224","Pomfret","MD","Maryland","TRUE","","2017","129.0","24017","Charles","{""24017"": ""100""}","Charles","24017","FALSE","FALSE","America/New_York"
-"20676","38.48962","-76.54611","Port Republic","MD","Maryland","TRUE","","3848","89.8","24009","Calvert","{""24009"": ""100""}","Calvert","24009","FALSE","FALSE","America/New_York"
-"20677","38.49995","-77.041","Port Tobacco","MD","Maryland","TRUE","","2416","60.7","24017","Charles","{""24017"": ""100""}","Charles","24017","FALSE","FALSE","America/New_York"
-"20678","38.52135","-76.60325","Prince Frederick","MD","Maryland","TRUE","","12261","110.7","24009","Calvert","{""24009"": ""100""}","Calvert","24009","FALSE","FALSE","America/New_York"
-"20680","38.11373","-76.37247","Ridge","MD","Maryland","TRUE","","934","58.4","24037","St. Mary's","{""24037"": ""100""}","St. Mary's","24037","FALSE","FALSE","America/New_York"
-"20684","38.14256","-76.40772","Saint Inigoes","MD","Maryland","TRUE","","1066","45.1","24037","St. Mary's","{""24037"": ""100""}","St. Mary's","24037","FALSE","FALSE","America/New_York"
-"20685","38.43387","-76.53005","Saint Leonard","MD","Maryland","TRUE","","6942","120.4","24009","Calvert","{""24009"": ""100""}","Calvert","24009","FALSE","FALSE","America/New_York"
-"20686","38.17905","-76.43066","Saint Marys City","MD","Maryland","TRUE","","1775","633.4","24037","St. Mary's","{""24037"": ""100""}","St. Mary's","24037","FALSE","FALSE","America/New_York"
-"20687","38.07686","-76.34786","Scotland","MD","Maryland","TRUE","","448","27.9","24037","St. Mary's","{""24037"": ""100""}","St. Mary's","24037","FALSE","FALSE","America/New_York"
-"20688","38.33554","-76.46837","Solomons","MD","Maryland","TRUE","","1749","471.6","24009","Calvert","{""24009"": ""100""}","Calvert","24009","FALSE","FALSE","America/New_York"
-"20689","38.66285","-76.58232","Sunderland","MD","Maryland","TRUE","","2081","103.2","24009","Calvert","{""24009"": ""100""}","Calvert","24009","FALSE","FALSE","America/New_York"
-"20690","38.16183","-76.52846","Tall Timbers","MD","Maryland","TRUE","","905","193.7","24037","St. Mary's","{""24037"": ""100""}","St. Mary's","24037","FALSE","FALSE","America/New_York"
-"20692","38.18457","-76.50071","Valley Lee","MD","Maryland","TRUE","","899","39.9","24037","St. Mary's","{""24037"": ""100""}","St. Mary's","24037","FALSE","FALSE","America/New_York"
-"20693","38.45927","-77.08935","Welcome","MD","Maryland","TRUE","","833","15.9","24017","Charles","{""24017"": ""100""}","Charles","24017","FALSE","FALSE","America/New_York"
-"20695","38.59134","-76.97331","White Plains","MD","Maryland","TRUE","","8089","247.0","24017","Charles","{""24017"": ""100""}","Charles","24017","FALSE","FALSE","America/New_York"
-"20701","39.12627","-76.78423","Annapolis Junction","MD","Maryland","TRUE","","92","26.8","24027","Howard","{""24027"": ""100"", ""24003"": ""0""}","Howard|Anne Arundel","24027|24003","FALSE","FALSE","America/New_York"
-"20705","39.04801","-76.90127","Beltsville","MD","Maryland","TRUE","","27663","672.6","24033","Prince George's","{""24033"": ""99.35"", ""24031"": ""0.65""}","Prince George's|Montgomery","24033|24031","FALSE","FALSE","America/New_York"
-"20706","38.96561","-76.85094","Lanham","MD","Maryland","TRUE","","43670","1630.3","24033","Prince George's","{""24033"": ""100""}","Prince George's","24033","FALSE","FALSE","America/New_York"
-"20707","39.09805","-76.88178","Laurel","MD","Maryland","TRUE","","32798","1136.7","24033","Prince George's","{""24033"": ""99.06"", ""24031"": ""0.94""}","Prince George's|Montgomery","24033|24031","FALSE","FALSE","America/New_York"
-"20708","39.04654","-76.82659","Laurel","MD","Maryland","TRUE","","27843","770.5","24033","Prince George's","{""24033"": ""100""}","Prince George's","24033","FALSE","FALSE","America/New_York"
-"20710","38.94206","-76.92617","Bladensburg","MD","Maryland","TRUE","","9553","3339.7","24033","Prince George's","{""24033"": ""100""}","Prince George's","24033","FALSE","FALSE","America/New_York"
-"20711","38.80509","-76.65199","Lothian","MD","Maryland","TRUE","","7413","84.2","24003","Anne Arundel","{""24003"": ""100""}","Anne Arundel","24003","FALSE","FALSE","America/New_York"
-"20712","38.94318","-76.96522","Mount Rainier","MD","Maryland","TRUE","","9608","5086.5","24033","Prince George's","{""24033"": ""100""}","Prince George's","24033","FALSE","FALSE","America/New_York"
-"20714","38.72222","-76.54613","North Beach","MD","Maryland","TRUE","","4683","775.0","24009","Calvert","{""24009"": ""79.17"", ""24003"": ""20.83""}","Calvert|Anne Arundel","24009|24003","FALSE","FALSE","America/New_York"
-"20715","38.98827","-76.7401","Bowie","MD","Maryland","TRUE","","27556","732.0","24033","Prince George's","{""24033"": ""100""}","Prince George's","24033","FALSE","FALSE","America/New_York"
-"20716","38.92723","-76.71504","Bowie","MD","Maryland","TRUE","","22237","743.7","24033","Prince George's","{""24033"": ""100""}","Prince George's","24033","FALSE","FALSE","America/New_York"
-"20720","38.98227","-76.7827","Bowie","MD","Maryland","TRUE","","22971","794.1","24033","Prince George's","{""24033"": ""100""}","Prince George's","24033","FALSE","FALSE","America/New_York"
-"20721","38.92108","-76.78878","Bowie","MD","Maryland","TRUE","","29730","687.2","24033","Prince George's","{""24033"": ""100""}","Prince George's","24033","FALSE","FALSE","America/New_York"
-"20722","38.93512","-76.94943","Brentwood","MD","Maryland","TRUE","","5728","1502.1","24033","Prince George's","{""24033"": ""100""}","Prince George's","24033","FALSE","FALSE","America/New_York"
-"20723","39.13694","-76.86662","Laurel","MD","Maryland","TRUE","","35411","1040.9","24027","Howard","{""24027"": ""100""}","Howard","24027","FALSE","FALSE","America/New_York"
-"20724","39.1011","-76.80393","Laurel","MD","Maryland","TRUE","","17513","843.6","24003","Anne Arundel","{""24003"": ""100""}","Anne Arundel","24003","FALSE","FALSE","America/New_York"
-"20732","38.65846","-76.54154","Chesapeake Beach","MD","Maryland","TRUE","","9820","372.4","24009","Calvert","{""24009"": ""100""}","Calvert","24009","FALSE","FALSE","America/New_York"
-"20733","38.80516","-76.53302","Churchton","MD","Maryland","TRUE","","2777","327.7","24003","Anne Arundel","{""24003"": ""100""}","Anne Arundel","24003","FALSE","FALSE","America/New_York"
-"20735","38.75018","-76.90582","Clinton","MD","Maryland","TRUE","","38220","568.9","24033","Prince George's","{""24033"": ""100""}","Prince George's","24033","FALSE","FALSE","America/New_York"
-"20736","38.69041","-76.62805","Owings","MD","Maryland","TRUE","","9248","139.8","24009","Calvert","{""24009"": ""99.85"", ""24003"": ""0.15""}","Calvert|Anne Arundel","24009|24003","FALSE","FALSE","America/New_York"
-"20737","38.96508","-76.9136","Riverdale","MD","Maryland","TRUE","","22295","2080.2","24033","Prince George's","{""24033"": ""100""}","Prince George's","24033","FALSE","FALSE","America/New_York"
-"20740","39.00274","-76.93095","College Park","MD","Maryland","TRUE","","31349","1521.1","24033","Prince George's","{""24033"": ""100""}","Prince George's","24033","FALSE","FALSE","America/New_York"
-"20742","38.98958","-76.9456","College Park","MD","Maryland","TRUE","","6726","3510.1","24033","Prince George's","{""24033"": ""100""}","Prince George's","24033","FALSE","FALSE","America/New_York"
-"20743","38.8839","-76.89333","Capitol Heights","MD","Maryland","TRUE","","37888","1504.2","24033","Prince George's","{""24033"": ""100""}","Prince George's","24033","FALSE","FALSE","America/New_York"
-"20744","38.75402","-76.98404","Fort Washington","MD","Maryland","TRUE","","54925","805.3","24033","Prince George's","{""24033"": ""100""}","Prince George's","24033","FALSE","FALSE","America/New_York"
-"20745","38.80649","-76.99426","Oxon Hill","MD","Maryland","TRUE","","27790","1659.6","24033","Prince George's","{""24033"": ""100""}","Prince George's","24033","FALSE","FALSE","America/New_York"
-"20746","38.83678","-76.91808","Suitland","MD","Maryland","TRUE","","27041","1325.9","24033","Prince George's","{""24033"": ""100""}","Prince George's","24033","FALSE","FALSE","America/New_York"
-"20747","38.85441","-76.88383","District Heights","MD","Maryland","TRUE","","40484","2044.6","24033","Prince George's","{""24033"": ""100""}","Prince George's","24033","FALSE","FALSE","America/New_York"
-"20748","38.81687","-76.94058","Temple Hills","MD","Maryland","TRUE","","38904","1653.6","24033","Prince George's","{""24033"": ""100""}","Prince George's","24033","FALSE","FALSE","America/New_York"
-"20751","38.79605","-76.56104","Deale","MD","Maryland","TRUE","","2091","158.3","24003","Anne Arundel","{""24003"": ""100""}","Anne Arundel","24003","FALSE","FALSE","America/New_York"
-"20754","38.73661","-76.65282","Dunkirk","MD","Maryland","TRUE","","7124","163.1","24009","Calvert","{""24009"": ""85.28"", ""24003"": ""14.72""}","Calvert|Anne Arundel","24009|24003","FALSE","FALSE","America/New_York"
-"20755","39.10578","-76.74679","Fort George G Meade","MD","Maryland","TRUE","","10873","504.0","24003","Anne Arundel","{""24003"": ""100""}","Anne Arundel","24003","FALSE","FALSE","America/New_York"
-"20758","38.73334","-76.59306","Friendship","MD","Maryland","TRUE","","451","43.2","24003","Anne Arundel","{""24003"": ""100""}","Anne Arundel","24003","FALSE","FALSE","America/New_York"
-"20759","39.1548","-76.92854","Fulton","MD","Maryland","TRUE","","5311","323.3","24027","Howard","{""24027"": ""100""}","Howard","24027","FALSE","FALSE","America/New_York"
-"20762","38.80731","-76.87482","Andrews Air Force Base","MD","Maryland","TRUE","","3079","201.8","24033","Prince George's","{""24033"": ""100""}","Prince George's","24033","FALSE","FALSE","America/New_York"
-"20763","39.13501","-76.81667","Savage","MD","Maryland","TRUE","","1635","446.4","24027","Howard","{""24027"": ""100""}","Howard","24027","FALSE","FALSE","America/New_York"
-"20764","38.83375","-76.51148","Shady Side","MD","Maryland","TRUE","","3829","371.9","24003","Anne Arundel","{""24003"": ""100""}","Anne Arundel","24003","FALSE","FALSE","America/New_York"
-"20765","38.84459","-76.54561","Galesville","MD","Maryland","TRUE","","407","336.6","24003","Anne Arundel","{""24003"": ""100""}","Anne Arundel","24003","FALSE","FALSE","America/New_York"
-"20769","38.99351","-76.81993","Glenn Dale","MD","Maryland","TRUE","","6222","312.6","24033","Prince George's","{""24033"": ""100""}","Prince George's","24033","FALSE","FALSE","America/New_York"
-"20770","39.00431","-76.87939","Greenbelt","MD","Maryland","TRUE","","24560","1154.5","24033","Prince George's","{""24033"": ""100""}","Prince George's","24033","FALSE","FALSE","America/New_York"
-"20772","38.77981","-76.76623","Upper Marlboro","MD","Maryland","TRUE","","45321","244.7","24033","Prince George's","{""24033"": ""100""}","Prince George's","24033","FALSE","FALSE","America/New_York"
-"20774","38.87525","-76.77386","Upper Marlboro","MD","Maryland","TRUE","","47165","524.4","24033","Prince George's","{""24033"": ""100""}","Prince George's","24033","FALSE","FALSE","America/New_York"
-"20776","38.87091","-76.60779","Harwood","MD","Maryland","TRUE","","3271","56.0","24003","Anne Arundel","{""24003"": ""100""}","Anne Arundel","24003","FALSE","FALSE","America/New_York"
-"20777","39.17486","-76.9679","Highland","MD","Maryland","TRUE","","3687","188.4","24027","Howard","{""24027"": ""98.64"", ""24031"": ""1.36""}","Howard|Montgomery","24027|24031","FALSE","FALSE","America/New_York"
-"20778","38.83719","-76.56515","West River","MD","Maryland","TRUE","","2079","102.2","24003","Anne Arundel","{""24003"": ""100""}","Anne Arundel","24003","FALSE","FALSE","America/New_York"
-"20779","38.76573","-76.57683","Tracys Landing","MD","Maryland","TRUE","","993","59.1","24003","Anne Arundel","{""24003"": ""100""}","Anne Arundel","24003","FALSE","FALSE","America/New_York"
-"20781","38.9432","-76.93649","Hyattsville","MD","Maryland","TRUE","","11694","1856.1","24033","Prince George's","{""24033"": ""100""}","Prince George's","24033","FALSE","FALSE","America/New_York"
-"20782","38.96478","-76.96493","Hyattsville","MD","Maryland","TRUE","","33398","3036.2","24033","Prince George's","{""24033"": ""100""}","Prince George's","24033","FALSE","FALSE","America/New_York"
-"20783","38.99912","-76.9688","Hyattsville","MD","Maryland","TRUE","","45302","3110.3","24033","Prince George's","{""24033"": ""100""}","Prince George's","24033","FALSE","FALSE","America/New_York"
-"20784","38.951","-76.89044","Hyattsville","MD","Maryland","TRUE","","30270","2744.1","24033","Prince George's","{""24033"": ""100""}","Prince George's","24033","FALSE","FALSE","America/New_York"
-"20785","38.91808","-76.88202","Hyattsville","MD","Maryland","TRUE","","38878","1518.6","24033","Prince George's","{""24033"": ""100""}","Prince George's","24033","FALSE","FALSE","America/New_York"
-"20794","39.15014","-76.78898","Jessup","MD","Maryland","TRUE","","17939","678.3","24027","Howard","{""24027"": ""53.94"", ""24003"": ""46.06""}","Howard|Anne Arundel","24027|24003","FALSE","FALSE","America/New_York"
-"20812","38.96671","-77.14339","Glen Echo","MD","Maryland","TRUE","","309","625.5","24031","Montgomery","{""24031"": ""100""}","Montgomery","24031","FALSE","FALSE","America/New_York"
-"20814","39.00492","-77.10198","Bethesda","MD","Maryland","TRUE","","29021","2196.8","24031","Montgomery","{""24031"": ""100""}","Montgomery","24031","FALSE","FALSE","America/New_York"
-"20815","38.98364","-77.07861","Chevy Chase","MD","Maryland","TRUE","","30664","2181.0","24031","Montgomery","{""24031"": ""100""}","Montgomery","24031","FALSE","FALSE","America/New_York"
-"20816","38.95591","-77.11854","Bethesda","MD","Maryland","TRUE","","16316","1802.9","24031","Montgomery","{""24031"": ""100""}","Montgomery","24031","FALSE","FALSE","America/New_York"
-"20817","38.99815","-77.14857","Bethesda","MD","Maryland","TRUE","","37315","1037.4","24031","Montgomery","{""24031"": ""100""}","Montgomery","24031","FALSE","FALSE","America/New_York"
-"20818","38.97397","-77.16241","Cabin John","MD","Maryland","TRUE","","1971","746.6","24031","Montgomery","{""24031"": ""100""}","Montgomery","24031","FALSE","FALSE","America/New_York"
-"20832","39.15116","-77.07256","Olney","MD","Maryland","TRUE","","26437","1012.8","24031","Montgomery","{""24031"": ""100""}","Montgomery","24031","FALSE","FALSE","America/New_York"
-"20833","39.20521","-77.05527","Brookeville","MD","Maryland","TRUE","","7369","145.3","24031","Montgomery","{""24031"": ""98.91"", ""24027"": ""1.09""}","Montgomery|Howard","24031|24027","FALSE","FALSE","America/New_York"
-"20837","39.1126","-77.40682","Poolesville","MD","Maryland","TRUE","","6287","57.0","24031","Montgomery","{""24031"": ""100""}","Montgomery","24031","FALSE","FALSE","America/New_York"
-"20838","39.22622","-77.37235","Barnesville","MD","Maryland","TRUE","","302","43.2","24031","Montgomery","{""24031"": ""100""}","Montgomery","24031","FALSE","FALSE","America/New_York"
-"20839","39.18354","-77.42255","Beallsville","MD","Maryland","TRUE","","97","7.6","24031","Montgomery","{""24031"": ""100""}","Montgomery","24031","FALSE","FALSE","America/New_York"
-"20841","39.19019","-77.32336","Boyds","MD","Maryland","TRUE","","11443","170.1","24031","Montgomery","{""24031"": ""100""}","Montgomery","24031","FALSE","FALSE","America/New_York"
-"20842","39.21077","-77.42556","Dickerson","MD","Maryland","TRUE","","1676","12.1","24031","Montgomery","{""24031"": ""80.43"", ""24021"": ""19.57""}","Montgomery|Frederick","24031|24021","FALSE","FALSE","America/New_York"
-"20850","39.09129","-77.18085","Rockville","MD","Maryland","TRUE","","53176","1455.6","24031","Montgomery","{""24031"": ""100""}","Montgomery","24031","FALSE","FALSE","America/New_York"
-"20851","39.0784","-77.12182","Rockville","MD","Maryland","TRUE","","15489","2518.4","24031","Montgomery","{""24031"": ""100""}","Montgomery","24031","FALSE","FALSE","America/New_York"
-"20852","39.0515","-77.12458","Rockville","MD","Maryland","TRUE","","46178","2142.8","24031","Montgomery","{""24031"": ""100""}","Montgomery","24031","FALSE","FALSE","America/New_York"
-"20853","39.10231","-77.09515","Rockville","MD","Maryland","TRUE","","31061","1326.0","24031","Montgomery","{""24031"": ""100""}","Montgomery","24031","FALSE","FALSE","America/New_York"
-"20854","39.03376","-77.22046","Potomac","MD","Maryland","TRUE","","49189","562.4","24031","Montgomery","{""24031"": ""100""}","Montgomery","24031","FALSE","FALSE","America/New_York"
-"20855","39.13711","-77.13239","Derwood","MD","Maryland","TRUE","","15287","449.4","24031","Montgomery","{""24031"": ""100""}","Montgomery","24031","FALSE","FALSE","America/New_York"
-"20860","39.14839","-77.02845","Sandy Spring","MD","Maryland","TRUE","","2855","290.5","24031","Montgomery","{""24031"": ""100""}","Montgomery","24031","FALSE","FALSE","America/New_York"
-"20861","39.15242","-76.99757","Ashton","MD","Maryland","TRUE","","1449","145.7","24031","Montgomery","{""24031"": ""100""}","Montgomery","24031","FALSE","FALSE","America/New_York"
-"20862","39.18361","-77.01946","Brinklow","MD","Maryland","TRUE","","341","112.1","24031","Montgomery","{""24031"": ""100""}","Montgomery","24031","FALSE","FALSE","America/New_York"
-"20866","39.10945","-76.93354","Burtonsville","MD","Maryland","TRUE","","16365","893.6","24031","Montgomery","{""24031"": ""100""}","Montgomery","24031","FALSE","FALSE","America/New_York"
-"20868","39.12586","-76.96844","Spencerville","MD","Maryland","TRUE","","780","150.2","24031","Montgomery","{""24031"": ""100""}","Montgomery","24031","FALSE","FALSE","America/New_York"
-"20871","39.26092","-77.28324","Clarksburg","MD","Maryland","TRUE","","18628","350.1","24031","Montgomery","{""24031"": ""97.46"", ""24021"": ""2.54""}","Montgomery|Frederick","24031|24021","FALSE","FALSE","America/New_York"
-"20872","39.29148","-77.21769","Damascus","MD","Maryland","TRUE","","12603","233.8","24031","Montgomery","{""24031"": ""100""}","Montgomery","24031","FALSE","FALSE","America/New_York"
-"20874","39.12971","-77.2975","Germantown","MD","Maryland","TRUE","","61087","1107.5","24031","Montgomery","{""24031"": ""100""}","Montgomery","24031","FALSE","FALSE","America/New_York"
-"20876","39.20789","-77.23298","Germantown","MD","Maryland","TRUE","","30778","1017.2","24031","Montgomery","{""24031"": ""100""}","Montgomery","24031","FALSE","FALSE","America/New_York"
-"20877","39.14088","-77.18824","Gaithersburg","MD","Maryland","TRUE","","38423","2570.4","24031","Montgomery","{""24031"": ""100""}","Montgomery","24031","FALSE","FALSE","America/New_York"
-"20878","39.11253","-77.25142","Gaithersburg","MD","Maryland","TRUE","","63030","1110.7","24031","Montgomery","{""24031"": ""100""}","Montgomery","24031","FALSE","FALSE","America/New_York"
-"20879","39.16918","-77.17602","Gaithersburg","MD","Maryland","TRUE","","26164","1317.1","24031","Montgomery","{""24031"": ""100""}","Montgomery","24031","FALSE","FALSE","America/New_York"
-"20880","39.13969","-77.17346","Washington Grove","MD","Maryland","TRUE","","547","894.4","24031","Montgomery","{""24031"": ""100""}","Montgomery","24031","FALSE","FALSE","America/New_York"
-"20882","39.23308","-77.14521","Gaithersburg","MD","Maryland","TRUE","","13988","140.0","24031","Montgomery","{""24031"": ""100""}","Montgomery","24031","FALSE","FALSE","America/New_York"
-"20886","39.1798","-77.19344","Montgomery Village","MD","Maryland","TRUE","","34834","2873.1","24031","Montgomery","{""24031"": ""100""}","Montgomery","24031","FALSE","FALSE","America/New_York"
-"20895","39.02674","-77.07756","Kensington","MD","Maryland","TRUE","","19026","1805.5","24031","Montgomery","{""24031"": ""100""}","Montgomery","24031","FALSE","FALSE","America/New_York"
-"20896","39.03621","-77.09344","Garrett Park","MD","Maryland","TRUE","","775","1208.1","24031","Montgomery","{""24031"": ""100""}","Montgomery","24031","FALSE","FALSE","America/New_York"
-"20899","39.14384","-77.2162","Gaithersburg","MD","Maryland","TRUE","","295","1442.0","24031","Montgomery","{""24031"": ""100""}","Montgomery","24031","FALSE","FALSE","America/New_York"
-"20901","39.02145","-77.00907","Silver Spring","MD","Maryland","TRUE","","36278","2601.8","24031","Montgomery","{""24031"": ""100""}","Montgomery","24031","FALSE","FALSE","America/New_York"
-"20902","39.04371","-77.0422","Silver Spring","MD","Maryland","TRUE","","52908","2693.7","24031","Montgomery","{""24031"": ""100""}","Montgomery","24031","FALSE","FALSE","America/New_York"
-"20903","39.0206","-76.98121","Silver Spring","MD","Maryland","TRUE","","27973","2998.4","24031","Montgomery","{""24031"": ""77.43"", ""24033"": ""22.57""}","Montgomery|Prince George's","24031|24033","FALSE","FALSE","America/New_York"
-"20904","39.06662","-76.97973","Silver Spring","MD","Maryland","TRUE","","55275","1558.5","24031","Montgomery","{""24031"": ""99.41"", ""24033"": ""0.59""}","Montgomery|Prince George's","24031|24033","FALSE","FALSE","America/New_York"
-"20905","39.11195","-76.99291","Silver Spring","MD","Maryland","TRUE","","18662","560.7","24031","Montgomery","{""24031"": ""100""}","Montgomery","24031","FALSE","FALSE","America/New_York"
-"20906","39.0867","-77.05664","Silver Spring","MD","Maryland","TRUE","","70749","2262.3","24031","Montgomery","{""24031"": ""100""}","Montgomery","24031","FALSE","FALSE","America/New_York"
-"20910","39.0022","-77.03637","Silver Spring","MD","Maryland","TRUE","","44301","3763.2","24031","Montgomery","{""24031"": ""100""}","Montgomery","24031","FALSE","FALSE","America/New_York"
-"20912","38.9822","-77.00124","Takoma Park","MD","Maryland","TRUE","","26140","3777.3","24031","Montgomery","{""24031"": ""86.07"", ""24033"": ""13.93""}","Montgomery|Prince George's","24031|24033","FALSE","FALSE","America/New_York"
-"21001","39.51073","-76.2006","Aberdeen","MD","Maryland","TRUE","","24752","319.8","24025","Harford","{""24025"": ""100""}","Harford","24025","FALSE","FALSE","America/New_York"
-"21005","39.47415","-76.11891","Aberdeen Proving Ground","MD","Maryland","TRUE","","2872","139.2","24025","Harford","{""24025"": ""100""}","Harford","24025","FALSE","FALSE","America/New_York"
-"21009","39.47051","-76.29409","Abingdon","MD","Maryland","TRUE","","29905","1018.1","24025","Harford","{""24025"": ""100""}","Harford","24025","FALSE","FALSE","America/New_York"
-"21010","39.3898","-76.29092","Gunpowder","MD","Maryland","TRUE","","211","15.9","24025","Harford","{""24025"": ""100""}","Harford","24025","FALSE","FALSE","America/New_York"
-"21012","39.04528","-76.49706","Arnold","MD","Maryland","TRUE","","21600","854.4","24003","Anne Arundel","{""24003"": ""100""}","Anne Arundel","24003","FALSE","FALSE","America/New_York"
-"21013","39.50906","-76.48647","Baldwin","MD","Maryland","TRUE","","4768","121.9","24005","Baltimore","{""24005"": ""68.04"", ""24025"": ""31.96""}","Baltimore|Harford","24005|24025","FALSE","FALSE","America/New_York"
-"21014","39.53663","-76.35169","Bel Air","MD","Maryland","TRUE","","36538","1001.6","24025","Harford","{""24025"": ""100""}","Harford","24025","FALSE","FALSE","America/New_York"
-"21015","39.54681","-76.29604","Bel Air","MD","Maryland","TRUE","","29199","364.5","24025","Harford","{""24025"": ""100""}","Harford","24025","FALSE","FALSE","America/New_York"
-"21017","39.47622","-76.23691","Belcamp","MD","Maryland","TRUE","","6983","981.0","24025","Harford","{""24025"": ""100""}","Harford","24025","FALSE","FALSE","America/New_York"
-"21028","39.56797","-76.24245","Churchville","MD","Maryland","TRUE","","2783","79.0","24025","Harford","{""24025"": ""100""}","Harford","24025","FALSE","FALSE","America/New_York"
-"21029","39.20559","-76.95299","Clarksville","MD","Maryland","TRUE","","10895","263.8","24027","Howard","{""24027"": ""100""}","Howard","24027","FALSE","FALSE","America/New_York"
-"21030","39.4919","-76.66767","Cockeysville","MD","Maryland","TRUE","","24396","396.1","24005","Baltimore","{""24005"": ""100""}","Baltimore","24005","FALSE","FALSE","America/New_York"
-"21031","39.48719","-76.65794","Hunt Valley","MD","Maryland","TRUE","","0","0.0","24005","Baltimore","{""24005"": ""100""}","Baltimore","24005","FALSE","FALSE","America/New_York"
-"21032","39.03376","-76.60411","Crownsville","MD","Maryland","TRUE","","8084","177.1","24003","Anne Arundel","{""24003"": ""100""}","Anne Arundel","24003","FALSE","FALSE","America/New_York"
-"21034","39.65065","-76.22116","Darlington","MD","Maryland","TRUE","","3483","53.5","24025","Harford","{""24025"": ""100""}","Harford","24025","FALSE","FALSE","America/New_York"
-"21035","38.93689","-76.63735","Davidsonville","MD","Maryland","TRUE","","7957","108.3","24003","Anne Arundel","{""24003"": ""100""}","Anne Arundel","24003","FALSE","FALSE","America/New_York"
-"21036","39.23372","-77.00258","Dayton","MD","Maryland","TRUE","","2112","129.5","24027","Howard","{""24027"": ""100""}","Howard","24027","FALSE","FALSE","America/New_York"
-"21037","38.91546","-76.54423","Edgewater","MD","Maryland","TRUE","","21046","470.8","24003","Anne Arundel","{""24003"": ""100""}","Anne Arundel","24003","FALSE","FALSE","America/New_York"
-"21040","39.43315","-76.29515","Edgewood","MD","Maryland","TRUE","","24166","1171.2","24025","Harford","{""24025"": ""100""}","Harford","24025","FALSE","FALSE","America/New_York"
-"21042","39.2703","-76.89282","Ellicott City","MD","Maryland","TRUE","","41195","424.3","24027","Howard","{""24027"": ""100""}","Howard","24027","FALSE","FALSE","America/New_York"
-"21043","39.25753","-76.7979","Ellicott City","MD","Maryland","TRUE","","47351","1076.1","24027","Howard","{""24027"": ""97.88"", ""24005"": ""2.12""}","Howard|Baltimore","24027|24005","FALSE","FALSE","America/New_York"
-"21044","39.21033","-76.88381","Columbia","MD","Maryland","TRUE","","44256","1424.1","24027","Howard","{""24027"": ""100""}","Howard","24027","FALSE","FALSE","America/New_York"
-"21045","39.20617","-76.82747","Columbia","MD","Maryland","TRUE","","40365","1605.7","24027","Howard","{""24027"": ""100""}","Howard","24027","FALSE","FALSE","America/New_York"
-"21046","39.17356","-76.84188","Columbia","MD","Maryland","TRUE","","15655","775.5","24027","Howard","{""24027"": ""100""}","Howard","24027","FALSE","FALSE","America/New_York"
-"21047","39.52804","-76.43925","Fallston","MD","Maryland","TRUE","","12266","201.2","24025","Harford","{""24025"": ""100""}","Harford","24025","FALSE","FALSE","America/New_York"
-"21048","39.49525","-76.91035","Finksburg","MD","Maryland","TRUE","","10276","146.6","24013","Carroll","{""24013"": ""100""}","Carroll","24013","FALSE","FALSE","America/New_York"
-"21050","39.5857","-76.39227","Forest Hill","MD","Maryland","TRUE","","18123","246.3","24025","Harford","{""24025"": ""100""}","Harford","24025","FALSE","FALSE","America/New_York"
-"21051","39.47209","-76.45401","Fork","MD","Maryland","TRUE","","295","286.5","24005","Baltimore","{""24005"": ""100""}","Baltimore","24005","FALSE","FALSE","America/New_York"
-"21052","39.20675","-76.44568","Fort Howard","MD","Maryland","TRUE","","211","1088.4","24005","Baltimore","{""24005"": ""100""}","Baltimore","24005","FALSE","FALSE","America/New_York"
-"21053","39.69257","-76.71561","Freeland","MD","Maryland","TRUE","","3225","55.5","24005","Baltimore","{""24005"": ""100""}","Baltimore","24005","FALSE","FALSE","America/New_York"
-"21054","39.02176","-76.67326","Gambrills","MD","Maryland","TRUE","","11199","242.6","24003","Anne Arundel","{""24003"": ""100""}","Anne Arundel","24003","FALSE","FALSE","America/New_York"
-"21056","39.07602","-76.44033","Gibson Island","MD","Maryland","TRUE","","158","44.3","24003","Anne Arundel","{""24003"": ""100""}","Anne Arundel","24003","FALSE","FALSE","America/New_York"
-"21057","39.45048","-76.5065","Glen Arm","MD","Maryland","TRUE","","4232","97.2","24005","Baltimore","{""24005"": ""100""}","Baltimore","24005","FALSE","FALSE","America/New_York"
-"21060","39.16798","-76.58374","Glen Burnie","MD","Maryland","TRUE","","34899","1076.4","24003","Anne Arundel","{""24003"": ""100""}","Anne Arundel","24003","FALSE","FALSE","America/New_York"
-"21061","39.16177","-76.62973","Glen Burnie","MD","Maryland","TRUE","","53860","1712.5","24003","Anne Arundel","{""24003"": ""100""}","Anne Arundel","24003","FALSE","FALSE","America/New_York"
-"21071","39.48165","-76.81091","Glyndon","MD","Maryland","TRUE","","581","226.2","24005","Baltimore","{""24005"": ""100""}","Baltimore","24005","FALSE","FALSE","America/New_York"
-"21074","39.61738","-76.8436","Hampstead","MD","Maryland","TRUE","","15166","156.3","24013","Carroll","{""24013"": ""90.96"", ""24005"": ""9.04""}","Carroll|Baltimore","24013|24005","FALSE","FALSE","America/New_York"
-"21075","39.2035","-76.75183","Elkridge","MD","Maryland","TRUE","","33726","897.4","24027","Howard","{""24027"": ""100""}","Howard","24027","FALSE","FALSE","America/New_York"
-"21076","39.16683","-76.72159","Hanover","MD","Maryland","TRUE","","17442","534.3","24003","Anne Arundel","{""24003"": ""87.33"", ""24027"": ""12.67""}","Anne Arundel|Howard","24003|24027","FALSE","FALSE","America/New_York"
-"21077","39.15605","-76.69762","Harmans","MD","Maryland","TRUE","","276","162.0","24003","Anne Arundel","{""24003"": ""100""}","Anne Arundel","24003","FALSE","FALSE","America/New_York"
-"21078","39.56949","-76.14799","Havre De Grace","MD","Maryland","TRUE","","18366","235.0","24025","Harford","{""24025"": ""100""}","Harford","24025","FALSE","FALSE","America/New_York"
-"21082","39.47922","-76.47715","Hydes","MD","Maryland","TRUE","","656","56.9","24005","Baltimore","{""24005"": ""92.51"", ""24025"": ""7.49""}","Baltimore|Harford","24005|24025","FALSE","FALSE","America/New_York"
-"21084","39.61638","-76.46409","Jarrettsville","MD","Maryland","TRUE","","7603","119.7","24025","Harford","{""24025"": ""100""}","Harford","24025","FALSE","FALSE","America/New_York"
-"21085","39.44788","-76.35469","Joppa","MD","Maryland","TRUE","","16055","345.8","24025","Harford","{""24025"": ""99.86"", ""24005"": ""0.14""}","Harford|Baltimore","24025|24005","FALSE","FALSE","America/New_York"
-"21087","39.44771","-76.4157","Kingsville","MD","Maryland","TRUE","","5394","148.7","24005","Baltimore","{""24005"": ""85.09"", ""24025"": ""14.91""}","Baltimore|Harford","24005|24025","FALSE","FALSE","America/New_York"
-"21090","39.20923","-76.66808","Linthicum Heights","MD","Maryland","TRUE","","9991","585.4","24003","Anne Arundel","{""24003"": ""100""}","Anne Arundel","24003","FALSE","FALSE","America/New_York"
-"21093","39.43979","-76.64087","Lutherville Timonium","MD","Maryland","TRUE","","37996","725.7","24005","Baltimore","{""24005"": ""100""}","Baltimore","24005","FALSE","FALSE","America/New_York"
-"21102","39.68683","-76.84669","Manchester","MD","Maryland","TRUE","","11787","112.5","24013","Carroll","{""24013"": ""91.55"", ""24005"": ""8.45""}","Carroll|Baltimore","24013|24005","FALSE","FALSE","America/New_York"
-"21104","39.34962","-76.90652","Marriottsville","MD","Maryland","TRUE","","5762","131.0","24013","Carroll","{""24013"": ""54.88"", ""24027"": ""41.86"", ""24005"": ""3.26""}","Carroll|Howard|Baltimore","24013|24027|24005","FALSE","FALSE","America/New_York"
-"21105","39.71395","-76.65127","Maryland Line","MD","Maryland","TRUE","","0","0.0","24005","Baltimore","{""24005"": ""100""}","Baltimore","24005","FALSE","FALSE","America/New_York"
-"21108","39.08957","-76.62208","Millersville","MD","Maryland","TRUE","","18782","555.0","24003","Anne Arundel","{""24003"": ""100""}","Anne Arundel","24003","FALSE","FALSE","America/New_York"
-"21111","39.57727","-76.5818","Monkton","MD","Maryland","TRUE","","5387","59.3","24005","Baltimore","{""24005"": ""80.91"", ""24025"": ""19.09""}","Baltimore|Harford","24005|24025","FALSE","FALSE","America/New_York"
-"21113","39.0536","-76.71657","Odenton","MD","Maryland","TRUE","","34473","922.5","24003","Anne Arundel","{""24003"": ""100""}","Anne Arundel","24003","FALSE","FALSE","America/New_York"
-"21114","39.00961","-76.68423","Crofton","MD","Maryland","TRUE","","27303","1894.7","24003","Anne Arundel","{""24003"": ""100""}","Anne Arundel","24003","FALSE","FALSE","America/New_York"
-"21117","39.4271","-76.77713","Owings Mills","MD","Maryland","TRUE","","59301","704.1","24005","Baltimore","{""24005"": ""100""}","Baltimore","24005","FALSE","FALSE","America/New_York"
-"21120","39.64496","-76.6789","Parkton","MD","Maryland","TRUE","","7095","64.7","24005","Baltimore","{""24005"": ""100""}","Baltimore","24005","FALSE","FALSE","America/New_York"
-"21122","39.11839","-76.50162","Pasadena","MD","Maryland","TRUE","","61051","753.6","24003","Anne Arundel","{""24003"": ""100""}","Anne Arundel","24003","FALSE","FALSE","America/New_York"
-"21128","39.40774","-76.4462","Perry Hall","MD","Maryland","TRUE","","13985","807.8","24005","Baltimore","{""24005"": ""100""}","Baltimore","24005","FALSE","FALSE","America/New_York"
-"21130","39.47741","-76.19413","Perryman","MD","Maryland","TRUE","","156","79.6","24025","Harford","{""24025"": ""100""}","Harford","24025","FALSE","FALSE","America/New_York"
-"21131","39.50467","-76.57373","Phoenix","MD","Maryland","TRUE","","7282","126.5","24005","Baltimore","{""24005"": ""100""}","Baltimore","24005","FALSE","FALSE","America/New_York"
-"21132","39.69604","-76.42926","Pylesville","MD","Maryland","TRUE","","3232","58.9","24025","Harford","{""24025"": ""100""}","Harford","24025","FALSE","FALSE","America/New_York"
-"21133","39.37477","-76.81245","Randallstown","MD","Maryland","TRUE","","33299","1263.8","24005","Baltimore","{""24005"": ""100""}","Baltimore","24005","FALSE","FALSE","America/New_York"
-"21136","39.48903","-76.80848","Reisterstown","MD","Maryland","TRUE","","34177","235.6","24005","Baltimore","{""24005"": ""97.08"", ""24013"": ""2.92""}","Baltimore|Carroll","24005|24013","FALSE","FALSE","America/New_York"
-"21140","38.95025","-76.58489","Riva","MD","Maryland","TRUE","","3564","1018.0","24003","Anne Arundel","{""24003"": ""100""}","Anne Arundel","24003","FALSE","FALSE","America/New_York"
-"21144","39.12091","-76.67733","Severn","MD","Maryland","TRUE","","35335","851.3","24003","Anne Arundel","{""24003"": ""100""}","Anne Arundel","24003","FALSE","FALSE","America/New_York"
-"21146","39.07758","-76.55665","Severna Park","MD","Maryland","TRUE","","27555","1039.8","24003","Anne Arundel","{""24003"": ""100""}","Anne Arundel","24003","FALSE","FALSE","America/New_York"
-"21152","39.54827","-76.68189","Sparks Glencoe","MD","Maryland","TRUE","","5462","92.2","24005","Baltimore","{""24005"": ""100""}","Baltimore","24005","FALSE","FALSE","America/New_York"
-"21153","39.41272","-76.70802","Stevenson","MD","Maryland","TRUE","","447","87.9","24005","Baltimore","{""24005"": ""100""}","Baltimore","24005","FALSE","FALSE","America/New_York"
-"21154","39.65224","-76.35617","Street","MD","Maryland","TRUE","","5804","55.5","24025","Harford","{""24025"": ""100""}","Harford","24025","FALSE","FALSE","America/New_York"
-"21155","39.57111","-76.80589","Upperco","MD","Maryland","TRUE","","2532","44.7","24005","Baltimore","{""24005"": ""86.29"", ""24013"": ""13.71""}","Baltimore|Carroll","24005|24013","FALSE","FALSE","America/New_York"
-"21156","39.43726","-76.39653","Upper Falls","MD","Maryland","TRUE","","316","84.5","24005","Baltimore","{""24005"": ""100""}","Baltimore","24005","FALSE","FALSE","America/New_York"
-"21157","39.54936","-76.9808","Westminster","MD","Maryland","TRUE","","37749","190.1","24013","Carroll","{""24013"": ""100""}","Carroll","24013","FALSE","FALSE","America/New_York"
-"21158","39.64671","-77.03251","Westminster","MD","Maryland","TRUE","","20906","108.5","24013","Carroll","{""24013"": ""100""}","Carroll","24013","FALSE","FALSE","America/New_York"
-"21160","39.70667","-76.30982","Whiteford","MD","Maryland","TRUE","","2933","68.5","24025","Harford","{""24025"": ""100""}","Harford","24025","FALSE","FALSE","America/New_York"
-"21161","39.66042","-76.5654","White Hall","MD","Maryland","TRUE","","5601","44.7","24025","Harford","{""24025"": ""50.29"", ""24005"": ""49.71""}","Harford|Baltimore","24025|24005","FALSE","FALSE","America/New_York"
-"21162","39.39001","-76.40381","White Marsh","MD","Maryland","TRUE","","4331","224.0","24005","Baltimore","{""24005"": ""100""}","Baltimore","24005","FALSE","FALSE","America/New_York"
-"21163","39.33972","-76.85618","Woodstock","MD","Maryland","TRUE","","7030","215.6","24027","Howard","{""24027"": ""63.08"", ""24005"": ""36.92""}","Howard|Baltimore","24027|24005","FALSE","FALSE","America/New_York"
-"21201","39.29479","-76.6222","Baltimore","MD","Maryland","TRUE","","17256","5153.0","24510","Baltimore","{""24510"": ""100""}","Baltimore","24510","FALSE","FALSE","America/New_York"
-"21202","39.29646","-76.60745","Baltimore","MD","Maryland","TRUE","","21784","5309.5","24510","Baltimore","{""24510"": ""100""}","Baltimore","24510","FALSE","FALSE","America/New_York"
-"21204","39.40257","-76.63262","Towson","MD","Maryland","TRUE","","21545","1380.1","24005","Baltimore","{""24005"": ""100""}","Baltimore","24005","FALSE","FALSE","America/New_York"
-"21205","39.3023","-76.56447","Baltimore","MD","Maryland","TRUE","","16239","3058.7","24510","Baltimore","{""24510"": ""100""}","Baltimore","24510","FALSE","FALSE","America/New_York"
-"21206","39.33929","-76.53675","Baltimore","MD","Maryland","TRUE","","52020","2801.1","24510","Baltimore","{""24510"": ""79.42"", ""24005"": ""20.58""}","Baltimore|Baltimore","24510|24005","FALSE","FALSE","America/New_York"
-"21207","39.32424","-76.72038","Gwynn Oak","MD","Maryland","TRUE","","48872","1830.0","24005","Baltimore","{""24005"": ""70.45"", ""24510"": ""29.55""}","Baltimore|Baltimore","24005|24510","FALSE","FALSE","America/New_York"
-"21208","39.38482","-76.72439","Pikesville","MD","Maryland","TRUE","","35266","1105.1","24005","Baltimore","{""24005"": ""94.2"", ""24510"": ""5.8""}","Baltimore|Baltimore","24005|24510","FALSE","FALSE","America/New_York"
-"21209","39.3739","-76.6696","Baltimore","MD","Maryland","TRUE","","28309","1543.2","24005","Baltimore","{""24005"": ""53.86"", ""24510"": ""46.14""}","Baltimore|Baltimore","24005|24510","FALSE","FALSE","America/New_York"
-"21210","39.3582","-76.63439","Baltimore","MD","Maryland","TRUE","","15553","1810.5","24510","Baltimore","{""24510"": ""93.42"", ""24005"": ""6.58""}","Baltimore|Baltimore","24510|24005","FALSE","FALSE","America/New_York"
-"21211","39.32995","-76.63937","Baltimore","MD","Maryland","TRUE","","16370","2268.0","24510","Baltimore","{""24510"": ""100""}","Baltimore","24510","FALSE","FALSE","America/New_York"
-"21212","39.36827","-76.61508","Baltimore","MD","Maryland","TRUE","","33431","2781.0","24510","Baltimore","{""24510"": ""66.17"", ""24005"": ""33.83""}","Baltimore|Baltimore","24510|24005","FALSE","FALSE","America/New_York"
-"21213","39.31517","-76.5772","Baltimore","MD","Maryland","TRUE","","31007","3508.4","24510","Baltimore","{""24510"": ""100""}","Baltimore","24510","FALSE","FALSE","America/New_York"
-"21214","39.35177","-76.56446","Baltimore","MD","Maryland","TRUE","","21392","2893.6","24510","Baltimore","{""24510"": ""100""}","Baltimore","24510","FALSE","FALSE","America/New_York"
-"21215","39.34555","-76.68369","Baltimore","MD","Maryland","TRUE","","58283","3302.9","24510","Baltimore","{""24510"": ""97.1"", ""24005"": ""2.9""}","Baltimore|Baltimore","24510|24005","FALSE","FALSE","America/New_York"
-"21216","39.31104","-76.67206","Baltimore","MD","Maryland","TRUE","","30179","3494.7","24510","Baltimore","{""24510"": ""100""}","Baltimore","24510","FALSE","FALSE","America/New_York"
-"21217","39.30814","-76.63857","Baltimore","MD","Maryland","TRUE","","33644","5610.6","24510","Baltimore","{""24510"": ""100""}","Baltimore","24510","FALSE","FALSE","America/New_York"
-"21218","39.32997","-76.60268","Baltimore","MD","Maryland","TRUE","","47555","4389.0","24510","Baltimore","{""24510"": ""100""}","Baltimore","24510","FALSE","FALSE","America/New_York"
-"21219","39.22998","-76.45036","Sparrows Point","MD","Maryland","TRUE","","9550","448.5","24005","Baltimore","{""24005"": ""100""}","Baltimore","24005","FALSE","FALSE","America/New_York"
-"21220","39.34515","-76.39765","Middle River","MD","Maryland","TRUE","","41051","735.0","24005","Baltimore","{""24005"": ""100""}","Baltimore","24005","FALSE","FALSE","America/New_York"
-"21221","39.2942","-76.43967","Essex","MD","Maryland","TRUE","","42078","1100.1","24005","Baltimore","{""24005"": ""100""}","Baltimore","24005","FALSE","FALSE","America/New_York"
-"21222","39.26558","-76.49337","Dundalk","MD","Maryland","TRUE","","55212","1944.5","24005","Baltimore","{""24005"": ""96.68"", ""24510"": ""3.32""}","Baltimore|Baltimore","24005|24510","FALSE","FALSE","America/New_York"
-"21223","39.28427","-76.65323","Baltimore","MD","Maryland","TRUE","","22392","3285.1","24510","Baltimore","{""24510"": ""100""}","Baltimore","24510","FALSE","FALSE","America/New_York"
-"21224","39.28184","-76.54131","Baltimore","MD","Maryland","TRUE","","49332","2010.7","24510","Baltimore","{""24510"": ""82.4"", ""24005"": ""17.6""}","Baltimore|Baltimore","24510|24005","FALSE","FALSE","America/New_York"
-"21225","39.22592","-76.61527","Brooklyn","MD","Maryland","TRUE","","34363","2049.2","24510","Baltimore","{""24510"": ""57.07"", ""24003"": ""42.93""}","Baltimore|Anne Arundel","24510|24003","FALSE","FALSE","America/New_York"
-"21226","39.20714","-76.56282","Curtis Bay","MD","Maryland","TRUE","","6247","242.9","24003","Anne Arundel","{""24003"": ""56.51"", ""24510"": ""43.49""}","Anne Arundel|Baltimore","24003|24510","FALSE","FALSE","America/New_York"
-"21227","39.24046","-76.67938","Halethorpe","MD","Maryland","TRUE","","33589","1124.3","24005","Baltimore","{""24005"": ""97.47"", ""24510"": ""2.53""}","Baltimore|Baltimore","24005|24510","FALSE","FALSE","America/New_York"
-"21228","39.27264","-76.7474","Catonsville","MD","Maryland","TRUE","","48196","1200.3","24005","Baltimore","{""24005"": ""99.44"", ""24510"": ""0.56""}","Baltimore|Baltimore","24005|24510","FALSE","FALSE","America/New_York"
-"21229","39.28514","-76.69078","Baltimore","MD","Maryland","TRUE","","45921","3015.4","24510","Baltimore","{""24510"": ""84.52"", ""24005"": ""15.48""}","Baltimore|Baltimore","24510|24005","FALSE","FALSE","America/New_York"
-"21230","39.2663","-76.62243","Baltimore","MD","Maryland","TRUE","","34274","2098.3","24510","Baltimore","{""24510"": ""100""}","Baltimore","24510","FALSE","FALSE","America/New_York"
-"21231","39.2871","-76.59238","Baltimore","MD","Maryland","TRUE","","15854","7026.8","24510","Baltimore","{""24510"": ""100""}","Baltimore","24510","FALSE","FALSE","America/New_York"
-"21234","39.39346","-76.53387","Parkville","MD","Maryland","TRUE","","68381","2033.6","24005","Baltimore","{""24005"": ""87.51"", ""24510"": ""12.49""}","Baltimore|Baltimore","24005|24510","FALSE","FALSE","America/New_York"
-"21236","39.3884","-76.48606","Nottingham","MD","Maryland","TRUE","","39707","1789.5","24005","Baltimore","{""24005"": ""99.5"", ""24510"": ""0.5""}","Baltimore|Baltimore","24005|24510","FALSE","FALSE","America/New_York"
-"21237","39.33918","-76.4952","Rosedale","MD","Maryland","TRUE","","30129","1011.0","24005","Baltimore","{""24005"": ""99.84"", ""24510"": ""0.16""}","Baltimore|Baltimore","24005|24510","FALSE","FALSE","America/New_York"
-"21239","39.36652","-76.5873","Baltimore","MD","Maryland","TRUE","","30424","3631.6","24510","Baltimore","{""24510"": ""82.61"", ""24005"": ""17.39""}","Baltimore|Baltimore","24510|24005","FALSE","FALSE","America/New_York"
-"21240","39.17533","-76.67323","Baltimore","MD","Maryland","TRUE","","0","0.0","24003","Anne Arundel","{""24003"": ""0""}","Anne Arundel","24003","FALSE","FALSE","America/New_York"
-"21244","39.33303","-76.78034","Windsor Mill","MD","Maryland","TRUE","","36394","1047.2","24005","Baltimore","{""24005"": ""100""}","Baltimore","24005","FALSE","FALSE","America/New_York"
-"21250","39.25557","-76.71117","Baltimore","MD","Maryland","TRUE","","2367","3729.2","24005","Baltimore","{""24005"": ""100""}","Baltimore","24005","FALSE","FALSE","America/New_York"
-"21251","39.34725","-76.58072","Baltimore","MD","Maryland","TRUE","","965","2113.3","24510","Baltimore","{""24510"": ""100""}","Baltimore","24510","FALSE","FALSE","America/New_York"
-"21252","39.39388","-76.6078","Towson","MD","Maryland","TRUE","","2383","6352.0","24005","Baltimore","{""24005"": ""100""}","Baltimore","24005","FALSE","FALSE","America/New_York"
-"21286","39.41507","-76.57441","Towson","MD","Maryland","TRUE","","19849","898.4","24005","Baltimore","{""24005"": ""100""}","Baltimore","24005","FALSE","FALSE","America/New_York"
-"21401","38.9898","-76.55009","Annapolis","MD","Maryland","TRUE","","38315","748.9","24003","Anne Arundel","{""24003"": ""100""}","Anne Arundel","24003","FALSE","FALSE","America/New_York"
-"21402","38.98821","-76.47251","Annapolis","MD","Maryland","TRUE","","6669","1356.1","24003","Anne Arundel","{""24003"": ""100""}","Anne Arundel","24003","FALSE","FALSE","America/New_York"
-"21403","38.94404","-76.49254","Annapolis","MD","Maryland","TRUE","","31377","1332.8","24003","Anne Arundel","{""24003"": ""100""}","Anne Arundel","24003","FALSE","FALSE","America/New_York"
-"21405","39.0305","-76.55147","Annapolis","MD","Maryland","TRUE","","337","127.2","24003","Anne Arundel","{""24003"": ""100""}","Anne Arundel","24003","FALSE","FALSE","America/New_York"
-"21409","39.01965","-76.44746","Annapolis","MD","Maryland","TRUE","","19931","549.3","24003","Anne Arundel","{""24003"": ""100""}","Anne Arundel","24003","FALSE","FALSE","America/New_York"
-"21502","39.64405","-78.75494","Cumberland","MD","Maryland","TRUE","","42391","182.7","24001","Allegany","{""24001"": ""100""}","Allegany","24001","FALSE","FALSE","America/New_York"
-"21520","39.62474","-79.3015","Accident","MD","Maryland","TRUE","","2200","13.9","24023","Garrett","{""24023"": ""100""}","Garrett","24023","FALSE","FALSE","America/New_York"
-"21521","39.54602","-79.04045","Barton","MD","Maryland","TRUE","","1102","18.3","24001","Allegany","{""24001"": ""94.23"", ""24023"": ""5.77""}","Allegany|Garrett","24001|24023","FALSE","FALSE","America/New_York"
-"21522","39.61027","-79.22778","Bittinger","MD","Maryland","TRUE","","233","34.8","24023","Garrett","{""24023"": ""100""}","Garrett","24023","FALSE","FALSE","America/New_York"
-"21523","39.4799","-79.0792","Bloomington","MD","Maryland","TRUE","","188","102.8","24023","Garrett","{""24023"": ""100""}","Garrett","24023","FALSE","FALSE","America/New_York"
-"21524","39.70761","-78.80141","Corriganville","MD","Maryland","TRUE","","775","86.5","24001","Allegany","{""24001"": ""100""}","Allegany","24001","FALSE","FALSE","America/New_York"
-"21529","39.70616","-78.76852","Ellerslie","MD","Maryland","TRUE","","434","46.3","24001","Allegany","{""24001"": ""100""}","Allegany","24001","FALSE","FALSE","America/New_York"
-"21530","39.68927","-78.53663","Flintstone","MD","Maryland","TRUE","","1859","12.7","24001","Allegany","{""24001"": ""100""}","Allegany","24001","FALSE","FALSE","America/New_York"
-"21531","39.64832","-79.42139","Friendsville","MD","Maryland","TRUE","","1868","11.7","24023","Garrett","{""24023"": ""100""}","Garrett","24023","FALSE","FALSE","America/New_York"
-"21532","39.656","-78.95941","Frostburg","MD","Maryland","TRUE","","14726","73.0","24001","Allegany","{""24001"": ""90.26"", ""24023"": ""9.74""}","Allegany|Garrett","24001|24023","FALSE","FALSE","America/New_York"
-"21536","39.65644","-79.16853","Grantsville","MD","Maryland","TRUE","","4123","16.0","24023","Garrett","{""24023"": ""100""}","Garrett","24023","FALSE","FALSE","America/New_York"
-"21538","39.40132","-79.2211","Kitzmiller","MD","Maryland","TRUE","","410","8.9","24023","Garrett","{""24023"": ""100""}","Garrett","24023","FALSE","FALSE","America/New_York"
-"21539","39.59921","-79.01341","Lonaconing","MD","Maryland","TRUE","","2606","29.0","24001","Allegany","{""24001"": ""80.92"", ""24023"": ""19.08""}","Allegany|Garrett","24001|24023","FALSE","FALSE","America/New_York"
-"21540","39.47664","-79.0594","Luke","MD","Maryland","TRUE","","102","145.9","24001","Allegany","{""24001"": ""100""}","Allegany","24001","FALSE","FALSE","America/New_York"
-"21541","39.55454","-79.36819","McHenry","MD","Maryland","TRUE","","1421","20.9","24023","Garrett","{""24023"": ""100""}","Garrett","24023","FALSE","FALSE","America/New_York"
-"21542","39.59605","-78.94987","Midland","MD","Maryland","TRUE","","687","386.8","24001","Allegany","{""24001"": ""100""}","Allegany","24001","FALSE","FALSE","America/New_York"
-"21543","39.64929","-78.95969","Midlothian","MD","Maryland","TRUE","","276","78.3","24001","Allegany","{""24001"": ""100""}","Allegany","24001","FALSE","FALSE","America/New_York"
-"21545","39.70093","-78.86373","Mount Savage","MD","Maryland","TRUE","","1740","46.7","24001","Allegany","{""24001"": ""100""}","Allegany","24001","FALSE","FALSE","America/New_York"
-"21550","39.38906","-79.39092","Oakland","MD","Maryland","TRUE","","14077","26.7","24023","Garrett","{""24023"": ""100""}","Garrett","24023","FALSE","FALSE","America/New_York"
-"21555","39.58935","-78.55658","Oldtown","MD","Maryland","TRUE","","1586","5.8","24001","Allegany","{""24001"": ""100""}","Allegany","24001","FALSE","FALSE","America/New_York"
-"21557","39.5194","-78.92287","Rawlings","MD","Maryland","TRUE","","1410","20.2","24001","Allegany","{""24001"": ""100""}","Allegany","24001","FALSE","FALSE","America/New_York"
-"21561","39.49464","-79.20056","Swanton","MD","Maryland","TRUE","","2464","10.3","24023","Garrett","{""24023"": ""100""}","Garrett","24023","FALSE","FALSE","America/New_York"
-"21562","39.50344","-79.05051","Westernport","MD","Maryland","TRUE","","3519","46.9","24001","Allegany","{""24001"": ""98.95"", ""24023"": ""1.05""}","Allegany|Garrett","24001|24023","FALSE","FALSE","America/New_York"
-"21601","38.79377","-76.08178","Easton","MD","Maryland","TRUE","","23399","82.6","24041","Talbot","{""24041"": ""100""}","Talbot","24041","FALSE","FALSE","America/New_York"
-"21607","39.13272","-75.85418","Barclay","MD","Maryland","TRUE","","737","15.5","24035","Queen Anne's","{""24035"": ""100""}","Queen Anne's","24035","FALSE","FALSE","America/New_York"
-"21610","39.36486","-76.07909","Betterton","MD","Maryland","TRUE","","433","94.5","24029","Kent","{""24029"": ""100""}","Kent","24029","FALSE","FALSE","America/New_York"
-"21612","38.75264","-76.27533","Bozman","MD","Maryland","TRUE","","381","25.6","24041","Talbot","{""24041"": ""100""}","Talbot","24041","FALSE","FALSE","America/New_York"
-"21613","38.49315","-76.07341","Cambridge","MD","Maryland","TRUE","","17132","42.6","24019","Dorchester","{""24019"": ""100""}","Dorchester","24019","FALSE","FALSE","America/New_York"
-"21617","39.04974","-76.03974","Centreville","MD","Maryland","TRUE","","10570","37.3","24035","Queen Anne's","{""24035"": ""100""}","Queen Anne's","24035","FALSE","FALSE","America/New_York"
-"21619","38.9528","-76.27937","Chester","MD","Maryland","TRUE","","5964","248.4","24035","Queen Anne's","{""24035"": ""100""}","Queen Anne's","24035","FALSE","FALSE","America/New_York"
-"21620","39.2092","-76.09187","Chestertown","MD","Maryland","TRUE","","12850","42.5","24029","Kent","{""24029"": ""74.7"", ""24035"": ""25.3""}","Kent|Queen Anne's","24029|24035","FALSE","FALSE","America/New_York"
-"21622","38.40785","-76.17532","Church Creek","MD","Maryland","TRUE","","854","6.1","24019","Dorchester","{""24019"": ""100""}","Dorchester","24019","FALSE","FALSE","America/New_York"
-"21623","39.12272","-75.96238","Church Hill","MD","Maryland","TRUE","","1989","20.5","24035","Queen Anne's","{""24035"": ""100""}","Queen Anne's","24035","FALSE","FALSE","America/New_York"
-"21624","38.84261","-76.267","Claiborne","MD","Maryland","TRUE","","175","61.1","24041","Talbot","{""24041"": ""100""}","Talbot","24041","FALSE","FALSE","America/New_York"
-"21625","38.8734","-75.99634","Cordova","MD","Maryland","TRUE","","2583","23.9","24041","Talbot","{""24041"": ""100""}","Talbot","24041","FALSE","FALSE","America/New_York"
-"21626","38.33747","-76.09292","Crapo","MD","Maryland","TRUE","","60","0.8","24019","Dorchester","{""24019"": ""100""}","Dorchester","24019","FALSE","FALSE","America/New_York"
-"21627","38.23271","-76.04837","Crocheron","MD","Maryland","TRUE","","0","0.0","24019","Dorchester","{""24019"": ""100""}","Dorchester","24019","FALSE","FALSE","America/New_York"
-"21628","39.23665","-75.91881","Crumpton","MD","Maryland","TRUE","","448","163.5","24035","Queen Anne's","{""24035"": ""100""}","Queen Anne's","24035","FALSE","FALSE","America/New_York"
-"21629","38.86273","-75.82792","Denton","MD","Maryland","TRUE","","9396","43.8","24011","Caroline","{""24011"": ""100""}","Caroline","24011","FALSE","FALSE","America/New_York"
-"21631","38.58627","-75.94549","East New Market","MD","Maryland","TRUE","","2814","41.7","24019","Dorchester","{""24019"": ""100""}","Dorchester","24019","FALSE","FALSE","America/New_York"
-"21632","38.7275","-75.77367","Federalsburg","MD","Maryland","TRUE","","6078","31.7","24011","Caroline","{""24011"": ""88.92"", ""24019"": ""11.08""}","Caroline|Dorchester","24011|24019","FALSE","FALSE","America/New_York"
-"21634","38.28382","-76.18745","Fishing Creek","MD","Maryland","TRUE","","198","16.2","24019","Dorchester","{""24019"": ""100""}","Dorchester","24019","FALSE","FALSE","America/New_York"
-"21635","39.33861","-75.84055","Galena","MD","Maryland","TRUE","","1983","24.9","24029","Kent","{""24029"": ""100""}","Kent","24029","FALSE","FALSE","America/New_York"
-"21636","39.02408","-75.80476","Goldsboro","MD","Maryland","TRUE","","1015","17.7","24011","Caroline","{""24011"": ""100""}","Caroline","24011","FALSE","FALSE","America/New_York"
-"21638","38.94479","-76.2027","Grasonville","MD","Maryland","TRUE","","5130","202.6","24035","Queen Anne's","{""24035"": ""100""}","Queen Anne's","24035","FALSE","FALSE","America/New_York"
-"21639","38.96569","-75.79355","Greensboro","MD","Maryland","TRUE","","5279","62.1","24011","Caroline","{""24011"": ""100""}","Caroline","24011","FALSE","FALSE","America/New_York"
-"21640","39.06952","-75.81872","Henderson","MD","Maryland","TRUE","","1499","20.9","24011","Caroline","{""24011"": ""94.36"", ""24035"": ""5.64""}","Caroline|Queen Anne's","24011|24035","FALSE","FALSE","America/New_York"
-"21641","38.91776","-75.9422","Hillsboro","MD","Maryland","TRUE","","88","388.1","24011","Caroline","{""24011"": ""100""}","Caroline","24011","FALSE","FALSE","America/New_York"
-"21643","38.64781","-75.86998","Hurlock","MD","Maryland","TRUE","","5864","47.5","24019","Dorchester","{""24019"": ""100""}","Dorchester","24019","FALSE","FALSE","America/New_York"
-"21644","39.11243","-75.87355","Ingleside","MD","Maryland","TRUE","","90","8.1","24035","Queen Anne's","{""24035"": ""100""}","Queen Anne's","24035","FALSE","FALSE","America/New_York"
-"21645","39.3226","-75.96461","Kennedyville","MD","Maryland","TRUE","","1261","12.8","24029","Kent","{""24029"": ""100""}","Kent","24029","FALSE","FALSE","America/New_York"
-"21647","38.81548","-76.28035","Mcdaniel","MD","Maryland","TRUE","","288","33.7","24041","Talbot","{""24041"": ""100""}","Talbot","24041","FALSE","FALSE","America/New_York"
-"21648","38.4836","-76.23009","Madison","MD","Maryland","TRUE","","175","3.8","24019","Dorchester","{""24019"": ""100""}","Dorchester","24019","FALSE","FALSE","America/New_York"
-"21649","39.1345","-75.77017","Marydel","MD","Maryland","TRUE","","1935","43.9","24011","Caroline","{""24011"": ""82.83"", ""24035"": ""17.17""}","Caroline|Queen Anne's","24011|24035","FALSE","FALSE","America/New_York"
-"21650","39.31535","-75.80964","Massey","MD","Maryland","TRUE","","246","8.6","24029","Kent","{""24029"": ""100""}","Kent","24029","FALSE","FALSE","America/New_York"
-"21651","39.25903","-75.8534","Millington","MD","Maryland","TRUE","","2894","28.7","24029","Kent","{""24029"": ""54.49"", ""24035"": ""45.51""}","Kent|Queen Anne's","24029|24035","FALSE","FALSE","America/New_York"
-"21652","38.72083","-76.28287","Neavitt","MD","Maryland","TRUE","","118","76.0","24041","Talbot","{""24041"": ""100""}","Talbot","24041","FALSE","FALSE","America/New_York"
-"21653","38.75105","-76.17852","Newcomb","MD","Maryland","TRUE","","143","317.7","24041","Talbot","{""24041"": ""100""}","Talbot","24041","FALSE","FALSE","America/New_York"
-"21654","38.69003","-76.1258","Oxford","MD","Maryland","TRUE","","986","34.7","24041","Talbot","{""24041"": ""100""}","Talbot","24041","FALSE","FALSE","America/New_York"
-"21655","38.74525","-75.92081","Preston","MD","Maryland","TRUE","","4747","34.6","24011","Caroline","{""24011"": ""100""}","Caroline","24011","FALSE","FALSE","America/New_York"
-"21657","38.95766","-75.98489","Queen Anne","MD","Maryland","TRUE","","910","14.1","24035","Queen Anne's","{""24035"": ""88.93"", ""24041"": ""11.07""}","Queen Anne's|Talbot","24035|24041","FALSE","FALSE","America/New_York"
-"21658","38.94338","-76.1373","Queenstown","MD","Maryland","TRUE","","3987","39.1","24035","Queen Anne's","{""24035"": ""100""}","Queen Anne's","24035","FALSE","FALSE","America/New_York"
-"21659","38.58326","-75.78187","Rhodesdale","MD","Maryland","TRUE","","1356","10.9","24019","Dorchester","{""24019"": ""100""}","Dorchester","24019","FALSE","FALSE","America/New_York"
-"21660","38.95595","-75.89037","Ridgely","MD","Maryland","TRUE","","4292","50.1","24011","Caroline","{""24011"": ""100""}","Caroline","24011","FALSE","FALSE","America/New_York"
-"21661","39.12803","-76.22014","Rock Hall","MD","Maryland","TRUE","","2487","29.6","24029","Kent","{""24029"": ""100""}","Kent","24029","FALSE","FALSE","America/New_York"
-"21662","38.71249","-76.20473","Royal Oak","MD","Maryland","TRUE","","418","20.2","24041","Talbot","{""24041"": ""100""}","Talbot","24041","FALSE","FALSE","America/New_York"
-"21663","38.78478","-76.2312","Saint Michaels","MD","Maryland","TRUE","","3424","108.1","24041","Talbot","{""24041"": ""100""}","Talbot","24041","FALSE","FALSE","America/New_York"
-"21664","38.60704","-75.94526","Secretary","MD","Maryland","TRUE","","445","396.7","24019","Dorchester","{""24019"": ""100""}","Dorchester","24019","FALSE","FALSE","America/New_York"
-"21665","38.7515","-76.32291","Sherwood","MD","Maryland","TRUE","","215","20.3","24041","Talbot","{""24041"": ""100""}","Talbot","24041","FALSE","FALSE","America/New_York"
-"21666","38.93959","-76.33268","Stevensville","MD","Maryland","TRUE","","12836","226.5","24035","Queen Anne's","{""24035"": ""100""}","Queen Anne's","24035","FALSE","FALSE","America/New_York"
-"21667","39.34472","-76.05404","Still Pond","MD","Maryland","TRUE","","292","19.2","24029","Kent","{""24029"": ""100""}","Kent","24029","FALSE","FALSE","America/New_York"
-"21668","39.19032","-75.85267","Sudlersville","MD","Maryland","TRUE","","1816","14.1","24035","Queen Anne's","{""24035"": ""100""}","Queen Anne's","24035","FALSE","FALSE","America/New_York"
-"21669","38.45996","-76.28926","Taylors Island","MD","Maryland","TRUE","","254","7.9","24019","Dorchester","{""24019"": ""100""}","Dorchester","24019","FALSE","FALSE","America/New_York"
-"21671","38.69644","-76.33563","Tilghman","MD","Maryland","TRUE","","984","179.8","24041","Talbot","{""24041"": ""100""}","Talbot","24041","FALSE","FALSE","America/New_York"
-"21672","38.27684","-76.06081","Toddville","MD","Maryland","TRUE","","161","6.4","24019","Dorchester","{""24019"": ""100""}","Dorchester","24019","FALSE","FALSE","America/New_York"
-"21673","38.65194","-76.04074","Trappe","MD","Maryland","TRUE","","3270","24.4","24041","Talbot","{""24041"": ""100""}","Talbot","24041","FALSE","FALSE","America/New_York"
-"21675","38.28791","-76.08691","Wingate","MD","Maryland","TRUE","","90","10.7","24019","Dorchester","{""24019"": ""100""}","Dorchester","24019","FALSE","FALSE","America/New_York"
-"21676","38.78063","-76.32204","Wittman","MD","Maryland","TRUE","","424","26.1","24041","Talbot","{""24041"": ""100""}","Talbot","24041","FALSE","FALSE","America/New_York"
-"21677","38.48674","-76.18396","Woolford","MD","Maryland","TRUE","","446","18.4","24019","Dorchester","{""24019"": ""100""}","Dorchester","24019","FALSE","FALSE","America/New_York"
-"21678","39.30899","-76.09726","Worton","MD","Maryland","TRUE","","1842","18.9","24029","Kent","{""24029"": ""100""}","Kent","24029","FALSE","FALSE","America/New_York"
-"21679","38.91758","-76.08466","Wye Mills","MD","Maryland","TRUE","","289","12.5","24041","Talbot","{""24041"": ""100""}","Talbot","24041","FALSE","FALSE","America/New_York"
-"21701","39.44605","-77.33495","Frederick","MD","Maryland","TRUE","","37017","367.1","24021","Frederick","{""24021"": ""100""}","Frederick","24021","FALSE","FALSE","America/New_York"
-"21702","39.47869","-77.4566","Frederick","MD","Maryland","TRUE","","41815","399.7","24021","Frederick","{""24021"": ""100""}","Frederick","24021","FALSE","FALSE","America/New_York"
-"21703","39.36778","-77.46958","Frederick","MD","Maryland","TRUE","","37473","435.0","24021","Frederick","{""24021"": ""100""}","Frederick","24021","FALSE","FALSE","America/New_York"
-"21704","39.35404","-77.37499","Frederick","MD","Maryland","TRUE","","16887","248.6","24021","Frederick","{""24021"": ""100""}","Frederick","24021","FALSE","FALSE","America/New_York"
-"21705","39.40889","-77.41004","Frederick","MD","Maryland","TRUE","","3","48.9","24021","Frederick","{""24021"": ""100""}","Frederick","24021","FALSE","FALSE","America/New_York"
-"21710","39.29815","-77.44959","Adamstown","MD","Maryland","TRUE","","4859","73.4","24021","Frederick","{""24021"": ""100""}","Frederick","24021","FALSE","FALSE","America/New_York"
-"21711","39.66692","-78.01628","Big Pool","MD","Maryland","TRUE","","1076","17.4","24043","Washington","{""24043"": ""100""}","Washington","24043","FALSE","FALSE","America/New_York"
-"21713","39.52485","-77.671","Boonsboro","MD","Maryland","TRUE","","10728","98.1","24043","Washington","{""24043"": ""100""}","Washington","24043","FALSE","FALSE","America/New_York"
-"21714","39.41915","-77.50467","Braddock Heights","MD","Maryland","TRUE","","216","2880.7","24021","Frederick","{""24021"": ""100""}","Frederick","24021","FALSE","FALSE","America/New_York"
-"21716","39.31459","-77.6202","Brunswick","MD","Maryland","TRUE","","5078","607.6","24021","Frederick","{""24021"": ""100""}","Frederick","24021","FALSE","FALSE","America/New_York"
-"21717","39.33701","-77.43642","Buckeystown","MD","Maryland","TRUE","","77","81.5","24021","Frederick","{""24021"": ""100""}","Frederick","24021","FALSE","FALSE","America/New_York"
-"21718","39.39199","-77.62728","Burkittsville","MD","Maryland","TRUE","","151","128.4","24021","Frederick","{""24021"": ""100""}","Frederick","24021","FALSE","FALSE","America/New_York"
-"21719","39.70738","-77.49664","Cascade","MD","Maryland","TRUE","","1002","115.1","24043","Washington","{""24043"": ""97.48"", ""24021"": ""2.52""}","Washington|Frederick","24043|24021","FALSE","FALSE","America/New_York"
-"21722","39.66595","-77.91719","Clear Spring","MD","Maryland","TRUE","","5748","37.4","24043","Washington","{""24043"": ""100""}","Washington","24043","FALSE","FALSE","America/New_York"
-"21723","39.32541","-77.01046","Cooksville","MD","Maryland","TRUE","","759","96.1","24027","Howard","{""24027"": ""100""}","Howard","24027","FALSE","FALSE","America/New_York"
-"21727","39.68904","-77.32726","Emmitsburg","MD","Maryland","TRUE","","6792","82.0","24021","Frederick","{""24021"": ""100""}","Frederick","24021","FALSE","FALSE","America/New_York"
-"21733","39.54932","-77.75848","Fairplay","MD","Maryland","TRUE","","897","57.3","24043","Washington","{""24043"": ""100""}","Washington","24043","FALSE","FALSE","America/New_York"
-"21734","39.60769","-77.70802","Funkstown","MD","Maryland","TRUE","","816","1394.3","24043","Washington","{""24043"": ""100""}","Washington","24043","FALSE","FALSE","America/New_York"
-"21737","39.25463","-77.01982","Glenelg","MD","Maryland","TRUE","","2462","186.9","24027","Howard","{""24027"": ""100""}","Howard","24027","FALSE","FALSE","America/New_York"
-"21738","39.28093","-77.02587","Glenwood","MD","Maryland","TRUE","","3827","203.2","24027","Howard","{""24027"": ""100""}","Howard","24027","FALSE","FALSE","America/New_York"
-"21740","39.63401","-77.74244","Hagerstown","MD","Maryland","TRUE","","61768","341.5","24043","Washington","{""24043"": ""100""}","Washington","24043","FALSE","FALSE","America/New_York"
-"21742","39.66977","-77.65638","Hagerstown","MD","Maryland","TRUE","","33483","256.2","24043","Washington","{""24043"": ""100""}","Washington","24043","FALSE","FALSE","America/New_York"
-"21746","39.56503","-77.71134","Hagerstown","MD","Maryland","TRUE","","3008","3225.6","24043","Washington","{""24043"": ""100""}","Washington","24043","FALSE","FALSE","America/New_York"
-"21750","39.68671","-78.21632","Hancock","MD","Maryland","TRUE","","3694","23.6","24043","Washington","{""24043"": ""100""}","Washington","24043","FALSE","FALSE","America/New_York"
-"21754","39.33486","-77.31223","Ijamsville","MD","Maryland","TRUE","","6667","108.5","24021","Frederick","{""24021"": ""100""}","Frederick","24021","FALSE","FALSE","America/New_York"
-"21755","39.36054","-77.56701","Jefferson","MD","Maryland","TRUE","","5603","62.8","24021","Frederick","{""24021"": ""100""}","Frederick","24021","FALSE","FALSE","America/New_York"
-"21756","39.45217","-77.70062","Keedysville","MD","Maryland","TRUE","","3056","56.4","24043","Washington","{""24043"": ""100""}","Washington","24043","FALSE","FALSE","America/New_York"
-"21757","39.59986","-77.25679","Keymar","MD","Maryland","TRUE","","2793","28.6","24021","Frederick","{""24021"": ""54.08"", ""24013"": ""45.92""}","Frederick|Carroll","24021|24013","FALSE","FALSE","America/New_York"
-"21758","39.34814","-77.66498","Knoxville","MD","Maryland","TRUE","","5127","61.0","24021","Frederick","{""24021"": ""63.6"", ""24043"": ""36.4""}","Frederick|Washington","24021|24043","FALSE","FALSE","America/New_York"
-"21762","39.48088","-77.24711","Libertytown","MD","Maryland","TRUE","","202","212.0","24021","Frederick","{""24021"": ""100""}","Frederick","24021","FALSE","FALSE","America/New_York"
-"21766","39.66145","-78.39274","Little Orleans","MD","Maryland","TRUE","","483","4.9","24001","Allegany","{""24001"": ""100""}","Allegany","24001","FALSE","FALSE","America/New_York"
-"21767","39.69722","-77.74729","Maugansville","MD","Maryland","TRUE","","650","881.8","24043","Washington","{""24043"": ""100""}","Washington","24043","FALSE","FALSE","America/New_York"
-"21769","39.44498","-77.56552","Middletown","MD","Maryland","TRUE","","11629","110.1","24021","Frederick","{""24021"": ""99.66"", ""24043"": ""0.34""}","Frederick|Washington","24021|24043","FALSE","FALSE","America/New_York"
-"21770","39.35175","-77.25681","Monrovia","MD","Maryland","TRUE","","5513","192.8","24021","Frederick","{""24021"": ""100""}","Frederick","24021","FALSE","FALSE","America/New_York"
-"21771","39.3935","-77.15689","Mount Airy","MD","Maryland","TRUE","","29901","135.7","24021","Frederick","{""24021"": ""46.46"", ""24013"": ""42.51"", ""24027"": ""10.11"", ""24031"": ""0.91""}","Frederick|Carroll|Howard|Montgomery","24021|24013|24027|24031","FALSE","FALSE","America/New_York"
-"21773","39.53908","-77.55176","Myersville","MD","Maryland","TRUE","","5431","54.1","24021","Frederick","{""24021"": ""100""}","Frederick","24021","FALSE","FALSE","America/New_York"
-"21774","39.40962","-77.27592","New Market","MD","Maryland","TRUE","","13092","351.1","24021","Frederick","{""24021"": ""100""}","Frederick","24021","FALSE","FALSE","America/New_York"
-"21776","39.51621","-77.10408","New Windsor","MD","Maryland","TRUE","","5516","60.5","24013","Carroll","{""24013"": ""85.95"", ""24021"": ""14.05""}","Carroll|Frederick","24013|24021","FALSE","FALSE","America/New_York"
-"21777","39.2682","-77.52073","Point Of Rocks","MD","Maryland","TRUE","","1868","330.2","24021","Frederick","{""24021"": ""100""}","Frederick","24021","FALSE","FALSE","America/New_York"
-"21778","39.61601","-77.33581","Rocky Ridge","MD","Maryland","TRUE","","909","20.0","24021","Frederick","{""24021"": ""100""}","Frederick","24021","FALSE","FALSE","America/New_York"
-"21779","39.42689","-77.65162","Rohrersville","MD","Maryland","TRUE","","1032","44.5","24043","Washington","{""24043"": ""100""}","Washington","24043","FALSE","FALSE","America/New_York"
-"21780","39.67672","-77.4652","Sabillasville","MD","Maryland","TRUE","","1614","27.7","24021","Frederick","{""24021"": ""94.89"", ""24043"": ""5.11""}","Frederick|Washington","24021|24043","FALSE","FALSE","America/New_York"
-"21781","39.57109","-77.75967","Saint James","MD","Maryland","TRUE","","153","233.2","24043","Washington","{""24043"": ""100""}","Washington","24043","FALSE","FALSE","America/New_York"
-"21782","39.45711","-77.7615","Sharpsburg","MD","Maryland","TRUE","","4495","57.9","24043","Washington","{""24043"": ""100""}","Washington","24043","FALSE","FALSE","America/New_York"
-"21783","39.65159","-77.55503","Smithsburg","MD","Maryland","TRUE","","8894","76.5","24043","Washington","{""24043"": ""87.57"", ""24021"": ""12.43""}","Washington|Frederick","24043|24021","FALSE","FALSE","America/New_York"
-"21784","39.40106","-76.97365","Sykesville","MD","Maryland","TRUE","","37365","250.8","24013","Carroll","{""24013"": ""94.43"", ""24027"": ""5.57""}","Carroll|Howard","24013|24027","FALSE","FALSE","America/New_York"
-"21787","39.67332","-77.1698","Taneytown","MD","Maryland","TRUE","","10173","68.3","24013","Carroll","{""24013"": ""97.72"", ""24021"": ""2.28""}","Carroll|Frederick","24013|24021","FALSE","FALSE","America/New_York"
-"21788","39.59335","-77.41901","Thurmont","MD","Maryland","TRUE","","11910","68.9","24021","Frederick","{""24021"": ""100""}","Frederick","24021","FALSE","FALSE","America/New_York"
-"21790","39.2618","-77.49001","Tuscarora","MD","Maryland","TRUE","","157","15.5","24021","Frederick","{""24021"": ""100""}","Frederick","24021","FALSE","FALSE","America/New_York"
-"21791","39.53988","-77.18726","Union Bridge","MD","Maryland","TRUE","","5245","41.1","24013","Carroll","{""24013"": ""52.83"", ""24021"": ""47.17""}","Carroll|Frederick","24013|24021","FALSE","FALSE","America/New_York"
-"21793","39.49104","-77.34474","Walkersville","MD","Maryland","TRUE","","10416","197.1","24021","Frederick","{""24021"": ""100""}","Frederick","24021","FALSE","FALSE","America/New_York"
-"21794","39.29664","-76.9727","West Friendship","MD","Maryland","TRUE","","2277","100.7","24027","Howard","{""24027"": ""100""}","Howard","24027","FALSE","FALSE","America/New_York"
-"21795","39.58216","-77.82589","Williamsport","MD","Maryland","TRUE","","9147","116.9","24043","Washington","{""24043"": ""100""}","Washington","24043","FALSE","FALSE","America/New_York"
-"21797","39.3336","-77.06992","Woodbine","MD","Maryland","TRUE","","8873","79.1","24027","Howard","{""24027"": ""65.43"", ""24013"": ""34.57""}","Howard|Carroll","24027|24013","FALSE","FALSE","America/New_York"
-"21798","39.53657","-77.30129","Woodsboro","MD","Maryland","TRUE","","2057","48.0","24021","Frederick","{""24021"": ""100""}","Frederick","24021","FALSE","FALSE","America/New_York"
-"21801","38.38055","-75.64148","Salisbury","MD","Maryland","TRUE","","29866","272.6","24045","Wicomico","{""24045"": ""100""}","Wicomico","24045","FALSE","FALSE","America/New_York"
-"21802","38.3447","-75.58257","Salisbury","MD","Maryland","TRUE","","90","661.6","24045","Wicomico","{""24045"": ""100""}","Wicomico","24045","FALSE","FALSE","America/New_York"
-"21804","38.31275","-75.53322","Salisbury","MD","Maryland","TRUE","","40877","212.4","24045","Wicomico","{""24045"": ""99.28"", ""24047"": ""0.72""}","Wicomico|Worcester","24045|24047","FALSE","FALSE","America/New_York"
-"21810","38.29821","-75.70992","Allen","MD","Maryland","TRUE","","814","32.6","24045","Wicomico","{""24045"": ""100""}","Wicomico","24045","FALSE","FALSE","America/New_York"
-"21811","38.32022","-75.21805","Berlin","MD","Maryland","TRUE","","24071","92.3","24047","Worcester","{""24047"": ""100""}","Worcester","24047","FALSE","FALSE","America/New_York"
-"21813","38.42616","-75.16416","Bishopville","MD","Maryland","TRUE","","2672","41.6","24047","Worcester","{""24047"": ""100""}","Worcester","24047","FALSE","FALSE","America/New_York"
-"21814","38.29207","-75.88614","Bivalve","MD","Maryland","TRUE","","268","27.9","24045","Wicomico","{""24045"": ""100""}","Wicomico","24045","FALSE","FALSE","America/New_York"
-"21817","37.98231","-75.83495","Crisfield","MD","Maryland","TRUE","","4515","119.1","24039","Somerset","{""24039"": ""100""}","Somerset","24039","FALSE","FALSE","America/New_York"
-"21821","38.1666","-75.92042","Deal Island","MD","Maryland","TRUE","","871","30.8","24039","Somerset","{""24039"": ""100""}","Somerset","24039","FALSE","FALSE","America/New_York"
-"21822","38.27519","-75.6376","Eden","MD","Maryland","TRUE","","1687","23.1","24039","Somerset","{""24039"": ""50.36"", ""24045"": ""40.57"", ""24047"": ""9.07""}","Somerset|Wicomico|Worcester","24039|24045|24047","FALSE","FALSE","America/New_York"
-"21824","37.98348","-76.03473","Ewell","MD","Maryland","TRUE","","101","17.7","24039","Somerset","{""24039"": ""100""}","Somerset","24039","FALSE","FALSE","America/New_York"
-"21826","38.31705","-75.62696","Fruitland","MD","Maryland","TRUE","","5325","461.8","24045","Wicomico","{""24045"": ""100""}","Wicomico","24045","FALSE","FALSE","America/New_York"
-"21829","38.09553","-75.37947","Girdletree","MD","Maryland","TRUE","","401","8.5","24047","Worcester","{""24047"": ""100""}","Worcester","24047","FALSE","FALSE","America/New_York"
-"21830","38.40037","-75.73244","Hebron","MD","Maryland","TRUE","","4060","50.1","24045","Wicomico","{""24045"": ""100""}","Wicomico","24045","FALSE","FALSE","America/New_York"
-"21835","38.53308","-75.94577","Linkwood","MD","Maryland","TRUE","","337","16.2","24019","Dorchester","{""24019"": ""100""}","Dorchester","24019","FALSE","FALSE","America/New_York"
-"21837","38.45901","-75.76683","Mardela Springs","MD","Maryland","TRUE","","3200","27.8","24045","Wicomico","{""24045"": ""100""}","Wicomico","24045","FALSE","FALSE","America/New_York"
-"21838","38.01378","-75.73083","Marion Station","MD","Maryland","TRUE","","1657","12.0","24039","Somerset","{""24039"": ""100""}","Somerset","24039","FALSE","FALSE","America/New_York"
-"21840","38.25807","-75.89272","Nanticoke","MD","Maryland","TRUE","","438","32.3","24045","Wicomico","{""24045"": ""100""}","Wicomico","24045","FALSE","FALSE","America/New_York"
-"21841","38.24732","-75.29533","Newark","MD","Maryland","TRUE","","1580","19.8","24047","Worcester","{""24047"": ""100""}","Worcester","24047","FALSE","FALSE","America/New_York"
-"21842","38.37243","-75.09279","Ocean City","MD","Maryland","TRUE","","10655","456.6","24047","Worcester","{""24047"": ""100""}","Worcester","24047","FALSE","FALSE","America/New_York"
-"21849","38.37573","-75.46149","Parsonsburg","MD","Maryland","TRUE","","3577","39.7","24045","Wicomico","{""24045"": ""100""}","Wicomico","24045","FALSE","FALSE","America/New_York"
-"21850","38.36055","-75.39935","Pittsville","MD","Maryland","TRUE","","2935","36.4","24045","Wicomico","{""24045"": ""100""}","Wicomico","24045","FALSE","FALSE","America/New_York"
-"21851","38.0793","-75.54305","Pocomoke City","MD","Maryland","TRUE","","6949","25.4","24047","Worcester","{""24047"": ""91.05"", ""24039"": ""8.95""}","Worcester|Somerset","24047|24039","FALSE","FALSE","America/New_York"
-"21853","38.20319","-75.71508","Princess Anne","MD","Maryland","TRUE","","11957","38.8","24039","Somerset","{""24039"": ""100""}","Somerset","24039","FALSE","FALSE","America/New_York"
-"21856","38.33516","-75.79155","Quantico","MD","Maryland","TRUE","","875","9.6","24045","Wicomico","{""24045"": ""100""}","Wicomico","24045","FALSE","FALSE","America/New_York"
-"21861","38.53529","-75.72826","Sharptown","MD","Maryland","TRUE","","689","101.5","24045","Wicomico","{""24045"": ""100""}","Wicomico","24045","FALSE","FALSE","America/New_York"
-"21862","38.39758","-75.22379","Showell","MD","Maryland","TRUE","","90","26.9","24047","Worcester","{""24047"": ""100""}","Worcester","24047","FALSE","FALSE","America/New_York"
-"21863","38.19242","-75.39846","Snow Hill","MD","Maryland","TRUE","","4657","15.5","24047","Worcester","{""24047"": ""100""}","Worcester","24047","FALSE","FALSE","America/New_York"
-"21864","38.04199","-75.40638","Stockton","MD","Maryland","TRUE","","548","9.9","24047","Worcester","{""24047"": ""100""}","Worcester","24047","FALSE","FALSE","America/New_York"
-"21865","38.28504","-75.84124","Tyaskin","MD","Maryland","TRUE","","594","14.2","24045","Wicomico","{""24045"": ""100""}","Wicomico","24045","FALSE","FALSE","America/New_York"
-"21866","37.96745","-76.02142","Tylerton","MD","Maryland","TRUE","","48","150.8","24039","Somerset","{""24039"": ""100""}","Somerset","24039","FALSE","FALSE","America/New_York"
-"21867","38.10959","-75.79362","Upper Fairmount","MD","Maryland","TRUE","","23","32.4","24039","Somerset","{""24039"": ""100""}","Somerset","24039","FALSE","FALSE","America/New_York"
-"21869","38.44243","-75.89174","Vienna","MD","Maryland","TRUE","","1145","4.7","24019","Dorchester","{""24019"": ""100""}","Dorchester","24019","FALSE","FALSE","America/New_York"
-"21871","38.10383","-75.73073","Westover","MD","Maryland","TRUE","","2198","12.5","24039","Somerset","{""24039"": ""100""}","Somerset","24039","FALSE","FALSE","America/New_York"
-"21872","38.41936","-75.29454","Whaleyville","MD","Maryland","TRUE","","379","8.1","24047","Worcester","{""24047"": ""100""}","Worcester","24047","FALSE","FALSE","America/New_York"
-"21874","38.39166","-75.35243","Willards","MD","Maryland","TRUE","","1874","27.1","24045","Wicomico","{""24045"": ""100""}","Wicomico","24045","FALSE","FALSE","America/New_York"
-"21875","38.44082","-75.54922","Delmar","MD","Maryland","TRUE","","6676","109.8","24045","Wicomico","{""24045"": ""100""}","Wicomico","24045","FALSE","FALSE","America/New_York"
-"21890","38.15732","-75.70404","Westover","MD","Maryland","TRUE","","2816","8224.2","24039","Somerset","{""24039"": ""100""}","Somerset","24039","FALSE","FALSE","America/New_York"
-"21901","39.58572","-75.95843","North East","MD","Maryland","TRUE","","16790","131.8","24015","Cecil","{""24015"": ""100""}","Cecil","24015","FALSE","FALSE","America/New_York"
-"21902","39.55195","-76.06319","Perry Point","MD","Maryland","TRUE","","215","103.2","24015","Cecil","{""24015"": ""100""}","Cecil","24015","FALSE","FALSE","America/New_York"
-"21903","39.57296","-76.03994","Perryville","MD","Maryland","TRUE","","5947","189.4","24015","Cecil","{""24015"": ""100""}","Cecil","24015","FALSE","FALSE","America/New_York"
-"21904","39.62315","-76.07802","Port Deposit","MD","Maryland","TRUE","","7075","114.8","24015","Cecil","{""24015"": ""100""}","Cecil","24015","FALSE","FALSE","America/New_York"
-"21911","39.68931","-76.03823","Rising Sun","MD","Maryland","TRUE","","11130","115.5","24015","Cecil","{""24015"": ""100""}","Cecil","24015","FALSE","FALSE","America/New_York"
-"21912","39.42065","-75.81637","Warwick","MD","Maryland","TRUE","","1139","14.0","24015","Cecil","{""24015"": ""99.27"", ""10003"": ""0.73""}","Cecil|New Castle","24015|10003","FALSE","FALSE","America/New_York"
-"21913","39.40454","-75.86757","Cecilton","MD","Maryland","TRUE","","880","733.3","24015","Cecil","{""24015"": ""100""}","Cecil","24015","FALSE","FALSE","America/New_York"
-"21914","39.57303","-75.98187","Charlestown","MD","Maryland","TRUE","","860","446.6","24015","Cecil","{""24015"": ""100""}","Cecil","24015","FALSE","FALSE","America/New_York"
-"21915","39.49906","-75.84411","Chesapeake City","MD","Maryland","TRUE","","2949","45.0","24015","Cecil","{""24015"": ""100""}","Cecil","24015","FALSE","FALSE","America/New_York"
-"21916","39.64119","-75.86182","Childs","MD","Maryland","TRUE","","44","187.0","24015","Cecil","{""24015"": ""100""}","Cecil","24015","FALSE","FALSE","America/New_York"
-"21917","39.6714","-76.09828","Colora","MD","Maryland","TRUE","","2127","105.0","24015","Cecil","{""24015"": ""100""}","Cecil","24015","FALSE","FALSE","America/New_York"
-"21918","39.68362","-76.16681","Conowingo","MD","Maryland","TRUE","","3692","80.7","24015","Cecil","{""24015"": ""100""}","Cecil","24015","FALSE","FALSE","America/New_York"
-"21919","39.42031","-75.93263","Earleville","MD","Maryland","TRUE","","2919","25.9","24015","Cecil","{""24015"": ""100""}","Cecil","24015","FALSE","FALSE","America/New_York"
-"21920","39.65746","-75.82839","Elk Mills","MD","Maryland","TRUE","","491","380.5","24015","Cecil","{""24015"": ""100""}","Cecil","24015","FALSE","FALSE","America/New_York"
-"21921","39.62629","-75.85882","Elkton","MD","Maryland","TRUE","","46162","188.4","24015","Cecil","{""24015"": ""100""}","Cecil","24015","FALSE","FALSE","America/New_York"
-"21930","39.37212","-75.88996","Georgetown","MD","Maryland","TRUE","","132","69.2","24015","Cecil","{""24015"": ""100""}","Cecil","24015","FALSE","FALSE","America/New_York"
-"22003","38.83076","-77.21443","Annandale","VA","Virginia","TRUE","","59375","1842.0","51059","Fairfax","{""51059"": ""100""}","Fairfax","51059","FALSE","FALSE","America/New_York"
-"22015","38.78812","-77.28116","Burke","VA","Virginia","TRUE","","44523","2050.3","51059","Fairfax","{""51059"": ""100""}","Fairfax","51059","FALSE","FALSE","America/New_York"
-"22025","38.59932","-77.34028","Dumfries","VA","Virginia","TRUE","","18909","1071.4","51153","Prince William","{""51153"": ""100""}","Prince William","51153","FALSE","FALSE","America/New_York"
-"22026","38.5666","-77.29482","Dumfries","VA","Virginia","TRUE","","16465","788.2","51153","Prince William","{""51153"": ""100""}","Prince William","51153","FALSE","FALSE","America/New_York"
-"22027","38.89452","-77.22126","Dunn Loring","VA","Virginia","TRUE","","2003","1193.4","51059","Fairfax","{""51059"": ""100""}","Fairfax","51059","FALSE","FALSE","America/New_York"
-"22030","38.83937","-77.34167","Fairfax","VA","Virginia","TRUE","","59332","1213.6","51059","Fairfax","{""51059"": ""68.17"", ""51600"": ""31.83""}","Fairfax|Fairfax","51059|51600","FALSE","FALSE","America/New_York"
-"22031","38.85999","-77.26006","Fairfax","VA","Virginia","TRUE","","33379","1887.8","51059","Fairfax","{""51059"": ""86.62"", ""51600"": ""13.38""}","Fairfax|Fairfax","51059|51600","FALSE","FALSE","America/New_York"
-"22032","38.82046","-77.28999","Fairfax","VA","Virginia","TRUE","","31201","1626.7","51059","Fairfax","{""51059"": ""96.43"", ""51600"": ""3.57""}","Fairfax|Fairfax","51059|51600","FALSE","FALSE","America/New_York"
-"22033","38.87521","-77.38454","Fairfax","VA","Virginia","TRUE","","39478","2015.3","51059","Fairfax","{""51059"": ""100""}","Fairfax","51059","FALSE","FALSE","America/New_York"
-"22035","38.85526","-77.35826","Fairfax","VA","Virginia","TRUE","","0","0.0","51059","Fairfax","{""51059"": ""0""}","Fairfax","51059","FALSE","FALSE","America/New_York"
-"22039","38.75269","-77.31754","Fairfax Station","VA","Virginia","TRUE","","17598","288.6","51059","Fairfax","{""51059"": ""100""}","Fairfax","51059","FALSE","FALSE","America/New_York"
-"22041","38.84806","-77.14197","Falls Church","VA","Virginia","TRUE","","28429","3933.7","51059","Fairfax","{""51059"": ""100""}","Fairfax","51059","FALSE","FALSE","America/New_York"
-"22042","38.8644","-77.19563","Falls Church","VA","Virginia","TRUE","","35174","2055.3","51059","Fairfax","{""51059"": ""99.16"", ""51610"": ""0.84""}","Fairfax|Falls Church","51059|51610","FALSE","FALSE","America/New_York"
-"22043","38.90029","-77.19732","Falls Church","VA","Virginia","TRUE","","24806","2011.6","51059","Fairfax","{""51059"": ""100""}","Fairfax","51059","FALSE","FALSE","America/New_York"
-"22044","38.85971","-77.15559","Falls Church","VA","Virginia","TRUE","","13616","2404.4","51059","Fairfax","{""51059"": ""89.36"", ""51610"": ""10.64""}","Fairfax|Falls Church","51059|51610","FALSE","FALSE","America/New_York"
-"22046","38.88711","-77.18076","Falls Church","VA","Virginia","TRUE","","18698","2559.1","51610","Falls Church","{""51610"": ""64.88"", ""51059"": ""35.12""}","Falls Church|Fairfax","51610|51059","FALSE","FALSE","America/New_York"
-"22060","38.70543","-77.15639","Fort Belvoir","VA","Virginia","TRUE","","9489","278.2","51059","Fairfax","{""51059"": ""100""}","Fairfax","51059","FALSE","FALSE","America/New_York"
-"22066","39.00895","-77.30026","Great Falls","VA","Virginia","TRUE","","17767","254.3","51059","Fairfax","{""51059"": ""93.54"", ""51107"": ""6.46""}","Fairfax|Loudoun","51059|51107","FALSE","FALSE","America/New_York"
-"22079","38.68071","-77.20888","Lorton","VA","Virginia","TRUE","","36559","482.8","51059","Fairfax","{""51059"": ""100""}","Fairfax","51059","FALSE","FALSE","America/New_York"
-"22101","38.93942","-77.16663","McLean","VA","Virginia","TRUE","","29892","846.2","51059","Fairfax","{""51059"": ""99.88"", ""51013"": ""0.12""}","Fairfax|Arlington","51059|51013","FALSE","FALSE","America/New_York"
-"22102","38.94813","-77.22788","McLean","VA","Virginia","TRUE","","25627","944.2","51059","Fairfax","{""51059"": ""100""}","Fairfax","51059","FALSE","FALSE","America/New_York"
-"22124","38.89056","-77.33028","Oakton","VA","Virginia","TRUE","","18530","705.8","51059","Fairfax","{""51059"": ""100""}","Fairfax","51059","FALSE","FALSE","America/New_York"
-"22125","38.68228","-77.26075","Occoquan","VA","Virginia","TRUE","","955","2624.7","51153","Prince William","{""51153"": ""100""}","Prince William","51153","FALSE","FALSE","America/New_York"
-"22134","38.51861","-77.38479","Quantico","VA","Virginia","TRUE","","7537","123.0","51153","Prince William","{""51153"": ""71.87"", ""51179"": ""28.13""}","Prince William|Stafford","51153|51179","FALSE","FALSE","America/New_York"
-"22150","38.77242","-77.18599","Springfield","VA","Virginia","TRUE","","28905","1485.2","51059","Fairfax","{""51059"": ""100""}","Fairfax","51059","FALSE","FALSE","America/New_York"
-"22151","38.80286","-77.2095","Springfield","VA","Virginia","TRUE","","17917","1354.8","51059","Fairfax","{""51059"": ""100""}","Fairfax","51059","FALSE","FALSE","America/New_York"
-"22152","38.77578","-77.23156","Springfield","VA","Virginia","TRUE","","30624","1987.0","51059","Fairfax","{""51059"": ""100""}","Fairfax","51059","FALSE","FALSE","America/New_York"
-"22153","38.74484","-77.23465","Springfield","VA","Virginia","TRUE","","31196","1356.3","51059","Fairfax","{""51059"": ""100""}","Fairfax","51059","FALSE","FALSE","America/New_York"
-"22172","38.56708","-77.36486","Triangle","VA","Virginia","TRUE","","9934","303.8","51153","Prince William","{""51153"": ""100""}","Prince William","51153","FALSE","FALSE","America/New_York"
-"22180","38.89655","-77.25486","Vienna","VA","Virginia","TRUE","","24366","1620.4","51059","Fairfax","{""51059"": ""100""}","Fairfax","51059","FALSE","FALSE","America/New_York"
-"22181","38.90635","-77.29438","Vienna","VA","Virginia","TRUE","","15350","1041.0","51059","Fairfax","{""51059"": ""100""}","Fairfax","51059","FALSE","FALSE","America/New_York"
-"22182","38.93568","-77.27194","Vienna","VA","Virginia","TRUE","","26124","857.0","51059","Fairfax","{""51059"": ""100""}","Fairfax","51059","FALSE","FALSE","America/New_York"
-"22185","38.87463","-77.30401","Vienna","VA","Virginia","TRUE","","0","0.0","51059","Fairfax","{""51059"": ""0""}","Fairfax","51059","FALSE","FALSE","America/New_York"
-"22191","38.62411","-77.26905","Woodbridge","VA","Virginia","TRUE","","71019","1734.3","51153","Prince William","{""51153"": ""100""}","Prince William","51153","FALSE","FALSE","America/New_York"
-"22192","38.68334","-77.3161","Woodbridge","VA","Virginia","TRUE","","58690","1223.2","51153","Prince William","{""51153"": ""100""}","Prince William","51153","FALSE","FALSE","America/New_York"
-"22193","38.64308","-77.34807","Woodbridge","VA","Virginia","TRUE","","82309","1797.2","51153","Prince William","{""51153"": ""100""}","Prince William","51153","FALSE","FALSE","America/New_York"
-"22201","38.88665","-77.09518","Arlington","VA","Virginia","TRUE","","38541","6369.5","51013","Arlington","{""51013"": ""100""}","Arlington","51013","FALSE","FALSE","America/New_York"
-"22202","38.85639","-77.0517","Arlington","VA","Virginia","TRUE","","25409","2536.1","51013","Arlington","{""51013"": ""100""}","Arlington","51013","FALSE","FALSE","America/New_York"
-"22203","38.87376","-77.11726","Arlington","VA","Virginia","TRUE","","24309","6141.9","51013","Arlington","{""51013"": ""100""}","Arlington","51013","FALSE","FALSE","America/New_York"
-"22204","38.86083","-77.09894","Arlington","VA","Virginia","TRUE","","54617","5117.9","51013","Arlington","{""51013"": ""100""}","Arlington","51013","FALSE","FALSE","America/New_York"
-"22205","38.88348","-77.13957","Arlington","VA","Virginia","TRUE","","18982","2699.6","51013","Arlington","{""51013"": ""99.9"", ""51610"": ""0.1""}","Arlington|Falls Church","51013|51610","FALSE","FALSE","America/New_York"
-"22206","38.84412","-77.08891","Arlington","VA","Virginia","TRUE","","20508","3855.6","51013","Arlington","{""51013"": ""98.08"", ""51510"": ""1.92""}","Arlington|Alexandria","51013|51510","FALSE","FALSE","America/New_York"
-"22207","38.90662","-77.12384","Arlington","VA","Virginia","TRUE","","33170","1987.8","51013","Arlington","{""51013"": ""99.72"", ""51059"": ""0.28""}","Arlington|Fairfax","51013|51059","FALSE","FALSE","America/New_York"
-"22209","38.89469","-77.07532","Arlington","VA","Virginia","TRUE","","13227","8510.5","51013","Arlington","{""51013"": ""100""}","Arlington","51013","FALSE","FALSE","America/New_York"
-"22211","38.8802","-77.07067","Fort Myer","VA","Virginia","TRUE","","1353","298.7","51013","Arlington","{""51013"": ""100""}","Arlington","51013","FALSE","FALSE","America/New_York"
-"22213","38.89529","-77.16244","Arlington","VA","Virginia","TRUE","","3713","2471.0","51013","Arlington","{""51013"": ""100""}","Arlington","51013","FALSE","FALSE","America/New_York"
-"22214","38.86883","-77.07397","Arlington","VA","Virginia","TRUE","","0","0.0","51013","Arlington","{""51013"": ""0""}","Arlington","51013","FALSE","FALSE","America/New_York"
-"22301","38.82002","-77.05961","Alexandria","VA","Virginia","TRUE","","13377","3660.2","51510","Alexandria","{""51510"": ""100""}","Alexandria","51510","FALSE","FALSE","America/New_York"
-"22302","38.8281","-77.08485","Alexandria","VA","Virginia","TRUE","","17566","3030.9","51510","Alexandria","{""51510"": ""94.62"", ""51059"": ""5.38""}","Alexandria|Fairfax","51510|51059","FALSE","FALSE","America/New_York"
-"22303","38.79331","-77.07853","Alexandria","VA","Virginia","TRUE","","14558","3873.3","51059","Fairfax","{""51059"": ""100""}","Fairfax","51059","FALSE","FALSE","America/New_York"
-"22304","38.81377","-77.11394","Alexandria","VA","Virginia","TRUE","","48510","4040.8","51510","Alexandria","{""51510"": ""99.63"", ""51059"": ""0.37""}","Alexandria|Fairfax","51510|51059","FALSE","FALSE","America/New_York"
-"22305","38.83646","-77.06247","Alexandria","VA","Virginia","TRUE","","18579","5318.7","51510","Alexandria","{""51510"": ""100""}","Alexandria","51510","FALSE","FALSE","America/New_York"
-"22306","38.7567","-77.0929","Alexandria","VA","Virginia","TRUE","","35425","1888.8","51059","Fairfax","{""51059"": ""100""}","Fairfax","51059","FALSE","FALSE","America/New_York"
-"22307","38.77203","-77.05739","Alexandria","VA","Virginia","TRUE","","9902","1321.4","51059","Fairfax","{""51059"": ""100""}","Fairfax","51059","FALSE","FALSE","America/New_York"
-"22308","38.73131","-77.05774","Alexandria","VA","Virginia","TRUE","","13610","1169.4","51059","Fairfax","{""51059"": ""100""}","Fairfax","51059","FALSE","FALSE","America/New_York"
-"22309","38.71932","-77.10725","Alexandria","VA","Virginia","TRUE","","37464","1921.4","51059","Fairfax","{""51059"": ""100""}","Fairfax","51059","FALSE","FALSE","America/New_York"
-"22310","38.78468","-77.12148","Alexandria","VA","Virginia","TRUE","","32380","1743.5","51059","Fairfax","{""51059"": ""100""}","Fairfax","51059","FALSE","FALSE","America/New_York"
-"22311","38.83438","-77.12238","Alexandria","VA","Virginia","TRUE","","19002","4768.3","51510","Alexandria","{""51510"": ""92.95"", ""51059"": ""7.05""}","Alexandria|Fairfax","51510|51059","FALSE","FALSE","America/New_York"
-"22312","38.81648","-77.15368","Alexandria","VA","Virginia","TRUE","","32566","2343.0","51059","Fairfax","{""51059"": ""76.18"", ""51510"": ""23.82""}","Fairfax|Alexandria","51059|51510","FALSE","FALSE","America/New_York"
-"22314","38.80723","-77.05683","Alexandria","VA","Virginia","TRUE","","34378","3489.2","51510","Alexandria","{""51510"": ""100""}","Alexandria","51510","FALSE","FALSE","America/New_York"
-"22315","38.756","-77.15058","Alexandria","VA","Virginia","TRUE","","29470","2081.0","51059","Fairfax","{""51059"": ""100""}","Fairfax","51059","FALSE","FALSE","America/New_York"
-"22401","38.29918","-77.48713","Fredericksburg","VA","Virginia","TRUE","","28622","1057.3","51630","Fredericksburg","{""51630"": ""100""}","Fredericksburg","51630","FALSE","FALSE","America/New_York"
-"22405","38.31521","-77.40371","Fredericksburg","VA","Virginia","TRUE","","31747","232.2","51179","Stafford","{""51179"": ""100""}","Stafford","51179","FALSE","FALSE","America/New_York"
-"22406","38.40022","-77.55114","Fredericksburg","VA","Virginia","TRUE","","26256","139.6","51179","Stafford","{""51179"": ""99.92"", ""51061"": ""0.08""}","Stafford|Fauquier","51179|51061","FALSE","FALSE","America/New_York"
-"22407","38.2834","-77.57529","Fredericksburg","VA","Virginia","TRUE","","58826","400.5","51177","Spotsylvania","{""51177"": ""100""}","Spotsylvania","51177","FALSE","FALSE","America/New_York"
-"22408","38.22075","-77.44514","Fredericksburg","VA","Virginia","TRUE","","30285","254.6","51177","Spotsylvania","{""51177"": ""99.08"", ""51033"": ""0.92""}","Spotsylvania|Caroline","51177|51033","FALSE","FALSE","America/New_York"
-"22427","38.09231","-77.27064","Bowling Green","VA","Virginia","TRUE","","5349","13.5","51033","Caroline","{""51033"": ""100""}","Caroline","51033","FALSE","FALSE","America/New_York"
-"22432","37.86906","-76.34909","Burgess","VA","Virginia","TRUE","","241","22.5","51133","Northumberland","{""51133"": ""100""}","Northumberland","51133","FALSE","FALSE","America/New_York"
-"22433","38.3579","-77.86348","Burr Hill","VA","Virginia","TRUE","","427","39.3","51137","Orange","{""51137"": ""100""}","Orange","51137","FALSE","FALSE","America/New_York"
-"22435","37.9717","-76.57188","Callao","VA","Virginia","TRUE","","2471","37.3","51133","Northumberland","{""51133"": ""94.63"", ""51159"": ""4.18"", ""51193"": ""1.19""}","Northumberland|Richmond|Westmoreland","51133|51159|51193","FALSE","FALSE","America/New_York"
-"22436","38.04212","-77.07106","Caret","VA","Virginia","TRUE","","736","10.0","51057","Essex","{""51057"": ""100""}","Essex","51057","FALSE","FALSE","America/New_York"
-"22437","37.77657","-76.80916","Center Cross","VA","Virginia","TRUE","","888","8.3","51057","Essex","{""51057"": ""84.69"", ""51097"": ""15.31""}","Essex|King and Queen","51057|51097","FALSE","FALSE","America/New_York"
-"22438","38.03834","-76.99114","Champlain","VA","Virginia","TRUE","","358","3.3","51057","Essex","{""51057"": ""100""}","Essex","51057","FALSE","FALSE","America/New_York"
-"22443","38.17862","-76.9962","Colonial Beach","VA","Virginia","TRUE","","8872","56.2","51193","Westmoreland","{""51193"": ""100""}","Westmoreland","51193","FALSE","FALSE","America/New_York"
-"22448","38.3405","-77.03217","Dahlgren","VA","Virginia","TRUE","","646","59.3","51099","King George","{""51099"": ""100""}","King George","51099","FALSE","FALSE","America/New_York"
-"22454","37.84077","-76.84591","Dunnsville","VA","Virginia","TRUE","","1746","16.6","51057","Essex","{""51057"": ""100""}","Essex","51057","FALSE","FALSE","America/New_York"
-"22460","37.87589","-76.60731","Farnham","VA","Virginia","TRUE","","1344","9.0","51159","Richmond","{""51159"": ""100""}","Richmond","51159","FALSE","FALSE","America/New_York"
-"22469","38.07","-76.6536","Hague","VA","Virginia","TRUE","","1738","21.5","51193","Westmoreland","{""51193"": ""100""}","Westmoreland","51193","FALSE","FALSE","America/New_York"
-"22473","37.88529","-76.41935","Heathsville","VA","Virginia","TRUE","","5061","17.4","51133","Northumberland","{""51133"": ""98.39"", ""51103"": ""1.61""}","Northumberland|Lancaster","51133|51103","FALSE","FALSE","America/New_York"
-"22476","38.04281","-77.07113","Hustle","VA","Virginia","TRUE","","238","5.2","51057","Essex","{""51057"": ""100""}","Essex","51057","FALSE","FALSE","America/New_York"
-"22480","37.66653","-76.41511","Irvington","VA","Virginia","TRUE","","647","97.7","51103","Lancaster","{""51103"": ""100""}","Lancaster","51103","FALSE","FALSE","America/New_York"
-"22482","37.73409","-76.35442","Kilmarnock","VA","Virginia","TRUE","","3173","40.2","51103","Lancaster","{""51103"": ""65.69"", ""51133"": ""34.31""}","Lancaster|Northumberland","51103|51133","FALSE","FALSE","America/New_York"
-"22485","38.27166","-77.16006","King George","VA","Virginia","TRUE","","25606","56.3","51099","King George","{""51099"": ""99.92"", ""51193"": ""0.08""}","King George|Westmoreland","51099|51193","FALSE","FALSE","America/New_York"
-"22488","38.04632","-76.59111","Kinsale","VA","Virginia","TRUE","","860","12.2","51193","Westmoreland","{""51193"": ""100""}","Westmoreland","51193","FALSE","FALSE","America/New_York"
-"22503","37.76227","-76.50215","Lancaster","VA","Virginia","TRUE","","3208","14.1","51103","Lancaster","{""51103"": ""100""}","Lancaster","51103","FALSE","FALSE","America/New_York"
-"22504","37.76328","-76.71059","Laneview","VA","Virginia","TRUE","","384","16.3","51057","Essex","{""51057"": ""82.51"", ""51119"": ""17.49""}","Essex|Middlesex","51057|51119","FALSE","FALSE","America/New_York"
-"22508","38.31812","-77.78725","Locust Grove","VA","Virginia","TRUE","","14750","102.9","51137","Orange","{""51137"": ""91.87"", ""51177"": ""8.13""}","Orange|Spotsylvania","51137|51177","FALSE","FALSE","America/New_York"
-"22509","38.12101","-77.07479","Loretto","VA","Virginia","TRUE","","102","3.4","51057","Essex","{""51057"": ""100""}","Essex","51057","FALSE","FALSE","America/New_York"
-"22511","37.98868","-76.50515","Lottsburg","VA","Virginia","TRUE","","871","23.7","51133","Northumberland","{""51133"": ""100""}","Northumberland","51133","FALSE","FALSE","America/New_York"
-"22514","37.97427","-77.24636","Milford","VA","Virginia","TRUE","","2195","9.7","51033","Caroline","{""51033"": ""99.73"", ""51097"": ""0.27""}","Caroline|King and Queen","51033|51097","FALSE","FALSE","America/New_York"
-"22520","38.11794","-76.80415","Montross","VA","Virginia","TRUE","","5636","23.8","51193","Westmoreland","{""51193"": ""100""}","Westmoreland","51193","FALSE","FALSE","America/New_York"
-"22529","38.00963","-76.68586","Oldhams","VA","Virginia","TRUE","","154","5.4","51193","Westmoreland","{""51193"": ""100""}","Westmoreland","51193","FALSE","FALSE","America/New_York"
-"22530","37.90103","-76.28057","Ophelia","VA","Virginia","TRUE","","168","43.1","51133","Northumberland","{""51133"": ""100""}","Northumberland","51133","FALSE","FALSE","America/New_York"
-"22534","38.0794","-77.67173","Partlow","VA","Virginia","TRUE","","3228","36.7","51177","Spotsylvania","{""51177"": ""100""}","Spotsylvania","51177","FALSE","FALSE","America/New_York"
-"22535","38.1521","-77.16466","Port Royal","VA","Virginia","TRUE","","554","22.5","51033","Caroline","{""51033"": ""100""}","Caroline","51033","FALSE","FALSE","America/New_York"
-"22538","38.2062","-77.25121","Rappahannock Academy","VA","Virginia","TRUE","","121","3.5","51033","Caroline","{""51033"": ""100""}","Caroline","51033","FALSE","FALSE","America/New_York"
-"22539","37.85905","-76.28774","Reedville","VA","Virginia","TRUE","","2234","50.7","51133","Northumberland","{""51133"": ""100""}","Northumberland","51133","FALSE","FALSE","America/New_York"
-"22542","38.29321","-77.88264","Rhoadesville","VA","Virginia","TRUE","","1761","32.9","51137","Orange","{""51137"": ""100""}","Orange","51137","FALSE","FALSE","America/New_York"
-"22546","37.94192","-77.44866","Ruther Glen","VA","Virginia","TRUE","","16334","38.9","51033","Caroline","{""51033"": ""96.86"", ""51085"": ""3.14""}","Caroline|Hanover","51033|51085","FALSE","FALSE","America/New_York"
-"22548","37.8293","-76.69244","Sharps","VA","Virginia","TRUE","","511","198.5","51159","Richmond","{""51159"": ""100""}","Richmond","51159","FALSE","FALSE","America/New_York"
-"22551","38.16843","-77.70157","Spotsylvania","VA","Virginia","TRUE","","19571","43.4","51177","Spotsylvania","{""51177"": ""100""}","Spotsylvania","51177","FALSE","FALSE","America/New_York"
-"22553","38.271","-77.64475","Spotsylvania","VA","Virginia","TRUE","","15761","136.3","51177","Spotsylvania","{""51177"": ""100""}","Spotsylvania","51177","FALSE","FALSE","America/New_York"
-"22554","38.42691","-77.37803","Stafford","VA","Virginia","TRUE","","57447","334.1","51179","Stafford","{""51179"": ""100""}","Stafford","51179","FALSE","FALSE","America/New_York"
-"22556","38.47178","-77.51021","Stafford","VA","Virginia","TRUE","","29386","359.1","51179","Stafford","{""51179"": ""100""}","Stafford","51179","FALSE","FALSE","America/New_York"
-"22560","37.91429","-76.96102","Tappahannock","VA","Virginia","TRUE","","6435","27.3","51057","Essex","{""51057"": ""97.49"", ""51097"": ""2.51""}","Essex|King and Queen","51057|51097","FALSE","FALSE","America/New_York"
-"22567","38.23434","-77.92369","Unionville","VA","Virginia","TRUE","","3552","29.1","51137","Orange","{""51137"": ""100""}","Orange","51137","FALSE","FALSE","America/New_York"
-"22572","37.97584","-76.77804","Warsaw","VA","Virginia","TRUE","","7227","20.1","51159","Richmond","{""51159"": ""96.43"", ""51193"": ""3.57""}","Richmond|Westmoreland","51159|51193","FALSE","FALSE","America/New_York"
-"22576","37.69171","-76.43585","Weems","VA","Virginia","TRUE","","2513","88.1","51103","Lancaster","{""51103"": ""100""}","Lancaster","51103","FALSE","FALSE","America/New_York"
-"22578","37.65077","-76.36241","White Stone","VA","Virginia","TRUE","","2526","52.5","51103","Lancaster","{""51103"": ""100""}","Lancaster","51103","FALSE","FALSE","America/New_York"
-"22579","37.80346","-76.32027","Wicomico Church","VA","Virginia","TRUE","","71","32.6","51133","Northumberland","{""51133"": ""100""}","Northumberland","51133","FALSE","FALSE","America/New_York"
-"22580","38.10885","-77.44633","Woodford","VA","Virginia","TRUE","","5074","21.8","51033","Caroline","{""51033"": ""91.38"", ""51177"": ""8.62""}","Caroline|Spotsylvania","51033|51177","FALSE","FALSE","America/New_York"
-"22601","39.17472","-78.17353","Winchester","VA","Virginia","TRUE","","28925","1136.2","51840","Winchester","{""51840"": ""94.21"", ""51069"": ""5.79""}","Winchester|Frederick","51840|51069","FALSE","FALSE","America/New_York"
-"22602","39.14989","-78.26622","Winchester","VA","Virginia","TRUE","","29616","103.9","51069","Frederick","{""51069"": ""100""}","Frederick","51069","FALSE","FALSE","America/New_York"
-"22603","39.27922","-78.20376","Winchester","VA","Virginia","TRUE","","16030","63.1","51069","Frederick","{""51069"": ""100""}","Frederick","51069","FALSE","FALSE","America/New_York"
-"22610","38.81812","-78.27942","Bentonville","VA","Virginia","TRUE","","1735","13.0","51187","Warren","{""51187"": ""100""}","Warren","51187","FALSE","FALSE","America/New_York"
-"22611","39.16474","-77.98393","Berryville","VA","Virginia","TRUE","","8954","42.8","51043","Clarke","{""51043"": ""100""}","Clarke","51043","FALSE","FALSE","America/New_York"
-"22620","39.0659","-78.03319","Boyce","VA","Virginia","TRUE","","2653","22.4","51043","Clarke","{""51043"": ""100""}","Clarke","51043","FALSE","FALSE","America/New_York"
-"22623","38.85156","-78.13737","Chester Gap","VA","Virginia","TRUE","","966","309.4","51157","Rappahannock","{""51157"": ""80.15"", ""51187"": ""19.85""}","Rappahannock|Warren","51157|51187","FALSE","FALSE","America/New_York"
-"22624","39.26514","-78.09184","Clear Brook","VA","Virginia","TRUE","","2816","56.4","51069","Frederick","{""51069"": ""100""}","Frederick","51069","FALSE","FALSE","America/New_York"
-"22625","39.37443","-78.30802","Cross Junction","VA","Virginia","TRUE","","3469","30.6","51069","Frederick","{""51069"": ""100""}","Frederick","51069","FALSE","FALSE","America/New_York"
-"22627","38.76416","-78.11755","Flint Hill","VA","Virginia","TRUE","","704","8.3","51157","Rappahannock","{""51157"": ""100""}","Rappahannock","51157","FALSE","FALSE","America/New_York"
-"22630","38.92857","-78.17669","Front Royal","VA","Virginia","TRUE","","32321","95.6","51187","Warren","{""51187"": ""98.35"", ""51069"": ""1.54"", ""51043"": ""0.07"", ""51061"": ""0.04""}","Warren|Frederick|Clarke|Fauquier","51187|51069|51043|51061","FALSE","FALSE","America/New_York"
-"22637","39.25095","-78.35907","Gore","VA","Virginia","TRUE","","2443","21.2","51069","Frederick","{""51069"": ""100""}","Frederick","51069","FALSE","FALSE","America/New_York"
-"22639","38.81492","-78.02296","Hume","VA","Virginia","TRUE","","544","11.3","51061","Fauquier","{""51061"": ""100""}","Fauquier","51061","FALSE","FALSE","America/New_York"
-"22640","38.8088","-78.12882","Huntly","VA","Virginia","TRUE","","459","7.5","51157","Rappahannock","{""51157"": ""100""}","Rappahannock","51157","FALSE","FALSE","America/New_York"
-"22641","39.08061","-78.39151","Strasburg","VA","Virginia","TRUE","","359","21.0","51171","Shenandoah","{""51171"": ""100""}","Shenandoah","51171","FALSE","FALSE","America/New_York"
-"22642","38.9103","-78.04202","Linden","VA","Virginia","TRUE","","5022","38.0","51187","Warren","{""51187"": ""84.01"", ""51061"": ""15.99""}","Warren|Fauquier","51187|51061","FALSE","FALSE","America/New_York"
-"22643","38.88404","-77.98651","Markham","VA","Virginia","TRUE","","289","19.4","51061","Fauquier","{""51061"": ""100""}","Fauquier","51061","FALSE","FALSE","America/New_York"
-"22644","38.95277","-78.48929","Maurertown","VA","Virginia","TRUE","","2376","24.4","51171","Shenandoah","{""51171"": ""100""}","Shenandoah","51171","FALSE","FALSE","America/New_York"
-"22645","39.02148","-78.27515","Middletown","VA","Virginia","TRUE","","4279","46.4","51069","Frederick","{""51069"": ""70.03"", ""51187"": ""29.97""}","Frederick|Warren","51069|51187","FALSE","FALSE","America/New_York"
-"22646","39.07133","-78.04206","Millwood","VA","Virginia","TRUE","","83","16.3","51043","Clarke","{""51043"": ""100""}","Clarke","51043","FALSE","FALSE","America/New_York"
-"22650","38.75957","-78.35993","Rileyville","VA","Virginia","TRUE","","499","6.7","51139","Page","{""51139"": ""100""}","Page","51139","FALSE","FALSE","America/New_York"
-"22652","38.83988","-78.42848","Fort Valley","VA","Virginia","TRUE","","1543","8.5","51171","Shenandoah","{""51171"": ""100""}","Shenandoah","51171","FALSE","FALSE","America/New_York"
-"22654","39.03066","-78.51986","Star Tannery","VA","Virginia","TRUE","","875","5.5","51069","Frederick","{""51069"": ""81.72"", ""51171"": ""18.28""}","Frederick|Shenandoah","51069|51171","FALSE","FALSE","America/New_York"
-"22655","39.06535","-78.2144","Stephens City","VA","Virginia","TRUE","","21982","241.2","51069","Frederick","{""51069"": ""99.56"", ""51187"": ""0.44""}","Frederick|Warren","51069|51187","FALSE","FALSE","America/New_York"
-"22656","39.21887","-78.08885","Stephenson","VA","Virginia","TRUE","","3527","162.2","51069","Frederick","{""51069"": ""100""}","Frederick","51069","FALSE","FALSE","America/New_York"
-"22657","39.00546","-78.37231","Strasburg","VA","Virginia","TRUE","","10738","67.2","51171","Shenandoah","{""51171"": ""92.24"", ""51187"": ""7.76""}","Shenandoah|Warren","51171|51187","FALSE","FALSE","America/New_York"
-"22660","38.94958","-78.43203","Toms Brook","VA","Virginia","TRUE","","1943","81.7","51171","Shenandoah","{""51171"": ""100""}","Shenandoah","51171","FALSE","FALSE","America/New_York"
-"22663","39.05633","-78.11478","White Post","VA","Virginia","TRUE","","1108","19.4","51069","Frederick","{""51069"": ""54.56"", ""51043"": ""45.44""}","Frederick|Clarke","51069|51043","FALSE","FALSE","America/New_York"
-"22664","38.8882","-78.53037","Woodstock","VA","Virginia","TRUE","","9457","73.0","51171","Shenandoah","{""51171"": ""100""}","Shenandoah","51171","FALSE","FALSE","America/New_York"
-"22701","38.43912","-77.99759","Culpeper","VA","Virginia","TRUE","","35495","83.9","51047","Culpeper","{""51047"": ""95.51"", ""51137"": ""2.65"", ""51113"": ""1.84""}","Culpeper|Orange|Madison","51047|51137|51113","FALSE","FALSE","America/New_York"
-"22709","38.33179","-78.21874","Aroda","VA","Virginia","TRUE","","1414","42.4","51113","Madison","{""51113"": ""100""}","Madison","51113","FALSE","FALSE","America/New_York"
-"22711","38.46468","-78.27033","Banco","VA","Virginia","TRUE","","26","4.3","51113","Madison","{""51113"": ""100""}","Madison","51113","FALSE","FALSE","America/New_York"
-"22712","38.56057","-77.75891","Bealeton","VA","Virginia","TRUE","","9094","96.9","51061","Fauquier","{""51061"": ""100""}","Fauquier","51061","FALSE","FALSE","America/New_York"
-"22713","38.54958","-78.13123","Boston","VA","Virginia","TRUE","","1721","24.9","51047","Culpeper","{""51047"": ""78.24"", ""51157"": ""21.76""}","Culpeper|Rappahannock","51047|51157","FALSE","FALSE","America/New_York"
-"22714","38.52132","-77.89738","Brandy Station","VA","Virginia","TRUE","","1133","19.6","51047","Culpeper","{""51047"": ""100""}","Culpeper","51047","FALSE","FALSE","America/New_York"
-"22715","38.41144","-78.18341","Brightwood","VA","Virginia","TRUE","","1230","52.4","51113","Madison","{""51113"": ""100""}","Madison","51113","FALSE","FALSE","America/New_York"
-"22716","38.62574","-78.11034","Castleton","VA","Virginia","TRUE","","507","7.8","51157","Rappahannock","{""51157"": ""100""}","Rappahannock","51157","FALSE","FALSE","America/New_York"
-"22718","38.47364","-77.82243","Elkwood","VA","Virginia","TRUE","","528","8.3","51047","Culpeper","{""51047"": ""100""}","Culpeper","51047","FALSE","FALSE","America/New_York"
-"22719","38.53063","-78.2857","Etlan","VA","Virginia","TRUE","","255","4.8","51113","Madison","{""51113"": ""100""}","Madison","51113","FALSE","FALSE","America/New_York"
-"22720","38.47674","-77.64538","Goldvein","VA","Virginia","TRUE","","1030","19.3","51061","Fauquier","{""51061"": ""100""}","Fauquier","51061","FALSE","FALSE","America/New_York"
-"22722","38.46159","-78.22953","Haywood","VA","Virginia","TRUE","","244","26.8","51113","Madison","{""51113"": ""100""}","Madison","51113","FALSE","FALSE","America/New_York"
-"22723","38.34037","-78.38698","Hood","VA","Virginia","TRUE","","121","11.0","51113","Madison","{""51113"": ""100""}","Madison","51113","FALSE","FALSE","America/New_York"
-"22724","38.61641","-77.90101","Jeffersonton","VA","Virginia","TRUE","","2102","38.5","51047","Culpeper","{""51047"": ""100""}","Culpeper","51047","FALSE","FALSE","America/New_York"
-"22726","38.40137","-77.82228","Lignum","VA","Virginia","TRUE","","743","18.2","51047","Culpeper","{""51047"": ""100""}","Culpeper","51047","FALSE","FALSE","America/New_York"
-"22727","38.3984","-78.29888","Madison","VA","Virginia","TRUE","","5765","22.0","51113","Madison","{""51113"": ""100""}","Madison","51113","FALSE","FALSE","America/New_York"
-"22728","38.58746","-77.694","Midland","VA","Virginia","TRUE","","2834","24.2","51061","Fauquier","{""51061"": ""100""}","Fauquier","51061","FALSE","FALSE","America/New_York"
-"22729","38.37307","-78.01428","Mitchells","VA","Virginia","TRUE","","1312","91.6","51047","Culpeper","{""51047"": ""100""}","Culpeper","51047","FALSE","FALSE","America/New_York"
-"22730","38.36732","-78.16271","Oakpark","VA","Virginia","TRUE","","223","25.3","51113","Madison","{""51113"": ""100""}","Madison","51113","FALSE","FALSE","America/New_York"
-"22731","38.3366","-78.25749","Pratts","VA","Virginia","TRUE","","39","17.0","51113","Madison","{""51113"": ""100""}","Madison","51113","FALSE","FALSE","America/New_York"
-"22732","38.31466","-78.18995","Radiant","VA","Virginia","TRUE","","217","49.5","51113","Madison","{""51113"": ""100""}","Madison","51113","FALSE","FALSE","America/New_York"
-"22733","38.33041","-78.04156","Rapidan","VA","Virginia","TRUE","","917","7.5","51047","Culpeper","{""51047"": ""60.79"", ""51137"": ""35.53"", ""51113"": ""3.68""}","Culpeper|Orange|Madison","51047|51137|51113","FALSE","FALSE","America/New_York"
-"22734","38.5263","-77.80406","Remington","VA","Virginia","TRUE","","3480","44.7","51061","Fauquier","{""51061"": ""94.67"", ""51047"": ""5.33""}","Fauquier|Culpeper","51061|51047","FALSE","FALSE","America/New_York"
-"22735","38.47751","-78.17377","Reva","VA","Virginia","TRUE","","2764","32.1","51047","Culpeper","{""51047"": ""59.6"", ""51113"": ""40.4""}","Culpeper|Madison","51047|51113","FALSE","FALSE","America/New_York"
-"22736","38.39738","-77.70494","Richardsville","VA","Virginia","TRUE","","810","10.9","51047","Culpeper","{""51047"": ""100""}","Culpeper","51047","FALSE","FALSE","America/New_York"
-"22737","38.59064","-78.00326","Rixeyville","VA","Virginia","TRUE","","3348","32.1","51047","Culpeper","{""51047"": ""100""}","Culpeper","51047","FALSE","FALSE","America/New_York"
-"22738","38.28824","-78.2774","Rochelle","VA","Virginia","TRUE","","1513","21.6","51113","Madison","{""51113"": ""100""}","Madison","51113","FALSE","FALSE","America/New_York"
-"22740","38.64178","-78.25706","Sperryville","VA","Virginia","TRUE","","873","4.3","51157","Rappahannock","{""51157"": ""93.91"", ""51047"": ""4.19"", ""51113"": ""1.9""}","Rappahannock|Culpeper|Madison","51157|51047|51113","FALSE","FALSE","America/New_York"
-"22741","38.43522","-77.87336","Stevensburg","VA","Virginia","TRUE","","165","7.7","51047","Culpeper","{""51047"": ""100""}","Culpeper","51047","FALSE","FALSE","America/New_York"
-"22742","38.46197","-77.71673","Sumerduck","VA","Virginia","TRUE","","1889","32.9","51061","Fauquier","{""51061"": ""100""}","Fauquier","51061","FALSE","FALSE","America/New_York"
-"22743","38.52137","-78.36909","Syria","VA","Virginia","TRUE","","259","1.6","51113","Madison","{""51113"": ""100""}","Madison","51113","FALSE","FALSE","America/New_York"
-"22747","38.71213","-78.16735","Washington","VA","Virginia","TRUE","","1367","13.6","51157","Rappahannock","{""51157"": ""100""}","Rappahannock","51157","FALSE","FALSE","America/New_York"
-"22749","38.62021","-78.18178","Woodville","VA","Virginia","TRUE","","228","4.6","51157","Rappahannock","{""51157"": ""100""}","Rappahannock","51157","FALSE","FALSE","America/New_York"
-"22801","38.40459","-78.87716","Harrisonburg","VA","Virginia","TRUE","","41572","494.1","51660","Harrisonburg","{""51660"": ""73.73"", ""51165"": ""26.27""}","Harrisonburg|Rockingham","51660|51165","FALSE","FALSE","America/New_York"
-"22802","38.49949","-78.86195","Harrisonburg","VA","Virginia","TRUE","","29069","124.0","51660","Harrisonburg","{""51660"": ""66.91"", ""51165"": ""33.09""}","Harrisonburg|Rockingham","51660|51165","FALSE","FALSE","America/New_York"
-"22807","38.43417","-78.86733","Harrisonburg","VA","Virginia","TRUE","","3161","2869.0","51660","Harrisonburg","{""51660"": ""100""}","Harrisonburg","51660","FALSE","FALSE","America/New_York"
-"22810","38.82936","-78.79788","Basye","VA","Virginia","TRUE","","613","9.5","51171","Shenandoah","{""51171"": ""100""}","Shenandoah","51171","FALSE","FALSE","America/New_York"
-"22811","38.78999","-78.97873","Bergton","VA","Virginia","TRUE","","619","7.5","51165","Rockingham","{""51165"": ""100""}","Rockingham","51165","FALSE","FALSE","America/New_York"
-"22812","38.37724","-79.02623","Bridgewater","VA","Virginia","TRUE","","8952","80.1","51165","Rockingham","{""51165"": ""91.76"", ""51015"": ""8.24""}","Rockingham|Augusta","51165|51015","FALSE","FALSE","America/New_York"
-"22815","38.63019","-78.80938","Broadway","VA","Virginia","TRUE","","9337","50.2","51165","Rockingham","{""51165"": ""99.66"", ""51171"": ""0.34""}","Rockingham|Shenandoah","51165|51171","FALSE","FALSE","America/New_York"
-"22820","38.72812","-79.01629","Criders","VA","Virginia","TRUE","","287","4.9","51165","Rockingham","{""51165"": ""100""}","Rockingham","51165","FALSE","FALSE","America/New_York"
-"22821","38.47071","-79.08519","Dayton","VA","Virginia","TRUE","","5428","25.6","51165","Rockingham","{""51165"": ""100""}","Rockingham","51165","FALSE","FALSE","America/New_York"
-"22824","38.83901","-78.63065","Edinburg","VA","Virginia","TRUE","","6253","28.1","51171","Shenandoah","{""51171"": ""100""}","Shenandoah","51171","FALSE","FALSE","America/New_York"
-"22827","38.41139","-78.59939","Elkton","VA","Virginia","TRUE","","10289","29.1","51165","Rockingham","{""51165"": ""94.18"", ""51139"": ""5.82""}","Rockingham|Page","51165|51139","FALSE","FALSE","America/New_York"
-"22830","38.65653","-78.97464","Fulks Run","VA","Virginia","TRUE","","1867","6.4","51165","Rockingham","{""51165"": ""100""}","Rockingham","51165","FALSE","FALSE","America/New_York"
-"22831","38.56888","-79.0885","Hinton","VA","Virginia","TRUE","","1199","7.6","51165","Rockingham","{""51165"": ""100""}","Rockingham","51165","FALSE","FALSE","America/New_York"
-"22832","38.45465","-78.75839","Keezletown","VA","Virginia","TRUE","","1085","17.2","51165","Rockingham","{""51165"": ""100""}","Rockingham","51165","FALSE","FALSE","America/New_York"
-"22834","38.55867","-78.86025","Linville","VA","Virginia","TRUE","","1055","22.9","51165","Rockingham","{""51165"": ""100""}","Rockingham","51165","FALSE","FALSE","America/New_York"
-"22835","38.67241","-78.45251","Luray","VA","Virginia","TRUE","","11593","29.7","51139","Page","{""51139"": ""100"", ""51113"": ""0""}","Page|Madison","51139|51113","FALSE","FALSE","America/New_York"
-"22840","38.37711","-78.74042","McGaheysville","VA","Virginia","TRUE","","4679","68.5","51165","Rockingham","{""51165"": ""100""}","Rockingham","51165","FALSE","FALSE","America/New_York"
-"22841","38.3392","-78.89684","Mount Crawford","VA","Virginia","TRUE","","2747","33.9","51165","Rockingham","{""51165"": ""96.27"", ""51015"": ""3.73""}","Rockingham|Augusta","51165|51015","FALSE","FALSE","America/New_York"
-"22842","38.77578","-78.70521","Mount Jackson","VA","Virginia","TRUE","","5374","28.6","51171","Shenandoah","{""51171"": ""100""}","Shenandoah","51171","FALSE","FALSE","America/New_York"
-"22843","38.36852","-79.16038","Mount Solon","VA","Virginia","TRUE","","2492","8.5","51015","Augusta","{""51015"": ""100""}","Augusta","51015","FALSE","FALSE","America/New_York"
-"22844","38.65573","-78.66018","New Market","VA","Virginia","TRUE","","4802","38.2","51171","Shenandoah","{""51171"": ""94.5"", ""51165"": ""5.5""}","Shenandoah|Rockingham","51171|51165","FALSE","FALSE","America/New_York"
-"22845","38.78759","-78.81508","Orkney Springs","VA","Virginia","TRUE","","9","2.6","51171","Shenandoah","{""51171"": ""100""}","Shenandoah","51171","FALSE","FALSE","America/New_York"
-"22846","38.37957","-78.78885","Penn Laird","VA","Virginia","TRUE","","2291","79.5","51165","Rockingham","{""51165"": ""100""}","Rockingham","51165","FALSE","FALSE","America/New_York"
-"22847","38.72007","-78.72132","Quicksburg","VA","Virginia","TRUE","","861","16.0","51171","Shenandoah","{""51171"": ""100""}","Shenandoah","51171","FALSE","FALSE","America/New_York"
-"22849","38.52589","-78.62304","Shenandoah","VA","Virginia","TRUE","","5318","43.7","51139","Page","{""51139"": ""96.53"", ""51165"": ""3.47""}","Page|Rockingham","51139|51165","FALSE","FALSE","America/New_York"
-"22850","38.56071","-78.92444","Singers Glen","VA","Virginia","TRUE","","1102","35.3","51165","Rockingham","{""51165"": ""100""}","Rockingham","51165","FALSE","FALSE","America/New_York"
-"22851","38.562","-78.5116","Stanley","VA","Virginia","TRUE","","6057","42.4","51139","Page","{""51139"": ""100""}","Page","51139","FALSE","FALSE","America/New_York"
-"22853","38.64841","-78.76397","Timberville","VA","Virginia","TRUE","","3982","42.1","51165","Rockingham","{""51165"": ""99.06"", ""51171"": ""0.94""}","Rockingham|Shenandoah","51165|51171","FALSE","FALSE","America/New_York"
-"22901","38.08844","-78.55617","Charlottesville","VA","Virginia","TRUE","","35372","261.9","51003","Albemarle","{""51003"": ""82.36"", ""51540"": ""17.64""}","Albemarle|Charlottesville","51003|51540","FALSE","FALSE","America/New_York"
-"22902","37.95389","-78.46997","Charlottesville","VA","Virginia","TRUE","","25245","155.3","51540","Charlottesville","{""51540"": ""56.72"", ""51003"": ""43.28""}","Charlottesville|Albemarle","51540|51003","FALSE","FALSE","America/New_York"
-"22903","38.00683","-78.59998","Charlottesville","VA","Virginia","TRUE","","40652","207.5","51540","Charlottesville","{""51540"": ""66.71"", ""51003"": ""33.29""}","Charlottesville|Albemarle","51540|51003","FALSE","FALSE","America/New_York"
-"22904","38.03438","-78.51986","Charlottesville","VA","Virginia","TRUE","","4834","2905.0","51003","Albemarle","{""51003"": ""95.75"", ""51540"": ""4.25""}","Albemarle|Charlottesville","51003|51540","FALSE","FALSE","America/New_York"
-"22911","38.09276","-78.40756","Charlottesville","VA","Virginia","TRUE","","17441","131.9","51003","Albemarle","{""51003"": ""100""}","Albemarle","51003","FALSE","FALSE","America/New_York"
-"22920","37.97724","-78.81071","Afton","VA","Virginia","TRUE","","3876","19.8","51125","Nelson","{""51125"": ""65.15"", ""51003"": ""33.87"", ""51015"": ""0.98""}","Nelson|Albemarle|Augusta","51125|51003|51015","FALSE","FALSE","America/New_York"
-"22922","37.69407","-78.9216","Arrington","VA","Virginia","TRUE","","2145","16.4","51125","Nelson","{""51125"": ""95.89"", ""51009"": ""4.11""}","Nelson|Amherst","51125|51009","FALSE","FALSE","America/New_York"
-"22923","38.188","-78.32302","Barboursville","VA","Virginia","TRUE","","5653","43.4","51079","Greene","{""51079"": ""43.73"", ""51137"": ""31.16"", ""51003"": ""25.1""}","Greene|Orange|Albemarle","51079|51137|51003","FALSE","FALSE","America/New_York"
-"22931","37.89782","-78.70609","Covesville","VA","Virginia","TRUE","","273","5.8","51003","Albemarle","{""51003"": ""100""}","Albemarle","51003","FALSE","FALSE","America/New_York"
-"22932","38.15164","-78.69428","Crozet","VA","Virginia","TRUE","","7721","27.5","51003","Albemarle","{""51003"": ""100""}","Albemarle","51003","FALSE","FALSE","America/New_York"
-"22935","38.26218","-78.55554","Dyke","VA","Virginia","TRUE","","965","17.4","51079","Greene","{""51079"": ""55.4"", ""51003"": ""44.6""}","Greene|Albemarle","51079|51003","FALSE","FALSE","America/New_York"
-"22936","38.16728","-78.4988","Earlysville","VA","Virginia","TRUE","","4891","51.9","51003","Albemarle","{""51003"": ""100""}","Albemarle","51003","FALSE","FALSE","America/New_York"
-"22937","37.80525","-78.61617","Esmont","VA","Virginia","TRUE","","2320","19.6","51003","Albemarle","{""51003"": ""100""}","Albemarle","51003","FALSE","FALSE","America/New_York"
-"22938","37.86066","-78.79452","Faber","VA","Virginia","TRUE","","1378","12.5","51125","Nelson","{""51125"": ""95.01"", ""51003"": ""4.99""}","Nelson|Albemarle","51125|51003","FALSE","FALSE","America/New_York"
-"22939","38.106","-78.97414","Fishersville","VA","Virginia","TRUE","","6369","147.2","51015","Augusta","{""51015"": ""100""}","Augusta","51015","FALSE","FALSE","America/New_York"
-"22940","38.20259","-78.59264","Free Union","VA","Virginia","TRUE","","1406","17.3","51003","Albemarle","{""51003"": ""87.4"", ""51079"": ""12.6""}","Albemarle|Greene","51003|51079","FALSE","FALSE","America/New_York"
-"22942","38.10968","-78.19864","Gordonsville","VA","Virginia","TRUE","","9774","33.8","51109","Louisa","{""51109"": ""48.14"", ""51137"": ""46.05"", ""51003"": ""5.81""}","Louisa|Orange|Albemarle","51109|51137|51003","FALSE","FALSE","America/New_York"
-"22943","38.03675","-78.77112","Greenwood","VA","Virginia","TRUE","","538","36.6","51003","Albemarle","{""51003"": ""100""}","Albemarle","51003","FALSE","FALSE","America/New_York"
-"22946","37.85604","-78.56991","Keene","VA","Virginia","TRUE","","138","12.4","51003","Albemarle","{""51003"": ""100""}","Albemarle","51003","FALSE","FALSE","America/New_York"
-"22947","38.04553","-78.32738","Keswick","VA","Virginia","TRUE","","3956","35.0","51003","Albemarle","{""51003"": ""94"", ""51109"": ""4.5"", ""51065"": ""1.5""}","Albemarle|Louisa|Fluvanna","51003|51109|51065","FALSE","FALSE","America/New_York"
-"22948","38.35712","-78.12292","Locust Dale","VA","Virginia","TRUE","","165","11.2","51113","Madison","{""51113"": ""100""}","Madison","51113","FALSE","FALSE","America/New_York"
-"22949","37.7872","-78.87341","Lovingston","VA","Virginia","TRUE","","1066","11.2","51125","Nelson","{""51125"": ""100""}","Nelson","51125","FALSE","FALSE","America/New_York"
-"22952","37.96317","-78.9651","Lyndhurst","VA","Virginia","TRUE","","1792","14.1","51015","Augusta","{""51015"": ""100""}","Augusta","51015","FALSE","FALSE","America/New_York"
-"22958","37.90201","-78.90045","Nellysford","VA","Virginia","TRUE","","1998","26.6","51125","Nelson","{""51125"": ""98.84"", ""51015"": ""1.16""}","Nelson|Augusta","51125|51015","FALSE","FALSE","America/New_York"
-"22959","37.94084","-78.65369","North Garden","VA","Virginia","TRUE","","1380","13.7","51003","Albemarle","{""51003"": ""100""}","Albemarle","51003","FALSE","FALSE","America/New_York"
-"22960","38.22425","-78.07207","Orange","VA","Virginia","TRUE","","10079","30.3","51137","Orange","{""51137"": ""87.43"", ""51113"": ""9.46"", ""51177"": ""3.12""}","Orange|Madison|Spotsylvania","51137|51113|51177","FALSE","FALSE","America/New_York"
-"22963","37.84921","-78.28843","Palmyra","VA","Virginia","TRUE","","16571","52.5","51065","Fluvanna","{""51065"": ""100""}","Fluvanna","51065","FALSE","FALSE","America/New_York"
-"22964","37.72093","-79.00043","Piney River","VA","Virginia","TRUE","","298","15.4","51125","Nelson","{""51125"": ""100""}","Nelson","51125","FALSE","FALSE","America/New_York"
-"22967","37.79497","-79.01438","Roseland","VA","Virginia","TRUE","","2048","10.1","51125","Nelson","{""51125"": ""86.66"", ""51009"": ""13.34""}","Nelson|Amherst","51125|51009","FALSE","FALSE","America/New_York"
-"22968","38.24106","-78.39722","Ruckersville","VA","Virginia","TRUE","","10562","105.8","51079","Greene","{""51079"": ""96.44"", ""51003"": ""3.56""}","Greene|Albemarle","51079|51003","FALSE","FALSE","America/New_York"
-"22969","37.79725","-78.69451","Schuyler","VA","Virginia","TRUE","","1866","16.5","51125","Nelson","{""51125"": ""50.17"", ""51003"": ""49.83""}","Nelson|Albemarle","51125|51003","FALSE","FALSE","America/New_York"
-"22971","37.74389","-78.80016","Shipman","VA","Virginia","TRUE","","1749","12.6","51125","Nelson","{""51125"": ""100""}","Nelson","51125","FALSE","FALSE","America/New_York"
-"22972","38.21615","-78.23029","Somerset","VA","Virginia","TRUE","","267","7.2","51137","Orange","{""51137"": ""100""}","Orange","51137","FALSE","FALSE","America/New_York"
-"22973","38.33622","-78.46989","Stanardsville","VA","Virginia","TRUE","","5915","22.3","51079","Greene","{""51079"": ""98.22"", ""51113"": ""1.78""}","Greene|Madison","51079|51113","FALSE","FALSE","America/New_York"
-"22974","37.96121","-78.2794","Troy","VA","Virginia","TRUE","","5115","49.0","51065","Fluvanna","{""51065"": ""74.39"", ""51109"": ""18.03"", ""51003"": ""7.58""}","Fluvanna|Louisa|Albemarle","51065|51109|51003","FALSE","FALSE","America/New_York"
-"22976","37.83379","-79.05924","Tyro","VA","Virginia","TRUE","","587","5.9","51125","Nelson","{""51125"": ""100""}","Nelson","51125","FALSE","FALSE","America/New_York"
-"22980","38.09565","-78.88513","Waynesboro","VA","Virginia","TRUE","","32337","167.7","51820","Waynesboro","{""51820"": ""66.79"", ""51015"": ""33.21""}","Waynesboro|Augusta","51820|51015","FALSE","FALSE","America/New_York"
-"22989","38.29122","-78.12248","Woodberry Forest","VA","Virginia","TRUE","","17","4.5","51113","Madison","{""51113"": ""100""}","Madison","51113","FALSE","FALSE","America/New_York"
-"23002","37.35065","-77.96877","Amelia Court House","VA","Virginia","TRUE","","9986","14.8","51007","Amelia","{""51007"": ""99.46"", ""51135"": ""0.54""}","Amelia|Nottoway","51007|51135","FALSE","FALSE","America/New_York"
-"23004","37.68225","-78.40866","Arvonia","VA","Virginia","TRUE","","750","7.3","51029","Buckingham","{""51029"": ""100""}","Buckingham","51029","FALSE","FALSE","America/New_York"
-"23005","37.75956","-77.48221","Ashland","VA","Virginia","TRUE","","17602","100.9","51085","Hanover","{""51085"": ""100""}","Hanover","51085","FALSE","FALSE","America/New_York"
-"23009","37.81386","-77.18737","Aylett","VA","Virginia","TRUE","","6629","32.9","51101","King William","{""51101"": ""100""}","King William","51101","FALSE","FALSE","America/New_York"
-"23011","37.47681","-76.80954","Barhamsville","VA","Virginia","TRUE","","1345","23.8","51127","New Kent","{""51127"": ""100""}","New Kent","51127","FALSE","FALSE","America/New_York"
-"23015","37.92909","-77.62554","Beaverdam","VA","Virginia","TRUE","","3853","18.3","51085","Hanover","{""51085"": ""74.72"", ""51177"": ""14.47"", ""51033"": ""9.6"", ""51109"": ""1.2""}","Hanover|Spotsylvania|Caroline|Louisa","51085|51177|51033|51109","FALSE","FALSE","America/New_York"
-"23021","37.39782","-76.37016","Bohannon","VA","Virginia","TRUE","","322","34.8","51115","Mathews","{""51115"": ""100""}","Mathews","51115","FALSE","FALSE","America/New_York"
-"23022","37.73417","-78.26418","Bremo Bluff","VA","Virginia","TRUE","","917","13.5","51065","Fluvanna","{""51065"": ""100""}","Fluvanna","51065","FALSE","FALSE","America/New_York"
-"23023","37.77866","-76.95957","Bruington","VA","Virginia","TRUE","","675","13.1","51097","King and Queen","{""51097"": ""100""}","King and Queen","51097","FALSE","FALSE","America/New_York"
-"23024","37.9254","-77.77924","Bumpass","VA","Virginia","TRUE","","8502","31.0","51109","Louisa","{""51109"": ""84.85"", ""51177"": ""14.29"", ""51085"": ""0.86""}","Louisa|Spotsylvania|Hanover","51109|51177|51085","FALSE","FALSE","America/New_York"
-"23025","37.41288","-76.36154","Cardinal","VA","Virginia","TRUE","","179","53.2","51115","Mathews","{""51115"": ""100""}","Mathews","51115","FALSE","FALSE","America/New_York"
-"23027","37.64541","-78.13391","Cartersville","VA","Virginia","TRUE","","1116","9.4","51049","Cumberland","{""51049"": ""100""}","Cumberland","51049","FALSE","FALSE","America/New_York"
-"23030","37.34627","-77.05928","Charles City","VA","Virginia","TRUE","","4765","12.5","51036","Charles City","{""51036"": ""99.36"", ""51087"": ""0.64""}","Charles City|Henrico","51036|51087","FALSE","FALSE","America/New_York"
-"23032","37.65463","-76.67968","Church View","VA","Virginia","TRUE","","413","9.4","51119","Middlesex","{""51119"": ""100""}","Middlesex","51119","FALSE","FALSE","America/New_York"
-"23035","37.49456","-76.38857","Cobbs Creek","VA","Virginia","TRUE","","1518","39.9","51115","Mathews","{""51115"": ""100""}","Mathews","51115","FALSE","FALSE","America/New_York"
-"23038","37.75544","-78.14779","Columbia","VA","Virginia","TRUE","","1513","7.8","51075","Goochland","{""51075"": ""48.68"", ""51049"": ""29.3"", ""51065"": ""22.03""}","Goochland|Cumberland|Fluvanna","51075|51049|51065","FALSE","FALSE","America/New_York"
-"23039","37.65579","-77.8063","Crozier","VA","Virginia","TRUE","","1056","27.5","51075","Goochland","{""51075"": ""100""}","Goochland","51075","FALSE","FALSE","America/New_York"
-"23040","37.50349","-78.24753","Cumberland","VA","Virginia","TRUE","","4747","12.4","51049","Cumberland","{""51049"": ""93.65"", ""51029"": ""6.35""}","Cumberland|Buckingham","51049|51029","FALSE","FALSE","America/New_York"
-"23043","37.55444","-76.34754","Deltaville","VA","Virginia","TRUE","","2036","104.5","51119","Middlesex","{""51119"": ""100""}","Middlesex","51119","FALSE","FALSE","America/New_York"
-"23045","37.42929","-76.26506","Diggs","VA","Virginia","TRUE","","134","21.3","51115","Mathews","{""51115"": ""100""}","Mathews","51115","FALSE","FALSE","America/New_York"
-"23047","37.84226","-77.47358","Doswell","VA","Virginia","TRUE","","1888","15.4","51085","Hanover","{""51085"": ""82.63"", ""51033"": ""17.37""}","Hanover|Caroline","51085|51033","FALSE","FALSE","America/New_York"
-"23050","37.50053","-76.43588","Dutton","VA","Virginia","TRUE","","685","63.9","51115","Mathews","{""51115"": ""82.27"", ""51073"": ""17.73""}","Mathews|Gloucester","51115|51073","FALSE","FALSE","America/New_York"
-"23055","37.77493","-78.22126","Fork Union","VA","Virginia","TRUE","","763","19.0","51065","Fluvanna","{""51065"": ""100""}","Fluvanna","51065","FALSE","FALSE","America/New_York"
-"23056","37.4261","-76.37424","Foster","VA","Virginia","TRUE","","428","27.7","51115","Mathews","{""51115"": ""100""}","Mathews","51115","FALSE","FALSE","America/New_York"
-"23059","37.70488","-77.56251","Glen Allen","VA","Virginia","TRUE","","36070","303.1","51087","Henrico","{""51087"": ""86.84"", ""51085"": ""13.16""}","Henrico|Hanover","51087|51085","FALSE","FALSE","America/New_York"
-"23060","37.65986","-77.53341","Glen Allen","VA","Virginia","TRUE","","37554","955.0","51087","Henrico","{""51087"": ""100""}","Henrico","51087","FALSE","FALSE","America/New_York"
-"23061","37.4337","-76.55228","Gloucester","VA","Virginia","TRUE","","21271","52.4","51073","Gloucester","{""51073"": ""100""}","Gloucester","51073","FALSE","FALSE","America/New_York"
-"23062","37.25759","-76.50404","Gloucester Point","VA","Virginia","TRUE","","2246","601.5","51073","Gloucester","{""51073"": ""100""}","Gloucester","51073","FALSE","FALSE","America/New_York"
-"23063","37.71652","-78.00165","Goochland","VA","Virginia","TRUE","","4720","18.2","51075","Goochland","{""51075"": ""100""}","Goochland","51075","FALSE","FALSE","America/New_York"
-"23064","37.49674","-76.29979","Grimstead","VA","Virginia","TRUE","","253","284.0","51115","Mathews","{""51115"": ""100""}","Mathews","51115","FALSE","FALSE","America/New_York"
-"23065","37.80389","-77.93212","Gum Spring","VA","Virginia","TRUE","","1472","26.2","51075","Goochland","{""51075"": ""58.56"", ""51109"": ""41.44""}","Goochland|Louisa","51075|51109","FALSE","FALSE","America/New_York"
-"23066","37.49869","-76.28602","Gwynn","VA","Virginia","TRUE","","100","19.3","51115","Mathews","{""51115"": ""100""}","Mathews","51115","FALSE","FALSE","America/New_York"
-"23068","37.49434","-76.33729","Hallieford","VA","Virginia","TRUE","","195","86.5","51115","Mathews","{""51115"": ""100""}","Mathews","51115","FALSE","FALSE","America/New_York"
-"23069","37.77171","-77.32083","Hanover","VA","Virginia","TRUE","","2883","20.4","51085","Hanover","{""51085"": ""57.52"", ""51033"": ""22.36"", ""51101"": ""20.11""}","Hanover|Caroline|King William","51085|51033|51101","FALSE","FALSE","America/New_York"
-"23070","37.55244","-76.38997","Hardyville","VA","Virginia","TRUE","","328","43.9","51119","Middlesex","{""51119"": ""100""}","Middlesex","51119","FALSE","FALSE","America/New_York"
-"23071","37.54293","-76.45146","Hartfield","VA","Virginia","TRUE","","1523","49.0","51119","Middlesex","{""51119"": ""100""}","Middlesex","51119","FALSE","FALSE","America/New_York"
-"23072","37.29641","-76.48182","Hayes","VA","Virginia","TRUE","","12377","130.0","51073","Gloucester","{""51073"": ""100""}","Gloucester","51073","FALSE","FALSE","America/New_York"
-"23075","37.54867","-77.31773","Henrico","VA","Virginia","TRUE","","9414","792.8","51087","Henrico","{""51087"": ""100""}","Henrico","51087","FALSE","FALSE","America/New_York"
-"23076","37.47556","-76.31358","Hudgins","VA","Virginia","TRUE","","872","89.0","51115","Mathews","{""51115"": ""100""}","Mathews","51115","FALSE","FALSE","America/New_York"
-"23079","37.72321","-76.69114","Jamaica","VA","Virginia","TRUE","","409","7.5","51119","Middlesex","{""51119"": ""100""}","Middlesex","51119","FALSE","FALSE","America/New_York"
-"23083","37.31387","-78.121","Jetersville","VA","Virginia","TRUE","","2616","17.8","51007","Amelia","{""51007"": ""99.13"", ""51135"": ""0.87""}","Amelia|Nottoway","51007|51135","FALSE","FALSE","America/New_York"
-"23084","37.8846","-78.11014","Kents Store","VA","Virginia","TRUE","","1897","17.8","51065","Fluvanna","{""51065"": ""64.54"", ""51075"": ""24.01"", ""51109"": ""11.45""}","Fluvanna|Goochland|Louisa","51065|51075|51109","FALSE","FALSE","America/New_York"
-"23085","37.70648","-76.84127","King And Queen Court House","VA","Virginia","TRUE","","557","5.0","51097","King and Queen","{""51097"": ""100""}","King and Queen","51097","FALSE","FALSE","America/New_York"
-"23086","37.66281","-77.05337","King William","VA","Virginia","TRUE","","3638","17.0","51101","King William","{""51101"": ""100""}","King William","51101","FALSE","FALSE","America/New_York"
-"23089","37.46306","-76.90375","Lanexa","VA","Virginia","TRUE","","5695","36.3","51127","New Kent","{""51127"": ""65.08"", ""51095"": ""34.92""}","New Kent|James City","51127|51095","FALSE","FALSE","America/New_York"
-"23091","37.64796","-76.80509","Little Plymouth","VA","Virginia","TRUE","","245","4.1","51097","King and Queen","{""51097"": ""100""}","King and Queen","51097","FALSE","FALSE","America/New_York"
-"23092","37.59392","-76.50956","Locust Hill","VA","Virginia","TRUE","","568","44.7","51119","Middlesex","{""51119"": ""100""}","Middlesex","51119","FALSE","FALSE","America/New_York"
-"23093","38.00243","-78.04076","Louisa","VA","Virginia","TRUE","","13992","25.9","51109","Louisa","{""51109"": ""93.89"", ""51075"": ""5.83"", ""51065"": ""0.28""}","Louisa|Goochland|Fluvanna","51109|51075|51065","FALSE","FALSE","America/New_York"
-"23102","37.71259","-77.83149","Maidens","VA","Virginia","TRUE","","3312","43.1","51075","Goochland","{""51075"": ""86.72"", ""51109"": ""9.18"", ""51085"": ""4.1""}","Goochland|Louisa|Hanover","51075|51109|51085","FALSE","FALSE","America/New_York"
-"23103","37.65064","-77.72554","Manakin Sabot","VA","Virginia","TRUE","","5525","57.1","51075","Goochland","{""51075"": ""100""}","Goochland","51075","FALSE","FALSE","America/New_York"
-"23106","37.71618","-77.20181","Manquin","VA","Virginia","TRUE","","1019","14.6","51101","King William","{""51101"": ""100""}","King William","51101","FALSE","FALSE","America/New_York"
-"23108","37.64844","-76.72771","Mascot","VA","Virginia","TRUE","","89","2.7","51097","King and Queen","{""51097"": ""100""}","King and Queen","51097","FALSE","FALSE","America/New_York"
-"23109","37.43527","-76.32874","Mathews","VA","Virginia","TRUE","","2084","46.8","51115","Mathews","{""51115"": ""100""}","Mathews","51115","FALSE","FALSE","America/New_York"
-"23110","37.58216","-76.77014","Mattaponi","VA","Virginia","TRUE","","385","6.7","51097","King and Queen","{""51097"": ""100""}","King and Queen","51097","FALSE","FALSE","America/New_York"
-"23111","37.61146","-77.24696","Mechanicsville","VA","Virginia","TRUE","","36846","182.3","51085","Hanover","{""51085"": ""100""}","Hanover","51085","FALSE","FALSE","America/New_York"
-"23112","37.43498","-77.66207","Midlothian","VA","Virginia","TRUE","","53168","633.9","51041","Chesterfield","{""51041"": ""100""}","Chesterfield","51041","FALSE","FALSE","America/New_York"
-"23113","37.53845","-77.67756","Midlothian","VA","Virginia","TRUE","","25021","272.7","51041","Chesterfield","{""51041"": ""95.67"", ""51145"": ""4.33""}","Chesterfield|Powhatan","51041|51145","FALSE","FALSE","America/New_York"
-"23114","37.48221","-77.65937","Midlothian","VA","Virginia","TRUE","","19628","673.5","51041","Chesterfield","{""51041"": ""100""}","Chesterfield","51041","FALSE","FALSE","America/New_York"
-"23115","37.81101","-76.9145","Millers Tavern","VA","Virginia","TRUE","","49","3.4","51057","Essex","{""51057"": ""100""}","Essex","51057","FALSE","FALSE","America/New_York"
-"23116","37.67949","-77.33458","Mechanicsville","VA","Virginia","TRUE","","31059","190.9","51085","Hanover","{""51085"": ""100""}","Hanover","51085","FALSE","FALSE","America/New_York"
-"23117","37.97998","-77.87501","Mineral","VA","Virginia","TRUE","","9353","26.4","51109","Louisa","{""51109"": ""83.67"", ""51177"": ""13.92"", ""51075"": ""2.42""}","Louisa|Spotsylvania|Goochland","51109|51177|51075","FALSE","FALSE","America/New_York"
-"23119","37.44651","-76.28156","Moon","VA","Virginia","TRUE","","319","37.4","51115","Mathews","{""51115"": ""100""}","Mathews","51115","FALSE","FALSE","America/New_York"
-"23120","37.40973","-77.78499","Moseley","VA","Virginia","TRUE","","10478","63.3","51041","Chesterfield","{""51041"": ""87.27"", ""51145"": ""12.73""}","Chesterfield|Powhatan","51041|51145","FALSE","FALSE","America/New_York"
-"23123","37.65471","-78.29894","New Canton","VA","Virginia","TRUE","","1922","18.1","51029","Buckingham","{""51029"": ""96.67"", ""51049"": ""3.33""}","Buckingham|Cumberland","51029|51049","FALSE","FALSE","America/New_York"
-"23124","37.5535","-77.05236","New Kent","VA","Virginia","TRUE","","4526","32.0","51127","New Kent","{""51127"": ""100""}","New Kent","51127","FALSE","FALSE","America/New_York"
-"23125","37.3385","-76.28285","New Point","VA","Virginia","TRUE","","401","71.1","51115","Mathews","{""51115"": ""100""}","Mathews","51115","FALSE","FALSE","America/New_York"
-"23126","37.9226","-77.14492","Newtown","VA","Virginia","TRUE","","496","8.6","51097","King and Queen","{""51097"": ""100""}","King and Queen","51097","FALSE","FALSE","America/New_York"
-"23128","37.44555","-76.42687","North","VA","Virginia","TRUE","","707","23.4","51115","Mathews","{""51115"": ""60.86"", ""51073"": ""39.14""}","Mathews|Gloucester","51115|51073","FALSE","FALSE","America/New_York"
-"23129","37.68646","-77.7753","Oilville","VA","Virginia","TRUE","","767","73.7","51075","Goochland","{""51075"": ""100""}","Goochland","51075","FALSE","FALSE","America/New_York"
-"23130","37.39552","-76.2719","Onemo","VA","Virginia","TRUE","","223","14.5","51115","Mathews","{""51115"": ""100""}","Mathews","51115","FALSE","FALSE","America/New_York"
-"23138","37.36922","-76.30324","Port Haywood","VA","Virginia","TRUE","","625","28.8","51115","Mathews","{""51115"": ""100""}","Mathews","51115","FALSE","FALSE","America/New_York"
-"23139","37.54972","-77.93374","Powhatan","VA","Virginia","TRUE","","24647","39.8","51145","Powhatan","{""51145"": ""99.21"", ""51049"": ""0.79""}","Powhatan|Cumberland","51145|51049","FALSE","FALSE","America/New_York"
-"23140","37.43858","-77.04431","Providence Forge","VA","Virginia","TRUE","","6431","33.1","51127","New Kent","{""51127"": ""65.78"", ""51036"": ""34.22""}","New Kent|Charles City","51127|51036","FALSE","FALSE","America/New_York"
-"23141","37.52994","-77.15541","Quinton","VA","Virginia","TRUE","","7026","74.6","51127","New Kent","{""51127"": ""100""}","New Kent","51127","FALSE","FALSE","America/New_York"
-"23146","37.72648","-77.7074","Rockville","VA","Virginia","TRUE","","3257","37.6","51085","Hanover","{""51085"": ""86.84"", ""51075"": ""13.16""}","Hanover|Goochland","51085|51075","FALSE","FALSE","America/New_York"
-"23148","37.84792","-77.05503","Saint Stephens Church","VA","Virginia","TRUE","","1799","10.7","51097","King and Queen","{""51097"": ""87.25"", ""51057"": ""12.75""}","King and Queen|Essex","51097|51057","FALSE","FALSE","America/New_York"
-"23149","37.56856","-76.61577","Saluda","VA","Virginia","TRUE","","3116","23.8","51119","Middlesex","{""51119"": ""49.97"", ""51073"": ""39.31"", ""51097"": ""10.72""}","Middlesex|Gloucester|King and Queen","51119|51073|51097","FALSE","FALSE","America/New_York"
-"23150","37.50692","-77.2535","Sandston","VA","Virginia","TRUE","","12862","166.7","51087","Henrico","{""51087"": ""100""}","Henrico","51087","FALSE","FALSE","America/New_York"
-"23153","37.76975","-77.94478","Sandy Hook","VA","Virginia","TRUE","","1372","40.1","51075","Goochland","{""51075"": ""100""}","Goochland","51075","FALSE","FALSE","America/New_York"
-"23156","37.52127","-76.7099","Shacklefords","VA","Virginia","TRUE","","1811","17.5","51097","King and Queen","{""51097"": ""100""}","King and Queen","51097","FALSE","FALSE","America/New_York"
-"23160","37.62943","-77.85103","State Farm","VA","Virginia","TRUE","","2557","262.6","51145","Powhatan","{""51145"": ""74.63"", ""51075"": ""25.37""}","Powhatan|Goochland","51145|51075","FALSE","FALSE","America/New_York"
-"23161","37.71657","-76.9307","Stevensville","VA","Virginia","TRUE","","111","4.0","51097","King and Queen","{""51097"": ""100""}","King and Queen","51097","FALSE","FALSE","America/New_York"
-"23163","37.35571","-76.30768","Susan","VA","Virginia","TRUE","","27","5.3","51115","Mathews","{""51115"": ""100""}","Mathews","51115","FALSE","FALSE","America/New_York"
-"23168","37.39997","-76.82728","Toano","VA","Virginia","TRUE","","7703","127.6","51095","James City","{""51095"": ""100""}","James City","51095","FALSE","FALSE","America/New_York"
-"23169","37.5901","-76.46489","Topping","VA","Virginia","TRUE","","1069","44.3","51119","Middlesex","{""51119"": ""100""}","Middlesex","51119","FALSE","FALSE","America/New_York"
-"23173","37.57707","-77.53884","Richmond","VA","Virginia","TRUE","","2227","2108.3","51760","Richmond","{""51760"": ""100""}","Richmond","51760","FALSE","FALSE","America/New_York"
-"23175","37.65026","-76.6225","Urbanna","VA","Virginia","TRUE","","1575","37.3","51119","Middlesex","{""51119"": ""100""}","Middlesex","51119","FALSE","FALSE","America/New_York"
-"23176","37.57039","-76.42144","Wake","VA","Virginia","TRUE","","370","33.0","51119","Middlesex","{""51119"": ""100""}","Middlesex","51119","FALSE","FALSE","America/New_York"
-"23177","37.73799","-77.01393","Walkerton","VA","Virginia","TRUE","","664","12.6","51097","King and Queen","{""51097"": ""82.79"", ""51101"": ""17.21""}","King and Queen|King William","51097|51101","FALSE","FALSE","America/New_York"
-"23180","37.70008","-76.62202","Water View","VA","Virginia","TRUE","","633","24.1","51119","Middlesex","{""51119"": ""100""}","Middlesex","51119","FALSE","FALSE","America/New_York"
-"23181","37.59889","-76.88952","West Point","VA","Virginia","TRUE","","5232","30.9","51101","King William","{""51101"": ""86.33"", ""51127"": ""13.67""}","King William|New Kent","51101|51127","FALSE","FALSE","America/New_York"
-"23185","37.24594","-76.69829","Williamsburg","VA","Virginia","TRUE","","47894","330.2","51095","James City","{""51095"": ""52.51"", ""51830"": ""27.24"", ""51199"": ""20.13"", ""51036"": ""0.12""}","James City|Williamsburg|York|Charles City","51095|51830|51199|51036","FALSE","FALSE","America/New_York"
-"23187","37.26743","-76.72078","Williamsburg","VA","Virginia","TRUE","","251","996.2","51830","Williamsburg","{""51830"": ""100""}","Williamsburg","51830","FALSE","FALSE","America/New_York"
-"23188","37.33941","-76.75551","Williamsburg","VA","Virginia","TRUE","","44499","175.3","51095","James City","{""51095"": ""89.92"", ""51199"": ""7.06"", ""51830"": ""3.02""}","James City|York|Williamsburg","51095|51199|51830","FALSE","FALSE","America/New_York"
-"23192","37.82069","-77.68152","Montpelier","VA","Virginia","TRUE","","6903","35.0","51085","Hanover","{""51085"": ""95.2"", ""51109"": ""4.8""}","Hanover|Louisa","51085|51109","FALSE","FALSE","America/New_York"
-"23219","37.54011","-77.43531","Richmond","VA","Virginia","TRUE","","4504","1133.4","51760","Richmond","{""51760"": ""100""}","Richmond","51760","FALSE","FALSE","America/New_York"
-"23220","37.54897","-77.46043","Richmond","VA","Virginia","TRUE","","34934","2807.2","51760","Richmond","{""51760"": ""100""}","Richmond","51760","FALSE","FALSE","America/New_York"
-"23221","37.55338","-77.49392","Richmond","VA","Virginia","TRUE","","14842","1730.6","51760","Richmond","{""51760"": ""100""}","Richmond","51760","FALSE","FALSE","America/New_York"
-"23222","37.58256","-77.41905","Richmond","VA","Virginia","TRUE","","27212","1265.7","51760","Richmond","{""51760"": ""69.46"", ""51087"": ""30.54""}","Richmond|Henrico","51760|51087","FALSE","FALSE","America/New_York"
-"23223","37.55584","-77.37889","Richmond","VA","Virginia","TRUE","","52309","1199.2","51087","Henrico","{""51087"": ""52.48"", ""51760"": ""47.52""}","Henrico|Richmond","51087|51760","FALSE","FALSE","America/New_York"
-"23224","37.49779","-77.46623","Richmond","VA","Virginia","TRUE","","40546","1342.5","51760","Richmond","{""51760"": ""91.67"", ""51041"": ""8.33""}","Richmond|Chesterfield","51760|51041","FALSE","FALSE","America/New_York"
-"23225","37.51842","-77.51103","Richmond","VA","Virginia","TRUE","","42937","1159.7","51760","Richmond","{""51760"": ""89.22"", ""51041"": ""10.78""}","Richmond|Chesterfield","51760|51041","FALSE","FALSE","America/New_York"
-"23226","37.5779","-77.52383","Richmond","VA","Virginia","TRUE","","16458","1074.3","51760","Richmond","{""51760"": ""50.8"", ""51087"": ""49.2""}","Richmond|Henrico","51760|51087","FALSE","FALSE","America/New_York"
-"23227","37.61464","-77.4425","Richmond","VA","Virginia","TRUE","","25931","880.4","51087","Henrico","{""51087"": ""58.82"", ""51760"": ""41.18""}","Henrico|Richmond","51087|51760","FALSE","FALSE","America/New_York"
-"23228","37.62536","-77.49198","Henrico","VA","Virginia","TRUE","","35704","1230.8","51087","Henrico","{""51087"": ""100""}","Henrico","51087","FALSE","FALSE","America/New_York"
-"23229","37.58729","-77.57281","Henrico","VA","Virginia","TRUE","","35325","956.3","51087","Henrico","{""51087"": ""100""}","Henrico","51087","FALSE","FALSE","America/New_York"
-"23230","37.5862","-77.49093","Richmond","VA","Virginia","TRUE","","6871","636.2","51087","Henrico","{""51087"": ""62.12"", ""51760"": ""37.88""}","Henrico|Richmond","51087|51760","FALSE","FALSE","America/New_York"
-"23231","37.44103","-77.31869","Henrico","VA","Virginia","TRUE","","36564","159.9","51087","Henrico","{""51087"": ""85.86"", ""51760"": ""13.18"", ""51036"": ""0.96""}","Henrico|Richmond|Charles City","51087|51760|51036","FALSE","FALSE","America/New_York"
-"23233","37.64547","-77.62662","Henrico","VA","Virginia","TRUE","","31605","985.1","51087","Henrico","{""51087"": ""98.92"", ""51075"": ""1.08""}","Henrico|Goochland","51087|51075","FALSE","FALSE","America/New_York"
-"23234","37.45208","-77.46968","Richmond","VA","Virginia","TRUE","","44783","872.8","51041","Chesterfield","{""51041"": ""71.57"", ""51760"": ""28.43""}","Chesterfield|Richmond","51041|51760","FALSE","FALSE","America/New_York"
-"23235","37.51332","-77.56451","Richmond","VA","Virginia","TRUE","","32627","721.9","51041","Chesterfield","{""51041"": ""80.29"", ""51760"": ""19.71""}","Chesterfield|Richmond","51041|51760","FALSE","FALSE","America/New_York"
-"23236","37.4744","-77.58632","Richmond","VA","Virginia","TRUE","","24286","646.2","51041","Chesterfield","{""51041"": ""100""}","Chesterfield","51041","FALSE","FALSE","America/New_York"
-"23237","37.40215","-77.45236","Richmond","VA","Virginia","TRUE","","24711","466.9","51041","Chesterfield","{""51041"": ""100""}","Chesterfield","51041","FALSE","FALSE","America/New_York"
-"23238","37.59735","-77.64626","Henrico","VA","Virginia","TRUE","","26132","470.3","51087","Henrico","{""51087"": ""92.22"", ""51075"": ""7.78""}","Henrico|Goochland","51087|51075","FALSE","FALSE","America/New_York"
-"23250","37.50516","-77.32092","Richmond","VA","Virginia","TRUE","","0","0.0","51087","Henrico","{""51087"": ""0""}","Henrico","51087","FALSE","FALSE","America/New_York"
-"23294","37.63044","-77.54232","Henrico","VA","Virginia","TRUE","","18091","1688.4","51087","Henrico","{""51087"": ""100""}","Henrico","51087","FALSE","FALSE","America/New_York"
-"23301","37.68333","-75.63618","Accomac","VA","Virginia","TRUE","","1721","24.4","51001","Accomack","{""51001"": ""100""}","Accomack","51001","FALSE","FALSE","America/New_York"
-"23302","37.86357","-75.5171","Assawoman","VA","Virginia","TRUE","","162","18.8","51001","Accomack","{""51001"": ""100""}","Accomack","51001","FALSE","FALSE","America/New_York"
-"23303","37.90728","-75.50885","Atlantic","VA","Virginia","TRUE","","587","31.9","51001","Accomack","{""51001"": ""100""}","Accomack","51001","FALSE","FALSE","America/New_York"
-"23304","36.9961","-76.57063","Battery Park","VA","Virginia","TRUE","","36","76.3","51093","Isle of Wight","{""51093"": ""100""}","Isle of Wight","51093","FALSE","FALSE","America/New_York"
-"23306","37.57016","-75.87351","Belle Haven","VA","Virginia","TRUE","","766","20.3","51001","Accomack","{""51001"": ""100""}","Accomack","51001","FALSE","FALSE","America/New_York"
-"23307","37.43369","-75.87307","Birdsnest","VA","Virginia","TRUE","","704","34.9","51131","Northampton","{""51131"": ""100""}","Northampton","51131","FALSE","FALSE","America/New_York"
-"23308","37.82556","-75.62061","Bloxom","VA","Virginia","TRUE","","2133","24.9","51001","Accomack","{""51001"": ""100""}","Accomack","51001","FALSE","FALSE","America/New_York"
-"23310","37.26182","-75.95954","Cape Charles","VA","Virginia","TRUE","","4351","28.0","51131","Northampton","{""51131"": ""100""}","Northampton","51131","FALSE","FALSE","America/New_York"
-"23313","37.20267","-75.9453","Capeville","VA","Virginia","TRUE","","184","58.0","51131","Northampton","{""51131"": ""100""}","Northampton","51131","FALSE","FALSE","America/New_York"
-"23314","36.95069","-76.53571","Carrollton","VA","Virginia","TRUE","","9261","186.6","51093","Isle of Wight","{""51093"": ""100""}","Isle of Wight","51093","FALSE","FALSE","America/New_York"
-"23315","36.73871","-76.84278","Carrsville","VA","Virginia","TRUE","","1213","16.1","51093","Isle of Wight","{""51093"": ""100""}","Isle of Wight","51093","FALSE","FALSE","America/New_York"
-"23316","37.29877","-75.98219","Cheriton","VA","Virginia","TRUE","","521","143.5","51131","Northampton","{""51131"": ""100""}","Northampton","51131","FALSE","FALSE","America/New_York"
-"23320","36.75193","-76.2183","Chesapeake","VA","Virginia","TRUE","","57619","701.2","51550","Chesapeake","{""51550"": ""100""}","Chesapeake","51550","FALSE","FALSE","America/New_York"
-"23321","36.80125","-76.42294","Chesapeake","VA","Virginia","TRUE","","36212","537.1","51550","Chesapeake","{""51550"": ""99.81"", ""51800"": ""0.19""}","Chesapeake|Suffolk","51550|51800","FALSE","FALSE","America/New_York"
-"23322","36.63219","-76.22873","Chesapeake","VA","Virginia","TRUE","","64972","166.7","51550","Chesapeake","{""51550"": ""100""}","Chesapeake","51550","FALSE","FALSE","America/New_York"
-"23323","36.67487","-76.39162","Chesapeake","VA","Virginia","TRUE","","41074","132.4","51550","Chesapeake","{""51550"": ""100""}","Chesapeake","51550","FALSE","FALSE","America/New_York"
-"23324","36.7999","-76.27517","Chesapeake","VA","Virginia","TRUE","","23893","1382.1","51550","Chesapeake","{""51550"": ""100""}","Chesapeake","51550","FALSE","FALSE","America/New_York"
-"23325","36.81499","-76.23891","Chesapeake","VA","Virginia","TRUE","","16250","1642.1","51550","Chesapeake","{""51550"": ""100""}","Chesapeake","51550","FALSE","FALSE","America/New_York"
-"23336","37.95452","-75.33766","Chincoteague Island","VA","Virginia","TRUE","","2899","57.9","51001","Accomack","{""51001"": ""100""}","Accomack","51001","FALSE","FALSE","America/New_York"
-"23337","37.92334","-75.48324","Wallops Island","VA","Virginia","TRUE","","430","91.0","51001","Accomack","{""51001"": ""100""}","Accomack","51001","FALSE","FALSE","America/New_York"
-"23347","37.35478","-75.9707","Eastville","VA","Virginia","TRUE","","730","23.9","51131","Northampton","{""51131"": ""100""}","Northampton","51131","FALSE","FALSE","America/New_York"
-"23350","37.51869","-75.87275","Exmore","VA","Virginia","TRUE","","3551","49.0","51131","Northampton","{""51131"": ""100""}","Northampton","51131","FALSE","FALSE","America/New_York"
-"23354","37.47638","-75.90487","Franktown","VA","Virginia","TRUE","","159","18.1","51131","Northampton","{""51131"": ""100""}","Northampton","51131","FALSE","FALSE","America/New_York"
-"23356","37.99049","-75.39232","Greenbackville","VA","Virginia","TRUE","","1187","129.0","51001","Accomack","{""51001"": ""100""}","Accomack","51001","FALSE","FALSE","America/New_York"
-"23357","37.75549","-75.67555","Greenbush","VA","Virginia","TRUE","","747","46.3","51001","Accomack","{""51001"": ""100""}","Accomack","51001","FALSE","FALSE","America/New_York"
-"23358","37.64451","-75.86561","Hacksneck","VA","Virginia","TRUE","","89","6.2","51001","Accomack","{""51001"": ""100""}","Accomack","51001","FALSE","FALSE","America/New_York"
-"23359","37.88316","-75.58988","Hallwood","VA","Virginia","TRUE","","666","17.2","51001","Accomack","{""51001"": ""100""}","Accomack","51001","FALSE","FALSE","America/New_York"
-"23389","37.662","-75.83469","Harborton","VA","Virginia","TRUE","","221","146.9","51001","Accomack","{""51001"": ""100""}","Accomack","51001","FALSE","FALSE","America/New_York"
-"23395","37.97582","-75.46743","Horntown","VA","Virginia","TRUE","","558","16.8","51001","Accomack","{""51001"": ""100""}","Accomack","51001","FALSE","FALSE","America/New_York"
-"23398","37.5121","-75.94103","Jamesville","VA","Virginia","TRUE","","31","3.0","51131","Northampton","{""51131"": ""100""}","Northampton","51131","FALSE","FALSE","America/New_York"
-"23401","37.62749","-75.77945","Keller","VA","Virginia","TRUE","","151","26.0","51001","Accomack","{""51001"": ""100""}","Accomack","51001","FALSE","FALSE","America/New_York"
-"23405","37.4117","-75.91316","Machipongo","VA","Virginia","TRUE","","923","13.0","51131","Northampton","{""51131"": ""100""}","Northampton","51131","FALSE","FALSE","America/New_York"
-"23407","37.83755","-75.55412","Mappsville","VA","Virginia","TRUE","","828","50.6","51001","Accomack","{""51001"": ""100""}","Accomack","51001","FALSE","FALSE","America/New_York"
-"23408","37.45565","-75.84731","Marionville","VA","Virginia","TRUE","","69","14.6","51131","Northampton","{""51131"": ""100""}","Northampton","51131","FALSE","FALSE","America/New_York"
-"23409","37.87938","-75.6436","Mears","VA","Virginia","TRUE","","158","7.5","51001","Accomack","{""51001"": ""100""}","Accomack","51001","FALSE","FALSE","America/New_York"
-"23410","37.63348","-75.73962","Melfa","VA","Virginia","TRUE","","1326","17.7","51001","Accomack","{""51001"": ""100""}","Accomack","51001","FALSE","FALSE","America/New_York"
-"23413","37.47284","-75.85798","Nassawadox","VA","Virginia","TRUE","","639","19.6","51131","Northampton","{""51131"": ""100""}","Northampton","51131","FALSE","FALSE","America/New_York"
-"23414","37.8062","-75.57747","Nelsonia","VA","Virginia","TRUE","","174","46.2","51001","Accomack","{""51001"": ""100""}","Accomack","51001","FALSE","FALSE","America/New_York"
-"23415","37.96889","-75.53604","New Church","VA","Virginia","TRUE","","1603","20.9","51001","Accomack","{""51001"": ""100""}","Accomack","51001","FALSE","FALSE","America/New_York"
-"23416","37.93378","-75.56333","Oak Hall","VA","Virginia","TRUE","","166","11.8","51001","Accomack","{""51001"": ""100""}","Accomack","51001","FALSE","FALSE","America/New_York"
-"23417","37.72934","-75.76577","Onancock","VA","Virginia","TRUE","","3438","26.9","51001","Accomack","{""51001"": ""100""}","Accomack","51001","FALSE","FALSE","America/New_York"
-"23418","37.66648","-75.68136","Onley","VA","Virginia","TRUE","","963","37.3","51001","Accomack","{""51001"": ""100""}","Accomack","51001","FALSE","FALSE","America/New_York"
-"23420","37.58323","-75.80986","Painter","VA","Virginia","TRUE","","3739","44.5","51001","Accomack","{""51001"": ""100""}","Accomack","51001","FALSE","FALSE","America/New_York"
-"23421","37.76698","-75.61443","Parksley","VA","Virginia","TRUE","","4423","52.9","51001","Accomack","{""51001"": ""100""}","Accomack","51001","FALSE","FALSE","America/New_York"
-"23422","37.63672","-75.82551","Pungoteague","VA","Virginia","TRUE","","147","13.6","51001","Accomack","{""51001"": ""100""}","Accomack","51001","FALSE","FALSE","America/New_York"
-"23423","37.52286","-75.70557","Quinby","VA","Virginia","TRUE","","419","4.8","51001","Accomack","{""51001"": ""100""}","Accomack","51001","FALSE","FALSE","America/New_York"
-"23426","37.92158","-75.67047","Sanford","VA","Virginia","TRUE","","94","7.0","51001","Accomack","{""51001"": ""100""}","Accomack","51001","FALSE","FALSE","America/New_York"
-"23427","37.91297","-75.71341","Saxis","VA","Virginia","TRUE","","238","18.3","51001","Accomack","{""51001"": ""100""}","Accomack","51001","FALSE","FALSE","America/New_York"
-"23430","36.9836","-76.66052","Smithfield","VA","Virginia","TRUE","","17245","66.2","51093","Isle of Wight","{""51093"": ""100""}","Isle of Wight","51093","FALSE","FALSE","America/New_York"
-"23432","36.87174","-76.55076","Suffolk","VA","Virginia","TRUE","","1506","43.9","51800","Suffolk","{""51800"": ""100""}","Suffolk","51800","FALSE","FALSE","America/New_York"
-"23433","36.90773","-76.49162","Suffolk","VA","Virginia","TRUE","","1214","278.4","51800","Suffolk","{""51800"": ""100""}","Suffolk","51800","FALSE","FALSE","America/New_York"
-"23434","36.70121","-76.59159","Suffolk","VA","Virginia","TRUE","","49625","94.3","51800","Suffolk","{""51800"": ""100""}","Suffolk","51800","FALSE","FALSE","America/New_York"
-"23435","36.83257","-76.4829","Suffolk","VA","Virginia","TRUE","","30626","304.7","51800","Suffolk","{""51800"": ""100""}","Suffolk","51800","FALSE","FALSE","America/New_York"
-"23436","36.89525","-76.50858","Suffolk","VA","Virginia","TRUE","","1019","248.7","51800","Suffolk","{""51800"": ""100""}","Suffolk","51800","FALSE","FALSE","America/New_York"
-"23437","36.63562","-76.80294","Suffolk","VA","Virginia","TRUE","","4308","16.7","51800","Suffolk","{""51800"": ""100""}","Suffolk","51800","FALSE","FALSE","America/New_York"
-"23438","36.58144","-76.69689","Suffolk","VA","Virginia","TRUE","","1795","16.9","51800","Suffolk","{""51800"": ""100""}","Suffolk","51800","FALSE","FALSE","America/New_York"
-"23440","37.8307","-75.99018","Tangier","VA","Virginia","TRUE","","506","123.2","51001","Accomack","{""51001"": ""100""}","Accomack","51001","FALSE","FALSE","America/New_York"
-"23441","37.71026","-75.69956","Tasley","VA","Virginia","TRUE","","125","77.8","51001","Accomack","{""51001"": ""100""}","Accomack","51001","FALSE","FALSE","America/New_York"
-"23442","37.90632","-75.57224","Temperanceville","VA","Virginia","TRUE","","1263","36.5","51001","Accomack","{""51001"": ""100""}","Accomack","51001","FALSE","FALSE","America/New_York"
-"23451","36.86739","-76.00587","Virginia Beach","VA","Virginia","TRUE","","43230","900.9","51810","Virginia Beach","{""51810"": ""100""}","Virginia Beach","51810","FALSE","FALSE","America/New_York"
-"23452","36.84674","-76.09255","Virginia Beach","VA","Virginia","TRUE","","58996","1539.4","51810","Virginia Beach","{""51810"": ""100""}","Virginia Beach","51810","FALSE","FALSE","America/New_York"
-"23453","36.78557","-76.07572","Virginia Beach","VA","Virginia","TRUE","","35019","1458.7","51810","Virginia Beach","{""51810"": ""100""}","Virginia Beach","51810","FALSE","FALSE","America/New_York"
-"23454","36.82642","-76.02462","Virginia Beach","VA","Virginia","TRUE","","58904","756.1","51810","Virginia Beach","{""51810"": ""100""}","Virginia Beach","51810","FALSE","FALSE","America/New_York"
-"23455","36.89334","-76.14639","Virginia Beach","VA","Virginia","TRUE","","49263","1156.6","51810","Virginia Beach","{""51810"": ""100""}","Virginia Beach","51810","FALSE","FALSE","America/New_York"
-"23456","36.73404","-76.03592","Virginia Beach","VA","Virginia","TRUE","","54337","424.7","51810","Virginia Beach","{""51810"": ""100""}","Virginia Beach","51810","FALSE","FALSE","America/New_York"
-"23457","36.61597","-76.01907","Virginia Beach","VA","Virginia","TRUE","","4180","24.3","51810","Virginia Beach","{""51810"": ""100""}","Virginia Beach","51810","FALSE","FALSE","America/New_York"
-"23459","36.92469","-76.0201","Virginia Beach","VA","Virginia","TRUE","","1430","389.0","51810","Virginia Beach","{""51810"": ""100""}","Virginia Beach","51810","FALSE","FALSE","America/New_York"
-"23460","36.80798","-76.02844","Virginia Beach","VA","Virginia","TRUE","","2024","3598.1","51810","Virginia Beach","{""51810"": ""100""}","Virginia Beach","51810","FALSE","FALSE","America/New_York"
-"23461","36.77533","-75.96316","Virginia Beach","VA","Virginia","TRUE","","453","2878.1","51810","Virginia Beach","{""51810"": ""100""}","Virginia Beach","51810","FALSE","FALSE","America/New_York"
-"23462","36.83721","-76.1517","Virginia Beach","VA","Virginia","TRUE","","65906","2185.0","51810","Virginia Beach","{""51810"": ""100""}","Virginia Beach","51810","FALSE","FALSE","America/New_York"
-"23464","36.79724","-76.17922","Virginia Beach","VA","Virginia","TRUE","","76421","1785.1","51810","Virginia Beach","{""51810"": ""100""}","Virginia Beach","51810","FALSE","FALSE","America/New_York"
-"23480","37.61394","-75.6905","Wachapreague","VA","Virginia","TRUE","","380","76.1","51001","Accomack","{""51001"": ""100""}","Accomack","51001","FALSE","FALSE","America/New_York"
-"23486","37.5135","-75.81115","Willis Wharf","VA","Virginia","TRUE","","23","22.7","51131","Northampton","{""51131"": ""100""}","Northampton","51131","FALSE","FALSE","America/New_York"
-"23487","36.852","-76.72259","Windsor","VA","Virginia","TRUE","","5728","23.5","51093","Isle of Wight","{""51093"": ""100""}","Isle of Wight","51093","FALSE","FALSE","America/New_York"
-"23488","37.95242","-75.60824","Withams","VA","Virginia","TRUE","","366","19.4","51001","Accomack","{""51001"": ""100""}","Accomack","51001","FALSE","FALSE","America/New_York"
-"23502","36.86285","-76.20988","Norfolk","VA","Virginia","TRUE","","21363","829.3","51710","Norfolk","{""51710"": ""100""}","Norfolk","51710","FALSE","FALSE","America/New_York"
-"23503","36.94728","-76.26289","Norfolk","VA","Virginia","TRUE","","31915","2396.9","51710","Norfolk","{""51710"": ""100""}","Norfolk","51710","FALSE","FALSE","America/New_York"
-"23504","36.8568","-76.26574","Norfolk","VA","Virginia","TRUE","","23330","2190.1","51710","Norfolk","{""51710"": ""100""}","Norfolk","51710","FALSE","FALSE","America/New_York"
-"23505","36.91587","-76.28827","Norfolk","VA","Virginia","TRUE","","30270","1836.1","51710","Norfolk","{""51710"": ""100""}","Norfolk","51710","FALSE","FALSE","America/New_York"
-"23507","36.86451","-76.30312","Norfolk","VA","Virginia","TRUE","","6795","2921.8","51710","Norfolk","{""51710"": ""100""}","Norfolk","51710","FALSE","FALSE","America/New_York"
-"23508","36.88444","-76.30898","Norfolk","VA","Virginia","TRUE","","21697","2513.6","51710","Norfolk","{""51710"": ""100""}","Norfolk","51710","FALSE","FALSE","America/New_York"
-"23509","36.88214","-76.26203","Norfolk","VA","Virginia","TRUE","","13567","2073.3","51710","Norfolk","{""51710"": ""100""}","Norfolk","51710","FALSE","FALSE","America/New_York"
-"23510","36.85188","-76.29173","Norfolk","VA","Virginia","TRUE","","8913","2921.1","51710","Norfolk","{""51710"": ""100""}","Norfolk","51710","FALSE","FALSE","America/New_York"
-"23511","36.936","-76.30379","Norfolk","VA","Virginia","TRUE","","13773","1000.1","51710","Norfolk","{""51710"": ""100""}","Norfolk","51710","FALSE","FALSE","America/New_York"
-"23513","36.88986","-76.23859","Norfolk","VA","Virginia","TRUE","","30384","2296.0","51710","Norfolk","{""51710"": ""100""}","Norfolk","51710","FALSE","FALSE","America/New_York"
-"23517","36.8696","-76.29241","Norfolk","VA","Virginia","TRUE","","4543","2197.3","51710","Norfolk","{""51710"": ""100""}","Norfolk","51710","FALSE","FALSE","America/New_York"
-"23518","36.91648","-76.21584","Norfolk","VA","Virginia","TRUE","","29301","1848.6","51710","Norfolk","{""51710"": ""100""}","Norfolk","51710","FALSE","FALSE","America/New_York"
-"23523","36.83255","-76.272","Norfolk","VA","Virginia","TRUE","","7561","1396.4","51710","Norfolk","{""51710"": ""100""}","Norfolk","51710","FALSE","FALSE","America/New_York"
-"23551","36.92404","-76.28863","Norfolk","VA","Virginia","TRUE","","1189","1358.1","51710","Norfolk","{""51710"": ""100""}","Norfolk","51710","FALSE","FALSE","America/New_York"
-"23601","37.05863","-76.46392","Newport News","VA","Virginia","TRUE","","25005","1295.1","51700","Newport News","{""51700"": ""100""}","Newport News","51700","FALSE","FALSE","America/New_York"
-"23602","37.1148","-76.51582","Newport News","VA","Virginia","TRUE","","38821","1117.9","51700","Newport News","{""51700"": ""99.76"", ""51199"": ""0.24""}","Newport News|York","51700|51199","FALSE","FALSE","America/New_York"
-"23603","37.19285","-76.5663","Newport News","VA","Virginia","TRUE","","3907","209.0","51700","Newport News","{""51700"": ""85.64"", ""51199"": ""14.36""}","Newport News|York","51700|51199","FALSE","FALSE","America/New_York"
-"23604","37.13162","-76.58874","Fort Eustis","VA","Virginia","TRUE","","6900","219.9","51700","Newport News","{""51700"": ""100""}","Newport News","51700","FALSE","FALSE","America/New_York"
-"23605","37.01814","-76.43569","Newport News","VA","Virginia","TRUE","","13801","1418.9","51700","Newport News","{""51700"": ""73.86"", ""51650"": ""26.14""}","Newport News|Hampton","51700|51650","FALSE","FALSE","America/New_York"
-"23606","37.07775","-76.49622","Newport News","VA","Virginia","TRUE","","28772","1183.8","51700","Newport News","{""51700"": ""100""}","Newport News","51700","FALSE","FALSE","America/New_York"
-"23607","36.98737","-76.4223","Newport News","VA","Virginia","TRUE","","23067","1493.5","51700","Newport News","{""51700"": ""100""}","Newport News","51700","FALSE","FALSE","America/New_York"
-"23608","37.15114","-76.54327","Newport News","VA","Virginia","TRUE","","43058","1553.4","51700","Newport News","{""51700"": ""100""}","Newport News","51700","FALSE","FALSE","America/New_York"
-"23651","37.00917","-76.30503","Fort Monroe","VA","Virginia","TRUE","","479","235.5","51650","Hampton","{""51650"": ""100""}","Hampton","51650","FALSE","FALSE","America/New_York"
-"23661","37.00799","-76.38682","Hampton","VA","Virginia","TRUE","","12812","1052.4","51650","Hampton","{""51650"": ""100""}","Hampton","51650","FALSE","FALSE","America/New_York"
-"23662","37.13181","-76.35673","Poquoson","VA","Virginia","TRUE","","12066","304.1","51735","Poquoson","{""51735"": ""100""}","Poquoson","51735","FALSE","FALSE","America/New_York"
-"23663","37.03303","-76.31431","Hampton","VA","Virginia","TRUE","","13528","1879.8","51650","Hampton","{""51650"": ""100""}","Hampton","51650","FALSE","FALSE","America/New_York"
-"23664","37.07528","-76.29229","Hampton","VA","Virginia","TRUE","","9593","707.7","51650","Hampton","{""51650"": ""100""}","Hampton","51650","FALSE","FALSE","America/New_York"
-"23665","37.09045","-76.36454","Hampton","VA","Virginia","TRUE","","6363","443.3","51199","York","{""51199"": ""73.77"", ""51650"": ""26.23""}","York|Hampton","51199|51650","FALSE","FALSE","America/New_York"
-"23666","37.05912","-76.40727","Hampton","VA","Virginia","TRUE","","52249","1019.5","51650","Hampton","{""51650"": ""100""}","Hampton","51650","FALSE","FALSE","America/New_York"
-"23669","37.04973","-76.33944","Hampton","VA","Virginia","TRUE","","40996","1269.9","51650","Hampton","{""51650"": ""100""}","Hampton","51650","FALSE","FALSE","America/New_York"
-"23690","37.22098","-76.52399","Yorktown","VA","Virginia","TRUE","","4374","221.7","51199","York","{""51199"": ""100""}","York","51199","FALSE","FALSE","America/New_York"
-"23691","37.25171","-76.55206","Yorktown","VA","Virginia","TRUE","","152","32.2","51199","York","{""51199"": ""100""}","York","51199","FALSE","FALSE","America/New_York"
-"23692","37.18303","-76.46665","Yorktown","VA","Virginia","TRUE","","18273","309.0","51199","York","{""51199"": ""100""}","York","51199","FALSE","FALSE","America/New_York"
-"23693","37.12555","-76.44667","Yorktown","VA","Virginia","TRUE","","24311","699.9","51199","York","{""51199"": ""100""}","York","51199","FALSE","FALSE","America/New_York"
-"23696","37.19248","-76.4259","Seaford","VA","Virginia","TRUE","","3696","254.4","51199","York","{""51199"": ""100""}","York","51199","FALSE","FALSE","America/New_York"
-"23701","36.81181","-76.37078","Portsmouth","VA","Virginia","TRUE","","23951","1237.1","51740","Portsmouth","{""51740"": ""100""}","Portsmouth","51740","FALSE","FALSE","America/New_York"
-"23702","36.80318","-76.32892","Portsmouth","VA","Virginia","TRUE","","11020","1687.6","51740","Portsmouth","{""51740"": ""100""}","Portsmouth","51740","FALSE","FALSE","America/New_York"
-"23703","36.88036","-76.37108","Portsmouth","VA","Virginia","TRUE","","26655","737.2","51740","Portsmouth","{""51740"": ""100""}","Portsmouth","51740","FALSE","FALSE","America/New_York"
-"23704","36.82404","-76.31011","Portsmouth","VA","Virginia","TRUE","","17592","1334.6","51740","Portsmouth","{""51740"": ""100""}","Portsmouth","51740","FALSE","FALSE","America/New_York"
-"23707","36.84263","-76.33988","Portsmouth","VA","Virginia","TRUE","","14685","1426.8","51740","Portsmouth","{""51740"": ""100""}","Portsmouth","51740","FALSE","FALSE","America/New_York"
-"23708","36.84817","-76.30635","Portsmouth","VA","Virginia","TRUE","","508","1198.1","51740","Portsmouth","{""51740"": ""100""}","Portsmouth","51740","FALSE","FALSE","America/New_York"
-"23709","36.81267","-76.30525","Portsmouth","VA","Virginia","TRUE","","686","1744.3","51740","Portsmouth","{""51740"": ""100""}","Portsmouth","51740","FALSE","FALSE","America/New_York"
-"23801","37.23535","-77.3353","Fort Lee","VA","Virginia","TRUE","","5763","352.5","51149","Prince George","{""51149"": ""100""}","Prince George","51149","FALSE","FALSE","America/New_York"
-"23803","37.21232","-77.48143","Petersburg","VA","Virginia","TRUE","","38187","204.0","51730","Petersburg","{""51730"": ""47.53"", ""51041"": ""26.42"", ""51053"": ""26.05""}","Petersburg|Chesterfield|Dinwiddie","51730|51041|51053","FALSE","FALSE","America/New_York"
-"23805","37.12902","-77.39782","Petersburg","VA","Virginia","TRUE","","19440","102.4","51730","Petersburg","{""51730"": ""67.47"", ""51149"": ""22.78"", ""51053"": ""9.75""}","Petersburg|Prince George|Dinwiddie","51730|51149|51053","FALSE","FALSE","America/New_York"
-"23806","37.23857","-77.41827","Virginia State University","VA","Virginia","TRUE","","1640","3802.3","51041","Chesterfield","{""51041"": ""100""}","Chesterfield","51041","FALSE","FALSE","America/New_York"
-"23821","36.88067","-77.92043","Alberta","VA","Virginia","TRUE","","2016","12.0","51025","Brunswick","{""51025"": ""100""}","Brunswick","51025","FALSE","FALSE","America/New_York"
-"23824","37.08962","-77.96734","Blackstone","VA","Virginia","TRUE","","6476","14.1","51135","Nottoway","{""51135"": ""94.84"", ""51025"": ""3.11"", ""51053"": ""1.3"", ""51111"": ""0.75""}","Nottoway|Brunswick|Dinwiddie|Lunenburg","51135|51025|51053|51111","FALSE","FALSE","America/New_York"
-"23827","36.61059","-77.2012","Boykins","VA","Virginia","TRUE","","1491","11.2","51175","Southampton","{""51175"": ""100""}","Southampton","51175","FALSE","FALSE","America/New_York"
-"23828","36.58214","-77.28601","Branchville","VA","Virginia","TRUE","","333","3.6","51175","Southampton","{""51175"": ""100""}","Southampton","51175","FALSE","FALSE","America/New_York"
-"23829","36.73033","-77.22214","Capron","VA","Virginia","TRUE","","2454","11.6","51175","Southampton","{""51175"": ""100""}","Southampton","51175","FALSE","FALSE","America/New_York"
-"23830","37.02013","-77.39588","Carson","VA","Virginia","TRUE","","1565","13.0","51149","Prince George","{""51149"": ""44"", ""51053"": ""40.24"", ""51183"": ""15.76""}","Prince George|Dinwiddie|Sussex","51149|51053|51183","FALSE","FALSE","America/New_York"
-"23831","37.3454","-77.44974","Chester","VA","Virginia","TRUE","","35964","575.8","51041","Chesterfield","{""51041"": ""100""}","Chesterfield","51041","FALSE","FALSE","America/New_York"
-"23832","37.39467","-77.5926","Chesterfield","VA","Virginia","TRUE","","38329","373.7","51041","Chesterfield","{""51041"": ""100""}","Chesterfield","51041","FALSE","FALSE","America/New_York"
-"23833","37.2077","-77.6727","Church Road","VA","Virginia","TRUE","","2216","15.0","51053","Dinwiddie","{""51053"": ""92.56"", ""51007"": ""7.44""}","Dinwiddie|Amelia","51053|51007","FALSE","FALSE","America/New_York"
-"23834","37.28974","-77.40366","Colonial Heights","VA","Virginia","TRUE","","26017","444.9","51570","Colonial Heights","{""51570"": ""67.98"", ""51041"": ""32.02""}","Colonial Heights|Chesterfield","51570|51041","FALSE","FALSE","America/New_York"
-"23836","37.34422","-77.34477","Chester","VA","Virginia","TRUE","","13787","209.5","51041","Chesterfield","{""51041"": ""100""}","Chesterfield","51041","FALSE","FALSE","America/New_York"
-"23837","36.75245","-77.08504","Courtland","VA","Virginia","TRUE","","4406","16.0","51175","Southampton","{""51175"": ""98.51"", ""51183"": ""1.49""}","Southampton|Sussex","51175|51183","FALSE","FALSE","America/New_York"
-"23838","37.31847","-77.63389","Chesterfield","VA","Virginia","TRUE","","16666","64.5","51041","Chesterfield","{""51041"": ""100""}","Chesterfield","51041","FALSE","FALSE","America/New_York"
-"23839","37.07982","-76.91887","Dendron","VA","Virginia","TRUE","","936","14.4","51181","Surry","{""51181"": ""100""}","Surry","51181","FALSE","FALSE","America/New_York"
-"23840","37.05936","-77.66519","Dewitt","VA","Virginia","TRUE","","2719","22.0","51053","Dinwiddie","{""51053"": ""100""}","Dinwiddie","51053","FALSE","FALSE","America/New_York"
-"23841","37.05234","-77.55182","Dinwiddie","VA","Virginia","TRUE","","3266","17.2","51053","Dinwiddie","{""51053"": ""100""}","Dinwiddie","51053","FALSE","FALSE","America/New_York"
-"23842","37.13341","-77.22381","Disputanta","VA","Virginia","TRUE","","6458","19.1","51149","Prince George","{""51149"": ""93.64"", ""51183"": ""5.89"", ""51181"": ""0.46""}","Prince George|Sussex|Surry","51149|51183|51181","FALSE","FALSE","America/New_York"
-"23843","36.84663","-77.81515","Dolphin","VA","Virginia","TRUE","","417","5.5","51025","Brunswick","{""51025"": ""100""}","Brunswick","51025","FALSE","FALSE","America/New_York"
-"23844","36.66982","-77.33704","Drewryville","VA","Virginia","TRUE","","612","5.2","51175","Southampton","{""51175"": ""100""}","Southampton","51175","FALSE","FALSE","America/New_York"
-"23845","36.5722","-77.98887","Ebony","VA","Virginia","TRUE","","519","14.7","51025","Brunswick","{""51025"": ""100""}","Brunswick","51025","FALSE","FALSE","America/New_York"
-"23846","37.057","-76.83777","Elberon","VA","Virginia","TRUE","","852","7.7","51181","Surry","{""51181"": ""100""}","Surry","51181","FALSE","FALSE","America/New_York"
-"23847","36.67043","-77.55067","Emporia","VA","Virginia","TRUE","","15717","21.6","51081","Greensville","{""51081"": ""60.61"", ""51595"": ""34.94"", ""51025"": ""2.5"", ""51175"": ""1.25"", ""51183"": ""0.7""}","Greensville|Emporia|Brunswick|Southampton|Sussex","51081|51595|51025|51175|51183","FALSE","FALSE","America/New_York"
-"23850","37.17355","-77.7417","Ford","VA","Virginia","TRUE","","1211","9.3","51053","Dinwiddie","{""51053"": ""77.07"", ""51007"": ""22.93""}","Dinwiddie|Amelia","51053|51007","FALSE","FALSE","America/New_York"
-"23851","36.65546","-76.95391","Franklin","VA","Virginia","TRUE","","13437","48.6","51620","Franklin","{""51620"": ""62.57"", ""51175"": ""28.97"", ""51093"": ""8.46""}","Franklin|Southampton|Isle of Wight","51620|51175|51093","FALSE","FALSE","America/New_York"
-"23856","36.78383","-77.70183","Freeman","VA","Virginia","TRUE","","907","7.5","51025","Brunswick","{""51025"": ""96.22"", ""51081"": ""3.78""}","Brunswick|Greensville","51025|51081","FALSE","FALSE","America/New_York"
-"23857","36.5856","-77.88357","Gasburg","VA","Virginia","TRUE","","687","17.6","51025","Brunswick","{""51025"": ""100""}","Brunswick","51025","FALSE","FALSE","America/New_York"
-"23860","37.27984","-77.21731","Hopewell","VA","Virginia","TRUE","","30524","233.4","51670","Hopewell","{""51670"": ""70.66"", ""51149"": ""29.34""}","Hopewell|Prince George","51670|51149","FALSE","FALSE","America/New_York"
-"23866","36.91864","-76.86692","Ivor","VA","Virginia","TRUE","","1974","8.8","51175","Southampton","{""51175"": ""78.23"", ""51093"": ""21.77""}","Southampton|Isle of Wight","51175|51093","FALSE","FALSE","America/New_York"
-"23867","36.81698","-77.48272","Jarratt","VA","Virginia","TRUE","","1930","8.1","51081","Greensville","{""51081"": ""56.88"", ""51183"": ""43.12""}","Greensville|Sussex","51081|51183","FALSE","FALSE","America/New_York"
-"23868","36.71344","-77.80481","Lawrenceville","VA","Virginia","TRUE","","6986","22.2","51025","Brunswick","{""51025"": ""100""}","Brunswick","51025","FALSE","FALSE","America/New_York"
-"23872","36.98779","-77.71819","McKenney","VA","Virginia","TRUE","","2549","10.3","51053","Dinwiddie","{""51053"": ""100""}","Dinwiddie","51053","FALSE","FALSE","America/New_York"
-"23874","36.60221","-77.08604","Newsoms","VA","Virginia","TRUE","","924","8.9","51175","Southampton","{""51175"": ""100""}","Southampton","51175","FALSE","FALSE","America/New_York"
-"23875","37.2283","-77.2631","Prince George","VA","Virginia","TRUE","","12313","135.1","51149","Prince George","{""51149"": ""100""}","Prince George","51149","FALSE","FALSE","America/New_York"
-"23876","36.95656","-77.83771","Rawlings","VA","Virginia","TRUE","","267","2.9","51025","Brunswick","{""51025"": ""100""}","Brunswick","51025","FALSE","FALSE","America/New_York"
-"23878","36.83196","-77.024","Sedley","VA","Virginia","TRUE","","989","9.7","51175","Southampton","{""51175"": ""100""}","Southampton","51175","FALSE","FALSE","America/New_York"
-"23879","36.59299","-77.59676","Skippers","VA","Virginia","TRUE","","512","5.9","51081","Greensville","{""51081"": ""100""}","Greensville","51081","FALSE","FALSE","America/New_York"
-"23881","37.18796","-76.98665","Spring Grove","VA","Virginia","TRUE","","2023","6.5","51181","Surry","{""51181"": ""76.47"", ""51149"": ""23.53""}","Surry|Prince George","51181|51149","FALSE","FALSE","America/New_York"
-"23882","36.92569","-77.4151","Stony Creek","VA","Virginia","TRUE","","2136","5.1","51183","Sussex","{""51183"": ""71.5"", ""51053"": ""28.5""}","Sussex|Dinwiddie","51183|51053","FALSE","FALSE","America/New_York"
-"23883","37.12075","-76.74915","Surry","VA","Virginia","TRUE","","2065","14.0","51181","Surry","{""51181"": ""100""}","Surry","51181","FALSE","FALSE","America/New_York"
-"23884","36.91725","-77.27943","Sussex","VA","Virginia","TRUE","","38","41.4","51183","Sussex","{""51183"": ""100""}","Sussex","51183","FALSE","FALSE","America/New_York"
-"23885","37.18641","-77.57841","Sutherland","VA","Virginia","TRUE","","2542","28.9","51053","Dinwiddie","{""51053"": ""100""}","Dinwiddie","51053","FALSE","FALSE","America/New_York"
-"23887","36.57107","-77.80839","Valentines","VA","Virginia","TRUE","","307","5.8","51025","Brunswick","{""51025"": ""100""}","Brunswick","51025","FALSE","FALSE","America/New_York"
-"23888","36.9569","-76.98245","Wakefield","VA","Virginia","TRUE","","2420","10.7","51183","Sussex","{""51183"": ""77.76"", ""51175"": ""11.65"", ""51181"": ""10.59""}","Sussex|Southampton|Surry","51183|51175|51181","FALSE","FALSE","America/New_York"
-"23889","36.89609","-77.73768","Warfield","VA","Virginia","TRUE","","748","8.6","51025","Brunswick","{""51025"": ""100""}","Brunswick","51025","FALSE","FALSE","America/New_York"
-"23890","37.0034","-77.11941","Waverly","VA","Virginia","TRUE","","4396","8.7","51183","Sussex","{""51183"": ""87.17"", ""51181"": ""12.83""}","Sussex|Surry","51183|51181","FALSE","FALSE","America/New_York"
-"23891","37.05082","-77.21243","Waverly","VA","Virginia","TRUE","","2112","352.3","51183","Sussex","{""51183"": ""100""}","Sussex","51183","FALSE","FALSE","America/New_York"
-"23893","36.63627","-77.92792","White Plains","VA","Virginia","TRUE","","286","4.3","51025","Brunswick","{""51025"": ""100""}","Brunswick","51025","FALSE","FALSE","America/New_York"
-"23894","37.12619","-77.81795","Wilsons","VA","Virginia","TRUE","","807","9.6","51053","Dinwiddie","{""51053"": ""100""}","Dinwiddie","51053","FALSE","FALSE","America/New_York"
-"23897","36.83172","-77.28377","Yale","VA","Virginia","TRUE","","516","3.4","51183","Sussex","{""51183"": ""100""}","Sussex","51183","FALSE","FALSE","America/New_York"
-"23898","36.8273","-76.85599","Zuni","VA","Virginia","TRUE","","2190","17.0","51093","Isle of Wight","{""51093"": ""65.54"", ""51175"": ""34.46""}","Isle of Wight|Southampton","51093|51175","FALSE","FALSE","America/New_York"
-"23899","37.23078","-76.96558","Claremont","VA","Virginia","TRUE","","330","50.9","51181","Surry","{""51181"": ""100""}","Surry","51181","FALSE","FALSE","America/New_York"
-"23901","37.31622","-78.41609","Farmville","VA","Virginia","TRUE","","18397","35.5","51147","Prince Edward","{""51147"": ""72.93"", ""51049"": ""20.51"", ""51029"": ""6.57""}","Prince Edward|Cumberland|Buckingham","51147|51049|51029","FALSE","FALSE","America/New_York"
-"23909","37.30057","-78.39668","Farmville","VA","Virginia","TRUE","","447","4512.2","51147","Prince Edward","{""51147"": ""100""}","Prince Edward","51147","FALSE","FALSE","America/New_York"
-"23915","36.70149","-78.28677","Baskerville","VA","Virginia","TRUE","","1215","14.3","51117","Mecklenburg","{""51117"": ""100""}","Mecklenburg","51117","FALSE","FALSE","America/New_York"
-"23917","36.62447","-78.34255","Boydton","VA","Virginia","TRUE","","2778","9.9","51117","Mecklenburg","{""51117"": ""100""}","Mecklenburg","51117","FALSE","FALSE","America/New_York"
-"23919","36.59513","-78.13501","Bracey","VA","Virginia","TRUE","","2436","28.8","51117","Mecklenburg","{""51117"": ""95.87"", ""51025"": ""4.13""}","Mecklenburg|Brunswick","51117|51025","FALSE","FALSE","America/New_York"
-"23920","36.72431","-77.97677","Brodnax","VA","Virginia","TRUE","","2975","9.4","51025","Brunswick","{""51025"": ""73.29"", ""51117"": ""22.84"", ""51111"": ""3.87""}","Brunswick|Mecklenburg|Lunenburg","51025|51117|51111","FALSE","FALSE","America/New_York"
-"23921","37.59078","-78.61976","Buckingham","VA","Virginia","TRUE","","1297","6.2","51029","Buckingham","{""51029"": ""100""}","Buckingham","51029","FALSE","FALSE","America/New_York"
-"23922","37.1871","-78.2148","Burkeville","VA","Virginia","TRUE","","4551","25.9","51135","Nottoway","{""51135"": ""85.87"", ""51147"": ""14.13""}","Nottoway|Prince Edward","51135|51147","FALSE","FALSE","America/New_York"
-"23923","37.09234","-78.64394","Charlotte Court House","VA","Virginia","TRUE","","3083","13.4","51037","Charlotte","{""51037"": ""96.18"", ""51147"": ""3.82""}","Charlotte|Prince Edward","51037|51147","FALSE","FALSE","America/New_York"
-"23924","36.80743","-78.43198","Chase City","VA","Virginia","TRUE","","5625","15.8","51117","Mecklenburg","{""51117"": ""94.98"", ""51111"": ""3.1"", ""51037"": ""1.93""}","Mecklenburg|Lunenburg|Charlotte","51117|51111|51037","FALSE","FALSE","America/New_York"
-"23927","36.61067","-78.51213","Clarksville","VA","Virginia","TRUE","","4074","20.8","51117","Mecklenburg","{""51117"": ""100""}","Mecklenburg","51117","FALSE","FALSE","America/New_York"
-"23930","37.17241","-78.09939","Crewe","VA","Virginia","TRUE","","4919","17.7","51135","Nottoway","{""51135"": ""100""}","Nottoway","51135","FALSE","FALSE","America/New_York"
-"23934","37.17387","-78.62197","Cullen","VA","Virginia","TRUE","","524","5.6","51037","Charlotte","{""51037"": ""59.91"", ""51147"": ""40.09""}","Charlotte|Prince Edward","51037|51147","FALSE","FALSE","America/New_York"
-"23936","37.52776","-78.47872","Dillwyn","VA","Virginia","TRUE","","8215","14.5","51029","Buckingham","{""51029"": ""98.33"", ""51049"": ""1.67""}","Buckingham|Cumberland","51029|51049","FALSE","FALSE","America/New_York"
-"23937","36.94483","-78.52616","Drakes Branch","VA","Virginia","TRUE","","1794","9.5","51037","Charlotte","{""51037"": ""89.04"", ""51111"": ""10.96""}","Charlotte|Lunenburg","51037|51111","FALSE","FALSE","America/New_York"
-"23938","36.90654","-77.99612","Dundas","VA","Virginia","TRUE","","233","4.5","51025","Brunswick","{""51025"": ""66.09"", ""51111"": ""33.91""}","Brunswick|Lunenburg","51025|51111","FALSE","FALSE","America/New_York"
-"23942","37.13542","-78.30324","Green Bay","VA","Virginia","TRUE","","1239","8.1","51147","Prince Edward","{""51147"": ""76.44"", ""51111"": ""23.56""}","Prince Edward|Lunenburg","51147|51111","FALSE","FALSE","America/New_York"
-"23943","37.24362","-78.45574","Hampden Sydney","VA","Virginia","TRUE","","54","78.2","51147","Prince Edward","{""51147"": ""100""}","Prince Edward","51147","FALSE","FALSE","America/New_York"
-"23944","36.90668","-78.13427","Kenbridge","VA","Virginia","TRUE","","3096","8.5","51111","Lunenburg","{""51111"": ""100""}","Lunenburg","51111","FALSE","FALSE","America/New_York"
-"23947","37.0283","-78.4502","Keysville","VA","Virginia","TRUE","","3927","11.4","51037","Charlotte","{""51037"": ""57.95"", ""51111"": ""33.96"", ""51147"": ""8.08""}","Charlotte|Lunenburg|Prince Edward","51037|51111|51147","FALSE","FALSE","America/New_York"
-"23950","36.66122","-78.07537","La Crosse","VA","Virginia","TRUE","","3870","24.5","51117","Mecklenburg","{""51117"": ""91.28"", ""51025"": ""8.72""}","Mecklenburg|Brunswick","51117|51025","FALSE","FALSE","America/New_York"
-"23952","36.92908","-78.29143","Lunenburg","VA","Virginia","TRUE","","238","7.0","51111","Lunenburg","{""51111"": ""100""}","Lunenburg","51111","FALSE","FALSE","America/New_York"
-"23954","37.10638","-78.38363","Meherrin","VA","Virginia","TRUE","","1663","10.1","51147","Prince Edward","{""51147"": ""74.07"", ""51111"": ""25.93""}","Prince Edward|Lunenburg","51147|51111","FALSE","FALSE","America/New_York"
-"23958","37.26651","-78.65975","Pamplin","VA","Virginia","TRUE","","3318","13.1","51011","Appomattox","{""51011"": ""48.45"", ""51147"": ""45.55"", ""51037"": ""5.99""}","Appomattox|Prince Edward|Charlotte","51011|51147|51037","FALSE","FALSE","America/New_York"
-"23959","37.10568","-78.7932","Phenix","VA","Virginia","TRUE","","1198","7.9","51037","Charlotte","{""51037"": ""100""}","Charlotte","51037","FALSE","FALSE","America/New_York"
-"23960","37.31378","-78.56053","Prospect","VA","Virginia","TRUE","","1541","13.8","51147","Prince Edward","{""51147"": ""98.29"", ""51011"": ""1.71""}","Prince Edward|Appomattox","51147|51011","FALSE","FALSE","America/New_York"
-"23962","36.93449","-78.70254","Randolph","VA","Virginia","TRUE","","830","6.8","51037","Charlotte","{""51037"": ""69.7"", ""51083"": ""30.3""}","Charlotte|Halifax","51037|51083","FALSE","FALSE","America/New_York"
-"23963","37.19454","-78.80214","Red House","VA","Virginia","TRUE","","88","1.6","51037","Charlotte","{""51037"": ""79.73"", ""51031"": ""13.8"", ""51011"": ""6.47""}","Charlotte|Campbell|Appomattox","51037|51031|51011","FALSE","FALSE","America/New_York"
-"23964","36.77452","-78.62881","Red Oak","VA","Virginia","TRUE","","1278","11.2","51037","Charlotte","{""51037"": ""91.48"", ""51117"": ""8.52""}","Charlotte|Mecklenburg","51037|51117","FALSE","FALSE","America/New_York"
-"23966","37.29262","-78.27278","Rice","VA","Virginia","TRUE","","2286","16.5","51147","Prince Edward","{""51147"": ""92.38"", ""51007"": ""7.62""}","Prince Edward|Amelia","51147|51007","FALSE","FALSE","America/New_York"
-"23967","36.91799","-78.63345","Saxe","VA","Virginia","TRUE","","1137","9.3","51037","Charlotte","{""51037"": ""100""}","Charlotte","51037","FALSE","FALSE","America/New_York"
-"23968","36.72523","-78.5221","Skipwith","VA","Virginia","TRUE","","604","7.4","51117","Mecklenburg","{""51117"": ""100""}","Mecklenburg","51117","FALSE","FALSE","America/New_York"
-"23970","36.7508","-78.188","South Hill","VA","Virginia","TRUE","","8616","27.4","51117","Mecklenburg","{""51117"": ""94.61"", ""51111"": ""5.39""}","Mecklenburg|Lunenburg","51117|51111","FALSE","FALSE","America/New_York"
-"23974","36.97099","-78.25669","Victoria","VA","Virginia","TRUE","","5608","22.0","51111","Lunenburg","{""51111"": ""100""}","Lunenburg","51111","FALSE","FALSE","America/New_York"
-"23976","36.84705","-78.58415","Wylliesburg","VA","Virginia","TRUE","","34","1.7","51037","Charlotte","{""51037"": ""100""}","Charlotte","51037","FALSE","FALSE","America/New_York"
-"24011","37.27044","-79.94127","Roanoke","VA","Virginia","TRUE","","518","1165.0","51770","Roanoke","{""51770"": ""100""}","Roanoke","51770","FALSE","FALSE","America/New_York"
-"24012","37.3153","-79.90276","Roanoke","VA","Virginia","TRUE","","30220","571.1","51770","Roanoke","{""51770"": ""74.48"", ""51161"": ""21.5"", ""51023"": ""4.02""}","Roanoke|Roanoke|Botetourt","51770|51161|51023","FALSE","FALSE","America/New_York"
-"24013","37.26648","-79.92248","Roanoke","VA","Virginia","TRUE","","8478","1448.3","51770","Roanoke","{""51770"": ""100""}","Roanoke","51770","FALSE","FALSE","America/New_York"
-"24014","37.22288","-79.91289","Roanoke","VA","Virginia","TRUE","","16605","224.1","51770","Roanoke","{""51770"": ""71.88"", ""51161"": ""28.12""}","Roanoke|Roanoke","51770|51161","FALSE","FALSE","America/New_York"
-"24015","37.25644","-79.97971","Roanoke","VA","Virginia","TRUE","","14677","1257.6","51770","Roanoke","{""51770"": ""98.37"", ""51161"": ""1.63""}","Roanoke|Roanoke","51770|51161","FALSE","FALSE","America/New_York"
-"24016","37.27295","-79.95414","Roanoke","VA","Virginia","TRUE","","8759","1041.6","51770","Roanoke","{""51770"": ""100""}","Roanoke","51770","FALSE","FALSE","America/New_York"
-"24017","37.29476","-79.99184","Roanoke","VA","Virginia","TRUE","","23699","1020.7","51770","Roanoke","{""51770"": ""100""}","Roanoke","51770","FALSE","FALSE","America/New_York"
-"24018","37.21061","-80.04236","Roanoke","VA","Virginia","TRUE","","38341","326.2","51161","Roanoke","{""51161"": ""89.99"", ""51770"": ""10.01"", ""51775"": ""0""}","Roanoke|Roanoke|Salem","51161|51770|51775","FALSE","FALSE","America/New_York"
-"24019","37.34625","-79.95225","Roanoke","VA","Virginia","TRUE","","27722","346.0","51161","Roanoke","{""51161"": ""71.07"", ""51023"": ""15.66"", ""51770"": ""13.27""}","Roanoke|Botetourt|Roanoke","51161|51023|51770","FALSE","FALSE","America/New_York"
-"24020","37.35837","-79.94416","Roanoke","VA","Virginia","TRUE","","632","892.0","51161","Roanoke","{""51161"": ""100""}","Roanoke","51161","FALSE","FALSE","America/New_York"
-"24053","36.60858","-80.53375","Ararat","VA","Virginia","TRUE","","2646","18.6","51141","Patrick","{""51141"": ""96.8"", ""51035"": ""3.2""}","Patrick|Carroll","51141|51035","FALSE","FALSE","America/New_York"
-"24054","36.67394","-79.70511","Axton","VA","Virginia","TRUE","","6367","22.9","51089","Henry","{""51089"": ""71.22"", ""51143"": ""28.78""}","Henry|Pittsylvania","51089|51143","FALSE","FALSE","America/New_York"
-"24055","36.75708","-79.99954","Bassett","VA","Virginia","TRUE","","12402","55.1","51089","Henry","{""51089"": ""91.58"", ""51067"": ""4.21"", ""51141"": ""4.21""}","Henry|Franklin|Patrick","51089|51067|51141","FALSE","FALSE","America/New_York"
-"24058","37.18414","-80.6157","Belspring","VA","Virginia","TRUE","","242","39.9","51155","Pulaski","{""51155"": ""100""}","Pulaski","51155","FALSE","FALSE","America/New_York"
-"24059","37.15457","-80.13587","Bent Mountain","VA","Virginia","TRUE","","853","13.9","51161","Roanoke","{""51161"": ""96.33"", ""51067"": ""3.67""}","Roanoke|Franklin","51161|51067","FALSE","FALSE","America/New_York"
-"24060","37.25676","-80.42107","Blacksburg","VA","Virginia","TRUE","","55676","161.8","51121","Montgomery","{""51121"": ""100""}","Montgomery","51121","FALSE","FALSE","America/New_York"
-"24064","37.37194","-79.77645","Blue Ridge","VA","Virginia","TRUE","","5046","59.3","51023","Botetourt","{""51023"": ""71.11"", ""51019"": ""28.89""}","Botetourt|Bedford","51023|51019","FALSE","FALSE","America/New_York"
-"24065","37.11658","-79.97088","Boones Mill","VA","Virginia","TRUE","","6098","27.6","51067","Franklin","{""51067"": ""82.35"", ""51161"": ""17.65""}","Franklin|Roanoke","51067|51161","FALSE","FALSE","America/New_York"
-"24066","37.53847","-79.67921","Buchanan","VA","Virginia","TRUE","","5295","12.7","51023","Botetourt","{""51023"": ""98.38"", ""51163"": ""1.62""}","Botetourt|Rockbridge","51023|51163","FALSE","FALSE","America/New_York"
-"24067","37.03371","-80.06895","Callaway","VA","Virginia","TRUE","","2368","16.3","51067","Franklin","{""51067"": ""100""}","Franklin","51067","FALSE","FALSE","America/New_York"
-"24069","36.58325","-79.63481","Cascade","VA","Virginia","TRUE","","1644","19.1","51143","Pittsylvania","{""51143"": ""100""}","Pittsylvania","51143","FALSE","FALSE","America/New_York"
-"24070","37.36705","-80.20873","Catawba","VA","Virginia","TRUE","","1827","12.2","51161","Roanoke","{""51161"": ""78.06"", ""51045"": ""21.13"", ""51121"": ""0.81""}","Roanoke|Craig|Montgomery","51161|51045|51121","FALSE","FALSE","America/New_York"
-"24072","37.03633","-80.2329","Check","VA","Virginia","TRUE","","1029","14.3","51063","Floyd","{""51063"": ""100""}","Floyd","51063","FALSE","FALSE","America/New_York"
-"24073","37.12852","-80.42216","Christiansburg","VA","Virginia","TRUE","","30710","133.6","51121","Montgomery","{""51121"": ""100""}","Montgomery","51121","FALSE","FALSE","America/New_York"
-"24076","36.59731","-80.42028","Claudville","VA","Virginia","TRUE","","1362","14.6","51141","Patrick","{""51141"": ""100""}","Patrick","51141","FALSE","FALSE","America/New_York"
-"24077","37.36641","-79.90388","Cloverdale","VA","Virginia","TRUE","","769","366.9","51023","Botetourt","{""51023"": ""100""}","Botetourt","51023","FALSE","FALSE","America/New_York"
-"24078","36.72502","-79.91092","Collinsville","VA","Virginia","TRUE","","7527","419.8","51089","Henry","{""51089"": ""100""}","Henry","51089","FALSE","FALSE","America/New_York"
-"24079","37.05424","-80.15716","Copper Hill","VA","Virginia","TRUE","","1817","18.1","51063","Floyd","{""51063"": ""99.89"", ""51067"": ""0.11""}","Floyd|Franklin","51063|51067","FALSE","FALSE","America/New_York"
-"24082","36.61973","-80.12316","Critz","VA","Virginia","TRUE","","650","33.6","51141","Patrick","{""51141"": ""100""}","Patrick","51141","FALSE","FALSE","America/New_York"
-"24083","37.40604","-79.92314","Daleville","VA","Virginia","TRUE","","2910","140.7","51023","Botetourt","{""51023"": ""100""}","Botetourt","51023","FALSE","FALSE","America/New_York"
-"24084","37.11584","-80.79319","Dublin","VA","Virginia","TRUE","","11002","35.9","51155","Pulaski","{""51155"": ""97.52"", ""51021"": ""2.48""}","Pulaski|Bland","51155|51021","FALSE","FALSE","America/New_York"
-"24085","37.6775","-79.82379","Eagle Rock","VA","Virginia","TRUE","","2139","4.7","51023","Botetourt","{""51023"": ""99.5"", ""51005"": ""0.5""}","Botetourt|Alleghany","51023|51005","FALSE","FALSE","America/New_York"
-"24086","37.27426","-80.6343","Eggleston","VA","Virginia","TRUE","","113","6.9","51071","Giles","{""51071"": ""100""}","Giles","51071","FALSE","FALSE","America/New_York"
-"24087","37.22569","-80.24845","Elliston","VA","Virginia","TRUE","","3789","31.9","51121","Montgomery","{""51121"": ""96.81"", ""51161"": ""3.19""}","Montgomery|Roanoke","51121|51161","FALSE","FALSE","America/New_York"
-"24088","36.8969","-80.07868","Ferrum","VA","Virginia","TRUE","","5472","18.0","51067","Franklin","{""51067"": ""96.86"", ""51141"": ""3.14""}","Franklin|Patrick","51067|51141","FALSE","FALSE","America/New_York"
-"24089","36.70917","-79.97282","Fieldale","VA","Virginia","TRUE","","2440","83.6","51089","Henry","{""51089"": ""100""}","Henry","51089","FALSE","FALSE","America/New_York"
-"24090","37.52293","-79.88824","Fincastle","VA","Virginia","TRUE","","5028","20.4","51023","Botetourt","{""51023"": ""100""}","Botetourt","51023","FALSE","FALSE","America/New_York"
-"24091","36.91752","-80.32859","Floyd","VA","Virginia","TRUE","","7739","17.1","51063","Floyd","{""51063"": ""98.95"", ""51141"": ""0.57"", ""51067"": ""0.49""}","Floyd|Patrick|Franklin","51063|51141|51067","FALSE","FALSE","America/New_York"
-"24092","37.00339","-79.7671","Glade Hill","VA","Virginia","TRUE","","2445","26.6","51067","Franklin","{""51067"": ""100""}","Franklin","51067","FALSE","FALSE","America/New_York"
-"24093","37.38779","-80.8565","Glen Lyn","VA","Virginia","TRUE","","101","7.4","51071","Giles","{""51071"": ""100""}","Giles","51071","FALSE","FALSE","America/New_York"
-"24095","37.22324","-79.73811","Goodview","VA","Virginia","TRUE","","4332","66.3","51019","Bedford","{""51019"": ""100""}","Bedford","51019","FALSE","FALSE","America/New_York"
-"24101","37.17622","-79.79959","Hardy","VA","Virginia","TRUE","","6290","43.7","51067","Franklin","{""51067"": ""85.44"", ""51019"": ""14.56""}","Franklin|Bedford","51067|51019","FALSE","FALSE","America/New_York"
-"24102","36.83954","-79.99678","Henry","VA","Virginia","TRUE","","1552","18.6","51067","Franklin","{""51067"": ""93.4"", ""51089"": ""6.6""}","Franklin|Henry","51067|51089","FALSE","FALSE","America/New_York"
-"24104","37.13604","-79.48842","Huddleston","VA","Virginia","TRUE","","3452","17.8","51019","Bedford","{""51019"": ""100""}","Bedford","51019","FALSE","FALSE","America/New_York"
-"24105","36.89908","-80.60013","Indian Valley","VA","Virginia","TRUE","","468","8.4","51063","Floyd","{""51063"": ""93.8"", ""51035"": ""6.2""}","Floyd|Carroll","51063|51035","FALSE","FALSE","America/New_York"
-"24112","36.72729","-79.84428","Martinsville","VA","Virginia","TRUE","","29448","75.0","51089","Henry","{""51089"": ""54.11"", ""51690"": ""42.34"", ""51067"": ""3.56""}","Henry|Martinsville|Franklin","51089|51690|51067","FALSE","FALSE","America/New_York"
-"24120","36.71684","-80.41394","Meadows Of Dan","VA","Virginia","TRUE","","1477","8.0","51141","Patrick","{""51141"": ""72.42"", ""51063"": ""16.08"", ""51035"": ""11.51""}","Patrick|Floyd|Carroll","51141|51063|51035","FALSE","FALSE","America/New_York"
-"24121","37.17233","-79.63977","Moneta","VA","Virginia","TRUE","","11145","45.3","51019","Bedford","{""51019"": ""64.28"", ""51067"": ""35.72""}","Bedford|Franklin","51019|51067","FALSE","FALSE","America/New_York"
-"24122","37.42514","-79.69357","Montvale","VA","Virginia","TRUE","","1600","21.5","51019","Bedford","{""51019"": ""100""}","Bedford","51019","FALSE","FALSE","America/New_York"
-"24124","37.31275","-80.85807","Narrows","VA","Virginia","TRUE","","4785","25.5","51071","Giles","{""51071"": ""94.74"", ""51021"": ""5.26""}","Giles|Bland","51071|51021","FALSE","FALSE","America/New_York"
-"24127","37.48631","-80.19046","New Castle","VA","Virginia","TRUE","","3860","6.2","51045","Craig","{""51045"": ""100""}","Craig","51045","FALSE","FALSE","America/New_York"
-"24128","37.34333","-80.46942","Newport","VA","Virginia","TRUE","","1948","10.4","51071","Giles","{""51071"": ""73.24"", ""51045"": ""26.76""}","Giles|Craig","51071|51045","FALSE","FALSE","America/New_York"
-"24130","37.61252","-79.99643","Oriskany","VA","Virginia","TRUE","","15","2.5","51023","Botetourt","{""51023"": ""100""}","Botetourt","51023","FALSE","FALSE","America/New_York"
-"24131","37.57072","-80.22656","Paint Bank","VA","Virginia","TRUE","","10","0.1","51045","Craig","{""51045"": ""100""}","Craig","51045","FALSE","FALSE","America/New_York"
-"24132","37.21021","-80.6498","Parrott","VA","Virginia","TRUE","","282","9.3","51155","Pulaski","{""51155"": ""100""}","Pulaski","51155","FALSE","FALSE","America/New_York"
-"24133","36.66968","-80.1344","Patrick Springs","VA","Virginia","TRUE","","2258","20.1","51141","Patrick","{""51141"": ""100""}","Patrick","51141","FALSE","FALSE","America/New_York"
-"24134","37.24522","-80.77995","Pearisburg","VA","Virginia","TRUE","","5200","19.6","51071","Giles","{""51071"": ""100""}","Giles","51071","FALSE","FALSE","America/New_York"
-"24136","37.33123","-80.59756","Pembroke","VA","Virginia","TRUE","","3156","25.0","51071","Giles","{""51071"": ""100""}","Giles","51071","FALSE","FALSE","America/New_York"
-"24137","36.92888","-79.65251","Penhook","VA","Virginia","TRUE","","2530","13.2","51067","Franklin","{""51067"": ""82.3"", ""51143"": ""17.7""}","Franklin|Pittsylvania","51067|51143","FALSE","FALSE","America/New_York"
-"24138","37.04844","-80.31825","Pilot","VA","Virginia","TRUE","","1618","23.1","51121","Montgomery","{""51121"": ""60.01"", ""51063"": ""39.99""}","Montgomery|Floyd","51121|51063","FALSE","FALSE","America/New_York"
-"24139","37.01141","-79.47875","Pittsville","VA","Virginia","TRUE","","359","5.7","51143","Pittsylvania","{""51143"": ""88.7"", ""51019"": ""11.3""}","Pittsylvania|Bedford","51143|51019","FALSE","FALSE","America/New_York"
-"24141","37.09487","-80.56832","Radford","VA","Virginia","TRUE","","22989","139.2","51750","Radford","{""51750"": ""67.44"", ""51155"": ""24.55"", ""51121"": ""7.3"", ""51063"": ""0.72""}","Radford|Pulaski|Montgomery|Floyd","51750|51155|51121|51063","FALSE","FALSE","America/New_York"
-"24142","37.13794","-80.55083","Radford","VA","Virginia","TRUE","","2745","10379.2","51750","Radford","{""51750"": ""100""}","Radford","51750","FALSE","FALSE","America/New_York"
-"24147","37.40044","-80.82588","Rich Creek","VA","Virginia","TRUE","","1418","82.1","51071","Giles","{""51071"": ""100""}","Giles","51071","FALSE","FALSE","America/New_York"
-"24148","36.58168","-79.87269","Ridgeway","VA","Virginia","TRUE","","8475","45.9","51089","Henry","{""51089"": ""100""}","Henry","51089","FALSE","FALSE","America/New_York"
-"24149","37.02437","-80.43582","Riner","VA","Virginia","TRUE","","3401","24.7","51121","Montgomery","{""51121"": ""74.06"", ""51063"": ""25.94""}","Montgomery|Floyd","51121|51063","FALSE","FALSE","America/New_York"
-"24150","37.40581","-80.60582","Ripplemead","VA","Virginia","TRUE","","820","5.7","51071","Giles","{""51071"": ""100""}","Giles","51071","FALSE","FALSE","America/New_York"
-"24151","36.95739","-79.86453","Rocky Mount","VA","Virginia","TRUE","","20436","48.6","51067","Franklin","{""51067"": ""100""}","Franklin","51067","FALSE","FALSE","America/New_York"
-"24153","37.30011","-80.11063","Salem","VA","Virginia","TRUE","","37849","139.0","51775","Salem","{""51775"": ""65.68"", ""51161"": ""34.25"", ""51023"": ""0.07""}","Salem|Roanoke|Botetourt","51775|51161|51023","FALSE","FALSE","America/New_York"
-"24161","36.97848","-79.54437","Sandy Level","VA","Virginia","TRUE","","505","7.4","51143","Pittsylvania","{""51143"": ""100""}","Pittsylvania","51143","FALSE","FALSE","America/New_York"
-"24162","37.13787","-80.25777","Shawsville","VA","Virginia","TRUE","","2381","19.7","51121","Montgomery","{""51121"": ""99.05"", ""51063"": ""0.95""}","Montgomery|Floyd","51121|51063","FALSE","FALSE","America/New_York"
-"24165","36.58491","-80.05194","Spencer","VA","Virginia","TRUE","","1259","11.2","51089","Henry","{""51089"": ""64.85"", ""51141"": ""35.15""}","Henry|Patrick","51089|51141","FALSE","FALSE","America/New_York"
-"24167","37.24904","-80.73439","Staffordsville","VA","Virginia","TRUE","","206","15.0","51071","Giles","{""51071"": ""100""}","Giles","51071","FALSE","FALSE","America/New_York"
-"24168","36.73475","-79.94645","Stanleytown","VA","Virginia","TRUE","","385","150.0","51089","Henry","{""51089"": ""100""}","Henry","51089","FALSE","FALSE","America/New_York"
-"24171","36.67195","-80.23868","Stuart","VA","Virginia","TRUE","","8327","16.1","51141","Patrick","{""51141"": ""100""}","Patrick","51141","FALSE","FALSE","America/New_York"
-"24174","37.35161","-79.66867","Thaxton","VA","Virginia","TRUE","","2898","32.7","51019","Bedford","{""51019"": ""100""}","Bedford","51019","FALSE","FALSE","America/New_York"
-"24175","37.42845","-79.9396","Troutville","VA","Virginia","TRUE","","8142","43.7","51023","Botetourt","{""51023"": ""99.5"", ""51161"": ""0.5""}","Botetourt|Roanoke","51023|51161","FALSE","FALSE","America/New_York"
-"24176","37.00932","-79.69178","Union Hall","VA","Virginia","TRUE","","1257","22.1","51067","Franklin","{""51067"": ""100""}","Franklin","51067","FALSE","FALSE","America/New_York"
-"24179","37.28726","-79.80117","Vinton","VA","Virginia","TRUE","","18258","149.1","51161","Roanoke","{""51161"": ""70.18"", ""51019"": ""29.82""}","Roanoke|Bedford","51161|51019","FALSE","FALSE","America/New_York"
-"24184","37.08814","-79.78134","Wirtz","VA","Virginia","TRUE","","4586","41.3","51067","Franklin","{""51067"": ""100""}","Franklin","51067","FALSE","FALSE","America/New_York"
-"24185","36.8116","-80.26923","Woolwine","VA","Virginia","TRUE","","458","4.7","51141","Patrick","{""51141"": ""100""}","Patrick","51141","FALSE","FALSE","America/New_York"
-"24201","36.61087","-82.16978","Bristol","VA","Virginia","TRUE","","16252","606.3","51520","Bristol","{""51520"": ""100""}","Bristol","51520","FALSE","FALSE","America/New_York"
-"24202","36.66094","-82.2126","Bristol","VA","Virginia","TRUE","","11127","33.7","51191","Washington","{""51191"": ""90.99"", ""51520"": ""5.57"", ""51169"": ""3.44""}","Washington|Bristol|Scott","51191|51520|51169","FALSE","FALSE","America/New_York"
-"24210","36.77248","-82.02235","Abingdon","VA","Virginia","TRUE","","16337","44.6","51191","Washington","{""51191"": ""100""}","Washington","51191","FALSE","FALSE","America/New_York"
-"24211","36.65389","-81.95744","Abingdon","VA","Virginia","TRUE","","10032","54.8","51191","Washington","{""51191"": ""100""}","Washington","51191","FALSE","FALSE","America/New_York"
-"24216","36.9437","-82.79763","Appalachia","VA","Virginia","TRUE","","2712","15.5","51195","Wise","{""51195"": ""100""}","Wise","51195","FALSE","FALSE","America/New_York"
-"24217","37.08415","-82.17205","Bee","VA","Virginia","TRUE","","278","5.3","51051","Dickenson","{""51051"": ""81.28"", ""51027"": ""18.72""}","Dickenson|Buchanan","51051|51027","FALSE","FALSE","America/New_York"
-"24219","36.84878","-82.75814","Big Stone Gap","VA","Virginia","TRUE","","11393","60.4","51195","Wise","{""51195"": ""88.22"", ""51105"": ""11.78""}","Wise|Lee","51195|51105","FALSE","FALSE","America/New_York"
-"24220","37.13948","-82.24335","Birchleaf","VA","Virginia","TRUE","","1049","16.3","51051","Dickenson","{""51051"": ""100""}","Dickenson","51051","FALSE","FALSE","America/New_York"
-"24221","36.63361","-82.99548","Blackwater","VA","Virginia","TRUE","","596","4.5","51105","Lee","{""51105"": ""58"", ""51169"": ""42""}","Lee|Scott","51105|51169","FALSE","FALSE","America/New_York"
-"24224","36.86232","-82.28197","Castlewood","VA","Virginia","TRUE","","5866","20.9","51167","Russell","{""51167"": ""100""}","Russell","51167","FALSE","FALSE","America/New_York"
-"24225","36.98142","-82.13603","Cleveland","VA","Virginia","TRUE","","2283","15.3","51167","Russell","{""51167"": ""100""}","Russell","51167","FALSE","FALSE","America/New_York"
-"24226","37.13931","-82.33458","Clinchco","VA","Virginia","TRUE","","1154","16.7","51051","Dickenson","{""51051"": ""100""}","Dickenson","51051","FALSE","FALSE","America/New_York"
-"24228","37.16971","-82.45001","Clintwood","VA","Virginia","TRUE","","6449","26.8","51051","Dickenson","{""51051"": ""100""}","Dickenson","51051","FALSE","FALSE","America/New_York"
-"24230","36.96108","-82.46443","Coeburn","VA","Virginia","TRUE","","8092","24.3","51195","Wise","{""51195"": ""80.3"", ""51051"": ""17.6"", ""51169"": ""2.1""}","Wise|Dickenson|Scott","51195|51051|51169","FALSE","FALSE","America/New_York"
-"24236","36.6424","-81.74467","Damascus","VA","Virginia","TRUE","","3092","21.1","51191","Washington","{""51191"": ""100""}","Washington","51191","FALSE","FALSE","America/New_York"
-"24237","37.0358","-82.25593","Dante","VA","Virginia","TRUE","","865","5.8","51051","Dickenson","{""51051"": ""52.35"", ""51167"": ""47.65""}","Dickenson|Russell","51051|51167","FALSE","FALSE","America/New_York"
-"24239","37.11348","-82.15014","Davenport","VA","Virginia","TRUE","","241","33.6","51027","Buchanan","{""51027"": ""100""}","Buchanan","51027","FALSE","FALSE","America/New_York"
-"24243","36.77883","-82.92718","Dryden","VA","Virginia","TRUE","","1948","33.6","51105","Lee","{""51105"": ""100""}","Lee","51105","FALSE","FALSE","America/New_York"
-"24244","36.71568","-82.78923","Duffield","VA","Virginia","TRUE","","5881","13.3","51169","Scott","{""51169"": ""83.31"", ""51105"": ""16.69""}","Scott|Lee","51169|51105","FALSE","FALSE","America/New_York"
-"24245","36.83615","-82.49912","Dungannon","VA","Virginia","TRUE","","757","5.6","51169","Scott","{""51169"": ""100""}","Scott","51169","FALSE","FALSE","America/New_York"
-"24246","36.86696","-82.74519","East Stone Gap","VA","Virginia","TRUE","","492","388.0","51195","Wise","{""51195"": ""100""}","Wise","51195","FALSE","FALSE","America/New_York"
-"24248","36.62711","-83.51378","Ewing","VA","Virginia","TRUE","","2465","18.2","51105","Lee","{""51105"": ""100""}","Lee","51105","FALSE","FALSE","America/New_York"
-"24250","36.75664","-82.59741","Fort Blackmore","VA","Virginia","TRUE","","1309","9.6","51169","Scott","{""51169"": ""100""}","Scott","51169","FALSE","FALSE","America/New_York"
-"24251","36.65886","-82.60645","Gate City","VA","Virginia","TRUE","","8275","27.0","51169","Scott","{""51169"": ""100""}","Scott","51169","FALSE","FALSE","America/New_York"
-"24256","37.22066","-82.28182","Haysi","VA","Virginia","TRUE","","3471","23.0","51051","Dickenson","{""51051"": ""80.78"", ""51027"": ""19.22""}","Dickenson|Buchanan","51051|51027","FALSE","FALSE","America/New_York"
-"24258","36.64803","-82.42034","Hiltons","VA","Virginia","TRUE","","1577","14.7","51169","Scott","{""51169"": ""97.6"", ""51191"": ""2.4""}","Scott|Washington","51169|51191","FALSE","FALSE","America/New_York"
-"24260","37.03954","-82.02463","Honaker","VA","Virginia","TRUE","","5340","26.1","51167","Russell","{""51167"": ""81.08"", ""51027"": ""18.92""}","Russell|Buchanan","51167|51027","FALSE","FALSE","America/New_York"
-"24263","36.67174","-83.14547","Jonesville","VA","Virginia","TRUE","","5875","18.7","51105","Lee","{""51105"": ""100""}","Lee","51105","FALSE","FALSE","America/New_York"
-"24265","36.83806","-82.93891","Keokee","VA","Virginia","TRUE","","707","7.0","51105","Lee","{""51105"": ""100""}","Lee","51105","FALSE","FALSE","America/New_York"
-"24266","36.86436","-82.11867","Lebanon","VA","Virginia","TRUE","","8986","28.6","51167","Russell","{""51167"": ""100""}","Russell","51167","FALSE","FALSE","America/New_York"
-"24269","37.08122","-82.37603","McClure","VA","Virginia","TRUE","","390","19.7","51051","Dickenson","{""51051"": ""100""}","Dickenson","51051","FALSE","FALSE","America/New_York"
-"24270","36.72716","-82.25077","Mendota","VA","Virginia","TRUE","","793","14.3","51191","Washington","{""51191"": ""100""}","Washington","51191","FALSE","FALSE","America/New_York"
-"24271","36.7467","-82.41696","Nickelsville","VA","Virginia","TRUE","","2319","14.2","51169","Scott","{""51169"": ""100""}","Scott","51169","FALSE","FALSE","America/New_York"
-"24272","37.0218","-82.33306","Nora","VA","Virginia","TRUE","","716","13.2","51051","Dickenson","{""51051"": ""100""}","Dickenson","51051","FALSE","FALSE","America/New_York"
-"24273","36.96167","-82.65647","Norton","VA","Virginia","TRUE","","6072","37.0","51720","Norton","{""51720"": ""63.21"", ""51195"": ""36.79""}","Norton|Wise","51720|51195","FALSE","FALSE","America/New_York"
-"24277","36.74835","-83.03076","Pennington Gap","VA","Virginia","TRUE","","6906","50.4","51105","Lee","{""51105"": ""100""}","Lee","51105","FALSE","FALSE","America/New_York"
-"24279","37.10263","-82.61839","Pound","VA","Virginia","TRUE","","5247","25.1","51195","Wise","{""51195"": ""100""}","Wise","51195","FALSE","FALSE","America/New_York"
-"24280","36.95609","-81.93742","Rosedale","VA","Virginia","TRUE","","850","31.0","51167","Russell","{""51167"": ""100""}","Russell","51167","FALSE","FALSE","America/New_York"
-"24281","36.64929","-83.33253","Rose Hill","VA","Virginia","TRUE","","2483","17.4","51105","Lee","{""51105"": ""100""}","Lee","51105","FALSE","FALSE","America/New_York"
-"24282","36.82137","-83.05428","Saint Charles","VA","Virginia","TRUE","","865","21.2","51105","Lee","{""51105"": ""100""}","Lee","51105","FALSE","FALSE","America/New_York"
-"24283","36.94302","-82.34732","Saint Paul","VA","Virginia","TRUE","","2130","32.2","51195","Wise","{""51195"": ""81.9"", ""51167"": ""11.05"", ""51051"": ""7.05""}","Wise|Russell|Dickenson","51195|51167|51051","FALSE","FALSE","America/New_York"
-"24290","36.61196","-82.56806","Weber City","VA","Virginia","TRUE","","1968","153.4","51169","Scott","{""51169"": ""100""}","Scott","51169","FALSE","FALSE","America/New_York"
-"24292","36.61457","-81.57778","Whitetop","VA","Virginia","TRUE","","392","5.7","51077","Grayson","{""51077"": ""100""}","Grayson","51077","FALSE","FALSE","America/New_York"
-"24293","37.00496","-82.56082","Wise","VA","Virginia","TRUE","","9575","63.2","51195","Wise","{""51195"": ""100""}","Wise","51195","FALSE","FALSE","America/New_York"
-"24301","37.06048","-80.79978","Pulaski","VA","Virginia","TRUE","","14164","68.2","51155","Pulaski","{""51155"": ""100""}","Pulaski","51155","FALSE","FALSE","America/New_York"
-"24311","36.88173","-81.40915","Atkins","VA","Virginia","TRUE","","1475","14.1","51173","Smyth","{""51173"": ""100""}","Smyth","51173","FALSE","FALSE","America/New_York"
-"24312","36.8371","-80.87483","Austinville","VA","Virginia","TRUE","","1678","17.4","51035","Carroll","{""51035"": ""56.85"", ""51197"": ""43.15""}","Carroll|Wythe","51035|51197","FALSE","FALSE","America/New_York"
-"24313","36.90827","-80.80658","Barren Springs","VA","Virginia","TRUE","","917","49.6","51197","Wythe","{""51197"": ""98.53"", ""51155"": ""1.47""}","Wythe|Pulaski","51197|51155","FALSE","FALSE","America/New_York"
-"24314","37.16731","-81.21383","Bastian","VA","Virginia","TRUE","","1403","6.1","51021","Bland","{""51021"": ""89.49"", ""51185"": ""10.51""}","Bland|Tazewell","51021|51185","FALSE","FALSE","America/New_York"
-"24315","37.13892","-81.0643","Bland","VA","Virginia","TRUE","","3563","7.5","51021","Bland","{""51021"": ""99.55"", ""51071"": ""0.45""}","Bland|Giles","51021|51071","FALSE","FALSE","America/New_York"
-"24316","36.95465","-81.67291","Broadford","VA","Virginia","TRUE","","0","0.0","51185","Tazewell","{""51185"": ""100""}","Tazewell","51185","FALSE","FALSE","America/New_York"
-"24317","36.60351","-80.67192","Cana","VA","Virginia","TRUE","","3903","40.1","51035","Carroll","{""51035"": ""100""}","Carroll","51035","FALSE","FALSE","America/New_York"
-"24318","36.99739","-81.38637","Ceres","VA","Virginia","TRUE","","599","3.5","51021","Bland","{""51021"": ""59.62"", ""51173"": ""40.38""}","Bland|Smyth","51021|51173","FALSE","FALSE","America/New_York"
-"24319","36.74804","-81.64611","Chilhowie","VA","Virginia","TRUE","","7228","34.7","51173","Smyth","{""51173"": ""90.41"", ""51191"": ""9.59""}","Smyth|Washington","51173|51191","FALSE","FALSE","America/New_York"
-"24322","36.80642","-81.11414","Cripple Creek","VA","Virginia","TRUE","","99","2.8","51197","Wythe","{""51197"": ""100""}","Wythe","51197","FALSE","FALSE","America/New_York"
-"24323","36.86759","-81.19686","Crockett","VA","Virginia","TRUE","","893","18.4","51197","Wythe","{""51197"": ""100""}","Wythe","51197","FALSE","FALSE","America/New_York"
-"24324","36.97559","-80.77948","Draper","VA","Virginia","TRUE","","1853","20.5","51155","Pulaski","{""51155"": ""92.25"", ""51197"": ""7.75""}","Pulaski|Wythe","51155|51197","FALSE","FALSE","America/New_York"
-"24325","36.80532","-80.59684","Dugspur","VA","Virginia","TRUE","","1020","7.5","51035","Carroll","{""51035"": ""100""}","Carroll","51035","FALSE","FALSE","America/New_York"
-"24326","36.73007","-81.20247","Elk Creek","VA","Virginia","TRUE","","1030","7.3","51077","Grayson","{""51077"": ""100""}","Grayson","51077","FALSE","FALSE","America/New_York"
-"24328","36.66206","-80.69463","Fancy Gap","VA","Virginia","TRUE","","1748","18.0","51035","Carroll","{""51035"": ""100""}","Carroll","51035","FALSE","FALSE","America/New_York"
-"24330","36.72655","-81.01998","Fries","VA","Virginia","TRUE","","3078","28.6","51077","Grayson","{""51077"": ""78.77"", ""51035"": ""21.23""}","Grayson|Carroll","51077|51035","FALSE","FALSE","America/New_York"
-"24333","36.63834","-80.92883","Galax","VA","Virginia","TRUE","","17768","47.6","51640","Galax","{""51640"": ""39.13"", ""51035"": ""33.72"", ""51077"": ""27.14""}","Galax|Carroll|Grayson","51640|51035|51077","FALSE","FALSE","America/New_York"
-"24340","36.76018","-81.76542","Glade Spring","VA","Virginia","TRUE","","6050","39.6","51191","Washington","{""51191"": ""100""}","Washington","51191","FALSE","FALSE","America/New_York"
-"24343","36.76955","-80.70144","Hillsville","VA","Virginia","TRUE","","9597","28.0","51035","Carroll","{""51035"": ""99.13"", ""51141"": ""0.44"", ""51197"": ""0.43""}","Carroll|Patrick|Wythe","51035|51141|51197","FALSE","FALSE","America/New_York"
-"24347","36.96183","-80.65565","Hiwassee","VA","Virginia","TRUE","","1619","7.9","51155","Pulaski","{""51155"": ""90.83"", ""51121"": ""7.3"", ""51035"": ""1.86""}","Pulaski|Montgomery|Carroll","51155|51121|51035","FALSE","FALSE","America/New_York"
-"24348","36.6411","-81.17212","Independence","VA","Virginia","TRUE","","4760","17.3","51077","Grayson","{""51077"": ""100""}","Grayson","51077","FALSE","FALSE","America/New_York"
-"24350","36.81117","-81.01963","Ivanhoe","VA","Virginia","TRUE","","1179","9.6","51197","Wythe","{""51197"": ""69.71"", ""51035"": ""25.69"", ""51077"": ""4.6""}","Wythe|Carroll|Grayson","51197|51035|51077","FALSE","FALSE","America/New_York"
-"24351","36.58079","-80.7659","Lambsburg","VA","Virginia","TRUE","","447","15.2","51035","Carroll","{""51035"": ""100""}","Carroll","51035","FALSE","FALSE","America/New_York"
-"24352","36.7148","-80.53313","Laurel Fork","VA","Virginia","TRUE","","839","11.3","51035","Carroll","{""51035"": ""99.89"", ""51063"": ""0.11""}","Carroll|Floyd","51035|51063","FALSE","FALSE","America/New_York"
-"24354","36.82712","-81.54325","Marion","VA","Virginia","TRUE","","13934","50.7","51173","Smyth","{""51173"": ""100""}","Smyth","51173","FALSE","FALSE","America/New_York"
-"24360","36.93372","-80.89676","Max Meadows","VA","Virginia","TRUE","","5802","26.3","51197","Wythe","{""51197"": ""100""}","Wythe","51197","FALSE","FALSE","America/New_York"
-"24361","36.76674","-81.84611","Meadowview","VA","Virginia","TRUE","","5795","39.8","51191","Washington","{""51191"": ""100""}","Washington","51191","FALSE","FALSE","America/New_York"
-"24363","36.61363","-81.39861","Mouth Of Wilson","VA","Virginia","TRUE","","1290","6.6","51077","Grayson","{""51077"": ""100""}","Grayson","51077","FALSE","FALSE","America/New_York"
-"24366","37.25786","-81.11575","Rocky Gap","VA","Virginia","TRUE","","548","7.7","51021","Bland","{""51021"": ""100""}","Bland","51021","FALSE","FALSE","America/New_York"
-"24368","36.88987","-81.29595","Rural Retreat","VA","Virginia","TRUE","","5252","24.5","51197","Wythe","{""51197"": ""83.04"", ""51173"": ""16.96""}","Wythe|Smyth","51197|51173","FALSE","FALSE","America/New_York"
-"24370","36.91371","-81.69237","Saltville","VA","Virginia","TRUE","","6821","17.5","51173","Smyth","{""51173"": ""86.17"", ""51191"": ""13.83""}","Smyth|Washington","51173|51191","FALSE","FALSE","America/New_York"
-"24374","36.79077","-81.19621","Speedwell","VA","Virginia","TRUE","","791","10.5","51197","Wythe","{""51197"": ""100""}","Wythe","51197","FALSE","FALSE","America/New_York"
-"24375","36.77177","-81.38824","Sugar Grove","VA","Virginia","TRUE","","1888","11.8","51173","Smyth","{""51173"": ""100""}","Smyth","51173","FALSE","FALSE","America/New_York"
-"24377","37.0008","-81.57247","Tannersville","VA","Virginia","TRUE","","329","3.6","51185","Tazewell","{""51185"": ""100""}","Tazewell","51185","FALSE","FALSE","America/New_York"
-"24378","36.68736","-81.44408","Troutdale","VA","Virginia","TRUE","","998","4.7","51077","Grayson","{""51077"": ""80.96"", ""51173"": ""19.04""}","Grayson|Smyth","51077|51173","FALSE","FALSE","America/New_York"
-"24380","36.86007","-80.50025","Willis","VA","Virginia","TRUE","","2696","12.3","51063","Floyd","{""51063"": ""99.55"", ""51035"": ""0.45""}","Floyd|Carroll","51063|51035","FALSE","FALSE","America/New_York"
-"24381","36.72755","-80.84298","Woodlawn","VA","Virginia","TRUE","","3826","28.6","51035","Carroll","{""51035"": ""100""}","Carroll","51035","FALSE","FALSE","America/New_York"
-"24382","36.96023","-81.09972","Wytheville","VA","Virginia","TRUE","","13780","26.6","51197","Wythe","{""51197"": ""100""}","Wythe","51197","FALSE","FALSE","America/New_York"
-"24401","38.13353","-79.08591","Staunton","VA","Virginia","TRUE","","35718","103.5","51790","Staunton","{""51790"": ""66.89"", ""51015"": ""33.11""}","Staunton|Augusta","51790|51015","FALSE","FALSE","America/New_York"
-"24411","38.10519","-79.3111","Augusta Springs","VA","Virginia","TRUE","","52","48.0","51015","Augusta","{""51015"": ""100""}","Augusta","51015","FALSE","FALSE","America/New_York"
-"24412","38.05505","-79.82804","Bacova","VA","Virginia","TRUE","","27","4.0","51017","Bath","{""51017"": ""100""}","Bath","51017","FALSE","FALSE","America/New_York"
-"24413","38.52851","-79.59324","Blue Grass","VA","Virginia","TRUE","","269","2.6","51091","Highland","{""51091"": ""100""}","Highland","51091","FALSE","FALSE","America/New_York"
-"24415","37.92506","-79.31711","Brownsburg","VA","Virginia","TRUE","","0","0.0","51163","Rockbridge","{""51163"": ""100""}","Rockbridge","51163","FALSE","FALSE","America/New_York"
-"24416","37.7223","-79.3607","Buena Vista","VA","Virginia","TRUE","","8756","60.9","51530","Buena Vista","{""51530"": ""75.51"", ""51163"": ""24.49""}","Buena Vista|Rockbridge","51530|51163","FALSE","FALSE","America/New_York"
-"24421","38.26198","-79.20084","Churchville","VA","Virginia","TRUE","","4029","20.3","51015","Augusta","{""51015"": ""100""}","Augusta","51015","FALSE","FALSE","America/New_York"
-"24422","37.82994","-79.75643","Clifton Forge","VA","Virginia","TRUE","","5924","27.5","51005","Alleghany","{""51005"": ""96.53"", ""51023"": ""3.47""}","Alleghany|Botetourt","51005|51023","FALSE","FALSE","America/New_York"
-"24426","37.76844","-80.07654","Covington","VA","Virginia","TRUE","","13451","15.6","51005","Alleghany","{""51005"": ""58.4"", ""51580"": ""41.6""}","Alleghany|Covington","51005|51580","FALSE","FALSE","America/New_York"
-"24430","38.08803","-79.35441","Craigsville","VA","Virginia","TRUE","","3829","41.9","51015","Augusta","{""51015"": ""100""}","Augusta","51015","FALSE","FALSE","America/New_York"
-"24431","38.16873","-78.84034","Crimora","VA","Virginia","TRUE","","2571","69.8","51015","Augusta","{""51015"": ""100""}","Augusta","51015","FALSE","FALSE","America/New_York"
-"24432","38.16222","-79.43398","Deerfield","VA","Virginia","TRUE","","286","2.2","51015","Augusta","{""51015"": ""93.75"", ""51017"": ""6.25""}","Augusta|Bath","51015|51017","FALSE","FALSE","America/New_York"
-"24433","38.42073","-79.46284","Doe Hill","VA","Virginia","TRUE","","73","1.9","51091","Highland","{""51091"": ""100""}","Highland","51091","FALSE","FALSE","America/New_York"
-"24435","37.87203","-79.30305","Fairfield","VA","Virginia","TRUE","","2028","25.0","51163","Rockbridge","{""51163"": ""100""}","Rockbridge","51163","FALSE","FALSE","America/New_York"
-"24437","38.22158","-78.93861","Fort Defiance","VA","Virginia","TRUE","","705","20.4","51015","Augusta","{""51015"": ""100""}","Augusta","51015","FALSE","FALSE","America/New_York"
-"24439","37.99289","-79.48967","Goshen","VA","Virginia","TRUE","","1227","5.0","51163","Rockbridge","{""51163"": ""82.04"", ""51015"": ""17.96""}","Rockbridge|Augusta","51163|51015","FALSE","FALSE","America/New_York"
-"24440","37.99463","-79.16613","Greenville","VA","Virginia","TRUE","","2948","41.0","51015","Augusta","{""51015"": ""100""}","Augusta","51015","FALSE","FALSE","America/New_York"
-"24441","38.22631","-78.82184","Grottoes","VA","Virginia","TRUE","","6190","54.1","51165","Rockingham","{""51165"": ""62.36"", ""51015"": ""37.64""}","Rockingham|Augusta","51165|51015","FALSE","FALSE","America/New_York"
-"24442","38.33915","-79.40838","Head Waters","VA","Virginia","TRUE","","123","1.0","51091","Highland","{""51091"": ""100""}","Highland","51091","FALSE","FALSE","America/New_York"
-"24445","37.95507","-79.88501","Hot Springs","VA","Virginia","TRUE","","2798","10.2","51017","Bath","{""51017"": ""78.11"", ""51005"": ""21.89""}","Bath|Alleghany","51017|51005","FALSE","FALSE","America/New_York"
-"24448","37.79831","-79.78995","Iron Gate","VA","Virginia","TRUE","","256","321.6","51005","Alleghany","{""51005"": ""100""}","Alleghany","51005","FALSE","FALSE","America/New_York"
-"24450","37.78579","-79.52385","Lexington","VA","Virginia","TRUE","","17140","32.2","51163","Rockbridge","{""51163"": ""57.94"", ""51678"": ""42.06""}","Rockbridge|Lexington","51163|51678","FALSE","FALSE","America/New_York"
-"24457","37.77061","-79.92019","Low Moor","VA","Virginia","TRUE","","207","11.1","51005","Alleghany","{""51005"": ""100""}","Alleghany","51005","FALSE","FALSE","America/New_York"
-"24458","38.31187","-79.525","McDowell","VA","Virginia","TRUE","","401","1.8","51091","Highland","{""51091"": ""100""}","Highland","51091","FALSE","FALSE","America/New_York"
-"24459","38.02689","-79.28828","Middlebrook","VA","Virginia","TRUE","","728","5.6","51015","Augusta","{""51015"": ""92.05"", ""51163"": ""7.95""}","Augusta|Rockbridge","51015|51163","FALSE","FALSE","America/New_York"
-"24460","38.01893","-79.65204","Millboro","VA","Virginia","TRUE","","1182","1.9","51017","Bath","{""51017"": ""100""}","Bath","51017","FALSE","FALSE","America/New_York"
-"24464","37.87323","-79.10378","Montebello","VA","Virginia","TRUE","","168","2.9","51125","Nelson","{""51125"": ""100""}","Nelson","51125","FALSE","FALSE","America/New_York"
-"24465","38.38024","-79.64631","Monterey","VA","Virginia","TRUE","","1239","2.7","51091","Highland","{""51091"": ""100""}","Highland","51091","FALSE","FALSE","America/New_York"
-"24467","38.25999","-78.97223","Mount Sidney","VA","Virginia","TRUE","","2363","38.7","51015","Augusta","{""51015"": ""100""}","Augusta","51015","FALSE","FALSE","America/New_York"
-"24471","38.30905","-78.79629","Port Republic","VA","Virginia","TRUE","","1791","42.6","51165","Rockingham","{""51165"": ""100""}","Rockingham","51165","FALSE","FALSE","America/New_York"
-"24472","37.93755","-79.21452","Raphine","VA","Virginia","TRUE","","1722","10.4","51163","Rockbridge","{""51163"": ""59.4"", ""51015"": ""40.6""}","Rockbridge|Augusta","51163|51015","FALSE","FALSE","America/New_York"
-"24473","37.91697","-79.41446","Rockbridge Baths","VA","Virginia","TRUE","","889","6.3","51163","Rockbridge","{""51163"": ""100""}","Rockbridge","51163","FALSE","FALSE","America/New_York"
-"24474","37.8057","-79.84541","Selma","VA","Virginia","TRUE","","672","403.6","51005","Alleghany","{""51005"": ""100""}","Alleghany","51005","FALSE","FALSE","America/New_York"
-"24476","37.97044","-79.2233","Steeles Tavern","VA","Virginia","TRUE","","225","12.4","51015","Augusta","{""51015"": ""100""}","Augusta","51015","FALSE","FALSE","America/New_York"
-"24477","38.00446","-79.04232","Stuarts Draft","VA","Virginia","TRUE","","10894","86.6","51015","Augusta","{""51015"": ""100""}","Augusta","51015","FALSE","FALSE","America/New_York"
-"24479","38.15207","-79.24144","Swoope","VA","Virginia","TRUE","","1539","9.8","51015","Augusta","{""51015"": ""100""}","Augusta","51015","FALSE","FALSE","America/New_York"
-"24482","38.20521","-78.99551","Verona","VA","Virginia","TRUE","","5267","132.4","51015","Augusta","{""51015"": ""100"", ""51790"": ""0""}","Augusta|Staunton","51015|51790","FALSE","FALSE","America/New_York"
-"24483","37.81192","-79.22925","Vesuvius","VA","Virginia","TRUE","","582","3.1","51163","Rockbridge","{""51163"": ""77.85"", ""51009"": ""22.15""}","Rockbridge|Amherst","51163|51009","FALSE","FALSE","America/New_York"
-"24484","38.14374","-79.8207","Warm Springs","VA","Virginia","TRUE","","549","1.2","51017","Bath","{""51017"": ""91.09"", ""51091"": ""8.91""}","Bath|Highland","51017|51091","FALSE","FALSE","America/New_York"
-"24485","38.27271","-79.33542","West Augusta","VA","Virginia","TRUE","","333","1.5","51015","Augusta","{""51015"": ""100""}","Augusta","51015","FALSE","FALSE","America/New_York"
-"24486","38.29299","-78.93013","Weyers Cave","VA","Virginia","TRUE","","3304","56.0","51015","Augusta","{""51015"": ""93.95"", ""51165"": ""6.05""}","Augusta|Rockingham","51015|51165","FALSE","FALSE","America/New_York"
-"24487","38.18974","-79.58785","Williamsville","VA","Virginia","TRUE","","322","1.7","51017","Bath","{""51017"": ""89.38"", ""51091"": ""10.63""}","Bath|Highland","51017|51091","FALSE","FALSE","America/New_York"
-"24501","37.353","-79.15576","Lynchburg","VA","Virginia","TRUE","","28036","280.8","51680","Lynchburg","{""51680"": ""82.46"", ""51031"": ""17.54""}","Lynchburg|Campbell","51680|51031","FALSE","FALSE","America/New_York"
-"24502","37.35805","-79.22058","Lynchburg","VA","Virginia","TRUE","","46044","640.4","51680","Lynchburg","{""51680"": ""72.7"", ""51031"": ""25.29"", ""51019"": ""2.01""}","Lynchburg|Campbell|Bedford","51680|51031|51019","FALSE","FALSE","America/New_York"
-"24503","37.45331","-79.24965","Lynchburg","VA","Virginia","TRUE","","19349","178.9","51680","Lynchburg","{""51680"": ""76.04"", ""51019"": ""23.96""}","Lynchburg|Bedford","51680|51019","FALSE","FALSE","America/New_York"
-"24504","37.36104","-79.05445","Lynchburg","VA","Virginia","TRUE","","9765","117.4","51680","Lynchburg","{""51680"": ""72.23"", ""51031"": ""26.76"", ""51011"": ""1.01""}","Lynchburg|Campbell|Appomattox","51680|51031|51011","FALSE","FALSE","America/New_York"
-"24517","37.14937","-79.22977","Altavista","VA","Virginia","TRUE","","4743","50.8","51031","Campbell","{""51031"": ""100""}","Campbell","51031","FALSE","FALSE","America/New_York"
-"24520","36.58395","-79.03673","Alton","VA","Virginia","TRUE","","2261","9.4","51083","Halifax","{""51083"": ""100""}","Halifax","51083","FALSE","FALSE","America/New_York"
-"24521","37.63442","-79.09689","Amherst","VA","Virginia","TRUE","","9830","16.4","51009","Amherst","{""51009"": ""97.76"", ""51125"": ""2.24""}","Amherst|Nelson","51009|51125","FALSE","FALSE","America/New_York"
-"24522","37.37369","-78.78523","Appomattox","VA","Virginia","TRUE","","9206","18.0","51011","Appomattox","{""51011"": ""99.57"", ""51029"": ""0.43""}","Appomattox|Buckingham","51011|51029","FALSE","FALSE","America/New_York"
-"24523","37.34003","-79.5221","Bedford","VA","Virginia","TRUE","","19711","33.8","51019","Bedford","{""51019"": 100}","Bedford","51019","FALSE","FALSE","America/New_York"
-"24526","37.54207","-79.40242","Big Island","VA","Virginia","TRUE","","1264","7.5","51019","Bedford","{""51019"": ""100"", ""51009"": ""0""}","Bedford|Amherst","51019|51009","FALSE","FALSE","America/New_York"
-"24527","36.7369","-79.34396","Blairs","VA","Virginia","TRUE","","2884","35.3","51143","Pittsylvania","{""51143"": ""100""}","Pittsylvania","51143","FALSE","FALSE","America/New_York"
-"24528","37.07678","-78.87836","Brookneal","VA","Virginia","TRUE","","3126","12.3","51031","Campbell","{""51031"": ""82.97"", ""51037"": ""17.03""}","Campbell|Charlotte","51031|51037","FALSE","FALSE","America/New_York"
-"24529","36.62441","-78.64117","Buffalo Junction","VA","Virginia","TRUE","","2050","21.2","51117","Mecklenburg","{""51117"": ""100""}","Mecklenburg","51117","FALSE","FALSE","America/New_York"
-"24530","36.80401","-79.61411","Callands","VA","Virginia","TRUE","","932","10.3","51143","Pittsylvania","{""51143"": ""99.08"", ""51089"": ""0.92""}","Pittsylvania|Henry","51143|51089","FALSE","FALSE","America/New_York"
-"24531","36.84029","-79.44817","Chatham","VA","Virginia","TRUE","","8818","17.2","51143","Pittsylvania","{""51143"": ""100""}","Pittsylvania","51143","FALSE","FALSE","America/New_York"
-"24534","36.87472","-78.76692","Clover","VA","Virginia","TRUE","","1208","8.1","51083","Halifax","{""51083"": ""100""}","Halifax","51083","FALSE","FALSE","America/New_York"
-"24536","37.49299","-79.32598","Coleman Falls","VA","Virginia","TRUE","","286","18.7","51019","Bedford","{""51019"": ""100""}","Bedford","51019","FALSE","FALSE","America/New_York"
-"24538","37.33355","-78.95837","Concord","VA","Virginia","TRUE","","5591","23.4","51031","Campbell","{""51031"": ""65.56"", ""51011"": ""34.44""}","Campbell|Appomattox","51031|51011","FALSE","FALSE","America/New_York"
-"24539","36.85133","-78.9179","Crystal Hill","VA","Virginia","TRUE","","80","4.1","51083","Halifax","{""51083"": ""100""}","Halifax","51083","FALSE","FALSE","America/New_York"
-"24540","36.64309","-79.4234","Danville","VA","Virginia","TRUE","","31607","160.6","51590","Danville","{""51590"": ""60.1"", ""51143"": ""39.9""}","Danville|Pittsylvania","51590|51143","FALSE","FALSE","America/New_York"
-"24541","36.59208","-79.51244","Danville","VA","Virginia","TRUE","","27114","143.4","51590","Danville","{""51590"": ""84.06"", ""51143"": ""15.94""}","Danville|Pittsylvania","51590|51143","FALSE","FALSE","America/New_York"
-"24549","36.71496","-79.50706","Dry Fork","VA","Virginia","TRUE","","3805","28.8","51143","Pittsylvania","{""51143"": ""100""}","Pittsylvania","51143","FALSE","FALSE","America/New_York"
-"24550","37.23318","-79.25998","Evington","VA","Virginia","TRUE","","7272","43.1","51031","Campbell","{""51031"": ""94.19"", ""51019"": ""5.81""}","Campbell|Bedford","51031|51019","FALSE","FALSE","America/New_York"
-"24551","37.35604","-79.32368","Forest","VA","Virginia","TRUE","","25625","145.1","51019","Bedford","{""51019"": ""85.5"", ""51031"": ""13.66"", ""51680"": ""0.83""}","Bedford|Campbell|Lynchburg","51019|51031|51680","FALSE","FALSE","America/New_York"
-"24553","37.54759","-78.81782","Gladstone","VA","Virginia","TRUE","","1489","4.5","51125","Nelson","{""51125"": ""27.29"", ""51011"": ""26.13"", ""51009"": ""25.76"", ""51029"": ""20.82""}","Nelson|Appomattox|Amherst|Buckingham","51125|51011|51009|51029","FALSE","FALSE","America/New_York"
-"24554","37.13308","-79.0626","Gladys","VA","Virginia","TRUE","","3952","12.9","51031","Campbell","{""51031"": ""100""}","Campbell","51031","FALSE","FALSE","America/New_York"
-"24555","37.66874","-79.47241","Glasgow","VA","Virginia","TRUE","","2245","37.3","51163","Rockbridge","{""51163"": ""100""}","Rockbridge","51163","FALSE","FALSE","America/New_York"
-"24556","37.38279","-79.39626","Goode","VA","Virginia","TRUE","","3218","29.1","51019","Bedford","{""51019"": ""100""}","Bedford","51019","FALSE","FALSE","America/New_York"
-"24557","36.96662","-79.30432","Gretna","VA","Virginia","TRUE","","7696","18.1","51143","Pittsylvania","{""51143"": ""99.54"", ""51083"": ""0.46""}","Pittsylvania|Halifax","51143|51083","FALSE","FALSE","America/New_York"
-"24558","36.77421","-78.95416","Halifax","VA","Virginia","TRUE","","5813","23.9","51083","Halifax","{""51083"": ""100""}","Halifax","51083","FALSE","FALSE","America/New_York"
-"24562","37.69247","-78.62293","Howardsville","VA","Virginia","TRUE","","526","11.3","51029","Buckingham","{""51029"": ""78.17"", ""51125"": ""18.31"", ""51003"": ""3.52""}","Buckingham|Nelson|Albemarle","51029|51125|51003","FALSE","FALSE","America/New_York"
-"24563","37.06392","-79.27634","Hurt","VA","Virginia","TRUE","","5290","30.3","51143","Pittsylvania","{""51143"": ""100""}","Pittsylvania","51143","FALSE","FALSE","America/New_York"
-"24565","36.8499","-79.18943","Java","VA","Virginia","TRUE","","815","5.5","51143","Pittsylvania","{""51143"": ""92.79"", ""51083"": ""7.21""}","Pittsylvania|Halifax","51143|51083","FALSE","FALSE","America/New_York"
-"24566","36.72748","-79.25076","Keeling","VA","Virginia","TRUE","","1386","14.4","51143","Pittsylvania","{""51143"": ""100""}","Pittsylvania","51143","FALSE","FALSE","America/New_York"
-"24569","37.04485","-79.12173","Long Island","VA","Virginia","TRUE","","938","10.0","51143","Pittsylvania","{""51143"": ""64.66"", ""51083"": ""20.49"", ""51031"": ""14.85""}","Pittsylvania|Halifax|Campbell","51143|51083|51031","FALSE","FALSE","America/New_York"
-"24570","37.34837","-79.42701","Lowry","VA","Virginia","TRUE","","0","0.0","51019","Bedford","{""51019"": ""100""}","Bedford","51019","FALSE","FALSE","America/New_York"
-"24571","37.13691","-79.37932","Lynch Station","VA","Virginia","TRUE","","2310","17.4","51031","Campbell","{""51031"": ""78.58"", ""51019"": ""21.42""}","Campbell|Bedford","51031|51019","FALSE","FALSE","America/New_York"
-"24572","37.46363","-79.0965","Madison Heights","VA","Virginia","TRUE","","16691","100.8","51009","Amherst","{""51009"": ""100""}","Amherst","51009","FALSE","FALSE","America/New_York"
-"24574","37.57697","-79.2598","Monroe","VA","Virginia","TRUE","","4009","14.2","51009","Amherst","{""51009"": ""100""}","Amherst","51009","FALSE","FALSE","America/New_York"
-"24577","36.93564","-78.97195","Nathalie","VA","Virginia","TRUE","","4720","9.5","51083","Halifax","{""51083"": ""100""}","Halifax","51083","FALSE","FALSE","America/New_York"
-"24578","37.66174","-79.55753","Natural Bridge","VA","Virginia","TRUE","","926","10.3","51163","Rockbridge","{""51163"": ""100""}","Rockbridge","51163","FALSE","FALSE","America/New_York"
-"24579","37.58705","-79.50457","Natural Bridge Station","VA","Virginia","TRUE","","1256","14.8","51163","Rockbridge","{""51163"": ""100""}","Rockbridge","51163","FALSE","FALSE","America/New_York"
-"24580","36.58095","-78.68318","Nelson","VA","Virginia","TRUE","","531","9.9","51117","Mecklenburg","{""51117"": ""100""}","Mecklenburg","51117","FALSE","FALSE","America/New_York"
-"24581","37.6575","-78.80464","Norwood","VA","Virginia","TRUE","","27","2.4","51125","Nelson","{""51125"": ""100""}","Nelson","51125","FALSE","FALSE","America/New_York"
-"24586","36.60699","-79.283","Ringgold","VA","Virginia","TRUE","","5819","42.3","51143","Pittsylvania","{""51143"": ""100""}","Pittsylvania","51143","FALSE","FALSE","America/New_York"
-"24588","37.26276","-79.09685","Rustburg","VA","Virginia","TRUE","","9936","52.8","51031","Campbell","{""51031"": ""100""}","Campbell","51031","FALSE","FALSE","America/New_York"
-"24589","36.75875","-78.75788","Scottsburg","VA","Virginia","TRUE","","3170","15.8","51083","Halifax","{""51083"": ""100""}","Halifax","51083","FALSE","FALSE","America/New_York"
-"24590","37.79308","-78.48481","Scottsville","VA","Virginia","TRUE","","7779","18.0","51003","Albemarle","{""51003"": ""41.27"", ""51065"": ""34.53"", ""51029"": ""24.2""}","Albemarle|Fluvanna|Buckingham","51003|51065|51029","FALSE","FALSE","America/New_York"
-"24592","36.67561","-78.9636","South Boston","VA","Virginia","TRUE","","13342","41.0","51083","Halifax","{""51083"": ""100""}","Halifax","51083","FALSE","FALSE","America/New_York"
-"24593","37.32795","-78.91137","Spout Spring","VA","Virginia","TRUE","","2260","24.1","51011","Appomattox","{""51011"": ""100""}","Appomattox","51011","FALSE","FALSE","America/New_York"
-"24594","36.64366","-79.18779","Sutherlin","VA","Virginia","TRUE","","1600","11.3","51143","Pittsylvania","{""51143"": ""69.11"", ""51083"": ""30.89""}","Pittsylvania|Halifax","51143|51083","FALSE","FALSE","America/New_York"
-"24595","37.55779","-79.08251","Sweet Briar","VA","Virginia","TRUE","","639","132.5","51009","Amherst","{""51009"": ""100""}","Amherst","51009","FALSE","FALSE","America/New_York"
-"24597","36.78531","-79.10954","Vernon Hill","VA","Virginia","TRUE","","1151","8.9","51083","Halifax","{""51083"": ""90.21"", ""51143"": ""9.79""}","Halifax|Pittsylvania","51083|51143","FALSE","FALSE","America/New_York"
-"24598","36.60742","-78.78345","Virgilina","VA","Virginia","TRUE","","1677","8.8","51083","Halifax","{""51083"": ""98.29"", ""51117"": ""1.71""}","Halifax|Mecklenburg","51083|51117","FALSE","FALSE","America/New_York"
-"24599","37.63047","-78.72569","Wingina","VA","Virginia","TRUE","","1083","8.9","51029","Buckingham","{""51029"": ""55.28"", ""51125"": ""44.72""}","Buckingham|Nelson","51029|51125","FALSE","FALSE","America/New_York"
-"24601","37.19378","-81.64921","Amonate","VA","Virginia","TRUE","","0","0.0","51185","Tazewell","{""51185"": ""100""}","Tazewell","51185","FALSE","FALSE","America/New_York"
-"24602","37.18279","-81.65999","Bandy","VA","Virginia","TRUE","","670","5.2","51185","Tazewell","{""51185"": ""100""}","Tazewell","51185","FALSE","FALSE","America/New_York"
-"24603","37.35328","-82.19682","Big Rock","VA","Virginia","TRUE","","766","14.3","51027","Buchanan","{""51027"": ""100""}","Buchanan","51027","FALSE","FALSE","America/New_York"
-"24604","37.20996","-81.54212","Bishop","VA","Virginia","TRUE","","189","17.9","51185","Tazewell","{""51185"": ""76.61"", ""54047"": ""23.39""}","Tazewell|McDowell","51185|54047","FALSE","FALSE","America/New_York"
-"24605","37.2448","-81.36635","Bluefield","VA","Virginia","TRUE","","7870","63.1","51185","Tazewell","{""51185"": ""100""}","Tazewell","51185","FALSE","FALSE","America/New_York"
-"24606","37.28771","-81.39385","Boissevain","VA","Virginia","TRUE","","209","34.5","51185","Tazewell","{""51185"": ""100""}","Tazewell","51185","FALSE","FALSE","America/New_York"
-"24607","37.29078","-82.2653","Breaks","VA","Virginia","TRUE","","254","7.7","51027","Buchanan","{""51027"": ""80.09"", ""51051"": ""19.91""}","Buchanan|Dickenson","51027|51051","FALSE","FALSE","America/New_York"
-"24609","37.0107","-81.81373","Cedar Bluff","VA","Virginia","TRUE","","7136","26.5","51185","Tazewell","{""51185"": ""75.12"", ""51167"": ""24.88""}","Tazewell|Russell","51185|51167","FALSE","FALSE","America/New_York"
-"24612","37.09338","-81.83828","Doran","VA","Virginia","TRUE","","165","120.8","51185","Tazewell","{""51185"": ""100""}","Tazewell","51185","FALSE","FALSE","America/New_York"
-"24613","37.26168","-81.33695","Falls Mills","VA","Virginia","TRUE","","560","18.8","51185","Tazewell","{""51185"": ""100""}","Tazewell","51185","FALSE","FALSE","America/New_York"
-"24614","37.31062","-82.06499","Grundy","VA","Virginia","TRUE","","7198","21.7","51027","Buchanan","{""51027"": ""100""}","Buchanan","51027","FALSE","FALSE","America/New_York"
-"24620","37.42993","-82.01884","Hurley","VA","Virginia","TRUE","","2932","14.7","51027","Buchanan","{""51027"": ""100""}","Buchanan","51027","FALSE","FALSE","America/New_York"
-"24622","37.20942","-81.79562","Jewell Ridge","VA","Virginia","TRUE","","839","6.6","51027","Buchanan","{""51027"": ""53.11"", ""51185"": ""46.89""}","Buchanan|Tazewell","51027|51185","FALSE","FALSE","America/New_York"
-"24628","37.28718","-82.2177","Maxie","VA","Virginia","TRUE","","250","15.2","51027","Buchanan","{""51027"": ""100""}","Buchanan","51027","FALSE","FALSE","America/New_York"
-"24630","37.17592","-81.46741","North Tazewell","VA","Virginia","TRUE","","7148","42.1","51185","Tazewell","{""51185"": ""100""}","Tazewell","51185","FALSE","FALSE","America/New_York"
-"24631","37.21374","-81.99169","Oakwood","VA","Virginia","TRUE","","2334","17.8","51027","Buchanan","{""51027"": ""100""}","Buchanan","51027","FALSE","FALSE","America/New_York"
-"24634","37.27465","-81.90232","Pilgrims Knob","VA","Virginia","TRUE","","462","12.3","51027","Buchanan","{""51027"": ""100""}","Buchanan","51027","FALSE","FALSE","America/New_York"
-"24635","37.309","-81.35133","Pocahontas","VA","Virginia","TRUE","","1420","93.8","51185","Tazewell","{""51185"": ""100""}","Tazewell","51185","FALSE","FALSE","America/New_York"
-"24637","37.05873","-81.70332","Pounding Mill","VA","Virginia","TRUE","","3683","50.0","51185","Tazewell","{""51185"": ""100""}","Tazewell","51185","FALSE","FALSE","America/New_York"
-"24639","37.16695","-81.89861","Raven","VA","Virginia","TRUE","","3412","31.3","51185","Tazewell","{""51185"": ""64.79"", ""51027"": ""34.73"", ""51167"": ""0.48""}","Tazewell|Buchanan|Russell","51185|51027|51167","FALSE","FALSE","America/New_York"
-"24641","37.11584","-81.80373","Richlands","VA","Virginia","TRUE","","5489","111.1","51185","Tazewell","{""51185"": ""100""}","Tazewell","51185","FALSE","FALSE","America/New_York"
-"24646","37.13642","-82.02889","Rowe","VA","Virginia","TRUE","","642","21.1","51027","Buchanan","{""51027"": ""100""}","Buchanan","51027","FALSE","FALSE","America/New_York"
-"24649","37.07276","-81.90936","Swords Creek","VA","Virginia","TRUE","","2705","23.6","51167","Russell","{""51167"": ""99.64"", ""51027"": ""0.36""}","Russell|Buchanan","51167|51027","FALSE","FALSE","America/New_York"
-"24651","37.07667","-81.50416","Tazewell","VA","Virginia","TRUE","","5665","13.9","51185","Tazewell","{""51185"": ""100""}","Tazewell","51185","FALSE","FALSE","America/New_York"
-"24656","37.17393","-82.1233","Vansant","VA","Virginia","TRUE","","2906","16.4","51027","Buchanan","{""51027"": ""100""}","Buchanan","51027","FALSE","FALSE","America/New_York"
-"24657","37.22509","-81.8605","Whitewood","VA","Virginia","TRUE","","381","8.8","51027","Buchanan","{""51027"": ""100""}","Buchanan","51027","FALSE","FALSE","America/New_York"
-"24701","37.30095","-81.20654","Bluefield","WV","West Virginia","TRUE","","19800","118.7","54055","Mercer","{""54055"": ""100""}","Mercer","54055","FALSE","FALSE","America/New_York"
-"24712","37.46476","-81.01395","Athens","WV","West Virginia","TRUE","","2264","98.0","54055","Mercer","{""54055"": ""100""}","Mercer","54055","FALSE","FALSE","America/New_York"
-"24714","37.47671","-81.18917","Beeson","WV","West Virginia","TRUE","","157","4.8","54055","Mercer","{""54055"": ""100""}","Mercer","54055","FALSE","FALSE","America/New_York"
-"24715","37.34319","-81.32865","Bramwell","WV","West Virginia","TRUE","","426","16.8","54055","Mercer","{""54055"": ""100""}","Mercer","54055","FALSE","FALSE","America/New_York"
-"24716","37.48718","-81.3771","Bud","WV","West Virginia","TRUE","","367","6.9","54109","Wyoming","{""54109"": ""100""}","Wyoming","54109","FALSE","FALSE","America/New_York"
-"24719","37.48719","-81.32668","Covel","WV","West Virginia","TRUE","","30","11.4","54109","Wyoming","{""54109"": ""100""}","Wyoming","54109","FALSE","FALSE","America/New_York"
-"24724","37.33081","-81.29975","Freeman","WV","West Virginia","TRUE","","107","262.4","54055","Mercer","{""54055"": ""100""}","Mercer","54055","FALSE","FALSE","America/New_York"
-"24726","37.51971","-81.35652","Herndon","WV","West Virginia","TRUE","","731","7.7","54109","Wyoming","{""54109"": ""100""}","Wyoming","54109","FALSE","FALSE","America/New_York"
-"24729","37.44965","-81.25639","Hiawatha","WV","West Virginia","TRUE","","237","18.8","54055","Mercer","{""54055"": ""100""}","Mercer","54055","FALSE","FALSE","America/New_York"
-"24731","37.39797","-81.15108","Kegley","WV","West Virginia","TRUE","","162","49.0","54055","Mercer","{""54055"": ""100""}","Mercer","54055","FALSE","FALSE","America/New_York"
-"24733","37.4481","-81.20698","Lashmeet","WV","West Virginia","TRUE","","583","38.8","54055","Mercer","{""54055"": ""100""}","Mercer","54055","FALSE","FALSE","America/New_York"
-"24736","37.44465","-81.28034","Matoaka","WV","West Virginia","TRUE","","584","7.9","54055","Mercer","{""54055"": ""83.48"", ""54109"": ""16.52""}","Mercer|Wyoming","54055|54109","FALSE","FALSE","America/New_York"
-"24737","37.35309","-81.24968","Montcalm","WV","West Virginia","TRUE","","179","661.5","54055","Mercer","{""54055"": ""100""}","Mercer","54055","FALSE","FALSE","America/New_York"
-"24738","37.30217","-81.31247","Nemours","WV","West Virginia","TRUE","","264","80.5","54055","Mercer","{""54055"": ""100""}","Mercer","54055","FALSE","FALSE","America/New_York"
-"24740","37.37644","-81.01879","Princeton","WV","West Virginia","TRUE","","30073","72.4","54055","Mercer","{""54055"": ""100""}","Mercer","54055","FALSE","FALSE","America/New_York"
-"24747","37.39621","-81.23169","Rock","WV","West Virginia","TRUE","","2958","28.7","54055","Mercer","{""54055"": ""100""}","Mercer","54055","FALSE","FALSE","America/New_York"
-"24801","37.44261","-81.5776","Welch","WV","West Virginia","TRUE","","4051","28.5","54047","McDowell","{""54047"": ""92.69"", ""54109"": ""7.31""}","McDowell|Wyoming","54047|54109","FALSE","FALSE","America/New_York"
-"24808","37.33627","-81.41506","Anawalt","WV","West Virginia","TRUE","","518","12.3","54047","McDowell","{""54047"": ""100""}","McDowell","54047","FALSE","FALSE","America/New_York"
-"24811","37.40164","-81.77855","Avondale","WV","West Virginia","TRUE","","678","16.8","54047","McDowell","{""54047"": ""100""}","McDowell","54047","FALSE","FALSE","America/New_York"
-"24813","37.35742","-81.71665","Bartley","WV","West Virginia","TRUE","","155","4.7","54047","McDowell","{""54047"": ""100""}","McDowell","54047","FALSE","FALSE","America/New_York"
-"24815","37.2375","-81.67646","Berwind","WV","West Virginia","TRUE","","723","13.0","54047","McDowell","{""54047"": ""100""}","McDowell","54047","FALSE","FALSE","America/New_York"
-"24816","37.4612","-81.70504","Big Sandy","WV","West Virginia","TRUE","","139","109.7","54047","McDowell","{""54047"": ""100""}","McDowell","54047","FALSE","FALSE","America/New_York"
-"24817","37.35108","-81.80659","Bradshaw","WV","West Virginia","TRUE","","876","29.8","54047","McDowell","{""54047"": ""100""}","McDowell","54047","FALSE","FALSE","America/New_York"
-"24818","37.59883","-81.62628","Brenton","WV","West Virginia","TRUE","","1214","18.3","54109","Wyoming","{""54109"": ""100""}","Wyoming","54109","FALSE","FALSE","America/New_York"
-"24822","37.6272","-81.68134","Clear Fork","WV","West Virginia","TRUE","","823","17.1","54109","Wyoming","{""54109"": ""100""}","Wyoming","54109","FALSE","FALSE","America/New_York"
-"24823","37.66123","-81.73721","Coal Mountain","WV","West Virginia","TRUE","","489","13.8","54109","Wyoming","{""54109"": ""100""}","Wyoming","54109","FALSE","FALSE","America/New_York"
-"24826","37.29067","-81.63265","Cucumber","WV","West Virginia","TRUE","","66","1.8","54047","McDowell","{""54047"": ""100""}","McDowell","54047","FALSE","FALSE","America/New_York"
-"24827","37.74225","-81.6667","Cyclone","WV","West Virginia","TRUE","","1342","13.3","54109","Wyoming","{""54109"": ""100""}","Wyoming","54109","FALSE","FALSE","America/New_York"
-"24828","37.48833","-81.6439","Davy","WV","West Virginia","TRUE","","815","14.3","54047","McDowell","{""54047"": ""96.01"", ""54109"": ""3.99""}","McDowell|Wyoming","54047|54109","FALSE","FALSE","America/New_York"
-"24830","37.32375","-81.5096","Elbert","WV","West Virginia","TRUE","","111","5.0","54047","McDowell","{""54047"": ""100""}","McDowell","54047","FALSE","FALSE","America/New_York"
-"24831","37.39342","-81.40886","Elkhorn","WV","West Virginia","TRUE","","142","31.2","54047","McDowell","{""54047"": ""100""}","McDowell","54047","FALSE","FALSE","America/New_York"
-"24834","37.55325","-81.63047","Fanrock","WV","West Virginia","TRUE","","459","14.4","54109","Wyoming","{""54109"": ""100""}","Wyoming","54109","FALSE","FALSE","America/New_York"
-"24836","37.3326","-81.55346","Gary","WV","West Virginia","TRUE","","671","6.8","54047","McDowell","{""54047"": ""100""}","McDowell","54047","FALSE","FALSE","America/New_York"
-"24839","37.55264","-81.75146","Hanover","WV","West Virginia","TRUE","","1559","12.9","54109","Wyoming","{""54109"": ""100""}","Wyoming","54109","FALSE","FALSE","America/New_York"
-"24843","37.48363","-81.70915","Hensley","WV","West Virginia","TRUE","","72","8.3","54047","McDowell","{""54047"": ""100""}","McDowell","54047","FALSE","FALSE","America/New_York"
-"24844","37.46241","-81.80464","Iaeger","WV","West Virginia","TRUE","","1178","8.0","54047","McDowell","{""54047"": ""100""}","McDowell","54047","FALSE","FALSE","America/New_York"
-"24845","37.52353","-81.80339","Ikes Fork","WV","West Virginia","TRUE","","452","52.4","54109","Wyoming","{""54109"": ""100""}","Wyoming","54109","FALSE","FALSE","America/New_York"
-"24846","37.53033","-81.90864","Isaban","WV","West Virginia","TRUE","","39","2.1","54059","Mingo","{""54059"": ""62.3"", ""54047"": ""37.7""}","Mingo|McDowell","54059|54047","FALSE","FALSE","America/New_York"
-"24847","37.57795","-81.41541","Itmann","WV","West Virginia","TRUE","","258","55.8","54109","Wyoming","{""54109"": ""100""}","Wyoming","54109","FALSE","FALSE","America/New_York"
-"24848","37.29081","-81.45116","Jenkinjones","WV","West Virginia","TRUE","","150","4.4","54047","McDowell","{""54047"": ""100""}","McDowell","54047","FALSE","FALSE","America/New_York"
-"24849","37.67065","-81.55857","Jesse","WV","West Virginia","TRUE","","212","7.9","54109","Wyoming","{""54109"": ""100""}","Wyoming","54109","FALSE","FALSE","America/New_York"
-"24850","37.31161","-81.82836","Jolo","WV","West Virginia","TRUE","","501","12.7","54047","McDowell","{""54047"": ""100""}","McDowell","54047","FALSE","FALSE","America/New_York"
-"24851","37.59689","-81.83548","Justice","WV","West Virginia","TRUE","","654","337.0","54059","Mingo","{""54059"": ""94.99"", ""54109"": ""5.01""}","Mingo|Wyoming","54059|54109","FALSE","FALSE","America/New_York"
-"24853","37.43434","-81.51184","Kimball","WV","West Virginia","TRUE","","436","7.7","54047","McDowell","{""54047"": ""100""}","McDowell","54047","FALSE","FALSE","America/New_York"
-"24854","37.74786","-81.56742","Kopperston","WV","West Virginia","TRUE","","257","16.9","54109","Wyoming","{""54109"": ""100""}","Wyoming","54109","FALSE","FALSE","America/New_York"
-"24857","37.67446","-81.66072","Lynco","WV","West Virginia","TRUE","","575","26.9","54109","Wyoming","{""54109"": ""100""}","Wyoming","54109","FALSE","FALSE","America/New_York"
-"24860","37.66233","-81.60698","Matheny","WV","West Virginia","TRUE","","246","16.0","54109","Wyoming","{""54109"": ""100""}","Wyoming","54109","FALSE","FALSE","America/New_York"
-"24861","37.36111","-81.36569","Maybeury","WV","West Virginia","TRUE","","114","11.0","54047","McDowell","{""54047"": ""100""}","McDowell","54047","FALSE","FALSE","America/New_York"
-"24862","37.47932","-81.95361","Mohawk","WV","West Virginia","TRUE","","602","21.7","54047","McDowell","{""54047"": ""100""}","McDowell","54047","FALSE","FALSE","America/New_York"
-"24866","37.24808","-81.58027","Newhall","WV","West Virginia","TRUE","","356","13.5","54047","McDowell","{""54047"": ""100""}","McDowell","54047","FALSE","FALSE","America/New_York"
-"24867","37.603","-81.44719","New Richmond","WV","West Virginia","TRUE","","426","12.5","54109","Wyoming","{""54109"": ""100""}","Wyoming","54109","FALSE","FALSE","America/New_York"
-"24868","37.41934","-81.40577","Northfork","WV","West Virginia","TRUE","","1114","10.6","54047","McDowell","{""54047"": ""100""}","McDowell","54047","FALSE","FALSE","America/New_York"
-"24869","37.55936","-81.83264","North Spring","WV","West Virginia","TRUE","","362","30.2","54109","Wyoming","{""54109"": ""100""}","Wyoming","54109","FALSE","FALSE","America/New_York"
-"24870","37.73531","-81.54176","Oceana","WV","West Virginia","TRUE","","2711","26.9","54109","Wyoming","{""54109"": ""100""}","Wyoming","54109","FALSE","FALSE","America/New_York"
-"24871","37.35701","-81.46798","Pageton","WV","West Virginia","TRUE","","201","8.9","54047","McDowell","{""54047"": ""100""}","McDowell","54047","FALSE","FALSE","America/New_York"
-"24872","37.44919","-81.8995","Panther","WV","West Virginia","TRUE","","583","7.3","54047","McDowell","{""54047"": ""100""}","McDowell","54047","FALSE","FALSE","America/New_York"
-"24873","37.36594","-81.87873","Paynesville","WV","West Virginia","TRUE","","622","14.5","54047","McDowell","{""54047"": ""100""}","McDowell","54047","FALSE","FALSE","America/New_York"
-"24874","37.56242","-81.52745","Pineville","WV","West Virginia","TRUE","","3151","18.4","54109","Wyoming","{""54109"": ""100""}","Wyoming","54109","FALSE","FALSE","America/New_York"
-"24878","37.43445","-81.62941","Premier","WV","West Virginia","TRUE","","529","23.1","54047","McDowell","{""54047"": ""100""}","McDowell","54047","FALSE","FALSE","America/New_York"
-"24879","37.32446","-81.76138","Raysal","WV","West Virginia","TRUE","","602","14.9","54047","McDowell","{""54047"": ""100""}","McDowell","54047","FALSE","FALSE","America/New_York"
-"24880","37.6439","-81.5376","Rock View","WV","West Virginia","TRUE","","451","35.7","54109","Wyoming","{""54109"": ""100""}","Wyoming","54109","FALSE","FALSE","America/New_York"
-"24881","37.4397","-81.69151","Roderfield","WV","West Virginia","TRUE","","373","11.9","54047","McDowell","{""54047"": ""100""}","McDowell","54047","FALSE","FALSE","America/New_York"
-"24882","37.62737","-81.76625","Simon","WV","West Virginia","TRUE","","326","10.1","54109","Wyoming","{""54109"": ""100""}","Wyoming","54109","FALSE","FALSE","America/New_York"
-"24884","37.25557","-81.56462","Squire","WV","West Virginia","TRUE","","311","5.4","54047","McDowell","{""54047"": ""100""}","McDowell","54047","FALSE","FALSE","America/New_York"
-"24887","37.37458","-81.3998","Switchback","WV","West Virginia","TRUE","","51","6.8","54047","McDowell","{""54047"": ""100""}","McDowell","54047","FALSE","FALSE","America/New_York"
-"24888","37.38453","-81.49107","Thorpe","WV","West Virginia","TRUE","","68","4.8","54047","McDowell","{""54047"": ""100""}","McDowell","54047","FALSE","FALSE","America/New_York"
-"24892","37.32664","-81.68777","War","WV","West Virginia","TRUE","","1702","30.1","54047","McDowell","{""54047"": ""100""}","McDowell","54047","FALSE","FALSE","America/New_York"
-"24894","37.28284","-81.70357","Warriormine","WV","West Virginia","TRUE","","128","6.9","54047","McDowell","{""54047"": ""100""}","McDowell","54047","FALSE","FALSE","America/New_York"
-"24898","37.59418","-81.60561","Wyoming","WV","West Virginia","TRUE","","63","102.3","54109","Wyoming","{""54109"": ""100""}","Wyoming","54109","FALSE","FALSE","America/New_York"
-"24901","37.84062","-80.46534","Lewisburg","WV","West Virginia","TRUE","","9506","42.1","54025","Greenbrier","{""54025"": ""100""}","Greenbrier","54025","FALSE","FALSE","America/New_York"
-"24910","37.73709","-80.66095","Alderson","WV","West Virginia","TRUE","","5279","14.8","54025","Greenbrier","{""54025"": ""45.22"", ""54089"": ""36.99"", ""54063"": ""17.8""}","Greenbrier|Summers|Monroe","54025|54089|54063","FALSE","FALSE","America/New_York"
-"24915","38.46521","-79.77636","Arbovale","WV","West Virginia","TRUE","","511","3.9","54075","Pocahontas","{""54075"": ""100""}","Pocahontas","54075","FALSE","FALSE","America/New_York"
-"24916","37.83127","-80.57465","Asbury","WV","West Virginia","TRUE","","618","14.2","54025","Greenbrier","{""54025"": ""100""}","Greenbrier","54025","FALSE","FALSE","America/New_York"
-"24918","37.52016","-80.75007","Ballard","WV","West Virginia","TRUE","","2074","18.3","54063","Monroe","{""54063"": ""93.14"", ""54089"": ""6.86""}","Monroe|Summers","54063|54089","FALSE","FALSE","America/New_York"
-"24920","38.58404","-79.70137","Bartow","WV","West Virginia","TRUE","","305","1.7","54075","Pocahontas","{""54075"": ""100""}","Pocahontas","54075","FALSE","FALSE","America/New_York"
-"24924","38.22762","-80.18476","Buckeye","WV","West Virginia","TRUE","","470","7.6","54075","Pocahontas","{""54075"": ""100""}","Pocahontas","54075","FALSE","FALSE","America/New_York"
-"24925","37.72352","-80.37915","Caldwell","WV","West Virginia","TRUE","","509","5.7","54025","Greenbrier","{""54025"": ""90.48"", ""54063"": ""9.52""}","Greenbrier|Monroe","54025|54063","FALSE","FALSE","America/New_York"
-"24927","38.37437","-79.95142","Cass","WV","West Virginia","TRUE","","123","1.2","54075","Pocahontas","{""54075"": ""100""}","Pocahontas","54075","FALSE","FALSE","America/New_York"
-"24931","37.91927","-80.59151","Crawley","WV","West Virginia","TRUE","","1401","8.5","54025","Greenbrier","{""54025"": ""100""}","Greenbrier","54025","FALSE","FALSE","America/New_York"
-"24934","38.33439","-79.89158","Dunmore","WV","West Virginia","TRUE","","351","2.1","54075","Pocahontas","{""54075"": ""100""}","Pocahontas","54075","FALSE","FALSE","America/New_York"
-"24935","37.56075","-80.81113","Forest Hill","WV","West Virginia","TRUE","","390","5.2","54089","Summers","{""54089"": ""100""}","Summers","54089","FALSE","FALSE","America/New_York"
-"24938","37.91587","-80.3782","Frankford","WV","West Virginia","TRUE","","1693","23.5","54025","Greenbrier","{""54025"": ""100""}","Greenbrier","54025","FALSE","FALSE","America/New_York"
-"24941","37.59451","-80.35445","Gap Mills","WV","West Virginia","TRUE","","1172","6.4","54063","Monroe","{""54063"": ""100""}","Monroe","54063","FALSE","FALSE","America/New_York"
-"24944","38.38973","-79.78368","Green Bank","WV","West Virginia","TRUE","","529","6.8","54075","Pocahontas","{""54075"": ""100""}","Pocahontas","54075","FALSE","FALSE","America/New_York"
-"24945","37.5427","-80.68473","Greenville","WV","West Virginia","TRUE","","301","7.0","54063","Monroe","{""54063"": ""100""}","Monroe","54063","FALSE","FALSE","America/New_York"
-"24946","38.18499","-80.26634","Hillsboro","WV","West Virginia","TRUE","","1217","2.7","54075","Pocahontas","{""54075"": ""100""}","Pocahontas","54075","FALSE","FALSE","America/New_York"
-"24951","37.48122","-80.63645","Lindside","WV","West Virginia","TRUE","","1628","17.1","54063","Monroe","{""54063"": ""100""}","Monroe","54063","FALSE","FALSE","America/New_York"
-"24954","38.22328","-80.0431","Marlinton","WV","West Virginia","TRUE","","3927","5.3","54075","Pocahontas","{""54075"": ""100""}","Pocahontas","54075","FALSE","FALSE","America/New_York"
-"24957","37.87649","-80.41916","Maxwelton","WV","West Virginia","TRUE","","150","15.4","54025","Greenbrier","{""54025"": ""100""}","Greenbrier","54025","FALSE","FALSE","America/New_York"
-"24962","37.66198","-80.72022","Pence Springs","WV","West Virginia","TRUE","","114","13.9","54089","Summers","{""54089"": ""100""}","Summers","54089","FALSE","FALSE","America/New_York"
-"24963","37.43603","-80.76931","Peterstown","WV","West Virginia","TRUE","","3737","26.9","54063","Monroe","{""54063"": ""96.63"", ""54089"": ""3.37""}","Monroe|Summers","54063|54089","FALSE","FALSE","America/New_York"
-"24966","38.0697","-80.37499","Renick","WV","West Virginia","TRUE","","1473","2.9","54025","Greenbrier","{""54025"": ""100""}","Greenbrier","54025","FALSE","FALSE","America/New_York"
-"24970","37.73129","-80.4789","Ronceverte","WV","West Virginia","TRUE","","4508","43.1","54025","Greenbrier","{""54025"": ""98.91"", ""54063"": ""1.09""}","Greenbrier|Monroe","54025|54063","FALSE","FALSE","America/New_York"
-"24974","37.65906","-80.4442","Secondcreek","WV","West Virginia","TRUE","","328","17.4","54063","Monroe","{""54063"": ""100""}","Monroe","54063","FALSE","FALSE","America/New_York"
-"24976","37.66092","-80.51347","Sinks Grove","WV","West Virginia","TRUE","","1075","14.3","54063","Monroe","{""54063"": ""94.83"", ""54025"": ""5.17""}","Monroe|Greenbrier","54063|54025","FALSE","FALSE","America/New_York"
-"24977","37.90547","-80.6739","Smoot","WV","West Virginia","TRUE","","447","13.1","54025","Greenbrier","{""54025"": ""100""}","Greenbrier","54025","FALSE","FALSE","America/New_York"
-"24981","37.63105","-80.73586","Talcott","WV","West Virginia","TRUE","","351","11.0","54089","Summers","{""54089"": ""89.7"", ""54063"": ""10.3""}","Summers|Monroe","54089|54063","FALSE","FALSE","America/New_York"
-"24983","37.5809","-80.52614","Union","WV","West Virginia","TRUE","","2220","6.9","54063","Monroe","{""54063"": ""100""}","Monroe","54063","FALSE","FALSE","America/New_York"
-"24984","37.49259","-80.40375","Waiteville","WV","West Virginia","TRUE","","160","1.3","54063","Monroe","{""54063"": ""100""}","Monroe","54063","FALSE","FALSE","America/New_York"
-"24986","37.90714","-80.19336","White Sulphur Springs","WV","West Virginia","TRUE","","5477","9.4","54025","Greenbrier","{""54025"": ""99.31"", ""54075"": ""0.69""}","Greenbrier|Pocahontas","54025|54075","FALSE","FALSE","America/New_York"
-"24991","37.99916","-80.49923","Williamsburg","WV","West Virginia","TRUE","","767","6.2","54025","Greenbrier","{""54025"": ""100""}","Greenbrier","54025","FALSE","FALSE","America/New_York"
-"25002","38.13577","-81.24177","Alloy","WV","West Virginia","TRUE","","0","0.0","54019","Fayette","{""54019"": ""100""}","Fayette","54019","FALSE","FALSE","America/New_York"
-"25003","38.25115","-81.78615","Alum Creek","WV","West Virginia","TRUE","","2664","28.7","54043","Lincoln","{""54043"": ""56.4"", ""54039"": ""43.6""}","Lincoln|Kanawha","54043|54039","FALSE","FALSE","America/New_York"
-"25005","38.58088","-81.26921","Amma","WV","West Virginia","TRUE","","150","7.8","54087","Roane","{""54087"": ""100""}","Roane","54087","FALSE","FALSE","America/New_York"
-"25007","37.82536","-81.42866","Arnett","WV","West Virginia","TRUE","","628","46.1","54081","Raleigh","{""54081"": ""100""}","Raleigh","54081","FALSE","FALSE","America/New_York"
-"25008","37.94699","-81.34422","Artie","WV","West Virginia","TRUE","","205","7.0","54081","Raleigh","{""54081"": ""100""}","Raleigh","54081","FALSE","FALSE","America/New_York"
-"25009","38.19199","-81.71202","Ashford","WV","West Virginia","TRUE","","1157","15.5","54005","Boone","{""54005"": ""100""}","Boone","54005","FALSE","FALSE","America/New_York"
-"25011","38.50864","-81.83936","Bancroft","WV","West Virginia","TRUE","","564","546.1","54079","Putnam","{""54079"": ""100""}","Putnam","54079","FALSE","FALSE","America/New_York"
-"25015","38.24257","-81.50234","Belle","WV","West Virginia","TRUE","","3778","56.8","54039","Kanawha","{""54039"": ""100""}","Kanawha","54039","FALSE","FALSE","America/New_York"
-"25019","38.37293","-81.08679","Bickmore","WV","West Virginia","TRUE","","541","9.2","54015","Clay","{""54015"": ""100""}","Clay","54015","FALSE","FALSE","America/New_York"
-"25021","37.9224","-81.68056","Bim","WV","West Virginia","TRUE","","285","16.6","54005","Boone","{""54005"": ""100""}","Boone","54005","FALSE","FALSE","America/New_York"
-"25022","37.85869","-81.8117","Blair","WV","West Virginia","TRUE","","344","3.8","54045","Logan","{""54045"": ""100""}","Logan","54045","FALSE","FALSE","America/New_York"
-"25024","38.15593","-81.61944","Bloomingrose","WV","West Virginia","TRUE","","566","38.1","54005","Boone","{""54005"": ""100""}","Boone","54005","FALSE","FALSE","America/New_York"
-"25025","38.30873","-81.39832","Blount","WV","West Virginia","TRUE","","105","2.6","54039","Kanawha","{""54039"": ""100""}","Kanawha","54039","FALSE","FALSE","America/New_York"
-"25028","37.94783","-81.72337","Bob White","WV","West Virginia","TRUE","","285","34.4","54005","Boone","{""54005"": ""100""}","Boone","54005","FALSE","FALSE","America/New_York"
-"25030","38.45047","-81.22557","Bomont","WV","West Virginia","TRUE","","401","10.0","54015","Clay","{""54015"": ""100""}","Clay","54015","FALSE","FALSE","America/New_York"
-"25031","38.15192","-81.26561","Boomer","WV","West Virginia","TRUE","","755","63.6","54019","Fayette","{""54019"": ""100""}","Fayette","54019","FALSE","FALSE","America/New_York"
-"25033","38.61032","-81.92474","Buffalo","WV","West Virginia","TRUE","","1921","29.8","54079","Putnam","{""54079"": ""100""}","Putnam","54079","FALSE","FALSE","America/New_York"
-"25035","38.16171","-81.52151","Cabin Creek","WV","West Virginia","TRUE","","1105","36.9","54039","Kanawha","{""54039"": ""100""}","Kanawha","54039","FALSE","FALSE","America/New_York"
-"25036","38.22049","-81.25406","Cannelton","WV","West Virginia","TRUE","","163","7.6","54019","Fayette","{""54019"": ""88.25"", ""54039"": ""11.75""}","Fayette|Kanawha","54019|54039","FALSE","FALSE","America/New_York"
-"25039","38.24482","-81.38211","Cedar Grove","WV","West Virginia","TRUE","","811","12.2","54039","Kanawha","{""54039"": ""100""}","Kanawha","54039","FALSE","FALSE","America/New_York"
-"25040","38.12706","-81.23862","Charlton Heights","WV","West Virginia","TRUE","","591","433.0","54019","Fayette","{""54019"": ""100""}","Fayette","54019","FALSE","FALSE","America/New_York"
-"25043","38.44173","-81.00563","Clay","WV","West Virginia","TRUE","","1554","5.0","54015","Clay","{""54015"": ""96.93"", ""54067"": ""3.07""}","Clay|Nicholas","54015|54067","FALSE","FALSE","America/New_York"
-"25044","37.89995","-81.34962","Clear Creek","WV","West Virginia","TRUE","","232","6.1","54081","Raleigh","{""54081"": ""100""}","Raleigh","54081","FALSE","FALSE","America/New_York"
-"25045","38.44508","-81.31869","Clendenin","WV","West Virginia","TRUE","","5061","13.5","54039","Kanawha","{""54039"": ""79.68"", ""54087"": ""13.1"", ""54015"": ""7.22""}","Kanawha|Roane|Clay","54039|54087|54015","FALSE","FALSE","America/New_York"
-"25047","37.92177","-81.76046","Clothier","WV","West Virginia","TRUE","","166","8.4","54045","Logan","{""54045"": ""60.83"", ""54005"": ""39.17""}","Logan|Boone","54045|54005","FALSE","FALSE","America/New_York"
-"25048","37.94294","-81.43672","Colcord","WV","West Virginia","TRUE","","63","914.0","54081","Raleigh","{""54081"": ""100""}","Raleigh","54081","FALSE","FALSE","America/New_York"
-"25049","38.11633","-81.56971","Comfort","WV","West Virginia","TRUE","","326","8.1","54005","Boone","{""54005"": ""100""}","Boone","54005","FALSE","FALSE","America/New_York"
-"25051","38.15894","-81.7092","Costa","WV","West Virginia","TRUE","","297","256.4","54005","Boone","{""54005"": ""100""}","Boone","54005","FALSE","FALSE","America/New_York"
-"25053","38.04426","-81.87307","Danville","WV","West Virginia","TRUE","","4647","38.2","54005","Boone","{""54005"": ""100""}","Boone","54005","FALSE","FALSE","America/New_York"
-"25054","38.10831","-81.4916","Dawes","WV","West Virginia","TRUE","","499","11.5","54039","Kanawha","{""54039"": ""100""}","Kanawha","54039","FALSE","FALSE","America/New_York"
-"25057","38.12187","-81.2532","Deep Water","WV","West Virginia","TRUE","","414","175.4","54019","Fayette","{""54019"": ""100""}","Fayette","54019","FALSE","FALSE","America/New_York"
-"25059","38.23312","-81.20771","Dixie","WV","West Virginia","TRUE","","468","16.8","54019","Fayette","{""54019"": ""56.93"", ""54067"": ""43.07""}","Fayette|Nicholas","54019|54067","FALSE","FALSE","America/New_York"
-"25060","37.9422","-81.42986","Dorothy","WV","West Virginia","TRUE","","336","5.2","54081","Raleigh","{""54081"": ""100""}","Raleigh","54081","FALSE","FALSE","America/New_York"
-"25061","38.16753","-81.43745","Drybranch","WV","West Virginia","TRUE","","842","32.3","54039","Kanawha","{""54039"": ""100""}","Kanawha","54039","FALSE","FALSE","America/New_York"
-"25062","37.87486","-81.44118","Dry Creek","WV","West Virginia","TRUE","","127","15.4","54081","Raleigh","{""54081"": ""100""}","Raleigh","54081","FALSE","FALSE","America/New_York"
-"25063","38.58235","-80.93417","Duck","WV","West Virginia","TRUE","","2125","9.5","54007","Braxton","{""54007"": ""58.49"", ""54015"": ""38.79"", ""54067"": ""2.73""}","Braxton|Clay|Nicholas","54007|54015|54067","FALSE","FALSE","America/New_York"
-"25064","38.37629","-81.74852","Dunbar","WV","West Virginia","TRUE","","9033","508.4","54039","Kanawha","{""54039"": ""100""}","Kanawha","54039","FALSE","FALSE","America/New_York"
-"25067","38.19767","-81.42894","East Bank","WV","West Virginia","TRUE","","1251","89.2","54039","Kanawha","{""54039"": ""100""}","Kanawha","54039","FALSE","FALSE","America/New_York"
-"25070","38.54657","-81.93183","Eleanor","WV","West Virginia","TRUE","","1540","127.3","54079","Putnam","{""54079"": ""100""}","Putnam","54079","FALSE","FALSE","America/New_York"
-"25071","38.47317","-81.46821","Elkview","WV","West Virginia","TRUE","","11904","44.5","54039","Kanawha","{""54039"": ""98.93"", ""54087"": ""1.07""}","Kanawha|Roane","54039|54087","FALSE","FALSE","America/New_York"
-"25075","38.05046","-81.42272","Eskdale","WV","West Virginia","TRUE","","904","6.4","54039","Kanawha","{""54039"": ""100""}","Kanawha","54039","FALSE","FALSE","America/New_York"
-"25076","37.86915","-81.93628","Ethel","WV","West Virginia","TRUE","","294","14.0","54045","Logan","{""54045"": ""100""}","Logan","54045","FALSE","FALSE","America/New_York"
-"25081","38.08728","-81.77283","Foster","WV","West Virginia","TRUE","","1093","30.0","54005","Boone","{""54005"": ""100""}","Boone","54005","FALSE","FALSE","America/New_York"
-"25082","38.61211","-82.02606","Fraziers Bottom","WV","West Virginia","TRUE","","2000","14.8","54079","Putnam","{""54079"": ""68.8"", ""54053"": ""31.2""}","Putnam|Mason","54079|54053","FALSE","FALSE","America/New_York"
-"25083","38.0704","-81.36247","Gallagher","WV","West Virginia","TRUE","","780","10.8","54039","Kanawha","{""54039"": ""93.75"", ""54019"": ""6.25""}","Kanawha|Fayette","54039|54019","FALSE","FALSE","America/New_York"
-"25085","38.17118","-81.19568","Gauley Bridge","WV","West Virginia","TRUE","","1048","29.2","54019","Fayette","{""54019"": ""100""}","Fayette","54019","FALSE","FALSE","America/New_York"
-"25086","38.20968","-81.41218","Glasgow","WV","West Virginia","TRUE","","717","503.8","54039","Kanawha","{""54039"": ""100""}","Kanawha","54039","FALSE","FALSE","America/New_York"
-"25088","38.37978","-81.2145","Glen","WV","West Virginia","TRUE","","184","4.6","54015","Clay","{""54015"": ""100""}","Clay","54015","FALSE","FALSE","America/New_York"
-"25090","38.15175","-81.21877","Glen Ferris","WV","West Virginia","TRUE","","117","32.1","54019","Fayette","{""54019"": ""100""}","Fayette","54019","FALSE","FALSE","America/New_York"
-"25093","37.98081","-81.6567","Gordon","WV","West Virginia","TRUE","","310","16.1","54005","Boone","{""54005"": ""100""}","Boone","54005","FALSE","FALSE","America/New_York"
-"25102","38.18657","-81.36699","Handley","WV","West Virginia","TRUE","","189","75.7","54039","Kanawha","{""54039"": ""100""}","Kanawha","54039","FALSE","FALSE","America/New_York"
-"25103","38.18321","-81.3831","Hansford","WV","West Virginia","TRUE","","304","27.8","54039","Kanawha","{""54039"": ""100""}","Kanawha","54039","FALSE","FALSE","America/New_York"
-"25106","38.78321","-82.08843","Henderson","WV","West Virginia","TRUE","","598","14.2","54053","Mason","{""54053"": ""100""}","Mason","54053","FALSE","FALSE","America/New_York"
-"25107","38.2275","-81.63441","Hernshaw","WV","West Virginia","TRUE","","570","7.2","54039","Kanawha","{""54039"": ""100""}","Kanawha","54039","FALSE","FALSE","America/New_York"
-"25108","37.96733","-81.87435","Hewett","WV","West Virginia","TRUE","","251","13.4","54005","Boone","{""54005"": ""91.62"", ""54045"": ""8.38""}","Boone|Logan","54005|54045","FALSE","FALSE","America/New_York"
-"25109","38.52787","-81.85533","Hometown","WV","West Virginia","TRUE","","606","301.4","54079","Putnam","{""54079"": ""100""}","Putnam","54079","FALSE","FALSE","America/New_York"
-"25110","38.22569","-81.30847","Hugheston","WV","West Virginia","TRUE","","299","5.2","54039","Kanawha","{""54039"": ""100""}","Kanawha","54039","FALSE","FALSE","America/New_York"
-"25111","38.34987","-81.12695","Indore","WV","West Virginia","TRUE","","584","7.3","54015","Clay","{""54015"": ""80.12"", ""54067"": ""19.88""}","Clay|Nicholas","54015|54067","FALSE","FALSE","America/New_York"
-"25112","38.38026","-81.76715","Institute","WV","West Virginia","TRUE","","75","881.0","54039","Kanawha","{""54039"": ""100""}","Kanawha","54039","FALSE","FALSE","America/New_York"
-"25113","38.56094","-81.04967","Ivydale","WV","West Virginia","TRUE","","583","7.1","54015","Clay","{""54015"": ""100""}","Clay","54015","FALSE","FALSE","America/New_York"
-"25114","37.97915","-81.79921","Jeffrey","WV","West Virginia","TRUE","","272","9.3","54005","Boone","{""54005"": ""100""}","Boone","54005","FALSE","FALSE","America/New_York"
-"25115","38.13064","-81.18988","Kanawha Falls","WV","West Virginia","TRUE","","110","5.3","54019","Fayette","{""54019"": ""100""}","Fayette","54019","FALSE","FALSE","America/New_York"
-"25118","38.1056","-81.30255","Kimberly","WV","West Virginia","TRUE","","842","19.1","54019","Fayette","{""54019"": ""100""}","Fayette","54019","FALSE","FALSE","America/New_York"
-"25119","38.04395","-81.27234","Kincaid","WV","West Virginia","TRUE","","124","4.1","54019","Fayette","{""54019"": ""100""}","Fayette","54019","FALSE","FALSE","America/New_York"
-"25121","37.91627","-81.89728","Lake","WV","West Virginia","TRUE","","952","22.1","54045","Logan","{""54045"": ""100""}","Logan","54045","FALSE","FALSE","America/New_York"
-"25123","38.73473","-81.90386","Leon","WV","West Virginia","TRUE","","3333","10.8","54053","Mason","{""54053"": ""83.59"", ""54079"": ""16.41""}","Mason|Putnam","54053|54079","FALSE","FALSE","America/New_York"
-"25124","38.62164","-81.76516","Liberty","WV","West Virginia","TRUE","","1282","16.6","54079","Putnam","{""54079"": ""96.62"", ""54035"": ""2.72"", ""54039"": ""0.66""}","Putnam|Jackson|Kanawha","54079|54035|54039","FALSE","FALSE","America/New_York"
-"25125","38.31361","-81.19409","Lizemores","WV","West Virginia","TRUE","","1121","16.1","54015","Clay","{""54015"": ""88.53"", ""54067"": ""11.47""}","Clay|Nicholas","54015|54067","FALSE","FALSE","America/New_York"
-"25126","38.20216","-81.37206","London","WV","West Virginia","TRUE","","98","387.2","54039","Kanawha","{""54039"": ""100""}","Kanawha","54039","FALSE","FALSE","America/New_York"
-"25130","38.04153","-81.76326","Madison","WV","West Virginia","TRUE","","3152","53.8","54005","Boone","{""54005"": ""100""}","Boone","54005","FALSE","FALSE","America/New_York"
-"25132","38.30039","-81.34034","Mammoth","WV","West Virginia","TRUE","","80","1.7","54039","Kanawha","{""54039"": ""100""}","Kanawha","54039","FALSE","FALSE","America/New_York"
-"25133","38.47715","-81.12929","Maysel","WV","West Virginia","TRUE","","1032","25.0","54015","Clay","{""54015"": ""100""}","Clay","54015","FALSE","FALSE","America/New_York"
-"25134","38.16171","-81.48418","Miami","WV","West Virginia","TRUE","","302","15.3","54039","Kanawha","{""54039"": ""100""}","Kanawha","54039","FALSE","FALSE","America/New_York"
-"25136","38.16042","-81.33168","Montgomery","WV","West Virginia","TRUE","","1793","80.1","54019","Fayette","{""54019"": ""58.68"", ""54039"": ""41.32""}","Fayette|Kanawha","54019|54039","FALSE","FALSE","America/New_York"
-"25139","38.13831","-81.28627","Mount Carbon","WV","West Virginia","TRUE","","389","272.0","54019","Fayette","{""54019"": ""100""}","Fayette","54019","FALSE","FALSE","America/New_York"
-"25140","37.86721","-81.49651","Naoma","WV","West Virginia","TRUE","","1066","7.3","54081","Raleigh","{""54081"": ""100""}","Raleigh","54081","FALSE","FALSE","America/New_York"
-"25141","38.63013","-81.03292","Nebo","WV","West Virginia","TRUE","","130","8.8","54015","Clay","{""54015"": ""100""}","Clay","54015","FALSE","FALSE","America/New_York"
-"25142","38.1531","-81.73204","Nellis","WV","West Virginia","TRUE","","486","44.1","54005","Boone","{""54005"": ""100""}","Boone","54005","FALSE","FALSE","America/New_York"
-"25143","38.41872","-81.82151","Nitro","WV","West Virginia","TRUE","","7890","347.5","54039","Kanawha","{""54039"": ""73.84"", ""54079"": ""26.16""}","Kanawha|Putnam","54039|54079","FALSE","FALSE","America/New_York"
-"25148","38.04912","-81.56878","Orgas","WV","West Virginia","TRUE","","443","44.2","54005","Boone","{""54005"": ""100""}","Boone","54005","FALSE","FALSE","America/New_York"
-"25149","37.95523","-81.76712","Ottawa","WV","West Virginia","TRUE","","230","10.0","54005","Boone","{""54005"": ""100""}","Boone","54005","FALSE","FALSE","America/New_York"
-"25152","38.05738","-81.25363","Page","WV","West Virginia","TRUE","","285","31.1","54019","Fayette","{""54019"": ""100""}","Fayette","54019","FALSE","FALSE","America/New_York"
-"25154","38.11702","-81.70495","Peytona","WV","West Virginia","TRUE","","746","15.5","54005","Boone","{""54005"": ""100""}","Boone","54005","FALSE","FALSE","America/New_York"
-"25156","38.18734","-81.3484","Pinch","WV","West Virginia","TRUE","","165","252.1","54039","Kanawha","{""54039"": ""100""}","Kanawha","54039","FALSE","FALSE","America/New_York"
-"25159","38.50347","-81.78239","Poca","WV","West Virginia","TRUE","","5634","61.7","54079","Putnam","{""54079"": ""100""}","Putnam","54079","FALSE","FALSE","America/New_York"
-"25160","38.28953","-81.28653","Pond Gap","WV","West Virginia","TRUE","","163","10.6","54039","Kanawha","{""54039"": ""100""}","Kanawha","54039","FALSE","FALSE","America/New_York"
-"25161","38.05625","-81.32386","Powellton","WV","West Virginia","TRUE","","401","13.7","54019","Fayette","{""54019"": ""100""}","Fayette","54019","FALSE","FALSE","America/New_York"
-"25162","38.20867","-81.38624","Pratt","WV","West Virginia","TRUE","","368","514.8","54039","Kanawha","{""54039"": ""100""}","Kanawha","54039","FALSE","FALSE","America/New_York"
-"25164","38.52499","-81.20027","Procious","WV","West Virginia","TRUE","","935","11.9","54015","Clay","{""54015"": ""80.99"", ""54087"": ""19.01""}","Clay|Roane","54015|54087","FALSE","FALSE","America/New_York"
-"25165","38.14734","-81.65112","Racine","WV","West Virginia","TRUE","","771","74.5","54005","Boone","{""54005"": ""100""}","Boone","54005","FALSE","FALSE","America/New_York"
-"25168","38.56468","-81.8768","Red House","WV","West Virginia","TRUE","","3134","37.6","54079","Putnam","{""54079"": ""100""}","Putnam","54079","FALSE","FALSE","America/New_York"
-"25169","38.15255","-81.78931","Ridgeview","WV","West Virginia","TRUE","","459","9.4","54005","Boone","{""54005"": ""100""}","Boone","54005","FALSE","FALSE","America/New_York"
-"25173","38.08474","-81.22005","Robson","WV","West Virginia","TRUE","","404","10.4","54019","Fayette","{""54019"": ""100""}","Fayette","54019","FALSE","FALSE","America/New_York"
-"25174","37.8603","-81.41206","Rock Creek","WV","West Virginia","TRUE","","615","24.0","54081","Raleigh","{""54081"": ""100""}","Raleigh","54081","FALSE","FALSE","America/New_York"
-"25177","38.3675","-81.84696","Saint Albans","WV","West Virginia","TRUE","","22737","292.2","54039","Kanawha","{""54039"": ""99.81"", ""54079"": ""0.19""}","Kanawha|Putnam","54039|54079","FALSE","FALSE","America/New_York"
-"25180","37.79008","-81.43459","Saxon","WV","West Virginia","TRUE","","93","10.6","54081","Raleigh","{""54081"": ""100""}","Raleigh","54081","FALSE","FALSE","America/New_York"
-"25181","38.04699","-81.62905","Seth","WV","West Virginia","TRUE","","920","5.6","54005","Boone","{""54005"": ""100""}","Boone","54005","FALSE","FALSE","America/New_York"
-"25183","37.91741","-81.81367","Sharples","WV","West Virginia","TRUE","","39","1.0","54045","Logan","{""54045"": ""100""}","Logan","54045","FALSE","FALSE","America/New_York"
-"25185","38.23518","-81.23804","Mount Olive","WV","West Virginia","TRUE","","851","4756.4","54019","Fayette","{""54019"": ""100""}","Fayette","54019","FALSE","FALSE","America/New_York"
-"25186","38.18187","-81.27268","Smithers","WV","West Virginia","TRUE","","1104","47.8","54019","Fayette","{""54019"": ""100""}","Fayette","54019","FALSE","FALSE","America/New_York"
-"25187","38.72744","-82.02481","Southside","WV","West Virginia","TRUE","","892","8.4","54053","Mason","{""54053"": ""100""}","Mason","54053","FALSE","FALSE","America/New_York"
-"25193","38.03466","-81.51738","Sylvester","WV","West Virginia","TRUE","","843","15.0","54005","Boone","{""54005"": ""100""}","Boone","54005","FALSE","FALSE","America/New_York"
-"25201","38.33567","-81.49043","Tad","WV","West Virginia","TRUE","","32","203.3","54039","Kanawha","{""54039"": ""100""}","Kanawha","54039","FALSE","FALSE","America/New_York"
-"25202","38.31778","-81.85577","Tornado","WV","West Virginia","TRUE","","1239","41.9","54039","Kanawha","{""54039"": ""85.47"", ""54043"": ""14.53""}","Kanawha|Lincoln","54039|54043","FALSE","FALSE","America/New_York"
-"25203","38.01599","-81.88232","Turtle Creek","WV","West Virginia","TRUE","","17","4.1","54005","Boone","{""54005"": ""100""}","Boone","54005","FALSE","FALSE","America/New_York"
-"25204","37.92602","-81.61411","Twilight","WV","West Virginia","TRUE","","121","2.2","54005","Boone","{""54005"": ""100""}","Boone","54005","FALSE","FALSE","America/New_York"
-"25205","38.0187","-81.78285","Uneeda","WV","West Virginia","TRUE","","347","24.3","54005","Boone","{""54005"": ""100""}","Boone","54005","FALSE","FALSE","America/New_York"
-"25206","37.97748","-81.70128","Van","WV","West Virginia","TRUE","","280","7.5","54005","Boone","{""54005"": ""100""}","Boone","54005","FALSE","FALSE","America/New_York"
-"25208","37.84899","-81.64557","Wharton","WV","West Virginia","TRUE","","801","4.0","54005","Boone","{""54005"": ""100""}","Boone","54005","FALSE","FALSE","America/New_York"
-"25209","37.96296","-81.52965","Whitesville","WV","West Virginia","TRUE","","1137","16.3","54005","Boone","{""54005"": ""66.18"", ""54081"": ""33.82""}","Boone|Raleigh","54005|54081","FALSE","FALSE","America/New_York"
-"25211","38.46255","-80.88294","Widen","WV","West Virginia","TRUE","","100","4.8","54015","Clay","{""54015"": ""100""}","Clay","54015","FALSE","FALSE","America/New_York"
-"25213","38.50759","-81.91664","Winfield","WV","West Virginia","TRUE","","6126","66.0","54079","Putnam","{""54079"": ""100""}","Putnam","54079","FALSE","FALSE","America/New_York"
-"25214","38.17959","-81.55641","Winifrede","WV","West Virginia","TRUE","","450","13.7","54039","Kanawha","{""54039"": ""100""}","Kanawha","54039","FALSE","FALSE","America/New_York"
-"25234","38.8106","-81.12968","Arnoldsburg","WV","West Virginia","TRUE","","1060","8.9","54013","Calhoun","{""54013"": ""100""}","Calhoun","54013","FALSE","FALSE","America/New_York"
-"25235","38.66862","-81.09437","Chloe","WV","West Virginia","TRUE","","1146","12.9","54013","Calhoun","{""54013"": ""89.57"", ""54015"": ""10.43""}","Calhoun|Clay","54013|54015","FALSE","FALSE","America/New_York"
-"25239","38.84049","-81.8431","Cottageville","WV","West Virginia","TRUE","","2219","32.9","54035","Jackson","{""54035"": ""95.5"", ""54053"": ""4.5""}","Jackson|Mason","54035|54053","FALSE","FALSE","America/New_York"
-"25241","38.78392","-81.807","Evans","WV","West Virginia","TRUE","","1890","33.2","54035","Jackson","{""54035"": ""88.6"", ""54053"": ""11.4""}","Jackson|Mason","54035|54053","FALSE","FALSE","America/New_York"
-"25243","38.68673","-81.47946","Gandeeville","WV","West Virginia","TRUE","","470","3.8","54087","Roane","{""54087"": ""100""}","Roane","54087","FALSE","FALSE","America/New_York"
-"25244","38.77216","-81.54808","Gay","WV","West Virginia","TRUE","","583","7.6","54035","Jackson","{""54035"": ""87.98"", ""54087"": ""12.02""}","Jackson|Roane","54035|54087","FALSE","FALSE","America/New_York"
-"25245","38.69739","-81.74459","Given","WV","West Virginia","TRUE","","600","7.9","54035","Jackson","{""54035"": ""85.52"", ""54079"": ""14.48""}","Jackson|Putnam","54035|54079","FALSE","FALSE","America/New_York"
-"25247","39.00471","-81.99687","Hartford","WV","West Virginia","TRUE","","530","99.0","54053","Mason","{""54053"": ""100""}","Mason","54053","FALSE","FALSE","America/New_York"
-"25248","38.64092","-81.61335","Kenna","WV","West Virginia","TRUE","","3452","18.1","54035","Jackson","{""54035"": ""99.32"", ""54039"": ""0.68""}","Jackson|Kanawha","54035|54039","FALSE","FALSE","America/New_York"
-"25251","38.62056","-81.23634","Left Hand","WV","West Virginia","TRUE","","289","7.5","54087","Roane","{""54087"": ""100""}","Roane","54087","FALSE","FALSE","America/New_York"
-"25252","38.88882","-81.53252","Le Roy","WV","West Virginia","TRUE","","1232","8.1","54035","Jackson","{""54035"": ""58.26"", ""54105"": ""22.13"", ""54087"": ""19.61""}","Jackson|Wirt|Roane","54035|54105|54087","FALSE","FALSE","America/New_York"
-"25253","38.92317","-81.96954","Letart","WV","West Virginia","TRUE","","2423","19.8","54053","Mason","{""54053"": ""100""}","Mason","54053","FALSE","FALSE","America/New_York"
-"25259","38.67354","-81.25173","Looneyville","WV","West Virginia","TRUE","","626","6.4","54087","Roane","{""54087"": ""100""}","Roane","54087","FALSE","FALSE","America/New_York"
-"25260","39.01271","-82.02672","Mason","WV","West Virginia","TRUE","","1494","211.0","54053","Mason","{""54053"": ""100""}","Mason","54053","FALSE","FALSE","America/New_York"
-"25261","38.82625","-81.08959","Millstone","WV","West Virginia","TRUE","","131","4.7","54013","Calhoun","{""54013"": ""100""}","Calhoun","54013","FALSE","FALSE","America/New_York"
-"25262","38.90658","-81.82867","Millwood","WV","West Virginia","TRUE","","890","46.2","54035","Jackson","{""54035"": ""100""}","Jackson","54035","FALSE","FALSE","America/New_York"
-"25264","38.85705","-81.89657","Mount Alto","WV","West Virginia","TRUE","","241","14.2","54035","Jackson","{""54035"": ""56.24"", ""54053"": ""43.76""}","Jackson|Mason","54035|54053","FALSE","FALSE","America/New_York"
-"25265","38.98673","-81.956","New Haven","WV","West Virginia","TRUE","","1678","385.2","54053","Mason","{""54053"": ""100""}","Mason","54053","FALSE","FALSE","America/New_York"
-"25266","38.60601","-81.16232","Newton","WV","West Virginia","TRUE","","713","7.3","54087","Roane","{""54087"": ""100""}","Roane","54087","FALSE","FALSE","America/New_York"
-"25267","38.84773","-80.94138","Normantown","WV","West Virginia","TRUE","","538","3.1","54021","Gilmer","{""54021"": ""97.89"", ""54013"": ""2.11""}","Gilmer|Calhoun","54021|54013","FALSE","FALSE","America/New_York"
-"25268","38.73254","-81.09847","Orma","WV","West Virginia","TRUE","","964","9.4","54013","Calhoun","{""54013"": ""100""}","Calhoun","54013","FALSE","FALSE","America/New_York"
-"25270","38.8683","-81.44068","Reedy","WV","West Virginia","TRUE","","984","9.5","54087","Roane","{""54087"": ""100""}","Roane","54087","FALSE","FALSE","America/New_York"
-"25271","38.78552","-81.68577","Ripley","WV","West Virginia","TRUE","","9769","38.6","54035","Jackson","{""54035"": ""100""}","Jackson","54035","FALSE","FALSE","America/New_York"
-"25275","38.92153","-81.61078","Sandyville","WV","West Virginia","TRUE","","1755","10.5","54035","Jackson","{""54035"": ""100""}","Jackson","54035","FALSE","FALSE","America/New_York"
-"25276","38.78676","-81.33124","Spencer","WV","West Virginia","TRUE","","7448","16.9","54087","Roane","{""54087"": ""100""}","Roane","54087","FALSE","FALSE","America/New_York"
-"25285","38.54319","-81.11143","Wallback","WV","West Virginia","TRUE","","512","17.7","54015","Clay","{""54015"": ""100""}","Clay","54015","FALSE","FALSE","America/New_York"
-"25286","38.61521","-81.40795","Walton","WV","West Virginia","TRUE","","1700","9.5","54087","Roane","{""54087"": ""100""}","Roane","54087","FALSE","FALSE","America/New_York"
-"25287","38.95743","-82.05165","West Columbia","WV","West Virginia","TRUE","","1107","22.5","54053","Mason","{""54053"": ""100""}","Mason","54053","FALSE","FALSE","America/New_York"
-"25301","38.35104","-81.63004","Charleston","WV","West Virginia","TRUE","","2653","935.6","54039","Kanawha","{""54039"": ""100""}","Kanawha","54039","FALSE","FALSE","America/New_York"
-"25302","38.39111","-81.59669","Charleston","WV","West Virginia","TRUE","","13312","420.6","54039","Kanawha","{""54039"": ""100""}","Kanawha","54039","FALSE","FALSE","America/New_York"
-"25303","38.35988","-81.6859","South Charleston","WV","West Virginia","TRUE","","6764","741.5","54039","Kanawha","{""54039"": ""100""}","Kanawha","54039","FALSE","FALSE","America/New_York"
-"25304","38.30559","-81.59315","Charleston","WV","West Virginia","TRUE","","8261","311.9","54039","Kanawha","{""54039"": ""100""}","Kanawha","54039","FALSE","FALSE","America/New_York"
-"25305","38.33767","-81.61273","Charleston","WV","West Virginia","TRUE","","0","0.0","54039","Kanawha","{""54039"": ""0""}","Kanawha","54039","FALSE","FALSE","America/New_York"
-"25306","38.3111","-81.49031","Charleston","WV","West Virginia","TRUE","","7106","73.7","54039","Kanawha","{""54039"": ""100""}","Kanawha","54039","FALSE","FALSE","America/New_York"
-"25309","38.30848","-81.75055","South Charleston","WV","West Virginia","TRUE","","13554","148.1","54039","Kanawha","{""54039"": ""100""}","Kanawha","54039","FALSE","FALSE","America/New_York"
-"25311","38.36313","-81.54925","Charleston","WV","West Virginia","TRUE","","10964","149.8","54039","Kanawha","{""54039"": ""100""}","Kanawha","54039","FALSE","FALSE","America/New_York"
-"25312","38.45242","-81.65735","Charleston","WV","West Virginia","TRUE","","14728","80.7","54039","Kanawha","{""54039"": ""100""}","Kanawha","54039","FALSE","FALSE","America/New_York"
-"25313","38.41679","-81.75645","Charleston","WV","West Virginia","TRUE","","11650","216.2","54039","Kanawha","{""54039"": ""100""}","Kanawha","54039","FALSE","FALSE","America/New_York"
-"25314","38.30584","-81.65057","Charleston","WV","West Virginia","TRUE","","14027","215.3","54039","Kanawha","{""54039"": ""100""}","Kanawha","54039","FALSE","FALSE","America/New_York"
-"25315","38.23049","-81.56809","Charleston","WV","West Virginia","TRUE","","3638","188.2","54039","Kanawha","{""54039"": ""100""}","Kanawha","54039","FALSE","FALSE","America/New_York"
-"25320","38.53925","-81.63074","Charleston","WV","West Virginia","TRUE","","6385","35.3","54039","Kanawha","{""54039"": ""100""}","Kanawha","54039","FALSE","FALSE","America/New_York"
-"25401","39.45683","-77.97265","Martinsburg","WV","West Virginia","TRUE","","14790","967.9","54003","Berkeley","{""54003"": ""100""}","Berkeley","54003","FALSE","FALSE","America/New_York"
-"25403","39.48285","-78.00499","Martinsburg","WV","West Virginia","TRUE","","13829","143.0","54003","Berkeley","{""54003"": ""100""}","Berkeley","54003","FALSE","FALSE","America/New_York"
-"25404","39.48517","-77.89536","Martinsburg","WV","West Virginia","TRUE","","21729","209.8","54003","Berkeley","{""54003"": ""100""}","Berkeley","54003","FALSE","FALSE","America/New_York"
-"25405","39.40916","-77.96154","Martinsburg","WV","West Virginia","TRUE","","14213","263.6","54003","Berkeley","{""54003"": ""100""}","Berkeley","54003","FALSE","FALSE","America/New_York"
-"25411","39.55551","-78.21892","Berkeley Springs","WV","West Virginia","TRUE","","12725","35.0","54065","Morgan","{""54065"": ""100""}","Morgan","54065","FALSE","FALSE","America/New_York"
-"25413","39.31619","-78.05298","Bunker Hill","WV","West Virginia","TRUE","","8719","150.8","54003","Berkeley","{""54003"": ""100""}","Berkeley","54003","FALSE","FALSE","America/New_York"
-"25414","39.25107","-77.86895","Charles Town","WV","West Virginia","TRUE","","18252","129.4","54037","Jefferson","{""54037"": ""100""}","Jefferson","54037","FALSE","FALSE","America/New_York"
-"25419","39.58288","-77.88497","Falling Waters","WV","West Virginia","TRUE","","11062","243.0","54003","Berkeley","{""54003"": ""100""}","Berkeley","54003","FALSE","FALSE","America/New_York"
-"25420","39.38157","-78.11503","Gerrardstown","WV","West Virginia","TRUE","","4050","55.9","54003","Berkeley","{""54003"": ""100""}","Berkeley","54003","FALSE","FALSE","America/New_York"
-"25422","39.55731","-78.3613","Great Cacapon","WV","West Virginia","TRUE","","1598","8.8","54065","Morgan","{""54065"": ""99.12"", ""54027"": ""0.88""}","Morgan|Hampshire","54065|54027","FALSE","FALSE","America/New_York"
-"25425","39.29498","-77.78686","Harpers Ferry","WV","West Virginia","TRUE","","13853","133.4","54037","Jefferson","{""54037"": ""100""}","Jefferson","54037","FALSE","FALSE","America/New_York"
-"25427","39.5213","-78.09121","Hedgesville","WV","West Virginia","TRUE","","14400","40.9","54003","Berkeley","{""54003"": ""83.68"", ""54065"": ""16.32""}","Berkeley|Morgan","54003|54065","FALSE","FALSE","America/New_York"
-"25428","39.37304","-78.02708","Inwood","WV","West Virginia","TRUE","","12903","216.5","54003","Berkeley","{""54003"": ""100""}","Berkeley","54003","FALSE","FALSE","America/New_York"
-"25430","39.33789","-77.93831","Kearneysville","WV","West Virginia","TRUE","","8517","68.8","54037","Jefferson","{""54037"": ""79.35"", ""54003"": ""20.65""}","Jefferson|Berkeley","54037|54003","FALSE","FALSE","America/New_York"
-"25431","39.48344","-78.56789","Levels","WV","West Virginia","TRUE","","321","8.5","54027","Hampshire","{""54027"": ""100""}","Hampshire","54027","FALSE","FALSE","America/New_York"
-"25432","39.30579","-77.78432","Millville","WV","West Virginia","TRUE","","105","49.6","54037","Jefferson","{""54037"": ""100""}","Jefferson","54037","FALSE","FALSE","America/New_York"
-"25434","39.45166","-78.44811","Paw Paw","WV","West Virginia","TRUE","","2821","16.0","54027","Hampshire","{""54027"": ""64.89"", ""54065"": ""35.11""}","Hampshire|Morgan","54027|54065","FALSE","FALSE","America/New_York"
-"25437","39.42445","-78.57344","Points","WV","West Virginia","TRUE","","274","9.4","54027","Hampshire","{""54027"": ""100""}","Hampshire","54027","FALSE","FALSE","America/New_York"
-"25438","39.31963","-77.86411","Ranson","WV","West Virginia","TRUE","","6619","288.1","54037","Jefferson","{""54037"": ""100""}","Jefferson","54037","FALSE","FALSE","America/New_York"
-"25442","39.37021","-77.8326","Shenandoah Junction","WV","West Virginia","TRUE","","1971","53.6","54037","Jefferson","{""54037"": ""100""}","Jefferson","54037","FALSE","FALSE","America/New_York"
-"25443","39.43726","-77.81459","Shepherdstown","WV","West Virginia","TRUE","","7634","107.1","54037","Jefferson","{""54037"": ""97.88"", ""54003"": ""2.12""}","Jefferson|Berkeley","54037|54003","FALSE","FALSE","America/New_York"
-"25444","39.42006","-78.51955","Slanesville","WV","West Virginia","TRUE","","164","3.2","54027","Hampshire","{""54027"": ""100""}","Hampshire","54027","FALSE","FALSE","America/New_York"
-"25446","39.24156","-77.9534","Summit Point","WV","West Virginia","TRUE","","1193","29.9","54037","Jefferson","{""54037"": ""100""}","Jefferson","54037","FALSE","FALSE","America/New_York"
-"25501","38.15716","-81.95885","Alkol","WV","West Virginia","TRUE","","1198","18.5","54043","Lincoln","{""54043"": ""100""}","Lincoln","54043","FALSE","FALSE","America/New_York"
-"25502","38.66381","-82.10594","Apple Grove","WV","West Virginia","TRUE","","932","16.6","54053","Mason","{""54053"": ""100""}","Mason","54053","FALSE","FALSE","America/New_York"
-"25503","38.61255","-82.12161","Ashton","WV","West Virginia","TRUE","","1388","35.1","54053","Mason","{""54053"": ""100""}","Mason","54053","FALSE","FALSE","America/New_York"
-"25504","38.37329","-82.26409","Barboursville","WV","West Virginia","TRUE","","13245","103.1","54011","Cabell","{""54011"": ""99.21"", ""54099"": ""0.79""}","Cabell|Wayne","54011|54099","FALSE","FALSE","America/New_York"
-"25505","38.01192","-82.03505","Big Creek","WV","West Virginia","TRUE","","336","57.9","54045","Logan","{""54045"": ""85.32"", ""54043"": ""14.68""}","Logan|Lincoln","54045|54043","FALSE","FALSE","America/New_York"
-"25506","38.20695","-82.18599","Branchland","WV","West Virginia","TRUE","","5097","18.9","54043","Lincoln","{""54043"": ""86.46"", ""54011"": ""13.54""}","Lincoln|Cabell","54043|54011","FALSE","FALSE","America/New_York"
-"25507","38.39671","-82.55395","Ceredo","WV","West Virginia","TRUE","","776","443.3","54099","Wayne","{""54099"": ""100""}","Wayne","54099","FALSE","FALSE","America/New_York"
-"25508","37.96347","-82.02167","Chapmanville","WV","West Virginia","TRUE","","9420","46.8","54045","Logan","{""54045"": ""92.41"", ""54005"": ""7.59""}","Logan|Boone","54045|54005","FALSE","FALSE","America/New_York"
-"25510","38.39335","-82.06642","Culloden","WV","West Virginia","TRUE","","5154","61.2","54011","Cabell","{""54011"": ""63.95"", ""54079"": ""31.42"", ""54043"": ""4.63""}","Cabell|Putnam|Lincoln","54011|54079|54043","FALSE","FALSE","America/New_York"
-"25511","38.02952","-82.35244","Dunlow","WV","West Virginia","TRUE","","765","3.2","54099","Wayne","{""54099"": ""100""}","Wayne","54099","FALSE","FALSE","America/New_York"
-"25512","38.18651","-82.32232","East Lynn","WV","West Virginia","TRUE","","919","7.4","54099","Wayne","{""54099"": ""100""}","Wayne","54099","FALSE","FALSE","America/New_York"
-"25514","38.10071","-82.5302","Fort Gay","WV","West Virginia","TRUE","","3914","21.7","54099","Wayne","{""54099"": ""100""}","Wayne","54099","FALSE","FALSE","America/New_York"
-"25515","38.75267","-82.15357","Gallipolis Ferry","WV","West Virginia","TRUE","","2042","17.5","54053","Mason","{""54053"": ""100""}","Mason","54053","FALSE","FALSE","America/New_York"
-"25517","38.10222","-82.45706","Genoa","WV","West Virginia","TRUE","","1487","14.1","54099","Wayne","{""54099"": ""100""}","Wayne","54099","FALSE","FALSE","America/New_York"
-"25520","38.56095","-82.17741","Glenwood","WV","West Virginia","TRUE","","1497","14.6","54053","Mason","{""54053"": ""56.63"", ""54011"": ""43.37""}","Mason|Cabell","54053|54011","FALSE","FALSE","America/New_York"
-"25521","38.21975","-81.99944","Griffithsville","WV","West Virginia","TRUE","","865","10.8","54043","Lincoln","{""54043"": ""100""}","Lincoln","54043","FALSE","FALSE","America/New_York"
-"25523","38.28058","-82.07362","Hamlin","WV","West Virginia","TRUE","","3057","28.2","54043","Lincoln","{""54043"": ""94.11"", ""54079"": ""5.89""}","Lincoln|Putnam","54043|54079","FALSE","FALSE","America/New_York"
-"25524","38.01441","-82.11243","Harts","WV","West Virginia","TRUE","","2803","11.2","54043","Lincoln","{""54043"": ""80.29"", ""54045"": ""19.71""}","Lincoln|Logan","54043|54045","FALSE","FALSE","America/New_York"
-"25526","38.39829","-81.98474","Hurricane","WV","West Virginia","TRUE","","21706","91.2","54079","Putnam","{""54079"": ""99.91"", ""54053"": ""0.09""}","Putnam|Mason","54079|54053","FALSE","FALSE","America/New_York"
-"25529","38.15176","-81.84675","Julian","WV","West Virginia","TRUE","","944","17.7","54005","Boone","{""54005"": ""98.22"", ""54043"": ""1.78""}","Boone|Lincoln","54005|54043","FALSE","FALSE","America/New_York"
-"25530","38.3548","-82.56376","Kenova","WV","West Virginia","TRUE","","5636","143.2","54099","Wayne","{""54099"": ""100""}","Wayne","54099","FALSE","FALSE","America/New_York"
-"25534","38.08514","-82.27507","Kiahsville","WV","West Virginia","TRUE","","325","5.4","54099","Wayne","{""54099"": ""95.74"", ""54043"": ""4.26""}","Wayne|Lincoln","54099|54043","FALSE","FALSE","America/New_York"
-"25535","38.31153","-82.43091","Lavalette","WV","West Virginia","TRUE","","2796","60.3","54099","Wayne","{""54099"": ""100""}","Wayne","54099","FALSE","FALSE","America/New_York"
-"25537","38.52982","-82.27183","Lesage","WV","West Virginia","TRUE","","1215","22.1","54011","Cabell","{""54011"": ""100""}","Cabell","54011","FALSE","FALSE","America/New_York"
-"25540","38.15911","-82.13972","Midkiff","WV","West Virginia","TRUE","","245","7.5","54043","Lincoln","{""54043"": ""100""}","Lincoln","54043","FALSE","FALSE","America/New_York"
-"25541","38.45719","-82.12832","Milton","WV","West Virginia","TRUE","","10188","56.2","54011","Cabell","{""54011"": ""89.64"", ""54053"": ""10.36""}","Cabell|Mason","54011|54053","FALSE","FALSE","America/New_York"
-"25545","38.46331","-82.225","Ona","WV","West Virginia","TRUE","","4543","63.0","54011","Cabell","{""54011"": ""100""}","Cabell","54011","FALSE","FALSE","America/New_York"
-"25547","37.92816","-81.96052","Pecks Mill","WV","West Virginia","TRUE","","760","38.0","54045","Logan","{""54045"": ""100""}","Logan","54045","FALSE","FALSE","America/New_York"
-"25550","38.8682","-82.07576","Point Pleasant","WV","West Virginia","TRUE","","8261","64.8","54053","Mason","{""54053"": ""100""}","Mason","54053","FALSE","FALSE","America/New_York"
-"25555","38.23891","-82.55691","Prichard","WV","West Virginia","TRUE","","1903","21.6","54099","Wayne","{""54099"": ""100""}","Wayne","54099","FALSE","FALSE","America/New_York"
-"25557","38.09699","-82.16327","Ranger","WV","West Virginia","TRUE","","1729","14.8","54043","Lincoln","{""54043"": ""100""}","Lincoln","54043","FALSE","FALSE","America/New_York"
-"25559","38.32687","-82.2317","Salt Rock","WV","West Virginia","TRUE","","1672","31.7","54011","Cabell","{""54011"": ""100""}","Cabell","54011","FALSE","FALSE","America/New_York"
-"25560","38.44401","-81.89792","Scott Depot","WV","West Virginia","TRUE","","8249","137.1","54079","Putnam","{""54079"": ""100""}","Putnam","54079","FALSE","FALSE","America/New_York"
-"25564","38.27159","-81.89917","Sod","WV","West Virginia","TRUE","","1174","20.8","54043","Lincoln","{""54043"": ""100""}","Lincoln","54043","FALSE","FALSE","America/New_York"
-"25565","38.10894","-81.96351","Spurlockville","WV","West Virginia","TRUE","","556","6.2","54043","Lincoln","{""54043"": ""53.3"", ""54005"": ""46.7""}","Lincoln|Boone","54043|54005","FALSE","FALSE","America/New_York"
-"25567","38.21875","-81.87585","Sumerco","WV","West Virginia","TRUE","","579","13.3","54043","Lincoln","{""54043"": ""100""}","Lincoln","54043","FALSE","FALSE","America/New_York"
-"25570","38.23109","-82.42179","Wayne","WV","West Virginia","TRUE","","5792","28.6","54099","Wayne","{""54099"": ""100""}","Wayne","54099","FALSE","FALSE","America/New_York"
-"25571","38.2931","-82.15835","West Hamlin","WV","West Virginia","TRUE","","2413","39.8","54043","Lincoln","{""54043"": ""100""}","Lincoln","54043","FALSE","FALSE","America/New_York"
-"25573","38.22326","-81.94424","Yawkey","WV","West Virginia","TRUE","","809","28.1","54043","Lincoln","{""54043"": ""100""}","Lincoln","54043","FALSE","FALSE","America/New_York"
-"25601","37.85903","-82.00464","Logan","WV","West Virginia","TRUE","","5565","108.6","54045","Logan","{""54045"": ""100""}","Logan","54045","FALSE","FALSE","America/New_York"
-"25606","37.76257","-81.82353","Accoville","WV","West Virginia","TRUE","","1531","84.1","54045","Logan","{""54045"": ""100""}","Logan","54045","FALSE","FALSE","America/New_York"
-"25607","37.7867","-81.78644","Amherstdale","WV","West Virginia","TRUE","","1074","42.8","54045","Logan","{""54045"": ""100""}","Logan","54045","FALSE","FALSE","America/New_York"
-"25608","37.57413","-81.88935","Baisden","WV","West Virginia","TRUE","","1108","31.2","54059","Mingo","{""54059"": ""100""}","Mingo","54059","FALSE","FALSE","America/New_York"
-"25611","37.68965","-81.85317","Bruno","WV","West Virginia","TRUE","","891","87.4","54045","Logan","{""54045"": ""100""}","Logan","54045","FALSE","FALSE","America/New_York"
-"25617","37.72799","-81.77904","Davin","WV","West Virginia","TRUE","","706","16.1","54045","Logan","{""54045"": ""100""}","Logan","54045","FALSE","FALSE","America/New_York"
-"25621","37.62734","-81.90517","Gilbert","WV","West Virginia","TRUE","","1626","13.8","54059","Mingo","{""54059"": ""100""}","Mingo","54059","FALSE","FALSE","America/New_York"
-"25624","37.90298","-81.97914","Henlawson","WV","West Virginia","TRUE","","196","67.1","54045","Logan","{""54045"": ""100""}","Logan","54045","FALSE","FALSE","America/New_York"
-"25625","37.82764","-82.09475","Holden","WV","West Virginia","TRUE","","1303","33.9","54045","Logan","{""54045"": ""100""}","Logan","54045","FALSE","FALSE","America/New_York"
-"25628","37.76602","-81.86216","Kistler","WV","West Virginia","TRUE","","193","35.1","54045","Logan","{""54045"": ""100""}","Logan","54045","FALSE","FALSE","America/New_York"
-"25630","37.79415","-81.69019","Lorado","WV","West Virginia","TRUE","","573","9.5","54045","Logan","{""54045"": ""100""}","Logan","54045","FALSE","FALSE","America/New_York"
-"25632","37.75662","-81.92843","Lyburn","WV","West Virginia","TRUE","","374","5.9","54045","Logan","{""54045"": ""100""}","Logan","54045","FALSE","FALSE","America/New_York"
-"25634","37.73097","-81.84809","Mallory","WV","West Virginia","TRUE","","440","31.8","54045","Logan","{""54045"": ""100""}","Logan","54045","FALSE","FALSE","America/New_York"
-"25635","37.71765","-81.89407","Man","WV","West Virginia","TRUE","","1658","46.0","54045","Logan","{""54045"": ""100""}","Logan","54045","FALSE","FALSE","America/New_York"
-"25637","37.85619","-82.02986","Mount Gay","WV","West Virginia","TRUE","","1060","113.9","54045","Logan","{""54045"": ""100""}","Logan","54045","FALSE","FALSE","America/New_York"
-"25638","37.73174","-82.01386","Omar","WV","West Virginia","TRUE","","1062","12.1","54045","Logan","{""54045"": ""100""}","Logan","54045","FALSE","FALSE","America/New_York"
-"25639","37.88917","-81.95942","Peach Creek","WV","West Virginia","TRUE","","451","25.1","54045","Logan","{""54045"": ""100""}","Logan","54045","FALSE","FALSE","America/New_York"
-"25644","37.7049","-82.01849","Sarah Ann","WV","West Virginia","TRUE","","282","8.8","54045","Logan","{""54045"": ""100""}","Logan","54045","FALSE","FALSE","America/New_York"
-"25646","37.83272","-81.89498","Stollings","WV","West Virginia","TRUE","","792","14.1","54045","Logan","{""54045"": ""100""}","Logan","54045","FALSE","FALSE","America/New_York"
-"25647","37.78206","-81.98473","Switzer","WV","West Virginia","TRUE","","723","87.5","54045","Logan","{""54045"": ""100""}","Logan","54045","FALSE","FALSE","America/New_York"
-"25649","37.86631","-82.08183","Verdunville","WV","West Virginia","TRUE","","946","33.1","54045","Logan","{""54045"": ""100""}","Logan","54045","FALSE","FALSE","America/New_York"
-"25650","37.67672","-81.81506","Verner","WV","West Virginia","TRUE","","215","3.4","54059","Mingo","{""54059"": ""81.9"", ""54045"": ""18.1""}","Mingo|Logan","54059|54045","FALSE","FALSE","America/New_York"
-"25651","37.5713","-81.97213","Wharncliffe","WV","West Virginia","TRUE","","641","9.8","54059","Mingo","{""54059"": ""100""}","Mingo","54059","FALSE","FALSE","America/New_York"
-"25652","37.78936","-82.05341","Whitman","WV","West Virginia","TRUE","","1250","28.6","54045","Logan","{""54045"": ""100""}","Logan","54045","FALSE","FALSE","America/New_York"
-"25653","37.82969","-81.99838","Wilkinson","WV","West Virginia","TRUE","","353","75.7","54045","Logan","{""54045"": ""100""}","Logan","54045","FALSE","FALSE","America/New_York"
-"25654","37.80519","-81.8818","Yolyn","WV","West Virginia","TRUE","","196","6.4","54045","Logan","{""54045"": ""100""}","Logan","54045","FALSE","FALSE","America/New_York"
-"25661","37.73619","-82.27393","Williamson","WV","West Virginia","TRUE","","5852","38.8","54059","Mingo","{""54059"": ""100""}","Mingo","54059","FALSE","FALSE","America/New_York"
-"25666","37.92672","-82.24888","Breeden","WV","West Virginia","TRUE","","544","7.4","54059","Mingo","{""54059"": ""100""}","Mingo","54059","FALSE","FALSE","America/New_York"
-"25669","37.92928","-82.43239","Crum","WV","West Virginia","TRUE","","1346","25.5","54099","Wayne","{""54099"": ""100""}","Wayne","54099","FALSE","FALSE","America/New_York"
-"25670","37.71866","-82.13833","Delbarton","WV","West Virginia","TRUE","","5586","23.0","54059","Mingo","{""54059"": ""100""}","Mingo","54059","FALSE","FALSE","America/New_York"
-"25671","37.88386","-82.19187","Dingess","WV","West Virginia","TRUE","","1471","18.0","54059","Mingo","{""54059"": ""100""}","Mingo","54059","FALSE","FALSE","America/New_York"
-"25672","37.58156","-82.11335","Edgarton","WV","West Virginia","TRUE","","303","13.7","54059","Mingo","{""54059"": ""100""}","Mingo","54059","FALSE","FALSE","America/New_York"
-"25674","37.8689","-82.35158","Kermit","WV","West Virginia","TRUE","","2643","22.7","54059","Mingo","{""54059"": ""64.74"", ""54099"": ""35.26""}","Mingo|Wayne","54059|54099","FALSE","FALSE","America/New_York"
-"25676","37.82605","-82.22617","Lenore","WV","West Virginia","TRUE","","1350","17.8","54059","Mingo","{""54059"": ""100""}","Mingo","54059","FALSE","FALSE","America/New_York"
-"25678","37.59031","-82.06505","Matewan","WV","West Virginia","TRUE","","1517","23.1","54059","Mingo","{""54059"": ""100""}","Mingo","54059","FALSE","FALSE","America/New_York"
-"25688","37.62827","-82.13805","North Matewan","WV","West Virginia","TRUE","","352","29.2","54059","Mingo","{""54059"": ""100""}","Mingo","54059","FALSE","FALSE","America/New_York"
-"25690","37.68964","-82.12434","Ragland","WV","West Virginia","TRUE","","270","59.4","54059","Mingo","{""54059"": ""100""}","Mingo","54059","FALSE","FALSE","America/New_York"
-"25692","37.63629","-82.10986","Red Jacket","WV","West Virginia","TRUE","","1118","43.5","54059","Mingo","{""54059"": ""100""}","Mingo","54059","FALSE","FALSE","America/New_York"
-"25696","37.67903","-82.11588","Varney","WV","West Virginia","TRUE","","168","33.0","54059","Mingo","{""54059"": ""100""}","Mingo","54059","FALSE","FALSE","America/New_York"
-"25699","37.96167","-82.33258","Wilsondale","WV","West Virginia","TRUE","","124","3.2","54099","Wayne","{""54099"": ""100""}","Wayne","54099","FALSE","FALSE","America/New_York"
-"25701","38.36871","-82.40768","Huntington","WV","West Virginia","TRUE","","20375","221.3","54011","Cabell","{""54011"": ""93.93"", ""54099"": ""6.07""}","Cabell|Wayne","54011|54099","FALSE","FALSE","America/New_York"
-"25702","38.43827","-82.32918","Huntington","WV","West Virginia","TRUE","","7169","237.8","54011","Cabell","{""54011"": ""100""}","Cabell","54011","FALSE","FALSE","America/New_York"
-"25703","38.42395","-82.41878","Huntington","WV","West Virginia","TRUE","","7463","2419.2","54011","Cabell","{""54011"": ""100""}","Cabell","54011","FALSE","FALSE","America/New_York"
-"25704","38.35348","-82.50879","Huntington","WV","West Virginia","TRUE","","16666","199.2","54099","Wayne","{""54099"": ""69.61"", ""54011"": ""30.39""}","Wayne|Cabell","54099|54011","FALSE","FALSE","America/New_York"
-"25705","38.40561","-82.36193","Huntington","WV","West Virginia","TRUE","","21231","684.9","54011","Cabell","{""54011"": ""100""}","Cabell","54011","FALSE","FALSE","America/New_York"
-"25801","37.81451","-81.25467","Beckley","WV","West Virginia","TRUE","","32467","151.7","54081","Raleigh","{""54081"": ""100""}","Raleigh","54081","FALSE","FALSE","America/New_York"
-"25810","37.6024","-81.34452","Allen Junction","WV","West Virginia","TRUE","","66","10.8","54109","Wyoming","{""54109"": ""100""}","Wyoming","54109","FALSE","FALSE","America/New_York"
-"25811","37.56318","-81.28917","Amigo","WV","West Virginia","TRUE","","28","1.7","54109","Wyoming","{""54109"": ""50.65"", ""54081"": ""49.35""}","Wyoming|Raleigh","54109|54081","FALSE","FALSE","America/New_York"
-"25812","38.15571","-81.11248","Ansted","WV","West Virginia","TRUE","","1712","35.1","54019","Fayette","{""54019"": ""100""}","Fayette","54019","FALSE","FALSE","America/New_York"
-"25813","37.75947","-81.11546","Beaver","WV","West Virginia","TRUE","","8341","53.8","54081","Raleigh","{""54081"": ""100""}","Raleigh","54081","FALSE","FALSE","America/New_York"
-"25817","37.7583","-81.40345","Bolt","WV","West Virginia","TRUE","","708","24.3","54081","Raleigh","{""54081"": ""100""}","Raleigh","54081","FALSE","FALSE","America/New_York"
-"25818","37.86063","-81.1926","Bradley","WV","West Virginia","TRUE","","457","347.7","54081","Raleigh","{""54081"": ""100""}","Raleigh","54081","FALSE","FALSE","America/New_York"
-"25820","37.50764","-81.13945","Camp Creek","WV","West Virginia","TRUE","","454","5.8","54055","Mercer","{""54055"": ""100""}","Mercer","54055","FALSE","FALSE","America/New_York"
-"25823","37.65924","-81.1996","Coal City","WV","West Virginia","TRUE","","2074","57.2","54081","Raleigh","{""54081"": ""100""}","Raleigh","54081","FALSE","FALSE","America/New_York"
-"25825","37.65252","-81.07808","Cool Ridge","WV","West Virginia","TRUE","","2180","32.5","54081","Raleigh","{""54081"": ""91.84"", ""54089"": ""8.16""}","Raleigh|Summers","54081|54089","FALSE","FALSE","America/New_York"
-"25826","37.57678","-81.35807","Corinne","WV","West Virginia","TRUE","","190","345.6","54109","Wyoming","{""54109"": ""100""}","Wyoming","54109","FALSE","FALSE","America/New_York"
-"25827","37.7385","-81.25356","Crab Orchard","WV","West Virginia","TRUE","","1955","118.4","54081","Raleigh","{""54081"": ""100""}","Raleigh","54081","FALSE","FALSE","America/New_York"
-"25831","37.95668","-80.93788","Danese","WV","West Virginia","TRUE","","1856","12.0","54019","Fayette","{""54019"": ""100""}","Fayette","54019","FALSE","FALSE","America/New_York"
-"25832","37.72554","-81.10882","Daniels","WV","West Virginia","TRUE","","3925","125.9","54081","Raleigh","{""54081"": ""100""}","Raleigh","54081","FALSE","FALSE","America/New_York"
-"25836","37.77744","-81.27297","Eccles","WV","West Virginia","TRUE","","394","78.6","54081","Raleigh","{""54081"": ""100""}","Raleigh","54081","FALSE","FALSE","America/New_York"
-"25837","38.05363","-81.01767","Edmond","WV","West Virginia","TRUE","","410","29.0","54019","Fayette","{""54019"": ""100""}","Fayette","54019","FALSE","FALSE","America/New_York"
-"25839","37.78397","-81.38021","Fairdale","WV","West Virginia","TRUE","","324","37.2","54081","Raleigh","{""54081"": ""100""}","Raleigh","54081","FALSE","FALSE","America/New_York"
-"25840","38.03966","-81.12323","Fayetteville","WV","West Virginia","TRUE","","7400","39.6","54019","Fayette","{""54019"": ""100""}","Fayette","54019","FALSE","FALSE","America/New_York"
-"25841","37.55494","-81.08499","Flat Top","WV","West Virginia","TRUE","","507","5.6","54055","Mercer","{""54055"": ""87.48"", ""54089"": ""12.52""}","Mercer|Summers","54055|54089","FALSE","FALSE","America/New_York"
-"25843","37.61241","-81.11996","Ghent","WV","West Virginia","TRUE","","1101","30.2","54081","Raleigh","{""54081"": ""100""}","Raleigh","54081","FALSE","FALSE","America/New_York"
-"25844","37.81028","-81.37737","Glen Daniel","WV","West Virginia","TRUE","","1332","42.1","54081","Raleigh","{""54081"": ""100""}","Raleigh","54081","FALSE","FALSE","America/New_York"
-"25845","37.69584","-81.52433","Glen Fork","WV","West Virginia","TRUE","","582","39.8","54109","Wyoming","{""54109"": ""100""}","Wyoming","54109","FALSE","FALSE","America/New_York"
-"25846","37.91389","-81.14785","Glen Jean","WV","West Virginia","TRUE","","325","9.7","54019","Fayette","{""54019"": ""100""}","Fayette","54019","FALSE","FALSE","America/New_York"
-"25848","37.71655","-81.43516","Glen Rogers","WV","West Virginia","TRUE","","275","12.2","54109","Wyoming","{""54109"": ""100""}","Wyoming","54109","FALSE","FALSE","America/New_York"
-"25849","37.72996","-81.27973","Glen White","WV","West Virginia","TRUE","","360","274.5","54081","Raleigh","{""54081"": ""100""}","Raleigh","54081","FALSE","FALSE","America/New_York"
-"25853","37.63755","-81.31375","Helen","WV","West Virginia","TRUE","","14","8.4","54081","Raleigh","{""54081"": ""100""}","Raleigh","54081","FALSE","FALSE","America/New_York"
-"25854","38.13671","-80.98006","Hico","WV","West Virginia","TRUE","","1063","11.2","54019","Fayette","{""54019"": ""100""}","Fayette","54019","FALSE","FALSE","America/New_York"
-"25855","37.9363","-81.15607","Hilltop","WV","West Virginia","TRUE","","251","460.9","54019","Fayette","{""54019"": ""100""}","Fayette","54019","FALSE","FALSE","America/New_York"
-"25857","37.62346","-81.2595","Josephine","WV","West Virginia","TRUE","","78","1.4","54081","Raleigh","{""54081"": ""100""}","Raleigh","54081","FALSE","FALSE","America/New_York"
-"25862","38.08688","-81.0588","Lansing","WV","West Virginia","TRUE","","147","13.1","54019","Fayette","{""54019"": ""100""}","Fayette","54019","FALSE","FALSE","America/New_York"
-"25864","37.87762","-81.02815","Layland","WV","West Virginia","TRUE","","305","5.2","54019","Fayette","{""54019"": ""90.29"", ""54081"": ""9.71""}","Fayette|Raleigh","54019|54081","FALSE","FALSE","America/New_York"
-"25865","37.72516","-81.3489","Lester","WV","West Virginia","TRUE","","1380","21.0","54081","Raleigh","{""54081"": ""100""}","Raleigh","54081","FALSE","FALSE","America/New_York"
-"25868","38.07198","-80.9596","Lookout","WV","West Virginia","TRUE","","425","13.0","54019","Fayette","{""54019"": ""100""}","Fayette","54019","FALSE","FALSE","America/New_York"
-"25870","37.62509","-81.38752","Maben","WV","West Virginia","TRUE","","42","71.8","54109","Wyoming","{""54109"": ""100""}","Wyoming","54109","FALSE","FALSE","America/New_York"
-"25871","37.76975","-81.21015","Mabscott","WV","West Virginia","TRUE","","813","776.7","54081","Raleigh","{""54081"": ""100""}","Raleigh","54081","FALSE","FALSE","America/New_York"
-"25873","37.75151","-81.21522","MacArthur","WV","West Virginia","TRUE","","441","245.1","54081","Raleigh","{""54081"": ""100""}","Raleigh","54081","FALSE","FALSE","America/New_York"
-"25875","37.67817","-81.45649","McGraws","WV","West Virginia","TRUE","","706","31.4","54109","Wyoming","{""54109"": ""100""}","Wyoming","54109","FALSE","FALSE","America/New_York"
-"25876","37.63669","-81.44925","Saulsville","WV","West Virginia","TRUE","","88","8.1","54109","Wyoming","{""54109"": ""100""}","Wyoming","54109","FALSE","FALSE","America/New_York"
-"25878","37.71836","-81.2314","Midway","WV","West Virginia","TRUE","","693","131.5","54081","Raleigh","{""54081"": ""100""}","Raleigh","54081","FALSE","FALSE","America/New_York"
-"25879","37.97965","-81.10541","Minden","WV","West Virginia","TRUE","","221","51.9","54019","Fayette","{""54019"": ""100""}","Fayette","54019","FALSE","FALSE","America/New_York"
-"25880","37.87822","-81.20561","Mount Hope","WV","West Virginia","TRUE","","6461","63.0","54081","Raleigh","{""54081"": ""63.29"", ""54019"": ""36.71""}","Raleigh|Fayette","54081|54019","FALSE","FALSE","America/New_York"
-"25882","37.62376","-81.3891","Mullens","WV","West Virginia","TRUE","","1862","22.1","54109","Wyoming","{""54109"": ""100""}","Wyoming","54109","FALSE","FALSE","America/New_York"
-"25901","37.94835","-81.11277","Oak Hill","WV","West Virginia","TRUE","","11576","136.1","54019","Fayette","{""54019"": ""100""}","Fayette","54019","FALSE","FALSE","America/New_York"
-"25902","37.5727","-81.20826","Odd","WV","West Virginia","TRUE","","189","2.6","54081","Raleigh","{""54081"": ""80.48"", ""54055"": ""19.52""}","Raleigh|Mercer","54081|54055","FALSE","FALSE","America/New_York"
-"25904","37.91692","-81.28185","Pax","WV","West Virginia","TRUE","","353","19.8","54019","Fayette","{""54019"": ""100""}","Fayette","54019","FALSE","FALSE","America/New_York"
-"25906","37.83875","-81.11562","Piney View","WV","West Virginia","TRUE","","364","102.6","54081","Raleigh","{""54081"": ""100""}","Raleigh","54081","FALSE","FALSE","America/New_York"
-"25907","37.85921","-81.07165","Prince","WV","West Virginia","TRUE","","93","19.3","54019","Fayette","{""54019"": ""100""}","Fayette","54019","FALSE","FALSE","America/New_York"
-"25908","37.67243","-81.2561","Princewick","WV","West Virginia","TRUE","","144","7.8","54081","Raleigh","{""54081"": ""100""}","Raleigh","54081","FALSE","FALSE","America/New_York"
-"25911","37.75739","-81.16812","Raleigh","WV","West Virginia","TRUE","","88","1028.7","54081","Raleigh","{""54081"": ""100""}","Raleigh","54081","FALSE","FALSE","America/New_York"
-"25913","37.71407","-81.48945","Ravencliff","WV","West Virginia","TRUE","","282","16.4","54109","Wyoming","{""54109"": ""100""}","Wyoming","54109","FALSE","FALSE","America/New_York"
-"25915","37.59903","-81.2859","Rhodell","WV","West Virginia","TRUE","","139","5.9","54081","Raleigh","{""54081"": ""100""}","Raleigh","54081","FALSE","FALSE","America/New_York"
-"25916","37.67559","-81.49803","Sabine","WV","West Virginia","TRUE","","255","50.7","54109","Wyoming","{""54109"": ""100""}","Wyoming","54109","FALSE","FALSE","America/New_York"
-"25917","37.97809","-81.25099","Scarbro","WV","West Virginia","TRUE","","2202","19.0","54019","Fayette","{""54019"": ""100""}","Fayette","54019","FALSE","FALSE","America/New_York"
-"25918","37.74924","-80.99895","Shady Spring","WV","West Virginia","TRUE","","4507","25.8","54081","Raleigh","{""54081"": ""100""}","Raleigh","54081","FALSE","FALSE","America/New_York"
-"25920","37.68716","-81.33385","Slab Fork","WV","West Virginia","TRUE","","176","13.4","54081","Raleigh","{""54081"": ""100""}","Raleigh","54081","FALSE","FALSE","America/New_York"
-"25921","37.67008","-81.30864","Sophia","WV","West Virginia","TRUE","","2269","54.5","54081","Raleigh","{""54081"": ""100""}","Raleigh","54081","FALSE","FALSE","America/New_York"
-"25922","37.46931","-81.10467","Spanishburg","WV","West Virginia","TRUE","","285","23.9","54055","Mercer","{""54055"": ""100""}","Mercer","54055","FALSE","FALSE","America/New_York"
-"25928","37.55958","-81.33259","Stephenson","WV","West Virginia","TRUE","","343","11.4","54109","Wyoming","{""54109"": ""100""}","Wyoming","54109","FALSE","FALSE","America/New_York"
-"25932","37.75652","-81.30928","Surveyor","WV","West Virginia","TRUE","","424","41.9","54081","Raleigh","{""54081"": ""100""}","Raleigh","54081","FALSE","FALSE","America/New_York"
-"25936","37.92488","-81.02809","Thurmond","WV","West Virginia","TRUE","","61","1.6","54019","Fayette","{""54019"": ""100""}","Fayette","54019","FALSE","FALSE","America/New_York"
-"25938","38.15742","-81.04372","Victor","WV","West Virginia","TRUE","","1294","15.4","54019","Fayette","{""54019"": ""100""}","Fayette","54019","FALSE","FALSE","America/New_York"
-"25942","38.02628","-80.98617","Winona","WV","West Virginia","TRUE","","178","5.4","54019","Fayette","{""54019"": ""100""}","Fayette","54019","FALSE","FALSE","America/New_York"
-"25951","37.6595","-80.86708","Hinton","WV","West Virginia","TRUE","","6301","22.6","54089","Summers","{""54089"": ""97.55"", ""54081"": ""2.45""}","Summers|Raleigh","54089|54081","FALSE","FALSE","America/New_York"
-"25958","38.02152","-80.75079","Charmco","WV","West Virginia","TRUE","","924","15.7","54025","Greenbrier","{""54025"": ""100""}","Greenbrier","54025","FALSE","FALSE","America/New_York"
-"25962","37.97432","-80.81168","Rainelle","WV","West Virginia","TRUE","","3057","13.5","54025","Greenbrier","{""54025"": ""75.17"", ""54019"": ""24.83""}","Greenbrier|Fayette","54025|54019","FALSE","FALSE","America/New_York"
-"25969","37.61887","-81.00187","Jumping Branch","WV","West Virginia","TRUE","","1118","14.7","54089","Summers","{""54089"": ""100""}","Summers","54089","FALSE","FALSE","America/New_York"
-"25971","37.47901","-80.9765","Lerona","WV","West Virginia","TRUE","","910","17.4","54055","Mercer","{""54055"": ""100""}","Mercer","54055","FALSE","FALSE","America/New_York"
-"25972","38.0413","-80.74158","Leslie","WV","West Virginia","TRUE","","346","33.2","54025","Greenbrier","{""54025"": ""100""}","Greenbrier","54025","FALSE","FALSE","America/New_York"
-"25976","37.85054","-80.84718","Meadow Bridge","WV","West Virginia","TRUE","","2419","10.4","54019","Fayette","{""54019"": ""54.6"", ""54089"": ""34.1"", ""54025"": ""11.3""}","Fayette|Summers|Greenbrier","54019|54089|54025","FALSE","FALSE","America/New_York"
-"25977","37.80711","-80.90296","Meadow Creek","WV","West Virginia","TRUE","","178","14.0","54089","Summers","{""54089"": ""100""}","Summers","54089","FALSE","FALSE","America/New_York"
-"25978","37.62197","-80.94575","Nimitz","WV","West Virginia","TRUE","","507","16.7","54089","Summers","{""54089"": ""100""}","Summers","54089","FALSE","FALSE","America/New_York"
-"25979","37.5174","-80.91948","Pipestem","WV","West Virginia","TRUE","","717","6.0","54089","Summers","{""54089"": ""94.96"", ""54055"": ""5.04""}","Summers|Mercer","54089|54055","FALSE","FALSE","America/New_York"
-"25981","38.08469","-80.70849","Quinwood","WV","West Virginia","TRUE","","526","3.4","54025","Greenbrier","{""54025"": ""78.13"", ""54067"": ""21.87""}","Greenbrier|Nicholas","54025|54067","FALSE","FALSE","America/New_York"
-"25984","38.02595","-80.60318","Rupert","WV","West Virginia","TRUE","","1495","11.7","54025","Greenbrier","{""54025"": ""100""}","Greenbrier","54025","FALSE","FALSE","America/New_York"
-"25985","37.77258","-80.80963","Sandstone","WV","West Virginia","TRUE","","482","5.3","54089","Summers","{""54089"": ""100""}","Summers","54089","FALSE","FALSE","America/New_York"
-"25989","37.68278","-81.06999","White Oak","WV","West Virginia","TRUE","","110","17.7","54081","Raleigh","{""54081"": ""100""}","Raleigh","54081","FALSE","FALSE","America/New_York"
-"26003","40.07399","-80.64996","Wheeling","WV","West Virginia","TRUE","","41198","167.9","54069","Ohio","{""54069"": ""89.06"", ""54051"": ""10.22"", ""54009"": ""0.72""}","Ohio|Marshall|Brooke","54069|54051|54009","FALSE","FALSE","America/New_York"
-"26030","40.22631","-80.65581","Beech Bottom","WV","West Virginia","TRUE","","590","271.9","54009","Brooke","{""54009"": ""100""}","Brooke","54009","FALSE","FALSE","America/New_York"
-"26031","40.00838","-80.72245","Benwood","WV","West Virginia","TRUE","","1562","220.4","54051","Marshall","{""54051"": ""100""}","Marshall","54051","FALSE","FALSE","America/New_York"
-"26032","40.19612","-80.54318","Bethany","WV","West Virginia","TRUE","","1120","35.9","54009","Brooke","{""54009"": ""100""}","Brooke","54009","FALSE","FALSE","America/New_York"
-"26033","39.83105","-80.5774","Cameron","WV","West Virginia","TRUE","","2068","8.6","54051","Marshall","{""54051"": ""100""}","Marshall","54051","FALSE","FALSE","America/New_York"
-"26034","40.59398","-80.55256","Chester","WV","West Virginia","TRUE","","4203","107.2","54029","Hancock","{""54029"": ""100""}","Hancock","54029","FALSE","FALSE","America/New_York"
-"26035","40.34829","-80.55516","Colliers","WV","West Virginia","TRUE","","1714","36.7","54009","Brooke","{""54009"": ""100""}","Brooke","54009","FALSE","FALSE","America/New_York"
-"26036","39.98484","-80.54475","Dallas","WV","West Virginia","TRUE","","468","16.0","54051","Marshall","{""54051"": ""100""}","Marshall","54051","FALSE","FALSE","America/New_York"
-"26037","40.33434","-80.58475","Follansbee","WV","West Virginia","TRUE","","6487","370.0","54009","Brooke","{""54009"": ""100""}","Brooke","54009","FALSE","FALSE","America/New_York"
-"26038","39.96473","-80.72373","Glen Dale","WV","West Virginia","TRUE","","3140","183.7","54051","Marshall","{""54051"": ""100""}","Marshall","54051","FALSE","FALSE","America/New_York"
-"26039","39.81372","-80.67119","Glen Easton","WV","West Virginia","TRUE","","665","6.5","54051","Marshall","{""54051"": ""100""}","Marshall","54051","FALSE","FALSE","America/New_York"
-"26040","39.98752","-80.7216","Mcmechen","WV","West Virginia","TRUE","","1927","320.7","54051","Marshall","{""54051"": ""100""}","Marshall","54051","FALSE","FALSE","America/New_York"
-"26041","39.89944","-80.70824","Moundsville","WV","West Virginia","TRUE","","16198","101.9","54051","Marshall","{""54051"": ""100""}","Marshall","54051","FALSE","FALSE","America/New_York"
-"26047","40.53129","-80.58299","New Cumberland","WV","West Virginia","TRUE","","6180","55.7","54029","Hancock","{""54029"": ""100""}","Hancock","54029","FALSE","FALSE","America/New_York"
-"26050","40.60047","-80.62592","Newell","WV","West Virginia","TRUE","","1780","236.9","54029","Hancock","{""54029"": ""100""}","Hancock","54029","FALSE","FALSE","America/New_York"
-"26055","39.75481","-80.77544","Proctor","WV","West Virginia","TRUE","","1258","6.6","54051","Marshall","{""54051"": ""71.07"", ""54103"": ""28.93""}","Marshall|Wetzel","54051|54103","FALSE","FALSE","America/New_York"
-"26056","40.53123","-80.57744","New Manchester","WV","West Virginia","TRUE","","115","383.3","54029","Hancock","{""54029"": ""100""}","Hancock","54029","FALSE","FALSE","America/New_York"
-"26059","40.07129","-80.59115","Triadelphia","WV","West Virginia","TRUE","","2625","41.2","54069","Ohio","{""54069"": ""100""}","Ohio","54069","FALSE","FALSE","America/New_York"
-"26060","40.10477","-80.54758","Valley Grove","WV","West Virginia","TRUE","","1912","31.1","54069","Ohio","{""54069"": ""100""}","Ohio","54069","FALSE","FALSE","America/New_York"
-"26062","40.42316","-80.56115","Weirton","WV","West Virginia","TRUE","","20764","288.8","54029","Hancock","{""54029"": ""82.02"", ""54009"": ""17.98""}","Hancock|Brooke","54029|54009","FALSE","FALSE","America/New_York"
-"26070","40.2518","-80.58403","Wellsburg","WV","West Virginia","TRUE","","8249","86.2","54009","Brooke","{""54009"": ""100""}","Brooke","54009","FALSE","FALSE","America/New_York"
-"26074","40.16163","-80.59258","West Liberty","WV","West Virginia","TRUE","","1190","279.3","54069","Ohio","{""54069"": ""100""}","Ohio","54069","FALSE","FALSE","America/New_York"
-"26075","40.19497","-80.65901","Windsor Heights","WV","West Virginia","TRUE","","446","126.4","54009","Brooke","{""54009"": ""100""}","Brooke","54009","FALSE","FALSE","America/New_York"
-"26101","39.23903","-81.5762","Parkersburg","WV","West Virginia","TRUE","","29122","380.8","54107","Wood","{""54107"": ""100""}","Wood","54107","FALSE","FALSE","America/New_York"
-"26104","39.27568","-81.47855","Parkersburg","WV","West Virginia","TRUE","","15808","164.1","54107","Wood","{""54107"": ""100""}","Wood","54107","FALSE","FALSE","America/New_York"
-"26105","39.32992","-81.52135","Vienna","WV","West Virginia","TRUE","","11637","358.3","54107","Wood","{""54107"": ""100""}","Wood","54107","FALSE","FALSE","America/New_York"
-"26133","39.12255","-81.67231","Belleville","WV","West Virginia","TRUE","","1492","14.7","54107","Wood","{""54107"": ""100""}","Wood","54107","FALSE","FALSE","America/New_York"
-"26134","39.36798","-81.2876","Belmont","WV","West Virginia","TRUE","","874","160.0","54073","Pleasants","{""54073"": ""100""}","Pleasants","54073","FALSE","FALSE","America/New_York"
-"26136","38.9663","-81.13614","Big Bend","WV","West Virginia","TRUE","","610","8.8","54013","Calhoun","{""54013"": ""100""}","Calhoun","54013","FALSE","FALSE","America/New_York"
-"26137","39.00517","-81.04462","Big Springs","WV","West Virginia","TRUE","","689","5.1","54013","Calhoun","{""54013"": ""66.67"", ""54021"": ""27.05"", ""54085"": ""6.28""}","Calhoun|Gilmer|Ritchie","54013|54021|54085","FALSE","FALSE","America/New_York"
-"26138","39.02869","-81.20432","Brohard","WV","West Virginia","TRUE","","183","13.3","54105","Wirt","{""54105"": ""100""}","Wirt","54105","FALSE","FALSE","America/New_York"
-"26141","38.92113","-81.25213","Creston","WV","West Virginia","TRUE","","402","4.6","54013","Calhoun","{""54013"": ""59.89"", ""54105"": ""40.11""}","Calhoun|Wirt","54013|54105","FALSE","FALSE","America/New_York"
-"26142","39.21053","-81.44742","Davisville","WV","West Virginia","TRUE","","2367","72.0","54107","Wood","{""54107"": ""100""}","Wood","54107","FALSE","FALSE","America/New_York"
-"26143","39.05665","-81.37044","Elizabeth","WV","West Virginia","TRUE","","4291","11.4","54105","Wirt","{""54105"": ""89.16"", ""54107"": ""6.99"", ""54035"": ""2.33"", ""54085"": ""0.9"", ""54013"": ""0.62""}","Wirt|Wood|Jackson|Ritchie|Calhoun","54105|54107|54035|54085|54013","FALSE","FALSE","America/New_York"
-"26146","39.45283","-81.04397","Friendly","WV","West Virginia","TRUE","","1112","10.9","54095","Tyler","{""54095"": ""70.09"", ""54073"": ""29.91""}","Tyler|Pleasants","54095|54073","FALSE","FALSE","America/New_York"
-"26147","38.90661","-81.07294","Grantsville","WV","West Virginia","TRUE","","1987","16.6","54013","Calhoun","{""54013"": ""100""}","Calhoun","54013","FALSE","FALSE","America/New_York"
-"26148","39.06903","-81.18634","Macfarlan","WV","West Virginia","TRUE","","401","8.7","54085","Ritchie","{""54085"": ""100""}","Ritchie","54085","FALSE","FALSE","America/New_York"
-"26149","39.46525","-80.89183","Middlebourne","WV","West Virginia","TRUE","","1977","10.2","54095","Tyler","{""54095"": ""100""}","Tyler","54095","FALSE","FALSE","America/New_York"
-"26150","39.15676","-81.53654","Mineral Wells","WV","West Virginia","TRUE","","6362","53.0","54107","Wood","{""54107"": ""100""}","Wood","54107","FALSE","FALSE","America/New_York"
-"26151","38.88326","-81.17296","Mount Zion","WV","West Virginia","TRUE","","644","10.1","54013","Calhoun","{""54013"": ""100""}","Calhoun","54013","FALSE","FALSE","America/New_York"
-"26152","39.01006","-81.19587","Munday","WV","West Virginia","TRUE","","118","25.1","54105","Wirt","{""54105"": ""100""}","Wirt","54105","FALSE","FALSE","America/New_York"
-"26155","39.63218","-80.76541","New Martinsville","WV","West Virginia","TRUE","","7554","24.7","54103","Wetzel","{""54103"": ""95.48"", ""54095"": ""4.09"", ""54051"": ""0.43""}","Wetzel|Tyler|Marshall","54103|54095|54051","FALSE","FALSE","America/New_York"
-"26159","39.6021","-80.92757","Paden City","WV","West Virginia","TRUE","","3325","762.8","54103","Wetzel","{""54103"": ""69.47"", ""54095"": ""30.53""}","Wetzel|Tyler","54103|54095","FALSE","FALSE","America/New_York"
-"26160","38.97842","-81.41283","Palestine","WV","West Virginia","TRUE","","957","5.6","54105","Wirt","{""54105"": ""100""}","Wirt","54105","FALSE","FALSE","America/New_York"
-"26161","39.1726","-81.25368","Petroleum","WV","West Virginia","TRUE","","604","4.9","54085","Ritchie","{""54085"": ""99.17"", ""54105"": ""0.83""}","Ritchie|Wirt","54085|54105","FALSE","FALSE","America/New_York"
-"26164","38.98877","-81.71709","Ravenswood","WV","West Virginia","TRUE","","7818","28.2","54035","Jackson","{""54035"": ""99.21"", ""54107"": ""0.79""}","Jackson|Wood","54035|54107","FALSE","FALSE","America/New_York"
-"26167","39.55724","-80.73499","Reader","WV","West Virginia","TRUE","","942","20.2","54103","Wetzel","{""54103"": ""100""}","Wetzel","54103","FALSE","FALSE","America/New_York"
-"26169","39.07254","-81.57589","Rockport","WV","West Virginia","TRUE","","656","9.5","54107","Wood","{""54107"": ""100""}","Wood","54107","FALSE","FALSE","America/New_York"
-"26170","39.35963","-81.17228","Saint Marys","WV","West Virginia","TRUE","","6275","23.1","54073","Pleasants","{""54073"": ""98.04"", ""54085"": ""1.96""}","Pleasants|Ritchie","54073|54085","FALSE","FALSE","America/New_York"
-"26175","39.53905","-80.9646","Sistersville","WV","West Virginia","TRUE","","3621","31.1","54095","Tyler","{""54095"": ""100""}","Tyler","54095","FALSE","FALSE","America/New_York"
-"26178","39.05891","-81.03815","Smithville","WV","West Virginia","TRUE","","239","2.2","54085","Ritchie","{""54085"": ""100""}","Ritchie","54085","FALSE","FALSE","America/New_York"
-"26180","39.20191","-81.3658","Walker","WV","West Virginia","TRUE","","2341","14.0","54107","Wood","{""54107"": ""94.18"", ""54105"": ""5.82""}","Wood|Wirt","54107|54105","FALSE","FALSE","America/New_York"
-"26181","39.20644","-81.67222","Washington","WV","West Virginia","TRUE","","6300","63.7","54107","Wood","{""54107"": ""100""}","Wood","54107","FALSE","FALSE","America/New_York"
-"26184","39.29803","-81.35135","Waverly","WV","West Virginia","TRUE","","2744","27.2","54107","Wood","{""54107"": ""87.76"", ""54073"": ""12.24""}","Wood|Pleasants","54107|54073","FALSE","FALSE","America/New_York"
-"26187","39.36857","-81.44836","Williamstown","WV","West Virginia","TRUE","","6456","123.5","54107","Wood","{""54107"": ""100""}","Wood","54107","FALSE","FALSE","America/New_York"
-"26201","39.00049","-80.20388","Buckhannon","WV","West Virginia","TRUE","","19919","42.9","54097","Upshur","{""54097"": ""96.61"", ""54001"": ""2.34"", ""54041"": ""1.05""}","Upshur|Barbour|Lewis","54097|54001|54041","FALSE","FALSE","America/New_York"
-"26202","38.21812","-80.61906","Fenwick","WV","West Virginia","TRUE","","566","15.7","54067","Nicholas","{""54067"": ""100""}","Nicholas","54067","FALSE","FALSE","America/New_York"
-"26203","38.54088","-80.58269","Erbacon","WV","West Virginia","TRUE","","131","2.0","54101","Webster","{""54101"": ""100""}","Webster","54101","FALSE","FALSE","America/New_York"
-"26205","38.32663","-80.65023","Craigsville","WV","West Virginia","TRUE","","3572","53.3","54067","Nicholas","{""54067"": ""100""}","Nicholas","54067","FALSE","FALSE","America/New_York"
-"26206","38.43952","-80.53941","Cowen","WV","West Virginia","TRUE","","3279","17.1","54101","Webster","{""54101"": ""100""}","Webster","54101","FALSE","FALSE","America/New_York"
-"26208","38.33758","-80.49038","Camden On Gauley","WV","West Virginia","TRUE","","829","3.8","54101","Webster","{""54101"": ""98.25"", ""54067"": ""1.75""}","Webster|Nicholas","54101|54067","FALSE","FALSE","America/New_York"
-"26209","38.43389","-79.99538","Snowshoe","WV","West Virginia","TRUE","","242","3.3","54075","Pocahontas","{""54075"": ""100""}","Pocahontas","54075","FALSE","FALSE","America/New_York"
-"26215","38.7133","-80.38794","Cleveland","WV","West Virginia","TRUE","","25","1.0","54101","Webster","{""54101"": ""100""}","Webster","54101","FALSE","FALSE","America/New_York"
-"26217","38.60756","-80.4562","Diana","WV","West Virginia","TRUE","","220","3.1","54101","Webster","{""54101"": ""100""}","Webster","54101","FALSE","FALSE","America/New_York"
-"26218","38.84498","-80.26628","French Creek","WV","West Virginia","TRUE","","2969","17.3","54097","Upshur","{""54097"": ""100""}","Upshur","54097","FALSE","FALSE","America/New_York"
-"26222","38.65492","-80.36492","Hacker Valley","WV","West Virginia","TRUE","","450","2.3","54101","Webster","{""54101"": ""100""}","Webster","54101","FALSE","FALSE","America/New_York"
-"26224","38.74032","-80.18293","Helvetia","WV","West Virginia","TRUE","","268","3.0","54083","Randolph","{""54083"": ""81.9"", ""54097"": ""18.1""}","Randolph|Upshur","54083|54097","FALSE","FALSE","America/New_York"
-"26228","38.75442","-80.37091","Kanawha Head","WV","West Virginia","TRUE","","15","0.6","54097","Upshur","{""54097"": ""100""}","Upshur","54097","FALSE","FALSE","America/New_York"
-"26230","38.65382","-80.19757","Pickens","WV","West Virginia","TRUE","","79","0.7","54083","Randolph","{""54083"": ""100""}","Randolph","54083","FALSE","FALSE","America/New_York"
-"26234","38.7738","-80.3151","Rock Cave","WV","West Virginia","TRUE","","1319","9.6","54097","Upshur","{""54097"": ""100""}","Upshur","54097","FALSE","FALSE","America/New_York"
-"26236","38.74811","-80.22295","Selbyville","WV","West Virginia","TRUE","","157","244.7","54097","Upshur","{""54097"": ""100""}","Upshur","54097","FALSE","FALSE","America/New_York"
-"26237","38.84545","-80.15069","Tallmansville","WV","West Virginia","TRUE","","505","5.0","54097","Upshur","{""54097"": ""100""}","Upshur","54097","FALSE","FALSE","America/New_York"
-"26238","39.10308","-80.15939","Volga","WV","West Virginia","TRUE","","738","13.1","54001","Barbour","{""54001"": ""82.41"", ""54097"": ""17.59""}","Barbour|Upshur","54001|54097","FALSE","FALSE","America/New_York"
-"26241","38.92947","-79.78707","Elkins","WV","West Virginia","TRUE","","13702","40.9","54083","Randolph","{""54083"": ""100""}","Randolph","54083","FALSE","FALSE","America/New_York"
-"26250","39.03087","-79.96234","Belington","WV","West Virginia","TRUE","","5527","24.3","54001","Barbour","{""54001"": ""90.27"", ""54083"": ""9.73""}","Barbour|Randolph","54001|54083","FALSE","FALSE","America/New_York"
-"26253","38.79388","-79.85933","Beverly","WV","West Virginia","TRUE","","4197","23.5","54083","Randolph","{""54083"": ""100""}","Randolph","54083","FALSE","FALSE","America/New_York"
-"26254","38.89437","-79.64762","Bowden","WV","West Virginia","TRUE","","189","1.1","54083","Randolph","{""54083"": ""100""}","Randolph","54083","FALSE","FALSE","America/New_York"
-"26257","38.91919","-80.00361","Coalton","WV","West Virginia","TRUE","","1212","24.5","54083","Randolph","{""54083"": ""100""}","Randolph","54083","FALSE","FALSE","America/New_York"
-"26259","38.80274","-79.89611","Dailey","WV","West Virginia","TRUE","","31","6.1","54083","Randolph","{""54083"": ""100""}","Randolph","54083","FALSE","FALSE","America/New_York"
-"26260","39.07893","-79.41767","Davis","WV","West Virginia","TRUE","","1625","4.0","54093","Tucker","{""54093"": ""100""}","Tucker","54093","FALSE","FALSE","America/New_York"
-"26261","38.20361","-80.5436","Richwood","WV","West Virginia","TRUE","","2692","10.5","54067","Nicholas","{""54067"": ""97.3"", ""54025"": ""2.7""}","Nicholas|Greenbrier","54067|54025","FALSE","FALSE","America/New_York"
-"26263","38.94899","-79.43727","Dryfork","WV","West Virginia","TRUE","","244","3.1","54083","Randolph","{""54083"": ""62.97"", ""54093"": ""37.03""}","Randolph|Tucker","54083|54093","FALSE","FALSE","America/New_York"
-"26264","38.57581","-79.82698","Durbin","WV","West Virginia","TRUE","","599","2.2","54075","Pocahontas","{""54075"": ""100""}","Pocahontas","54075","FALSE","FALSE","America/New_York"
-"26266","38.4193","-80.48969","Upperglade","WV","West Virginia","TRUE","","78","7.5","54101","Webster","{""54101"": ""100""}","Webster","54101","FALSE","FALSE","America/New_York"
-"26267","38.91469","-80.06517","Ellamore","WV","West Virginia","TRUE","","308","5.0","54083","Randolph","{""54083"": ""55.01"", ""54097"": ""36.86"", ""54001"": ""8.13""}","Randolph|Upshur|Barbour","54083|54097|54001","FALSE","FALSE","America/New_York"
-"26268","38.74898","-79.7389","Glady","WV","West Virginia","TRUE","","33","0.2","54083","Randolph","{""54083"": ""100""}","Randolph","54083","FALSE","FALSE","America/New_York"
-"26269","39.11128","-79.61795","Hambleton","WV","West Virginia","TRUE","","821","15.1","54093","Tucker","{""54093"": ""100""}","Tucker","54093","FALSE","FALSE","America/New_York"
-"26270","38.86342","-79.57775","Harman","WV","West Virginia","TRUE","","486","2.4","54083","Randolph","{""54083"": ""100""}","Randolph","54083","FALSE","FALSE","America/New_York"
-"26271","39.03292","-79.58107","Hendricks","WV","West Virginia","TRUE","","408","4.9","54093","Tucker","{""54093"": ""100""}","Tucker","54093","FALSE","FALSE","America/New_York"
-"26273","38.63515","-79.95558","Huttonsville","WV","West Virginia","TRUE","","2084","6.3","54083","Randolph","{""54083"": ""100""}","Randolph","54083","FALSE","FALSE","America/New_York"
-"26275","38.9768","-79.95058","Junior","WV","West Virginia","TRUE","","548","51.6","54001","Barbour","{""54001"": ""100""}","Barbour","54001","FALSE","FALSE","America/New_York"
-"26276","39.01765","-79.7637","Kerens","WV","West Virginia","TRUE","","324","8.3","54083","Randolph","{""54083"": ""80.06"", ""54093"": ""19.94""}","Randolph|Tucker","54083|54093","FALSE","FALSE","America/New_York"
-"26278","38.82539","-80.03046","Mabie","WV","West Virginia","TRUE","","622","3.9","54083","Randolph","{""54083"": ""100""}","Randolph","54083","FALSE","FALSE","America/New_York"
-"26280","38.72958","-80.02958","Mill Creek","WV","West Virginia","TRUE","","1594","8.9","54083","Randolph","{""54083"": ""100""}","Randolph","54083","FALSE","FALSE","America/New_York"
-"26282","38.52177","-80.16247","Monterville","WV","West Virginia","TRUE","","76","0.5","54083","Randolph","{""54083"": ""100""}","Randolph","54083","FALSE","FALSE","America/New_York"
-"26283","39.06386","-79.81142","Montrose","WV","West Virginia","TRUE","","1719","11.1","54083","Randolph","{""54083"": ""75.26"", ""54001"": ""12.75"", ""54093"": ""12""}","Randolph|Barbour|Tucker","54083|54001|54093","FALSE","FALSE","America/New_York"
-"26285","38.91296","-79.93749","Norton","WV","West Virginia","TRUE","","342","12.3","54083","Randolph","{""54083"": ""100""}","Randolph","54083","FALSE","FALSE","America/New_York"
-"26287","39.16583","-79.69037","Parsons","WV","West Virginia","TRUE","","3133","8.0","54093","Tucker","{""54093"": ""100""}","Tucker","54093","FALSE","FALSE","America/New_York"
-"26288","38.4968","-80.3631","Webster Springs","WV","West Virginia","TRUE","","3273","5.5","54101","Webster","{""54101"": ""100""}","Webster","54101","FALSE","FALSE","America/New_York"
-"26291","38.39467","-80.15438","Slatyfork","WV","West Virginia","TRUE","","176","1.1","54075","Pocahontas","{""54075"": ""100""}","Pocahontas","54075","FALSE","FALSE","America/New_York"
-"26292","39.15018","-79.52118","Thomas","WV","West Virginia","TRUE","","636","14.8","54093","Tucker","{""54093"": ""100""}","Tucker","54093","FALSE","FALSE","America/New_York"
-"26293","38.78246","-79.93577","Valley Bend","WV","West Virginia","TRUE","","596","39.2","54083","Randolph","{""54083"": ""100""}","Randolph","54083","FALSE","FALSE","America/New_York"
-"26294","38.53145","-80.03429","Valley Head","WV","West Virginia","TRUE","","883","4.3","54083","Randolph","{""54083"": ""100""}","Randolph","54083","FALSE","FALSE","America/New_York"
-"26296","38.75153","-79.58189","Whitmer","WV","West Virginia","TRUE","","106","0.9","54083","Randolph","{""54083"": ""100""}","Randolph","54083","FALSE","FALSE","America/New_York"
-"26298","38.47487","-80.25416","Bergoo","WV","West Virginia","TRUE","","95","3.3","54101","Webster","{""54101"": ""100""}","Webster","54101","FALSE","FALSE","America/New_York"
-"26301","39.28976","-80.37938","Clarksburg","WV","West Virginia","TRUE","","28770","149.7","54033","Harrison","{""54033"": ""100""}","Harrison","54033","FALSE","FALSE","America/New_York"
-"26320","39.42285","-80.8226","Alma","WV","West Virginia","TRUE","","532","3.7","54095","Tyler","{""54095"": ""100""}","Tyler","54095","FALSE","FALSE","America/New_York"
-"26321","39.05152","-80.6827","Alum Bridge","WV","West Virginia","TRUE","","317","4.9","54041","Lewis","{""54041"": ""100""}","Lewis","54041","FALSE","FALSE","America/New_York"
-"26323","39.26278","-80.29056","Anmoore","WV","West Virginia","TRUE","","397","134.8","54033","Harrison","{""54033"": ""100""}","Harrison","54033","FALSE","FALSE","America/New_York"
-"26325","39.09888","-80.88036","Auburn","WV","West Virginia","TRUE","","287","4.4","54085","Ritchie","{""54085"": ""100""}","Ritchie","54085","FALSE","FALSE","America/New_York"
-"26327","39.11964","-80.93878","Berea","WV","West Virginia","TRUE","","68","3.1","54085","Ritchie","{""54085"": ""100""}","Ritchie","54085","FALSE","FALSE","America/New_York"
-"26330","39.28657","-80.22099","Bridgeport","WV","West Virginia","TRUE","","14760","78.8","54033","Harrison","{""54033"": ""86.75"", ""54091"": ""12.26"", ""54001"": ""0.99""}","Harrison|Taylor|Barbour","54033|54091|54001","FALSE","FALSE","America/New_York"
-"26335","38.84969","-80.67304","Burnsville","WV","West Virginia","TRUE","","1887","15.3","54007","Braxton","{""54007"": ""83.6"", ""54021"": ""16.4""}","Braxton|Gilmer","54007|54021","FALSE","FALSE","America/New_York"
-"26337","39.23792","-81.16266","Cairo","WV","West Virginia","TRUE","","1369","8.2","54085","Ritchie","{""54085"": ""100""}","Ritchie","54085","FALSE","FALSE","America/New_York"
-"26338","39.08197","-80.61266","Camden","WV","West Virginia","TRUE","","821","8.0","54041","Lewis","{""54041"": ""100""}","Lewis","54041","FALSE","FALSE","America/New_York"
-"26339","39.41965","-80.61062","Center Point","WV","West Virginia","TRUE","","299","5.5","54017","Doddridge","{""54017"": ""100""}","Doddridge","54017","FALSE","FALSE","America/New_York"
-"26342","39.03006","-80.84975","Coxs Mills","WV","West Virginia","TRUE","","195","1.6","54021","Gilmer","{""54021"": ""100""}","Gilmer","54021","FALSE","FALSE","America/New_York"
-"26343","38.83113","-80.40475","Crawford","WV","West Virginia","TRUE","","250","4.6","54041","Lewis","{""54041"": ""62.02"", ""54097"": ""37.98""}","Lewis|Upshur","54041|54097","FALSE","FALSE","America/New_York"
-"26346","39.29691","-81.06213","Ellenboro","WV","West Virginia","TRUE","","768","10.6","54085","Ritchie","{""54085"": ""88.58"", ""54073"": ""11.42""}","Ritchie|Pleasants","54085|54073","FALSE","FALSE","America/New_York"
-"26347","39.25656","-80.12613","Flemington","WV","West Virginia","TRUE","","2576","25.2","54091","Taylor","{""54091"": ""76.5"", ""54001"": ""23.5""}","Taylor|Barbour","54091|54001","FALSE","FALSE","America/New_York"
-"26348","39.45826","-80.56711","Folsom","WV","West Virginia","TRUE","","108","3.4","54103","Wetzel","{""54103"": ""100""}","Wetzel","54103","FALSE","FALSE","America/New_York"
-"26349","39.2357","-80.13016","Galloway","WV","West Virginia","TRUE","","111","68.5","54001","Barbour","{""54001"": ""100""}","Barbour","54001","FALSE","FALSE","America/New_York"
-"26351","38.93372","-80.8536","Glenville","WV","West Virginia","TRUE","","4700","21.4","54021","Gilmer","{""54021"": ""100""}","Gilmer","54021","FALSE","FALSE","America/New_York"
-"26354","39.34663","-80.03047","Grafton","WV","West Virginia","TRUE","","10477","40.0","54091","Taylor","{""54091"": ""99.72"", ""54049"": ""0.28""}","Taylor|Marion","54091|54049","FALSE","FALSE","America/New_York"
-"26361","39.36662","-80.3175","Gypsy","WV","West Virginia","TRUE","","190","265.5","54033","Harrison","{""54033"": ""100""}","Harrison","54033","FALSE","FALSE","America/New_York"
-"26362","39.14968","-81.05944","Harrisville","WV","West Virginia","TRUE","","3232","11.9","54085","Ritchie","{""54085"": ""100""}","Ritchie","54085","FALSE","FALSE","America/New_York"
-"26366","39.3812","-80.33459","Haywood","WV","West Virginia","TRUE","","38","36.8","54033","Harrison","{""54033"": ""100""}","Harrison","54033","FALSE","FALSE","America/New_York"
-"26369","39.33403","-80.33176","Hepzibah","WV","West Virginia","TRUE","","622","175.5","54033","Harrison","{""54033"": ""100""}","Harrison","54033","FALSE","FALSE","America/New_York"
-"26372","38.9586","-80.37348","Horner","WV","West Virginia","TRUE","","865","10.9","54041","Lewis","{""54041"": ""100""}","Lewis","54041","FALSE","FALSE","America/New_York"
-"26374","39.45058","-79.87894","Independence","WV","West Virginia","TRUE","","1220","14.4","54077","Preston","{""54077"": ""85.45"", ""54061"": ""10.04"", ""54091"": ""4.51""}","Preston|Monongalia|Taylor","54077|54061|54091","FALSE","FALSE","America/New_York"
-"26376","38.77625","-80.45667","Ireland","WV","West Virginia","TRUE","","529","6.5","54041","Lewis","{""54041"": ""65.01"", ""54007"": ""34.99""}","Lewis|Braxton","54041|54007","FALSE","FALSE","America/New_York"
-"26377","39.4924","-80.63879","Jacksonburg","WV","West Virginia","TRUE","","766","5.3","54103","Wetzel","{""54103"": ""71.43"", ""54095"": ""28.57""}","Wetzel|Tyler","54103|54095","FALSE","FALSE","America/New_York"
-"26378","39.12155","-80.43717","Jane Lew","WV","West Virginia","TRUE","","4199","26.1","54041","Lewis","{""54041"": ""75"", ""54033"": ""25""}","Lewis|Harrison","54041|54033","FALSE","FALSE","America/New_York"
-"26384","38.97585","-80.71386","Linn","WV","West Virginia","TRUE","","695","8.0","54021","Gilmer","{""54021"": ""90.19"", ""54041"": ""9.81""}","Gilmer|Lewis","54021|54041","FALSE","FALSE","America/New_York"
-"26385","39.15932","-80.35533","Lost Creek","WV","West Virginia","TRUE","","4203","26.3","54033","Harrison","{""54033"": ""100""}","Harrison","54033","FALSE","FALSE","America/New_York"
-"26386","39.39209","-80.40102","Lumberport","WV","West Virginia","TRUE","","2620","38.2","54033","Harrison","{""54033"": ""100""}","Harrison","54033","FALSE","FALSE","America/New_York"
-"26404","39.33475","-80.30928","Meadowbrook","WV","West Virginia","TRUE","","535","60.7","54033","Harrison","{""54033"": ""100""}","Harrison","54033","FALSE","FALSE","America/New_York"
-"26405","39.22336","-79.9017","Moatsville","WV","West Virginia","TRUE","","1276","9.3","54001","Barbour","{""54001"": ""93.38"", ""54077"": ""6.62""}","Barbour|Preston","54001|54077","FALSE","FALSE","America/New_York"
-"26408","39.20336","-80.29787","Mount Clare","WV","West Virginia","TRUE","","3158","40.4","54033","Harrison","{""54033"": ""100""}","Harrison","54033","FALSE","FALSE","America/New_York"
-"26410","39.40412","-79.8254","Newburg","WV","West Virginia","TRUE","","1055","17.8","54077","Preston","{""54077"": ""100""}","Preston","54077","FALSE","FALSE","America/New_York"
-"26411","39.1741","-80.70412","New Milton","WV","West Virginia","TRUE","","922","4.9","54017","Doddridge","{""54017"": ""100""}","Doddridge","54017","FALSE","FALSE","America/New_York"
-"26412","38.88624","-80.58488","Orlando","WV","West Virginia","TRUE","","517","4.4","54041","Lewis","{""54041"": ""49.82"", ""54007"": ""39.01"", ""54021"": ""11.17""}","Lewis|Braxton|Gilmer","54041|54007|54021","FALSE","FALSE","America/New_York"
-"26415","39.29706","-80.93771","Pennsboro","WV","West Virginia","TRUE","","3525","13.3","54085","Ritchie","{""54085"": ""68.38"", ""54017"": ""27.37"", ""54095"": ""4.26""}","Ritchie|Doddridge|Tyler","54085|54017|54095","FALSE","FALSE","America/New_York"
-"26416","39.1617","-80.02163","Philippi","WV","West Virginia","TRUE","","7850","22.0","54001","Barbour","{""54001"": ""100""}","Barbour","54001","FALSE","FALSE","America/New_York"
-"26419","39.55351","-80.66513","Pine Grove","WV","West Virginia","TRUE","","1055","10.9","54103","Wetzel","{""54103"": ""100""}","Wetzel","54103","FALSE","FALSE","America/New_York"
-"26421","39.18432","-80.91595","Pullman","WV","West Virginia","TRUE","","120","2.7","54085","Ritchie","{""54085"": ""100""}","Ritchie","54085","FALSE","FALSE","America/New_York"
-"26422","39.29458","-80.44379","Reynoldsville","WV","West Virginia","TRUE","","576","71.3","54033","Harrison","{""54033"": ""100""}","Harrison","54033","FALSE","FALSE","America/New_York"
-"26424","39.26688","-80.17361","Rosemont","WV","West Virginia","TRUE","","202","31.0","54091","Taylor","{""54091"": ""100""}","Taylor","54091","FALSE","FALSE","America/New_York"
-"26425","39.32046","-79.69275","Rowlesburg","WV","West Virginia","TRUE","","912","7.0","54077","Preston","{""54077"": ""100""}","Preston","54077","FALSE","FALSE","America/New_York"
-"26426","39.28724","-80.56387","Salem","WV","West Virginia","TRUE","","7104","20.8","54033","Harrison","{""54033"": ""66.13"", ""54017"": ""33.87""}","Harrison|Doddridge","54033|54017","FALSE","FALSE","America/New_York"
-"26430","38.87615","-80.75532","Sand Fork","WV","West Virginia","TRUE","","438","13.8","54021","Gilmer","{""54021"": ""100""}","Gilmer","54021","FALSE","FALSE","America/New_York"
-"26431","39.39873","-80.29536","Shinnston","WV","West Virginia","TRUE","","5298","54.9","54033","Harrison","{""54033"": ""90.4"", ""54091"": ""9.6""}","Harrison|Taylor","54033|54091","FALSE","FALSE","America/New_York"
-"26435","39.26665","-80.08944","Simpson","WV","West Virginia","TRUE","","105","268.5","54091","Taylor","{""54091"": ""100""}","Taylor","54091","FALSE","FALSE","America/New_York"
-"26436","39.29643","-80.72352","Smithburg","WV","West Virginia","TRUE","","178","28.4","54017","Doddridge","{""54017"": ""100""}","Doddridge","54017","FALSE","FALSE","America/New_York"
-"26437","39.52648","-80.51813","Smithfield","WV","West Virginia","TRUE","","539","6.5","54103","Wetzel","{""54103"": ""98.45"", ""54049"": ""1.55""}","Wetzel|Marion","54103|54049","FALSE","FALSE","America/New_York"
-"26438","39.34647","-80.31908","Spelter","WV","West Virginia","TRUE","","79","521.8","54033","Harrison","{""54033"": ""100""}","Harrison","54033","FALSE","FALSE","America/New_York"
-"26440","39.32595","-79.9039","Thornton","WV","West Virginia","TRUE","","1302","11.7","54091","Taylor","{""54091"": ""63.35"", ""54077"": ""27.4"", ""54001"": ""9.25""}","Taylor|Preston|Barbour","54091|54077|54001","FALSE","FALSE","America/New_York"
-"26443","39.07016","-80.75828","Troy","WV","West Virginia","TRUE","","349","7.0","54021","Gilmer","{""54021"": ""93.8"", ""54017"": ""6.2""}","Gilmer|Doddridge","54021|54017","FALSE","FALSE","America/New_York"
-"26444","39.36218","-79.76808","Tunnelton","WV","West Virginia","TRUE","","3706","19.8","54077","Preston","{""54077"": ""100""}","Preston","54077","FALSE","FALSE","America/New_York"
-"26447","38.90951","-80.48569","Walkersville","WV","West Virginia","TRUE","","1379","8.2","54041","Lewis","{""54041"": ""100""}","Lewis","54041","FALSE","FALSE","America/New_York"
-"26448","39.4068","-80.49337","Wallace","WV","West Virginia","TRUE","","1695","17.4","54033","Harrison","{""54033"": ""91.91"", ""54049"": ""6.33"", ""54017"": ""1.76""}","Harrison|Marion|Doddridge","54033|54049|54017","FALSE","FALSE","America/New_York"
-"26451","39.20772","-80.40226","West Milford","WV","West Virginia","TRUE","","708","218.1","54033","Harrison","{""54033"": ""100""}","Harrison","54033","FALSE","FALSE","America/New_York"
-"26452","39.0372","-80.514","Weston","WV","West Virginia","TRUE","","8945","27.6","54041","Lewis","{""54041"": ""100""}","Lewis","54041","FALSE","FALSE","America/New_York"
-"26456","39.27989","-80.77338","West Union","WV","West Virginia","TRUE","","3846","9.8","54017","Doddridge","{""54017"": ""94.38"", ""54095"": ""4.2"", ""54085"": ""1.42""}","Doddridge|Tyler|Ritchie","54017|54095|54085","FALSE","FALSE","America/New_York"
-"26501","39.63014","-80.04138","Morgantown","WV","West Virginia","TRUE","","22198","142.2","54061","Monongalia","{""54061"": ""100""}","Monongalia","54061","FALSE","FALSE","America/New_York"
-"26505","39.65045","-79.94408","Morgantown","WV","West Virginia","TRUE","","39235","1153.6","54061","Monongalia","{""54061"": ""100""}","Monongalia","54061","FALSE","FALSE","America/New_York"
-"26508","39.60051","-79.89596","Morgantown","WV","West Virginia","TRUE","","34056","108.1","54061","Monongalia","{""54061"": ""100""}","Monongalia","54061","FALSE","FALSE","America/New_York"
-"26519","39.55198","-79.63508","Albright","WV","West Virginia","TRUE","","2085","12.5","54077","Preston","{""54077"": ""100""}","Preston","54077","FALSE","FALSE","America/New_York"
-"26520","39.49702","-79.82364","Arthurdale","WV","West Virginia","TRUE","","1065","197.6","54077","Preston","{""54077"": ""100""}","Preston","54077","FALSE","FALSE","America/New_York"
-"26521","39.71428","-80.22637","Blacksville","WV","West Virginia","TRUE","","299","51.4","54061","Monongalia","{""54061"": ""100""}","Monongalia","54061","FALSE","FALSE","America/New_York"
-"26525","39.65574","-79.61743","Bruceton Mills","WV","West Virginia","TRUE","","7463","20.7","54077","Preston","{""54077"": ""100""}","Preston","54077","FALSE","FALSE","America/New_York"
-"26534","39.64778","-79.99727","Granville","WV","West Virginia","TRUE","","2775","797.6","54061","Monongalia","{""54061"": ""100""}","Monongalia","54061","FALSE","FALSE","America/New_York"
-"26537","39.48736","-79.71237","Kingwood","WV","West Virginia","TRUE","","5247","49.1","54077","Preston","{""54077"": ""100""}","Preston","54077","FALSE","FALSE","America/New_York"
-"26541","39.68449","-80.07453","Maidsville","WV","West Virginia","TRUE","","2739","28.0","54061","Monongalia","{""54061"": ""100""}","Monongalia","54061","FALSE","FALSE","America/New_York"
-"26542","39.57312","-79.79061","Masontown","WV","West Virginia","TRUE","","2486","26.7","54077","Preston","{""54077"": ""89.75"", ""54061"": ""10.25""}","Preston|Monongalia","54077|54061","FALSE","FALSE","America/New_York"
-"26543","39.66535","-80.00229","Osage","WV","West Virginia","TRUE","","353","150.8","54061","Monongalia","{""54061"": ""100""}","Monongalia","54061","FALSE","FALSE","America/New_York"
-"26547","39.51269","-79.812","Reedsville","WV","West Virginia","TRUE","","2696","69.7","54077","Preston","{""54077"": ""100""}","Preston","54077","FALSE","FALSE","America/New_York"
-"26554","39.4668","-80.11485","Fairmont","WV","West Virginia","TRUE","","41702","119.0","54049","Marion","{""54049"": ""95.61"", ""54061"": ""2.2"", ""54091"": ""1.64"", ""54033"": ""0.56""}","Marion|Monongalia|Taylor|Harrison","54049|54061|54091|54033","FALSE","FALSE","America/New_York"
-"26559","39.50132","-80.16821","Barrackville","WV","West Virginia","TRUE","","1216","758.2","54049","Marion","{""54049"": ""100""}","Marion","54049","FALSE","FALSE","America/New_York"
-"26560","39.54143","-80.14517","Baxter","WV","West Virginia","TRUE","","171","319.3","54049","Marion","{""54049"": ""100""}","Marion","54049","FALSE","FALSE","America/New_York"
-"26562","39.63972","-80.45546","Burton","WV","West Virginia","TRUE","","379","3.6","54103","Wetzel","{""54103"": ""62.3"", ""54061"": ""37.7""}","Wetzel|Monongalia","54103|54061","FALSE","FALSE","America/New_York"
-"26563","39.48226","-80.27428","Carolina","WV","West Virginia","TRUE","","437","287.7","54049","Marion","{""54049"": ""100""}","Marion","54049","FALSE","FALSE","America/New_York"
-"26568","39.42485","-80.27767","Enterprise","WV","West Virginia","TRUE","","701","205.0","54033","Harrison","{""54033"": ""100""}","Harrison","54033","FALSE","FALSE","America/New_York"
-"26570","39.64157","-80.22826","Fairview","WV","West Virginia","TRUE","","3554","20.4","54061","Monongalia","{""54061"": ""55.3"", ""54049"": ""44.7""}","Monongalia|Marion","54061|54049","FALSE","FALSE","America/New_York"
-"26571","39.51903","-80.25541","Farmington","WV","West Virginia","TRUE","","2249","57.3","54049","Marion","{""54049"": ""100""}","Marion","54049","FALSE","FALSE","America/New_York"
-"26572","39.48519","-80.30769","Four States","WV","West Virginia","TRUE","","285","240.6","54049","Marion","{""54049"": ""100""}","Marion","54049","FALSE","FALSE","America/New_York"
-"26574","39.58108","-80.18659","Grant Town","WV","West Virginia","TRUE","","696","95.8","54049","Marion","{""54049"": ""100""}","Marion","54049","FALSE","FALSE","America/New_York"
-"26575","39.68203","-80.45009","Hundred","WV","West Virginia","TRUE","","733","13.2","54103","Wetzel","{""54103"": ""100""}","Wetzel","54103","FALSE","FALSE","America/New_York"
-"26576","39.49303","-80.25716","Idamay","WV","West Virginia","TRUE","","616","271.9","54049","Marion","{""54049"": ""100""}","Marion","54049","FALSE","FALSE","America/New_York"
-"26581","39.6651","-80.56753","Littleton","WV","West Virginia","TRUE","","968","7.6","54103","Wetzel","{""54103"": ""100""}","Wetzel","54103","FALSE","FALSE","America/New_York"
-"26582","39.52976","-80.38166","Mannington","WV","West Virginia","TRUE","","4403","17.0","54049","Marion","{""54049"": ""98.95"", ""54033"": ""1.05""}","Marion|Harrison","54049|54033","FALSE","FALSE","America/New_York"
-"26585","39.6149","-80.42928","Metz","WV","West Virginia","TRUE","","449","7.3","54049","Marion","{""54049"": ""81"", ""54103"": ""19""}","Marion|Wetzel","54049|54103","FALSE","FALSE","America/New_York"
-"26586","39.5231","-80.10299","Montana Mines","WV","West Virginia","TRUE","","141","85.5","54049","Marion","{""54049"": ""100""}","Marion","54049","FALSE","FALSE","America/New_York"
-"26587","39.51769","-80.29504","Rachel","WV","West Virginia","TRUE","","423","126.5","54049","Marion","{""54049"": ""100""}","Marion","54049","FALSE","FALSE","America/New_York"
-"26588","39.57268","-80.14078","Rivesville","WV","West Virginia","TRUE","","2591","36.4","54049","Marion","{""54049"": ""88.74"", ""54061"": ""11.26""}","Marion|Monongalia","54049|54061","FALSE","FALSE","America/New_York"
-"26590","39.67353","-80.31816","Wana","WV","West Virginia","TRUE","","520","8.0","54061","Monongalia","{""54061"": ""100""}","Monongalia","54061","FALSE","FALSE","America/New_York"
-"26591","39.45852","-80.28941","Worthington","WV","West Virginia","TRUE","","1493","41.3","54049","Marion","{""54049"": ""91.73"", ""54033"": ""8.27""}","Marion|Harrison","54049|54033","FALSE","FALSE","America/New_York"
-"26601","38.62919","-80.6564","Sutton","WV","West Virginia","TRUE","","4570","13.4","54007","Braxton","{""54007"": ""100""}","Braxton","54007","FALSE","FALSE","America/New_York"
-"26610","38.48769","-80.7481","Birch River","WV","West Virginia","TRUE","","1162","8.0","54067","Nicholas","{""54067"": ""96.42"", ""54101"": ""3.58""}","Nicholas|Webster","54067|54101","FALSE","FALSE","America/New_York"
-"26611","38.84514","-80.83229","Cedarville","WV","West Virginia","TRUE","","239","8.2","54021","Gilmer","{""54021"": ""100""}","Gilmer","54021","FALSE","FALSE","America/New_York"
-"26615","38.82238","-80.72414","Copen","WV","West Virginia","TRUE","","37","1.2","54007","Braxton","{""54007"": ""100""}","Braxton","54007","FALSE","FALSE","America/New_York"
-"26617","38.49617","-80.83622","Dille","WV","West Virginia","TRUE","","61","3.2","54015","Clay","{""54015"": ""73.26"", ""54067"": ""26.74""}","Clay|Nicholas","54015|54067","FALSE","FALSE","America/New_York"
-"26619","38.77348","-80.73754","Exchange","WV","West Virginia","TRUE","","378","4.7","54007","Braxton","{""54007"": ""100""}","Braxton","54007","FALSE","FALSE","America/New_York"
-"26621","38.71617","-80.54675","Flatwoods","WV","West Virginia","TRUE","","792","11.3","54007","Braxton","{""54007"": ""100""}","Braxton","54007","FALSE","FALSE","America/New_York"
-"26623","38.65217","-80.87742","Frametown","WV","West Virginia","TRUE","","1103","7.3","54007","Braxton","{""54007"": ""100""}","Braxton","54007","FALSE","FALSE","America/New_York"
-"26624","38.71811","-80.80468","Gassaway","WV","West Virginia","TRUE","","2729","14.4","54007","Braxton","{""54007"": ""100""}","Braxton","54007","FALSE","FALSE","America/New_York"
-"26627","38.75354","-80.60122","Heaters","WV","West Virginia","TRUE","","344","6.7","54007","Braxton","{""54007"": ""100""}","Braxton","54007","FALSE","FALSE","America/New_York"
-"26629","38.56537","-80.70658","Little Birch","WV","West Virginia","TRUE","","307","17.1","54007","Braxton","{""54007"": ""100""}","Braxton","54007","FALSE","FALSE","America/New_York"
-"26631","38.79593","-80.54734","Napier","WV","West Virginia","TRUE","","302","4.6","54007","Braxton","{""54007"": ""100""}","Braxton","54007","FALSE","FALSE","America/New_York"
-"26636","38.74848","-80.9468","Rosedale","WV","West Virginia","TRUE","","583","7.7","54021","Gilmer","{""54021"": ""52.16"", ""54007"": ""39.43"", ""54013"": ""8.42""}","Gilmer|Braxton|Calhoun","54021|54007|54013","FALSE","FALSE","America/New_York"
-"26638","38.76169","-81.00445","Shock","WV","West Virginia","TRUE","","136","3.2","54021","Gilmer","{""54021"": ""70.79"", ""54013"": ""29.21""}","Gilmer|Calhoun","54021|54013","FALSE","FALSE","America/New_York"
-"26651","38.3243","-80.87245","Summersville","WV","West Virginia","TRUE","","9467","15.1","54067","Nicholas","{""54067"": ""100""}","Nicholas","54067","FALSE","FALSE","America/New_York"
-"26656","38.26456","-81.16352","Belva","WV","West Virginia","TRUE","","250","10.8","54067","Nicholas","{""54067"": ""89.53"", ""54019"": ""10.47""}","Nicholas|Fayette","54067|54019","FALSE","FALSE","America/New_York"
-"26660","38.35751","-80.69975","Calvin","WV","West Virginia","TRUE","","347","22.7","54067","Nicholas","{""54067"": ""100""}","Nicholas","54067","FALSE","FALSE","America/New_York"
-"26662","38.26325","-80.75478","Canvas","WV","West Virginia","TRUE","","1075","28.3","54067","Nicholas","{""54067"": ""100""}","Nicholas","54067","FALSE","FALSE","America/New_York"
-"26676","38.16191","-80.65974","Leivasy","WV","West Virginia","TRUE","","400","5.8","54067","Nicholas","{""54067"": ""100""}","Nicholas","54067","FALSE","FALSE","America/New_York"
-"26678","38.1685","-80.91073","Mount Lookout","WV","West Virginia","TRUE","","896","24.1","54067","Nicholas","{""54067"": ""100""}","Nicholas","54067","FALSE","FALSE","America/New_York"
-"26679","38.16527","-80.79764","Mount Nebo","WV","West Virginia","TRUE","","1889","13.8","54067","Nicholas","{""54067"": ""100""}","Nicholas","54067","FALSE","FALSE","America/New_York"
-"26680","38.09522","-80.86939","Nallen","WV","West Virginia","TRUE","","338","4.8","54019","Fayette","{""54019"": ""50.59"", ""54025"": ""25.59"", ""54067"": ""23.82""}","Fayette|Greenbrier|Nicholas","54019|54025|54067","FALSE","FALSE","America/New_York"
-"26681","38.22732","-80.71023","Nettie","WV","West Virginia","TRUE","","1097","11.8","54067","Nicholas","{""54067"": ""100""}","Nicholas","54067","FALSE","FALSE","America/New_York"
-"26684","38.16213","-80.84585","Pool","WV","West Virginia","TRUE","","161","37.7","54067","Nicholas","{""54067"": ""100""}","Nicholas","54067","FALSE","FALSE","America/New_York"
-"26690","38.22553","-81.12725","Swiss","WV","West Virginia","TRUE","","560","7.5","54019","Fayette","{""54019"": ""54.62"", ""54067"": ""45.38""}","Fayette|Nicholas","54019|54067","FALSE","FALSE","America/New_York"
-"26691","38.4045","-80.66673","Tioga","WV","West Virginia","TRUE","","474","13.0","54067","Nicholas","{""54067"": ""85.85"", ""54101"": ""14.15""}","Nicholas|Webster","54067|54101","FALSE","FALSE","America/New_York"
-"26704","39.29248","-78.5905","Augusta","WV","West Virginia","TRUE","","5820","23.4","54027","Hampshire","{""54027"": ""100""}","Hampshire","54027","FALSE","FALSE","America/New_York"
-"26705","39.31813","-79.57635","Aurora","WV","West Virginia","TRUE","","606","4.2","54077","Preston","{""54077"": ""100""}","Preston","54077","FALSE","FALSE","America/New_York"
-"26707","39.22442","-79.39584","Bayard","WV","West Virginia","TRUE","","256","3.8","54023","Grant","{""54023"": ""100""}","Grant","54023","FALSE","FALSE","America/New_York"
-"26710","39.30719","-78.94228","Burlington","WV","West Virginia","TRUE","","2258","10.6","54057","Mineral","{""54057"": ""86.92"", ""54027"": ""8.77"", ""54023"": ""4.31""}","Mineral|Hampshire|Grant","54057|54027|54023","FALSE","FALSE","America/New_York"
-"26711","39.2785","-78.47677","Capon Bridge","WV","West Virginia","TRUE","","2942","19.3","54027","Hampshire","{""54027"": ""100""}","Hampshire","54027","FALSE","FALSE","America/New_York"
-"26714","39.18418","-78.63638","Delray","WV","West Virginia","TRUE","","422","8.5","54027","Hampshire","{""54027"": ""100""}","Hampshire","54027","FALSE","FALSE","America/New_York"
-"26716","39.26122","-79.52098","Eglon","WV","West Virginia","TRUE","","728","11.7","54077","Preston","{""54077"": ""100""}","Preston","54077","FALSE","FALSE","America/New_York"
-"26717","39.34297","-79.17426","Elk Garden","WV","West Virginia","TRUE","","869","8.0","54057","Mineral","{""54057"": ""85.9"", ""54023"": ""14.1""}","Mineral|Grant","54057|54023","FALSE","FALSE","America/New_York"
-"26719","39.48347","-78.77373","Fort Ashby","WV","West Virginia","TRUE","","3053","43.7","54057","Mineral","{""54057"": ""100""}","Mineral","54057","FALSE","FALSE","America/New_York"
-"26720","39.28032","-79.32957","Gormania","WV","West Virginia","TRUE","","188","12.5","54023","Grant","{""54023"": ""100""}","Grant","54023","FALSE","FALSE","America/New_York"
-"26722","39.50267","-78.6425","Green Spring","WV","West Virginia","TRUE","","489","8.8","54027","Hampshire","{""54027"": ""100""}","Hampshire","54027","FALSE","FALSE","America/New_York"
-"26726","39.40136","-78.99087","Keyser","WV","West Virginia","TRUE","","12604","33.3","54057","Mineral","{""54057"": ""98.22"", ""54023"": ""1.78""}","Mineral|Grant","54057|54023","FALSE","FALSE","America/New_York"
-"26731","39.16139","-79.07472","Lahmansville","WV","West Virginia","TRUE","","423","9.9","54023","Grant","{""54023"": ""100""}","Grant","54023","FALSE","FALSE","America/New_York"
-"26739","39.2428","-79.2557","Mount Storm","WV","West Virginia","TRUE","","896","5.2","54023","Grant","{""54023"": ""100""}","Grant","54023","FALSE","FALSE","America/New_York"
-"26743","39.28867","-79.0768","New Creek","WV","West Virginia","TRUE","","1486","7.7","54057","Mineral","{""54057"": ""80.84"", ""54023"": ""19.16""}","Mineral|Grant","54057|54023","FALSE","FALSE","America/New_York"
-"26750","39.47614","-79.04388","Piedmont","WV","West Virginia","TRUE","","778","675.9","54057","Mineral","{""54057"": ""100""}","Mineral","54057","FALSE","FALSE","America/New_York"
-"26753","39.56357","-78.78879","Ridgeley","WV","West Virginia","TRUE","","6049","90.6","54057","Mineral","{""54057"": ""100""}","Mineral","54057","FALSE","FALSE","America/New_York"
-"26755","39.15209","-78.72752","Rio","WV","West Virginia","TRUE","","845","7.4","54027","Hampshire","{""54027"": ""53.9"", ""54031"": ""46.1""}","Hampshire|Hardy","54027|54031","FALSE","FALSE","America/New_York"
-"26757","39.31566","-78.74649","Romney","WV","West Virginia","TRUE","","6655","18.4","54027","Hampshire","{""54027"": ""100""}","Hampshire","54027","FALSE","FALSE","America/New_York"
-"26761","39.29323","-78.68703","Shanks","WV","West Virginia","TRUE","","520","18.3","54027","Hampshire","{""54027"": ""100""}","Hampshire","54027","FALSE","FALSE","America/New_York"
-"26763","39.47011","-78.69746","Springfield","WV","West Virginia","TRUE","","1458","11.9","54027","Hampshire","{""54027"": ""81.69"", ""54057"": ""18.31""}","Hampshire|Mineral","54027|54057","FALSE","FALSE","America/New_York"
-"26764","39.45267","-79.55504","Terra Alta","WV","West Virginia","TRUE","","4204","18.2","54077","Preston","{""54077"": ""100""}","Preston","54077","FALSE","FALSE","America/New_York"
-"26767","39.61582","-78.7574","Wiley Ford","WV","West Virginia","TRUE","","653","106.7","54057","Mineral","{""54057"": ""100""}","Mineral","54057","FALSE","FALSE","America/New_York"
-"26801","39.05028","-78.80364","Baker","WV","West Virginia","TRUE","","770","4.1","54031","Hardy","{""54031"": ""100""}","Hardy","54031","FALSE","FALSE","America/New_York"
-"26802","38.62752","-79.19655","Brandywine","WV","West Virginia","TRUE","","889","2.9","54071","Pendleton","{""54071"": ""100""}","Pendleton","54071","FALSE","FALSE","America/New_York"
-"26804","38.63645","-79.53943","Circleville","WV","West Virginia","TRUE","","672","3.1","54071","Pendleton","{""54071"": ""100""}","Pendleton","54071","FALSE","FALSE","America/New_York"
-"26807","38.65569","-79.35391","Franklin","WV","West Virginia","TRUE","","2710","5.9","54071","Pendleton","{""54071"": ""100""}","Pendleton","54071","FALSE","FALSE","America/New_York"
-"26808","39.20373","-78.45699","High View","WV","West Virginia","TRUE","","813","15.8","54027","Hampshire","{""54027"": ""100""}","Hampshire","54027","FALSE","FALSE","America/New_York"
-"26810","38.98119","-78.74476","Lost City","WV","West Virginia","TRUE","","454","5.4","54031","Hardy","{""54031"": ""100""}","Hardy","54031","FALSE","FALSE","America/New_York"
-"26812","38.88169","-78.87695","Mathias","WV","West Virginia","TRUE","","1819","6.8","54031","Hardy","{""54031"": ""100""}","Hardy","54031","FALSE","FALSE","America/New_York"
-"26814","38.76757","-79.47144","Riverton","WV","West Virginia","TRUE","","453","2.8","54071","Pendleton","{""54071"": ""100""}","Pendleton","54071","FALSE","FALSE","America/New_York"
-"26815","38.48905","-79.35935","Sugar Grove","WV","West Virginia","TRUE","","802","3.7","54071","Pendleton","{""54071"": ""100""}","Pendleton","54071","FALSE","FALSE","America/New_York"
-"26817","39.36039","-78.39166","Bloomery","WV","West Virginia","TRUE","","259","5.0","54027","Hampshire","{""54027"": ""100""}","Hampshire","54027","FALSE","FALSE","America/New_York"
-"26818","39.07495","-79.03425","Fisher","WV","West Virginia","TRUE","","1029","20.5","54031","Hardy","{""54031"": ""100""}","Hardy","54031","FALSE","FALSE","America/New_York"
-"26823","39.13662","-78.4821","Capon Springs","WV","West Virginia","TRUE","","141","2.5","54027","Hampshire","{""54027"": ""100""}","Hampshire","54027","FALSE","FALSE","America/New_York"
-"26833","39.09295","-79.22064","Maysville","WV","West Virginia","TRUE","","2131","6.8","54023","Grant","{""54023"": ""100""}","Grant","54023","FALSE","FALSE","America/New_York"
-"26836","38.99078","-78.97451","Moorefield","WV","West Virginia","TRUE","","7080","14.1","54031","Hardy","{""54031"": ""100""}","Hardy","54031","FALSE","FALSE","America/New_York"
-"26845","39.16195","-78.96532","Old Fields","WV","West Virginia","TRUE","","885","9.8","54031","Hardy","{""54031"": ""100""}","Hardy","54031","FALSE","FALSE","America/New_York"
-"26847","38.953","-79.13655","Petersburg","WV","West Virginia","TRUE","","6424","20.3","54023","Grant","{""54023"": ""99.78"", ""54071"": ""0.22""}","Grant|Pendleton","54023|54071","FALSE","FALSE","America/New_York"
-"26851","39.05166","-78.62801","Wardensville","WV","West Virginia","TRUE","","1550","5.5","54031","Hardy","{""54031"": ""94.86"", ""54027"": ""5.14""}","Hardy|Hampshire","54031|54027","FALSE","FALSE","America/New_York"
-"26852","39.24798","-78.90077","Purgitsville","WV","West Virginia","TRUE","","742","6.7","54027","Hampshire","{""54027"": ""72.84"", ""54031"": ""27.16""}","Hampshire|Hardy","54027|54031","FALSE","FALSE","America/New_York"
-"26855","38.96122","-79.26274","Cabins","WV","West Virginia","TRUE","","564","5.1","54023","Grant","{""54023"": ""93.58"", ""54071"": ""6.42""}","Grant|Pendleton","54023|54071","FALSE","FALSE","America/New_York"
-"26865","39.19587","-78.50864","Yellow Spring","WV","West Virginia","TRUE","","210","4.7","54027","Hampshire","{""54027"": ""100""}","Hampshire","54027","FALSE","FALSE","America/New_York"
-"26866","38.79398","-79.23698","Upper Tract","WV","West Virginia","TRUE","","697","3.4","54071","Pendleton","{""54071"": ""100""}","Pendleton","54071","FALSE","FALSE","America/New_York"
-"26884","38.85834","-79.39256","Seneca Rocks","WV","West Virginia","TRUE","","707","3.2","54071","Pendleton","{""54071"": ""100""}","Pendleton","54071","FALSE","FALSE","America/New_York"
-"27006","35.94454","-80.43766","Advance","NC","North Carolina","TRUE","","14329","86.6","37059","Davie","{""37059"": ""100""}","Davie","37059","FALSE","FALSE","America/New_York"
-"27007","36.38732","-80.59249","Ararat","NC","North Carolina","TRUE","","2550","46.4","37171","Surry","{""37171"": ""100""}","Surry","37171","FALSE","FALSE","America/New_York"
-"27009","36.23306","-80.07612","Belews Creek","NC","North Carolina","TRUE","","3002","73.1","37067","Forsyth","{""37067"": ""99.7"", ""37169"": ""0.3""}","Forsyth|Stokes","37067|37169","FALSE","FALSE","America/New_York"
-"27011","36.2156","-80.69667","Boonville","NC","North Carolina","TRUE","","5201","37.8","37197","Yadkin","{""37197"": ""100""}","Yadkin","37197","FALSE","FALSE","America/New_York"
-"27012","36.0041","-80.37582","Clemmons","NC","North Carolina","TRUE","","28334","260.8","37067","Forsyth","{""37067"": ""80.04"", ""37057"": ""19.96""}","Forsyth|Davidson","37067|37057","FALSE","FALSE","America/New_York"
-"27013","35.75594","-80.70351","Cleveland","NC","North Carolina","TRUE","","5814","29.8","37159","Rowan","{""37159"": ""71.09"", ""37097"": ""28.91""}","Rowan|Iredell","37159|37097","FALSE","FALSE","America/New_York"
-"27014","35.81193","-80.55519","Cooleemee","NC","North Carolina","TRUE","","942","589.8","37059","Davie","{""37059"": ""100""}","Davie","37059","FALSE","FALSE","America/New_York"
-"27016","36.45168","-80.21452","Danbury","NC","North Carolina","TRUE","","1339","12.9","37169","Stokes","{""37169"": ""100""}","Stokes","37169","FALSE","FALSE","America/New_York"
-"27017","36.38153","-80.76031","Dobson","NC","North Carolina","TRUE","","9144","32.9","37171","Surry","{""37171"": ""100""}","Surry","37171","FALSE","FALSE","America/New_York"
-"27018","36.19792","-80.52076","East Bend","NC","North Carolina","TRUE","","8204","38.6","37197","Yadkin","{""37197"": ""100""}","Yadkin","37197","FALSE","FALSE","America/New_York"
-"27019","36.28392","-80.23478","Germanton","NC","North Carolina","TRUE","","3900","42.8","37169","Stokes","{""37169"": ""63.07"", ""37067"": ""36.93""}","Stokes|Forsyth","37169|37067","FALSE","FALSE","America/New_York"
-"27020","36.10084","-80.80798","Hamptonville","NC","North Carolina","TRUE","","6205","32.6","37197","Yadkin","{""37197"": ""87.24"", ""37097"": ""6.7"", ""37193"": ""6.06""}","Yadkin|Iredell|Wilkes","37197|37097|37193","FALSE","FALSE","America/New_York"
-"27021","36.31838","-80.33868","King","NC","North Carolina","TRUE","","17489","126.8","37169","Stokes","{""37169"": ""99.24"", ""37067"": ""0.76""}","Stokes|Forsyth","37169|37067","FALSE","FALSE","America/New_York"
-"27022","36.51447","-80.21465","Lawsonville","NC","North Carolina","TRUE","","1103","12.8","37169","Stokes","{""37169"": ""100""}","Stokes","37169","FALSE","FALSE","America/New_York"
-"27023","36.09096","-80.45048","Lewisville","NC","North Carolina","TRUE","","12728","176.9","37067","Forsyth","{""37067"": ""100""}","Forsyth","37067","FALSE","FALSE","America/New_York"
-"27024","36.52379","-80.84169","Lowgap","NC","North Carolina","TRUE","","3205","27.9","37171","Surry","{""37171"": ""100""}","Surry","37171","FALSE","FALSE","America/New_York"
-"27025","36.37788","-79.97286","Madison","NC","North Carolina","TRUE","","10937","43.0","37157","Rockingham","{""37157"": ""79.57"", ""37169"": ""20.43""}","Rockingham|Stokes","37157|37169","FALSE","FALSE","America/New_York"
-"27027","36.44539","-79.98931","Mayodan","NC","North Carolina","TRUE","","4190","74.4","37157","Rockingham","{""37157"": ""100""}","Rockingham","37157","FALSE","FALSE","America/New_York"
-"27028","35.92347","-80.57515","Mocksville","NC","North Carolina","TRUE","","26465","53.0","37059","Davie","{""37059"": ""99.83"", ""37097"": ""0.17""}","Davie|Iredell","37059|37097","FALSE","FALSE","America/New_York"
-"27030","36.48892","-80.62906","Mount Airy","NC","North Carolina","TRUE","","35575","80.5","37171","Surry","{""37171"": ""99.13"", ""37169"": ""0.87""}","Surry|Stokes","37171|37169","FALSE","FALSE","America/New_York"
-"27040","36.16893","-80.38971","Pfafftown","NC","North Carolina","TRUE","","12519","181.1","37067","Forsyth","{""37067"": ""100""}","Forsyth","37067","FALSE","FALSE","America/New_York"
-"27041","36.41987","-80.48238","Pilot Mountain","NC","North Carolina","TRUE","","7951","52.0","37171","Surry","{""37171"": ""83.2"", ""37169"": ""16.8""}","Surry|Stokes","37171|37169","FALSE","FALSE","America/New_York"
-"27042","36.34116","-80.05603","Pine Hall","NC","North Carolina","TRUE","","606","27.1","37169","Stokes","{""37169"": ""100""}","Stokes","37169","FALSE","FALSE","America/New_York"
-"27043","36.33748","-80.45027","Pinnacle","NC","North Carolina","TRUE","","6917","37.3","37169","Stokes","{""37169"": ""57.28"", ""37171"": ""42.55"", ""37067"": ""0.17""}","Stokes|Surry|Forsyth","37169|37171|37067","FALSE","FALSE","America/New_York"
-"27045","36.23488","-80.29577","Rural Hall","NC","North Carolina","TRUE","","9552","159.2","37067","Forsyth","{""37067"": ""98.18"", ""37169"": ""1.82""}","Forsyth|Stokes","37067|37169","FALSE","FALSE","America/New_York"
-"27046","36.49321","-80.09055","Sandy Ridge","NC","North Carolina","TRUE","","1771","16.8","37169","Stokes","{""37169"": ""100""}","Stokes","37169","FALSE","FALSE","America/New_York"
-"27047","36.31155","-80.57765","Siloam","NC","North Carolina","TRUE","","1439","27.4","37171","Surry","{""37171"": ""100""}","Surry","37171","FALSE","FALSE","America/New_York"
-"27048","36.47573","-79.91057","Stoneville","NC","North Carolina","TRUE","","8423","39.2","37157","Rockingham","{""37157"": ""100""}","Rockingham","37157","FALSE","FALSE","America/New_York"
-"27050","36.23598","-80.40128","Tobaccoville","NC","North Carolina","TRUE","","3811","59.1","37067","Forsyth","{""37067"": ""84"", ""37169"": ""16""}","Forsyth|Stokes","37067|37169","FALSE","FALSE","America/New_York"
-"27051","36.18762","-80.16052","Walkertown","NC","North Carolina","TRUE","","7641","160.6","37067","Forsyth","{""37067"": ""100""}","Forsyth","37067","FALSE","FALSE","America/New_York"
-"27052","36.32615","-80.15436","Walnut Cove","NC","North Carolina","TRUE","","10383","38.2","37169","Stokes","{""37169"": ""87.7"", ""37067"": ""12.3""}","Stokes|Forsyth","37169|37067","FALSE","FALSE","America/New_York"
-"27053","36.47279","-80.34823","Westfield","NC","North Carolina","TRUE","","3233","18.5","37169","Stokes","{""37169"": ""91.75"", ""37171"": ""8.25""}","Stokes|Surry","37169|37171","FALSE","FALSE","America/New_York"
-"27054","35.79245","-80.5984","Woodleaf","NC","North Carolina","TRUE","","2725","36.1","37159","Rowan","{""37159"": ""100""}","Rowan","37159","FALSE","FALSE","America/New_York"
-"27055","36.11345","-80.6337","Yadkinville","NC","North Carolina","TRUE","","13145","47.4","37197","Yadkin","{""37197"": ""99.39"", ""37097"": ""0.37"", ""37059"": ""0.24""}","Yadkin|Iredell|Davie","37197|37097|37059","FALSE","FALSE","America/New_York"
-"27101","36.11173","-80.19857","Winston Salem","NC","North Carolina","TRUE","","19713","596.2","37067","Forsyth","{""37067"": ""100""}","Forsyth","37067","FALSE","FALSE","America/New_York"
-"27103","36.05798","-80.32147","Winston Salem","NC","North Carolina","TRUE","","34688","722.0","37067","Forsyth","{""37067"": ""100""}","Forsyth","37067","FALSE","FALSE","America/New_York"
-"27104","36.09482","-80.3239","Winston Salem","NC","North Carolina","TRUE","","28402","889.4","37067","Forsyth","{""37067"": ""100""}","Forsyth","37067","FALSE","FALSE","America/New_York"
-"27105","36.16283","-80.23476","Winston Salem","NC","North Carolina","TRUE","","40134","460.5","37067","Forsyth","{""37067"": ""100""}","Forsyth","37067","FALSE","FALSE","America/New_York"
-"27106","36.14292","-80.32263","Winston Salem","NC","North Carolina","TRUE","","48709","656.5","37067","Forsyth","{""37067"": ""100""}","Forsyth","37067","FALSE","FALSE","America/New_York"
-"27107","36.01471","-80.1783","Winston Salem","NC","North Carolina","TRUE","","48000","284.8","37067","Forsyth","{""37067"": ""73.47"", ""37057"": ""26.53""}","Forsyth|Davidson","37067|37057","FALSE","FALSE","America/New_York"
-"27109","36.13391","-80.27798","Winston Salem","NC","North Carolina","TRUE","","2661","5262.1","37067","Forsyth","{""37067"": ""100""}","Forsyth","37067","FALSE","FALSE","America/New_York"
-"27110","36.08926","-80.22497","Winston Salem","NC","North Carolina","TRUE","","2723","5573.6","37067","Forsyth","{""37067"": ""100""}","Forsyth","37067","FALSE","FALSE","America/New_York"
-"27127","36.01992","-80.27894","Winston Salem","NC","North Carolina","TRUE","","40511","525.6","37067","Forsyth","{""37067"": ""87.9"", ""37057"": ""12.1""}","Forsyth|Davidson","37067|37057","FALSE","FALSE","America/New_York"
-"27201","36.03424","-79.48485","Alamance","NC","North Carolina","TRUE","","66","192.9","37001","Alamance","{""37001"": ""100""}","Alamance","37001","FALSE","FALSE","America/New_York"
-"27203","35.73221","-79.7893","Asheboro","NC","North Carolina","TRUE","","20983","370.3","37151","Randolph","{""37151"": ""100""}","Randolph","37151","FALSE","FALSE","America/New_York"
-"27205","35.63956","-79.85091","Asheboro","NC","North Carolina","TRUE","","34805","60.1","37151","Randolph","{""37151"": ""100""}","Randolph","37151","FALSE","FALSE","America/New_York"
-"27207","35.60548","-79.39299","Bear Creek","NC","North Carolina","TRUE","","3227","14.7","37037","Chatham","{""37037"": ""100""}","Chatham","37037","FALSE","FALSE","America/New_York"
-"27208","35.56282","-79.54294","Bennett","NC","North Carolina","TRUE","","1721","17.1","37037","Chatham","{""37037"": ""53.4"", ""37151"": ""34.31"", ""37125"": ""12.29""}","Chatham|Randolph|Moore","37037|37151|37125","FALSE","FALSE","America/New_York"
-"27209","35.34314","-79.7508","Biscoe","NC","North Carolina","TRUE","","4584","38.8","37123","Montgomery","{""37123"": ""92.22"", ""37125"": ""7.78""}","Montgomery|Moore","37123|37125","FALSE","FALSE","America/New_York"
-"27212","36.46058","-79.28064","Blanch","NC","North Carolina","TRUE","","2196","17.5","37033","Caswell","{""37033"": ""100""}","Caswell","37033","FALSE","FALSE","America/New_York"
-"27214","36.21252","-79.67859","Browns Summit","NC","North Carolina","TRUE","","11825","94.9","37081","Guilford","{""37081"": ""95.55"", ""37157"": ""4.45""}","Guilford|Rockingham","37081|37157","FALSE","FALSE","America/New_York"
-"27215","36.03178","-79.48892","Burlington","NC","North Carolina","TRUE","","42331","262.6","37001","Alamance","{""37001"": ""96.32"", ""37081"": ""3.68""}","Alamance|Guilford","37001|37081","FALSE","FALSE","America/New_York"
-"27217","36.19274","-79.38335","Burlington","NC","North Carolina","TRUE","","37099","116.3","37001","Alamance","{""37001"": ""96.9"", ""37033"": ""3.1""}","Alamance|Caswell","37001|37033","FALSE","FALSE","America/New_York"
-"27229","35.25024","-79.79754","Candor","NC","North Carolina","TRUE","","3484","15.3","37123","Montgomery","{""37123"": ""100""}","Montgomery","37123","FALSE","FALSE","America/New_York"
-"27231","36.20296","-79.16981","Cedar Grove","NC","North Carolina","TRUE","","2020","21.5","37135","Orange","{""37135"": ""100""}","Orange","37135","FALSE","FALSE","America/New_York"
-"27233","35.88702","-79.69957","Climax","NC","North Carolina","TRUE","","4096","64.6","37151","Randolph","{""37151"": ""62.24"", ""37081"": ""37.76""}","Randolph|Guilford","37151|37081","FALSE","FALSE","America/New_York"
-"27235","36.0953","-80.00887","Colfax","NC","North Carolina","TRUE","","4443","126.6","37081","Guilford","{""37081"": ""100""}","Guilford","37081","FALSE","FALSE","America/New_York"
-"27239","35.60758","-80.08959","Denton","NC","North Carolina","TRUE","","9562","24.5","37057","Davidson","{""37057"": ""73.4"", ""37151"": ""26.6""}","Davidson|Randolph","37057|37151","FALSE","FALSE","America/New_York"
-"27242","35.33052","-79.63977","Eagle Springs","NC","North Carolina","TRUE","","1366","9.8","37125","Moore","{""37125"": ""100""}","Moore","37125","FALSE","FALSE","America/New_York"
-"27243","36.078","-79.19495","Efland","NC","North Carolina","TRUE","","4369","42.6","37135","Orange","{""37135"": ""100""}","Orange","37135","FALSE","FALSE","America/New_York"
-"27244","36.21011","-79.48778","Elon","NC","North Carolina","TRUE","","16036","122.7","37001","Alamance","{""37001"": ""89.44"", ""37033"": ""7.96"", ""37081"": ""2.6""}","Alamance|Caswell|Guilford","37001|37033|37081","FALSE","FALSE","America/New_York"
-"27248","35.78777","-79.70968","Franklinville","NC","North Carolina","TRUE","","3555","39.8","37151","Randolph","{""37151"": ""100""}","Randolph","37151","FALSE","FALSE","America/New_York"
-"27249","36.1574","-79.5819","Gibsonville","NC","North Carolina","TRUE","","11882","79.5","37081","Guilford","{""37081"": ""67.34"", ""37001"": ""27.04"", ""37033"": ""4.86"", ""37157"": ""0.76""}","Guilford|Alamance|Caswell|Rockingham","37081|37001|37033|37157","FALSE","FALSE","America/New_York"
-"27252","35.56417","-79.34949","Goldston","NC","North Carolina","TRUE","","1669","15.0","37037","Chatham","{""37037"": ""100""}","Chatham","37037","FALSE","FALSE","America/New_York"
-"27253","35.96166","-79.34546","Graham","NC","North Carolina","TRUE","","30573","134.0","37001","Alamance","{""37001"": ""100""}","Alamance","37001","FALSE","FALSE","America/New_York"
-"27258","36.03624","-79.32597","Haw River","NC","North Carolina","TRUE","","7370","167.2","37001","Alamance","{""37001"": ""100""}","Alamance","37001","FALSE","FALSE","America/New_York"
-"27260","35.95396","-79.98833","High Point","NC","North Carolina","TRUE","","25505","810.5","37081","Guilford","{""37081"": ""98.9"", ""37151"": ""1.1""}","Guilford|Randolph","37081|37151","FALSE","FALSE","America/New_York"
-"27262","35.96231","-80.03839","High Point","NC","North Carolina","TRUE","","24510","719.1","37081","Guilford","{""37081"": ""93.63"", ""37057"": ""6.37""}","Guilford|Davidson","37081|37057","FALSE","FALSE","America/New_York"
-"27263","35.90928","-79.93796","High Point","NC","North Carolina","TRUE","","21886","216.7","37151","Randolph","{""37151"": ""67.94"", ""37081"": ""32.06""}","Randolph|Guilford","37151|37081","FALSE","FALSE","America/New_York"
-"27265","36.00956","-80.03052","High Point","NC","North Carolina","TRUE","","51477","472.2","37081","Guilford","{""37081"": ""82.64"", ""37057"": ""16.35"", ""37067"": ""1.01""}","Guilford|Davidson|Forsyth","37081|37057|37067","FALSE","FALSE","America/New_York"
-"27278","36.08601","-79.08617","Hillsborough","NC","North Carolina","TRUE","","26884","102.4","37135","Orange","{""37135"": ""94.21"", ""37063"": ""5.79""}","Orange|Durham","37135|37063","FALSE","FALSE","America/New_York"
-"27281","35.18609","-79.62675","Jackson Springs","NC","North Carolina","TRUE","","3433","25.5","37125","Moore","{""37125"": ""54.45"", ""37123"": ""45.55""}","Moore|Montgomery","37125|37123","FALSE","FALSE","America/New_York"
-"27282","35.9957","-79.92824","Jamestown","NC","North Carolina","TRUE","","17090","478.9","37081","Guilford","{""37081"": ""100""}","Guilford","37081","FALSE","FALSE","America/New_York"
-"27283","35.95195","-79.63724","Julian","NC","North Carolina","TRUE","","3194","46.8","37081","Guilford","{""37081"": ""97.61"", ""37151"": ""2.39""}","Guilford|Randolph","37081|37151","FALSE","FALSE","America/New_York"
-"27284","36.11847","-80.07738","Kernersville","NC","North Carolina","TRUE","","55489","268.1","37067","Forsyth","{""37067"": ""94.06"", ""37081"": ""4.93"", ""37057"": ""1.01""}","Forsyth|Guilford|Davidson","37067|37081|37057","FALSE","FALSE","America/New_York"
-"27288","36.4991","-79.74662","Eden","NC","North Carolina","TRUE","","23436","133.6","37157","Rockingham","{""37157"": ""100""}","Rockingham","37157","FALSE","FALSE","America/New_York"
-"27291","36.40204","-79.16604","Leasburg","NC","North Carolina","TRUE","","1616","12.3","37033","Caswell","{""37033"": ""59.75"", ""37145"": ""40.25""}","Caswell|Person","37033|37145","FALSE","FALSE","America/New_York"
-"27292","35.73451","-80.20924","Lexington","NC","North Carolina","TRUE","","39360","104.5","37057","Davidson","{""37057"": ""99.85"", ""37151"": ""0.15""}","Davidson|Randolph","37057|37151","FALSE","FALSE","America/New_York"
-"27295","35.86839","-80.31509","Lexington","NC","North Carolina","TRUE","","38255","115.8","37057","Davidson","{""37057"": ""100""}","Davidson","37057","FALSE","FALSE","America/New_York"
-"27298","35.88583","-79.56712","Liberty","NC","North Carolina","TRUE","","10925","44.4","37151","Randolph","{""37151"": ""60.28"", ""37001"": ""23.81"", ""37081"": ""15.55"", ""37037"": ""0.36""}","Randolph|Alamance|Guilford|Chatham","37151|37001|37081|37037","FALSE","FALSE","America/New_York"
-"27299","35.75219","-80.38593","Linwood","NC","North Carolina","TRUE","","6172","86.6","37057","Davidson","{""37057"": ""100""}","Davidson","37057","FALSE","FALSE","America/New_York"
-"27301","36.11377","-79.66684","McLeansville","NC","North Carolina","TRUE","","9358","108.3","37081","Guilford","{""37081"": ""100""}","Guilford","37081","FALSE","FALSE","America/New_York"
-"27302","36.14042","-79.26434","Mebane","NC","North Carolina","TRUE","","31280","103.4","37001","Alamance","{""37001"": ""68.81"", ""37135"": ""27.82"", ""37033"": ""3.38""}","Alamance|Orange|Caswell","37001|37135|37033","FALSE","FALSE","America/New_York"
-"27305","36.5195","-79.22876","Milton","NC","North Carolina","TRUE","","1624","23.4","37033","Caswell","{""37033"": ""97.74"", ""37145"": ""2.26""}","Caswell|Person","37033|37145","FALSE","FALSE","America/New_York"
-"27306","35.21538","-79.97525","Mount Gilead","NC","North Carolina","TRUE","","6428","14.2","37123","Montgomery","{""37123"": ""94.82"", ""37153"": ""5.18""}","Montgomery|Richmond","37123|37153","FALSE","FALSE","America/New_York"
-"27310","36.17268","-79.99314","Oak Ridge","NC","North Carolina","TRUE","","7253","174.2","37081","Guilford","{""37081"": ""100""}","Guilford","37081","FALSE","FALSE","America/New_York"
-"27311","36.48314","-79.47459","Pelham","NC","North Carolina","TRUE","","3521","29.4","37033","Caswell","{""37033"": ""84.3"", ""37157"": ""15.7""}","Caswell|Rockingham","37033|37157","FALSE","FALSE","America/New_York"
-"27312","35.75676","-79.19671","Pittsboro","NC","North Carolina","TRUE","","20508","46.6","37037","Chatham","{""37037"": ""99.71"", ""37001"": ""0.29""}","Chatham|Alamance","37037|37001","FALSE","FALSE","America/New_York"
-"27313","35.929","-79.75182","Pleasant Garden","NC","North Carolina","TRUE","","6733","91.6","37081","Guilford","{""37081"": ""67.05"", ""37151"": ""32.95""}","Guilford|Randolph","37081|37151","FALSE","FALSE","America/New_York"
-"27314","36.29169","-79.18699","Prospect Hill","NC","North Carolina","TRUE","","956","14.2","37033","Caswell","{""37033"": ""100""}","Caswell","37033","FALSE","FALSE","America/New_York"
-"27315","36.5052","-79.39276","Providence","NC","North Carolina","TRUE","","1763","25.8","37033","Caswell","{""37033"": ""100""}","Caswell","37033","FALSE","FALSE","America/New_York"
-"27316","35.68986","-79.62225","Ramseur","NC","North Carolina","TRUE","","8369","46.7","37151","Randolph","{""37151"": ""100""}","Randolph","37151","FALSE","FALSE","America/New_York"
-"27317","35.83746","-79.80283","Randleman","NC","North Carolina","TRUE","","16169","116.3","37151","Randolph","{""37151"": ""96.86"", ""37081"": ""3.14""}","Randolph|Guilford","37151|37081","FALSE","FALSE","America/New_York"
-"27320","36.34247","-79.65758","Reidsville","NC","North Carolina","TRUE","","38997","59.8","37157","Rockingham","{""37157"": ""94.19"", ""37033"": ""5.26"", ""37081"": ""0.55""}","Rockingham|Caswell|Guilford","37157|37033|37081","FALSE","FALSE","America/New_York"
-"27325","35.46321","-79.57477","Robbins","NC","North Carolina","TRUE","","7836","34.3","37125","Moore","{""37125"": ""99.43"", ""37151"": ""0.57""}","Moore|Randolph","37125|37151","FALSE","FALSE","America/New_York"
-"27326","36.45343","-79.55636","Ruffin","NC","North Carolina","TRUE","","2900","15.9","37157","Rockingham","{""37157"": ""66.94"", ""37033"": ""33.06""}","Rockingham|Caswell","37157|37033","FALSE","FALSE","America/New_York"
-"27330","35.51635","-79.18718","Sanford","NC","North Carolina","TRUE","","40121","75.3","37105","Lee","{""37105"": ""97.49"", ""37037"": ""2.04"", ""37125"": ""0.45"", ""37085"": ""0.03""}","Lee|Chatham|Moore|Harnett","37105|37037|37125|37085","FALSE","FALSE","America/New_York"
-"27332","35.37931","-79.13603","Sanford","NC","North Carolina","TRUE","","30743","113.0","37105","Lee","{""37105"": ""60.22"", ""37085"": ""39.78""}","Lee|Harnett","37105|37085","FALSE","FALSE","America/New_York"
-"27340","35.94596","-79.31719","Saxapahaw","NC","North Carolina","TRUE","","43","293.8","37001","Alamance","{""37001"": ""100""}","Alamance","37001","FALSE","FALSE","America/New_York"
-"27341","35.52466","-79.70201","Seagrove","NC","North Carolina","TRUE","","4810","19.6","37151","Randolph","{""37151"": ""65.07"", ""37125"": ""24.63"", ""37123"": ""10.3""}","Randolph|Moore|Montgomery","37151|37125|37123","FALSE","FALSE","America/New_York"
-"27343","36.50309","-79.09172","Semora","NC","North Carolina","TRUE","","1772","14.9","37145","Person","{""37145"": ""71.33"", ""37033"": ""28.67""}","Person|Caswell","37145|37033","FALSE","FALSE","America/New_York"
-"27344","35.72929","-79.43188","Siler City","NC","North Carolina","TRUE","","19116","44.5","37037","Chatham","{""37037"": ""98.4"", ""37151"": ""1.6""}","Chatham|Randolph","37037|37151","FALSE","FALSE","America/New_York"
-"27349","35.89843","-79.41629","Snow Camp","NC","North Carolina","TRUE","","5825","36.9","37001","Alamance","{""37001"": ""94.18"", ""37037"": ""5.82""}","Alamance|Chatham","37001|37037","FALSE","FALSE","America/New_York"
-"27350","35.80575","-79.88925","Sophia","NC","North Carolina","TRUE","","6412","66.5","37151","Randolph","{""37151"": ""100""}","Randolph","37151","FALSE","FALSE","America/New_York"
-"27355","35.78963","-79.56858","Staley","NC","North Carolina","TRUE","","2394","26.8","37151","Randolph","{""37151"": ""79.4"", ""37037"": ""20.6""}","Randolph|Chatham","37151|37037","FALSE","FALSE","America/New_York"
-"27356","35.43919","-79.79799","Star","NC","North Carolina","TRUE","","2759","18.9","37123","Montgomery","{""37123"": ""90.55"", ""37125"": ""9.45""}","Montgomery|Moore","37123|37125","FALSE","FALSE","America/New_York"
-"27357","36.26818","-79.97697","Stokesdale","NC","North Carolina","TRUE","","8901","81.1","37157","Rockingham","{""37157"": ""55.64"", ""37081"": ""44.27"", ""37169"": ""0.09""}","Rockingham|Guilford|Stokes","37157|37081|37169","FALSE","FALSE","America/New_York"
-"27358","36.22808","-79.87975","Summerfield","NC","North Carolina","TRUE","","15028","106.5","37081","Guilford","{""37081"": ""82.31"", ""37157"": ""17.69""}","Guilford|Rockingham","37081|37157","FALSE","FALSE","America/New_York"
-"27360","35.85771","-80.09978","Thomasville","NC","North Carolina","TRUE","","45974","201.4","37057","Davidson","{""37057"": ""92.32"", ""37151"": ""7.68""}","Davidson|Randolph","37057|37151","FALSE","FALSE","America/New_York"
-"27370","35.81079","-79.99171","Trinity","NC","North Carolina","TRUE","","14409","92.1","37151","Randolph","{""37151"": ""100""}","Randolph","37151","FALSE","FALSE","America/New_York"
-"27371","35.42018","-79.95884","Troy","NC","North Carolina","TRUE","","8431","20.1","37123","Montgomery","{""37123"": ""97.43"", ""37151"": ""2.57""}","Montgomery|Randolph","37123|37151","FALSE","FALSE","America/New_York"
-"27376","35.25454","-79.53539","West End","NC","North Carolina","TRUE","","9802","54.3","37125","Moore","{""37125"": ""100""}","Moore","37125","FALSE","FALSE","America/New_York"
-"27377","36.03823","-79.60259","Whitsett","NC","North Carolina","TRUE","","8612","130.3","37081","Guilford","{""37081"": ""100""}","Guilford","37081","FALSE","FALSE","America/New_York"
-"27379","36.3771","-79.34624","Yanceyville","NC","North Carolina","TRUE","","5246","23.7","37033","Caswell","{""37033"": ""100""}","Caswell","37033","FALSE","FALSE","America/New_York"
-"27401","36.07011","-79.76582","Greensboro","NC","North Carolina","TRUE","","23388","1454.2","37081","Guilford","{""37081"": ""100""}","Guilford","37081","FALSE","FALSE","America/New_York"
-"27403","36.0643","-79.82474","Greensboro","NC","North Carolina","TRUE","","22867","1464.9","37081","Guilford","{""37081"": ""100""}","Guilford","37081","FALSE","FALSE","America/New_York"
-"27405","36.11603","-79.7354","Greensboro","NC","North Carolina","TRUE","","48879","607.6","37081","Guilford","{""37081"": ""100""}","Guilford","37081","FALSE","FALSE","America/New_York"
-"27406","35.99912","-79.76565","Greensboro","NC","North Carolina","TRUE","","63199","351.3","37081","Guilford","{""37081"": ""100""}","Guilford","37081","FALSE","FALSE","America/New_York"
-"27407","36.0098","-79.87648","Greensboro","NC","North Carolina","TRUE","","51900","660.5","37081","Guilford","{""37081"": ""100""}","Guilford","37081","FALSE","FALSE","America/New_York"
-"27408","36.1031","-79.81418","Greensboro","NC","North Carolina","TRUE","","18323","926.9","37081","Guilford","{""37081"": ""100""}","Guilford","37081","FALSE","FALSE","America/New_York"
-"27409","36.09381","-79.94467","Greensboro","NC","North Carolina","TRUE","","17223","342.1","37081","Guilford","{""37081"": ""100""}","Guilford","37081","FALSE","FALSE","America/New_York"
-"27410","36.11785","-79.89434","Greensboro","NC","North Carolina","TRUE","","55707","657.8","37081","Guilford","{""37081"": ""100""}","Guilford","37081","FALSE","FALSE","America/New_York"
-"27455","36.18377","-79.80763","Greensboro","NC","North Carolina","TRUE","","28791","374.5","37081","Guilford","{""37081"": ""100""}","Guilford","37081","FALSE","FALSE","America/New_York"
-"27501","35.48576","-78.68494","Angier","NC","North Carolina","TRUE","","21055","132.9","37085","Harnett","{""37085"": ""69.36"", ""37101"": ""29.24"", ""37183"": ""1.4""}","Harnett|Johnston|Wake","37085|37101|37183","FALSE","FALSE","America/New_York"
-"27502","35.7201","-78.91507","Apex","NC","North Carolina","TRUE","","41455","565.0","37183","Wake","{""37183"": ""99.72"", ""37037"": ""0.28""}","Wake|Chatham","37183|37037","FALSE","FALSE","America/New_York"
-"27503","36.15926","-78.8778","Bahama","NC","North Carolina","TRUE","","6377","67.4","37063","Durham","{""37063"": ""100""}","Durham","37063","FALSE","FALSE","America/New_York"
-"27504","35.39897","-78.51901","Benson","NC","North Carolina","TRUE","","15593","66.6","37101","Johnston","{""37101"": ""96.3"", ""37085"": ""3.7""}","Johnston|Harnett","37101|37085","FALSE","FALSE","America/New_York"
-"27505","35.4207","-79.002","Broadway","NC","North Carolina","TRUE","","6943","47.2","37085","Harnett","{""37085"": ""78.24"", ""37105"": ""21.76""}","Harnett|Lee","37085|37105","FALSE","FALSE","America/New_York"
-"27507","36.51271","-78.56306","Bullock","NC","North Carolina","TRUE","","1930","15.6","37077","Granville","{""37077"": ""87.51"", ""37181"": ""12.49""}","Granville|Vance","37077|37181","FALSE","FALSE","America/New_York"
-"27508","35.95771","-78.24979","Bunn","NC","North Carolina","TRUE","","1413","52.2","37069","Franklin","{""37069"": ""100""}","Franklin","37069","FALSE","FALSE","America/New_York"
-"27509","36.12849","-78.7758","Butner","NC","North Carolina","TRUE","","6070","156.6","37077","Granville","{""37077"": ""100""}","Granville","37077","FALSE","FALSE","America/New_York"
-"27510","35.91585","-79.08193","Carrboro","NC","North Carolina","TRUE","","15117","1563.8","37135","Orange","{""37135"": ""100""}","Orange","37135","FALSE","FALSE","America/New_York"
-"27511","35.76325","-78.78426","Cary","NC","North Carolina","TRUE","","34078","1121.9","37183","Wake","{""37183"": ""100""}","Wake","37183","FALSE","FALSE","America/New_York"
-"27513","35.80222","-78.80271","Cary","NC","North Carolina","TRUE","","45542","1112.5","37183","Wake","{""37183"": ""100""}","Wake","37183","FALSE","FALSE","America/New_York"
-"27514","35.96717","-79.04442","Chapel Hill","NC","North Carolina","TRUE","","33208","659.5","37135","Orange","{""37135"": ""100""}","Orange","37135","FALSE","FALSE","America/New_York"
-"27516","35.91251","-79.15137","Chapel Hill","NC","North Carolina","TRUE","","43036","178.7","37135","Orange","{""37135"": ""91.33"", ""37037"": ""8.67""}","Orange|Chatham","37135|37037","FALSE","FALSE","America/New_York"
-"27517","35.85024","-79.02484","Chapel Hill","NC","North Carolina","TRUE","","25355","213.0","37135","Orange","{""37135"": ""40.53"", ""37037"": ""35.31"", ""37063"": ""24.17""}","Orange|Chatham|Durham","37135|37037|37063","FALSE","FALSE","America/New_York"
-"27518","35.72981","-78.77353","Cary","NC","North Carolina","TRUE","","20102","807.0","37183","Wake","{""37183"": ""100""}","Wake","37183","FALSE","FALSE","America/New_York"
-"27519","35.80708","-78.88695","Cary","NC","North Carolina","TRUE","","56482","1003.1","37183","Wake","{""37183"": ""96.34"", ""37037"": ""3.66""}","Wake|Chatham","37183|37037","FALSE","FALSE","America/New_York"
-"27520","35.61427","-78.47187","Clayton","NC","North Carolina","TRUE","","42387","224.2","37101","Johnston","{""37101"": ""97.34"", ""37183"": ""2.66""}","Johnston|Wake","37101|37183","FALSE","FALSE","America/New_York"
-"27521","35.41365","-78.65924","Coats","NC","North Carolina","TRUE","","6366","94.7","37085","Harnett","{""37085"": ""100""}","Harnett","37085","FALSE","FALSE","America/New_York"
-"27522","36.10623","-78.67393","Creedmoor","NC","North Carolina","TRUE","","12552","67.0","37077","Granville","{""37077"": ""96.99"", ""37183"": ""3.01""}","Granville|Wake","37077|37183","FALSE","FALSE","America/New_York"
-"27523","35.77227","-78.96053","Apex","NC","North Carolina","TRUE","","12441","116.1","37183","Wake","{""37183"": ""77.32"", ""37037"": ""22.68""}","Wake|Chatham","37183|37037","FALSE","FALSE","America/New_York"
-"27524","35.39541","-78.38191","Four Oaks","NC","North Carolina","TRUE","","13675","40.1","37101","Johnston","{""37101"": ""97.58"", ""37191"": ""2.42""}","Johnston|Wayne","37101|37191","FALSE","FALSE","America/New_York"
-"27525","36.11841","-78.46803","Franklinton","NC","North Carolina","TRUE","","14819","61.8","37069","Franklin","{""37069"": ""67.55"", ""37077"": ""32.45""}","Franklin|Granville","37069|37077","FALSE","FALSE","America/New_York"
-"27526","35.54137","-78.82801","Fuquay Varina","NC","North Carolina","TRUE","","48581","193.5","37183","Wake","{""37183"": ""79.62"", ""37085"": ""20.38""}","Wake|Harnett","37183|37085","FALSE","FALSE","America/New_York"
-"27527","35.65778","-78.38384","Clayton","NC","North Carolina","TRUE","","25337","223.7","37101","Johnston","{""37101"": ""100""}","Johnston","37101","FALSE","FALSE","America/New_York"
-"27529","35.65233","-78.58172","Garner","NC","North Carolina","TRUE","","50683","338.6","37183","Wake","{""37183"": ""74.82"", ""37101"": ""25.18""}","Wake|Johnston","37183|37101","FALSE","FALSE","America/New_York"
-"27530","35.36899","-78.07487","Goldsboro","NC","North Carolina","TRUE","","38940","142.2","37191","Wayne","{""37191"": ""100""}","Wayne","37191","FALSE","FALSE","America/New_York"
-"27531","35.34299","-77.96444","Goldsboro","NC","North Carolina","TRUE","","778","83.8","37191","Wayne","{""37191"": ""100""}","Wayne","37191","FALSE","FALSE","America/New_York"
-"27534","35.37132","-77.90759","Goldsboro","NC","North Carolina","TRUE","","32492","173.4","37191","Wayne","{""37191"": ""100""}","Wayne","37191","FALSE","FALSE","America/New_York"
-"27536","36.32669","-78.40883","Henderson","NC","North Carolina","TRUE","","16522","499.5","37181","Vance","{""37181"": ""100""}","Vance","37181","FALSE","FALSE","America/New_York"
-"27537","36.3601","-78.39039","Henderson","NC","North Carolina","TRUE","","23736","48.0","37181","Vance","{""37181"": ""94.13"", ""37069"": ""3.75"", ""37185"": ""2.11""}","Vance|Franklin|Warren","37181|37069|37185","FALSE","FALSE","America/New_York"
-"27539","35.67672","-78.81397","Apex","NC","North Carolina","TRUE","","23970","293.4","37183","Wake","{""37183"": ""100""}","Wake","37183","FALSE","FALSE","America/New_York"
-"27540","35.61215","-78.86968","Holly Springs","NC","North Carolina","TRUE","","39675","329.4","37183","Wake","{""37183"": ""96.42"", ""37085"": ""3.55"", ""37037"": ""0.02""}","Wake|Harnett|Chatham","37183|37085|37037","FALSE","FALSE","America/New_York"
-"27541","36.26325","-79.08637","Hurdle Mills","NC","North Carolina","TRUE","","3915","21.8","37145","Person","{""37145"": ""66.18"", ""37135"": ""33.4"", ""37033"": ""0.42""}","Person|Orange|Caswell","37145|37135|37033","FALSE","FALSE","America/New_York"
-"27542","35.61826","-78.14073","Kenly","NC","North Carolina","TRUE","","9288","41.7","37101","Johnston","{""37101"": ""70.29"", ""37195"": ""22.15"", ""37191"": ""7.56""}","Johnston|Wilson|Wayne","37101|37195|37191","FALSE","FALSE","America/New_York"
-"27544","36.20052","-78.44077","Kittrell","NC","North Carolina","TRUE","","5131","32.5","37181","Vance","{""37181"": ""66.8"", ""37069"": ""21.94"", ""37077"": ""11.26""}","Vance|Franklin|Granville","37181|37069|37077","FALSE","FALSE","America/New_York"
-"27545","35.78352","-78.4778","Knightdale","NC","North Carolina","TRUE","","28676","381.9","37183","Wake","{""37183"": ""100""}","Wake","37183","FALSE","FALSE","America/New_York"
-"27546","35.38386","-78.86807","Lillington","NC","North Carolina","TRUE","","21129","65.9","37085","Harnett","{""37085"": ""100""}","Harnett","37085","FALSE","FALSE","America/New_York"
-"27549","36.10367","-78.23827","Louisburg","NC","North Carolina","TRUE","","26716","42.7","37069","Franklin","{""37069"": ""100""}","Franklin","37069","FALSE","FALSE","America/New_York"
-"27551","36.43195","-78.05164","Macon","NC","North Carolina","TRUE","","1684","7.7","37185","Warren","{""37185"": ""100""}","Warren","37185","FALSE","FALSE","America/New_York"
-"27553","36.48362","-78.307","Manson","NC","North Carolina","TRUE","","2725","28.4","37185","Warren","{""37185"": ""69.73"", ""37181"": ""30.27""}","Warren|Vance","37185|37181","FALSE","FALSE","America/New_York"
-"27555","35.56246","-78.20423","Micro","NC","North Carolina","TRUE","","672","699.3","37101","Johnston","{""37101"": ""100""}","Johnston","37101","FALSE","FALSE","America/New_York"
-"27556","36.40839","-78.31478","Middleburg","NC","North Carolina","TRUE","","238","48.1","37181","Vance","{""37181"": ""100""}","Vance","37181","FALSE","FALSE","America/New_York"
-"27557","35.77609","-78.19922","Middlesex","NC","North Carolina","TRUE","","8205","51.5","37127","Nash","{""37127"": ""56.81"", ""37101"": ""42.11"", ""37195"": ""1.08""}","Nash|Johnston|Wilson","37127|37101|37195","FALSE","FALSE","America/New_York"
-"27559","35.63173","-79.10088","Moncure","NC","North Carolina","TRUE","","2622","20.9","37037","Chatham","{""37037"": ""100""}","Chatham","37037","FALSE","FALSE","America/New_York"
-"27560","35.85922","-78.8271","Morrisville","NC","North Carolina","TRUE","","35800","472.7","37183","Wake","{""37183"": ""88.14"", ""37063"": ""11.86""}","Wake|Durham","37183|37063","FALSE","FALSE","America/New_York"
-"27562","35.64129","-78.98812","New Hill","NC","North Carolina","TRUE","","2149","15.4","37037","Chatham","{""37037"": ""56.19"", ""37183"": ""43.81""}","Chatham|Wake","37037|37183","FALSE","FALSE","America/New_York"
-"27563","36.42886","-78.23717","Norlina","NC","North Carolina","TRUE","","4270","23.3","37185","Warren","{""37185"": ""97.84"", ""37181"": ""2.16""}","Warren|Vance","37185|37181","FALSE","FALSE","America/New_York"
-"27565","36.36263","-78.65005","Oxford","NC","North Carolina","TRUE","","25127","29.2","37077","Granville","{""37077"": ""96.85"", ""37181"": ""2.71"", ""37145"": ""0.44""}","Granville|Vance|Person","37077|37181|37145","FALSE","FALSE","America/New_York"
-"27568","35.5089","-78.24388","Pine Level","NC","North Carolina","TRUE","","607","998.2","37101","Johnston","{""37101"": ""100""}","Johnston","37101","FALSE","FALSE","America/New_York"
-"27569","35.42912","-78.17608","Princeton","NC","North Carolina","TRUE","","7993","37.9","37101","Johnston","{""37101"": ""72.58"", ""37191"": ""27.42""}","Johnston|Wayne","37101|37191","FALSE","FALSE","America/New_York"
-"27571","35.92048","-78.45722","Rolesville","NC","North Carolina","TRUE","","7407","649.4","37183","Wake","{""37183"": ""100""}","Wake","37183","FALSE","FALSE","America/New_York"
-"27572","36.2491","-78.88452","Rougemont","NC","North Carolina","TRUE","","7081","26.6","37145","Person","{""37145"": ""36.6"", ""37063"": ""29.27"", ""37135"": ""27.47"", ""37077"": ""6.66""}","Person|Durham|Orange|Granville","37145|37063|37135|37077","FALSE","FALSE","America/New_York"
-"27573","36.39672","-78.97607","Roxboro","NC","North Carolina","TRUE","","11391","246.6","37145","Person","{""37145"": ""100""}","Person","37145","FALSE","FALSE","America/New_York"
-"27574","36.43041","-78.94505","Roxboro","NC","North Carolina","TRUE","","14036","28.9","37145","Person","{""37145"": ""100""}","Person","37145","FALSE","FALSE","America/New_York"
-"27576","35.58282","-78.2576","Selma","NC","North Carolina","TRUE","","18222","84.6","37101","Johnston","{""37101"": ""100""}","Johnston","37101","FALSE","FALSE","America/New_York"
-"27577","35.49187","-78.34385","Smithfield","NC","North Carolina","TRUE","","26875","99.6","37101","Johnston","{""37101"": ""100""}","Johnston","37101","FALSE","FALSE","America/New_York"
-"27581","36.2013","-78.73072","Stem","NC","North Carolina","TRUE","","4612","51.8","37077","Granville","{""37077"": ""100""}","Granville","37077","FALSE","FALSE","America/New_York"
-"27582","36.46187","-78.5743","Stovall","NC","North Carolina","TRUE","","409","49.7","37077","Granville","{""37077"": ""100""}","Granville","37077","FALSE","FALSE","America/New_York"
-"27583","36.29509","-78.93614","Timberlake","NC","North Carolina","TRUE","","7073","59.0","37145","Person","{""37145"": ""97.46"", ""37135"": ""2.54""}","Person|Orange","37145|37135","FALSE","FALSE","America/New_York"
-"27587","35.98129","-78.55288","Wake Forest","NC","North Carolina","TRUE","","68491","252.7","37183","Wake","{""37183"": ""93.05"", ""37077"": ""3.62"", ""37069"": ""3.33""}","Wake|Granville|Franklin","37183|37077|37069","FALSE","FALSE","America/New_York"
-"27589","36.33759","-78.1291","Warrenton","NC","North Carolina","TRUE","","7938","17.6","37185","Warren","{""37185"": ""97.04"", ""37069"": ""2.96""}","Warren|Franklin","37185|37069","FALSE","FALSE","America/New_York"
-"27591","35.78485","-78.38605","Wendell","NC","North Carolina","TRUE","","20562","119.7","37183","Wake","{""37183"": ""80.33"", ""37101"": ""19.67""}","Wake|Johnston","37183|37101","FALSE","FALSE","America/New_York"
-"27592","35.55773","-78.67346","Willow Spring","NC","North Carolina","TRUE","","15972","148.1","37183","Wake","{""37183"": ""57.98"", ""37101"": ""41.8"", ""37085"": ""0.22""}","Wake|Johnston|Harnett","37183|37101|37085","FALSE","FALSE","America/New_York"
-"27596","36.01015","-78.44623","Youngsville","NC","North Carolina","TRUE","","18043","124.8","37069","Franklin","{""37069"": ""88.53"", ""37077"": ""7.13"", ""37183"": ""4.33""}","Franklin|Granville|Wake","37069|37077|37183","FALSE","FALSE","America/New_York"
-"27597","35.84098","-78.30021","Zebulon","NC","North Carolina","TRUE","","24691","77.8","37183","Wake","{""37183"": ""55.31"", ""37069"": ""25.22"", ""37101"": ""13.95"", ""37127"": ""5.52""}","Wake|Franklin|Johnston|Nash","37183|37069|37101|37127","FALSE","FALSE","America/New_York"
-"27601","35.77367","-78.63442","Raleigh","NC","North Carolina","TRUE","","10525","2264.6","37183","Wake","{""37183"": ""100""}","Wake","37183","FALSE","FALSE","America/New_York"
-"27603","35.66355","-78.66172","Raleigh","NC","North Carolina","TRUE","","54457","407.4","37183","Wake","{""37183"": ""96.87"", ""37101"": ""3.13""}","Wake|Johnston","37183|37101","FALSE","FALSE","America/New_York"
-"27604","35.81863","-78.55881","Raleigh","NC","North Carolina","TRUE","","48494","866.8","37183","Wake","{""37183"": ""100""}","Wake","37183","FALSE","FALSE","America/New_York"
-"27605","35.79067","-78.65459","Raleigh","NC","North Carolina","TRUE","","5990","2342.6","37183","Wake","{""37183"": ""100""}","Wake","37183","FALSE","FALSE","America/New_York"
-"27606","35.74046","-78.71762","Raleigh","NC","North Carolina","TRUE","","47478","739.1","37183","Wake","{""37183"": ""100""}","Wake","37183","FALSE","FALSE","America/New_York"
-"27607","35.81327","-78.72239","Raleigh","NC","North Carolina","TRUE","","28874","692.1","37183","Wake","{""37183"": ""100""}","Wake","37183","FALSE","FALSE","America/New_York"
-"27608","35.80903","-78.64731","Raleigh","NC","North Carolina","TRUE","","11203","1345.1","37183","Wake","{""37183"": ""100""}","Wake","37183","FALSE","FALSE","America/New_York"
-"27609","35.84328","-78.63332","Raleigh","NC","North Carolina","TRUE","","33575","1160.2","37183","Wake","{""37183"": ""100""}","Wake","37183","FALSE","FALSE","America/New_York"
-"27610","35.74598","-78.54647","Raleigh","NC","North Carolina","TRUE","","79924","722.3","37183","Wake","{""37183"": ""100""}","Wake","37183","FALSE","FALSE","America/New_York"
-"27612","35.85334","-78.71023","Raleigh","NC","North Carolina","TRUE","","39989","822.7","37183","Wake","{""37183"": ""100""}","Wake","37183","FALSE","FALSE","America/New_York"
-"27613","35.92531","-78.71143","Raleigh","NC","North Carolina","TRUE","","42324","664.4","37183","Wake","{""37183"": ""97.89"", ""37063"": ""2.11""}","Wake|Durham","37183|37063","FALSE","FALSE","America/New_York"
-"27614","35.94725","-78.61915","Raleigh","NC","North Carolina","TRUE","","32849","468.7","37183","Wake","{""37183"": ""100""}","Wake","37183","FALSE","FALSE","America/New_York"
-"27615","35.89798","-78.63612","Raleigh","NC","North Carolina","TRUE","","43950","877.8","37183","Wake","{""37183"": ""100""}","Wake","37183","FALSE","FALSE","America/New_York"
-"27616","35.86728","-78.53812","Raleigh","NC","North Carolina","TRUE","","55128","957.6","37183","Wake","{""37183"": ""100""}","Wake","37183","FALSE","FALSE","America/New_York"
-"27617","35.90726","-78.7717","Raleigh","NC","North Carolina","TRUE","","20281","935.9","37183","Wake","{""37183"": ""99.25"", ""37063"": ""0.75""}","Wake|Durham","37183|37063","FALSE","FALSE","America/New_York"
-"27701","35.99886","-78.89864","Durham","NC","North Carolina","TRUE","","23112","1686.9","37063","Durham","{""37063"": ""100""}","Durham","37063","FALSE","FALSE","America/New_York"
-"27703","35.96078","-78.80681","Durham","NC","North Carolina","TRUE","","53733","379.9","37063","Durham","{""37063"": ""100"", ""37183"": ""0""}","Durham|Wake","37063|37183","FALSE","FALSE","America/New_York"
-"27704","36.04174","-78.83035","Durham","NC","North Carolina","TRUE","","40392","387.0","37063","Durham","{""37063"": ""100""}","Durham","37063","FALSE","FALSE","America/New_York"
-"27705","36.02698","-78.98065","Durham","NC","North Carolina","TRUE","","49508","436.5","37063","Durham","{""37063"": ""90.43"", ""37135"": ""9.57""}","Durham|Orange","37063|37135","FALSE","FALSE","America/New_York"
-"27707","35.95474","-78.95486","Durham","NC","North Carolina","TRUE","","51414","932.3","37063","Durham","{""37063"": ""99.54"", ""37135"": ""0.46""}","Durham|Orange","37063|37135","FALSE","FALSE","America/New_York"
-"27709","35.92576","-78.83553","Durham","NC","North Carolina","TRUE","","1152","1138.3","37063","Durham","{""37063"": ""100""}","Durham","37063","FALSE","FALSE","America/New_York"
-"27712","36.09689","-78.90212","Durham","NC","North Carolina","TRUE","","21301","244.9","37063","Durham","{""37063"": ""100""}","Durham","37063","FALSE","FALSE","America/New_York"
-"27713","35.89497","-78.92368","Durham","NC","North Carolina","TRUE","","54348","643.9","37063","Durham","{""37063"": ""98.5"", ""37037"": ""1.5""}","Durham|Chatham","37063|37037","FALSE","FALSE","America/New_York"
-"27801","35.9155","-77.7361","Rocky Mount","NC","North Carolina","TRUE","","20065","111.4","37065","Edgecombe","{""37065"": ""100""}","Edgecombe","37065","FALSE","FALSE","America/New_York"
-"27803","35.89988","-77.85593","Rocky Mount","NC","North Carolina","TRUE","","17905","171.4","37127","Nash","{""37127"": ""96.23"", ""37195"": ""2.12"", ""37065"": ""1.64""}","Nash|Wilson|Edgecombe","37127|37195|37065","FALSE","FALSE","America/New_York"
-"27804","35.99039","-77.84674","Rocky Mount","NC","North Carolina","TRUE","","29519","269.5","37127","Nash","{""37127"": ""100""}","Nash","37127","FALSE","FALSE","America/New_York"
-"27805","36.20783","-77.08434","Aulander","NC","North Carolina","TRUE","","4243","14.8","37091","Hertford","{""37091"": ""50.7"", ""37015"": ""49.3""}","Hertford|Bertie","37091|37015","FALSE","FALSE","America/New_York"
-"27806","35.29727","-76.76526","Aurora","NC","North Carolina","TRUE","","2576","7.2","37013","Beaufort","{""37013"": ""100""}","Beaufort","37013","FALSE","FALSE","America/New_York"
-"27807","35.80665","-78.09352","Bailey","NC","North Carolina","TRUE","","6604","51.0","37127","Nash","{""37127"": ""94.3"", ""37195"": ""5.7""}","Nash|Wilson","37127|37195","FALSE","FALSE","America/New_York"
-"27808","35.47122","-76.76314","Bath","NC","North Carolina","TRUE","","2066","19.0","37013","Beaufort","{""37013"": ""100""}","Beaufort","37013","FALSE","FALSE","America/New_York"
-"27809","36.02027","-77.74282","Battleboro","NC","North Carolina","TRUE","","4747","24.5","37127","Nash","{""37127"": ""57.93"", ""37065"": ""42.07""}","Nash|Edgecombe","37127|37065","FALSE","FALSE","America/New_York"
-"27810","35.55184","-76.53706","Belhaven","NC","North Carolina","TRUE","","4045","12.0","37013","Beaufort","{""37013"": ""88.97"", ""37095"": ""11.03""}","Beaufort|Hyde","37013|37095","FALSE","FALSE","America/New_York"
-"27812","35.81566","-77.36924","Bethel","NC","North Carolina","TRUE","","2686","16.7","37147","Pitt","{""37147"": ""90.94"", ""37065"": ""5.51"", ""37117"": ""3.55""}","Pitt|Edgecombe|Martin","37147|37065|37117","FALSE","FALSE","America/New_York"
-"27813","35.63089","-77.93603","Black Creek","NC","North Carolina","TRUE","","792","275.6","37195","Wilson","{""37195"": ""100""}","Wilson","37195","FALSE","FALSE","America/New_York"
-"27814","35.38299","-76.92429","Blounts Creek","NC","North Carolina","TRUE","","1947","11.8","37013","Beaufort","{""37013"": ""100""}","Beaufort","37013","FALSE","FALSE","America/New_York"
-"27816","36.10682","-78.07056","Castalia","NC","North Carolina","TRUE","","2125","13.6","37127","Nash","{""37127"": ""54.69"", ""37069"": ""45.31""}","Nash|Franklin","37127|37069","FALSE","FALSE","America/New_York"
-"27817","35.44393","-77.0764","Chocowinity","NC","North Carolina","TRUE","","7614","26.2","37013","Beaufort","{""37013"": ""100""}","Beaufort","37013","FALSE","FALSE","America/New_York"
-"27818","36.50275","-77.01395","Como","NC","North Carolina","TRUE","","1699","10.7","37091","Hertford","{""37091"": ""100""}","Hertford","37091","FALSE","FALSE","America/New_York"
-"27819","35.81601","-77.45488","Conetoe","NC","North Carolina","TRUE","","249","89.0","37065","Edgecombe","{""37065"": ""100""}","Edgecombe","37065","FALSE","FALSE","America/New_York"
-"27820","36.41563","-77.24179","Conway","NC","North Carolina","TRUE","","2041","14.0","37131","Northampton","{""37131"": ""100""}","Northampton","37131","FALSE","FALSE","America/New_York"
-"27821","35.32373","-76.87461","Edward","NC","North Carolina","TRUE","","225","13.4","37013","Beaufort","{""37013"": ""100""}","Beaufort","37013","FALSE","FALSE","America/New_York"
-"27822","35.80519","-77.84034","Elm City","NC","North Carolina","TRUE","","8225","34.7","37195","Wilson","{""37195"": ""74.2"", ""37127"": ""18.9"", ""37065"": ""6.9""}","Wilson|Nash|Edgecombe","37195|37127|37065","FALSE","FALSE","America/New_York"
-"27823","36.20577","-77.72004","Enfield","NC","North Carolina","TRUE","","7950","16.3","37083","Halifax","{""37083"": ""100""}","Halifax","37083","FALSE","FALSE","America/New_York"
-"27824","35.52145","-76.03258","Engelhard","NC","North Carolina","TRUE","","1797","7.1","37095","Hyde","{""37095"": ""100""}","Hyde","37095","FALSE","FALSE","America/New_York"
-"27825","35.83281","-77.17446","Everetts","NC","North Carolina","TRUE","","46","37.9","37117","Martin","{""37117"": ""100""}","Martin","37117","FALSE","FALSE","America/New_York"
-"27826","35.58173","-76.21189","Fairfield","NC","North Carolina","TRUE","","924","4.8","37095","Hyde","{""37095"": ""93.4"", ""37177"": ""6.6""}","Hyde|Tyrrell","37095|37177","FALSE","FALSE","America/New_York"
-"27827","35.69661","-77.51323","Falkland","NC","North Carolina","TRUE","","59","238.1","37147","Pitt","{""37147"": ""100""}","Pitt","37147","FALSE","FALSE","America/New_York"
-"27828","35.5861","-77.58796","Farmville","NC","North Carolina","TRUE","","9834","49.4","37147","Pitt","{""37147"": ""87.98"", ""37079"": ""12.02""}","Pitt|Greene","37147|37079","FALSE","FALSE","America/New_York"
-"27829","35.69021","-77.62076","Fountain","NC","North Carolina","TRUE","","1436","11.3","37147","Pitt","{""37147"": ""69.84"", ""37065"": ""18.65"", ""37195"": ""11.5""}","Pitt|Edgecombe|Wilson","37147|37065|37195","FALSE","FALSE","America/New_York"
-"27830","35.55528","-77.95795","Fremont","NC","North Carolina","TRUE","","4547","29.0","37191","Wayne","{""37191"": ""93.96"", ""37195"": ""6.04""}","Wayne|Wilson","37191|37195","FALSE","FALSE","America/New_York"
-"27831","36.45917","-77.57071","Garysburg","NC","North Carolina","TRUE","","3381","19.9","37131","Northampton","{""37131"": ""100""}","Northampton","37131","FALSE","FALSE","America/New_York"
-"27832","36.51201","-77.72584","Gaston","NC","North Carolina","TRUE","","2868","36.6","37131","Northampton","{""37131"": ""100""}","Northampton","37131","FALSE","FALSE","America/New_York"
-"27834","35.65856","-77.38395","Greenville","NC","North Carolina","TRUE","","57258","125.1","37147","Pitt","{""37147"": ""99.84"", ""37013"": ""0.08"", ""37065"": ""0.08""}","Pitt|Beaufort|Edgecombe","37147|37013|37065","FALSE","FALSE","America/New_York"
-"27837","35.5169","-77.20951","Grimesland","NC","North Carolina","TRUE","","7075","45.7","37147","Pitt","{""37147"": ""94.88"", ""37013"": ""5.12""}","Pitt|Beaufort","37147|37013","FALSE","FALSE","America/New_York"
-"27839","36.28837","-77.5522","Halifax","NC","North Carolina","TRUE","","3479","9.4","37083","Halifax","{""37083"": ""100""}","Halifax","37083","FALSE","FALSE","America/New_York"
-"27840","35.95925","-77.22221","Hamilton","NC","North Carolina","TRUE","","328","10.0","37117","Martin","{""37117"": ""100""}","Martin","37117","FALSE","FALSE","America/New_York"
-"27841","35.90856","-77.27624","Hassell","NC","North Carolina","TRUE","","16","23.4","37117","Martin","{""37117"": ""100""}","Martin","37117","FALSE","FALSE","America/New_York"
-"27842","36.52483","-77.85857","Henrico","NC","North Carolina","TRUE","","1446","51.6","37131","Northampton","{""37131"": ""86.4"", ""37185"": ""13.6""}","Northampton|Warren","37131|37185","FALSE","FALSE","America/New_York"
-"27843","36.0005","-77.39833","Hobgood","NC","North Carolina","TRUE","","1053","6.8","37083","Halifax","{""37083"": ""61.88"", ""37065"": ""20.83"", ""37117"": ""17.29""}","Halifax|Edgecombe|Martin","37083|37065|37117","FALSE","FALSE","America/New_York"
-"27844","36.25231","-77.9487","Hollister","NC","North Carolina","TRUE","","2846","25.8","37083","Halifax","{""37083"": ""81.97"", ""37185"": ""18.03""}","Halifax|Warren","37083|37185","FALSE","FALSE","America/New_York"
-"27845","36.37388","-77.43208","Jackson","NC","North Carolina","TRUE","","3192","12.3","37131","Northampton","{""37131"": ""100""}","Northampton","37131","FALSE","FALSE","America/New_York"
-"27846","35.76368","-76.88982","Jamesville","NC","North Carolina","TRUE","","3096","12.6","37117","Martin","{""37117"": ""100""}","Martin","37117","FALSE","FALSE","America/New_York"
-"27847","36.1846","-77.18907","Kelford","NC","North Carolina","TRUE","","649","6.7","37015","Bertie","{""37015"": ""100""}","Bertie","37015","FALSE","FALSE","America/New_York"
-"27849","36.07214","-77.20663","Lewiston Woodville","NC","North Carolina","TRUE","","1608","8.1","37015","Bertie","{""37015"": ""100""}","Bertie","37015","FALSE","FALSE","America/New_York"
-"27850","36.40104","-77.88397","Littleton","NC","North Carolina","TRUE","","7410","15.3","37083","Halifax","{""37083"": ""62.87"", ""37185"": ""37.13""}","Halifax|Warren","37083|37185","FALSE","FALSE","America/New_York"
-"27851","35.64124","-78.0284","Lucama","NC","North Carolina","TRUE","","5458","47.0","37195","Wilson","{""37195"": ""100""}","Wilson","37195","FALSE","FALSE","America/New_York"
-"27852","35.75262","-77.63588","Macclesfield","NC","North Carolina","TRUE","","3061","24.3","37065","Edgecombe","{""37065"": ""85.79"", ""37195"": ""10.28"", ""37147"": ""3.93""}","Edgecombe|Wilson|Pitt","37065|37195|37147","FALSE","FALSE","America/New_York"
-"27853","36.51478","-77.30433","Margarettsville","NC","North Carolina","TRUE","","591","5.4","37131","Northampton","{""37131"": ""100""}","Northampton","37131","FALSE","FALSE","America/New_York"
-"27855","36.42201","-77.08377","Murfreesboro","NC","North Carolina","TRUE","","6066","42.9","37091","Hertford","{""37091"": ""92.58"", ""37131"": ""7.42""}","Hertford|Northampton","37091|37131","FALSE","FALSE","America/New_York"
-"27856","36.01379","-77.98267","Nashville","NC","North Carolina","TRUE","","17258","51.3","37127","Nash","{""37127"": ""100""}","Nash","37127","FALSE","FALSE","America/New_York"
-"27857","35.97356","-77.28627","Oak City","NC","North Carolina","TRUE","","1037","6.3","37117","Martin","{""37117"": ""100""}","Martin","37117","FALSE","FALSE","America/New_York"
-"27858","35.53207","-77.29789","Greenville","NC","North Carolina","TRUE","","59182","379.3","37147","Pitt","{""37147"": ""100""}","Pitt","37147","FALSE","FALSE","America/New_York"
-"27860","35.65075","-76.68044","Pantego","NC","North Carolina","TRUE","","1663","4.5","37013","Beaufort","{""37013"": ""88.78"", ""37187"": ""6.14"", ""37095"": ""5.08""}","Beaufort|Washington|Hyde","37013|37187|37095","FALSE","FALSE","America/New_York"
-"27861","35.81488","-77.32014","Parmele","NC","North Carolina","TRUE","","44","28.2","37117","Martin","{""37117"": ""100""}","Martin","37117","FALSE","FALSE","America/New_York"
-"27862","36.49468","-77.17962","Pendleton","NC","North Carolina","TRUE","","727","7.0","37131","Northampton","{""37131"": ""100""}","Northampton","37131","FALSE","FALSE","America/New_York"
-"27863","35.48762","-77.96791","Pikeville","NC","North Carolina","TRUE","","12782","72.9","37191","Wayne","{""37191"": ""99.09"", ""37079"": ""0.91""}","Wayne|Greene","37191|37079","FALSE","FALSE","America/New_York"
-"27864","35.80833","-77.64947","Pinetops","NC","North Carolina","TRUE","","4652","44.5","37065","Edgecombe","{""37065"": ""100""}","Edgecombe","37065","FALSE","FALSE","America/New_York"
-"27865","35.59315","-76.81676","Pinetown","NC","North Carolina","TRUE","","1963","8.7","37013","Beaufort","{""37013"": ""100""}","Beaufort","37013","FALSE","FALSE","America/New_York"
-"27866","36.51842","-77.51514","Pleasant Hill","NC","North Carolina","TRUE","","961","14.3","37131","Northampton","{""37131"": ""100""}","Northampton","37131","FALSE","FALSE","America/New_York"
-"27869","36.26606","-77.31438","Rich Square","NC","North Carolina","TRUE","","1705","8.0","37131","Northampton","{""37131"": ""100""}","Northampton","37131","FALSE","FALSE","America/New_York"
-"27870","36.43001","-77.72097","Roanoke Rapids","NC","North Carolina","TRUE","","25497","145.0","37083","Halifax","{""37083"": ""100""}","Halifax","37083","FALSE","FALSE","America/New_York"
-"27871","35.8111","-77.26213","Robersonville","NC","North Carolina","TRUE","","4293","17.2","37117","Martin","{""37117"": ""87.08"", ""37147"": ""12.62"", ""37013"": ""0.3""}","Martin|Pitt|Beaufort","37117|37147|37013","FALSE","FALSE","America/New_York"
-"27872","36.19493","-77.2603","Roxobel","NC","North Carolina","TRUE","","535","16.4","37015","Bertie","{""37015"": ""100""}","Bertie","37015","FALSE","FALSE","America/New_York"
-"27873","35.65358","-77.77524","Saratoga","NC","North Carolina","TRUE","","413","254.9","37195","Wilson","{""37195"": ""100""}","Wilson","37195","FALSE","FALSE","America/New_York"
-"27874","36.12984","-77.40916","Scotland Neck","NC","North Carolina","TRUE","","3837","11.4","37083","Halifax","{""37083"": ""100""}","Halifax","37083","FALSE","FALSE","America/New_York"
-"27875","35.45785","-76.48668","Scranton","NC","North Carolina","TRUE","","477","3.3","37095","Hyde","{""37095"": ""100""}","Hyde","37095","FALSE","FALSE","America/New_York"
-"27876","36.47751","-77.39594","Seaboard","NC","North Carolina","TRUE","","1218","11.3","37131","Northampton","{""37131"": ""100""}","Northampton","37131","FALSE","FALSE","America/New_York"
-"27878","35.86681","-77.83493","Sharpsburg","NC","North Carolina","TRUE","","2045","429.8","37127","Nash","{""37127"": ""62.82"", ""37195"": ""29.16"", ""37065"": ""8.03""}","Nash|Wilson|Edgecombe","37127|37195|37065","FALSE","FALSE","America/New_York"
-"27879","35.57453","-77.27946","Simpson","NC","North Carolina","TRUE","","316","414.8","37147","Pitt","{""37147"": ""100""}","Pitt","37147","FALSE","FALSE","America/New_York"
-"27880","35.73497","-78.08706","Sims","NC","North Carolina","TRUE","","3421","50.9","37195","Wilson","{""37195"": ""95.34"", ""37127"": ""4.66""}","Wilson|Nash","37195|37127","FALSE","FALSE","America/New_York"
-"27881","35.97843","-77.43659","Speed","NC","North Carolina","TRUE","","146","83.0","37065","Edgecombe","{""37065"": ""100""}","Edgecombe","37065","FALSE","FALSE","America/New_York"
-"27882","35.94071","-78.11629","Spring Hope","NC","North Carolina","TRUE","","7972","31.1","37127","Nash","{""37127"": ""86.81"", ""37069"": ""13.19""}","Nash|Franklin","37127|37069","FALSE","FALSE","America/New_York"
-"27883","35.59767","-77.79709","Stantonsburg","NC","North Carolina","TRUE","","2850","14.4","37195","Wilson","{""37195"": ""56.8"", ""37079"": ""26.2"", ""37191"": ""17""}","Wilson|Greene|Wayne","37195|37079|37191","FALSE","FALSE","America/New_York"
-"27884","35.7046","-77.27004","Stokes","NC","North Carolina","TRUE","","1332","15.6","37147","Pitt","{""37147"": ""100""}","Pitt","37147","FALSE","FALSE","America/New_York"
-"27885","35.41418","-76.26283","Swanquarter","NC","North Carolina","TRUE","","963","3.0","37095","Hyde","{""37095"": ""100""}","Hyde","37095","FALSE","FALSE","America/New_York"
-"27886","35.90299","-77.52247","Tarboro","NC","North Carolina","TRUE","","20280","40.6","37065","Edgecombe","{""37065"": ""98.43"", ""37147"": ""1.57""}","Edgecombe|Pitt","37065|37147","FALSE","FALSE","America/New_York"
-"27888","35.58513","-77.70497","Walstonburg","NC","North Carolina","TRUE","","2261","18.3","37079","Greene","{""37079"": ""93.36"", ""37147"": ""4.88"", ""37195"": ""1.76""}","Greene|Pitt|Wilson","37079|37147|37195","FALSE","FALSE","America/New_York"
-"27889","35.59112","-77.01419","Washington","NC","North Carolina","TRUE","","26637","52.0","37013","Beaufort","{""37013"": ""91.78"", ""37147"": ""8.22""}","Beaufort|Pitt","37013|37147","FALSE","FALSE","America/New_York"
-"27890","36.41525","-77.59078","Weldon","NC","North Carolina","TRUE","","2685","115.5","37083","Halifax","{""37083"": ""100""}","Halifax","37083","FALSE","FALSE","America/New_York"
-"27891","36.09929","-77.74091","Whitakers","NC","North Carolina","TRUE","","5036","13.8","37127","Nash","{""37127"": ""61.28"", ""37065"": ""35.26"", ""37083"": ""3.46""}","Nash|Edgecombe|Halifax","37127|37065|37083","FALSE","FALSE","America/New_York"
-"27892","35.81743","-77.06452","Williamston","NC","North Carolina","TRUE","","14217","28.4","37117","Martin","{""37117"": ""99.68"", ""37013"": ""0.32""}","Martin|Beaufort","37117|37013","FALSE","FALSE","America/New_York"
-"27893","35.69204","-77.90257","Wilson","NC","North Carolina","TRUE","","39531","138.6","37195","Wilson","{""37195"": ""100""}","Wilson","37195","FALSE","FALSE","America/New_York"
-"27896","35.79141","-77.97651","Wilson","NC","North Carolina","TRUE","","20791","232.2","37195","Wilson","{""37195"": ""97"", ""37127"": ""3""}","Wilson|Nash","37195|37127","FALSE","FALSE","America/New_York"
-"27897","36.32502","-77.2107","Woodland","NC","North Carolina","TRUE","","1810","16.3","37131","Northampton","{""37131"": ""93.95"", ""37091"": ""6.05""}","Northampton|Hertford","37131|37091","FALSE","FALSE","America/New_York"
-"27909","36.29548","-76.28394","Elizabeth City","NC","North Carolina","TRUE","","39551","67.3","37139","Pasquotank","{""37139"": ""99.91"", ""37029"": ""0.09""}","Pasquotank|Camden","37139|37029","FALSE","FALSE","America/New_York"
-"27910","36.28948","-76.9931","Ahoskie","NC","North Carolina","TRUE","","11691","33.2","37091","Hertford","{""37091"": ""89.94"", ""37015"": ""10.06""}","Hertford|Bertie","37091|37015","FALSE","FALSE","America/New_York"
-"27915","35.40321","-75.4953","Avon","NC","North Carolina","TRUE","","421","20.6","37055","Dare","{""37055"": ""100""}","Dare","37055","FALSE","FALSE","America/New_York"
-"27916","36.32212","-75.91509","Aydlett","NC","North Carolina","TRUE","","860","42.8","37053","Currituck","{""37053"": ""100""}","Currituck","37053","FALSE","FALSE","America/New_York"
-"27917","36.36121","-75.99114","Barco","NC","North Carolina","TRUE","","647","12.4","37053","Currituck","{""37053"": ""100""}","Currituck","37053","FALSE","FALSE","America/New_York"
-"27919","36.31187","-76.50347","Belvidere","NC","North Carolina","TRUE","","1035","6.9","37143","Perquimans","{""37143"": ""85.75"", ""37041"": ""14.25""}","Perquimans|Chowan","37143|37041","FALSE","FALSE","America/New_York"
-"27920","35.25902","-75.53971","Buxton","NC","North Carolina","TRUE","","1527","161.2","37055","Dare","{""37055"": ""100""}","Dare","37055","FALSE","FALSE","America/New_York"
-"27921","36.35833","-76.1691","Camden","NC","North Carolina","TRUE","","4750","25.4","37029","Camden","{""37029"": ""100""}","Camden","37029","FALSE","FALSE","America/New_York"
-"27922","36.32022","-76.84832","Cofield","NC","North Carolina","TRUE","","687","6.3","37091","Hertford","{""37091"": ""100""}","Hertford","37091","FALSE","FALSE","America/New_York"
-"27923","36.37888","-75.93668","Coinjock","NC","North Carolina","TRUE","","827","44.3","37053","Currituck","{""37053"": ""100""}","Currituck","37053","FALSE","FALSE","America/New_York"
-"27924","36.17506","-76.83992","Colerain","NC","North Carolina","TRUE","","3568","14.6","37015","Bertie","{""37015"": ""99.14"", ""37091"": ""0.86""}","Bertie|Hertford","37015|37091","FALSE","FALSE","America/New_York"
-"27925","35.84819","-76.19669","Columbia","NC","North Carolina","TRUE","","4003","6.4","37177","Tyrrell","{""37177"": ""100""}","Tyrrell","37177","FALSE","FALSE","America/New_York"
-"27926","36.51685","-76.6078","Corapeake","NC","North Carolina","TRUE","","1692","18.3","37073","Gates","{""37073"": ""100""}","Gates","37073","FALSE","FALSE","America/New_York"
-"27927","36.4131","-75.8497","Corolla","NC","North Carolina","TRUE","","947","13.8","37053","Currituck","{""37053"": ""100""}","Currituck","37053","FALSE","FALSE","America/New_York"
-"27928","35.82883","-76.43415","Creswell","NC","North Carolina","TRUE","","1717","9.7","37187","Washington","{""37187"": ""95.12"", ""37177"": ""4.88""}","Washington|Tyrrell","37187|37177","FALSE","FALSE","America/New_York"
-"27929","36.42767","-76.00129","Currituck","NC","North Carolina","TRUE","","1787","116.4","37053","Currituck","{""37053"": ""100""}","Currituck","37053","FALSE","FALSE","America/New_York"
-"27932","36.1007","-76.60012","Edenton","NC","North Carolina","TRUE","","12129","39.6","37041","Chowan","{""37041"": ""100""}","Chowan","37041","FALSE","FALSE","America/New_York"
-"27935","36.42984","-76.85863","Eure","NC","North Carolina","TRUE","","1879","12.1","37073","Gates","{""37073"": ""100""}","Gates","37073","FALSE","FALSE","America/New_York"
-"27936","35.24286","-75.58313","Frisco","NC","North Carolina","TRUE","","953","39.2","37055","Dare","{""37055"": ""100""}","Dare","37055","FALSE","FALSE","America/New_York"
-"27937","36.50216","-76.77868","Gates","NC","North Carolina","TRUE","","4448","20.3","37073","Gates","{""37073"": ""100""}","Gates","37073","FALSE","FALSE","America/New_York"
-"27938","36.3834","-76.71786","Gatesville","NC","North Carolina","TRUE","","1233","9.4","37073","Gates","{""37073"": ""100""}","Gates","37073","FALSE","FALSE","America/New_York"
-"27939","36.23639","-75.86756","Grandy","NC","North Carolina","TRUE","","2862","167.2","37053","Currituck","{""37053"": ""100""}","Currituck","37053","FALSE","FALSE","America/New_York"
-"27941","36.10241","-75.8169","Harbinger","NC","North Carolina","TRUE","","424","51.8","37053","Currituck","{""37053"": ""100""}","Currituck","37053","FALSE","FALSE","America/New_York"
-"27942","36.28368","-76.76262","Harrellsville","NC","North Carolina","TRUE","","658","7.6","37091","Hertford","{""37091"": ""100""}","Hertford","37091","FALSE","FALSE","America/New_York"
-"27943","35.21097","-75.7008","Hatteras","NC","North Carolina","TRUE","","460","66.3","37055","Dare","{""37055"": ""100""}","Dare","37055","FALSE","FALSE","America/New_York"
-"27944","36.17466","-76.42018","Hertford","NC","North Carolina","TRUE","","11756","24.5","37143","Perquimans","{""37143"": ""100""}","Perquimans","37143","FALSE","FALSE","America/New_York"
-"27946","36.35849","-76.60035","Hobbsville","NC","North Carolina","TRUE","","1022","9.2","37073","Gates","{""37073"": ""85.09"", ""37041"": ""14.91""}","Gates|Chowan","37073|37041","FALSE","FALSE","America/New_York"
-"27947","36.20521","-75.87756","Jarvisburg","NC","North Carolina","TRUE","","1259","40.3","37053","Currituck","{""37053"": ""100""}","Currituck","37053","FALSE","FALSE","America/New_York"
-"27948","36.01761","-75.68664","Kill Devil Hills","NC","North Carolina","TRUE","","11245","469.6","37055","Dare","{""37055"": ""100""}","Dare","37055","FALSE","FALSE","America/New_York"
-"27949","36.10813","-75.73111","Kitty Hawk","NC","North Carolina","TRUE","","7648","194.5","37055","Dare","{""37055"": ""100""}","Dare","37055","FALSE","FALSE","America/New_York"
-"27950","36.52599","-76.00081","Knotts Island","NC","North Carolina","TRUE","","2048","26.6","37053","Currituck","{""37053"": ""100""}","Currituck","37053","FALSE","FALSE","America/New_York"
-"27953","35.78282","-75.86446","Manns Harbor","NC","North Carolina","TRUE","","888","1.2","37055","Dare","{""37055"": ""100""}","Dare","37055","FALSE","FALSE","America/New_York"
-"27954","35.91056","-75.68205","Manteo","NC","North Carolina","TRUE","","7938","346.8","37055","Dare","{""37055"": ""100""}","Dare","37055","FALSE","FALSE","America/New_York"
-"27956","36.40253","-76.01406","Maple","NC","North Carolina","TRUE","","549","45.6","37053","Currituck","{""37053"": ""100""}","Currituck","37053","FALSE","FALSE","America/New_York"
-"27957","36.06449","-76.77187","Merry Hill","NC","North Carolina","TRUE","","1143","10.4","37015","Bertie","{""37015"": ""100""}","Bertie","37015","FALSE","FALSE","America/New_York"
-"27958","36.48334","-76.14524","Moyock","NC","North Carolina","TRUE","","11354","49.6","37053","Currituck","{""37053"": ""100""}","Currituck","37053","FALSE","FALSE","America/New_York"
-"27959","35.88591","-75.59657","Nags Head","NC","North Carolina","TRUE","","2938","77.2","37055","Dare","{""37055"": ""100""}","Dare","37055","FALSE","FALSE","America/New_York"
-"27960","35.12624","-75.92083","Ocracoke","NC","North Carolina","TRUE","","706","31.3","37095","Hyde","{""37095"": ""100""}","Hyde","37095","FALSE","FALSE","America/New_York"
-"27962","35.79077","-76.73861","Plymouth","NC","North Carolina","TRUE","","7696","33.4","37187","Washington","{""37187"": ""100""}","Washington","37187","FALSE","FALSE","America/New_York"
-"27964","36.08598","-75.80222","Point Harbor","NC","North Carolina","TRUE","","661","171.6","37053","Currituck","{""37053"": ""100""}","Currituck","37053","FALSE","FALSE","America/New_York"
-"27965","36.28318","-75.92746","Poplar Branch","NC","North Carolina","TRUE","","399","9.6","37053","Currituck","{""37053"": ""100""}","Currituck","37053","FALSE","FALSE","America/New_York"
-"27966","36.13401","-75.83924","Powells Point","NC","North Carolina","TRUE","","818","30.9","37053","Currituck","{""37053"": ""100""}","Currituck","37053","FALSE","FALSE","America/New_York"
-"27967","36.2295","-76.9049","Powellsville","NC","North Carolina","TRUE","","174","18.1","37015","Bertie","{""37015"": ""100""}","Bertie","37015","FALSE","FALSE","America/New_York"
-"27968","35.68291","-75.49116","Rodanthe","NC","North Carolina","TRUE","","141","7.0","37055","Dare","{""37055"": ""100""}","Dare","37055","FALSE","FALSE","America/New_York"
-"27970","35.87517","-76.58169","Roper","NC","North Carolina","TRUE","","2446","8.3","37187","Washington","{""37187"": ""100""}","Washington","37187","FALSE","FALSE","America/New_York"
-"27972","35.5482","-75.47106","Salvo","NC","North Carolina","TRUE","","91","24.7","37055","Dare","{""37055"": ""100""}","Dare","37055","FALSE","FALSE","America/New_York"
-"27973","36.35993","-76.06615","Shawboro","NC","North Carolina","TRUE","","1205","12.4","37053","Currituck","{""37053"": ""69.54"", ""37029"": ""30.46""}","Currituck|Camden","37053|37029","FALSE","FALSE","America/New_York"
-"27974","36.23919","-76.00642","Shiloh","NC","North Carolina","TRUE","","1351","11.4","37029","Camden","{""37029"": ""100""}","Camden","37029","FALSE","FALSE","America/New_York"
-"27976","36.48796","-76.35104","South Mills","NC","North Carolina","TRUE","","4129","15.0","37029","Camden","{""37029"": ""100""}","Camden","37029","FALSE","FALSE","America/New_York"
-"27978","35.73482","-75.74841","Stumpy Point","NC","North Carolina","TRUE","","184","4.4","37055","Dare","{""37055"": ""100""}","Dare","37055","FALSE","FALSE","America/New_York"
-"27979","36.44137","-76.55915","Sunbury","NC","North Carolina","TRUE","","1473","7.9","37073","Gates","{""37073"": ""100""}","Gates","37073","FALSE","FALSE","America/New_York"
-"27980","36.24376","-76.61884","Tyner","NC","North Carolina","TRUE","","2018","15.1","37041","Chowan","{""37041"": ""86.62"", ""37143"": ""13.38""}","Chowan|Perquimans","37041|37143","FALSE","FALSE","America/New_York"
-"27981","35.85408","-75.6415","Wanchese","NC","North Carolina","TRUE","","1732","84.7","37055","Dare","{""37055"": ""100""}","Dare","37055","FALSE","FALSE","America/New_York"
-"27982","35.56512","-75.46628","Waves","NC","North Carolina","TRUE","","56","68.1","37055","Dare","{""37055"": ""100""}","Dare","37055","FALSE","FALSE","America/New_York"
-"27983","35.98396","-76.93933","Windsor","NC","North Carolina","TRUE","","8502","9.9","37015","Bertie","{""37015"": ""100""}","Bertie","37015","FALSE","FALSE","America/New_York"
-"27985","36.21286","-76.45829","Winfall","NC","North Carolina","TRUE","","390","163.8","37143","Perquimans","{""37143"": ""100""}","Perquimans","37143","FALSE","FALSE","America/New_York"
-"27986","36.38789","-76.92569","Winton","NC","North Carolina","TRUE","","2362","59.3","37091","Hertford","{""37091"": ""100""}","Hertford","37091","FALSE","FALSE","America/New_York"
-"28001","35.33623","-80.20477","Albemarle","NC","North Carolina","TRUE","","26557","77.1","37167","Stanly","{""37167"": ""100""}","Stanly","37167","FALSE","FALSE","America/New_York"
-"28006","35.4069","-81.09465","Alexis","NC","North Carolina","TRUE","","1116","80.4","37071","Gaston","{""37071"": ""64.6"", ""37109"": ""35.4""}","Gaston|Lincoln","37071|37109","FALSE","FALSE","America/New_York"
-"28007","35.10451","-80.10989","Ansonville","NC","North Carolina","TRUE","","720","211.7","37007","Anson","{""37007"": ""100""}","Anson","37007","FALSE","FALSE","America/New_York"
-"28009","35.40852","-80.10754","Badin","NC","North Carolina","TRUE","","1183","159.6","37167","Stanly","{""37167"": ""100""}","Stanly","37167","FALSE","FALSE","America/New_York"
-"28012","35.21042","-81.04074","Belmont","NC","North Carolina","TRUE","","23830","336.1","37071","Gaston","{""37071"": ""100""}","Gaston","37071","FALSE","FALSE","America/New_York"
-"28016","35.31749","-81.28818","Bessemer City","NC","North Carolina","TRUE","","13405","120.4","37071","Gaston","{""37071"": ""100""}","Gaston","37071","FALSE","FALSE","America/New_York"
-"28017","35.24709","-81.67063","Boiling Springs","NC","North Carolina","TRUE","","730","1641.0","37045","Cleveland","{""37045"": ""100""}","Cleveland","37045","FALSE","FALSE","America/New_York"
-"28018","35.48378","-81.79521","Bostic","NC","North Carolina","TRUE","","5234","20.3","37161","Rutherford","{""37161"": ""100""}","Rutherford","37161","FALSE","FALSE","America/New_York"
-"28019","35.28039","-81.79053","Caroleen","NC","North Carolina","TRUE","","0","0.0","37161","Rutherford","{""37161"": ""100""}","Rutherford","37161","FALSE","FALSE","America/New_York"
-"28020","35.52498","-81.64131","Casar","NC","North Carolina","TRUE","","2354","20.9","37045","Cleveland","{""37045"": ""96.94"", ""37161"": ""3.06""}","Cleveland|Rutherford","37045|37161","FALSE","FALSE","America/New_York"
-"28021","35.39855","-81.4098","Cherryville","NC","North Carolina","TRUE","","14408","88.8","37071","Gaston","{""37071"": ""65.4"", ""37045"": ""20.28"", ""37109"": ""14.32""}","Gaston|Cleveland|Lincoln","37071|37045|37109","FALSE","FALSE","America/New_York"
-"28023","35.56951","-80.60223","China Grove","NC","North Carolina","TRUE","","16129","134.4","37159","Rowan","{""37159"": ""100""}","Rowan","37159","FALSE","FALSE","America/New_York"
-"28025","35.38042","-80.5279","Concord","NC","North Carolina","TRUE","","54425","193.0","37025","Cabarrus","{""37025"": ""100""}","Cabarrus","37025","FALSE","FALSE","America/New_York"
-"28027","35.40847","-80.67521","Concord","NC","North Carolina","TRUE","","68716","386.6","37025","Cabarrus","{""37025"": ""100""}","Cabarrus","37025","FALSE","FALSE","America/New_York"
-"28031","35.47155","-80.89809","Cornelius","NC","North Carolina","TRUE","","28077","773.2","37119","Mecklenburg","{""37119"": ""100""}","Mecklenburg","37119","FALSE","FALSE","America/New_York"
-"28032","35.23492","-81.08024","Cramerton","NC","North Carolina","TRUE","","3245","537.5","37071","Gaston","{""37071"": ""100""}","Gaston","37071","FALSE","FALSE","America/New_York"
-"28033","35.41871","-81.3211","Crouse","NC","North Carolina","TRUE","","3132","77.6","37109","Lincoln","{""37109"": ""66.06"", ""37071"": ""33.94""}","Lincoln|Gaston","37109|37071","FALSE","FALSE","America/New_York"
-"28034","35.35325","-81.18086","Dallas","NC","North Carolina","TRUE","","17386","148.0","37071","Gaston","{""37071"": ""100""}","Gaston","37071","FALSE","FALSE","America/New_York"
-"28036","35.48573","-80.79425","Davidson","NC","North Carolina","TRUE","","18266","312.3","37119","Mecklenburg","{""37119"": ""79.21"", ""37025"": ""17.97"", ""37097"": ""2.83""}","Mecklenburg|Cabarrus|Iredell","37119|37025|37097","FALSE","FALSE","America/New_York"
-"28037","35.50705","-81.01755","Denver","NC","North Carolina","TRUE","","20619","179.5","37109","Lincoln","{""37109"": ""90.29"", ""37035"": ""9.71""}","Lincoln|Catawba","37109|37035","FALSE","FALSE","America/New_York"
-"28039","35.68043","-80.43551","East Spencer","NC","North Carolina","TRUE","","82","372.4","37159","Rowan","{""37159"": ""100""}","Rowan","37159","FALSE","FALSE","America/New_York"
-"28040","35.39149","-81.74721","Ellenboro","NC","North Carolina","TRUE","","7441","40.4","37161","Rutherford","{""37161"": ""98.38"", ""37045"": ""1.62""}","Rutherford|Cleveland","37161|37045","FALSE","FALSE","America/New_York"
-"28043","35.31198","-81.86931","Forest City","NC","North Carolina","TRUE","","20339","123.9","37161","Rutherford","{""37161"": ""100""}","Rutherford","37161","FALSE","FALSE","America/New_York"
-"28052","35.22379","-81.23375","Gastonia","NC","North Carolina","TRUE","","35169","322.3","37071","Gaston","{""37071"": ""100""}","Gaston","37071","FALSE","FALSE","America/New_York"
-"28054","35.26276","-81.15012","Gastonia","NC","North Carolina","TRUE","","37876","731.2","37071","Gaston","{""37071"": ""100""}","Gaston","37071","FALSE","FALSE","America/New_York"
-"28056","35.21718","-81.12519","Gastonia","NC","North Carolina","TRUE","","34373","279.0","37071","Gaston","{""37071"": ""100""}","Gaston","37071","FALSE","FALSE","America/New_York"
-"28071","35.51557","-80.32699","Gold Hill","NC","North Carolina","TRUE","","2667","22.6","37159","Rowan","{""37159"": ""69.27"", ""37025"": ""24.95"", ""37167"": ""5.78""}","Rowan|Cabarrus|Stanly","37159|37025|37167","FALSE","FALSE","America/New_York"
-"28072","35.61397","-80.44503","Granite Quarry","NC","North Carolina","TRUE","","1527","543.2","37159","Rowan","{""37159"": ""100""}","Rowan","37159","FALSE","FALSE","America/New_York"
-"28073","35.19718","-81.48098","Grover","NC","North Carolina","TRUE","","6541","98.9","37045","Cleveland","{""37045"": ""100""}","Cleveland","37045","FALSE","FALSE","America/New_York"
-"28075","35.30272","-80.63982","Harrisburg","NC","North Carolina","TRUE","","19099","349.0","37025","Cabarrus","{""37025"": ""100""}","Cabarrus","37025","FALSE","FALSE","America/New_York"
-"28076","35.25931","-81.7888","Henrietta","NC","North Carolina","TRUE","","521","150.4","37161","Rutherford","{""37161"": ""100""}","Rutherford","37161","FALSE","FALSE","America/New_York"
-"28077","35.40416","-81.20284","High Shoals","NC","North Carolina","TRUE","","467","308.5","37071","Gaston","{""37071"": ""100""}","Gaston","37071","FALSE","FALSE","America/New_York"
-"28078","35.40491","-80.86263","Huntersville","NC","North Carolina","TRUE","","61043","369.5","37119","Mecklenburg","{""37119"": ""95.65"", ""37025"": ""4.35""}","Mecklenburg|Cabarrus","37119|37025","FALSE","FALSE","America/New_York"
-"28079","35.11227","-80.60317","Indian Trail","NC","North Carolina","TRUE","","37694","331.1","37179","Union","{""37179"": ""100""}","Union","37179","FALSE","FALSE","America/New_York"
-"28080","35.45254","-81.10976","Iron Station","NC","North Carolina","TRUE","","7857","76.8","37109","Lincoln","{""37109"": ""100""}","Lincoln","37109","FALSE","FALSE","America/New_York"
-"28081","35.50229","-80.66996","Kannapolis","NC","North Carolina","TRUE","","28116","356.3","37025","Cabarrus","{""37025"": ""57.76"", ""37159"": ""42.24""}","Cabarrus|Rowan","37025|37159","FALSE","FALSE","America/New_York"
-"28083","35.49082","-80.58059","Kannapolis","NC","North Carolina","TRUE","","25536","491.6","37025","Cabarrus","{""37025"": ""76.45"", ""37159"": ""23.55""}","Cabarrus|Rowan","37025|37159","FALSE","FALSE","America/New_York"
-"28086","35.243","-81.37108","Kings Mountain","NC","North Carolina","TRUE","","25436","111.7","37045","Cleveland","{""37045"": ""85.74"", ""37071"": ""14.26""}","Cleveland|Gaston","37045|37071","FALSE","FALSE","America/New_York"
-"28088","35.54425","-80.61468","Landis","NC","North Carolina","TRUE","","2746","400.3","37159","Rowan","{""37159"": ""100""}","Rowan","37159","FALSE","FALSE","America/New_York"
-"28089","35.31818","-81.65975","Lattimore","NC","North Carolina","TRUE","","227","353.2","37045","Cleveland","{""37045"": ""100""}","Cleveland","37045","FALSE","FALSE","America/New_York"
-"28090","35.45947","-81.56041","Lawndale","NC","North Carolina","TRUE","","7820","32.2","37045","Cleveland","{""37045"": ""97.13"", ""37109"": ""1.99"", ""37035"": ""0.49"", ""37023"": ""0.38""}","Cleveland|Lincoln|Catawba|Burke","37045|37109|37035|37023","FALSE","FALSE","America/New_York"
-"28091","34.98477","-79.93154","Lilesville","NC","North Carolina","TRUE","","1975","8.1","37007","Anson","{""37007"": ""100""}","Anson","37007","FALSE","FALSE","America/New_York"
-"28092","35.48577","-81.25452","Lincolnton","NC","North Carolina","TRUE","","40517","127.8","37109","Lincoln","{""37109"": ""93.7"", ""37071"": ""5.31"", ""37035"": ""0.99""}","Lincoln|Gaston|Catawba","37109|37071|37035","FALSE","FALSE","America/New_York"
-"28097","35.2967","-80.39302","Locust","NC","North Carolina","TRUE","","6078","77.2","37167","Stanly","{""37167"": ""96.35"", ""37025"": ""3.65""}","Stanly|Cabarrus","37167|37025","FALSE","FALSE","America/New_York"
-"28098","35.27099","-81.09844","Lowell","NC","North Carolina","TRUE","","3632","412.0","37071","Gaston","{""37071"": ""100""}","Gaston","37071","FALSE","FALSE","America/New_York"
-"28101","35.25782","-81.0789","McAdenville","NC","North Carolina","TRUE","","970","418.1","37071","Gaston","{""37071"": ""100""}","Gaston","37071","FALSE","FALSE","America/New_York"
-"28102","34.81446","-79.97457","McFarlan","NC","North Carolina","TRUE","","95","72.4","37007","Anson","{""37007"": ""100""}","Anson","37007","FALSE","FALSE","America/New_York"
-"28103","35.00287","-80.35279","Marshville","NC","North Carolina","TRUE","","11281","28.1","37179","Union","{""37179"": ""99.32"", ""37007"": ""0.68""}","Union|Anson","37179|37007","FALSE","FALSE","America/New_York"
-"28104","35.06048","-80.69576","Matthews","NC","North Carolina","TRUE","","31773","420.2","37179","Union","{""37179"": ""98.03"", ""37119"": ""1.97""}","Union|Mecklenburg","37179|37119","FALSE","FALSE","America/New_York"
-"28105","35.11659","-80.71313","Matthews","NC","North Carolina","TRUE","","46180","748.7","37119","Mecklenburg","{""37119"": ""98.9"", ""37179"": ""1.1""}","Mecklenburg|Union","37119|37179","FALSE","FALSE","America/New_York"
-"28107","35.25124","-80.52009","Midland","NC","North Carolina","TRUE","","8024","62.5","37025","Cabarrus","{""37025"": ""92.14"", ""37119"": ""5.12"", ""37179"": ""1.6"", ""37167"": ""1.14""}","Cabarrus|Mecklenburg|Union|Stanly","37025|37119|37179|37167","FALSE","FALSE","America/New_York"
-"28108","34.93426","-80.67945","Mineral Springs","NC","North Carolina","TRUE","","160","309.1","37179","Union","{""37179"": ""100""}","Union","37179","FALSE","FALSE","America/New_York"
-"28109","35.49217","-80.28652","Misenheimer","NC","North Carolina","TRUE","","334","76.5","37167","Stanly","{""37167"": ""100""}","Stanly","37167","FALSE","FALSE","America/New_York"
-"28110","35.0675","-80.52703","Monroe","NC","North Carolina","TRUE","","53733","161.1","37179","Union","{""37179"": ""100""}","Union","37179","FALSE","FALSE","America/New_York"
-"28112","34.89302","-80.54085","Monroe","NC","North Carolina","TRUE","","26831","78.3","37179","Union","{""37179"": ""100""}","Union","37179","FALSE","FALSE","America/New_York"
-"28114","35.22947","-81.74926","Mooresboro","NC","North Carolina","TRUE","","7475","44.2","37161","Rutherford","{""37161"": ""59.39"", ""37045"": ""40.61""}","Rutherford|Cleveland","37161|37045","FALSE","FALSE","America/New_York"
-"28115","35.57956","-80.77328","Mooresville","NC","North Carolina","TRUE","","37673","197.3","37097","Iredell","{""37097"": ""93.22"", ""37159"": ""6.78""}","Iredell|Rowan","37097|37159","FALSE","FALSE","America/New_York"
-"28117","35.57216","-80.89562","Mooresville","NC","North Carolina","TRUE","","40855","395.1","37097","Iredell","{""37097"": ""100""}","Iredell","37097","FALSE","FALSE","America/New_York"
-"28119","34.8509","-80.01586","Morven","NC","North Carolina","TRUE","","2391","14.0","37007","Anson","{""37007"": ""100""}","Anson","37007","FALSE","FALSE","America/New_York"
-"28120","35.33151","-81.02617","Mount Holly","NC","North Carolina","TRUE","","21582","274.5","37071","Gaston","{""37071"": ""100""}","Gaston","37071","FALSE","FALSE","America/New_York"
-"28124","35.40211","-80.40378","Mount Pleasant","NC","North Carolina","TRUE","","5946","40.3","37025","Cabarrus","{""37025"": ""90.83"", ""37167"": ""9.17""}","Cabarrus|Stanly","37025|37167","FALSE","FALSE","America/New_York"
-"28125","35.65947","-80.70306","Mount Ulla","NC","North Carolina","TRUE","","2421","24.3","37159","Rowan","{""37159"": ""79.56"", ""37097"": ""20.44""}","Rowan|Iredell","37159|37097","FALSE","FALSE","America/New_York"
-"28127","35.45666","-80.17346","New London","NC","North Carolina","TRUE","","7704","42.8","37167","Stanly","{""37167"": ""76.46"", ""37123"": ""21.03"", ""37057"": ""2.52""}","Stanly|Montgomery|Davidson","37167|37123|37057","FALSE","FALSE","America/New_York"
-"28128","35.2146","-80.15849","Norwood","NC","North Carolina","TRUE","","7519","42.6","37167","Stanly","{""37167"": ""100""}","Stanly","37167","FALSE","FALSE","America/New_York"
-"28129","35.2316","-80.32713","Oakboro","NC","North Carolina","TRUE","","5416","48.9","37167","Stanly","{""37167"": ""100""}","Stanly","37167","FALSE","FALSE","America/New_York"
-"28133","34.93454","-80.26135","Peachland","NC","North Carolina","TRUE","","2420","11.7","37007","Anson","{""37007"": ""95.62"", ""37179"": ""4.38""}","Anson|Union","37007|37179","FALSE","FALSE","America/New_York"
-"28134","35.08616","-80.8918","Pineville","NC","North Carolina","TRUE","","11037","497.1","37119","Mecklenburg","{""37119"": ""100""}","Mecklenburg","37119","FALSE","FALSE","America/New_York"
-"28135","35.04001","-80.21081","Polkton","NC","North Carolina","TRUE","","6245","24.1","37007","Anson","{""37007"": ""100""}","Anson","37007","FALSE","FALSE","America/New_York"
-"28137","35.50359","-80.2547","Richfield","NC","North Carolina","TRUE","","3181","27.7","37167","Stanly","{""37167"": ""76.54"", ""37159"": ""23.46""}","Stanly|Rowan","37167|37159","FALSE","FALSE","America/New_York"
-"28138","35.52095","-80.44185","Rockwell","NC","North Carolina","TRUE","","10160","88.4","37159","Rowan","{""37159"": ""91.78"", ""37025"": ""8.22""}","Rowan|Cabarrus","37159|37025","FALSE","FALSE","America/New_York"
-"28139","35.3487","-81.99232","Rutherfordton","NC","North Carolina","TRUE","","20467","45.1","37161","Rutherford","{""37161"": ""95.05"", ""37149"": ""4.95""}","Rutherford|Polk","37161|37149","FALSE","FALSE","America/New_York"
-"28144","35.70622","-80.46414","Salisbury","NC","North Carolina","TRUE","","24858","320.7","37159","Rowan","{""37159"": ""100""}","Rowan","37159","FALSE","FALSE","America/New_York"
-"28146","35.62089","-80.39305","Salisbury","NC","North Carolina","TRUE","","28420","110.6","37159","Rowan","{""37159"": ""100""}","Rowan","37159","FALSE","FALSE","America/New_York"
-"28147","35.67987","-80.56392","Salisbury","NC","North Carolina","TRUE","","23495","115.5","37159","Rowan","{""37159"": ""100""}","Rowan","37159","FALSE","FALSE","America/New_York"
-"28150","35.34829","-81.57502","Shelby","NC","North Carolina","TRUE","","26965","97.2","37045","Cleveland","{""37045"": ""99.98"", ""37161"": ""0.02""}","Cleveland|Rutherford","37045|37161","FALSE","FALSE","America/New_York"
-"28152","35.24301","-81.59517","Shelby","NC","North Carolina","TRUE","","24523","114.5","37045","Cleveland","{""37045"": ""100""}","Cleveland","37045","FALSE","FALSE","America/New_York"
-"28159","35.69465","-80.43198","Spencer","NC","North Carolina","TRUE","","2959","463.5","37159","Rowan","{""37159"": ""100""}","Rowan","37159","FALSE","FALSE","America/New_York"
-"28160","35.36102","-81.92233","Spindale","NC","North Carolina","TRUE","","3825","263.2","37161","Rutherford","{""37161"": ""100""}","Rutherford","37161","FALSE","FALSE","America/New_York"
-"28163","35.20743","-80.42853","Stanfield","NC","North Carolina","TRUE","","5275","57.9","37167","Stanly","{""37167"": ""100""}","Stanly","37167","FALSE","FALSE","America/New_York"
-"28164","35.39171","-81.03812","Stanley","NC","North Carolina","TRUE","","15623","143.1","37071","Gaston","{""37071"": ""66.28"", ""37109"": ""33.72""}","Gaston|Lincoln","37071|37109","FALSE","FALSE","America/New_York"
-"28166","35.68145","-80.87567","Troutman","NC","North Carolina","TRUE","","9651","128.7","37097","Iredell","{""37097"": ""100""}","Iredell","37097","FALSE","FALSE","America/New_York"
-"28167","35.50618","-81.96192","Union Mills","NC","North Carolina","TRUE","","2732","14.7","37161","Rutherford","{""37161"": ""94.24"", ""37111"": ""5.76""}","Rutherford|McDowell","37161|37111","FALSE","FALSE","America/New_York"
-"28168","35.55476","-81.42363","Vale","NC","North Carolina","TRUE","","10415","46.4","37109","Lincoln","{""37109"": ""65.85"", ""37035"": ""34.15""}","Lincoln|Catawba","37109|37035","FALSE","FALSE","America/New_York"
-"28169","35.35844","-81.42931","Waco","NC","North Carolina","TRUE","","202","139.2","37045","Cleveland","{""37045"": ""100""}","Cleveland","37045","FALSE","FALSE","America/New_York"
-"28170","34.99577","-80.09668","Wadesboro","NC","North Carolina","TRUE","","11187","23.1","37007","Anson","{""37007"": ""100""}","Anson","37007","FALSE","FALSE","America/New_York"
-"28173","34.91685","-80.73013","Waxhaw","NC","North Carolina","TRUE","","59559","213.5","37179","Union","{""37179"": ""100""}","Union","37179","FALSE","FALSE","America/New_York"
-"28174","34.96987","-80.43858","Wingate","NC","North Carolina","TRUE","","9496","101.7","37179","Union","{""37179"": ""100""}","Union","37179","FALSE","FALSE","America/New_York"
-"28202","35.22778","-80.84458","Charlotte","NC","North Carolina","TRUE","","13498","2889.2","37119","Mecklenburg","{""37119"": ""100""}","Mecklenburg","37119","FALSE","FALSE","America/New_York"
-"28203","35.20815","-80.85911","Charlotte","NC","North Carolina","TRUE","","16655","1938.4","37119","Mecklenburg","{""37119"": ""100""}","Mecklenburg","37119","FALSE","FALSE","America/New_York"
-"28204","35.21463","-80.82702","Charlotte","NC","North Carolina","TRUE","","7199","1607.8","37119","Mecklenburg","{""37119"": ""100""}","Mecklenburg","37119","FALSE","FALSE","America/New_York"
-"28205","35.21973","-80.78791","Charlotte","NC","North Carolina","TRUE","","48798","1593.8","37119","Mecklenburg","{""37119"": ""100""}","Mecklenburg","37119","FALSE","FALSE","America/New_York"
-"28206","35.25679","-80.82116","Charlotte","NC","North Carolina","TRUE","","12036","658.6","37119","Mecklenburg","{""37119"": ""100""}","Mecklenburg","37119","FALSE","FALSE","America/New_York"
-"28207","35.19512","-80.82622","Charlotte","NC","North Carolina","TRUE","","9986","1531.4","37119","Mecklenburg","{""37119"": ""100""}","Mecklenburg","37119","FALSE","FALSE","America/New_York"
-"28208","35.23057","-80.90992","Charlotte","NC","North Carolina","TRUE","","40284","706.7","37119","Mecklenburg","{""37119"": ""100""}","Mecklenburg","37119","FALSE","FALSE","America/New_York"
-"28209","35.17854","-80.85386","Charlotte","NC","North Carolina","TRUE","","23533","1657.2","37119","Mecklenburg","{""37119"": ""100""}","Mecklenburg","37119","FALSE","FALSE","America/New_York"
-"28210","35.129","-80.85552","Charlotte","NC","North Carolina","TRUE","","48333","1469.4","37119","Mecklenburg","{""37119"": ""100""}","Mecklenburg","37119","FALSE","FALSE","America/New_York"
-"28211","35.16807","-80.79616","Charlotte","NC","North Carolina","TRUE","","31121","1115.0","37119","Mecklenburg","{""37119"": ""100""}","Mecklenburg","37119","FALSE","FALSE","America/New_York"
-"28212","35.18943","-80.74511","Charlotte","NC","North Carolina","TRUE","","47903","2001.3","37119","Mecklenburg","{""37119"": ""100""}","Mecklenburg","37119","FALSE","FALSE","America/New_York"
-"28213","35.28493","-80.73326","Charlotte","NC","North Carolina","TRUE","","43099","1202.1","37119","Mecklenburg","{""37119"": ""97.76"", ""37025"": ""2.24""}","Mecklenburg|Cabarrus","37119|37025","FALSE","FALSE","America/New_York"
-"28214","35.27488","-80.96851","Charlotte","NC","North Carolina","TRUE","","42412","500.2","37119","Mecklenburg","{""37119"": ""100""}","Mecklenburg","37119","FALSE","FALSE","America/New_York"
-"28215","35.24684","-80.6935","Charlotte","NC","North Carolina","TRUE","","62543","790.4","37119","Mecklenburg","{""37119"": ""97.17"", ""37025"": ""2.83""}","Mecklenburg|Cabarrus","37119|37025","FALSE","FALSE","America/New_York"
-"28216","35.31122","-80.8875","Charlotte","NC","North Carolina","TRUE","","49849","643.4","37119","Mecklenburg","{""37119"": ""100""}","Mecklenburg","37119","FALSE","FALSE","America/New_York"
-"28217","35.17145","-80.90839","Charlotte","NC","North Carolina","TRUE","","30082","783.9","37119","Mecklenburg","{""37119"": ""100""}","Mecklenburg","37119","FALSE","FALSE","America/New_York"
-"28226","35.1067","-80.81984","Charlotte","NC","North Carolina","TRUE","","39796","1030.2","37119","Mecklenburg","{""37119"": ""100""}","Mecklenburg","37119","FALSE","FALSE","America/New_York"
-"28227","35.18614","-80.65136","Charlotte","NC","North Carolina","TRUE","","57336","571.7","37119","Mecklenburg","{""37119"": ""99.02"", ""37179"": ""0.98""}","Mecklenburg|Union","37119|37179","FALSE","FALSE","America/New_York"
-"28244","35.2246","-80.8431","Charlotte","NC","North Carolina","TRUE","","0","0.0","37119","Mecklenburg","{""37119"": ""0""}","Mecklenburg","37119","FALSE","FALSE","America/New_York"
-"28262","35.32513","-80.74224","Charlotte","NC","North Carolina","TRUE","","43209","769.9","37119","Mecklenburg","{""37119"": ""99.99"", ""37025"": ""0.01""}","Mecklenburg|Cabarrus","37119|37025","FALSE","FALSE","America/New_York"
-"28269","35.33788","-80.80251","Charlotte","NC","North Carolina","TRUE","","77248","978.5","37119","Mecklenburg","{""37119"": ""94.99"", ""37025"": ""5.01""}","Mecklenburg|Cabarrus","37119|37025","FALSE","FALSE","America/New_York"
-"28270","35.10982","-80.76033","Charlotte","NC","North Carolina","TRUE","","36086","1104.5","37119","Mecklenburg","{""37119"": ""100""}","Mecklenburg","37119","FALSE","FALSE","America/New_York"
-"28273","35.12675","-80.94667","Charlotte","NC","North Carolina","TRUE","","41170","728.9","37119","Mecklenburg","{""37119"": ""100""}","Mecklenburg","37119","FALSE","FALSE","America/New_York"
-"28277","35.05238","-80.81752","Charlotte","NC","North Carolina","TRUE","","72132","1189.8","37119","Mecklenburg","{""37119"": ""100""}","Mecklenburg","37119","FALSE","FALSE","America/New_York"
-"28278","35.12961","-81.00788","Charlotte","NC","North Carolina","TRUE","","29347","397.7","37119","Mecklenburg","{""37119"": ""100""}","Mecklenburg","37119","FALSE","FALSE","America/New_York"
-"28280","35.22633","-80.84309","Charlotte","NC","North Carolina","TRUE","","0","0.0","37119","Mecklenburg","{""37119"": ""100""}","Mecklenburg","37119","FALSE","FALSE","America/New_York"
-"28282","35.22481","-80.84528","Charlotte","NC","North Carolina","TRUE","","0","0.0","37119","Mecklenburg","{""37119"": ""0""}","Mecklenburg","37119","FALSE","FALSE","America/New_York"
-"28301","35.07431","-78.88358","Fayetteville","NC","North Carolina","TRUE","","16929","532.2","37051","Cumberland","{""37051"": ""100""}","Cumberland","37051","FALSE","FALSE","America/New_York"
-"28303","35.08602","-78.9618","Fayetteville","NC","North Carolina","TRUE","","29888","689.2","37051","Cumberland","{""37051"": ""100""}","Cumberland","37051","FALSE","FALSE","America/New_York"
-"28304","35.02599","-78.98983","Fayetteville","NC","North Carolina","TRUE","","36682","858.6","37051","Cumberland","{""37051"": ""99.18"", ""37093"": ""0.82""}","Cumberland|Hoke","37051|37093","FALSE","FALSE","America/New_York"
-"28305","35.05266","-78.90674","Fayetteville","NC","North Carolina","TRUE","","5751","854.0","37051","Cumberland","{""37051"": ""100""}","Cumberland","37051","FALSE","FALSE","America/New_York"
-"28306","34.95875","-78.89551","Fayetteville","NC","North Carolina","TRUE","","42973","241.6","37051","Cumberland","{""37051"": ""98.14"", ""37093"": ""1.37"", ""37017"": ""0.49""}","Cumberland|Hoke|Bladen","37051|37093|37017","FALSE","FALSE","America/New_York"
-"28307","35.13737","-78.98501","Fort Bragg","NC","North Carolina","TRUE","","17065","563.3","37051","Cumberland","{""37051"": ""100""}","Cumberland","37051","FALSE","FALSE","America/New_York"
-"28308","35.17102","-79.01498","Pope Army Airfield","NC","North Carolina","TRUE","","588","61.4","37051","Cumberland","{""37051"": ""100""}","Cumberland","37051","FALSE","FALSE","America/New_York"
-"28310","35.14157","-79.02177","Fort Bragg","NC","North Carolina","TRUE","","7066","598.9","37051","Cumberland","{""37051"": ""100""}","Cumberland","37051","FALSE","FALSE","America/New_York"
-"28311","35.17184","-78.88169","Fayetteville","NC","North Carolina","TRUE","","35334","363.7","37051","Cumberland","{""37051"": ""100""}","Cumberland","37051","FALSE","FALSE","America/New_York"
-"28312","34.95501","-78.74072","Fayetteville","NC","North Carolina","TRUE","","19761","45.4","37051","Cumberland","{""37051"": ""98.74"", ""37017"": ""1.26""}","Cumberland|Bladen","37051|37017","FALSE","FALSE","America/New_York"
-"28314","35.05815","-79.02259","Fayetteville","NC","North Carolina","TRUE","","58827","985.0","37051","Cumberland","{""37051"": ""100""}","Cumberland","37051","FALSE","FALSE","America/New_York"
-"28315","35.1165","-79.43682","Aberdeen","NC","North Carolina","TRUE","","13303","80.4","37125","Moore","{""37125"": ""86.7"", ""37093"": ""13.3""}","Moore|Hoke","37125|37093","FALSE","FALSE","America/New_York"
-"28318","35.01788","-78.61414","Autryville","NC","North Carolina","TRUE","","4250","20.6","37163","Sampson","{""37163"": ""83.62"", ""37051"": ""16.38""}","Sampson|Cumberland","37163|37051","FALSE","FALSE","America/New_York"
-"28320","34.5518","-78.77337","Bladenboro","NC","North Carolina","TRUE","","9233","29.7","37017","Bladen","{""37017"": ""97.15"", ""37047"": ""2.85""}","Bladen|Columbus","37017|37047","FALSE","FALSE","America/New_York"
-"28323","35.31194","-78.84057","Bunnlevel","NC","North Carolina","TRUE","","4207","43.2","37085","Harnett","{""37085"": ""100""}","Harnett","37085","FALSE","FALSE","America/New_York"
-"28325","35.15392","-78.1042","Calypso","NC","North Carolina","TRUE","","605","274.5","37061","Duplin","{""37061"": ""100""}","Duplin","37061","FALSE","FALSE","America/New_York"
-"28326","35.28032","-79.1685","Cameron","NC","North Carolina","TRUE","","24217","80.4","37085","Harnett","{""37085"": ""75.17"", ""37125"": ""16.99"", ""37105"": ""7.84""}","Harnett|Moore|Lee","37085|37125|37105","FALSE","FALSE","America/New_York"
-"28327","35.35637","-79.42307","Carthage","NC","North Carolina","TRUE","","17013","34.5","37125","Moore","{""37125"": ""100""}","Moore","37125","FALSE","FALSE","America/New_York"
-"28328","35.00345","-78.33829","Clinton","NC","North Carolina","TRUE","","27372","41.4","37163","Sampson","{""37163"": ""100""}","Sampson","37163","FALSE","FALSE","America/New_York"
-"28330","34.90959","-79.82238","Cordova","NC","North Carolina","TRUE","","293","456.5","37153","Richmond","{""37153"": ""100""}","Richmond","37153","FALSE","FALSE","America/New_York"
-"28332","34.65911","-78.73795","Dublin","NC","North Carolina","TRUE","","442","86.2","37017","Bladen","{""37017"": ""100""}","Bladen","37017","FALSE","FALSE","America/New_York"
-"28333","35.28272","-78.01278","Dudley","NC","North Carolina","TRUE","","10902","89.1","37191","Wayne","{""37191"": ""100""}","Wayne","37191","FALSE","FALSE","America/New_York"
-"28334","35.26849","-78.56989","Dunn","NC","North Carolina","TRUE","","23410","56.4","37085","Harnett","{""37085"": ""64.52"", ""37163"": ""27.94"", ""37101"": ""5.58"", ""37051"": ""1.97""}","Harnett|Sampson|Johnston|Cumberland","37085|37163|37101|37051","FALSE","FALSE","America/New_York"
-"28337","34.66141","-78.57076","Elizabethtown","NC","North Carolina","TRUE","","10574","25.6","37017","Bladen","{""37017"": ""100""}","Bladen","37017","FALSE","FALSE","America/New_York"
-"28338","35.10278","-79.75911","Ellerbe","NC","North Carolina","TRUE","","4718","12.7","37153","Richmond","{""37153"": ""100""}","Richmond","37153","FALSE","FALSE","America/New_York"
-"28339","35.31414","-78.72176","Erwin","NC","North Carolina","TRUE","","7432","80.0","37085","Harnett","{""37085"": ""100""}","Harnett","37085","FALSE","FALSE","America/New_York"
-"28340","34.47199","-79.14074","Fairmont","NC","North Carolina","TRUE","","10075","31.0","37155","Robeson","{""37155"": ""100""}","Robeson","37155","FALSE","FALSE","America/New_York"
-"28341","35.11891","-78.17831","Faison","NC","North Carolina","TRUE","","5047","20.8","37061","Duplin","{""37061"": ""53.75"", ""37163"": ""46.25""}","Duplin|Sampson","37061|37163","FALSE","FALSE","America/New_York"
-"28342","35.19194","-78.64973","Falcon","NC","North Carolina","TRUE","","216","67.1","37051","Cumberland","{""37051"": ""100""}","Cumberland","37051","FALSE","FALSE","America/New_York"
-"28343","34.7635","-79.58189","Gibson","NC","North Carolina","TRUE","","1457","31.4","37165","Scotland","{""37165"": ""100""}","Scotland","37165","FALSE","FALSE","America/New_York"
-"28344","35.16341","-78.62734","Godwin","NC","North Carolina","TRUE","","3726","37.2","37163","Sampson","{""37163"": ""72.56"", ""37051"": ""27.44""}","Sampson|Cumberland","37163|37051","FALSE","FALSE","America/New_York"
-"28345","34.87411","-79.66866","Hamlet","NC","North Carolina","TRUE","","12003","65.4","37153","Richmond","{""37153"": ""98.79"", ""37165"": ""1.21""}","Richmond|Scotland","37153|37165","FALSE","FALSE","America/New_York"
-"28347","35.05501","-79.59385","Hoffman","NC","North Carolina","TRUE","","2187","16.4","37153","Richmond","{""37153"": ""99.24"", ""37125"": ""0.76""}","Richmond|Moore","37153|37125","FALSE","FALSE","America/New_York"
-"28348","34.92635","-78.91152","Hope Mills","NC","North Carolina","TRUE","","35721","310.7","37051","Cumberland","{""37051"": ""100""}","Cumberland","37051","FALSE","FALSE","America/New_York"
-"28349","34.97677","-77.9171","Kenansville","NC","North Carolina","TRUE","","2598","14.9","37061","Duplin","{""37061"": ""100""}","Duplin","37061","FALSE","FALSE","America/New_York"
-"28350","35.24354","-79.31306","Lakeview","NC","North Carolina","TRUE","","144","85.9","37125","Moore","{""37125"": ""100""}","Moore","37125","FALSE","FALSE","America/New_York"
-"28351","34.84025","-79.55836","Laurel Hill","NC","North Carolina","TRUE","","4598","31.4","37165","Scotland","{""37165"": ""100""}","Scotland","37165","FALSE","FALSE","America/New_York"
-"28352","34.76732","-79.45084","Laurinburg","NC","North Carolina","TRUE","","25575","79.3","37165","Scotland","{""37165"": ""100""}","Scotland","37165","FALSE","FALSE","America/New_York"
-"28356","35.23088","-78.7909","Linden","NC","North Carolina","TRUE","","4819","33.9","37051","Cumberland","{""37051"": ""73.61"", ""37085"": ""26.39""}","Cumberland|Harnett","37051|37085","FALSE","FALSE","America/New_York"
-"28357","34.90575","-79.08703","Lumber Bridge","NC","North Carolina","TRUE","","2590","28.2","37155","Robeson","{""37155"": ""62.02"", ""37093"": ""37.98""}","Robeson|Hoke","37155|37093","FALSE","FALSE","America/New_York"
-"28358","34.60567","-78.94113","Lumberton","NC","North Carolina","TRUE","","38858","75.1","37155","Robeson","{""37155"": ""100""}","Robeson","37155","FALSE","FALSE","America/New_York"
-"28360","34.67464","-79.07344","Lumberton","NC","North Carolina","TRUE","","14769","86.8","37155","Robeson","{""37155"": ""100""}","Robeson","37155","FALSE","FALSE","America/New_York"
-"28363","34.95472","-79.54204","Marston","NC","North Carolina","TRUE","","1415","9.5","37165","Scotland","{""37165"": ""59.82"", ""37153"": ""40.18""}","Scotland|Richmond","37165|37153","FALSE","FALSE","America/New_York"
-"28364","34.71235","-79.32696","Maxton","NC","North Carolina","TRUE","","14732","42.1","37155","Robeson","{""37155"": ""96.27"", ""37165"": ""3.17"", ""37093"": ""0.57""}","Robeson|Scotland|Hoke","37155|37165|37093","FALSE","FALSE","America/New_York"
-"28365","35.17701","-78.0566","Mount Olive","NC","North Carolina","TRUE","","15533","31.1","37191","Wayne","{""37191"": ""61.88"", ""37061"": ""36.74"", ""37163"": ""1.38""}","Wayne|Duplin|Sampson","37191|37061|37163","FALSE","FALSE","America/New_York"
-"28366","35.23019","-78.35944","Newton Grove","NC","North Carolina","TRUE","","5868","26.7","37163","Sampson","{""37163"": ""81.11"", ""37101"": ""18.89""}","Sampson|Johnston","37163|37101","FALSE","FALSE","America/New_York"
-"28367","35.1727","-79.72528","Norman","NC","North Carolina","TRUE","","126","170.9","37153","Richmond","{""37153"": ""100""}","Richmond","37153","FALSE","FALSE","America/New_York"
-"28369","34.42096","-79.03027","Orrum","NC","North Carolina","TRUE","","2585","13.5","37155","Robeson","{""37155"": ""100""}","Robeson","37155","FALSE","FALSE","America/New_York"
-"28371","34.90636","-78.98946","Parkton","NC","North Carolina","TRUE","","6964","77.4","37155","Robeson","{""37155"": ""59.95"", ""37051"": ""37.11"", ""37093"": ""2.95""}","Robeson|Cumberland|Hoke","37155|37051|37093","FALSE","FALSE","America/New_York"
-"28372","34.69689","-79.1776","Pembroke","NC","North Carolina","TRUE","","14196","125.1","37155","Robeson","{""37155"": ""100""}","Robeson","37155","FALSE","FALSE","America/New_York"
-"28373","35.09074","-79.48519","Pinebluff","NC","North Carolina","TRUE","","2749","82.2","37125","Moore","{""37125"": ""100""}","Moore","37125","FALSE","FALSE","America/New_York"
-"28374","35.19759","-79.46247","Pinehurst","NC","North Carolina","TRUE","","17347","302.3","37125","Moore","{""37125"": ""100""}","Moore","37125","FALSE","FALSE","America/New_York"
-"28375","34.47572","-79.03855","Proctorville","NC","North Carolina","TRUE","","164","221.6","37155","Robeson","{""37155"": ""100""}","Robeson","37155","FALSE","FALSE","America/New_York"
-"28376","34.9919","-79.24262","Raeford","NC","North Carolina","TRUE","","44967","120.2","37093","Hoke","{""37093"": ""100""}","Hoke","37093","FALSE","FALSE","America/New_York"
-"28377","34.83438","-79.21329","Red Springs","NC","North Carolina","TRUE","","12654","48.5","37155","Robeson","{""37155"": ""69.3"", ""37093"": ""30.7""}","Robeson|Hoke","37155|37093","FALSE","FALSE","America/New_York"
-"28379","34.93102","-79.78009","Rockingham","NC","North Carolina","TRUE","","24512","61.1","37153","Richmond","{""37153"": ""100""}","Richmond","37153","FALSE","FALSE","America/New_York"
-"28382","34.96393","-78.51332","Roseboro","NC","North Carolina","TRUE","","7252","23.7","37163","Sampson","{""37163"": ""88.29"", ""37051"": ""11.71""}","Sampson|Cumberland","37163|37051","FALSE","FALSE","America/New_York"
-"28383","34.5755","-79.26576","Rowland","NC","North Carolina","TRUE","","8518","31.5","37155","Robeson","{""37155"": ""100""}","Robeson","37155","FALSE","FALSE","America/New_York"
-"28384","34.79838","-78.95735","Saint Pauls","NC","North Carolina","TRUE","","11162","44.3","37155","Robeson","{""37155"": ""89.21"", ""37017"": ""6.98"", ""37051"": ""3.81""}","Robeson|Bladen|Cumberland","37155|37017|37051","FALSE","FALSE","America/New_York"
-"28385","35.04525","-78.49749","Salemburg","NC","North Carolina","TRUE","","2277","22.3","37163","Sampson","{""37163"": ""100""}","Sampson","37163","FALSE","FALSE","America/New_York"
-"28386","34.85423","-79.12742","Shannon","NC","North Carolina","TRUE","","6258","53.6","37155","Robeson","{""37155"": ""80.91"", ""37093"": ""19.09""}","Robeson|Hoke","37155|37093","FALSE","FALSE","America/New_York"
-"28387","35.17912","-79.37607","Southern Pines","NC","North Carolina","TRUE","","15437","204.9","37125","Moore","{""37125"": ""100""}","Moore","37125","FALSE","FALSE","America/New_York"
-"28390","35.21757","-78.95465","Spring Lake","NC","North Carolina","TRUE","","24768","162.0","37085","Harnett","{""37085"": ""51.12"", ""37051"": ""48.88""}","Harnett|Cumberland","37085|37051","FALSE","FALSE","America/New_York"
-"28391","35.02121","-78.70175","Stedman","NC","North Carolina","TRUE","","5842","63.7","37051","Cumberland","{""37051"": ""100""}","Cumberland","37051","FALSE","FALSE","America/New_York"
-"28392","34.73801","-78.80148","Tar Heel","NC","North Carolina","TRUE","","1559","15.3","37017","Bladen","{""37017"": ""100""}","Bladen","37017","FALSE","FALSE","America/New_York"
-"28393","34.97788","-78.18778","Turkey","NC","North Carolina","TRUE","","1962","17.1","37163","Sampson","{""37163"": ""99.75"", ""37061"": ""0.25""}","Sampson|Duplin","37163|37061","FALSE","FALSE","America/New_York"
-"28394","35.21684","-79.23466","Vass","NC","North Carolina","TRUE","","5547","49.1","37125","Moore","{""37125"": ""100""}","Moore","37125","FALSE","FALSE","America/New_York"
-"28395","35.13842","-78.73982","Wade","NC","North Carolina","TRUE","","2046","16.5","37051","Cumberland","{""37051"": ""100""}","Cumberland","37051","FALSE","FALSE","America/New_York"
-"28396","34.92929","-79.40378","Wagram","NC","North Carolina","TRUE","","2583","19.9","37165","Scotland","{""37165"": ""100""}","Scotland","37165","FALSE","FALSE","America/New_York"
-"28398","34.99525","-78.06875","Warsaw","NC","North Carolina","TRUE","","8296","32.9","37061","Duplin","{""37061"": ""100""}","Duplin","37061","FALSE","FALSE","America/New_York"
-"28399","34.76006","-78.70514","White Oak","NC","North Carolina","TRUE","","1955","8.1","37017","Bladen","{""37017"": ""100""}","Bladen","37017","FALSE","FALSE","America/New_York"
-"28401","34.27257","-77.96332","Wilmington","NC","North Carolina","TRUE","","24656","394.3","37129","New Hanover","{""37129"": ""100""}","New Hanover","37129","FALSE","FALSE","America/New_York"
-"28403","34.22189","-77.87985","Wilmington","NC","North Carolina","TRUE","","41525","1139.1","37129","New Hanover","{""37129"": ""100""}","New Hanover","37129","FALSE","FALSE","America/New_York"
-"28405","34.26515","-77.86701","Wilmington","NC","North Carolina","TRUE","","32909","528.0","37129","New Hanover","{""37129"": ""100""}","New Hanover","37129","FALSE","FALSE","America/New_York"
-"28409","34.15484","-77.86235","Wilmington","NC","North Carolina","TRUE","","34849","564.3","37129","New Hanover","{""37129"": ""100""}","New Hanover","37129","FALSE","FALSE","America/New_York"
-"28411","34.30228","-77.7917","Wilmington","NC","North Carolina","TRUE","","39019","359.5","37129","New Hanover","{""37129"": ""94.69"", ""37141"": ""5.31""}","New Hanover|Pender","37129|37141","FALSE","FALSE","America/New_York"
-"28412","34.13314","-77.9194","Wilmington","NC","North Carolina","TRUE","","39106","692.9","37129","New Hanover","{""37129"": ""100""}","New Hanover","37129","FALSE","FALSE","America/New_York"
-"28420","34.07423","-78.48055","Ash","NC","North Carolina","TRUE","","4075","11.2","37019","Brunswick","{""37019"": ""100""}","Brunswick","37019","FALSE","FALSE","America/New_York"
-"28421","34.52082","-78.17817","Atkinson","NC","North Carolina","TRUE","","1610","11.2","37141","Pender","{""37141"": ""100""}","Pender","37141","FALSE","FALSE","America/New_York"
-"28422","34.0196","-78.17297","Bolivia","NC","North Carolina","TRUE","","8116","34.1","37019","Brunswick","{""37019"": ""100""}","Brunswick","37019","FALSE","FALSE","America/New_York"
-"28423","34.31178","-78.39381","Bolton","NC","North Carolina","TRUE","","2421","11.7","37047","Columbus","{""37047"": ""89.96"", ""37017"": ""10.04""}","Columbus|Bladen","37047|37017","FALSE","FALSE","America/New_York"
-"28424","34.29029","-78.69973","Brunswick","NC","North Carolina","TRUE","","48","125.0","37047","Columbus","{""37047"": ""100""}","Columbus","37047","FALSE","FALSE","America/New_York"
-"28425","34.56277","-77.89637","Burgaw","NC","North Carolina","TRUE","","11833","30.5","37141","Pender","{""37141"": ""100""}","Pender","37141","FALSE","FALSE","America/New_York"
-"28428","34.03832","-77.90681","Carolina Beach","NC","North Carolina","TRUE","","6611","496.2","37129","New Hanover","{""37129"": ""100""}","New Hanover","37129","FALSE","FALSE","America/New_York"
-"28429","34.34202","-77.90118","Castle Hayne","NC","North Carolina","TRUE","","7058","69.7","37129","New Hanover","{""37129"": ""100""}","New Hanover","37129","FALSE","FALSE","America/New_York"
-"28430","34.29242","-78.93519","Cerro Gordo","NC","North Carolina","TRUE","","2298","21.8","37047","Columbus","{""37047"": ""100""}","Columbus","37047","FALSE","FALSE","America/New_York"
-"28431","34.31373","-78.83935","Chadbourn","NC","North Carolina","TRUE","","7027","36.1","37047","Columbus","{""37047"": ""100""}","Columbus","37047","FALSE","FALSE","America/New_York"
-"28432","34.17623","-78.76396","Clarendon","NC","North Carolina","TRUE","","1407","15.4","37047","Columbus","{""37047"": ""100""}","Columbus","37047","FALSE","FALSE","America/New_York"
-"28433","34.4911","-78.62406","Clarkton","NC","North Carolina","TRUE","","5228","18.0","37017","Bladen","{""37017"": ""77.5"", ""37047"": ""22.5""}","Bladen|Columbus","37017|37047","FALSE","FALSE","America/New_York"
-"28434","34.46645","-78.46909","Council","NC","North Carolina","TRUE","","948","4.6","37017","Bladen","{""37017"": ""100""}","Bladen","37017","FALSE","FALSE","America/New_York"
-"28435","34.4076","-78.10562","Currie","NC","North Carolina","TRUE","","2210","8.9","37141","Pender","{""37141"": ""100""}","Pender","37141","FALSE","FALSE","America/New_York"
-"28436","34.27617","-78.26633","Delco","NC","North Carolina","TRUE","","2090","21.3","37047","Columbus","{""37047"": ""99.68"", ""37019"": ""0.32""}","Columbus|Brunswick","37047|37019","FALSE","FALSE","America/New_York"
-"28438","34.41155","-78.92459","Evergreen","NC","North Carolina","TRUE","","1651","13.5","37047","Columbus","{""37047"": ""97.4"", ""37017"": ""2.6""}","Columbus|Bladen","37047|37017","FALSE","FALSE","America/New_York"
-"28439","34.29479","-79.00975","Fair Bluff","NC","North Carolina","TRUE","","1038","16.6","37047","Columbus","{""37047"": ""100""}","Columbus","37047","FALSE","FALSE","America/New_York"
-"28441","34.78969","-78.4309","Garland","NC","North Carolina","TRUE","","3396","10.3","37163","Sampson","{""37163"": ""66.85"", ""37017"": ""33.15""}","Sampson|Bladen","37163|37017","FALSE","FALSE","America/New_York"
-"28442","34.28908","-78.60226","Hallsboro","NC","North Carolina","TRUE","","1432","9.7","37047","Columbus","{""37047"": ""100""}","Columbus","37047","FALSE","FALSE","America/New_York"
-"28443","34.43991","-77.67196","Hampstead","NC","North Carolina","TRUE","","23266","78.0","37141","Pender","{""37141"": ""100""}","Pender","37141","FALSE","FALSE","America/New_York"
-"28444","34.69175","-78.31961","Harrells","NC","North Carolina","TRUE","","2310","10.0","37163","Sampson","{""37163"": ""59.14"", ""37017"": ""39.14"", ""37061"": ""1.73""}","Sampson|Bladen|Duplin","37163|37017|37061","FALSE","FALSE","America/New_York"
-"28445","34.51045","-77.54669","Holly Ridge","NC","North Carolina","TRUE","","7196","53.3","37133","Onslow","{""37133"": ""67.62"", ""37141"": ""32.38""}","Onslow|Pender","37133|37141","FALSE","FALSE","America/New_York"
-"28447","34.60051","-78.25933","Ivanhoe","NC","North Carolina","TRUE","","1734","5.8","37163","Sampson","{""37163"": ""42.34"", ""37017"": ""29.55"", ""37141"": ""28.11""}","Sampson|Bladen|Pender","37163|37017|37141","FALSE","FALSE","America/New_York"
-"28448","34.49223","-78.32202","Kelly","NC","North Carolina","TRUE","","902","3.7","37017","Bladen","{""37017"": ""96.3"", ""37141"": ""3.7""}","Bladen|Pender","37017|37141","FALSE","FALSE","America/New_York"
-"28449","33.98155","-77.9275","Kure Beach","NC","North Carolina","TRUE","","1778","172.6","37129","New Hanover","{""37129"": ""100""}","New Hanover","37129","FALSE","FALSE","America/New_York"
-"28450","34.32535","-78.51763","Lake Waccamaw","NC","North Carolina","TRUE","","2684","26.4","37047","Columbus","{""37047"": ""100""}","Columbus","37047","FALSE","FALSE","America/New_York"
-"28451","34.23768","-78.09331","Leland","NC","North Carolina","TRUE","","35236","97.4","37019","Brunswick","{""37019"": ""100""}","Brunswick","37019","FALSE","FALSE","America/New_York"
-"28452","33.99718","-78.55299","Longwood","NC","North Carolina","TRUE","","899","59.6","37019","Brunswick","{""37019"": ""100""}","Brunswick","37019","FALSE","FALSE","America/New_York"
-"28453","34.88191","-78.07909","Magnolia","NC","North Carolina","TRUE","","3563","16.6","37061","Duplin","{""37061"": ""91.98"", ""37163"": ""8.02""}","Duplin|Sampson","37061|37163","FALSE","FALSE","America/New_York"
-"28454","34.6783","-77.6509","Maple Hill","NC","North Carolina","TRUE","","2733","16.2","37133","Onslow","{""37133"": ""64.64"", ""37141"": ""35.36""}","Onslow|Pender","37133|37141","FALSE","FALSE","America/New_York"
-"28455","34.11281","-78.63202","Nakina","NC","North Carolina","TRUE","","2500","12.7","37047","Columbus","{""37047"": ""100""}","Columbus","37047","FALSE","FALSE","America/New_York"
-"28456","34.37595","-78.2803","Riegelwood","NC","North Carolina","TRUE","","3750","22.5","37047","Columbus","{""37047"": ""62.71"", ""37017"": ""29.36"", ""37019"": ""7.93""}","Columbus|Bladen|Brunswick","37047|37017|37019","FALSE","FALSE","America/New_York"
-"28457","34.44759","-77.88907","Rocky Point","NC","North Carolina","TRUE","","10299","30.7","37141","Pender","{""37141"": ""100""}","Pender","37141","FALSE","FALSE","America/New_York"
-"28458","34.81827","-78.08992","Rose Hill","NC","North Carolina","TRUE","","6761","23.6","37061","Duplin","{""37061"": ""84.73"", ""37163"": ""15.27""}","Duplin|Sampson","37061|37163","FALSE","FALSE","America/New_York"
-"28460","34.53297","-77.424","Sneads Ferry","NC","North Carolina","TRUE","","10845","120.3","37133","Onslow","{""37133"": ""100""}","Onslow","37133","FALSE","FALSE","America/New_York"
-"28461","33.96625","-78.03635","Southport","NC","North Carolina","TRUE","","20506","104.6","37019","Brunswick","{""37019"": ""100""}","Brunswick","37019","FALSE","FALSE","America/New_York"
-"28462","34.02318","-78.2885","Supply","NC","North Carolina","TRUE","","12917","53.5","37019","Brunswick","{""37019"": ""100""}","Brunswick","37019","FALSE","FALSE","America/New_York"
-"28463","34.10815","-78.78748","Tabor City","NC","North Carolina","TRUE","","9116","29.9","37047","Columbus","{""37047"": ""100""}","Columbus","37047","FALSE","FALSE","America/New_York"
-"28464","34.77792","-78.01925","Teachey","NC","North Carolina","TRUE","","3031","51.3","37061","Duplin","{""37061"": ""100""}","Duplin","37061","FALSE","FALSE","America/New_York"
-"28465","33.91255","-78.1033","Oak Island","NC","North Carolina","TRUE","","7432","271.1","37019","Brunswick","{""37019"": ""100""}","Brunswick","37019","FALSE","FALSE","America/New_York"
-"28466","34.73526","-77.90114","Wallace","NC","North Carolina","TRUE","","9292","18.9","37061","Duplin","{""37061"": ""93.15"", ""37141"": ""6.85""}","Duplin|Pender","37061|37141","FALSE","FALSE","America/New_York"
-"28467","33.91762","-78.58185","Calabash","NC","North Carolina","TRUE","","10688","229.2","37019","Brunswick","{""37019"": ""100""}","Brunswick","37019","FALSE","FALSE","America/New_York"
-"28468","33.90232","-78.52122","Sunset Beach","NC","North Carolina","TRUE","","5235","114.9","37019","Brunswick","{""37019"": ""100""}","Brunswick","37019","FALSE","FALSE","America/New_York"
-"28469","33.92705","-78.46877","Ocean Isle Beach","NC","North Carolina","TRUE","","6094","105.8","37019","Brunswick","{""37019"": ""100""}","Brunswick","37019","FALSE","FALSE","America/New_York"
-"28470","33.96367","-78.40642","Shallotte","NC","North Carolina","TRUE","","12812","103.9","37019","Brunswick","{""37019"": ""100""}","Brunswick","37019","FALSE","FALSE","America/New_York"
-"28472","34.30705","-78.68917","Whiteville","NC","North Carolina","TRUE","","18522","39.4","37047","Columbus","{""37047"": ""100""}","Columbus","37047","FALSE","FALSE","America/New_York"
-"28478","34.64302","-78.03846","Willard","NC","North Carolina","TRUE","","4757","15.2","37141","Pender","{""37141"": ""94.14"", ""37163"": ""5.71"", ""37061"": ""0.15""}","Pender|Sampson|Duplin","37141|37163|37061","FALSE","FALSE","America/New_York"
-"28479","34.09652","-78.01755","Winnabow","NC","North Carolina","TRUE","","7561","31.4","37019","Brunswick","{""37019"": ""100""}","Brunswick","37019","FALSE","FALSE","America/New_York"
-"28480","34.22393","-77.79325","Wrightsville Beach","NC","North Carolina","TRUE","","2599","342.9","37129","New Hanover","{""37129"": ""100""}","New Hanover","37129","FALSE","FALSE","America/New_York"
-"28501","35.24439","-77.5219","Kinston","NC","North Carolina","TRUE","","17772","64.6","37107","Lenoir","{""37107"": ""96.84"", ""37103"": ""3.16""}","Lenoir|Jones","37107|37103","FALSE","FALSE","America/New_York"
-"28504","35.22496","-77.63538","Kinston","NC","North Carolina","TRUE","","21717","67.7","37107","Lenoir","{""37107"": ""99.79"", ""37103"": ""0.21""}","Lenoir|Jones","37107|37103","FALSE","FALSE","America/New_York"
-"28508","35.10033","-77.82326","Albertson","NC","North Carolina","TRUE","","3093","33.8","37061","Duplin","{""37061"": ""100""}","Duplin","37061","FALSE","FALSE","America/New_York"
-"28510","35.00388","-76.80688","Arapahoe","NC","North Carolina","TRUE","","1508","28.1","37137","Pamlico","{""37137"": ""100""}","Pamlico","37137","FALSE","FALSE","America/New_York"
-"28511","34.8996","-76.35195","Atlantic","NC","North Carolina","TRUE","","626","29.6","37031","Carteret","{""37031"": ""100""}","Carteret","37031","FALSE","FALSE","America/New_York"
-"28512","34.69926","-76.76783","Atlantic Beach","NC","North Carolina","TRUE","","3211","215.3","37031","Carteret","{""37031"": ""100""}","Carteret","37031","FALSE","FALSE","America/New_York"
-"28513","35.4415","-77.38893","Ayden","NC","North Carolina","TRUE","","10339","44.0","37147","Pitt","{""37147"": ""94.94"", ""37079"": ""5.06""}","Pitt|Greene","37147|37079","FALSE","FALSE","America/New_York"
-"28515","35.18605","-76.70616","Bayboro","NC","North Carolina","TRUE","","2606","18.3","37137","Pamlico","{""37137"": ""100""}","Pamlico","37137","FALSE","FALSE","America/New_York"
-"28516","34.88857","-76.55466","Beaufort","NC","North Carolina","TRUE","","11455","21.0","37031","Carteret","{""37031"": ""100""}","Carteret","37031","FALSE","FALSE","America/New_York"
-"28518","34.89644","-77.75658","Beulaville","NC","North Carolina","TRUE","","8912","36.1","37061","Duplin","{""37061"": ""84.21"", ""37133"": ""15.79""}","Duplin|Onslow","37061|37133","FALSE","FALSE","America/New_York"
-"28519","35.12374","-77.02169","Bridgeton","NC","North Carolina","TRUE","","341","429.2","37049","Craven","{""37049"": ""100""}","Craven","37049","FALSE","FALSE","America/New_York"
-"28520","34.97178","-76.32332","Cedar Island","NC","North Carolina","TRUE","","243","4.3","37031","Carteret","{""37031"": ""100""}","Carteret","37031","FALSE","FALSE","America/New_York"
-"28521","34.8245","-77.7376","Chinquapin","NC","North Carolina","TRUE","","2769","25.5","37061","Duplin","{""37061"": ""93.88"", ""37133"": ""6.12""}","Duplin|Onslow","37061|37133","FALSE","FALSE","America/New_York"
-"28523","35.20867","-77.29174","Cove City","NC","North Carolina","TRUE","","2196","15.1","37049","Craven","{""37049"": ""100""}","Craven","37049","FALSE","FALSE","America/New_York"
-"28524","34.7996","-76.47021","Davis","NC","North Carolina","TRUE","","285","19.8","37031","Carteret","{""37031"": ""100""}","Carteret","37031","FALSE","FALSE","America/New_York"
-"28525","35.12455","-77.69267","Deep Run","NC","North Carolina","TRUE","","2883","25.1","37107","Lenoir","{""37107"": ""93.9"", ""37061"": ""6.1""}","Lenoir|Duplin","37107|37061","FALSE","FALSE","America/New_York"
-"28526","35.25087","-77.39745","Dover","NC","North Carolina","TRUE","","2797","12.6","37049","Craven","{""37049"": ""78.71"", ""37103"": ""20.13"", ""37107"": ""1.17""}","Craven|Jones|Lenoir","37049|37103|37107","FALSE","FALSE","America/New_York"
-"28527","35.26609","-77.01715","Ernul","NC","North Carolina","TRUE","","788","5.5","37049","Craven","{""37049"": ""100""}","Craven","37049","FALSE","FALSE","America/New_York"
-"28528","34.73775","-76.53945","Gloucester","NC","North Carolina","TRUE","","619","82.4","37031","Carteret","{""37031"": ""100""}","Carteret","37031","FALSE","FALSE","America/New_York"
-"28529","35.08159","-76.86145","Grantsboro","NC","North Carolina","TRUE","","1920","17.5","37137","Pamlico","{""37137"": ""100""}","Pamlico","37137","FALSE","FALSE","America/New_York"
-"28530","35.3727","-77.41187","Grifton","NC","North Carolina","TRUE","","6577","35.8","37147","Pitt","{""37147"": ""52.32"", ""37107"": ""35.32"", ""37049"": ""8.65"", ""37079"": ""3.71""}","Pitt|Lenoir|Craven|Greene","37147|37107|37049|37079","FALSE","FALSE","America/New_York"
-"28531","34.70015","-76.56116","Harkers Island","NC","North Carolina","TRUE","","1260","217.1","37031","Carteret","{""37031"": ""100""}","Carteret","37031","FALSE","FALSE","America/New_York"
-"28532","34.88813","-76.90891","Havelock","NC","North Carolina","TRUE","","22220","51.9","37049","Craven","{""37049"": ""100""}","Craven","37049","FALSE","FALSE","America/New_York"
-"28533","34.90284","-76.90147","Cherry Point","NC","North Carolina","TRUE","","3331","2894.2","37049","Craven","{""37049"": ""100""}","Craven","37049","FALSE","FALSE","America/New_York"
-"28537","35.24548","-76.54945","Hobucken","NC","North Carolina","TRUE","","90","1.4","37137","Pamlico","{""37137"": ""100""}","Pamlico","37137","FALSE","FALSE","America/New_York"
-"28538","35.41919","-77.56436","Hookerton","NC","North Carolina","TRUE","","2008","26.8","37079","Greene","{""37079"": ""88.18"", ""37107"": ""11.82""}","Greene|Lenoir","37079|37107","FALSE","FALSE","America/New_York"
-"28539","34.71336","-77.21704","Hubert","NC","North Carolina","TRUE","","16509","129.8","37133","Onslow","{""37133"": ""100""}","Onslow","37133","FALSE","FALSE","America/New_York"
-"28540","34.75633","-77.50563","Jacksonville","NC","North Carolina","TRUE","","49144","183.8","37133","Onslow","{""37133"": ""100""}","Onslow","37133","FALSE","FALSE","America/New_York"
-"28543","34.73361","-77.3788","Tarawa Terrace","NC","North Carolina","TRUE","","5180","978.2","37133","Onslow","{""37133"": ""100""}","Onslow","37133","FALSE","FALSE","America/New_York"
-"28544","34.72129","-77.30735","Midway Park","NC","North Carolina","TRUE","","5917","201.2","37133","Onslow","{""37133"": ""100""}","Onslow","37133","FALSE","FALSE","America/New_York"
-"28546","34.79662","-77.36104","Jacksonville","NC","North Carolina","TRUE","","46435","319.7","37133","Onslow","{""37133"": ""100""}","Onslow","37133","FALSE","FALSE","America/New_York"
-"28547","34.6713","-77.37371","Camp Lejeune","NC","North Carolina","TRUE","","25354","377.1","37133","Onslow","{""37133"": ""100""}","Onslow","37133","FALSE","FALSE","America/New_York"
-"28551","35.32188","-77.78151","La Grange","NC","North Carolina","TRUE","","14684","43.0","37107","Lenoir","{""37107"": ""62.59"", ""37191"": ""28.48"", ""37079"": ""8.93""}","Lenoir|Wayne|Greene","37107|37191|37079","FALSE","FALSE","America/New_York"
-"28552","35.30146","-76.55464","Lowland","NC","North Carolina","TRUE","","169","4.0","37137","Pamlico","{""37137"": ""100""}","Pamlico","37137","FALSE","FALSE","America/New_York"
-"28553","34.73223","-76.51345","Marshallberg","NC","North Carolina","TRUE","","402","126.2","37031","Carteret","{""37031"": ""100""}","Carteret","37031","FALSE","FALSE","America/New_York"
-"28554","35.47849","-77.58598","Maury","NC","North Carolina","TRUE","","205","283.7","37079","Greene","{""37079"": ""100""}","Greene","37079","FALSE","FALSE","America/New_York"
-"28555","34.87471","-77.22871","Maysville","NC","North Carolina","TRUE","","4571","11.5","37133","Onslow","{""37133"": ""60.62"", ""37103"": ""39.38""}","Onslow|Jones","37133|37103","FALSE","FALSE","America/New_York"
-"28556","35.12436","-76.6651","Merritt","NC","North Carolina","TRUE","","1013","8.6","37137","Pamlico","{""37137"": ""100""}","Pamlico","37137","FALSE","FALSE","America/New_York"
-"28557","34.74059","-76.74584","Morehead City","NC","North Carolina","TRUE","","15298","416.2","37031","Carteret","{""37031"": ""100""}","Carteret","37031","FALSE","FALSE","America/New_York"
-"28560","35.13426","-76.98571","New Bern","NC","North Carolina","TRUE","","27458","90.3","37049","Craven","{""37049"": ""93.29"", ""37137"": ""6.71""}","Craven|Pamlico","37049|37137","FALSE","FALSE","America/New_York"
-"28562","35.08049","-77.12678","New Bern","NC","North Carolina","TRUE","","38317","95.9","37049","Craven","{""37049"": ""98.94"", ""37103"": ""1.06""}","Craven|Jones","37049|37103","FALSE","FALSE","America/New_York"
-"28570","34.78153","-76.85393","Newport","NC","North Carolina","TRUE","","21402","66.4","37031","Carteret","{""37031"": ""100""}","Carteret","37031","FALSE","FALSE","America/New_York"
-"28571","35.05996","-76.71423","Oriental","NC","North Carolina","TRUE","","2474","18.5","37137","Pamlico","{""37137"": ""100""}","Pamlico","37137","FALSE","FALSE","America/New_York"
-"28572","35.02305","-77.73025","Pink Hill","NC","North Carolina","TRUE","","6866","25.0","37061","Duplin","{""37061"": ""55.99"", ""37107"": ""37.93"", ""37103"": ""5.83"", ""37133"": ""0.24""}","Duplin|Lenoir|Jones|Onslow","37061|37107|37103|37133","FALSE","FALSE","America/New_York"
-"28573","34.9965","-77.19904","Pollocksville","NC","North Carolina","TRUE","","1770","9.1","37103","Jones","{""37103"": ""92.42"", ""37049"": ""7.58""}","Jones|Craven","37103|37049","FALSE","FALSE","America/New_York"
-"28574","34.87858","-77.59493","Richlands","NC","North Carolina","TRUE","","18448","55.6","37133","Onslow","{""37133"": ""97.76"", ""37103"": ""1.36"", ""37061"": ""0.89""}","Onslow|Jones|Duplin","37133|37103|37061","FALSE","FALSE","America/New_York"
-"28575","34.68734","-76.89137","Salter Path","NC","North Carolina","TRUE","","481","309.5","37031","Carteret","{""37031"": ""100""}","Carteret","37031","FALSE","FALSE","America/New_York"
-"28577","34.8762","-76.38518","Sealevel","NC","North Carolina","TRUE","","333","48.6","37031","Carteret","{""37031"": ""100""}","Carteret","37031","FALSE","FALSE","America/New_York"
-"28578","35.20056","-77.86341","Seven Springs","NC","North Carolina","TRUE","","7504","45.4","37191","Wayne","{""37191"": ""66.09"", ""37061"": ""18.09"", ""37107"": ""15.83""}","Wayne|Duplin|Lenoir","37191|37061|37107","FALSE","FALSE","America/New_York"
-"28579","34.76251","-76.51679","Smyrna","NC","North Carolina","TRUE","","639","64.3","37031","Carteret","{""37031"": ""100""}","Carteret","37031","FALSE","FALSE","America/New_York"
-"28580","35.45271","-77.68335","Snow Hill","NC","North Carolina","TRUE","","13010","44.1","37079","Greene","{""37079"": ""99.75"", ""37107"": ""0.25""}","Greene|Lenoir","37079|37107","FALSE","FALSE","America/New_York"
-"28581","34.85052","-76.43611","Stacy","NC","North Carolina","TRUE","","361","15.9","37031","Carteret","{""37031"": ""100""}","Carteret","37031","FALSE","FALSE","America/New_York"
-"28582","34.75864","-77.15031","Stella","NC","North Carolina","TRUE","","2507","59.6","37133","Onslow","{""37133"": ""53.78"", ""37031"": ""46.22""}","Onslow|Carteret","37133|37031","FALSE","FALSE","America/New_York"
-"28583","35.13707","-76.74056","Stonewall","NC","North Carolina","TRUE","","313","70.8","37137","Pamlico","{""37137"": ""100""}","Pamlico","37137","FALSE","FALSE","America/New_York"
-"28584","34.74606","-77.06903","Swansboro","NC","North Carolina","TRUE","","12536","82.6","37031","Carteret","{""37031"": ""55.16"", ""37133"": ""44.84""}","Carteret|Onslow","37031|37133","FALSE","FALSE","America/New_York"
-"28585","35.07395","-77.41455","Trenton","NC","North Carolina","TRUE","","3958","8.6","37103","Jones","{""37103"": ""100""}","Jones","37103","FALSE","FALSE","America/New_York"
-"28586","35.31639","-77.16349","Vanceboro","NC","North Carolina","TRUE","","7808","23.0","37049","Craven","{""37049"": ""93.75"", ""37013"": ""4.59"", ""37147"": ""1.67""}","Craven|Beaufort|Pitt","37049|37013|37147","FALSE","FALSE","America/New_York"
-"28587","35.19355","-76.6693","Vandemere","NC","North Carolina","TRUE","","263","29.8","37137","Pamlico","{""37137"": ""100""}","Pamlico","37137","FALSE","FALSE","America/New_York"
-"28589","34.81049","-76.50511","Williston","NC","North Carolina","TRUE","","131","4.7","37031","Carteret","{""37031"": ""100""}","Carteret","37031","FALSE","FALSE","America/New_York"
-"28590","35.52049","-77.41628","Winterville","NC","North Carolina","TRUE","","25032","231.4","37147","Pitt","{""37147"": ""100""}","Pitt","37147","FALSE","FALSE","America/New_York"
-"28594","34.66485","-77.02923","Emerald Isle","NC","North Carolina","TRUE","","3702","249.6","37031","Carteret","{""37031"": ""100""}","Carteret","37031","FALSE","FALSE","America/New_York"
-"28601","35.77253","-81.32634","Hickory","NC","North Carolina","TRUE","","51401","431.1","37035","Catawba","{""37035"": ""83.13"", ""37023"": ""7.62"", ""37003"": ""5.39"", ""37027"": ""3.86""}","Catawba|Burke|Alexander|Caldwell","37035|37023|37003|37027","FALSE","FALSE","America/New_York"
-"28602","35.67609","-81.38615","Hickory","NC","North Carolina","TRUE","","28902","160.2","37035","Catawba","{""37035"": ""86.36"", ""37023"": ""13.64""}","Catawba|Burke","37035|37023","FALSE","FALSE","America/New_York"
-"28604","36.1772","-81.8479","Banner Elk","NC","North Carolina","TRUE","","7227","42.5","37189","Watauga","{""37189"": ""52.22"", ""37011"": ""47.78""}","Watauga|Avery","37189|37011","FALSE","FALSE","America/New_York"
-"28605","36.13548","-81.6996","Blowing Rock","NC","North Carolina","TRUE","","3312","44.2","37189","Watauga","{""37189"": ""94.87"", ""37027"": ""3.81"", ""37011"": ""1.32""}","Watauga|Caldwell|Avery","37189|37027|37011","FALSE","FALSE","America/New_York"
-"28606","36.05343","-81.31883","Boomer","NC","North Carolina","TRUE","","1497","13.3","37193","Wilkes","{""37193"": ""84.34"", ""37027"": ""15.66""}","Wilkes|Caldwell","37193|37027","FALSE","FALSE","America/New_York"
-"28607","36.21795","-81.65523","Boone","NC","North Carolina","TRUE","","36550","143.0","37189","Watauga","{""37189"": ""100""}","Watauga","37189","FALSE","FALSE","America/New_York"
-"28609","35.67414","-81.05336","Catawba","NC","North Carolina","TRUE","","5615","48.7","37035","Catawba","{""37035"": ""100""}","Catawba","37035","FALSE","FALSE","America/New_York"
-"28610","35.7323","-81.13683","Claremont","NC","North Carolina","TRUE","","10639","102.0","37035","Catawba","{""37035"": ""100""}","Catawba","37035","FALSE","FALSE","America/New_York"
-"28611","36.01102","-81.73527","Collettsville","NC","North Carolina","TRUE","","1131","5.9","37027","Caldwell","{""37027"": ""92.88"", ""37011"": ""7.12""}","Caldwell|Avery","37027|37011","FALSE","FALSE","America/New_York"
-"28612","35.66086","-81.54008","Connelly Springs","NC","North Carolina","TRUE","","12314","56.9","37023","Burke","{""37023"": ""99.52"", ""37035"": ""0.48""}","Burke|Catawba","37023|37035","FALSE","FALSE","America/New_York"
-"28613","35.74082","-81.20915","Conover","NC","North Carolina","TRUE","","23353","210.9","37035","Catawba","{""37035"": ""100""}","Catawba","37035","FALSE","FALSE","America/New_York"
-"28615","36.46267","-81.65856","Creston","NC","North Carolina","TRUE","","1811","10.5","37009","Ashe","{""37009"": ""100""}","Ashe","37009","FALSE","FALSE","America/New_York"
-"28616","36.02313","-81.92013","Crossnore","NC","North Carolina","TRUE","","166","23.7","37011","Avery","{""37011"": ""100""}","Avery","37011","FALSE","FALSE","America/New_York"
-"28617","36.48213","-81.38023","Crumpler","NC","North Carolina","TRUE","","1924","21.5","37009","Ashe","{""37009"": ""100""}","Ashe","37009","FALSE","FALSE","America/New_York"
-"28618","36.20672","-81.5172","Deep Gap","NC","North Carolina","TRUE","","2561","25.0","37189","Watauga","{""37189"": ""98.34"", ""37193"": ""1.66""}","Watauga|Wilkes","37189|37193","FALSE","FALSE","America/New_York"
-"28619","35.75855","-81.60243","Drexel","NC","North Carolina","TRUE","","1593","515.4","37023","Burke","{""37023"": ""100""}","Burke","37023","FALSE","FALSE","America/New_York"
-"28621","36.30808","-80.83736","Elkin","NC","North Carolina","TRUE","","10637","58.6","37171","Surry","{""37171"": ""68.43"", ""37193"": ""31.57""}","Surry|Wilkes","37171|37193","FALSE","FALSE","America/New_York"
-"28622","36.19264","-81.94743","Elk Park","NC","North Carolina","TRUE","","2189","27.3","37011","Avery","{""37011"": ""100""}","Avery","37011","FALSE","FALSE","America/New_York"
-"28623","36.52964","-80.97076","Ennice","NC","North Carolina","TRUE","","1540","21.0","37005","Alleghany","{""37005"": ""100""}","Alleghany","37005","FALSE","FALSE","America/New_York"
-"28624","36.12128","-81.42019","Ferguson","NC","North Carolina","TRUE","","1499","9.3","37193","Wilkes","{""37193"": ""100""}","Wilkes","37193","FALSE","FALSE","America/New_York"
-"28625","35.86507","-80.88572","Statesville","NC","North Carolina","TRUE","","39559","78.0","37097","Iredell","{""37097"": ""99.77"", ""37003"": ""0.23""}","Iredell|Alexander","37097|37003","FALSE","FALSE","America/New_York"
-"28626","36.2954","-81.50144","Fleetwood","NC","North Carolina","TRUE","","2693","32.1","37009","Ashe","{""37009"": ""100""}","Ashe","37009","FALSE","FALSE","America/New_York"
-"28627","36.45785","-81.00585","Glade Valley","NC","North Carolina","TRUE","","1020","19.7","37005","Alleghany","{""37005"": ""100""}","Alleghany","37005","FALSE","FALSE","America/New_York"
-"28628","35.72629","-81.78507","Glen Alpine","NC","North Carolina","TRUE","","476","356.6","37023","Burke","{""37023"": ""100""}","Burke","37023","FALSE","FALSE","America/New_York"
-"28629","36.34017","-81.36516","Glendale Springs","NC","North Carolina","TRUE","","0","0.0","37009","Ashe","{""37009"": ""100""}","Ashe","37009","FALSE","FALSE","America/New_York"
-"28630","35.82489","-81.42344","Granite Falls","NC","North Carolina","TRUE","","20262","130.4","37027","Caldwell","{""37027"": ""99.08"", ""37003"": ""0.92""}","Caldwell|Alexander","37027|37003","FALSE","FALSE","America/New_York"
-"28631","36.5515","-81.41082","Grassy Creek","NC","North Carolina","TRUE","","758","11.7","37009","Ashe","{""37009"": ""95.29"", ""37005"": ""4.71""}","Ashe|Alleghany","37009|37005","FALSE","FALSE","America/New_York"
-"28634","35.97155","-80.75388","Harmony","NC","North Carolina","TRUE","","4852","29.7","37097","Iredell","{""37097"": ""91.94"", ""37059"": ""8.06""}","Iredell|Davie","37097|37059","FALSE","FALSE","America/New_York"
-"28635","36.30546","-81.12605","Hays","NC","North Carolina","TRUE","","3055","28.0","37193","Wilkes","{""37193"": ""100""}","Wilkes","37193","FALSE","FALSE","America/New_York"
-"28636","35.94324","-81.06397","Hiddenite","NC","North Carolina","TRUE","","4901","31.8","37003","Alexander","{""37003"": ""95.85"", ""37097"": ""4.15""}","Alexander|Iredell","37003|37097","FALSE","FALSE","America/New_York"
-"28637","35.71798","-81.41929","Hildebran","NC","North Carolina","TRUE","","1692","227.4","37023","Burke","{""37023"": ""100""}","Burke","37023","FALSE","FALSE","America/New_York"
-"28638","35.8446","-81.47663","Hudson","NC","North Carolina","TRUE","","12277","234.0","37027","Caldwell","{""37027"": ""100""}","Caldwell","37027","FALSE","FALSE","America/New_York"
-"28640","36.40345","-81.40751","Jefferson","NC","North Carolina","TRUE","","4985","49.5","37009","Ashe","{""37009"": ""100""}","Ashe","37009","FALSE","FALSE","America/New_York"
-"28642","36.2194","-80.81964","Jonesville","NC","North Carolina","TRUE","","5881","62.3","37197","Yadkin","{""37197"": ""94.85"", ""37193"": ""5.15""}","Yadkin|Wilkes","37197|37193","FALSE","FALSE","America/New_York"
-"28643","36.5296","-81.5344","Lansing","NC","North Carolina","TRUE","","3842","21.3","37009","Ashe","{""37009"": ""100""}","Ashe","37009","FALSE","FALSE","America/New_York"
-"28644","36.4313","-81.26683","Laurel Springs","NC","North Carolina","TRUE","","1147","6.5","37005","Alleghany","{""37005"": ""52.54"", ""37009"": ""47.26"", ""37193"": ""0.2""}","Alleghany|Ashe|Wilkes","37005|37009|37193","FALSE","FALSE","America/New_York"
-"28645","35.97735","-81.54417","Lenoir","NC","North Carolina","TRUE","","46232","54.1","37027","Caldwell","{""37027"": ""99.19"", ""37023"": ""0.63"", ""37189"": ""0.18""}","Caldwell|Burke|Watauga","37027|37023|37189","FALSE","FALSE","America/New_York"
-"28646","36.07917","-81.8392","Linville","NC","North Carolina","TRUE","","310","5.5","37011","Avery","{""37011"": ""100""}","Avery","37011","FALSE","FALSE","America/New_York"
-"28647","35.938","-81.973","Linville Falls","NC","North Carolina","TRUE","","16","1.0","37011","Avery","{""37011"": ""100""}","Avery","37011","FALSE","FALSE","America/New_York"
-"28649","36.33683","-81.20101","McGrady","NC","North Carolina","TRUE","","868","9.6","37193","Wilkes","{""37193"": ""100""}","Wilkes","37193","FALSE","FALSE","America/New_York"
-"28650","35.57214","-81.15196","Maiden","NC","North Carolina","TRUE","","10955","94.6","37035","Catawba","{""37035"": ""79.82"", ""37109"": ""20.18""}","Catawba|Lincoln","37035|37109","FALSE","FALSE","America/New_York"
-"28651","36.27221","-81.2849","Millers Creek","NC","North Carolina","TRUE","","6820","30.0","37193","Wilkes","{""37193"": ""100""}","Wilkes","37193","FALSE","FALSE","America/New_York"
-"28652","36.10008","-81.98729","Minneapolis","NC","North Carolina","TRUE","","0","0.0","37011","Avery","{""37011"": ""100""}","Avery","37011","FALSE","FALSE","America/New_York"
-"28654","36.06185","-81.15149","Moravian Falls","NC","North Carolina","TRUE","","3268","20.1","37193","Wilkes","{""37193"": ""94.45"", ""37003"": ""5.55""}","Wilkes|Alexander","37193|37003","FALSE","FALSE","America/New_York"
-"28655","35.75713","-81.74413","Morganton","NC","North Carolina","TRUE","","55009","66.8","37023","Burke","{""37023"": ""99.92"", ""37111"": ""0.08""}","Burke|McDowell","37023|37111","FALSE","FALSE","America/New_York"
-"28657","36.03015","-81.94099","Newland","NC","North Carolina","TRUE","","8651","20.9","37011","Avery","{""37011"": ""92.65"", ""37023"": ""7.15"", ""37111"": ""0.2""}","Avery|Burke|McDowell","37011|37023|37111","FALSE","FALSE","America/New_York"
-"28658","35.63586","-81.24087","Newton","NC","North Carolina","TRUE","","27688","145.1","37035","Catawba","{""37035"": ""100""}","Catawba","37035","FALSE","FALSE","America/New_York"
-"28659","36.16602","-81.07622","North Wilkesboro","NC","North Carolina","TRUE","","21457","81.2","37193","Wilkes","{""37193"": ""100""}","Wilkes","37193","FALSE","FALSE","America/New_York"
-"28660","35.96842","-80.85709","Olin","NC","North Carolina","TRUE","","2210","26.7","37097","Iredell","{""37097"": ""100""}","Iredell","37097","FALSE","FALSE","America/New_York"
-"28662","36.0215","-81.89909","Pineola","NC","North Carolina","TRUE","","193","41.7","37011","Avery","{""37011"": ""100""}","Avery","37011","FALSE","FALSE","America/New_York"
-"28663","36.53905","-81.30477","Piney Creek","NC","North Carolina","TRUE","","616","13.6","37005","Alleghany","{""37005"": ""100""}","Alleghany","37005","FALSE","FALSE","America/New_York"
-"28665","36.20971","-81.37519","Purlear","NC","North Carolina","TRUE","","2376","14.6","37193","Wilkes","{""37193"": ""100""}","Wilkes","37193","FALSE","FALSE","America/New_York"
-"28666","35.72506","-81.47052","Icard","NC","North Carolina","TRUE","","138","114.6","37023","Burke","{""37023"": ""100""}","Burke","37023","FALSE","FALSE","America/New_York"
-"28667","35.77216","-81.42794","Rhodhiss","NC","North Carolina","TRUE","","360","231.3","37027","Caldwell","{""37027"": ""59.21"", ""37023"": ""40.79""}","Caldwell|Burke","37027|37023","FALSE","FALSE","America/New_York"
-"28668","36.40737","-80.99129","Roaring Gap","NC","North Carolina","TRUE","","481","14.3","37005","Alleghany","{""37005"": ""100""}","Alleghany","37005","FALSE","FALSE","America/New_York"
-"28669","36.22862","-80.99496","Roaring River","NC","North Carolina","TRUE","","2623","21.9","37193","Wilkes","{""37193"": ""100""}","Wilkes","37193","FALSE","FALSE","America/New_York"
-"28670","36.19367","-80.92346","Ronda","NC","North Carolina","TRUE","","3649","37.9","37193","Wilkes","{""37193"": ""100""}","Wilkes","37193","FALSE","FALSE","America/New_York"
-"28671","35.75273","-81.52787","Rutherford College","NC","North Carolina","TRUE","","545","283.8","37023","Burke","{""37023"": ""100""}","Burke","37023","FALSE","FALSE","America/New_York"
-"28672","36.4833","-81.32758","Scottville","NC","North Carolina","TRUE","","15","3.0","37009","Ashe","{""37009"": ""100""}","Ashe","37009","FALSE","FALSE","America/New_York"
-"28673","35.6076","-80.99923","Sherrills Ford","NC","North Carolina","TRUE","","6221","94.5","37035","Catawba","{""37035"": ""98.33"", ""37109"": ""1.67""}","Catawba|Lincoln","37035|37109","FALSE","FALSE","America/New_York"
-"28675","36.50348","-81.13528","Sparta","NC","North Carolina","TRUE","","6707","22.3","37005","Alleghany","{""37005"": ""100""}","Alleghany","37005","FALSE","FALSE","America/New_York"
-"28676","36.32907","-80.85746","State Road","NC","North Carolina","TRUE","","3788","51.1","37171","Surry","{""37171"": ""72.04"", ""37193"": ""27.96""}","Surry|Wilkes","37171|37193","FALSE","FALSE","America/New_York"
-"28677","35.73728","-80.92343","Statesville","NC","North Carolina","TRUE","","34703","162.5","37097","Iredell","{""37097"": ""100""}","Iredell","37097","FALSE","FALSE","America/New_York"
-"28678","35.83465","-81.06028","Stony Point","NC","North Carolina","TRUE","","5676","49.0","37003","Alexander","{""37003"": ""52.81"", ""37097"": ""47.19""}","Alexander|Iredell","37003|37097","FALSE","FALSE","America/New_York"
-"28679","36.25934","-81.84268","Sugar Grove","NC","North Carolina","TRUE","","1609","23.8","37189","Watauga","{""37189"": ""96.22"", ""37011"": ""3.78""}","Watauga|Avery","37189|37011","FALSE","FALSE","America/New_York"
-"28681","35.92094","-81.2221","Taylorsville","NC","North Carolina","TRUE","","26448","61.0","37003","Alexander","{""37003"": ""100""}","Alexander","37003","FALSE","FALSE","America/New_York"
-"28682","35.58088","-80.96422","Terrell","NC","North Carolina","TRUE","","1474","175.3","37035","Catawba","{""37035"": ""100""}","Catawba","37035","FALSE","FALSE","America/New_York"
-"28683","36.3892","-80.91181","Thurmond","NC","North Carolina","TRUE","","1232","14.2","37171","Surry","{""37171"": ""54.51"", ""37193"": ""45.49""}","Surry|Wilkes","37171|37193","FALSE","FALSE","America/New_York"
-"28684","36.3384","-81.6146","Todd","NC","North Carolina","TRUE","","2038","14.9","37009","Ashe","{""37009"": ""55.72"", ""37189"": ""44.28""}","Ashe|Watauga","37009|37189","FALSE","FALSE","America/New_York"
-"28685","36.36079","-81.05984","Traphill","NC","North Carolina","TRUE","","1854","11.7","37193","Wilkes","{""37193"": ""100""}","Wilkes","37193","FALSE","FALSE","America/New_York"
-"28689","36.04317","-80.93531","Union Grove","NC","North Carolina","TRUE","","2586","22.3","37097","Iredell","{""37097"": ""78.8"", ""37193"": ""11.33"", ""37197"": ""5.26"", ""37003"": ""4.61""}","Iredell|Wilkes|Yadkin|Alexander","37097|37193|37197|37003","FALSE","FALSE","America/New_York"
-"28690","35.73296","-81.57401","Valdese","NC","North Carolina","TRUE","","9189","164.3","37023","Burke","{""37023"": ""100""}","Burke","37023","FALSE","FALSE","America/New_York"
-"28692","36.28003","-81.79529","Vilas","NC","North Carolina","TRUE","","4070","40.9","37189","Watauga","{""37189"": ""100""}","Watauga","37189","FALSE","FALSE","America/New_York"
-"28693","36.46954","-81.56252","Warrensville","NC","North Carolina","TRUE","","1690","25.3","37009","Ashe","{""37009"": ""100""}","Ashe","37009","FALSE","FALSE","America/New_York"
-"28694","36.36256","-81.47354","West Jefferson","NC","North Carolina","TRUE","","7719","45.0","37009","Ashe","{""37009"": ""99.94"", ""37193"": ""0.06""}","Ashe|Wilkes","37009|37193","FALSE","FALSE","America/New_York"
-"28697","36.13612","-81.1651","Wilkesboro","NC","North Carolina","TRUE","","13833","84.1","37193","Wilkes","{""37193"": ""100""}","Wilkes","37193","FALSE","FALSE","America/New_York"
-"28698","36.33938","-81.74011","Zionville","NC","North Carolina","TRUE","","2312","35.6","37189","Watauga","{""37189"": ""94.02"", ""37009"": ""5.98""}","Watauga|Ashe","37189|37009","FALSE","FALSE","America/New_York"
-"28701","35.70239","-82.64105","Alexander","NC","North Carolina","TRUE","","3240","70.3","37021","Buncombe","{""37021"": ""100""}","Buncombe","37021","FALSE","FALSE","America/New_York"
-"28702","35.39966","-83.62051","Almond","NC","North Carolina","TRUE","","456","8.9","37075","Graham","{""37075"": ""78.69"", ""37173"": ""21.31""}","Graham|Swain","37075|37173","FALSE","FALSE","America/New_York"
-"28704","35.46135","-82.57753","Arden","NC","North Carolina","TRUE","","19261","224.8","37021","Buncombe","{""37021"": ""97.68"", ""37089"": ""2.32""}","Buncombe|Henderson","37021|37089","FALSE","FALSE","America/New_York"
-"28705","36.04365","-82.15888","Bakersville","NC","North Carolina","TRUE","","6870","21.1","37121","Mitchell","{""37121"": ""100""}","Mitchell","37121","FALSE","FALSE","America/New_York"
-"28707","35.39743","-83.06586","Balsam","NC","North Carolina","TRUE","","201","7.0","37099","Jackson","{""37099"": ""100""}","Jackson","37099","FALSE","FALSE","America/New_York"
-"28708","35.2714","-82.86267","Balsam Grove","NC","North Carolina","TRUE","","318","2.5","37175","Transylvania","{""37175"": ""100""}","Transylvania","37175","FALSE","FALSE","America/New_York"
-"28709","35.76386","-82.40612","Barnardsville","NC","North Carolina","TRUE","","2470","18.1","37021","Buncombe","{""37021"": ""100""}","Buncombe","37021","FALSE","FALSE","America/New_York"
-"28711","35.59867","-82.2902","Black Mountain","NC","North Carolina","TRUE","","13269","51.3","37021","Buncombe","{""37021"": ""98.57"", ""37161"": ""0.75"", ""37111"": ""0.58"", ""37089"": ""0.1""}","Buncombe|Rutherford|McDowell|Henderson","37021|37161|37111|37089","FALSE","FALSE","America/New_York"
-"28712","35.16965","-82.77103","Brevard","NC","North Carolina","TRUE","","19847","61.0","37175","Transylvania","{""37175"": ""100""}","Transylvania","37175","FALSE","FALSE","America/New_York"
-"28713","35.36935","-83.50254","Bryson City","NC","North Carolina","TRUE","","8799","24.9","37173","Swain","{""37173"": ""100""}","Swain","37173","FALSE","FALSE","America/New_York"
-"28714","35.89376","-82.31145","Burnsville","NC","North Carolina","TRUE","","16941","22.5","37199","Yancey","{""37199"": ""100""}","Yancey","37199","FALSE","FALSE","America/New_York"
-"28715","35.51246","-82.71225","Candler","NC","North Carolina","TRUE","","26476","131.5","37021","Buncombe","{""37021"": ""100""}","Buncombe","37021","FALSE","FALSE","America/New_York"
-"28716","35.43589","-82.86109","Canton","NC","North Carolina","TRUE","","17770","43.4","37087","Haywood","{""37087"": ""100""}","Haywood","37087","FALSE","FALSE","America/New_York"
-"28717","35.08257","-83.09114","Cashiers","NC","North Carolina","TRUE","","1948","14.6","37099","Jackson","{""37099"": ""100""}","Jackson","37099","FALSE","FALSE","America/New_York"
-"28718","35.16548","-82.6287","Cedar Mountain","NC","North Carolina","TRUE","","379","8.9","37175","Transylvania","{""37175"": ""100""}","Transylvania","37175","FALSE","FALSE","America/New_York"
-"28719","35.51785","-83.33418","Cherokee","NC","North Carolina","TRUE","","7674","21.9","37173","Swain","{""37173"": ""54.44"", ""37099"": ""45.56""}","Swain|Jackson","37173|37099","FALSE","FALSE","America/New_York"
-"28720","35.45103","-82.25356","Chimney Rock","NC","North Carolina","TRUE","","177","20.9","37161","Rutherford","{""37161"": ""100""}","Rutherford","37161","FALSE","FALSE","America/New_York"
-"28721","35.64801","-82.9511","Clyde","NC","North Carolina","TRUE","","10401","36.4","37087","Haywood","{""37087"": ""100""}","Haywood","37087","FALSE","FALSE","America/New_York"
-"28722","35.23413","-82.1247","Columbus","NC","North Carolina","TRUE","","6537","55.4","37149","Polk","{""37149"": ""100""}","Polk","37149","FALSE","FALSE","America/New_York"
-"28723","35.2806","-83.12186","Cullowhee","NC","North Carolina","TRUE","","10918","37.7","37099","Jackson","{""37099"": ""100""}","Jackson","37099","FALSE","FALSE","America/New_York"
-"28725","35.3727","-83.2603","Dillsboro","NC","North Carolina","TRUE","","26","36.8","37099","Jackson","{""37099"": ""100""}","Jackson","37099","FALSE","FALSE","America/New_York"
-"28726","35.28118","-82.4182","East Flat Rock","NC","North Carolina","TRUE","","3701","599.5","37089","Henderson","{""37089"": ""100""}","Henderson","37089","FALSE","FALSE","America/New_York"
-"28729","35.32007","-82.60234","Etowah","NC","North Carolina","TRUE","","3114","274.7","37089","Henderson","{""37089"": ""100""}","Henderson","37089","FALSE","FALSE","America/New_York"
-"28730","35.52465","-82.37036","Fairview","NC","North Carolina","TRUE","","9221","71.8","37021","Buncombe","{""37021"": ""100""}","Buncombe","37021","FALSE","FALSE","America/New_York"
-"28731","35.28894","-82.39353","Flat Rock","NC","North Carolina","TRUE","","8368","119.6","37089","Henderson","{""37089"": ""100""}","Henderson","37089","FALSE","FALSE","America/New_York"
-"28732","35.44586","-82.46666","Fletcher","NC","North Carolina","TRUE","","18107","163.7","37089","Henderson","{""37089"": ""72.57"", ""37021"": ""27.43""}","Henderson|Buncombe","37089|37021","FALSE","FALSE","America/New_York"
-"28733","35.43677","-83.80762","Fontana Dam","NC","North Carolina","TRUE","","27","1.3","37075","Graham","{""37075"": ""100""}","Graham","37075","FALSE","FALSE","America/New_York"
-"28734","35.1828","-83.42108","Franklin","NC","North Carolina","TRUE","","27887","35.7","37113","Macon","{""37113"": ""100""}","Macon","37113","FALSE","FALSE","America/New_York"
-"28735","35.47574","-82.35043","Gerton","NC","North Carolina","TRUE","","303","31.4","37089","Henderson","{""37089"": ""100""}","Henderson","37089","FALSE","FALSE","America/New_York"
-"28736","35.18605","-83.08139","Glenville","NC","North Carolina","TRUE","","782","8.6","37099","Jackson","{""37099"": ""100""}","Jackson","37099","FALSE","FALSE","America/New_York"
-"28739","35.2636","-82.5464","Hendersonville","NC","North Carolina","TRUE","","21492","123.7","37089","Henderson","{""37089"": ""99.14"", ""37175"": ""0.86""}","Henderson|Transylvania","37089|37175","FALSE","FALSE","America/New_York"
-"28740","36.05004","-82.2842","Green Mountain","NC","North Carolina","TRUE","","849","5.9","37199","Yancey","{""37199"": ""56.82"", ""37121"": ""43.18""}","Yancey|Mitchell","37199|37121","FALSE","FALSE","America/New_York"
-"28741","35.06147","-83.21069","Highlands","NC","North Carolina","TRUE","","3672","16.3","37113","Macon","{""37113"": ""95.68"", ""37099"": ""4.32""}","Macon|Jackson","37113|37099","FALSE","FALSE","America/New_York"
-"28742","35.37582","-82.62471","Horse Shoe","NC","North Carolina","TRUE","","3155","49.8","37089","Henderson","{""37089"": ""88.78"", ""37175"": ""11.22""}","Henderson|Transylvania","37089|37175","FALSE","FALSE","America/New_York"
-"28743","35.80819","-82.90049","Hot Springs","NC","North Carolina","TRUE","","1997","6.2","37115","Madison","{""37115"": ""99.48"", ""37087"": ""0.52""}","Madison|Haywood","37115|37087","FALSE","FALSE","America/New_York"
-"28745","35.5259","-82.9704","Lake Junaluska","NC","North Carolina","TRUE","","417","258.1","37087","Haywood","{""37087"": ""100""}","Haywood","37087","FALSE","FALSE","America/New_York"
-"28746","35.45947","-82.16648","Lake Lure","NC","North Carolina","TRUE","","2420","19.9","37161","Rutherford","{""37161"": ""100""}","Rutherford","37161","FALSE","FALSE","America/New_York"
-"28747","35.15718","-82.92327","Lake Toxaway","NC","North Carolina","TRUE","","2297","16.8","37175","Transylvania","{""37175"": ""99.82"", ""37099"": ""0.18""}","Transylvania|Jackson","37175|37099","FALSE","FALSE","America/New_York"
-"28748","35.64957","-82.75774","Leicester","NC","North Carolina","TRUE","","12606","57.6","37021","Buncombe","{""37021"": ""99.49"", ""37115"": ""0.51""}","Buncombe|Madison","37021|37115","FALSE","FALSE","America/New_York"
-"28749","35.84058","-82.09877","Little Switzerland","NC","North Carolina","TRUE","","138","51.4","37111","McDowell","{""37111"": ""78"", ""37121"": ""22""}","McDowell|Mitchell","37111|37121","FALSE","FALSE","America/New_York"
-"28751","35.505","-83.1207","Maggie Valley","NC","North Carolina","TRUE","","3473","29.9","37087","Haywood","{""37087"": ""98.87"", ""37099"": ""1.13""}","Haywood|Jackson","37087|37099","FALSE","FALSE","America/New_York"
-"28752","35.71188","-82.03696","Marion","NC","North Carolina","TRUE","","30924","48.7","37111","McDowell","{""37111"": ""100""}","McDowell","37111","FALSE","FALSE","America/New_York"
-"28753","35.86765","-82.70241","Marshall","NC","North Carolina","TRUE","","9671","14.1","37115","Madison","{""37115"": ""90.46"", ""37021"": ""9.54""}","Madison|Buncombe","37115|37021","FALSE","FALSE","America/New_York"
-"28754","35.8756","-82.51568","Mars Hill","NC","North Carolina","TRUE","","10290","46.0","37115","Madison","{""37115"": ""98.23"", ""37199"": ""1.77""}","Madison|Yancey","37115|37199","FALSE","FALSE","America/New_York"
-"28756","35.34733","-82.18106","Mill Spring","NC","North Carolina","TRUE","","4388","18.9","37149","Polk","{""37149"": ""98.36"", ""37161"": ""1.64""}","Polk|Rutherford","37149|37161","FALSE","FALSE","America/New_York"
-"28757","35.64973","-82.30857","Montreat","NC","North Carolina","TRUE","","100","31.7","37021","Buncombe","{""37021"": ""100""}","Buncombe","37021","FALSE","FALSE","America/New_York"
-"28759","35.3818","-82.58513","Mills River","NC","North Carolina","TRUE","","7456","123.9","37089","Henderson","{""37089"": ""97.85"", ""37021"": ""2.15""}","Henderson|Buncombe","37089|37021","FALSE","FALSE","America/New_York"
-"28761","35.68636","-81.907","Nebo","NC","North Carolina","TRUE","","7194","25.8","37111","McDowell","{""37111"": ""92.14"", ""37023"": ""7.86""}","McDowell|Burke","37111|37023","FALSE","FALSE","America/New_York"
-"28762","35.63368","-82.19075","Old Fort","NC","North Carolina","TRUE","","7054","27.3","37111","McDowell","{""37111"": ""100""}","McDowell","37111","FALSE","FALSE","America/New_York"
-"28763","35.03818","-83.43227","Otto","NC","North Carolina","TRUE","","2419","16.9","37113","Macon","{""37113"": ""100""}","Macon","37113","FALSE","FALSE","America/New_York"
-"28766","35.25102","-82.61987","Penrose","NC","North Carolina","TRUE","","1331","88.2","37175","Transylvania","{""37175"": ""93.34"", ""37089"": ""6.66""}","Transylvania|Henderson","37175|37089","FALSE","FALSE","America/New_York"
-"28768","35.30434","-82.70935","Pisgah Forest","NC","North Carolina","TRUE","","7504","34.9","37175","Transylvania","{""37175"": ""100""}","Transylvania","37175","FALSE","FALSE","America/New_York"
-"28771","35.34574","-83.8463","Robbinsville","NC","North Carolina","TRUE","","8069","11.5","37075","Graham","{""37075"": ""99.93"", ""37173"": ""0.07""}","Graham|Swain","37075|37173","FALSE","FALSE","America/New_York"
-"28772","35.11698","-82.82724","Rosman","NC","North Carolina","TRUE","","1149","35.2","37175","Transylvania","{""37175"": ""100""}","Transylvania","37175","FALSE","FALSE","America/New_York"
-"28773","35.25648","-82.31353","Saluda","NC","North Carolina","TRUE","","2973","20.6","37149","Polk","{""37149"": ""62.79"", ""37089"": ""37.21""}","Polk|Henderson","37149|37089","FALSE","FALSE","America/New_York"
-"28774","35.09142","-82.99513","Sapphire","NC","North Carolina","TRUE","","924","7.9","37175","Transylvania","{""37175"": ""53.11"", ""37099"": ""46.89""}","Transylvania|Jackson","37175|37099","FALSE","FALSE","America/New_York"
-"28775","35.0198","-83.32836","Scaly Mountain","NC","North Carolina","TRUE","","304","11.9","37113","Macon","{""37113"": ""100""}","Macon","37113","FALSE","FALSE","America/New_York"
-"28777","35.90169","-82.06863","Spruce Pine","NC","North Carolina","TRUE","","10717","60.7","37121","Mitchell","{""37121"": ""77.68"", ""37011"": ""20.65"", ""37199"": ""1.45"", ""37111"": ""0.22""}","Mitchell|Avery|Yancey|McDowell","37121|37011|37199|37111","FALSE","FALSE","America/New_York"
-"28778","35.61719","-82.40701","Swannanoa","NC","North Carolina","TRUE","","9584","107.6","37021","Buncombe","{""37021"": ""100""}","Buncombe","37021","FALSE","FALSE","America/New_York"
-"28779","35.35521","-83.21134","Sylva","NC","North Carolina","TRUE","","18477","66.5","37099","Jackson","{""37099"": ""100""}","Jackson","37099","FALSE","FALSE","America/New_York"
-"28781","35.21522","-83.64605","Topton","NC","North Carolina","TRUE","","781","3.8","37113","Macon","{""37113"": ""85.41"", ""37039"": ""14.59""}","Macon|Cherokee","37113|37039","FALSE","FALSE","America/New_York"
-"28782","35.23587","-82.15041","Tryon","NC","North Carolina","TRUE","","6852","53.3","37149","Polk","{""37149"": ""100""}","Polk","37149","FALSE","FALSE","America/New_York"
-"28783","35.25277","-83.02057","Tuckasegee","NC","North Carolina","TRUE","","1858","11.2","37099","Jackson","{""37099"": ""100""}","Jackson","37099","FALSE","FALSE","America/New_York"
-"28785","35.63716","-83.09195","Waynesville","NC","North Carolina","TRUE","","7953","20.1","37087","Haywood","{""37087"": ""100""}","Haywood","37087","FALSE","FALSE","America/New_York"
-"28786","35.46316","-82.99227","Waynesville","NC","North Carolina","TRUE","","21004","109.0","37087","Haywood","{""37087"": ""100"", ""37099"": ""0""}","Haywood|Jackson","37087|37099","FALSE","FALSE","America/New_York"
-"28787","35.72596","-82.52324","Weaverville","NC","North Carolina","TRUE","","21533","104.5","37021","Buncombe","{""37021"": ""97.5"", ""37115"": ""2.5""}","Buncombe|Madison","37021|37115","FALSE","FALSE","America/New_York"
-"28789","35.40656","-83.31736","Whittier","NC","North Carolina","TRUE","","5779","39.1","37099","Jackson","{""37099"": ""83.72"", ""37173"": ""16.28""}","Jackson|Swain","37099|37173","FALSE","FALSE","America/New_York"
-"28790","35.20139","-82.48748","Zirconia","NC","North Carolina","TRUE","","3295","30.4","37089","Henderson","{""37089"": ""100""}","Henderson","37089","FALSE","FALSE","America/New_York"
-"28791","35.35616","-82.50843","Hendersonville","NC","North Carolina","TRUE","","15528","364.7","37089","Henderson","{""37089"": ""100""}","Henderson","37089","FALSE","FALSE","America/New_York"
-"28792","35.38983","-82.36891","Hendersonville","NC","North Carolina","TRUE","","34703","133.2","37089","Henderson","{""37089"": ""99.98"", ""37149"": ""0.02""}","Henderson|Polk","37089|37149","FALSE","FALSE","America/New_York"
-"28801","35.59416","-82.55784","Asheville","NC","North Carolina","TRUE","","13790","1048.6","37021","Buncombe","{""37021"": ""100""}","Buncombe","37021","FALSE","FALSE","America/New_York"
-"28803","35.52962","-82.52001","Asheville","NC","North Carolina","TRUE","","34491","347.4","37021","Buncombe","{""37021"": ""100""}","Buncombe","37021","FALSE","FALSE","America/New_York"
-"28804","35.64772","-82.56459","Asheville","NC","North Carolina","TRUE","","22511","327.0","37021","Buncombe","{""37021"": ""100""}","Buncombe","37021","FALSE","FALSE","America/New_York"
-"28805","35.61362","-82.48211","Asheville","NC","North Carolina","TRUE","","19952","296.6","37021","Buncombe","{""37021"": ""100""}","Buncombe","37021","FALSE","FALSE","America/New_York"
-"28806","35.57236","-82.6143","Asheville","NC","North Carolina","TRUE","","43597","443.3","37021","Buncombe","{""37021"": ""100""}","Buncombe","37021","FALSE","FALSE","America/New_York"
-"28901","35.19808","-83.81034","Andrews","NC","North Carolina","TRUE","","4927","30.1","37039","Cherokee","{""37039"": ""100""}","Cherokee","37039","FALSE","FALSE","America/New_York"
-"28902","35.02609","-83.95661","Brasstown","NC","North Carolina","TRUE","","1419","24.2","37043","Clay","{""37043"": ""74.58"", ""37039"": ""25.42""}","Clay|Cherokee","37043|37039","FALSE","FALSE","America/New_York"
-"28904","35.06241","-83.72757","Hayesville","NC","North Carolina","TRUE","","8969","18.2","37043","Clay","{""37043"": ""100""}","Clay","37043","FALSE","FALSE","America/New_York"
-"28905","35.16395","-83.94009","Marble","NC","North Carolina","TRUE","","2863","24.6","37039","Cherokee","{""37039"": ""100""}","Cherokee","37039","FALSE","FALSE","America/New_York"
-"28906","35.11873","-84.13326","Murphy","NC","North Carolina","TRUE","","19701","22.8","37039","Cherokee","{""37039"": ""100""}","Cherokee","37039","FALSE","FALSE","America/New_York"
-"28909","35.00171","-83.90468","Warne","NC","North Carolina","TRUE","","993","38.9","37043","Clay","{""37043"": ""100""}","Clay","37043","FALSE","FALSE","America/New_York"
-"29001","33.7835","-80.17252","Alcolu","SC","South Carolina","TRUE","","1838","10.8","45027","Clarendon","{""45027"": ""93.06"", ""45085"": ""6.94""}","Clarendon|Sumter","45027|45085","FALSE","FALSE","America/New_York"
-"29003","33.24056","-81.01545","Bamberg","SC","South Carolina","TRUE","","6480","17.8","45009","Bamberg","{""45009"": ""100""}","Bamberg","45009","FALSE","FALSE","America/New_York"
-"29006","33.87029","-81.55054","Batesburg","SC","South Carolina","TRUE","","10555","28.2","45063","Lexington","{""45063"": ""52.66"", ""45081"": ""28.41"", ""45003"": ""18.93""}","Lexington|Saluda|Aiken","45063|45081|45003","FALSE","FALSE","America/New_York"
-"29009","34.43983","-80.37879","Bethune","SC","South Carolina","TRUE","","1848","6.6","45055","Kershaw","{""45055"": ""92.62"", ""45025"": ""4.75"", ""45061"": ""2.62""}","Kershaw|Chesterfield|Lee","45055|45025|45061","FALSE","FALSE","America/New_York"
-"29010","34.21604","-80.27023","Bishopville","SC","South Carolina","TRUE","","12002","22.4","45061","Lee","{""45061"": ""99.22"", ""45055"": ""0.78""}","Lee|Kershaw","45061|45055","FALSE","FALSE","America/New_York"
-"29014","34.54461","-81.13436","Blackstock","SC","South Carolina","TRUE","","1756","4.1","45023","Chester","{""45023"": ""67"", ""45039"": ""33""}","Chester|Fairfield","45023|45039","FALSE","FALSE","America/New_York"
-"29015","34.43967","-81.33699","Blair","SC","South Carolina","TRUE","","1545","4.9","45039","Fairfield","{""45039"": ""100""}","Fairfield","45039","FALSE","FALSE","America/New_York"
-"29016","34.20244","-80.99575","Blythewood","SC","South Carolina","TRUE","","21389","95.9","45079","Richland","{""45079"": ""97.78"", ""45039"": ""2.22""}","Richland|Fairfield","45079|45039","FALSE","FALSE","America/New_York"
-"29018","33.34524","-80.64534","Bowman","SC","South Carolina","TRUE","","3210","11.3","45075","Orangeburg","{""45075"": ""93.89"", ""45035"": ""6.11""}","Orangeburg|Dorchester","45075|45035","FALSE","FALSE","America/New_York"
-"29020","34.31226","-80.59702","Camden","SC","South Carolina","TRUE","","21219","36.0","45055","Kershaw","{""45055"": ""97.34"", ""45061"": ""2.66""}","Kershaw|Lee","45055|45061","FALSE","FALSE","America/New_York"
-"29030","33.58113","-80.65351","Cameron","SC","South Carolina","TRUE","","1757","7.5","45017","Calhoun","{""45017"": ""74.38"", ""45075"": ""25.62""}","Calhoun|Orangeburg","45017|45075","FALSE","FALSE","America/New_York"
-"29031","34.60413","-81.43241","Carlisle","SC","South Carolina","TRUE","","1185","3.7","45087","Union","{""45087"": ""66.42"", ""45023"": ""27.35"", ""45039"": ""6.23""}","Union|Chester|Fairfield","45087|45023|45039","FALSE","FALSE","America/New_York"
-"29032","34.34083","-80.45555","Cassatt","SC","South Carolina","TRUE","","5674","27.7","45055","Kershaw","{""45055"": ""97.2"", ""45061"": ""2.8""}","Kershaw|Lee","45055|45061","FALSE","FALSE","America/New_York"
-"29033","33.95661","-81.0578","Cayce","SC","South Carolina","TRUE","","12673","548.7","45063","Lexington","{""45063"": ""100""}","Lexington","45063","FALSE","FALSE","America/New_York"
-"29036","34.1329","-81.33686","Chapin","SC","South Carolina","TRUE","","23011","164.4","45063","Lexington","{""45063"": ""72.4"", ""45079"": ""25.76"", ""45071"": ""1.83""}","Lexington|Richland|Newberry","45063|45079|45071","FALSE","FALSE","America/New_York"
-"29037","34.18558","-81.86437","Chappells","SC","South Carolina","TRUE","","950","5.5","45071","Newberry","{""45071"": ""58.01"", ""45081"": ""41.99""}","Newberry|Saluda","45071|45081","FALSE","FALSE","America/New_York"
-"29038","33.37278","-80.98135","Cope","SC","South Carolina","TRUE","","1903","9.2","45075","Orangeburg","{""45075"": ""100""}","Orangeburg","45075","FALSE","FALSE","America/New_York"
-"29039","33.41513","-80.9076","Cordova","SC","South Carolina","TRUE","","3838","57.4","45075","Orangeburg","{""45075"": ""100""}","Orangeburg","45075","FALSE","FALSE","America/New_York"
-"29040","34.0593","-80.43427","Dalzell","SC","South Carolina","TRUE","","10272","70.6","45085","Sumter","{""45085"": ""89.97"", ""45061"": ""10.03""}","Sumter|Lee","45085|45061","FALSE","FALSE","America/New_York"
-"29042","33.30999","-81.15072","Denmark","SC","South Carolina","TRUE","","4828","28.5","45009","Bamberg","{""45009"": ""100""}","Bamberg","45009","FALSE","FALSE","America/New_York"
-"29044","33.93088","-80.69349","Eastover","SC","South Carolina","TRUE","","6075","17.0","45079","Richland","{""45079"": ""100""}","Richland","45079","FALSE","FALSE","America/New_York"
-"29045","34.18243","-80.8099","Elgin","SC","South Carolina","TRUE","","26482","146.0","45055","Kershaw","{""45055"": ""60.21"", ""45079"": ""39.79""}","Kershaw|Richland","45055|45079","FALSE","FALSE","America/New_York"
-"29046","34.10827","-80.15832","Elliott","SC","South Carolina","TRUE","","143","22.1","45061","Lee","{""45061"": ""100""}","Lee","45061","FALSE","FALSE","America/New_York"
-"29047","33.53362","-80.58157","Elloree","SC","South Carolina","TRUE","","3786","22.3","45075","Orangeburg","{""45075"": ""64"", ""45017"": ""36""}","Orangeburg|Calhoun","45075|45017","FALSE","FALSE","America/New_York"
-"29048","33.38888","-80.29595","Eutawville","SC","South Carolina","TRUE","","5160","41.8","45075","Orangeburg","{""45075"": ""100""}","Orangeburg","45075","FALSE","FALSE","America/New_York"
-"29051","33.86445","-80.12761","Gable","SC","South Carolina","TRUE","","1752","15.9","45085","Sumter","{""45085"": ""56.78"", ""45027"": ""43.22""}","Sumter|Clarendon","45085|45027","FALSE","FALSE","America/New_York"
-"29052","33.81144","-80.73851","Gadsden","SC","South Carolina","TRUE","","2091","14.1","45079","Richland","{""45079"": ""100""}","Richland","45079","FALSE","FALSE","America/New_York"
-"29053","33.82734","-81.08767","Gaston","SC","South Carolina","TRUE","","18595","88.4","45063","Lexington","{""45063"": ""94.3"", ""45017"": ""5.7""}","Lexington|Calhoun","45063|45017","FALSE","FALSE","America/New_York"
-"29054","33.94214","-81.38044","Gilbert","SC","South Carolina","TRUE","","9211","62.5","45063","Lexington","{""45063"": ""100""}","Lexington","45063","FALSE","FALSE","America/New_York"
-"29055","34.576","-80.91757","Great Falls","SC","South Carolina","TRUE","","4065","44.6","45023","Chester","{""45023"": ""78"", ""45039"": ""22""}","Chester|Fairfield","45023|45039","FALSE","FALSE","America/New_York"
-"29056","33.60516","-79.99465","Greeleyville","SC","South Carolina","TRUE","","2343","8.7","45089","Williamsburg","{""45089"": ""92.4"", ""45027"": ""7.6""}","Williamsburg|Clarendon","45089|45027","FALSE","FALSE","America/New_York"
-"29058","34.56391","-80.73586","Heath Springs","SC","South Carolina","TRUE","","4666","12.7","45057","Lancaster","{""45057"": ""98.48"", ""45055"": ""1.52""}","Lancaster|Kershaw","45057|45055","FALSE","FALSE","America/New_York"
-"29059","33.32915","-80.4176","Holly Hill","SC","South Carolina","TRUE","","5573","19.4","45075","Orangeburg","{""45075"": ""97.03"", ""45015"": ""2.97""}","Orangeburg|Berkeley","45075|45015","FALSE","FALSE","America/New_York"
-"29061","33.89818","-80.85035","Hopkins","SC","South Carolina","TRUE","","14485","62.8","45079","Richland","{""45079"": ""100""}","Richland","45079","FALSE","FALSE","America/New_York"
-"29062","33.99474","-80.60011","Horatio","SC","South Carolina","TRUE","","113","2.7","45085","Sumter","{""45085"": ""100""}","Sumter","45085","FALSE","FALSE","America/New_York"
-"29063","34.14018","-81.20556","Irmo","SC","South Carolina","TRUE","","40577","390.9","45079","Richland","{""45079"": ""92.44"", ""45063"": ""7.56""}","Richland|Lexington","45079|45063","FALSE","FALSE","America/New_York"
-"29065","34.28519","-81.29356","Jenkinsville","SC","South Carolina","TRUE","","504","8.1","45039","Fairfield","{""45039"": ""100""}","Fairfield","45039","FALSE","FALSE","America/New_York"
-"29067","34.54885","-80.5322","Kershaw","SC","South Carolina","TRUE","","10537","20.8","45057","Lancaster","{""45057"": ""74.91"", ""45055"": ""25.09""}","Lancaster|Kershaw","45057|45055","FALSE","FALSE","America/New_York"
-"29069","34.1862","-80.09627","Lamar","SC","South Carolina","TRUE","","4532","22.9","45031","Darlington","{""45031"": ""93.33"", ""45061"": ""6.67""}","Darlington|Lee","45031|45061","FALSE","FALSE","America/New_York"
-"29070","33.91763","-81.45613","Leesville","SC","South Carolina","TRUE","","16211","37.8","45063","Lexington","{""45063"": ""85.77"", ""45081"": ""14.23""}","Lexington|Saluda","45063|45081","FALSE","FALSE","America/New_York"
-"29072","34.00046","-81.27544","Lexington","SC","South Carolina","TRUE","","60908","343.3","45063","Lexington","{""45063"": ""100""}","Lexington","45063","FALSE","FALSE","America/New_York"
-"29073","33.8937","-81.23818","Lexington","SC","South Carolina","TRUE","","47275","227.6","45063","Lexington","{""45063"": ""100""}","Lexington","45063","FALSE","FALSE","America/New_York"
-"29074","34.44965","-80.81551","Liberty Hill","SC","South Carolina","TRUE","","179","3.4","45055","Kershaw","{""45055"": ""100""}","Kershaw","45055","FALSE","FALSE","America/New_York"
-"29075","34.20037","-81.3739","Little Mountain","SC","South Carolina","TRUE","","2761","25.1","45071","Newberry","{""45071"": ""62.77"", ""45079"": ""24.74"", ""45063"": ""12.49""}","Newberry|Richland|Lexington","45071|45079|45063","FALSE","FALSE","America/New_York"
-"29078","34.18347","-80.6991","Lugoff","SC","South Carolina","TRUE","","16896","52.6","45055","Kershaw","{""45055"": ""98.32"", ""45079"": ""1.68""}","Kershaw|Richland","45055|45079","FALSE","FALSE","America/New_York"
-"29079","34.2864","-80.1137","Lydia","SC","South Carolina","TRUE","","14","25.4","45031","Darlington","{""45031"": ""100""}","Darlington","45031","FALSE","FALSE","America/New_York"
-"29080","34.01121","-80.08539","Lynchburg","SC","South Carolina","TRUE","","3095","9.0","45061","Lee","{""45061"": ""52.53"", ""45085"": ""47.47""}","Lee|Sumter","45061|45085","FALSE","FALSE","America/New_York"
-"29081","33.0921","-81.04244","Ehrhardt","SC","South Carolina","TRUE","","1191","5.7","45009","Bamberg","{""45009"": ""98.96"", ""45029"": ""1.04""}","Bamberg|Colleton","45009|45029","FALSE","FALSE","America/New_York"
-"29082","33.03773","-80.94174","Lodge","SC","South Carolina","TRUE","","508","4.8","45029","Colleton","{""45029"": ""98.25"", ""45009"": ""1.75""}","Colleton|Bamberg","45029|45009","FALSE","FALSE","America/New_York"
-"29101","34.46022","-80.24829","McBee","SC","South Carolina","TRUE","","3037","10.9","45025","Chesterfield","{""45025"": ""81.11"", ""45031"": ""18.89""}","Chesterfield|Darlington","45025|45031","FALSE","FALSE","America/New_York"
-"29102","33.64506","-80.19125","Manning","SC","South Carolina","TRUE","","17552","27.6","45027","Clarendon","{""45027"": ""100""}","Clarendon","45027","FALSE","FALSE","America/New_York"
-"29104","33.99854","-80.21791","Mayesville","SC","South Carolina","TRUE","","1549","10.0","45085","Sumter","{""45085"": ""55.39"", ""45061"": ""44.61""}","Sumter|Lee","45085|45061","FALSE","FALSE","America/New_York"
-"29105","33.80843","-81.59564","Monetta","SC","South Carolina","TRUE","","1207","15.9","45003","Aiken","{""45003"": ""79.39"", ""45081"": ""20.61""}","Aiken|Saluda","45003|45081","FALSE","FALSE","America/New_York"
-"29107","33.52866","-81.1239","Neeses","SC","South Carolina","TRUE","","3038","15.4","45075","Orangeburg","{""45075"": ""100""}","Orangeburg","45075","FALSE","FALSE","America/New_York"
-"29108","34.29876","-81.62475","Newberry","SC","South Carolina","TRUE","","21444","39.8","45071","Newberry","{""45071"": ""100""}","Newberry","45071","FALSE","FALSE","America/New_York"
-"29111","33.78531","-80.01233","New Zion","SC","South Carolina","TRUE","","1678","10.0","45027","Clarendon","{""45027"": ""93.81"", ""45089"": ""6.19""}","Clarendon|Williamsburg","45027|45089","FALSE","FALSE","America/New_York"
-"29112","33.63031","-81.08273","North","SC","South Carolina","TRUE","","3900","13.0","45075","Orangeburg","{""45075"": ""90.26"", ""45063"": ""6.32"", ""45017"": ""3.42""}","Orangeburg|Lexington|Calhoun","45075|45063|45017","FALSE","FALSE","America/New_York"
-"29113","33.43622","-81.13227","Norway","SC","South Carolina","TRUE","","1439","12.9","45075","Orangeburg","{""45075"": ""100""}","Orangeburg","45075","FALSE","FALSE","America/New_York"
-"29114","33.9537","-79.93237","Olanta","SC","South Carolina","TRUE","","1683","17.5","45041","Florence","{""45041"": ""74.2"", ""45085"": ""24.11"", ""45027"": ""1.69""}","Florence|Sumter|Clarendon","45041|45085|45027","FALSE","FALSE","America/New_York"
-"29115","33.4777","-80.84883","Orangeburg","SC","South Carolina","TRUE","","27794","82.2","45075","Orangeburg","{""45075"": ""100""}","Orangeburg","45075","FALSE","FALSE","America/New_York"
-"29117","33.49816","-80.84893","Orangeburg","SC","South Carolina","TRUE","","1038","4499.3","45075","Orangeburg","{""45075"": ""100""}","Orangeburg","45075","FALSE","FALSE","America/New_York"
-"29118","33.57049","-80.8921","Orangeburg","SC","South Carolina","TRUE","","17451","86.4","45075","Orangeburg","{""45075"": ""96.47"", ""45017"": ""3.53""}","Orangeburg|Calhoun","45075|45017","FALSE","FALSE","America/New_York"
-"29122","34.24012","-81.32534","Peak","SC","South Carolina","TRUE","","40","35.5","45071","Newberry","{""45071"": ""100""}","Newberry","45071","FALSE","FALSE","America/New_York"
-"29123","33.76637","-81.25947","Pelion","SC","South Carolina","TRUE","","8091","45.2","45063","Lexington","{""45063"": ""100""}","Lexington","45063","FALSE","FALSE","America/New_York"
-"29125","33.69829","-80.46723","Pinewood","SC","South Carolina","TRUE","","2390","8.7","45085","Sumter","{""45085"": ""51.69"", ""45027"": ""48.31""}","Sumter|Clarendon","45085|45027","FALSE","FALSE","America/New_York"
-"29126","34.32269","-81.4204","Pomaria","SC","South Carolina","TRUE","","1906","9.6","45071","Newberry","{""45071"": ""100""}","Newberry","45071","FALSE","FALSE","America/New_York"
-"29127","34.16621","-81.51232","Prosperity","SC","South Carolina","TRUE","","8343","31.4","45071","Newberry","{""45071"": ""95.67"", ""45081"": ""4.33""}","Newberry|Saluda","45071|45081","FALSE","FALSE","America/New_York"
-"29128","34.09771","-80.53037","Rembert","SC","South Carolina","TRUE","","5246","18.8","45085","Sumter","{""45085"": ""82.54"", ""45061"": ""10.83"", ""45055"": ""6.63""}","Sumter|Lee|Kershaw","45085|45061|45055","FALSE","FALSE","America/New_York"
-"29129","33.78485","-81.67263","Ridge Spring","SC","South Carolina","TRUE","","3324","15.5","45003","Aiken","{""45003"": ""52.05"", ""45081"": ""36.92"", ""45037"": ""11.03""}","Aiken|Saluda|Edgefield","45003|45081|45037","FALSE","FALSE","America/New_York"
-"29130","34.32541","-80.89267","Ridgeway","SC","South Carolina","TRUE","","6186","15.8","45039","Fairfield","{""45039"": ""82.37"", ""45055"": ""13.33"", ""45079"": ""4.3""}","Fairfield|Kershaw|Richland","45039|45055|45079","FALSE","FALSE","America/New_York"
-"29133","33.35637","-80.81378","Rowesville","SC","South Carolina","TRUE","","657","4.6","45075","Orangeburg","{""45075"": ""100""}","Orangeburg","45075","FALSE","FALSE","America/New_York"
-"29135","33.68917","-80.78727","Saint Matthews","SC","South Carolina","TRUE","","8147","16.4","45017","Calhoun","{""45017"": ""97.41"", ""45075"": ""2.59""}","Calhoun|Orangeburg","45017|45075","FALSE","FALSE","America/New_York"
-"29137","33.60057","-81.32452","Salley","SC","South Carolina","TRUE","","2024","9.2","45003","Aiken","{""45003"": ""90"", ""45075"": ""10""}","Aiken|Orangeburg","45003|45075","FALSE","FALSE","America/New_York"
-"29138","34.04454","-81.77281","Saluda","SC","South Carolina","TRUE","","11111","19.4","45081","Saluda","{""45081"": ""98.33"", ""45047"": ""1.54"", ""45037"": ""0.13""}","Saluda|Greenwood|Edgefield","45081|45047|45037","FALSE","FALSE","America/New_York"
-"29142","33.46347","-80.52511","Santee","SC","South Carolina","TRUE","","4937","36.9","45075","Orangeburg","{""45075"": ""100""}","Orangeburg","45075","FALSE","FALSE","America/New_York"
-"29145","34.22068","-81.77415","Silverstreet","SC","South Carolina","TRUE","","852","7.4","45071","Newberry","{""45071"": ""100""}","Newberry","45071","FALSE","FALSE","America/New_York"
-"29146","33.50863","-81.29827","Springfield","SC","South Carolina","TRUE","","1594","9.7","45075","Orangeburg","{""45075"": ""74.36"", ""45003"": ""25.64""}","Orangeburg|Aiken","45075|45003","FALSE","FALSE","America/New_York"
-"29147","34.0919","-80.9663","State Park","SC","South Carolina","TRUE","","0","0.0","45079","Richland","{""45079"": ""0""}","Richland","45079","FALSE","FALSE","America/New_York"
-"29148","33.53657","-80.34218","Summerton","SC","South Carolina","TRUE","","6697","24.9","45027","Clarendon","{""45027"": ""100""}","Clarendon","45027","FALSE","FALSE","America/New_York"
-"29150","33.8755","-80.35448","Sumter","SC","South Carolina","TRUE","","38053","341.8","45085","Sumter","{""45085"": ""100""}","Sumter","45085","FALSE","FALSE","America/New_York"
-"29152","33.97495","-80.47178","Shaw Afb","SC","South Carolina","TRUE","","2045","169.9","45085","Sumter","{""45085"": ""100""}","Sumter","45085","FALSE","FALSE","America/New_York"
-"29153","33.96077","-80.30418","Sumter","SC","South Carolina","TRUE","","15373","41.5","45085","Sumter","{""45085"": ""97.14"", ""45061"": ""2.86""}","Sumter|Lee","45085|45061","FALSE","FALSE","America/New_York"
-"29154","33.87969","-80.4401","Sumter","SC","South Carolina","TRUE","","29626","144.0","45085","Sumter","{""45085"": ""100""}","Sumter","45085","FALSE","FALSE","America/New_York"
-"29160","33.74396","-81.04175","Swansea","SC","South Carolina","TRUE","","7094","23.4","45063","Lexington","{""45063"": ""76.95"", ""45017"": ""23.05""}","Lexington|Calhoun","45063|45017","FALSE","FALSE","America/New_York"
-"29161","34.10623","-79.94265","Timmonsville","SC","South Carolina","TRUE","","11930","34.2","45041","Florence","{""45041"": ""81.74"", ""45031"": ""18.26""}","Florence|Darlington","45041|45031","FALSE","FALSE","America/New_York"
-"29162","33.88668","-80.01094","Turbeville","SC","South Carolina","TRUE","","2805","32.3","45027","Clarendon","{""45027"": ""99.22"", ""45085"": ""0.78""}","Clarendon|Sumter","45027|45085","FALSE","FALSE","America/New_York"
-"29163","33.42392","-80.4395","Vance","SC","South Carolina","TRUE","","1928","25.1","45075","Orangeburg","{""45075"": ""100""}","Orangeburg","45075","FALSE","FALSE","America/New_York"
-"29164","33.65532","-81.42213","Wagener","SC","South Carolina","TRUE","","5234","20.0","45003","Aiken","{""45003"": ""100""}","Aiken","45003","FALSE","FALSE","America/New_York"
-"29166","33.90175","-81.70816","Ward","SC","South Carolina","TRUE","","762","9.0","45081","Saluda","{""45081"": ""100""}","Saluda","45081","FALSE","FALSE","America/New_York"
-"29168","33.84861","-80.55182","Wedgefield","SC","South Carolina","TRUE","","4131","14.0","45085","Sumter","{""45085"": ""100""}","Sumter","45085","FALSE","FALSE","America/New_York"
-"29169","33.9965","-81.09719","West Columbia","SC","South Carolina","TRUE","","24321","783.7","45063","Lexington","{""45063"": ""100""}","Lexington","45063","FALSE","FALSE","America/New_York"
-"29170","33.93814","-81.14546","West Columbia","SC","South Carolina","TRUE","","21967","351.2","45063","Lexington","{""45063"": ""100""}","Lexington","45063","FALSE","FALSE","America/New_York"
-"29172","33.90748","-81.0721","West Columbia","SC","South Carolina","TRUE","","10496","161.2","45063","Lexington","{""45063"": ""100""}","Lexington","45063","FALSE","FALSE","America/New_York"
-"29175","34.44385","-80.59833","Westville","SC","South Carolina","TRUE","","428","22.0","45055","Kershaw","{""45055"": ""100""}","Kershaw","45055","FALSE","FALSE","America/New_York"
-"29178","34.49038","-81.6022","Whitmire","SC","South Carolina","TRUE","","3214","8.5","45071","Newberry","{""45071"": ""81.23"", ""45087"": ""16.11"", ""45059"": ""2.67""}","Newberry|Union|Laurens","45071|45087|45059","FALSE","FALSE","America/New_York"
-"29180","34.36739","-81.09596","Winnsboro","SC","South Carolina","TRUE","","13956","17.7","45039","Fairfield","{""45039"": ""98.36"", ""45079"": ""1.64""}","Fairfield|Richland","45039|45079","FALSE","FALSE","America/New_York"
-"29201","33.98345","-81.02814","Columbia","SC","South Carolina","TRUE","","20805","703.2","45079","Richland","{""45079"": ""100""}","Richland","45079","FALSE","FALSE","America/New_York"
-"29202","33.99356","-81.031","Columbia","SC","South Carolina","TRUE","","271","11216.0","45079","Richland","{""45079"": ""100""}","Richland","45079","FALSE","FALSE","America/New_York"
-"29203","34.1034","-81.04355","Columbia","SC","South Carolina","TRUE","","40518","247.0","45079","Richland","{""45079"": ""100""}","Richland","45079","FALSE","FALSE","America/New_York"
-"29204","34.02924","-81.00065","Columbia","SC","South Carolina","TRUE","","18523","1107.0","45079","Richland","{""45079"": ""100""}","Richland","45079","FALSE","FALSE","America/New_York"
-"29205","33.99009","-80.99729","Columbia","SC","South Carolina","TRUE","","24417","1434.5","45079","Richland","{""45079"": ""100""}","Richland","45079","FALSE","FALSE","America/New_York"
-"29206","34.02828","-80.95838","Columbia","SC","South Carolina","TRUE","","19491","879.0","45079","Richland","{""45079"": ""100""}","Richland","45079","FALSE","FALSE","America/New_York"
-"29207","34.04138","-80.84042","Columbia","SC","South Carolina","TRUE","","12270","72.4","45079","Richland","{""45079"": ""100""}","Richland","45079","FALSE","FALSE","America/New_York"
-"29208","33.99824","-81.02793","Columbia","SC","South Carolina","TRUE","","756","4406.5","45079","Richland","{""45079"": ""100""}","Richland","45079","FALSE","FALSE","America/New_York"
-"29209","33.92407","-80.95328","Columbia","SC","South Carolina","TRUE","","33523","250.0","45079","Richland","{""45079"": ""100""}","Richland","45079","FALSE","FALSE","America/New_York"
-"29210","34.04612","-81.10661","Columbia","SC","South Carolina","TRUE","","39312","949.8","45079","Richland","{""45079"": ""72.82"", ""45063"": ""27.18""}","Richland|Lexington","45079|45063","FALSE","FALSE","America/New_York"
-"29212","34.07791","-81.19934","Columbia","SC","South Carolina","TRUE","","29435","503.3","45063","Lexington","{""45063"": ""72.33"", ""45079"": ""27.67""}","Lexington|Richland","45063|45079","FALSE","FALSE","America/New_York"
-"29223","34.09243","-80.92143","Columbia","SC","South Carolina","TRUE","","51054","773.0","45079","Richland","{""45079"": ""100""}","Richland","45079","FALSE","FALSE","America/New_York"
-"29225","33.99619","-81.02504","Columbia","SC","South Carolina","TRUE","","1320","31476.5","45079","Richland","{""45079"": ""100""}","Richland","45079","FALSE","FALSE","America/New_York"
-"29229","34.13881","-80.8892","Columbia","SC","South Carolina","TRUE","","52289","982.2","45079","Richland","{""45079"": ""100""}","Richland","45079","FALSE","FALSE","America/New_York"
-"29301","34.93486","-82.01161","Spartanburg","SC","South Carolina","TRUE","","35371","498.7","45083","Spartanburg","{""45083"": ""100""}","Spartanburg","45083","FALSE","FALSE","America/New_York"
-"29302","34.89502","-81.84322","Spartanburg","SC","South Carolina","TRUE","","16855","130.9","45083","Spartanburg","{""45083"": ""100""}","Spartanburg","45083","FALSE","FALSE","America/New_York"
-"29303","34.99339","-81.96734","Spartanburg","SC","South Carolina","TRUE","","25458","315.2","45083","Spartanburg","{""45083"": ""100""}","Spartanburg","45083","FALSE","FALSE","America/New_York"
-"29306","34.89363","-81.92285","Spartanburg","SC","South Carolina","TRUE","","16656","338.0","45083","Spartanburg","{""45083"": ""100""}","Spartanburg","45083","FALSE","FALSE","America/New_York"
-"29307","34.98388","-81.83124","Spartanburg","SC","South Carolina","TRUE","","17661","151.2","45083","Spartanburg","{""45083"": ""97.88"", ""45021"": ""2.12""}","Spartanburg|Cherokee","45083|45021","FALSE","FALSE","America/New_York"
-"29316","35.04116","-81.97461","Boiling Springs","SC","South Carolina","TRUE","","26732","473.7","45083","Spartanburg","{""45083"": ""100""}","Spartanburg","45083","FALSE","FALSE","America/New_York"
-"29320","34.95865","-81.99355","Arcadia","SC","South Carolina","TRUE","","676","480.9","45083","Spartanburg","{""45083"": ""100""}","Spartanburg","45083","FALSE","FALSE","America/New_York"
-"29321","34.71768","-81.74227","Buffalo","SC","South Carolina","TRUE","","3044","30.0","45087","Union","{""45087"": ""100""}","Union","45087","FALSE","FALSE","America/New_York"
-"29322","35.12353","-82.13043","Campobello","SC","South Carolina","TRUE","","8954","59.1","45083","Spartanburg","{""45083"": ""98.43"", ""45045"": ""1.57""}","Spartanburg|Greenville","45083|45045","FALSE","FALSE","America/New_York"
-"29323","35.12929","-81.90853","Chesnee","SC","South Carolina","TRUE","","13550","74.4","45083","Spartanburg","{""45083"": ""89.33"", ""45021"": ""10.67""}","Spartanburg|Cherokee","45083|45021","FALSE","FALSE","America/New_York"
-"29324","34.9838","-81.82664","Clifton","SC","South Carolina","TRUE","","324","570.6","45083","Spartanburg","{""45083"": ""100""}","Spartanburg","45083","FALSE","FALSE","America/New_York"
-"29325","34.47227","-81.84268","Clinton","SC","South Carolina","TRUE","","15171","37.9","45059","Laurens","{""45059"": ""100""}","Laurens","45059","FALSE","FALSE","America/New_York"
-"29329","34.99371","-81.83749","Converse","SC","South Carolina","TRUE","","250","419.9","45083","Spartanburg","{""45083"": ""100""}","Spartanburg","45083","FALSE","FALSE","America/New_York"
-"29330","35.05434","-81.8049","Cowpens","SC","South Carolina","TRUE","","9340","99.6","45083","Spartanburg","{""45083"": ""63.64"", ""45021"": ""36.36""}","Spartanburg|Cherokee","45083|45021","FALSE","FALSE","America/New_York"
-"29331","34.65049","-81.84842","Cross Anchor","SC","South Carolina","TRUE","","50","10.9","45083","Spartanburg","{""45083"": ""100""}","Spartanburg","45083","FALSE","FALSE","America/New_York"
-"29332","34.2828","-81.97031","Cross Hill","SC","South Carolina","TRUE","","2757","22.3","45059","Laurens","{""45059"": ""93.96"", ""45071"": ""6.04""}","Laurens|Newberry","45059|45071","FALSE","FALSE","America/New_York"
-"29333","34.97116","-81.91021","Drayton","SC","South Carolina","TRUE","","509","515.7","45083","Spartanburg","{""45083"": ""100""}","Spartanburg","45083","FALSE","FALSE","America/New_York"
-"29334","34.90538","-82.12596","Duncan","SC","South Carolina","TRUE","","14303","248.8","45083","Spartanburg","{""45083"": ""100""}","Spartanburg","45083","FALSE","FALSE","America/New_York"
-"29335","34.65756","-81.9067","Enoree","SC","South Carolina","TRUE","","6159","26.7","45083","Spartanburg","{""45083"": ""85.71"", ""45059"": ""10.47"", ""45087"": ""3.82""}","Spartanburg|Laurens|Union","45083|45059|45087","FALSE","FALSE","America/New_York"
-"29338","35.13552","-82.00154","Fingerville","SC","South Carolina","TRUE","","26","110.6","45083","Spartanburg","{""45083"": ""100""}","Spartanburg","45083","FALSE","FALSE","America/New_York"
-"29340","34.98191","-81.59387","Gaffney","SC","South Carolina","TRUE","","20411","48.3","45021","Cherokee","{""45021"": ""100""}","Cherokee","45021","FALSE","FALSE","America/New_York"
-"29341","35.11761","-81.71316","Gaffney","SC","South Carolina","TRUE","","20162","83.0","45021","Cherokee","{""45021"": ""100""}","Cherokee","45021","FALSE","FALSE","America/New_York"
-"29346","34.94515","-81.83643","Glendale","SC","South Carolina","TRUE","","293","532.4","45083","Spartanburg","{""45083"": ""100""}","Spartanburg","45083","FALSE","FALSE","America/New_York"
-"29349","35.07022","-82.06702","Inman","SC","South Carolina","TRUE","","32451","160.8","45083","Spartanburg","{""45083"": ""100""}","Spartanburg","45083","FALSE","FALSE","America/New_York"
-"29351","34.42171","-81.8097","Joanna","SC","South Carolina","TRUE","","1267","102.9","45059","Laurens","{""45059"": ""100""}","Laurens","45059","FALSE","FALSE","America/New_York"
-"29353","34.82895","-81.65842","Jonesville","SC","South Carolina","TRUE","","3986","16.5","45087","Union","{""45087"": ""100""}","Union","45087","FALSE","FALSE","America/New_York"
-"29355","34.36269","-81.7638","Kinards","SC","South Carolina","TRUE","","769","4.3","45059","Laurens","{""45059"": ""59.26"", ""45071"": ""40.74""}","Laurens|Newberry","45059|45071","FALSE","FALSE","America/New_York"
-"29356","35.14389","-82.2637","Landrum","SC","South Carolina","TRUE","","8310","39.1","45083","Spartanburg","{""45083"": ""53.49"", ""45045"": ""46.51""}","Spartanburg|Greenville","45083|45045","FALSE","FALSE","America/New_York"
-"29360","34.49665","-82.04671","Laurens","SC","South Carolina","TRUE","","20999","56.0","45059","Laurens","{""45059"": ""100""}","Laurens","45059","FALSE","FALSE","America/New_York"
-"29364","34.76885","-81.4681","Lockhart","SC","South Carolina","TRUE","","441","54.0","45087","Union","{""45087"": ""100""}","Union","45087","FALSE","FALSE","America/New_York"
-"29365","34.98309","-82.16856","Lyman","SC","South Carolina","TRUE","","11648","245.7","45083","Spartanburg","{""45083"": ""100""}","Spartanburg","45083","FALSE","FALSE","America/New_York"
-"29368","35.08175","-81.86314","Mayo","SC","South Carolina","TRUE","","111","268.3","45083","Spartanburg","{""45083"": ""100""}","Spartanburg","45083","FALSE","FALSE","America/New_York"
-"29369","34.86455","-82.02147","Moore","SC","South Carolina","TRUE","","14547","197.0","45083","Spartanburg","{""45083"": ""100""}","Spartanburg","45083","FALSE","FALSE","America/New_York"
-"29370","34.37085","-81.96724","Mountville","SC","South Carolina","TRUE","","874","7.1","45059","Laurens","{""45059"": ""100""}","Laurens","45059","FALSE","FALSE","America/New_York"
-"29372","34.90581","-81.70871","Pacolet","SC","South Carolina","TRUE","","4493","40.9","45083","Spartanburg","{""45083"": ""73.6"", ""45021"": ""13.36"", ""45087"": ""13.05""}","Spartanburg|Cherokee|Union","45083|45021|45087","FALSE","FALSE","America/New_York"
-"29373","34.92236","-81.74637","Pacolet Mills","SC","South Carolina","TRUE","","483","280.5","45083","Spartanburg","{""45083"": ""100""}","Spartanburg","45083","FALSE","FALSE","America/New_York"
-"29374","34.78551","-81.84919","Pauline","SC","South Carolina","TRUE","","3443","25.7","45083","Spartanburg","{""45083"": ""95.22"", ""45087"": ""4.78""}","Spartanburg|Union","45083|45087","FALSE","FALSE","America/New_York"
-"29375","34.86114","-82.11379","Reidville","SC","South Carolina","TRUE","","69","187.3","45083","Spartanburg","{""45083"": ""100""}","Spartanburg","45083","FALSE","FALSE","America/New_York"
-"29376","34.81528","-81.94932","Roebuck","SC","South Carolina","TRUE","","7969","82.5","45083","Spartanburg","{""45083"": ""100""}","Spartanburg","45083","FALSE","FALSE","America/New_York"
-"29377","34.92932","-82.09673","Startex","SC","South Carolina","TRUE","","931","274.4","45083","Spartanburg","{""45083"": ""100""}","Spartanburg","45083","FALSE","FALSE","America/New_York"
-"29378","34.96697","-81.96874","Una","SC","South Carolina","TRUE","","156","718.8","45083","Spartanburg","{""45083"": ""100""}","Spartanburg","45083","FALSE","FALSE","America/New_York"
-"29379","34.68075","-81.60943","Union","SC","South Carolina","TRUE","","17490","26.4","45087","Union","{""45087"": ""100""}","Union","45087","FALSE","FALSE","America/New_York"
-"29384","34.34491","-82.09153","Waterloo","SC","South Carolina","TRUE","","4497","36.7","45059","Laurens","{""45059"": ""100""}","Laurens","45059","FALSE","FALSE","America/New_York"
-"29385","34.97338","-82.09968","Wellford","SC","South Carolina","TRUE","","7987","161.5","45083","Spartanburg","{""45083"": ""100""}","Spartanburg","45083","FALSE","FALSE","America/New_York"
-"29388","34.764","-82.04387","Woodruff","SC","South Carolina","TRUE","","16138","63.7","45083","Spartanburg","{""45083"": ""98.04"", ""45059"": ""1.96""}","Spartanburg|Laurens","45083|45059","FALSE","FALSE","America/New_York"
-"29401","32.77869","-79.93494","Charleston","SC","South Carolina","TRUE","","9018","2244.7","45019","Charleston","{""45019"": ""100""}","Charleston","45019","FALSE","FALSE","America/New_York"
-"29403","32.80462","-79.94377","Charleston","SC","South Carolina","TRUE","","21819","1576.8","45019","Charleston","{""45019"": ""100""}","Charleston","45019","FALSE","FALSE","America/New_York"
-"29404","32.89864","-80.05028","Charleston Afb","SC","South Carolina","TRUE","","2141","162.5","45019","Charleston","{""45019"": ""100""}","Charleston","45019","FALSE","FALSE","America/New_York"
-"29405","32.85397","-79.98183","North Charleston","SC","South Carolina","TRUE","","29978","778.3","45019","Charleston","{""45019"": ""100""}","Charleston","45019","FALSE","FALSE","America/New_York"
-"29406","32.93544","-80.03262","Charleston","SC","South Carolina","TRUE","","34620","916.2","45019","Charleston","{""45019"": ""99.45"", ""45015"": ""0.55""}","Charleston|Berkeley","45019|45015","FALSE","FALSE","America/New_York"
-"29407","32.79915","-79.99867","Charleston","SC","South Carolina","TRUE","","34711","873.1","45019","Charleston","{""45019"": ""100""}","Charleston","45019","FALSE","FALSE","America/New_York"
-"29409","32.79637","-79.96069","Charleston","SC","South Carolina","TRUE","","2670","15990.8","45019","Charleston","{""45019"": ""100""}","Charleston","45019","FALSE","FALSE","America/New_York"
-"29410","32.93025","-80.00272","Hanahan","SC","South Carolina","TRUE","","24225","893.3","45015","Berkeley","{""45015"": ""100""}","Berkeley","45015","FALSE","FALSE","America/New_York"
-"29412","32.70947","-79.9512","Charleston","SC","South Carolina","TRUE","","41447","407.7","45019","Charleston","{""45019"": ""100""}","Charleston","45019","FALSE","FALSE","America/New_York"
-"29414","32.83801","-80.08832","Charleston","SC","South Carolina","TRUE","","40661","447.8","45019","Charleston","{""45019"": ""99.87"", ""45035"": ""0.13""}","Charleston|Dorchester","45019|45035","FALSE","FALSE","America/New_York"
-"29418","32.88918","-80.06476","North Charleston","SC","South Carolina","TRUE","","21460","614.4","45019","Charleston","{""45019"": ""77.03"", ""45035"": ""22.97""}","Charleston|Dorchester","45019|45035","FALSE","FALSE","America/New_York"
-"29420","32.93366","-80.10254","North Charleston","SC","South Carolina","TRUE","","23155","796.8","45035","Dorchester","{""45035"": ""75.74"", ""45019"": ""24.26""}","Dorchester|Charleston","45035|45019","FALSE","FALSE","America/New_York"
-"29423","32.9788","-80.0713","Charleston","SC","South Carolina","TRUE","","0","0.0","45019","Charleston","{""45019"": ""100""}","Charleston","45019","FALSE","FALSE","America/New_York"
-"29424","32.78364","-79.93737","Charleston","SC","South Carolina","TRUE","","392","8194.0","45019","Charleston","{""45019"": ""100""}","Charleston","45019","FALSE","FALSE","America/New_York"
-"29426","32.79914","-80.37269","Adams Run","SC","South Carolina","TRUE","","1826","10.5","45019","Charleston","{""45019"": ""87.42"", ""45035"": ""12.58""}","Charleston|Dorchester","45019|45035","FALSE","FALSE","America/New_York"
-"29429","32.97346","-79.66947","Awendaw","SC","South Carolina","TRUE","","3863","13.7","45019","Charleston","{""45019"": ""100""}","Charleston","45019","FALSE","FALSE","America/New_York"
-"29431","33.27822","-79.88069","Bonneau","SC","South Carolina","TRUE","","6680","32.8","45015","Berkeley","{""45015"": ""100""}","Berkeley","45015","FALSE","FALSE","America/New_York"
-"29432","33.23112","-80.80785","Branchville","SC","South Carolina","TRUE","","3526","11.6","45075","Orangeburg","{""45075"": ""80.44"", ""45009"": ""15.88"", ""45035"": ""3.68""}","Orangeburg|Bamberg|Dorchester","45075|45009|45035","FALSE","FALSE","America/New_York"
-"29434","33.14133","-79.8469","Cordesville","SC","South Carolina","TRUE","","511","3.6","45015","Berkeley","{""45015"": ""100""}","Berkeley","45015","FALSE","FALSE","America/New_York"
-"29435","32.96697","-80.47273","Cottageville","SC","South Carolina","TRUE","","4980","28.0","45029","Colleton","{""45029"": ""100""}","Colleton","45029","FALSE","FALSE","America/New_York"
-"29436","33.31862","-80.18464","Cross","SC","South Carolina","TRUE","","4380","21.0","45015","Berkeley","{""45015"": ""98.23"", ""45075"": ""1.77""}","Berkeley|Orangeburg","45015|45075","FALSE","FALSE","America/New_York"
-"29437","33.14178","-80.42264","Dorchester","SC","South Carolina","TRUE","","3225","13.4","45035","Dorchester","{""45035"": ""100""}","Dorchester","45035","FALSE","FALSE","America/New_York"
-"29438","32.5722","-80.31893","Edisto Island","SC","South Carolina","TRUE","","2424","12.5","45019","Charleston","{""45019"": ""78.03"", ""45029"": ""21.97""}","Charleston|Colleton","45019|45029","FALSE","FALSE","America/New_York"
-"29439","32.66632","-79.92909","Folly Beach","SC","South Carolina","TRUE","","2344","311.2","45019","Charleston","{""45019"": ""100""}","Charleston","45019","FALSE","FALSE","America/New_York"
-"29440","33.37712","-79.329","Georgetown","SC","South Carolina","TRUE","","27664","20.4","45043","Georgetown","{""45043"": ""100""}","Georgetown","45043","FALSE","FALSE","America/New_York"
-"29445","32.99782","-79.99","Goose Creek","SC","South Carolina","TRUE","","59342","392.4","45015","Berkeley","{""45015"": ""100""}","Berkeley","45015","FALSE","FALSE","America/New_York"
-"29446","32.62839","-80.5454","Green Pond","SC","South Carolina","TRUE","","703","1.6","45029","Colleton","{""45029"": ""100""}","Colleton","45029","FALSE","FALSE","America/New_York"
-"29448","33.24786","-80.44803","Harleyville","SC","South Carolina","TRUE","","2053","16.4","45035","Dorchester","{""45035"": ""100""}","Dorchester","45035","FALSE","FALSE","America/New_York"
-"29449","32.70259","-80.2865","Hollywood","SC","South Carolina","TRUE","","8072","38.9","45019","Charleston","{""45019"": ""100""}","Charleston","45019","FALSE","FALSE","America/New_York"
-"29450","33.06496","-79.78053","Huger","SC","South Carolina","TRUE","","3319","8.9","45015","Berkeley","{""45015"": ""98.29"", ""45019"": ""1.71""}","Berkeley|Charleston","45015|45019","FALSE","FALSE","America/New_York"
-"29451","32.82154","-79.75349","Isle Of Palms","SC","South Carolina","TRUE","","4482","172.9","45019","Charleston","{""45019"": ""100""}","Charleston","45019","FALSE","FALSE","America/New_York"
-"29452","32.6804","-80.46305","Jacksonboro","SC","South Carolina","TRUE","","392","2.6","45029","Colleton","{""45029"": ""100""}","Colleton","45029","FALSE","FALSE","America/New_York"
-"29453","33.22213","-79.62823","Jamestown","SC","South Carolina","TRUE","","1095","3.0","45015","Berkeley","{""45015"": ""100""}","Berkeley","45015","FALSE","FALSE","America/New_York"
-"29455","32.69435","-80.09021","Johns Island","SC","South Carolina","TRUE","","22565","81.1","45019","Charleston","{""45019"": ""100""}","Charleston","45019","FALSE","FALSE","America/New_York"
-"29456","32.98657","-80.11402","Ladson","SC","South Carolina","TRUE","","31376","664.3","45035","Dorchester","{""45035"": ""44.99"", ""45015"": ""38.05"", ""45019"": ""16.96""}","Dorchester|Berkeley|Charleston","45035|45015|45019","FALSE","FALSE","America/New_York"
-"29458","33.09891","-79.45896","McClellanville","SC","South Carolina","TRUE","","2972","6.9","45019","Charleston","{""45019"": ""100""}","Charleston","45019","FALSE","FALSE","America/New_York"
-"29461","33.1587","-80.00009","Moncks Corner","SC","South Carolina","TRUE","","38324","90.9","45015","Berkeley","{""45015"": ""100""}","Berkeley","45015","FALSE","FALSE","America/New_York"
-"29464","32.82038","-79.85636","Mount Pleasant","SC","South Carolina","TRUE","","50886","659.9","45019","Charleston","{""45019"": ""100""}","Charleston","45019","FALSE","FALSE","America/New_York"
-"29466","32.87848","-79.78989","Mount Pleasant","SC","South Carolina","TRUE","","39949","525.3","45019","Charleston","{""45019"": ""100""}","Charleston","45019","FALSE","FALSE","America/New_York"
-"29468","33.42264","-80.06469","Pineville","SC","South Carolina","TRUE","","2535","13.1","45015","Berkeley","{""45015"": ""100""}","Berkeley","45015","FALSE","FALSE","America/New_York"
-"29469","33.24879","-80.08945","Pinopolis","SC","South Carolina","TRUE","","851","15.0","45015","Berkeley","{""45015"": ""100""}","Berkeley","45015","FALSE","FALSE","America/New_York"
-"29470","32.82219","-80.2511","Ravenel","SC","South Carolina","TRUE","","4685","21.5","45019","Charleston","{""45019"": ""91.78"", ""45035"": ""8.22""}","Charleston|Dorchester","45019|45035","FALSE","FALSE","America/New_York"
-"29471","33.18537","-80.66859","Reevesville","SC","South Carolina","TRUE","","1479","13.7","45035","Dorchester","{""45035"": ""100""}","Dorchester","45035","FALSE","FALSE","America/New_York"
-"29472","33.05707","-80.31845","Ridgeville","SC","South Carolina","TRUE","","10088","21.0","45035","Dorchester","{""45035"": ""68.86"", ""45015"": ""24.71"", ""45029"": ""6.43""}","Dorchester|Berkeley|Colleton","45035|45015|45029","FALSE","FALSE","America/New_York"
-"29474","32.89678","-80.51733","Round O","SC","South Carolina","TRUE","","2290","7.9","45029","Colleton","{""45029"": ""100""}","Colleton","45029","FALSE","FALSE","America/New_York"
-"29475","32.96021","-80.81786","Ruffin","SC","South Carolina","TRUE","","1787","6.4","45029","Colleton","{""45029"": ""100""}","Colleton","45029","FALSE","FALSE","America/New_York"
-"29477","33.16744","-80.57062","Saint George","SC","South Carolina","TRUE","","6847","23.9","45035","Dorchester","{""45035"": ""100""}","Dorchester","45035","FALSE","FALSE","America/New_York"
-"29479","33.3799","-79.88696","Saint Stephen","SC","South Carolina","TRUE","","7208","29.9","45015","Berkeley","{""45015"": ""100""}","Berkeley","45015","FALSE","FALSE","America/New_York"
-"29481","33.1135","-80.80305","Smoaks","SC","South Carolina","TRUE","","1529","6.6","45029","Colleton","{""45029"": ""87.29"", ""45009"": ""12.71""}","Colleton|Bamberg","45029|45009","FALSE","FALSE","America/New_York"
-"29482","32.76856","-79.83545","Sullivans Island","SC","South Carolina","TRUE","","2203","330.5","45019","Charleston","{""45019"": ""100""}","Charleston","45019","FALSE","FALSE","America/New_York"
-"29483","33.05135","-80.18747","Summerville","SC","South Carolina","TRUE","","87341","249.3","45035","Dorchester","{""45035"": ""59.18"", ""45015"": ""40.71"", ""45019"": ""0.12""}","Dorchester|Berkeley|Charleston","45035|45015|45019","FALSE","FALSE","America/New_York"
-"29485","32.9526","-80.19348","Summerville","SC","South Carolina","TRUE","","60028","649.3","45035","Dorchester","{""45035"": ""93.43"", ""45019"": ""6.57""}","Dorchester|Charleston","45035|45019","FALSE","FALSE","America/New_York"
-"29487","32.6569","-80.18477","Wadmalaw Island","SC","South Carolina","TRUE","","2910","26.8","45019","Charleston","{""45019"": ""100""}","Charleston","45019","FALSE","FALSE","America/New_York"
-"29488","32.90658","-80.67209","Walterboro","SC","South Carolina","TRUE","","21326","35.8","45029","Colleton","{""45029"": ""100""}","Colleton","45029","FALSE","FALSE","America/New_York"
-"29492","32.91379","-79.8824","Charleston","SC","South Carolina","TRUE","","13546","104.6","45015","Berkeley","{""45015"": ""100""}","Berkeley","45015","FALSE","FALSE","America/New_York"
-"29493","33.03413","-80.84286","Williams","SC","South Carolina","TRUE","","193","88.0","45029","Colleton","{""45029"": ""100""}","Colleton","45029","FALSE","FALSE","America/New_York"
-"29501","34.20619","-79.82544","Florence","SC","South Carolina","TRUE","","46130","331.7","45041","Florence","{""45041"": ""92.06"", ""45031"": ""7.94""}","Florence|Darlington","45041|45031","FALSE","FALSE","America/New_York"
-"29505","34.12309","-79.6892","Florence","SC","South Carolina","TRUE","","25016","187.0","45041","Florence","{""45041"": ""100""}","Florence","45041","FALSE","FALSE","America/New_York"
-"29506","34.21532","-79.64682","Florence","SC","South Carolina","TRUE","","20424","62.2","45041","Florence","{""45041"": ""99.83"", ""45031"": ""0.17""}","Florence|Darlington","45041|45031","FALSE","FALSE","America/New_York"
-"29510","33.45796","-79.60342","Andrews","SC","South Carolina","TRUE","","10094","12.8","45043","Georgetown","{""45043"": ""59.22"", ""45089"": ""40.78""}","Georgetown|Williamsburg","45043|45089","FALSE","FALSE","America/New_York"
-"29511","33.97729","-79.11497","Aynor","SC","South Carolina","TRUE","","5432","34.1","45051","Horry","{""45051"": ""100""}","Horry","45051","FALSE","FALSE","America/New_York"
-"29512","34.62635","-79.70984","Bennettsville","SC","South Carolina","TRUE","","17771","31.7","45069","Marlboro","{""45069"": ""100""}","Marlboro","45069","FALSE","FALSE","America/New_York"
-"29516","34.43761","-79.63013","Blenheim","SC","South Carolina","TRUE","","1028","4.3","45069","Marlboro","{""45069"": ""100""}","Marlboro","45069","FALSE","FALSE","America/New_York"
-"29518","33.78862","-79.84798","Cades","SC","South Carolina","TRUE","","1024","8.1","45089","Williamsburg","{""45089"": ""100""}","Williamsburg","45089","FALSE","FALSE","America/New_York"
-"29519","34.01865","-79.3598","Centenary","SC","South Carolina","TRUE","","451","40.6","45067","Marion","{""45067"": ""100""}","Marion","45067","FALSE","FALSE","America/New_York"
-"29520","34.67955","-79.9272","Cheraw","SC","South Carolina","TRUE","","13689","39.4","45025","Chesterfield","{""45025"": ""100""}","Chesterfield","45025","FALSE","FALSE","America/New_York"
-"29525","34.5573","-79.54112","Clio","SC","South Carolina","TRUE","","2111","16.4","45069","Marlboro","{""45069"": ""100""}","Marlboro","45069","FALSE","FALSE","America/New_York"
-"29526","33.86374","-78.96948","Conway","SC","South Carolina","TRUE","","48220","101.3","45051","Horry","{""45051"": ""100""}","Horry","45051","FALSE","FALSE","America/New_York"
-"29527","33.78271","-79.14732","Conway","SC","South Carolina","TRUE","","26514","66.1","45051","Horry","{""45051"": ""100""}","Horry","45051","FALSE","FALSE","America/New_York"
-"29530","33.99134","-79.74202","Coward","SC","South Carolina","TRUE","","2376","23.9","45041","Florence","{""45041"": ""100""}","Florence","45041","FALSE","FALSE","America/New_York"
-"29532","34.27887","-79.87248","Darlington","SC","South Carolina","TRUE","","20433","76.0","45031","Darlington","{""45031"": ""100""}","Darlington","45031","FALSE","FALSE","America/New_York"
-"29536","34.41899","-79.37304","Dillon","SC","South Carolina","TRUE","","16822","50.0","45033","Dillon","{""45033"": ""100""}","Dillon","45033","FALSE","FALSE","America/New_York"
-"29540","34.38512","-79.84007","Darlington","SC","South Carolina","TRUE","","4527","15.8","45031","Darlington","{""45031"": ""100""}","Darlington","45031","FALSE","FALSE","America/New_York"
-"29541","34.06523","-79.74326","Effingham","SC","South Carolina","TRUE","","9602","47.2","45041","Florence","{""45041"": ""100""}","Florence","45041","FALSE","FALSE","America/New_York"
-"29543","34.28761","-79.26593","Fork","SC","South Carolina","TRUE","","663","13.9","45033","Dillon","{""45033"": ""100""}","Dillon","45033","FALSE","FALSE","America/New_York"
-"29544","34.00019","-79.21547","Galivants Ferry","SC","South Carolina","TRUE","","5576","18.9","45051","Horry","{""45051"": ""100""}","Horry","45051","FALSE","FALSE","America/New_York"
-"29545","34.16239","-78.96558","Green Sea","SC","South Carolina","TRUE","","1626","17.5","45051","Horry","{""45051"": ""100""}","Horry","45051","FALSE","FALSE","America/New_York"
-"29546","33.89264","-79.35226","Gresham","SC","South Carolina","TRUE","","2832","7.5","45067","Marion","{""45067"": ""100""}","Marion","45067","FALSE","FALSE","America/New_York"
-"29547","34.48799","-79.33339","Hamer","SC","South Carolina","TRUE","","3093","30.0","45033","Dillon","{""45033"": ""100""}","Dillon","45033","FALSE","FALSE","America/New_York"
-"29550","34.39887","-80.07734","Hartsville","SC","South Carolina","TRUE","","32661","59.1","45031","Darlington","{""45031"": ""92.67"", ""45025"": ""6.92"", ""45061"": ""0.41""}","Darlington|Chesterfield|Lee","45031|45025|45061","FALSE","FALSE","America/New_York"
-"29554","33.69803","-79.38","Hemingway","SC","South Carolina","TRUE","","9368","16.1","45089","Williamsburg","{""45089"": ""59.43"", ""45043"": ""39.31"", ""45041"": ""1.26""}","Williamsburg|Georgetown|Florence","45089|45043|45041","FALSE","FALSE","America/New_York"
-"29555","33.84036","-79.46572","Johnsonville","SC","South Carolina","TRUE","","5760","24.2","45041","Florence","{""45041"": ""98.52"", ""45089"": ""1.48""}","Florence|Williamsburg","45041|45089","FALSE","FALSE","America/New_York"
-"29556","33.66677","-79.75943","Kingstree","SC","South Carolina","TRUE","","11690","25.9","45089","Williamsburg","{""45089"": ""100""}","Williamsburg","45089","FALSE","FALSE","America/New_York"
-"29560","33.8343","-79.74772","Lake City","SC","South Carolina","TRUE","","13487","32.2","45041","Florence","{""45041"": ""82.07"", ""45089"": ""12.4"", ""45027"": ""5.53""}","Florence|Williamsburg|Clarendon","45041|45089|45027","FALSE","FALSE","America/New_York"
-"29563","34.35346","-79.20429","Lake View","SC","South Carolina","TRUE","","2074","21.1","45033","Dillon","{""45033"": ""100""}","Dillon","45033","FALSE","FALSE","America/New_York"
-"29564","33.46143","-79.84307","Lane","SC","South Carolina","TRUE","","997","5.9","45089","Williamsburg","{""45089"": ""100""}","Williamsburg","45089","FALSE","FALSE","America/New_York"
-"29565","34.35767","-79.50228","Latta","SC","South Carolina","TRUE","","7483","23.4","45033","Dillon","{""45033"": ""85.74"", ""45067"": ""12.81"", ""45069"": ""1.45""}","Dillon|Marion|Marlboro","45033|45067|45069","FALSE","FALSE","America/New_York"
-"29566","33.87234","-78.66322","Little River","SC","South Carolina","TRUE","","17497","222.7","45051","Horry","{""45051"": ""100""}","Horry","45051","FALSE","FALSE","America/New_York"
-"29567","34.56126","-79.43354","Little Rock","SC","South Carolina","TRUE","","389","7.0","45033","Dillon","{""45033"": ""100""}","Dillon","45033","FALSE","FALSE","America/New_York"
-"29568","33.90772","-78.75206","Longs","SC","South Carolina","TRUE","","16130","67.7","45051","Horry","{""45051"": ""100""}","Horry","45051","FALSE","FALSE","America/New_York"
-"29569","34.0329","-78.90523","Loris","SC","South Carolina","TRUE","","17297","38.3","45051","Horry","{""45051"": ""100""}","Horry","45051","FALSE","FALSE","America/New_York"
-"29570","34.67421","-79.56063","McColl","SC","South Carolina","TRUE","","3538","28.5","45069","Marlboro","{""45069"": ""100""}","Marlboro","45069","FALSE","FALSE","America/New_York"
-"29571","34.13662","-79.42189","Marion","SC","South Carolina","TRUE","","14794","29.7","45067","Marion","{""45067"": ""100""}","Marion","45067","FALSE","FALSE","America/New_York"
-"29572","33.76918","-78.78914","Myrtle Beach","SC","South Carolina","TRUE","","9672","455.7","45051","Horry","{""45051"": ""100""}","Horry","45051","FALSE","FALSE","America/New_York"
-"29574","34.17245","-79.26506","Mullins","SC","South Carolina","TRUE","","10696","41.1","45067","Marion","{""45067"": ""99.75"", ""45033"": ""0.25""}","Marion|Dillon","45067|45033","FALSE","FALSE","America/New_York"
-"29575","33.62852","-78.97347","Myrtle Beach","SC","South Carolina","TRUE","","18928","724.8","45051","Horry","{""45051"": ""100""}","Horry","45051","FALSE","FALSE","America/New_York"
-"29576","33.56262","-79.05808","Murrells Inlet","SC","South Carolina","TRUE","","32384","342.1","45051","Horry","{""45051"": ""67.83"", ""45043"": ""32.17""}","Horry|Georgetown","45051|45043","FALSE","FALSE","America/New_York"
-"29577","33.69869","-78.90303","Myrtle Beach","SC","South Carolina","TRUE","","32296","529.8","45051","Horry","{""45051"": ""100""}","Horry","45051","FALSE","FALSE","America/New_York"
-"29579","33.75477","-78.91731","Myrtle Beach","SC","South Carolina","TRUE","","42703","381.2","45051","Horry","{""45051"": ""100""}","Horry","45051","FALSE","FALSE","America/New_York"
-"29580","33.66251","-79.55892","Nesmith","SC","South Carolina","TRUE","","1322","7.3","45089","Williamsburg","{""45089"": ""100""}","Williamsburg","45089","FALSE","FALSE","America/New_York"
-"29581","34.19851","-79.11228","Nichols","SC","South Carolina","TRUE","","4459","10.6","45051","Horry","{""45051"": ""61.98"", ""45067"": ""24.13"", ""45033"": ""13.89""}","Horry|Marion|Dillon","45051|45067|45033","FALSE","FALSE","America/New_York"
-"29582","33.83412","-78.66109","North Myrtle Beach","SC","South Carolina","TRUE","","16656","293.2","45051","Horry","{""45051"": ""100""}","Horry","45051","FALSE","FALSE","America/New_York"
-"29583","33.97235","-79.57206","Pamplico","SC","South Carolina","TRUE","","5586","20.3","45041","Florence","{""45041"": ""100""}","Florence","45041","FALSE","FALSE","America/New_York"
-"29584","34.58153","-80.06092","Patrick","SC","South Carolina","TRUE","","2254","8.0","45025","Chesterfield","{""45025"": ""100""}","Chesterfield","45025","FALSE","FALSE","America/New_York"
-"29585","33.52246","-79.13408","Pawleys Island","SC","South Carolina","TRUE","","14956","122.5","45043","Georgetown","{""45043"": ""100""}","Georgetown","45043","FALSE","FALSE","America/New_York"
-"29588","33.67162","-79.02449","Myrtle Beach","SC","South Carolina","TRUE","","48075","445.1","45051","Horry","{""45051"": ""100""}","Horry","45051","FALSE","FALSE","America/New_York"
-"29590","33.56547","-79.84908","Salters","SC","South Carolina","TRUE","","3462","13.5","45089","Williamsburg","{""45089"": ""100""}","Williamsburg","45089","FALSE","FALSE","America/New_York"
-"29591","33.93841","-79.76241","Scranton","SC","South Carolina","TRUE","","4851","25.9","45041","Florence","{""45041"": ""100""}","Florence","45041","FALSE","FALSE","America/New_York"
-"29592","34.2636","-79.47877","Sellers","SC","South Carolina","TRUE","","739","6.8","45033","Dillon","{""45033"": ""66"", ""45067"": ""34""}","Dillon|Marion","45033|45067","FALSE","FALSE","America/New_York"
-"29593","34.49494","-79.85739","Society Hill","SC","South Carolina","TRUE","","1525","7.3","45031","Darlington","{""45031"": ""68.63"", ""45025"": ""31.37""}","Darlington|Chesterfield","45031|45025","FALSE","FALSE","America/New_York"
-"29594","34.64017","-79.57731","Tatum","SC","South Carolina","TRUE","","116","19.5","45069","Marlboro","{""45069"": ""100""}","Marlboro","45069","FALSE","FALSE","America/New_York"
-"29596","34.74341","-79.83794","Wallace","SC","South Carolina","TRUE","","2181","12.7","45069","Marlboro","{""45069"": ""100""}","Marlboro","45069","FALSE","FALSE","America/New_York"
-"29601","34.84777","-82.4027","Greenville","SC","South Carolina","TRUE","","12438","1122.1","45045","Greenville","{""45045"": ""100""}","Greenville","45045","FALSE","FALSE","America/New_York"
-"29605","34.77531","-82.38015","Greenville","SC","South Carolina","TRUE","","37168","561.0","45045","Greenville","{""45045"": ""100""}","Greenville","45045","FALSE","FALSE","America/New_York"
-"29607","34.81152","-82.3313","Greenville","SC","South Carolina","TRUE","","41273","553.4","45045","Greenville","{""45045"": ""100""}","Greenville","45045","FALSE","FALSE","America/New_York"
-"29609","34.91237","-82.38902","Greenville","SC","South Carolina","TRUE","","29701","474.7","45045","Greenville","{""45045"": ""100""}","Greenville","45045","FALSE","FALSE","America/New_York"
-"29611","34.82924","-82.45924","Greenville","SC","South Carolina","TRUE","","30257","505.1","45045","Greenville","{""45045"": ""92.28"", ""45007"": ""5.97"", ""45077"": ""1.75""}","Greenville|Anderson|Pickens","45045|45007|45077","FALSE","FALSE","America/New_York"
-"29613","34.92588","-82.4386","Greenville","SC","South Carolina","TRUE","","1907","1093.8","45045","Greenville","{""45045"": ""100""}","Greenville","45045","FALSE","FALSE","America/New_York"
-"29614","34.87376","-82.36306","Greenville","SC","South Carolina","TRUE","","2009","4039.5","45045","Greenville","{""45045"": ""100""}","Greenville","45045","FALSE","FALSE","America/New_York"
-"29615","34.85581","-82.29514","Greenville","SC","South Carolina","TRUE","","37823","761.0","45045","Greenville","{""45045"": ""100""}","Greenville","45045","FALSE","FALSE","America/New_York"
-"29617","34.91199","-82.46658","Greenville","SC","South Carolina","TRUE","","29019","482.1","45045","Greenville","{""45045"": ""100""}","Greenville","45045","FALSE","FALSE","America/New_York"
-"29620","34.17875","-82.42872","Abbeville","SC","South Carolina","TRUE","","13086","20.2","45001","Abbeville","{""45001"": ""99.79"", ""45065"": ""0.21""}","Abbeville|McCormick","45001|45065","FALSE","FALSE","America/New_York"
-"29621","34.50703","-82.60538","Anderson","SC","South Carolina","TRUE","","41237","185.9","45007","Anderson","{""45007"": ""100""}","Anderson","45007","FALSE","FALSE","America/New_York"
-"29624","34.43733","-82.62515","Anderson","SC","South Carolina","TRUE","","15390","211.6","45007","Anderson","{""45007"": ""100""}","Anderson","45007","FALSE","FALSE","America/New_York"
-"29625","34.55697","-82.76366","Anderson","SC","South Carolina","TRUE","","28396","228.8","45007","Anderson","{""45007"": ""100""}","Anderson","45007","FALSE","FALSE","America/New_York"
-"29626","34.45956","-82.76133","Anderson","SC","South Carolina","TRUE","","12651","94.5","45007","Anderson","{""45007"": ""100""}","Anderson","45007","FALSE","FALSE","America/New_York"
-"29627","34.51778","-82.47664","Belton","SC","South Carolina","TRUE","","19709","61.2","45007","Anderson","{""45007"": ""90.78"", ""45045"": ""9.11"", ""45001"": ""0.11""}","Anderson|Greenville|Abbeville","45007|45045|45001","FALSE","FALSE","America/New_York"
-"29628","34.09083","-82.56469","Calhoun Falls","SC","South Carolina","TRUE","","2198","17.0","45001","Abbeville","{""45001"": ""98.7"", ""45065"": ""1.3""}","Abbeville|McCormick","45001|45065","FALSE","FALSE","America/New_York"
-"29630","34.74024","-82.79867","Central","SC","South Carolina","TRUE","","16185","102.8","45077","Pickens","{""45077"": ""95.22"", ""45007"": ""4.78""}","Pickens|Anderson","45077|45007","FALSE","FALSE","America/New_York"
-"29631","34.6813","-82.81727","Clemson","SC","South Carolina","TRUE","","15301","677.6","45077","Pickens","{""45077"": ""99.66"", ""45007"": ""0.34""}","Pickens|Anderson","45077|45007","FALSE","FALSE","America/New_York"
-"29634","34.67529","-82.8394","Clemson","SC","South Carolina","TRUE","","5121","1409.7","45077","Pickens","{""45077"": ""100""}","Pickens","45077","FALSE","FALSE","America/New_York"
-"29635","35.07992","-82.62815","Cleveland","SC","South Carolina","TRUE","","1279","7.1","45045","Greenville","{""45045"": ""56.3"", ""45077"": ""43.7""}","Greenville|Pickens","45045|45077","FALSE","FALSE","America/New_York"
-"29638","34.35948","-82.33659","Donalds","SC","South Carolina","TRUE","","3349","21.8","45001","Abbeville","{""45001"": ""83.87"", ""45047"": ""16.13""}","Abbeville|Greenwood","45001|45047","FALSE","FALSE","America/New_York"
-"29639","34.30798","-82.42482","Due West","SC","South Carolina","TRUE","","1702","38.2","45001","Abbeville","{""45001"": ""100""}","Abbeville","45001","FALSE","FALSE","America/New_York"
-"29640","34.88831","-82.57772","Easley","SC","South Carolina","TRUE","","30757","136.0","45077","Pickens","{""45077"": ""100""}","Pickens","45077","FALSE","FALSE","America/New_York"
-"29642","34.77558","-82.56473","Easley","SC","South Carolina","TRUE","","33525","260.1","45077","Pickens","{""45077"": ""60.19"", ""45007"": ""39.81""}","Pickens|Anderson","45077|45007","FALSE","FALSE","America/New_York"
-"29643","34.51182","-83.00057","Fair Play","SC","South Carolina","TRUE","","2458","35.4","45073","Oconee","{""45073"": ""76.81"", ""45007"": ""23.19""}","Oconee|Anderson","45073|45007","FALSE","FALSE","America/New_York"
-"29644","34.67169","-82.19331","Fountain Inn","SC","South Carolina","TRUE","","21951","103.3","45045","Greenville","{""45045"": ""59.9"", ""45059"": ""40.1""}","Greenville|Laurens","45045|45059","FALSE","FALSE","America/New_York"
-"29645","34.59349","-82.12295","Gray Court","SC","South Carolina","TRUE","","9525","34.4","45059","Laurens","{""45059"": ""100""}","Laurens","45059","FALSE","FALSE","America/New_York"
-"29646","34.13472","-82.15202","Greenwood","SC","South Carolina","TRUE","","28197","96.6","45047","Greenwood","{""45047"": ""99.51"", ""45001"": ""0.49""}","Greenwood|Abbeville","45047|45001","FALSE","FALSE","America/New_York"
-"29649","34.24272","-82.14246","Greenwood","SC","South Carolina","TRUE","","26906","191.6","45047","Greenwood","{""45047"": ""99.06"", ""45001"": ""0.94""}","Greenwood|Abbeville","45047|45001","FALSE","FALSE","America/New_York"
-"29650","34.89755","-82.25845","Greer","SC","South Carolina","TRUE","","35253","756.5","45045","Greenville","{""45045"": ""99.81"", ""45083"": ""0.19""}","Greenville|Spartanburg","45045|45083","FALSE","FALSE","America/New_York"
-"29651","34.94719","-82.22596","Greer","SC","South Carolina","TRUE","","47994","204.2","45045","Greenville","{""45045"": ""62.53"", ""45083"": ""37.47""}","Greenville|Spartanburg","45045|45083","FALSE","FALSE","America/New_York"
-"29653","34.30028","-82.23113","Hodges","SC","South Carolina","TRUE","","4186","23.3","45047","Greenwood","{""45047"": ""97.26"", ""45001"": ""2.74""}","Greenwood|Abbeville","45047|45001","FALSE","FALSE","America/New_York"
-"29654","34.46547","-82.36263","Honea Path","SC","South Carolina","TRUE","","9125","29.9","45007","Anderson","{""45007"": ""63.77"", ""45001"": ""20.45"", ""45045"": ""10.84"", ""45059"": ""4.94""}","Anderson|Abbeville|Greenville|Laurens","45007|45001|45045|45059","FALSE","FALSE","America/New_York"
-"29655","34.26492","-82.64086","Iva","SC","South Carolina","TRUE","","6677","17.3","45007","Anderson","{""45007"": ""72.87"", ""45001"": ""27.13""}","Anderson|Abbeville","45007|45001","FALSE","FALSE","America/New_York"
-"29657","34.7661","-82.68894","Liberty","SC","South Carolina","TRUE","","15230","92.5","45077","Pickens","{""45077"": ""86.05"", ""45007"": ""13.95""}","Pickens|Anderson","45077|45007","FALSE","FALSE","America/New_York"
-"29658","34.76476","-83.28647","Long Creek","SC","South Carolina","TRUE","","482","7.5","45073","Oconee","{""45073"": ""100""}","Oconee","45073","FALSE","FALSE","America/New_York"
-"29659","34.20973","-82.64705","Lowndesville","SC","South Carolina","TRUE","","86","46.8","45001","Abbeville","{""45001"": ""100""}","Abbeville","45001","FALSE","FALSE","America/New_York"
-"29661","35.06213","-82.53509","Marietta","SC","South Carolina","TRUE","","5707","32.0","45045","Greenville","{""45045"": ""81.43"", ""45077"": ""18.57""}","Greenville|Pickens","45045|45077","FALSE","FALSE","America/New_York"
-"29662","34.77777","-82.30524","Mauldin","SC","South Carolina","TRUE","","15547","1053.5","45045","Greenville","{""45045"": ""100""}","Greenville","45045","FALSE","FALSE","America/New_York"
-"29664","34.86596","-83.1582","Mountain Rest","SC","South Carolina","TRUE","","1866","7.5","45073","Oconee","{""45073"": ""100""}","Oconee","45073","FALSE","FALSE","America/New_York"
-"29665","34.72475","-82.91408","Newry","SC","South Carolina","TRUE","","191","350.9","45073","Oconee","{""45073"": ""100""}","Oconee","45073","FALSE","FALSE","America/New_York"
-"29666","34.12232","-81.99164","Ninety Six","SC","South Carolina","TRUE","","6381","20.0","45047","Greenwood","{""45047"": ""96.93"", ""45081"": ""3.07""}","Greenwood|Saluda","45047|45081","FALSE","FALSE","America/New_York"
-"29667","34.76477","-82.7567","Norris","SC","South Carolina","TRUE","","285","209.9","45077","Pickens","{""45077"": ""100""}","Pickens","45077","FALSE","FALSE","America/New_York"
-"29669","34.64149","-82.41659","Pelzer","SC","South Carolina","TRUE","","12217","75.3","45007","Anderson","{""45007"": ""51.24"", ""45045"": ""48.76""}","Anderson|Greenville","45007|45045","FALSE","FALSE","America/New_York"
-"29670","34.64341","-82.72332","Pendleton","SC","South Carolina","TRUE","","9872","69.1","45007","Anderson","{""45007"": ""99.65"", ""45077"": ""0.35""}","Anderson|Pickens","45007|45077","FALSE","FALSE","America/New_York"
-"29671","34.93511","-82.72151","Pickens","SC","South Carolina","TRUE","","17936","54.2","45077","Pickens","{""45077"": ""100""}","Pickens","45077","FALSE","FALSE","America/New_York"
-"29672","34.74824","-82.93963","Seneca","SC","South Carolina","TRUE","","12356","123.0","45073","Oconee","{""45073"": ""100""}","Oconee","45073","FALSE","FALSE","America/New_York"
-"29673","34.7193","-82.45722","Piedmont","SC","South Carolina","TRUE","","29289","161.7","45045","Greenville","{""45045"": ""51.24"", ""45007"": ""48.76""}","Greenville|Anderson","45045|45007","FALSE","FALSE","America/New_York"
-"29676","34.93322","-82.96065","Salem","SC","South Carolina","TRUE","","5463","28.9","45073","Oconee","{""45073"": ""100""}","Oconee","45073","FALSE","FALSE","America/New_York"
-"29678","34.63301","-82.94107","Seneca","SC","South Carolina","TRUE","","23079","112.7","45073","Oconee","{""45073"": ""100"", ""45077"": ""0""}","Oconee|Pickens","45073|45077","FALSE","FALSE","America/New_York"
-"29680","34.68859","-82.29155","Simpsonville","SC","South Carolina","TRUE","","33931","421.9","45045","Greenville","{""45045"": ""100""}","Greenville","45045","FALSE","FALSE","America/New_York"
-"29681","34.76916","-82.22475","Simpsonville","SC","South Carolina","TRUE","","60303","563.0","45045","Greenville","{""45045"": ""100""}","Greenville","45045","FALSE","FALSE","America/New_York"
-"29682","34.8345","-82.84553","Six Mile","SC","South Carolina","TRUE","","3670","53.2","45077","Pickens","{""45077"": ""100""}","Pickens","45077","FALSE","FALSE","America/New_York"
-"29683","35.03003","-82.4942","Slater","SC","South Carolina","TRUE","","321","1582.6","45045","Greenville","{""45045"": ""100""}","Greenville","45045","FALSE","FALSE","America/New_York"
-"29684","34.3803","-82.72663","Starr","SC","South Carolina","TRUE","","4138","28.4","45007","Anderson","{""45007"": ""100""}","Anderson","45007","FALSE","FALSE","America/New_York"
-"29685","34.98721","-82.84714","Sunset","SC","South Carolina","TRUE","","1849","8.3","45077","Pickens","{""45077"": ""100""}","Pickens","45077","FALSE","FALSE","America/New_York"
-"29686","34.93031","-83.04657","Tamassee","SC","South Carolina","TRUE","","1164","14.7","45073","Oconee","{""45073"": ""100""}","Oconee","45073","FALSE","FALSE","America/New_York"
-"29687","34.98422","-82.32764","Taylors","SC","South Carolina","TRUE","","42219","347.0","45045","Greenville","{""45045"": ""100""}","Greenville","45045","FALSE","FALSE","America/New_York"
-"29689","34.52743","-82.87393","Townville","SC","South Carolina","TRUE","","4001","43.4","45007","Anderson","{""45007"": ""88.61"", ""45073"": ""11.39""}","Anderson|Oconee","45007|45073","FALSE","FALSE","America/New_York"
-"29690","35.0595","-82.42151","Travelers Rest","SC","South Carolina","TRUE","","23318","85.0","45045","Greenville","{""45045"": ""100""}","Greenville","45045","FALSE","FALSE","America/New_York"
-"29691","34.78364","-83.0861","Walhalla","SC","South Carolina","TRUE","","11672","65.7","45073","Oconee","{""45073"": ""100""}","Oconee","45073","FALSE","FALSE","America/New_York"
-"29692","34.4196","-82.22193","Ware Shoals","SC","South Carolina","TRUE","","4938","39.5","45059","Laurens","{""45059"": ""43.82"", ""45047"": ""41.08"", ""45001"": ""15.09""}","Laurens|Greenwood|Abbeville","45059|45047|45001","FALSE","FALSE","America/New_York"
-"29693","34.65257","-83.15153","Westminster","SC","South Carolina","TRUE","","13771","31.9","45073","Oconee","{""45073"": ""100""}","Oconee","45073","FALSE","FALSE","America/New_York"
-"29696","34.77602","-83.00584","West Union","SC","South Carolina","TRUE","","5146","85.4","45073","Oconee","{""45073"": ""100""}","Oconee","45073","FALSE","FALSE","America/New_York"
-"29697","34.62807","-82.54808","Williamston","SC","South Carolina","TRUE","","13794","138.5","45007","Anderson","{""45007"": ""100""}","Anderson","45007","FALSE","FALSE","America/New_York"
-"29702","35.11336","-81.47683","Blacksburg","SC","South Carolina","TRUE","","10841","42.2","45021","Cherokee","{""45021"": ""95.96"", ""45091"": ""4.04""}","Cherokee|York","45021|45091","FALSE","FALSE","America/New_York"
-"29704","34.82092","-80.91536","Catawba","SC","South Carolina","TRUE","","3488","49.8","45091","York","{""45091"": ""85.06"", ""45023"": ""14.94""}","York|Chester","45091|45023","FALSE","FALSE","America/New_York"
-"29706","34.71675","-81.23292","Chester","SC","South Carolina","TRUE","","19244","27.3","45023","Chester","{""45023"": ""99.88"", ""45091"": ""0.12""}","Chester|York","45023|45091","FALSE","FALSE","America/New_York"
-"29707","34.97723","-80.85827","Fort Mill","SC","South Carolina","TRUE","","32229","392.0","45057","Lancaster","{""45057"": ""99.96"", ""45091"": ""0.04""}","Lancaster|York","45057|45091","FALSE","FALSE","America/New_York"
-"29708","35.04658","-80.98587","Fort Mill","SC","South Carolina","TRUE","","36402","734.4","45091","York","{""45091"": ""100""}","York","45091","FALSE","FALSE","America/New_York"
-"29709","34.72034","-80.0966","Chesterfield","SC","South Carolina","TRUE","","6640","26.3","45025","Chesterfield","{""45025"": ""100""}","Chesterfield","45025","FALSE","FALSE","America/New_York"
-"29710","35.10647","-81.22036","Clover","SC","South Carolina","TRUE","","36944","125.6","45091","York","{""45091"": ""100""}","York","45091","FALSE","FALSE","America/New_York"
-"29712","34.79498","-80.98561","Edgemoor","SC","South Carolina","TRUE","","2246","31.1","45023","Chester","{""45023"": ""86.06"", ""45091"": ""13.94""}","Chester|York","45023|45091","FALSE","FALSE","America/New_York"
-"29714","34.71103","-80.91533","Fort Lawn","SC","South Carolina","TRUE","","2991","35.3","45023","Chester","{""45023"": ""100""}","Chester","45023","FALSE","FALSE","America/New_York"
-"29715","35.01074","-80.92653","Fort Mill","SC","South Carolina","TRUE","","34429","392.7","45091","York","{""45091"": ""100""}","York","45091","FALSE","FALSE","America/New_York"
-"29717","34.95296","-81.44316","Hickory Grove","SC","South Carolina","TRUE","","1606","16.2","45091","York","{""45091"": ""100""}","York","45091","FALSE","FALSE","America/New_York"
-"29718","34.61982","-80.33128","Jefferson","SC","South Carolina","TRUE","","4365","14.4","45025","Chesterfield","{""45025"": ""93.57"", ""45055"": ""6.43""}","Chesterfield|Kershaw","45025|45055","FALSE","FALSE","America/New_York"
-"29720","34.74098","-80.73584","Lancaster","SC","South Carolina","TRUE","","47626","64.8","45057","Lancaster","{""45057"": ""100""}","Lancaster","45057","FALSE","FALSE","America/New_York"
-"29724","34.77398","-81.0111","Lando","SC","South Carolina","TRUE","","38","59.1","45023","Chester","{""45023"": ""100""}","Chester","45023","FALSE","FALSE","America/New_York"
-"29726","34.85776","-81.23181","McConnells","SC","South Carolina","TRUE","","1693","16.2","45091","York","{""45091"": ""100""}","York","45091","FALSE","FALSE","America/New_York"
-"29727","34.71431","-80.26826","Mount Croghan","SC","South Carolina","TRUE","","1776","13.9","45025","Chesterfield","{""45025"": ""100""}","Chesterfield","45025","FALSE","FALSE","America/New_York"
-"29728","34.76824","-80.40245","Pageland","SC","South Carolina","TRUE","","9552","38.1","45025","Chesterfield","{""45025"": ""100""}","Chesterfield","45025","FALSE","FALSE","America/New_York"
-"29729","34.67671","-81.00586","Richburg","SC","South Carolina","TRUE","","2203","12.7","45023","Chester","{""45023"": ""100""}","Chester","45023","FALSE","FALSE","America/New_York"
-"29730","34.88671","-81.02081","Rock Hill","SC","South Carolina","TRUE","","55858","179.6","45091","York","{""45091"": ""99.47"", ""45023"": ""0.53""}","York|Chester","45091|45023","FALSE","FALSE","America/New_York"
-"29732","34.96968","-81.07935","Rock Hill","SC","South Carolina","TRUE","","59059","427.6","45091","York","{""45091"": ""100""}","York","45091","FALSE","FALSE","America/New_York"
-"29733","34.93971","-81.03192","Rock Hill","SC","South Carolina","TRUE","","1816","5936.3","45091","York","{""45091"": ""100""}","York","45091","FALSE","FALSE","America/New_York"
-"29741","34.72501","-80.20106","Ruby","SC","South Carolina","TRUE","","2340","24.3","45025","Chesterfield","{""45025"": ""100""}","Chesterfield","45025","FALSE","FALSE","America/New_York"
-"29742","34.86973","-81.38167","Sharon","SC","South Carolina","TRUE","","2502","11.9","45091","York","{""45091"": ""90.69"", ""45023"": ""9.31""}","York|Chester","45091|45023","FALSE","FALSE","America/New_York"
-"29743","35.02554","-81.39877","Smyrna","SC","South Carolina","TRUE","","931","11.5","45091","York","{""45091"": ""100""}","York","45091","FALSE","FALSE","America/New_York"
-"29745","34.99484","-81.216","York","SC","South Carolina","TRUE","","31142","89.0","45091","York","{""45091"": ""100""}","York","45091","FALSE","FALSE","America/New_York"
-"29801","33.58945","-81.69697","Aiken","SC","South Carolina","TRUE","","27764","122.4","45003","Aiken","{""45003"": ""100""}","Aiken","45003","FALSE","FALSE","America/New_York"
-"29803","33.42181","-81.68","Aiken","SC","South Carolina","TRUE","","38482","78.0","45003","Aiken","{""45003"": ""100""}","Aiken","45003","FALSE","FALSE","America/New_York"
-"29805","33.6474","-81.60525","Aiken","SC","South Carolina","TRUE","","6189","24.2","45003","Aiken","{""45003"": ""100""}","Aiken","45003","FALSE","FALSE","America/New_York"
-"29809","33.41822","-81.69171","New Ellenton","SC","South Carolina","TRUE","","2439","151.0","45003","Aiken","{""45003"": ""100""}","Aiken","45003","FALSE","FALSE","America/New_York"
-"29810","32.99533","-81.37633","Allendale","SC","South Carolina","TRUE","","4040","12.8","45005","Allendale","{""45005"": ""100""}","Allendale","45005","FALSE","FALSE","America/New_York"
-"29812","33.22683","-81.44135","Barnwell","SC","South Carolina","TRUE","","11482","16.0","45011","Barnwell","{""45011"": ""99.92"", ""45005"": ""0.08""}","Barnwell|Allendale","45011|45005","FALSE","FALSE","America/New_York"
-"29816","33.5005","-81.87341","Bath","SC","South Carolina","TRUE","","885","347.0","45003","Aiken","{""45003"": ""100""}","Aiken","45003","FALSE","FALSE","America/New_York"
-"29817","33.37057","-81.27283","Blackville","SC","South Carolina","TRUE","","4309","15.5","45011","Barnwell","{""45011"": ""95.34"", ""45009"": ""4.66""}","Barnwell|Bamberg","45011|45009","FALSE","FALSE","America/New_York"
-"29819","34.04502","-82.22691","Bradley","SC","South Carolina","TRUE","","1892","10.7","45047","Greenwood","{""45047"": ""94.48"", ""45001"": ""2.76"", ""45065"": ""2.76""}","Greenwood|Abbeville|McCormick","45047|45001|45065","FALSE","FALSE","America/New_York"
-"29821","33.64381","-82.11184","Clarks Hill","SC","South Carolina","TRUE","","1702","10.6","45065","McCormick","{""45065"": ""53.33"", ""45037"": ""46.67""}","McCormick|Edgefield","45065|45037","FALSE","FALSE","America/New_York"
-"29824","33.81939","-81.99726","Edgefield","SC","South Carolina","TRUE","","8651","14.9","45037","Edgefield","{""45037"": ""99.44"", ""45081"": ""0.56""}","Edgefield|Saluda","45037|45081","FALSE","FALSE","America/New_York"
-"29826","33.37214","-81.36382","Elko","SC","South Carolina","TRUE","","147","16.9","45011","Barnwell","{""45011"": ""100""}","Barnwell","45011","FALSE","FALSE","America/New_York"
-"29827","32.96459","-81.2533","Fairfax","SC","South Carolina","TRUE","","4103","15.1","45005","Allendale","{""45005"": ""100""}","Allendale","45005","FALSE","FALSE","America/New_York"
-"29828","33.52282","-81.82839","Gloverville","SC","South Carolina","TRUE","","724","414.9","45003","Aiken","{""45003"": ""100""}","Aiken","45003","FALSE","FALSE","America/New_York"
-"29829","33.57393","-81.85362","Graniteville","SC","South Carolina","TRUE","","12237","144.0","45003","Aiken","{""45003"": ""100""}","Aiken","45003","FALSE","FALSE","America/New_York"
-"29831","33.3112","-81.80288","Jackson","SC","South Carolina","TRUE","","4401","14.8","45003","Aiken","{""45003"": ""100""}","Aiken","45003","FALSE","FALSE","America/New_York"
-"29832","33.83962","-81.80817","Johnston","SC","South Carolina","TRUE","","5198","20.7","45037","Edgefield","{""45037"": ""83.22"", ""45081"": ""16.78""}","Edgefield|Saluda","45037|45081","FALSE","FALSE","America/New_York"
-"29834","33.5119","-81.85827","Langley","SC","South Carolina","TRUE","","2041","417.9","45003","Aiken","{""45003"": ""100""}","Aiken","45003","FALSE","FALSE","America/New_York"
-"29835","33.91894","-82.2903","McCormick","SC","South Carolina","TRUE","","6133","12.9","45065","McCormick","{""45065"": ""94.35"", ""45037"": ""5.65""}","McCormick|Edgefield","45065|45037","FALSE","FALSE","America/New_York"
-"29836","33.11739","-81.56876","Martin","SC","South Carolina","TRUE","","412","0.9","45005","Allendale","{""45005"": ""88.59"", ""45011"": ""11.41""}","Allendale|Barnwell","45005|45011","FALSE","FALSE","America/New_York"
-"29838","33.73749","-82.16331","Modoc","SC","South Carolina","TRUE","","329","4.3","45037","Edgefield","{""45037"": ""54.49"", ""45065"": ""45.51""}","Edgefield|McCormick","45037|45065","FALSE","FALSE","America/New_York"
-"29840","34.00645","-82.53238","Mount Carmel","SC","South Carolina","TRUE","","233","2.7","45065","McCormick","{""45065"": ""100""}","McCormick","45065","FALSE","FALSE","America/New_York"
-"29841","33.52505","-81.93946","North Augusta","SC","South Carolina","TRUE","","32622","395.7","45003","Aiken","{""45003"": ""100""}","Aiken","45003","FALSE","FALSE","America/New_York"
-"29842","33.44613","-81.8637","Beech Island","SC","South Carolina","TRUE","","7395","73.0","45003","Aiken","{""45003"": ""100""}","Aiken","45003","FALSE","FALSE","America/New_York"
-"29843","33.18289","-81.18034","Olar","SC","South Carolina","TRUE","","1347","8.1","45009","Bamberg","{""45009"": ""67.08"", ""45011"": ""32.92""}","Bamberg|Barnwell","45009|45011","FALSE","FALSE","America/New_York"
-"29844","33.76826","-82.23213","Parksville","SC","South Carolina","TRUE","","121","14.0","45065","McCormick","{""45065"": ""100""}","McCormick","45065","FALSE","FALSE","America/New_York"
-"29845","33.82617","-82.20494","Plum Branch","SC","South Carolina","TRUE","","901","5.3","45065","McCormick","{""45065"": ""98.64"", ""45037"": ""1.36""}","McCormick|Edgefield","45065|45037","FALSE","FALSE","America/New_York"
-"29847","33.70004","-81.85588","Trenton","SC","South Carolina","TRUE","","5289","22.5","45037","Edgefield","{""45037"": ""80.26"", ""45003"": ""19.74""}","Edgefield|Aiken","45037|45003","FALSE","FALSE","America/New_York"
-"29848","34.00151","-82.21348","Troy","SC","South Carolina","TRUE","","813","3.3","45047","Greenwood","{""45047"": ""67.51"", ""45065"": ""27.3"", ""45081"": ""5.19""}","Greenwood|McCormick|Saluda","45047|45065|45081","FALSE","FALSE","America/New_York"
-"29849","33.09685","-81.23312","Ulmer","SC","South Carolina","TRUE","","472","5.0","45005","Allendale","{""45005"": ""95.92"", ""45011"": ""4.08""}","Allendale|Barnwell","45005|45011","FALSE","FALSE","America/New_York"
-"29850","33.61271","-81.81272","Vaucluse","SC","South Carolina","TRUE","","165","31.3","45003","Aiken","{""45003"": ""100""}","Aiken","45003","FALSE","FALSE","America/New_York"
-"29851","33.51185","-81.81159","Warrenville","SC","South Carolina","TRUE","","7504","139.6","45003","Aiken","{""45003"": ""100""}","Aiken","45003","FALSE","FALSE","America/New_York"
-"29853","33.40297","-81.42338","Williston","SC","South Carolina","TRUE","","6139","21.4","45011","Barnwell","{""45011"": ""82.48"", ""45003"": ""17.52""}","Barnwell|Aiken","45011|45003","FALSE","FALSE","America/New_York"
-"29856","33.48331","-81.51321","Windsor","SC","South Carolina","TRUE","","3239","21.6","45003","Aiken","{""45003"": ""100""}","Aiken","45003","FALSE","FALSE","America/New_York"
-"29860","33.60279","-81.97479","North Augusta","SC","South Carolina","TRUE","","16125","119.6","45037","Edgefield","{""45037"": ""54.98"", ""45003"": ""45.02""}","Edgefield|Aiken","45037|45003","FALSE","FALSE","America/New_York"
-"29899","33.928","-82.25068","McCormick","SC","South Carolina","TRUE","","1083","1108.2","45065","McCormick","{""45065"": ""100""}","McCormick","45065","FALSE","FALSE","America/New_York"
-"29902","32.37717","-80.69522","Beaufort","SC","South Carolina","TRUE","","15631","324.6","45013","Beaufort","{""45013"": ""100""}","Beaufort","45013","FALSE","FALSE","America/New_York"
-"29904","32.45734","-80.71791","Beaufort","SC","South Carolina","TRUE","","761","4923.0","45013","Beaufort","{""45013"": ""100""}","Beaufort","45013","FALSE","FALSE","America/New_York"
-"29905","32.35145","-80.68492","Parris Island","SC","South Carolina","TRUE","","2723","380.1","45013","Beaufort","{""45013"": ""100""}","Beaufort","45013","FALSE","FALSE","America/New_York"
-"29906","32.44678","-80.75031","Beaufort","SC","South Carolina","TRUE","","27096","216.0","45013","Beaufort","{""45013"": ""100""}","Beaufort","45013","FALSE","FALSE","America/New_York"
-"29907","32.45331","-80.6087","Beaufort","SC","South Carolina","TRUE","","14949","137.3","45013","Beaufort","{""45013"": ""100""}","Beaufort","45013","FALSE","FALSE","America/New_York"
-"29909","32.341","-80.85373","Okatie","SC","South Carolina","TRUE","","19419","136.3","45013","Beaufort","{""45013"": ""99.65"", ""45053"": ""0.35""}","Beaufort|Jasper","45013|45053","FALSE","FALSE","America/New_York"
-"29910","32.22078","-80.88483","Bluffton","SC","South Carolina","TRUE","","41697","156.2","45013","Beaufort","{""45013"": ""100""}","Beaufort","45013","FALSE","FALSE","America/New_York"
-"29911","32.9376","-81.14181","Brunson","SC","South Carolina","TRUE","","1591","8.2","45049","Hampton","{""45049"": ""100""}","Hampton","45049","FALSE","FALSE","America/New_York"
-"29912","32.58262","-80.93074","Coosawhatchie","SC","South Carolina","TRUE","","0","0.0","45053","Jasper","{""45053"": ""100""}","Jasper","45053","FALSE","FALSE","America/New_York"
-"29915","32.11465","-80.86898","Daufuskie Island","SC","South Carolina","TRUE","","444","15.9","45013","Beaufort","{""45013"": ""100""}","Beaufort","45013","FALSE","FALSE","America/New_York"
-"29916","32.72295","-80.96338","Early Branch","SC","South Carolina","TRUE","","1954","10.3","45049","Hampton","{""45049"": ""59.88"", ""45053"": ""40.12""}","Hampton|Jasper","45049|45053","FALSE","FALSE","America/New_York"
-"29918","32.74555","-81.24206","Estill","SC","South Carolina","TRUE","","5958","25.4","45049","Hampton","{""45049"": ""100""}","Hampton","45049","FALSE","FALSE","America/New_York"
-"29920","32.36456","-80.54964","Saint Helena Island","SC","South Carolina","TRUE","","11586","45.8","45013","Beaufort","{""45013"": ""100""}","Beaufort","45013","FALSE","FALSE","America/New_York"
-"29921","32.6826","-81.17286","Furman","SC","South Carolina","TRUE","","178","10.3","45049","Hampton","{""45049"": ""100""}","Hampton","45049","FALSE","FALSE","America/New_York"
-"29922","32.62218","-81.28344","Garnett","SC","South Carolina","TRUE","","872","2.5","45049","Hampton","{""45049"": ""70.84"", ""45053"": ""29.16""}","Hampton|Jasper","45049|45053","FALSE","FALSE","America/New_York"
-"29923","32.85956","-81.24639","Gifford","SC","South Carolina","TRUE","","315","9.1","45049","Hampton","{""45049"": ""100""}","Hampton","45049","FALSE","FALSE","America/New_York"
-"29924","32.87669","-81.11328","Hampton","SC","South Carolina","TRUE","","4189","30.2","45049","Hampton","{""45049"": ""100""}","Hampton","45049","FALSE","FALSE","America/New_York"
-"29926","32.22801","-80.75234","Hilton Head Island","SC","South Carolina","TRUE","","26377","334.6","45013","Beaufort","{""45013"": ""100""}","Beaufort","45013","FALSE","FALSE","America/New_York"
-"29927","32.23044","-81.04402","Hardeeville","SC","South Carolina","TRUE","","9829","19.4","45053","Jasper","{""45053"": ""99.87"", ""45013"": ""0.13""}","Jasper|Beaufort","45053|45013","FALSE","FALSE","America/New_York"
-"29928","32.1615","-80.76347","Hilton Head Island","SC","South Carolina","TRUE","","16347","305.9","45013","Beaufort","{""45013"": ""100""}","Beaufort","45013","FALSE","FALSE","America/New_York"
-"29929","32.93567","-80.94263","Islandton","SC","South Carolina","TRUE","","789","4.0","45029","Colleton","{""45029"": ""100""}","Colleton","45029","FALSE","FALSE","America/New_York"
-"29932","32.81839","-81.34757","Luray","SC","South Carolina","TRUE","","144","0.8","45049","Hampton","{""45049"": ""68.03"", ""45005"": ""31.97""}","Hampton|Allendale","45049|45005","FALSE","FALSE","America/New_York"
-"29934","32.59311","-81.10784","Pineland","SC","South Carolina","TRUE","","1004","5.6","45053","Jasper","{""45053"": ""91.47"", ""45049"": ""8.53""}","Jasper|Hampton","45053|45049","FALSE","FALSE","America/New_York"
-"29935","32.38324","-80.69508","Port Royal","SC","South Carolina","TRUE","","4513","759.4","45013","Beaufort","{""45013"": ""100""}","Beaufort","45013","FALSE","FALSE","America/New_York"
-"29936","32.47805","-80.97238","Ridgeland","SC","South Carolina","TRUE","","13476","21.9","45053","Jasper","{""45053"": ""100""}","Jasper","45053","FALSE","FALSE","America/New_York"
-"29939","32.6725","-81.24403","Scotia","SC","South Carolina","TRUE","","433","15.5","45049","Hampton","{""45049"": ""100""}","Hampton","45049","FALSE","FALSE","America/New_York"
-"29940","32.55321","-80.70667","Seabrook","SC","South Carolina","TRUE","","4025","27.6","45013","Beaufort","{""45013"": ""100""}","Beaufort","45013","FALSE","FALSE","America/New_York"
-"29941","32.54373","-80.81181","Sheldon","SC","South Carolina","TRUE","","455","10.4","45013","Beaufort","{""45013"": ""100""}","Beaufort","45013","FALSE","FALSE","America/New_York"
-"29943","32.46815","-81.16689","Tillman","SC","South Carolina","TRUE","","514","4.3","45053","Jasper","{""45053"": ""100""}","Jasper","45053","FALSE","FALSE","America/New_York"
-"29944","32.79221","-81.03282","Varnville","SC","South Carolina","TRUE","","4243","12.4","45049","Hampton","{""45049"": ""98.36"", ""45053"": ""1.64""}","Hampton|Jasper","45049|45053","FALSE","FALSE","America/New_York"
-"29945","32.67305","-80.78432","Yemassee","SC","South Carolina","TRUE","","5640","9.9","45049","Hampton","{""45049"": ""35.94"", ""45029"": ""28.9"", ""45013"": ""24.91"", ""45053"": ""10.25""}","Hampton|Colleton|Beaufort|Jasper","45049|45029|45013|45053","FALSE","FALSE","America/New_York"
-"30002","33.77366","-84.26051","Avondale Estates","GA","Georgia","TRUE","","6054","1382.4","13089","DeKalb","{""13089"": ""100""}","DeKalb","13089","FALSE","FALSE","America/New_York"
-"30004","34.14329","-84.29948","Alpharetta","GA","Georgia","TRUE","","65294","439.3","13121","Fulton","{""13121"": ""79.04"", ""13117"": ""16.15"", ""13057"": ""4.81""}","Fulton|Forsyth|Cherokee","13121|13117|13057","FALSE","FALSE","America/New_York"
-"30005","34.08622","-84.21593","Alpharetta","GA","Georgia","TRUE","","39420","1048.1","13121","Fulton","{""13121"": ""87.08"", ""13117"": ""12.92""}","Fulton|Forsyth","13121|13117","FALSE","FALSE","America/New_York"
-"30008","33.89629","-84.58926","Marietta","GA","Georgia","TRUE","","33637","1373.5","13067","Cobb","{""13067"": ""100""}","Cobb","13067","FALSE","FALSE","America/New_York"
-"30009","34.07699","-84.30328","Alpharetta","GA","Georgia","TRUE","","17371","699.0","13121","Fulton","{""13121"": ""100""}","Fulton","13121","FALSE","FALSE","America/New_York"
-"30011","34.02235","-83.83769","Auburn","GA","Georgia","TRUE","","15806","229.3","13013","Barrow","{""13013"": ""72.98"", ""13135"": ""27.02""}","Barrow|Gwinnett","13013|13135","FALSE","FALSE","America/New_York"
-"30012","33.71884","-83.99866","Conyers","GA","Georgia","TRUE","","28591","257.7","13247","Rockdale","{""13247"": ""97.51"", ""13089"": ""1.83"", ""13297"": ""0.65""}","Rockdale|DeKalb|Walton","13247|13089|13297","FALSE","FALSE","America/New_York"
-"30013","33.64422","-83.97193","Conyers","GA","Georgia","TRUE","","26555","361.4","13247","Rockdale","{""13247"": ""94.72"", ""13217"": ""5.28""}","Rockdale|Newton","13247|13217","FALSE","FALSE","America/New_York"
-"30014","33.57828","-83.82048","Covington","GA","Georgia","TRUE","","38041","124.7","13217","Newton","{""13217"": ""91.89"", ""13297"": ""7.62"", ""13159"": ""0.49""}","Newton|Walton|Jasper","13217|13297|13159","FALSE","FALSE","America/New_York"
-"30016","33.51712","-83.92942","Covington","GA","Georgia","TRUE","","55279","232.8","13217","Newton","{""13217"": ""99.68"", ""13247"": ""0.32""}","Newton|Rockdale","13217|13247","FALSE","FALSE","America/New_York"
-"30017","33.89012","-83.96318","Grayson","GA","Georgia","TRUE","","23415","755.7","13135","Gwinnett","{""13135"": ""100""}","Gwinnett","13135","FALSE","FALSE","America/New_York"
-"30019","33.97647","-83.88229","Dacula","GA","Georgia","TRUE","","48782","406.5","13135","Gwinnett","{""13135"": ""99.82"", ""13297"": ""0.18""}","Gwinnett|Walton","13135|13297","FALSE","FALSE","America/New_York"
-"30021","33.80816","-84.23816","Clarkston","GA","Georgia","TRUE","","23493","2564.7","13089","DeKalb","{""13089"": ""100""}","DeKalb","13089","FALSE","FALSE","America/New_York"
-"30022","34.03027","-84.2472","Alpharetta","GA","Georgia","TRUE","","68945","1046.0","13121","Fulton","{""13121"": ""100""}","Fulton","13121","FALSE","FALSE","America/New_York"
-"30024","34.06239","-84.09069","Suwanee","GA","Georgia","TRUE","","79000","716.3","13135","Gwinnett","{""13135"": ""68.98"", ""13117"": ""27.21"", ""13121"": ""3.81""}","Gwinnett|Forsyth|Fulton","13135|13117|13121","FALSE","FALSE","America/New_York"
-"30025","33.65591","-83.69573","Social Circle","GA","Georgia","TRUE","","9679","54.9","13297","Walton","{""13297"": ""70.59"", ""13217"": ""29.41""}","Walton|Newton","13297|13217","FALSE","FALSE","America/New_York"
-"30028","34.28964","-84.17949","Cumming","GA","Georgia","TRUE","","27120","203.9","13117","Forsyth","{""13117"": ""97.2"", ""13057"": ""2.8""}","Forsyth|Cherokee","13117|13057","FALSE","FALSE","America/New_York"
-"30030","33.77126","-84.29204","Decatur","GA","Georgia","TRUE","","30608","1811.6","13089","DeKalb","{""13089"": ""100""}","DeKalb","13089","FALSE","FALSE","America/New_York"
-"30032","33.73974","-84.26433","Decatur","GA","Georgia","TRUE","","47980","1358.1","13089","DeKalb","{""13089"": ""100""}","DeKalb","13089","FALSE","FALSE","America/New_York"
-"30033","33.81231","-84.28365","Decatur","GA","Georgia","TRUE","","32847","1373.0","13089","DeKalb","{""13089"": ""100""}","DeKalb","13089","FALSE","FALSE","America/New_York"
-"30034","33.69196","-84.24882","Decatur","GA","Georgia","TRUE","","48253","1098.7","13089","DeKalb","{""13089"": ""100""}","DeKalb","13089","FALSE","FALSE","America/New_York"
-"30035","33.72556","-84.20523","Decatur","GA","Georgia","TRUE","","23223","1048.0","13089","DeKalb","{""13089"": ""100""}","DeKalb","13089","FALSE","FALSE","America/New_York"
-"30038","33.6706","-84.14236","Lithonia","GA","Georgia","TRUE","","39514","525.1","13089","DeKalb","{""13089"": ""100""}","DeKalb","13089","FALSE","FALSE","America/New_York"
-"30039","33.79966","-84.0332","Snellville","GA","Georgia","TRUE","","47778","736.4","13135","Gwinnett","{""13135"": ""98.77"", ""13089"": ""1.23""}","Gwinnett|DeKalb","13135|13089","FALSE","FALSE","America/New_York"
-"30040","34.21614","-84.1806","Cumming","GA","Georgia","TRUE","","72909","478.3","13117","Forsyth","{""13117"": ""99.4"", ""13057"": ""0.6""}","Forsyth|Cherokee","13117|13057","FALSE","FALSE","America/New_York"
-"30041","34.20039","-84.09418","Cumming","GA","Georgia","TRUE","","69117","453.1","13117","Forsyth","{""13117"": ""100""}","Forsyth","13117","FALSE","FALSE","America/New_York"
-"30043","34.00303","-84.00744","Lawrenceville","GA","Georgia","TRUE","","91378","1084.5","13135","Gwinnett","{""13135"": ""100""}","Gwinnett","13135","FALSE","FALSE","America/New_York"
-"30044","33.92215","-84.06915","Lawrenceville","GA","Georgia","TRUE","","89139","1403.0","13135","Gwinnett","{""13135"": ""100""}","Gwinnett","13135","FALSE","FALSE","America/New_York"
-"30045","33.93126","-83.92996","Lawrenceville","GA","Georgia","TRUE","","43018","764.0","13135","Gwinnett","{""13135"": ""100""}","Gwinnett","13135","FALSE","FALSE","America/New_York"
-"30046","33.94959","-83.99417","Lawrenceville","GA","Georgia","TRUE","","37338","920.9","13135","Gwinnett","{""13135"": ""100""}","Gwinnett","13135","FALSE","FALSE","America/New_York"
-"30047","33.87064","-84.11267","Lilburn","GA","Georgia","TRUE","","65937","917.9","13135","Gwinnett","{""13135"": ""100""}","Gwinnett","13135","FALSE","FALSE","America/New_York"
-"30052","33.81581","-83.8947","Loganville","GA","Georgia","TRUE","","68563","302.6","13297","Walton","{""13297"": ""51.81"", ""13135"": ""47.49"", ""13247"": ""0.5"", ""13217"": ""0.21""}","Walton|Gwinnett|Rockdale|Newton","13297|13135|13247|13217","FALSE","FALSE","America/New_York"
-"30054","33.67579","-83.87454","Oxford","GA","Georgia","TRUE","","12318","115.0","13217","Newton","{""13217"": ""82.49"", ""13297"": ""17.51""}","Newton|Walton","13217|13297","FALSE","FALSE","America/New_York"
-"30055","33.4897","-83.74234","Mansfield","GA","Georgia","TRUE","","3432","25.8","13159","Jasper","{""13159"": ""50.8"", ""13217"": ""40.23"", ""13211"": ""8.98""}","Jasper|Newton|Morgan","13159|13217|13211","FALSE","FALSE","America/New_York"
-"30056","33.49701","-83.6627","Newborn","GA","Georgia","TRUE","","2262","22.8","13159","Jasper","{""13159"": ""48.88"", ""13217"": ""44.8"", ""13211"": ""6.32""}","Jasper|Newton|Morgan","13159|13217|13211","FALSE","FALSE","America/New_York"
-"30058","33.7376","-84.10616","Lithonia","GA","Georgia","TRUE","","59751","747.8","13089","DeKalb","{""13089"": ""99.73"", ""13247"": ""0.27""}","DeKalb|Rockdale","13089|13247","FALSE","FALSE","America/New_York"
-"30060","33.92025","-84.54203","Marietta","GA","Georgia","TRUE","","40290","948.3","13067","Cobb","{""13067"": ""100""}","Cobb","13067","FALSE","FALSE","America/New_York"
-"30062","33.99971","-84.46987","Marietta","GA","Georgia","TRUE","","65801","983.5","13067","Cobb","{""13067"": ""100""}","Cobb","13067","FALSE","FALSE","America/New_York"
-"30064","33.93965","-84.61642","Marietta","GA","Georgia","TRUE","","49256","596.5","13067","Cobb","{""13067"": ""100""}","Cobb","13067","FALSE","FALSE","America/New_York"
-"30066","34.03403","-84.50788","Marietta","GA","Georgia","TRUE","","55937","792.5","13067","Cobb","{""13067"": ""100""}","Cobb","13067","FALSE","FALSE","America/New_York"
-"30067","33.93237","-84.46149","Marietta","GA","Georgia","TRUE","","46536","1213.3","13067","Cobb","{""13067"": ""100""}","Cobb","13067","FALSE","FALSE","America/New_York"
-"30068","33.96888","-84.43288","Marietta","GA","Georgia","TRUE","","32453","873.9","13067","Cobb","{""13067"": ""100""}","Cobb","13067","FALSE","FALSE","America/New_York"
-"30070","33.57416","-83.89538","Porterdale","GA","Georgia","TRUE","","426","2660.1","13217","Newton","{""13217"": ""100""}","Newton","13217","FALSE","FALSE","America/New_York"
-"30071","33.93943","-84.20594","Norcross","GA","Georgia","TRUE","","25386","820.4","13135","Gwinnett","{""13135"": ""100""}","Gwinnett","13135","FALSE","FALSE","America/New_York"
-"30072","33.79136","-84.20593","Pine Lake","GA","Georgia","TRUE","","730","1432.1","13089","DeKalb","{""13089"": ""100""}","DeKalb","13089","FALSE","FALSE","America/New_York"
-"30075","34.05248","-84.38741","Roswell","GA","Georgia","TRUE","","53779","696.3","13121","Fulton","{""13121"": ""77.7"", ""13067"": ""21.35"", ""13057"": ""0.95""}","Fulton|Cobb|Cherokee","13121|13067|13057","FALSE","FALSE","America/New_York"
-"30076","34.02845","-84.31765","Roswell","GA","Georgia","TRUE","","46742","1159.2","13121","Fulton","{""13121"": ""100""}","Fulton","13121","FALSE","FALSE","America/New_York"
-"30078","33.86166","-84.01789","Snellville","GA","Georgia","TRUE","","35601","811.0","13135","Gwinnett","{""13135"": ""100""}","Gwinnett","13135","FALSE","FALSE","America/New_York"
-"30079","33.79242","-84.25768","Scottdale","GA","Georgia","TRUE","","3973","1200.2","13089","DeKalb","{""13089"": ""100""}","DeKalb","13089","FALSE","FALSE","America/New_York"
-"30080","33.87137","-84.50105","Smyrna","GA","Georgia","TRUE","","57067","1616.3","13067","Cobb","{""13067"": ""100""}","Cobb","13067","FALSE","FALSE","America/New_York"
-"30082","33.85445","-84.53505","Smyrna","GA","Georgia","TRUE","","27840","1025.2","13067","Cobb","{""13067"": ""100""}","Cobb","13067","FALSE","FALSE","America/New_York"
-"30083","33.79518","-84.19442","Stone Mountain","GA","Georgia","TRUE","","57137","1300.7","13089","DeKalb","{""13089"": ""100""}","DeKalb","13089","FALSE","FALSE","America/New_York"
-"30084","33.85431","-84.21596","Tucker","GA","Georgia","TRUE","","38374","971.7","13089","DeKalb","{""13089"": ""68.25"", ""13135"": ""31.75""}","DeKalb|Gwinnett","13089|13135","FALSE","FALSE","America/New_York"
-"30087","33.81002","-84.13133","Stone Mountain","GA","Georgia","TRUE","","39586","653.9","13089","DeKalb","{""13089"": ""69.22"", ""13135"": ""30.78""}","DeKalb|Gwinnett","13089|13135","FALSE","FALSE","America/New_York"
-"30088","33.7595","-84.17925","Stone Mountain","GA","Georgia","TRUE","","30132","1496.9","13089","DeKalb","{""13089"": ""100""}","DeKalb","13089","FALSE","FALSE","America/New_York"
-"30092","33.97168","-84.23515","Peachtree Corners","GA","Georgia","TRUE","","36034","1268.1","13135","Gwinnett","{""13135"": ""98.98"", ""13121"": ""1.02""}","Gwinnett|Fulton","13135|13121","FALSE","FALSE","America/New_York"
-"30093","33.90951","-84.17802","Norcross","GA","Georgia","TRUE","","56290","1823.8","13135","Gwinnett","{""13135"": ""100""}","Gwinnett","13135","FALSE","FALSE","America/New_York"
-"30094","33.61125","-84.05635","Conyers","GA","Georgia","TRUE","","33579","321.1","13247","Rockdale","{""13247"": ""99.67"", ""13089"": ""0.33""}","Rockdale|DeKalb","13247|13089","FALSE","FALSE","America/New_York"
-"30096","33.97681","-84.14824","Duluth","GA","Georgia","TRUE","","68691","1159.1","13135","Gwinnett","{""13135"": ""100""}","Gwinnett","13135","FALSE","FALSE","America/New_York"
-"30097","34.02595","-84.14704","Duluth","GA","Georgia","TRUE","","46609","801.0","13121","Fulton","{""13121"": ""47.54"", ""13135"": ""46.27"", ""13117"": ""6.19""}","Fulton|Gwinnett|Forsyth","13121|13135|13117","FALSE","FALSE","America/New_York"
-"30101","34.04345","-84.71271","Acworth","GA","Georgia","TRUE","","59515","569.0","13067","Cobb","{""13067"": ""77.88"", ""13223"": ""19.48"", ""13015"": ""2.03"", ""13057"": ""0.61""}","Cobb|Paulding|Bartow|Cherokee","13067|13223|13015|13057","FALSE","FALSE","America/New_York"
-"30102","34.10611","-84.64344","Acworth","GA","Georgia","TRUE","","42278","557.3","13057","Cherokee","{""13057"": ""53.54"", ""13067"": ""28.59"", ""13015"": ""17.88""}","Cherokee|Cobb|Bartow","13057|13067|13015","FALSE","FALSE","America/New_York"
-"30103","34.36661","-84.92071","Adairsville","GA","Georgia","TRUE","","15787","60.4","13015","Bartow","{""13015"": ""74.89"", ""13129"": ""19.99"", ""13115"": ""5.11""}","Bartow|Gordon|Floyd","13015|13129|13115","FALSE","FALSE","America/New_York"
-"30104","34.08456","-85.0615","Aragon","GA","Georgia","TRUE","","5136","51.8","13233","Polk","{""13233"": ""74.55"", ""13115"": ""21.09"", ""13015"": ""4.35""}","Polk|Floyd|Bartow","13233|13115|13015","FALSE","FALSE","America/New_York"
-"30105","34.47183","-85.16109","Armuchee","GA","Georgia","TRUE","","1781","11.5","13115","Floyd","{""13115"": ""90.54"", ""13055"": ""9.46""}","Floyd|Chattooga","13115|13055","FALSE","FALSE","America/New_York"
-"30106","33.83605","-84.62705","Austell","GA","Georgia","TRUE","","21718","674.9","13067","Cobb","{""13067"": ""99.46"", ""13097"": ""0.54""}","Cobb|Douglas","13067|13097","FALSE","FALSE","America/New_York"
-"30107","34.33581","-84.3475","Ball Ground","GA","Georgia","TRUE","","13517","48.0","13057","Cherokee","{""13057"": ""78.63"", ""13227"": ""12.11"", ""13117"": ""9.26""}","Cherokee|Pickens|Forsyth","13057|13227|13117","FALSE","FALSE","America/New_York"
-"30108","33.53232","-85.26319","Bowdon","GA","Georgia","TRUE","","7755","34.0","13045","Carroll","{""13045"": ""97.27"", ""13149"": ""2.73""}","Carroll|Heard","13045|13149","FALSE","FALSE","America/New_York"
-"30110","33.742","-85.13332","Bremen","GA","Georgia","TRUE","","13835","76.8","13143","Haralson","{""13143"": ""95.49"", ""13045"": ""4.51""}","Haralson|Carroll","13143|13045","FALSE","FALSE","America/New_York"
-"30113","33.85046","-85.20833","Buchanan","GA","Georgia","TRUE","","6273","23.4","13143","Haralson","{""13143"": ""92.97"", ""13233"": ""7.03""}","Haralson|Polk","13143|13233","FALSE","FALSE","America/New_York"
-"30114","34.24693","-84.5257","Canton","GA","Georgia","TRUE","","54709","196.9","13057","Cherokee","{""13057"": ""100""}","Cherokee","13057","FALSE","FALSE","America/New_York"
-"30115","34.20405","-84.40077","Canton","GA","Georgia","TRUE","","42934","272.7","13057","Cherokee","{""13057"": ""100""}","Cherokee","13057","FALSE","FALSE","America/New_York"
-"30116","33.55092","-85.01359","Carrollton","GA","Georgia","TRUE","","25169","95.0","13045","Carroll","{""13045"": ""100""}","Carroll","13045","FALSE","FALSE","America/New_York"
-"30117","33.58017","-85.13241","Carrollton","GA","Georgia","TRUE","","35620","125.5","13045","Carroll","{""13045"": ""100""}","Carroll","13045","FALSE","FALSE","America/New_York"
-"30118","33.57233","-85.10369","Carrollton","GA","Georgia","TRUE","","2096","2163.8","13045","Carroll","{""13045"": ""100""}","Carroll","13045","FALSE","FALSE","America/New_York"
-"30120","34.16708","-84.85534","Cartersville","GA","Georgia","TRUE","","40945","171.7","13015","Bartow","{""13015"": ""100""}","Bartow","13015","FALSE","FALSE","America/New_York"
-"30121","34.2084","-84.77663","Cartersville","GA","Georgia","TRUE","","24742","169.1","13015","Bartow","{""13015"": ""100""}","Bartow","13015","FALSE","FALSE","America/New_York"
-"30122","33.76298","-84.63819","Lithia Springs","GA","Georgia","TRUE","","26015","417.1","13097","Douglas","{""13097"": ""100""}","Douglas","13097","FALSE","FALSE","America/New_York"
-"30124","34.13052","-85.35585","Cave Spring","GA","Georgia","TRUE","","2980","19.1","13115","Floyd","{""13115"": ""100""}","Floyd","13115","FALSE","FALSE","America/New_York"
-"30125","34.00204","-85.27502","Cedartown","GA","Georgia","TRUE","","24052","50.7","13233","Polk","{""13233"": ""97.64"", ""13115"": ""2.36""}","Polk|Floyd","13233|13115","FALSE","FALSE","America/New_York"
-"30126","33.81592","-84.55206","Mableton","GA","Georgia","TRUE","","43486","810.5","13067","Cobb","{""13067"": ""100""}","Cobb","13067","FALSE","FALSE","America/New_York"
-"30127","33.87477","-84.69609","Powder Springs","GA","Georgia","TRUE","","70298","534.6","13067","Cobb","{""13067"": ""86.4"", ""13223"": ""13.6""}","Cobb|Paulding","13067|13223","FALSE","FALSE","America/New_York"
-"30132","33.98839","-84.85867","Dallas","GA","Georgia","TRUE","","42607","149.6","13223","Paulding","{""13223"": ""100""}","Paulding","13223","FALSE","FALSE","America/New_York"
-"30134","33.77474","-84.77979","Douglasville","GA","Georgia","TRUE","","43402","337.8","13097","Douglas","{""13097"": ""67.04"", ""13223"": ""32.96""}","Douglas|Paulding","13097|13223","FALSE","FALSE","America/New_York"
-"30135","33.67236","-84.74554","Douglasville","GA","Georgia","TRUE","","67710","312.2","13097","Douglas","{""13097"": ""100""}","Douglas","13097","FALSE","FALSE","America/New_York"
-"30137","34.12238","-84.7591","Emerson","GA","Georgia","TRUE","","1914","186.6","13015","Bartow","{""13015"": ""100""}","Bartow","13015","FALSE","FALSE","America/New_York"
-"30139","34.43329","-84.70868","Fairmount","GA","Georgia","TRUE","","3940","21.2","13129","Gordon","{""13129"": ""68.63"", ""13227"": ""22.52"", ""13015"": ""8.84""}","Gordon|Pickens|Bartow","13129|13227|13015","FALSE","FALSE","America/New_York"
-"30141","33.86264","-84.77175","Hiram","GA","Georgia","TRUE","","23733","311.2","13223","Paulding","{""13223"": ""92.37"", ""13067"": ""7.63""}","Paulding|Cobb","13223|13067","FALSE","FALSE","America/New_York"
-"30143","34.45879","-84.43321","Jasper","GA","Georgia","TRUE","","23206","64.3","13227","Pickens","{""13227"": ""97.09"", ""13085"": ""2.13"", ""13057"": ""0.79""}","Pickens|Dawson|Cherokee","13227|13085|13057","FALSE","FALSE","America/New_York"
-"30144","34.03707","-84.59191","Kennesaw","GA","Georgia","TRUE","","56781","971.9","13067","Cobb","{""13067"": ""100""}","Cobb","13067","FALSE","FALSE","America/New_York"
-"30145","34.24335","-84.98311","Kingston","GA","Georgia","TRUE","","7655","37.2","13015","Bartow","{""13015"": ""76.87"", ""13115"": ""23.13""}","Bartow|Floyd","13015|13115","FALSE","FALSE","America/New_York"
-"30147","34.14109","-85.21652","Lindale","GA","Georgia","TRUE","","5331","113.2","13115","Floyd","{""13115"": ""97.78"", ""13233"": ""2.22""}","Floyd|Polk","13115|13233","FALSE","FALSE","America/New_York"
-"30148","34.45758","-84.25847","Marble Hill","GA","Georgia","TRUE","","762","27.4","13227","Pickens","{""13227"": ""64.24"", ""13085"": ""35.76""}","Pickens|Dawson","13227|13085","FALSE","FALSE","America/New_York"
-"30149","34.31033","-85.22535","Mount Berry","GA","Georgia","TRUE","","2004","88.7","13115","Floyd","{""13115"": ""100""}","Floyd","13115","FALSE","FALSE","America/New_York"
-"30152","33.99506","-84.65074","Kennesaw","GA","Georgia","TRUE","","43030","788.8","13067","Cobb","{""13067"": ""100""}","Cobb","13067","FALSE","FALSE","America/New_York"
-"30153","33.9674","-85.06206","Rockmart","GA","Georgia","TRUE","","18688","60.5","13233","Polk","{""13233"": ""71.7"", ""13223"": ""26.35"", ""13143"": ""1.96""}","Polk|Paulding|Haralson","13233|13223|13143","FALSE","FALSE","America/New_York"
-"30157","33.88586","-84.87326","Dallas","GA","Georgia","TRUE","","48978","222.4","13223","Paulding","{""13223"": ""97.48"", ""13067"": ""2.52""}","Paulding|Cobb","13223|13067","FALSE","FALSE","America/New_York"
-"30161","34.23799","-85.17184","Rome","GA","Georgia","TRUE","","34159","93.0","13115","Floyd","{""13115"": ""99.63"", ""13015"": ""0.37""}","Floyd|Bartow","13115|13015","FALSE","FALSE","America/New_York"
-"30164","33.39572","-83.83401","Rome","GA","Georgia","TRUE","","0","0.0","13217","Newton","{""13217"": ""100""}","Newton","13217","FALSE","FALSE","America/New_York"
-"30165","34.30358","-85.27155","Rome","GA","Georgia","TRUE","","41536","96.6","13115","Floyd","{""13115"": ""99.77"", ""01019"": ""0.18"", ""13055"": ""0.05""}","Floyd|Cherokee|Chattooga","13115|01019|13055","FALSE","FALSE","America/New_York"
-"30168","33.7837","-84.58873","Austell","GA","Georgia","TRUE","","25803","796.7","13067","Cobb","{""13067"": ""88.25"", ""13097"": ""11.75""}","Cobb|Douglas","13067|13097","FALSE","FALSE","America/New_York"
-"30170","33.42922","-85.1695","Roopville","GA","Georgia","TRUE","","2904","24.6","13045","Carroll","{""13045"": ""60.99"", ""13149"": ""39.01""}","Carroll|Heard","13045|13149","FALSE","FALSE","America/New_York"
-"30171","34.34305","-84.72521","Rydal","GA","Georgia","TRUE","","3282","24.0","13015","Bartow","{""13015"": ""91.01"", ""13129"": ""8.99""}","Bartow|Gordon","13015|13129","FALSE","FALSE","America/New_York"
-"30173","34.13301","-85.14263","Silver Creek","GA","Georgia","TRUE","","5564","63.7","13115","Floyd","{""13115"": ""95.48"", ""13233"": ""4.52""}","Floyd|Polk","13115|13233","FALSE","FALSE","America/New_York"
-"30175","34.54322","-84.52902","Talking Rock","GA","Georgia","TRUE","","5409","23.7","13227","Pickens","{""13227"": ""75.6"", ""13123"": ""24.4""}","Pickens|Gilmer","13227|13123","FALSE","FALSE","America/New_York"
-"30176","33.76779","-85.3028","Tallapoosa","GA","Georgia","TRUE","","6838","31.5","13143","Haralson","{""13143"": ""100""}","Haralson","13143","FALSE","FALSE","America/New_York"
-"30177","34.41134","-84.37791","Tate","GA","Georgia","TRUE","","1273","97.0","13227","Pickens","{""13227"": ""100""}","Pickens","13227","FALSE","FALSE","America/New_York"
-"30178","34.09788","-84.96543","Taylorsville","GA","Georgia","TRUE","","3005","21.5","13015","Bartow","{""13015"": ""94.29"", ""13233"": ""4.99"", ""13223"": ""0.72""}","Bartow|Polk|Paulding","13015|13233|13223","FALSE","FALSE","America/New_York"
-"30179","33.77918","-85.01565","Temple","GA","Georgia","TRUE","","18176","93.9","13045","Carroll","{""13045"": ""66.79"", ""13223"": ""23.55"", ""13143"": ""9.66""}","Carroll|Paulding|Haralson","13045|13223|13143","FALSE","FALSE","America/New_York"
-"30180","33.71734","-84.92173","Villa Rica","GA","Georgia","TRUE","","36888","190.1","13045","Carroll","{""13045"": ""72.51"", ""13097"": ""23.24"", ""13223"": ""4.25""}","Carroll|Douglas|Paulding","13045|13097|13223","FALSE","FALSE","America/New_York"
-"30182","33.65549","-85.24598","Waco","GA","Georgia","TRUE","","2501","27.1","13045","Carroll","{""13045"": ""54.28"", ""13143"": ""45.72""}","Carroll|Haralson","13045|13143","FALSE","FALSE","America/New_York"
-"30183","34.33605","-84.60031","Waleska","GA","Georgia","TRUE","","6365","40.0","13057","Cherokee","{""13057"": ""99.26"", ""13015"": ""0.64"", ""13227"": ""0.09""}","Cherokee|Bartow|Pickens","13057|13015|13227","FALSE","FALSE","America/New_York"
-"30184","34.25787","-84.72398","White","GA","Georgia","TRUE","","6504","37.2","13015","Bartow","{""13015"": ""85.83"", ""13057"": ""14.17""}","Bartow|Cherokee","13015|13057","FALSE","FALSE","America/New_York"
-"30185","33.51982","-84.91018","Whitesburg","GA","Georgia","TRUE","","4494","27.4","13045","Carroll","{""13045"": ""94.81"", ""13097"": ""5.19""}","Carroll|Douglas","13045|13097","FALSE","FALSE","America/New_York"
-"30187","33.66648","-84.852","Winston","GA","Georgia","TRUE","","7798","87.5","13097","Douglas","{""13097"": ""100""}","Douglas","13097","FALSE","FALSE","America/New_York"
-"30188","34.11881","-84.45551","Woodstock","GA","Georgia","TRUE","","64836","569.2","13057","Cherokee","{""13057"": ""97.48"", ""13067"": ""2.52""}","Cherokee|Cobb","13057|13067","FALSE","FALSE","America/New_York"
-"30189","34.1281","-84.5716","Woodstock","GA","Georgia","TRUE","","38809","770.3","13057","Cherokee","{""13057"": ""100""}","Cherokee","13057","FALSE","FALSE","America/New_York"
-"30204","33.05729","-84.12512","Barnesville","GA","Georgia","TRUE","","13151","40.7","13171","Lamar","{""13171"": ""96.4"", ""13293"": ""2.02"", ""13207"": ""1.58""}","Lamar|Upson|Monroe","13171|13293|13207","FALSE","FALSE","America/New_York"
-"30205","33.26848","-84.46663","Brooks","GA","Georgia","TRUE","","2862","30.4","13113","Fayette","{""13113"": ""72.92"", ""13255"": ""27.08""}","Fayette|Spalding","13113|13255","FALSE","FALSE","America/New_York"
-"30206","33.09433","-84.46049","Concord","GA","Georgia","TRUE","","3789","26.3","13231","Pike","{""13231"": ""100""}","Pike","13231","FALSE","FALSE","America/New_York"
-"30213","33.59148","-84.63726","Fairburn","GA","Georgia","TRUE","","33926","204.5","13121","Fulton","{""13121"": ""100""}","Fulton","13121","FALSE","FALSE","America/New_York"
-"30214","33.49171","-84.48745","Fayetteville","GA","Georgia","TRUE","","29577","216.6","13113","Fayette","{""13113"": ""100""}","Fayette","13113","FALSE","FALSE","America/New_York"
-"30215","33.38857","-84.45729","Fayetteville","GA","Georgia","TRUE","","36879","198.6","13113","Fayette","{""13113"": ""89.97"", ""13063"": ""10.03""}","Fayette|Clayton","13113|13063","FALSE","FALSE","America/New_York"
-"30216","33.23701","-83.88471","Flovilla","GA","Georgia","TRUE","","2361","30.4","13035","Butts","{""13035"": ""100""}","Butts","13035","FALSE","FALSE","America/New_York"
-"30217","33.28598","-85.1303","Franklin","GA","Georgia","TRUE","","9537","14.2","13149","Heard","{""13149"": ""98.99"", ""13285"": ""1.01""}","Heard|Troup","13149|13285","FALSE","FALSE","America/New_York"
-"30218","33.12743","-84.58358","Gay","GA","Georgia","TRUE","","1868","10.7","13199","Meriwether","{""13199"": ""100""}","Meriwether","13199","FALSE","FALSE","America/New_York"
-"30220","33.22505","-84.82432","Grantville","GA","Georgia","TRUE","","5642","39.7","13077","Coweta","{""13077"": ""79.11"", ""13199"": ""20.89""}","Coweta|Meriwether","13077|13199","FALSE","FALSE","America/New_York"
-"30222","33.04301","-84.74461","Greenville","GA","Georgia","TRUE","","4089","10.9","13199","Meriwether","{""13199"": ""100""}","Meriwether","13199","FALSE","FALSE","America/New_York"
-"30223","33.28629","-84.27968","Griffin","GA","Georgia","TRUE","","36501","130.4","13255","Spalding","{""13255"": ""100""}","Spalding","13255","FALSE","FALSE","America/New_York"
-"30224","33.20485","-84.23683","Griffin","GA","Georgia","TRUE","","26453","154.4","13255","Spalding","{""13255"": ""89.62"", ""13231"": ""7.97"", ""13171"": ""2.41""}","Spalding|Pike|Lamar","13255|13231|13171","FALSE","FALSE","America/New_York"
-"30228","33.40449","-84.30545","Hampton","GA","Georgia","TRUE","","44031","231.6","13151","Henry","{""13151"": ""51.34"", ""13063"": ""45.11"", ""13255"": ""3.55""}","Henry|Clayton|Spalding","13151|13063|13255","FALSE","FALSE","America/New_York"
-"30230","33.1642","-84.92214","Hogansville","GA","Georgia","TRUE","","9882","29.2","13285","Troup","{""13285"": ""78.97"", ""13149"": ""11.89"", ""13199"": ""7.61"", ""13077"": ""1.53""}","Troup|Heard|Meriwether|Coweta","13285|13149|13199|13077","FALSE","FALSE","America/New_York"
-"30233","33.2919","-83.96942","Jackson","GA","Georgia","TRUE","","23821","59.3","13035","Butts","{""13035"": ""84.64"", ""13207"": ""9.11"", ""13151"": ""3.69"", ""13171"": ""2.43"", ""13217"": ""0.12""}","Butts|Monroe|Henry|Lamar|Newton","13035|13207|13151|13171|13217","FALSE","FALSE","America/New_York"
-"30234","33.32406","-84.03219","Jenkinsburg","GA","Georgia","TRUE","","1774","58.9","13035","Butts","{""13035"": ""86.45"", ""13151"": ""13.55""}","Butts|Henry","13035|13151","FALSE","FALSE","America/New_York"
-"30236","33.52244","-84.32426","Jonesboro","GA","Georgia","TRUE","","51199","613.6","13063","Clayton","{""13063"": ""93.69"", ""13151"": ""6.31""}","Clayton|Henry","13063|13151","FALSE","FALSE","America/New_York"
-"30238","33.4943","-84.38168","Jonesboro","GA","Georgia","TRUE","","39084","893.4","13063","Clayton","{""13063"": ""97.89"", ""13113"": ""2.11""}","Clayton|Fayette","13063|13113","FALSE","FALSE","America/New_York"
-"30240","33.03627","-85.12367","Lagrange","GA","Georgia","TRUE","","29320","81.1","13285","Troup","{""13285"": ""100""}","Troup","13285","FALSE","FALSE","America/New_York"
-"30241","33.02222","-84.95166","Lagrange","GA","Georgia","TRUE","","25283","87.6","13285","Troup","{""13285"": ""100""}","Troup","13285","FALSE","FALSE","America/New_York"
-"30248","33.35142","-84.10775","Locust Grove","GA","Georgia","TRUE","","26317","147.8","13151","Henry","{""13151"": ""96.38"", ""13255"": ""2.9"", ""13035"": ""0.72""}","Henry|Spalding|Butts","13151|13255|13035","FALSE","FALSE","America/New_York"
-"30250","33.43662","-84.31423","Lovejoy","GA","Georgia","TRUE","","630","905.0","13063","Clayton","{""13063"": ""100""}","Clayton","13063","FALSE","FALSE","America/New_York"
-"30251","33.18817","-84.69729","Luthersville","GA","Georgia","TRUE","","2313","25.9","13199","Meriwether","{""13199"": ""100""}","Meriwether","13199","FALSE","FALSE","America/New_York"
-"30252","33.46968","-84.06239","Mcdonough","GA","Georgia","TRUE","","48203","203.9","13151","Henry","{""13151"": ""99.28"", ""13247"": ""0.72""}","Henry|Rockdale","13151|13247","FALSE","FALSE","America/New_York"
-"30253","33.44884","-84.18335","Mcdonough","GA","Georgia","TRUE","","53958","430.1","13151","Henry","{""13151"": ""100""}","Henry","13151","FALSE","FALSE","America/New_York"
-"30256","33.01415","-84.32024","Meansville","GA","Georgia","TRUE","","3007","33.8","13231","Pike","{""13231"": ""78.31"", ""13293"": ""21.69""}","Pike|Upson","13231|13293","FALSE","FALSE","America/New_York"
-"30257","33.14313","-84.18404","Milner","GA","Georgia","TRUE","","4336","37.9","13171","Lamar","{""13171"": ""90.33"", ""13231"": ""9.67""}","Lamar|Pike","13171|13231","FALSE","FALSE","America/New_York"
-"30258","32.98757","-84.46731","Molena","GA","Georgia","TRUE","","3035","20.9","13231","Pike","{""13231"": ""74.71"", ""13293"": ""25.29""}","Pike|Upson","13231|13293","FALSE","FALSE","America/New_York"
-"30259","33.26422","-84.74014","Moreland","GA","Georgia","TRUE","","3219","35.7","13077","Coweta","{""13077"": ""100""}","Coweta","13077","FALSE","FALSE","America/New_York"
-"30260","33.5849","-84.32918","Morrow","GA","Georgia","TRUE","","25368","868.9","13063","Clayton","{""13063"": ""100""}","Clayton","13063","FALSE","FALSE","America/New_York"
-"30263","33.38871","-84.85806","Newnan","GA","Georgia","TRUE","","59799","115.6","13077","Coweta","{""13077"": ""99.91"", ""13149"": ""0.09""}","Coweta|Heard","13077|13149","FALSE","FALSE","America/New_York"
-"30265","33.4179","-84.7067","Newnan","GA","Georgia","TRUE","","35096","318.3","13077","Coweta","{""13077"": ""100""}","Coweta","13077","FALSE","FALSE","America/New_York"
-"30268","33.54264","-84.72499","Palmetto","GA","Georgia","TRUE","","10298","60.8","13121","Fulton","{""13121"": ""75.16"", ""13077"": ""24.84""}","Fulton|Coweta","13121|13077","FALSE","FALSE","America/New_York"
-"30269","33.39449","-84.57082","Peachtree City","GA","Georgia","TRUE","","36489","561.7","13113","Fayette","{""13113"": ""100""}","Fayette","13113","FALSE","FALSE","America/New_York"
-"30273","33.58355","-84.27206","Rex","GA","Georgia","TRUE","","15015","886.7","13063","Clayton","{""13063"": ""94.14"", ""13151"": ""5.86""}","Clayton|Henry","13063|13151","FALSE","FALSE","America/New_York"
-"30274","33.55372","-84.40063","Riverdale","GA","Georgia","TRUE","","35861","1310.2","13063","Clayton","{""13063"": ""100""}","Clayton","13063","FALSE","FALSE","America/New_York"
-"30275","33.43688","-84.87389","Sargent","GA","Georgia","TRUE","","70","252.1","13077","Coweta","{""13077"": ""100""}","Coweta","13077","FALSE","FALSE","America/New_York"
-"30276","33.26735","-84.58164","Senoia","GA","Georgia","TRUE","","16028","63.0","13077","Coweta","{""13077"": ""89.85"", ""13113"": ""7.54"", ""13199"": ""2.61""}","Coweta|Fayette|Meriwether","13077|13113|13199","FALSE","FALSE","America/New_York"
-"30277","33.38138","-84.65052","Sharpsburg","GA","Georgia","TRUE","","23058","200.2","13077","Coweta","{""13077"": ""100""}","Coweta","13077","FALSE","FALSE","America/New_York"
-"30281","33.56349","-84.19491","Stockbridge","GA","Georgia","TRUE","","68456","376.5","13151","Henry","{""13151"": ""86.55"", ""13063"": ""9.45"", ""13247"": ""4""}","Henry|Clayton|Rockdale","13151|13063|13247","FALSE","FALSE","America/New_York"
-"30284","33.34227","-84.28945","Sunny Side","GA","Georgia","TRUE","","103","426.8","13255","Spalding","{""13255"": ""100""}","Spalding","13255","FALSE","FALSE","America/New_York"
-"30285","32.98852","-84.24909","The Rock","GA","Georgia","TRUE","","730","16.6","13293","Upson","{""13293"": ""67.19"", ""13171"": ""16.41"", ""13231"": ""16.41""}","Upson|Lamar|Pike","13293|13171|13231","FALSE","FALSE","America/New_York"
-"30286","32.87908","-84.33081","Thomaston","GA","Georgia","TRUE","","22143","44.0","13293","Upson","{""13293"": ""100""}","Upson","13293","FALSE","FALSE","America/New_York"
-"30288","33.65546","-84.32495","Conley","GA","Georgia","TRUE","","8749","432.2","13063","Clayton","{""13063"": ""53.95"", ""13089"": ""46.05""}","Clayton|DeKalb","13063|13089","FALSE","FALSE","America/New_York"
-"30289","33.3253","-84.63696","Turin","GA","Georgia","TRUE","","52","92.9","13077","Coweta","{""13077"": ""100""}","Coweta","13077","FALSE","FALSE","America/New_York"
-"30290","33.47743","-84.58795","Tyrone","GA","Georgia","TRUE","","8798","190.2","13113","Fayette","{""13113"": ""100""}","Fayette","13113","FALSE","FALSE","America/New_York"
-"30291","33.57454","-84.54187","Union City","GA","Georgia","TRUE","","21639","684.8","13121","Fulton","{""13121"": ""100""}","Fulton","13121","FALSE","FALSE","America/New_York"
-"30292","33.17119","-84.39456","Williamson","GA","Georgia","TRUE","","5650","37.5","13231","Pike","{""13231"": ""69.83"", ""13255"": ""30.17""}","Pike|Spalding","13231|13255","FALSE","FALSE","America/New_York"
-"30293","32.97425","-84.60175","Woodbury","GA","Georgia","TRUE","","2609","12.5","13199","Meriwether","{""13199"": ""100""}","Meriwether","13199","FALSE","FALSE","America/New_York"
-"30294","33.63633","-84.26377","Ellenwood","GA","Georgia","TRUE","","42484","507.0","13089","DeKalb","{""13089"": ""43.32"", ""13063"": ""33.74"", ""13151"": ""22.69"", ""13247"": ""0.25""}","DeKalb|Clayton|Henry|Rockdale","13089|13063|13151|13247","FALSE","FALSE","America/New_York"
-"30295","33.09456","-84.31264","Zebulon","GA","Georgia","TRUE","","4214","37.3","13231","Pike","{""13231"": ""97.72"", ""13171"": ""2.28""}","Pike|Lamar","13231|13171","FALSE","FALSE","America/New_York"
-"30296","33.56368","-84.44297","Riverdale","GA","Georgia","TRUE","","28169","1038.7","13063","Clayton","{""13063"": ""83.34"", ""13121"": ""16.66""}","Clayton|Fulton","13063|13121","FALSE","FALSE","America/New_York"
-"30297","33.61565","-84.37185","Forest Park","GA","Georgia","TRUE","","28966","1018.9","13063","Clayton","{""13063"": ""100""}","Clayton","13063","FALSE","FALSE","America/New_York"
-"30303","33.75332","-84.38986","Atlanta","GA","Georgia","TRUE","","6628","2452.3","13121","Fulton","{""13121"": ""100""}","Fulton","13121","FALSE","FALSE","America/New_York"
-"30305","33.83564","-84.38892","Atlanta","GA","Georgia","TRUE","","24551","1472.5","13121","Fulton","{""13121"": ""100""}","Fulton","13121","FALSE","FALSE","America/New_York"
-"30306","33.7887","-84.35026","Atlanta","GA","Georgia","TRUE","","23973","2117.2","13121","Fulton","{""13121"": ""63.65"", ""13089"": ""36.35""}","Fulton|DeKalb","13121|13089","FALSE","FALSE","America/New_York"
-"30307","33.7707","-84.33398","Atlanta","GA","Georgia","TRUE","","20036","1694.7","13089","DeKalb","{""13089"": ""72.32"", ""13121"": ""27.68""}","DeKalb|Fulton","13089|13121","FALSE","FALSE","America/New_York"
-"30308","33.77121","-84.3781","Atlanta","GA","Georgia","TRUE","","18839","4561.5","13121","Fulton","{""13121"": ""100""}","Fulton","13121","FALSE","FALSE","America/New_York"
-"30309","33.79758","-84.38663","Atlanta","GA","Georgia","TRUE","","26526","2996.4","13121","Fulton","{""13121"": ""100""}","Fulton","13121","FALSE","FALSE","America/New_York"
-"30310","33.7266","-84.42689","Atlanta","GA","Georgia","TRUE","","28664","1254.8","13121","Fulton","{""13121"": ""100""}","Fulton","13121","FALSE","FALSE","America/New_York"
-"30311","33.72336","-84.47479","Atlanta","GA","Georgia","TRUE","","36389","1130.1","13121","Fulton","{""13121"": ""100""}","Fulton","13121","FALSE","FALSE","America/New_York"
-"30312","33.74482","-84.3751","Atlanta","GA","Georgia","TRUE","","24782","2853.0","13121","Fulton","{""13121"": ""100""}","Fulton","13121","FALSE","FALSE","America/New_York"
-"30313","33.76448","-84.39728","Atlanta","GA","Georgia","TRUE","","11415","3971.9","13121","Fulton","{""13121"": ""100""}","Fulton","13121","FALSE","FALSE","America/New_York"
-"30314","33.7575","-84.43192","Atlanta","GA","Georgia","TRUE","","24974","2082.3","13121","Fulton","{""13121"": ""100""}","Fulton","13121","FALSE","FALSE","America/New_York"
-"30315","33.70295","-84.38246","Atlanta","GA","Georgia","TRUE","","35143","1199.0","13121","Fulton","{""13121"": ""99.97"", ""13089"": ""0.03""}","Fulton|DeKalb","13121|13089","FALSE","FALSE","America/New_York"
-"30316","33.71362","-84.33252","Atlanta","GA","Georgia","TRUE","","33670","1038.5","13089","DeKalb","{""13089"": ""76.16"", ""13121"": ""23.84""}","DeKalb|Fulton","13089|13121","FALSE","FALSE","America/New_York"
-"30317","33.74917","-84.31532","Atlanta","GA","Georgia","TRUE","","13820","1521.8","13089","DeKalb","{""13089"": ""99.76"", ""13121"": ""0.24""}","DeKalb|Fulton","13089|13121","FALSE","FALSE","America/New_York"
-"30318","33.79236","-84.4479","Atlanta","GA","Georgia","TRUE","","56109","1062.2","13121","Fulton","{""13121"": ""100""}","Fulton","13121","FALSE","FALSE","America/New_York"
-"30319","33.87895","-84.33619","Atlanta","GA","Georgia","TRUE","","43011","1599.7","13089","DeKalb","{""13089"": ""84.21"", ""13121"": ""15.79""}","DeKalb|Fulton","13089|13121","FALSE","FALSE","America/New_York"
-"30322","33.79484","-84.32589","Atlanta","GA","Georgia","TRUE","","2780","2485.6","13089","DeKalb","{""13089"": ""100""}","DeKalb","13089","FALSE","FALSE","America/New_York"
-"30324","33.81958","-84.35707","Atlanta","GA","Georgia","TRUE","","27806","2040.5","13121","Fulton","{""13121"": ""82.02"", ""13089"": ""17.98""}","Fulton|DeKalb","13121|13089","FALSE","FALSE","America/New_York"
-"30326","33.84941","-84.36392","Atlanta","GA","Georgia","TRUE","","6529","3644.0","13121","Fulton","{""13121"": ""100""}","Fulton","13121","FALSE","FALSE","America/New_York"
-"30327","33.86622","-84.42317","Atlanta","GA","Georgia","TRUE","","22893","526.4","13121","Fulton","{""13121"": ""100""}","Fulton","13121","FALSE","FALSE","America/New_York"
-"30328","33.93215","-84.38577","Atlanta","GA","Georgia","TRUE","","38648","1154.6","13121","Fulton","{""13121"": ""100""}","Fulton","13121","FALSE","FALSE","America/New_York"
-"30329","33.827","-84.32295","Atlanta","GA","Georgia","TRUE","","28383","2026.3","13089","DeKalb","{""13089"": ""100""}","DeKalb","13089","FALSE","FALSE","America/New_York"
-"30331","33.70635","-84.54392","Atlanta","GA","Georgia","TRUE","","66658","695.5","13121","Fulton","{""13121"": ""100""}","Fulton","13121","FALSE","FALSE","America/New_York"
-"30332","33.77823","-84.40437","Atlanta","GA","Georgia","TRUE","","3034","13914.2","13121","Fulton","{""13121"": ""100""}","Fulton","13121","FALSE","FALSE","America/New_York"
-"30334","33.74889","-84.38719","Atlanta","GA","Georgia","TRUE","","0","0.0","13121","Fulton","{""13121"": ""100""}","Fulton","13121","FALSE","FALSE","America/New_York"
-"30336","33.73788","-84.56646","Atlanta","GA","Georgia","TRUE","","274","10.1","13121","Fulton","{""13121"": ""100""}","Fulton","13121","FALSE","FALSE","America/New_York"
-"30337","33.64005","-84.45006","Atlanta","GA","Georgia","TRUE","","13962","447.1","13121","Fulton","{""13121"": ""100"", ""13063"": ""0""}","Fulton|Clayton","13121|13063","FALSE","FALSE","America/New_York"
-"30338","33.94374","-84.31748","Atlanta","GA","Georgia","TRUE","","35903","1411.0","13089","DeKalb","{""13089"": ""99.25"", ""13121"": ""0.75""}","DeKalb|Fulton","13089|13121","FALSE","FALSE","America/New_York"
-"30339","33.87612","-84.46014","Atlanta","GA","Georgia","TRUE","","23960","1128.2","13067","Cobb","{""13067"": ""98.61"", ""13121"": ""1.39""}","Cobb|Fulton","13067|13121","FALSE","FALSE","America/New_York"
-"30340","33.89783","-84.25088","Atlanta","GA","Georgia","TRUE","","27796","1257.3","13089","DeKalb","{""13089"": ""84.92"", ""13135"": ""15.08""}","DeKalb|Gwinnett","13089|13135","FALSE","FALSE","America/New_York"
-"30341","33.88787","-84.29043","Atlanta","GA","Georgia","TRUE","","32601","1240.2","13089","DeKalb","{""13089"": ""100""}","DeKalb","13089","FALSE","FALSE","America/New_York"
-"30342","33.88204","-84.37464","Atlanta","GA","Georgia","TRUE","","30873","1333.0","13121","Fulton","{""13121"": ""100""}","Fulton","13121","FALSE","FALSE","America/New_York"
-"30344","33.67512","-84.46026","Atlanta","GA","Georgia","TRUE","","32690","1042.9","13121","Fulton","{""13121"": ""100""}","Fulton","13121","FALSE","FALSE","America/New_York"
-"30345","33.85098","-84.28323","Atlanta","GA","Georgia","TRUE","","25797","1399.3","13089","DeKalb","{""13089"": ""100""}","DeKalb","13089","FALSE","FALSE","America/New_York"
-"30346","33.92428","-84.33886","Atlanta","GA","Georgia","TRUE","","4914","1885.2","13089","DeKalb","{""13089"": ""100""}","DeKalb","13089","FALSE","FALSE","America/New_York"
-"30349","33.62356","-84.52591","Atlanta","GA","Georgia","TRUE","","74590","626.6","13121","Fulton","{""13121"": ""73"", ""13063"": ""27""}","Fulton|Clayton","13121|13063","FALSE","FALSE","America/New_York"
-"30350","33.97913","-84.33348","Atlanta","GA","Georgia","TRUE","","39075","1205.1","13121","Fulton","{""13121"": ""99.71"", ""13089"": ""0.29""}","Fulton|DeKalb","13121|13089","FALSE","FALSE","America/New_York"
-"30354","33.66066","-84.38707","Atlanta","GA","Georgia","TRUE","","15680","563.1","13121","Fulton","{""13121"": ""99.91"", ""13063"": ""0.09""}","Fulton|Clayton","13121|13063","FALSE","FALSE","America/New_York"
-"30360","33.93395","-84.27205","Atlanta","GA","Georgia","TRUE","","15856","1049.2","13089","DeKalb","{""13089"": ""83.74"", ""13135"": ""16.26""}","DeKalb|Gwinnett","13089|13135","FALSE","FALSE","America/New_York"
-"30363","33.79099","-84.39918","Atlanta","GA","Georgia","TRUE","","3773","4569.9","13121","Fulton","{""13121"": ""100""}","Fulton","13121","FALSE","FALSE","America/New_York"
-"30401","32.6005","-82.35204","Swainsboro","GA","Georgia","TRUE","","13740","21.0","13107","Emanuel","{""13107"": ""100""}","Emanuel","13107","FALSE","FALSE","America/New_York"
-"30410","32.18824","-82.51751","Ailey","GA","Georgia","TRUE","","1813","10.5","13209","Montgomery","{""13209"": ""100""}","Montgomery","13209","FALSE","FALSE","America/New_York"
-"30411","32.12818","-82.79817","Alamo","GA","Georgia","TRUE","","5333","13.6","13309","Wheeler","{""13309"": ""94.78"", ""13175"": ""5.22"", ""13271"": ""0""}","Wheeler|Laurens|Telfair","13309|13175|13271","FALSE","FALSE","America/New_York"
-"30412","32.07823","-82.49158","Alston","GA","Georgia","TRUE","","65","16.4","13209","Montgomery","{""13209"": ""100""}","Montgomery","13209","FALSE","FALSE","America/New_York"
-"30413","32.88984","-82.51378","Bartow","GA","Georgia","TRUE","","1818","5.7","13163","Jefferson","{""13163"": ""75.3"", ""13303"": ""18.73"", ""13167"": ""5.97""}","Jefferson|Washington|Johnson","13163|13303|13167","FALSE","FALSE","America/New_York"
-"30415","32.32629","-81.60191","Brooklet","GA","Georgia","TRUE","","6765","16.2","13031","Bulloch","{""13031"": ""100""}","Bulloch","13031","FALSE","FALSE","America/New_York"
-"30417","32.17323","-81.9202","Claxton","GA","Georgia","TRUE","","10768","24.1","13109","Evans","{""13109"": ""96.12"", ""13267"": ""3.76"", ""13031"": ""0.12""}","Evans|Tattnall|Bulloch","13109|13267|13031","FALSE","FALSE","America/New_York"
-"30420","32.28838","-82.15678","Cobbtown","GA","Georgia","TRUE","","988","10.1","13267","Tattnall","{""13267"": ""87.33"", ""13043"": ""12.67""}","Tattnall|Candler","13267|13043","FALSE","FALSE","America/New_York"
-"30421","32.17931","-82.10755","Collins","GA","Georgia","TRUE","","2723","10.4","13267","Tattnall","{""13267"": ""100""}","Tattnall","13267","FALSE","FALSE","America/New_York"
-"30423","32.1492","-81.83222","Daisy","GA","Georgia","TRUE","","222","114.2","13109","Evans","{""13109"": ""100""}","Evans","13109","FALSE","FALSE","America/New_York"
-"30425","32.64652","-82.02119","Garfield","GA","Georgia","TRUE","","1458","7.9","13107","Emanuel","{""13107"": ""51.59"", ""13165"": ""30.88"", ""13031"": ""17.53""}","Emanuel|Jenkins|Bulloch","13107|13165|13031","FALSE","FALSE","America/New_York"
-"30426","33.03567","-81.64694","Girard","GA","Georgia","TRUE","","773","2.5","13033","Burke","{""13033"": ""91.91"", ""13251"": ""8.09""}","Burke|Screven","13033|13251","FALSE","FALSE","America/New_York"
-"30427","31.91928","-81.96475","Glennville","GA","Georgia","TRUE","","12571","20.3","13267","Tattnall","{""13267"": ""82.38"", ""13183"": ""17.5"", ""13109"": ""0.12""}","Tattnall|Long|Evans","13267|13183|13109","FALSE","FALSE","America/New_York"
-"30428","32.21932","-82.71128","Glenwood","GA","Georgia","TRUE","","2815","7.3","13309","Wheeler","{""13309"": ""90.13"", ""13175"": ""9.87""}","Wheeler|Laurens","13309|13175","FALSE","FALSE","America/New_York"
-"30429","32.16275","-81.93754","Hagan","GA","Georgia","TRUE","","168","298.1","13109","Evans","{""13109"": ""100""}","Evans","13109","FALSE","FALSE","America/New_York"
-"30434","33.02522","-82.37729","Louisville","GA","Georgia","TRUE","","5331","10.4","13163","Jefferson","{""13163"": ""94.59"", ""13033"": ""5.41""}","Jefferson|Burke","13163|13033","FALSE","FALSE","America/New_York"
-"30436","32.1519","-82.28907","Lyons","GA","Georgia","TRUE","","11879","16.2","13279","Toombs","{""13279"": ""92.54"", ""13107"": ""6.86"", ""13267"": ""0.6""}","Toombs|Emanuel|Tattnall","13279|13107|13267","FALSE","FALSE","America/New_York"
-"30438","32.16402","-82.01895","Manassas","GA","Georgia","TRUE","","24","29.2","13267","Tattnall","{""13267"": ""100""}","Tattnall","13267","FALSE","FALSE","America/New_York"
-"30439","32.40569","-82.07648","Metter","GA","Georgia","TRUE","","10819","17.3","13043","Candler","{""13043"": ""99.11"", ""13107"": ""0.89""}","Candler|Emanuel","13043|13107","FALSE","FALSE","America/New_York"
-"30441","32.80991","-82.23574","Midville","GA","Georgia","TRUE","","1689","3.6","13107","Emanuel","{""13107"": ""63.32"", ""13033"": ""35.6"", ""13165"": ""1.08""}","Emanuel|Burke|Jenkins","13107|13033|13165","FALSE","FALSE","America/New_York"
-"30442","32.80179","-81.98904","Millen","GA","Georgia","TRUE","","7887","9.8","13165","Jenkins","{""13165"": ""96.47"", ""13033"": ""3.53""}","Jenkins|Burke","13165|13033","FALSE","FALSE","America/New_York"
-"30445","32.16293","-82.58574","Mount Vernon","GA","Georgia","TRUE","","3851","18.5","13209","Montgomery","{""13209"": ""100""}","Montgomery","13209","FALSE","FALSE","America/New_York"
-"30446","32.56752","-81.46858","Newington","GA","Georgia","TRUE","","1055","6.2","13251","Screven","{""13251"": ""87.55"", ""13103"": ""12.45""}","Screven|Effingham","13251|13103","FALSE","FALSE","America/New_York"
-"30448","32.4876","-82.36424","Nunez","GA","Georgia","TRUE","","80","10.7","13107","Emanuel","{""13107"": ""100""}","Emanuel","13107","FALSE","FALSE","America/New_York"
-"30449","32.52987","-81.55148","Oliver","GA","Georgia","TRUE","","140","7.1","13251","Screven","{""13251"": ""100""}","Screven","13251","FALSE","FALSE","America/New_York"
-"30450","32.56015","-81.93384","Portal","GA","Georgia","TRUE","","2170","16.9","13031","Bulloch","{""13031"": ""100""}","Bulloch","13031","FALSE","FALSE","America/New_York"
-"30451","32.39069","-81.95219","Pulaski","GA","Georgia","TRUE","","42","213.7","13043","Candler","{""13043"": ""100""}","Candler","13043","FALSE","FALSE","America/New_York"
-"30452","32.32234","-81.89065","Register","GA","Georgia","TRUE","","1576","11.2","13031","Bulloch","{""13031"": ""100""}","Bulloch","13031","FALSE","FALSE","America/New_York"
-"30453","32.01786","-82.12389","Reidsville","GA","Georgia","TRUE","","10936","34.3","13267","Tattnall","{""13267"": ""100""}","Tattnall","13267","FALSE","FALSE","America/New_York"
-"30454","32.43607","-82.73372","Rockledge","GA","Georgia","TRUE","","866","9.3","13175","Laurens","{""13175"": ""100""}","Laurens","13175","FALSE","FALSE","America/New_York"
-"30455","32.68864","-81.80349","Rocky Ford","GA","Georgia","TRUE","","544","4.8","13251","Screven","{""13251"": ""100""}","Screven","13251","FALSE","FALSE","America/New_York"
-"30456","32.97821","-81.80604","Sardis","GA","Georgia","TRUE","","2099","10.0","13033","Burke","{""13033"": ""100""}","Burke","13033","FALSE","FALSE","America/New_York"
-"30457","32.40041","-82.5676","Soperton","GA","Georgia","TRUE","","5816","12.7","13283","Treutlen","{""13283"": ""98.94"", ""13209"": ""0.48"", ""13107"": ""0.36"", ""13175"": ""0.22""}","Treutlen|Montgomery|Emanuel|Laurens","13283|13209|13107|13175","FALSE","FALSE","America/New_York"
-"30458","32.39865","-81.82558","Statesboro","GA","Georgia","TRUE","","44329","116.4","13031","Bulloch","{""13031"": ""100""}","Bulloch","13031","FALSE","FALSE","America/New_York"
-"30460","32.41897","-81.78152","Statesboro","GA","Georgia","TRUE","","2119","51156.4","13031","Bulloch","{""13031"": ""100""}","Bulloch","13031","FALSE","FALSE","America/New_York"
-"30461","32.50903","-81.72051","Statesboro","GA","Georgia","TRUE","","13882","33.1","13031","Bulloch","{""13031"": ""100""}","Bulloch","13031","FALSE","FALSE","America/New_York"
-"30464","32.43499","-82.22188","Stillmore","GA","Georgia","TRUE","","122","58.0","13107","Emanuel","{""13107"": ""100""}","Emanuel","13107","FALSE","FALSE","America/New_York"
-"30467","32.75619","-81.61253","Sylvania","GA","Georgia","TRUE","","12184","9.1","13251","Screven","{""13251"": ""100""}","Screven","13251","FALSE","FALSE","America/New_York"
-"30470","32.33865","-82.52286","Tarrytown","GA","Georgia","TRUE","","337","4.5","13209","Montgomery","{""13209"": ""55.51"", ""13283"": ""44.49""}","Montgomery|Treutlen","13209|13283","FALSE","FALSE","America/New_York"
-"30471","32.54914","-82.17839","Twin City","GA","Georgia","TRUE","","4744","12.6","13107","Emanuel","{""13107"": ""95.43"", ""13031"": ""4.57""}","Emanuel|Bulloch","13107|13031","FALSE","FALSE","America/New_York"
-"30473","32.01598","-82.46821","Uvalda","GA","Georgia","TRUE","","2442","11.3","13209","Montgomery","{""13209"": ""54.85"", ""13279"": ""45.15""}","Montgomery|Toombs","13209|13279","FALSE","FALSE","America/New_York"
-"30474","32.2384","-82.41731","Vidalia","GA","Georgia","TRUE","","16913","46.8","13279","Toombs","{""13279"": ""88.95"", ""13209"": ""9.9"", ""13107"": ""0.8"", ""13283"": ""0.36""}","Toombs|Montgomery|Emanuel|Treutlen","13279|13209|13107|13283","FALSE","FALSE","America/New_York"
-"30475","32.22462","-82.3685","Vidalia","GA","Georgia","TRUE","","0","0.0","13279","Toombs","{""13279"": ""100""}","Toombs","13279","FALSE","FALSE","America/New_York"
-"30477","32.8613","-82.40011","Wadley","GA","Georgia","TRUE","","2805","15.3","13163","Jefferson","{""13163"": ""100""}","Jefferson","13163","FALSE","FALSE","America/New_York"
-"30501","34.31855","-83.81615","Gainesville","GA","Georgia","TRUE","","31127","548.4","13139","Hall","{""13139"": ""100""}","Hall","13139","FALSE","FALSE","America/New_York"
-"30504","34.2681","-83.89091","Gainesville","GA","Georgia","TRUE","","27202","633.3","13139","Hall","{""13139"": ""100""}","Hall","13139","FALSE","FALSE","America/New_York"
-"30506","34.35008","-83.89363","Gainesville","GA","Georgia","TRUE","","43765","168.3","13139","Hall","{""13139"": ""73.87"", ""13117"": ""26.13""}","Hall|Forsyth","13139|13117","FALSE","FALSE","America/New_York"
-"30507","34.26055","-83.76698","Gainesville","GA","Georgia","TRUE","","30499","165.7","13139","Hall","{""13139"": ""100""}","Hall","13139","FALSE","FALSE","America/New_York"
-"30510","34.44178","-83.58277","Alto","GA","Georgia","TRUE","","8488","73.0","13137","Habersham","{""13137"": ""66.4"", ""13011"": ""27.44"", ""13139"": ""6.16""}","Habersham|Banks|Hall","13137|13011|13139","FALSE","FALSE","America/New_York"
-"30511","34.45741","-83.476","Baldwin","GA","Georgia","TRUE","","3874","50.1","13011","Banks","{""13011"": ""70.24"", ""13137"": ""28.5"", ""13257"": ""1.26""}","Banks|Habersham|Stephens","13011|13137|13257","FALSE","FALSE","America/New_York"
-"30512","34.85602","-83.97095","Blairsville","GA","Georgia","TRUE","","21541","37.4","13291","Union","{""13291"": ""99.08"", ""13111"": ""0.92""}","Union|Fannin","13291|13111","FALSE","FALSE","America/New_York"
-"30513","34.82426","-84.31999","Blue Ridge","GA","Georgia","TRUE","","12108","31.5","13111","Fannin","{""13111"": ""95.83"", ""13123"": ""4.17""}","Fannin|Gilmer","13111|13123","FALSE","FALSE","America/New_York"
-"30516","34.37562","-83.03707","Bowersville","GA","Georgia","TRUE","","2221","40.8","13147","Hart","{""13147"": ""100""}","Hart","13147","FALSE","FALSE","America/New_York"
-"30517","34.13062","-83.79744","Braselton","GA","Georgia","TRUE","","15909","219.8","13157","Jackson","{""13157"": ""42.06"", ""13139"": ""24.47"", ""13135"": ""24.4"", ""13013"": ""9.07""}","Jackson|Hall|Gwinnett|Barrow","13157|13139|13135|13013","FALSE","FALSE","America/New_York"
-"30518","34.13191","-84.02636","Buford","GA","Georgia","TRUE","","53780","521.9","13135","Gwinnett","{""13135"": ""91.62"", ""13139"": ""8.38""}","Gwinnett|Hall","13135|13139","FALSE","FALSE","America/New_York"
-"30519","34.08798","-83.94118","Buford","GA","Georgia","TRUE","","47685","536.7","13135","Gwinnett","{""13135"": ""92.52"", ""13139"": ""7.48""}","Gwinnett|Hall","13135|13139","FALSE","FALSE","America/New_York"
-"30520","34.337","-83.08673","Canon","GA","Georgia","TRUE","","5774","39.0","13119","Franklin","{""13119"": ""54.43"", ""13147"": ""45.57""}","Franklin|Hart","13119|13147","FALSE","FALSE","America/New_York"
-"30521","34.36236","-83.29363","Carnesville","GA","Georgia","TRUE","","5018","20.5","13119","Franklin","{""13119"": ""95.25"", ""13011"": ""4.75""}","Franklin|Banks","13119|13011","FALSE","FALSE","America/New_York"
-"30522","34.78333","-84.33475","Cherry Log","GA","Georgia","TRUE","","987","8.4","13123","Gilmer","{""13123"": ""63.92"", ""13111"": ""36.08""}","Gilmer|Fannin","13123|13111","FALSE","FALSE","America/New_York"
-"30523","34.70783","-83.53648","Clarkesville","GA","Georgia","TRUE","","12465","27.9","13137","Habersham","{""13137"": ""98.19"", ""13241"": ""1.81""}","Habersham|Rabun","13137|13241","FALSE","FALSE","America/New_York"
-"30525","34.9087","-83.37164","Clayton","GA","Georgia","TRUE","","7730","14.5","13241","Rabun","{""13241"": ""100""}","Rabun","13241","FALSE","FALSE","America/New_York"
-"30527","34.47947","-83.78624","Clermont","GA","Georgia","TRUE","","4321","65.8","13139","Hall","{""13139"": ""100""}","Hall","13139","FALSE","FALSE","America/New_York"
-"30528","34.61549","-83.79492","Cleveland","GA","Georgia","TRUE","","25280","54.7","13311","White","{""13311"": ""98.88"", ""13187"": ""1.12""}","White|Lumpkin","13311|13187","FALSE","FALSE","America/New_York"
-"30529","34.21823","-83.48023","Commerce","GA","Georgia","TRUE","","11358","85.1","13157","Jackson","{""13157"": ""89.01"", ""13011"": ""10.99""}","Jackson|Banks","13157|13011","FALSE","FALSE","America/New_York"
-"30530","34.22573","-83.38434","Commerce","GA","Georgia","TRUE","","6887","34.0","13011","Banks","{""13011"": ""46.13"", ""13157"": ""24.19"", ""13195"": ""21.7"", ""13119"": ""7.98""}","Banks|Jackson|Madison|Franklin","13011|13157|13195|13119","FALSE","FALSE","America/New_York"
-"30531","34.51014","-83.59159","Cornelia","GA","Georgia","TRUE","","10924","109.9","13137","Habersham","{""13137"": ""98.93"", ""13139"": ""1.07""}","Habersham|Hall","13137|13139","FALSE","FALSE","America/New_York"
-"30533","34.5641","-84.01541","Dahlonega","GA","Georgia","TRUE","","27113","47.8","13187","Lumpkin","{""13187"": ""98.09"", ""13139"": ""1.49"", ""13311"": ""0.36"", ""13085"": ""0.06""}","Lumpkin|Hall|White|Dawson","13187|13139|13311|13085","FALSE","FALSE","America/New_York"
-"30534","34.43887","-84.15074","Dawsonville","GA","Georgia","TRUE","","29530","49.8","13085","Dawson","{""13085"": ""81.28"", ""13187"": ""12.41"", ""13117"": ""6.04"", ""13057"": ""0.24"", ""13227"": ""0.03""}","Dawson|Lumpkin|Forsyth|Cherokee|Pickens","13085|13187|13117|13057|13227","FALSE","FALSE","America/New_York"
-"30535","34.58065","-83.57703","Demorest","GA","Georgia","TRUE","","7984","106.4","13137","Habersham","{""13137"": ""100""}","Habersham","13137","FALSE","FALSE","America/New_York"
-"30536","34.65505","-84.35535","Ellijay","GA","Georgia","TRUE","","8864","22.2","13123","Gilmer","{""13123"": ""99.83"", ""13085"": ""0.17""}","Gilmer|Dawson","13123|13085","FALSE","FALSE","America/New_York"
-"30537","34.97779","-83.32001","Dillard","GA","Georgia","TRUE","","1552","29.6","13241","Rabun","{""13241"": ""100""}","Rabun","13241","FALSE","FALSE","America/New_York"
-"30538","34.50406","-83.26611","Eastanollee","GA","Georgia","TRUE","","3404","51.6","13257","Stephens","{""13257"": ""96.78"", ""13119"": ""3.22""}","Stephens|Franklin","13257|13119","FALSE","FALSE","America/New_York"
-"30540","34.72432","-84.54404","Ellijay","GA","Georgia","TRUE","","19634","38.6","13123","Gilmer","{""13123"": ""100""}","Gilmer","13123","FALSE","FALSE","America/New_York"
-"30541","34.91288","-84.53909","Epworth","GA","Georgia","TRUE","","1498","8.2","13111","Fannin","{""13111"": ""100""}","Fannin","13111","FALSE","FALSE","America/New_York"
-"30542","34.17775","-83.90863","Flowery Branch","GA","Georgia","TRUE","","37185","339.7","13139","Hall","{""13139"": ""100""}","Hall","13139","FALSE","FALSE","America/New_York"
-"30543","34.2953","-83.65043","Gillsville","GA","Georgia","TRUE","","4570","46.7","13139","Hall","{""13139"": ""72.79"", ""13011"": ""16.49"", ""13157"": ""10.72""}","Hall|Banks|Jackson","13139|13011|13157","FALSE","FALSE","America/New_York"
-"30545","34.74158","-83.76411","Helen","GA","Georgia","TRUE","","929","9.0","13311","White","{""13311"": ""100""}","White","13311","FALSE","FALSE","America/New_York"
-"30546","34.9088","-83.70729","Hiawassee","GA","Georgia","TRUE","","7199","20.6","13281","Towns","{""13281"": ""100""}","Towns","13281","FALSE","FALSE","America/New_York"
-"30547","34.36056","-83.46228","Homer","GA","Georgia","TRUE","","3057","22.5","13011","Banks","{""13011"": ""100""}","Banks","13011","FALSE","FALSE","America/New_York"
-"30548","34.09051","-83.76653","Hoschton","GA","Georgia","TRUE","","19796","197.8","13157","Jackson","{""13157"": ""40.79"", ""13135"": ""22.32"", ""13013"": ""19.3"", ""13139"": ""17.59""}","Jackson|Gwinnett|Barrow|Hall","13157|13135|13013|13139","FALSE","FALSE","America/New_York"
-"30549","34.10679","-83.57735","Jefferson","GA","Georgia","TRUE","","25530","90.1","13157","Jackson","{""13157"": ""100""}","Jackson","13157","FALSE","FALSE","America/New_York"
-"30552","34.77102","-83.445","Lakemont","GA","Georgia","TRUE","","1741","12.3","13241","Rabun","{""13241"": ""100""}","Rabun","13241","FALSE","FALSE","America/New_York"
-"30553","34.4433","-83.08604","Lavonia","GA","Georgia","TRUE","","8009","52.1","13119","Franklin","{""13119"": ""74.03"", ""13147"": ""25.97""}","Franklin|Hart","13119|13147","FALSE","FALSE","America/New_York"
-"30554","34.3994","-83.65901","Lula","GA","Georgia","TRUE","","8126","43.0","13139","Hall","{""13139"": ""70.15"", ""13011"": ""29.85""}","Hall|Banks","13139|13011","FALSE","FALSE","America/New_York"
-"30555","34.97393","-84.42919","McCaysville","GA","Georgia","TRUE","","2400","70.2","13111","Fannin","{""13111"": ""100""}","Fannin","13111","FALSE","FALSE","America/New_York"
-"30557","34.48072","-83.18391","Martin","GA","Georgia","TRUE","","5076","35.2","13257","Stephens","{""13257"": ""51.94"", ""13119"": ""48.06""}","Stephens|Franklin","13257|13119","FALSE","FALSE","America/New_York"
-"30558","34.27126","-83.56447","Maysville","GA","Georgia","TRUE","","5322","34.8","13157","Jackson","{""13157"": ""53.57"", ""13011"": ""46.43""}","Jackson|Banks","13157|13011","FALSE","FALSE","America/New_York"
-"30559","34.95247","-84.26676","Mineral Bluff","GA","Georgia","TRUE","","4740","36.9","13111","Fannin","{""13111"": ""100""}","Fannin","13111","FALSE","FALSE","America/New_York"
-"30560","34.87976","-84.19489","Morganton","GA","Georgia","TRUE","","4772","25.3","13111","Fannin","{""13111"": ""86.58"", ""13291"": ""13.42""}","Fannin|Union","13111|13291","FALSE","FALSE","America/New_York"
-"30562","34.92155","-83.37748","Mountain City","GA","Georgia","TRUE","","1326","172.2","13241","Rabun","{""13241"": ""100""}","Rabun","13241","FALSE","FALSE","America/New_York"
-"30563","34.56349","-83.4625","Mount Airy","GA","Georgia","TRUE","","5973","66.3","13137","Habersham","{""13137"": ""100""}","Habersham","13137","FALSE","FALSE","America/New_York"
-"30564","34.47048","-83.88621","Murrayville","GA","Georgia","TRUE","","3844","48.0","13139","Hall","{""13139"": ""64.19"", ""13187"": ""35.54"", ""13311"": ""0.27""}","Hall|Lumpkin|White","13139|13187|13311","FALSE","FALSE","America/New_York"
-"30565","34.08688","-83.41115","Nicholson","GA","Georgia","TRUE","","4614","52.3","13157","Jackson","{""13157"": ""88.4"", ""13195"": ""11.6""}","Jackson|Madison","13157|13195","FALSE","FALSE","America/New_York"
-"30566","34.23577","-83.89496","Oakwood","GA","Georgia","TRUE","","7710","319.9","13139","Hall","{""13139"": ""100""}","Hall","13139","FALSE","FALSE","America/New_York"
-"30567","34.18361","-83.675","Pendergrass","GA","Georgia","TRUE","","3820","47.1","13157","Jackson","{""13157"": ""98.73"", ""13139"": ""1.27""}","Jackson|Hall","13157|13139","FALSE","FALSE","America/New_York"
-"30568","34.9551","-83.4155","Rabun Gap","GA","Georgia","TRUE","","1348","18.0","13241","Rabun","{""13241"": ""100""}","Rabun","13241","FALSE","FALSE","America/New_York"
-"30571","34.70873","-83.6894","Sautee Nacoochee","GA","Georgia","TRUE","","3459","23.8","13311","White","{""13311"": ""100""}","White","13311","FALSE","FALSE","America/New_York"
-"30572","34.73543","-84.07325","Suches","GA","Georgia","TRUE","","864","3.1","13291","Union","{""13291"": ""66.35"", ""13111"": ""33.65""}","Union|Fannin","13291|13111","FALSE","FALSE","America/New_York"
-"30573","34.74169","-83.41344","Tallulah Falls","GA","Georgia","TRUE","","46","3.7","13241","Rabun","{""13241"": ""82.21"", ""13137"": ""17.79""}","Rabun|Habersham","13241|13137","FALSE","FALSE","America/New_York"
-"30575","34.20384","-83.71601","Talmo","GA","Georgia","TRUE","","1800","60.3","13157","Jackson","{""13157"": ""67.35"", ""13139"": ""32.65""}","Jackson|Hall","13157|13139","FALSE","FALSE","America/New_York"
-"30576","34.82766","-83.44916","Tiger","GA","Georgia","TRUE","","2574","26.3","13241","Rabun","{""13241"": ""100""}","Rabun","13241","FALSE","FALSE","America/New_York"
-"30577","34.55411","-83.32464","Toccoa","GA","Georgia","TRUE","","20814","49.5","13257","Stephens","{""13257"": ""93.52"", ""13119"": ""4.04"", ""13137"": ""1.6"", ""13011"": ""0.84""}","Stephens|Franklin|Habersham|Banks","13257|13119|13137|13011","FALSE","FALSE","America/New_York"
-"30581","34.79651","-83.41658","Wiley","GA","Georgia","TRUE","","141","271.4","13241","Rabun","{""13241"": ""100""}","Rabun","13241","FALSE","FALSE","America/New_York"
-"30582","34.95105","-83.90314","Young Harris","GA","Georgia","TRUE","","4998","38.7","13281","Towns","{""13281"": ""87.04"", ""13291"": ""12.96""}","Towns|Union","13281|13291","FALSE","FALSE","America/New_York"
-"30601","34.00087","-83.34851","Athens","GA","Georgia","TRUE","","24267","397.3","13059","Clarke","{""13059"": ""98.3"", ""13195"": ""1.4"", ""13157"": ""0.3""}","Clarke|Madison|Jackson","13059|13195|13157","FALSE","FALSE","America/New_York"
-"30602","33.94322","-83.37237","Athens","GA","Georgia","TRUE","","2952","1590.3","13059","Clarke","{""13059"": ""100""}","Clarke","13059","FALSE","FALSE","America/New_York"
-"30605","33.90656","-83.32327","Athens","GA","Georgia","TRUE","","41593","438.3","13059","Clarke","{""13059"": ""99.48"", ""13219"": ""0.52""}","Clarke|Oconee","13059|13219","FALSE","FALSE","America/New_York"
-"30606","33.93961","-83.42878","Athens","GA","Georgia","TRUE","","45457","575.9","13059","Clarke","{""13059"": ""90.67"", ""13219"": ""9.33""}","Clarke|Oconee","13059|13219","FALSE","FALSE","America/New_York"
-"30607","34.02012","-83.44594","Athens","GA","Georgia","TRUE","","10474","114.1","13059","Clarke","{""13059"": ""73.93"", ""13157"": ""26.07""}","Clarke|Jackson","13059|13157","FALSE","FALSE","America/New_York"
-"30609","33.94946","-83.38201","Athens","GA","Georgia","TRUE","","2308","38129.2","13059","Clarke","{""13059"": ""100""}","Clarke","13059","FALSE","FALSE","America/New_York"
-"30619","33.85751","-83.24105","Arnoldsville","GA","Georgia","TRUE","","1141","16.5","13221","Oglethorpe","{""13221"": ""93.61"", ""13219"": ""6.39""}","Oglethorpe|Oconee","13221|13219","FALSE","FALSE","America/New_York"
-"30620","33.92906","-83.7573","Bethlehem","GA","Georgia","TRUE","","14228","224.2","13013","Barrow","{""13013"": ""79.02"", ""13135"": ""15.75"", ""13297"": ""5.22""}","Barrow|Gwinnett|Walton","13013|13135|13297","FALSE","FALSE","America/New_York"
-"30621","33.80441","-83.48398","Bishop","GA","Georgia","TRUE","","5300","41.9","13219","Oconee","{""13219"": ""84.13"", ""13211"": ""15.87""}","Oconee|Morgan","13219|13211","FALSE","FALSE","America/New_York"
-"30622","33.92206","-83.5198","Bogart","GA","Georgia","TRUE","","11846","111.0","13219","Oconee","{""13219"": ""57.96"", ""13059"": ""36.87"", ""13157"": ""4.82"", ""13013"": ""0.35""}","Oconee|Clarke|Jackson|Barrow","13219|13059|13157|13013","FALSE","FALSE","America/New_York"
-"30623","33.73016","-83.53609","Bostwick","GA","Georgia","TRUE","","67","12.0","13211","Morgan","{""13211"": ""100""}","Morgan","13211","FALSE","FALSE","America/New_York"
-"30624","34.18721","-83.04685","Bowman","GA","Georgia","TRUE","","3273","29.4","13105","Elbert","{""13105"": ""89.31"", ""13195"": ""6.2"", ""13147"": ""4.48""}","Elbert|Madison|Hart","13105|13195|13147","FALSE","FALSE","America/New_York"
-"30625","33.51949","-83.33776","Buckhead","GA","Georgia","TRUE","","2327","19.8","13211","Morgan","{""13211"": ""80.31"", ""13237"": ""19.69""}","Morgan|Putnam","13211|13237","FALSE","FALSE","America/New_York"
-"30627","33.9755","-82.96071","Carlton","GA","Georgia","TRUE","","2418","7.5","13221","Oglethorpe","{""13221"": ""57.9"", ""13195"": ""42.1""}","Oglethorpe|Madison","13221|13195","FALSE","FALSE","America/New_York"
-"30628","34.02972","-83.21263","Colbert","GA","Georgia","TRUE","","7391","59.4","13195","Madison","{""13195"": ""78.13"", ""13221"": ""21.87""}","Madison|Oglethorpe","13195|13221","FALSE","FALSE","America/New_York"
-"30629","34.079","-83.1171","Comer","GA","Georgia","TRUE","","4832","24.9","13195","Madison","{""13195"": ""79.96"", ""13221"": ""20.04""}","Madison|Oglethorpe","13195|13221","FALSE","FALSE","America/New_York"
-"30630","33.91149","-83.15293","Crawford","GA","Georgia","TRUE","","2285","24.2","13221","Oglethorpe","{""13221"": ""100""}","Oglethorpe","13221","FALSE","FALSE","America/New_York"
-"30631","33.5678","-82.87594","Crawfordville","GA","Georgia","TRUE","","1623","3.2","13265","Taliaferro","{""13265"": ""91.17"", ""13317"": ""8.83""}","Taliaferro|Wilkes","13265|13317","FALSE","FALSE","America/New_York"
-"30633","34.17834","-83.2471","Danielsville","GA","Georgia","TRUE","","8979","34.7","13195","Madison","{""13195"": ""97.9"", ""13119"": ""1.44"", ""13011"": ""0.66""}","Madison|Franklin|Banks","13195|13119|13011","FALSE","FALSE","America/New_York"
-"30634","34.20117","-82.94936","Dewy Rose","GA","Georgia","TRUE","","1949","15.6","13105","Elbert","{""13105"": ""74.35"", ""13147"": ""25.65""}","Elbert|Hart","13105|13147","FALSE","FALSE","America/New_York"
-"30635","34.10316","-82.80444","Elberton","GA","Georgia","TRUE","","14996","20.4","13105","Elbert","{""13105"": ""99.64"", ""13147"": ""0.36""}","Elbert|Hart","13105|13147","FALSE","FALSE","America/New_York"
-"30641","33.77766","-83.56974","Good Hope","GA","Georgia","TRUE","","1882","21.3","13297","Walton","{""13297"": ""84.81"", ""13211"": ""15.19""}","Walton|Morgan","13297|13211","FALSE","FALSE","America/New_York"
-"30642","33.55439","-83.19344","Greensboro","GA","Georgia","TRUE","","12392","24.4","13133","Greene","{""13133"": ""100""}","Greene","13133","FALSE","FALSE","America/New_York"
-"30643","34.36261","-82.9088","Hartwell","GA","Georgia","TRUE","","15166","50.7","13147","Hart","{""13147"": ""100""}","Hart","13147","FALSE","FALSE","America/New_York"
-"30646","34.07828","-83.31139","Hull","GA","Georgia","TRUE","","6945","77.0","13195","Madison","{""13195"": ""99.22"", ""13059"": ""0.78""}","Madison|Clarke","13195|13059","FALSE","FALSE","America/New_York"
-"30648","33.88224","-83.04896","Lexington","GA","Georgia","TRUE","","3003","13.8","13221","Oglethorpe","{""13221"": ""100""}","Oglethorpe","13221","FALSE","FALSE","America/New_York"
-"30650","33.58404","-83.47196","Madison","GA","Georgia","TRUE","","12020","21.0","13211","Morgan","{""13211"": ""95.74"", ""13133"": ""3.71"", ""13297"": ""0.56""}","Morgan|Greene|Walton","13211|13133|13297","FALSE","FALSE","America/New_York"
-"30655","33.77841","-83.69796","Monroe","GA","Georgia","TRUE","","26516","118.5","13297","Walton","{""13297"": ""100""}","Walton","13297","FALSE","FALSE","America/New_York"
-"30656","33.86079","-83.71987","Monroe","GA","Georgia","TRUE","","15284","84.5","13297","Walton","{""13297"": ""99.23"", ""13013"": ""0.77""}","Walton|Barrow","13297|13013","FALSE","FALSE","America/New_York"
-"30660","33.78562","-82.95044","Rayle","GA","Georgia","TRUE","","1270","4.9","13317","Wilkes","{""13317"": ""78.59"", ""13221"": ""21.41""}","Wilkes|Oglethorpe","13317|13221","FALSE","FALSE","America/New_York"
-"30662","34.26569","-83.14789","Royston","GA","Georgia","TRUE","","8941","43.1","13119","Franklin","{""13119"": ""65.23"", ""13147"": ""24.86"", ""13195"": ""8.89"", ""13105"": ""1.02""}","Franklin|Hart|Madison|Elbert","13119|13147|13195|13105","FALSE","FALSE","America/New_York"
-"30663","33.61588","-83.5987","Rutledge","GA","Georgia","TRUE","","3255","22.8","13211","Morgan","{""13211"": ""100""}","Morgan","13211","FALSE","FALSE","America/New_York"
-"30664","33.55821","-82.79952","Sharon","GA","Georgia","TRUE","","19","26.4","13265","Taliaferro","{""13265"": ""100""}","Taliaferro","13265","FALSE","FALSE","America/New_York"
-"30665","33.53984","-83.05665","Siloam","GA","Georgia","TRUE","","77","12.4","13133","Greene","{""13133"": ""100""}","Greene","13133","FALSE","FALSE","America/New_York"
-"30666","33.96001","-83.58398","Statham","GA","Georgia","TRUE","","10876","114.5","13013","Barrow","{""13013"": ""82.61"", ""13219"": ""15.57"", ""13157"": ""1.82""}","Barrow|Oconee|Jackson","13013|13219|13157","FALSE","FALSE","America/New_York"
-"30667","33.78069","-83.15615","Stephens","GA","Georgia","TRUE","","855","4.2","13221","Oglethorpe","{""13221"": ""100""}","Oglethorpe","13221","FALSE","FALSE","America/New_York"
-"30668","33.90156","-82.70052","Tignall","GA","Georgia","TRUE","","1650","4.0","13317","Wilkes","{""13317"": ""79.68"", ""13181"": ""20.32""}","Wilkes|Lincoln","13317|13181","FALSE","FALSE","America/New_York"
-"30669","33.674","-83.11498","Union Point","GA","Georgia","TRUE","","3263","10.1","13133","Greene","{""13133"": ""93.87"", ""13221"": ""4.68"", ""13265"": ""1.45""}","Greene|Oglethorpe|Taliaferro","13133|13221|13265","FALSE","FALSE","America/New_York"
-"30673","33.7226","-82.71737","Washington","GA","Georgia","TRUE","","7180","10.6","13317","Wilkes","{""13317"": ""100""}","Wilkes","13317","FALSE","FALSE","America/New_York"
-"30677","33.79139","-83.38246","Watkinsville","GA","Georgia","TRUE","","18450","60.3","13219","Oconee","{""13219"": ""99.06"", ""13133"": ""0.94""}","Oconee|Greene","13219|13133","FALSE","FALSE","America/New_York"
-"30678","33.45203","-83.0743","White Plains","GA","Georgia","TRUE","","1383","7.6","13133","Greene","{""13133"": ""93.35"", ""13141"": ""5.1"", ""13265"": ""1.55""}","Greene|Hancock|Taliaferro","13133|13141|13265","FALSE","FALSE","America/New_York"
-"30680","33.99623","-83.69949","Winder","GA","Georgia","TRUE","","44800","188.1","13013","Barrow","{""13013"": ""99.2"", ""13219"": ""0.56"", ""13157"": ""0.23""}","Barrow|Oconee|Jackson","13013|13219|13157","FALSE","FALSE","America/New_York"
-"30683","33.94463","-83.2573","Winterville","GA","Georgia","TRUE","","6866","67.8","13059","Clarke","{""13059"": ""55.22"", ""13221"": ""44.78""}","Clarke|Oglethorpe","13059|13221","FALSE","FALSE","America/New_York"
-"30701","34.49658","-84.9557","Calhoun","GA","Georgia","TRUE","","40974","104.5","13129","Gordon","{""13129"": ""99.16"", ""13115"": ""0.84""}","Gordon|Floyd","13129|13115","FALSE","FALSE","America/New_York"
-"30705","34.75017","-84.74898","Chatsworth","GA","Georgia","TRUE","","34031","55.2","13213","Murray","{""13213"": ""100""}","Murray","13213","FALSE","FALSE","America/New_York"
-"30707","34.77638","-85.36037","Chickamauga","GA","Georgia","TRUE","","16593","49.7","13295","Walker","{""13295"": ""96.64"", ""13047"": ""3.36""}","Walker|Catoosa","13295|13047","FALSE","FALSE","America/New_York"
-"30708","34.96174","-84.6646","Cisco","GA","Georgia","TRUE","","241","6.4","13213","Murray","{""13213"": ""100""}","Murray","13213","FALSE","FALSE","America/New_York"
-"30710","34.95059","-84.91746","Cohutta","GA","Georgia","TRUE","","7158","58.2","13313","Whitfield","{""13313"": ""99.89"", ""13047"": ""0.11""}","Whitfield|Catoosa","13313|13047","FALSE","FALSE","America/New_York"
-"30711","34.92761","-84.73534","Crandall","GA","Georgia","TRUE","","3332","18.5","13213","Murray","{""13213"": ""100""}","Murray","13213","FALSE","FALSE","America/New_York"
-"30720","34.73465","-85.0029","Dalton","GA","Georgia","TRUE","","27414","218.0","13313","Whitfield","{""13313"": ""100""}","Whitfield","13313","FALSE","FALSE","America/New_York"
-"30721","34.79162","-84.91407","Dalton","GA","Georgia","TRUE","","53960","167.8","13313","Whitfield","{""13313"": ""98.45"", ""13213"": ""1.55""}","Whitfield|Murray","13313|13213","FALSE","FALSE","America/New_York"
-"30725","34.92434","-85.35313","Flintstone","GA","Georgia","TRUE","","4442","115.0","13295","Walker","{""13295"": ""100""}","Walker","13295","FALSE","FALSE","America/New_York"
-"30726","34.97625","-85.13959","Graysville","GA","Georgia","TRUE","","0","0.0","13047","Catoosa","{""13047"": ""100""}","Catoosa","13047","FALSE","FALSE","America/New_York"
-"30728","34.67871","-85.22469","La Fayette","GA","Georgia","TRUE","","20426","45.4","13295","Walker","{""13295"": ""100""}","Walker","13295","FALSE","FALSE","America/New_York"
-"30730","34.35946","-85.42125","Lyerly","GA","Georgia","TRUE","","1711","11.9","13055","Chattooga","{""13055"": ""100""}","Chattooga","13055","FALSE","FALSE","America/New_York"
-"30731","34.58639","-85.47741","Menlo","GA","Georgia","TRUE","","2314","10.3","13055","Chattooga","{""13055"": ""73.81"", ""13083"": ""15.32"", ""13295"": ""10.87""}","Chattooga|Dade|Walker","13055|13083|13295","FALSE","FALSE","America/New_York"
-"30733","34.41611","-85.04399","Plainville","GA","Georgia","TRUE","","2027","51.2","13129","Gordon","{""13129"": ""96.44"", ""13115"": ""3.56""}","Gordon|Floyd","13129|13115","FALSE","FALSE","America/New_York"
-"30734","34.53315","-84.71441","Ranger","GA","Georgia","TRUE","","3608","18.2","13129","Gordon","{""13129"": ""84.77"", ""13227"": ""15.23""}","Gordon|Pickens","13129|13227","FALSE","FALSE","America/New_York"
-"30735","34.60554","-84.88147","Resaca","GA","Georgia","TRUE","","6719","41.7","13129","Gordon","{""13129"": ""55.16"", ""13313"": ""24.04"", ""13213"": ""20.8""}","Gordon|Whitfield|Murray","13129|13313|13213","FALSE","FALSE","America/New_York"
-"30736","34.90444","-85.13622","Ringgold","GA","Georgia","TRUE","","42604","128.0","13047","Catoosa","{""13047"": ""98.4"", ""13313"": ""0.96"", ""13295"": ""0.64""}","Catoosa|Whitfield|Walker","13047|13313|13295","FALSE","FALSE","America/New_York"
-"30738","34.79667","-85.47852","Rising Fawn","GA","Georgia","TRUE","","3697","16.6","13083","Dade","{""13083"": ""69.65"", ""13295"": ""30.35""}","Dade|Walker","13083|13295","FALSE","FALSE","America/New_York"
-"30739","34.80455","-85.21562","Rock Spring","GA","Georgia","TRUE","","7237","111.4","13295","Walker","{""13295"": ""82.18"", ""13047"": ""17.82""}","Walker|Catoosa","13295|13047","FALSE","FALSE","America/New_York"
-"30740","34.75562","-85.07831","Rocky Face","GA","Georgia","TRUE","","8428","64.0","13313","Whitfield","{""13313"": ""97.4"", ""13295"": ""2.6""}","Whitfield|Walker","13313|13295","FALSE","FALSE","America/New_York"
-"30741","34.95231","-85.28251","Rossville","GA","Georgia","TRUE","","28520","442.0","13295","Walker","{""13295"": ""62.88"", ""13047"": ""37.12""}","Walker|Catoosa","13295|13047","FALSE","FALSE","America/New_York"
-"30742","34.95061","-85.24324","Fort Oglethorpe","GA","Georgia","TRUE","","7882","908.5","13047","Catoosa","{""13047"": ""99.91"", ""13295"": ""0.09""}","Catoosa|Walker","13047|13295","FALSE","FALSE","America/New_York"
-"30746","34.57709","-85.02728","Sugar Valley","GA","Georgia","TRUE","","1025","23.7","13129","Gordon","{""13129"": ""100""}","Gordon","13129","FALSE","FALSE","America/New_York"
-"30747","34.4989","-85.29877","Summerville","GA","Georgia","TRUE","","15902","33.5","13055","Chattooga","{""13055"": ""98.64"", ""13295"": ""1.36""}","Chattooga|Walker","13055|13295","FALSE","FALSE","America/New_York"
-"30750","34.94144","-85.3882","Lookout Mountain","GA","Georgia","TRUE","","4558","133.4","13295","Walker","{""13295"": ""50.84"", ""13083"": ""49.16""}","Walker|Dade","13295|13083","FALSE","FALSE","America/New_York"
-"30751","34.98214","-84.73756","Tennga","GA","Georgia","TRUE","","46","31.2","13213","Murray","{""13213"": ""100""}","Murray","13213","FALSE","FALSE","America/New_York"
-"30752","34.91035","-85.52908","Trenton","GA","Georgia","TRUE","","8616","42.7","13083","Dade","{""13083"": ""100""}","Dade","13083","FALSE","FALSE","America/New_York"
-"30753","34.58316","-85.28595","Trion","GA","Georgia","TRUE","","6873","64.8","13055","Chattooga","{""13055"": ""80.08"", ""13295"": ""19.92""}","Chattooga|Walker","13055|13295","FALSE","FALSE","America/New_York"
-"30755","34.86684","-85.04077","Tunnel Hill","GA","Georgia","TRUE","","9784","106.2","13313","Whitfield","{""13313"": ""62.1"", ""13047"": ""37.9""}","Whitfield|Catoosa","13313|13047","FALSE","FALSE","America/New_York"
-"30756","34.89768","-84.97717","Varnell","GA","Georgia","TRUE","","143","408.3","13313","Whitfield","{""13313"": ""100""}","Whitfield","13313","FALSE","FALSE","America/New_York"
-"30757","34.94196","-85.43513","Wildwood","GA","Georgia","TRUE","","2061","46.5","13083","Dade","{""13083"": ""100""}","Dade","13083","FALSE","FALSE","America/New_York"
-"30802","33.60173","-82.31813","Appling","GA","Georgia","TRUE","","6173","18.0","13073","Columbia","{""13073"": ""99.43"", ""13189"": ""0.57""}","Columbia|McDuffie","13073|13189","FALSE","FALSE","America/New_York"
-"30803","33.13784","-82.55288","Avera","GA","Georgia","TRUE","","988","6.9","13163","Jefferson","{""13163"": ""100""}","Jefferson","13163","FALSE","FALSE","America/New_York"
-"30805","33.2768","-82.18508","Blythe","GA","Georgia","TRUE","","2408","26.3","13245","Richmond","{""13245"": ""70.81"", ""13033"": ""29.19""}","Richmond|Burke","13245|13033","FALSE","FALSE","America/New_York"
-"30807","33.45671","-82.64821","Camak","GA","Georgia","TRUE","","83","51.9","13301","Warren","{""13301"": ""100""}","Warren","13301","FALSE","FALSE","America/New_York"
-"30808","33.38342","-82.39349","Dearing","GA","Georgia","TRUE","","4157","25.3","13189","McDuffie","{""13189"": ""100""}","McDuffie","13189","FALSE","FALSE","America/New_York"
-"30809","33.55541","-82.16441","Evans","GA","Georgia","TRUE","","48525","429.2","13073","Columbia","{""13073"": ""100""}","Columbia","13073","FALSE","FALSE","America/New_York"
-"30810","33.23621","-82.58915","Gibson","GA","Georgia","TRUE","","2049","9.6","13125","Glascock","{""13125"": ""97.29"", ""13301"": ""2.1"", ""13163"": ""0.61""}","Glascock|Warren|Jefferson","13125|13301|13163","FALSE","FALSE","America/New_York"
-"30812","33.36723","-82.02857","Gracewood","GA","Georgia","TRUE","","413","1198.7","13245","Richmond","{""13245"": ""100""}","Richmond","13245","FALSE","FALSE","America/New_York"
-"30813","33.47139","-82.22091","Grovetown","GA","Georgia","TRUE","","44459","345.7","13073","Columbia","{""13073"": ""95.6"", ""13245"": ""4.4""}","Columbia|Richmond","13073|13245","FALSE","FALSE","America/New_York"
-"30814","33.43567","-82.31151","Harlem","GA","Georgia","TRUE","","8673","65.5","13073","Columbia","{""13073"": ""98.64"", ""13189"": ""1.36""}","Columbia|McDuffie","13073|13189","FALSE","FALSE","America/New_York"
-"30815","33.28734","-82.08933","Hephzibah","GA","Georgia","TRUE","","41629","123.0","13245","Richmond","{""13245"": ""93.85"", ""13033"": ""6.15""}","Richmond|Burke","13245|13033","FALSE","FALSE","America/New_York"
-"30816","33.15362","-82.16093","Keysville","GA","Georgia","TRUE","","1895","5.6","13033","Burke","{""13033"": ""85.87"", ""13163"": ""14.13""}","Burke|Jefferson","13033|13163","FALSE","FALSE","America/New_York"
-"30817","33.77381","-82.43596","Lincolnton","GA","Georgia","TRUE","","7747","15.5","13181","Lincoln","{""13181"": ""99.08"", ""13317"": ""0.92""}","Lincoln|Wilkes","13181|13317","FALSE","FALSE","America/New_York"
-"30818","33.26518","-82.32936","Matthews","GA","Georgia","TRUE","","648","7.5","13163","Jefferson","{""13163"": ""100""}","Jefferson","13163","FALSE","FALSE","America/New_York"
-"30820","33.22053","-82.71107","Mitchell","GA","Georgia","TRUE","","1032","4.7","13125","Glascock","{""13125"": ""70.12"", ""13301"": ""21.83"", ""13303"": ""8.05""}","Glascock|Warren|Washington","13125|13301|13303","FALSE","FALSE","America/New_York"
-"30821","33.4837","-82.7352","Norwood","GA","Georgia","TRUE","","884","3.3","13301","Warren","{""13301"": ""100""}","Warren","13301","FALSE","FALSE","America/New_York"
-"30822","32.91289","-81.8538","Perkins","GA","Georgia","TRUE","","600","6.6","13165","Jenkins","{""13165"": ""100""}","Jenkins","13165","FALSE","FALSE","America/New_York"
-"30823","33.22357","-82.45541","Stapleton","GA","Georgia","TRUE","","1469","7.8","13163","Jefferson","{""13163"": ""89.22"", ""13301"": ""6"", ""13125"": ""4.78""}","Jefferson|Warren|Glascock","13163|13301|13125","FALSE","FALSE","America/New_York"
-"30824","33.51609","-82.51854","Thomson","GA","Georgia","TRUE","","17266","33.6","13189","McDuffie","{""13189"": ""99.49"", ""13301"": ""0.51""}","McDuffie|Warren","13189|13301","FALSE","FALSE","America/New_York"
-"30828","33.37218","-82.65529","Warrenton","GA","Georgia","TRUE","","4052","11.5","13301","Warren","{""13301"": ""98.37"", ""13125"": ""1.63""}","Warren|Glascock","13301|13125","FALSE","FALSE","America/New_York"
-"30830","33.08044","-81.97339","Waynesboro","GA","Georgia","TRUE","","13927","14.9","13033","Burke","{""13033"": ""100""}","Burke","13033","FALSE","FALSE","America/New_York"
-"30833","33.18485","-82.35925","Wrens","GA","Georgia","TRUE","","3589","20.3","13163","Jefferson","{""13163"": ""100""}","Jefferson","13163","FALSE","FALSE","America/New_York"
-"30901","33.43649","-81.95697","Augusta","GA","Georgia","TRUE","","16338","307.1","13245","Richmond","{""13245"": ""100""}","Richmond","13245","FALSE","FALSE","America/New_York"
-"30903","33.49014","-82.16265","Augusta","GA","Georgia","TRUE","","791","1798.2","13073","Columbia","{""13073"": ""100""}","Columbia","13073","FALSE","FALSE","America/New_York"
-"30904","33.4775","-82.01281","Augusta","GA","Georgia","TRUE","","25175","938.7","13245","Richmond","{""13245"": ""100""}","Richmond","13245","FALSE","FALSE","America/New_York"
-"30905","33.41474","-82.14267","Augusta","GA","Georgia","TRUE","","7869","217.2","13245","Richmond","{""13245"": ""100""}","Richmond","13245","FALSE","FALSE","America/New_York"
-"30906","33.34496","-81.97238","Augusta","GA","Georgia","TRUE","","59609","272.5","13245","Richmond","{""13245"": ""100""}","Richmond","13245","FALSE","FALSE","America/New_York"
-"30907","33.52294","-82.08527","Augusta","GA","Georgia","TRUE","","52252","840.8","13073","Columbia","{""13073"": ""81.46"", ""13245"": ""18.54""}","Columbia|Richmond","13073|13245","FALSE","FALSE","America/New_York"
-"30909","33.4717","-82.0834","Augusta","GA","Georgia","TRUE","","41261","612.2","13245","Richmond","{""13245"": ""98.98"", ""13073"": ""1.02""}","Richmond|Columbia","13245|13073","FALSE","FALSE","America/New_York"
-"30912","33.47056","-81.98797","Augusta","GA","Georgia","TRUE","","183","478.7","13245","Richmond","{""13245"": ""100""}","Richmond","13245","FALSE","FALSE","America/New_York"
-"31001","31.97547","-83.34065","Abbeville","GA","Georgia","TRUE","","4547","10.0","13315","Wilcox","{""13315"": ""100""}","Wilcox","13315","FALSE","FALSE","America/New_York"
-"31002","32.54863","-82.5829","Adrian","GA","Georgia","TRUE","","3065","10.2","13107","Emanuel","{""13107"": ""42.03"", ""13167"": ""41.27"", ""13175"": ""8.45"", ""13283"": ""8.25""}","Emanuel|Johnson|Laurens|Treutlen","13107|13167|13175|13283","FALSE","FALSE","America/New_York"
-"31003","32.60626","-83.21248","Allentown","GA","Georgia","TRUE","","87","7.3","13319","Wilkinson","{""13319"": ""100""}","Wilkinson","13319","FALSE","FALSE","America/New_York"
-"31005","32.5444","-83.59733","Bonaire","GA","Georgia","TRUE","","17961","360.8","13153","Houston","{""13153"": ""100""}","Houston","13153","FALSE","FALSE","America/New_York"
-"31006","32.58493","-84.25478","Butler","GA","Georgia","TRUE","","4411","9.4","13269","Taylor","{""13269"": ""100""}","Taylor","13269","FALSE","FALSE","America/New_York"
-"31007","32.18894","-83.93315","Byromville","GA","Georgia","TRUE","","1070","6.6","13093","Dooly","{""13093"": ""100""}","Dooly","13093","FALSE","FALSE","America/New_York"
-"31008","32.65603","-83.78253","Byron","GA","Georgia","TRUE","","18046","99.8","13225","Peach","{""13225"": ""61.09"", ""13153"": ""26.49"", ""13079"": ""12.42""}","Peach|Houston|Crawford","13225|13153|13079","FALSE","FALSE","America/New_York"
-"31009","32.27683","-83.00932","Cadwell","GA","Georgia","TRUE","","1260","6.8","13175","Laurens","{""13175"": ""100""}","Laurens","13175","FALSE","FALSE","America/New_York"
-"31011","32.12692","-83.06217","Chauncey","GA","Georgia","TRUE","","902","7.0","13091","Dodge","{""13091"": ""100""}","Dodge","13091","FALSE","FALSE","America/New_York"
-"31012","32.39465","-83.17562","Chester","GA","Georgia","TRUE","","2963","21.0","13091","Dodge","{""13091"": ""89.53"", ""13023"": ""10.47""}","Dodge|Bleckley","13091|13023","FALSE","FALSE","America/New_York"
-"31014","32.41366","-83.34473","Cochran","GA","Georgia","TRUE","","13180","24.1","13023","Bleckley","{""13023"": ""88.22"", ""13091"": ""8.89"", ""13289"": ""2.89""}","Bleckley|Dodge|Twiggs","13023|13091|13289","FALSE","FALSE","America/New_York"
-"31015","31.93552","-83.7753","Cordele","GA","Georgia","TRUE","","21466","38.1","13081","Crisp","{""13081"": ""99.85"", ""13315"": ""0.15""}","Crisp|Wilcox","13081|13315","FALSE","FALSE","America/New_York"
-"31016","32.84316","-84.11459","Culloden","GA","Georgia","TRUE","","2167","9.2","13207","Monroe","{""13207"": ""59.46"", ""13293"": ""29.73"", ""13171"": ""8.5"", ""13079"": ""2.31""}","Monroe|Upson|Lamar|Crawford","13207|13293|13171|13079","FALSE","FALSE","America/New_York"
-"31017","32.61857","-83.23188","Danville","GA","Georgia","TRUE","","1984","8.2","13289","Twiggs","{""13289"": ""53"", ""13319"": ""27.51"", ""13023"": ""19.5""}","Twiggs|Wilkinson|Bleckley","13289|13319|13023","FALSE","FALSE","America/New_York"
-"31018","32.97651","-82.62065","Davisboro","GA","Georgia","TRUE","","2673","11.3","13303","Washington","{""13303"": ""100""}","Washington","13303","FALSE","FALSE","America/New_York"
-"31019","32.42637","-83.04998","Dexter","GA","Georgia","TRUE","","2156","15.3","13175","Laurens","{""13175"": ""100""}","Laurens","13175","FALSE","FALSE","America/New_York"
-"31020","32.69685","-83.50475","Dry Branch","GA","Georgia","TRUE","","1580","5.7","13289","Twiggs","{""13289"": ""87.29"", ""13021"": ""12.71""}","Twiggs|Bibb","13289|13021","FALSE","FALSE","America/New_York"
-"31021","32.49306","-82.93909","Dublin","GA","Georgia","TRUE","","27976","45.1","13175","Laurens","{""13175"": ""100""}","Laurens","13175","FALSE","FALSE","America/New_York"
-"31022","32.50649","-83.1098","Dudley","GA","Georgia","TRUE","","1801","16.1","13175","Laurens","{""13175"": ""98.53"", ""13023"": ""1.47""}","Laurens|Bleckley","13175|13023","FALSE","FALSE","America/New_York"
-"31023","32.18401","-83.20049","Eastman","GA","Georgia","TRUE","","14315","19.5","13091","Dodge","{""13091"": ""98.75"", ""13235"": ""1.25""}","Dodge|Pulaski","13091|13235","FALSE","FALSE","America/New_York"
-"31024","33.32052","-83.37448","Eatonton","GA","Georgia","TRUE","","20626","23.7","13237","Putnam","{""13237"": ""100""}","Putnam","13237","FALSE","FALSE","America/New_York"
-"31025","32.34007","-83.74578","Elko","GA","Georgia","TRUE","","879","5.4","13153","Houston","{""13153"": ""100""}","Houston","13153","FALSE","FALSE","America/New_York"
-"31027","32.57712","-82.81139","East Dublin","GA","Georgia","TRUE","","8803","19.3","13175","Laurens","{""13175"": ""100""}","Laurens","13175","FALSE","FALSE","America/New_York"
-"31028","32.63503","-83.68156","Centerville","GA","Georgia","TRUE","","6406","696.2","13153","Houston","{""13153"": ""100""}","Houston","13153","FALSE","FALSE","America/New_York"
-"31029","33.03734","-83.92709","Forsyth","GA","Georgia","TRUE","","16322","24.5","13207","Monroe","{""13207"": ""99.97"", ""13035"": ""0.03""}","Monroe|Butts","13207|13035","FALSE","FALSE","America/New_York"
-"31030","32.57032","-83.89041","Fort Valley","GA","Georgia","TRUE","","17926","39.8","13225","Peach","{""13225"": ""85.32"", ""13079"": ""13.81"", ""13193"": ""0.62"", ""13153"": ""0.25""}","Peach|Crawford|Macon|Houston","13225|13079|13193|13153","FALSE","FALSE","America/New_York"
-"31031","32.87127","-83.32837","Gordon","GA","Georgia","TRUE","","6780","19.6","13319","Wilkinson","{""13319"": ""63.75"", ""13009"": ""23.75"", ""13289"": ""8.17"", ""13169"": ""4.33""}","Wilkinson|Baldwin|Twiggs|Jones","13319|13009|13289|13169","FALSE","FALSE","America/New_York"
-"31032","33.01268","-83.56911","Gray","GA","Georgia","TRUE","","15580","39.7","13169","Jones","{""13169"": ""100""}","Jones","13169","FALSE","FALSE","America/New_York"
-"31033","33.08095","-83.44181","Haddock","GA","Georgia","TRUE","","1937","10.1","13169","Jones","{""13169"": ""85.38"", ""13009"": ""14.62""}","Jones|Baldwin","13169|13009","FALSE","FALSE","America/New_York"
-"31035","32.84606","-82.70309","Harrison","GA","Georgia","TRUE","","1098","8.2","13303","Washington","{""13303"": ""100""}","Washington","13303","FALSE","FALSE","America/New_York"
-"31036","32.27251","-83.50385","Hawkinsville","GA","Georgia","TRUE","","12077","18.5","13235","Pulaski","{""13235"": ""87.24"", ""13153"": ""12.76""}","Pulaski|Houston","13235|13153","FALSE","FALSE","America/New_York"
-"31037","32.11228","-82.92721","McRae Helena","GA","Georgia","TRUE","","3838","25.0","13271","Telfair","{""13271"": ""76.91"", ""13309"": ""14.17"", ""13091"": ""8.93""}","Telfair|Wheeler|Dodge","13271|13309|13091","FALSE","FALSE","America/New_York"
-"31038","33.14208","-83.64039","Hillsboro","GA","Georgia","TRUE","","458","1.9","13159","Jasper","{""13159"": ""63.07"", ""13169"": ""36.93""}","Jasper|Jones","13159|13169","FALSE","FALSE","America/New_York"
-"31039","32.59551","-84.38528","Howard","GA","Georgia","TRUE","","0","0.0","13269","Taylor","{""13269"": ""100""}","Taylor","13269","FALSE","FALSE","America/New_York"
-"31041","32.37132","-84.17653","Ideal","GA","Georgia","TRUE","","623","4.4","13193","Macon","{""13193"": ""100""}","Macon","13193","FALSE","FALSE","America/New_York"
-"31042","32.7466","-83.17207","Irwinton","GA","Georgia","TRUE","","1429","5.7","13319","Wilkinson","{""13319"": ""100""}","Wilkinson","13319","FALSE","FALSE","America/New_York"
-"31044","32.63885","-83.39336","Jeffersonville","GA","Georgia","TRUE","","3161","7.0","13289","Twiggs","{""13289"": ""97.05"", ""13319"": ""2.95""}","Twiggs|Wilkinson","13289|13319","FALSE","FALSE","America/New_York"
-"31045","33.28247","-82.78307","Jewell","GA","Georgia","TRUE","","13","1.4","13301","Warren","{""13301"": ""80.82"", ""13141"": ""19.18""}","Warren|Hancock","13301|13141","FALSE","FALSE","America/New_York"
-"31046","33.05619","-83.77853","Juliette","GA","Georgia","TRUE","","3348","17.3","13207","Monroe","{""13207"": ""91.21"", ""13169"": ""8.79""}","Monroe|Jones","13207|13169","FALSE","FALSE","America/New_York"
-"31047","32.47366","-83.583","Kathleen","GA","Georgia","TRUE","","14908","80.1","13153","Houston","{""13153"": ""100""}","Houston","13153","FALSE","FALSE","America/New_York"
-"31049","32.68759","-82.52366","Kite","GA","Georgia","TRUE","","1961","7.8","13167","Johnson","{""13167"": ""73.15"", ""13107"": ""26.85""}","Johnson|Emanuel","13167|13107","FALSE","FALSE","America/New_York"
-"31050","32.73728","-83.94247","Knoxville","GA","Georgia","TRUE","","843","14.8","13079","Crawford","{""13079"": ""100""}","Crawford","13079","FALSE","FALSE","America/New_York"
-"31051","32.15581","-83.88845","Lilly","GA","Georgia","TRUE","","156","31.9","13093","Dooly","{""13093"": ""100""}","Dooly","13093","FALSE","FALSE","America/New_York"
-"31052","32.77312","-83.84471","Lizella","GA","Georgia","TRUE","","9028","49.6","13021","Bibb","{""13021"": ""75.91"", ""13079"": ""24.09""}","Bibb|Crawford","13021|13079","FALSE","FALSE","America/New_York"
-"31054","32.88424","-83.20281","McIntyre","GA","Georgia","TRUE","","1505","11.4","13319","Wilkinson","{""13319"": ""100""}","Wilkinson","13319","FALSE","FALSE","America/New_York"
-"31055","31.98879","-82.89112","McRae Helena","GA","Georgia","TRUE","","8565","24.6","13271","Telfair","{""13271"": ""100""}","Telfair","13271","FALSE","FALSE","America/New_York"
-"31057","32.43286","-83.93537","Marshallville","GA","Georgia","TRUE","","2006","8.9","13193","Macon","{""13193"": ""100""}","Macon","13193","FALSE","FALSE","America/New_York"
-"31058","32.49214","-84.41613","Mauk","GA","Georgia","TRUE","","1827","7.1","13197","Marion","{""13197"": ""64.63"", ""13269"": ""35.37""}","Marion|Taylor","13197|13269","FALSE","FALSE","America/New_York"
-"31060","31.97572","-83.06083","Milan","GA","Georgia","TRUE","","1642","6.2","13271","Telfair","{""13271"": ""58.33"", ""13091"": ""41.67""}","Telfair|Dodge","13271|13091","FALSE","FALSE","America/New_York"
-"31061","33.07616","-83.24655","Milledgeville","GA","Georgia","TRUE","","43123","70.4","13009","Baldwin","{""13009"": ""98.02"", ""13237"": ""1.6"", ""13319"": ""0.18"", ""13141"": ""0.14"", ""13169"": ""0.07""}","Baldwin|Putnam|Wilkinson|Hancock|Jones","13009|13237|13319|13141|13169","FALSE","FALSE","America/New_York"
-"31062","33.04918","-83.21747","Milledgeville","GA","Georgia","TRUE","","477","685.0","13009","Baldwin","{""13009"": ""100""}","Baldwin","13009","FALSE","FALSE","America/New_York"
-"31063","32.28977","-83.96823","Montezuma","GA","Georgia","TRUE","","5006","16.9","13193","Macon","{""13193"": ""95.59"", ""13093"": ""4.41""}","Macon|Dooly","13193|13093","FALSE","FALSE","America/New_York"
-"31064","33.28906","-83.69711","Monticello","GA","Georgia","TRUE","","9478","14.5","13159","Jasper","{""13159"": ""100""}","Jasper","13159","FALSE","FALSE","America/New_York"
-"31065","32.55324","-83.16922","Montrose","GA","Georgia","TRUE","","1169","7.0","13175","Laurens","{""13175"": ""78.71"", ""13023"": ""21.29""}","Laurens|Bleckley","13175|13023","FALSE","FALSE","America/New_York"
-"31066","32.80329","-84.01002","Musella","GA","Georgia","TRUE","","1291","7.3","13079","Crawford","{""13079"": ""93.11"", ""13207"": ""4.8"", ""13021"": ""2.09""}","Crawford|Monroe|Bibb","13079|13207|13021","FALSE","FALSE","America/New_York"
-"31067","32.86007","-82.93698","Oconee","GA","Georgia","TRUE","","288","32.0","13303","Washington","{""13303"": ""100""}","Washington","13303","FALSE","FALSE","America/New_York"
-"31068","32.32624","-84.10771","Oglethorpe","GA","Georgia","TRUE","","5329","22.9","13193","Macon","{""13193"": ""100""}","Macon","13193","FALSE","FALSE","America/New_York"
-"31069","32.44104","-83.74346","Perry","GA","Georgia","TRUE","","20296","81.2","13153","Houston","{""13153"": ""98.78"", ""13225"": ""1.22""}","Houston|Peach","13153|13225","FALSE","FALSE","America/New_York"
-"31070","32.18968","-83.78403","Pinehurst","GA","Georgia","TRUE","","1179","9.0","13093","Dooly","{""13093"": ""100""}","Dooly","13093","FALSE","FALSE","America/New_York"
-"31071","32.12972","-83.52946","Pineview","GA","Georgia","TRUE","","1297","9.1","13315","Wilcox","{""13315"": ""62.47"", ""13235"": ""37.53""}","Wilcox|Pulaski","13315|13235","FALSE","FALSE","America/New_York"
-"31072","31.96604","-83.56352","Pitts","GA","Georgia","TRUE","","1278","6.5","13315","Wilcox","{""13315"": ""94.57"", ""13081"": ""5.43""}","Wilcox|Crisp","13315|13081","FALSE","FALSE","America/New_York"
-"31075","32.35102","-82.95552","Rentz","GA","Georgia","TRUE","","2978","21.1","13175","Laurens","{""13175"": ""100""}","Laurens","13175","FALSE","FALSE","America/New_York"
-"31076","32.54556","-84.1053","Reynolds","GA","Georgia","TRUE","","3124","10.1","13269","Taylor","{""13269"": ""91.09"", ""13193"": ""8.91""}","Taylor|Macon","13269|13193","FALSE","FALSE","America/New_York"
-"31077","31.93796","-83.18365","Rhine","GA","Georgia","TRUE","","1363","5.5","13091","Dodge","{""13091"": ""68.63"", ""13271"": ""31.37""}","Dodge|Telfair","13091|13271","FALSE","FALSE","America/New_York"
-"31078","32.6995","-84.06613","Roberta","GA","Georgia","TRUE","","2861","10.5","13079","Crawford","{""13079"": ""100""}","Crawford","13079","FALSE","FALSE","America/New_York"
-"31079","31.94087","-83.46037","Rochelle","GA","Georgia","TRUE","","2212","7.6","13315","Wilcox","{""13315"": ""94.54"", ""13017"": ""5.46""}","Wilcox|Ben Hill","13315|13017","FALSE","FALSE","America/New_York"
-"31081","32.41458","-84.27963","Rupert","GA","Georgia","TRUE","","16","0.2","13269","Taylor","{""13269"": ""100""}","Taylor","13269","FALSE","FALSE","America/New_York"
-"31082","32.99243","-82.8968","Sandersville","GA","Georgia","TRUE","","9728","16.7","13303","Washington","{""13303"": ""99.64"", ""13009"": ""0.36""}","Washington|Baldwin","13303|13009","FALSE","FALSE","America/New_York"
-"31083","32.03945","-82.81023","Scotland","GA","Georgia","TRUE","","386","72.6","13271","Telfair","{""13271"": ""91.99"", ""13309"": ""8.01""}","Telfair|Wheeler","13271|13309","FALSE","FALSE","America/New_York"
-"31084","31.963","-83.60556","Seville","GA","Georgia","TRUE","","65","94.6","13315","Wilcox","{""13315"": ""100""}","Wilcox","13315","FALSE","FALSE","America/New_York"
-"31085","33.42569","-83.62901","Shady Dale","GA","Georgia","TRUE","","1116","9.7","13159","Jasper","{""13159"": ""100""}","Jasper","13159","FALSE","FALSE","America/New_York"
-"31087","33.26371","-83.00242","Sparta","GA","Georgia","TRUE","","8659","7.2","13141","Hancock","{""13141"": ""96.19"", ""13009"": ""3.62"", ""13303"": ""0.19""}","Hancock|Baldwin|Washington","13141|13009|13303","FALSE","FALSE","America/New_York"
-"31088","32.58286","-83.64841","Warner Robins","GA","Georgia","TRUE","","57094","701.3","13153","Houston","{""13153"": ""100""}","Houston","13153","FALSE","FALSE","America/New_York"
-"31089","32.85289","-82.86376","Tennille","GA","Georgia","TRUE","","4427","11.1","13303","Washington","{""13303"": ""97.17"", ""13167"": ""2.83""}","Washington|Johnson","13303|13167","FALSE","FALSE","America/New_York"
-"31090","32.82654","-83.06214","Toomsboro","GA","Georgia","TRUE","","1072","2.8","13319","Wilkinson","{""13319"": ""100""}","Wilkinson","13319","FALSE","FALSE","America/New_York"
-"31091","32.2409","-83.70131","Unadilla","GA","Georgia","TRUE","","4376","19.5","13093","Dooly","{""13093"": ""99.13"", ""13235"": ""0.54"", ""13153"": ""0.33""}","Dooly|Pulaski|Houston","13093|13235|13153","FALSE","FALSE","America/New_York"
-"31092","32.09069","-83.78572","Vienna","GA","Georgia","TRUE","","6843","14.1","13093","Dooly","{""13093"": ""97.33"", ""13081"": ""2.67""}","Dooly|Crisp","13093|13081","FALSE","FALSE","America/New_York"
-"31093","32.64767","-83.65653","Warner Robins","GA","Georgia","TRUE","","27313","536.9","13153","Houston","{""13153"": ""100""}","Houston","13153","FALSE","FALSE","America/New_York"
-"31094","33.11179","-82.79398","Warthen","GA","Georgia","TRUE","","1116","4.0","13303","Washington","{""13303"": ""100""}","Washington","13303","FALSE","FALSE","America/New_York"
-"31096","32.72233","-82.70517","Wrightsville","GA","Georgia","TRUE","","7039","15.9","13167","Johnson","{""13167"": ""97.73"", ""13303"": ""2.27""}","Johnson|Washington","13167|13303","FALSE","FALSE","America/New_York"
-"31097","32.89556","-84.15821","Yatesville","GA","Georgia","TRUE","","1345","9.7","13293","Upson","{""13293"": ""91.24"", ""13171"": ""4.69"", ""13207"": ""4.07""}","Upson|Lamar|Monroe","13293|13171|13207","FALSE","FALSE","America/New_York"
-"31098","32.61808","-83.57386","Warner Robins","GA","Georgia","TRUE","","3489","73.5","13153","Houston","{""13153"": ""100""}","Houston","13153","FALSE","FALSE","America/New_York"
-"31201","32.80946","-83.61684","Macon","GA","Georgia","TRUE","","8391","303.1","13021","Bibb","{""13021"": ""100""}","Bibb","13021","FALSE","FALSE","America/New_York"
-"31204","32.85012","-83.67584","Macon","GA","Georgia","TRUE","","29765","785.1","13021","Bibb","{""13021"": ""100""}","Bibb","13021","FALSE","FALSE","America/New_York"
-"31206","32.79141","-83.67896","Macon","GA","Georgia","TRUE","","26216","362.5","13021","Bibb","{""13021"": ""100""}","Bibb","13021","FALSE","FALSE","America/New_York"
-"31207","32.82846","-83.64908","Macon","GA","Georgia","TRUE","","1089","2431.8","13021","Bibb","{""13021"": ""100""}","Bibb","13021","FALSE","FALSE","America/New_York"
-"31210","32.90485","-83.73572","Macon","GA","Georgia","TRUE","","34230","319.8","13021","Bibb","{""13021"": ""91.46"", ""13207"": ""8.54""}","Bibb|Monroe","13021|13207","FALSE","FALSE","America/New_York"
-"31211","32.91046","-83.60606","Macon","GA","Georgia","TRUE","","15261","119.8","13021","Bibb","{""13021"": ""54.16"", ""13169"": ""45.84""}","Bibb|Jones","13021|13169","FALSE","FALSE","America/New_York"
-"31213","32.84005","-83.63937","Macon","GA","Georgia","TRUE","","0","0.0","13021","Bibb","{""13021"": ""0""}","Bibb","13021","FALSE","FALSE","America/New_York"
-"31216","32.72777","-83.6835","Macon","GA","Georgia","TRUE","","16802","117.8","13021","Bibb","{""13021"": ""100""}","Bibb","13021","FALSE","FALSE","America/New_York"
-"31217","32.84493","-83.50634","Macon","GA","Georgia","TRUE","","16484","64.4","13021","Bibb","{""13021"": ""67.17"", ""13169"": ""22"", ""13289"": ""10.83""}","Bibb|Jones|Twiggs","13021|13169|13289","FALSE","FALSE","America/New_York"
-"31220","32.8778","-83.82199","Macon","GA","Georgia","TRUE","","14859","120.8","13021","Bibb","{""13021"": ""91.97"", ""13207"": ""8.03""}","Bibb|Monroe","13021|13207","FALSE","FALSE","America/New_York"
-"31301","31.75285","-81.60849","Allenhurst","GA","Georgia","TRUE","","3447","112.5","13179","Liberty","{""13179"": ""69.64"", ""13183"": ""30.36""}","Liberty|Long","13179|13183","FALSE","FALSE","America/New_York"
-"31302","32.12245","-81.34075","Bloomingdale","GA","Georgia","TRUE","","7794","67.4","13103","Effingham","{""13103"": ""50.9"", ""13051"": ""49.1""}","Effingham|Chatham","13103|13051","FALSE","FALSE","America/New_York"
-"31303","32.49982","-81.30964","Clyo","GA","Georgia","TRUE","","2682","12.7","13103","Effingham","{""13103"": ""100""}","Effingham","13103","FALSE","FALSE","America/New_York"
-"31304","31.50906","-81.35236","Crescent","GA","Georgia","TRUE","","35","5.9","13191","McIntosh","{""13191"": ""100""}","McIntosh","13191","FALSE","FALSE","America/New_York"
-"31305","31.39907","-81.3918","Darien","GA","Georgia","TRUE","","5409","49.1","13191","McIntosh","{""13191"": ""100""}","McIntosh","13191","FALSE","FALSE","America/New_York"
-"31307","32.17361","-81.39918","Eden","GA","Georgia","TRUE","","947","96.2","13103","Effingham","{""13103"": ""100""}","Effingham","13103","FALSE","FALSE","America/New_York"
-"31308","32.17485","-81.48045","Ellabell","GA","Georgia","TRUE","","7250","32.6","13029","Bryan","{""13029"": ""77.41"", ""13031"": ""22.59""}","Bryan|Bulloch","13029|13031","FALSE","FALSE","America/New_York"
-"31309","31.88144","-81.43441","Fleming","GA","Georgia","TRUE","","923","13.7","13179","Liberty","{""13179"": ""100""}","Liberty","13179","FALSE","FALSE","America/New_York"
-"31312","32.31022","-81.39869","Guyton","GA","Georgia","TRUE","","20873","50.4","13103","Effingham","{""13103"": ""100""}","Effingham","13103","FALSE","FALSE","America/New_York"
-"31313","31.83794","-81.60992","Hinesville","GA","Georgia","TRUE","","40467","232.3","13179","Liberty","{""13179"": ""97.39"", ""13183"": ""2.61""}","Liberty|Long","13179|13183","FALSE","FALSE","America/New_York"
-"31314","31.87008","-81.63189","Fort Stewart","GA","Georgia","TRUE","","1621","66.3","13179","Liberty","{""13179"": ""100""}","Liberty","13179","FALSE","FALSE","America/New_York"
-"31315","31.89382","-81.59015","Fort Stewart","GA","Georgia","TRUE","","8022","259.1","13179","Liberty","{""13179"": ""100""}","Liberty","13179","FALSE","FALSE","America/New_York"
-"31316","31.71717","-81.72851","Ludowici","GA","Georgia","TRUE","","14117","18.8","13183","Long","{""13183"": ""100""}","Long","13183","FALSE","FALSE","America/New_York"
-"31318","32.14203","-81.37192","Meldrim","GA","Georgia","TRUE","","387","110.0","13103","Effingham","{""13103"": ""100""}","Effingham","13103","FALSE","FALSE","America/New_York"
-"31320","31.76809","-81.36617","Midway","GA","Georgia","TRUE","","7769","25.6","13179","Liberty","{""13179"": ""100""}","Liberty","13179","FALSE","FALSE","America/New_York"
-"31321","32.18121","-81.66567","Pembroke","GA","Georgia","TRUE","","7947","22.1","13029","Bryan","{""13029"": ""64.54"", ""13031"": ""35.46""}","Bryan|Bulloch","13029|13031","FALSE","FALSE","America/New_York"
-"31322","32.10966","-81.25388","Pooler","GA","Georgia","TRUE","","26126","346.4","13051","Chatham","{""13051"": ""100""}","Chatham","13051","FALSE","FALSE","America/New_York"
-"31323","31.69565","-81.42973","Riceboro","GA","Georgia","TRUE","","1257","3.8","13179","Liberty","{""13179"": ""89.73"", ""13191"": ""9.14"", ""13183"": ""1.14""}","Liberty|McIntosh|Long","13179|13191|13183","FALSE","FALSE","America/New_York"
-"31324","31.85578","-81.26875","Richmond Hill","GA","Georgia","TRUE","","26684","80.4","13029","Bryan","{""13029"": ""100""}","Bryan","13029","FALSE","FALSE","America/New_York"
-"31326","32.296","-81.22975","Rincon","GA","Georgia","TRUE","","20933","115.4","13103","Effingham","{""13103"": ""100""}","Effingham","13103","FALSE","FALSE","America/New_York"
-"31327","31.46187","-81.25787","Sapelo Island","GA","Georgia","TRUE","","212","2.1","13191","McIntosh","{""13191"": ""100""}","McIntosh","13191","FALSE","FALSE","America/New_York"
-"31328","32.00709","-80.8683","Tybee Island","GA","Georgia","TRUE","","3460","239.0","13051","Chatham","{""13051"": ""100""}","Chatham","13051","FALSE","FALSE","America/New_York"
-"31329","32.42312","-81.34866","Springfield","GA","Georgia","TRUE","","10499","38.3","13103","Effingham","{""13103"": ""100""}","Effingham","13103","FALSE","FALSE","America/New_York"
-"31331","31.52645","-81.43706","Townsend","GA","Georgia","TRUE","","8475","10.9","13191","McIntosh","{""13191"": ""100""}","McIntosh","13191","FALSE","FALSE","America/New_York"
-"31401","32.07468","-81.08892","Savannah","GA","Georgia","TRUE","","19839","1592.3","13051","Chatham","{""13051"": ""100""}","Chatham","13051","FALSE","FALSE","America/New_York"
-"31404","32.05398","-81.04986","Savannah","GA","Georgia","TRUE","","32816","844.9","13051","Chatham","{""13051"": ""100""}","Chatham","13051","FALSE","FALSE","America/New_York"
-"31405","32.03949","-81.17255","Savannah","GA","Georgia","TRUE","","37399","474.2","13051","Chatham","{""13051"": ""100""}","Chatham","13051","FALSE","FALSE","America/New_York"
-"31406","31.97795","-81.08487","Savannah","GA","Georgia","TRUE","","35227","524.5","13051","Chatham","{""13051"": ""100""}","Chatham","13051","FALSE","FALSE","America/New_York"
-"31407","32.1857","-81.19257","Port Wentworth","GA","Georgia","TRUE","","13879","186.5","13051","Chatham","{""13051"": ""100""}","Chatham","13051","FALSE","FALSE","America/New_York"
-"31408","32.11542","-81.18413","Savannah","GA","Georgia","TRUE","","10371","163.6","13051","Chatham","{""13051"": ""100""}","Chatham","13051","FALSE","FALSE","America/New_York"
-"31409","32.00938","-81.15692","Savannah","GA","Georgia","TRUE","","885","51.4","13051","Chatham","{""13051"": ""100""}","Chatham","13051","FALSE","FALSE","America/New_York"
-"31410","32.0244","-80.993","Savannah","GA","Georgia","TRUE","","24727","482.8","13051","Chatham","{""13051"": ""100""}","Chatham","13051","FALSE","FALSE","America/New_York"
-"31411","31.94097","-81.03654","Savannah","GA","Georgia","TRUE","","9076","165.4","13051","Chatham","{""13051"": ""100""}","Chatham","13051","FALSE","FALSE","America/New_York"
-"31415","32.0786","-81.12582","Savannah","GA","Georgia","TRUE","","12209","772.9","13051","Chatham","{""13051"": ""100""}","Chatham","13051","FALSE","FALSE","America/New_York"
-"31419","31.99574","-81.23582","Savannah","GA","Georgia","TRUE","","58800","353.0","13051","Chatham","{""13051"": ""100""}","Chatham","13051","FALSE","FALSE","America/New_York"
-"31501","31.22438","-82.35061","Waycross","GA","Georgia","TRUE","","15441","451.7","13299","Ware","{""13299"": ""100""}","Ware","13299","FALSE","FALSE","America/New_York"
-"31503","31.19789","-82.41346","Waycross","GA","Georgia","TRUE","","20344","23.7","13299","Ware","{""13299"": ""88.32"", ""13025"": ""11.68""}","Ware|Brantley","13299|13025","FALSE","FALSE","America/New_York"
-"31510","31.54582","-82.44053","Alma","GA","Georgia","TRUE","","9730","16.6","13005","Bacon","{""13005"": ""96.47"", ""13229"": ""3.41"", ""13161"": ""0.12""}","Bacon|Pierce|Jeff Davis","13005|13229|13161","FALSE","FALSE","America/New_York"
-"31512","31.54332","-83.01451","Ambrose","GA","Georgia","TRUE","","2153","10.4","13069","Coffee","{""13069"": ""100""}","Coffee","13069","FALSE","FALSE","America/New_York"
-"31513","31.77745","-82.34738","Baxley","GA","Georgia","TRUE","","16105","18.8","13001","Appling","{""13001"": ""99.8"", ""13161"": ""0.2""}","Appling|Jeff Davis","13001|13161","FALSE","FALSE","America/New_York"
-"31516","31.30995","-82.25525","Blackshear","GA","Georgia","TRUE","","14953","35.4","13229","Pierce","{""13229"": ""100""}","Pierce","13229","FALSE","FALSE","America/New_York"
-"31518","31.5147","-82.18282","Bristol","GA","Georgia","TRUE","","933","7.7","13001","Appling","{""13001"": ""52.13"", ""13229"": ""34.38"", ""13305"": ""13.49""}","Appling|Pierce|Wayne","13001|13229|13305","FALSE","FALSE","America/New_York"
-"31519","31.6816","-82.87975","Broxton","GA","Georgia","TRUE","","3562","10.3","13069","Coffee","{""13069"": ""97.42"", ""13161"": ""2.58""}","Coffee|Jeff Davis","13069|13161","FALSE","FALSE","America/New_York"
-"31520","31.18071","-81.49482","Brunswick","GA","Georgia","TRUE","","22847","524.3","13127","Glynn","{""13127"": ""100""}","Glynn","13127","FALSE","FALSE","America/New_York"
-"31522","31.23311","-81.3579","Saint Simons Island","GA","Georgia","TRUE","","16745","119.6","13127","Glynn","{""13127"": ""100""}","Glynn","13127","FALSE","FALSE","America/New_York"
-"31523","31.22042","-81.62655","Brunswick","GA","Georgia","TRUE","","13651","28.5","13127","Glynn","{""13127"": ""100""}","Glynn","13127","FALSE","FALSE","America/New_York"
-"31524","31.24045","-81.47236","Brunswick","GA","Georgia","TRUE","","0","0.0","13127","Glynn","{""13127"": ""0""}","Glynn","13127","FALSE","FALSE","America/New_York"
-"31525","31.31155","-81.52381","Brunswick","GA","Georgia","TRUE","","30257","119.0","13127","Glynn","{""13127"": ""100""}","Glynn","13127","FALSE","FALSE","America/New_York"
-"31527","31.07232","-81.44036","Jekyll Island","GA","Georgia","TRUE","","883","19.4","13127","Glynn","{""13127"": ""100""}","Glynn","13127","FALSE","FALSE","America/New_York"
-"31532","31.72255","-82.75263","Denton","GA","Georgia","TRUE","","565","4.2","13161","Jeff Davis","{""13161"": ""100""}","Jeff Davis","13161","FALSE","FALSE","America/New_York"
-"31533","31.54914","-82.82861","Douglas","GA","Georgia","TRUE","","17087","98.5","13069","Coffee","{""13069"": ""100""}","Coffee","13069","FALSE","FALSE","America/New_York"
-"31535","31.45513","-82.85609","Douglas","GA","Georgia","TRUE","","10893","41.8","13069","Coffee","{""13069"": ""100""}","Coffee","13069","FALSE","FALSE","America/New_York"
-"31537","30.89309","-82.00974","Folkston","GA","Georgia","TRUE","","10858","14.4","13049","Charlton","{""13049"": ""98.69"", ""13039"": ""1.31""}","Charlton|Camden","13049|13039","FALSE","FALSE","America/New_York"
-"31539","31.82649","-82.60805","Hazlehurst","GA","Georgia","TRUE","","14733","21.1","13161","Jeff Davis","{""13161"": ""98.18"", ""13001"": ""1.82""}","Jeff Davis|Appling","13161|13001","FALSE","FALSE","America/New_York"
-"31542","31.14309","-82.12071","Hoboken","GA","Georgia","TRUE","","2805","10.6","13025","Brantley","{""13025"": ""100""}","Brantley","13025","FALSE","FALSE","America/New_York"
-"31543","31.32843","-81.83121","Hortense","GA","Georgia","TRUE","","4242","13.1","13025","Brantley","{""13025"": ""91.45"", ""13305"": ""6.17"", ""13127"": ""2.38""}","Brantley|Wayne|Glynn","13025|13305|13127","FALSE","FALSE","America/New_York"
-"31544","31.83788","-82.95284","Jacksonville","GA","Georgia","TRUE","","770","2.9","13271","Telfair","{""13271"": ""100""}","Telfair","13271","FALSE","FALSE","America/New_York"
-"31545","31.6523","-81.94185","Jesup","GA","Georgia","TRUE","","16119","62.8","13305","Wayne","{""13305"": ""100""}","Wayne","13305","FALSE","FALSE","America/New_York"
-"31546","31.51199","-81.80861","Jesup","GA","Georgia","TRUE","","8415","19.1","13305","Wayne","{""13305"": ""100""}","Wayne","13305","FALSE","FALSE","America/New_York"
-"31547","30.7906","-81.56068","Kings Bay","GA","Georgia","TRUE","","1262","193.5","13039","Camden","{""13039"": ""100""}","Camden","13039","FALSE","FALSE","America/New_York"
-"31548","30.79353","-81.698","Kingsland","GA","Georgia","TRUE","","21680","147.4","13039","Camden","{""13039"": ""100""}","Camden","13039","FALSE","FALSE","America/New_York"
-"31549","31.94233","-82.71098","Lumber City","GA","Georgia","TRUE","","2143","7.4","13271","Telfair","{""13271"": ""93.52"", ""13309"": ""6.48""}","Telfair|Wheeler","13271|13309","FALSE","FALSE","America/New_York"
-"31550","31.14713","-82.59149","Manor","GA","Georgia","TRUE","","796","6.0","13299","Ware","{""13299"": ""100""}","Ware","13299","FALSE","FALSE","America/New_York"
-"31551","31.49349","-82.2759","Mershon","GA","Georgia","TRUE","","848","4.6","13229","Pierce","{""13229"": ""53.04"", ""13005"": ""46.96""}","Pierce|Bacon","13229|13005","FALSE","FALSE","America/New_York"
-"31552","31.29476","-82.61267","Millwood","GA","Georgia","TRUE","","1194","5.4","13299","Ware","{""13299"": ""93.99"", ""13003"": ""5.26"", ""13069"": ""0.75""}","Ware|Atkinson|Coffee","13299|13003|13069","FALSE","FALSE","America/New_York"
-"31553","31.17663","-81.97249","Nahunta","GA","Georgia","TRUE","","4660","10.5","13025","Brantley","{""13025"": ""99.68"", ""13049"": ""0.32""}","Brantley|Charlton","13025|13049","FALSE","FALSE","America/New_York"
-"31554","31.48873","-82.6239","Nicholls","GA","Georgia","TRUE","","8293","15.3","13069","Coffee","{""13069"": ""78.8"", ""13005"": ""15.79"", ""13299"": ""5.41""}","Coffee|Bacon|Ware","13069|13005|13299","FALSE","FALSE","America/New_York"
-"31555","31.70138","-82.07145","Odum","GA","Georgia","TRUE","","2451","6.4","13305","Wayne","{""13305"": ""91.98"", ""13001"": ""8.02""}","Wayne|Appling","13305|13001","FALSE","FALSE","America/New_York"
-"31556","31.41385","-82.11163","Offerman","GA","Georgia","TRUE","","94","73.6","13229","Pierce","{""13229"": ""100""}","Pierce","13229","FALSE","FALSE","America/New_York"
-"31557","31.37087","-82.08885","Patterson","GA","Georgia","TRUE","","3296","11.5","13229","Pierce","{""13229"": ""93.23"", ""13025"": ""6.77""}","Pierce|Brantley","13229|13025","FALSE","FALSE","America/New_York"
-"31558","30.81738","-81.50712","Saint Marys","GA","Georgia","TRUE","","21586","109.7","13039","Camden","{""13039"": ""100""}","Camden","13039","FALSE","FALSE","America/New_York"
-"31560","31.49948","-82.02598","Screven","GA","Georgia","TRUE","","2448","6.9","13305","Wayne","{""13305"": ""100""}","Wayne","13305","FALSE","FALSE","America/New_York"
-"31561","31.20231","-81.33709","Sea Island","GA","Georgia","TRUE","","47","3.8","13127","Glynn","{""13127"": ""100""}","Glynn","13127","FALSE","FALSE","America/New_York"
-"31562","30.47555","-82.10574","Saint George","GA","Georgia","TRUE","","2478","8.9","13049","Charlton","{""13049"": ""100""}","Charlton","13049","FALSE","FALSE","America/New_York"
-"31563","31.74553","-82.18268","Surrency","GA","Georgia","TRUE","","1369","4.7","13001","Appling","{""13001"": ""100""}","Appling","13001","FALSE","FALSE","America/New_York"
-"31565","31.06443","-81.64231","Waverly","GA","Georgia","TRUE","","2009","5.9","13039","Camden","{""13039"": ""100""}","Camden","13039","FALSE","FALSE","America/New_York"
-"31566","31.19036","-81.80772","Waynesville","GA","Georgia","TRUE","","4787","29.2","13025","Brantley","{""13025"": ""95.68"", ""13127"": ""4.32""}","Brantley|Glynn","13025|13127","FALSE","FALSE","America/New_York"
-"31567","31.62918","-82.70778","West Green","GA","Georgia","TRUE","","768","7.0","13069","Coffee","{""13069"": ""100""}","Coffee","13069","FALSE","FALSE","America/New_York"
-"31568","31.00827","-81.81138","White Oak","GA","Georgia","TRUE","","609","1.8","13039","Camden","{""13039"": ""100""}","Camden","13039","FALSE","FALSE","America/New_York"
-"31569","30.90736","-81.70485","Woodbine","GA","Georgia","TRUE","","5789","33.3","13039","Camden","{""13039"": ""100""}","Camden","13039","FALSE","FALSE","America/New_York"
-"31601","30.75159","-83.34207","Valdosta","GA","Georgia","TRUE","","30597","76.7","13185","Lowndes","{""13185"": ""100""}","Lowndes","13185","FALSE","FALSE","America/New_York"
-"31602","30.86925","-83.34394","Valdosta","GA","Georgia","TRUE","","36626","346.8","13185","Lowndes","{""13185"": ""92"", ""13027"": ""8""}","Lowndes|Brooks","13185|13027","FALSE","FALSE","America/New_York"
-"31605","30.93604","-83.23018","Valdosta","GA","Georgia","TRUE","","23437","169.5","13185","Lowndes","{""13185"": ""100""}","Lowndes","13185","FALSE","FALSE","America/New_York"
-"31606","30.79893","-83.18917","Valdosta","GA","Georgia","TRUE","","3743","32.8","13185","Lowndes","{""13185"": ""100""}","Lowndes","13185","FALSE","FALSE","America/New_York"
-"31620","31.11841","-83.43765","Adel","GA","Georgia","TRUE","","10835","33.5","13075","Cook","{""13075"": ""100""}","Cook","13075","FALSE","FALSE","America/New_York"
-"31622","31.37959","-83.20569","Alapaha","GA","Georgia","TRUE","","1904","6.6","13019","Berrien","{""13019"": ""100""}","Berrien","13019","FALSE","FALSE","America/New_York"
-"31623","31.07443","-82.64407","Argyle","GA","Georgia","TRUE","","94","40.8","13065","Clinch","{""13065"": ""100""}","Clinch","13065","FALSE","FALSE","America/New_York"
-"31624","31.29846","-82.72141","Axson","GA","Georgia","TRUE","","1332","6.5","13003","Atkinson","{""13003"": ""91.52"", ""13069"": ""4.71"", ""13299"": ""3.77""}","Atkinson|Coffee|Ware","13003|13069|13299","FALSE","FALSE","America/New_York"
-"31625","30.9931","-83.52844","Barney","GA","Georgia","TRUE","","1008","6.5","13027","Brooks","{""13027"": ""100""}","Brooks","13027","FALSE","FALSE","America/New_York"
-"31626","30.77558","-83.80106","Boston","GA","Georgia","TRUE","","3416","9.2","13275","Thomas","{""13275"": ""92.95"", ""13027"": ""7.05""}","Thomas|Brooks","13275|13027","FALSE","FALSE","America/New_York"
-"31627","31.04112","-83.39219","Cecil","GA","Georgia","TRUE","","257","113.1","13075","Cook","{""13075"": ""100""}","Cook","13075","FALSE","FALSE","America/New_York"
-"31629","30.82258","-83.68727","Dixie","GA","Georgia","TRUE","","956","8.5","13027","Brooks","{""13027"": ""100""}","Brooks","13027","FALSE","FALSE","America/New_York"
-"31630","30.92379","-82.87935","Du Pont","GA","Georgia","TRUE","","448","1.9","13065","Clinch","{""13065"": ""81.38"", ""13101"": ""18.62""}","Clinch|Echols","13065|13101","FALSE","FALSE","America/New_York"
-"31631","30.71165","-82.5987","Fargo","GA","Georgia","TRUE","","456","1.4","13065","Clinch","{""13065"": ""77.1"", ""13101"": ""21.65"", ""13049"": ""1.25"", ""13299"": ""0""}","Clinch|Echols|Charlton|Ware","13065|13101|13049|13299","FALSE","FALSE","America/New_York"
-"31632","30.98796","-83.35995","Hahira","GA","Georgia","TRUE","","13483","46.8","13185","Lowndes","{""13185"": ""89.41"", ""13075"": ""10.59""}","Lowndes|Cook","13185|13075","FALSE","FALSE","America/New_York"
-"31634","31.04006","-82.76737","Homerville","GA","Georgia","TRUE","","5726","7.8","13065","Clinch","{""13065"": ""100""}","Clinch","13065","FALSE","FALSE","America/New_York"
-"31635","31.10395","-83.05415","Lakeland","GA","Georgia","TRUE","","6774","21.9","13173","Lanier","{""13173"": ""98.86"", ""13065"": ""0.72"", ""13003"": ""0.43""}","Lanier|Clinch|Atkinson","13173|13065|13003","FALSE","FALSE","America/New_York"
-"31636","30.73307","-83.11251","Lake Park","GA","Georgia","TRUE","","11005","21.5","13185","Lowndes","{""13185"": ""70.7"", ""13101"": ""29.3""}","Lowndes|Echols","13185|13101","FALSE","FALSE","America/New_York"
-"31637","31.29233","-83.44111","Lenox","GA","Georgia","TRUE","","2900","14.2","13075","Cook","{""13075"": ""58.22"", ""13019"": ""30.09"", ""13071"": ""7.02"", ""13277"": ""4.67""}","Cook|Berrien|Colquitt|Tift","13075|13019|13071|13277","FALSE","FALSE","America/New_York"
-"31638","30.91134","-83.51955","Morven","GA","Georgia","TRUE","","1047","15.0","13027","Brooks","{""13027"": ""100""}","Brooks","13027","FALSE","FALSE","America/New_York"
-"31639","31.21657","-83.1914","Nashville","GA","Georgia","TRUE","","9943","17.4","13019","Berrien","{""13019"": ""99.64"", ""13173"": ""0.36""}","Berrien|Lanier","13019|13173","FALSE","FALSE","America/New_York"
-"31641","30.93243","-83.09623","Naylor","GA","Georgia","TRUE","","1872","8.6","13185","Lowndes","{""13185"": ""57.84"", ""13173"": ""42.16""}","Lowndes|Lanier","13185|13173","FALSE","FALSE","America/New_York"
-"31642","31.27711","-82.89012","Pearson","GA","Georgia","TRUE","","4804","10.0","13003","Atkinson","{""13003"": ""99.88"", ""13065"": ""0.12""}","Atkinson|Clinch","13003|13065","FALSE","FALSE","America/New_York"
-"31643","30.76923","-83.55976","Quitman","GA","Georgia","TRUE","","8344","12.3","13027","Brooks","{""13027"": ""100""}","Brooks","13027","FALSE","FALSE","America/New_York"
-"31645","31.06185","-83.2171","Ray City","GA","Georgia","TRUE","","5048","38.7","13019","Berrien","{""13019"": ""53.29"", ""13173"": ""33.55"", ""13185"": ""13.15""}","Berrien|Lanier|Lowndes","13019|13173|13185","FALSE","FALSE","America/New_York"
-"31647","31.21053","-83.4306","Sparks","GA","Georgia","TRUE","","3781","32.4","13075","Cook","{""13075"": ""100""}","Cook","13075","FALSE","FALSE","America/New_York"
-"31648","30.70649","-83.01903","Statenville","GA","Georgia","TRUE","","828","69.3","13101","Echols","{""13101"": ""100""}","Echols","13101","FALSE","FALSE","America/New_York"
-"31649","30.96503","-83.00272","Stockton","GA","Georgia","TRUE","","1091","8.5","13173","Lanier","{""13173"": ""100""}","Lanier","13173","FALSE","FALSE","America/New_York"
-"31650","31.39583","-83.02578","Willacoochee","GA","Georgia","TRUE","","3982","15.1","13003","Atkinson","{""13003"": ""67.68"", ""13069"": ""32.32""}","Atkinson|Coffee","13003|13069","FALSE","FALSE","America/New_York"
-"31698","30.84889","-83.28953","Valdosta","GA","Georgia","TRUE","","744","3422.1","13185","Lowndes","{""13185"": ""100""}","Lowndes","13185","FALSE","FALSE","America/New_York"
-"31699","30.97489","-83.20521","Moody Afb","GA","Georgia","TRUE","","685","493.2","13185","Lowndes","{""13185"": ""100""}","Lowndes","13185","FALSE","FALSE","America/New_York"
-"31701","31.55299","-84.15824","Albany","GA","Georgia","TRUE","","18699","267.0","13095","Dougherty","{""13095"": ""96.27"", ""13177"": ""3.73""}","Dougherty|Lee","13095|13177","FALSE","FALSE","America/New_York"
-"31705","31.50973","-84.04437","Albany","GA","Georgia","TRUE","","31935","80.1","13095","Dougherty","{""13095"": ""91.35"", ""13321"": ""6.65"", ""13205"": ""2""}","Dougherty|Worth|Mitchell","13095|13321|13205","FALSE","FALSE","America/New_York"
-"31707","31.58832","-84.20749","Albany","GA","Georgia","TRUE","","25405","523.0","13095","Dougherty","{""13095"": ""96.61"", ""13177"": ""3.39""}","Dougherty|Lee","13095|13177","FALSE","FALSE","America/New_York"
-"31709","32.06395","-84.13411","Americus","GA","Georgia","TRUE","","15802","48.0","13261","Sumter","{""13261"": ""100""}","Sumter","13261","FALSE","FALSE","America/New_York"
-"31711","32.19143","-84.12936","Andersonville","GA","Georgia","TRUE","","715","4.7","13261","Sumter","{""13261"": ""67.47"", ""13193"": ""32.53""}","Sumter|Macon","13261|13193","FALSE","FALSE","America/New_York"
-"31712","31.83562","-83.70924","Arabi","GA","Georgia","TRUE","","1056","8.3","13081","Crisp","{""13081"": ""100""}","Crisp","13081","FALSE","FALSE","America/New_York"
-"31714","31.71538","-83.68522","Ashburn","GA","Georgia","TRUE","","5533","11.4","13287","Turner","{""13287"": ""97.37"", ""13321"": ""2.63""}","Turner|Worth","13287|13321","FALSE","FALSE","America/New_York"
-"31716","31.36467","-84.11836","Baconton","GA","Georgia","TRUE","","3079","14.7","13205","Mitchell","{""13205"": ""100""}","Mitchell","13205","FALSE","FALSE","America/New_York"
-"31719","32.08321","-84.29739","Americus","GA","Georgia","TRUE","","9036","37.1","13261","Sumter","{""13261"": ""100""}","Sumter","13261","FALSE","FALSE","America/New_York"
-"31720","30.87986","-83.72295","Barwick","GA","Georgia","TRUE","","237","19.7","13275","Thomas","{""13275"": ""52.75"", ""13027"": ""47.25""}","Thomas|Brooks","13275|13027","FALSE","FALSE","America/New_York"
-"31721","31.51058","-84.30867","Albany","GA","Georgia","TRUE","","20600","37.3","13095","Dougherty","{""13095"": ""88.25"", ""13177"": ""10.86"", ""13273"": ""0.53"", ""13007"": ""0.35""}","Dougherty|Lee|Terrell|Baker","13095|13177|13273|13007","FALSE","FALSE","America/New_York"
-"31722","31.06731","-83.62254","Berlin","GA","Georgia","TRUE","","473","242.1","13071","Colquitt","{""13071"": ""100""}","Colquitt","13071","FALSE","FALSE","America/New_York"
-"31730","31.20675","-84.28681","Camilla","GA","Georgia","TRUE","","8056","12.3","13205","Mitchell","{""13205"": ""99.11"", ""13087"": ""0.89""}","Mitchell|Decatur","13205|13087","FALSE","FALSE","America/New_York"
-"31733","31.59177","-83.48964","Chula","GA","Georgia","TRUE","","1284","8.7","13277","Tift","{""13277"": ""70.44"", ""13155"": ""29.43"", ""13287"": ""0.13""}","Tift|Irwin|Turner","13277|13155|13287","FALSE","FALSE","America/New_York"
-"31735","31.9691","-83.9645","Cobb","GA","Georgia","TRUE","","686","12.2","13261","Sumter","{""13261"": ""100""}","Sumter","13261","FALSE","FALSE","America/New_York"
-"31738","31.00958","-83.87305","Coolidge","GA","Georgia","TRUE","","1922","11.9","13275","Thomas","{""13275"": ""91.96"", ""13071"": ""8.04""}","Thomas|Colquitt","13275|13071","FALSE","FALSE","America/New_York"
-"31743","31.90926","-84.00625","De Soto","GA","Georgia","TRUE","","343","2.4","13261","Sumter","{""13261"": ""90.95"", ""13177"": ""9.05""}","Sumter|Lee","13261|13177","FALSE","FALSE","America/New_York"
-"31744","31.33828","-83.9042","Doerun","GA","Georgia","TRUE","","2925","9.2","13071","Colquitt","{""13071"": ""59.31"", ""13321"": ""38.54"", ""13205"": ""2.15""}","Colquitt|Worth|Mitchell","13071|13321|13205","FALSE","FALSE","America/New_York"
-"31747","31.17597","-83.58761","Ellenton","GA","Georgia","TRUE","","196","95.7","13071","Colquitt","{""13071"": ""100""}","Colquitt","13071","FALSE","FALSE","America/New_York"
-"31749","31.41299","-83.32721","Enigma","GA","Georgia","TRUE","","2825","18.5","13019","Berrien","{""13019"": ""86.78"", ""13277"": ""12.61"", ""13155"": ""0.61""}","Berrien|Tift|Irwin","13019|13277|13155","FALSE","FALSE","America/New_York"
-"31750","31.73354","-83.21609","Fitzgerald","GA","Georgia","TRUE","","17998","24.7","13017","Ben Hill","{""13017"": ""92.34"", ""13155"": ""7.61"", ""13315"": ""0.04""}","Ben Hill|Irwin|Wilcox","13017|13155|13315","FALSE","FALSE","America/New_York"
-"31756","31.18046","-83.96247","Hartsfield","GA","Georgia","TRUE","","1000","9.9","13071","Colquitt","{""13071"": ""100""}","Colquitt","13071","FALSE","FALSE","America/New_York"
-"31757","30.87257","-83.89935","Thomasville","GA","Georgia","TRUE","","10905","49.5","13275","Thomas","{""13275"": ""100""}","Thomas","13275","FALSE","FALSE","America/New_York"
-"31763","31.74224","-84.14213","Leesburg","GA","Georgia","TRUE","","24352","37.2","13177","Lee","{""13177"": ""99.69"", ""13095"": ""0.31""}","Lee|Dougherty","13177|13095","FALSE","FALSE","America/New_York"
-"31764","31.97813","-84.08293","Leslie","GA","Georgia","TRUE","","1456","7.1","13261","Sumter","{""13261"": ""95.14"", ""13177"": ""4.86""}","Sumter|Lee","13261|13177","FALSE","FALSE","America/New_York"
-"31765","31.094","-84.03135","Meigs","GA","Georgia","TRUE","","2668","12.2","13275","Thomas","{""13275"": ""54.36"", ""13205"": ""28.45"", ""13071"": ""17.19""}","Thomas|Mitchell|Colquitt","13275|13205|13071","FALSE","FALSE","America/New_York"
-"31768","31.19178","-83.84048","Moultrie","GA","Georgia","TRUE","","23016","58.7","13071","Colquitt","{""13071"": ""100""}","Colquitt","13071","FALSE","FALSE","America/New_York"
-"31771","31.24271","-83.64654","Norman Park","GA","Georgia","TRUE","","6903","24.7","13071","Colquitt","{""13071"": ""98.62"", ""13321"": ""1.38""}","Colquitt|Worth","13071|13321","FALSE","FALSE","America/New_York"
-"31772","31.72508","-83.95683","Oakfield","GA","Georgia","TRUE","","518","3.2","13321","Worth","{""13321"": ""100""}","Worth","13321","FALSE","FALSE","America/New_York"
-"31773","30.97623","-84.04652","Ochlocknee","GA","Georgia","TRUE","","3702","16.9","13275","Thomas","{""13275"": ""78.57"", ""13131"": ""21.43""}","Thomas|Grady","13275|13131","FALSE","FALSE","America/New_York"
-"31774","31.55876","-83.2738","Ocilla","GA","Georgia","TRUE","","6831","15.7","13155","Irwin","{""13155"": ""100""}","Irwin","13155","FALSE","FALSE","America/New_York"
-"31775","31.32999","-83.59738","Omega","GA","Georgia","TRUE","","3332","28.2","13277","Tift","{""13277"": ""52.7"", ""13071"": ""38"", ""13321"": ""9.3""}","Tift|Colquitt|Worth","13277|13071|13321","FALSE","FALSE","America/New_York"
-"31778","30.97494","-83.70907","Pavo","GA","Georgia","TRUE","","2277","8.3","13275","Thomas","{""13275"": ""50.23"", ""13027"": ""46.06"", ""13071"": ""3.71""}","Thomas|Brooks|Colquitt","13275|13027|13071","FALSE","FALSE","America/New_York"
-"31779","31.10136","-84.19315","Pelham","GA","Georgia","TRUE","","10092","27.6","13205","Mitchell","{""13205"": ""87.56"", ""13131"": ""12.44""}","Mitchell|Grady","13205|13131","FALSE","FALSE","America/New_York"
-"31780","32.03101","-84.39094","Plains","GA","Georgia","TRUE","","2026","7.8","13261","Sumter","{""13261"": ""99.21"", ""13307"": ""0.79""}","Sumter|Webster","13261|13307","FALSE","FALSE","America/New_York"
-"31781","31.55546","-83.79233","Poulan","GA","Georgia","TRUE","","2263","32.1","13321","Worth","{""13321"": ""100""}","Worth","13321","FALSE","FALSE","America/New_York"
-"31783","31.76223","-83.47123","Rebecca","GA","Georgia","TRUE","","932","3.6","13287","Turner","{""13287"": ""49.32"", ""13155"": ""40.2"", ""13017"": ""10.48""}","Turner|Irwin|Ben Hill","13287|13155|13017","FALSE","FALSE","America/New_York"
-"31784","31.25813","-84.0423","Sale City","GA","Georgia","TRUE","","885","10.2","13205","Mitchell","{""13205"": ""100""}","Mitchell","13205","FALSE","FALSE","America/New_York"
-"31787","31.89587","-84.24413","Smithville","GA","Georgia","TRUE","","1392","6.1","13177","Lee","{""13177"": ""76.61"", ""13261"": ""23.39""}","Lee|Sumter","13177|13261","FALSE","FALSE","America/New_York"
-"31788","31.10952","-83.67988","Moultrie","GA","Georgia","TRUE","","9434","28.3","13071","Colquitt","{""13071"": ""100""}","Colquitt","13071","FALSE","FALSE","America/New_York"
-"31789","31.47993","-83.73614","Sumner","GA","Georgia","TRUE","","947","5.7","13321","Worth","{""13321"": ""100""}","Worth","13321","FALSE","FALSE","America/New_York"
-"31790","31.65164","-83.56899","Sycamore","GA","Georgia","TRUE","","2105","12.6","13287","Turner","{""13287"": ""100""}","Turner","13287","FALSE","FALSE","America/New_York"
-"31791","31.53964","-83.87741","Sylvester","GA","Georgia","TRUE","","11894","24.2","13321","Worth","{""13321"": ""99.65"", ""13095"": ""0.35""}","Worth|Dougherty","13321|13095","FALSE","FALSE","America/New_York"
-"31792","30.7685","-84.04499","Thomasville","GA","Georgia","TRUE","","23572","43.2","13275","Thomas","{""13275"": ""97.42"", ""13131"": ""2.58""}","Thomas|Grady","13275|13131","FALSE","FALSE","America/New_York"
-"31793","31.46191","-83.58728","Tifton","GA","Georgia","TRUE","","9208","35.5","13277","Tift","{""13277"": ""100""}","Tift","13277","FALSE","FALSE","America/New_York"
-"31794","31.44111","-83.44932","Tifton","GA","Georgia","TRUE","","28119","95.8","13277","Tift","{""13277"": ""97.81"", ""13019"": ""2.19""}","Tift|Berrien","13277|13019","FALSE","FALSE","America/New_York"
-"31795","31.473","-83.67902","Ty Ty","GA","Georgia","TRUE","","1819","14.2","13277","Tift","{""13277"": ""67.11"", ""13321"": ""32.89""}","Tift|Worth","13277|13321","FALSE","FALSE","America/New_York"
-"31796","31.77857","-83.87306","Warwick","GA","Georgia","TRUE","","1082","6.9","13321","Worth","{""13321"": ""100""}","Worth","13321","FALSE","FALSE","America/New_York"
-"31798","31.62142","-83.05665","Wray","GA","Georgia","TRUE","","834","4.2","13155","Irwin","{""13155"": ""48.22"", ""13069"": ""38.45"", ""13017"": ""13.33""}","Irwin|Coffee|Ben Hill","13155|13069|13017","FALSE","FALSE","America/New_York"
-"31801","32.51951","-84.59271","Box Springs","GA","Georgia","TRUE","","3237","14.5","13197","Marion","{""13197"": ""60.51"", ""13263"": ""35.54"", ""13215"": ""3.96""}","Marion|Talbot|Muscogee","13197|13263|13215","FALSE","FALSE","America/New_York"
-"31803","32.30393","-84.51953","Buena Vista","GA","Georgia","TRUE","","5317","7.3","13197","Marion","{""13197"": ""98.02"", ""13249"": ""1.84"", ""13307"": ""0.14""}","Marion|Schley|Webster","13197|13249|13307","FALSE","FALSE","America/New_York"
-"31804","32.66248","-84.88516","Cataula","GA","Georgia","TRUE","","6186","45.4","13145","Harris","{""13145"": ""100""}","Harris","13145","FALSE","FALSE","America/New_York"
-"31805","32.26851","-84.74498","Cusseta","GA","Georgia","TRUE","","2745","15.0","13053","Chattahoochee","{""13053"": ""97.56"", ""13259"": ""2.44""}","Chattahoochee|Stewart","13053|13259","FALSE","FALSE","America/New_York"
-"31806","32.26545","-84.30895","Ellaville","GA","Georgia","TRUE","","5183","12.2","13249","Schley","{""13249"": ""98.87"", ""13193"": ""1.13""}","Schley|Macon","13249|13193","FALSE","FALSE","America/New_York"
-"31807","32.63866","-84.80298","Ellerslie","GA","Georgia","TRUE","","3167","105.2","13145","Harris","{""13145"": ""100""}","Harris","13145","FALSE","FALSE","America/New_York"
-"31808","32.63243","-85.00782","Fortson","GA","Georgia","TRUE","","7716","57.3","13145","Harris","{""13145"": ""85.25"", ""13215"": ""14.75""}","Harris|Muscogee","13145|13215","FALSE","FALSE","America/New_York"
-"31810","32.56852","-84.54079","Geneva","GA","Georgia","TRUE","","212","6.5","13263","Talbot","{""13263"": ""100""}","Talbot","13263","FALSE","FALSE","America/New_York"
-"31811","32.74411","-84.93425","Hamilton","GA","Georgia","TRUE","","6442","19.0","13145","Harris","{""13145"": ""100""}","Harris","13145","FALSE","FALSE","America/New_York"
-"31812","32.64406","-84.41195","Junction City","GA","Georgia","TRUE","","547","2.5","13263","Talbot","{""13263"": ""79.47"", ""13269"": ""20.53""}","Talbot|Taylor","13263|13269","FALSE","FALSE","America/New_York"
-"31814","32.19694","-84.85512","Louvale","GA","Georgia","TRUE","","192","4.5","13259","Stewart","{""13259"": ""100""}","Stewart","13259","FALSE","FALSE","America/New_York"
-"31815","32.03555","-84.83843","Lumpkin","GA","Georgia","TRUE","","3889","6.0","13259","Stewart","{""13259"": ""100""}","Stewart","13259","FALSE","FALSE","America/New_York"
-"31816","32.8786","-84.60481","Manchester","GA","Georgia","TRUE","","5271","51.3","13199","Meriwether","{""13199"": ""93.47"", ""13263"": ""6.53""}","Meriwether|Talbot","13199|13263","FALSE","FALSE","America/New_York"
-"31820","32.57942","-84.82601","Midland","GA","Georgia","TRUE","","11750","113.5","13215","Muscogee","{""13215"": ""70.03"", ""13145"": ""29.97""}","Muscogee|Harris","13215|13145","FALSE","FALSE","America/New_York"
-"31821","32.1176","-84.97115","Omaha","GA","Georgia","TRUE","","267","1.1","13259","Stewart","{""13259"": ""100""}","Stewart","13259","FALSE","FALSE","America/New_York"
-"31822","32.86685","-84.91184","Pine Mountain","GA","Georgia","TRUE","","5396","18.2","13145","Harris","{""13145"": ""56.47"", ""13285"": ""31.7"", ""13199"": ""11.83""}","Harris|Troup|Meriwether","13145|13285|13199","FALSE","FALSE","America/New_York"
-"31823","32.80506","-84.82335","Pine Mountain Valley","GA","Georgia","TRUE","","857","38.8","13145","Harris","{""13145"": ""100""}","Harris","13145","FALSE","FALSE","America/New_York"
-"31824","32.05417","-84.52713","Preston","GA","Georgia","TRUE","","1567","5.4","13307","Webster","{""13307"": ""100""}","Webster","13307","FALSE","FALSE","America/New_York"
-"31825","32.11822","-84.66914","Richland","GA","Georgia","TRUE","","2292","6.7","13259","Stewart","{""13259"": ""77.12"", ""13307"": ""22.88""}","Stewart|Webster","13259|13307","FALSE","FALSE","America/New_York"
-"31826","32.79418","-84.70352","Shiloh","GA","Georgia","TRUE","","1872","13.8","13145","Harris","{""13145"": ""54.64"", ""13263"": ""45.36""}","Harris|Talbot","13145|13263","FALSE","FALSE","America/New_York"
-"31827","32.68709","-84.5269","Talbotton","GA","Georgia","TRUE","","2194","5.6","13263","Talbot","{""13263"": ""100""}","Talbot","13263","FALSE","FALSE","America/New_York"
-"31829","32.56846","-84.73521","Upatoi","GA","Georgia","TRUE","","758","25.1","13215","Muscogee","{""13215"": ""77.59"", ""13145"": ""22.41""}","Muscogee|Harris","13215|13145","FALSE","FALSE","America/New_York"
-"31830","32.89651","-84.73184","Warm Springs","GA","Georgia","TRUE","","2558","18.2","13199","Meriwether","{""13199"": ""96.17"", ""13145"": ""3.83""}","Meriwether|Harris","13199|13145","FALSE","FALSE","America/New_York"
-"31831","32.68427","-84.70501","Waverly Hall","GA","Georgia","TRUE","","3272","19.0","13145","Harris","{""13145"": ""88.05"", ""13263"": ""11.95""}","Harris|Talbot","13145|13263","FALSE","FALSE","America/New_York"
-"31832","31.96115","-84.61629","Weston","GA","Georgia","TRUE","","298","4.7","13307","Webster","{""13307"": ""100""}","Webster","13307","FALSE","FALSE","America/New_York"
-"31833","32.8504","-85.08912","West Point","GA","Georgia","TRUE","","7082","27.9","13285","Troup","{""13285"": ""70.28"", ""13145"": ""29.72""}","Troup|Harris","13285|13145","FALSE","FALSE","America/New_York"
-"31836","32.79703","-84.53996","Woodland","GA","Georgia","TRUE","","953","4.4","13263","Talbot","{""13263"": ""100""}","Talbot","13263","FALSE","FALSE","America/New_York"
-"31901","32.46488","-84.97987","Columbus","GA","Georgia","TRUE","","6181","536.7","13215","Muscogee","{""13215"": ""100""}","Muscogee","13215","FALSE","FALSE","America/New_York"
-"31903","32.41475","-84.95323","Columbus","GA","Georgia","TRUE","","17922","690.1","13215","Muscogee","{""13215"": ""100""}","Muscogee","13215","FALSE","FALSE","America/New_York"
-"31904","32.55412","-85.00085","Columbus","GA","Georgia","TRUE","","32717","438.1","13215","Muscogee","{""13215"": ""100""}","Muscogee","13215","FALSE","FALSE","America/New_York"
-"31905","32.37976","-84.90728","Fort Benning","GA","Georgia","TRUE","","17743","177.7","13053","Chattahoochee","{""13053"": ""50.82"", ""13215"": ""49.12"", ""01113"": ""0.06""}","Chattahoochee|Muscogee|Russell","13053|13215|01113","FALSE","FALSE","America/New_York"
-"31906","32.46798","-84.94951","Columbus","GA","Georgia","TRUE","","20349","1144.6","13215","Muscogee","{""13215"": ""100""}","Muscogee","13215","FALSE","FALSE","America/New_York"
-"31907","32.48254","-84.90133","Columbus","GA","Georgia","TRUE","","57967","972.1","13215","Muscogee","{""13215"": ""100""}","Muscogee","13215","FALSE","FALSE","America/New_York"
-"31909","32.54486","-84.92161","Columbus","GA","Georgia","TRUE","","39151","828.9","13215","Muscogee","{""13215"": ""100""}","Muscogee","13215","FALSE","FALSE","America/New_York"
-"32003","30.09813","-81.71255","Fleming Island","FL","Florida","TRUE","","28676","699.1","12019","Clay","{""12019"": ""100""}","Clay","12019","FALSE","FALSE","America/New_York"
-"32008","29.91651","-82.91313","Branford","FL","Florida","TRUE","","4425","12.4","12121","Suwannee","{""12121"": ""48.3"", ""12067"": ""29.35"", ""12041"": ""19.89"", ""12029"": ""2.47""}","Suwannee|Lafayette|Gilchrist|Dixie","12121|12067|12041|12029","FALSE","FALSE","America/New_York"
-"32009","30.41969","-81.97306","Bryceville","FL","Florida","TRUE","","3661","16.4","12089","Nassau","{""12089"": ""100""}","Nassau","12089","FALSE","FALSE","America/New_York"
-"32011","30.57101","-81.84037","Callahan","FL","Florida","TRUE","","14509","32.3","12089","Nassau","{""12089"": ""100""}","Nassau","12089","FALSE","FALSE","America/New_York"
-"32024","30.08057","-82.72642","Lake City","FL","Florida","TRUE","","19452","52.5","12023","Columbia","{""12023"": ""88.8"", ""12121"": ""11.2""}","Columbia|Suwannee","12023|12121","FALSE","FALSE","America/New_York"
-"32025","30.11075","-82.57601","Lake City","FL","Florida","TRUE","","23416","92.8","12023","Columbia","{""12023"": ""100""}","Columbia","12023","FALSE","FALSE","America/New_York"
-"32033","29.78899","-81.44175","Elkton","FL","Florida","TRUE","","4676","23.4","12109","St. Johns","{""12109"": ""100""}","St. Johns","12109","FALSE","FALSE","America/New_York"
-"32034","30.60546","-81.49163","Fernandina Beach","FL","Florida","TRUE","","36395","247.9","12089","Nassau","{""12089"": ""100""}","Nassau","12089","FALSE","FALSE","America/New_York"
-"32038","29.93801","-82.70056","Fort White","FL","Florida","TRUE","","10184","36.7","12023","Columbia","{""12023"": ""100""}","Columbia","12023","FALSE","FALSE","America/New_York"
-"32040","30.24347","-82.23885","Glen Saint Mary","FL","Florida","TRUE","","7329","23.2","12003","Baker","{""12003"": ""100""}","Baker","12003","FALSE","FALSE","America/New_York"
-"32043","29.93483","-81.72972","Green Cove Springs","FL","Florida","TRUE","","26743","50.9","12019","Clay","{""12019"": ""99.3"", ""12107"": ""0.7""}","Clay|Putnam","12019|12107","FALSE","FALSE","America/New_York"
-"32044","29.86109","-82.17457","Hampton","FL","Florida","TRUE","","1711","28.3","12007","Bradford","{""12007"": ""100""}","Bradford","12007","FALSE","FALSE","America/New_York"
-"32046","30.70318","-81.91857","Hilliard","FL","Florida","TRUE","","9418","18.8","12089","Nassau","{""12089"": ""100""}","Nassau","12089","FALSE","FALSE","America/New_York"
-"32052","30.47855","-82.93597","Jasper","FL","Florida","TRUE","","9427","13.2","12047","Hamilton","{""12047"": ""100""}","Hamilton","12047","FALSE","FALSE","America/New_York"
-"32053","30.56817","-83.13104","Jennings","FL","Florida","TRUE","","3538","11.1","12047","Hamilton","{""12047"": ""100""}","Hamilton","12047","FALSE","FALSE","America/New_York"
-"32054","30.02746","-82.39275","Lake Butler","FL","Florida","TRUE","","11811","21.3","12125","Union","{""12125"": ""95.82"", ""12007"": ""4.18""}","Union|Bradford","12125|12007","FALSE","FALSE","America/New_York"
-"32055","30.27019","-82.62539","Lake City","FL","Florida","TRUE","","16590","34.1","12023","Columbia","{""12023"": ""100""}","Columbia","12023","FALSE","FALSE","America/New_York"
-"32058","30.08343","-82.10835","Lawtey","FL","Florida","TRUE","","4368","23.4","12007","Bradford","{""12007"": ""96.15"", ""12125"": ""3.19"", ""12019"": ""0.66""}","Bradford|Union|Clay","12007|12125|12019","FALSE","FALSE","America/New_York"
-"32059","30.38385","-83.2711","Lee","FL","Florida","TRUE","","2418","7.9","12079","Madison","{""12079"": ""100""}","Madison","12079","FALSE","FALSE","America/New_York"
-"32060","30.27522","-83.04974","Live Oak","FL","Florida","TRUE","","24064","23.5","12121","Suwannee","{""12121"": ""100""}","Suwannee","12121","FALSE","FALSE","America/New_York"
-"32061","30.09757","-82.51031","Lulu","FL","Florida","TRUE","","514","9.0","12023","Columbia","{""12023"": ""100""}","Columbia","12023","FALSE","FALSE","America/New_York"
-"32062","30.1334","-82.98041","McAlpin","FL","Florida","TRUE","","1826","11.4","12121","Suwannee","{""12121"": ""100""}","Suwannee","12121","FALSE","FALSE","America/New_York"
-"32063","30.24678","-82.11208","Macclenny","FL","Florida","TRUE","","13482","50.9","12003","Baker","{""12003"": ""100""}","Baker","12003","FALSE","FALSE","America/New_York"
-"32064","30.29566","-82.98443","Live Oak","FL","Florida","TRUE","","6890","343.2","12121","Suwannee","{""12121"": ""100""}","Suwannee","12121","FALSE","FALSE","America/New_York"
-"32065","30.14921","-81.80119","Orange Park","FL","Florida","TRUE","","37195","834.7","12019","Clay","{""12019"": ""100""}","Clay","12019","FALSE","FALSE","America/New_York"
-"32066","30.03677","-83.23398","Mayo","FL","Florida","TRUE","","7420","10.3","12067","Lafayette","{""12067"": ""100""}","Lafayette","12067","FALSE","FALSE","America/New_York"
-"32068","30.07889","-81.88326","Middleburg","FL","Florida","TRUE","","57305","218.9","12019","Clay","{""12019"": ""100""}","Clay","12019","FALSE","FALSE","America/New_York"
-"32071","30.04168","-82.94442","O'Brien","FL","Florida","TRUE","","3903","14.3","12121","Suwannee","{""12121"": ""100""}","Suwannee","12121","FALSE","FALSE","America/New_York"
-"32073","30.17026","-81.73932","Orange Park","FL","Florida","TRUE","","42520","995.5","12019","Clay","{""12019"": ""99.02"", ""12031"": ""0.98""}","Clay|Duval","12019|12031","FALSE","FALSE","America/New_York"
-"32079","29.9784","-81.80593","Penney Farms","FL","Florida","TRUE","","451","349.8","12019","Clay","{""12019"": ""100""}","Clay","12019","FALSE","FALSE","America/New_York"
-"32080","29.82548","-81.2745","Saint Augustine","FL","Florida","TRUE","","22261","553.3","12109","St. Johns","{""12109"": ""100""}","St. Johns","12109","FALSE","FALSE","America/New_York"
-"32081","30.12037","-81.41284","Ponte Vedra","FL","Florida","TRUE","","14856","150.2","12109","St. Johns","{""12109"": ""100""}","St. Johns","12109","FALSE","FALSE","America/New_York"
-"32082","30.1254","-81.36595","Ponte Vedra Beach","FL","Florida","TRUE","","30539","354.3","12109","St. Johns","{""12109"": ""100""}","St. Johns","12109","FALSE","FALSE","America/New_York"
-"32083","30.09216","-82.23423","Raiford","FL","Florida","TRUE","","4115","39.6","12125","Union","{""12125"": ""71.39"", ""12007"": ""28.61""}","Union|Bradford","12125|12007","FALSE","FALSE","America/New_York"
-"32084","29.91736","-81.368","Saint Augustine","FL","Florida","TRUE","","35761","290.0","12109","St. Johns","{""12109"": ""100""}","St. Johns","12109","FALSE","FALSE","America/New_York"
-"32086","29.75675","-81.30311","Saint Augustine","FL","Florida","TRUE","","29580","173.6","12109","St. Johns","{""12109"": ""100""}","St. Johns","12109","FALSE","FALSE","America/New_York"
-"32087","30.39035","-82.28513","Sanderson","FL","Florida","TRUE","","7097","20.3","12003","Baker","{""12003"": ""100""}","Baker","12003","FALSE","FALSE","America/New_York"
-"32091","29.93118","-82.12545","Starke","FL","Florida","TRUE","","15256","44.1","12007","Bradford","{""12007"": ""97.12"", ""12019"": ""2.88""}","Bradford|Clay","12007|12019","FALSE","FALSE","America/New_York"
-"32092","29.93407","-81.51364","Saint Augustine","FL","Florida","TRUE","","37014","113.5","12109","St. Johns","{""12109"": ""100""}","St. Johns","12109","FALSE","FALSE","America/New_York"
-"32094","30.196","-82.82962","Wellborn","FL","Florida","TRUE","","2575","17.2","12121","Suwannee","{""12121"": ""92.47"", ""12023"": ""7.53""}","Suwannee|Columbia","12121|12023","FALSE","FALSE","America/New_York"
-"32095","30.01101","-81.41077","Saint Augustine","FL","Florida","TRUE","","11800","91.5","12109","St. Johns","{""12109"": ""100""}","St. Johns","12109","FALSE","FALSE","America/New_York"
-"32096","30.43954","-82.69984","White Springs","FL","Florida","TRUE","","2186","5.2","12047","Hamilton","{""12047"": ""64.78"", ""12023"": ""34.19"", ""12121"": ""1.02""}","Hamilton|Columbia|Suwannee","12047|12023|12121","FALSE","FALSE","America/New_York"
-"32097","30.66378","-81.62968","Yulee","FL","Florida","TRUE","","19030","55.3","12089","Nassau","{""12089"": ""100""}","Nassau","12089","FALSE","FALSE","America/New_York"
-"32102","29.1468","-81.56166","Astor","FL","Florida","TRUE","","2283","14.0","12069","Lake","{""12069"": ""77.93"", ""12127"": ""22.07""}","Lake|Volusia","12069|12127","FALSE","FALSE","America/New_York"
-"32110","29.42166","-81.33933","Bunnell","FL","Florida","TRUE","","8267","12.1","12035","Flagler","{""12035"": ""100""}","Flagler","12035","FALSE","FALSE","America/New_York"
-"32112","29.4272","-81.55791","Crescent City","FL","Florida","TRUE","","7646","55.6","12107","Putnam","{""12107"": ""100""}","Putnam","12107","FALSE","FALSE","America/New_York"
-"32113","29.39954","-82.08146","Citra","FL","Florida","TRUE","","5216","24.7","12083","Marion","{""12083"": ""100""}","Marion","12083","FALSE","FALSE","America/New_York"
-"32114","29.19393","-81.05145","Daytona Beach","FL","Florida","TRUE","","32847","750.1","12127","Volusia","{""12127"": ""100""}","Volusia","12127","FALSE","FALSE","America/New_York"
-"32117","29.2353","-81.06566","Daytona Beach","FL","Florida","TRUE","","26425","903.1","12127","Volusia","{""12127"": ""100""}","Volusia","12127","FALSE","FALSE","America/New_York"
-"32118","29.21058","-81.00438","Daytona Beach","FL","Florida","TRUE","","17520","1596.3","12127","Volusia","{""12127"": ""100""}","Volusia","12127","FALSE","FALSE","America/New_York"
-"32119","29.16002","-81.02691","Daytona Beach","FL","Florida","TRUE","","22344","1097.1","12127","Volusia","{""12127"": ""100""}","Volusia","12127","FALSE","FALSE","America/New_York"
-"32124","29.1654","-81.14927","Daytona Beach","FL","Florida","TRUE","","6117","52.3","12127","Volusia","{""12127"": ""100""}","Volusia","12127","FALSE","FALSE","America/New_York"
-"32127","29.10669","-80.97643","Port Orange","FL","Florida","TRUE","","30398","740.8","12127","Volusia","{""12127"": ""100""}","Volusia","12127","FALSE","FALSE","America/New_York"
-"32128","29.09798","-81.07406","Port Orange","FL","Florida","TRUE","","21183","244.8","12127","Volusia","{""12127"": ""100""}","Volusia","12127","FALSE","FALSE","America/New_York"
-"32129","29.13714","-81.02392","Port Orange","FL","Florida","TRUE","","22185","1152.1","12127","Volusia","{""12127"": ""100""}","Volusia","12127","FALSE","FALSE","America/New_York"
-"32130","29.15571","-81.34467","De Leon Springs","FL","Florida","TRUE","","5703","23.9","12127","Volusia","{""12127"": ""100""}","Volusia","12127","FALSE","FALSE","America/New_York"
-"32131","29.6814","-81.57014","East Palatka","FL","Florida","TRUE","","4365","50.1","12107","Putnam","{""12107"": ""100""}","Putnam","12107","FALSE","FALSE","America/New_York"
-"32132","28.9768","-80.9256","Edgewater","FL","Florida","TRUE","","7570","389.5","12127","Volusia","{""12127"": ""100""}","Volusia","12127","FALSE","FALSE","America/New_York"
-"32133","29.02023","-81.90928","Eastlake Weir","FL","Florida","TRUE","","17","18.6","12083","Marion","{""12083"": ""100""}","Marion","12083","FALSE","FALSE","America/New_York"
-"32134","29.38283","-81.83703","Fort McCoy","FL","Florida","TRUE","","7754","12.4","12083","Marion","{""12083"": ""96.81"", ""12107"": ""2.89"", ""12069"": ""0.3""}","Marion|Putnam|Lake","12083|12107|12069","FALSE","FALSE","America/New_York"
-"32136","29.45243","-81.14089","Flagler Beach","FL","Florida","TRUE","","8306","171.0","12035","Flagler","{""12035"": ""97.39"", ""12127"": ""2.61""}","Flagler|Volusia","12035|12127","FALSE","FALSE","America/New_York"
-"32137","29.57972","-81.22272","Palm Coast","FL","Florida","TRUE","","43876","286.9","12035","Flagler","{""12035"": ""100""}","Flagler","12035","FALSE","FALSE","America/New_York"
-"32139","29.37617","-81.61594","Georgetown","FL","Florida","TRUE","","971","31.1","12107","Putnam","{""12107"": ""100""}","Putnam","12107","FALSE","FALSE","America/New_York"
-"32140","29.75924","-81.86791","Florahome","FL","Florida","TRUE","","1439","20.2","12107","Putnam","{""12107"": ""100""}","Putnam","12107","FALSE","FALSE","America/New_York"
-"32141","28.92304","-80.90102","Edgewater","FL","Florida","TRUE","","19031","312.4","12127","Volusia","{""12127"": ""100""}","Volusia","12127","FALSE","FALSE","America/New_York"
-"32145","29.67783","-81.42201","Hastings","FL","Florida","TRUE","","5723","23.9","12109","St. Johns","{""12109"": ""100""}","St. Johns","12109","FALSE","FALSE","America/New_York"
-"32147","29.60283","-81.78615","Hollister","FL","Florida","TRUE","","790","17.9","12107","Putnam","{""12107"": ""100""}","Putnam","12107","FALSE","FALSE","America/New_York"
-"32148","29.60799","-81.8841","Interlachen","FL","Florida","TRUE","","10710","48.9","12107","Putnam","{""12107"": ""100""}","Putnam","12107","FALSE","FALSE","America/New_York"
-"32157","29.46809","-81.57881","Lake Como","FL","Florida","TRUE","","363","89.3","12107","Putnam","{""12107"": ""100""}","Putnam","12107","FALSE","FALSE","America/New_York"
-"32159","28.9258","-81.90291","Lady Lake","FL","Florida","TRUE","","29920","363.8","12069","Lake","{""12069"": ""69.58"", ""12119"": ""30.42""}","Lake|Sumter","12069|12119","FALSE","FALSE","America/New_York"
-"32162","28.91696","-81.99287","The Villages","FL","Florida","TRUE","","54951","913.8","12119","Sumter","{""12119"": ""82.28"", ""12083"": ""17.72""}","Sumter|Marion","12119|12083","FALSE","FALSE","America/New_York"
-"32164","29.48409","-81.21789","Palm Coast","FL","Florida","TRUE","","47341","548.9","12035","Flagler","{""12035"": ""100""}","Flagler","12035","FALSE","FALSE","America/New_York"
-"32168","28.97367","-81.02742","New Smyrna Beach","FL","Florida","TRUE","","27679","65.1","12127","Volusia","{""12127"": ""100""}","Volusia","12127","FALSE","FALSE","America/New_York"
-"32169","28.97696","-80.87264","New Smyrna Beach","FL","Florida","TRUE","","10228","269.8","12127","Volusia","{""12127"": ""100""}","Volusia","12127","FALSE","FALSE","America/New_York"
-"32174","29.28542","-81.16355","Ormond Beach","FL","Florida","TRUE","","51165","159.8","12127","Volusia","{""12127"": ""96.32"", ""12035"": ""3.68""}","Volusia|Flagler","12127|12035","FALSE","FALSE","America/New_York"
-"32176","29.32552","-81.06034","Ormond Beach","FL","Florida","TRUE","","14460","1063.4","12127","Volusia","{""12127"": ""100""}","Volusia","12127","FALSE","FALSE","America/New_York"
-"32177","29.69121","-81.71137","Palatka","FL","Florida","TRUE","","26845","43.4","12107","Putnam","{""12107"": ""100""}","Putnam","12107","FALSE","FALSE","America/New_York"
-"32179","29.08858","-81.88794","Ocklawaha","FL","Florida","TRUE","","7919","44.4","12083","Marion","{""12083"": ""100""}","Marion","12083","FALSE","FALSE","America/New_York"
-"32180","29.2233","-81.44496","Pierson","FL","Florida","TRUE","","4535","16.4","12127","Volusia","{""12127"": ""99.67"", ""12035"": ""0.33""}","Volusia|Flagler","12127|12035","FALSE","FALSE","America/New_York"
-"32181","29.50399","-81.60013","Pomona Park","FL","Florida","TRUE","","2558","39.4","12107","Putnam","{""12107"": ""100""}","Putnam","12107","FALSE","FALSE","America/New_York"
-"32187","29.57759","-81.55406","San Mateo","FL","Florida","TRUE","","1871","30.4","12107","Putnam","{""12107"": ""100""}","Putnam","12107","FALSE","FALSE","America/New_York"
-"32189","29.55561","-81.65121","Satsuma","FL","Florida","TRUE","","5874","92.9","12107","Putnam","{""12107"": ""100""}","Putnam","12107","FALSE","FALSE","America/New_York"
-"32190","29.34155","-81.48555","Seville","FL","Florida","TRUE","","1309","16.0","12127","Volusia","{""12127"": ""100""}","Volusia","12127","FALSE","FALSE","America/New_York"
-"32193","29.49054","-81.65295","Welaka","FL","Florida","TRUE","","705","34.4","12107","Putnam","{""12107"": ""100""}","Putnam","12107","FALSE","FALSE","America/New_York"
-"32195","28.98584","-81.90181","Weirsdale","FL","Florida","TRUE","","2926","53.3","12083","Marion","{""12083"": ""89.78"", ""12069"": ""10.22""}","Marion|Lake","12083|12069","FALSE","FALSE","America/New_York"
-"32202","30.32503","-81.64802","Jacksonville","FL","Florida","TRUE","","6523","1268.6","12031","Duval","{""12031"": ""100""}","Duval","12031","FALSE","FALSE","America/New_York"
-"32204","30.31653","-81.68072","Jacksonville","FL","Florida","TRUE","","7547","1073.2","12031","Duval","{""12031"": ""100""}","Duval","12031","FALSE","FALSE","America/New_York"
-"32205","30.30287","-81.72197","Jacksonville","FL","Florida","TRUE","","30305","1541.8","12031","Duval","{""12031"": ""100""}","Duval","12031","FALSE","FALSE","America/New_York"
-"32206","30.35056","-81.63841","Jacksonville","FL","Florida","TRUE","","16027","1003.7","12031","Duval","{""12031"": ""100""}","Duval","12031","FALSE","FALSE","America/New_York"
-"32207","30.29","-81.63997","Jacksonville","FL","Florida","TRUE","","35488","1188.4","12031","Duval","{""12031"": ""100""}","Duval","12031","FALSE","FALSE","America/New_York"
-"32208","30.39343","-81.68254","Jacksonville","FL","Florida","TRUE","","30841","1024.6","12031","Duval","{""12031"": ""100""}","Duval","12031","FALSE","FALSE","America/New_York"
-"32209","30.36106","-81.69551","Jacksonville","FL","Florida","TRUE","","34945","1445.0","12031","Duval","{""12031"": ""100""}","Duval","12031","FALSE","FALSE","America/New_York"
-"32210","30.26558","-81.74463","Jacksonville","FL","Florida","TRUE","","62048","1188.7","12031","Duval","{""12031"": ""100""}","Duval","12031","FALSE","FALSE","America/New_York"
-"32211","30.33266","-81.58402","Jacksonville","FL","Florida","TRUE","","35657","1664.8","12031","Duval","{""12031"": ""100""}","Duval","12031","FALSE","FALSE","America/New_York"
-"32212","30.21908","-81.67892","Jacksonville","FL","Florida","TRUE","","2466","179.9","12031","Duval","{""12031"": ""100""}","Duval","12031","FALSE","FALSE","America/New_York"
-"32216","30.27874","-81.58314","Jacksonville","FL","Florida","TRUE","","38231","1173.0","12031","Duval","{""12031"": ""100""}","Duval","12031","FALSE","FALSE","America/New_York"
-"32217","30.23919","-81.62723","Jacksonville","FL","Florida","TRUE","","19899","1454.4","12031","Duval","{""12031"": ""100""}","Duval","12031","FALSE","FALSE","America/New_York"
-"32218","30.48665","-81.66922","Jacksonville","FL","Florida","TRUE","","64007","255.4","12031","Duval","{""12031"": ""100""}","Duval","12031","FALSE","FALSE","America/New_York"
-"32219","30.43045","-81.79383","Jacksonville","FL","Florida","TRUE","","12685","91.6","12031","Duval","{""12031"": ""100""}","Duval","12031","FALSE","FALSE","America/New_York"
-"32220","30.35047","-81.86658","Jacksonville","FL","Florida","TRUE","","12981","81.6","12031","Duval","{""12031"": ""100""}","Duval","12031","FALSE","FALSE","America/New_York"
-"32221","30.25633","-81.8542","Jacksonville","FL","Florida","TRUE","","30900","332.3","12031","Duval","{""12031"": ""100""}","Duval","12031","FALSE","FALSE","America/New_York"
-"32222","30.21682","-81.82881","Jacksonville","FL","Florida","TRUE","","11521","384.7","12031","Duval","{""12031"": ""100""}","Duval","12031","FALSE","FALSE","America/New_York"
-"32223","30.15489","-81.64815","Jacksonville","FL","Florida","TRUE","","24571","822.9","12031","Duval","{""12031"": ""100""}","Duval","12031","FALSE","FALSE","America/New_York"
-"32224","30.27027","-81.46796","Jacksonville","FL","Florida","TRUE","","44058","803.8","12031","Duval","{""12031"": ""99.89"", ""12109"": ""0.11""}","Duval|St. Johns","12031|12109","FALSE","FALSE","America/New_York"
-"32225","30.35751","-81.50602","Jacksonville","FL","Florida","TRUE","","55018","803.3","12031","Duval","{""12031"": ""100""}","Duval","12031","FALSE","FALSE","America/New_York"
-"32226","30.46439","-81.50977","Jacksonville","FL","Florida","TRUE","","15667","70.6","12031","Duval","{""12031"": ""100""}","Duval","12031","FALSE","FALSE","America/New_York"
-"32227","30.39001","-81.4072","Jacksonville","FL","Florida","TRUE","","3337","1165.5","12031","Duval","{""12031"": ""100""}","Duval","12031","FALSE","FALSE","America/New_York"
-"32228","30.39158","-81.40022","Jacksonville","FL","Florida","TRUE","","470","1402.2","12031","Duval","{""12031"": ""100""}","Duval","12031","FALSE","FALSE","America/New_York"
-"32233","30.35851","-81.42111","Atlantic Beach","FL","Florida","TRUE","","24979","945.1","12031","Duval","{""12031"": ""100""}","Duval","12031","FALSE","FALSE","America/New_York"
-"32234","30.2146","-81.98373","Jacksonville","FL","Florida","TRUE","","5867","17.5","12031","Duval","{""12031"": ""60.05"", ""12019"": ""34.82"", ""12003"": ""3.6"", ""12089"": ""1.53""}","Duval|Clay|Baker|Nassau","12031|12019|12003|12089","FALSE","FALSE","America/New_York"
-"32244","30.21791","-81.75349","Jacksonville","FL","Florida","TRUE","","59402","972.7","12031","Duval","{""12031"": ""100""}","Duval","12031","FALSE","FALSE","America/New_York"
-"32246","30.29399","-81.51797","Jacksonville","FL","Florida","TRUE","","51589","1056.2","12031","Duval","{""12031"": ""100""}","Duval","12031","FALSE","FALSE","America/New_York"
-"32250","30.27811","-81.40904","Jacksonville Beach","FL","Florida","TRUE","","27246","1222.4","12031","Duval","{""12031"": ""100""}","Duval","12031","FALSE","FALSE","America/New_York"
-"32254","30.34156","-81.7358","Jacksonville","FL","Florida","TRUE","","13431","418.1","12031","Duval","{""12031"": ""100""}","Duval","12031","FALSE","FALSE","America/New_York"
-"32256","30.18783","-81.50041","Jacksonville","FL","Florida","TRUE","","47943","291.4","12031","Duval","{""12031"": ""100""}","Duval","12031","FALSE","FALSE","America/New_York"
-"32257","30.19519","-81.61233","Jacksonville","FL","Florida","TRUE","","39000","1229.6","12031","Duval","{""12031"": ""100""}","Duval","12031","FALSE","FALSE","America/New_York"
-"32258","30.13755","-81.54844","Jacksonville","FL","Florida","TRUE","","34036","703.5","12031","Duval","{""12031"": ""100""}","Duval","12031","FALSE","FALSE","America/New_York"
-"32259","30.07586","-81.58724","Saint Johns","FL","Florida","TRUE","","52296","369.3","12109","St. Johns","{""12109"": ""100""}","St. Johns","12109","FALSE","FALSE","America/New_York"
-"32266","30.31645","-81.41177","Neptune Beach","FL","Florida","TRUE","","7101","1173.1","12031","Duval","{""12031"": ""100""}","Duval","12031","FALSE","FALSE","America/New_York"
-"32277","30.37275","-81.59459","Jacksonville","FL","Florida","TRUE","","32327","1742.6","12031","Duval","{""12031"": ""100""}","Duval","12031","FALSE","FALSE","America/New_York"
-"32301","30.42563","-84.25823","Tallahassee","FL","Florida","TRUE","","31317","1169.6","12073","Leon","{""12073"": ""100""}","Leon","12073","FALSE","FALSE","America/New_York"
-"32303","30.51435","-84.34363","Tallahassee","FL","Florida","TRUE","","48507","527.3","12073","Leon","{""12073"": ""100""}","Leon","12073","FALSE","FALSE","America/New_York"
-"32304","30.45363","-84.35159","Tallahassee","FL","Florida","TRUE","","49927","1230.7","12073","Leon","{""12073"": ""100""}","Leon","12073","FALSE","FALSE","America/New_York"
-"32305","30.334","-84.28707","Tallahassee","FL","Florida","TRUE","","20902","90.1","12073","Leon","{""12073"": ""100""}","Leon","12073","FALSE","FALSE","America/New_York"
-"32308","30.47711","-84.22459","Tallahassee","FL","Florida","TRUE","","22029","576.0","12073","Leon","{""12073"": ""100""}","Leon","12073","FALSE","FALSE","America/New_York"
-"32309","30.56622","-84.09823","Tallahassee","FL","Florida","TRUE","","31597","109.8","12073","Leon","{""12073"": ""100""}","Leon","12073","FALSE","FALSE","America/New_York"
-"32310","30.39473","-84.51186","Tallahassee","FL","Florida","TRUE","","15544","56.9","12073","Leon","{""12073"": ""100""}","Leon","12073","FALSE","FALSE","America/New_York"
-"32311","30.40038","-84.16254","Tallahassee","FL","Florida","TRUE","","22264","192.7","12073","Leon","{""12073"": ""100""}","Leon","12073","FALSE","FALSE","America/New_York"
-"32312","30.60551","-84.22893","Tallahassee","FL","Florida","TRUE","","32783","121.4","12073","Leon","{""12073"": ""100""}","Leon","12073","FALSE","FALSE","America/New_York"
-"32317","30.46508","-84.1128","Tallahassee","FL","Florida","TRUE","","14876","150.1","12073","Leon","{""12073"": ""100""}","Leon","12073","FALSE","FALSE","America/New_York"
-"32320","29.73685","-85.0901","Apalachicola","FL","Florida","TRUE","","3887","37.6","12037","Franklin","{""12037"": ""100""}","Franklin","12037","FALSE","FALSE","America/New_York"
-"32321","30.26045","-84.98131","Bristol","FL","Florida","TRUE","","6321","6.0","12077","Liberty","{""12077"": ""100"", ""12037"": ""0""}","Liberty|Franklin","12077|12037","FALSE","FALSE","America/New_York"
-"32322","29.90203","-84.63885","Carrabelle","FL","Florida","TRUE","","3994","21.5","12037","Franklin","{""12037"": ""100""}","Franklin","12037","FALSE","FALSE","America/New_York"
-"32323","29.8933","-84.61289","Lanark Village","FL","Florida","TRUE","","137","6.8","12037","Franklin","{""12037"": ""100""}","Franklin","12037","FALSE","FALSE","America/New_York"
-"32324","30.6525","-84.79152","Chattahoochee","FL","Florida","TRUE","","4716","26.0","12039","Gadsden","{""12039"": ""100""}","Gadsden","12039","FALSE","FALSE","America/New_York"
-"32327","30.18667","-84.30565","Crawfordville","FL","Florida","TRUE","","28525","47.6","12129","Wakulla","{""12129"": ""99.96"", ""12073"": ""0.04""}","Wakulla|Leon","12129|12073","FALSE","FALSE","America/New_York"
-"32328","29.83913","-84.93159","Eastpoint","FL","Florida","TRUE","","3415","11.7","12037","Franklin","{""12037"": ""100""}","Franklin","12037","FALSE","FALSE","America/New_York"
-"32330","30.57985","-84.75048","Greensboro","FL","Florida","TRUE","","651","74.6","12039","Gadsden","{""12039"": ""100""}","Gadsden","12039","FALSE","FALSE","America/New_York"
-"32331","30.43978","-83.64028","Greenville","FL","Florida","TRUE","","4193","5.6","12079","Madison","{""12079"": ""76.8"", ""12123"": ""12.59"", ""12065"": ""10.61""}","Madison|Taylor|Jefferson","12079|12123|12065","FALSE","FALSE","America/New_York"
-"32332","30.61005","-84.66868","Gretna","FL","Florida","TRUE","","1077","92.7","12039","Gadsden","{""12039"": ""100""}","Gadsden","12039","FALSE","FALSE","America/New_York"
-"32333","30.60642","-84.41261","Havana","FL","Florida","TRUE","","11314","41.3","12039","Gadsden","{""12039"": ""100""}","Gadsden","12039","FALSE","FALSE","America/New_York"
-"32334","30.25717","-84.74533","Hosford","FL","Florida","TRUE","","2024","4.7","12077","Liberty","{""12077"": ""100""}","Liberty","12077","FALSE","FALSE","America/New_York"
-"32336","30.25375","-83.85901","Lamont","FL","Florida","TRUE","","1128","2.4","12065","Jefferson","{""12065"": ""62.26"", ""12079"": ""26.17"", ""12123"": ""11.57""}","Jefferson|Madison|Taylor","12065|12079|12123","FALSE","FALSE","America/New_York"
-"32340","30.46196","-83.43505","Madison","FL","Florida","TRUE","","11374","18.8","12079","Madison","{""12079"": ""100""}","Madison","12079","FALSE","FALSE","America/New_York"
-"32343","30.48489","-84.47691","Midway","FL","Florida","TRUE","","3221","47.0","12039","Gadsden","{""12039"": ""100""}","Gadsden","12039","FALSE","FALSE","America/New_York"
-"32344","30.44055","-83.909","Monticello","FL","Florida","TRUE","","12356","9.3","12065","Jefferson","{""12065"": ""100""}","Jefferson","12065","FALSE","FALSE","America/New_York"
-"32346","29.99797","-84.39201","Panacea","FL","Florida","TRUE","","1933","22.6","12129","Wakulla","{""12129"": ""86.18"", ""12037"": ""13.82""}","Wakulla|Franklin","12129|12037","FALSE","FALSE","America/New_York"
-"32347","30.16688","-83.61601","Perry","FL","Florida","TRUE","","7609","27.8","12123","Taylor","{""12123"": ""100""}","Taylor","12123","FALSE","FALSE","America/New_York"
-"32348","29.96859","-83.59698","Perry","FL","Florida","TRUE","","12935","15.7","12123","Taylor","{""12123"": ""100""}","Taylor","12123","FALSE","FALSE","America/New_York"
-"32350","30.58696","-83.32292","Pinetta","FL","Florida","TRUE","","1272","9.6","12079","Madison","{""12079"": ""100""}","Madison","12079","FALSE","FALSE","America/New_York"
-"32351","30.52228","-84.68182","Quincy","FL","Florida","TRUE","","18720","34.5","12039","Gadsden","{""12039"": ""100""}","Gadsden","12039","FALSE","FALSE","America/New_York"
-"32352","30.65117","-84.58667","Quincy","FL","Florida","TRUE","","6246","25.0","12039","Gadsden","{""12039"": ""100""}","Gadsden","12039","FALSE","FALSE","America/New_York"
-"32355","30.17164","-84.20722","Saint Marks","FL","Florida","TRUE","","244","27.5","12129","Wakulla","{""12129"": ""100""}","Wakulla","12129","FALSE","FALSE","America/New_York"
-"32356","29.85179","-83.43124","Salem","FL","Florida","TRUE","","0","0.0","12123","Taylor","{""12123"": ""100""}","Taylor","12123","FALSE","FALSE","America/New_York"
-"32358","30.11419","-84.5603","Sopchoppy","FL","Florida","TRUE","","2021","5.0","12129","Wakulla","{""12129"": ""96.08"", ""12037"": ""3.92""}","Wakulla|Franklin","12129|12037","FALSE","FALSE","America/New_York"
-"32359","29.67905","-83.38688","Steinhatchee","FL","Florida","TRUE","","1271","3.1","12123","Taylor","{""12123"": ""71.82"", ""12029"": ""28.18""}","Taylor|Dixie","12123|12029","FALSE","FALSE","America/New_York"
-"32361","30.35769","-83.9886","Wacissa","FL","Florida","TRUE","","383","64.5","12065","Jefferson","{""12065"": ""100""}","Jefferson","12065","FALSE","FALSE","America/New_York"
-"32399","30.43276","-84.26982","Tallahassee","FL","Florida","TRUE","","0","0.0","12073","Leon","{""12073"": ""100""}","Leon","12073","FALSE","FALSE","America/New_York"
-"32401","30.15978","-85.6608","Panama City","FL","Florida","TRUE","","22027","794.9","12005","Bay","{""12005"": ""100""}","Bay","12005","FALSE","FALSE","America/Chicago"
-"32403","30.05338","-85.5568","Panama City","FL","Florida","TRUE","","2779","24.3","12005","Bay","{""12005"": ""100""}","Bay","12005","FALSE","FALSE","America/Chicago"
-"32404","30.20096","-85.50611","Panama City","FL","Florida","TRUE","","39503","118.3","12005","Bay","{""12005"": ""100""}","Bay","12005","FALSE","FALSE","America/Chicago"
-"32405","30.2004","-85.6679","Panama City","FL","Florida","TRUE","","32239","655.0","12005","Bay","{""12005"": ""100""}","Bay","12005","FALSE","FALSE","America/Chicago"
-"32407","30.20066","-85.79129","Panama City Beach","FL","Florida","TRUE","","10822","301.1","12005","Bay","{""12005"": ""100""}","Bay","12005","FALSE","FALSE","America/Chicago"
-"32408","30.13938","-85.7253","Panama City","FL","Florida","TRUE","","18864","690.2","12005","Bay","{""12005"": ""100""}","Bay","12005","FALSE","FALSE","America/Chicago"
-"32409","30.3484","-85.6598","Panama City","FL","Florida","TRUE","","10144","51.8","12005","Bay","{""12005"": ""100""}","Bay","12005","FALSE","FALSE","America/Chicago"
-"32410","29.99426","-85.41822","Mexico Beach","FL","Florida","TRUE","","964","18.6","12005","Bay","{""12005"": ""100""}","Bay","12005","FALSE","FALSE","America/Chicago"
-"32413","30.31499","-85.90833","Panama City Beach","FL","Florida","TRUE","","14805","78.3","12005","Bay","{""12005"": ""91.51"", ""12131"": ""8.49""}","Bay|Walton","12005|12131","FALSE","FALSE","America/Chicago"
-"32420","30.63285","-85.38483","Alford","FL","Florida","TRUE","","1958","14.4","12063","Jackson","{""12063"": ""99.07"", ""12133"": ""0.93""}","Jackson|Washington","12063|12133","FALSE","FALSE","America/Chicago"
-"32421","30.52989","-85.18213","Altha","FL","Florida","TRUE","","4834","13.6","12013","Calhoun","{""12013"": ""100""}","Calhoun","12013","FALSE","FALSE","America/Chicago"
-"32423","30.94593","-85.05854","Bascom","FL","Florida","TRUE","","966","5.7","12063","Jackson","{""12063"": ""100""}","Jackson","12063","FALSE","FALSE","America/Chicago"
-"32424","30.37153","-85.08924","Blountstown","FL","Florida","TRUE","","7514","18.5","12013","Calhoun","{""12013"": ""100""}","Calhoun","12013","FALSE","FALSE","America/Chicago"
-"32425","30.85518","-85.72082","Bonifay","FL","Florida","TRUE","","13586","19.5","12059","Holmes","{""12059"": ""92.01"", ""12133"": ""7.99""}","Holmes|Washington","12059|12133","FALSE","FALSE","America/Chicago"
-"32426","30.94714","-85.36944","Campbellton","FL","Florida","TRUE","","814","6.5","12063","Jackson","{""12063"": ""100""}","Jackson","12063","FALSE","FALSE","America/Chicago"
-"32427","30.71225","-85.80153","Caryville","FL","Florida","TRUE","","1034","8.6","12133","Washington","{""12133"": ""100""}","Washington","12133","FALSE","FALSE","America/Chicago"
-"32428","30.61436","-85.57852","Chipley","FL","Florida","TRUE","","17564","24.1","12133","Washington","{""12133"": ""100""}","Washington","12133","FALSE","FALSE","America/Chicago"
-"32430","30.41836","-85.23409","Clarksville","FL","Florida","TRUE","","1173","5.4","12013","Calhoun","{""12013"": ""100""}","Calhoun","12013","FALSE","FALSE","America/Chicago"
-"32431","30.78695","-85.41357","Cottondale","FL","Florida","TRUE","","4145","15.1","12063","Jackson","{""12063"": ""84.93"", ""12133"": ""15.07""}","Jackson|Washington","12063|12133","FALSE","FALSE","America/Chicago"
-"32432","30.71493","-85.0776","Cypress","FL","Florida","TRUE","","0","0.0","12063","Jackson","{""12063"": ""100""}","Jackson","12063","FALSE","FALSE","America/Chicago"
-"32433","30.8494","-86.20229","Defuniak Springs","FL","Florida","TRUE","","17877","26.6","12131","Walton","{""12131"": ""100""}","Walton","12131","FALSE","FALSE","America/Chicago"
-"32435","30.66393","-86.1258","Defuniak Springs","FL","Florida","TRUE","","7494","22.4","12131","Walton","{""12131"": ""100""}","Walton","12131","FALSE","FALSE","America/Chicago"
-"32437","30.43364","-85.90551","Ebro","FL","Florida","TRUE","","843","9.3","12133","Washington","{""12133"": ""83.21"", ""12005"": ""16.79""}","Washington|Bay","12133|12005","FALSE","FALSE","America/Chicago"
-"32438","30.50527","-85.42898","Fountain","FL","Florida","TRUE","","3822","23.5","12005","Bay","{""12005"": ""91.8"", ""12013"": ""7.07"", ""12133"": ""1.13""}","Bay|Calhoun|Washington","12005|12013|12133","FALSE","FALSE","America/Chicago"
-"32439","30.48565","-86.1223","Freeport","FL","Florida","TRUE","","10413","39.2","12131","Walton","{""12131"": ""100""}","Walton","12131","FALSE","FALSE","America/Chicago"
-"32440","30.92009","-85.52475","Graceville","FL","Florida","TRUE","","7777","28.7","12063","Jackson","{""12063"": ""83.41"", ""12059"": ""16.59""}","Jackson|Holmes","12063|12059","FALSE","FALSE","America/Chicago"
-"32442","30.68786","-85.01146","Grand Ridge","FL","Florida","TRUE","","3299","13.6","12063","Jackson","{""12063"": ""95.4"", ""12013"": ""4.6""}","Jackson|Calhoun","12063|12013","FALSE","FALSE","America/Chicago"
-"32443","30.86671","-85.11533","Greenwood","FL","Florida","TRUE","","3165","20.7","12063","Jackson","{""12063"": ""100""}","Jackson","12063","FALSE","FALSE","America/Chicago"
-"32444","30.23936","-85.65202","Lynn Haven","FL","Florida","TRUE","","22163","913.2","12005","Bay","{""12005"": ""100""}","Bay","12005","FALSE","FALSE","America/Chicago"
-"32445","30.96922","-85.19415","Malone","FL","Florida","TRUE","","2497","37.0","12063","Jackson","{""12063"": ""100""}","Jackson","12063","FALSE","FALSE","America/Chicago"
-"32446","30.84513","-85.22908","Marianna","FL","Florida","TRUE","","11115","26.3","12063","Jackson","{""12063"": ""100""}","Jackson","12063","FALSE","FALSE","America/Chicago"
-"32447","30.7599","-85.25156","Marianna","FL","Florida","TRUE","","159","158.0","12063","Jackson","{""12063"": ""100""}","Jackson","12063","FALSE","FALSE","America/Chicago"
-"32448","30.66923","-85.22107","Marianna","FL","Florida","TRUE","","8405","17.5","12063","Jackson","{""12063"": ""100""}","Jackson","12063","FALSE","FALSE","America/Chicago"
-"32449","30.28571","-85.24125","Wewahitchka","FL","Florida","TRUE","","552","4.3","12013","Calhoun","{""12013"": ""100""}","Calhoun","12013","FALSE","FALSE","America/Chicago"
-"32455","30.64248","-85.96498","Ponce De Leon","FL","Florida","TRUE","","4081","6.8","12131","Walton","{""12131"": ""55.36"", ""12059"": ""44.64""}","Walton|Holmes","12131|12059","FALSE","FALSE","America/Chicago"
-"32456","29.80713","-85.30265","Port Saint Joe","FL","Florida","TRUE","","8036","37.8","12045","Gulf","{""12045"": ""95.19"", ""12005"": ""4.81""}","Gulf|Bay","12045|12005","FALSE","FALSE","America/New_York"
-"32459","30.36535","-86.18488","Santa Rosa Beach","FL","Florida","TRUE","","17213","121.4","12131","Walton","{""12131"": ""100""}","Walton","12131","FALSE","FALSE","America/Chicago"
-"32460","30.76879","-84.94783","Sneads","FL","Florida","TRUE","","5690","29.6","12063","Jackson","{""12063"": ""100""}","Jackson","12063","FALSE","FALSE","America/Chicago"
-"32461","30.2897","-86.0276","Inlet Beach","FL","Florida","TRUE","","36","23.3","12131","Walton","{""12131"": ""100""}","Walton","12131","FALSE","FALSE","America/Chicago"
-"32462","30.55565","-85.83113","Vernon","FL","Florida","TRUE","","3488","8.8","12133","Washington","{""12133"": ""93.52"", ""12131"": ""5.28"", ""12005"": ""1.2""}","Washington|Walton|Bay","12133|12131|12005","FALSE","FALSE","America/Chicago"
-"32463","30.63135","-85.58994","Wausau","FL","Florida","TRUE","","216","990.9","12133","Washington","{""12133"": ""100""}","Washington","12133","FALSE","FALSE","America/Chicago"
-"32464","30.89905","-85.95427","Westville","FL","Florida","TRUE","","4367","9.9","12059","Holmes","{""12059"": ""85.88"", ""12131"": ""14.12""}","Holmes|Walton","12059|12131","FALSE","FALSE","America/Chicago"
-"32465","30.00212","-85.17799","Wewahitchka","FL","Florida","TRUE","","7962","13.0","12045","Gulf","{""12045"": ""100""}","Gulf","12045","FALSE","FALSE","America/Chicago"
-"32466","30.39084","-85.51915","Youngstown","FL","Florida","TRUE","","5795","19.7","12005","Bay","{""12005"": ""96.77"", ""12133"": ""3.23""}","Bay|Washington","12005|12133","FALSE","FALSE","America/Chicago"
-"32501","30.4284","-87.22238","Pensacola","FL","Florida","TRUE","","11134","1129.9","12033","Escambia","{""12033"": ""100""}","Escambia","12033","FALSE","FALSE","America/Chicago"
-"32502","30.4094","-87.22306","Pensacola","FL","Florida","TRUE","","3331","558.4","12033","Escambia","{""12033"": ""100""}","Escambia","12033","FALSE","FALSE","America/Chicago"
-"32503","30.46022","-87.21398","Pensacola","FL","Florida","TRUE","","34233","1074.4","12033","Escambia","{""12033"": ""100""}","Escambia","12033","FALSE","FALSE","America/Chicago"
-"32504","30.48459","-87.19099","Pensacola","FL","Florida","TRUE","","22562","814.2","12033","Escambia","{""12033"": ""100""}","Escambia","12033","FALSE","FALSE","America/Chicago"
-"32505","30.45483","-87.26077","Pensacola","FL","Florida","TRUE","","26354","750.8","12033","Escambia","{""12033"": ""100""}","Escambia","12033","FALSE","FALSE","America/Chicago"
-"32506","30.39181","-87.36807","Pensacola","FL","Florida","TRUE","","36664","436.1","12033","Escambia","{""12033"": ""100""}","Escambia","12033","FALSE","FALSE","America/Chicago"
-"32507","30.33922","-87.38214","Pensacola","FL","Florida","TRUE","","31036","475.4","12033","Escambia","{""12033"": ""100""}","Escambia","12033","FALSE","FALSE","America/Chicago"
-"32508","30.35478","-87.30278","Pensacola","FL","Florida","TRUE","","5383","256.0","12033","Escambia","{""12033"": ""100""}","Escambia","12033","FALSE","FALSE","America/Chicago"
-"32509","30.47078","-87.341","Pensacola","FL","Florida","TRUE","","675","204.0","12033","Escambia","{""12033"": ""100""}","Escambia","12033","FALSE","FALSE","America/Chicago"
-"32511","30.40606","-87.29175","Pensacola","FL","Florida","TRUE","","1034","1643.6","12033","Escambia","{""12033"": ""100""}","Escambia","12033","FALSE","FALSE","America/Chicago"
-"32514","30.53185","-87.22196","Pensacola","FL","Florida","TRUE","","42444","836.6","12033","Escambia","{""12033"": ""100""}","Escambia","12033","FALSE","FALSE","America/Chicago"
-"32526","30.49657","-87.3653","Pensacola","FL","Florida","TRUE","","37470","248.7","12033","Escambia","{""12033"": ""100""}","Escambia","12033","FALSE","FALSE","America/Chicago"
-"32530","30.59823","-87.03037","Bagdad","FL","Florida","TRUE","","40","314.2","12113","Santa Rosa","{""12113"": ""100""}","Santa Rosa","12113","FALSE","FALSE","America/Chicago"
-"32531","30.87685","-86.69101","Baker","FL","Florida","TRUE","","5526","9.8","12091","Okaloosa","{""12091"": ""99.24"", ""12113"": ""0.76""}","Okaloosa|Santa Rosa","12091|12113","FALSE","FALSE","America/Chicago"
-"32533","30.61058","-87.32678","Cantonment","FL","Florida","TRUE","","29713","153.2","12033","Escambia","{""12033"": ""100""}","Escambia","12033","FALSE","FALSE","America/Chicago"
-"32534","30.5329","-87.28294","Pensacola","FL","Florida","TRUE","","14742","586.3","12033","Escambia","{""12033"": ""100""}","Escambia","12033","FALSE","FALSE","America/Chicago"
-"32535","30.96488","-87.34906","Century","FL","Florida","TRUE","","6094","32.8","12033","Escambia","{""12033"": ""100""}","Escambia","12033","FALSE","FALSE","America/Chicago"
-"32536","30.76427","-86.59175","Crestview","FL","Florida","TRUE","","24105","200.2","12091","Okaloosa","{""12091"": ""100""}","Okaloosa","12091","FALSE","FALSE","America/Chicago"
-"32539","30.77478","-86.46306","Crestview","FL","Florida","TRUE","","30131","95.6","12091","Okaloosa","{""12091"": ""97.97"", ""12131"": ""2.03""}","Okaloosa|Walton","12091|12131","FALSE","FALSE","America/Chicago"
-"32541","30.39699","-86.47062","Destin","FL","Florida","TRUE","","19066","633.6","12091","Okaloosa","{""12091"": ""100""}","Okaloosa","12091","FALSE","FALSE","America/Chicago"
-"32542","30.55285","-86.57433","Eglin Afb","FL","Florida","TRUE","","3128","74.4","12091","Okaloosa","{""12091"": ""100""}","Okaloosa","12091","FALSE","FALSE","America/Chicago"
-"32544","30.42795","-86.69928","Hurlburt Field","FL","Florida","TRUE","","1962","79.8","12091","Okaloosa","{""12091"": ""100""}","Okaloosa","12091","FALSE","FALSE","America/Chicago"
-"32547","30.46866","-86.66717","Fort Walton Beach","FL","Florida","TRUE","","34330","379.3","12091","Okaloosa","{""12091"": ""100""}","Okaloosa","12091","FALSE","FALSE","America/Chicago"
-"32548","30.4069","-86.65324","Fort Walton Beach","FL","Florida","TRUE","","21708","645.9","12091","Okaloosa","{""12091"": ""100""}","Okaloosa","12091","FALSE","FALSE","America/Chicago"
-"32550","30.38554","-86.34555","Miramar Beach","FL","Florida","TRUE","","7978","458.7","12131","Walton","{""12131"": ""100""}","Walton","12131","FALSE","FALSE","America/Chicago"
-"32561","30.35157","-87.11104","Gulf Breeze","FL","Florida","TRUE","","9925","318.5","12113","Santa Rosa","{""12113"": ""72.96"", ""12033"": ""27.04""}","Santa Rosa|Escambia","12113|12033","FALSE","FALSE","America/Chicago"
-"32563","30.39623","-87.02732","Gulf Breeze","FL","Florida","TRUE","","25912","601.9","12113","Santa Rosa","{""12113"": ""100""}","Santa Rosa","12113","FALSE","FALSE","America/Chicago"
-"32564","30.72606","-86.78241","Holt","FL","Florida","TRUE","","2959","12.5","12091","Okaloosa","{""12091"": ""84.42"", ""12113"": ""15.58""}","Okaloosa|Santa Rosa","12091|12113","FALSE","FALSE","America/Chicago"
-"32565","30.89329","-87.13923","Jay","FL","Florida","TRUE","","5014","8.4","12113","Santa Rosa","{""12113"": ""100""}","Santa Rosa","12113","FALSE","FALSE","America/Chicago"
-"32566","30.43717","-86.88927","Navarre","FL","Florida","TRUE","","40232","385.9","12113","Santa Rosa","{""12113"": ""100""}","Santa Rosa","12113","FALSE","FALSE","America/Chicago"
-"32567","30.92503","-86.43982","Laurel Hill","FL","Florida","TRUE","","3099","8.6","12091","Okaloosa","{""12091"": ""57.69"", ""12131"": ""42.31""}","Okaloosa|Walton","12091|12131","FALSE","FALSE","America/Chicago"
-"32568","30.88334","-87.45402","McDavid","FL","Florida","TRUE","","2853","7.1","12033","Escambia","{""12033"": ""100""}","Escambia","12033","FALSE","FALSE","America/Chicago"
-"32569","30.40853","-86.7351","Mary Esther","FL","Florida","TRUE","","12657","1208.2","12091","Okaloosa","{""12091"": ""100""}","Okaloosa","12091","FALSE","FALSE","America/Chicago"
-"32570","30.80756","-86.97173","Milton","FL","Florida","TRUE","","31341","37.9","12113","Santa Rosa","{""12113"": ""100""}","Santa Rosa","12113","FALSE","FALSE","America/Chicago"
-"32571","30.67981","-87.19822","Milton","FL","Florida","TRUE","","35520","131.9","12113","Santa Rosa","{""12113"": ""100""}","Santa Rosa","12113","FALSE","FALSE","America/Chicago"
-"32577","30.72988","-87.36793","Molino","FL","Florida","TRUE","","4390","25.5","12033","Escambia","{""12033"": ""100""}","Escambia","12033","FALSE","FALSE","America/Chicago"
-"32578","30.51022","-86.45223","Niceville","FL","Florida","TRUE","","33130","531.4","12091","Okaloosa","{""12091"": ""97.21"", ""12131"": ""2.79""}","Okaloosa|Walton","12091|12131","FALSE","FALSE","America/Chicago"
-"32579","30.44928","-86.57499","Shalimar","FL","Florida","TRUE","","10338","913.8","12091","Okaloosa","{""12091"": ""100""}","Okaloosa","12091","FALSE","FALSE","America/Chicago"
-"32580","30.49583","-86.52386","Valparaiso","FL","Florida","TRUE","","4491","138.6","12091","Okaloosa","{""12091"": ""100""}","Okaloosa","12091","FALSE","FALSE","America/Chicago"
-"32583","30.59366","-86.97102","Milton","FL","Florida","TRUE","","29365","78.5","12113","Santa Rosa","{""12113"": ""100""}","Santa Rosa","12113","FALSE","FALSE","America/Chicago"
-"32601","29.64888","-82.32498","Gainesville","FL","Florida","TRUE","","19363","1645.2","12001","Alachua","{""12001"": ""100""}","Alachua","12001","FALSE","FALSE","America/New_York"
-"32603","29.64994","-82.354","Gainesville","FL","Florida","TRUE","","6949","1962.1","12001","Alachua","{""12001"": ""100""}","Alachua","12001","FALSE","FALSE","America/New_York"
-"32605","29.6766","-82.37363","Gainesville","FL","Florida","TRUE","","25556","986.8","12001","Alachua","{""12001"": ""100""}","Alachua","12001","FALSE","FALSE","America/New_York"
-"32606","29.68415","-82.44435","Gainesville","FL","Florida","TRUE","","23442","529.8","12001","Alachua","{""12001"": ""100""}","Alachua","12001","FALSE","FALSE","America/New_York"
-"32607","29.64597","-82.42072","Gainesville","FL","Florida","TRUE","","30214","985.4","12001","Alachua","{""12001"": ""100""}","Alachua","12001","FALSE","FALSE","America/New_York"
-"32608","29.5969","-82.4066","Gainesville","FL","Florida","TRUE","","49659","491.9","12001","Alachua","{""12001"": ""100""}","Alachua","12001","FALSE","FALSE","America/New_York"
-"32609","29.77082","-82.28314","Gainesville","FL","Florida","TRUE","","20105","69.1","12001","Alachua","{""12001"": ""100""}","Alachua","12001","FALSE","FALSE","America/New_York"
-"32612","29.64478","-82.35331","Gainesville","FL","Florida","TRUE","","7164","3388.0","12001","Alachua","{""12001"": ""100""}","Alachua","12001","FALSE","FALSE","America/New_York"
-"32615","29.81652","-82.49209","Alachua","FL","Florida","TRUE","","13635","38.0","12001","Alachua","{""12001"": ""100""}","Alachua","12001","FALSE","FALSE","America/New_York"
-"32616","29.7886","-82.49522","Alachua","FL","Florida","TRUE","","1235","743.2","12001","Alachua","{""12001"": ""100""}","Alachua","12001","FALSE","FALSE","America/New_York"
-"32617","29.30708","-82.07627","Anthony","FL","Florida","TRUE","","4541","59.3","12083","Marion","{""12083"": ""100""}","Marion","12083","FALSE","FALSE","America/New_York"
-"32618","29.54033","-82.51501","Archer","FL","Florida","TRUE","","8264","35.1","12001","Alachua","{""12001"": ""76.1"", ""12075"": ""23.9""}","Alachua|Levy","12001|12075","FALSE","FALSE","America/New_York"
-"32619","29.76169","-82.86262","Bell","FL","Florida","TRUE","","5639","18.4","12041","Gilchrist","{""12041"": ""100""}","Gilchrist","12041","FALSE","FALSE","America/New_York"
-"32621","29.42527","-82.62331","Bronson","FL","Florida","TRUE","","4946","26.0","12075","Levy","{""12075"": ""100""}","Levy","12075","FALSE","FALSE","America/New_York"
-"32622","29.90281","-82.31504","Brooker","FL","Florida","TRUE","","1032","6.5","12007","Bradford","{""12007"": ""76.28"", ""12001"": ""23.72""}","Bradford|Alachua","12007|12001","FALSE","FALSE","America/New_York"
-"32625","29.22508","-82.99257","Cedar Key","FL","Florida","TRUE","","1686","7.7","12075","Levy","{""12075"": ""100""}","Levy","12075","FALSE","FALSE","America/New_York"
-"32626","29.43104","-82.89024","Chiefland","FL","Florida","TRUE","","8782","16.6","12075","Levy","{""12075"": ""100""}","Levy","12075","FALSE","FALSE","America/New_York"
-"32628","29.63725","-83.20312","Cross City","FL","Florida","TRUE","","5380","20.1","12029","Dixie","{""12029"": ""100""}","Dixie","12029","FALSE","FALSE","America/New_York"
-"32631","29.72436","-82.10131","Earleton","FL","Florida","TRUE","","155","32.2","12001","Alachua","{""12001"": ""100""}","Alachua","12001","FALSE","FALSE","America/New_York"
-"32639","29.22284","-82.71431","Gulf Hammock","FL","Florida","TRUE","","194","1.3","12075","Levy","{""12075"": ""100""}","Levy","12075","FALSE","FALSE","America/New_York"
-"32640","29.57579","-82.08938","Hawthorne","FL","Florida","TRUE","","11299","20.9","12107","Putnam","{""12107"": ""53.38"", ""12001"": ""46.62""}","Putnam|Alachua","12107|12001","FALSE","FALSE","America/New_York"
-"32641","29.64359","-82.22681","Gainesville","FL","Florida","TRUE","","14959","116.4","12001","Alachua","{""12001"": ""100""}","Alachua","12001","FALSE","FALSE","America/New_York"
-"32643","29.82186","-82.64688","High Springs","FL","Florida","TRUE","","11666","38.4","12001","Alachua","{""12001"": ""69.51"", ""12041"": ""18.33"", ""12023"": ""12.15""}","Alachua|Gilchrist|Columbia","12001|12041|12023","FALSE","FALSE","America/New_York"
-"32648","29.50117","-83.26314","Horseshoe Beach","FL","Florida","TRUE","","392","2.5","12029","Dixie","{""12029"": ""100""}","Dixie","12029","FALSE","FALSE","America/New_York"
-"32653","29.74328","-82.39538","Gainesville","FL","Florida","TRUE","","14030","138.4","12001","Alachua","{""12001"": ""100""}","Alachua","12001","FALSE","FALSE","America/New_York"
-"32656","29.81498","-81.95605","Keystone Heights","FL","Florida","TRUE","","15150","103.3","12019","Clay","{""12019"": ""90.62"", ""12007"": ""9.38""}","Clay|Bradford","12019|12007","FALSE","FALSE","America/New_York"
-"32658","29.84754","-82.39428","La Crosse","FL","Florida","TRUE","","375","48.2","12001","Alachua","{""12001"": ""100""}","Alachua","12001","FALSE","FALSE","America/New_York"
-"32664","29.44554","-82.22118","McIntosh","FL","Florida","TRUE","","391","106.6","12083","Marion","{""12083"": ""100""}","Marion","12083","FALSE","FALSE","America/New_York"
-"32666","29.72554","-81.99465","Melrose","FL","Florida","TRUE","","6664","47.1","12107","Putnam","{""12107"": ""47.92"", ""12019"": ""21.11"", ""12007"": ""18.1"", ""12001"": ""12.86""}","Putnam|Clay|Bradford|Alachua","12107|12019|12007|12001","FALSE","FALSE","America/New_York"
-"32667","29.51215","-82.30536","Micanopy","FL","Florida","TRUE","","4352","18.1","12001","Alachua","{""12001"": ""56.4"", ""12083"": ""43.6""}","Alachua|Marion","12001|12083","FALSE","FALSE","America/New_York"
-"32668","29.26626","-82.49037","Morriston","FL","Florida","TRUE","","4678","14.9","12075","Levy","{""12075"": ""83.94"", ""12083"": ""16.06""}","Levy|Marion","12075|12083","FALSE","FALSE","America/New_York"
-"32669","29.63266","-82.60458","Newberry","FL","Florida","TRUE","","14037","52.3","12001","Alachua","{""12001"": ""93"", ""12041"": ""6.37"", ""12075"": ""0.64""}","Alachua|Gilchrist|Levy","12001|12041|12075","FALSE","FALSE","America/New_York"
-"32680","29.62865","-83.06991","Old Town","FL","Florida","TRUE","","10139","15.7","12029","Dixie","{""12029"": ""100""}","Dixie","12029","FALSE","FALSE","America/New_York"
-"32681","29.42331","-82.20551","Orange Lake","FL","Florida","TRUE","","31","32.5","12083","Marion","{""12083"": ""100""}","Marion","12083","FALSE","FALSE","America/New_York"
-"32683","29.29396","-82.78074","Otter Creek","FL","Florida","TRUE","","268","12.6","12075","Levy","{""12075"": ""100""}","Levy","12075","FALSE","FALSE","America/New_York"
-"32686","29.36442","-82.26636","Reddick","FL","Florida","TRUE","","4737","24.7","12083","Marion","{""12083"": ""100""}","Marion","12083","FALSE","FALSE","America/New_York"
-"32692","29.33641","-83.12812","Suwannee","FL","Florida","TRUE","","160","11.9","12029","Dixie","{""12029"": ""100""}","Dixie","12029","FALSE","FALSE","America/New_York"
-"32693","29.62387","-82.79225","Trenton","FL","Florida","TRUE","","11882","22.3","12041","Gilchrist","{""12041"": ""69.18"", ""12075"": ""30.82""}","Gilchrist|Levy","12041|12075","FALSE","FALSE","America/New_York"
-"32694","29.79601","-82.15552","Waldo","FL","Florida","TRUE","","2023","29.2","12001","Alachua","{""12001"": ""100""}","Alachua","12001","FALSE","FALSE","America/New_York"
-"32696","29.39796","-82.46059","Williston","FL","Florida","TRUE","","12436","32.7","12075","Levy","{""12075"": ""91.28"", ""12083"": ""8.72""}","Levy|Marion","12075|12083","FALSE","FALSE","America/New_York"
-"32697","29.93146","-82.42909","Worthington Springs","FL","Florida","TRUE","","253","212.8","12125","Union","{""12125"": ""100""}","Union","12125","FALSE","FALSE","America/New_York"
-"32701","28.66534","-81.36943","Altamonte Springs","FL","Florida","TRUE","","22940","1575.8","12117","Seminole","{""12117"": ""100""}","Seminole","12117","FALSE","FALSE","America/New_York"
-"32702","29.03924","-81.62535","Altoona","FL","Florida","TRUE","","2796","19.0","12069","Lake","{""12069"": ""89.87"", ""12083"": ""10.13""}","Lake|Marion","12069|12083","FALSE","FALSE","America/New_York"
-"32703","28.67069","-81.55295","Apopka","FL","Florida","TRUE","","53763","408.5","12095","Orange","{""12095"": ""76.01"", ""12117"": ""23.99""}","Orange|Seminole","12095|12117","FALSE","FALSE","America/New_York"
-"32707","28.66267","-81.31427","Casselberry","FL","Florida","TRUE","","36036","1432.9","12117","Seminole","{""12117"": ""100""}","Seminole","12117","FALSE","FALSE","America/New_York"
-"32708","28.68736","-81.27274","Winter Springs","FL","Florida","TRUE","","45323","949.1","12117","Seminole","{""12117"": ""100""}","Seminole","12117","FALSE","FALSE","America/New_York"
-"32709","28.51106","-80.9777","Christmas","FL","Florida","TRUE","","1832","6.1","12095","Orange","{""12095"": ""100""}","Orange","12095","FALSE","FALSE","America/New_York"
-"32712","28.74","-81.5061","Apopka","FL","Florida","TRUE","","48151","311.7","12095","Orange","{""12095"": ""100""}","Orange","12095","FALSE","FALSE","America/New_York"
-"32713","28.88538","-81.32522","Debary","FL","Florida","TRUE","","20892","390.0","12127","Volusia","{""12127"": ""100""}","Volusia","12127","FALSE","FALSE","America/New_York"
-"32714","28.66246","-81.41166","Altamonte Springs","FL","Florida","TRUE","","37981","1713.9","12117","Seminole","{""12117"": ""100""}","Seminole","12117","FALSE","FALSE","America/New_York"
-"32720","29.00961","-81.36796","Deland","FL","Florida","TRUE","","32421","199.3","12127","Volusia","{""12127"": ""91.64"", ""12069"": ""8.36""}","Volusia|Lake","12127|12069","FALSE","FALSE","America/New_York"
-"32724","29.05646","-81.22875","Deland","FL","Florida","TRUE","","36961","150.6","12127","Volusia","{""12127"": ""100""}","Volusia","12127","FALSE","FALSE","America/New_York"
-"32725","28.88334","-81.25082","Deltona","FL","Florida","TRUE","","49923","841.3","12127","Volusia","{""12127"": ""100""}","Volusia","12127","FALSE","FALSE","America/New_York"
-"32726","28.85503","-81.67891","Eustis","FL","Florida","TRUE","","22485","710.3","12069","Lake","{""12069"": ""100""}","Lake","12069","FALSE","FALSE","America/New_York"
-"32730","28.65325","-81.34361","Casselberry","FL","Florida","TRUE","","5943","1930.6","12117","Seminole","{""12117"": ""100""}","Seminole","12117","FALSE","FALSE","America/New_York"
-"32732","28.74551","-81.10597","Geneva","FL","Florida","TRUE","","4576","31.5","12117","Seminole","{""12117"": ""100""}","Seminole","12117","FALSE","FALSE","America/New_York"
-"32735","28.89158","-81.73765","Grand Island","FL","Florida","TRUE","","4728","481.6","12069","Lake","{""12069"": ""100""}","Lake","12069","FALSE","FALSE","America/New_York"
-"32736","28.89669","-81.49497","Eustis","FL","Florida","TRUE","","10848","39.7","12069","Lake","{""12069"": ""100""}","Lake","12069","FALSE","FALSE","America/New_York"
-"32738","28.90897","-81.18976","Deltona","FL","Florida","TRUE","","45611","682.3","12127","Volusia","{""12127"": ""100""}","Volusia","12127","FALSE","FALSE","America/New_York"
-"32744","28.98623","-81.21924","Lake Helen","FL","Florida","TRUE","","3807","109.4","12127","Volusia","{""12127"": ""100""}","Volusia","12127","FALSE","FALSE","America/New_York"
-"32746","28.76398","-81.35457","Lake Mary","FL","Florida","TRUE","","45244","794.9","12117","Seminole","{""12117"": ""100""}","Seminole","12117","FALSE","FALSE","America/New_York"
-"32750","28.70614","-81.352","Longwood","FL","Florida","TRUE","","25025","936.7","12117","Seminole","{""12117"": ""100""}","Seminole","12117","FALSE","FALSE","America/New_York"
-"32751","28.63118","-81.36412","Maitland","FL","Florida","TRUE","","22471","1233.8","12095","Orange","{""12095"": ""70.74"", ""12117"": ""29.26""}","Orange|Seminole","12095|12117","FALSE","FALSE","America/New_York"
-"32754","28.68916","-80.9262","Mims","FL","Florida","TRUE","","10984","30.6","12009","Brevard","{""12009"": ""94.71"", ""12127"": ""5.29""}","Brevard|Volusia","12009|12127","FALSE","FALSE","America/New_York"
-"32757","28.77345","-81.63818","Mount Dora","FL","Florida","TRUE","","27990","297.0","12069","Lake","{""12069"": ""81.22"", ""12095"": ""18.78""}","Lake|Orange","12069|12095","FALSE","FALSE","America/New_York"
-"32759","28.83578","-80.90041","Oak Hill","FL","Florida","TRUE","","3014","28.4","12127","Volusia","{""12127"": ""100""}","Volusia","12127","FALSE","FALSE","America/New_York"
-"32763","28.9406","-81.29815","Orange City","FL","Florida","TRUE","","23277","534.9","12127","Volusia","{""12127"": ""100""}","Volusia","12127","FALSE","FALSE","America/New_York"
-"32764","28.84704","-81.08391","Osteen","FL","Florida","TRUE","","3165","13.4","12127","Volusia","{""12127"": ""100""}","Volusia","12127","FALSE","FALSE","America/New_York"
-"32765","28.66743","-81.20178","Oviedo","FL","Florida","TRUE","","64268","634.0","12117","Seminole","{""12117"": ""100""}","Seminole","12117","FALSE","FALSE","America/New_York"
-"32766","28.6476","-81.08121","Oviedo","FL","Florida","TRUE","","16855","148.5","12117","Seminole","{""12117"": ""100""}","Seminole","12117","FALSE","FALSE","America/New_York"
-"32767","29.02","-81.50654","Paisley","FL","Florida","TRUE","","3334","20.4","12069","Lake","{""12069"": ""100""}","Lake","12069","FALSE","FALSE","America/New_York"
-"32771","28.81351","-81.32645","Sanford","FL","Florida","TRUE","","56266","599.1","12117","Seminole","{""12117"": ""100""}","Seminole","12117","FALSE","FALSE","America/New_York"
-"32773","28.75204","-81.24731","Sanford","FL","Florida","TRUE","","31225","435.9","12117","Seminole","{""12117"": ""100""}","Seminole","12117","FALSE","FALSE","America/New_York"
-"32776","28.81758","-81.49633","Sorrento","FL","Florida","TRUE","","12029","107.5","12069","Lake","{""12069"": ""99.18"", ""12095"": ""0.82""}","Lake|Orange","12069|12095","FALSE","FALSE","America/New_York"
-"32778","28.77669","-81.73001","Tavares","FL","Florida","TRUE","","22454","345.4","12069","Lake","{""12069"": ""100""}","Lake","12069","FALSE","FALSE","America/New_York"
-"32779","28.7167","-81.41276","Longwood","FL","Florida","TRUE","","29603","605.7","12117","Seminole","{""12117"": ""100""}","Seminole","12117","FALSE","FALSE","America/New_York"
-"32780","28.53645","-80.79349","Titusville","FL","Florida","TRUE","","36116","218.7","12009","Brevard","{""12009"": ""100""}","Brevard","12009","FALSE","FALSE","America/New_York"
-"32784","28.97601","-81.72198","Umatilla","FL","Florida","TRUE","","12371","52.1","12069","Lake","{""12069"": ""70.58"", ""12083"": ""29.42""}","Lake|Marion","12069|12083","FALSE","FALSE","America/New_York"
-"32789","28.59965","-81.3521","Winter Park","FL","Florida","TRUE","","26483","1312.3","12095","Orange","{""12095"": ""100""}","Orange","12095","FALSE","FALSE","America/New_York"
-"32792","28.60997","-81.29881","Winter Park","FL","Florida","TRUE","","51659","1626.4","12095","Orange","{""12095"": ""57.55"", ""12117"": ""42.45""}","Orange|Seminole","12095|12117","FALSE","FALSE","America/New_York"
-"32796","28.62693","-80.84181","Titusville","FL","Florida","TRUE","","20609","543.2","12009","Brevard","{""12009"": ""100""}","Brevard","12009","FALSE","FALSE","America/New_York"
-"32798","28.72721","-81.58558","Zellwood","FL","Florida","TRUE","","2882","360.4","12095","Orange","{""12095"": ""100""}","Orange","12095","FALSE","FALSE","America/New_York"
-"32801","28.54176","-81.37358","Orlando","FL","Florida","TRUE","","12243","2069.0","12095","Orange","{""12095"": ""100""}","Orange","12095","FALSE","FALSE","America/New_York"
-"32803","28.55496","-81.34775","Orlando","FL","Florida","TRUE","","20148","1119.0","12095","Orange","{""12095"": ""100""}","Orange","12095","FALSE","FALSE","America/New_York"
-"32804","28.57725","-81.39727","Orlando","FL","Florida","TRUE","","18023","948.8","12095","Orange","{""12095"": ""100""}","Orange","12095","FALSE","FALSE","America/New_York"
-"32805","28.52947","-81.4059","Orlando","FL","Florida","TRUE","","18908","1097.8","12095","Orange","{""12095"": ""100""}","Orange","12095","FALSE","FALSE","America/New_York"
-"32806","28.51227","-81.36056","Orlando","FL","Florida","TRUE","","27661","1605.7","12095","Orange","{""12095"": ""100""}","Orange","12095","FALSE","FALSE","America/New_York"
-"32807","28.5527","-81.30092","Orlando","FL","Florida","TRUE","","34749","1660.6","12095","Orange","{""12095"": ""100""}","Orange","12095","FALSE","FALSE","America/New_York"
-"32808","28.5791","-81.44329","Orlando","FL","Florida","TRUE","","59291","1909.2","12095","Orange","{""12095"": ""100""}","Orange","12095","FALSE","FALSE","America/New_York"
-"32809","28.46208","-81.38588","Orlando","FL","Florida","TRUE","","29095","1084.5","12095","Orange","{""12095"": ""100""}","Orange","12095","FALSE","FALSE","America/New_York"
-"32810","28.62144","-81.4294","Orlando","FL","Florida","TRUE","","37861","1579.8","12095","Orange","{""12095"": ""100""}","Orange","12095","FALSE","FALSE","America/New_York"
-"32811","28.51684","-81.44464","Orlando","FL","Florida","TRUE","","41057","1921.0","12095","Orange","{""12095"": ""100""}","Orange","12095","FALSE","FALSE","America/New_York"
-"32812","28.48502","-81.32851","Orlando","FL","Florida","TRUE","","35855","1605.5","12095","Orange","{""12095"": ""100""}","Orange","12095","FALSE","FALSE","America/New_York"
-"32814","28.57015","-81.32648","Orlando","FL","Florida","TRUE","","8021","2374.0","12095","Orange","{""12095"": ""100""}","Orange","12095","FALSE","FALSE","America/New_York"
-"32817","28.59039","-81.2446","Orlando","FL","Florida","TRUE","","35737","1228.4","12095","Orange","{""12095"": ""100""}","Orange","12095","FALSE","FALSE","America/New_York"
-"32818","28.5865","-81.48768","Orlando","FL","Florida","TRUE","","58198","1942.9","12095","Orange","{""12095"": ""100""}","Orange","12095","FALSE","FALSE","America/New_York"
-"32819","28.4559","-81.47105","Orlando","FL","Florida","TRUE","","27840","521.3","12095","Orange","{""12095"": ""100""}","Orange","12095","FALSE","FALSE","America/New_York"
-"32820","28.58498","-81.12137","Orlando","FL","Florida","TRUE","","10442","267.4","12095","Orange","{""12095"": ""100""}","Orange","12095","FALSE","FALSE","America/New_York"
-"32821","28.38715","-81.47521","Orlando","FL","Florida","TRUE","","17680","612.9","12095","Orange","{""12095"": ""100""}","Orange","12095","FALSE","FALSE","America/New_York"
-"32822","28.48984","-81.29046","Orlando","FL","Florida","TRUE","","61760","1749.3","12095","Orange","{""12095"": ""100""}","Orange","12095","FALSE","FALSE","America/New_York"
-"32824","28.38841","-81.34888","Orlando","FL","Florida","TRUE","","46482","583.6","12095","Orange","{""12095"": ""100""}","Orange","12095","FALSE","FALSE","America/New_York"
-"32825","28.51539","-81.22804","Orlando","FL","Florida","TRUE","","61289","823.3","12095","Orange","{""12095"": ""100""}","Orange","12095","FALSE","FALSE","America/New_York"
-"32826","28.58825","-81.18624","Orlando","FL","Florida","TRUE","","35981","1447.4","12095","Orange","{""12095"": ""100""}","Orange","12095","FALSE","FALSE","America/New_York"
-"32827","28.41572","-81.29413","Orlando","FL","Florida","TRUE","","9427","155.8","12095","Orange","{""12095"": ""100""}","Orange","12095","FALSE","FALSE","America/New_York"
-"32828","28.52824","-81.16718","Orlando","FL","Florida","TRUE","","69497","1277.2","12095","Orange","{""12095"": ""100""}","Orange","12095","FALSE","FALSE","America/New_York"
-"32829","28.48021","-81.24605","Orlando","FL","Florida","TRUE","","20376","806.4","12095","Orange","{""12095"": ""100""}","Orange","12095","FALSE","FALSE","America/New_York"
-"32830","28.38225","-81.56911","Orlando","FL","Florida","TRUE","","6","0.1","12095","Orange","{""12095"": ""100""}","Orange","12095","FALSE","FALSE","America/New_York"
-"32831","28.47305","-81.14825","Orlando","FL","Florida","TRUE","","3228","126.7","12095","Orange","{""12095"": ""100""}","Orange","12095","FALSE","FALSE","America/New_York"
-"32832","28.39793","-81.18697","Orlando","FL","Florida","TRUE","","27919","191.8","12095","Orange","{""12095"": ""100""}","Orange","12095","FALSE","FALSE","America/New_York"
-"32833","28.49469","-81.08006","Orlando","FL","Florida","TRUE","","9857","109.2","12095","Orange","{""12095"": ""100""}","Orange","12095","FALSE","FALSE","America/New_York"
-"32835","28.52106","-81.48426","Orlando","FL","Florida","TRUE","","48078","1983.2","12095","Orange","{""12095"": ""100""}","Orange","12095","FALSE","FALSE","America/New_York"
-"32836","28.41535","-81.5206","Orlando","FL","Florida","TRUE","","20053","498.6","12095","Orange","{""12095"": ""100""}","Orange","12095","FALSE","FALSE","America/New_York"
-"32837","28.37847","-81.42933","Orlando","FL","Florida","TRUE","","51310","884.9","12095","Orange","{""12095"": ""100""}","Orange","12095","FALSE","FALSE","America/New_York"
-"32839","28.48834","-81.4071","Orlando","FL","Florida","TRUE","","52886","2728.3","12095","Orange","{""12095"": ""100""}","Orange","12095","FALSE","FALSE","America/New_York"
-"32901","28.07903","-80.62322","Melbourne","FL","Florida","TRUE","","25089","771.2","12009","Brevard","{""12009"": ""100""}","Brevard","12009","FALSE","FALSE","America/New_York"
-"32903","28.10847","-80.58719","Indialantic","FL","Florida","TRUE","","14557","1521.2","12009","Brevard","{""12009"": ""100""}","Brevard","12009","FALSE","FALSE","America/New_York"
-"32904","28.06727","-80.67796","Melbourne","FL","Florida","TRUE","","32138","647.2","12009","Brevard","{""12009"": ""100""}","Brevard","12009","FALSE","FALSE","America/New_York"
-"32905","28.03126","-80.59947","Palm Bay","FL","Florida","TRUE","","23302","947.3","12009","Brevard","{""12009"": ""100""}","Brevard","12009","FALSE","FALSE","America/New_York"
-"32907","28.01564","-80.68231","Palm Bay","FL","Florida","TRUE","","45037","979.8","12009","Brevard","{""12009"": ""100""}","Brevard","12009","FALSE","FALSE","America/New_York"
-"32908","27.95639","-80.69892","Palm Bay","FL","Florida","TRUE","","13397","268.3","12009","Brevard","{""12009"": ""100""}","Brevard","12009","FALSE","FALSE","America/New_York"
-"32909","27.92054","-80.64447","Palm Bay","FL","Florida","TRUE","","31251","278.4","12009","Brevard","{""12009"": ""100""}","Brevard","12009","FALSE","FALSE","America/New_York"
-"32920","28.39497","-80.62083","Cape Canaveral","FL","Florida","TRUE","","10283","1020.1","12009","Brevard","{""12009"": ""100""}","Brevard","12009","FALSE","FALSE","America/New_York"
-"32922","28.37243","-80.74281","Cocoa","FL","Florida","TRUE","","16709","1173.7","12009","Brevard","{""12009"": ""100""}","Brevard","12009","FALSE","FALSE","America/New_York"
-"32925","28.24273","-80.62288","Patrick Afb","FL","Florida","TRUE","","1533","191.2","12009","Brevard","{""12009"": ""100""}","Brevard","12009","FALSE","FALSE","America/New_York"
-"32926","28.39227","-80.81718","Cocoa","FL","Florida","TRUE","","21915","166.8","12009","Brevard","{""12009"": ""100""}","Brevard","12009","FALSE","FALSE","America/New_York"
-"32927","28.46083","-80.80763","Cocoa","FL","Florida","TRUE","","27377","481.6","12009","Brevard","{""12009"": ""100""}","Brevard","12009","FALSE","FALSE","America/New_York"
-"32931","28.32287","-80.62727","Cocoa Beach","FL","Florida","TRUE","","13771","1022.5","12009","Brevard","{""12009"": ""100""}","Brevard","12009","FALSE","FALSE","America/New_York"
-"32934","28.13316","-80.71115","Melbourne","FL","Florida","TRUE","","19105","304.2","12009","Brevard","{""12009"": ""100""}","Brevard","12009","FALSE","FALSE","America/New_York"
-"32935","28.14562","-80.64846","Melbourne","FL","Florida","TRUE","","41209","1234.8","12009","Brevard","{""12009"": ""100""}","Brevard","12009","FALSE","FALSE","America/New_York"
-"32937","28.17832","-80.60427","Satellite Beach","FL","Florida","TRUE","","27551","1585.7","12009","Brevard","{""12009"": ""100""}","Brevard","12009","FALSE","FALSE","America/New_York"
-"32940","28.21129","-80.78752","Melbourne","FL","Florida","TRUE","","42171","125.2","12009","Brevard","{""12009"": ""100""}","Brevard","12009","FALSE","FALSE","America/New_York"
-"32948","27.88946","-80.73348","Fellsmere","FL","Florida","TRUE","","7564","11.0","12061","Indian River","{""12061"": ""99.23"", ""12009"": ""0.77""}","Indian River|Brevard","12061|12009","FALSE","FALSE","America/New_York"
-"32949","27.92333","-80.55068","Grant","FL","Florida","TRUE","","2468","58.5","12009","Brevard","{""12009"": ""100""}","Brevard","12009","FALSE","FALSE","America/New_York"
-"32950","27.97598","-80.57879","Malabar","FL","Florida","TRUE","","4522","97.8","12009","Brevard","{""12009"": ""100""}","Brevard","12009","FALSE","FALSE","America/New_York"
-"32951","27.95946","-80.51499","Melbourne Beach","FL","Florida","TRUE","","11974","568.3","12009","Brevard","{""12009"": ""100""}","Brevard","12009","FALSE","FALSE","America/New_York"
-"32952","28.30017","-80.66339","Merritt Island","FL","Florida","TRUE","","20966","654.1","12009","Brevard","{""12009"": ""100""}","Brevard","12009","FALSE","FALSE","America/New_York"
-"32953","28.44828","-80.70512","Merritt Island","FL","Florida","TRUE","","23939","286.5","12009","Brevard","{""12009"": ""100""}","Brevard","12009","FALSE","FALSE","America/New_York"
-"32955","28.29642","-80.72525","Rockledge","FL","Florida","TRUE","","38889","680.1","12009","Brevard","{""12009"": ""100""}","Brevard","12009","FALSE","FALSE","America/New_York"
-"32958","27.79374","-80.49117","Sebastian","FL","Florida","TRUE","","28617","395.9","12061","Indian River","{""12061"": ""100""}","Indian River","12061","FALSE","FALSE","America/New_York"
-"32960","27.64121","-80.40289","Vero Beach","FL","Florida","TRUE","","22036","748.7","12061","Indian River","{""12061"": ""100""}","Indian River","12061","FALSE","FALSE","America/New_York"
-"32962","27.58695","-80.38372","Vero Beach","FL","Florida","TRUE","","26459","833.6","12061","Indian River","{""12061"": ""100""}","Indian River","12061","FALSE","FALSE","America/New_York"
-"32963","27.71958","-80.39621","Vero Beach","FL","Florida","TRUE","","15027","334.1","12061","Indian River","{""12061"": ""100""}","Indian River","12061","FALSE","FALSE","America/New_York"
-"32966","27.67799","-80.69047","Vero Beach","FL","Florida","TRUE","","18462","24.5","12061","Indian River","{""12061"": ""100""}","Indian River","12061","FALSE","FALSE","America/New_York"
-"32967","27.71218","-80.46116","Vero Beach","FL","Florida","TRUE","","22319","207.0","12061","Indian River","{""12061"": ""100""}","Indian River","12061","FALSE","FALSE","America/New_York"
-"32968","27.58701","-80.46543","Vero Beach","FL","Florida","TRUE","","13154","193.1","12061","Indian River","{""12061"": ""100""}","Indian River","12061","FALSE","FALSE","America/New_York"
-"32970","27.75138","-80.45311","Wabasso","FL","Florida","TRUE","","369","129.9","12061","Indian River","{""12061"": ""100""}","Indian River","12061","FALSE","FALSE","America/New_York"
-"32976","27.8638","-80.53949","Sebastian","FL","Florida","TRUE","","9092","136.8","12009","Brevard","{""12009"": ""100""}","Brevard","12009","FALSE","FALSE","America/New_York"
-"33001","24.82041","-80.80992","Long Key","FL","Florida","TRUE","","331","65.5","12087","Monroe","{""12087"": ""100""}","Monroe","12087","FALSE","FALSE","America/New_York"
-"33004","26.0579","-80.13852","Dania","FL","Florida","TRUE","","16082","1086.6","12011","Broward","{""12011"": ""100""}","Broward","12011","FALSE","FALSE","America/New_York"
-"33009","25.98566","-80.14786","Hallandale","FL","Florida","TRUE","","41578","3151.2","12011","Broward","{""12011"": ""100""}","Broward","12011","FALSE","FALSE","America/New_York"
-"33010","25.833","-80.27868","Hialeah","FL","Florida","TRUE","","45246","4047.5","12086","Miami-Dade","{""12086"": ""100""}","Miami-Dade","12086","FALSE","FALSE","America/New_York"
-"33012","25.86566","-80.3025","Hialeah","FL","Florida","TRUE","","73828","4865.4","12086","Miami-Dade","{""12086"": ""100""}","Miami-Dade","12086","FALSE","FALSE","America/New_York"
-"33013","25.8623","-80.27029","Hialeah","FL","Florida","TRUE","","31712","3211.5","12086","Miami-Dade","{""12086"": ""100""}","Miami-Dade","12086","FALSE","FALSE","America/New_York"
-"33014","25.90433","-80.30293","Hialeah","FL","Florida","TRUE","","41924","2622.9","12086","Miami-Dade","{""12086"": ""100""}","Miami-Dade","12086","FALSE","FALSE","America/New_York"
-"33015","25.9413","-80.31761","Hialeah","FL","Florida","TRUE","","67191","4441.8","12086","Miami-Dade","{""12086"": ""100""}","Miami-Dade","12086","FALSE","FALSE","America/New_York"
-"33016","25.8949","-80.33243","Hialeah","FL","Florida","TRUE","","51700","4551.9","12086","Miami-Dade","{""12086"": ""100""}","Miami-Dade","12086","FALSE","FALSE","America/New_York"
-"33018","25.92593","-80.37946","Hialeah","FL","Florida","TRUE","","53419","1049.0","12086","Miami-Dade","{""12086"": ""100""}","Miami-Dade","12086","FALSE","FALSE","America/New_York"
-"33019","26.02617","-80.12293","Hollywood","FL","Florida","TRUE","","13729","1358.2","12011","Broward","{""12011"": ""100""}","Broward","12011","FALSE","FALSE","America/New_York"
-"33020","26.01899","-80.1523","Hollywood","FL","Florida","TRUE","","45147","2880.0","12011","Broward","{""12011"": ""100""}","Broward","12011","FALSE","FALSE","America/New_York"
-"33021","26.02334","-80.18758","Hollywood","FL","Florida","TRUE","","49941","2214.6","12011","Broward","{""12011"": ""100""}","Broward","12011","FALSE","FALSE","America/New_York"
-"33023","25.9894","-80.21534","Hollywood","FL","Florida","TRUE","","73973","2963.7","12011","Broward","{""12011"": ""100""}","Broward","12011","FALSE","FALSE","America/New_York"
-"33024","26.02697","-80.24528","Hollywood","FL","Florida","TRUE","","76508","2753.7","12011","Broward","{""12011"": ""100""}","Broward","12011","FALSE","FALSE","America/New_York"
-"33025","25.98743","-80.28139","Hollywood","FL","Florida","TRUE","","73428","2672.1","12011","Broward","{""12011"": ""100""}","Broward","12011","FALSE","FALSE","America/New_York"
-"33026","26.02594","-80.29643","Hollywood","FL","Florida","TRUE","","31891","2717.8","12011","Broward","{""12011"": ""100""}","Broward","12011","FALSE","FALSE","America/New_York"
-"33027","25.98245","-80.34361","Hollywood","FL","Florida","TRUE","","60679","1756.7","12011","Broward","{""12011"": ""100""}","Broward","12011","FALSE","FALSE","America/New_York"
-"33028","26.01853","-80.34488","Pembroke Pines","FL","Florida","TRUE","","26848","1802.9","12011","Broward","{""12011"": ""100""}","Broward","12011","FALSE","FALSE","America/New_York"
-"33029","25.99237","-80.4089","Hollywood","FL","Florida","TRUE","","48161","1071.9","12011","Broward","{""12011"": ""100""}","Broward","12011","FALSE","FALSE","America/New_York"
-"33030","25.48472","-80.51001","Homestead","FL","Florida","TRUE","","35303","741.9","12086","Miami-Dade","{""12086"": ""100""}","Miami-Dade","12086","FALSE","FALSE","America/New_York"
-"33031","25.52754","-80.50111","Homestead","FL","Florida","TRUE","","7124","128.8","12086","Miami-Dade","{""12086"": ""100""}","Miami-Dade","12086","FALSE","FALSE","America/New_York"
-"33032","25.53021","-80.39188","Homestead","FL","Florida","TRUE","","50135","1028.1","12086","Miami-Dade","{""12086"": ""100""}","Miami-Dade","12086","FALSE","FALSE","America/New_York"
-"33033","25.48371","-80.41365","Homestead","FL","Florida","TRUE","","58427","1340.2","12086","Miami-Dade","{""12086"": ""100""}","Miami-Dade","12086","FALSE","FALSE","America/New_York"
-"33034","25.28499","-80.62418","Homestead","FL","Florida","TRUE","","22142","30.6","12086","Miami-Dade","{""12086"": ""99.98"", ""12087"": ""0.02""}","Miami-Dade|Monroe","12086|12087","FALSE","FALSE","America/New_York"
-"33035","25.41746","-80.39864","Homestead","FL","Florida","TRUE","","16159","300.3","12086","Miami-Dade","{""12086"": ""100""}","Miami-Dade","12086","FALSE","FALSE","America/New_York"
-"33036","24.92303","-80.63795","Islamorada","FL","Florida","TRUE","","3496","229.7","12087","Monroe","{""12087"": ""100""}","Monroe","12087","FALSE","FALSE","America/New_York"
-"33037","25.20121","-80.38374","Key Largo","FL","Florida","TRUE","","10816","123.5","12087","Monroe","{""12087"": ""100""}","Monroe","12087","FALSE","FALSE","America/New_York"
-"33039","25.5021","-80.39968","Homestead","FL","Florida","TRUE","","280","356.4","12086","Miami-Dade","{""12086"": ""100""}","Miami-Dade","12086","FALSE","FALSE","America/New_York"
-"33040","24.58547","-81.75451","Key West","FL","Florida","TRUE","","34471","719.2","12087","Monroe","{""12087"": ""100""}","Monroe","12087","FALSE","FALSE","America/New_York"
-"33042","24.67645","-81.50992","Summerland Key","FL","Florida","TRUE","","6623","100.2","12087","Monroe","{""12087"": ""100""}","Monroe","12087","FALSE","FALSE","America/New_York"
-"33043","24.70334","-81.36636","Big Pine Key","FL","Florida","TRUE","","4933","128.4","12087","Monroe","{""12087"": ""100""}","Monroe","12087","FALSE","FALSE","America/New_York"
-"33050","24.72843","-81.03404","Marathon","FL","Florida","TRUE","","9443","401.1","12087","Monroe","{""12087"": ""100""}","Monroe","12087","FALSE","FALSE","America/New_York"
-"33051","24.72317","-81.02153","Key Colony Beach","FL","Florida","TRUE","","534","472.1","12087","Monroe","{""12087"": ""100""}","Monroe","12087","FALSE","FALSE","America/New_York"
-"33054","25.9069","-80.25826","Opa Locka","FL","Florida","TRUE","","31797","1400.1","12086","Miami-Dade","{""12086"": ""100""}","Miami-Dade","12086","FALSE","FALSE","America/New_York"
-"33055","25.94821","-80.27802","Opa Locka","FL","Florida","TRUE","","40883","2628.7","12086","Miami-Dade","{""12086"": ""100""}","Miami-Dade","12086","FALSE","FALSE","America/New_York"
-"33056","25.94921","-80.24562","Miami Gardens","FL","Florida","TRUE","","36110","2293.6","12086","Miami-Dade","{""12086"": ""100""}","Miami-Dade","12086","FALSE","FALSE","America/New_York"
-"33060","26.2348","-80.12054","Pompano Beach","FL","Florida","TRUE","","37612","2065.2","12011","Broward","{""12011"": ""100""}","Broward","12011","FALSE","FALSE","America/New_York"
-"33062","26.24163","-80.09364","Pompano Beach","FL","Florida","TRUE","","22692","2304.9","12011","Broward","{""12011"": ""100""}","Broward","12011","FALSE","FALSE","America/New_York"
-"33063","26.25012","-80.20883","Pompano Beach","FL","Florida","TRUE","","54707","2397.5","12011","Broward","{""12011"": ""100""}","Broward","12011","FALSE","FALSE","America/New_York"
-"33064","26.27849","-80.11567","Pompano Beach","FL","Florida","TRUE","","61293","2261.2","12011","Broward","{""12011"": ""100""}","Broward","12011","FALSE","FALSE","America/New_York"
-"33065","26.27284","-80.26039","Coral Springs","FL","Florida","TRUE","","58171","2708.7","12011","Broward","{""12011"": ""100""}","Broward","12011","FALSE","FALSE","America/New_York"
-"33066","26.2535","-80.17747","Pompano Beach","FL","Florida","TRUE","","16752","2115.8","12011","Broward","{""12011"": ""100""}","Broward","12011","FALSE","FALSE","America/New_York"
-"33067","26.30774","-80.22611","Pompano Beach","FL","Florida","TRUE","","27358","1020.3","12011","Broward","{""12011"": ""100""}","Broward","12011","FALSE","FALSE","America/New_York"
-"33068","26.21571","-80.21776","Pompano Beach","FL","Florida","TRUE","","52749","3439.9","12011","Broward","{""12011"": ""100""}","Broward","12011","FALSE","FALSE","America/New_York"
-"33069","26.23566","-80.15791","Pompano Beach","FL","Florida","TRUE","","28138","1158.5","12011","Broward","{""12011"": ""100""}","Broward","12011","FALSE","FALSE","America/New_York"
-"33070","25.01004","-80.5239","Tavernier","FL","Florida","TRUE","","5132","453.9","12087","Monroe","{""12087"": ""100""}","Monroe","12087","FALSE","FALSE","America/New_York"
-"33071","26.24384","-80.2662","Coral Springs","FL","Florida","TRUE","","39402","2035.7","12011","Broward","{""12011"": ""100""}","Broward","12011","FALSE","FALSE","America/New_York"
-"33073","26.2985","-80.1828","Pompano Beach","FL","Florida","TRUE","","35378","1711.8","12011","Broward","{""12011"": ""100""}","Broward","12011","FALSE","FALSE","America/New_York"
-"33076","26.31682","-80.27528","Pompano Beach","FL","Florida","TRUE","","39091","1422.2","12011","Broward","{""12011"": ""100""}","Broward","12011","FALSE","FALSE","America/New_York"
-"33101","25.7793","-80.19874","Miami","FL","Florida","TRUE","","0","0.0","12086","Miami-Dade","{""12086"": ""0""}","Miami-Dade","12086","FALSE","FALSE","America/New_York"
-"33109","25.76135","-80.14247","Miami Beach","FL","Florida","TRUE","","408","502.8","12086","Miami-Dade","{""12086"": ""100""}","Miami-Dade","12086","FALSE","FALSE","America/New_York"
-"33122","25.79738","-80.29848","Miami","FL","Florida","TRUE","","205","13.3","12086","Miami-Dade","{""12086"": ""100""}","Miami-Dade","12086","FALSE","FALSE","America/New_York"
-"33125","25.78384","-80.23755","Miami","FL","Florida","TRUE","","61156","6046.8","12086","Miami-Dade","{""12086"": ""100""}","Miami-Dade","12086","FALSE","FALSE","America/New_York"
-"33126","25.77982","-80.29886","Miami","FL","Florida","TRUE","","52986","4074.5","12086","Miami-Dade","{""12086"": ""100""}","Miami-Dade","12086","FALSE","FALSE","America/New_York"
-"33127","25.81325","-80.20558","Miami","FL","Florida","TRUE","","31902","3730.8","12086","Miami-Dade","{""12086"": ""100""}","Miami-Dade","12086","FALSE","FALSE","America/New_York"
-"33128","25.77652","-80.20401","Miami","FL","Florida","TRUE","","7992","7771.3","12086","Miami-Dade","{""12086"": ""100""}","Miami-Dade","12086","FALSE","FALSE","America/New_York"
-"33129","25.75283","-80.20028","Miami","FL","Florida","TRUE","","13750","3930.4","12086","Miami-Dade","{""12086"": ""100""}","Miami-Dade","12086","FALSE","FALSE","America/New_York"
-"33130","25.7682","-80.20323","Miami","FL","Florida","TRUE","","29737","10413.2","12086","Miami-Dade","{""12086"": ""100""}","Miami-Dade","12086","FALSE","FALSE","America/New_York"
-"33131","25.76325","-80.18464","Miami","FL","Florida","TRUE","","18477","17549.8","12086","Miami-Dade","{""12086"": ""100""}","Miami-Dade","12086","FALSE","FALSE","America/New_York"
-"33132","25.77788","-80.17413","Miami","FL","Florida","TRUE","","13849","3070.2","12086","Miami-Dade","{""12086"": ""100""}","Miami-Dade","12086","FALSE","FALSE","America/New_York"
-"33133","25.7298","-80.24319","Miami","FL","Florida","TRUE","","35592","3287.7","12086","Miami-Dade","{""12086"": ""100""}","Miami-Dade","12086","FALSE","FALSE","America/New_York"
-"33134","25.75345","-80.27108","Miami","FL","Florida","TRUE","","40265","2980.6","12086","Miami-Dade","{""12086"": ""100""}","Miami-Dade","12086","FALSE","FALSE","America/New_York"
-"33135","25.76645","-80.23499","Miami","FL","Florida","TRUE","","38920","6968.9","12086","Miami-Dade","{""12086"": ""100""}","Miami-Dade","12086","FALSE","FALSE","America/New_York"
-"33136","25.78686","-80.20471","Miami","FL","Florida","TRUE","","15848","4287.1","12086","Miami-Dade","{""12086"": ""100""}","Miami-Dade","12086","FALSE","FALSE","America/New_York"
-"33137","25.81529","-80.178","Miami","FL","Florida","TRUE","","22955","4380.7","12086","Miami-Dade","{""12086"": ""100""}","Miami-Dade","12086","FALSE","FALSE","America/New_York"
-"33138","25.85396","-80.17842","Miami","FL","Florida","TRUE","","30221","2766.5","12086","Miami-Dade","{""12086"": ""100""}","Miami-Dade","12086","FALSE","FALSE","America/New_York"
-"33139","25.78521","-80.14919","Miami Beach","FL","Florida","TRUE","","39427","5648.2","12086","Miami-Dade","{""12086"": ""100""}","Miami-Dade","12086","FALSE","FALSE","America/New_York"
-"33140","25.81599","-80.13902","Miami Beach","FL","Florida","TRUE","","19938","2523.5","12086","Miami-Dade","{""12086"": ""100""}","Miami-Dade","12086","FALSE","FALSE","America/New_York"
-"33141","25.85114","-80.14141","Miami Beach","FL","Florida","TRUE","","39768","6610.2","12086","Miami-Dade","{""12086"": ""100""}","Miami-Dade","12086","FALSE","FALSE","America/New_York"
-"33142","25.81194","-80.23858","Miami","FL","Florida","TRUE","","59073","3223.1","12086","Miami-Dade","{""12086"": ""100""}","Miami-Dade","12086","FALSE","FALSE","America/New_York"
-"33143","25.70222","-80.29779","Miami","FL","Florida","TRUE","","31056","1518.6","12086","Miami-Dade","{""12086"": ""100""}","Miami-Dade","12086","FALSE","FALSE","America/New_York"
-"33144","25.76321","-80.31232","Miami","FL","Florida","TRUE","","29344","3650.8","12086","Miami-Dade","{""12086"": ""100""}","Miami-Dade","12086","FALSE","FALSE","America/New_York"
-"33145","25.75309","-80.23453","Miami","FL","Florida","TRUE","","30713","4673.2","12086","Miami-Dade","{""12086"": ""100""}","Miami-Dade","12086","FALSE","FALSE","America/New_York"
-"33146","25.72052","-80.27284","Miami","FL","Florida","TRUE","","16473","2036.8","12086","Miami-Dade","{""12086"": ""100""}","Miami-Dade","12086","FALSE","FALSE","America/New_York"
-"33147","25.85142","-80.23821","Miami","FL","Florida","TRUE","","47811","2544.6","12086","Miami-Dade","{""12086"": ""100""}","Miami-Dade","12086","FALSE","FALSE","America/New_York"
-"33149","25.72479","-80.16118","Key Biscayne","FL","Florida","TRUE","","12943","1061.3","12086","Miami-Dade","{""12086"": ""100""}","Miami-Dade","12086","FALSE","FALSE","America/New_York"
-"33150","25.85204","-80.20711","Miami","FL","Florida","TRUE","","29652","3276.8","12086","Miami-Dade","{""12086"": ""100""}","Miami-Dade","12086","FALSE","FALSE","America/New_York"
-"33154","25.88276","-80.13443","Miami Beach","FL","Florida","TRUE","","14634","3201.1","12086","Miami-Dade","{""12086"": ""100""}","Miami-Dade","12086","FALSE","FALSE","America/New_York"
-"33155","25.73667","-80.31098","Miami","FL","Florida","TRUE","","46617","2438.0","12086","Miami-Dade","{""12086"": ""100""}","Miami-Dade","12086","FALSE","FALSE","America/New_York"
-"33156","25.66828","-80.29732","Miami","FL","Florida","TRUE","","33514","952.9","12086","Miami-Dade","{""12086"": ""100""}","Miami-Dade","12086","FALSE","FALSE","America/New_York"
-"33157","25.60618","-80.34258","Miami","FL","Florida","TRUE","","67455","1758.4","12086","Miami-Dade","{""12086"": ""100""}","Miami-Dade","12086","FALSE","FALSE","America/New_York"
-"33158","25.6373","-80.30935","Miami","FL","Florida","TRUE","","6469","894.4","12086","Miami-Dade","{""12086"": ""100""}","Miami-Dade","12086","FALSE","FALSE","America/New_York"
-"33160","25.93278","-80.13475","North Miami Beach","FL","Florida","TRUE","","39615","3602.0","12086","Miami-Dade","{""12086"": ""100""}","Miami-Dade","12086","FALSE","FALSE","America/New_York"
-"33161","25.89376","-80.18252","Miami","FL","Florida","TRUE","","56130","3964.3","12086","Miami-Dade","{""12086"": ""100""}","Miami-Dade","12086","FALSE","FALSE","America/New_York"
-"33162","25.92831","-80.17798","Miami","FL","Florida","TRUE","","47123","3504.7","12086","Miami-Dade","{""12086"": ""100""}","Miami-Dade","12086","FALSE","FALSE","America/New_York"
-"33165","25.73428","-80.35885","Miami","FL","Florida","TRUE","","55822","2825.2","12086","Miami-Dade","{""12086"": ""100""}","Miami-Dade","12086","FALSE","FALSE","America/New_York"
-"33166","25.82867","-80.31663","Miami","FL","Florida","TRUE","","24346","984.5","12086","Miami-Dade","{""12086"": ""100""}","Miami-Dade","12086","FALSE","FALSE","America/New_York"
-"33167","25.88524","-80.23694","Miami","FL","Florida","TRUE","","20582","1918.1","12086","Miami-Dade","{""12086"": ""100""}","Miami-Dade","12086","FALSE","FALSE","America/New_York"
-"33168","25.89293","-80.20929","Miami","FL","Florida","TRUE","","27414","2874.1","12086","Miami-Dade","{""12086"": ""100""}","Miami-Dade","12086","FALSE","FALSE","America/New_York"
-"33169","25.943","-80.21456","Miami","FL","Florida","TRUE","","41626","2329.9","12086","Miami-Dade","{""12086"": ""100""}","Miami-Dade","12086","FALSE","FALSE","America/New_York"
-"33170","25.55766","-80.46141","Miami","FL","Florida","TRUE","","14121","414.0","12086","Miami-Dade","{""12086"": ""100""}","Miami-Dade","12086","FALSE","FALSE","America/New_York"
-"33172","25.78631","-80.36049","Miami","FL","Florida","TRUE","","43356","2541.4","12086","Miami-Dade","{""12086"": ""100""}","Miami-Dade","12086","FALSE","FALSE","America/New_York"
-"33173","25.7021","-80.35712","Miami","FL","Florida","TRUE","","33089","2519.9","12086","Miami-Dade","{""12086"": ""100""}","Miami-Dade","12086","FALSE","FALSE","America/New_York"
-"33174","25.76155","-80.36115","Miami","FL","Florida","TRUE","","34403","4292.0","12086","Miami-Dade","{""12086"": ""100""}","Miami-Dade","12086","FALSE","FALSE","America/New_York"
-"33175","25.734","-80.40678","Miami","FL","Florida","TRUE","","53348","2679.1","12086","Miami-Dade","{""12086"": ""100""}","Miami-Dade","12086","FALSE","FALSE","America/New_York"
-"33176","25.65861","-80.35895","Miami","FL","Florida","TRUE","","52288","1641.9","12086","Miami-Dade","{""12086"": ""100""}","Miami-Dade","12086","FALSE","FALSE","America/New_York"
-"33177","25.59679","-80.40462","Miami","FL","Florida","TRUE","","57526","1771.8","12086","Miami-Dade","{""12086"": ""100""}","Miami-Dade","12086","FALSE","FALSE","America/New_York"
-"33178","25.85807","-80.41949","Miami","FL","Florida","TRUE","","52206","357.8","12086","Miami-Dade","{""12086"": ""100""}","Miami-Dade","12086","FALSE","FALSE","America/New_York"
-"33179","25.95805","-80.17992","Miami","FL","Florida","TRUE","","44341","3373.4","12086","Miami-Dade","{""12086"": ""100""}","Miami-Dade","12086","FALSE","FALSE","America/New_York"
-"33180","25.96067","-80.14197","Miami","FL","Florida","TRUE","","32441","3681.2","12086","Miami-Dade","{""12086"": ""100""}","Miami-Dade","12086","FALSE","FALSE","America/New_York"
-"33181","25.89873","-80.1509","Miami","FL","Florida","TRUE","","20111","2415.3","12086","Miami-Dade","{""12086"": ""100""}","Miami-Dade","12086","FALSE","FALSE","America/New_York"
-"33182","25.78369","-80.43398","Miami","FL","Florida","TRUE","","16607","416.3","12086","Miami-Dade","{""12086"": ""100""}","Miami-Dade","12086","FALSE","FALSE","America/New_York"
-"33183","25.70026","-80.40436","Miami","FL","Florida","TRUE","","36725","2457.2","12086","Miami-Dade","{""12086"": ""100""}","Miami-Dade","12086","FALSE","FALSE","America/New_York"
-"33184","25.75947","-80.40658","Miami","FL","Florida","TRUE","","21785","3448.9","12086","Miami-Dade","{""12086"": ""100""}","Miami-Dade","12086","FALSE","FALSE","America/New_York"
-"33185","25.72724","-80.44986","Miami","FL","Florida","TRUE","","31359","2640.8","12086","Miami-Dade","{""12086"": ""100""}","Miami-Dade","12086","FALSE","FALSE","America/New_York"
-"33186","25.65548","-80.41048","Miami","FL","Florida","TRUE","","68581","2098.5","12086","Miami-Dade","{""12086"": ""100""}","Miami-Dade","12086","FALSE","FALSE","America/New_York"
-"33187","25.59602","-80.50709","Miami","FL","Florida","TRUE","","19392","189.1","12086","Miami-Dade","{""12086"": ""100""}","Miami-Dade","12086","FALSE","FALSE","America/New_York"
-"33189","25.57305","-80.33734","Miami","FL","Florida","TRUE","","25298","1758.2","12086","Miami-Dade","{""12086"": ""100""}","Miami-Dade","12086","FALSE","FALSE","America/New_York"
-"33190","25.55922","-80.34832","Miami","FL","Florida","TRUE","","16147","3504.4","12086","Miami-Dade","{""12086"": ""100""}","Miami-Dade","12086","FALSE","FALSE","America/New_York"
-"33193","25.70175","-80.46679","Miami","FL","Florida","TRUE","","49999","2562.4","12086","Miami-Dade","{""12086"": ""100""}","Miami-Dade","12086","FALSE","FALSE","America/New_York"
-"33194","25.72011","-80.61258","Miami","FL","Florida","TRUE","","8081","35.1","12086","Miami-Dade","{""12086"": ""100""}","Miami-Dade","12086","FALSE","FALSE","America/New_York"
-"33196","25.65144","-80.48644","Miami","FL","Florida","TRUE","","53047","836.5","12086","Miami-Dade","{""12086"": ""100""}","Miami-Dade","12086","FALSE","FALSE","America/New_York"
-"33301","26.1212","-80.1276","Fort Lauderdale","FL","Florida","TRUE","","14988","2327.3","12011","Broward","{""12011"": ""100""}","Broward","12011","FALSE","FALSE","America/New_York"
-"33304","26.13863","-80.12161","Fort Lauderdale","FL","Florida","TRUE","","18351","2230.3","12011","Broward","{""12011"": ""100""}","Broward","12011","FALSE","FALSE","America/New_York"
-"33305","26.1543","-80.12341","Fort Lauderdale","FL","Florida","TRUE","","12222","2160.4","12011","Broward","{""12011"": ""100""}","Broward","12011","FALSE","FALSE","America/New_York"
-"33306","26.16559","-80.11386","Fort Lauderdale","FL","Florida","TRUE","","3124","1425.7","12011","Broward","{""12011"": ""100""}","Broward","12011","FALSE","FALSE","America/New_York"
-"33308","26.18975","-80.10844","Fort Lauderdale","FL","Florida","TRUE","","27294","2317.1","12011","Broward","{""12011"": ""100""}","Broward","12011","FALSE","FALSE","America/New_York"
-"33309","26.18799","-80.17327","Fort Lauderdale","FL","Florida","TRUE","","40844","1649.0","12011","Broward","{""12011"": ""100""}","Broward","12011","FALSE","FALSE","America/New_York"
-"33311","26.14412","-80.17331","Fort Lauderdale","FL","Florida","TRUE","","76073","2838.6","12011","Broward","{""12011"": ""100""}","Broward","12011","FALSE","FALSE","America/New_York"
-"33312","26.08831","-80.18164","Fort Lauderdale","FL","Florida","TRUE","","55298","1921.2","12011","Broward","{""12011"": ""100""}","Broward","12011","FALSE","FALSE","America/New_York"
-"33313","26.15043","-80.22638","Fort Lauderdale","FL","Florida","TRUE","","62842","3772.3","12011","Broward","{""12011"": ""100""}","Broward","12011","FALSE","FALSE","America/New_York"
-"33314","26.06765","-80.22307","Fort Lauderdale","FL","Florida","TRUE","","27261","1257.1","12011","Broward","{""12011"": ""100""}","Broward","12011","FALSE","FALSE","America/New_York"
-"33315","26.08705","-80.15296","Fort Lauderdale","FL","Florida","TRUE","","13801","1018.1","12011","Broward","{""12011"": ""100""}","Broward","12011","FALSE","FALSE","America/New_York"
-"33316","26.09503","-80.1241","Fort Lauderdale","FL","Florida","TRUE","","9736","763.8","12011","Broward","{""12011"": ""100""}","Broward","12011","FALSE","FALSE","America/New_York"
-"33317","26.11218","-80.22641","Fort Lauderdale","FL","Florida","TRUE","","38427","1545.8","12011","Broward","{""12011"": ""100""}","Broward","12011","FALSE","FALSE","America/New_York"
-"33319","26.18274","-80.22571","Fort Lauderdale","FL","Florida","TRUE","","46786","2595.5","12011","Broward","{""12011"": ""100""}","Broward","12011","FALSE","FALSE","America/New_York"
-"33321","26.21204","-80.2696","Fort Lauderdale","FL","Florida","TRUE","","47413","2225.9","12011","Broward","{""12011"": ""100""}","Broward","12011","FALSE","FALSE","America/New_York"
-"33322","26.15021","-80.27454","Fort Lauderdale","FL","Florida","TRUE","","39097","2776.0","12011","Broward","{""12011"": ""100""}","Broward","12011","FALSE","FALSE","America/New_York"
-"33323","26.15205","-80.31651","Fort Lauderdale","FL","Florida","TRUE","","21651","1394.6","12011","Broward","{""12011"": ""100""}","Broward","12011","FALSE","FALSE","America/New_York"
-"33324","26.11236","-80.27416","Fort Lauderdale","FL","Florida","TRUE","","49045","2080.0","12011","Broward","{""12011"": ""100""}","Broward","12011","FALSE","FALSE","America/New_York"
-"33325","26.10976","-80.32155","Fort Lauderdale","FL","Florida","TRUE","","29369","1208.0","12011","Broward","{""12011"": ""100""}","Broward","12011","FALSE","FALSE","America/New_York"
-"33326","26.11591","-80.36819","Fort Lauderdale","FL","Florida","TRUE","","33155","1423.5","12011","Broward","{""12011"": ""100""}","Broward","12011","FALSE","FALSE","America/New_York"
-"33327","26.11174","-80.4247","Fort Lauderdale","FL","Florida","TRUE","","23811","819.1","12011","Broward","{""12011"": ""100""}","Broward","12011","FALSE","FALSE","America/New_York"
-"33328","26.06714","-80.27223","Fort Lauderdale","FL","Florida","TRUE","","29626","1216.9","12011","Broward","{""12011"": ""100""}","Broward","12011","FALSE","FALSE","America/New_York"
-"33330","26.05907","-80.32174","Fort Lauderdale","FL","Florida","TRUE","","15793","594.1","12011","Broward","{""12011"": ""100""}","Broward","12011","FALSE","FALSE","America/New_York"
-"33331","26.05977","-80.36798","Fort Lauderdale","FL","Florida","TRUE","","25718","800.7","12011","Broward","{""12011"": ""100""}","Broward","12011","FALSE","FALSE","America/New_York"
-"33332","26.03033","-80.44516","Fort Lauderdale","FL","Florida","TRUE","","11622","147.1","12011","Broward","{""12011"": ""100""}","Broward","12011","FALSE","FALSE","America/New_York"
-"33334","26.18312","-80.13442","Fort Lauderdale","FL","Florida","TRUE","","29494","2379.1","12011","Broward","{""12011"": ""100""}","Broward","12011","FALSE","FALSE","America/New_York"
-"33351","26.1793","-80.27462","Fort Lauderdale","FL","Florida","TRUE","","35769","2494.0","12011","Broward","{""12011"": ""100""}","Broward","12011","FALSE","FALSE","America/New_York"
-"33401","26.71645","-80.06779","West Palm Beach","FL","Florida","TRUE","","28687","2129.3","12099","Palm Beach","{""12099"": ""100""}","Palm Beach","12099","FALSE","FALSE","America/New_York"
-"33403","26.80344","-80.0754","West Palm Beach","FL","Florida","TRUE","","12794","1537.4","12099","Palm Beach","{""12099"": ""100""}","Palm Beach","12099","FALSE","FALSE","America/New_York"
-"33404","26.78246","-80.06623","West Palm Beach","FL","Florida","TRUE","","29339","1512.8","12099","Palm Beach","{""12099"": ""100""}","Palm Beach","12099","FALSE","FALSE","America/New_York"
-"33405","26.66772","-80.05821","West Palm Beach","FL","Florida","TRUE","","20633","1778.6","12099","Palm Beach","{""12099"": ""100""}","Palm Beach","12099","FALSE","FALSE","America/New_York"
-"33406","26.66492","-80.09072","West Palm Beach","FL","Florida","TRUE","","27585","1230.1","12099","Palm Beach","{""12099"": ""100""}","Palm Beach","12099","FALSE","FALSE","America/New_York"
-"33407","26.75779","-80.09074","West Palm Beach","FL","Florida","TRUE","","31551","1258.4","12099","Palm Beach","{""12099"": ""100""}","Palm Beach","12099","FALSE","FALSE","America/New_York"
-"33408","26.84116","-80.05673","North Palm Beach","FL","Florida","TRUE","","18207","1032.4","12099","Palm Beach","{""12099"": ""100""}","Palm Beach","12099","FALSE","FALSE","America/New_York"
-"33409","26.71615","-80.09643","West Palm Beach","FL","Florida","TRUE","","33212","2072.1","12099","Palm Beach","{""12099"": ""100""}","Palm Beach","12099","FALSE","FALSE","America/New_York"
-"33410","26.84657","-80.08804","Palm Beach Gardens","FL","Florida","TRUE","","35089","1202.7","12099","Palm Beach","{""12099"": ""100""}","Palm Beach","12099","FALSE","FALSE","America/New_York"
-"33411","26.71983","-80.19981","West Palm Beach","FL","Florida","TRUE","","72546","670.5","12099","Palm Beach","{""12099"": ""100""}","Palm Beach","12099","FALSE","FALSE","America/New_York"
-"33412","26.80684","-80.21262","West Palm Beach","FL","Florida","TRUE","","15472","128.4","12099","Palm Beach","{""12099"": ""100""}","Palm Beach","12099","FALSE","FALSE","America/New_York"
-"33413","26.66396","-80.15536","West Palm Beach","FL","Florida","TRUE","","17487","939.1","12099","Palm Beach","{""12099"": ""100""}","Palm Beach","12099","FALSE","FALSE","America/New_York"
-"33414","26.64843","-80.25008","Wellington","FL","Florida","TRUE","","61323","848.6","12099","Palm Beach","{""12099"": ""100""}","Palm Beach","12099","FALSE","FALSE","America/New_York"
-"33415","26.66035","-80.12741","West Palm Beach","FL","Florida","TRUE","","51791","2708.9","12099","Palm Beach","{""12099"": ""100""}","Palm Beach","12099","FALSE","FALSE","America/New_York"
-"33417","26.71997","-80.12486","West Palm Beach","FL","Florida","TRUE","","33743","1957.9","12099","Palm Beach","{""12099"": ""100""}","Palm Beach","12099","FALSE","FALSE","America/New_York"
-"33418","26.86073","-80.16693","Palm Beach Gardens","FL","Florida","TRUE","","40926","340.9","12099","Palm Beach","{""12099"": ""100""}","Palm Beach","12099","FALSE","FALSE","America/New_York"
-"33426","26.53398","-80.08297","Boynton Beach","FL","Florida","TRUE","","23866","1499.1","12099","Palm Beach","{""12099"": ""100""}","Palm Beach","12099","FALSE","FALSE","America/New_York"
-"33428","26.34932","-80.21542","Boca Raton","FL","Florida","TRUE","","41441","1782.7","12099","Palm Beach","{""12099"": ""100""}","Palm Beach","12099","FALSE","FALSE","America/New_York"
-"33430","26.63955","-80.55041","Belle Glade","FL","Florida","TRUE","","23172","78.7","12099","Palm Beach","{""12099"": ""100""}","Palm Beach","12099","FALSE","FALSE","America/New_York"
-"33431","26.38101","-80.10349","Boca Raton","FL","Florida","TRUE","","21610","941.6","12099","Palm Beach","{""12099"": ""100""}","Palm Beach","12099","FALSE","FALSE","America/New_York"
-"33432","26.34574","-80.08375","Boca Raton","FL","Florida","TRUE","","20487","1716.9","12099","Palm Beach","{""12099"": ""100""}","Palm Beach","12099","FALSE","FALSE","America/New_York"
-"33433","26.34713","-80.15923","Boca Raton","FL","Florida","TRUE","","40257","1637.9","12099","Palm Beach","{""12099"": ""100""}","Palm Beach","12099","FALSE","FALSE","America/New_York"
-"33434","26.38156","-80.1687","Boca Raton","FL","Florida","TRUE","","20486","1179.5","12099","Palm Beach","{""12099"": ""100""}","Palm Beach","12099","FALSE","FALSE","America/New_York"
-"33435","26.52511","-80.06281","Boynton Beach","FL","Florida","TRUE","","36166","2176.3","12099","Palm Beach","{""12099"": ""100""}","Palm Beach","12099","FALSE","FALSE","America/New_York"
-"33436","26.52439","-80.1075","Boynton Beach","FL","Florida","TRUE","","44489","1463.9","12099","Palm Beach","{""12099"": ""100""}","Palm Beach","12099","FALSE","FALSE","America/New_York"
-"33437","26.51176","-80.14902","Boynton Beach","FL","Florida","TRUE","","38152","1361.1","12099","Palm Beach","{""12099"": ""100""}","Palm Beach","12099","FALSE","FALSE","America/New_York"
-"33438","26.9318","-80.59593","Canal Point","FL","Florida","TRUE","","367","6.7","12099","Palm Beach","{""12099"": ""93.25"", ""12085"": ""6.75""}","Palm Beach|Martin","12099|12085","FALSE","FALSE","America/New_York"
-"33440","26.54379","-81.03645","Clewiston","FL","Florida","TRUE","","19761","11.6","12051","Hendry","{""12051"": ""98.66"", ""12099"": ""1.34""}","Hendry|Palm Beach","12051|12099","FALSE","FALSE","America/New_York"
-"33441","26.31098","-80.09878","Deerfield Beach","FL","Florida","TRUE","","27323","2208.7","12011","Broward","{""12011"": ""100""}","Broward","12011","FALSE","FALSE","America/New_York"
-"33442","26.31032","-80.14549","Deerfield Beach","FL","Florida","TRUE","","28964","1674.2","12011","Broward","{""12011"": ""100""}","Broward","12011","FALSE","FALSE","America/New_York"
-"33444","26.45817","-80.07997","Delray Beach","FL","Florida","TRUE","","24597","1889.5","12099","Palm Beach","{""12099"": ""100""}","Palm Beach","12099","FALSE","FALSE","America/New_York"
-"33445","26.45469","-80.10623","Delray Beach","FL","Florida","TRUE","","31703","1518.9","12099","Palm Beach","{""12099"": ""100""}","Palm Beach","12099","FALSE","FALSE","America/New_York"
-"33446","26.45044","-80.18621","Delray Beach","FL","Florida","TRUE","","26006","472.9","12099","Palm Beach","{""12099"": ""100""}","Palm Beach","12099","FALSE","FALSE","America/New_York"
-"33449","26.58992","-80.23268","Lake Worth","FL","Florida","TRUE","","12321","256.4","12099","Palm Beach","{""12099"": ""100""}","Palm Beach","12099","FALSE","FALSE","America/New_York"
-"33455","27.05565","-80.16475","Hobe Sound","FL","Florida","TRUE","","22200","174.8","12085","Martin","{""12085"": ""100""}","Martin","12085","FALSE","FALSE","America/New_York"
-"33458","26.93751","-80.13189","Jupiter","FL","Florida","TRUE","","58714","1048.7","12099","Palm Beach","{""12099"": ""98.05"", ""12085"": ""1.95""}","Palm Beach|Martin","12099|12085","FALSE","FALSE","America/New_York"
-"33460","26.61985","-80.05652","Lake Worth Beach","FL","Florida","TRUE","","32573","2701.4","12099","Palm Beach","{""12099"": ""100""}","Palm Beach","12099","FALSE","FALSE","America/New_York"
-"33461","26.62016","-80.09097","Lake Worth","FL","Florida","TRUE","","47735","2558.4","12099","Palm Beach","{""12099"": ""100""}","Palm Beach","12099","FALSE","FALSE","America/New_York"
-"33462","26.58054","-80.07352","Lake Worth","FL","Florida","TRUE","","33241","1479.9","12099","Palm Beach","{""12099"": ""100""}","Palm Beach","12099","FALSE","FALSE","America/New_York"
-"33463","26.59529","-80.13004","Lake Worth","FL","Florida","TRUE","","63577","2281.9","12099","Palm Beach","{""12099"": ""100""}","Palm Beach","12099","FALSE","FALSE","America/New_York"
-"33467","26.5946","-80.17553","Lake Worth","FL","Florida","TRUE","","54261","1137.4","12099","Palm Beach","{""12099"": ""100""}","Palm Beach","12099","FALSE","FALSE","America/New_York"
-"33469","26.98421","-80.10921","Jupiter","FL","Florida","TRUE","","14924","504.2","12099","Palm Beach","{""12099"": ""67.19"", ""12085"": ""32.81""}","Palm Beach|Martin","12099|12085","FALSE","FALSE","America/New_York"
-"33470","26.72708","-80.32037","Loxahatchee","FL","Florida","TRUE","","27317","134.7","12099","Palm Beach","{""12099"": ""100""}","Palm Beach","12099","FALSE","FALSE","America/New_York"
-"33471","26.88424","-81.19281","Moore Haven","FL","Florida","TRUE","","6866","10.0","12043","Glades","{""12043"": ""100""}","Glades","12043","FALSE","FALSE","America/New_York"
-"33472","26.53828","-80.18581","Boynton Beach","FL","Florida","TRUE","","19925","592.9","12099","Palm Beach","{""12099"": ""100""}","Palm Beach","12099","FALSE","FALSE","America/New_York"
-"33473","26.50375","-80.19157","Boynton Beach","FL","Florida","TRUE","","12210","664.4","12099","Palm Beach","{""12099"": ""100""}","Palm Beach","12099","FALSE","FALSE","America/New_York"
-"33476","26.80467","-80.62356","Pahokee","FL","Florida","TRUE","","8513","125.1","12099","Palm Beach","{""12099"": ""100""}","Palm Beach","12099","FALSE","FALSE","America/New_York"
-"33477","26.91391","-80.08001","Jupiter","FL","Florida","TRUE","","12608","778.5","12099","Palm Beach","{""12099"": ""100""}","Palm Beach","12099","FALSE","FALSE","America/New_York"
-"33478","26.94045","-80.24526","Jupiter","FL","Florida","TRUE","","14067","101.6","12099","Palm Beach","{""12099"": ""96.5"", ""12085"": ""3.5""}","Palm Beach|Martin","12099|12085","FALSE","FALSE","America/New_York"
-"33480","26.69027","-80.04053","Palm Beach","FL","Florida","TRUE","","10031","973.0","12099","Palm Beach","{""12099"": ""100""}","Palm Beach","12099","FALSE","FALSE","America/New_York"
-"33483","26.46118","-80.06378","Delray Beach","FL","Florida","TRUE","","12703","1258.2","12099","Palm Beach","{""12099"": ""100""}","Palm Beach","12099","FALSE","FALSE","America/New_York"
-"33484","26.45428","-80.13445","Delray Beach","FL","Florida","TRUE","","26299","1655.0","12099","Palm Beach","{""12099"": ""100""}","Palm Beach","12099","FALSE","FALSE","America/New_York"
-"33486","26.34706","-80.11429","Boca Raton","FL","Florida","TRUE","","23325","1667.5","12099","Palm Beach","{""12099"": ""100""}","Palm Beach","12099","FALSE","FALSE","America/New_York"
-"33487","26.41008","-80.09148","Boca Raton","FL","Florida","TRUE","","20677","1240.6","12099","Palm Beach","{""12099"": ""100""}","Palm Beach","12099","FALSE","FALSE","America/New_York"
-"33493","26.54005","-80.7293","South Bay","FL","Florida","TRUE","","5532","34.4","12099","Palm Beach","{""12099"": ""100""}","Palm Beach","12099","FALSE","FALSE","America/New_York"
-"33496","26.40803","-80.1604","Boca Raton","FL","Florida","TRUE","","22530","934.6","12099","Palm Beach","{""12099"": ""100""}","Palm Beach","12099","FALSE","FALSE","America/New_York"
-"33498","26.38587","-80.21993","Boca Raton","FL","Florida","TRUE","","15150","787.7","12099","Palm Beach","{""12099"": ""100""}","Palm Beach","12099","FALSE","FALSE","America/New_York"
-"33503","27.76516","-82.27648","Balm","FL","Florida","TRUE","","162","96.8","12057","Hillsborough","{""12057"": ""100""}","Hillsborough","12057","FALSE","FALSE","America/New_York"
-"33510","27.95592","-82.30014","Brandon","FL","Florida","TRUE","","29574","1532.6","12057","Hillsborough","{""12057"": ""100""}","Hillsborough","12057","FALSE","FALSE","America/New_York"
-"33511","27.90985","-82.2946","Brandon","FL","Florida","TRUE","","58833","1428.6","12057","Hillsborough","{""12057"": ""100""}","Hillsborough","12057","FALSE","FALSE","America/New_York"
-"33513","28.67022","-82.16579","Bushnell","FL","Florida","TRUE","","12713","54.3","12119","Sumter","{""12119"": ""100""}","Sumter","12119","FALSE","FALSE","America/New_York"
-"33514","28.67731","-81.99648","Center Hill","FL","Florida","TRUE","","2717","19.4","12119","Sumter","{""12119"": ""100""}","Sumter","12119","FALSE","FALSE","America/New_York"
-"33521","28.7983","-82.06841","Coleman","FL","Florida","TRUE","","557","111.9","12119","Sumter","{""12119"": ""100""}","Sumter","12119","FALSE","FALSE","America/New_York"
-"33523","28.4247","-82.2184","Dade City","FL","Florida","TRUE","","18835","61.4","12101","Pasco","{""12101"": ""76.06"", ""12053"": ""23.94""}","Pasco|Hernando","12101|12053","FALSE","FALSE","America/New_York"
-"33525","28.33598","-82.20147","Dade City","FL","Florida","TRUE","","20576","68.5","12101","Pasco","{""12101"": ""100""}","Pasco","12101","FALSE","FALSE","America/New_York"
-"33527","27.97556","-82.21256","Dover","FL","Florida","TRUE","","15092","187.4","12057","Hillsborough","{""12057"": ""100""}","Hillsborough","12057","FALSE","FALSE","America/New_York"
-"33534","27.82342","-82.37676","Gibsonton","FL","Florida","TRUE","","17123","533.9","12057","Hillsborough","{""12057"": ""100""}","Hillsborough","12057","FALSE","FALSE","America/New_York"
-"33538","28.84397","-82.17523","Lake Panasoffkee","FL","Florida","TRUE","","4728","18.9","12119","Sumter","{""12119"": ""100""}","Sumter","12119","FALSE","FALSE","America/New_York"
-"33540","28.21509","-82.15056","Zephyrhills","FL","Florida","TRUE","","8652","95.3","12101","Pasco","{""12101"": ""99.04"", ""12057"": ""0.96""}","Pasco|Hillsborough","12101|12057","FALSE","FALSE","America/New_York"
-"33541","28.23204","-82.2207","Zephyrhills","FL","Florida","TRUE","","21612","338.9","12101","Pasco","{""12101"": ""100""}","Pasco","12101","FALSE","FALSE","America/New_York"
-"33542","28.23546","-82.1771","Zephyrhills","FL","Florida","TRUE","","22057","815.4","12101","Pasco","{""12101"": ""100""}","Pasco","12101","FALSE","FALSE","America/New_York"
-"33543","28.20072","-82.29637","Wesley Chapel","FL","Florida","TRUE","","28156","528.8","12101","Pasco","{""12101"": ""100""}","Pasco","12101","FALSE","FALSE","America/New_York"
-"33544","28.24404","-82.36602","Wesley Chapel","FL","Florida","TRUE","","28187","317.2","12101","Pasco","{""12101"": ""100""}","Pasco","12101","FALSE","FALSE","America/New_York"
-"33545","28.26967","-82.29027","Wesley Chapel","FL","Florida","TRUE","","19592","256.6","12101","Pasco","{""12101"": ""100""}","Pasco","12101","FALSE","FALSE","America/New_York"
-"33547","27.7763","-82.13381","Lithia","FL","Florida","TRUE","","25907","69.2","12057","Hillsborough","{""12057"": ""100""}","Hillsborough","12057","FALSE","FALSE","America/New_York"
-"33548","28.13854","-82.48206","Lutz","FL","Florida","TRUE","","7222","356.6","12057","Hillsborough","{""12057"": ""97.31"", ""12101"": ""2.69""}","Hillsborough|Pasco","12057|12101","FALSE","FALSE","America/New_York"
-"33549","28.14056","-82.44643","Lutz","FL","Florida","TRUE","","17998","591.3","12057","Hillsborough","{""12057"": ""76.39"", ""12101"": ""23.61""}","Hillsborough|Pasco","12057|12101","FALSE","FALSE","America/New_York"
-"33556","28.14135","-82.59411","Odessa","FL","Florida","TRUE","","23182","244.1","12057","Hillsborough","{""12057"": ""71.55"", ""12101"": ""28.45""}","Hillsborough|Pasco","12057|12101","FALSE","FALSE","America/New_York"
-"33558","28.15879","-82.51562","Lutz","FL","Florida","TRUE","","24248","539.3","12057","Hillsborough","{""12057"": ""85.44"", ""12101"": ""14.56""}","Hillsborough|Pasco","12057|12101","FALSE","FALSE","America/New_York"
-"33559","28.15525","-82.41117","Lutz","FL","Florida","TRUE","","18473","564.2","12057","Hillsborough","{""12057"": ""52.97"", ""12101"": ""47.03""}","Hillsborough|Pasco","12057|12101","FALSE","FALSE","America/New_York"
-"33563","28.01708","-82.12457","Plant City","FL","Florida","TRUE","","28033","733.1","12057","Hillsborough","{""12057"": ""100""}","Hillsborough","12057","FALSE","FALSE","America/New_York"
-"33565","28.09511","-82.15236","Plant City","FL","Florida","TRUE","","17864","78.8","12057","Hillsborough","{""12057"": ""100""}","Hillsborough","12057","FALSE","FALSE","America/New_York"
-"33566","27.99275","-82.11639","Plant City","FL","Florida","TRUE","","21505","361.8","12057","Hillsborough","{""12057"": ""100""}","Hillsborough","12057","FALSE","FALSE","America/New_York"
-"33567","27.92202","-82.12162","Plant City","FL","Florida","TRUE","","12195","111.8","12057","Hillsborough","{""12057"": ""100""}","Hillsborough","12057","FALSE","FALSE","America/New_York"
-"33569","27.84514","-82.28718","Riverview","FL","Florida","TRUE","","28442","756.2","12057","Hillsborough","{""12057"": ""100""}","Hillsborough","12057","FALSE","FALSE","America/New_York"
-"33570","27.68991","-82.45855","Ruskin","FL","Florida","TRUE","","29967","293.3","12057","Hillsborough","{""12057"": ""100""}","Hillsborough","12057","FALSE","FALSE","America/New_York"
-"33572","27.7629","-82.4105","Apollo Beach","FL","Florida","TRUE","","20380","500.6","12057","Hillsborough","{""12057"": ""100""}","Hillsborough","12057","FALSE","FALSE","America/New_York"
-"33573","27.72364","-82.35938","Sun City Center","FL","Florida","TRUE","","23170","507.0","12057","Hillsborough","{""12057"": ""100""}","Hillsborough","12057","FALSE","FALSE","America/New_York"
-"33576","28.32589","-82.32911","San Antonio","FL","Florida","TRUE","","4543","110.6","12101","Pasco","{""12101"": ""100""}","Pasco","12101","FALSE","FALSE","America/New_York"
-"33578","27.86329","-82.34943","Riverview","FL","Florida","TRUE","","52486","940.9","12057","Hillsborough","{""12057"": ""100""}","Hillsborough","12057","FALSE","FALSE","America/New_York"
-"33579","27.79654","-82.28746","Riverview","FL","Florida","TRUE","","36005","650.7","12057","Hillsborough","{""12057"": ""100""}","Hillsborough","12057","FALSE","FALSE","America/New_York"
-"33584","28.00862","-82.2879","Seffner","FL","Florida","TRUE","","26798","482.9","12057","Hillsborough","{""12057"": ""100""}","Hillsborough","12057","FALSE","FALSE","America/New_York"
-"33585","28.74634","-82.0673","Sumterville","FL","Florida","TRUE","","1133","25.5","12119","Sumter","{""12119"": ""100""}","Sumter","12119","FALSE","FALSE","America/New_York"
-"33592","28.10067","-82.28808","Thonotosassa","FL","Florida","TRUE","","11546","91.0","12057","Hillsborough","{""12057"": ""100""}","Hillsborough","12057","FALSE","FALSE","America/New_York"
-"33594","27.94073","-82.24195","Valrico","FL","Florida","TRUE","","34941","1302.9","12057","Hillsborough","{""12057"": ""100""}","Hillsborough","12057","FALSE","FALSE","America/New_York"
-"33596","27.88809","-82.23612","Valrico","FL","Florida","TRUE","","30830","1020.9","12057","Hillsborough","{""12057"": ""100""}","Hillsborough","12057","FALSE","FALSE","America/New_York"
-"33597","28.54893","-82.08059","Webster","FL","Florida","TRUE","","7702","22.5","12119","Sumter","{""12119"": ""82.83"", ""12053"": ""16.65"", ""12101"": ""0.52""}","Sumter|Hernando|Pasco","12119|12053|12101","FALSE","FALSE","America/New_York"
-"33598","27.68655","-82.28165","Wimauma","FL","Florida","TRUE","","20053","71.5","12057","Hillsborough","{""12057"": ""98.83"", ""12081"": ""1.17""}","Hillsborough|Manatee","12057|12081","FALSE","FALSE","America/New_York"
-"33602","27.9536","-82.45686","Tampa","FL","Florida","TRUE","","15586","2361.2","12057","Hillsborough","{""12057"": ""100""}","Hillsborough","12057","FALSE","FALSE","America/New_York"
-"33603","27.98544","-82.46462","Tampa","FL","Florida","TRUE","","21366","1994.1","12057","Hillsborough","{""12057"": ""100""}","Hillsborough","12057","FALSE","FALSE","America/New_York"
-"33604","28.01699","-82.45526","Tampa","FL","Florida","TRUE","","39604","2053.6","12057","Hillsborough","{""12057"": ""100""}","Hillsborough","12057","FALSE","FALSE","America/New_York"
-"33605","27.95119","-82.42948","Tampa","FL","Florida","TRUE","","17655","871.2","12057","Hillsborough","{""12057"": ""100""}","Hillsborough","12057","FALSE","FALSE","America/New_York"
-"33606","27.93218","-82.46488","Tampa","FL","Florida","TRUE","","20576","2420.5","12057","Hillsborough","{""12057"": ""100""}","Hillsborough","12057","FALSE","FALSE","America/New_York"
-"33607","27.96757","-82.51377","Tampa","FL","Florida","TRUE","","24384","1039.6","12057","Hillsborough","{""12057"": ""100""}","Hillsborough","12057","FALSE","FALSE","America/New_York"
-"33609","27.94432","-82.51354","Tampa","FL","Florida","TRUE","","18367","1617.6","12057","Hillsborough","{""12057"": ""100""}","Hillsborough","12057","FALSE","FALSE","America/New_York"
-"33610","27.99719","-82.38038","Tampa","FL","Florida","TRUE","","46799","1012.1","12057","Hillsborough","{""12057"": ""100""}","Hillsborough","12057","FALSE","FALSE","America/New_York"
-"33611","27.89059","-82.50685","Tampa","FL","Florida","TRUE","","33070","2001.6","12057","Hillsborough","{""12057"": ""100""}","Hillsborough","12057","FALSE","FALSE","America/New_York"
-"33612","28.05077","-82.44977","Tampa","FL","Florida","TRUE","","51745","1954.9","12057","Hillsborough","{""12057"": ""100""}","Hillsborough","12057","FALSE","FALSE","America/New_York"
-"33613","28.08363","-82.45087","Tampa","FL","Florida","TRUE","","36270","1904.3","12057","Hillsborough","{""12057"": ""100""}","Hillsborough","12057","FALSE","FALSE","America/New_York"
-"33614","28.00596","-82.50608","Tampa","FL","Florida","TRUE","","49060","1938.3","12057","Hillsborough","{""12057"": ""100""}","Hillsborough","12057","FALSE","FALSE","America/New_York"
-"33615","28.00536","-82.58135","Tampa","FL","Florida","TRUE","","47512","2127.5","12057","Hillsborough","{""12057"": ""100""}","Hillsborough","12057","FALSE","FALSE","America/New_York"
-"33616","27.86641","-82.52876","Tampa","FL","Florida","TRUE","","16781","1704.7","12057","Hillsborough","{""12057"": ""100""}","Hillsborough","12057","FALSE","FALSE","America/New_York"
-"33617","28.03838","-82.39271","Tampa","FL","Florida","TRUE","","47441","2130.1","12057","Hillsborough","{""12057"": ""100""}","Hillsborough","12057","FALSE","FALSE","America/New_York"
-"33618","28.07338","-82.49858","Tampa","FL","Florida","TRUE","","27352","1218.9","12057","Hillsborough","{""12057"": ""100""}","Hillsborough","12057","FALSE","FALSE","America/New_York"
-"33619","27.937","-82.37848","Tampa","FL","Florida","TRUE","","40092","582.8","12057","Hillsborough","{""12057"": ""100""}","Hillsborough","12057","FALSE","FALSE","America/New_York"
-"33620","28.06152","-82.41118","Tampa","FL","Florida","TRUE","","5318","2315.2","12057","Hillsborough","{""12057"": ""100""}","Hillsborough","12057","FALSE","FALSE","America/New_York"
-"33621","27.84361","-82.50103","Tampa","FL","Florida","TRUE","","2751","127.5","12057","Hillsborough","{""12057"": ""100""}","Hillsborough","12057","FALSE","FALSE","America/New_York"
-"33624","28.07901","-82.52678","Tampa","FL","Florida","TRUE","","39803","1711.2","12057","Hillsborough","{""12057"": ""100""}","Hillsborough","12057","FALSE","FALSE","America/New_York"
-"33625","28.06799","-82.5604","Tampa","FL","Florida","TRUE","","27305","1153.0","12057","Hillsborough","{""12057"": ""100""}","Hillsborough","12057","FALSE","FALSE","America/New_York"
-"33626","28.06628","-82.6165","Tampa","FL","Florida","TRUE","","30743","866.5","12057","Hillsborough","{""12057"": ""100""}","Hillsborough","12057","FALSE","FALSE","America/New_York"
-"33629","27.92192","-82.51005","Tampa","FL","Florida","TRUE","","27061","2170.4","12057","Hillsborough","{""12057"": ""100""}","Hillsborough","12057","FALSE","FALSE","America/New_York"
-"33634","28.00884","-82.54618","Tampa","FL","Florida","TRUE","","22719","1069.3","12057","Hillsborough","{""12057"": ""100""}","Hillsborough","12057","FALSE","FALSE","America/New_York"
-"33635","28.0273","-82.6177","Tampa","FL","Florida","TRUE","","18650","1271.2","12057","Hillsborough","{""12057"": ""100""}","Hillsborough","12057","FALSE","FALSE","America/New_York"
-"33637","28.04728","-82.36133","Tampa","FL","Florida","TRUE","","17555","872.9","12057","Hillsborough","{""12057"": ""100""}","Hillsborough","12057","FALSE","FALSE","America/New_York"
-"33647","28.13413","-82.35798","Tampa","FL","Florida","TRUE","","71004","807.9","12057","Hillsborough","{""12057"": ""100""}","Hillsborough","12057","FALSE","FALSE","America/New_York"
-"33701","27.77041","-82.6357","Saint Petersburg","FL","Florida","TRUE","","15728","2276.5","12103","Pinellas","{""12103"": ""100""}","Pinellas","12103","FALSE","FALSE","America/New_York"
-"33702","27.84538","-82.63163","Saint Petersburg","FL","Florida","TRUE","","32019","1239.0","12103","Pinellas","{""12103"": ""100""}","Pinellas","12103","FALSE","FALSE","America/New_York"
-"33703","27.81756","-82.62438","Saint Petersburg","FL","Florida","TRUE","","25699","1973.6","12103","Pinellas","{""12103"": ""100""}","Pinellas","12103","FALSE","FALSE","America/New_York"
-"33704","27.79665","-82.63295","Saint Petersburg","FL","Florida","TRUE","","16982","1903.3","12103","Pinellas","{""12103"": ""100""}","Pinellas","12103","FALSE","FALSE","America/New_York"
-"33705","27.73633","-82.64469","Saint Petersburg","FL","Florida","TRUE","","28857","1839.5","12103","Pinellas","{""12103"": ""100""}","Pinellas","12103","FALSE","FALSE","America/New_York"
-"33706","27.74352","-82.74997","Saint Petersburg","FL","Florida","TRUE","","16321","1723.3","12103","Pinellas","{""12103"": ""100""}","Pinellas","12103","FALSE","FALSE","America/New_York"
-"33707","27.75552","-82.72564","Saint Petersburg","FL","Florida","TRUE","","24767","1815.7","12103","Pinellas","{""12103"": ""100""}","Pinellas","12103","FALSE","FALSE","America/New_York"
-"33708","27.81181","-82.79319","Saint Petersburg","FL","Florida","TRUE","","16083","1818.6","12103","Pinellas","{""12103"": ""100""}","Pinellas","12103","FALSE","FALSE","America/New_York"
-"33709","27.81714","-82.73058","Saint Petersburg","FL","Florida","TRUE","","24619","1850.0","12103","Pinellas","{""12103"": ""100""}","Pinellas","12103","FALSE","FALSE","America/New_York"
-"33710","27.79007","-82.7304","Saint Petersburg","FL","Florida","TRUE","","34222","1664.9","12103","Pinellas","{""12103"": ""100""}","Pinellas","12103","FALSE","FALSE","America/New_York"
-"33711","27.73891","-82.68843","Saint Petersburg","FL","Florida","TRUE","","19706","1596.0","12103","Pinellas","{""12103"": ""100""}","Pinellas","12103","FALSE","FALSE","America/New_York"
-"33712","27.73735","-82.66686","Saint Petersburg","FL","Florida","TRUE","","24738","1635.0","12103","Pinellas","{""12103"": ""100""}","Pinellas","12103","FALSE","FALSE","America/New_York"
-"33713","27.78879","-82.67756","Saint Petersburg","FL","Florida","TRUE","","32348","1906.0","12103","Pinellas","{""12103"": ""100""}","Pinellas","12103","FALSE","FALSE","America/New_York"
-"33714","27.81702","-82.67755","Saint Petersburg","FL","Florida","TRUE","","21866","2278.0","12103","Pinellas","{""12103"": ""100""}","Pinellas","12103","FALSE","FALSE","America/New_York"
-"33715","27.66134","-82.72377","Saint Petersburg","FL","Florida","TRUE","","7296","765.9","12103","Pinellas","{""12103"": ""100""}","Pinellas","12103","FALSE","FALSE","America/New_York"
-"33716","27.87642","-82.65137","Saint Petersburg","FL","Florida","TRUE","","18242","962.2","12103","Pinellas","{""12103"": ""100""}","Pinellas","12103","FALSE","FALSE","America/New_York"
-"33744","27.80853","-82.77452","Bay Pines","FL","Florida","TRUE","","122","81.7","12103","Pinellas","{""12103"": ""100""}","Pinellas","12103","FALSE","FALSE","America/New_York"
-"33755","27.97958","-82.77983","Clearwater","FL","Florida","TRUE","","26616","1906.1","12103","Pinellas","{""12103"": ""100""}","Pinellas","12103","FALSE","FALSE","America/New_York"
-"33756","27.94449","-82.79241","Clearwater","FL","Florida","TRUE","","33971","1814.1","12103","Pinellas","{""12103"": ""100""}","Pinellas","12103","FALSE","FALSE","America/New_York"
-"33759","27.98074","-82.71476","Clearwater","FL","Florida","TRUE","","18236","1301.0","12103","Pinellas","{""12103"": ""100""}","Pinellas","12103","FALSE","FALSE","America/New_York"
-"33760","27.90777","-82.7145","Clearwater","FL","Florida","TRUE","","17336","1313.3","12103","Pinellas","{""12103"": ""100""}","Pinellas","12103","FALSE","FALSE","America/New_York"
-"33761","28.03095","-82.72396","Clearwater","FL","Florida","TRUE","","19794","1436.3","12103","Pinellas","{""12103"": ""100""}","Pinellas","12103","FALSE","FALSE","America/New_York"
-"33762","27.89683","-82.67971","Clearwater","FL","Florida","TRUE","","8355","440.3","12103","Pinellas","{""12103"": ""100""}","Pinellas","12103","FALSE","FALSE","America/New_York"
-"33763","28.00333","-82.74403","Clearwater","FL","Florida","TRUE","","19730","2185.7","12103","Pinellas","{""12103"": ""100""}","Pinellas","12103","FALSE","FALSE","America/New_York"
-"33764","27.93381","-82.74062","Clearwater","FL","Florida","TRUE","","27320","1578.7","12103","Pinellas","{""12103"": ""100""}","Pinellas","12103","FALSE","FALSE","America/New_York"
-"33765","27.97474","-82.74472","Clearwater","FL","Florida","TRUE","","14744","1387.6","12103","Pinellas","{""12103"": ""100""}","Pinellas","12103","FALSE","FALSE","America/New_York"
-"33767","27.97","-82.82337","Clearwater Beach","FL","Florida","TRUE","","7452","1446.7","12103","Pinellas","{""12103"": ""100""}","Pinellas","12103","FALSE","FALSE","America/New_York"
-"33770","27.91469","-82.80358","Largo","FL","Florida","TRUE","","26627","1980.6","12103","Pinellas","{""12103"": ""100""}","Pinellas","12103","FALSE","FALSE","America/New_York"
-"33771","27.90666","-82.75799","Largo","FL","Florida","TRUE","","30365","1993.7","12103","Pinellas","{""12103"": ""100""}","Pinellas","12103","FALSE","FALSE","America/New_York"
-"33772","27.84258","-82.7964","Seminole","FL","Florida","TRUE","","23125","1718.5","12103","Pinellas","{""12103"": ""100""}","Pinellas","12103","FALSE","FALSE","America/New_York"
-"33773","27.88207","-82.75725","Largo","FL","Florida","TRUE","","17595","1359.6","12103","Pinellas","{""12103"": ""100""}","Pinellas","12103","FALSE","FALSE","America/New_York"
-"33774","27.88268","-82.82763","Largo","FL","Florida","TRUE","","18097","1519.5","12103","Pinellas","{""12103"": ""100""}","Pinellas","12103","FALSE","FALSE","America/New_York"
-"33776","27.84985","-82.82609","Seminole","FL","Florida","TRUE","","13573","1519.9","12103","Pinellas","{""12103"": ""100""}","Pinellas","12103","FALSE","FALSE","America/New_York"
-"33777","27.85329","-82.75989","Seminole","FL","Florida","TRUE","","16748","1131.0","12103","Pinellas","{""12103"": ""100""}","Pinellas","12103","FALSE","FALSE","America/New_York"
-"33778","27.88265","-82.79837","Largo","FL","Florida","TRUE","","14582","1507.5","12103","Pinellas","{""12103"": ""100""}","Pinellas","12103","FALSE","FALSE","America/New_York"
-"33781","27.83865","-82.7152","Pinellas Park","FL","Florida","TRUE","","24856","1440.2","12103","Pinellas","{""12103"": ""100""}","Pinellas","12103","FALSE","FALSE","America/New_York"
-"33782","27.85988","-82.70844","Pinellas Park","FL","Florida","TRUE","","23443","1682.7","12103","Pinellas","{""12103"": ""100""}","Pinellas","12103","FALSE","FALSE","America/New_York"
-"33785","27.88543","-82.84425","Indian Rocks Beach","FL","Florida","TRUE","","5432","1779.5","12103","Pinellas","{""12103"": ""100""}","Pinellas","12103","FALSE","FALSE","America/New_York"
-"33786","27.92383","-82.8365","Belleair Beach","FL","Florida","TRUE","","1565","1123.9","12103","Pinellas","{""12103"": ""100""}","Pinellas","12103","FALSE","FALSE","America/New_York"
-"33801","28.04082","-81.89624","Lakeland","FL","Florida","TRUE","","34370","694.8","12105","Polk","{""12105"": ""100""}","Polk","12105","FALSE","FALSE","America/New_York"
-"33803","28.00888","-81.93264","Lakeland","FL","Florida","TRUE","","29460","730.0","12105","Polk","{""12105"": ""100""}","Polk","12105","FALSE","FALSE","America/New_York"
-"33805","28.10248","-81.90748","Lakeland","FL","Florida","TRUE","","25529","366.8","12105","Polk","{""12105"": ""100""}","Polk","12105","FALSE","FALSE","America/New_York"
-"33809","28.2229","-81.97049","Lakeland","FL","Florida","TRUE","","30347","132.6","12105","Polk","{""12105"": ""100""}","Polk","12105","FALSE","FALSE","America/New_York"
-"33810","28.12701","-82.02758","Lakeland","FL","Florida","TRUE","","51139","352.2","12105","Polk","{""12105"": ""99.33"", ""12057"": ""0.67""}","Polk|Hillsborough","12105|12057","FALSE","FALSE","America/New_York"
-"33811","27.98022","-82.01809","Lakeland","FL","Florida","TRUE","","22293","309.5","12105","Polk","{""12105"": ""100""}","Polk","12105","FALSE","FALSE","America/New_York"
-"33812","27.97286","-81.89308","Lakeland","FL","Florida","TRUE","","12998","513.3","12105","Polk","{""12105"": ""100""}","Polk","12105","FALSE","FALSE","America/New_York"
-"33813","27.9611","-81.93981","Lakeland","FL","Florida","TRUE","","38214","957.4","12105","Polk","{""12105"": ""100""}","Polk","12105","FALSE","FALSE","America/New_York"
-"33815","28.04069","-81.99645","Lakeland","FL","Florida","TRUE","","15148","788.9","12105","Polk","{""12105"": ""100""}","Polk","12105","FALSE","FALSE","America/New_York"
-"33823","28.08723","-81.81396","Auburndale","FL","Florida","TRUE","","33615","417.4","12105","Polk","{""12105"": ""100""}","Polk","12105","FALSE","FALSE","America/New_York"
-"33825","27.6243","-81.46502","Avon Park","FL","Florida","TRUE","","26420","80.9","12055","Highlands","{""12055"": ""92.39"", ""12105"": ""7.32"", ""12049"": ""0.29""}","Highlands|Polk|Hardee","12055|12105|12049","FALSE","FALSE","America/New_York"
-"33827","27.81633","-81.51392","Babson Park","FL","Florida","TRUE","","3062","39.3","12105","Polk","{""12105"": ""100""}","Polk","12105","FALSE","FALSE","America/New_York"
-"33830","27.87486","-81.81743","Bartow","FL","Florida","TRUE","","28884","87.7","12105","Polk","{""12105"": ""100""}","Polk","12105","FALSE","FALSE","America/New_York"
-"33834","27.60298","-81.99236","Bowling Green","FL","Florida","TRUE","","7524","16.1","12049","Hardee","{""12049"": ""94.92"", ""12105"": ""3.3"", ""12081"": ""1.77""}","Hardee|Polk|Manatee","12049|12105|12081","FALSE","FALSE","America/New_York"
-"33837","28.19084","-81.59108","Davenport","FL","Florida","TRUE","","30634","230.3","12105","Polk","{""12105"": ""100""}","Polk","12105","FALSE","FALSE","America/New_York"
-"33838","28.02013","-81.61364","Dundee","FL","Florida","TRUE","","4358","287.3","12105","Polk","{""12105"": ""100""}","Polk","12105","FALSE","FALSE","America/New_York"
-"33839","27.97563","-81.75068","Eagle Lake","FL","Florida","TRUE","","3356","450.4","12105","Polk","{""12105"": ""100""}","Polk","12105","FALSE","FALSE","America/New_York"
-"33841","27.73557","-81.7563","Fort Meade","FL","Florida","TRUE","","8969","21.8","12105","Polk","{""12105"": ""100""}","Polk","12105","FALSE","FALSE","America/New_York"
-"33843","27.72289","-81.53169","Frostproof","FL","Florida","TRUE","","11032","41.9","12105","Polk","{""12105"": ""100""}","Polk","12105","FALSE","FALSE","America/New_York"
-"33844","28.08452","-81.58533","Haines City","FL","Florida","TRUE","","36701","141.6","12105","Polk","{""12105"": ""100""}","Polk","12105","FALSE","FALSE","America/New_York"
-"33847","27.80458","-81.82327","Homeland","FL","Florida","TRUE","","176","63.0","12105","Polk","{""12105"": ""100""}","Polk","12105","FALSE","FALSE","America/New_York"
-"33848","28.2774","-81.50688","Intercession City","FL","Florida","TRUE","","1022","29.9","12097","Osceola","{""12097"": ""100""}","Osceola","12097","FALSE","FALSE","America/New_York"
-"33849","28.21676","-82.07373","Kathleen","FL","Florida","TRUE","","1171","20.2","12105","Polk","{""12105"": ""100""}","Polk","12105","FALSE","FALSE","America/New_York"
-"33850","28.12106","-81.73263","Lake Alfred","FL","Florida","TRUE","","8324","174.6","12105","Polk","{""12105"": ""100""}","Polk","12105","FALSE","FALSE","America/New_York"
-"33851","28.04444","-81.62354","Lake Hamilton","FL","Florida","TRUE","","1153","234.9","12105","Polk","{""12105"": ""100""}","Polk","12105","FALSE","FALSE","America/New_York"
-"33852","27.23883","-81.37414","Lake Placid","FL","Florida","TRUE","","21099","24.4","12055","Highlands","{""12055"": ""100""}","Highlands","12055","FALSE","FALSE","America/New_York"
-"33853","27.90029","-81.58465","Lake Wales","FL","Florida","TRUE","","11649","550.8","12105","Polk","{""12105"": ""100""}","Polk","12105","FALSE","FALSE","America/New_York"
-"33854","27.85616","-81.40996","Lakeshore","FL","Florida","TRUE","","294","805.4","12105","Polk","{""12105"": ""100""}","Polk","12105","FALSE","FALSE","America/New_York"
-"33855","27.79538","-81.35278","Indian Lake Estates","FL","Florida","TRUE","","0","0.0","12105","Polk","{""12105"": ""100""}","Polk","12105","FALSE","FALSE","America/New_York"
-"33856","27.85647","-81.42832","Nalcrest","FL","Florida","TRUE","","270","949.2","12105","Polk","{""12105"": ""100""}","Polk","12105","FALSE","FALSE","America/New_York"
-"33857","27.38262","-81.18352","Lorida","FL","Florida","TRUE","","2377","5.0","12055","Highlands","{""12055"": ""100""}","Highlands","12055","FALSE","FALSE","America/New_York"
-"33859","27.87733","-81.62205","Lake Wales","FL","Florida","TRUE","","11025","94.5","12105","Polk","{""12105"": ""100""}","Polk","12105","FALSE","FALSE","America/New_York"
-"33860","27.79175","-81.99412","Mulberry","FL","Florida","TRUE","","26893","88.9","12105","Polk","{""12105"": ""100""}","Polk","12105","FALSE","FALSE","America/New_York"
-"33865","27.43859","-81.96301","Ona","FL","Florida","TRUE","","958","2.1","12049","Hardee","{""12049"": ""100""}","Hardee","12049","FALSE","FALSE","America/New_York"
-"33867","27.77693","-81.19561","River Ranch","FL","Florida","TRUE","","327","28.9","12105","Polk","{""12105"": ""100""}","Polk","12105","FALSE","FALSE","America/New_York"
-"33868","28.25613","-81.82394","Polk City","FL","Florida","TRUE","","12081","28.0","12105","Polk","{""12105"": ""100""}","Polk","12105","FALSE","FALSE","America/New_York"
-"33870","27.50424","-81.40208","Sebring","FL","Florida","TRUE","","22284","155.4","12055","Highlands","{""12055"": ""100""}","Highlands","12055","FALSE","FALSE","America/New_York"
-"33872","27.51314","-81.52645","Sebring","FL","Florida","TRUE","","15923","316.6","12055","Highlands","{""12055"": ""100""}","Highlands","12055","FALSE","FALSE","America/New_York"
-"33873","27.56256","-81.77286","Wauchula","FL","Florida","TRUE","","14162","45.8","12049","Hardee","{""12049"": ""100""}","Hardee","12049","FALSE","FALSE","America/New_York"
-"33875","27.40592","-81.50097","Sebring","FL","Florida","TRUE","","11522","59.1","12055","Highlands","{""12055"": ""100""}","Highlands","12055","FALSE","FALSE","America/New_York"
-"33876","27.42871","-81.35191","Sebring","FL","Florida","TRUE","","4888","55.1","12055","Highlands","{""12055"": ""100""}","Highlands","12055","FALSE","FALSE","America/New_York"
-"33877","27.98908","-81.61441","Waverly","FL","Florida","TRUE","","618","104.2","12105","Polk","{""12105"": ""100""}","Polk","12105","FALSE","FALSE","America/New_York"
-"33880","27.98133","-81.78035","Winter Haven","FL","Florida","TRUE","","40519","365.8","12105","Polk","{""12105"": ""100""}","Polk","12105","FALSE","FALSE","America/New_York"
-"33881","28.05361","-81.70751","Winter Haven","FL","Florida","TRUE","","34340","606.9","12105","Polk","{""12105"": ""100""}","Polk","12105","FALSE","FALSE","America/New_York"
-"33884","27.98101","-81.67356","Winter Haven","FL","Florida","TRUE","","32019","618.6","12105","Polk","{""12105"": ""100""}","Polk","12105","FALSE","FALSE","America/New_York"
-"33890","27.44704","-81.6889","Zolfo Springs","FL","Florida","TRUE","","4773","7.6","12049","Hardee","{""12049"": ""100""}","Hardee","12049","FALSE","FALSE","America/New_York"
-"33896","28.25745","-81.58424","Davenport","FL","Florida","TRUE","","11654","389.8","12105","Polk","{""12105"": ""90.16"", ""12097"": ""9.84""}","Polk|Osceola","12105|12097","FALSE","FALSE","America/New_York"
-"33897","28.27174","-81.69025","Davenport","FL","Florida","TRUE","","22752","248.7","12105","Polk","{""12105"": ""100""}","Polk","12105","FALSE","FALSE","America/New_York"
-"33898","27.82721","-81.36219","Lake Wales","FL","Florida","TRUE","","16931","21.4","12105","Polk","{""12105"": ""100""}","Polk","12105","FALSE","FALSE","America/New_York"
-"33901","26.62116","-81.87865","Fort Myers","FL","Florida","TRUE","","21364","1323.9","12071","Lee","{""12071"": ""100""}","Lee","12071","FALSE","FALSE","America/New_York"
-"33903","26.6811","-81.90668","North Fort Myers","FL","Florida","TRUE","","22657","696.1","12071","Lee","{""12071"": ""100""}","Lee","12071","FALSE","FALSE","America/New_York"
-"33904","26.57594","-81.94538","Cape Coral","FL","Florida","TRUE","","31086","1234.1","12071","Lee","{""12071"": ""100""}","Lee","12071","FALSE","FALSE","America/New_York"
-"33905","26.6693","-81.76046","Fort Myers","FL","Florida","TRUE","","37492","343.9","12071","Lee","{""12071"": ""100""}","Lee","12071","FALSE","FALSE","America/New_York"
-"33907","26.56431","-81.87137","Fort Myers","FL","Florida","TRUE","","24429","1343.1","12071","Lee","{""12071"": ""100""}","Lee","12071","FALSE","FALSE","America/New_York"
-"33908","26.49315","-81.9197","Fort Myers","FL","Florida","TRUE","","36513","436.1","12071","Lee","{""12071"": ""100""}","Lee","12071","FALSE","FALSE","America/New_York"
-"33909","26.69389","-81.94527","Cape Coral","FL","Florida","TRUE","","31750","681.2","12071","Lee","{""12071"": ""100""}","Lee","12071","FALSE","FALSE","America/New_York"
-"33912","26.53286","-81.8252","Fort Myers","FL","Florida","TRUE","","18646","338.1","12071","Lee","{""12071"": ""100""}","Lee","12071","FALSE","FALSE","America/New_York"
-"33913","26.5162","-81.69652","Fort Myers","FL","Florida","TRUE","","25497","97.5","12071","Lee","{""12071"": ""100""}","Lee","12071","FALSE","FALSE","America/New_York"
-"33914","26.56798","-82.01549","Cape Coral","FL","Florida","TRUE","","38281","663.6","12071","Lee","{""12071"": ""100""}","Lee","12071","FALSE","FALSE","America/New_York"
-"33916","26.63434","-81.83912","Fort Myers","FL","Florida","TRUE","","24907","939.0","12071","Lee","{""12071"": ""100""}","Lee","12071","FALSE","FALSE","America/New_York"
-"33917","26.73578","-81.84351","North Fort Myers","FL","Florida","TRUE","","30049","209.8","12071","Lee","{""12071"": ""99.54"", ""12015"": ""0.46""}","Lee|Charlotte","12071|12015","FALSE","FALSE","America/New_York"
-"33919","26.55668","-81.90338","Fort Myers","FL","Florida","TRUE","","30330","1301.6","12071","Lee","{""12071"": ""100""}","Lee","12071","FALSE","FALSE","America/New_York"
-"33920","26.72892","-81.65256","Alva","FL","Florida","TRUE","","6243","39.2","12071","Lee","{""12071"": ""100""}","Lee","12071","FALSE","FALSE","America/New_York"
-"33921","26.77871","-82.25375","Boca Grande","FL","Florida","TRUE","","813","113.4","12071","Lee","{""12071"": ""76.98"", ""12015"": ""23.02""}","Lee|Charlotte","12071|12015","FALSE","FALSE","America/New_York"
-"33922","26.66432","-82.13808","Bokeelia","FL","Florida","TRUE","","4108","97.5","12071","Lee","{""12071"": ""100""}","Lee","12071","FALSE","FALSE","America/New_York"
-"33924","26.60931","-82.22205","Captiva","FL","Florida","TRUE","","195","10.5","12071","Lee","{""12071"": ""100""}","Lee","12071","FALSE","FALSE","America/New_York"
-"33928","26.41977","-81.72336","Estero","FL","Florida","TRUE","","25141","135.9","12071","Lee","{""12071"": ""100""}","Lee","12071","FALSE","FALSE","America/New_York"
-"33930","26.56661","-81.41402","Felda","FL","Florida","TRUE","","930","3.1","12051","Hendry","{""12051"": ""100""}","Hendry","12051","FALSE","FALSE","America/New_York"
-"33931","26.43551","-81.90623","Fort Myers Beach","FL","Florida","TRUE","","10566","373.5","12071","Lee","{""12071"": ""100""}","Lee","12071","FALSE","FALSE","America/New_York"
-"33935","26.75919","-81.43303","Labelle","FL","Florida","TRUE","","23513","26.6","12051","Hendry","{""12051"": ""84.14"", ""12043"": ""15.86""}","Hendry|Glades","12051|12043","FALSE","FALSE","America/New_York"
-"33936","26.61572","-81.58998","Lehigh Acres","FL","Florida","TRUE","","24517","480.0","12071","Lee","{""12071"": ""99.63"", ""12051"": ""0.37""}","Lee|Hendry","12071|12051","FALSE","FALSE","America/New_York"
-"33944","26.98641","-81.28098","Palmdale","FL","Florida","TRUE","","219","1.6","12043","Glades","{""12043"": ""100""}","Glades","12043","FALSE","FALSE","America/New_York"
-"33945","26.60226","-82.22088","Pineland","FL","Florida","TRUE","","0","0.0","12071","Lee","{""12071"": ""100""}","Lee","12071","FALSE","FALSE","America/New_York"
-"33946","26.84774","-82.27295","Placida","FL","Florida","TRUE","","2104","89.0","12015","Charlotte","{""12015"": ""100""}","Charlotte","12015","FALSE","FALSE","America/New_York"
-"33947","26.88719","-82.26976","Rotonda West","FL","Florida","TRUE","","9096","242.5","12015","Charlotte","{""12015"": ""100""}","Charlotte","12015","FALSE","FALSE","America/New_York"
-"33948","26.98414","-82.15122","Port Charlotte","FL","Florida","TRUE","","17122","509.2","12015","Charlotte","{""12015"": ""100""}","Charlotte","12015","FALSE","FALSE","America/New_York"
-"33950","26.9022","-82.04419","Punta Gorda","FL","Florida","TRUE","","23299","400.4","12015","Charlotte","{""12015"": ""100""}","Charlotte","12015","FALSE","FALSE","America/New_York"
-"33952","26.99012","-82.0972","Port Charlotte","FL","Florida","TRUE","","33390","1167.6","12015","Charlotte","{""12015"": ""100""}","Charlotte","12015","FALSE","FALSE","America/New_York"
-"33953","26.99969","-82.21204","Port Charlotte","FL","Florida","TRUE","","6741","160.9","12015","Charlotte","{""12015"": ""100""}","Charlotte","12015","FALSE","FALSE","America/New_York"
-"33954","27.02514","-82.12211","Port Charlotte","FL","Florida","TRUE","","10573","480.5","12015","Charlotte","{""12015"": ""100""}","Charlotte","12015","FALSE","FALSE","America/New_York"
-"33955","26.81037","-81.98116","Punta Gorda","FL","Florida","TRUE","","11436","81.6","12015","Charlotte","{""12015"": ""81.84"", ""12071"": ""18.16""}","Charlotte|Lee","12015|12071","FALSE","FALSE","America/New_York"
-"33956","26.54736","-82.09612","Saint James City","FL","Florida","TRUE","","3489","82.5","12071","Lee","{""12071"": ""100""}","Lee","12071","FALSE","FALSE","America/New_York"
-"33957","26.45347","-82.10241","Sanibel","FL","Florida","TRUE","","7319","174.2","12071","Lee","{""12071"": ""100""}","Lee","12071","FALSE","FALSE","America/New_York"
-"33960","27.03757","-81.42351","Venus","FL","Florida","TRUE","","672","1.2","12055","Highlands","{""12055"": ""96.84"", ""12043"": ""3.16""}","Highlands|Glades","12055|12043","FALSE","FALSE","America/New_York"
-"33965","26.46368","-81.77214","Fort Myers","FL","Florida","TRUE","","1735","444.7","12071","Lee","{""12071"": ""100""}","Lee","12071","FALSE","FALSE","America/New_York"
-"33966","26.58237","-81.83205","Fort Myers","FL","Florida","TRUE","","10065","443.1","12071","Lee","{""12071"": ""100""}","Lee","12071","FALSE","FALSE","America/New_York"
-"33967","26.47223","-81.81223","Fort Myers","FL","Florida","TRUE","","25129","1274.8","12071","Lee","{""12071"": ""100""}","Lee","12071","FALSE","FALSE","America/New_York"
-"33971","26.63875","-81.69917","Lehigh Acres","FL","Florida","TRUE","","27941","640.8","12071","Lee","{""12071"": ""100""}","Lee","12071","FALSE","FALSE","America/New_York"
-"33972","26.6492","-81.61667","Lehigh Acres","FL","Florida","TRUE","","15515","239.3","12071","Lee","{""12071"": ""100""}","Lee","12071","FALSE","FALSE","America/New_York"
-"33973","26.60195","-81.73108","Lehigh Acres","FL","Florida","TRUE","","17161","1665.2","12071","Lee","{""12071"": ""100""}","Lee","12071","FALSE","FALSE","America/New_York"
-"33974","26.56254","-81.60368","Lehigh Acres","FL","Florida","TRUE","","17757","301.4","12071","Lee","{""12071"": ""100""}","Lee","12071","FALSE","FALSE","America/New_York"
-"33976","26.59125","-81.68544","Lehigh Acres","FL","Florida","TRUE","","18245","760.4","12071","Lee","{""12071"": ""100""}","Lee","12071","FALSE","FALSE","America/New_York"
-"33980","26.98058","-82.05209","Punta Gorda","FL","Florida","TRUE","","13342","559.3","12015","Charlotte","{""12015"": ""100""}","Charlotte","12015","FALSE","FALSE","America/New_York"
-"33981","26.9229","-82.21761","Port Charlotte","FL","Florida","TRUE","","11407","181.4","12015","Charlotte","{""12015"": ""100""}","Charlotte","12015","FALSE","FALSE","America/New_York"
-"33982","26.91126","-81.76898","Punta Gorda","FL","Florida","TRUE","","10391","9.2","12015","Charlotte","{""12015"": ""100""}","Charlotte","12015","FALSE","FALSE","America/New_York"
-"33983","27.0072","-82.01518","Punta Gorda","FL","Florida","TRUE","","15100","547.3","12015","Charlotte","{""12015"": ""100""}","Charlotte","12015","FALSE","FALSE","America/New_York"
-"33990","26.62789","-81.9433","Cape Coral","FL","Florida","TRUE","","34657","1425.0","12071","Lee","{""12071"": ""100""}","Lee","12071","FALSE","FALSE","America/New_York"
-"33991","26.6247","-82.0216","Cape Coral","FL","Florida","TRUE","","22516","614.7","12071","Lee","{""12071"": ""100""}","Lee","12071","FALSE","FALSE","America/New_York"
-"33993","26.69196","-82.03084","Cape Coral","FL","Florida","TRUE","","27905","176.5","12071","Lee","{""12071"": ""100""}","Lee","12071","FALSE","FALSE","America/New_York"
-"34101","26.04632","-81.76799","Naples","FL","Florida","TRUE","","0","0.0","12021","Collier","{""12021"": ""100""}","Collier","12021","FALSE","FALSE","America/New_York"
-"34102","26.13806","-81.79659","Naples","FL","Florida","TRUE","","11548","787.9","12021","Collier","{""12021"": ""100""}","Collier","12021","FALSE","FALSE","America/New_York"
-"34103","26.1927","-81.80381","Naples","FL","Florida","TRUE","","13129","1473.8","12021","Collier","{""12021"": ""100""}","Collier","12021","FALSE","FALSE","America/New_York"
-"34104","26.15288","-81.74163","Naples","FL","Florida","TRUE","","24520","951.3","12021","Collier","{""12021"": ""100""}","Collier","12021","FALSE","FALSE","America/New_York"
-"34105","26.18941","-81.76365","Naples","FL","Florida","TRUE","","18011","699.6","12021","Collier","{""12021"": ""100""}","Collier","12021","FALSE","FALSE","America/New_York"
-"34108","26.24499","-81.80691","Naples","FL","Florida","TRUE","","16450","817.9","12021","Collier","{""12021"": ""100""}","Collier","12021","FALSE","FALSE","America/New_York"
-"34109","26.24096","-81.76371","Naples","FL","Florida","TRUE","","24251","745.9","12021","Collier","{""12021"": ""100""}","Collier","12021","FALSE","FALSE","America/New_York"
-"34110","26.29553","-81.78559","Naples","FL","Florida","TRUE","","23988","594.9","12021","Collier","{""12021"": ""99.23"", ""12071"": ""0.77""}","Collier|Lee","12021|12071","FALSE","FALSE","America/New_York"
-"34112","26.11803","-81.74162","Naples","FL","Florida","TRUE","","27064","649.9","12021","Collier","{""12021"": ""100""}","Collier","12021","FALSE","FALSE","America/New_York"
-"34113","26.04867","-81.72777","Naples","FL","Florida","TRUE","","22175","304.9","12021","Collier","{""12021"": ""100""}","Collier","12021","FALSE","FALSE","America/New_York"
-"34114","25.96745","-81.55033","Naples","FL","Florida","TRUE","","18223","34.8","12021","Collier","{""12021"": ""100""}","Collier","12021","FALSE","FALSE","America/New_York"
-"34116","26.18805","-81.7105","Naples","FL","Florida","TRUE","","36111","1458.5","12021","Collier","{""12021"": ""100""}","Collier","12021","FALSE","FALSE","America/New_York"
-"34117","26.1803","-81.59441","Naples","FL","Florida","TRUE","","17039","92.5","12021","Collier","{""12021"": ""100""}","Collier","12021","FALSE","FALSE","America/New_York"
-"34119","26.26653","-81.71461","Naples","FL","Florida","TRUE","","32911","564.6","12021","Collier","{""12021"": ""99.68"", ""12071"": ""0.32""}","Collier|Lee","12021|12071","FALSE","FALSE","America/New_York"
-"34120","26.32339","-81.57525","Naples","FL","Florida","TRUE","","35498","91.5","12021","Collier","{""12021"": ""100""}","Collier","12021","FALSE","FALSE","America/New_York"
-"34134","26.35634","-81.82836","Bonita Springs","FL","Florida","TRUE","","14992","502.1","12071","Lee","{""12071"": ""87.46"", ""12021"": ""12.54""}","Lee|Collier","12071|12021","FALSE","FALSE","America/New_York"
-"34135","26.35547","-81.75197","Bonita Springs","FL","Florida","TRUE","","47356","506.6","12071","Lee","{""12071"": ""100""}","Lee","12071","FALSE","FALSE","America/New_York"
-"34137","25.94097","-81.38067","Copeland","FL","Florida","TRUE","","651","25.5","12021","Collier","{""12021"": ""100""}","Collier","12021","FALSE","FALSE","America/New_York"
-"34138","25.81588","-81.37274","Chokoloskee","FL","Florida","TRUE","","340","197.1","12021","Collier","{""12021"": ""100""}","Collier","12021","FALSE","FALSE","America/New_York"
-"34139","25.8255","-81.41295","Everglades City","FL","Florida","TRUE","","204","22.9","12021","Collier","{""12021"": ""100""}","Collier","12021","FALSE","FALSE","America/New_York"
-"34140","25.9245","-81.65935","Goodland","FL","Florida","TRUE","","337","97.8","12021","Collier","{""12021"": ""100""}","Collier","12021","FALSE","FALSE","America/New_York"
-"34141","25.97229","-81.09363","Ochopee","FL","Florida","TRUE","","67","0.0","12021","Collier","{""12021"": ""97.41"", ""12087"": ""2.59""}","Collier|Monroe","12021|12087","FALSE","FALSE","America/New_York"
-"34142","26.33816","-81.33595","Immokalee","FL","Florida","TRUE","","30534","20.0","12021","Collier","{""12021"": ""95"", ""12051"": ""5""}","Collier|Hendry","12021|12051","FALSE","FALSE","America/New_York"
-"34145","25.91903","-81.6953","Marco Island","FL","Florida","TRUE","","17834","422.4","12021","Collier","{""12021"": ""100""}","Collier","12021","FALSE","FALSE","America/New_York"
-"34201","27.4028","-82.4678","Bradenton","FL","Florida","TRUE","","3997","451.0","12081","Manatee","{""12081"": ""100""}","Manatee","12081","FALSE","FALSE","America/New_York"
-"34202","27.40672","-82.39011","Bradenton","FL","Florida","TRUE","","24637","399.8","12081","Manatee","{""12081"": ""100""}","Manatee","12081","FALSE","FALSE","America/New_York"
-"34203","27.44355","-82.50929","Bradenton","FL","Florida","TRUE","","38971","946.9","12081","Manatee","{""12081"": ""100""}","Manatee","12081","FALSE","FALSE","America/New_York"
-"34205","27.48415","-82.58345","Bradenton","FL","Florida","TRUE","","32294","1922.6","12081","Manatee","{""12081"": ""100""}","Manatee","12081","FALSE","FALSE","America/New_York"
-"34207","27.43754","-82.58013","Bradenton","FL","Florida","TRUE","","36292","2251.7","12081","Manatee","{""12081"": ""100""}","Manatee","12081","FALSE","FALSE","America/New_York"
-"34208","27.48711","-82.51322","Bradenton","FL","Florida","TRUE","","40998","976.0","12081","Manatee","{""12081"": ""100""}","Manatee","12081","FALSE","FALSE","America/New_York"
-"34209","27.49492","-82.64316","Bradenton","FL","Florida","TRUE","","35172","1078.6","12081","Manatee","{""12081"": ""100""}","Manatee","12081","FALSE","FALSE","America/New_York"
-"34210","27.43799","-82.63082","Bradenton","FL","Florida","TRUE","","16462","706.7","12081","Manatee","{""12081"": ""100""}","Manatee","12081","FALSE","FALSE","America/New_York"
-"34211","27.45002","-82.37732","Bradenton","FL","Florida","TRUE","","8898","94.3","12081","Manatee","{""12081"": ""100""}","Manatee","12081","FALSE","FALSE","America/New_York"
-"34212","27.49886","-82.40782","Bradenton","FL","Florida","TRUE","","21244","401.2","12081","Manatee","{""12081"": ""100""}","Manatee","12081","FALSE","FALSE","America/New_York"
-"34215","27.47176","-82.68493","Cortez","FL","Florida","TRUE","","596","521.6","12081","Manatee","{""12081"": ""100""}","Manatee","12081","FALSE","FALSE","America/New_York"
-"34216","27.52971","-82.73396","Anna Maria","FL","Florida","TRUE","","724","364.0","12081","Manatee","{""12081"": ""100""}","Manatee","12081","FALSE","FALSE","America/New_York"
-"34217","27.48991","-82.70497","Bradenton Beach","FL","Florida","TRUE","","5079","894.8","12081","Manatee","{""12081"": ""100""}","Manatee","12081","FALSE","FALSE","America/New_York"
-"34219","27.58667","-82.29926","Parrish","FL","Florida","TRUE","","24750","67.3","12081","Manatee","{""12081"": ""100""}","Manatee","12081","FALSE","FALSE","America/New_York"
-"34221","27.57703","-82.54383","Palmetto","FL","Florida","TRUE","","46357","324.1","12081","Manatee","{""12081"": ""100""}","Manatee","12081","FALSE","FALSE","America/New_York"
-"34222","27.53628","-82.50504","Ellenton","FL","Florida","TRUE","","11659","856.5","12081","Manatee","{""12081"": ""100""}","Manatee","12081","FALSE","FALSE","America/New_York"
-"34223","26.98035","-82.35198","Englewood","FL","Florida","TRUE","","18336","246.1","12115","Sarasota","{""12115"": ""83.85"", ""12015"": ""16.15""}","Sarasota|Charlotte","12115|12015","FALSE","FALSE","America/New_York"
-"34224","26.91996","-82.3047","Englewood","FL","Florida","TRUE","","16422","489.2","12015","Charlotte","{""12015"": ""99.7"", ""12115"": ""0.3""}","Charlotte|Sarasota","12015|12115","FALSE","FALSE","America/New_York"
-"34228","27.39998","-82.64255","Longboat Key","FL","Florida","TRUE","","7283","689.5","12115","Sarasota","{""12115"": ""65.19"", ""12081"": ""34.81""}","Sarasota|Manatee","12115|12081","FALSE","FALSE","America/New_York"
-"34229","27.19091","-82.48302","Osprey","FL","Florida","TRUE","","7674","493.4","12115","Sarasota","{""12115"": ""100""}","Sarasota","12115","FALSE","FALSE","America/New_York"
-"34231","27.26664","-82.51635","Sarasota","FL","Florida","TRUE","","30341","1242.0","12115","Sarasota","{""12115"": ""100""}","Sarasota","12115","FALSE","FALSE","America/New_York"
-"34232","27.32603","-82.47235","Sarasota","FL","Florida","TRUE","","35240","1238.9","12115","Sarasota","{""12115"": ""100""}","Sarasota","12115","FALSE","FALSE","America/New_York"
-"34233","27.28368","-82.47302","Sarasota","FL","Florida","TRUE","","17767","1115.4","12115","Sarasota","{""12115"": ""100""}","Sarasota","12115","FALSE","FALSE","America/New_York"
-"34234","27.36841","-82.54153","Sarasota","FL","Florida","TRUE","","21932","1275.3","12115","Sarasota","{""12115"": ""100""}","Sarasota","12115","FALSE","FALSE","America/New_York"
-"34235","27.36755","-82.4756","Sarasota","FL","Florida","TRUE","","15303","898.2","12115","Sarasota","{""12115"": ""100""}","Sarasota","12115","FALSE","FALSE","America/New_York"
-"34236","27.32626","-82.5572","Sarasota","FL","Florida","TRUE","","13217","1446.9","12115","Sarasota","{""12115"": ""100""}","Sarasota","12115","FALSE","FALSE","America/New_York"
-"34237","27.3377","-82.5139","Sarasota","FL","Florida","TRUE","","18071","1781.0","12115","Sarasota","{""12115"": ""100""}","Sarasota","12115","FALSE","FALSE","America/New_York"
-"34238","27.23049","-82.46878","Sarasota","FL","Florida","TRUE","","20049","584.7","12115","Sarasota","{""12115"": ""100""}","Sarasota","12115","FALSE","FALSE","America/New_York"
-"34239","27.31099","-82.52175","Sarasota","FL","Florida","TRUE","","15716","1360.3","12115","Sarasota","{""12115"": ""100""}","Sarasota","12115","FALSE","FALSE","America/New_York"
-"34240","27.33903","-82.34735","Sarasota","FL","Florida","TRUE","","11442","64.7","12115","Sarasota","{""12115"": ""100""}","Sarasota","12115","FALSE","FALSE","America/New_York"
-"34241","27.2464","-82.37769","Sarasota","FL","Florida","TRUE","","15568","87.2","12115","Sarasota","{""12115"": ""100""}","Sarasota","12115","FALSE","FALSE","America/New_York"
-"34242","27.26232","-82.53995","Sarasota","FL","Florida","TRUE","","7465","806.2","12115","Sarasota","{""12115"": ""100""}","Sarasota","12115","FALSE","FALSE","America/New_York"
-"34243","27.40322","-82.52958","Sarasota","FL","Florida","TRUE","","31901","705.1","12081","Manatee","{""12081"": ""82.47"", ""12115"": ""17.53""}","Manatee|Sarasota","12081|12115","FALSE","FALSE","America/New_York"
-"34251","27.37608","-82.17041","Myakka City","FL","Florida","TRUE","","7115","9.4","12081","Manatee","{""12081"": ""98.65"", ""12115"": ""1.35""}","Manatee|Sarasota","12081|12115","FALSE","FALSE","America/New_York"
-"34266","27.19002","-81.8263","Arcadia","FL","Florida","TRUE","","32229","19.2","12027","DeSoto","{""12027"": ""99.91"", ""12115"": ""0.09""}","DeSoto|Sarasota","12027|12115","FALSE","FALSE","America/New_York"
-"34268","27.15264","-81.89307","Nocatee","FL","Florida","TRUE","","157","441.0","12027","DeSoto","{""12027"": ""100""}","DeSoto","12027","FALSE","FALSE","America/New_York"
-"34269","27.09811","-81.99622","Arcadia","FL","Florida","TRUE","","4517","32.3","12027","DeSoto","{""12027"": ""100""}","DeSoto","12027","FALSE","FALSE","America/New_York"
-"34275","27.15228","-82.4201","Nokomis","FL","Florida","TRUE","","20472","303.2","12115","Sarasota","{""12115"": ""100""}","Sarasota","12115","FALSE","FALSE","America/New_York"
-"34285","27.09153","-82.43399","Venice","FL","Florida","TRUE","","18653","872.4","12115","Sarasota","{""12115"": ""100""}","Sarasota","12115","FALSE","FALSE","America/New_York"
-"34286","27.08126","-82.18161","North Port","FL","Florida","TRUE","","20178","524.3","12115","Sarasota","{""12115"": ""100""}","Sarasota","12115","FALSE","FALSE","America/New_York"
-"34287","27.0539","-82.24465","North Port","FL","Florida","TRUE","","28614","708.0","12115","Sarasota","{""12115"": ""100""}","Sarasota","12115","FALSE","FALSE","America/New_York"
-"34288","27.05388","-82.11165","North Port","FL","Florida","TRUE","","11511","229.8","12115","Sarasota","{""12115"": ""100""}","Sarasota","12115","FALSE","FALSE","America/New_York"
-"34289","27.08618","-82.13588","North Port","FL","Florida","TRUE","","3481","402.1","12115","Sarasota","{""12115"": ""100""}","Sarasota","12115","FALSE","FALSE","America/New_York"
-"34291","27.09865","-82.23864","North Port","FL","Florida","TRUE","","5626","164.2","12115","Sarasota","{""12115"": ""100""}","Sarasota","12115","FALSE","FALSE","America/New_York"
-"34292","27.10171","-82.34101","Venice","FL","Florida","TRUE","","15398","199.1","12115","Sarasota","{""12115"": ""100""}","Sarasota","12115","FALSE","FALSE","America/New_York"
-"34293","27.02802","-82.33552","Venice","FL","Florida","TRUE","","39534","334.5","12115","Sarasota","{""12115"": ""100""}","Sarasota","12115","FALSE","FALSE","America/New_York"
-"34420","29.05305","-82.03754","Belleview","FL","Florida","TRUE","","17749","272.5","12083","Marion","{""12083"": ""100""}","Marion","12083","FALSE","FALSE","America/New_York"
-"34428","28.96087","-82.63392","Crystal River","FL","Florida","TRUE","","9043","51.4","12017","Citrus","{""12017"": ""100""}","Citrus","12017","FALSE","FALSE","America/New_York"
-"34429","28.85858","-82.65156","Crystal River","FL","Florida","TRUE","","8338","79.7","12017","Citrus","{""12017"": ""100""}","Citrus","12017","FALSE","FALSE","America/New_York"
-"34431","29.13923","-82.53281","Dunnellon","FL","Florida","TRUE","","8002","28.3","12083","Marion","{""12083"": ""90.98"", ""12075"": ""9.02""}","Marion|Levy","12083|12075","FALSE","FALSE","America/New_York"
-"34432","29.06879","-82.36341","Dunnellon","FL","Florida","TRUE","","12673","45.2","12083","Marion","{""12083"": ""100""}","Marion","12083","FALSE","FALSE","America/New_York"
-"34433","28.99724","-82.52319","Dunnellon","FL","Florida","TRUE","","6574","75.9","12017","Citrus","{""12017"": ""100""}","Citrus","12017","FALSE","FALSE","America/New_York"
-"34434","28.99629","-82.43914","Dunnellon","FL","Florida","TRUE","","8021","126.2","12017","Citrus","{""12017"": ""100""}","Citrus","12017","FALSE","FALSE","America/New_York"
-"34436","28.72351","-82.29699","Floral City","FL","Florida","TRUE","","8169","55.8","12017","Citrus","{""12017"": ""100""}","Citrus","12017","FALSE","FALSE","America/New_York"
-"34442","28.93185","-82.37737","Hernando","FL","Florida","TRUE","","14752","130.0","12017","Citrus","{""12017"": ""100""}","Citrus","12017","FALSE","FALSE","America/New_York"
-"34445","28.9679","-82.42083","Holder","FL","Florida","TRUE","","0","0.0","12017","Citrus","{""12017"": ""100""}","Citrus","12017","FALSE","FALSE","America/New_York"
-"34446","28.74729","-82.52217","Homosassa","FL","Florida","TRUE","","17454","215.8","12017","Citrus","{""12017"": ""100""}","Citrus","12017","FALSE","FALSE","America/New_York"
-"34448","28.77006","-82.61286","Homosassa","FL","Florida","TRUE","","10394","55.1","12017","Citrus","{""12017"": ""100""}","Citrus","12017","FALSE","FALSE","America/New_York"
-"34449","29.08384","-82.67988","Inglis","FL","Florida","TRUE","","3192","12.0","12075","Levy","{""12075"": ""89.43"", ""12017"": ""10.57""}","Levy|Citrus","12075|12017","FALSE","FALSE","America/New_York"
-"34450","28.83558","-82.27172","Inverness","FL","Florida","TRUE","","10692","160.1","12017","Citrus","{""12017"": ""100""}","Citrus","12017","FALSE","FALSE","America/New_York"
-"34452","28.77771","-82.36105","Inverness","FL","Florida","TRUE","","11903","132.9","12017","Citrus","{""12017"": ""100""}","Citrus","12017","FALSE","FALSE","America/New_York"
-"34453","28.87853","-82.343","Inverness","FL","Florida","TRUE","","10621","199.9","12017","Citrus","{""12017"": ""100""}","Citrus","12017","FALSE","FALSE","America/New_York"
-"34461","28.8111","-82.47691","Lecanto","FL","Florida","TRUE","","11380","91.3","12017","Citrus","{""12017"": ""100""}","Citrus","12017","FALSE","FALSE","America/New_York"
-"34465","28.9295","-82.48921","Beverly Hills","FL","Florida","TRUE","","17455","269.5","12017","Citrus","{""12017"": ""100""}","Citrus","12017","FALSE","FALSE","America/New_York"
-"34470","29.19891","-82.08742","Ocala","FL","Florida","TRUE","","19794","657.0","12083","Marion","{""12083"": ""100""}","Marion","12083","FALSE","FALSE","America/New_York"
-"34471","29.16053","-82.12878","Ocala","FL","Florida","TRUE","","25734","503.4","12083","Marion","{""12083"": ""100""}","Marion","12083","FALSE","FALSE","America/New_York"
-"34472","29.11249","-81.99548","Ocala","FL","Florida","TRUE","","31344","329.7","12083","Marion","{""12083"": ""100""}","Marion","12083","FALSE","FALSE","America/New_York"
-"34473","29.00584","-82.18283","Ocala","FL","Florida","TRUE","","19998","201.6","12083","Marion","{""12083"": ""100""}","Marion","12083","FALSE","FALSE","America/New_York"
-"34474","29.15642","-82.20944","Ocala","FL","Florida","TRUE","","17143","335.1","12083","Marion","{""12083"": ""100""}","Marion","12083","FALSE","FALSE","America/New_York"
-"34475","29.25743","-82.16102","Ocala","FL","Florida","TRUE","","13179","173.7","12083","Marion","{""12083"": ""100""}","Marion","12083","FALSE","FALSE","America/New_York"
-"34476","29.08161","-82.19679","Ocala","FL","Florida","TRUE","","23279","241.3","12083","Marion","{""12083"": ""100""}","Marion","12083","FALSE","FALSE","America/New_York"
-"34479","29.25402","-82.10946","Ocala","FL","Florida","TRUE","","13603","301.8","12083","Marion","{""12083"": ""100""}","Marion","12083","FALSE","FALSE","America/New_York"
-"34480","29.10567","-82.09793","Ocala","FL","Florida","TRUE","","19188","219.7","12083","Marion","{""12083"": ""100""}","Marion","12083","FALSE","FALSE","America/New_York"
-"34481","29.1224","-82.30881","Ocala","FL","Florida","TRUE","","20963","122.2","12083","Marion","{""12083"": ""100""}","Marion","12083","FALSE","FALSE","America/New_York"
-"34482","29.25027","-82.27279","Ocala","FL","Florida","TRUE","","24352","103.3","12083","Marion","{""12083"": ""100""}","Marion","12083","FALSE","FALSE","America/New_York"
-"34484","28.9338","-82.08802","Oxford","FL","Florida","TRUE","","3637","42.8","12119","Sumter","{""12119"": ""100""}","Sumter","12119","FALSE","FALSE","America/New_York"
-"34488","29.22164","-81.93927","Silver Springs","FL","Florida","TRUE","","10424","41.9","12083","Marion","{""12083"": ""100""}","Marion","12083","FALSE","FALSE","America/New_York"
-"34491","28.9965","-82.04474","Summerfield","FL","Florida","TRUE","","26614","237.9","12083","Marion","{""12083"": ""100""}","Marion","12083","FALSE","FALSE","America/New_York"
-"34498","29.03287","-82.73375","Yankeetown","FL","Florida","TRUE","","585","30.2","12075","Levy","{""12075"": ""100""}","Levy","12075","FALSE","FALSE","America/New_York"
-"34601","28.59026","-82.36482","Brooksville","FL","Florida","TRUE","","22487","71.3","12053","Hernando","{""12053"": ""100""}","Hernando","12053","FALSE","FALSE","America/New_York"
-"34602","28.5031","-82.27965","Brooksville","FL","Florida","TRUE","","7697","44.6","12053","Hernando","{""12053"": ""100""}","Hernando","12053","FALSE","FALSE","America/New_York"
-"34604","28.47712","-82.43431","Brooksville","FL","Florida","TRUE","","12608","137.2","12053","Hernando","{""12053"": ""100""}","Hernando","12053","FALSE","FALSE","America/New_York"
-"34606","28.46993","-82.59751","Spring Hill","FL","Florida","TRUE","","27209","902.2","12053","Hernando","{""12053"": ""100""}","Hernando","12053","FALSE","FALSE","America/New_York"
-"34607","28.49952","-82.63722","Spring Hill","FL","Florida","TRUE","","8403","126.3","12053","Hernando","{""12053"": ""100""}","Hernando","12053","FALSE","FALSE","America/New_York"
-"34608","28.48272","-82.55319","Spring Hill","FL","Florida","TRUE","","34802","876.4","12053","Hernando","{""12053"": ""100""}","Hernando","12053","FALSE","FALSE","America/New_York"
-"34609","28.47937","-82.5082","Spring Hill","FL","Florida","TRUE","","42227","733.0","12053","Hernando","{""12053"": ""100""}","Hernando","12053","FALSE","FALSE","America/New_York"
-"34610","28.38341","-82.50006","Spring Hill","FL","Florida","TRUE","","14698","84.1","12101","Pasco","{""12101"": ""100""}","Pasco","12101","FALSE","FALSE","America/New_York"
-"34613","28.57453","-82.56847","Brooksville","FL","Florida","TRUE","","17924","129.3","12053","Hernando","{""12053"": ""100""}","Hernando","12053","FALSE","FALSE","America/New_York"
-"34614","28.64775","-82.54601","Brooksville","FL","Florida","TRUE","","7195","36.8","12053","Hernando","{""12053"": ""100""}","Hernando","12053","FALSE","FALSE","America/New_York"
-"34637","28.29724","-82.46411","Land O'Lakes","FL","Florida","TRUE","","8411","231.2","12101","Pasco","{""12101"": ""100""}","Pasco","12101","FALSE","FALSE","America/New_York"
-"34638","28.26014","-82.52053","Land O'Lakes","FL","Florida","TRUE","","28609","231.2","12101","Pasco","{""12101"": ""100""}","Pasco","12101","FALSE","FALSE","America/New_York"
-"34639","28.24574","-82.42582","Land O'Lakes","FL","Florida","TRUE","","29395","423.8","12101","Pasco","{""12101"": ""100""}","Pasco","12101","FALSE","FALSE","America/New_York"
-"34652","28.23662","-82.73668","New Port Richey","FL","Florida","TRUE","","23688","1069.4","12101","Pasco","{""12101"": ""100""}","Pasco","12101","FALSE","FALSE","America/New_York"
-"34653","28.24355","-82.693","New Port Richey","FL","Florida","TRUE","","34588","1236.4","12101","Pasco","{""12101"": ""100""}","Pasco","12101","FALSE","FALSE","America/New_York"
-"34654","28.29503","-82.6288","New Port Richey","FL","Florida","TRUE","","22935","328.3","12101","Pasco","{""12101"": ""100""}","Pasco","12101","FALSE","FALSE","America/New_York"
-"34655","28.21708","-82.62584","New Port Richey","FL","Florida","TRUE","","41872","346.8","12101","Pasco","{""12101"": ""100""}","Pasco","12101","FALSE","FALSE","America/New_York"
-"34661","28.6159","-82.24823","Nobleton","FL","Florida","TRUE","","104","15.0","12053","Hernando","{""12053"": ""100""}","Hernando","12053","FALSE","FALSE","America/New_York"
-"34667","28.39201","-82.65806","Hudson","FL","Florida","TRUE","","33272","398.0","12101","Pasco","{""12101"": ""100""}","Pasco","12101","FALSE","FALSE","America/New_York"
-"34668","28.30188","-82.70517","Port Richey","FL","Florida","TRUE","","48146","1197.4","12101","Pasco","{""12101"": ""100""}","Pasco","12101","FALSE","FALSE","America/New_York"
-"34669","28.35826","-82.61478","Hudson","FL","Florida","TRUE","","13304","263.8","12101","Pasco","{""12101"": ""100""}","Pasco","12101","FALSE","FALSE","America/New_York"
-"34677","28.04759","-82.67692","Oldsmar","FL","Florida","TRUE","","22169","862.0","12103","Pinellas","{""12103"": ""100""}","Pinellas","12103","FALSE","FALSE","America/New_York"
-"34679","28.43077","-82.66146","Aripeka","FL","Florida","TRUE","","43","125.7","12101","Pasco","{""12101"": ""100""}","Pasco","12101","FALSE","FALSE","America/New_York"
-"34681","28.08779","-82.77797","Crystal Beach","FL","Florida","TRUE","","730","499.9","12103","Pinellas","{""12103"": ""100""}","Pinellas","12103","FALSE","FALSE","America/New_York"
-"34683","28.08632","-82.76003","Palm Harbor","FL","Florida","TRUE","","33514","1227.9","12103","Pinellas","{""12103"": ""100""}","Pinellas","12103","FALSE","FALSE","America/New_York"
-"34684","28.08125","-82.72772","Palm Harbor","FL","Florida","TRUE","","29088","1713.6","12103","Pinellas","{""12103"": ""100""}","Pinellas","12103","FALSE","FALSE","America/New_York"
-"34685","28.09644","-82.68691","Palm Harbor","FL","Florida","TRUE","","17998","533.5","12103","Pinellas","{""12103"": ""100""}","Pinellas","12103","FALSE","FALSE","America/New_York"
-"34688","28.1458","-82.6824","Tarpon Springs","FL","Florida","TRUE","","7443","185.4","12103","Pinellas","{""12103"": ""100""}","Pinellas","12103","FALSE","FALSE","America/New_York"
-"34689","28.14915","-82.75806","Tarpon Springs","FL","Florida","TRUE","","27445","997.6","12103","Pinellas","{""12103"": ""100""}","Pinellas","12103","FALSE","FALSE","America/New_York"
-"34690","28.19294","-82.72649","Holiday","FL","Florida","TRUE","","11408","1179.8","12101","Pasco","{""12101"": ""100""}","Pasco","12101","FALSE","FALSE","America/New_York"
-"34691","28.19117","-82.77784","Holiday","FL","Florida","TRUE","","20257","956.6","12101","Pasco","{""12101"": ""100""}","Pasco","12101","FALSE","FALSE","America/New_York"
-"34695","28.00819","-82.69631","Safety Harbor","FL","Florida","TRUE","","18382","1339.3","12103","Pinellas","{""12103"": ""100""}","Pinellas","12103","FALSE","FALSE","America/New_York"
-"34698","28.03399","-82.77961","Dunedin","FL","Florida","TRUE","","38720","1463.7","12103","Pinellas","{""12103"": ""100""}","Pinellas","12103","FALSE","FALSE","America/New_York"
-"34705","28.69928","-81.71559","Astatula","FL","Florida","TRUE","","2860","62.1","12069","Lake","{""12069"": ""100""}","Lake","12069","FALSE","FALSE","America/New_York"
-"34711","28.52611","-81.75669","Clermont","FL","Florida","TRUE","","61594","566.7","12069","Lake","{""12069"": ""100""}","Lake","12069","FALSE","FALSE","America/New_York"
-"34714","28.41131","-81.78117","Clermont","FL","Florida","TRUE","","22380","80.1","12069","Lake","{""12069"": ""90.15"", ""12105"": ""9.85""}","Lake|Polk","12069|12105","FALSE","FALSE","America/New_York"
-"34715","28.62586","-81.73055","Clermont","FL","Florida","TRUE","","18241","209.9","12069","Lake","{""12069"": ""100""}","Lake","12069","FALSE","FALSE","America/New_York"
-"34731","28.86417","-81.89779","Fruitland Park","FL","Florida","TRUE","","14858","352.7","12069","Lake","{""12069"": ""100""}","Lake","12069","FALSE","FALSE","America/New_York"
-"34734","28.53828","-81.52213","Gotha","FL","Florida","TRUE","","4591","795.4","12095","Orange","{""12095"": ""100""}","Orange","12095","FALSE","FALSE","America/New_York"
-"34736","28.55445","-81.89625","Groveland","FL","Florida","TRUE","","19271","58.9","12069","Lake","{""12069"": ""100""}","Lake","12069","FALSE","FALSE","America/New_York"
-"34737","28.69295","-81.79654","Howey In The Hills","FL","Florida","TRUE","","2942","57.9","12069","Lake","{""12069"": ""100""}","Lake","12069","FALSE","FALSE","America/New_York"
-"34739","27.93452","-81.12442","Kenansville","FL","Florida","TRUE","","243","0.3","12097","Osceola","{""12097"": ""100""}","Osceola","12097","FALSE","FALSE","America/New_York"
-"34741","28.30548","-81.42571","Kissimmee","FL","Florida","TRUE","","47710","1233.1","12097","Osceola","{""12097"": ""100""}","Osceola","12097","FALSE","FALSE","America/New_York"
-"34743","28.3306","-81.35438","Kissimmee","FL","Florida","TRUE","","45109","2515.6","12097","Osceola","{""12097"": ""100""}","Osceola","12097","FALSE","FALSE","America/New_York"
-"34744","28.29642","-81.34485","Kissimmee","FL","Florida","TRUE","","57134","664.7","12097","Osceola","{""12097"": ""100""}","Osceola","12097","FALSE","FALSE","America/New_York"
-"34746","28.24149","-81.44058","Kissimmee","FL","Florida","TRUE","","44307","399.8","12097","Osceola","{""12097"": ""100""}","Osceola","12097","FALSE","FALSE","America/New_York"
-"34747","28.3096","-81.59666","Kissimmee","FL","Florida","TRUE","","21354","186.0","12097","Osceola","{""12097"": ""100"", ""12095"": ""0""}","Osceola|Orange","12097|12095","FALSE","FALSE","America/New_York"
-"34748","28.76647","-81.88185","Leesburg","FL","Florida","TRUE","","39977","355.5","12069","Lake","{""12069"": ""100""}","Lake","12069","FALSE","FALSE","America/New_York"
-"34753","28.58976","-81.90079","Mascotte","FL","Florida","TRUE","","5932","420.6","12069","Lake","{""12069"": ""100""}","Lake","12069","FALSE","FALSE","America/New_York"
-"34756","28.58554","-81.68218","Montverde","FL","Florida","TRUE","","3505","147.5","12069","Lake","{""12069"": ""100""}","Lake","12069","FALSE","FALSE","America/New_York"
-"34758","28.19834","-81.49515","Kissimmee","FL","Florida","TRUE","","43143","506.6","12097","Osceola","{""12097"": ""100""}","Osceola","12097","FALSE","FALSE","America/New_York"
-"34759","28.09297","-81.43918","Kissimmee","FL","Florida","TRUE","","40713","214.1","12105","Polk","{""12105"": ""78.53"", ""12097"": ""21.47""}","Polk|Osceola","12105|12097","FALSE","FALSE","America/New_York"
-"34760","28.55459","-81.63236","Oakland","FL","Florida","TRUE","","863","639.3","12095","Orange","{""12095"": ""100""}","Orange","12095","FALSE","FALSE","America/New_York"
-"34761","28.57757","-81.5337","Ocoee","FL","Florida","TRUE","","45864","1120.6","12095","Orange","{""12095"": ""100""}","Orange","12095","FALSE","FALSE","America/New_York"
-"34762","28.75447","-81.91511","Okahumpka","FL","Florida","TRUE","","544","23.0","12069","Lake","{""12069"": ""100""}","Lake","12069","FALSE","FALSE","America/New_York"
-"34769","28.24511","-81.29112","Saint Cloud","FL","Florida","TRUE","","24995","1056.5","12097","Osceola","{""12097"": ""100""}","Osceola","12097","FALSE","FALSE","America/New_York"
-"34771","28.27645","-81.16274","Saint Cloud","FL","Florida","TRUE","","21052","97.6","12097","Osceola","{""12097"": ""100""}","Osceola","12097","FALSE","FALSE","America/New_York"
-"34772","28.16397","-81.26889","Saint Cloud","FL","Florida","TRUE","","31436","125.6","12097","Osceola","{""12097"": ""100""}","Osceola","12097","FALSE","FALSE","America/New_York"
-"34773","28.16517","-81.00578","Saint Cloud","FL","Florida","TRUE","","3728","3.8","12097","Osceola","{""12097"": ""100""}","Osceola","12097","FALSE","FALSE","America/New_York"
-"34785","28.83925","-82.04013","Wildwood","FL","Florida","TRUE","","38097","192.9","12119","Sumter","{""12119"": ""100""}","Sumter","12119","FALSE","FALSE","America/New_York"
-"34786","28.48213","-81.55434","Windermere","FL","Florida","TRUE","","45836","910.0","12095","Orange","{""12095"": ""100""}","Orange","12095","FALSE","FALSE","America/New_York"
-"34787","28.48239","-81.62774","Winter Garden","FL","Florida","TRUE","","69976","390.6","12095","Orange","{""12095"": ""98.11"", ""12069"": ""1.89""}","Orange|Lake","12095|12069","FALSE","FALSE","America/New_York"
-"34788","28.8871","-81.79827","Leesburg","FL","Florida","TRUE","","18193","192.0","12069","Lake","{""12069"": ""100""}","Lake","12069","FALSE","FALSE","America/New_York"
-"34797","28.73556","-81.81978","Yalaha","FL","Florida","TRUE","","1041","85.4","12069","Lake","{""12069"": ""100""}","Lake","12069","FALSE","FALSE","America/New_York"
-"34945","27.43798","-80.55733","Fort Pierce","FL","Florida","TRUE","","5187","8.2","12111","St. Lucie","{""12111"": ""100""}","St. Lucie","12111","FALSE","FALSE","America/New_York"
-"34946","27.50412","-80.36091","Fort Pierce","FL","Florida","TRUE","","6079","160.5","12111","St. Lucie","{""12111"": ""100""}","St. Lucie","12111","FALSE","FALSE","America/New_York"
-"34947","27.44897","-80.37593","Fort Pierce","FL","Florida","TRUE","","14155","567.7","12111","St. Lucie","{""12111"": ""100""}","St. Lucie","12111","FALSE","FALSE","America/New_York"
-"34949","27.46663","-80.30408","Fort Pierce","FL","Florida","TRUE","","7663","315.2","12111","St. Lucie","{""12111"": ""100""}","St. Lucie","12111","FALSE","FALSE","America/New_York"
-"34950","27.4435","-80.32967","Fort Pierce","FL","Florida","TRUE","","16603","1251.5","12111","St. Lucie","{""12111"": ""100""}","St. Lucie","12111","FALSE","FALSE","America/New_York"
-"34951","27.52251","-80.41611","Fort Pierce","FL","Florida","TRUE","","17106","266.5","12111","St. Lucie","{""12111"": ""100""}","St. Lucie","12111","FALSE","FALSE","America/New_York"
-"34952","27.29562","-80.29887","Port Saint Lucie","FL","Florida","TRUE","","41567","689.7","12111","St. Lucie","{""12111"": ""100""}","St. Lucie","12111","FALSE","FALSE","America/New_York"
-"34953","27.249","-80.38129","Port Saint Lucie","FL","Florida","TRUE","","70705","1146.9","12111","St. Lucie","{""12111"": ""100""}","St. Lucie","12111","FALSE","FALSE","America/New_York"
-"34956","27.0792","-80.50827","Indiantown","FL","Florida","TRUE","","10258","19.0","12085","Martin","{""12085"": ""100""}","Martin","12085","FALSE","FALSE","America/New_York"
-"34957","27.28328","-80.2419","Jensen Beach","FL","Florida","TRUE","","23204","544.7","12085","Martin","{""12085"": ""74.62"", ""12111"": ""25.38""}","Martin|St. Lucie","12085|12111","FALSE","FALSE","America/New_York"
-"34972","27.50653","-80.92711","Okeechobee","FL","Florida","TRUE","","20877","8.9","12093","Okeechobee","{""12093"": ""98.44"", ""12097"": ""1.41"", ""12111"": ""0.14""}","Okeechobee|Osceola|St. Lucie","12093|12097|12111","FALSE","FALSE","America/New_York"
-"34974","27.14475","-80.94548","Okeechobee","FL","Florida","TRUE","","23952","23.0","12093","Okeechobee","{""12093"": ""85.08"", ""12043"": ""10.6"", ""12055"": ""2.38"", ""12085"": ""1.95""}","Okeechobee|Glades|Highlands|Martin","12093|12043|12055|12085","FALSE","FALSE","America/New_York"
-"34981","27.39425","-80.37049","Fort Pierce","FL","Florida","TRUE","","5393","201.7","12111","St. Lucie","{""12111"": ""100""}","St. Lucie","12111","FALSE","FALSE","America/New_York"
-"34982","27.37291","-80.30818","Fort Pierce","FL","Florida","TRUE","","25135","577.2","12111","St. Lucie","{""12111"": ""100""}","St. Lucie","12111","FALSE","FALSE","America/New_York"
-"34983","27.32317","-80.35027","Port Saint Lucie","FL","Florida","TRUE","","42818","1104.8","12111","St. Lucie","{""12111"": ""100""}","St. Lucie","12111","FALSE","FALSE","America/New_York"
-"34984","27.24784","-80.33458","Port Saint Lucie","FL","Florida","TRUE","","16035","633.3","12111","St. Lucie","{""12111"": ""100""}","St. Lucie","12111","FALSE","FALSE","America/New_York"
-"34986","27.32867","-80.40503","Port Saint Lucie","FL","Florida","TRUE","","28265","560.7","12111","St. Lucie","{""12111"": ""100""}","St. Lucie","12111","FALSE","FALSE","America/New_York"
-"34987","27.28095","-80.50115","Port Saint Lucie","FL","Florida","TRUE","","9717","36.7","12111","St. Lucie","{""12111"": ""100""}","St. Lucie","12111","FALSE","FALSE","America/New_York"
-"34990","27.13751","-80.34833","Palm City","FL","Florida","TRUE","","29999","125.2","12085","Martin","{""12085"": ""96.45"", ""12111"": ""3.55""}","Martin|St. Lucie","12085|12111","FALSE","FALSE","America/New_York"
-"34994","27.20078","-80.25695","Stuart","FL","Florida","TRUE","","17800","1026.2","12085","Martin","{""12085"": ""96.69"", ""12111"": ""3.31""}","Martin|St. Lucie","12085|12111","FALSE","FALSE","America/New_York"
-"34996","27.19905","-80.19632","Stuart","FL","Florida","TRUE","","10741","626.4","12085","Martin","{""12085"": ""100""}","Martin","12085","FALSE","FALSE","America/New_York"
-"34997","27.05254","-80.27162","Stuart","FL","Florida","TRUE","","44632","175.3","12085","Martin","{""12085"": ""100""}","Martin","12085","FALSE","FALSE","America/New_York"
-"35004","33.60281","-86.49612","Moody","AL","Alabama","TRUE","","12045","257.3","01115","St. Clair","{""01115"": ""100""}","St. Clair","01115","FALSE","FALSE","America/Chicago"
-"35005","33.59515","-87.00089","Adamsville","AL","Alabama","TRUE","","7344","82.5","01073","Jefferson","{""01073"": ""100""}","Jefferson","01073","FALSE","FALSE","America/Chicago"
-"35006","33.42922","-87.19708","Adger","AL","Alabama","TRUE","","2883","11.2","01073","Jefferson","{""01073"": ""98.4"", ""01127"": ""1.35"", ""01125"": ""0.26""}","Jefferson|Walker|Tuscaloosa","01073|01127|01125","FALSE","FALSE","America/Chicago"
-"35007","33.21591","-86.79717","Alabaster","AL","Alabama","TRUE","","26332","271.9","01117","Shelby","{""01117"": ""100""}","Shelby","01117","FALSE","FALSE","America/Chicago"
-"35010","32.91644","-85.9368","Alexander City","AL","Alabama","TRUE","","20613","36.6","01123","Tallapoosa","{""01123"": ""92.16"", ""01037"": ""6.56"", ""01051"": ""1.27""}","Tallapoosa|Coosa|Elmore","01123|01037|01051","FALSE","FALSE","America/Chicago"
-"35013","33.90164","-86.51785","Allgood","AL","Alabama","TRUE","","46","627.1","01009","Blount","{""01009"": ""100""}","Blount","01009","FALSE","FALSE","America/Chicago"
-"35014","33.35989","-86.26918","Alpine","AL","Alabama","TRUE","","4963","20.1","01121","Talladega","{""01121"": ""100""}","Talladega","01121","FALSE","FALSE","America/Chicago"
-"35016","34.32333","-86.50142","Arab","AL","Alabama","TRUE","","17208","89.4","01095","Marshall","{""01095"": ""86.93"", ""01043"": ""11.29"", ""01009"": ""1.78""}","Marshall|Cullman|Blount","01095|01043|01009","FALSE","FALSE","America/Chicago"
-"35019","34.29852","-86.63523","Baileyton","AL","Alabama","TRUE","","2492","32.2","01043","Cullman","{""01043"": ""78.51"", ""01103"": ""21.49""}","Cullman|Morgan","01043|01103","FALSE","FALSE","America/Chicago"
-"35020","33.40271","-86.95158","Bessemer","AL","Alabama","TRUE","","25757","521.4","01073","Jefferson","{""01073"": ""100""}","Jefferson","01073","FALSE","FALSE","America/Chicago"
-"35022","33.32251","-86.96578","Bessemer","AL","Alabama","TRUE","","21587","127.2","01073","Jefferson","{""01073"": ""96.12"", ""01117"": ""3.88""}","Jefferson|Shelby","01073|01117","FALSE","FALSE","America/Chicago"
-"35023","33.46814","-87.09265","Bessemer","AL","Alabama","TRUE","","23523","100.5","01073","Jefferson","{""01073"": ""100""}","Jefferson","01073","FALSE","FALSE","America/Chicago"
-"35031","34.10155","-86.54752","Blountsville","AL","Alabama","TRUE","","7779","23.2","01009","Blount","{""01009"": ""100""}","Blount","01009","FALSE","FALSE","America/Chicago"
-"35032","33.26492","-86.33644","Bon Air","AL","Alabama","TRUE","","44","106.1","01121","Talladega","{""01121"": ""100""}","Talladega","01121","FALSE","FALSE","America/Chicago"
-"35033","33.94235","-87.02962","Bremen","AL","Alabama","TRUE","","2946","15.0","01043","Cullman","{""01043"": ""90.89"", ""01127"": ""9.11""}","Cullman|Walker","01043|01127","FALSE","FALSE","America/Chicago"
-"35034","32.91192","-87.26984","Brent","AL","Alabama","TRUE","","6416","23.1","01007","Bibb","{""01007"": ""98.99"", ""01105"": ""1.01""}","Bibb|Perry","01007|01105","FALSE","FALSE","America/Chicago"
-"35035","33.04271","-86.97382","Brierfield","AL","Alabama","TRUE","","821","4.5","01007","Bibb","{""01007"": ""98.73"", ""01117"": ""1.27""}","Bibb|Shelby","01007|01117","FALSE","FALSE","America/Chicago"
-"35036","33.64396","-86.91957","Brookside","AL","Alabama","TRUE","","204","95.1","01073","Jefferson","{""01073"": ""100""}","Jefferson","01073","FALSE","FALSE","America/Chicago"
-"35040","33.10386","-86.73004","Calera","AL","Alabama","TRUE","","17311","87.6","01117","Shelby","{""01117"": ""93.75"", ""01021"": ""6.25""}","Shelby|Chilton","01117|01021","FALSE","FALSE","America/Chicago"
-"35042","32.95455","-87.11481","Centreville","AL","Alabama","TRUE","","6078","15.6","01007","Bibb","{""01007"": ""100""}","Bibb","01007","FALSE","FALSE","America/Chicago"
-"35043","33.31369","-86.65872","Chelsea","AL","Alabama","TRUE","","12153","102.3","01117","Shelby","{""01117"": ""100""}","Shelby","01117","FALSE","FALSE","America/Chicago"
-"35044","33.2489","-86.37289","Childersburg","AL","Alabama","TRUE","","7409","49.6","01121","Talladega","{""01121"": ""100""}","Talladega","01121","FALSE","FALSE","America/Chicago"
-"35045","32.80704","-86.67285","Clanton","AL","Alabama","TRUE","","15143","49.1","01021","Chilton","{""01021"": ""100""}","Chilton","01021","FALSE","FALSE","America/Chicago"
-"35046","32.92285","-86.54504","Clanton","AL","Alabama","TRUE","","5017","14.4","01021","Chilton","{""01021"": ""98.9"", ""01037"": ""1.1""}","Chilton|Coosa","01021|01037","FALSE","FALSE","America/Chicago"
-"35049","33.95599","-86.59995","Cleveland","AL","Alabama","TRUE","","3856","35.1","01009","Blount","{""01009"": ""100""}","Blount","01009","FALSE","FALSE","America/Chicago"
-"35051","33.20546","-86.61972","Columbiana","AL","Alabama","TRUE","","9838","35.1","01117","Shelby","{""01117"": ""100""}","Shelby","01117","FALSE","FALSE","America/Chicago"
-"35052","33.59174","-86.40848","Cook Springs","AL","Alabama","TRUE","","283","299.1","01115","St. Clair","{""01115"": ""100""}","St. Clair","01115","FALSE","FALSE","America/Chicago"
-"35053","34.05329","-87.0679","Crane Hill","AL","Alabama","TRUE","","2398","19.3","01043","Cullman","{""01043"": ""85.36"", ""01133"": ""14.64""}","Cullman|Winston","01043|01133","FALSE","FALSE","America/Chicago"
-"35054","33.50959","-86.32867","Cropwell","AL","Alabama","TRUE","","4318","63.8","01115","St. Clair","{""01115"": ""100""}","St. Clair","01115","FALSE","FALSE","America/Chicago"
-"35055","34.15398","-86.75907","Cullman","AL","Alabama","TRUE","","21153","127.5","01043","Cullman","{""01043"": ""100""}","Cullman","01043","FALSE","FALSE","America/Chicago"
-"35057","34.13789","-86.9604","Cullman","AL","Alabama","TRUE","","14187","43.2","01043","Cullman","{""01043"": ""100""}","Cullman","01043","FALSE","FALSE","America/Chicago"
-"35058","34.23134","-86.73788","Cullman","AL","Alabama","TRUE","","8630","48.5","01043","Cullman","{""01043"": ""100""}","Cullman","01043","FALSE","FALSE","America/Chicago"
-"35060","33.55859","-86.94668","Docena","AL","Alabama","TRUE","","272","39.9","01073","Jefferson","{""01073"": ""100""}","Jefferson","01073","FALSE","FALSE","America/Chicago"
-"35061","33.472","-86.95597","Dolomite","AL","Alabama","TRUE","","1130","218.1","01073","Jefferson","{""01073"": ""100""}","Jefferson","01073","FALSE","FALSE","America/Chicago"
-"35062","33.72907","-87.02039","Dora","AL","Alabama","TRUE","","7904","68.1","01073","Jefferson","{""01073"": ""67.89"", ""01127"": ""32.11""}","Jefferson|Walker","01073|01127","FALSE","FALSE","America/Chicago"
-"35063","33.81953","-87.00753","Empire","AL","Alabama","TRUE","","3629","35.8","01127","Walker","{""01127"": ""82.75"", ""01009"": ""10.89"", ""01073"": ""6.36""}","Walker|Blount|Jefferson","01127|01009|01073","FALSE","FALSE","America/Chicago"
-"35064","33.47599","-86.9203","Fairfield","AL","Alabama","TRUE","","11048","1039.1","01073","Jefferson","{""01073"": ""100""}","Jefferson","01073","FALSE","FALSE","America/Chicago"
-"35068","33.60745","-86.83098","Fultondale","AL","Alabama","TRUE","","7967","219.7","01073","Jefferson","{""01073"": ""100""}","Jefferson","01073","FALSE","FALSE","America/Chicago"
-"35070","34.00977","-86.75419","Garden City","AL","Alabama","TRUE","","296","82.3","01043","Cullman","{""01043"": ""100""}","Cullman","01043","FALSE","FALSE","America/Chicago"
-"35071","33.70487","-86.84365","Gardendale","AL","Alabama","TRUE","","16052","108.6","01073","Jefferson","{""01073"": ""100""}","Jefferson","01073","FALSE","FALSE","America/Chicago"
-"35072","33.08977","-86.06138","Goodwater","AL","Alabama","TRUE","","4410","9.0","01037","Coosa","{""01037"": ""63.32"", ""01027"": ""25.59"", ""01123"": ""10.63"", ""01121"": ""0.46""}","Coosa|Clay|Tallapoosa|Talladega","01037|01027|01123|01121","FALSE","FALSE","America/Chicago"
-"35073","33.65407","-86.98034","Graysville","AL","Alabama","TRUE","","2074","30.2","01073","Jefferson","{""01073"": ""100""}","Jefferson","01073","FALSE","FALSE","America/Chicago"
-"35074","33.22242","-87.12425","Green Pond","AL","Alabama","TRUE","","99","681.7","01007","Bibb","{""01007"": ""100""}","Bibb","01007","FALSE","FALSE","America/Chicago"
-"35077","34.02052","-86.83216","Hanceville","AL","Alabama","TRUE","","13821","35.5","01043","Cullman","{""01043"": ""100""}","Cullman","01043","FALSE","FALSE","America/Chicago"
-"35078","33.32336","-86.44235","Harpersville","AL","Alabama","TRUE","","1927","17.1","01117","Shelby","{""01117"": ""100""}","Shelby","01117","FALSE","FALSE","America/Chicago"
-"35079","33.94055","-86.75551","Hayden","AL","Alabama","TRUE","","9055","33.0","01009","Blount","{""01009"": ""99.89"", ""01073"": ""0.11""}","Blount|Jefferson","01009|01073","FALSE","FALSE","America/Chicago"
-"35080","33.25974","-86.91282","Helena","AL","Alabama","TRUE","","18471","163.5","01117","Shelby","{""01117"": ""99.89"", ""01073"": ""0.11""}","Shelby|Jefferson","01117|01073","FALSE","FALSE","America/Chicago"
-"35082","33.16334","-86.15567","Hollins","AL","Alabama","TRUE","","0","0.0","01027","Clay","{""01027"": ""100""}","Clay","01027","FALSE","FALSE","America/Chicago"
-"35083","34.19826","-86.59913","Holly Pond","AL","Alabama","TRUE","","3191","33.8","01043","Cullman","{""01043"": ""100""}","Cullman","01043","FALSE","FALSE","America/Chicago"
-"35085","32.97961","-86.73684","Jemison","AL","Alabama","TRUE","","8901","33.0","01021","Chilton","{""01021"": ""100""}","Chilton","01021","FALSE","FALSE","America/Chicago"
-"35087","34.30638","-86.58434","Joppa","AL","Alabama","TRUE","","2571","44.3","01043","Cullman","{""01043"": ""52.29"", ""01103"": ""42.08"", ""01095"": ""5.63""}","Cullman|Morgan|Marshall","01043|01103|01095","FALSE","FALSE","America/Chicago"
-"35089","32.93806","-86.08228","Kellyton","AL","Alabama","TRUE","","1954","11.0","01037","Coosa","{""01037"": ""67.16"", ""01123"": ""32.84""}","Coosa|Tallapoosa","01037|01123","FALSE","FALSE","America/Chicago"
-"35091","33.77929","-86.78959","Kimberly","AL","Alabama","TRUE","","3118","183.3","01073","Jefferson","{""01073"": ""100""}","Jefferson","01073","FALSE","FALSE","America/Chicago"
-"35094","33.52089","-86.55997","Leeds","AL","Alabama","TRUE","","15059","100.9","01073","Jefferson","{""01073"": ""69.03"", ""01115"": ""22.61"", ""01117"": ""8.37""}","Jefferson|St. Clair|Shelby","01073|01115|01117","FALSE","FALSE","America/Chicago"
-"35096","33.62053","-86.10863","Lincoln","AL","Alabama","TRUE","","8221","40.2","01121","Talladega","{""01121"": ""95.37"", ""01015"": ""4.63""}","Talladega|Calhoun","01121|01015","FALSE","FALSE","America/Chicago"
-"35097","33.89437","-86.62614","Locust Fork","AL","Alabama","TRUE","","1884","92.4","01009","Blount","{""01009"": ""100""}","Blount","01009","FALSE","FALSE","America/Chicago"
-"35098","34.12469","-87.04159","Logan","AL","Alabama","TRUE","","1091","13.9","01043","Cullman","{""01043"": ""86.69"", ""01133"": ""13.31""}","Cullman|Winston","01043|01133","FALSE","FALSE","America/Chicago"
-"35111","33.28424","-87.09455","McCalla","AL","Alabama","TRUE","","16325","98.2","01125","Tuscaloosa","{""01125"": ""50.43"", ""01073"": ""47.32"", ""01007"": ""2.24""}","Tuscaloosa|Jefferson|Bibb","01125|01073|01007","FALSE","FALSE","America/Chicago"
-"35112","33.68968","-86.47078","Margaret","AL","Alabama","TRUE","","281","44.1","01115","St. Clair","{""01115"": ""100""}","St. Clair","01115","FALSE","FALSE","America/Chicago"
-"35114","33.22306","-86.87245","Alabaster","AL","Alabama","TRUE","","8310","258.7","01117","Shelby","{""01117"": ""100""}","Shelby","01117","FALSE","FALSE","America/Chicago"
-"35115","33.12002","-86.89578","Montevallo","AL","Alabama","TRUE","","14988","46.4","01117","Shelby","{""01117"": ""80.68"", ""01021"": ""18.56"", ""01007"": ""0.76""}","Shelby|Chilton|Bibb","01117|01021|01007","FALSE","FALSE","America/Chicago"
-"35116","33.73134","-86.76643","Morris","AL","Alabama","TRUE","","4332","75.5","01073","Jefferson","{""01073"": ""100""}","Jefferson","01073","FALSE","FALSE","America/Chicago"
-"35117","33.67295","-86.89677","Mount Olive","AL","Alabama","TRUE","","5478","79.2","01073","Jefferson","{""01073"": ""100""}","Jefferson","01073","FALSE","FALSE","America/Chicago"
-"35118","33.5372","-87.05146","Mulga","AL","Alabama","TRUE","","3467","36.0","01073","Jefferson","{""01073"": ""100""}","Jefferson","01073","FALSE","FALSE","America/Chicago"
-"35119","33.64301","-86.77362","New Castle","AL","Alabama","TRUE","","282","385.0","01073","Jefferson","{""01073"": ""100""}","Jefferson","01073","FALSE","FALSE","America/Chicago"
-"35120","33.66653","-86.42303","Odenville","AL","Alabama","TRUE","","14424","82.5","01115","St. Clair","{""01115"": ""100""}","St. Clair","01115","FALSE","FALSE","America/Chicago"
-"35121","33.94125","-86.45527","Oneonta","AL","Alabama","TRUE","","16123","43.3","01009","Blount","{""01009"": ""99.26"", ""01115"": ""0.74""}","Blount|St. Clair","01009|01115","FALSE","FALSE","America/Chicago"
-"35124","33.31347","-86.76317","Pelham","AL","Alabama","TRUE","","24387","226.6","01117","Shelby","{""01117"": ""100""}","Shelby","01117","FALSE","FALSE","America/Chicago"
-"35125","33.62576","-86.29434","Pell City","AL","Alabama","TRUE","","9931","80.7","01115","St. Clair","{""01115"": ""100""}","St. Clair","01115","FALSE","FALSE","America/Chicago"
-"35126","33.73148","-86.65417","Pinson","AL","Alabama","TRUE","","20749","137.5","01073","Jefferson","{""01073"": ""97.95"", ""01009"": ""2.05""}","Jefferson|Blount","01073|01009","FALSE","FALSE","America/Chicago"
-"35127","33.49167","-86.97639","Pleasant Grove","AL","Alabama","TRUE","","9651","380.2","01073","Jefferson","{""01073"": ""100""}","Jefferson","01073","FALSE","FALSE","America/Chicago"
-"35128","33.54888","-86.3428","Pell City","AL","Alabama","TRUE","","10573","63.8","01115","St. Clair","{""01115"": ""100""}","St. Clair","01115","FALSE","FALSE","America/Chicago"
-"35130","33.63367","-87.13403","Quinton","AL","Alabama","TRUE","","2925","16.8","01127","Walker","{""01127"": ""61.92"", ""01073"": ""38.08""}","Walker|Jefferson","01127|01073","FALSE","FALSE","America/Chicago"
-"35131","33.73377","-86.1861","Ragland","AL","Alabama","TRUE","","4696","20.2","01115","St. Clair","{""01115"": ""100""}","St. Clair","01115","FALSE","FALSE","America/Chicago"
-"35133","33.81871","-86.59957","Remlap","AL","Alabama","TRUE","","3222","25.8","01009","Blount","{""01009"": ""96.65"", ""01115"": ""3.35""}","Blount|St. Clair","01009|01115","FALSE","FALSE","America/Chicago"
-"35135","33.61662","-86.1996","Riverside","AL","Alabama","TRUE","","2514","146.7","01115","St. Clair","{""01115"": ""100""}","St. Clair","01115","FALSE","FALSE","America/Chicago"
-"35136","32.87839","-86.29571","Rockford","AL","Alabama","TRUE","","2197","3.9","01037","Coosa","{""01037"": ""100""}","Coosa","01037","FALSE","FALSE","America/Chicago"
-"35139","33.71143","-86.97048","Sayre","AL","Alabama","TRUE","","161","52.7","01073","Jefferson","{""01073"": ""100""}","Jefferson","01073","FALSE","FALSE","America/Chicago"
-"35143","33.08733","-86.55295","Shelby","AL","Alabama","TRUE","","2880","26.3","01117","Shelby","{""01117"": ""100""}","Shelby","01117","FALSE","FALSE","America/Chicago"
-"35146","33.79556","-86.43193","Springville","AL","Alabama","TRUE","","11175","40.4","01115","St. Clair","{""01115"": ""90.96"", ""01009"": ""7.89"", ""01073"": ""1.15""}","St. Clair|Blount|Jefferson","01115|01009|01073","FALSE","FALSE","America/Chicago"
-"35147","33.41511","-86.52927","Sterrett","AL","Alabama","TRUE","","6022","34.2","01117","Shelby","{""01117"": ""100""}","Shelby","01117","FALSE","FALSE","America/Chicago"
-"35148","33.75635","-87.04551","Sumiton","AL","Alabama","TRUE","","2183","136.6","01127","Walker","{""01127"": ""99.3"", ""01073"": ""0.7""}","Walker|Jefferson","01127|01073","FALSE","FALSE","America/Chicago"
-"35149","33.24802","-86.1969","Sycamore","AL","Alabama","TRUE","","251","17.6","01121","Talladega","{""01121"": ""100""}","Talladega","01121","FALSE","FALSE","America/Chicago"
-"35150","33.18528","-86.24169","Sylacauga","AL","Alabama","TRUE","","16991","104.1","01121","Talladega","{""01121"": ""99.16"", ""01037"": ""0.7"", ""01027"": ""0.14""}","Talladega|Coosa|Clay","01121|01037|01027","FALSE","FALSE","America/Chicago"
-"35151","33.09299","-86.37206","Sylacauga","AL","Alabama","TRUE","","7649","17.4","01121","Talladega","{""01121"": ""75.29"", ""01037"": ""24.71""}","Talladega|Coosa","01121|01037","FALSE","FALSE","America/Chicago"
-"35160","33.37483","-86.08659","Talladega","AL","Alabama","TRUE","","25999","29.5","01121","Talladega","{""01121"": ""97.7"", ""01027"": ""2.3""}","Talladega|Clay","01121|01027","FALSE","FALSE","America/Chicago"
-"35171","32.88214","-86.73965","Thorsby","AL","Alabama","TRUE","","3254","42.7","01021","Chilton","{""01021"": ""100""}","Chilton","01021","FALSE","FALSE","America/Chicago"
-"35172","33.84469","-86.6974","Trafford","AL","Alabama","TRUE","","3000","40.2","01009","Blount","{""01009"": ""72.37"", ""01073"": ""27.63""}","Blount|Jefferson","01009|01073","FALSE","FALSE","America/Chicago"
-"35173","33.65043","-86.56424","Trussville","AL","Alabama","TRUE","","27514","167.4","01073","Jefferson","{""01073"": ""87.6"", ""01115"": ""12.4""}","Jefferson|St. Clair","01073|01115","FALSE","FALSE","America/Chicago"
-"35175","34.43724","-86.51699","Union Grove","AL","Alabama","TRUE","","5289","32.1","01095","Marshall","{""01095"": ""77.01"", ""01103"": ""22.99""}","Marshall|Morgan","01095|01103","FALSE","FALSE","America/Chicago"
-"35176","33.48534","-86.49823","Vandiver","AL","Alabama","TRUE","","784","28.6","01117","Shelby","{""01117"": ""100""}","Shelby","01117","FALSE","FALSE","America/Chicago"
-"35178","33.41984","-86.39876","Vincent","AL","Alabama","TRUE","","3202","21.7","01117","Shelby","{""01117"": ""77.21"", ""01115"": ""22.79""}","Shelby|St. Clair","01117|01115","FALSE","FALSE","America/Chicago"
-"35179","34.26849","-86.96694","Vinemont","AL","Alabama","TRUE","","8616","35.7","01043","Cullman","{""01043"": ""98.29"", ""01103"": ""1.47"", ""01133"": ""0.23""}","Cullman|Morgan|Winston","01043|01103|01133","FALSE","FALSE","America/Chicago"
-"35180","33.82638","-86.83547","Warrior","AL","Alabama","TRUE","","14967","65.1","01073","Jefferson","{""01073"": ""54.78"", ""01009"": ""45.22""}","Jefferson|Blount","01073|01009","FALSE","FALSE","America/Chicago"
-"35183","33.01591","-86.35076","Weogufka","AL","Alabama","TRUE","","918","5.2","01037","Coosa","{""01037"": ""100""}","Coosa","01037","FALSE","FALSE","America/Chicago"
-"35184","33.11479","-87.13924","West Blocton","AL","Alabama","TRUE","","4666","12.7","01007","Bibb","{""01007"": ""100""}","Bibb","01007","FALSE","FALSE","America/Chicago"
-"35186","33.25698","-86.51427","Wilsonville","AL","Alabama","TRUE","","5085","35.3","01117","Shelby","{""01117"": ""100""}","Shelby","01117","FALSE","FALSE","America/Chicago"
-"35187","33.08053","-86.88581","Wilton","AL","Alabama","TRUE","","6","113.0","01117","Shelby","{""01117"": ""100""}","Shelby","01117","FALSE","FALSE","America/Chicago"
-"35188","33.1821","-87.17022","Woodstock","AL","Alabama","TRUE","","3014","50.7","01007","Bibb","{""01007"": ""91.79"", ""01125"": ""8.21""}","Bibb|Tuscaloosa","01007|01125","FALSE","FALSE","America/Chicago"
-"35203","33.51867","-86.80971","Birmingham","AL","Alabama","TRUE","","3125","597.3","01073","Jefferson","{""01073"": ""100""}","Jefferson","01073","FALSE","FALSE","America/Chicago"
-"35204","33.52206","-86.83985","Birmingham","AL","Alabama","TRUE","","9262","736.1","01073","Jefferson","{""01073"": ""100""}","Jefferson","01073","FALSE","FALSE","America/Chicago"
-"35205","33.49497","-86.80818","Birmingham","AL","Alabama","TRUE","","20857","2225.1","01073","Jefferson","{""01073"": ""100""}","Jefferson","01073","FALSE","FALSE","America/Chicago"
-"35206","33.56925","-86.7134","Birmingham","AL","Alabama","TRUE","","17713","668.8","01073","Jefferson","{""01073"": ""100""}","Jefferson","01073","FALSE","FALSE","America/Chicago"
-"35207","33.56613","-86.82296","Birmingham","AL","Alabama","TRUE","","8696","323.8","01073","Jefferson","{""01073"": ""100""}","Jefferson","01073","FALSE","FALSE","America/Chicago"
-"35208","33.49688","-86.87931","Birmingham","AL","Alabama","TRUE","","13719","1501.7","01073","Jefferson","{""01073"": ""100""}","Jefferson","01073","FALSE","FALSE","America/Chicago"
-"35209","33.46529","-86.81167","Birmingham","AL","Alabama","TRUE","","28252","1164.7","01073","Jefferson","{""01073"": ""100""}","Jefferson","01073","FALSE","FALSE","America/Chicago"
-"35210","33.54516","-86.66552","Birmingham","AL","Alabama","TRUE","","14022","214.0","01073","Jefferson","{""01073"": ""100""}","Jefferson","01073","FALSE","FALSE","America/Chicago"
-"35211","33.4501","-86.87148","Birmingham","AL","Alabama","TRUE","","24745","539.8","01073","Jefferson","{""01073"": ""100""}","Jefferson","01073","FALSE","FALSE","America/Chicago"
-"35212","33.54744","-86.75302","Birmingham","AL","Alabama","TRUE","","11295","745.2","01073","Jefferson","{""01073"": ""100""}","Jefferson","01073","FALSE","FALSE","America/Chicago"
-"35213","33.50663","-86.74284","Birmingham","AL","Alabama","TRUE","","14062","853.4","01073","Jefferson","{""01073"": ""100""}","Jefferson","01073","FALSE","FALSE","America/Chicago"
-"35214","33.57688","-86.89186","Birmingham","AL","Alabama","TRUE","","17789","258.1","01073","Jefferson","{""01073"": ""100""}","Jefferson","01073","FALSE","FALSE","America/Chicago"
-"35215","33.6492","-86.70586","Birmingham","AL","Alabama","TRUE","","48680","657.6","01073","Jefferson","{""01073"": ""100""}","Jefferson","01073","FALSE","FALSE","America/Chicago"
-"35216","33.41874","-86.78666","Birmingham","AL","Alabama","TRUE","","36856","1015.6","01073","Jefferson","{""01073"": ""98.99"", ""01117"": ""1.01""}","Jefferson|Shelby","01073|01117","FALSE","FALSE","America/Chicago"
-"35217","33.60814","-86.76034","Birmingham","AL","Alabama","TRUE","","13256","283.5","01073","Jefferson","{""01073"": ""100""}","Jefferson","01073","FALSE","FALSE","America/Chicago"
-"35218","33.50777","-86.89384","Birmingham","AL","Alabama","TRUE","","7235","1066.7","01073","Jefferson","{""01073"": ""100""}","Jefferson","01073","FALSE","FALSE","America/Chicago"
-"35221","33.44954","-86.89903","Birmingham","AL","Alabama","TRUE","","4484","470.4","01073","Jefferson","{""01073"": ""100""}","Jefferson","01073","FALSE","FALSE","America/Chicago"
-"35222","33.52411","-86.77022","Birmingham","AL","Alabama","TRUE","","8989","930.1","01073","Jefferson","{""01073"": ""100""}","Jefferson","01073","FALSE","FALSE","America/Chicago"
-"35223","33.4869","-86.7375","Birmingham","AL","Alabama","TRUE","","11111","521.7","01073","Jefferson","{""01073"": ""100""}","Jefferson","01073","FALSE","FALSE","America/Chicago"
-"35224","33.51937","-86.94447","Birmingham","AL","Alabama","TRUE","","5328","130.6","01073","Jefferson","{""01073"": ""100""}","Jefferson","01073","FALSE","FALSE","America/Chicago"
-"35226","33.39851","-86.84435","Birmingham","AL","Alabama","TRUE","","35331","762.5","01073","Jefferson","{""01073"": ""100""}","Jefferson","01073","FALSE","FALSE","America/Chicago"
-"35228","33.45621","-86.92103","Birmingham","AL","Alabama","TRUE","","10059","898.1","01073","Jefferson","{""01073"": ""100""}","Jefferson","01073","FALSE","FALSE","America/Chicago"
-"35229","33.46561","-86.78901","Birmingham","AL","Alabama","TRUE","","1255","2825.1","01073","Jefferson","{""01073"": ""100""}","Jefferson","01073","FALSE","FALSE","America/Chicago"
-"35233","33.50879","-86.8019","Birmingham","AL","Alabama","TRUE","","1730","397.7","01073","Jefferson","{""01073"": ""100""}","Jefferson","01073","FALSE","FALSE","America/Chicago"
-"35234","33.5408","-86.80287","Birmingham","AL","Alabama","TRUE","","5063","548.8","01073","Jefferson","{""01073"": ""100""}","Jefferson","01073","FALSE","FALSE","America/Chicago"
-"35235","33.62408","-86.64837","Birmingham","AL","Alabama","TRUE","","21340","587.6","01073","Jefferson","{""01073"": ""100""}","Jefferson","01073","FALSE","FALSE","America/Chicago"
-"35242","33.42521","-86.67144","Birmingham","AL","Alabama","TRUE","","56340","411.2","01117","Shelby","{""01117"": ""88.26"", ""01073"": ""11.74""}","Shelby|Jefferson","01117|01073","FALSE","FALSE","America/Chicago"
-"35243","33.44278","-86.73994","Birmingham","AL","Alabama","TRUE","","17059","542.9","01073","Jefferson","{""01073"": ""99.72"", ""01117"": ""0.28""}","Jefferson|Shelby","01073|01117","FALSE","FALSE","America/Chicago"
-"35244","33.35372","-86.82548","Birmingham","AL","Alabama","TRUE","","31941","567.6","01073","Jefferson","{""01073"": ""56.92"", ""01117"": ""43.08""}","Jefferson|Shelby","01073|01117","FALSE","FALSE","America/Chicago"
-"35254","33.51616","-86.85744","Birmingham","AL","Alabama","TRUE","","1598","1442.6","01073","Jefferson","{""01073"": ""100""}","Jefferson","01073","FALSE","FALSE","America/Chicago"
-"35401","33.16878","-87.61357","Tuscaloosa","AL","Alabama","TRUE","","37705","307.5","01125","Tuscaloosa","{""01125"": ""100""}","Tuscaloosa","01125","FALSE","FALSE","America/Chicago"
-"35404","33.21668","-87.48608","Tuscaloosa","AL","Alabama","TRUE","","22345","514.5","01125","Tuscaloosa","{""01125"": ""100""}","Tuscaloosa","01125","FALSE","FALSE","America/Chicago"
-"35405","33.1158","-87.54288","Tuscaloosa","AL","Alabama","TRUE","","45391","368.6","01125","Tuscaloosa","{""01125"": ""100""}","Tuscaloosa","01125","FALSE","FALSE","America/Chicago"
-"35406","33.33412","-87.47043","Tuscaloosa","AL","Alabama","TRUE","","17914","81.5","01125","Tuscaloosa","{""01125"": ""100""}","Tuscaloosa","01125","FALSE","FALSE","America/Chicago"
-"35441","32.85373","-87.73859","Akron","AL","Alabama","TRUE","","972","5.6","01065","Hale","{""01065"": ""100""}","Hale","01065","FALSE","FALSE","America/Chicago"
-"35442","33.0737","-88.19358","Aliceville","AL","Alabama","TRUE","","6730","11.0","01107","Pickens","{""01107"": ""95.43"", ""01119"": ""3.78"", ""01063"": ""0.78""}","Pickens|Sumter|Greene","01107|01119|01063","FALSE","FALSE","America/Chicago"
-"35443","32.75293","-88.01124","Boligee","AL","Alabama","TRUE","","1777","3.6","01063","Greene","{""01063"": ""100""}","Greene","01063","FALSE","FALSE","America/Chicago"
-"35444","33.33696","-87.30323","Brookwood","AL","Alabama","TRUE","","3972","10.3","01125","Tuscaloosa","{""01125"": ""98.05"", ""01073"": ""1.95""}","Tuscaloosa|Jefferson","01125|01073","FALSE","FALSE","America/Chicago"
-"35446","33.21617","-87.74715","Buhl","AL","Alabama","TRUE","","2147","13.6","01125","Tuscaloosa","{""01125"": ""100""}","Tuscaloosa","01125","FALSE","FALSE","America/Chicago"
-"35447","33.25667","-88.15451","Carrollton","AL","Alabama","TRUE","","3032","8.1","01107","Pickens","{""01107"": ""100""}","Pickens","01107","FALSE","FALSE","America/Chicago"
-"35452","33.28174","-87.68367","Coker","AL","Alabama","TRUE","","3416","25.4","01125","Tuscaloosa","{""01125"": ""100""}","Tuscaloosa","01125","FALSE","FALSE","America/Chicago"
-"35453","33.1642","-87.38809","Cottondale","AL","Alabama","TRUE","","10721","44.5","01125","Tuscaloosa","{""01125"": ""100""}","Tuscaloosa","01125","FALSE","FALSE","America/Chicago"
-"35456","33.05553","-87.42714","Duncanville","AL","Alabama","TRUE","","4051","18.5","01125","Tuscaloosa","{""01125"": ""99.57"", ""01007"": ""0.43""}","Tuscaloosa|Bibb","01125|01007","FALSE","FALSE","America/Chicago"
-"35457","33.29618","-87.7737","Echola","AL","Alabama","TRUE","","0","0.0","01125","Tuscaloosa","{""01125"": ""100""}","Tuscaloosa","01125","FALSE","FALSE","America/Chicago"
-"35458","33.36696","-87.79135","Elrod","AL","Alabama","TRUE","","445","6.7","01125","Tuscaloosa","{""01125"": ""100""}","Tuscaloosa","01125","FALSE","FALSE","America/Chicago"
-"35459","32.79859","-88.30287","Emelle","AL","Alabama","TRUE","","1156","3.3","01119","Sumter","{""01119"": ""100""}","Sumter","01119","FALSE","FALSE","America/Chicago"
-"35460","32.70902","-88.15033","Epes","AL","Alabama","TRUE","","956","3.8","01119","Sumter","{""01119"": ""100""}","Sumter","01119","FALSE","FALSE","America/Chicago"
-"35461","33.41546","-88.2142","Ethelsville","AL","Alabama","TRUE","","2093","6.5","01107","Pickens","{""01107"": ""100""}","Pickens","01107","FALSE","FALSE","America/Chicago"
-"35462","32.93442","-87.95285","Eutaw","AL","Alabama","TRUE","","4447","5.5","01063","Greene","{""01063"": ""100""}","Greene","01063","FALSE","FALSE","America/Chicago"
-"35463","33.06901","-87.68755","Fosters","AL","Alabama","TRUE","","2074","13.1","01125","Tuscaloosa","{""01125"": ""96.05"", ""01063"": ""3.95""}","Tuscaloosa|Greene","01125|01063","FALSE","FALSE","America/Chicago"
-"35464","32.80329","-88.15355","Gainesville","AL","Alabama","TRUE","","854","10.0","01119","Sumter","{""01119"": ""79.51"", ""01063"": ""20.49""}","Sumter|Greene","01119|01063","FALSE","FALSE","America/Chicago"
-"35466","33.25825","-87.91413","Gordo","AL","Alabama","TRUE","","5441","8.0","01107","Pickens","{""01107"": ""88.64"", ""01125"": ""11.36""}","Pickens|Tuscaloosa","01107|01125","FALSE","FALSE","America/Chicago"
-"35469","32.96993","-87.77204","Knoxville","AL","Alabama","TRUE","","311","6.5","01063","Greene","{""01063"": ""73.76"", ""01125"": ""26.24""}","Greene|Tuscaloosa","01063|01125","FALSE","FALSE","America/Chicago"
-"35470","32.55682","-88.10365","Livingston","AL","Alabama","TRUE","","4836","7.0","01119","Sumter","{""01119"": ""100""}","Sumter","01119","FALSE","FALSE","America/Chicago"
-"35473","33.2724","-87.58248","Northport","AL","Alabama","TRUE","","16294","250.9","01125","Tuscaloosa","{""01125"": ""100""}","Tuscaloosa","01125","FALSE","FALSE","America/Chicago"
-"35474","32.93785","-87.57215","Moundville","AL","Alabama","TRUE","","6617","12.7","01065","Hale","{""01065"": ""68.16"", ""01125"": ""31.84""}","Hale|Tuscaloosa","01065|01125","FALSE","FALSE","America/Chicago"
-"35475","33.43293","-87.58694","Northport","AL","Alabama","TRUE","","15952","28.7","01125","Tuscaloosa","{""01125"": ""100""}","Tuscaloosa","01125","FALSE","FALSE","America/Chicago"
-"35476","33.22739","-87.59433","Northport","AL","Alabama","TRUE","","7208","506.5","01125","Tuscaloosa","{""01125"": ""100""}","Tuscaloosa","01125","FALSE","FALSE","America/Chicago"
-"35477","32.95133","-88.24097","Panola","AL","Alabama","TRUE","","137","1.6","01119","Sumter","{""01119"": ""100""}","Sumter","01119","FALSE","FALSE","America/Chicago"
-"35480","33.08965","-87.82006","Ralph","AL","Alabama","TRUE","","1007","5.7","01125","Tuscaloosa","{""01125"": ""81.98"", ""01063"": ""18.02""}","Tuscaloosa|Greene","01125|01063","FALSE","FALSE","America/Chicago"
-"35481","33.39398","-88.03736","Reform","AL","Alabama","TRUE","","3174","10.3","01107","Pickens","{""01107"": ""100""}","Pickens","01107","FALSE","FALSE","America/Chicago"
-"35490","33.21341","-87.24587","Vance","AL","Alabama","TRUE","","3911","22.5","01125","Tuscaloosa","{""01125"": ""100""}","Tuscaloosa","01125","FALSE","FALSE","America/Chicago"
-"35501","33.81907","-87.29272","Jasper","AL","Alabama","TRUE","","10208","79.0","01127","Walker","{""01127"": ""100""}","Walker","01127","FALSE","FALSE","America/Chicago"
-"35503","33.93756","-87.30035","Jasper","AL","Alabama","TRUE","","8798","42.6","01127","Walker","{""01127"": ""95.69"", ""01133"": ""4.31""}","Walker|Winston","01127|01133","FALSE","FALSE","America/Chicago"
-"35504","33.89267","-87.1667","Jasper","AL","Alabama","TRUE","","12832","51.2","01127","Walker","{""01127"": ""100""}","Walker","01127","FALSE","FALSE","America/Chicago"
-"35540","34.23388","-87.18817","Addison","AL","Alabama","TRUE","","2786","14.6","01133","Winston","{""01133"": ""98.34"", ""01043"": ""1.66""}","Winston|Cullman","01133|01043","FALSE","FALSE","America/Chicago"
-"35541","34.08013","-87.18065","Arley","AL","Alabama","TRUE","","3399","19.6","01133","Winston","{""01133"": ""99.75"", ""01043"": ""0.25""}","Winston|Cullman","01133|01043","FALSE","FALSE","America/Chicago"
-"35542","33.71589","-87.6789","Bankston","AL","Alabama","TRUE","","920","6.4","01057","Fayette","{""01057"": ""100""}","Fayette","01057","FALSE","FALSE","America/Chicago"
-"35543","34.2242","-87.75005","Bear Creek","AL","Alabama","TRUE","","1033","10.7","01093","Marion","{""01093"": ""100""}","Marion","01093","FALSE","FALSE","America/Chicago"
-"35544","33.95519","-88.01906","Beaverton","AL","Alabama","TRUE","","513","2.8","01075","Lamar","{""01075"": ""100""}","Lamar","01075","FALSE","FALSE","America/Chicago"
-"35545","33.65152","-87.93483","Belk","AL","Alabama","TRUE","","99","29.8","01057","Fayette","{""01057"": ""100""}","Fayette","01057","FALSE","FALSE","America/Chicago"
-"35546","33.60722","-87.54901","Berry","AL","Alabama","TRUE","","3996","7.0","01057","Fayette","{""01057"": ""64.5"", ""01125"": ""32.17"", ""01127"": ""3.33""}","Fayette|Tuscaloosa|Walker","01057|01125|01127","FALSE","FALSE","America/Chicago"
-"35548","34.06756","-87.75117","Brilliant","AL","Alabama","TRUE","","1600","9.5","01093","Marion","{""01093"": ""100""}","Marion","01093","FALSE","FALSE","America/Chicago"
-"35549","33.83641","-87.54728","Carbon Hill","AL","Alabama","TRUE","","3712","12.4","01127","Walker","{""01127"": ""92.35"", ""01057"": ""7.65""}","Walker|Fayette","01127|01057","FALSE","FALSE","America/Chicago"
-"35550","33.74175","-87.16599","Cordova","AL","Alabama","TRUE","","5504","32.3","01127","Walker","{""01127"": ""100""}","Walker","01127","FALSE","FALSE","America/Chicago"
-"35552","34.07228","-88.14216","Detroit","AL","Alabama","TRUE","","997","6.5","01075","Lamar","{""01075"": ""52.59"", ""01093"": ""47.41""}","Lamar|Marion","01075|01093","FALSE","FALSE","America/Chicago"
-"35553","34.12065","-87.38569","Double Springs","AL","Alabama","TRUE","","4111","11.1","01133","Winston","{""01133"": ""100""}","Winston","01133","FALSE","FALSE","America/Chicago"
-"35554","33.8961","-87.65716","Eldridge","AL","Alabama","TRUE","","1034","7.7","01057","Fayette","{""01057"": ""55.56"", ""01127"": ""38.28"", ""01093"": ""6.16""}","Fayette|Walker|Marion","01057|01127|01093","FALSE","FALSE","America/Chicago"
-"35555","33.66631","-87.81846","Fayette","AL","Alabama","TRUE","","9537","11.7","01057","Fayette","{""01057"": ""97.08"", ""01125"": ""1.87"", ""01075"": ""0.93"", ""01107"": ""0.12""}","Fayette|Tuscaloosa|Lamar|Pickens","01057|01125|01075|01107","FALSE","FALSE","America/Chicago"
-"35559","33.90556","-87.72817","Glen Allen","AL","Alabama","TRUE","","12","7.1","01057","Fayette","{""01057"": ""100""}","Fayette","01057","FALSE","FALSE","America/Chicago"
-"35563","33.98374","-87.8977","Guin","AL","Alabama","TRUE","","4646","17.3","01093","Marion","{""01093"": ""95.97"", ""01057"": ""2.83"", ""01075"": ""1.2""}","Marion|Fayette|Lamar","01093|01057|01075","FALSE","FALSE","America/Chicago"
-"35564","34.25604","-87.84794","Hackleburg","AL","Alabama","TRUE","","2134","12.3","01093","Marion","{""01093"": ""98.35"", ""01059"": ""1.65""}","Marion|Franklin","01093|01059","FALSE","FALSE","America/Chicago"
-"35565","34.23414","-87.55886","Haleyville","AL","Alabama","TRUE","","12645","17.6","01133","Winston","{""01133"": ""72.57"", ""01093"": ""24.69"", ""01059"": ""2.62"", ""01079"": ""0.13""}","Winston|Marion|Franklin|Lawrence","01133|01093|01059|01079","FALSE","FALSE","America/Chicago"
-"35570","34.1646","-87.99501","Hamilton","AL","Alabama","TRUE","","11159","18.0","01093","Marion","{""01093"": ""99.93"", ""01075"": ""0.07""}","Marion|Lamar","01093|01075","FALSE","FALSE","America/Chicago"
-"35571","34.35604","-87.95001","Hodges","AL","Alabama","TRUE","","776","4.8","01059","Franklin","{""01059"": ""81.34"", ""01093"": ""18.66""}","Franklin|Marion","01059|01093","FALSE","FALSE","America/Chicago"
-"35572","34.20366","-87.29647","Houston","AL","Alabama","TRUE","","1267","6.6","01133","Winston","{""01133"": ""100""}","Winston","01133","FALSE","FALSE","America/Chicago"
-"35574","33.56503","-87.95048","Kennedy","AL","Alabama","TRUE","","1694","6.5","01075","Lamar","{""01075"": ""74.59"", ""01107"": ""15.73"", ""01057"": ""9.09"", ""01125"": ""0.6""}","Lamar|Pickens|Fayette|Tuscaloosa","01075|01107|01057|01125","FALSE","FALSE","America/Chicago"
-"35575","34.04293","-87.57845","Lynn","AL","Alabama","TRUE","","1082","11.2","01133","Winston","{""01133"": ""100""}","Winston","01133","FALSE","FALSE","America/Chicago"
-"35576","33.57923","-88.13129","Millport","AL","Alabama","TRUE","","2869","6.4","01075","Lamar","{""01075"": ""91.08"", ""01107"": ""8.92""}","Lamar|Pickens","01075|01107","FALSE","FALSE","America/Chicago"
-"35577","34.10237","-87.62001","Natural Bridge","AL","Alabama","TRUE","","48","4.9","01133","Winston","{""01133"": ""100""}","Winston","01133","FALSE","FALSE","America/Chicago"
-"35578","33.98435","-87.46613","Nauvoo","AL","Alabama","TRUE","","6111","19.8","01127","Walker","{""01127"": ""84.74"", ""01133"": ""15.26""}","Walker|Winston","01127|01133","FALSE","FALSE","America/Chicago"
-"35579","33.63661","-87.35619","Oakman","AL","Alabama","TRUE","","3614","9.9","01127","Walker","{""01127"": ""99.55"", ""01125"": ""0.45""}","Walker|Tuscaloosa","01127|01125","FALSE","FALSE","America/Chicago"
-"35580","33.67377","-87.26449","Parrish","AL","Alabama","TRUE","","3564","17.5","01127","Walker","{""01127"": ""100""}","Walker","01127","FALSE","FALSE","America/Chicago"
-"35581","34.35853","-87.71318","Phil Campbell","AL","Alabama","TRUE","","6073","19.2","01059","Franklin","{""01059"": ""87.85"", ""01093"": ""12.15""}","Franklin|Marion","01059|01093","FALSE","FALSE","America/Chicago"
-"35582","34.48839","-88.09439","Red Bay","AL","Alabama","TRUE","","4561","19.8","01059","Franklin","{""01059"": ""100""}","Franklin","01059","FALSE","FALSE","America/Chicago"
-"35584","33.82199","-87.08699","Sipsey","AL","Alabama","TRUE","","365","235.8","01127","Walker","{""01127"": ""100""}","Walker","01127","FALSE","FALSE","America/Chicago"
-"35585","34.41687","-87.80986","Spruce Pine","AL","Alabama","TRUE","","1727","16.8","01059","Franklin","{""01059"": ""100""}","Franklin","01059","FALSE","FALSE","America/Chicago"
-"35586","33.87665","-88.13869","Sulligent","AL","Alabama","TRUE","","3947","8.4","01075","Lamar","{""01075"": ""100""}","Lamar","01075","FALSE","FALSE","America/Chicago"
-"35587","33.80054","-87.45393","Townley","AL","Alabama","TRUE","","582","4.3","01127","Walker","{""01127"": ""100""}","Walker","01127","FALSE","FALSE","America/Chicago"
-"35592","33.74629","-88.0844","Vernon","AL","Alabama","TRUE","","4839","15.0","01075","Lamar","{""01075"": ""100""}","Lamar","01075","FALSE","FALSE","America/Chicago"
-"35593","34.34977","-88.08015","Vina","AL","Alabama","TRUE","","1537","5.0","01059","Franklin","{""01059"": ""83.79"", ""01093"": ""16.21""}","Franklin|Marion","01059|01093","FALSE","FALSE","America/Chicago"
-"35594","33.92969","-87.77212","Winfield","AL","Alabama","TRUE","","7285","19.5","01093","Marion","{""01093"": ""69"", ""01057"": ""31""}","Marion|Fayette","01093|01057","FALSE","FALSE","America/Chicago"
-"35601","34.60907","-87.01333","Decatur","AL","Alabama","TRUE","","32381","444.1","01103","Morgan","{""01103"": ""100""}","Morgan","01103","FALSE","FALSE","America/Chicago"
-"35603","34.53751","-86.96674","Decatur","AL","Alabama","TRUE","","31653","173.2","01103","Morgan","{""01103"": ""99.61"", ""01079"": ""0.39""}","Morgan|Lawrence","01103|01079","FALSE","FALSE","America/Chicago"
-"35610","34.95098","-87.24209","Anderson","AL","Alabama","TRUE","","1823","14.6","01077","Lauderdale","{""01077"": ""79.22"", ""01083"": ""20.78""}","Lauderdale|Limestone","01077|01083","FALSE","FALSE","America/Chicago"
-"35611","34.7671","-87.08566","Athens","AL","Alabama","TRUE","","27058","91.6","01083","Limestone","{""01083"": ""100""}","Limestone","01083","FALSE","FALSE","America/Chicago"
-"35613","34.82405","-86.87736","Athens","AL","Alabama","TRUE","","26379","132.4","01083","Limestone","{""01083"": ""100""}","Limestone","01083","FALSE","FALSE","America/Chicago"
-"35614","34.86542","-87.08385","Athens","AL","Alabama","TRUE","","7050","42.8","01083","Limestone","{""01083"": ""99.91"", ""01077"": ""0.09""}","Limestone|Lauderdale","01083|01077","FALSE","FALSE","America/Chicago"
-"35615","34.66399","-86.87415","Belle Mina","AL","Alabama","TRUE","","60","33.1","01083","Limestone","{""01083"": ""100""}","Limestone","01083","FALSE","FALSE","America/Chicago"
-"35616","34.73885","-88.01897","Cherokee","AL","Alabama","TRUE","","3772","6.9","01033","Colbert","{""01033"": ""100""}","Colbert","01033","FALSE","FALSE","America/Chicago"
-"35618","34.64788","-87.30612","Courtland","AL","Alabama","TRUE","","1796","15.1","01079","Lawrence","{""01079"": ""100""}","Lawrence","01079","FALSE","FALSE","America/Chicago"
-"35619","34.38732","-87.14546","Danville","AL","Alabama","TRUE","","4860","14.4","01103","Morgan","{""01103"": ""57.92"", ""01079"": ""41.89"", ""01043"": ""0.19""}","Morgan|Lawrence|Cullman","01103|01079|01043","FALSE","FALSE","America/Chicago"
-"35620","34.93151","-86.99131","Elkmont","AL","Alabama","TRUE","","9694","34.4","01083","Limestone","{""01083"": ""100""}","Limestone","01083","FALSE","FALSE","America/Chicago"
-"35621","34.34961","-86.72508","Eva","AL","Alabama","TRUE","","2647","22.3","01103","Morgan","{""01103"": ""95.2"", ""01043"": ""4.8""}","Morgan|Cullman","01103|01043","FALSE","FALSE","America/Chicago"
-"35622","34.34341","-86.89783","Falkville","AL","Alabama","TRUE","","7409","29.6","01103","Morgan","{""01103"": ""79.28"", ""01043"": ""20.72""}","Morgan|Cullman","01103|01043","FALSE","FALSE","America/Chicago"
-"35630","34.82364","-87.66058","Florence","AL","Alabama","TRUE","","33324","501.3","01077","Lauderdale","{""01077"": ""100""}","Lauderdale","01077","FALSE","FALSE","America/Chicago"
-"35633","34.87641","-87.79858","Florence","AL","Alabama","TRUE","","20625","38.1","01077","Lauderdale","{""01077"": ""100""}","Lauderdale","01077","FALSE","FALSE","America/Chicago"
-"35634","34.9186","-87.61358","Florence","AL","Alabama","TRUE","","9997","62.6","01077","Lauderdale","{""01077"": ""100""}","Lauderdale","01077","FALSE","FALSE","America/Chicago"
-"35640","34.44125","-86.94406","Hartselle","AL","Alabama","TRUE","","25654","90.2","01103","Morgan","{""01103"": ""100""}","Morgan","01103","FALSE","FALSE","America/Chicago"
-"35643","34.67015","-87.20546","Hillsboro","AL","Alabama","TRUE","","3802","18.2","01079","Lawrence","{""01079"": ""100""}","Lawrence","01079","FALSE","FALSE","America/Chicago"
-"35645","34.90185","-87.50088","Killen","AL","Alabama","TRUE","","13654","61.1","01077","Lauderdale","{""01077"": ""100""}","Lauderdale","01077","FALSE","FALSE","America/Chicago"
-"35646","34.67171","-87.5283","Leighton","AL","Alabama","TRUE","","4522","18.6","01033","Colbert","{""01033"": ""100""}","Colbert","01033","FALSE","FALSE","America/Chicago"
-"35647","34.96594","-87.12179","Lester","AL","Alabama","TRUE","","1177","19.3","01083","Limestone","{""01083"": ""100""}","Limestone","01083","FALSE","FALSE","America/Chicago"
-"35648","34.95875","-87.38491","Lexington","AL","Alabama","TRUE","","3448","22.9","01077","Lauderdale","{""01077"": ""100""}","Lauderdale","01077","FALSE","FALSE","America/Chicago"
-"35649","34.61705","-86.87099","Mooresville","AL","Alabama","TRUE","","84","14.6","01083","Limestone","{""01083"": ""100""}","Limestone","01083","FALSE","FALSE","America/Chicago"
-"35650","34.45074","-87.3024","Moulton","AL","Alabama","TRUE","","13668","24.9","01079","Lawrence","{""01079"": ""100""}","Lawrence","01079","FALSE","FALSE","America/Chicago"
-"35651","34.46688","-87.48741","Mount Hope","AL","Alabama","TRUE","","1364","9.8","01079","Lawrence","{""01079"": ""100""}","Lawrence","01079","FALSE","FALSE","America/Chicago"
-"35652","34.84536","-87.31128","Rogersville","AL","Alabama","TRUE","","8704","40.2","01077","Lauderdale","{""01077"": ""98.72"", ""01083"": ""1.28""}","Lauderdale|Limestone","01077|01083","FALSE","FALSE","America/Chicago"
-"35653","34.51688","-87.87133","Russellville","AL","Alabama","TRUE","","10615","28.6","01059","Franklin","{""01059"": ""97.49"", ""01033"": ""2.51""}","Franklin|Colbert","01059|01033","FALSE","FALSE","America/Chicago"
-"35654","34.49806","-87.62778","Russellville","AL","Alabama","TRUE","","7771","21.1","01059","Franklin","{""01059"": ""86.46"", ""01033"": ""13.33"", ""01079"": ""0.21""}","Franklin|Colbert|Lawrence","01059|01033|01079","FALSE","FALSE","America/Chicago"
-"35660","34.75596","-87.70089","Sheffield","AL","Alabama","TRUE","","8986","527.1","01033","Colbert","{""01033"": ""100""}","Colbert","01033","FALSE","FALSE","America/Chicago"
-"35661","34.77345","-87.56505","Muscle Shoals","AL","Alabama","TRUE","","17027","117.6","01033","Colbert","{""01033"": ""100""}","Colbert","01033","FALSE","FALSE","America/Chicago"
-"35670","34.46093","-86.71905","Somerville","AL","Alabama","TRUE","","6594","25.0","01103","Morgan","{""01103"": ""100""}","Morgan","01103","FALSE","FALSE","America/Chicago"
-"35671","34.66633","-86.94946","Tanner","AL","Alabama","TRUE","","1958","14.3","01083","Limestone","{""01083"": ""100""}","Limestone","01083","FALSE","FALSE","America/Chicago"
-"35672","34.64716","-87.40674","Town Creek","AL","Alabama","TRUE","","5714","16.7","01079","Lawrence","{""01079"": ""98.03"", ""01033"": ""1.97""}","Lawrence|Colbert","01079|01033","FALSE","FALSE","America/Chicago"
-"35673","34.58094","-87.13628","Trinity","AL","Alabama","TRUE","","7460","65.7","01079","Lawrence","{""01079"": ""68.58"", ""01103"": ""31.42""}","Lawrence|Morgan","01079|01103","FALSE","FALSE","America/Chicago"
-"35674","34.65761","-87.78281","Tuscumbia","AL","Alabama","TRUE","","19144","38.9","01033","Colbert","{""01033"": ""100""}","Colbert","01033","FALSE","FALSE","America/Chicago"
-"35677","34.95503","-88.02709","Waterloo","AL","Alabama","TRUE","","1593","5.6","01077","Lauderdale","{""01077"": ""100""}","Lauderdale","01077","FALSE","FALSE","America/Chicago"
-"35739","34.969","-86.79579","Ardmore","AL","Alabama","TRUE","","5076","72.3","01083","Limestone","{""01083"": ""62.94"", ""01089"": ""37.06""}","Limestone|Madison","01083|01089","FALSE","FALSE","America/Chicago"
-"35740","34.9501","-85.75855","Bridgeport","AL","Alabama","TRUE","","3056","33.0","01071","Jackson","{""01071"": ""100""}","Jackson","01071","FALSE","FALSE","America/Chicago"
-"35741","34.72145","-86.48337","Brownsboro","AL","Alabama","TRUE","","2801","46.0","01089","Madison","{""01089"": ""100""}","Madison","01089","FALSE","FALSE","America/Chicago"
-"35744","34.61216","-85.90673","Dutton","AL","Alabama","TRUE","","1956","22.8","01071","Jackson","{""01071"": ""100""}","Jackson","01071","FALSE","FALSE","America/Chicago"
-"35745","34.94093","-86.2001","Estillfork","AL","Alabama","TRUE","","164","0.9","01071","Jackson","{""01071"": ""100""}","Jackson","01071","FALSE","FALSE","America/Chicago"
-"35746","34.82902","-85.99594","Fackler","AL","Alabama","TRUE","","461","3.1","01071","Jackson","{""01071"": ""100""}","Jackson","01071","FALSE","FALSE","America/Chicago"
-"35747","34.49444","-86.30747","Grant","AL","Alabama","TRUE","","5302","27.5","01095","Marshall","{""01095"": ""100""}","Marshall","01095","FALSE","FALSE","America/Chicago"
-"35748","34.72193","-86.38702","Gurley","AL","Alabama","TRUE","","7300","34.8","01089","Madison","{""01089"": ""97.2"", ""01071"": ""2.8""}","Madison|Jackson","01089|01071","FALSE","FALSE","America/Chicago"
-"35749","34.82433","-86.75334","Harvest","AL","Alabama","TRUE","","22804","217.3","01089","Madison","{""01089"": ""84.59"", ""01083"": ""15.41""}","Madison|Limestone","01089|01083","FALSE","FALSE","America/Chicago"
-"35750","34.95094","-86.5951","Hazel Green","AL","Alabama","TRUE","","13391","81.4","01089","Madison","{""01089"": ""100""}","Madison","01089","FALSE","FALSE","America/Chicago"
-"35751","34.81058","-86.27961","Hollytree","AL","Alabama","TRUE","","238","3.2","01071","Jackson","{""01071"": ""100""}","Jackson","01071","FALSE","FALSE","America/Chicago"
-"35752","34.74811","-85.94585","Hollywood","AL","Alabama","TRUE","","2682","22.2","01071","Jackson","{""01071"": ""100""}","Jackson","01071","FALSE","FALSE","America/Chicago"
-"35754","34.51953","-86.61026","Laceys Spring","AL","Alabama","TRUE","","5300","47.1","01103","Morgan","{""01103"": ""98.69"", ""01095"": ""1.31""}","Morgan|Marshall","01103|01095","FALSE","FALSE","America/Chicago"
-"35755","34.50011","-86.1353","Langston","AL","Alabama","TRUE","","450","10.1","01095","Marshall","{""01095"": ""54.27"", ""01071"": ""45.73""}","Marshall|Jackson","01095|01071","FALSE","FALSE","America/Chicago"
-"35756","34.64299","-86.81678","Madison","AL","Alabama","TRUE","","13855","69.9","01083","Limestone","{""01083"": ""88.07"", ""01089"": ""11.93""}","Limestone|Madison","01083|01089","FALSE","FALSE","America/Chicago"
-"35757","34.7831","-86.74489","Madison","AL","Alabama","TRUE","","16909","543.3","01089","Madison","{""01089"": ""97.62"", ""01083"": ""2.38""}","Madison|Limestone","01089|01083","FALSE","FALSE","America/Chicago"
-"35758","34.71349","-86.74668","Madison","AL","Alabama","TRUE","","46724","671.2","01089","Madison","{""01089"": ""100""}","Madison","01089","FALSE","FALSE","America/Chicago"
-"35759","34.86439","-86.5504","Meridianville","AL","Alabama","TRUE","","8113","192.8","01089","Madison","{""01089"": ""100""}","Madison","01089","FALSE","FALSE","America/Chicago"
-"35760","34.54918","-86.38259","New Hope","AL","Alabama","TRUE","","4876","35.6","01089","Madison","{""01089"": ""96.33"", ""01095"": ""3.67""}","Madison|Marshall","01089|01095","FALSE","FALSE","America/Chicago"
-"35761","34.91474","-86.41162","New Market","AL","Alabama","TRUE","","12547","41.6","01089","Madison","{""01089"": ""100""}","Madison","01089","FALSE","FALSE","America/Chicago"
-"35763","34.6215","-86.46442","Owens Cross Roads","AL","Alabama","TRUE","","19855","182.4","01089","Madison","{""01089"": ""100""}","Madison","01089","FALSE","FALSE","America/Chicago"
-"35764","34.72329","-86.31044","Paint Rock","AL","Alabama","TRUE","","540","6.3","01071","Jackson","{""01071"": ""100""}","Jackson","01071","FALSE","FALSE","America/Chicago"
-"35765","34.69067","-85.81782","Pisgah","AL","Alabama","TRUE","","3633","19.9","01071","Jackson","{""01071"": ""94.29"", ""01049"": ""5.71""}","Jackson|DeKalb","01071|01049","FALSE","FALSE","America/Chicago"
-"35766","34.87345","-86.27667","Princeton","AL","Alabama","TRUE","","155","1.7","01071","Jackson","{""01071"": ""100""}","Jackson","01071","FALSE","FALSE","America/Chicago"
-"35768","34.7711","-86.10539","Scottsboro","AL","Alabama","TRUE","","11473","26.2","01071","Jackson","{""01071"": ""100""}","Jackson","01071","FALSE","FALSE","America/Chicago"
-"35769","34.58997","-86.098","Scottsboro","AL","Alabama","TRUE","","9745","60.1","01071","Jackson","{""01071"": ""81.42"", ""01095"": ""18.58""}","Jackson|Marshall","01071|01095","FALSE","FALSE","America/Chicago"
-"35771","34.53625","-86.00239","Section","AL","Alabama","TRUE","","3959","25.0","01071","Jackson","{""01071"": ""96.82"", ""01049"": ""3.18""}","Jackson|DeKalb","01071|01049","FALSE","FALSE","America/Chicago"
-"35772","34.89076","-85.88756","Stevenson","AL","Alabama","TRUE","","4762","10.7","01071","Jackson","{""01071"": ""100""}","Jackson","01071","FALSE","FALSE","America/Chicago"
-"35773","34.89328","-86.71252","Toney","AL","Alabama","TRUE","","12323","65.4","01089","Madison","{""01089"": ""83.35"", ""01083"": ""16.65""}","Madison|Limestone","01089|01083","FALSE","FALSE","America/Chicago"
-"35774","34.76323","-86.22948","Trenton","AL","Alabama","TRUE","","198","5.4","01071","Jackson","{""01071"": ""100""}","Jackson","01071","FALSE","FALSE","America/Chicago"
-"35775","34.54807","-86.69778","Valhermoso Springs","AL","Alabama","TRUE","","1095","26.5","01103","Morgan","{""01103"": ""100""}","Morgan","01103","FALSE","FALSE","America/Chicago"
-"35776","34.66144","-86.2383","Woodville","AL","Alabama","TRUE","","3785","16.2","01071","Jackson","{""01071"": ""87.45"", ""01095"": ""11.43"", ""01089"": ""1.12""}","Jackson|Marshall|Madison","01071|01095|01089","FALSE","FALSE","America/Chicago"
-"35801","34.72466","-86.56227","Huntsville","AL","Alabama","TRUE","","23947","655.7","01089","Madison","{""01089"": ""100""}","Madison","01089","FALSE","FALSE","America/Chicago"
-"35802","34.6697","-86.55886","Huntsville","AL","Alabama","TRUE","","21853","464.7","01089","Madison","{""01089"": ""100""}","Madison","01089","FALSE","FALSE","America/Chicago"
-"35803","34.56469","-86.52141","Huntsville","AL","Alabama","TRUE","","26242","213.1","01089","Madison","{""01089"": ""100""}","Madison","01089","FALSE","FALSE","America/Chicago"
-"35805","34.70858","-86.62126","Huntsville","AL","Alabama","TRUE","","20491","865.0","01089","Madison","{""01089"": ""100""}","Madison","01089","FALSE","FALSE","America/Chicago"
-"35806","34.76307","-86.68509","Huntsville","AL","Alabama","TRUE","","23019","381.8","01089","Madison","{""01089"": ""100""}","Madison","01089","FALSE","FALSE","America/Chicago"
-"35808","34.63186","-86.65738","Huntsville","AL","Alabama","TRUE","","1348","9.0","01089","Madison","{""01089"": ""100""}","Madison","01089","FALSE","FALSE","America/Chicago"
-"35810","34.801","-86.60761","Huntsville","AL","Alabama","TRUE","","29274","392.4","01089","Madison","{""01089"": ""100""}","Madison","01089","FALSE","FALSE","America/Chicago"
-"35811","34.79694","-86.50602","Huntsville","AL","Alabama","TRUE","","27245","227.5","01089","Madison","{""01089"": ""100""}","Madison","01089","FALSE","FALSE","America/Chicago"
-"35816","34.74018","-86.63031","Huntsville","AL","Alabama","TRUE","","13971","1017.5","01089","Madison","{""01089"": ""100""}","Madison","01089","FALSE","FALSE","America/Chicago"
-"35824","34.64441","-86.75322","Huntsville","AL","Alabama","TRUE","","8298","251.0","01089","Madison","{""01089"": ""100""}","Madison","01089","FALSE","FALSE","America/Chicago"
-"35896","34.7543","-86.65457","Huntsville","AL","Alabama","TRUE","","698","1070.9","01089","Madison","{""01089"": ""100""}","Madison","01089","FALSE","FALSE","America/Chicago"
-"35901","34.04799","-85.9246","Gadsden","AL","Alabama","TRUE","","19811","128.6","01055","Etowah","{""01055"": ""99.72"", ""01019"": ""0.28""}","Etowah|Cherokee","01055|01019","FALSE","FALSE","America/Chicago"
-"35903","34.02709","-85.86094","Gadsden","AL","Alabama","TRUE","","17699","101.4","01055","Etowah","{""01055"": ""99.76"", ""01019"": ""0.24""}","Etowah|Cherokee","01055|01019","FALSE","FALSE","America/Chicago"
-"35904","34.0702","-85.99309","Gadsden","AL","Alabama","TRUE","","13704","114.6","01055","Etowah","{""01055"": ""100""}","Etowah","01055","FALSE","FALSE","America/Chicago"
-"35905","33.93405","-85.89942","Gadsden","AL","Alabama","TRUE","","6219","57.8","01055","Etowah","{""01055"": ""88.66"", ""01015"": ""11.34""}","Etowah|Calhoun","01055|01015","FALSE","FALSE","America/Chicago"
-"35906","33.93181","-86.08975","Rainbow City","AL","Alabama","TRUE","","9811","107.9","01055","Etowah","{""01055"": ""100""}","Etowah","01055","FALSE","FALSE","America/Chicago"
-"35907","33.8979","-86.02444","Gadsden","AL","Alabama","TRUE","","8589","148.9","01055","Etowah","{""01055"": ""100""}","Etowah","01055","FALSE","FALSE","America/Chicago"
-"35950","34.25261","-86.262","Albertville","AL","Alabama","TRUE","","20867","180.7","01095","Marshall","{""01095"": ""100""}","Marshall","01095","FALSE","FALSE","America/Chicago"
-"35951","34.34123","-86.16168","Albertville","AL","Alabama","TRUE","","12686","67.3","01095","Marshall","{""01095"": ""85.34"", ""01049"": ""14.66""}","Marshall|DeKalb","01095|01049","FALSE","FALSE","America/Chicago"
-"35952","34.05283","-86.3082","Altoona","AL","Alabama","TRUE","","7879","27.7","01055","Etowah","{""01055"": ""59.92"", ""01009"": ""40.08""}","Etowah|Blount","01055|01009","FALSE","FALSE","America/Chicago"
-"35953","33.81243","-86.22613","Ashville","AL","Alabama","TRUE","","7519","25.4","01115","St. Clair","{""01115"": ""100""}","St. Clair","01115","FALSE","FALSE","America/Chicago"
-"35954","34.08839","-86.06009","Attalla","AL","Alabama","TRUE","","11834","43.6","01055","Etowah","{""01055"": ""99.39"", ""01049"": ""0.61""}","Etowah|DeKalb","01055|01049","FALSE","FALSE","America/Chicago"
-"35956","34.14373","-86.14794","Boaz","AL","Alabama","TRUE","","8927","46.7","01055","Etowah","{""01055"": ""100""}","Etowah","01055","FALSE","FALSE","America/Chicago"
-"35957","34.19207","-86.19421","Boaz","AL","Alabama","TRUE","","15967","77.5","01095","Marshall","{""01095"": ""85.69"", ""01049"": ""11.9"", ""01009"": ""2.42""}","Marshall|DeKalb|Blount","01095|01049|01009","FALSE","FALSE","America/Chicago"
-"35958","34.91808","-85.64682","Bryant","AL","Alabama","TRUE","","3523","25.8","01071","Jackson","{""01071"": ""100""}","Jackson","01071","FALSE","FALSE","America/Chicago"
-"35959","34.24059","-85.60697","Cedar Bluff","AL","Alabama","TRUE","","4523","28.0","01019","Cherokee","{""01019"": ""100""}","Cherokee","01019","FALSE","FALSE","America/Chicago"
-"35960","34.12779","-85.57398","Centre","AL","Alabama","TRUE","","9714","26.2","01019","Cherokee","{""01019"": ""100""}","Cherokee","01019","FALSE","FALSE","America/Chicago"
-"35961","34.27943","-85.86025","Collinsville","AL","Alabama","TRUE","","7082","21.4","01049","DeKalb","{""01049"": ""83.57"", ""01019"": ""9.3"", ""01055"": ""7.12""}","DeKalb|Cherokee|Etowah","01049|01019|01055","FALSE","FALSE","America/Chicago"
-"35962","34.30188","-86.03997","Crossville","AL","Alabama","TRUE","","8730","42.8","01049","DeKalb","{""01049"": ""94.83"", ""01095"": ""5.17""}","DeKalb|Marshall","01049|01095","FALSE","FALSE","America/Chicago"
-"35963","34.36165","-85.93023","Dawson","AL","Alabama","TRUE","","1201","16.7","01049","DeKalb","{""01049"": ""100""}","DeKalb","01049","FALSE","FALSE","America/Chicago"
-"35966","34.79657","-85.67881","Flat Rock","AL","Alabama","TRUE","","4182","19.4","01071","Jackson","{""01071"": ""66.5"", ""01049"": ""33.5""}","Jackson|DeKalb","01071|01049","FALSE","FALSE","America/Chicago"
-"35967","34.40139","-85.69628","Fort Payne","AL","Alabama","TRUE","","16274","50.3","01049","DeKalb","{""01049"": ""97.97"", ""01019"": ""2.03""}","DeKalb|Cherokee","01049|01019","FALSE","FALSE","America/Chicago"
-"35968","34.48972","-85.76571","Fort Payne","AL","Alabama","TRUE","","5206","37.5","01049","DeKalb","{""01049"": ""100""}","DeKalb","01049","FALSE","FALSE","America/Chicago"
-"35971","34.45552","-85.94512","Fyffe","AL","Alabama","TRUE","","5666","38.6","01049","DeKalb","{""01049"": ""100""}","DeKalb","01049","FALSE","FALSE","America/Chicago"
-"35972","33.99142","-86.24522","Gallant","AL","Alabama","TRUE","","1222","19.4","01055","Etowah","{""01055"": ""80.07"", ""01115"": ""19.93""}","Etowah|St. Clair","01055|01115","FALSE","FALSE","America/Chicago"
-"35973","34.34643","-85.55436","Gaylesville","AL","Alabama","TRUE","","2810","9.5","01019","Cherokee","{""01019"": ""100""}","Cherokee","01019","FALSE","FALSE","America/Chicago"
-"35974","34.36351","-86.01169","Geraldine","AL","Alabama","TRUE","","1744","51.2","01049","DeKalb","{""01049"": ""100""}","DeKalb","01049","FALSE","FALSE","America/Chicago"
-"35975","34.44014","-86.0663","Groveoak","AL","Alabama","TRUE","","629","7.1","01049","DeKalb","{""01049"": ""90.93"", ""01095"": ""9.07""}","DeKalb|Marshall","01049|01095","FALSE","FALSE","America/Chicago"
-"35976","34.34747","-86.3335","Guntersville","AL","Alabama","TRUE","","17549","53.0","01095","Marshall","{""01095"": ""97.66"", ""01009"": ""2.19"", ""01043"": ""0.15""}","Marshall|Blount|Cullman","01095|01009|01043","FALSE","FALSE","America/Chicago"
-"35978","34.64379","-85.72787","Henagar","AL","Alabama","TRUE","","4901","28.1","01049","DeKalb","{""01049"": ""81.13"", ""01071"": ""18.87""}","DeKalb|Jackson","01049|01071","FALSE","FALSE","America/Chicago"
-"35979","34.83232","-85.60958","Higdon","AL","Alabama","TRUE","","1352","49.9","01049","DeKalb","{""01049"": ""59.3"", ""01071"": ""40.7""}","DeKalb|Jackson","01049|01071","FALSE","FALSE","America/Chicago"
-"35980","34.17624","-86.38525","Horton","AL","Alabama","TRUE","","5440","37.9","01095","Marshall","{""01095"": ""76.17"", ""01009"": ""23.83""}","Marshall|Blount","01095|01009","FALSE","FALSE","America/Chicago"
-"35981","34.72235","-85.64877","Ider","AL","Alabama","TRUE","","1802","30.1","01049","DeKalb","{""01049"": ""100""}","DeKalb","01049","FALSE","FALSE","America/Chicago"
-"35983","34.1723","-85.76882","Leesburg","AL","Alabama","TRUE","","3683","28.4","01019","Cherokee","{""01019"": ""100""}","Cherokee","01019","FALSE","FALSE","America/Chicago"
-"35984","34.52955","-85.56686","Mentone","AL","Alabama","TRUE","","1492","8.9","01049","DeKalb","{""01049"": ""86.77"", ""01019"": ""13.23""}","DeKalb|Cherokee","01049|01019","FALSE","FALSE","America/Chicago"
-"35986","34.50328","-85.84036","Rainsville","AL","Alabama","TRUE","","7968","68.0","01049","DeKalb","{""01049"": ""100""}","DeKalb","01049","FALSE","FALSE","America/Chicago"
-"35987","33.91707","-86.23811","Steele","AL","Alabama","TRUE","","2458","16.0","01115","St. Clair","{""01115"": ""100""}","St. Clair","01115","FALSE","FALSE","America/Chicago"
-"35988","34.56012","-85.7998","Sylvania","AL","Alabama","TRUE","","2311","73.1","01049","DeKalb","{""01049"": ""100""}","DeKalb","01049","FALSE","FALSE","America/Chicago"
-"35989","34.60743","-85.63124","Valley Head","AL","Alabama","TRUE","","3831","24.4","01049","DeKalb","{""01049"": ""100""}","DeKalb","01049","FALSE","FALSE","America/Chicago"
-"35990","34.06773","-86.30454","Walnut Grove","AL","Alabama","TRUE","","82","413.1","01055","Etowah","{""01055"": ""100""}","Etowah","01055","FALSE","FALSE","America/Chicago"
-"36003","32.45323","-86.72387","Autaugaville","AL","Alabama","TRUE","","1963","8.1","01001","Autauga","{""01001"": ""100""}","Autauga","01001","FALSE","FALSE","America/Chicago"
-"36005","31.88607","-85.72077","Banks","AL","Alabama","TRUE","","1438","3.9","01109","Pike","{""01109"": ""72.21"", ""01011"": ""27.2"", ""01005"": ""0.59""}","Pike|Bullock|Barbour","01109|01011|01005","FALSE","FALSE","America/Chicago"
-"36006","32.64152","-86.72346","Billingsley","AL","Alabama","TRUE","","1108","6.0","01001","Autauga","{""01001"": ""75.7"", ""01021"": ""24.3""}","Autauga|Chilton","01001|01021","FALSE","FALSE","America/Chicago"
-"36009","31.58356","-86.29694","Brantley","AL","Alabama","TRUE","","2463","6.3","01041","Crenshaw","{""01041"": ""97.51"", ""01031"": ""2.49""}","Crenshaw|Coffee","01041|01031","FALSE","FALSE","America/Chicago"
-"36010","31.66892","-85.81156","Brundidge","AL","Alabama","TRUE","","4766","14.5","01109","Pike","{""01109"": ""84.71"", ""01031"": ""14.54"", ""01045"": ""0.75""}","Pike|Coffee|Dale","01109|01031|01045","FALSE","FALSE","America/Chicago"
-"36013","32.29373","-85.98264","Cecil","AL","Alabama","TRUE","","615","13.7","01101","Montgomery","{""01101"": ""100""}","Montgomery","01101","FALSE","FALSE","America/Chicago"
-"36016","31.85208","-85.42936","Clayton","AL","Alabama","TRUE","","4951","7.9","01005","Barbour","{""01005"": ""100""}","Barbour","01005","FALSE","FALSE","America/Chicago"
-"36017","31.68174","-85.55506","Clio","AL","Alabama","TRUE","","2897","18.0","01005","Barbour","{""01005"": ""100""}","Barbour","01005","FALSE","FALSE","America/Chicago"
-"36020","32.48818","-86.3193","Coosada","AL","Alabama","TRUE","","1039","39.8","01051","Elmore","{""01051"": ""100""}","Elmore","01051","FALSE","FALSE","America/Chicago"
-"36022","32.61945","-86.40471","Deatsville","AL","Alabama","TRUE","","13003","55.4","01051","Elmore","{""01051"": ""67.42"", ""01001"": ""32.58""}","Elmore|Autauga","01051|01001","FALSE","FALSE","America/Chicago"
-"36024","32.66674","-86.03199","Eclectic","AL","Alabama","TRUE","","5124","22.0","01051","Elmore","{""01051"": ""100""}","Elmore","01051","FALSE","FALSE","America/Chicago"
-"36025","32.54153","-86.32561","Elmore","AL","Alabama","TRUE","","6231","167.2","01051","Elmore","{""01051"": ""100""}","Elmore","01051","FALSE","FALSE","America/Chicago"
-"36026","32.77815","-86.12752","Equality","AL","Alabama","TRUE","","1091","5.7","01037","Coosa","{""01037"": ""69.7"", ""01051"": ""30.3""}","Coosa|Elmore","01037|01051","FALSE","FALSE","America/Chicago"
-"36027","31.93341","-85.20924","Eufaula","AL","Alabama","TRUE","","14970","20.0","01005","Barbour","{""01005"": ""98.87"", ""01113"": ""0.71"", ""01067"": ""0.42""}","Barbour|Russell|Henry","01005|01113|01067","FALSE","FALSE","America/Chicago"
-"36028","31.49916","-86.38884","Dozier","AL","Alabama","TRUE","","1438","4.3","01039","Covington","{""01039"": ""57.62"", ""01041"": ""42.38""}","Covington|Crenshaw","01039|01041","FALSE","FALSE","America/Chicago"
-"36029","32.1779","-85.93363","Fitzpatrick","AL","Alabama","TRUE","","1164","4.4","01011","Bullock","{""01011"": ""79.11"", ""01087"": ""20.89""}","Bullock|Macon","01011|01087","FALSE","FALSE","America/Chicago"
-"36030","31.86642","-86.85983","Forest Home","AL","Alabama","TRUE","","605","3.4","01013","Butler","{""01013"": ""100""}","Butler","01013","FALSE","FALSE","America/Chicago"
-"36031","32.24878","-85.74358","Fort Davis","AL","Alabama","TRUE","","185","6.9","01087","Macon","{""01087"": ""100""}","Macon","01087","FALSE","FALSE","America/Chicago"
-"36032","31.9943","-86.56933","Fort Deposit","AL","Alabama","TRUE","","2464","8.6","01085","Lowndes","{""01085"": ""84.61"", ""01013"": ""15.39""}","Lowndes|Butler","01085|01013","FALSE","FALSE","America/Chicago"
-"36033","31.67124","-86.76784","Georgiana","AL","Alabama","TRUE","","4262","7.0","01013","Butler","{""01013"": ""97.3"", ""01035"": ""2.51"", ""01099"": ""0.19""}","Butler|Conecuh|Monroe","01013|01035|01099","FALSE","FALSE","America/Chicago"
-"36034","31.62105","-86.11065","Glenwood","AL","Alabama","TRUE","","1132","7.5","01109","Pike","{""01109"": ""48.33"", ""01041"": ""28.5"", ""01031"": ""23.17""}","Pike|Crenshaw|Coffee","01109|01041|01031","FALSE","FALSE","America/Chicago"
-"36035","31.79458","-86.12767","Goshen","AL","Alabama","TRUE","","1606","5.7","01109","Pike","{""01109"": ""84.47"", ""01041"": ""15.53""}","Pike|Crenshaw","01109|01041","FALSE","FALSE","America/Chicago"
-"36036","31.9776","-86.15576","Grady","AL","Alabama","TRUE","","1688","6.2","01101","Montgomery","{""01101"": ""70.24"", ""01041"": ""29.76""}","Montgomery|Crenshaw","01101|01041","FALSE","FALSE","America/Chicago"
-"36037","31.79895","-86.62528","Greenville","AL","Alabama","TRUE","","12944","13.9","01013","Butler","{""01013"": ""99.76"", ""01041"": ""0.24""}","Butler|Crenshaw","01013|01041","FALSE","FALSE","America/Chicago"
-"36038","31.43618","-86.48945","Gantt","AL","Alabama","TRUE","","44","7.2","01039","Covington","{""01039"": ""100""}","Covington","01039","FALSE","FALSE","America/Chicago"
-"36039","32.28151","-85.83493","Hardaway","AL","Alabama","TRUE","","232","2.4","01087","Macon","{""01087"": ""100""}","Macon","01087","FALSE","FALSE","America/Chicago"
-"36040","32.16518","-86.68283","Hayneville","AL","Alabama","TRUE","","3452","8.6","01085","Lowndes","{""01085"": ""100""}","Lowndes","01085","FALSE","FALSE","America/Chicago"
-"36041","31.91462","-86.31825","Highland Home","AL","Alabama","TRUE","","1344","9.8","01041","Crenshaw","{""01041"": ""98.33"", ""01101"": ""1.67""}","Crenshaw|Montgomery","01041|01101","FALSE","FALSE","America/Chicago"
-"36042","31.86659","-86.44932","Honoraville","AL","Alabama","TRUE","","1947","9.2","01041","Crenshaw","{""01041"": ""59.8"", ""01013"": ""40.2""}","Crenshaw|Butler","01041|01013","FALSE","FALSE","America/Chicago"
-"36043","32.19945","-86.41766","Hope Hull","AL","Alabama","TRUE","","3626","13.6","01101","Montgomery","{""01101"": ""66.69"", ""01085"": ""33.31""}","Montgomery|Lowndes","01101|01085","FALSE","FALSE","America/Chicago"
-"36046","32.00539","-86.33779","Lapine","AL","Alabama","TRUE","","1406","7.9","01041","Crenshaw","{""01041"": ""62.68"", ""01101"": ""37.32""}","Crenshaw|Montgomery","01041|01101","FALSE","FALSE","America/Chicago"
-"36047","32.08133","-86.51661","Letohatchee","AL","Alabama","TRUE","","1084","3.8","01085","Lowndes","{""01085"": ""75.29"", ""01101"": ""24.71""}","Lowndes|Montgomery","01085|01101","FALSE","FALSE","America/Chicago"
-"36048","31.79021","-85.59038","Louisville","AL","Alabama","TRUE","","1513","5.5","01005","Barbour","{""01005"": ""100""}","Barbour","01005","FALSE","FALSE","America/Chicago"
-"36049","31.76331","-86.28198","Luverne","AL","Alabama","TRUE","","5883","14.2","01041","Crenshaw","{""01041"": ""98.69"", ""01109"": ""1.31""}","Crenshaw|Pike","01041|01109","FALSE","FALSE","America/Chicago"
-"36051","32.68407","-86.49468","Marbury","AL","Alabama","TRUE","","2057","15.6","01001","Autauga","{""01001"": ""70.1"", ""01021"": ""17.19"", ""01051"": ""12.72""}","Autauga|Chilton|Elmore","01001|01021|01051","FALSE","FALSE","America/Chicago"
-"36052","32.18685","-86.04647","Mathews","AL","Alabama","TRUE","","393","2.4","01101","Montgomery","{""01101"": ""97.7"", ""01011"": ""2.3""}","Montgomery|Bullock","01101|01011","FALSE","FALSE","America/Chicago"
-"36053","32.03353","-85.43923","Midway","AL","Alabama","TRUE","","1732","2.3","01011","Bullock","{""01011"": ""64.67"", ""01005"": ""35.33""}","Bullock|Barbour","01011|01005","FALSE","FALSE","America/Chicago"
-"36054","32.48359","-86.36669","Millbrook","AL","Alabama","TRUE","","15899","252.1","01051","Elmore","{""01051"": ""100""}","Elmore","01051","FALSE","FALSE","America/Chicago"
-"36064","32.30269","-86.07945","Pike Road","AL","Alabama","TRUE","","10149","48.5","01101","Montgomery","{""01101"": ""100""}","Montgomery","01101","FALSE","FALSE","America/Chicago"
-"36066","32.47996","-86.42407","Prattville","AL","Alabama","TRUE","","19732","381.9","01001","Autauga","{""01001"": ""90.53"", ""01051"": ""9.47""}","Autauga|Elmore","01001|01051","FALSE","FALSE","America/Chicago"
-"36067","32.51248","-86.56897","Prattville","AL","Alabama","TRUE","","27601","44.5","01001","Autauga","{""01001"": ""100""}","Autauga","01001","FALSE","FALSE","America/Chicago"
-"36069","32.09518","-86.15237","Ramer","AL","Alabama","TRUE","","2028","5.3","01101","Montgomery","{""01101"": ""95.5"", ""01109"": ""4.5""}","Montgomery|Pike","01101|01109","FALSE","FALSE","America/Chicago"
-"36071","31.70592","-86.39565","Rutledge","AL","Alabama","TRUE","","456","3.7","01041","Crenshaw","{""01041"": ""97.78"", ""01013"": ""2.22""}","Crenshaw|Butler","01041|01013","FALSE","FALSE","America/Chicago"
-"36075","32.38458","-85.91114","Shorter","AL","Alabama","TRUE","","2240","9.5","01087","Macon","{""01087"": ""100""}","Macon","01087","FALSE","FALSE","America/Chicago"
-"36078","32.54058","-85.9355","Tallassee","AL","Alabama","TRUE","","12540","28.1","01051","Elmore","{""01051"": ""64.06"", ""01123"": ""35.94""}","Elmore|Tallapoosa","01051|01123","FALSE","FALSE","America/Chicago"
-"36079","31.75952","-86.01069","Troy","AL","Alabama","TRUE","","9932","19.3","01109","Pike","{""01109"": ""96.38"", ""01031"": ""3.62""}","Pike|Coffee","01109|01031","FALSE","FALSE","America/Chicago"
-"36080","32.70211","-86.28413","Titus","AL","Alabama","TRUE","","2412","17.2","01051","Elmore","{""01051"": ""99.65"", ""01037"": ""0.35""}","Elmore|Coosa","01051|01037","FALSE","FALSE","America/Chicago"
-"36081","31.90489","-85.89686","Troy","AL","Alabama","TRUE","","15754","28.0","01109","Pike","{""01109"": ""98.26"", ""01011"": ""1.74""}","Pike|Bullock","01109|01011","FALSE","FALSE","America/Chicago"
-"36082","31.80273","-85.95468","Troy","AL","Alabama","TRUE","","1141","1155.7","01109","Pike","{""01109"": ""100""}","Pike","01109","FALSE","FALSE","America/Chicago"
-"36083","32.38841","-85.68244","Tuskegee","AL","Alabama","TRUE","","7316","11.1","01087","Macon","{""01087"": ""100""}","Macon","01087","FALSE","FALSE","America/Chicago"
-"36088","32.41686","-85.71784","Tuskegee Institute","AL","Alabama","TRUE","","4646","535.7","01087","Macon","{""01087"": ""100""}","Macon","01087","FALSE","FALSE","America/Chicago"
-"36089","32.15112","-85.70046","Union Springs","AL","Alabama","TRUE","","7698","9.0","01011","Bullock","{""01011"": ""95.22"", ""01087"": ""4.78""}","Bullock|Macon","01011|01087","FALSE","FALSE","America/Chicago"
-"36091","32.75087","-86.51182","Verbena","AL","Alabama","TRUE","","3590","16.9","01021","Chilton","{""01021"": ""89.39"", ""01001"": ""9.48"", ""01037"": ""1.12""}","Chilton|Autauga|Coosa","01021|01001|01037","FALSE","FALSE","America/Chicago"
-"36092","32.618","-86.19336","Wetumpka","AL","Alabama","TRUE","","20170","59.6","01051","Elmore","{""01051"": ""100""}","Elmore","01051","FALSE","FALSE","America/Chicago"
-"36093","32.49754","-86.14038","Wetumpka","AL","Alabama","TRUE","","11084","52.5","01051","Elmore","{""01051"": ""100""}","Elmore","01051","FALSE","FALSE","America/Chicago"
-"36104","32.39967","-86.32494","Montgomery","AL","Alabama","TRUE","","8465","242.5","01101","Montgomery","{""01101"": ""100""}","Montgomery","01101","FALSE","FALSE","America/Chicago"
-"36105","32.21337","-86.28959","Montgomery","AL","Alabama","TRUE","","9391","49.4","01101","Montgomery","{""01101"": ""100""}","Montgomery","01101","FALSE","FALSE","America/Chicago"
-"36106","32.3525","-86.25758","Montgomery","AL","Alabama","TRUE","","14951","946.6","01101","Montgomery","{""01101"": ""100""}","Montgomery","01101","FALSE","FALSE","America/Chicago"
-"36107","32.38378","-86.2793","Montgomery","AL","Alabama","TRUE","","7669","916.4","01101","Montgomery","{""01101"": ""100""}","Montgomery","01101","FALSE","FALSE","America/Chicago"
-"36108","32.33961","-86.4063","Montgomery","AL","Alabama","TRUE","","17680","98.1","01101","Montgomery","{""01101"": ""100""}","Montgomery","01101","FALSE","FALSE","America/Chicago"
-"36109","32.3871","-86.24137","Montgomery","AL","Alabama","TRUE","","25377","846.1","01101","Montgomery","{""01101"": ""100""}","Montgomery","01101","FALSE","FALSE","America/Chicago"
-"36110","32.44856","-86.2567","Montgomery","AL","Alabama","TRUE","","11693","152.7","01101","Montgomery","{""01101"": ""100""}","Montgomery","01101","FALSE","FALSE","America/Chicago"
-"36111","32.33758","-86.27162","Montgomery","AL","Alabama","TRUE","","12610","1132.5","01101","Montgomery","{""01101"": ""100""}","Montgomery","01101","FALSE","FALSE","America/Chicago"
-"36112","32.38074","-86.34915","Montgomery","AL","Alabama","TRUE","","309","341.9","01101","Montgomery","{""01101"": ""100""}","Montgomery","01101","FALSE","FALSE","America/Chicago"
-"36113","32.38277","-86.35806","Montgomery","AL","Alabama","TRUE","","1764","234.5","01101","Montgomery","{""01101"": ""100""}","Montgomery","01101","FALSE","FALSE","America/Chicago"
-"36115","32.40672","-86.24672","Montgomery","AL","Alabama","TRUE","","1058","688.6","01101","Montgomery","{""01101"": ""100""}","Montgomery","01101","FALSE","FALSE","America/Chicago"
-"36116","32.27263","-86.21539","Montgomery","AL","Alabama","TRUE","","43882","302.0","01101","Montgomery","{""01101"": ""100""}","Montgomery","01101","FALSE","FALSE","America/Chicago"
-"36117","32.37856","-86.14566","Montgomery","AL","Alabama","TRUE","","54640","388.6","01101","Montgomery","{""01101"": ""100""}","Montgomery","01101","FALSE","FALSE","America/Chicago"
-"36201","33.65147","-85.87878","Anniston","AL","Alabama","TRUE","","17482","181.0","01015","Calhoun","{""01015"": ""100""}","Calhoun","01015","FALSE","FALSE","America/Chicago"
-"36203","33.58156","-85.83295","Oxford","AL","Alabama","TRUE","","18453","186.3","01015","Calhoun","{""01015"": ""73.21"", ""01121"": ""26.79""}","Calhoun|Talladega","01015|01121","FALSE","FALSE","America/Chicago"
-"36205","33.71723","-85.79495","Anniston","AL","Alabama","TRUE","","1027","92.1","01015","Calhoun","{""01015"": ""100""}","Calhoun","01015","FALSE","FALSE","America/Chicago"
-"36206","33.73409","-85.81427","Anniston","AL","Alabama","TRUE","","11648","281.5","01015","Calhoun","{""01015"": ""100""}","Calhoun","01015","FALSE","FALSE","America/Chicago"
-"36207","33.68026","-85.71375","Anniston","AL","Alabama","TRUE","","19614","102.6","01015","Calhoun","{""01015"": ""100"", ""01029"": ""0""}","Calhoun|Cleburne","01015|01029","FALSE","FALSE","America/Chicago"
-"36250","33.76777","-85.89684","Alexandria","AL","Alabama","TRUE","","4768","104.3","01015","Calhoun","{""01015"": ""100""}","Calhoun","01015","FALSE","FALSE","America/Chicago"
-"36251","33.22982","-85.86642","Ashland","AL","Alabama","TRUE","","4400","11.8","01027","Clay","{""01027"": ""100""}","Clay","01027","FALSE","FALSE","America/Chicago"
-"36255","33.17466","-85.73837","Cragford","AL","Alabama","TRUE","","944","5.3","01027","Clay","{""01027"": ""98.14"", ""01123"": ""1.86""}","Clay|Tallapoosa","01027|01123","FALSE","FALSE","America/Chicago"
-"36256","33.04209","-85.70281","Daviston","AL","Alabama","TRUE","","1621","6.6","01123","Tallapoosa","{""01123"": ""98.98"", ""01027"": ""1.02""}","Tallapoosa|Clay","01123|01027","FALSE","FALSE","America/Chicago"
-"36258","33.47583","-85.71479","Delta","AL","Alabama","TRUE","","1385","4.7","01027","Clay","{""01027"": ""51.03"", ""01029"": ""36.59"", ""01111"": ""12.38""}","Clay|Cleburne|Randolph","01027|01029|01111","FALSE","FALSE","America/Chicago"
-"36260","33.58363","-86.00159","Eastaboga","AL","Alabama","TRUE","","4259","60.5","01015","Calhoun","{""01015"": ""73.02"", ""01121"": ""26.98""}","Calhoun|Talladega","01015|01121","FALSE","FALSE","America/Chicago"
-"36262","33.78757","-85.46555","Fruithurst","AL","Alabama","TRUE","","1326","5.7","01029","Cleburne","{""01029"": ""100""}","Cleburne","01029","FALSE","FALSE","America/Chicago"
-"36263","33.46623","-85.35928","Graham","AL","Alabama","TRUE","","420","6.6","01111","Randolph","{""01111"": ""100""}","Randolph","01111","FALSE","FALSE","America/Chicago"
-"36264","33.59501","-85.53865","Heflin","AL","Alabama","TRUE","","8305","13.6","01029","Cleburne","{""01029"": ""95.06"", ""01111"": ""4.94""}","Cleburne|Randolph","01029|01111","FALSE","FALSE","America/Chicago"
-"36265","33.84779","-85.78524","Jacksonville","AL","Alabama","TRUE","","20238","78.5","01015","Calhoun","{""01015"": ""100""}","Calhoun","01015","FALSE","FALSE","America/Chicago"
-"36266","33.34875","-85.74061","Lineville","AL","Alabama","TRUE","","6106","13.2","01027","Clay","{""01027"": ""86.4"", ""01111"": ""13.6""}","Clay|Randolph","01027|01111","FALSE","FALSE","America/Chicago"
-"36267","33.19729","-85.94818","Millerville","AL","Alabama","TRUE","","7","2.0","01027","Clay","{""01027"": ""100""}","Clay","01027","FALSE","FALSE","America/Chicago"
-"36268","33.49715","-85.9413","Munford","AL","Alabama","TRUE","","5514","22.7","01121","Talladega","{""01121"": ""99.58"", ""01027"": ""0.42""}","Talladega|Clay","01121|01027","FALSE","FALSE","America/Chicago"
-"36269","33.74339","-85.38289","Muscadine","AL","Alabama","TRUE","","1685","14.6","01029","Cleburne","{""01029"": ""100""}","Cleburne","01029","FALSE","FALSE","America/Chicago"
-"36271","33.78149","-86.01612","Ohatchee","AL","Alabama","TRUE","","5771","27.1","01015","Calhoun","{""01015"": ""100""}","Calhoun","01015","FALSE","FALSE","America/Chicago"
-"36272","33.94169","-85.596","Piedmont","AL","Alabama","TRUE","","13097","15.0","01015","Calhoun","{""01015"": ""66.05"", ""01019"": ""23.11"", ""01055"": ""7.86"", ""01029"": ""2.98""}","Calhoun|Cherokee|Etowah|Cleburne","01015|01019|01055|01029","FALSE","FALSE","America/Chicago"
-"36273","33.5403","-85.37853","Ranburne","AL","Alabama","TRUE","","3125","23.1","01029","Cleburne","{""01029"": ""100""}","Cleburne","01029","FALSE","FALSE","America/Chicago"
-"36274","33.17307","-85.36789","Roanoke","AL","Alabama","TRUE","","11067","23.4","01111","Randolph","{""01111"": ""94.64"", ""01017"": ""5.36""}","Randolph|Chambers","01111|01017","FALSE","FALSE","America/Chicago"
-"36276","33.13385","-85.57061","Wadley","AL","Alabama","TRUE","","2573","7.4","01111","Randolph","{""01111"": ""76.12"", ""01017"": ""14.2"", ""01027"": ""7.21"", ""01123"": ""2.47""}","Randolph|Chambers|Clay|Tallapoosa","01111|01017|01027|01123","FALSE","FALSE","America/Chicago"
-"36277","33.75972","-85.81878","Weaver","AL","Alabama","TRUE","","5771","265.8","01015","Calhoun","{""01015"": ""100""}","Calhoun","01015","FALSE","FALSE","America/Chicago"
-"36278","33.32618","-85.52697","Wedowee","AL","Alabama","TRUE","","4557","13.2","01111","Randolph","{""01111"": ""100""}","Randolph","01111","FALSE","FALSE","America/Chicago"
-"36279","33.87338","-85.88408","Wellington","AL","Alabama","TRUE","","2452","31.9","01015","Calhoun","{""01015"": ""100""}","Calhoun","01015","FALSE","FALSE","America/Chicago"
-"36280","33.38185","-85.38695","Woodland","AL","Alabama","TRUE","","4332","13.5","01111","Randolph","{""01111"": ""100""}","Randolph","01111","FALSE","FALSE","America/Chicago"
-"36301","31.14367","-85.40236","Dothan","AL","Alabama","TRUE","","37608","162.7","01069","Houston","{""01069"": ""99.46"", ""01061"": ""0.54""}","Houston|Geneva","01069|01061","FALSE","FALSE","America/Chicago"
-"36303","31.26679","-85.39718","Dothan","AL","Alabama","TRUE","","30986","190.4","01069","Houston","{""01069"": ""96.68"", ""01045"": ""3.26"", ""01067"": ""0.06""}","Houston|Dale|Henry","01069|01045|01067","FALSE","FALSE","America/Chicago"
-"36305","31.20136","-85.49807","Dothan","AL","Alabama","TRUE","","15954","194.1","01069","Houston","{""01069"": ""94.97"", ""01061"": ""5.03""}","Houston|Geneva","01069|01061","FALSE","FALSE","America/Chicago"
-"36310","31.60297","-85.21631","Abbeville","AL","Alabama","TRUE","","6275","11.2","01067","Henry","{""01067"": ""100""}","Henry","01067","FALSE","FALSE","America/Chicago"
-"36311","31.60246","-85.68151","Ariton","AL","Alabama","TRUE","","2426","7.8","01045","Dale","{""01045"": ""68.48"", ""01005"": ""22.06"", ""01031"": ""9.46""}","Dale|Barbour|Coffee","01045|01005|01031","FALSE","FALSE","America/Chicago"
-"36312","31.17088","-85.23739","Ashford","AL","Alabama","TRUE","","6285","31.5","01069","Houston","{""01069"": ""100""}","Houston","01069","FALSE","FALSE","America/Chicago"
-"36313","31.1786","-85.79394","Bellwood","AL","Alabama","TRUE","","244","24.0","01061","Geneva","{""01061"": ""100""}","Geneva","01061","FALSE","FALSE","America/Chicago"
-"36314","31.01866","-85.77585","Black","AL","Alabama","TRUE","","398","6.5","01061","Geneva","{""01061"": ""100""}","Geneva","01061","FALSE","FALSE","America/Chicago"
-"36316","31.1736","-85.86271","Chancellor","AL","Alabama","TRUE","","2118","16.4","01061","Geneva","{""01061"": ""54.07"", ""01031"": ""45.93""}","Geneva|Coffee","01061|01031","FALSE","FALSE","America/Chicago"
-"36317","31.64459","-85.39108","Clopton","AL","Alabama","TRUE","","486","4.6","01067","Henry","{""01067"": ""86.27"", ""01005"": ""9.32"", ""01045"": ""4.41""}","Henry|Barbour|Dale","01067|01005|01045","FALSE","FALSE","America/Chicago"
-"36318","31.1751","-85.95326","Coffee Springs","AL","Alabama","TRUE","","1481","11.8","01061","Geneva","{""01061"": ""75.46"", ""01031"": ""24.54""}","Geneva|Coffee","01061|01031","FALSE","FALSE","America/Chicago"
-"36319","31.32463","-85.14759","Columbia","AL","Alabama","TRUE","","2200","8.5","01069","Houston","{""01069"": ""59.84"", ""01067"": ""40.16""}","Houston|Henry","01069|01067","FALSE","FALSE","America/Chicago"
-"36320","31.05082","-85.31533","Cottonwood","AL","Alabama","TRUE","","3660","21.4","01069","Houston","{""01069"": ""100""}","Houston","01069","FALSE","FALSE","America/Chicago"
-"36321","31.2118","-85.30184","Cowarts","AL","Alabama","TRUE","","1816","101.4","01069","Houston","{""01069"": ""100""}","Houston","01069","FALSE","FALSE","America/Chicago"
-"36322","31.25281","-85.73273","Daleville","AL","Alabama","TRUE","","8921","55.1","01045","Dale","{""01045"": ""98.51"", ""01031"": ""1.21"", ""01061"": ""0.28""}","Dale|Coffee|Geneva","01045|01031|01061","FALSE","FALSE","America/Chicago"
-"36323","31.4268","-86.07139","Elba","AL","Alabama","TRUE","","7862","13.1","01031","Coffee","{""01031"": ""100""}","Coffee","01031","FALSE","FALSE","America/Chicago"
-"36330","31.30615","-85.8632","Enterprise","AL","Alabama","TRUE","","37144","119.3","01031","Coffee","{""01031"": ""91.06"", ""01045"": ""8.94""}","Coffee|Dale","01031|01045","FALSE","FALSE","America/Chicago"
-"36340","31.05086","-85.89142","Geneva","AL","Alabama","TRUE","","5718","46.5","01061","Geneva","{""01061"": ""100""}","Geneva","01061","FALSE","FALSE","America/Chicago"
-"36343","31.05905","-85.11599","Gordon","AL","Alabama","TRUE","","1241","4.8","01069","Houston","{""01069"": ""100""}","Houston","01069","FALSE","FALSE","America/Chicago"
-"36344","31.09822","-85.70899","Hartford","AL","Alabama","TRUE","","5719","17.2","01061","Geneva","{""01061"": ""100""}","Geneva","01061","FALSE","FALSE","America/Chicago"
-"36345","31.37526","-85.30829","Headland","AL","Alabama","TRUE","","8785","27.6","01067","Henry","{""01067"": ""89.04"", ""01069"": ""6.16"", ""01045"": ""4.79""}","Henry|Houston|Dale","01067|01069|01045","FALSE","FALSE","America/Chicago"
-"36346","31.55883","-85.92674","Jack","AL","Alabama","TRUE","","1432","11.0","01031","Coffee","{""01031"": ""100""}","Coffee","01031","FALSE","FALSE","America/Chicago"
-"36350","31.3492","-85.4903","Midland City","AL","Alabama","TRUE","","6428","38.8","01045","Dale","{""01045"": ""92.58"", ""01069"": ""7.42""}","Dale|Houston","01045|01069","FALSE","FALSE","America/Chicago"
-"36351","31.41551","-85.91877","New Brockton","AL","Alabama","TRUE","","3482","16.6","01031","Coffee","{""01031"": ""100""}","Coffee","01031","FALSE","FALSE","America/Chicago"
-"36352","31.25985","-85.61533","Newton","AL","Alabama","TRUE","","5433","29.6","01069","Houston","{""01069"": ""60.57"", ""01045"": ""38.2"", ""01061"": ""1.23""}","Houston|Dale|Geneva","01069|01045|01061","FALSE","FALSE","America/Chicago"
-"36353","31.48285","-85.36606","Newville","AL","Alabama","TRUE","","1683","6.7","01067","Henry","{""01067"": ""74.34"", ""01045"": ""25.66""}","Henry|Dale","01067|01045","FALSE","FALSE","America/Chicago"
-"36360","31.46766","-85.6177","Ozark","AL","Alabama","TRUE","","19064","40.7","01045","Dale","{""01045"": ""99.96"", ""01031"": ""0.04""}","Dale|Coffee","01045|01031","FALSE","FALSE","America/Chicago"
-"36362","31.35089","-85.69072","Fort Rucker","AL","Alabama","TRUE","","5311","69.7","01045","Dale","{""01045"": ""100""}","Dale","01045","FALSE","FALSE","America/Chicago"
-"36370","31.14241","-85.15679","Pansey","AL","Alabama","TRUE","","881","12.0","01069","Houston","{""01069"": ""100""}","Houston","01069","FALSE","FALSE","America/Chicago"
-"36371","31.31334","-85.55205","Pinckard","AL","Alabama","TRUE","","767","25.5","01045","Dale","{""01045"": ""100""}","Dale","01045","FALSE","FALSE","America/Chicago"
-"36373","31.52049","-85.10522","Shorterville","AL","Alabama","TRUE","","435","2.7","01067","Henry","{""01067"": ""100""}","Henry","01067","FALSE","FALSE","America/New_York"
-"36374","31.57873","-85.49368","Skipperville","AL","Alabama","TRUE","","787","5.6","01045","Dale","{""01045"": ""91.55"", ""01005"": ""8.45""}","Dale|Barbour","01045|01005","FALSE","FALSE","America/Chicago"
-"36375","31.07549","-85.53885","Slocomb","AL","Alabama","TRUE","","6976","22.1","01061","Geneva","{""01061"": ""85.32"", ""01069"": ""14.68""}","Geneva|Houston","01061|01069","FALSE","FALSE","America/Chicago"
-"36376","31.25624","-85.27019","Webb","AL","Alabama","TRUE","","2179","37.3","01069","Houston","{""01069"": ""100""}","Houston","01069","FALSE","FALSE","America/Chicago"
-"36401","31.47366","-86.9493","Evergreen","AL","Alabama","TRUE","","7730","6.5","01035","Conecuh","{""01035"": ""99.55"", ""01099"": ""0.45""}","Conecuh|Monroe","01035|01099","FALSE","FALSE","America/Chicago"
-"36420","31.17685","-86.57647","Andalusia","AL","Alabama","TRUE","","10369","15.1","01039","Covington","{""01039"": ""98.45"", ""01053"": ""1.55""}","Covington|Escambia","01039|01053","FALSE","FALSE","America/Chicago"
-"36421","31.32474","-86.50656","Andalusia","AL","Alabama","TRUE","","9966","18.6","01039","Covington","{""01039"": ""97.97"", ""01035"": ""2.03""}","Covington|Conecuh","01039|01035","FALSE","FALSE","America/Chicago"
-"36425","31.75818","-87.18469","Beatrice","AL","Alabama","TRUE","","1045","2.7","01099","Monroe","{""01099"": ""100""}","Monroe","01099","FALSE","FALSE","America/Chicago"
-"36426","31.14048","-87.07405","Brewton","AL","Alabama","TRUE","","15262","12.1","01053","Escambia","{""01053"": ""99.3"", ""01035"": ""0.7""}","Escambia|Conecuh","01053|01035","FALSE","FALSE","America/Chicago"
-"36432","31.29375","-87.02762","Castleberry","AL","Alabama","TRUE","","2150","5.8","01035","Conecuh","{""01035"": ""84.38"", ""01053"": ""15.62""}","Conecuh|Escambia","01035|01053","FALSE","FALSE","America/Chicago"
-"36435","31.88219","-87.4598","Coy","AL","Alabama","TRUE","","370","3.3","01131","Wilcox","{""01131"": ""100""}","Wilcox","01131","FALSE","FALSE","America/Chicago"
-"36436","31.78536","-87.64953","Dickinson","AL","Alabama","TRUE","","359","4.2","01025","Clarke","{""01025"": ""100""}","Clarke","01025","FALSE","FALSE","America/Chicago"
-"36439","31.42396","-87.34222","Excel","AL","Alabama","TRUE","","502","129.8","01099","Monroe","{""01099"": ""100""}","Monroe","01099","FALSE","FALSE","America/Chicago"
-"36441","31.03642","-87.25584","Flomaton","AL","Alabama","TRUE","","3886","25.6","01053","Escambia","{""01053"": ""100""}","Escambia","01053","FALSE","FALSE","America/Chicago"
-"36442","31.07157","-86.36267","Florala","AL","Alabama","TRUE","","3356","6.3","01039","Covington","{""01039"": ""99.52"", ""01061"": ""0.48""}","Covington|Geneva","01039|01061","FALSE","FALSE","America/Chicago"
-"36444","31.66427","-87.45328","Franklin","AL","Alabama","TRUE","","774","2.8","01099","Monroe","{""01099"": ""100""}","Monroe","01099","FALSE","FALSE","America/Chicago"
-"36445","31.44247","-87.44745","Frisco City","AL","Alabama","TRUE","","4524","11.3","01099","Monroe","{""01099"": ""100""}","Monroe","01099","FALSE","FALSE","America/Chicago"
-"36446","31.79247","-87.71998","Fulton","AL","Alabama","TRUE","","441","37.8","01025","Clarke","{""01025"": ""100""}","Clarke","01025","FALSE","FALSE","America/Chicago"
-"36451","31.69908","-87.80271","Grove Hill","AL","Alabama","TRUE","","4312","8.7","01025","Clarke","{""01025"": ""100""}","Clarke","01025","FALSE","FALSE","America/Chicago"
-"36453","31.19254","-86.1514","Kinston","AL","Alabama","TRUE","","2396","10.0","01031","Coffee","{""01031"": ""61.06"", ""01061"": ""38.22"", ""01039"": ""0.73""}","Coffee|Geneva|Covington","01031|01061|01039","FALSE","FALSE","America/Chicago"
-"36454","31.33327","-87.20061","Lenox","AL","Alabama","TRUE","","8","2.2","01035","Conecuh","{""01035"": ""100""}","Conecuh","01035","FALSE","FALSE","America/Chicago"
-"36455","31.01292","-86.35181","Lockhart","AL","Alabama","TRUE","","252","180.9","01039","Covington","{""01039"": ""100""}","Covington","01039","FALSE","FALSE","America/Chicago"
-"36456","31.56338","-86.81278","McKenzie","AL","Alabama","TRUE","","1528","4.8","01013","Butler","{""01013"": ""68.46"", ""01035"": ""25.16"", ""01039"": ""6.37""}","Butler|Conecuh|Covington","01013|01035|01039","FALSE","FALSE","America/Chicago"
-"36460","31.52096","-87.30743","Monroeville","AL","Alabama","TRUE","","10246","28.6","01099","Monroe","{""01099"": ""99.69"", ""01035"": ""0.31""}","Monroe|Conecuh","01099|01035","FALSE","FALSE","America/Chicago"
-"36467","31.28126","-86.25716","Opp","AL","Alabama","TRUE","","9810","22.9","01039","Covington","{""01039"": ""97.06"", ""01031"": ""2.94""}","Covington|Coffee","01039|01031","FALSE","FALSE","America/Chicago"
-"36470","31.53803","-87.55087","Perdue Hill","AL","Alabama","TRUE","","51","0.6","01099","Monroe","{""01099"": ""100""}","Monroe","01099","FALSE","FALSE","America/Chicago"
-"36471","31.62619","-87.24301","Peterman","AL","Alabama","TRUE","","904","3.5","01099","Monroe","{""01099"": ""97.06"", ""01035"": ""2.94""}","Monroe|Conecuh","01099|01035","FALSE","FALSE","America/Chicago"
-"36473","31.30577","-87.21362","Range","AL","Alabama","TRUE","","102","6.4","01035","Conecuh","{""01035"": ""100""}","Conecuh","01035","FALSE","FALSE","America/Chicago"
-"36474","31.4268","-86.61984","Red Level","AL","Alabama","TRUE","","2647","5.6","01039","Covington","{""01039"": ""97.03"", ""01035"": ""2.73"", ""01013"": ""0.24""}","Covington|Conecuh|Butler","01039|01035|01013","FALSE","FALSE","America/Chicago"
-"36475","31.38141","-87.2247","Repton","AL","Alabama","TRUE","","2393","5.6","01035","Conecuh","{""01035"": ""74.59"", ""01099"": ""25.41""}","Conecuh|Monroe","01035|01099","FALSE","FALSE","America/Chicago"
-"36476","31.36303","-86.55096","River Falls","AL","Alabama","TRUE","","16","5.1","01039","Covington","{""01039"": ""100""}","Covington","01039","FALSE","FALSE","America/Chicago"
-"36477","31.09522","-86.05576","Samson","AL","Alabama","TRUE","","3688","8.4","01061","Geneva","{""01061"": ""93.23"", ""01031"": ""6.77""}","Geneva|Coffee","01061|01031","FALSE","FALSE","America/Chicago"
-"36480","31.32707","-87.60794","Uriah","AL","Alabama","TRUE","","1682","4.0","01099","Monroe","{""01099"": ""98.98"", ""01003"": ""1.02""}","Monroe|Baldwin","01099|01003","FALSE","FALSE","America/Chicago"
-"36481","31.80224","-87.36798","Vredenburgh","AL","Alabama","TRUE","","443","2.9","01099","Monroe","{""01099"": ""89.38"", ""01131"": ""10.62""}","Monroe|Wilcox","01099|01131","FALSE","FALSE","America/Chicago"
-"36482","31.6318","-87.64257","Whatley","AL","Alabama","TRUE","","1004","3.1","01025","Clarke","{""01025"": ""100""}","Clarke","01025","FALSE","FALSE","America/Chicago"
-"36483","31.04302","-86.69175","Wing","AL","Alabama","TRUE","","447","1.7","01039","Covington","{""01039"": ""66.04"", ""01053"": ""33.96""}","Covington|Escambia","01039|01053","FALSE","FALSE","America/Chicago"
-"36502","31.14072","-87.49393","Atmore","AL","Alabama","TRUE","","18113","21.3","01053","Escambia","{""01053"": ""96.99"", ""01099"": ""1.34"", ""01003"": ""1.2"", ""01035"": ""0.47""}","Escambia|Monroe|Baldwin|Conecuh","01053|01099|01003|01035","FALSE","FALSE","America/Chicago"
-"36505","30.94264","-88.01644","Axis","AL","Alabama","TRUE","","1682","30.1","01097","Mobile","{""01097"": ""100""}","Mobile","01097","FALSE","FALSE","America/Chicago"
-"36507","30.86318","-87.73903","Bay Minette","AL","Alabama","TRUE","","21360","24.6","01003","Baldwin","{""01003"": ""100""}","Baldwin","01003","FALSE","FALSE","America/Chicago"
-"36509","30.40204","-88.26155","Bayou La Batre","AL","Alabama","TRUE","","2054","121.2","01097","Mobile","{""01097"": ""100""}","Mobile","01097","FALSE","FALSE","America/Chicago"
-"36511","30.31279","-87.74306","Bon Secour","AL","Alabama","TRUE","","221","18.3","01003","Baldwin","{""01003"": ""100""}","Baldwin","01003","FALSE","FALSE","America/Chicago"
-"36512","30.99765","-88.01484","Bucks","AL","Alabama","TRUE","","39","2.8","01097","Mobile","{""01097"": ""100""}","Mobile","01097","FALSE","FALSE","America/Chicago"
-"36513","31.1718","-88.00338","Calvert","AL","Alabama","TRUE","","672","17.9","01129","Washington","{""01129"": ""85.95"", ""01097"": ""14.05""}","Washington|Mobile","01129|01097","FALSE","FALSE","America/Chicago"
-"36518","31.45453","-88.28395","Chatom","AL","Alabama","TRUE","","2744","7.8","01129","Washington","{""01129"": ""100""}","Washington","01129","FALSE","FALSE","America/Chicago"
-"36521","30.96477","-88.18116","Chunchula","AL","Alabama","TRUE","","6073","16.2","01097","Mobile","{""01097"": ""100""}","Mobile","01097","FALSE","FALSE","America/Chicago"
-"36522","31.09178","-88.27135","Citronelle","AL","Alabama","TRUE","","7339","12.9","01097","Mobile","{""01097"": ""93.86"", ""01129"": ""6.14""}","Mobile|Washington","01097|01129","FALSE","FALSE","America/Chicago"
-"36523","30.37697","-88.16718","Coden","AL","Alabama","TRUE","","2809","28.3","01097","Mobile","{""01097"": ""100""}","Mobile","01097","FALSE","FALSE","America/Chicago"
-"36524","31.81425","-88.02109","Coffeeville","AL","Alabama","TRUE","","1328","3.1","01025","Clarke","{""01025"": ""100""}","Clarke","01025","FALSE","FALSE","America/Chicago"
-"36525","30.89003","-88.01798","Creola","AL","Alabama","TRUE","","1914","44.1","01097","Mobile","{""01097"": ""100""}","Mobile","01097","FALSE","FALSE","America/Chicago"
-"36526","30.61295","-87.86136","Daphne","AL","Alabama","TRUE","","34565","356.7","01003","Baldwin","{""01003"": ""100""}","Baldwin","01003","FALSE","FALSE","America/Chicago"
-"36527","30.69825","-87.87322","Daphne","AL","Alabama","TRUE","","15517","146.0","01003","Baldwin","{""01003"": ""100""}","Baldwin","01003","FALSE","FALSE","America/Chicago"
-"36528","30.25255","-88.14385","Dauphin Island","AL","Alabama","TRUE","","1324","81.4","01097","Mobile","{""01097"": ""100""}","Mobile","01097","FALSE","FALSE","America/Chicago"
-"36529","31.27779","-88.26572","Deer Park","AL","Alabama","TRUE","","209","1.3","01129","Washington","{""01129"": ""100""}","Washington","01129","FALSE","FALSE","America/Chicago"
-"36530","30.4102","-87.55475","Elberta","AL","Alabama","TRUE","","6363","25.4","01003","Baldwin","{""01003"": ""100""}","Baldwin","01003","FALSE","FALSE","America/Chicago"
-"36532","30.48266","-87.86183","Fairhope","AL","Alabama","TRUE","","35066","183.7","01003","Baldwin","{""01003"": ""100""}","Baldwin","01003","FALSE","FALSE","America/Chicago"
-"36535","30.38546","-87.7262","Foley","AL","Alabama","TRUE","","33065","139.7","01003","Baldwin","{""01003"": ""100""}","Baldwin","01003","FALSE","FALSE","America/Chicago"
-"36538","31.66264","-88.13798","Frankville","AL","Alabama","TRUE","","377","4.2","01129","Washington","{""01129"": ""100""}","Washington","01129","FALSE","FALSE","America/Chicago"
-"36539","31.33968","-88.38396","Fruitdale","AL","Alabama","TRUE","","688","3.7","01129","Washington","{""01129"": ""100""}","Washington","01129","FALSE","FALSE","America/Chicago"
-"36540","31.44549","-87.66859","Gainestown","AL","Alabama","TRUE","","628","5.5","01025","Clarke","{""01025"": ""100""}","Clarke","01025","FALSE","FALSE","America/Chicago"
-"36541","30.49335","-88.34053","Grand Bay","AL","Alabama","TRUE","","15524","62.7","01097","Mobile","{""01097"": ""100""}","Mobile","01097","FALSE","FALSE","America/Chicago"
-"36542","30.27726","-87.73713","Gulf Shores","AL","Alabama","TRUE","","14045","103.2","01003","Baldwin","{""01003"": ""100""}","Baldwin","01003","FALSE","FALSE","America/Chicago"
-"36543","31.22073","-87.46323","Huxford","AL","Alabama","TRUE","","137","181.4","01053","Escambia","{""01053"": ""100""}","Escambia","01053","FALSE","FALSE","America/Chicago"
-"36544","30.47443","-88.23288","Irvington","AL","Alabama","TRUE","","11682","112.5","01097","Mobile","{""01097"": ""100""}","Mobile","01097","FALSE","FALSE","America/Chicago"
-"36545","31.4894","-87.87434","Jackson","AL","Alabama","TRUE","","9743","9.5","01025","Clarke","{""01025"": ""100""}","Clarke","01025","FALSE","FALSE","America/Chicago"
-"36548","31.48753","-87.97159","Leroy","AL","Alabama","TRUE","","998","11.1","01129","Washington","{""01129"": ""100""}","Washington","01129","FALSE","FALSE","America/Chicago"
-"36549","30.41373","-87.44852","Lillian","AL","Alabama","TRUE","","5687","78.7","01003","Baldwin","{""01003"": ""100""}","Baldwin","01003","FALSE","FALSE","America/Chicago"
-"36550","31.23746","-87.72114","Little River","AL","Alabama","TRUE","","179","1.3","01003","Baldwin","{""01003"": ""100""}","Baldwin","01003","FALSE","FALSE","America/Chicago"
-"36551","30.63762","-87.75286","Loxley","AL","Alabama","TRUE","","9573","56.7","01003","Baldwin","{""01003"": ""100""}","Baldwin","01003","FALSE","FALSE","America/Chicago"
-"36553","31.24101","-88.06928","McIntosh","AL","Alabama","TRUE","","2721","9.5","01129","Washington","{""01129"": ""100""}","Washington","01129","FALSE","FALSE","America/Chicago"
-"36555","30.39985","-87.77264","Magnolia Springs","AL","Alabama","TRUE","","806","369.1","01003","Baldwin","{""01003"": ""100""}","Baldwin","01003","FALSE","FALSE","America/Chicago"
-"36556","31.20649","-87.97182","Malcolm","AL","Alabama","TRUE","","571","30.7","01129","Washington","{""01129"": ""100""}","Washington","01129","FALSE","FALSE","America/Chicago"
-"36558","31.60774","-88.31852","Millry","AL","Alabama","TRUE","","3677","5.8","01129","Washington","{""01129"": ""93.33"", ""01023"": ""6.67""}","Washington|Choctaw","01129|01023","FALSE","FALSE","America/Chicago"
-"36559","30.56858","-87.904","Montrose","AL","Alabama","TRUE","","213","230.1","01003","Baldwin","{""01003"": ""100""}","Baldwin","01003","FALSE","FALSE","America/Chicago"
-"36560","31.09638","-88.04001","Mount Vernon","AL","Alabama","TRUE","","3243","17.8","01097","Mobile","{""01097"": ""100""}","Mobile","01097","FALSE","FALSE","America/Chicago"
-"36561","30.28692","-87.57033","Orange Beach","AL","Alabama","TRUE","","6843","163.0","01003","Baldwin","{""01003"": ""100""}","Baldwin","01003","FALSE","FALSE","America/Chicago"
-"36562","31.03438","-87.66144","Perdido","AL","Alabama","TRUE","","1362","11.8","01003","Baldwin","{""01003"": ""96.12"", ""01053"": ""3.88""}","Baldwin|Escambia","01003|01053","FALSE","FALSE","America/Chicago"
-"36564","30.47681","-87.92522","Point Clear","AL","Alabama","TRUE","","153","193.7","01003","Baldwin","{""01003"": ""100""}","Baldwin","01003","FALSE","FALSE","America/Chicago"
-"36567","30.61475","-87.55984","Robertsdale","AL","Alabama","TRUE","","13980","23.6","01003","Baldwin","{""01003"": ""100""}","Baldwin","01003","FALSE","FALSE","America/Chicago"
-"36568","30.51279","-88.27257","Saint Elmo","AL","Alabama","TRUE","","92","39.6","01097","Mobile","{""01097"": ""100""}","Mobile","01097","FALSE","FALSE","America/Chicago"
-"36569","31.5425","-88.08932","Saint Stephens","AL","Alabama","TRUE","","570","3.6","01129","Washington","{""01129"": ""100""}","Washington","01129","FALSE","FALSE","America/Chicago"
-"36571","30.84281","-88.09551","Saraland","AL","Alabama","TRUE","","15474","130.9","01097","Mobile","{""01097"": ""100""}","Mobile","01097","FALSE","FALSE","America/Chicago"
-"36572","30.85842","-88.06046","Satsuma","AL","Alabama","TRUE","","6159","256.3","01097","Mobile","{""01097"": ""100""}","Mobile","01097","FALSE","FALSE","America/Chicago"
-"36574","30.51519","-87.48076","Seminole","AL","Alabama","TRUE","","1123","30.9","01003","Baldwin","{""01003"": ""100""}","Baldwin","01003","FALSE","FALSE","America/Chicago"
-"36575","30.76897","-88.27272","Semmes","AL","Alabama","TRUE","","21118","194.1","01097","Mobile","{""01097"": ""100""}","Mobile","01097","FALSE","FALSE","America/Chicago"
-"36576","30.52641","-87.76646","Silverhill","AL","Alabama","TRUE","","4198","83.4","01003","Baldwin","{""01003"": ""100""}","Baldwin","01003","FALSE","FALSE","America/Chicago"
-"36578","30.74774","-87.77878","Stapleton","AL","Alabama","TRUE","","1436","18.2","01003","Baldwin","{""01003"": ""100""}","Baldwin","01003","FALSE","FALSE","America/Chicago"
-"36579","31.10661","-87.79842","Stockton","AL","Alabama","TRUE","","1214","3.6","01003","Baldwin","{""01003"": ""100""}","Baldwin","01003","FALSE","FALSE","America/Chicago"
-"36580","30.48177","-87.70046","Summerdale","AL","Alabama","TRUE","","5507","39.5","01003","Baldwin","{""01003"": ""100""}","Baldwin","01003","FALSE","FALSE","America/Chicago"
-"36581","31.37321","-87.96134","Sunflower","AL","Alabama","TRUE","","258","1.9","01129","Washington","{""01129"": ""100""}","Washington","01129","FALSE","FALSE","America/Chicago"
-"36582","30.51044","-88.17336","Theodore","AL","Alabama","TRUE","","24029","115.5","01097","Mobile","{""01097"": ""100""}","Mobile","01097","FALSE","FALSE","America/Chicago"
-"36583","31.35528","-88.19769","Tibbie","AL","Alabama","TRUE","","898","5.4","01129","Washington","{""01129"": ""100""}","Washington","01129","FALSE","FALSE","America/Chicago"
-"36584","31.19821","-88.38063","Vinegar Bend","AL","Alabama","TRUE","","856","4.8","01129","Washington","{""01129"": ""100""}","Washington","01129","FALSE","FALSE","America/Chicago"
-"36585","31.38848","-88.07549","Wagarville","AL","Alabama","TRUE","","1242","5.8","01129","Washington","{""01129"": ""100""}","Washington","01129","FALSE","FALSE","America/Chicago"
-"36587","30.84259","-88.35491","Wilmer","AL","Alabama","TRUE","","10317","32.7","01097","Mobile","{""01097"": ""100""}","Mobile","01097","FALSE","FALSE","America/Chicago"
-"36590","30.53181","-88.17441","Theodore","AL","Alabama","TRUE","","0","0.0","01097","Mobile","{""01097"": ""100""}","Mobile","01097","FALSE","FALSE","America/Chicago"
-"36602","30.69355","-88.04555","Mobile","AL","Alabama","TRUE","","932","394.6","01097","Mobile","{""01097"": ""100""}","Mobile","01097","FALSE","FALSE","America/Chicago"
-"36603","30.69055","-88.04357","Mobile","AL","Alabama","TRUE","","9552","569.3","01097","Mobile","{""01097"": ""100""}","Mobile","01097","FALSE","FALSE","America/Chicago"
-"36604","30.6822","-88.06816","Mobile","AL","Alabama","TRUE","","9423","1377.0","01097","Mobile","{""01097"": ""100""}","Mobile","01097","FALSE","FALSE","America/Chicago"
-"36605","30.60791","-88.08977","Mobile","AL","Alabama","TRUE","","27372","579.1","01097","Mobile","{""01097"": ""100""}","Mobile","01097","FALSE","FALSE","America/Chicago"
-"36606","30.67079","-88.10628","Mobile","AL","Alabama","TRUE","","18787","1106.4","01097","Mobile","{""01097"": ""100""}","Mobile","01097","FALSE","FALSE","America/Chicago"
-"36607","30.69859","-88.10575","Mobile","AL","Alabama","TRUE","","6398","773.1","01097","Mobile","{""01097"": ""100""}","Mobile","01097","FALSE","FALSE","America/Chicago"
-"36608","30.68171","-88.29444","Mobile","AL","Alabama","TRUE","","35336","218.1","01097","Mobile","{""01097"": ""100""}","Mobile","01097","FALSE","FALSE","America/Chicago"
-"36609","30.66091","-88.16318","Mobile","AL","Alabama","TRUE","","23492","1288.3","01097","Mobile","{""01097"": ""100""}","Mobile","01097","FALSE","FALSE","America/Chicago"
-"36610","30.73631","-88.07289","Mobile","AL","Alabama","TRUE","","10728","517.6","01097","Mobile","{""01097"": ""100""}","Mobile","01097","FALSE","FALSE","America/Chicago"
-"36611","30.77045","-88.07808","Mobile","AL","Alabama","TRUE","","5817","472.7","01097","Mobile","{""01097"": ""100""}","Mobile","01097","FALSE","FALSE","America/Chicago"
-"36612","30.75377","-88.11246","Mobile","AL","Alabama","TRUE","","4626","636.9","01097","Mobile","{""01097"": ""100""}","Mobile","01097","FALSE","FALSE","America/Chicago"
-"36613","30.81178","-88.18098","Eight Mile","AL","Alabama","TRUE","","13583","102.3","01097","Mobile","{""01097"": ""100""}","Mobile","01097","FALSE","FALSE","America/Chicago"
-"36615","30.63316","-88.06831","Mobile","AL","Alabama","TRUE","","0","0.0","01097","Mobile","{""01097"": ""100""}","Mobile","01097","FALSE","FALSE","America/Chicago"
-"36616","30.72454","-88.08152","Mobile","AL","Alabama","TRUE","","8","441.9","01097","Mobile","{""01097"": ""100""}","Mobile","01097","FALSE","FALSE","America/Chicago"
-"36617","30.71643","-88.09599","Mobile","AL","Alabama","TRUE","","13306","1082.3","01097","Mobile","{""01097"": ""100""}","Mobile","01097","FALSE","FALSE","America/Chicago"
-"36618","30.73594","-88.17345","Mobile","AL","Alabama","TRUE","","17143","410.4","01097","Mobile","{""01097"": ""100""}","Mobile","01097","FALSE","FALSE","America/Chicago"
-"36619","30.59647","-88.19792","Mobile","AL","Alabama","TRUE","","15507","348.8","01097","Mobile","{""01097"": ""100""}","Mobile","01097","FALSE","FALSE","America/Chicago"
-"36688","30.69623","-88.18239","Mobile","AL","Alabama","TRUE","","237","170.8","01097","Mobile","{""01097"": ""100""}","Mobile","01097","FALSE","FALSE","America/Chicago"
-"36693","30.6266","-88.14987","Mobile","AL","Alabama","TRUE","","19721","604.3","01097","Mobile","{""01097"": ""100""}","Mobile","01097","FALSE","FALSE","America/Chicago"
-"36695","30.63011","-88.28067","Mobile","AL","Alabama","TRUE","","51804","418.8","01097","Mobile","{""01097"": ""100""}","Mobile","01097","FALSE","FALSE","America/Chicago"
-"36701","32.47679","-87.05709","Selma","AL","Alabama","TRUE","","20558","30.6","01047","Dallas","{""01047"": ""98.45"", ""01105"": ""1.55""}","Dallas|Perry","01047|01105","FALSE","FALSE","America/Chicago"
-"36703","32.43261","-86.91074","Selma","AL","Alabama","TRUE","","12927","41.3","01047","Dallas","{""01047"": ""98.75"", ""01001"": ""1.25""}","Dallas|Autauga","01047|01001","FALSE","FALSE","America/Chicago"
-"36720","32.15848","-87.34674","Alberta","AL","Alabama","TRUE","","963","7.5","01131","Wilcox","{""01131"": ""100""}","Wilcox","01131","FALSE","FALSE","America/Chicago"
-"36722","32.09152","-87.57346","Arlington","AL","Alabama","TRUE","","441","5.3","01131","Wilcox","{""01131"": ""95.13"", ""01091"": ""4.87""}","Wilcox|Marengo","01131|01091","FALSE","FALSE","America/Chicago"
-"36723","32.06777","-87.2851","Boykin","AL","Alabama","TRUE","","371","21.5","01131","Wilcox","{""01131"": ""100""}","Wilcox","01131","FALSE","FALSE","America/Chicago"
-"36726","31.97324","-87.29099","Camden","AL","Alabama","TRUE","","4706","6.9","01131","Wilcox","{""01131"": ""100""}","Wilcox","01131","FALSE","FALSE","America/Chicago"
-"36727","31.92124","-88.00801","Campbell","AL","Alabama","TRUE","","12","0.1","01025","Clarke","{""01025"": ""100""}","Clarke","01025","FALSE","FALSE","America/Chicago"
-"36728","32.16788","-87.47938","Catherine","AL","Alabama","TRUE","","214","0.9","01131","Wilcox","{""01131"": ""59.65"", ""01091"": ""40.35""}","Wilcox|Marengo","01131|01091","FALSE","FALSE","America/Chicago"
-"36732","32.42337","-87.9152","Demopolis","AL","Alabama","TRUE","","7706","23.2","01091","Marengo","{""01091"": ""100""}","Marengo","01091","FALSE","FALSE","America/Chicago"
-"36736","32.05953","-87.77719","Dixons Mills","AL","Alabama","TRUE","","1633","15.3","01091","Marengo","{""01091"": ""100""}","Marengo","01091","FALSE","FALSE","America/Chicago"
-"36738","32.42661","-87.6193","Faunsdale","AL","Alabama","TRUE","","718","3.8","01091","Marengo","{""01091"": ""79.52"", ""01065"": ""20.48""}","Marengo|Hale","01091|01065","FALSE","FALSE","America/Chicago"
-"36740","32.62732","-87.84017","Forkland","AL","Alabama","TRUE","","1276","6.7","01063","Greene","{""01063"": ""100""}","Greene","01063","FALSE","FALSE","America/Chicago"
-"36742","32.46429","-87.738","Gallion","AL","Alabama","TRUE","","1921","6.5","01091","Marengo","{""01091"": ""81.95"", ""01065"": ""18.05""}","Marengo|Hale","01091|01065","FALSE","FALSE","America/Chicago"
-"36744","32.69748","-87.59874","Greensboro","AL","Alabama","TRUE","","6294","10.6","01065","Hale","{""01065"": ""99.33"", ""01105"": ""0.67""}","Hale|Perry","01065|01105","FALSE","FALSE","America/Chicago"
-"36748","32.27557","-87.78482","Linden","AL","Alabama","TRUE","","2419","6.1","01091","Marengo","{""01091"": ""100""}","Marengo","01091","FALSE","FALSE","America/Chicago"
-"36749","32.54319","-86.86168","Jones","AL","Alabama","TRUE","","949","5.9","01001","Autauga","{""01001"": ""62.08"", ""01047"": ""37.92""}","Autauga|Dallas","01001|01047","FALSE","FALSE","America/Chicago"
-"36750","32.78696","-86.85061","Maplesville","AL","Alabama","TRUE","","2622","8.9","01021","Chilton","{""01021"": ""98.07"", ""01007"": ""1.93""}","Chilton|Bibb","01021|01007","FALSE","FALSE","America/Chicago"
-"36751","31.80806","-87.54524","Lower Peach Tree","AL","Alabama","TRUE","","632","2.6","01099","Monroe","{""01099"": ""46.35"", ""01131"": ""44.34"", ""01025"": ""9.31""}","Monroe|Wilcox|Clarke","01099|01131|01025","FALSE","FALSE","America/Chicago"
-"36752","32.3001","-86.62153","Lowndesboro","AL","Alabama","TRUE","","1146","3.0","01085","Lowndes","{""01085"": ""100""}","Lowndes","01085","FALSE","FALSE","America/Chicago"
-"36753","31.81596","-87.08601","McWilliams","AL","Alabama","TRUE","","8","0.3","01099","Monroe","{""01099"": ""74.12"", ""01131"": ""25.88""}","Monroe|Wilcox","01099|01131","FALSE","FALSE","America/Chicago"
-"36754","32.15406","-87.70088","Magnolia","AL","Alabama","TRUE","","473","4.5","01091","Marengo","{""01091"": ""100""}","Marengo","01091","FALSE","FALSE","America/Chicago"
-"36756","32.69351","-87.28015","Marion","AL","Alabama","TRUE","","5867","5.5","01105","Perry","{""01105"": ""100""}","Perry","01105","FALSE","FALSE","America/Chicago"
-"36758","32.6503","-86.89917","Plantersville","AL","Alabama","TRUE","","1412","6.2","01047","Dallas","{""01047"": ""47.66"", ""01021"": ""31.52"", ""01001"": ""20.82""}","Dallas|Chilton|Autauga","01047|01021|01001","FALSE","FALSE","America/Chicago"
-"36759","32.42243","-87.28554","Marion Junction","AL","Alabama","TRUE","","1831","3.7","01047","Dallas","{""01047"": ""88.41"", ""01105"": ""11.59""}","Dallas|Perry","01047|01105","FALSE","FALSE","America/Chicago"
-"36761","32.08456","-86.97495","Minter","AL","Alabama","TRUE","","787","1.2","01047","Dallas","{""01047"": ""50.13"", ""01085"": ""46.6"", ""01131"": ""3.27""}","Dallas|Lowndes|Wilcox","01047|01085|01131","FALSE","FALSE","America/Chicago"
-"36763","32.27107","-87.96571","Myrtlewood","AL","Alabama","TRUE","","316","6.0","01091","Marengo","{""01091"": ""100""}","Marengo","01091","FALSE","FALSE","America/Chicago"
-"36765","32.58282","-87.52276","Newbern","AL","Alabama","TRUE","","1685","8.8","01065","Hale","{""01065"": ""75.27"", ""01105"": ""24.73""}","Hale|Perry","01065|01105","FALSE","FALSE","America/Chicago"
-"36766","31.95509","-87.08677","Oak Hill","AL","Alabama","TRUE","","22","1.1","01131","Wilcox","{""01131"": ""100""}","Wilcox","01131","FALSE","FALSE","America/Chicago"
-"36767","32.26011","-87.19071","Orrville","AL","Alabama","TRUE","","1476","4.8","01047","Dallas","{""01047"": ""100""}","Dallas","01047","FALSE","FALSE","America/Chicago"
-"36768","31.90805","-87.02166","Pine Apple","AL","Alabama","TRUE","","900","1.4","01131","Wilcox","{""01131"": ""94.16"", ""01099"": ""5.84""}","Wilcox|Monroe","01131|01099","FALSE","FALSE","America/Chicago"
-"36769","31.99843","-87.53861","Pine Hill","AL","Alabama","TRUE","","2444","6.4","01131","Wilcox","{""01131"": ""90.25"", ""01091"": ""9.75""}","Wilcox|Marengo","01131|01091","FALSE","FALSE","America/Chicago"
-"36773","32.261","-87.35878","Safford","AL","Alabama","TRUE","","469","1.9","01047","Dallas","{""01047"": ""72.07"", ""01091"": ""27.93""}","Dallas|Marengo","01047|01091","FALSE","FALSE","America/Chicago"
-"36775","32.22924","-87.01663","Sardis","AL","Alabama","TRUE","","1025","4.3","01047","Dallas","{""01047"": ""100""}","Dallas","01047","FALSE","FALSE","America/Chicago"
-"36776","32.74498","-87.74252","Sawyerville","AL","Alabama","TRUE","","1856","8.8","01065","Hale","{""01065"": ""100""}","Hale","01065","FALSE","FALSE","America/Chicago"
-"36782","32.12822","-87.91857","Sweet Water","AL","Alabama","TRUE","","2685","5.1","01091","Marengo","{""01091"": ""100""}","Marengo","01091","FALSE","FALSE","America/Chicago"
-"36783","32.24724","-87.60102","Thomaston","AL","Alabama","TRUE","","686","2.3","01091","Marengo","{""01091"": ""99.15"", ""01131"": ""0.85""}","Marengo|Wilcox","01091|01131","FALSE","FALSE","America/Chicago"
-"36784","31.93985","-87.80013","Thomasville","AL","Alabama","TRUE","","7181","10.2","01025","Clarke","{""01025"": ""86.82"", ""01091"": ""10.45"", ""01131"": ""2.73""}","Clarke|Marengo|Wilcox","01025|01091|01131","FALSE","FALSE","America/Chicago"
-"36785","32.25267","-86.83672","Tyler","AL","Alabama","TRUE","","1074","3.3","01085","Lowndes","{""01085"": ""76.14"", ""01047"": ""23.86""}","Lowndes|Dallas","01085|01047","FALSE","FALSE","America/Chicago"
-"36786","32.43966","-87.48807","Uniontown","AL","Alabama","TRUE","","2474","6.9","01105","Perry","{""01105"": ""98.99"", ""01091"": ""1.01""}","Perry|Marengo","01105|01091","FALSE","FALSE","America/Chicago"
-"36790","32.73321","-86.89632","Stanton","AL","Alabama","TRUE","","89","6.8","01021","Chilton","{""01021"": ""100""}","Chilton","01021","FALSE","FALSE","America/Chicago"
-"36792","32.92158","-86.90596","Randolph","AL","Alabama","TRUE","","1396","9.6","01007","Bibb","{""01007"": ""61.08"", ""01021"": ""38.92""}","Bibb|Chilton","01007|01021","FALSE","FALSE","America/Chicago"
-"36793","32.81731","-87.02616","Lawley","AL","Alabama","TRUE","","279","1.4","01007","Bibb","{""01007"": ""62.68"", ""01105"": ""21.13"", ""01021"": ""16.2""}","Bibb|Perry|Chilton","01007|01105|01021","FALSE","FALSE","America/Chicago"
-"36801","32.69174","-85.39719","Opelika","AL","Alabama","TRUE","","25071","135.2","01081","Lee","{""01081"": ""98.76"", ""01017"": ""1.24""}","Lee|Chambers","01081|01017","FALSE","FALSE","America/Chicago"
-"36804","32.53346","-85.34221","Opelika","AL","Alabama","TRUE","","18535","37.1","01081","Lee","{""01081"": ""95.34"", ""01113"": ""3.81"", ""01087"": ""0.85""}","Lee|Russell|Macon","01081|01113|01087","FALSE","FALSE","America/Chicago"
-"36830","32.53888","-85.49206","Auburn","AL","Alabama","TRUE","","39476","152.8","01081","Lee","{""01081"": ""97.78"", ""01087"": ""2.22""}","Lee|Macon","01081|01087","FALSE","FALSE","America/Chicago"
-"36832","32.59621","-85.58195","Auburn","AL","Alabama","TRUE","","24596","134.0","01081","Lee","{""01081"": ""100"", ""01087"": ""0""}","Lee|Macon","01081|01087","FALSE","FALSE","America/Chicago"
-"36849","32.60241","-85.4873","Auburn University","AL","Alabama","TRUE","","4185","4170.4","01081","Lee","{""01081"": ""100""}","Lee","01081","FALSE","FALSE","America/Chicago"
-"36850","32.78588","-85.65686","Camp Hill","AL","Alabama","TRUE","","2612","6.8","01123","Tallapoosa","{""01123"": ""87.22"", ""01017"": ""10.95"", ""01081"": ""1.83""}","Tallapoosa|Chambers|Lee","01123|01017|01081","FALSE","FALSE","America/Chicago"
-"36852","32.75726","-85.29141","Cusseta","AL","Alabama","TRUE","","2744","30.1","01081","Lee","{""01081"": ""81.73"", ""01017"": ""18.27""}","Lee|Chambers","01081|01017","FALSE","FALSE","America/Chicago"
-"36853","32.80723","-85.76792","Dadeville","AL","Alabama","TRUE","","7943","16.9","01123","Tallapoosa","{""01123"": ""100""}","Tallapoosa","01123","FALSE","FALSE","America/Chicago"
-"36854","32.75379","-85.18444","Valley","AL","Alabama","TRUE","","15138","99.3","01017","Chambers","{""01017"": ""82.49"", ""01081"": ""17.51""}","Chambers|Lee","01017|01081","FALSE","FALSE","America/Chicago"
-"36855","33.03163","-85.30253","Five Points","AL","Alabama","TRUE","","1638","8.8","01017","Chambers","{""01017"": ""100""}","Chambers","01017","FALSE","FALSE","America/Chicago"
-"36856","32.27659","-84.99898","Fort Mitchell","AL","Alabama","TRUE","","7811","91.1","01113","Russell","{""01113"": ""100""}","Russell","01113","FALSE","FALSE","America/Chicago"
-"36858","32.31552","-85.32069","Hatchechubbee","AL","Alabama","TRUE","","330","2.3","01113","Russell","{""01113"": ""100""}","Russell","01113","FALSE","FALSE","America/Chicago"
-"36859","32.23258","-85.00448","Holy Trinity","AL","Alabama","TRUE","","16","1.2","01113","Russell","{""01113"": ""100""}","Russell","01113","FALSE","FALSE","America/Chicago"
-"36860","32.25246","-85.41887","Hurtsboro","AL","Alabama","TRUE","","1728","4.4","01113","Russell","{""01113"": ""86.77"", ""01087"": ""11.14"", ""01011"": ""2.09""}","Russell|Macon|Bullock","01113|01087|01011","FALSE","FALSE","America/Chicago"
-"36861","32.88566","-85.83258","Jacksons Gap","AL","Alabama","TRUE","","3013","23.6","01123","Tallapoosa","{""01123"": ""100""}","Tallapoosa","01123","FALSE","FALSE","America/Chicago"
-"36862","32.90442","-85.4418","Lafayette","AL","Alabama","TRUE","","5868","9.5","01017","Chambers","{""01017"": ""100""}","Chambers","01017","FALSE","FALSE","America/Chicago"
-"36863","32.89515","-85.25508","Lanett","AL","Alabama","TRUE","","11847","52.0","01017","Chambers","{""01017"": ""100""}","Chambers","01017","FALSE","FALSE","America/Chicago"
-"36865","32.60285","-85.58996","Loachapoka","AL","Alabama","TRUE","","30","114.9","01081","Lee","{""01081"": ""100""}","Lee","01081","FALSE","FALSE","America/Chicago"
-"36866","32.55437","-85.71545","Notasulga","AL","Alabama","TRUE","","3581","15.5","01087","Macon","{""01087"": ""72.31"", ""01123"": ""22.43"", ""01081"": ""5.26""}","Macon|Tallapoosa|Lee","01087|01123|01081","FALSE","FALSE","America/Chicago"
-"36867","32.49662","-85.02348","Phenix City","AL","Alabama","TRUE","","22239","660.7","01113","Russell","{""01113"": ""80.76"", ""01081"": ""19.24""}","Russell|Lee","01113|01081","FALSE","FALSE","America/Chicago"
-"36869","32.42015","-85.07984","Phenix City","AL","Alabama","TRUE","","20986","108.2","01113","Russell","{""01113"": ""100""}","Russell","01113","FALSE","FALSE","America/Chicago"
-"36870","32.48403","-85.12019","Phenix City","AL","Alabama","TRUE","","19413","308.8","01081","Lee","{""01081"": ""81.78"", ""01113"": ""18.22""}","Lee|Russell","01081|01113","FALSE","FALSE","America/Chicago"
-"36871","32.18103","-85.15228","Pittsview","AL","Alabama","TRUE","","1175","3.1","01113","Russell","{""01113"": ""100""}","Russell","01113","FALSE","FALSE","America/Chicago"
-"36874","32.56557","-85.20573","Salem","AL","Alabama","TRUE","","9973","34.6","01081","Lee","{""01081"": ""92.36"", ""01113"": ""7.64""}","Lee|Russell","01081|01113","FALSE","FALSE","America/Chicago"
-"36875","32.33317","-85.17286","Seale","AL","Alabama","TRUE","","3782","10.4","01113","Russell","{""01113"": ""100""}","Russell","01113","FALSE","FALSE","America/Chicago"
-"36877","32.55869","-85.09875","Smiths Station","AL","Alabama","TRUE","","12848","120.3","01081","Lee","{""01081"": ""100""}","Lee","01081","FALSE","FALSE","America/Chicago"
-"36879","32.72837","-85.55882","Waverly","AL","Alabama","TRUE","","2521","11.1","01081","Lee","{""01081"": ""77.2"", ""01017"": ""20.1"", ""01123"": ""2.7""}","Lee|Chambers|Tallapoosa","01081|01017|01123","FALSE","FALSE","America/Chicago"
-"36901","32.42547","-88.14741","Bellamy","AL","Alabama","TRUE","","369","13.2","01119","Sumter","{""01119"": ""100""}","Sumter","01119","FALSE","FALSE","America/Chicago"
-"36904","32.10202","-88.25861","Butler","AL","Alabama","TRUE","","3734","6.4","01023","Choctaw","{""01023"": ""100""}","Choctaw","01023","FALSE","FALSE","America/Chicago"
-"36907","32.43646","-88.34329","Cuba","AL","Alabama","TRUE","","1597","4.9","01119","Sumter","{""01119"": ""100""}","Sumter","01119","FALSE","FALSE","America/Chicago"
-"36908","31.90115","-88.31018","Gilbertown","AL","Alabama","TRUE","","2176","6.4","01023","Choctaw","{""01023"": ""100""}","Choctaw","01023","FALSE","FALSE","America/Chicago"
-"36910","32.20461","-88.14693","Jachin","AL","Alabama","TRUE","","63","4.3","01023","Choctaw","{""01023"": ""100""}","Choctaw","01023","FALSE","FALSE","America/Chicago"
-"36912","32.23514","-88.3045","Lisman","AL","Alabama","TRUE","","2069","5.7","01023","Choctaw","{""01023"": ""100""}","Choctaw","01023","FALSE","FALSE","America/Chicago"
-"36913","31.96099","-88.4471","Melvin","AL","Alabama","TRUE","","36","1.5","01023","Choctaw","{""01023"": ""100""}","Choctaw","01023","FALSE","FALSE","America/Chicago"
-"36915","31.95507","-88.35871","Needham","AL","Alabama","TRUE","","654","6.8","01023","Choctaw","{""01023"": ""100""}","Choctaw","01023","FALSE","FALSE","America/Chicago"
-"36916","32.20996","-88.05649","Pennington","AL","Alabama","TRUE","","797","10.4","01023","Choctaw","{""01023"": ""100""}","Choctaw","01023","FALSE","FALSE","America/Chicago"
-"36919","31.76628","-88.29301","Silas","AL","Alabama","TRUE","","1652","4.0","01023","Choctaw","{""01023"": ""99.25"", ""01129"": ""0.75""}","Choctaw|Washington","01023|01129","FALSE","FALSE","America/Chicago"
-"36921","31.96815","-88.19167","Toxey","AL","Alabama","TRUE","","771","3.0","01023","Choctaw","{""01023"": ""100""}","Choctaw","01023","FALSE","FALSE","America/Chicago"
-"36922","32.30378","-88.14721","Ward","AL","Alabama","TRUE","","600","2.2","01023","Choctaw","{""01023"": ""73.78"", ""01119"": ""26.22""}","Choctaw|Sumter","01023|01119","FALSE","FALSE","America/Chicago"
-"36925","32.43259","-88.1782","York","AL","Alabama","TRUE","","3001","8.5","01119","Sumter","{""01119"": ""100""}","Sumter","01119","FALSE","FALSE","America/Chicago"
-"37010","36.56763","-87.1088","Adams","TN","Tennessee","TRUE","","4966","24.8","47125","Montgomery","{""47125"": ""63.8"", ""47147"": ""36.2""}","Montgomery|Robertson","47125|47147","FALSE","FALSE","America/Chicago"
-"37012","36.07386","-86.00151","Alexandria","TN","Tennessee","TRUE","","2185","24.2","47041","DeKalb","{""47041"": ""79.23"", ""47159"": ""15.27"", ""47189"": ""5.5""}","DeKalb|Smith|Wilson","47041|47159|47189","FALSE","FALSE","America/Chicago"
-"37013","36.04709","-86.63244","Antioch","TN","Tennessee","TRUE","","97939","941.2","47037","Davidson","{""47037"": ""100""}","Davidson","47037","FALSE","FALSE","America/Chicago"
-"37014","35.86957","-86.65754","Arrington","TN","Tennessee","TRUE","","2835","44.4","47187","Williamson","{""47187"": ""68.03"", ""47149"": ""31.97""}","Williamson|Rutherford","47187|47149","FALSE","FALSE","America/Chicago"
-"37015","36.28416","-87.07721","Ashland City","TN","Tennessee","TRUE","","17665","44.4","47021","Cheatham","{""47021"": ""96.7"", ""47037"": ""2.36"", ""47125"": ""0.93"", ""47043"": ""0.01""}","Cheatham|Davidson|Montgomery|Dickson","47021|47037|47125|47043","FALSE","FALSE","America/Chicago"
-"37016","35.95746","-86.10025","Auburntown","TN","Tennessee","TRUE","","950","13.4","47015","Cannon","{""47015"": ""74.02"", ""47189"": ""25.98""}","Cannon|Wilson","47015|47189","FALSE","FALSE","America/Chicago"
-"37018","35.63864","-86.19707","Beechgrove","TN","Tennessee","TRUE","","2194","18.3","47031","Coffee","{""47031"": ""96.81"", ""47003"": ""3.19""}","Coffee|Bedford","47031|47003","FALSE","FALSE","America/Chicago"
-"37019","35.39228","-86.70979","Belfast","TN","Tennessee","TRUE","","628","14.5","47117","Marshall","{""47117"": ""100""}","Marshall","47117","FALSE","FALSE","America/Chicago"
-"37020","35.62659","-86.40264","Bell Buckle","TN","Tennessee","TRUE","","5984","24.0","47003","Bedford","{""47003"": ""70.51"", ""47149"": ""29.49""}","Bedford|Rutherford","47003|47149","FALSE","FALSE","America/Chicago"
-"37022","36.50014","-86.31075","Bethpage","TN","Tennessee","TRUE","","6583","29.8","47165","Sumner","{""47165"": ""88.88"", ""47169"": ""10.93"", ""47111"": ""0.18""}","Sumner|Trousdale|Macon","47165|47169|47111","FALSE","FALSE","America/Chicago"
-"37023","36.58337","-87.78431","Big Rock","TN","Tennessee","TRUE","","1457","31.0","47161","Stewart","{""47161"": ""100""}","Stewart","47161","FALSE","FALSE","America/Chicago"
-"37025","35.9487","-87.30774","Bon Aqua","TN","Tennessee","TRUE","","5698","36.4","47081","Hickman","{""47081"": ""82.83"", ""47043"": ""16.22"", ""47187"": ""0.95""}","Hickman|Dickson|Williamson","47081|47043|47187","FALSE","FALSE","America/Chicago"
-"37026","35.69649","-86.10563","Bradyville","TN","Tennessee","TRUE","","2380","19.0","47015","Cannon","{""47015"": ""100""}","Cannon","47015","FALSE","FALSE","America/Chicago"
-"37027","35.99939","-86.78396","Brentwood","TN","Tennessee","TRUE","","56117","394.3","47187","Williamson","{""47187"": ""80.47"", ""47037"": ""19.53""}","Williamson|Davidson","47187|47037","FALSE","FALSE","America/Chicago"
-"37028","36.62864","-87.85948","Bumpus Mills","TN","Tennessee","TRUE","","563","13.5","47161","Stewart","{""47161"": ""100""}","Stewart","47161","FALSE","FALSE","America/Chicago"
-"37029","36.04186","-87.26452","Burns","TN","Tennessee","TRUE","","7017","55.2","47043","Dickson","{""47043"": ""100""}","Dickson","47043","FALSE","FALSE","America/Chicago"
-"37030","36.27439","-85.94758","Carthage","TN","Tennessee","TRUE","","7260","44.2","47159","Smith","{""47159"": ""100""}","Smith","47159","FALSE","FALSE","America/Chicago"
-"37031","36.37137","-86.29964","Castalian Springs","TN","Tennessee","TRUE","","4281","41.2","47165","Sumner","{""47165"": ""77.77"", ""47169"": ""22.23""}","Sumner|Trousdale","47165|47169","FALSE","FALSE","America/Chicago"
-"37032","36.52424","-87.01714","Cedar Hill","TN","Tennessee","TRUE","","5275","25.2","47147","Robertson","{""47147"": ""98.46"", ""47021"": ""1.54""}","Robertson|Cheatham","47147|47021","FALSE","FALSE","America/Chicago"
-"37033","35.7343","-87.55114","Centerville","TN","Tennessee","TRUE","","7406","11.3","47081","Hickman","{""47081"": ""100""}","Hickman","47081","FALSE","FALSE","America/Chicago"
-"37034","35.64058","-86.69168","Chapel Hill","TN","Tennessee","TRUE","","7308","39.4","47117","Marshall","{""47117"": ""86.12"", ""47003"": ""13.88""}","Marshall|Bedford","47117|47003","FALSE","FALSE","America/Chicago"
-"37035","36.38335","-87.12718","Chapmansboro","TN","Tennessee","TRUE","","3214","41.2","47021","Cheatham","{""47021"": ""100""}","Cheatham","47021","FALSE","FALSE","America/Chicago"
-"37036","36.23988","-87.27192","Charlotte","TN","Tennessee","TRUE","","6245","24.8","47043","Dickson","{""47043"": ""97.29"", ""47021"": ""2.71""}","Dickson|Cheatham","47043|47021","FALSE","FALSE","America/Chicago"
-"37037","35.70277","-86.3515","Christiana","TN","Tennessee","TRUE","","8768","45.7","47149","Rutherford","{""47149"": ""100""}","Rutherford","47149","FALSE","FALSE","America/Chicago"
-"37040","36.52333","-87.33336","Clarksville","TN","Tennessee","TRUE","","52155","217.9","47125","Montgomery","{""47125"": ""100""}","Montgomery","47125","FALSE","FALSE","America/Chicago"
-"37042","36.56905","-87.41699","Clarksville","TN","Tennessee","TRUE","","77945","493.6","47125","Montgomery","{""47125"": ""100""}","Montgomery","47125","FALSE","FALSE","America/Chicago"
-"37043","36.49577","-87.23242","Clarksville","TN","Tennessee","TRUE","","48501","166.9","47125","Montgomery","{""47125"": ""99.52"", ""47021"": ""0.48""}","Montgomery|Cheatham","47125|47021","FALSE","FALSE","America/Chicago"
-"37046","35.77988","-86.71733","College Grove","TN","Tennessee","TRUE","","5685","31.4","47187","Williamson","{""47187"": ""96.4"", ""47149"": ""1.96"", ""47117"": ""1.64""}","Williamson|Rutherford|Marshall","47187|47149|47117","FALSE","FALSE","America/Chicago"
-"37047","35.31732","-86.8358","Cornersville","TN","Tennessee","TRUE","","2100","13.3","47117","Marshall","{""47117"": ""87.12"", ""47055"": ""11.9"", ""47103"": ""0.98""}","Marshall|Giles|Lincoln","47117|47055|47103","FALSE","FALSE","America/Chicago"
-"37048","36.49131","-86.5959","Cottontown","TN","Tennessee","TRUE","","6702","58.8","47165","Sumner","{""47165"": ""89.8"", ""47147"": ""10.2""}","Sumner|Robertson","47165|47147","FALSE","FALSE","America/Chicago"
-"37049","36.5601","-86.67715","Cross Plains","TN","Tennessee","TRUE","","3622","52.7","47147","Robertson","{""47147"": ""100""}","Robertson","47147","FALSE","FALSE","America/Chicago"
-"37050","36.37286","-87.63061","Cumberland City","TN","Tennessee","TRUE","","1606","12.2","47161","Stewart","{""47161"": ""55.86"", ""47083"": ""27.43"", ""47125"": ""16.72""}","Stewart|Houston|Montgomery","47161|47083|47125","FALSE","FALSE","America/Chicago"
-"37051","36.30428","-87.41023","Cumberland Furnace","TN","Tennessee","TRUE","","3499","17.2","47043","Dickson","{""47043"": ""67.2"", ""47125"": ""31.71"", ""47083"": ""1.09""}","Dickson|Montgomery|Houston","47043|47125|47083","FALSE","FALSE","America/Chicago"
-"37052","36.3735","-87.3988","Cunningham","TN","Tennessee","TRUE","","2487","25.5","47125","Montgomery","{""47125"": ""100""}","Montgomery","47125","FALSE","FALSE","America/Chicago"
-"37055","36.07849","-87.44267","Dickson","TN","Tennessee","TRUE","","27772","52.8","47043","Dickson","{""47043"": ""99.02"", ""47081"": ""0.98""}","Dickson|Hickman","47043|47081","FALSE","FALSE","America/Chicago"
-"37057","36.40324","-86.02839","Dixon Springs","TN","Tennessee","TRUE","","627","7.9","47159","Smith","{""47159"": ""38.01"", ""47111"": ""37.77"", ""47169"": ""24.22""}","Smith|Macon|Trousdale","47159|47111|47169","FALSE","FALSE","America/Chicago"
-"37058","36.47884","-87.87961","Dover","TN","Tennessee","TRUE","","7780","16.7","47161","Stewart","{""47161"": ""100""}","Stewart","47161","FALSE","FALSE","America/Chicago"
-"37059","35.98748","-85.90928","Dowelltown","TN","Tennessee","TRUE","","1090","16.1","47041","DeKalb","{""47041"": ""100""}","DeKalb","47041","FALSE","FALSE","America/Chicago"
-"37060","35.74546","-86.63775","Eagleville","TN","Tennessee","TRUE","","2767","27.8","47149","Rutherford","{""47149"": ""78.03"", ""47003"": ""12.15"", ""47187"": ""9.82""}","Rutherford|Bedford|Williamson","47149|47003|47187","FALSE","FALSE","America/Chicago"
-"37061","36.28313","-87.65522","Erin","TN","Tennessee","TRUE","","4942","19.8","47083","Houston","{""47083"": ""100""}","Houston","47083","FALSE","FALSE","America/Chicago"
-"37062","35.98321","-87.13346","Fairview","TN","Tennessee","TRUE","","12185","68.9","47187","Williamson","{""47187"": ""98.82"", ""47043"": ""1.18""}","Williamson|Dickson","47187|47043","FALSE","FALSE","America/Chicago"
-"37064","35.88756","-86.95881","Franklin","TN","Tennessee","TRUE","","58937","127.4","47187","Williamson","{""47187"": ""99.88"", ""47037"": ""0.12""}","Williamson|Davidson","47187|47037","FALSE","FALSE","America/Chicago"
-"37066","36.39871","-86.45526","Gallatin","TN","Tennessee","TRUE","","51873","174.8","47165","Sumner","{""47165"": ""100""}","Sumner","47165","FALSE","FALSE","America/Chicago"
-"37067","35.91374","-86.77838","Franklin","TN","Tennessee","TRUE","","29543","362.9","47187","Williamson","{""47187"": ""100""}","Williamson","47187","FALSE","FALSE","America/Chicago"
-"37069","35.98848","-86.90478","Franklin","TN","Tennessee","TRUE","","20467","213.7","47187","Williamson","{""47187"": ""100""}","Williamson","47187","FALSE","FALSE","America/Chicago"
-"37072","36.35751","-86.74424","Goodlettsville","TN","Tennessee","TRUE","","31492","156.1","47037","Davidson","{""47037"": ""51.24"", ""47165"": ""38.3"", ""47147"": ""10.46""}","Davidson|Sumner|Robertson","47037|47165|47147","FALSE","FALSE","America/Chicago"
-"37073","36.4279","-86.81408","Greenbrier","TN","Tennessee","TRUE","","14785","112.6","47147","Robertson","{""47147"": ""100""}","Robertson","47147","FALSE","FALSE","America/Chicago"
-"37074","36.41897","-86.14428","Hartsville","TN","Tennessee","TRUE","","9305","35.1","47169","Trousdale","{""47169"": ""86.16"", ""47111"": ""13.84""}","Trousdale|Macon","47169|47111","FALSE","FALSE","America/Chicago"
-"37075","36.33995","-86.60658","Hendersonville","TN","Tennessee","TRUE","","65986","429.0","47165","Sumner","{""47165"": ""100""}","Sumner","47165","FALSE","FALSE","America/Chicago"
-"37076","36.14947","-86.58188","Hermitage","TN","Tennessee","TRUE","","40161","568.0","47037","Davidson","{""47037"": ""97.88"", ""47189"": ""2.12""}","Davidson|Wilson","47037|47189","FALSE","FALSE","America/Chicago"
-"37078","35.92275","-87.76786","Hurricane Mills","TN","Tennessee","TRUE","","380","1.5","47085","Humphreys","{""47085"": ""99.26"", ""47081"": ""0.74""}","Humphreys|Hickman","47085|47081","FALSE","FALSE","America/Chicago"
-"37079","36.48171","-87.65934","Indian Mound","TN","Tennessee","TRUE","","2657","13.3","47161","Stewart","{""47161"": ""80.8"", ""47125"": ""19.2""}","Stewart|Montgomery","47161|47125","FALSE","FALSE","America/Chicago"
-"37080","36.32824","-86.91676","Joelton","TN","Tennessee","TRUE","","7394","58.3","47037","Davidson","{""47037"": ""54.6"", ""47021"": ""45.4""}","Davidson|Cheatham","47037|47021","FALSE","FALSE","America/Chicago"
-"37082","36.09666","-87.11342","Kingston Springs","TN","Tennessee","TRUE","","6073","53.7","47021","Cheatham","{""47021"": ""100""}","Cheatham","47021","FALSE","FALSE","America/Chicago"
-"37083","36.54396","-86.00239","Lafayette","TN","Tennessee","TRUE","","15290","40.2","47111","Macon","{""47111"": ""100""}","Macon","47111","FALSE","FALSE","America/Chicago"
-"37085","35.95483","-86.2805","Lascassas","TN","Tennessee","TRUE","","4856","33.4","47149","Rutherford","{""47149"": ""87.51"", ""47189"": ""12.49""}","Rutherford|Wilson","47149|47189","FALSE","FALSE","America/Chicago"
-"37086","36.0212","-86.55922","La Vergne","TN","Tennessee","TRUE","","34429","511.9","47149","Rutherford","{""47149"": ""100"", ""47037"": ""0""}","Rutherford|Davidson","47149|47037","FALSE","FALSE","America/Chicago"
-"37087","36.27275","-86.27211","Lebanon","TN","Tennessee","TRUE","","48562","112.9","47189","Wilson","{""47189"": ""97.04"", ""47159"": ""2.37"", ""47169"": ""0.59""}","Wilson|Smith|Trousdale","47189|47159|47169","FALSE","FALSE","America/Chicago"
-"37090","36.12506","-86.29667","Lebanon","TN","Tennessee","TRUE","","15266","36.2","47189","Wilson","{""47189"": ""95.16"", ""47159"": ""4.84""}","Wilson|Smith","47189|47159","FALSE","FALSE","America/Chicago"
-"37091","35.48621","-86.76278","Lewisburg","TN","Tennessee","TRUE","","22440","41.8","47117","Marshall","{""47117"": ""96.72"", ""47003"": ""3.04"", ""47119"": ""0.24""}","Marshall|Bedford|Maury","47117|47003|47119","FALSE","FALSE","America/Chicago"
-"37095","35.98204","-85.96215","Liberty","TN","Tennessee","TRUE","","2685","14.1","47041","DeKalb","{""47041"": ""71.74"", ""47015"": ""24.06"", ""47189"": ""4.21""}","DeKalb|Cannon|Wilson","47041|47015|47189","FALSE","FALSE","America/Chicago"
-"37096","35.60376","-87.86553","Linden","TN","Tennessee","TRUE","","5649","7.4","47135","Perry","{""47135"": ""99.8"", ""47181"": ""0.2""}","Perry|Wayne","47135|47181","FALSE","FALSE","America/Chicago"
-"37097","35.76961","-87.82657","Lobelville","TN","Tennessee","TRUE","","2241","8.0","47135","Perry","{""47135"": ""100""}","Perry","47135","FALSE","FALSE","America/Chicago"
-"37098","35.86809","-87.31517","Lyles","TN","Tennessee","TRUE","","6760","43.4","47081","Hickman","{""47081"": ""100""}","Hickman","47081","FALSE","FALSE","America/Chicago"
-"37101","36.06548","-87.635","McEwen","TN","Tennessee","TRUE","","7128","13.8","47085","Humphreys","{""47085"": ""96.37"", ""47083"": ""2.48"", ""47081"": ""1.15""}","Humphreys|Houston|Hickman","47085|47083|47081","FALSE","FALSE","America/Chicago"
-"37110","35.64419","-85.74463","Mcminnville","TN","Tennessee","TRUE","","33483","35.0","47177","Warren","{""47177"": ""98.47"", ""47015"": ""0.77"", ""47061"": ""0.69"", ""47175"": ""0.06""}","Warren|Cannon|Grundy|Van Buren","47177|47015|47061|47175","FALSE","FALSE","America/Chicago"
-"37115","36.2545","-86.69608","Madison","TN","Tennessee","TRUE","","40343","732.3","47037","Davidson","{""47037"": ""100""}","Davidson","47037","FALSE","FALSE","America/Chicago"
-"37118","35.93024","-86.19021","Milton","TN","Tennessee","TRUE","","1234","14.0","47149","Rutherford","{""47149"": ""74.45"", ""47189"": ""22.78"", ""47015"": ""2.77""}","Rutherford|Wilson|Cannon","47149|47189|47015","FALSE","FALSE","America/Chicago"
-"37122","36.1775","-86.4889","Mount Juliet","TN","Tennessee","TRUE","","58323","201.1","47189","Wilson","{""47189"": ""97.68"", ""47149"": ""2.02"", ""47037"": ""0.3""}","Wilson|Rutherford|Davidson","47189|47149|47037","FALSE","FALSE","America/Chicago"
-"37127","35.78119","-86.32774","Murfreesboro","TN","Tennessee","TRUE","","18300","146.1","47149","Rutherford","{""47149"": ""100""}","Rutherford","47149","FALSE","FALSE","America/Chicago"
-"37128","35.79915","-86.47277","Murfreesboro","TN","Tennessee","TRUE","","54317","388.9","47149","Rutherford","{""47149"": ""100""}","Rutherford","47149","FALSE","FALSE","America/Chicago"
-"37129","35.92713","-86.44048","Murfreesboro","TN","Tennessee","TRUE","","60540","286.4","47149","Rutherford","{""47149"": ""100""}","Rutherford","47149","FALSE","FALSE","America/Chicago"
-"37130","35.87897","-86.32911","Murfreesboro","TN","Tennessee","TRUE","","57002","420.4","47149","Rutherford","{""47149"": ""100""}","Rutherford","47149","FALSE","FALSE","America/Chicago"
-"37132","35.84933","-86.36431","Murfreesboro","TN","Tennessee","TRUE","","2383","1811.8","47149","Rutherford","{""47149"": ""100""}","Rutherford","47149","FALSE","FALSE","America/Chicago"
-"37134","36.00132","-87.95077","New Johnsonville","TN","Tennessee","TRUE","","3063","30.3","47085","Humphreys","{""47085"": ""100""}","Humphreys","47085","FALSE","FALSE","America/Chicago"
-"37135","35.93634","-86.66601","Nolensville","TN","Tennessee","TRUE","","14256","146.8","47187","Williamson","{""47187"": ""82.63"", ""47149"": ""11.32"", ""47037"": ""6.05""}","Williamson|Rutherford|Davidson","47187|47149|47037","FALSE","FALSE","America/Chicago"
-"37137","35.87602","-87.50113","Nunnelly","TN","Tennessee","TRUE","","2786","12.7","47081","Hickman","{""47081"": ""100""}","Hickman","47081","FALSE","FALSE","America/Chicago"
-"37138","36.24669","-86.61941","Old Hickory","TN","Tennessee","TRUE","","23784","517.4","47037","Davidson","{""47037"": ""59.91"", ""47189"": ""40.09""}","Davidson|Wilson","47037|47189","FALSE","FALSE","America/Chicago"
-"37140","35.85917","-87.6525","Only","TN","Tennessee","TRUE","","1456","21.6","47081","Hickman","{""47081"": ""100""}","Hickman","47081","FALSE","FALSE","America/Chicago"
-"37141","36.61501","-86.70198","Orlinda","TN","Tennessee","TRUE","","1204","21.9","47147","Robertson","{""47147"": ""100""}","Robertson","47147","FALSE","FALSE","America/Chicago"
-"37142","36.41114","-87.50134","Palmyra","TN","Tennessee","TRUE","","1941","20.5","47125","Montgomery","{""47125"": ""100""}","Montgomery","47125","FALSE","FALSE","America/Chicago"
-"37143","36.12781","-87.03094","Pegram","TN","Tennessee","TRUE","","4167","58.2","47021","Cheatham","{""47021"": ""88.92"", ""47037"": ""11.08""}","Cheatham|Davidson","47021|47037","FALSE","FALSE","America/Chicago"
-"37144","35.30522","-86.66033","Petersburg","TN","Tennessee","TRUE","","3112","9.2","47103","Lincoln","{""47103"": ""59.96"", ""47117"": ""27.48"", ""47003"": ""6.76"", ""47127"": ""4.37"", ""47055"": ""1.44""}","Lincoln|Marshall|Bedford|Moore|Giles","47103|47117|47003|47127|47055","FALSE","FALSE","America/Chicago"
-"37145","36.37944","-85.91221","Pleasant Shade","TN","Tennessee","TRUE","","2223","12.2","47159","Smith","{""47159"": ""82.43"", ""47111"": ""10.15"", ""47087"": ""7.42""}","Smith|Macon|Jackson","47159|47111|47087","FALSE","FALSE","America/Chicago"
-"37146","36.40163","-87.03332","Pleasant View","TN","Tennessee","TRUE","","7615","97.4","47021","Cheatham","{""47021"": ""71.97"", ""47147"": ""28.03""}","Cheatham|Robertson","47021|47147","FALSE","FALSE","America/Chicago"
-"37148","36.57393","-86.50187","Portland","TN","Tennessee","TRUE","","24547","69.3","47165","Sumner","{""47165"": ""96.49"", ""47147"": ""3.51""}","Sumner|Robertson","47165|47147","FALSE","FALSE","America/Chicago"
-"37149","35.80403","-86.19282","Readyville","TN","Tennessee","TRUE","","2780","16.4","47015","Cannon","{""47015"": ""50.81"", ""47149"": ""49.19""}","Cannon|Rutherford","47015|47149","FALSE","FALSE","America/Chicago"
-"37150","36.54102","-85.8135","Red Boiling Springs","TN","Tennessee","TRUE","","4897","17.7","47111","Macon","{""47111"": ""69.96"", ""47027"": ""30.04""}","Macon|Clay","47111|47027","FALSE","FALSE","America/Chicago"
-"37151","36.31758","-86.0399","Riddleton","TN","Tennessee","TRUE","","511","11.0","47159","Smith","{""47159"": ""100""}","Smith","47159","FALSE","FALSE","America/Chicago"
-"37153","35.76385","-86.55397","Rockvale","TN","Tennessee","TRUE","","6426","43.0","47149","Rutherford","{""47149"": ""95.53"", ""47003"": ""4.47""}","Rutherford|Bedford","47149|47003","FALSE","FALSE","America/Chicago"
-"37160","35.46396","-86.48382","Shelbyville","TN","Tennessee","TRUE","","34339","57.8","47003","Bedford","{""47003"": ""99.22"", ""47127"": ""0.78""}","Bedford|Moore","47003|47127","FALSE","FALSE","America/Chicago"
-"37165","36.29213","-87.47016","Slayden","TN","Tennessee","TRUE","","39","59.5","47043","Dickson","{""47043"": ""100""}","Dickson","47043","FALSE","FALSE","America/Chicago"
-"37166","35.92461","-85.78929","Smithville","TN","Tennessee","TRUE","","14136","35.3","47041","DeKalb","{""47041"": ""94.03"", ""47177"": ""5.11"", ""47015"": ""0.86""}","DeKalb|Warren|Cannon","47041|47177|47015","FALSE","FALSE","America/Chicago"
-"37167","35.95857","-86.53269","Smyrna","TN","Tennessee","TRUE","","59514","399.3","47149","Rutherford","{""47149"": ""100""}","Rutherford","47149","FALSE","FALSE","America/Chicago"
-"37171","36.36655","-87.29988","Southside","TN","Tennessee","TRUE","","811","14.5","47125","Montgomery","{""47125"": ""100""}","Montgomery","47125","FALSE","FALSE","America/Chicago"
-"37172","36.53551","-86.861","Springfield","TN","Tennessee","TRUE","","30468","65.0","47147","Robertson","{""47147"": ""100""}","Robertson","47147","FALSE","FALSE","America/Chicago"
-"37174","35.72177","-86.89988","Spring Hill","TN","Tennessee","TRUE","","37004","208.3","47187","Williamson","{""47187"": ""55.97"", ""47119"": ""44.03""}","Williamson|Maury","47187|47119","FALSE","FALSE","America/Chicago"
-"37175","36.32711","-87.89722","Stewart","TN","Tennessee","TRUE","","774","3.9","47083","Houston","{""47083"": ""62.17"", ""47161"": ""37.83""}","Houston|Stewart","47083|47161","FALSE","FALSE","America/Chicago"
-"37178","36.32318","-87.78422","Tennessee Ridge","TN","Tennessee","TRUE","","2003","17.1","47083","Houston","{""47083"": ""83.9"", ""47161"": ""16.1""}","Houston|Stewart","47083|47161","FALSE","FALSE","America/Chicago"
-"37179","35.81157","-86.92773","Thompsons Station","TN","Tennessee","TRUE","","15445","111.6","47187","Williamson","{""47187"": ""100""}","Williamson","47187","FALSE","FALSE","America/Chicago"
-"37180","35.61158","-86.58122","Unionville","TN","Tennessee","TRUE","","4362","53.2","47003","Bedford","{""47003"": ""100""}","Bedford","47003","FALSE","FALSE","America/Chicago"
-"37181","36.24481","-87.48181","Vanleer","TN","Tennessee","TRUE","","1707","14.0","47043","Dickson","{""47043"": ""87.87"", ""47083"": ""12.13""}","Dickson|Houston","47043|47083","FALSE","FALSE","America/Chicago"
-"37183","35.50287","-86.3089","Wartrace","TN","Tennessee","TRUE","","2988","14.5","47003","Bedford","{""47003"": ""84.92"", ""47031"": ""7.99"", ""47127"": ""7.09""}","Bedford|Coffee|Moore","47003|47031|47127","FALSE","FALSE","America/Chicago"
-"37184","36.08245","-86.14409","Watertown","TN","Tennessee","TRUE","","6195","20.4","47189","Wilson","{""47189"": ""95"", ""47159"": ""5""}","Wilson|Smith","47189|47159","FALSE","FALSE","America/Chicago"
-"37185","36.0697","-87.83801","Waverly","TN","Tennessee","TRUE","","8275","13.8","47085","Humphreys","{""47085"": ""99.78"", ""47083"": ""0.22""}","Humphreys|Houston","47085|47083","FALSE","FALSE","America/Chicago"
-"37186","36.58703","-86.23011","Westmoreland","TN","Tennessee","TRUE","","10038","36.9","47165","Sumner","{""47165"": ""62.9"", ""47111"": ""37.1""}","Sumner|Macon","47165|47111","FALSE","FALSE","America/Chicago"
-"37187","36.14706","-87.19956","White Bluff","TN","Tennessee","TRUE","","7349","39.4","47043","Dickson","{""47043"": ""95.9"", ""47021"": ""4.1""}","Dickson|Cheatham","47043|47021","FALSE","FALSE","America/Chicago"
-"37188","36.48024","-86.68133","White House","TN","Tennessee","TRUE","","15431","197.8","47147","Robertson","{""47147"": ""51.75"", ""47165"": ""48.25""}","Robertson|Sumner","47147|47165","FALSE","FALSE","America/Chicago"
-"37189","36.28034","-86.82828","Whites Creek","TN","Tennessee","TRUE","","4016","60.6","47037","Davidson","{""47037"": ""100""}","Davidson","47037","FALSE","FALSE","America/Chicago"
-"37190","35.82913","-86.03992","Woodbury","TN","Tennessee","TRUE","","8465","22.3","47015","Cannon","{""47015"": ""98.99"", ""47177"": ""1.01""}","Cannon|Warren","47015|47177","FALSE","FALSE","America/Chicago"
-"37191","36.49963","-87.53127","Woodlawn","TN","Tennessee","TRUE","","4286","39.9","47125","Montgomery","{""47125"": ""100""}","Montgomery","47125","FALSE","FALSE","America/Chicago"
-"37201","36.16618","-86.77756","Nashville","TN","Tennessee","TRUE","","1619","2045.1","47037","Davidson","{""47037"": ""100""}","Davidson","47037","FALSE","FALSE","America/Chicago"
-"37203","36.14934","-86.79033","Nashville","TN","Tennessee","TRUE","","15091","1389.2","47037","Davidson","{""47037"": ""100""}","Davidson","47037","FALSE","FALSE","America/Chicago"
-"37204","36.10674","-86.77425","Nashville","TN","Tennessee","TRUE","","15452","806.3","47037","Davidson","{""47037"": ""100""}","Davidson","47037","FALSE","FALSE","America/Chicago"
-"37205","36.11121","-86.87256","Nashville","TN","Tennessee","TRUE","","23790","632.7","47037","Davidson","{""47037"": ""100""}","Davidson","47037","FALSE","FALSE","America/Chicago"
-"37206","36.18096","-86.73105","Nashville","TN","Tennessee","TRUE","","26382","1318.7","47037","Davidson","{""47037"": ""100""}","Davidson","47037","FALSE","FALSE","America/Chicago"
-"37207","36.23282","-86.77655","Nashville","TN","Tennessee","TRUE","","39544","803.2","47037","Davidson","{""47037"": ""100""}","Davidson","47037","FALSE","FALSE","America/Chicago"
-"37208","36.17769","-86.80786","Nashville","TN","Tennessee","TRUE","","18011","1506.5","47037","Davidson","{""47037"": ""100""}","Davidson","47037","FALSE","FALSE","America/Chicago"
-"37209","36.15547","-86.92156","Nashville","TN","Tennessee","TRUE","","38664","410.7","47037","Davidson","{""47037"": ""100""}","Davidson","47037","FALSE","FALSE","America/Chicago"
-"37210","36.14432","-86.73367","Nashville","TN","Tennessee","TRUE","","17248","720.3","47037","Davidson","{""47037"": ""100""}","Davidson","47037","FALSE","FALSE","America/Chicago"
-"37211","36.06717","-86.7237","Nashville","TN","Tennessee","TRUE","","75955","1371.7","47037","Davidson","{""47037"": ""100""}","Davidson","47037","FALSE","FALSE","America/Chicago"
-"37212","36.13386","-86.80117","Nashville","TN","Tennessee","TRUE","","20803","2895.9","47037","Davidson","{""47037"": ""100""}","Davidson","47037","FALSE","FALSE","America/Chicago"
-"37213","36.16628","-86.76694","Nashville","TN","Tennessee","TRUE","","95","50.7","47037","Davidson","{""47037"": ""100""}","Davidson","47037","FALSE","FALSE","America/Chicago"
-"37214","36.16308","-86.6651","Nashville","TN","Tennessee","TRUE","","30528","469.2","47037","Davidson","{""47037"": ""100""}","Davidson","47037","FALSE","FALSE","America/Chicago"
-"37215","36.08192","-86.83469","Nashville","TN","Tennessee","TRUE","","22379","553.3","47037","Davidson","{""47037"": ""99.71"", ""47187"": ""0.29""}","Davidson|Williamson","47037|47187","FALSE","FALSE","America/Chicago"
-"37216","36.21609","-86.72645","Nashville","TN","Tennessee","TRUE","","17848","1020.6","47037","Davidson","{""47037"": ""100""}","Davidson","47037","FALSE","FALSE","America/Chicago"
-"37217","36.10517","-86.65907","Nashville","TN","Tennessee","TRUE","","30146","806.7","47037","Davidson","{""47037"": ""100""}","Davidson","47037","FALSE","FALSE","America/Chicago"
-"37218","36.20696","-86.89257","Nashville","TN","Tennessee","TRUE","","15721","154.0","47037","Davidson","{""47037"": ""100""}","Davidson","47037","FALSE","FALSE","America/Chicago"
-"37219","36.16697","-86.78319","Nashville","TN","Tennessee","TRUE","","1154","2097.2","47037","Davidson","{""47037"": ""100""}","Davidson","47037","FALSE","FALSE","America/Chicago"
-"37220","36.06728","-86.78088","Nashville","TN","Tennessee","TRUE","","5880","305.0","47037","Davidson","{""47037"": ""100""}","Davidson","47037","FALSE","FALSE","America/Chicago"
-"37221","36.05561","-86.9734","Nashville","TN","Tennessee","TRUE","","41017","306.5","47037","Davidson","{""47037"": ""94.22"", ""47187"": ""5.78""}","Davidson|Williamson","47037|47187","FALSE","FALSE","America/Chicago"
-"37228","36.19498","-86.80403","Nashville","TN","Tennessee","TRUE","","1615","422.2","47037","Davidson","{""47037"": ""100""}","Davidson","47037","FALSE","FALSE","America/Chicago"
-"37240","36.14489","-86.80548","Nashville","TN","Tennessee","TRUE","","796","18898.8","47037","Davidson","{""47037"": ""100""}","Davidson","47037","FALSE","FALSE","America/Chicago"
-"37243","36.16503","-86.782","Nashville","TN","Tennessee","TRUE","","0","0.0","47037","Davidson","{""47037"": ""0""}","Davidson","47037","FALSE","FALSE","America/Chicago"
-"37246","36.15986","-86.79143","Nashville","TN","Tennessee","TRUE","","0","0.0","47037","Davidson","{""47037"": ""0""}","Davidson","47037","FALSE","FALSE","America/Chicago"
-"37301","35.41971","-85.79526","Altamont","TN","Tennessee","TRUE","","1156","8.3","47061","Grundy","{""47061"": ""100""}","Grundy","47061","FALSE","FALSE","America/Chicago"
-"37302","35.01323","-85.01622","Apison","TN","Tennessee","TRUE","","4669","110.0","47065","Hamilton","{""47065"": ""100""}","Hamilton","47065","FALSE","FALSE","America/New_York"
-"37303","35.4407","-84.64319","Athens","TN","Tennessee","TRUE","","24866","64.3","47107","McMinn","{""47107"": ""100""}","McMinn","47107","FALSE","FALSE","America/New_York"
-"37305","35.46518","-85.69423","Beersheba Springs","TN","Tennessee","TRUE","","972","18.9","47061","Grundy","{""47061"": ""100""}","Grundy","47061","FALSE","FALSE","America/Chicago"
-"37306","35.09863","-86.18923","Belvidere","TN","Tennessee","TRUE","","2153","7.0","47051","Franklin","{""47051"": ""96.67"", ""47127"": ""3.33""}","Franklin|Moore","47051|47127","FALSE","FALSE","America/Chicago"
-"37307","35.16905","-84.6258","Benton","TN","Tennessee","TRUE","","4773","35.6","47139","Polk","{""47139"": ""100""}","Polk","47139","FALSE","FALSE","America/New_York"
-"37308","35.3483","-84.9962","Birchwood","TN","Tennessee","TRUE","","2721","28.7","47065","Hamilton","{""47065"": ""68.72"", ""47121"": ""31.28""}","Hamilton|Meigs","47065|47121","FALSE","FALSE","America/New_York"
-"37309","35.30336","-84.73759","Calhoun","TN","Tennessee","TRUE","","2493","25.4","47107","McMinn","{""47107"": ""86.76"", ""47139"": ""13.24""}","McMinn|Polk","47107|47139","FALSE","FALSE","America/New_York"
-"37310","35.26387","-84.78005","Charleston","TN","Tennessee","TRUE","","4356","39.9","47011","Bradley","{""47011"": ""93.23"", ""47139"": ""6.77""}","Bradley|Polk","47011|47139","FALSE","FALSE","America/New_York"
-"37311","35.11286","-84.92865","Cleveland","TN","Tennessee","TRUE","","28187","201.8","47011","Bradley","{""47011"": ""99.57"", ""47065"": ""0.43""}","Bradley|Hamilton","47011|47065","FALSE","FALSE","America/New_York"
-"37312","35.22985","-84.87066","Cleveland","TN","Tennessee","TRUE","","35065","226.4","47011","Bradley","{""47011"": ""100""}","Bradley","47011","FALSE","FALSE","America/New_York"
-"37313","35.36125","-85.71265","Coalmont","TN","Tennessee","TRUE","","1550","17.6","47061","Grundy","{""47061"": ""100""}","Grundy","47061","FALSE","FALSE","America/Chicago"
-"37315","35.04812","-85.0517","Collegedale","TN","Tennessee","TRUE","","1596","5358.2","47065","Hamilton","{""47065"": ""100""}","Hamilton","47065","FALSE","FALSE","America/New_York"
-"37317","35.03146","-84.44343","Copperhill","TN","Tennessee","TRUE","","2546","13.1","47139","Polk","{""47139"": ""100""}","Polk","47139","FALSE","FALSE","America/New_York"
-"37318","35.17787","-85.9926","Cowan","TN","Tennessee","TRUE","","1536","49.4","47051","Franklin","{""47051"": ""100""}","Franklin","47051","FALSE","FALSE","America/Chicago"
-"37321","35.50222","-85.00767","Dayton","TN","Tennessee","TRUE","","19464","66.5","47143","Rhea","{""47143"": ""99.08"", ""47007"": ""0.92""}","Rhea|Bledsoe","47143|47007","FALSE","FALSE","America/New_York"
-"37322","35.49567","-84.81601","Decatur","TN","Tennessee","TRUE","","8608","25.1","47121","Meigs","{""47121"": ""92.57"", ""47107"": ""7.43""}","Meigs|McMinn","47121|47107","FALSE","FALSE","America/New_York"
-"37323","35.09721","-84.82058","Cleveland","TN","Tennessee","TRUE","","31385","101.4","47011","Bradley","{""47011"": ""99.92"", ""47139"": ""0.08""}","Bradley|Polk","47011|47139","FALSE","FALSE","America/New_York"
-"37324","35.25512","-85.99133","Decherd","TN","Tennessee","TRUE","","5618","30.1","47051","Franklin","{""47051"": ""97.82"", ""47061"": ""2.18""}","Franklin|Grundy","47051|47061","FALSE","FALSE","America/Chicago"
-"37325","35.24957","-84.59176","Delano","TN","Tennessee","TRUE","","1805","25.1","47139","Polk","{""47139"": ""86.67"", ""47107"": ""13.33""}","Polk|McMinn","47139|47107","FALSE","FALSE","America/New_York"
-"37326","35.04003","-84.38463","Ducktown","TN","Tennessee","TRUE","","462","91.3","47139","Polk","{""47139"": ""100""}","Polk","47139","FALSE","FALSE","America/New_York"
-"37327","35.42277","-85.40585","Dunlap","TN","Tennessee","TRUE","","11777","22.5","47153","Sequatchie","{""47153"": ""92.23"", ""47007"": ""7.77""}","Sequatchie|Bledsoe","47153|47007","FALSE","FALSE","America/Chicago"
-"37328","35.02721","-86.36666","Elora","TN","Tennessee","TRUE","","1481","19.0","47103","Lincoln","{""47103"": ""89.81"", ""47051"": ""10.19""}","Lincoln|Franklin","47103|47051","FALSE","FALSE","America/Chicago"
-"37329","35.39437","-84.46102","Englewood","TN","Tennessee","TRUE","","5651","37.7","47107","McMinn","{""47107"": ""93.63"", ""47123"": ""6.37""}","McMinn|Monroe","47107|47123","FALSE","FALSE","America/New_York"
-"37330","35.28183","-86.12986","Estill Springs","TN","Tennessee","TRUE","","6451","69.1","47051","Franklin","{""47051"": ""93.91"", ""47031"": ""6.09""}","Franklin|Coffee","47051|47031","FALSE","FALSE","America/Chicago"
-"37331","35.31936","-84.53023","Etowah","TN","Tennessee","TRUE","","7261","67.4","47107","McMinn","{""47107"": ""100""}","McMinn","47107","FALSE","FALSE","America/New_York"
-"37332","35.59543","-84.97315","Evensville","TN","Tennessee","TRUE","","2783","16.5","47143","Rhea","{""47143"": ""98.97"", ""47007"": ""1.03""}","Rhea|Bledsoe","47143|47007","FALSE","FALSE","America/New_York"
-"37333","35.15379","-84.33545","Farner","TN","Tennessee","TRUE","","580","19.6","47139","Polk","{""47139"": ""100""}","Polk","47139","FALSE","FALSE","America/New_York"
-"37334","35.16682","-86.5811","Fayetteville","TN","Tennessee","TRUE","","22909","34.8","47103","Lincoln","{""47103"": ""97.95"", ""47127"": ""1.86"", ""47003"": ""0.18""}","Lincoln|Moore|Bedford","47103|47127|47003","FALSE","FALSE","America/Chicago"
-"37335","35.06482","-86.40464","Flintville","TN","Tennessee","TRUE","","2719","22.5","47103","Lincoln","{""47103"": ""99.14"", ""47051"": ""0.86""}","Lincoln|Franklin","47103|47051","FALSE","FALSE","America/Chicago"
-"37336","35.30247","-84.93327","Georgetown","TN","Tennessee","TRUE","","4639","41.3","47011","Bradley","{""47011"": ""39.1"", ""47065"": ""32.27"", ""47121"": ""28.63""}","Bradley|Hamilton|Meigs","47011|47065|47121","FALSE","FALSE","America/New_York"
-"37337","35.78338","-84.87054","Grandview","TN","Tennessee","TRUE","","1443","8.9","47143","Rhea","{""47143"": ""59.52"", ""47035"": ""39.39"", ""47007"": ""1.09""}","Rhea|Cumberland|Bledsoe","47143|47035|47007","FALSE","FALSE","America/Chicago"
-"37338","35.42077","-85.21405","Graysville","TN","Tennessee","TRUE","","3436","17.6","47143","Rhea","{""47143"": ""47.69"", ""47007"": ""27.29"", ""47153"": ""23.57"", ""47065"": ""1.45""}","Rhea|Bledsoe|Sequatchie|Hamilton","47143|47007|47153|47065","FALSE","FALSE","America/Chicago"
-"37339","35.37992","-85.63424","Gruetli Laager","TN","Tennessee","TRUE","","2565","28.2","47061","Grundy","{""47061"": ""100""}","Grundy","47061","FALSE","FALSE","America/Chicago"
-"37340","35.0317","-85.52315","Guild","TN","Tennessee","TRUE","","655","20.4","47115","Marion","{""47115"": ""100""}","Marion","47115","FALSE","FALSE","America/Chicago"
-"37341","35.21551","-85.08404","Harrison","TN","Tennessee","TRUE","","11663","143.5","47065","Hamilton","{""47065"": ""100""}","Hamilton","47065","FALSE","FALSE","America/New_York"
-"37342","35.38825","-85.94763","Hillsboro","TN","Tennessee","TRUE","","4137","20.7","47031","Coffee","{""47031"": ""100""}","Coffee","47031","FALSE","FALSE","America/Chicago"
-"37343","35.16884","-85.20915","Hixson","TN","Tennessee","TRUE","","42726","392.2","47065","Hamilton","{""47065"": ""100""}","Hamilton","47065","FALSE","FALSE","America/New_York"
-"37345","35.03681","-86.24032","Huntland","TN","Tennessee","TRUE","","2587","17.4","47051","Franklin","{""47051"": ""100""}","Franklin","47051","FALSE","FALSE","America/Chicago"
-"37347","35.06113","-85.61895","Jasper","TN","Tennessee","TRUE","","8107","64.6","47115","Marion","{""47115"": ""100""}","Marion","47115","FALSE","FALSE","America/Chicago"
-"37348","35.12594","-86.4373","Kelso","TN","Tennessee","TRUE","","951","10.2","47103","Lincoln","{""47103"": ""100""}","Lincoln","47103","FALSE","FALSE","America/Chicago"
-"37350","34.99383","-85.35021","Lookout Mountain","TN","Tennessee","TRUE","","1965","523.2","47065","Hamilton","{""47065"": ""100""}","Hamilton","47065","FALSE","FALSE","America/New_York"
-"37351","35.10096","-85.2615","Lupton City","TN","Tennessee","TRUE","","283","238.7","47065","Hamilton","{""47065"": ""100""}","Hamilton","47065","FALSE","FALSE","America/New_York"
-"37352","35.28091","-86.35526","Lynchburg","TN","Tennessee","TRUE","","3383","26.3","47127","Moore","{""47127"": ""100""}","Moore","47127","FALSE","FALSE","America/Chicago"
-"37353","35.11867","-84.98667","McDonald","TN","Tennessee","TRUE","","5195","54.4","47011","Bradley","{""47011"": ""85.24"", ""47065"": ""14.76""}","Bradley|Hamilton","47011|47065","FALSE","FALSE","America/New_York"
-"37354","35.50011","-84.34843","Madisonville","TN","Tennessee","TRUE","","17573","58.8","47123","Monroe","{""47123"": ""99.25"", ""47107"": ""0.75""}","Monroe|McMinn","47123|47107","FALSE","FALSE","America/New_York"
-"37355","35.50099","-86.08476","Manchester","TN","Tennessee","TRUE","","27076","48.1","47031","Coffee","{""47031"": ""100""}","Coffee","47031","FALSE","FALSE","America/Chicago"
-"37356","35.22901","-85.82423","Monteagle","TN","Tennessee","TRUE","","2507","40.0","47061","Grundy","{""47061"": ""63.23"", ""47115"": ""36.77""}","Grundy|Marion","47061|47115","FALSE","FALSE","America/Chicago"
-"37357","35.58607","-85.91716","Morrison","TN","Tennessee","TRUE","","5139","14.1","47177","Warren","{""47177"": ""66"", ""47031"": ""22.97"", ""47015"": ""6.24"", ""47061"": ""4.79""}","Warren|Coffee|Cannon|Grundy","47177|47031|47015|47061","FALSE","FALSE","America/Chicago"
-"37359","35.2042","-86.41289","Mulberry","TN","Tennessee","TRUE","","1016","10.9","47103","Lincoln","{""47103"": ""64.37"", ""47127"": ""35.63""}","Lincoln|Moore","47103|47127","FALSE","FALSE","America/Chicago"
-"37360","35.44056","-86.25495","Normandy","TN","Tennessee","TRUE","","1577","21.8","47031","Coffee","{""47031"": ""48.61"", ""47003"": ""41.22"", ""47127"": ""10.16""}","Coffee|Bedford|Moore","47031|47003|47127","FALSE","FALSE","America/Chicago"
-"37361","35.09882","-84.68632","Ocoee","TN","Tennessee","TRUE","","1536","32.3","47139","Polk","{""47139"": ""100""}","Polk","47139","FALSE","FALSE","America/New_York"
-"37362","35.03518","-84.68734","Old Fort","TN","Tennessee","TRUE","","3433","17.5","47139","Polk","{""47139"": ""70.99"", ""47011"": ""29.01""}","Polk|Bradley","47139|47011","FALSE","FALSE","America/New_York"
-"37363","35.11406","-85.06431","Ooltewah","TN","Tennessee","TRUE","","39941","209.8","47065","Hamilton","{""47065"": ""100""}","Hamilton","47065","FALSE","FALSE","America/New_York"
-"37365","35.38231","-85.56122","Palmer","TN","Tennessee","TRUE","","1227","10.5","47061","Grundy","{""47061"": ""99.62"", ""47153"": ""0.38""}","Grundy|Sequatchie","47061|47153","FALSE","FALSE","America/Chicago"
-"37366","35.32119","-85.83808","Pelham","TN","Tennessee","TRUE","","976","8.4","47061","Grundy","{""47061"": ""100""}","Grundy","47061","FALSE","FALSE","America/Chicago"
-"37367","35.63171","-85.2266","Pikeville","TN","Tennessee","TRUE","","12199","15.2","47007","Bledsoe","{""47007"": ""94.21"", ""47175"": ""5.33"", ""47035"": ""0.46""}","Bledsoe|Van Buren|Cumberland","47007|47175|47035","FALSE","FALSE","America/Chicago"
-"37369","35.19207","-84.47983","Reliance","TN","Tennessee","TRUE","","642","2.2","47139","Polk","{""47139"": ""92.05"", ""47123"": ""7.95""}","Polk|Monroe","47139|47123","FALSE","FALSE","America/New_York"
-"37370","35.36","-84.70294","Riceville","TN","Tennessee","TRUE","","4972","30.4","47107","McMinn","{""47107"": ""100""}","McMinn","47107","FALSE","FALSE","America/New_York"
-"37373","35.398","-85.10278","Sale Creek","TN","Tennessee","TRUE","","3044","28.4","47065","Hamilton","{""47065"": ""100""}","Hamilton","47065","FALSE","FALSE","America/New_York"
-"37374","35.18911","-85.6565","Sequatchie","TN","Tennessee","TRUE","","2071","9.9","47115","Marion","{""47115"": ""100""}","Marion","47115","FALSE","FALSE","America/Chicago"
-"37375","35.15429","-85.89178","Sewanee","TN","Tennessee","TRUE","","4100","24.1","47051","Franklin","{""47051"": ""90.81"", ""47115"": ""9.19""}","Franklin|Marion","47051|47115","FALSE","FALSE","America/Chicago"
-"37376","35.04786","-85.9559","Sherwood","TN","Tennessee","TRUE","","283","1.3","47051","Franklin","{""47051"": ""100""}","Franklin","47051","FALSE","FALSE","America/Chicago"
-"37377","35.20885","-85.33527","Signal Mountain","TN","Tennessee","TRUE","","15960","82.6","47065","Hamilton","{""47065"": ""90.12"", ""47153"": ""9.88""}","Hamilton|Sequatchie","47065|47153","FALSE","FALSE","America/Chicago"
-"37379","35.29449","-85.17352","Soddy Daisy","TN","Tennessee","TRUE","","27416","100.2","47065","Hamilton","{""47065"": ""98.16"", ""47007"": ""0.93"", ""47153"": ""0.91""}","Hamilton|Bledsoe|Sequatchie","47065|47007|47153","FALSE","FALSE","America/New_York"
-"37380","35.07588","-85.75437","South Pittsburg","TN","Tennessee","TRUE","","6261","18.5","47115","Marion","{""47115"": ""100""}","Marion","47115","FALSE","FALSE","America/Chicago"
-"37381","35.68138","-84.87675","Spring City","TN","Tennessee","TRUE","","9478","26.3","47143","Rhea","{""47143"": ""89.66"", ""47007"": ""10.34""}","Rhea|Bledsoe","47143|47007","FALSE","FALSE","America/New_York"
-"37385","35.3312","-84.24295","Tellico Plains","TN","Tennessee","TRUE","","8485","13.3","47123","Monroe","{""47123"": ""100""}","Monroe","47123","FALSE","FALSE","America/New_York"
-"37387","35.27334","-85.74694","Tracy City","TN","Tennessee","TRUE","","2883","30.5","47061","Grundy","{""47061"": ""100""}","Grundy","47061","FALSE","FALSE","America/Chicago"
-"37388","35.34685","-86.21998","Tullahoma","TN","Tennessee","TRUE","","25367","105.8","47031","Coffee","{""47031"": ""76.1"", ""47051"": ""17.71"", ""47127"": ""5.69"", ""47003"": ""0.5""}","Coffee|Franklin|Moore|Bedford","47031|47051|47127|47003","FALSE","FALSE","America/Chicago"
-"37391","35.0894","-84.35294","Turtletown","TN","Tennessee","TRUE","","1495","22.5","47139","Polk","{""47139"": ""100""}","Polk","47139","FALSE","FALSE","America/New_York"
-"37394","35.53954","-85.86004","Viola","TN","Tennessee","TRUE","","86","285.6","47177","Warren","{""47177"": ""100""}","Warren","47177","FALSE","FALSE","America/Chicago"
-"37396","35.00591","-85.49979","Whiteside","TN","Tennessee","TRUE","","244","24.1","47115","Marion","{""47115"": ""100""}","Marion","47115","FALSE","FALSE","America/New_York"
-"37397","35.21755","-85.51563","Whitwell","TN","Tennessee","TRUE","","9605","22.7","47115","Marion","{""47115"": ""87"", ""47153"": ""13""}","Marion|Sequatchie","47115|47153","FALSE","FALSE","America/Chicago"
-"37398","35.18375","-86.13986","Winchester","TN","Tennessee","TRUE","","15125","55.6","47051","Franklin","{""47051"": ""99.18"", ""47127"": ""0.82""}","Franklin|Moore","47051|47127","FALSE","FALSE","America/Chicago"
-"37402","35.04357","-85.3184","Chattanooga","TN","Tennessee","TRUE","","4247","1082.6","47065","Hamilton","{""47065"": ""100""}","Hamilton","47065","FALSE","FALSE","America/New_York"
-"37403","35.04774","-85.29452","Chattanooga","TN","Tennessee","TRUE","","7470","1684.7","47065","Hamilton","{""47065"": ""100""}","Hamilton","47065","FALSE","FALSE","America/New_York"
-"37404","35.02794","-85.27369","Chattanooga","TN","Tennessee","TRUE","","12136","950.9","47065","Hamilton","{""47065"": ""100""}","Hamilton","47065","FALSE","FALSE","America/New_York"
-"37405","35.12144","-85.40589","Chattanooga","TN","Tennessee","TRUE","","17091","118.8","47065","Hamilton","{""47065"": ""93.4"", ""47115"": ""6.6""}","Hamilton|Marion","47065|47115","FALSE","FALSE","America/Chicago"
-"37406","35.07224","-85.24555","Chattanooga","TN","Tennessee","TRUE","","14058","442.8","47065","Hamilton","{""47065"": ""100""}","Hamilton","47065","FALSE","FALSE","America/New_York"
-"37407","35.00206","-85.28961","Chattanooga","TN","Tennessee","TRUE","","11039","1217.9","47065","Hamilton","{""47065"": ""100""}","Hamilton","47065","FALSE","FALSE","America/New_York"
-"37408","35.02868","-85.30849","Chattanooga","TN","Tennessee","TRUE","","1722","346.9","47065","Hamilton","{""47065"": ""100""}","Hamilton","47065","FALSE","FALSE","America/New_York"
-"37409","35.00197","-85.34466","Chattanooga","TN","Tennessee","TRUE","","2722","239.3","47065","Hamilton","{""47065"": ""100""}","Hamilton","47065","FALSE","FALSE","America/New_York"
-"37410","35.00209","-85.31377","Chattanooga","TN","Tennessee","TRUE","","3693","483.8","47065","Hamilton","{""47065"": ""100""}","Hamilton","47065","FALSE","FALSE","America/New_York"
-"37411","35.02876","-85.22618","Chattanooga","TN","Tennessee","TRUE","","16987","756.4","47065","Hamilton","{""47065"": ""100""}","Hamilton","47065","FALSE","FALSE","America/New_York"
-"37412","34.99752","-85.22748","Chattanooga","TN","Tennessee","TRUE","","21209","937.3","47065","Hamilton","{""47065"": ""100""}","Hamilton","47065","FALSE","FALSE","America/New_York"
-"37415","35.12733","-85.28017","Chattanooga","TN","Tennessee","TRUE","","24028","510.3","47065","Hamilton","{""47065"": ""100""}","Hamilton","47065","FALSE","FALSE","America/New_York"
-"37416","35.10444","-85.17662","Chattanooga","TN","Tennessee","TRUE","","15239","517.6","47065","Hamilton","{""47065"": ""100""}","Hamilton","47065","FALSE","FALSE","America/New_York"
-"37419","35.03832","-85.40818","Chattanooga","TN","Tennessee","TRUE","","6772","58.5","47065","Hamilton","{""47065"": ""92.62"", ""47115"": ""7.38""}","Hamilton|Marion","47065|47115","FALSE","FALSE","America/New_York"
-"37421","35.0289","-85.15095","Chattanooga","TN","Tennessee","TRUE","","52254","664.0","47065","Hamilton","{""47065"": ""100""}","Hamilton","47065","FALSE","FALSE","America/New_York"
-"37601","36.33029","-82.32145","Johnson City","TN","Tennessee","TRUE","","36333","303.8","47179","Washington","{""47179"": ""70.19"", ""47019"": ""29.01"", ""47171"": ""0.8""}","Washington|Carter|Unicoi","47179|47019|47171","FALSE","FALSE","America/New_York"
-"37604","36.2996","-82.3832","Johnson City","TN","Tennessee","TRUE","","36040","411.8","47179","Washington","{""47179"": ""99.19"", ""47019"": ""0.81""}","Washington|Carter","47179|47019","FALSE","FALSE","America/New_York"
-"37614","36.30143","-82.37123","Johnson City","TN","Tennessee","TRUE","","1922","2350.1","47179","Washington","{""47179"": ""100""}","Washington","47179","FALSE","FALSE","America/New_York"
-"37615","36.39958","-82.45219","Johnson City","TN","Tennessee","TRUE","","21722","230.6","47179","Washington","{""47179"": ""100""}","Washington","47179","FALSE","FALSE","America/New_York"
-"37616","36.22652","-82.74757","Afton","TN","Tennessee","TRUE","","4284","36.9","47059","Greene","{""47059"": ""100""}","Greene","47059","FALSE","FALSE","America/New_York"
-"37617","36.53067","-82.37208","Blountville","TN","Tennessee","TRUE","","14198","92.8","47163","Sullivan","{""47163"": ""100""}","Sullivan","47163","FALSE","FALSE","America/New_York"
-"37618","36.46567","-82.20725","Bluff City","TN","Tennessee","TRUE","","13936","78.0","47163","Sullivan","{""47163"": ""100""}","Sullivan","47163","FALSE","FALSE","America/New_York"
-"37620","36.55139","-82.09777","Bristol","TN","Tennessee","TRUE","","38170","115.7","47163","Sullivan","{""47163"": ""100""}","Sullivan","47163","FALSE","FALSE","America/New_York"
-"37640","36.32921","-81.97852","Butler","TN","Tennessee","TRUE","","3590","13.1","47091","Johnson","{""47091"": ""67.99"", ""47019"": ""32.01""}","Johnson|Carter","47091|47019","FALSE","FALSE","America/New_York"
-"37641","36.19901","-82.66422","Chuckey","TN","Tennessee","TRUE","","9356","39.5","47059","Greene","{""47059"": ""78.76"", ""47179"": ""21.24""}","Greene|Washington","47059|47179","FALSE","FALSE","America/New_York"
-"37642","36.52903","-82.72991","Church Hill","TN","Tennessee","TRUE","","14961","99.0","47073","Hawkins","{""47073"": ""100""}","Hawkins","47073","FALSE","FALSE","America/New_York"
-"37643","36.37734","-82.13641","Elizabethton","TN","Tennessee","TRUE","","33558","100.8","47019","Carter","{""47019"": ""100""}","Carter","47019","FALSE","FALSE","America/New_York"
-"37645","36.5621","-82.66232","Mount Carmel","TN","Tennessee","TRUE","","5100","325.6","47073","Hawkins","{""47073"": ""100""}","Hawkins","47073","FALSE","FALSE","America/New_York"
-"37650","36.10446","-82.45622","Erwin","TN","Tennessee","TRUE","","12056","47.0","47171","Unicoi","{""47171"": ""96.32"", ""47179"": ""3.68""}","Unicoi|Washington","47171|47179","FALSE","FALSE","America/New_York"
-"37656","36.39878","-82.62985","Fall Branch","TN","Tennessee","TRUE","","3680","46.0","47179","Washington","{""47179"": ""69.76"", ""47059"": ""22.25"", ""47163"": ""8""}","Washington|Greene|Sullivan","47179|47059|47163","FALSE","FALSE","America/New_York"
-"37657","36.01758","-82.56019","Flag Pond","TN","Tennessee","TRUE","","914","9.5","47171","Unicoi","{""47171"": ""100""}","Unicoi","47171","FALSE","FALSE","America/New_York"
-"37658","36.25846","-82.14069","Hampton","TN","Tennessee","TRUE","","3788","26.0","47019","Carter","{""47019"": ""100""}","Carter","47019","FALSE","FALSE","America/New_York"
-"37659","36.28012","-82.4939","Jonesborough","TN","Tennessee","TRUE","","28075","84.2","47179","Washington","{""47179"": ""99.76"", ""47163"": ""0.24""}","Washington|Sullivan","47179|47163","FALSE","FALSE","America/New_York"
-"37660","36.52905","-82.57456","Kingsport","TN","Tennessee","TRUE","","39005","227.4","47163","Sullivan","{""47163"": ""92.1"", ""47073"": ""7.9""}","Sullivan|Hawkins","47163|47073","FALSE","FALSE","America/New_York"
-"37663","36.46572","-82.48631","Kingsport","TN","Tennessee","TRUE","","14183","206.4","47163","Sullivan","{""47163"": ""93.9"", ""47179"": ""6.1""}","Sullivan|Washington","47163|47179","FALSE","FALSE","America/New_York"
-"37664","36.51329","-82.50576","Kingsport","TN","Tennessee","TRUE","","27390","324.2","47163","Sullivan","{""47163"": ""100""}","Sullivan","47163","FALSE","FALSE","America/New_York"
-"37665","36.57882","-82.5705","Kingsport","TN","Tennessee","TRUE","","5604","697.4","47163","Sullivan","{""47163"": ""100""}","Sullivan","47163","FALSE","FALSE","America/New_York"
-"37680","36.57928","-81.72545","Laurel Bloomery","TN","Tennessee","TRUE","","512","7.4","47091","Johnson","{""47091"": ""100""}","Johnson","47091","FALSE","FALSE","America/New_York"
-"37681","36.25402","-82.62497","Limestone","TN","Tennessee","TRUE","","6003","34.5","47179","Washington","{""47179"": ""72.13"", ""47059"": ""27.87""}","Washington|Greene","47179|47059","FALSE","FALSE","America/New_York"
-"37682","36.30106","-82.29077","Milligan College","TN","Tennessee","TRUE","","713","1526.4","47019","Carter","{""47019"": ""100""}","Carter","47019","FALSE","FALSE","America/New_York"
-"37683","36.45475","-81.82203","Mountain City","TN","Tennessee","TRUE","","13301","37.8","47091","Johnson","{""47091"": ""100""}","Johnson","47091","FALSE","FALSE","America/New_York"
-"37686","36.44203","-82.34493","Piney Flats","TN","Tennessee","TRUE","","8129","106.3","47163","Sullivan","{""47163"": ""99.26"", ""47179"": ""0.74""}","Sullivan|Washington","47163|47179","FALSE","FALSE","America/New_York"
-"37687","36.18003","-82.09912","Roan Mountain","TN","Tennessee","TRUE","","4434","20.3","47019","Carter","{""47019"": ""100""}","Carter","47019","FALSE","FALSE","America/New_York"
-"37688","36.54547","-81.88283","Shady Valley","TN","Tennessee","TRUE","","981","7.0","47091","Johnson","{""47091"": ""100""}","Johnson","47091","FALSE","FALSE","America/New_York"
-"37690","36.24926","-82.55645","Telford","TN","Tennessee","TRUE","","4222","70.5","47179","Washington","{""47179"": ""100""}","Washington","47179","FALSE","FALSE","America/New_York"
-"37691","36.37168","-81.75667","Trade","TN","Tennessee","TRUE","","569","14.1","47091","Johnson","{""47091"": ""100""}","Johnson","47091","FALSE","FALSE","America/New_York"
-"37692","36.18977","-82.30084","Unicoi","TN","Tennessee","TRUE","","4912","36.1","47171","Unicoi","{""47171"": ""100""}","Unicoi","47171","FALSE","FALSE","America/New_York"
-"37694","36.38621","-82.27585","Watauga","TN","Tennessee","TRUE","","2042","60.6","47019","Carter","{""47019"": ""85.63"", ""47163"": ""9.57"", ""47179"": ""4.81""}","Carter|Sullivan|Washington","47019|47163|47179","FALSE","FALSE","America/New_York"
-"37701","35.79414","-83.9846","Alcoa","TN","Tennessee","TRUE","","7745","282.3","47009","Blount","{""47009"": ""100""}","Blount","47009","FALSE","FALSE","America/New_York"
-"37705","36.22893","-84.01005","Andersonville","TN","Tennessee","TRUE","","4120","36.5","47001","Anderson","{""47001"": ""78.22"", ""47173"": ""21.78""}","Anderson|Union","47001|47173","FALSE","FALSE","America/New_York"
-"37708","36.32525","-83.33404","Bean Station","TN","Tennessee","TRUE","","5785","52.8","47057","Grainger","{""47057"": ""100""}","Grainger","47057","FALSE","FALSE","America/New_York"
-"37709","36.16497","-83.6648","Blaine","TN","Tennessee","TRUE","","4060","35.8","47057","Grainger","{""47057"": ""97.64"", ""47093"": ""2.36""}","Grainger|Knox","47057|47093","FALSE","FALSE","America/New_York"
-"37710","36.15863","-84.31611","Briceville","TN","Tennessee","TRUE","","989","4.7","47001","Anderson","{""47001"": ""100""}","Anderson","47001","FALSE","FALSE","America/New_York"
-"37711","36.28318","-83.03736","Bulls Gap","TN","Tennessee","TRUE","","4845","34.1","47073","Hawkins","{""47073"": ""68.08"", ""47059"": ""30.43"", ""47063"": ""1.49""}","Hawkins|Greene|Hamblen","47073|47059|47063","FALSE","FALSE","America/New_York"
-"37713","36.09017","-83.13206","Bybee","TN","Tennessee","TRUE","","1483","17.6","47029","Cocke","{""47029"": ""100""}","Cocke","47029","FALSE","FALSE","America/New_York"
-"37714","36.26643","-84.26994","Caryville","TN","Tennessee","TRUE","","4732","23.1","47013","Campbell","{""47013"": ""100""}","Campbell","47013","FALSE","FALSE","America/New_York"
-"37715","36.55424","-83.96049","Clairfield","TN","Tennessee","TRUE","","714","10.3","47025","Claiborne","{""47025"": ""82.6"", ""47013"": ""17.4""}","Claiborne|Campbell","47025|47013","FALSE","FALSE","America/New_York"
-"37716","36.09954","-84.16803","Clinton","TN","Tennessee","TRUE","","26979","123.6","47001","Anderson","{""47001"": ""100""}","Anderson","47001","FALSE","FALSE","America/New_York"
-"37719","36.02246","-84.42936","Coalfield","TN","Tennessee","TRUE","","175","101.6","47129","Morgan","{""47129"": ""100""}","Morgan","47129","FALSE","FALSE","America/New_York"
-"37721","36.13176","-83.80706","Corryton","TN","Tennessee","TRUE","","13426","105.2","47093","Knox","{""47093"": ""85.68"", ""47173"": ""14.32""}","Knox|Union","47093|47173","FALSE","FALSE","America/New_York"
-"37722","35.80702","-83.23447","Cosby","TN","Tennessee","TRUE","","5911","24.9","47029","Cocke","{""47029"": ""81.55"", ""47155"": ""18.45""}","Cocke|Sevier","47029|47155","FALSE","FALSE","America/New_York"
-"37723","35.95367","-84.82058","Crab Orchard","TN","Tennessee","TRUE","","924","6.5","47035","Cumberland","{""47035"": ""100""}","Cumberland","47035","FALSE","FALSE","America/Chicago"
-"37724","36.54689","-83.70098","Cumberland Gap","TN","Tennessee","TRUE","","2609","44.4","47025","Claiborne","{""47025"": ""100""}","Claiborne","47025","FALSE","FALSE","America/New_York"
-"37725","35.99875","-83.39826","Dandridge","TN","Tennessee","TRUE","","17944","72.4","47089","Jefferson","{""47089"": ""98.79"", ""47155"": ""1.21""}","Jefferson|Sevier","47089|47155","FALSE","FALSE","America/New_York"
-"37726","36.20754","-84.8344","Deer Lodge","TN","Tennessee","TRUE","","1895","7.5","47129","Morgan","{""47129"": ""91.21"", ""47049"": ""8.79""}","Morgan|Fentress","47129|47049","FALSE","FALSE","America/New_York"
-"37727","35.88807","-83.00727","Del Rio","TN","Tennessee","TRUE","","2390","8.2","47029","Cocke","{""47029"": ""100""}","Cocke","47029","FALSE","FALSE","America/New_York"
-"37729","36.51669","-84.0345","Duff","TN","Tennessee","TRUE","","1763","13.6","47013","Campbell","{""47013"": ""100""}","Campbell","47013","FALSE","FALSE","America/New_York"
-"37730","36.54748","-83.97553","Eagan","TN","Tennessee","TRUE","","0","0.0","47025","Claiborne","{""47025"": ""100""}","Claiborne","47025","FALSE","FALSE","America/New_York"
-"37731","36.54327","-83.00662","Eidson","TN","Tennessee","TRUE","","470","3.8","47073","Hawkins","{""47073"": ""77.22"", ""47067"": ""22.78""}","Hawkins|Hancock","47073|47067","FALSE","FALSE","America/New_York"
-"37732","36.32708","-84.6064","Elgin","TN","Tennessee","TRUE","","158","87.1","47151","Scott","{""47151"": ""100""}","Scott","47151","FALSE","FALSE","America/New_York"
-"37733","36.35405","-84.71124","Rugby","TN","Tennessee","TRUE","","52","4.5","47129","Morgan","{""47129"": ""100""}","Morgan","47129","FALSE","FALSE","America/New_York"
-"37737","35.7577","-84.11981","Friendsville","TN","Tennessee","TRUE","","5817","85.2","47009","Blount","{""47009"": ""95.8"", ""47105"": ""4.2""}","Blount|Loudon","47009|47105","FALSE","FALSE","America/New_York"
-"37738","35.6702","-83.47481","Gatlinburg","TN","Tennessee","TRUE","","5420","10.0","47155","Sevier","{""47155"": ""100""}","Sevier","47155","FALSE","FALSE","America/New_York"
-"37742","35.6754","-84.18028","Greenback","TN","Tennessee","TRUE","","6252","48.5","47105","Loudon","{""47105"": ""53.67"", ""47009"": ""46.33""}","Loudon|Blount","47105|47009","FALSE","FALSE","America/New_York"
-"37743","36.0655","-82.85674","Greeneville","TN","Tennessee","TRUE","","25939","45.4","47059","Greene","{""47059"": ""99.84"", ""47029"": ""0.16""}","Greene|Cocke","47059|47029","FALSE","FALSE","America/New_York"
-"37745","36.27443","-82.82388","Greeneville","TN","Tennessee","TRUE","","18318","60.7","47059","Greene","{""47059"": ""100""}","Greene","47059","FALSE","FALSE","America/New_York"
-"37748","35.94879","-84.5134","Harriman","TN","Tennessee","TRUE","","16576","62.6","47145","Roane","{""47145"": ""89.3"", ""47129"": ""10.7""}","Roane|Morgan","47145|47129","FALSE","FALSE","America/New_York"
-"37752","36.56934","-83.53979","Harrogate","TN","Tennessee","TRUE","","6496","48.6","47025","Claiborne","{""47025"": ""98.59"", ""47067"": ""1.41""}","Claiborne|Hancock","47025|47067","FALSE","FALSE","America/New_York"
-"37753","35.82308","-83.10035","Hartford","TN","Tennessee","TRUE","","1048","13.5","47029","Cocke","{""47029"": ""100""}","Cocke","47029","FALSE","FALSE","America/New_York"
-"37754","36.13112","-84.03295","Heiskell","TN","Tennessee","TRUE","","5331","54.4","47001","Anderson","{""47001"": ""59.78"", ""47093"": ""35.02"", ""47173"": ""5.2""}","Anderson|Knox|Union","47001|47093|47173","FALSE","FALSE","America/New_York"
-"37755","36.41295","-84.52727","Helenwood","TN","Tennessee","TRUE","","3188","27.8","47151","Scott","{""47151"": ""100""}","Scott","47151","FALSE","FALSE","America/New_York"
-"37756","36.3046","-84.41983","Huntsville","TN","Tennessee","TRUE","","2912","11.4","47151","Scott","{""47151"": ""100""}","Scott","47151","FALSE","FALSE","America/New_York"
-"37757","36.30165","-84.14314","Jacksboro","TN","Tennessee","TRUE","","9577","131.2","47013","Campbell","{""47013"": ""100""}","Campbell","47013","FALSE","FALSE","America/New_York"
-"37760","36.11059","-83.46447","Jefferson City","TN","Tennessee","TRUE","","13714","132.4","47089","Jefferson","{""47089"": ""100""}","Jefferson","47089","FALSE","FALSE","America/New_York"
-"37762","36.5771","-84.12599","Jellico","TN","Tennessee","TRUE","","2804","79.2","47013","Campbell","{""47013"": ""100""}","Campbell","47013","FALSE","FALSE","America/New_York"
-"37763","35.82252","-84.49248","Kingston","TN","Tennessee","TRUE","","15196","64.4","47145","Roane","{""47145"": ""100""}","Roane","47145","FALSE","FALSE","America/New_York"
-"37764","35.97092","-83.61716","Kodak","TN","Tennessee","TRUE","","9820","109.4","47155","Sevier","{""47155"": ""93.3"", ""47093"": ""6.7""}","Sevier|Knox","47155|47093","FALSE","FALSE","America/New_York"
-"37765","36.5719","-83.0649","Kyles Ford","TN","Tennessee","TRUE","","655","13.1","47067","Hancock","{""47067"": ""100""}","Hancock","47067","FALSE","FALSE","America/New_York"
-"37766","36.39801","-84.08637","La Follette","TN","Tennessee","TRUE","","17735","44.7","47013","Campbell","{""47013"": ""100""}","Campbell","47013","FALSE","FALSE","America/New_York"
-"37769","36.21841","-84.15332","Rocky Top","TN","Tennessee","TRUE","","5973","80.0","47001","Anderson","{""47001"": ""91.44"", ""47013"": ""8.56""}","Anderson|Campbell","47001|47013","FALSE","FALSE","America/New_York"
-"37770","36.15335","-84.66307","Lancing","TN","Tennessee","TRUE","","2837","9.2","47129","Morgan","{""47129"": ""100""}","Morgan","47129","FALSE","FALSE","America/New_York"
-"37771","35.83931","-84.31655","Lenoir City","TN","Tennessee","TRUE","","17287","137.6","47105","Loudon","{""47105"": ""92.78"", ""47145"": ""7.22""}","Loudon|Roane","47105|47145","FALSE","FALSE","America/New_York"
-"37772","35.78825","-84.21878","Lenoir City","TN","Tennessee","TRUE","","12888","127.3","47105","Loudon","{""47105"": ""98.32"", ""47093"": ""1.68""}","Loudon|Knox","47105|47093","FALSE","FALSE","America/New_York"
-"37774","35.7304","-84.35411","Loudon","TN","Tennessee","TRUE","","18503","81.7","47105","Loudon","{""47105"": ""93.17"", ""47145"": ""6.09"", ""47123"": ""0.74""}","Loudon|Roane|Monroe","47105|47145|47123","FALSE","FALSE","America/New_York"
-"37777","35.82711","-84.05208","Louisville","TN","Tennessee","TRUE","","12122","141.7","47009","Blount","{""47009"": ""100""}","Blount","47009","FALSE","FALSE","America/New_York"
-"37779","36.21514","-83.75606","Luttrell","TN","Tennessee","TRUE","","3291","33.3","47173","Union","{""47173"": ""94.85"", ""47093"": ""5.15""}","Union|Knox","47173|47093","FALSE","FALSE","America/New_York"
-"37801","35.66815","-84.08768","Maryville","TN","Tennessee","TRUE","","26577","147.3","47009","Blount","{""47009"": ""96.9"", ""47123"": ""3.1""}","Blount|Monroe","47009|47123","FALSE","FALSE","America/New_York"
-"37803","35.66053","-83.98471","Maryville","TN","Tennessee","TRUE","","32652","129.3","47009","Blount","{""47009"": ""100""}","Blount","47009","FALSE","FALSE","America/New_York"
-"37804","35.79207","-83.89312","Maryville","TN","Tennessee","TRUE","","26892","298.3","47009","Blount","{""47009"": ""100""}","Blount","47009","FALSE","FALSE","America/New_York"
-"37806","36.08385","-83.72845","Mascot","TN","Tennessee","TRUE","","2849","70.5","47093","Knox","{""47093"": ""100""}","Knox","47093","FALSE","FALSE","America/New_York"
-"37807","36.26003","-83.82806","Maynardville","TN","Tennessee","TRUE","","11098","54.0","47173","Union","{""47173"": ""98.17"", ""47093"": ""1.83""}","Union|Knox","47173|47093","FALSE","FALSE","America/New_York"
-"37809","36.15417","-83.03483","Midway","TN","Tennessee","TRUE","","2813","32.9","47059","Greene","{""47059"": ""100""}","Greene","47059","FALSE","FALSE","America/New_York"
-"37810","36.18021","-83.10307","Mohawk","TN","Tennessee","TRUE","","1771","20.4","47059","Greene","{""47059"": ""100""}","Greene","47059","FALSE","FALSE","America/New_York"
-"37811","36.35524","-83.21486","Mooresburg","TN","Tennessee","TRUE","","3917","40.3","47073","Hawkins","{""47073"": ""95.18"", ""47057"": ""4.82""}","Hawkins|Grainger","47073|47057","FALSE","FALSE","America/New_York"
-"37813","36.176","-83.26506","Morristown","TN","Tennessee","TRUE","","17409","115.4","47063","Hamblen","{""47063"": ""98.29"", ""47089"": ""1.71""}","Hamblen|Jefferson","47063|47089","FALSE","FALSE","America/New_York"
-"37814","36.23563","-83.33153","Morristown","TN","Tennessee","TRUE","","34212","295.9","47063","Hamblen","{""47063"": ""100""}","Hamblen","47063","FALSE","FALSE","America/New_York"
-"37818","36.18917","-82.96871","Mosheim","TN","Tennessee","TRUE","","5011","42.3","47059","Greene","{""47059"": ""100""}","Greene","47059","FALSE","FALSE","America/New_York"
-"37819","36.55423","-84.21192","Newcomb","TN","Tennessee","TRUE","","727","12.8","47013","Campbell","{""47013"": ""100""}","Campbell","47013","FALSE","FALSE","America/New_York"
-"37820","36.08527","-83.56636","New Market","TN","Tennessee","TRUE","","8354","49.4","47089","Jefferson","{""47089"": ""100""}","Jefferson","47089","FALSE","FALSE","America/New_York"
-"37821","35.97622","-83.19483","Newport","TN","Tennessee","TRUE","","21975","66.7","47029","Cocke","{""47029"": ""100""}","Cocke","47029","FALSE","FALSE","America/New_York"
-"37825","36.41243","-83.69154","New Tazewell","TN","Tennessee","TRUE","","8381","37.3","47025","Claiborne","{""47025"": ""96.65"", ""47173"": ""3.35""}","Claiborne|Union","47025|47173","FALSE","FALSE","America/New_York"
-"37826","35.55828","-84.58966","Niota","TN","Tennessee","TRUE","","5303","37.3","47107","McMinn","{""47107"": ""98.05"", ""47121"": ""1.95""}","McMinn|Meigs","47107|47121","FALSE","FALSE","America/New_York"
-"37828","36.19797","-84.06905","Norris","TN","Tennessee","TRUE","","1084","129.2","47001","Anderson","{""47001"": ""100""}","Anderson","47001","FALSE","FALSE","America/New_York"
-"37829","36.00388","-84.63241","Oakdale","TN","Tennessee","TRUE","","1631","11.3","47129","Morgan","{""47129"": ""100""}","Morgan","47129","FALSE","FALSE","America/New_York"
-"37830","35.96501","-84.2912","Oak Ridge","TN","Tennessee","TRUE","","29479","134.2","47001","Anderson","{""47001"": ""89"", ""47145"": ""10.31"", ""47093"": ""0.69""}","Anderson|Roane|Knox","47001|47145|47093","FALSE","FALSE","America/New_York"
-"37840","36.05933","-84.37547","Oliver Springs","TN","Tennessee","TRUE","","10238","46.4","47145","Roane","{""47145"": ""37.62"", ""47001"": ""34.96"", ""47129"": ""27.42""}","Roane|Anderson|Morgan","47145|47001|47129","FALSE","FALSE","America/New_York"
-"37841","36.51837","-84.57832","Oneida","TN","Tennessee","TRUE","","9568","21.3","47151","Scott","{""47151"": ""100""}","Scott","47151","FALSE","FALSE","America/New_York"
-"37843","36.00787","-83.05135","Parrottsville","TN","Tennessee","TRUE","","4011","29.8","47029","Cocke","{""47029"": ""100""}","Cocke","47029","FALSE","FALSE","America/New_York"
-"37845","36.09337","-84.43956","Petros","TN","Tennessee","TRUE","","587","222.0","47129","Morgan","{""47129"": ""100""}","Morgan","47129","FALSE","FALSE","America/New_York"
-"37846","35.68052","-84.48497","Philadelphia","TN","Tennessee","TRUE","","4400","22.9","47105","Loudon","{""47105"": ""40.38"", ""47123"": ""30.52"", ""47145"": ""27"", ""47107"": ""2.11""}","Loudon|Monroe|Roane|McMinn","47105|47123|47145|47107","FALSE","FALSE","America/New_York"
-"37847","36.4342","-84.27891","Pioneer","TN","Tennessee","TRUE","","2959","8.6","47151","Scott","{""47151"": ""52.84"", ""47013"": ""47.16""}","Scott|Campbell","47151|47013","FALSE","FALSE","America/New_York"
-"37848","36.23572","-83.6801","Powder Springs","TN","Tennessee","TRUE","","137","7.8","47057","Grainger","{""47057"": ""72.76"", ""47173"": ""27.24""}","Grainger|Union","47057|47173","FALSE","FALSE","America/New_York"
-"37849","36.0585","-84.04314","Powell","TN","Tennessee","TRUE","","26485","259.5","47093","Knox","{""47093"": ""84.04"", ""47001"": ""15.96""}","Knox|Anderson","47093|47001","FALSE","FALSE","America/New_York"
-"37851","36.58232","-83.90613","Pruden","TN","Tennessee","TRUE","","34","39.2","47025","Claiborne","{""47025"": ""100""}","Claiborne","47025","FALSE","FALSE","America/New_York"
-"37852","36.32643","-84.58394","Robbins","TN","Tennessee","TRUE","","2765","13.1","47151","Scott","{""47151"": ""91.79"", ""47129"": ""8.21""}","Scott|Morgan","47151|47129","FALSE","FALSE","America/New_York"
-"37853","35.83629","-83.91275","Rockford","TN","Tennessee","TRUE","","3669","91.1","47009","Blount","{""47009"": ""96.33"", ""47093"": ""3.67""}","Blount|Knox","47009|47093","FALSE","FALSE","America/New_York"
-"37854","35.87866","-84.71717","Rockwood","TN","Tennessee","TRUE","","12564","35.3","47145","Roane","{""47145"": ""80.24"", ""47035"": ""14.45"", ""47129"": ""5.31""}","Roane|Cumberland|Morgan","47145|47035|47129","FALSE","FALSE","America/Chicago"
-"37857","36.42008","-82.94223","Rogersville","TN","Tennessee","TRUE","","19912","32.5","47073","Hawkins","{""47073"": ""99.6"", ""47163"": ""0.4""}","Hawkins|Sullivan","47073|47163","FALSE","FALSE","America/New_York"
-"37860","36.25305","-83.18254","Russellville","TN","Tennessee","TRUE","","3963","60.0","47063","Hamblen","{""47063"": ""100""}","Hamblen","47063","FALSE","FALSE","America/New_York"
-"37861","36.24647","-83.51235","Rutledge","TN","Tennessee","TRUE","","8666","33.5","47057","Grainger","{""47057"": ""100""}","Grainger","47057","FALSE","FALSE","America/New_York"
-"37862","35.77803","-83.6125","Sevierville","TN","Tennessee","TRUE","","23147","106.4","47155","Sevier","{""47155"": ""100""}","Sevier","47155","FALSE","FALSE","America/New_York"
-"37863","35.78596","-83.56217","Pigeon Forge","TN","Tennessee","TRUE","","6712","141.0","47155","Sevier","{""47155"": ""100""}","Sevier","47155","FALSE","FALSE","America/New_York"
-"37865","35.84936","-83.74095","Seymour","TN","Tennessee","TRUE","","21908","119.7","47155","Sevier","{""47155"": ""78.79"", ""47009"": ""21.21""}","Sevier|Blount","47155|47009","FALSE","FALSE","America/New_York"
-"37866","36.34644","-83.85615","Sharps Chapel","TN","Tennessee","TRUE","","1584","11.6","47173","Union","{""47173"": ""100""}","Union","47173","FALSE","FALSE","America/New_York"
-"37869","36.51846","-83.24129","Sneedville","TN","Tennessee","TRUE","","4715","13.5","47067","Hancock","{""47067"": ""93.46"", ""47073"": ""4.69"", ""47025"": ""1.85""}","Hancock|Hawkins|Claiborne","47067|47073|47025","FALSE","FALSE","America/New_York"
-"37870","36.46339","-83.83521","Speedwell","TN","Tennessee","TRUE","","4454","20.6","47025","Claiborne","{""47025"": ""78.54"", ""47013"": ""15.72"", ""47173"": ""5.74""}","Claiborne|Campbell|Union","47025|47013|47173","FALSE","FALSE","America/New_York"
-"37871","36.04932","-83.67885","Strawberry Plains","TN","Tennessee","TRUE","","8650","84.1","47089","Jefferson","{""47089"": ""39.46"", ""47093"": ""38.65"", ""47155"": ""21.9""}","Jefferson|Knox|Sevier","47089|47093|47155","FALSE","FALSE","America/New_York"
-"37872","36.26951","-84.64952","Sunbright","TN","Tennessee","TRUE","","1629","6.6","47129","Morgan","{""47129"": ""91.96"", ""47151"": ""8.04""}","Morgan|Scott","47129|47151","FALSE","FALSE","America/New_York"
-"37873","36.52582","-82.84799","Surgoinsville","TN","Tennessee","TRUE","","4934","30.9","47073","Hawkins","{""47073"": ""100""}","Hawkins","47073","FALSE","FALSE","America/New_York"
-"37874","35.5981","-84.45768","Sweetwater","TN","Tennessee","TRUE","","14881","56.5","47123","Monroe","{""47123"": ""82.59"", ""47107"": ""13.67"", ""47105"": ""3.75""}","Monroe|McMinn|Loudon","47123|47107|47105","FALSE","FALSE","America/New_York"
-"37876","35.86584","-83.47938","Sevierville","TN","Tennessee","TRUE","","32761","67.3","47155","Sevier","{""47155"": ""98"", ""47089"": ""2""}","Sevier|Jefferson","47155|47089","FALSE","FALSE","America/New_York"
-"37877","36.15098","-83.40305","Talbott","TN","Tennessee","TRUE","","8984","134.6","47063","Hamblen","{""47063"": ""62.39"", ""47089"": ""37.61""}","Hamblen|Jefferson","47063|47089","FALSE","FALSE","America/New_York"
-"37878","35.62122","-83.90319","Tallassee","TN","Tennessee","TRUE","","294","3.0","47009","Blount","{""47009"": ""100""}","Blount","47009","FALSE","FALSE","America/New_York"
-"37879","36.47714","-83.49523","Tazewell","TN","Tennessee","TRUE","","11059","24.5","47025","Claiborne","{""47025"": ""95.79"", ""47067"": ""4.21""}","Claiborne|Hancock","47025|47067","FALSE","FALSE","America/New_York"
-"37880","35.69986","-84.66839","Ten Mile","TN","Tennessee","TRUE","","3782","20.6","47121","Meigs","{""47121"": ""56.69"", ""47145"": ""43.31""}","Meigs|Roane","47121|47145","FALSE","FALSE","America/New_York"
-"37881","36.40096","-83.34146","Thorn Hill","TN","Tennessee","TRUE","","2163","11.7","47057","Grainger","{""47057"": ""54.91"", ""47067"": ""37.93"", ""47073"": ""7.16""}","Grainger|Hancock|Hawkins","47057|47067|47073","FALSE","FALSE","America/New_York"
-"37882","35.60488","-83.80989","Townsend","TN","Tennessee","TRUE","","2679","6.5","47009","Blount","{""47009"": ""100""}","Blount","47009","FALSE","FALSE","America/New_York"
-"37885","35.48817","-84.1212","Vonore","TN","Tennessee","TRUE","","6015","13.8","47123","Monroe","{""47123"": ""94.26"", ""47105"": ""5.74""}","Monroe|Loudon","47123|47105","FALSE","FALSE","America/New_York"
-"37886","35.74557","-83.80472","Walland","TN","Tennessee","TRUE","","4880","42.9","47009","Blount","{""47009"": ""100""}","Blount","47009","FALSE","FALSE","America/New_York"
-"37887","36.09667","-84.58472","Wartburg","TN","Tennessee","TRUE","","7739","32.5","47129","Morgan","{""47129"": ""100""}","Morgan","47129","FALSE","FALSE","America/New_York"
-"37888","36.31023","-83.61133","Washburn","TN","Tennessee","TRUE","","3385","24.0","47057","Grainger","{""47057"": ""91.86"", ""47173"": ""8.14""}","Grainger|Union","47057|47173","FALSE","FALSE","America/New_York"
-"37890","36.08151","-83.29334","White Pine","TN","Tennessee","TRUE","","7255","82.5","47089","Jefferson","{""47089"": ""98.94"", ""47063"": ""1.06""}","Jefferson|Hamblen","47089|47063","FALSE","FALSE","America/New_York"
-"37891","36.29001","-83.13771","Whitesburg","TN","Tennessee","TRUE","","3501","42.0","47063","Hamblen","{""47063"": ""76.86"", ""47073"": ""23.14""}","Hamblen|Hawkins","47063|47073","FALSE","FALSE","America/New_York"
-"37892","36.55319","-84.3717","Winfield","TN","Tennessee","TRUE","","1966","10.1","47151","Scott","{""47151"": ""100""}","Scott","47151","FALSE","FALSE","America/New_York"
-"37902","35.96378","-83.92022","Knoxville","TN","Tennessee","TRUE","","2415","2002.0","47093","Knox","{""47093"": ""100""}","Knox","47093","FALSE","FALSE","America/New_York"
-"37909","35.94757","-84.0214","Knoxville","TN","Tennessee","TRUE","","16282","898.9","47093","Knox","{""47093"": ""100""}","Knox","47093","FALSE","FALSE","America/New_York"
-"37912","36.00751","-83.98483","Knoxville","TN","Tennessee","TRUE","","22684","808.3","47093","Knox","{""47093"": ""100""}","Knox","47093","FALSE","FALSE","America/New_York"
-"37914","35.9796","-83.79919","Knoxville","TN","Tennessee","TRUE","","19330","187.6","47093","Knox","{""47093"": ""100""}","Knox","47093","FALSE","FALSE","America/New_York"
-"37915","35.97051","-83.89998","Knoxville","TN","Tennessee","TRUE","","5252","1081.8","47093","Knox","{""47093"": ""100""}","Knox","47093","FALSE","FALSE","America/New_York"
-"37916","35.95306","-83.93338","Knoxville","TN","Tennessee","TRUE","","13092","3433.5","47093","Knox","{""47093"": ""100""}","Knox","47093","FALSE","FALSE","America/New_York"
-"37917","36.00119","-83.91371","Knoxville","TN","Tennessee","TRUE","","24933","978.1","47093","Knox","{""47093"": ""100""}","Knox","47093","FALSE","FALSE","America/New_York"
-"37918","36.06085","-83.90938","Knoxville","TN","Tennessee","TRUE","","45268","498.7","47093","Knox","{""47093"": ""100""}","Knox","47093","FALSE","FALSE","America/New_York"
-"37919","35.9143","-84.0011","Knoxville","TN","Tennessee","TRUE","","29108","589.4","47093","Knox","{""47093"": ""100""}","Knox","47093","FALSE","FALSE","America/New_York"
-"37920","35.91071","-83.8593","Knoxville","TN","Tennessee","TRUE","","40358","214.9","47093","Knox","{""47093"": ""99.46"", ""47009"": ""0.54""}","Knox|Blount","47093|47009","FALSE","FALSE","America/New_York"
-"37921","35.97926","-84.00285","Knoxville","TN","Tennessee","TRUE","","27259","687.3","47093","Knox","{""47093"": ""100""}","Knox","47093","FALSE","FALSE","America/New_York"
-"37922","35.86154","-84.10034","Knoxville","TN","Tennessee","TRUE","","36542","517.9","47093","Knox","{""47093"": ""100""}","Knox","47093","FALSE","FALSE","America/New_York"
-"37923","35.92608","-84.08022","Knoxville","TN","Tennessee","TRUE","","31614","1090.8","47093","Knox","{""47093"": ""100""}","Knox","47093","FALSE","FALSE","America/New_York"
-"37924","36.03578","-83.80247","Knoxville","TN","Tennessee","TRUE","","12670","177.2","47093","Knox","{""47093"": ""100""}","Knox","47093","FALSE","FALSE","America/New_York"
-"37931","35.976","-84.12517","Knoxville","TN","Tennessee","TRUE","","28584","385.0","47093","Knox","{""47093"": ""96.4"", ""47001"": ""3.6""}","Knox|Anderson","47093|47001","FALSE","FALSE","America/New_York"
-"37932","35.92252","-84.19592","Knoxville","TN","Tennessee","TRUE","","18919","253.4","47093","Knox","{""47093"": ""100""}","Knox","47093","FALSE","FALSE","America/New_York"
-"37934","35.87289","-84.17913","Farragut","TN","Tennessee","TRUE","","26604","588.3","47093","Knox","{""47093"": ""100""}","Knox","47093","FALSE","FALSE","America/New_York"
-"37938","36.12392","-83.9386","Knoxville","TN","Tennessee","TRUE","","17050","203.5","47093","Knox","{""47093"": ""100""}","Knox","47093","FALSE","FALSE","America/New_York"
-"38001","35.81094","-89.15658","Alamo","TN","Tennessee","TRUE","","4662","26.6","47033","Crockett","{""47033"": ""100""}","Crockett","47033","FALSE","FALSE","America/Chicago"
-"38002","35.28695","-89.7084","Arlington","TN","Tennessee","TRUE","","40430","134.1","47157","Shelby","{""47157"": ""94.84"", ""47047"": ""5.16""}","Shelby|Fayette","47157|47047","FALSE","FALSE","America/Chicago"
-"38004","35.41885","-89.76739","Atoka","TN","Tennessee","TRUE","","10863","159.2","47167","Tipton","{""47167"": ""96.72"", ""47157"": ""3.28""}","Tipton|Shelby","47167|47157","FALSE","FALSE","America/Chicago"
-"38006","35.6949","-89.09725","Bells","TN","Tennessee","TRUE","","5411","20.7","47033","Crockett","{""47033"": ""79.53"", ""47075"": ""16.52"", ""47113"": ""3.96""}","Crockett|Haywood|Madison","47033|47075|47113","FALSE","FALSE","America/Chicago"
-"38007","36.15948","-89.4271","Bogota","TN","Tennessee","TRUE","","63","12.2","47045","Dyer","{""47045"": ""100""}","Dyer","47045","FALSE","FALSE","America/Chicago"
-"38008","35.24682","-88.99499","Bolivar","TN","Tennessee","TRUE","","8797","22.9","47069","Hardeman","{""47069"": ""100""}","Hardeman","47069","FALSE","FALSE","America/Chicago"
-"38011","35.46697","-89.70724","Brighton","TN","Tennessee","TRUE","","9536","62.5","47167","Tipton","{""47167"": ""98.03"", ""47157"": ""1.97""}","Tipton|Shelby","47167|47157","FALSE","FALSE","America/Chicago"
-"38012","35.60824","-89.27013","Brownsville","TN","Tennessee","TRUE","","13533","19.3","47075","Haywood","{""47075"": ""100""}","Haywood","47075","FALSE","FALSE","America/Chicago"
-"38015","35.55867","-89.82317","Burlison","TN","Tennessee","TRUE","","2385","21.2","47167","Tipton","{""47167"": ""100""}","Tipton","47167","FALSE","FALSE","America/Chicago"
-"38016","35.17981","-89.75885","Cordova","TN","Tennessee","TRUE","","48325","979.7","47157","Shelby","{""47157"": ""100""}","Shelby","47157","FALSE","FALSE","America/Chicago"
-"38017","35.0675","-89.65065","Collierville","TN","Tennessee","TRUE","","55073","250.9","47157","Shelby","{""47157"": ""95.43"", ""47047"": ""4.57""}","Shelby|Fayette","47157|47047","FALSE","FALSE","America/Chicago"
-"38018","35.13812","-89.76591","Cordova","TN","Tennessee","TRUE","","36289","758.7","47157","Shelby","{""47157"": ""100""}","Shelby","47157","FALSE","FALSE","America/Chicago"
-"38019","35.56347","-89.63019","Covington","TN","Tennessee","TRUE","","16298","45.6","47167","Tipton","{""47167"": ""100""}","Tipton","47167","FALSE","FALSE","America/Chicago"
-"38021","35.87583","-89.16472","Crockett Mills","TN","Tennessee","TRUE","","15","11.0","47033","Crockett","{""47033"": ""100""}","Crockett","47033","FALSE","FALSE","America/Chicago"
-"38023","35.47979","-89.94491","Drummonds","TN","Tennessee","TRUE","","6466","37.9","47167","Tipton","{""47167"": ""100""}","Tipton","47167","FALSE","FALSE","America/Chicago"
-"38024","36.03641","-89.38076","Dyersburg","TN","Tennessee","TRUE","","27405","74.8","47045","Dyer","{""47045"": ""100""}","Dyer","47045","FALSE","FALSE","America/Chicago"
-"38028","35.18309","-89.63487","Eads","TN","Tennessee","TRUE","","6655","44.4","47047","Fayette","{""47047"": ""54.7"", ""47157"": ""45.3""}","Fayette|Shelby","47047|47157","FALSE","FALSE","America/Chicago"
-"38029","35.23874","-89.82189","Ellendale","TN","Tennessee","TRUE","","23","169.6","47157","Shelby","{""47157"": ""100""}","Shelby","47157","FALSE","FALSE","America/Chicago"
-"38030","36.01192","-89.5913","Finley","TN","Tennessee","TRUE","","481","1.4","47045","Dyer","{""47045"": ""100""}","Dyer","47045","FALSE","FALSE","America/Chicago"
-"38034","35.90976","-89.23443","Friendship","TN","Tennessee","TRUE","","2659","10.2","47033","Crockett","{""47033"": ""76.05"", ""47045"": ""23.95""}","Crockett|Dyer","47033|47045","FALSE","FALSE","America/Chicago"
-"38036","35.3202","-89.62583","Gallaway","TN","Tennessee","TRUE","","528","322.8","47047","Fayette","{""47047"": ""100""}","Fayette","47047","FALSE","FALSE","America/Chicago"
-"38037","35.79604","-89.39374","Gates","TN","Tennessee","TRUE","","1379","10.7","47097","Lauderdale","{""47097"": ""73.15"", ""47075"": ""26.85""}","Lauderdale|Haywood","47097|47075","FALSE","FALSE","America/Chicago"
-"38039","35.05811","-89.18215","Grand Junction","TN","Tennessee","TRUE","","1723","10.2","47069","Hardeman","{""47069"": ""83.92"", ""47047"": ""16.08""}","Hardeman|Fayette","47069|47047","FALSE","FALSE","America/Chicago"
-"38040","35.88516","-89.43398","Halls","TN","Tennessee","TRUE","","4769","16.9","47097","Lauderdale","{""47097"": ""83.13"", ""47033"": ""11.23"", ""47045"": ""5.64""}","Lauderdale|Crockett|Dyer","47097|47033|47045","FALSE","FALSE","America/Chicago"
-"38041","35.64371","-89.70457","Henning","TN","Tennessee","TRUE","","4853","18.6","47097","Lauderdale","{""47097"": ""100""}","Lauderdale","47097","FALSE","FALSE","America/Chicago"
-"38042","35.1474","-89.13854","Hickory Valley","TN","Tennessee","TRUE","","641","5.0","47069","Hardeman","{""47069"": ""98.49"", ""47047"": ""1.51""}","Hardeman|Fayette","47069|47047","FALSE","FALSE","America/Chicago"
-"38044","35.20535","-88.80319","Hornsby","TN","Tennessee","TRUE","","705","6.5","47069","Hardeman","{""47069"": ""81.04"", ""47109"": ""14.57"", ""47023"": ""4.39""}","Hardeman|McNairy|Chester","47069|47109|47023","FALSE","FALSE","America/Chicago"
-"38046","35.06985","-89.24792","La Grange","TN","Tennessee","TRUE","","45","4.3","47047","Fayette","{""47047"": ""100""}","Fayette","47047","FALSE","FALSE","America/Chicago"
-"38047","36.09055","-89.50346","Lenox","TN","Tennessee","TRUE","","54","21.6","47045","Dyer","{""47045"": ""100""}","Dyer","47045","FALSE","FALSE","America/Chicago"
-"38049","35.39033","-89.54863","Mason","TN","Tennessee","TRUE","","4181","14.5","47167","Tipton","{""47167"": ""67.46"", ""47047"": ""32.54""}","Tipton|Fayette","47167|47047","FALSE","FALSE","America/Chicago"
-"38050","35.82956","-89.23304","Maury City","TN","Tennessee","TRUE","","595","116.4","47033","Crockett","{""47033"": ""100""}","Crockett","47033","FALSE","FALSE","America/Chicago"
-"38052","35.08626","-88.91097","Middleton","TN","Tennessee","TRUE","","4228","13.0","47069","Hardeman","{""47069"": ""100""}","Hardeman","47069","FALSE","FALSE","America/Chicago"
-"38053","35.34422","-89.95337","Millington","TN","Tennessee","TRUE","","26282","57.5","47157","Shelby","{""47157"": ""88.26"", ""47167"": ""11.74""}","Shelby|Tipton","47157|47167","FALSE","FALSE","America/Chicago"
-"38054","35.33636","-89.87356","Millington","TN","Tennessee","TRUE","","224","240.3","47157","Shelby","{""47157"": ""100""}","Shelby","47157","FALSE","FALSE","America/Chicago"
-"38057","35.05337","-89.36722","Moscow","TN","Tennessee","TRUE","","3524","13.0","47047","Fayette","{""47047"": ""100""}","Fayette","47047","FALSE","FALSE","America/Chicago"
-"38058","35.45892","-89.81969","Munford","TN","Tennessee","TRUE","","10007","146.1","47167","Tipton","{""47167"": ""100""}","Tipton","47167","FALSE","FALSE","America/Chicago"
-"38059","36.1111","-89.24521","Newbern","TN","Tennessee","TRUE","","7780","23.4","47045","Dyer","{""47045"": ""96.91"", ""47053"": ""3.09""}","Dyer|Gibson","47045|47053","FALSE","FALSE","America/Chicago"
-"38060","35.2091","-89.50332","Oakland","TN","Tennessee","TRUE","","10197","89.3","47047","Fayette","{""47047"": ""100""}","Fayette","47047","FALSE","FALSE","America/Chicago"
-"38061","35.06498","-88.76755","Pocahontas","TN","Tennessee","TRUE","","621","3.8","47069","Hardeman","{""47069"": ""61.62"", ""47109"": ""38.38""}","Hardeman|McNairy","47069|47109","FALSE","FALSE","America/Chicago"
-"38063","35.75577","-89.63995","Ripley","TN","Tennessee","TRUE","","16277","20.6","47097","Lauderdale","{""47097"": ""98.35"", ""47075"": ""1.65""}","Lauderdale|Haywood","47097|47075","FALSE","FALSE","America/Chicago"
-"38066","35.0748","-89.5323","Rossville","TN","Tennessee","TRUE","","2718","17.1","47047","Fayette","{""47047"": ""100""}","Fayette","47047","FALSE","FALSE","America/Chicago"
-"38067","35.09286","-89.04265","Saulsbury","TN","Tennessee","TRUE","","1134","6.8","47069","Hardeman","{""47069"": ""100""}","Hardeman","47069","FALSE","FALSE","America/Chicago"
-"38068","35.26682","-89.33586","Somerville","TN","Tennessee","TRUE","","10985","15.7","47047","Fayette","{""47047"": ""100""}","Fayette","47047","FALSE","FALSE","America/Chicago"
-"38069","35.46388","-89.36435","Stanton","TN","Tennessee","TRUE","","2066","6.1","47075","Haywood","{""47075"": ""84.64"", ""47167"": ""15.36""}","Haywood|Tipton","47075|47167","FALSE","FALSE","America/Chicago"
-"38070","35.94354","-89.23696","Tigrett","TN","Tennessee","TRUE","","128","47.3","47045","Dyer","{""47045"": ""100""}","Dyer","47045","FALSE","FALSE","America/Chicago"
-"38075","35.36844","-89.15179","Whiteville","TN","Tennessee","TRUE","","6755","19.5","47069","Hardeman","{""47069"": ""86.74"", ""47075"": ""8.33"", ""47047"": ""4.93""}","Hardeman|Haywood|Fayette","47069|47075|47047","FALSE","FALSE","America/Chicago"
-"38076","35.13552","-89.43809","Williston","TN","Tennessee","TRUE","","1126","18.2","47047","Fayette","{""47047"": ""100""}","Fayette","47047","FALSE","FALSE","America/Chicago"
-"38077","36.32806","-89.47442","Wynnburg","TN","Tennessee","TRUE","","42","508.3","47095","Lake","{""47095"": ""100""}","Lake","47095","FALSE","FALSE","America/Chicago"
-"38079","36.4302","-89.46291","Tiptonville","TN","Tennessee","TRUE","","5229","19.1","47095","Lake","{""47095"": ""99.68"", ""21075"": ""0.32""}","Lake|Fulton","47095|21075","FALSE","FALSE","America/Chicago"
-"38080","36.20974","-89.52713","Ridgely","TN","Tennessee","TRUE","","2540","7.0","47095","Lake","{""47095"": ""86.84"", ""47045"": ""11.33"", ""47131"": ""1.83""}","Lake|Dyer|Obion","47095|47045|47131","FALSE","FALSE","America/Chicago"
-"38103","35.15313","-90.05543","Memphis","TN","Tennessee","TRUE","","14684","2147.1","47157","Shelby","{""47157"": ""100""}","Shelby","47157","FALSE","FALSE","America/Chicago"
-"38104","35.1326","-90.00372","Memphis","TN","Tennessee","TRUE","","23456","1776.3","47157","Shelby","{""47157"": ""100""}","Shelby","47157","FALSE","FALSE","America/Chicago"
-"38105","35.15123","-90.03515","Memphis","TN","Tennessee","TRUE","","5915","1341.5","47157","Shelby","{""47157"": ""100""}","Shelby","47157","FALSE","FALSE","America/Chicago"
-"38106","35.10146","-90.09693","Memphis","TN","Tennessee","TRUE","","23791","354.3","47157","Shelby","{""47157"": ""100""}","Shelby","47157","FALSE","FALSE","America/Chicago"
-"38107","35.17017","-90.02373","Memphis","TN","Tennessee","TRUE","","15784","1128.2","47157","Shelby","{""47157"": ""100""}","Shelby","47157","FALSE","FALSE","America/Chicago"
-"38108","35.17607","-89.96971","Memphis","TN","Tennessee","TRUE","","17626","971.4","47157","Shelby","{""47157"": ""100""}","Shelby","47157","FALSE","FALSE","America/Chicago"
-"38109","35.03394","-90.14947","Memphis","TN","Tennessee","TRUE","","44911","257.6","47157","Shelby","{""47157"": ""100""}","Shelby","47157","FALSE","FALSE","America/Chicago"
-"38111","35.11014","-89.9441","Memphis","TN","Tennessee","TRUE","","42846","1671.3","47157","Shelby","{""47157"": ""100""}","Shelby","47157","FALSE","FALSE","America/Chicago"
-"38112","35.14785","-89.97668","Memphis","TN","Tennessee","TRUE","","16512","1417.8","47157","Shelby","{""47157"": ""100""}","Shelby","47157","FALSE","FALSE","America/Chicago"
-"38114","35.09649","-89.98585","Memphis","TN","Tennessee","TRUE","","25474","1303.4","47157","Shelby","{""47157"": ""100""}","Shelby","47157","FALSE","FALSE","America/Chicago"
-"38115","35.05496","-89.86356","Memphis","TN","Tennessee","TRUE","","39644","1783.8","47157","Shelby","{""47157"": ""100""}","Shelby","47157","FALSE","FALSE","America/Chicago"
-"38116","35.03331","-90.01092","Memphis","TN","Tennessee","TRUE","","40777","828.2","47157","Shelby","{""47157"": ""100""}","Shelby","47157","FALSE","FALSE","America/Chicago"
-"38117","35.11524","-89.90529","Memphis","TN","Tennessee","TRUE","","26296","1086.4","47157","Shelby","{""47157"": ""100""}","Shelby","47157","FALSE","FALSE","America/Chicago"
-"38118","35.03584","-89.93152","Memphis","TN","Tennessee","TRUE","","39168","484.6","47157","Shelby","{""47157"": ""100""}","Shelby","47157","FALSE","FALSE","America/Chicago"
-"38119","35.07975","-89.84584","Memphis","TN","Tennessee","TRUE","","24582","1074.0","47157","Shelby","{""47157"": ""100""}","Shelby","47157","FALSE","FALSE","America/Chicago"
-"38120","35.12352","-89.85219","Memphis","TN","Tennessee","TRUE","","14956","598.5","47157","Shelby","{""47157"": ""100""}","Shelby","47157","FALSE","FALSE","America/Chicago"
-"38122","35.15893","-89.92128","Memphis","TN","Tennessee","TRUE","","24419","1250.0","47157","Shelby","{""47157"": ""100""}","Shelby","47157","FALSE","FALSE","America/Chicago"
-"38125","35.02586","-89.78865","Memphis","TN","Tennessee","TRUE","","38131","771.5","47157","Shelby","{""47157"": ""100""}","Shelby","47157","FALSE","FALSE","America/Chicago"
-"38126","35.12695","-90.04363","Memphis","TN","Tennessee","TRUE","","6329","1345.0","47157","Shelby","{""47157"": ""100""}","Shelby","47157","FALSE","FALSE","America/Chicago"
-"38127","35.23765","-90.01756","Memphis","TN","Tennessee","TRUE","","43086","442.9","47157","Shelby","{""47157"": ""100""}","Shelby","47157","FALSE","FALSE","America/Chicago"
-"38128","35.22611","-89.92618","Memphis","TN","Tennessee","TRUE","","45023","735.5","47157","Shelby","{""47157"": ""100""}","Shelby","47157","FALSE","FALSE","America/Chicago"
-"38131","35.06631","-89.99205","Memphis","TN","Tennessee","TRUE","","0","0.0","47157","Shelby","{""47157"": ""0""}","Shelby","47157","FALSE","FALSE","America/Chicago"
-"38132","35.07131","-90.00136","Memphis","TN","Tennessee","TRUE","","0","0.0","47157","Shelby","{""47157"": ""100""}","Shelby","47157","FALSE","FALSE","America/Chicago"
-"38133","35.21293","-89.79427","Memphis","TN","Tennessee","TRUE","","22266","679.0","47157","Shelby","{""47157"": ""100""}","Shelby","47157","FALSE","FALSE","America/Chicago"
-"38134","35.17696","-89.85992","Memphis","TN","Tennessee","TRUE","","45612","946.3","47157","Shelby","{""47157"": ""100""}","Shelby","47157","FALSE","FALSE","America/Chicago"
-"38135","35.2382","-89.84934","Memphis","TN","Tennessee","TRUE","","29373","886.7","47157","Shelby","{""47157"": ""100""}","Shelby","47157","FALSE","FALSE","America/Chicago"
-"38138","35.08482","-89.79929","Germantown","TN","Tennessee","TRUE","","25228","821.2","47157","Shelby","{""47157"": ""100""}","Shelby","47157","FALSE","FALSE","America/Chicago"
-"38139","35.08549","-89.75537","Germantown","TN","Tennessee","TRUE","","15610","679.6","47157","Shelby","{""47157"": ""100""}","Shelby","47157","FALSE","FALSE","America/Chicago"
-"38141","35.01598","-89.85474","Memphis","TN","Tennessee","TRUE","","22861","1130.4","47157","Shelby","{""47157"": ""100""}","Shelby","47157","FALSE","FALSE","America/Chicago"
-"38152","35.12278","-89.93396","Memphis","TN","Tennessee","TRUE","","885","6640.1","47157","Shelby","{""47157"": ""100""}","Shelby","47157","FALSE","FALSE","America/Chicago"
-"38201","36.12283","-88.52912","McKenzie","TN","Tennessee","TRUE","","10947","29.9","47017","Carroll","{""47017"": ""78.27"", ""47183"": ""15.63"", ""47079"": ""6.09""}","Carroll|Weakley|Henry","47017|47183|47079","FALSE","FALSE","America/Chicago"
-"38220","35.98795","-88.67061","Atwood","TN","Tennessee","TRUE","","1656","16.4","47017","Carroll","{""47017"": ""92.05"", ""47053"": ""7.95""}","Carroll|Gibson","47017|47053","FALSE","FALSE","America/Chicago"
-"38221","36.24504","-88.03583","Big Sandy","TN","Tennessee","TRUE","","3325","11.8","47005","Benton","{""47005"": ""100""}","Benton","47005","FALSE","FALSE","America/Chicago"
-"38222","36.44511","-88.16463","Buchanan","TN","Tennessee","TRUE","","2589","14.2","47079","Henry","{""47079"": ""100""}","Henry","47079","FALSE","FALSE","America/Chicago"
-"38224","36.39138","-88.48608","Cottage Grove","TN","Tennessee","TRUE","","858","5.9","47079","Henry","{""47079"": ""94.56"", ""47183"": ""5.44""}","Henry|Weakley","47079|47183","FALSE","FALSE","America/Chicago"
-"38225","36.32087","-88.67904","Dresden","TN","Tennessee","TRUE","","5606","19.6","47183","Weakley","{""47183"": ""100""}","Weakley","47183","FALSE","FALSE","America/Chicago"
-"38226","36.48134","-88.6824","Dukedom","TN","Tennessee","TRUE","","256","4.2","47183","Weakley","{""47183"": ""100""}","Weakley","47183","FALSE","FALSE","America/Chicago"
-"38229","36.21998","-88.60838","Gleason","TN","Tennessee","TRUE","","2977","19.1","47183","Weakley","{""47183"": ""100""}","Weakley","47183","FALSE","FALSE","America/Chicago"
-"38230","36.15611","-88.77124","Greenfield","TN","Tennessee","TRUE","","3663","16.5","47183","Weakley","{""47183"": ""100""}","Weakley","47183","FALSE","FALSE","America/Chicago"
-"38231","36.21178","-88.4252","Henry","TN","Tennessee","TRUE","","1646","12.0","47079","Henry","{""47079"": ""100""}","Henry","47079","FALSE","FALSE","America/Chicago"
-"38232","36.34943","-89.32268","Hornbeak","TN","Tennessee","TRUE","","1849","14.0","47131","Obion","{""47131"": ""100""}","Obion","47131","FALSE","FALSE","America/Chicago"
-"38233","36.20283","-89.04853","Kenton","TN","Tennessee","TRUE","","2560","10.4","47053","Gibson","{""47053"": ""54.1"", ""47131"": ""45.9""}","Gibson|Obion","47053|47131","FALSE","FALSE","America/Chicago"
-"38235","35.98929","-88.56403","McLemoresville","TN","Tennessee","TRUE","","408","20.7","47017","Carroll","{""47017"": ""100""}","Carroll","47017","FALSE","FALSE","America/Chicago"
-"38236","36.17195","-88.27246","Mansfield","TN","Tennessee","TRUE","","463","4.9","47079","Henry","{""47079"": ""100""}","Henry","47079","FALSE","FALSE","America/Chicago"
-"38237","36.3595","-88.83433","Martin","TN","Tennessee","TRUE","","15648","46.4","47183","Weakley","{""47183"": ""100""}","Weakley","47183","FALSE","FALSE","America/Chicago"
-"38240","36.2513","-89.31926","Obion","TN","Tennessee","TRUE","","2472","11.0","47131","Obion","{""47131"": ""96.55"", ""47045"": ""3.45""}","Obion|Dyer","47131|47045","FALSE","FALSE","America/Chicago"
-"38241","36.42572","-88.58489","Palmersville","TN","Tennessee","TRUE","","1006","5.9","47183","Weakley","{""47183"": ""100""}","Weakley","47183","FALSE","FALSE","America/Chicago"
-"38242","36.30373","-88.32802","Paris","TN","Tennessee","TRUE","","20296","42.5","47079","Henry","{""47079"": ""99.33"", ""47183"": ""0.67""}","Henry|Weakley","47079|47183","FALSE","FALSE","America/Chicago"
-"38251","36.44525","-88.35593","Puryear","TN","Tennessee","TRUE","","2828","12.2","47079","Henry","{""47079"": ""100""}","Henry","47079","FALSE","FALSE","America/Chicago"
-"38253","36.29684","-89.05191","Rives","TN","Tennessee","TRUE","","1131","8.2","47131","Obion","{""47131"": ""100""}","Obion","47131","FALSE","FALSE","America/Chicago"
-"38254","36.37494","-89.34734","Samburg","TN","Tennessee","TRUE","","78","44.5","47131","Obion","{""47131"": ""100""}","Obion","47131","FALSE","FALSE","America/Chicago"
-"38255","36.23861","-88.86379","Sharon","TN","Tennessee","TRUE","","2324","19.1","47183","Weakley","{""47183"": ""100""}","Weakley","47183","FALSE","FALSE","America/Chicago"
-"38256","36.3064","-88.13039","Springville","TN","Tennessee","TRUE","","3131","20.6","47079","Henry","{""47079"": ""100""}","Henry","47079","FALSE","FALSE","America/Chicago"
-"38257","36.46034","-88.8741","South Fulton","TN","Tennessee","TRUE","","4506","31.8","47131","Obion","{""47131"": ""96.88"", ""47183"": ""3.12""}","Obion|Weakley","47131|47183","FALSE","FALSE","America/Chicago"
-"38258","36.02598","-88.61744","Trezevant","TN","Tennessee","TRUE","","1441","20.4","47017","Carroll","{""47017"": ""100""}","Carroll","47017","FALSE","FALSE","America/Chicago"
-"38259","36.20016","-89.18377","Trimble","TN","Tennessee","TRUE","","609","8.4","47045","Dyer","{""47045"": ""91.74"", ""47131"": ""5.58"", ""47053"": ""2.67""}","Dyer|Obion|Gibson","47045|47131|47053","FALSE","FALSE","America/Chicago"
-"38260","36.36545","-89.21066","Troy","TN","Tennessee","TRUE","","3713","21.8","47131","Obion","{""47131"": ""100""}","Obion","47131","FALSE","FALSE","America/Chicago"
-"38261","36.43234","-89.11643","Union City","TN","Tennessee","TRUE","","15475","32.1","47131","Obion","{""47131"": ""100""}","Obion","47131","FALSE","FALSE","America/Chicago"
-"38301","35.586","-88.85281","Jackson","TN","Tennessee","TRUE","","33554","78.5","47113","Madison","{""47113"": ""100""}","Madison","47113","FALSE","FALSE","America/Chicago"
-"38305","35.70199","-88.76793","Jackson","TN","Tennessee","TRUE","","52194","155.7","47113","Madison","{""47113"": ""99.7"", ""47017"": ""0.3""}","Madison|Carroll","47113|47017","FALSE","FALSE","America/Chicago"
-"38310","35.25849","-88.39883","Adamsville","TN","Tennessee","TRUE","","6291","21.3","47109","McNairy","{""47109"": ""66.72"", ""47071"": ""33.28""}","McNairy|Hardin","47109|47071","FALSE","FALSE","America/Chicago"
-"38311","35.43642","-88.10553","Bath Springs","TN","Tennessee","TRUE","","933","6.2","47039","Decatur","{""47039"": ""100""}","Decatur","47039","FALSE","FALSE","America/Chicago"
-"38313","35.60026","-88.62504","Beech Bluff","TN","Tennessee","TRUE","","3182","16.9","47113","Madison","{""47113"": ""59.24"", ""47077"": ""21"", ""47023"": ""19.76""}","Madison|Henderson|Chester","47113|47077|47023","FALSE","FALSE","America/Chicago"
-"38315","35.26727","-88.62638","Bethel Springs","TN","Tennessee","TRUE","","3775","13.1","47109","McNairy","{""47109"": ""93.6"", ""47023"": ""6.4""}","McNairy|Chester","47109|47023","FALSE","FALSE","America/Chicago"
-"38316","36.06851","-88.8149","Bradford","TN","Tennessee","TRUE","","3005","18.2","47053","Gibson","{""47053"": ""100""}","Gibson","47053","FALSE","FALSE","America/Chicago"
-"38317","36.05457","-88.27454","Bruceton","TN","Tennessee","TRUE","","2331","24.9","47017","Carroll","{""47017"": ""97.4"", ""47005"": ""2.6""}","Carroll|Benton","47017|47005","FALSE","FALSE","America/Chicago"
-"38318","35.95571","-88.26285","Buena Vista","TN","Tennessee","TRUE","","463","4.3","47017","Carroll","{""47017"": ""100""}","Carroll","47017","FALSE","FALSE","America/Chicago"
-"38320","36.05142","-88.11364","Camden","TN","Tennessee","TRUE","","10506","27.5","47005","Benton","{""47005"": ""100""}","Benton","47005","FALSE","FALSE","America/Chicago"
-"38321","35.83715","-88.52987","Cedar Grove","TN","Tennessee","TRUE","","2300","9.3","47017","Carroll","{""47017"": ""63.31"", ""47077"": ""36.69""}","Carroll|Henderson","47017|47077","FALSE","FALSE","America/Chicago"
-"38326","35.05788","-88.28787","Counce","TN","Tennessee","TRUE","","2554","18.5","47071","Hardin","{""47071"": ""98.95"", ""28141"": ""1.05""}","Hardin|Tishomingo","47071|28141","FALSE","FALSE","America/Chicago"
-"38327","35.22119","-88.29917","Crump","TN","Tennessee","TRUE","","431","54.1","47071","Hardin","{""47071"": ""100""}","Hardin","47071","FALSE","FALSE","America/Chicago"
-"38328","35.67783","-88.21651","Darden","TN","Tennessee","TRUE","","793","12.3","47077","Henderson","{""47077"": ""100""}","Henderson","47077","FALSE","FALSE","America/Chicago"
-"38329","35.54408","-88.11059","Decaturville","TN","Tennessee","TRUE","","3642","13.0","47039","Decatur","{""47039"": ""97.67"", ""47077"": ""2.33""}","Decatur|Henderson","47039|47077","FALSE","FALSE","America/Chicago"
-"38330","36.06702","-89.03658","Dyer","TN","Tennessee","TRUE","","4632","25.7","47053","Gibson","{""47053"": ""100""}","Gibson","47053","FALSE","FALSE","America/Chicago"
-"38332","35.41911","-88.42645","Enville","TN","Tennessee","TRUE","","1326","9.5","47023","Chester","{""47023"": ""90.71"", ""47109"": ""9.29""}","Chester|McNairy","47023|47109","FALSE","FALSE","America/Chicago"
-"38333","36.12376","-87.96956","Eva","TN","Tennessee","TRUE","","161","2.5","47005","Benton","{""47005"": ""100""}","Benton","47005","FALSE","FALSE","America/Chicago"
-"38334","35.35445","-88.58751","Finger","TN","Tennessee","TRUE","","2056","16.8","47109","McNairy","{""47109"": ""62.53"", ""47023"": ""37.47""}","McNairy|Chester","47109|47023","FALSE","FALSE","America/Chicago"
-"38337","35.78532","-89.01404","Gadsden","TN","Tennessee","TRUE","","1488","21.2","47033","Crockett","{""47033"": ""100""}","Crockett","47033","FALSE","FALSE","America/Chicago"
-"38339","35.0524","-88.51505","Guys","TN","Tennessee","TRUE","","629","13.2","47109","McNairy","{""47109"": ""100""}","McNairy","47109","FALSE","FALSE","America/Chicago"
-"38340","35.39985","-88.68049","Henderson","TN","Tennessee","TRUE","","12510","27.2","47023","Chester","{""47023"": ""97.82"", ""47069"": ""2.18""}","Chester|Hardeman","47023|47069","FALSE","FALSE","America/Chicago"
-"38341","35.87981","-88.09095","Holladay","TN","Tennessee","TRUE","","2375","6.7","47005","Benton","{""47005"": ""80.86"", ""47039"": ""18.29"", ""47017"": ""0.84""}","Benton|Decatur|Carroll","47005|47039|47017","FALSE","FALSE","America/Chicago"
-"38342","36.10499","-88.28376","Hollow Rock","TN","Tennessee","TRUE","","1450","16.2","47017","Carroll","{""47017"": ""100""}","Carroll","47017","FALSE","FALSE","America/Chicago"
-"38343","35.82686","-88.92626","Humboldt","TN","Tennessee","TRUE","","15413","43.0","47053","Gibson","{""47053"": ""78.35"", ""47113"": ""15.39"", ""47033"": ""6.27""}","Gibson|Madison|Crockett","47053|47113|47033","FALSE","FALSE","America/Chicago"
-"38344","35.97828","-88.42846","Huntingdon","TN","Tennessee","TRUE","","7860","19.0","47017","Carroll","{""47017"": ""100""}","Carroll","47017","FALSE","FALSE","America/Chicago"
-"38345","35.59363","-88.51257","Huron","TN","Tennessee","TRUE","","1520","11.7","47077","Henderson","{""47077"": ""100""}","Henderson","47077","FALSE","FALSE","America/Chicago"
-"38347","35.47776","-88.49862","Jacks Creek","TN","Tennessee","TRUE","","586","55.8","47023","Chester","{""47023"": ""100""}","Chester","47023","FALSE","FALSE","America/Chicago"
-"38348","35.8685","-88.65383","Lavinia","TN","Tennessee","TRUE","","996","7.6","47017","Carroll","{""47017"": ""100""}","Carroll","47017","FALSE","FALSE","America/Chicago"
-"38351","35.6654","-88.40307","Lexington","TN","Tennessee","TRUE","","18459","33.8","47077","Henderson","{""47077"": ""99.86"", ""47113"": ""0.14""}","Henderson|Madison","47077|47113","FALSE","FALSE","America/Chicago"
-"38352","35.53163","-88.53216","Luray","TN","Tennessee","TRUE","","644","13.0","47023","Chester","{""47023"": ""78.14"", ""47077"": ""21.86""}","Chester|Henderson","47023|47077","FALSE","FALSE","America/Chicago"
-"38355","35.78694","-88.76755","Medina","TN","Tennessee","TRUE","","6404","65.9","47053","Gibson","{""47053"": ""79.09"", ""47113"": ""20.91""}","Gibson|Madison","47053|47113","FALSE","FALSE","America/Chicago"
-"38356","35.43449","-88.89534","Medon","TN","Tennessee","TRUE","","2728","14.6","47113","Madison","{""47113"": ""67.4"", ""47069"": ""24.03"", ""47023"": ""8.57""}","Madison|Hardeman|Chester","47113|47069|47023","FALSE","FALSE","America/Chicago"
-"38357","35.04583","-88.41546","Michie","TN","Tennessee","TRUE","","2762","17.3","47109","McNairy","{""47109"": ""87.01"", ""47071"": ""12.99""}","McNairy|Hardin","47109|47071","FALSE","FALSE","America/Chicago"
-"38358","35.91668","-88.75932","Milan","TN","Tennessee","TRUE","","12077","56.5","47053","Gibson","{""47053"": ""100""}","Gibson","47053","FALSE","FALSE","America/Chicago"
-"38359","35.36983","-88.35135","Milledgeville","TN","Tennessee","TRUE","","284","18.8","47109","McNairy","{""47109"": ""51.8"", ""47071"": ""42.45"", ""47023"": ""5.76""}","McNairy|Hardin|Chester","47109|47071|47023","FALSE","FALSE","America/Chicago"
-"38361","35.3176","-88.28499","Morris Chapel","TN","Tennessee","TRUE","","947","9.0","47071","Hardin","{""47071"": ""98.09"", ""47109"": ""1.91""}","Hardin|McNairy","47071|47109","FALSE","FALSE","America/Chicago"
-"38362","35.72906","-88.78291","Oakfield","TN","Tennessee","TRUE","","1363","63.2","47113","Madison","{""47113"": ""100""}","Madison","47113","FALSE","FALSE","America/Chicago"
-"38363","35.6853","-88.11312","Parsons","TN","Tennessee","TRUE","","5291","22.3","47039","Decatur","{""47039"": ""99.03"", ""47077"": ""0.97""}","Decatur|Henderson","47039|47077","FALSE","FALSE","America/Chicago"
-"38365","35.05363","-88.23585","Pickwick Dam","TN","Tennessee","TRUE","","0","0.0","47071","Hardin","{""47071"": ""100""}","Hardin","47071","FALSE","FALSE","America/Chicago"
-"38366","35.47611","-88.74604","Pinson","TN","Tennessee","TRUE","","1955","16.4","47113","Madison","{""47113"": ""78.16"", ""47023"": ""21.84""}","Madison|Chester","47113|47023","FALSE","FALSE","America/Chicago"
-"38367","35.05297","-88.6279","Ramer","TN","Tennessee","TRUE","","2953","14.6","47109","McNairy","{""47109"": ""100""}","McNairy","47109","FALSE","FALSE","America/Chicago"
-"38368","35.50485","-88.35342","Reagan","TN","Tennessee","TRUE","","1901","13.6","47077","Henderson","{""47077"": ""76.22"", ""47023"": ""23.78""}","Henderson|Chester","47077|47023","FALSE","FALSE","America/Chicago"
-"38369","36.13228","-88.96121","Rutherford","TN","Tennessee","TRUE","","1692","16.8","47053","Gibson","{""47053"": ""100""}","Gibson","47053","FALSE","FALSE","America/Chicago"
-"38370","35.38412","-88.24391","Saltillo","TN","Tennessee","TRUE","","703","13.9","47071","Hardin","{""47071"": ""100""}","Hardin","47071","FALSE","FALSE","America/Chicago"
-"38371","35.42296","-88.29819","Sardis","TN","Tennessee","TRUE","","951","8.6","47077","Henderson","{""47077"": ""75.22"", ""47071"": ""24.78""}","Henderson|Hardin","47077|47071","FALSE","FALSE","America/Chicago"
-"38372","35.1695","-88.14364","Savannah","TN","Tennessee","TRUE","","17266","21.0","47071","Hardin","{""47071"": ""100""}","Hardin","47071","FALSE","FALSE","America/Chicago"
-"38374","35.51577","-88.23483","Scotts Hill","TN","Tennessee","TRUE","","2140","18.7","47077","Henderson","{""47077"": ""56.77"", ""47039"": ""43.23""}","Henderson|Decatur","47077|47039","FALSE","FALSE","America/Chicago"
-"38375","35.15768","-88.5893","Selmer","TN","Tennessee","TRUE","","8653","29.2","47109","McNairy","{""47109"": ""100""}","McNairy","47109","FALSE","FALSE","America/Chicago"
-"38376","35.10335","-88.37188","Shiloh","TN","Tennessee","TRUE","","147","13.8","47071","Hardin","{""47071"": ""64.38"", ""47109"": ""35.62""}","Hardin|McNairy","47071|47109","FALSE","FALSE","America/Chicago"
-"38379","35.16424","-88.43375","Stantonville","TN","Tennessee","TRUE","","1359","17.9","47109","McNairy","{""47109"": ""100""}","McNairy","47109","FALSE","FALSE","America/Chicago"
-"38380","35.79601","-88.03258","Sugar Tree","TN","Tennessee","TRUE","","528","5.0","47039","Decatur","{""47039"": ""85.19"", ""47005"": ""14.81""}","Decatur|Benton","47039|47005","FALSE","FALSE","America/Chicago"
-"38381","35.35712","-88.96621","Toone","TN","Tennessee","TRUE","","1690","11.8","47069","Hardeman","{""47069"": ""100""}","Hardeman","47069","FALSE","FALSE","America/Chicago"
-"38382","35.9672","-88.99287","Trenton","TN","Tennessee","TRUE","","8650","19.2","47053","Gibson","{""47053"": ""100""}","Gibson","47053","FALSE","FALSE","America/Chicago"
-"38387","35.86743","-88.27749","Westport","TN","Tennessee","TRUE","","222","2.5","47017","Carroll","{""47017"": ""100""}","Carroll","47017","FALSE","FALSE","America/Chicago"
-"38388","35.7813","-88.32129","Wildersville","TN","Tennessee","TRUE","","2111","10.9","47077","Henderson","{""47077"": ""100""}","Henderson","47077","FALSE","FALSE","America/Chicago"
-"38390","35.84051","-88.37231","Yuma","TN","Tennessee","TRUE","","1016","14.6","47017","Carroll","{""47017"": ""87.1"", ""47077"": ""12.9""}","Carroll|Henderson","47017|47077","FALSE","FALSE","America/Chicago"
-"38391","35.55104","-88.99403","Denmark","TN","Tennessee","TRUE","","1036","6.5","47113","Madison","{""47113"": ""100""}","Madison","47113","FALSE","FALSE","America/Chicago"
-"38392","35.46457","-89.03333","Mercer","TN","Tennessee","TRUE","","566","6.5","47113","Madison","{""47113"": ""89.3"", ""47069"": ""10.7""}","Madison|Hardeman","47113|47069","FALSE","FALSE","America/Chicago"
-"38401","35.62902","-87.02062","Columbia","TN","Tennessee","TRUE","","61787","79.4","47119","Maury","{""47119"": ""99.01"", ""47117"": ""0.76"", ""47187"": ""0.23""}","Maury|Marshall|Williamson","47119|47117|47187","FALSE","FALSE","America/Chicago"
-"38425","35.40586","-87.94814","Clifton","TN","Tennessee","TRUE","","3790","13.8","47181","Wayne","{""47181"": ""91.17"", ""47071"": ""5.37"", ""47135"": ""3.46""}","Wayne|Hardin|Perry","47181|47071|47135","FALSE","FALSE","America/Chicago"
-"38449","35.0482","-86.82589","Ardmore","TN","Tennessee","TRUE","","2772","18.8","47055","Giles","{""47055"": ""52.69"", ""47103"": ""47.31""}","Giles|Lincoln","47055|47103","FALSE","FALSE","America/Chicago"
-"38450","35.18437","-87.79174","Collinwood","TN","Tennessee","TRUE","","3089","10.6","47181","Wayne","{""47181"": ""100""}","Wayne","47181","FALSE","FALSE","America/Chicago"
-"38451","35.46631","-86.99181","Culleoka","TN","Tennessee","TRUE","","4300","20.5","47119","Maury","{""47119"": ""89.24"", ""47117"": ""9.02"", ""47055"": ""1.74""}","Maury|Marshall|Giles","47119|47117|47055","FALSE","FALSE","America/Chicago"
-"38452","35.08042","-87.79628","Cypress Inn","TN","Tennessee","TRUE","","1297","9.4","47181","Wayne","{""47181"": ""100""}","Wayne","47181","FALSE","FALSE","America/Chicago"
-"38453","35.12138","-86.81208","Dellrose","TN","Tennessee","TRUE","","338","8.3","47103","Lincoln","{""47103"": ""74.8"", ""47055"": ""25.2""}","Lincoln|Giles","47103|47055","FALSE","FALSE","America/Chicago"
-"38454","35.72318","-87.35211","Duck River","TN","Tennessee","TRUE","","922","5.8","47081","Hickman","{""47081"": ""100""}","Hickman","47081","FALSE","FALSE","America/Chicago"
-"38455","35.04888","-86.88709","Elkton","TN","Tennessee","TRUE","","179","129.6","47055","Giles","{""47055"": ""100""}","Giles","47055","FALSE","FALSE","America/Chicago"
-"38456","35.33546","-87.26638","Ethridge","TN","Tennessee","TRUE","","5165","27.5","47099","Lawrence","{""47099"": ""84.29"", ""47055"": ""15.71""}","Lawrence|Giles","47099|47055","FALSE","FALSE","America/Chicago"
-"38457","35.02936","-87.28446","Five Points","TN","Tennessee","TRUE","","669","9.5","47099","Lawrence","{""47099"": ""100""}","Lawrence","47099","FALSE","FALSE","America/Chicago"
-"38459","35.1943","-86.80544","Frankewing","TN","Tennessee","TRUE","","296","5.4","47103","Lincoln","{""47103"": ""72.85"", ""47055"": ""27.15""}","Lincoln|Giles","47103|47055","FALSE","FALSE","America/Chicago"
-"38460","35.08864","-87.15322","Goodspring","TN","Tennessee","TRUE","","1422","16.5","47055","Giles","{""47055"": ""100""}","Giles","47055","FALSE","FALSE","America/Chicago"
-"38461","35.593","-87.34196","Hampshire","TN","Tennessee","TRUE","","1279","7.1","47119","Maury","{""47119"": ""60.33"", ""47101"": ""39.67""}","Maury|Lewis","47119|47101","FALSE","FALSE","America/Chicago"
-"38462","35.5311","-87.55161","Hohenwald","TN","Tennessee","TRUE","","10281","20.0","47101","Lewis","{""47101"": ""99.47"", ""47081"": ""0.53""}","Lewis|Hickman","47101|47081","FALSE","FALSE","America/Chicago"
-"38463","35.06826","-87.64451","Iron City","TN","Tennessee","TRUE","","2193","7.5","47181","Wayne","{""47181"": ""72.2"", ""47099"": ""27.8""}","Wayne|Lawrence","47181|47099","FALSE","FALSE","America/Chicago"
-"38464","35.28669","-87.42957","Lawrenceburg","TN","Tennessee","TRUE","","22347","30.9","47099","Lawrence","{""47099"": ""95.15"", ""47181"": ""2.59"", ""47055"": ""2.26""}","Lawrence|Wayne|Giles","47099|47181|47055","FALSE","FALSE","America/Chicago"
-"38468","35.131","-87.29381","Leoma","TN","Tennessee","TRUE","","5604","22.0","47099","Lawrence","{""47099"": ""96.71"", ""47055"": ""3.29""}","Lawrence|Giles","47099|47055","FALSE","FALSE","America/Chicago"
-"38469","35.0718","-87.42725","Loretto","TN","Tennessee","TRUE","","4140","23.6","47099","Lawrence","{""47099"": ""100""}","Lawrence","47099","FALSE","FALSE","America/Chicago"
-"38471","35.07429","-87.92131","Lutts","TN","Tennessee","TRUE","","333","1.8","47181","Wayne","{""47181"": ""100""}","Wayne","47181","FALSE","FALSE","America/Chicago"
-"38472","35.37758","-87.0386","Lynnville","TN","Tennessee","TRUE","","2978","11.6","47055","Giles","{""47055"": ""97.74"", ""47117"": ""2.26""}","Giles|Marshall","47055|47117","FALSE","FALSE","America/Chicago"
-"38473","35.0277","-87.17113","Minor Hill","TN","Tennessee","TRUE","","1198","18.2","47055","Giles","{""47055"": ""100""}","Giles","47055","FALSE","FALSE","America/Chicago"
-"38474","35.51684","-87.22653","Mount Pleasant","TN","Tennessee","TRUE","","8389","29.8","47119","Maury","{""47119"": ""96.12"", ""47099"": ""1.53"", ""47101"": ""1.29"", ""47055"": ""1.06""}","Maury|Lawrence|Lewis|Giles","47119|47099|47101|47055","FALSE","FALSE","America/Chicago"
-"38475","35.25348","-88.01611","Olivehill","TN","Tennessee","TRUE","","700","4.3","47071","Hardin","{""47071"": ""91.81"", ""47181"": ""8.19""}","Hardin|Wayne","47071|47181","FALSE","FALSE","America/Chicago"
-"38476","35.84119","-87.21374","Primm Springs","TN","Tennessee","TRUE","","1099","10.2","47187","Williamson","{""47187"": ""46.25"", ""47081"": ""35.59"", ""47119"": ""18.16""}","Williamson|Hickman|Maury","47187|47081|47119","FALSE","FALSE","America/Chicago"
-"38477","35.05244","-87.00394","Prospect","TN","Tennessee","TRUE","","2717","11.2","47055","Giles","{""47055"": ""100""}","Giles","47055","FALSE","FALSE","America/Chicago"
-"38478","35.21489","-87.01128","Pulaski","TN","Tennessee","TRUE","","17602","26.0","47055","Giles","{""47055"": ""100""}","Giles","47055","FALSE","FALSE","America/Chicago"
-"38481","35.03138","-87.49239","Saint Joseph","TN","Tennessee","TRUE","","1047","34.5","47099","Lawrence","{""47099"": ""100""}","Lawrence","47099","FALSE","FALSE","America/Chicago"
-"38482","35.7689","-87.14526","Santa Fe","TN","Tennessee","TRUE","","1635","14.7","47119","Maury","{""47119"": ""100""}","Maury","47119","FALSE","FALSE","America/Chicago"
-"38483","35.43768","-87.33956","Summertown","TN","Tennessee","TRUE","","5910","23.4","47099","Lawrence","{""47099"": ""74.52"", ""47101"": ""21.56"", ""47119"": ""2"", ""47055"": ""1.92""}","Lawrence|Lewis|Maury|Giles","47099|47101|47119|47055","FALSE","FALSE","America/Chicago"
-"38485","35.33676","-87.77362","Waynesboro","TN","Tennessee","TRUE","","6465","9.2","47181","Wayne","{""47181"": ""99.23"", ""47101"": ""0.77""}","Wayne|Lewis","47181|47101","FALSE","FALSE","America/Chicago"
-"38486","35.17056","-87.5451","Westpoint","TN","Tennessee","TRUE","","833","4.5","47099","Lawrence","{""47099"": ""89.66"", ""47181"": ""10.34""}","Lawrence|Wayne","47099|47181","FALSE","FALSE","America/Chicago"
-"38487","35.72194","-87.23475","Williamsport","TN","Tennessee","TRUE","","1044","8.3","47119","Maury","{""47119"": ""80.04"", ""47081"": ""19.96""}","Maury|Hickman","47119|47081","FALSE","FALSE","America/Chicago"
-"38488","35.04059","-86.68473","Taft","TN","Tennessee","TRUE","","2424","15.9","47103","Lincoln","{""47103"": ""100""}","Lincoln","47103","FALSE","FALSE","America/Chicago"
-"38501","36.2282","-85.53847","Cookeville","TN","Tennessee","TRUE","","39082","169.3","47141","Putnam","{""47141"": ""93"", ""47087"": ""6.92"", ""47133"": ""0.08""}","Putnam|Jackson|Overton","47141|47087|47133","FALSE","FALSE","America/Chicago"
-"38504","36.39558","-84.72439","Allardt","TN","Tennessee","TRUE","","722","5.9","47049","Fentress","{""47049"": ""96.34"", ""47151"": ""3.66""}","Fentress|Scott","47049|47151","FALSE","FALSE","America/Chicago"
-"38505","36.17512","-85.50507","Cookeville","TN","Tennessee","TRUE","","2017","5860.8","47141","Putnam","{""47141"": ""100""}","Putnam","47141","FALSE","FALSE","America/Chicago"
-"38506","36.1819","-85.44078","Cookeville","TN","Tennessee","TRUE","","28636","68.1","47141","Putnam","{""47141"": ""84.38"", ""47133"": ""12.68"", ""47185"": ""2.94""}","Putnam|Overton|White","47141|47133|47185","FALSE","FALSE","America/Chicago"
-"38541","36.52956","-85.33738","Allons","TN","Tennessee","TRUE","","1777","13.4","47133","Overton","{""47133"": ""65.78"", ""47027"": ""34.22""}","Overton|Clay","47133|47027","FALSE","FALSE","America/Chicago"
-"38542","36.31716","-85.20224","Allred","TN","Tennessee","TRUE","","19","2.4","47133","Overton","{""47133"": ""100""}","Overton","47133","FALSE","FALSE","America/Chicago"
-"38543","36.37242","-85.16624","Alpine","TN","Tennessee","TRUE","","581","4.7","47133","Overton","{""47133"": ""83.04"", ""47137"": ""16.96""}","Overton|Pickett","47133|47137","FALSE","FALSE","America/Chicago"
-"38544","36.11987","-85.66489","Baxter","TN","Tennessee","TRUE","","7211","33.6","47141","Putnam","{""47141"": ""96.04"", ""47041"": ""3.96""}","Putnam|DeKalb","47141|47041","FALSE","FALSE","America/Chicago"
-"38545","36.23209","-85.66285","Bloomington Springs","TN","Tennessee","TRUE","","1751","27.4","47087","Jackson","{""47087"": ""54.21"", ""47141"": ""45.79""}","Jackson|Putnam","47087|47141","FALSE","FALSE","America/Chicago"
-"38547","36.15169","-86.0084","Brush Creek","TN","Tennessee","TRUE","","1939","22.8","47159","Smith","{""47159"": ""100""}","Smith","47159","FALSE","FALSE","America/Chicago"
-"38548","36.17047","-85.79151","Buffalo Valley","TN","Tennessee","TRUE","","931","13.4","47141","Putnam","{""47141"": ""61.56"", ""47159"": ""38.44""}","Putnam|Smith","47141|47159","FALSE","FALSE","America/Chicago"
-"38549","36.56081","-85.1516","Byrdstown","TN","Tennessee","TRUE","","3559","18.7","47137","Pickett","{""47137"": ""98.8"", ""47049"": ""1.2""}","Pickett|Fentress","47137|47049","FALSE","FALSE","America/Chicago"
-"38551","36.55797","-85.48547","Celina","TN","Tennessee","TRUE","","3993","16.6","47027","Clay","{""47027"": ""99.34"", ""47087"": ""0.66""}","Clay|Jackson","47027|47087","FALSE","FALSE","America/Chicago"
-"38552","36.22039","-85.81002","Chestnut Mound","TN","Tennessee","TRUE","","157","9.6","47159","Smith","{""47159"": ""100""}","Smith","47159","FALSE","FALSE","America/Chicago"
-"38553","36.20186","-85.00634","Clarkrange","TN","Tennessee","TRUE","","2709","21.8","47049","Fentress","{""47049"": ""100""}","Fentress","47049","FALSE","FALSE","America/Chicago"
-"38554","36.2495","-85.16166","Crawford","TN","Tennessee","TRUE","","1103","13.2","47133","Overton","{""47133"": ""100""}","Overton","47133","FALSE","FALSE","America/Chicago"
-"38555","35.88935","-84.98069","Crossville","TN","Tennessee","TRUE","","19661","78.3","47035","Cumberland","{""47035"": ""100""}","Cumberland","47035","FALSE","FALSE","America/Chicago"
-"38556","36.40939","-84.92373","Jamestown","TN","Tennessee","TRUE","","11905","14.4","47049","Fentress","{""47049"": ""99.73"", ""47137"": ""0.27""}","Fentress|Pickett","47049|47137","FALSE","FALSE","America/Chicago"
-"38558","36.00774","-84.87192","Crossville","TN","Tennessee","TRUE","","9076","154.1","47035","Cumberland","{""47035"": ""100""}","Cumberland","47035","FALSE","FALSE","America/Chicago"
-"38559","35.80753","-85.50623","Doyle","TN","Tennessee","TRUE","","1260","24.9","47185","White","{""47185"": ""79.03"", ""47175"": ""20.97""}","White|Van Buren","47185|47175","FALSE","FALSE","America/Chicago"
-"38560","36.23317","-85.87015","Elmwood","TN","Tennessee","TRUE","","1405","16.0","47159","Smith","{""47159"": ""100""}","Smith","47159","FALSE","FALSE","America/Chicago"
-"38562","36.35439","-85.65774","Gainesboro","TN","Tennessee","TRUE","","6504","18.3","47087","Jackson","{""47087"": ""100""}","Jackson","47087","FALSE","FALSE","America/Chicago"
-"38563","36.20009","-86.02205","Gordonsville","TN","Tennessee","TRUE","","3410","41.5","47159","Smith","{""47159"": ""100""}","Smith","47159","FALSE","FALSE","America/Chicago"
-"38564","36.27566","-85.7481","Granville","TN","Tennessee","TRUE","","439","6.0","47087","Jackson","{""47087"": ""95.36"", ""47141"": ""4.64""}","Jackson|Putnam","47087|47141","FALSE","FALSE","America/Chicago"
-"38565","36.26275","-85.00949","Grimsley","TN","Tennessee","TRUE","","1167","42.1","47049","Fentress","{""47049"": ""100""}","Fentress","47049","FALSE","FALSE","America/Chicago"
-"38567","36.13572","-85.9163","Hickman","TN","Tennessee","TRUE","","685","12.1","47159","Smith","{""47159"": ""94.9"", ""47041"": ""5.1""}","Smith|DeKalb","47159|47041","FALSE","FALSE","America/Chicago"
-"38568","36.43131","-85.46822","Hilham","TN","Tennessee","TRUE","","1807","9.5","47133","Overton","{""47133"": ""65.29"", ""47027"": ""20.11"", ""47087"": ""14.6""}","Overton|Clay|Jackson","47133|47027|47087","FALSE","FALSE","America/Chicago"
-"38569","36.09835","-85.85544","Lancaster","TN","Tennessee","TRUE","","69","1.7","47159","Smith","{""47159"": ""69.42"", ""47041"": ""30.58""}","Smith|DeKalb","47159|47041","FALSE","FALSE","America/Chicago"
-"38570","36.37413","-85.32084","Livingston","TN","Tennessee","TRUE","","9325","33.7","47133","Overton","{""47133"": ""100""}","Overton","47133","FALSE","FALSE","America/Chicago"
-"38571","36.05276","-85.0138","Crossville","TN","Tennessee","TRUE","","14384","24.6","47035","Cumberland","{""47035"": ""100""}","Cumberland","47035","FALSE","FALSE","America/Chicago"
-"38572","35.84872","-85.13077","Crossville","TN","Tennessee","TRUE","","11246","28.1","47035","Cumberland","{""47035"": ""98.82"", ""47007"": ""1.18""}","Cumberland|Bledsoe","47035|47007","FALSE","FALSE","America/Chicago"
-"38573","36.48912","-85.21848","Monroe","TN","Tennessee","TRUE","","2028","12.0","47133","Overton","{""47133"": ""73.34"", ""47137"": ""26.66""}","Overton|Pickett","47133|47137","FALSE","FALSE","America/Chicago"
-"38574","36.13736","-85.23317","Monterey","TN","Tennessee","TRUE","","8677","19.4","47141","Putnam","{""47141"": ""62.52"", ""47133"": ""19.08"", ""47035"": ""13.56"", ""47049"": ""4.84""}","Putnam|Overton|Cumberland|Fentress","47141|47133|47035|47049","FALSE","FALSE","America/Chicago"
-"38575","36.55959","-85.63682","Moss","TN","Tennessee","TRUE","","1201","11.2","47027","Clay","{""47027"": ""100""}","Clay","47027","FALSE","FALSE","America/Chicago"
-"38577","36.56493","-84.96504","Pall Mall","TN","Tennessee","TRUE","","1485","7.6","47137","Pickett","{""47137"": ""58.98"", ""47049"": ""41.02""}","Pickett|Fentress","47137|47049","FALSE","FALSE","America/Chicago"
-"38578","35.98123","-85.19828","Pleasant Hill","TN","Tennessee","TRUE","","142","127.3","47035","Cumberland","{""47035"": ""100""}","Cumberland","47035","FALSE","FALSE","America/Chicago"
-"38579","35.83032","-85.55188","Quebeck","TN","Tennessee","TRUE","","1067","25.1","47185","White","{""47185"": ""100""}","White","47185","FALSE","FALSE","America/Chicago"
-"38580","36.27813","-85.29194","Rickman","TN","Tennessee","TRUE","","1905","21.1","47133","Overton","{""47133"": ""100""}","Overton","47133","FALSE","FALSE","America/Chicago"
-"38581","35.7388","-85.61893","Rock Island","TN","Tennessee","TRUE","","4105","15.9","47177","Warren","{""47177"": ""80.76"", ""47175"": ""18.24"", ""47041"": ""1""}","Warren|Van Buren|DeKalb","47177|47175|47041","FALSE","FALSE","America/Chicago"
-"38582","36.09389","-85.75424","Silver Point","TN","Tennessee","TRUE","","1531","12.8","47141","Putnam","{""47141"": ""78.19"", ""47041"": ""21.81""}","Putnam|DeKalb","47141|47041","FALSE","FALSE","America/Chicago"
-"38583","35.94324","-85.43927","Sparta","TN","Tennessee","TRUE","","24459","26.4","47185","White","{""47185"": ""90.82"", ""47035"": ""4.71"", ""47041"": ""2.6"", ""47175"": ""0.98"", ""47141"": ""0.89""}","White|Cumberland|DeKalb|Van Buren|Putnam","47185|47035|47041|47175|47141","FALSE","FALSE","America/Chicago"
-"38585","35.69355","-85.42668","Spencer","TN","Tennessee","TRUE","","4020","9.4","47175","Van Buren","{""47175"": ""100""}","Van Buren","47175","FALSE","FALSE","America/Chicago"
-"38587","35.86946","-85.61686","Walling","TN","Tennessee","TRUE","","1387","17.6","47185","White","{""47185"": ""100""}","White","47185","FALSE","FALSE","America/Chicago"
-"38588","36.45833","-85.72126","Whitleyville","TN","Tennessee","TRUE","","646","2.7","47087","Jackson","{""47087"": ""82.29"", ""47027"": ""17.71""}","Jackson|Clay","47087|47027","FALSE","FALSE","America/Chicago"
-"38589","36.2856","-85.07714","Wilder","TN","Tennessee","TRUE","","273","3.4","47133","Overton","{""47133"": ""64"", ""47049"": ""36""}","Overton|Fentress","47133|47049","FALSE","FALSE","America/Chicago"
-"38601","34.48202","-89.43964","Abbeville","MS","Mississippi","TRUE","","2073","8.3","28071","Lafayette","{""28071"": ""100""}","Lafayette","28071","FALSE","FALSE","America/Chicago"
-"38603","34.83463","-89.14271","Ashland","MS","Mississippi","TRUE","","3071","9.1","28009","Benton","{""28009"": ""98.13"", ""28139"": ""1.87""}","Benton|Tippah","28009|28139","FALSE","FALSE","America/Chicago"
-"38606","34.30467","-89.95592","Batesville","MS","Mississippi","TRUE","","15594","22.8","28107","Panola","{""28107"": ""99.04"", ""28071"": ""0.74"", ""28119"": ""0.22""}","Panola|Lafayette|Quitman","28107|28071|28119","FALSE","FALSE","America/Chicago"
-"38610","34.65293","-89.02614","Blue Mountain","MS","Mississippi","TRUE","","3078","12.5","28139","Tippah","{""28139"": ""86.79"", ""28145"": ""9.66"", ""28009"": ""3.56""}","Tippah|Union|Benton","28139|28145|28009","FALSE","FALSE","America/Chicago"
-"38611","34.8532","-89.67162","Byhalia","MS","Mississippi","TRUE","","15869","32.7","28093","Marshall","{""28093"": ""85.83"", ""28033"": ""14.17""}","Marshall|DeSoto","28093|28033","FALSE","FALSE","America/Chicago"
-"38614","34.15577","-90.60406","Clarksdale","MS","Mississippi","TRUE","","17812","27.7","28027","Coahoma","{""28027"": ""99.93"", ""28011"": ""0.07""}","Coahoma|Bolivar","28027|28011","FALSE","FALSE","America/Chicago"
-"38617","34.34946","-90.52248","Coahoma","MS","Mississippi","TRUE","","695","4.8","28027","Coahoma","{""28027"": ""100""}","Coahoma","28027","FALSE","FALSE","America/Chicago"
-"38618","34.70124","-89.93036","Coldwater","MS","Mississippi","TRUE","","12258","24.8","28137","Tate","{""28137"": ""97.92"", ""28093"": ""1.53"", ""28033"": ""0.55""}","Tate|Marshall|DeSoto","28137|28093|28033","FALSE","FALSE","America/Chicago"
-"38619","34.51446","-89.84234","Como","MS","Mississippi","TRUE","","5368","15.1","28107","Panola","{""28107"": ""76.8"", ""28071"": ""20.82"", ""28137"": ""2.38""}","Panola|Lafayette|Tate","28107|28071|28137","FALSE","FALSE","America/Chicago"
-"38620","34.22738","-89.90596","Courtland","MS","Mississippi","TRUE","","3571","24.4","28107","Panola","{""28107"": ""100""}","Panola","28107","FALSE","FALSE","America/Chicago"
-"38621","34.4491","-90.17014","Crenshaw","MS","Mississippi","TRUE","","1791","10.8","28107","Panola","{""28107"": ""69.63"", ""28119"": ""30.37""}","Panola|Quitman","28107|28119","FALSE","FALSE","America/Chicago"
-"38622","34.1719","-90.1385","Crowder","MS","Mississippi","TRUE","","862","277.7","28119","Quitman","{""28119"": ""59.15"", ""28107"": ""40.85""}","Quitman|Panola","28119|28107","FALSE","FALSE","America/Chicago"
-"38623","34.36162","-90.28052","Darling","MS","Mississippi","TRUE","","273","9.3","28119","Quitman","{""28119"": ""100""}","Quitman","28119","FALSE","FALSE","America/Chicago"
-"38625","34.60922","-88.82567","Dumas","MS","Mississippi","TRUE","","1611","17.0","28139","Tippah","{""28139"": ""67.01"", ""28145"": ""32.99""}","Tippah|Union","28139|28145","FALSE","FALSE","America/Chicago"
-"38626","34.51367","-90.41775","Dundee","MS","Mississippi","TRUE","","1009","2.4","28143","Tunica","{""28143"": ""74.8"", ""28027"": ""25.2""}","Tunica|Coahoma","28143|28027","FALSE","FALSE","America/Chicago"
-"38627","34.42428","-89.2237","Etta","MS","Mississippi","TRUE","","1375","11.9","28145","Union","{""28145"": ""80.36"", ""28071"": ""19.64""}","Union|Lafayette","28145|28071","FALSE","FALSE","America/Chicago"
-"38629","34.87502","-89.00097","Falkner","MS","Mississippi","TRUE","","2064","15.8","28139","Tippah","{""28139"": ""87.32"", ""28009"": ""12.68""}","Tippah|Benton","28139|28009","FALSE","FALSE","America/Chicago"
-"38630","34.27881","-90.68558","Farrell","MS","Mississippi","TRUE","","80","10.0","28027","Coahoma","{""28027"": ""100""}","Coahoma","28027","FALSE","FALSE","America/Chicago"
-"38631","34.36387","-90.61971","Friars Point","MS","Mississippi","TRUE","","1477","124.2","28027","Coahoma","{""28027"": ""100""}","Coahoma","28027","FALSE","FALSE","America/Chicago"
-"38632","34.80034","-90.00774","Hernando","MS","Mississippi","TRUE","","27838","63.3","28033","DeSoto","{""28033"": ""100""}","DeSoto","28033","FALSE","FALSE","America/Chicago"
-"38633","34.64142","-89.19457","Hickory Flat","MS","Mississippi","TRUE","","2270","8.8","28009","Benton","{""28009"": ""80.97"", ""28145"": ""19.03""}","Benton|Union","28009|28145","FALSE","FALSE","America/Chicago"
-"38635","34.76809","-89.48171","Holly Springs","MS","Mississippi","TRUE","","15945","18.1","28093","Marshall","{""28093"": ""94.54"", ""28009"": ""3.31"", ""28137"": ""2.16""}","Marshall|Benton|Tate","28093|28009|28137","FALSE","FALSE","America/Chicago"
-"38637","34.95148","-90.05015","Horn Lake","MS","Mississippi","TRUE","","27204","652.0","28033","DeSoto","{""28033"": ""100""}","DeSoto","28033","FALSE","FALSE","America/Chicago"
-"38639","34.30311","-90.43195","Jonestown","MS","Mississippi","TRUE","","1036","58.0","28027","Coahoma","{""28027"": ""100""}","Coahoma","28027","FALSE","FALSE","America/Chicago"
-"38641","34.91466","-90.1894","Lake Cormorant","MS","Mississippi","TRUE","","2100","11.1","28033","DeSoto","{""28033"": ""100""}","DeSoto","28033","FALSE","FALSE","America/Chicago"
-"38642","34.9173","-89.32985","Lamar","MS","Mississippi","TRUE","","2289","10.6","28009","Benton","{""28009"": ""55.45"", ""28093"": ""44.55""}","Benton|Marshall","28009|28093","FALSE","FALSE","America/Chicago"
-"38643","34.15156","-90.26631","Lambert","MS","Mississippi","TRUE","","1875","4.3","28119","Quitman","{""28119"": ""99.69"", ""28135"": ""0.31""}","Quitman|Tallahatchie","28119|28135","FALSE","FALSE","America/Chicago"
-"38644","34.46085","-90.49357","Lula","MS","Mississippi","TRUE","","190","7.9","28027","Coahoma","{""28027"": ""100""}","Coahoma","28027","FALSE","FALSE","America/Chicago"
-"38645","34.24561","-90.47864","Lyon","MS","Mississippi","TRUE","","1305","9.1","28027","Coahoma","{""28027"": ""95.49"", ""28119"": ""4.51""}","Coahoma|Quitman","28027|28119","FALSE","FALSE","America/Chicago"
-"38646","34.28105","-90.29644","Marks","MS","Mississippi","TRUE","","2820","10.3","28119","Quitman","{""28119"": ""100""}","Quitman","28119","FALSE","FALSE","America/Chicago"
-"38647","34.96079","-89.22683","Michigan City","MS","Mississippi","TRUE","","711","4.8","28009","Benton","{""28009"": ""100""}","Benton","28009","FALSE","FALSE","America/Chicago"
-"38650","34.52584","-89.14143","Myrtle","MS","Mississippi","TRUE","","4165","20.6","28145","Union","{""28145"": ""99.25"", ""28009"": ""0.75""}","Union|Benton","28145|28009","FALSE","FALSE","America/Chicago"
-"38651","34.89151","-90.00409","Nesbit","MS","Mississippi","TRUE","","8499","99.5","28033","DeSoto","{""28033"": ""100""}","DeSoto","28033","FALSE","FALSE","America/Chicago"
-"38652","34.48346","-88.99688","New Albany","MS","Mississippi","TRUE","","16775","41.7","28145","Union","{""28145"": ""100""}","Union","28145","FALSE","FALSE","America/Chicago"
-"38654","34.93518","-89.82291","Olive Branch","MS","Mississippi","TRUE","","52791","214.7","28033","DeSoto","{""28033"": ""99.46"", ""28093"": ""0.54""}","DeSoto|Marshall","28033|28093","FALSE","FALSE","America/Chicago"
-"38655","34.33305","-89.47577","Oxford","MS","Mississippi","TRUE","","43536","43.7","28071","Lafayette","{""28071"": ""100""}","Lafayette","28071","FALSE","FALSE","America/Chicago"
-"38658","34.19156","-89.90859","Pope","MS","Mississippi","TRUE","","2066","22.5","28107","Panola","{""28107"": ""100""}","Panola","28107","FALSE","FALSE","America/Chicago"
-"38659","34.62211","-89.31938","Potts Camp","MS","Mississippi","TRUE","","2950","10.0","28093","Marshall","{""28093"": ""90.6"", ""28009"": ""9.4""}","Marshall|Benton","28093|28009","FALSE","FALSE","America/Chicago"
-"38661","34.89624","-89.55984","Red Banks","MS","Mississippi","TRUE","","1783","21.7","28093","Marshall","{""28093"": ""100""}","Marshall","28093","FALSE","FALSE","America/Chicago"
-"38663","34.73986","-88.88963","Ripley","MS","Mississippi","TRUE","","12310","24.0","28139","Tippah","{""28139"": ""99.59"", ""28009"": ""0.41""}","Tippah|Benton","28139|28009","FALSE","FALSE","America/Chicago"
-"38664","34.80958","-90.32723","Robinsonville","MS","Mississippi","TRUE","","3342","14.0","28143","Tunica","{""28143"": ""100""}","Tunica","28143","FALSE","FALSE","America/Chicago"
-"38665","34.591","-90.16196","Sarah","MS","Mississippi","TRUE","","2501","15.1","28137","Tate","{""28137"": ""81.25"", ""28107"": ""18.75""}","Tate|Panola","28137|28107","FALSE","FALSE","America/Chicago"
-"38666","34.42655","-89.91679","Sardis","MS","Mississippi","TRUE","","6546","18.6","28107","Panola","{""28107"": ""100""}","Panola","28107","FALSE","FALSE","America/Chicago"
-"38668","34.60128","-89.91624","Senatobia","MS","Mississippi","TRUE","","14023","34.7","28137","Tate","{""28137"": ""100""}","Tate","28137","FALSE","FALSE","America/Chicago"
-"38670","34.41562","-90.29148","Sledge","MS","Mississippi","TRUE","","907","4.1","28119","Quitman","{""28119"": ""90.86"", ""28143"": ""9.14""}","Quitman|Tunica","28119|28143","FALSE","FALSE","America/Chicago"
-"38671","34.96564","-89.9997","Southaven","MS","Mississippi","TRUE","","37456","650.3","28033","DeSoto","{""28033"": ""100""}","DeSoto","28033","FALSE","FALSE","America/Chicago"
-"38672","34.93787","-89.94861","Southaven","MS","Mississippi","TRUE","","14641","432.8","28033","DeSoto","{""28033"": ""100""}","DeSoto","28033","FALSE","FALSE","America/Chicago"
-"38673","34.29989","-89.61558","Taylor","MS","Mississippi","TRUE","","874","12.8","28071","Lafayette","{""28071"": ""100""}","Lafayette","28071","FALSE","FALSE","America/Chicago"
-"38674","34.87435","-88.89617","Tiplersville","MS","Mississippi","TRUE","","1074","11.2","28139","Tippah","{""28139"": ""100""}","Tippah","28139","FALSE","FALSE","America/Chicago"
-"38676","34.66771","-90.38523","Tunica","MS","Mississippi","TRUE","","5843","10.7","28143","Tunica","{""28143"": ""100""}","Tunica","28143","FALSE","FALSE","America/Chicago"
-"38677","34.36544","-89.53717","University","MS","Mississippi","TRUE","","4120","2142.5","28071","Lafayette","{""28071"": ""100""}","Lafayette","28071","FALSE","FALSE","America/Chicago"
-"38680","34.95273","-90.14411","Walls","MS","Mississippi","TRUE","","6041","107.1","28033","DeSoto","{""28033"": ""100""}","DeSoto","28033","FALSE","FALSE","America/Chicago"
-"38683","34.93753","-88.87019","Walnut","MS","Mississippi","TRUE","","4688","13.1","28139","Tippah","{""28139"": ""63.83"", ""28003"": ""33.71"", ""28009"": ""2.47""}","Tippah|Alcorn|Benton","28139|28003|28009","FALSE","FALSE","America/Chicago"
-"38685","34.59957","-89.4879","Waterford","MS","Mississippi","TRUE","","1144","4.9","28093","Marshall","{""28093"": ""91.46"", ""28071"": ""8.54""}","Marshall|Lafayette","28093|28071","FALSE","FALSE","America/Chicago"
-"38701","33.30989","-91.04385","Greenville","MS","Mississippi","TRUE","","22525","105.1","28151","Washington","{""28151"": ""100""}","Washington","28151","FALSE","FALSE","America/Chicago"
-"38702","33.5361","-91.1795","Greenville","MS","Mississippi","TRUE","","29","4.6","28011","Bolivar","{""28011"": ""100""}","Bolivar","28011","FALSE","FALSE","America/Chicago"
-"38703","33.48071","-91.05899","Greenville","MS","Mississippi","TRUE","","12475","29.2","28151","Washington","{""28151"": ""99.23"", ""28011"": ""0.77""}","Washington|Bolivar","28151|28011","FALSE","FALSE","America/Chicago"
-"38704","33.00716","-91.02129","Greenville","MS","Mississippi","TRUE","","2","0.7","28055","Issaquena","{""28055"": ""100""}","Issaquena","28055","FALSE","FALSE","America/Chicago"
-"38720","34.12393","-90.78524","Alligator","MS","Mississippi","TRUE","","672","5.3","28027","Coahoma","{""28027"": ""50.92"", ""28011"": ""49.08""}","Coahoma|Bolivar","28027|28011","FALSE","FALSE","America/Chicago"
-"38721","32.98404","-90.7504","Anguilla","MS","Mississippi","TRUE","","974","3.2","28125","Sharkey","{""28125"": ""100""}","Sharkey","28125","FALSE","FALSE","America/Chicago"
-"38722","33.25903","-90.8861","Arcola","MS","Mississippi","TRUE","","421","5.1","28151","Washington","{""28151"": ""100""}","Washington","28151","FALSE","FALSE","America/Chicago"
-"38723","33.22965","-91.03837","Avon","MS","Mississippi","TRUE","","59","44.4","28151","Washington","{""28151"": ""100""}","Washington","28151","FALSE","FALSE","America/Chicago"
-"38725","33.65082","-91.02697","Benoit","MS","Mississippi","TRUE","","792","2.3","28011","Bolivar","{""28011"": ""100""}","Bolivar","28011","FALSE","FALSE","America/Chicago"
-"38726","33.74813","-90.98345","Beulah","MS","Mississippi","TRUE","","526","3.5","28011","Bolivar","{""28011"": ""100""}","Bolivar","28011","FALSE","FALSE","America/Chicago"
-"38730","33.68906","-90.7838","Boyle","MS","Mississippi","TRUE","","2079","16.3","28011","Bolivar","{""28011"": ""100""}","Bolivar","28011","FALSE","FALSE","America/Chicago"
-"38731","33.07507","-91.04832","Chatham","MS","Mississippi","TRUE","","246","16.4","28151","Washington","{""28151"": ""100""}","Washington","28151","FALSE","FALSE","America/Chicago"
-"38732","33.75623","-90.7275","Cleveland","MS","Mississippi","TRUE","","17044","82.8","28011","Bolivar","{""28011"": ""98.18"", ""28133"": ""1.82""}","Bolivar|Sunflower","28011|28133","FALSE","FALSE","America/Chicago"
-"38736","33.64538","-90.53814","Doddsville","MS","Mississippi","TRUE","","479","3.0","28133","Sunflower","{""28133"": ""86.82"", ""28083"": ""13.18""}","Sunflower|Leflore","28133|28083","FALSE","FALSE","America/Chicago"
-"38737","33.86996","-90.5124","Drew","MS","Mississippi","TRUE","","2789","8.3","28133","Sunflower","{""28133"": ""98.67"", ""28135"": ""1.33""}","Sunflower|Tallahatchie","28133|28135","FALSE","FALSE","America/Chicago"
-"38738","33.93902","-90.53115","Parchman","MS","Mississippi","TRUE","","3779","91.4","28133","Sunflower","{""28133"": ""100""}","Sunflower","28133","FALSE","FALSE","America/Chicago"
-"38740","34.05558","-90.79886","Duncan","MS","Mississippi","TRUE","","310","1.8","28011","Bolivar","{""28011"": ""100""}","Bolivar","28011","FALSE","FALSE","America/Chicago"
-"38744","33.01576","-91.0353","Glen Allan","MS","Mississippi","TRUE","","508","3.2","28151","Washington","{""28151"": ""84.16"", ""28055"": ""15.84""}","Washington|Issaquena","28151|28055","FALSE","FALSE","America/Chicago"
-"38745","32.97747","-90.9829","Grace","MS","Mississippi","TRUE","","203","4.1","28055","Issaquena","{""28055"": ""100""}","Issaquena","28055","FALSE","FALSE","America/Chicago"
-"38746","33.9651","-90.90917","Gunnison","MS","Mississippi","TRUE","","504","3.0","28011","Bolivar","{""28011"": ""100""}","Bolivar","28011","FALSE","FALSE","America/Chicago"
-"38748","33.14908","-90.90406","Hollandale","MS","Mississippi","TRUE","","3111","4.4","28151","Washington","{""28151"": ""98.33"", ""28125"": ""1.67""}","Washington|Sharkey","28151|28125","FALSE","FALSE","America/Chicago"
-"38749","33.44734","-90.75238","Indianola","MS","Mississippi","TRUE","","71","93.0","28133","Sunflower","{""28133"": ""100""}","Sunflower","28133","FALSE","FALSE","America/Chicago"
-"38751","33.4489","-90.6796","Indianola","MS","Mississippi","TRUE","","10367","26.2","28133","Sunflower","{""28133"": ""100""}","Sunflower","28133","FALSE","FALSE","America/Chicago"
-"38753","33.34751","-90.57878","Inverness","MS","Mississippi","TRUE","","1267","6.1","28133","Sunflower","{""28133"": ""95.19"", ""28053"": ""4.81""}","Sunflower|Humphreys","28133|28053","FALSE","FALSE","America/Chicago"
-"38754","33.24853","-90.62238","Isola","MS","Mississippi","TRUE","","1289","5.6","28053","Humphreys","{""28053"": ""94.52"", ""28133"": ""5.48""}","Humphreys|Sunflower","28053|28133","FALSE","FALSE","America/Chicago"
-"38756","33.39148","-90.85619","Leland","MS","Mississippi","TRUE","","6197","13.8","28151","Washington","{""28151"": ""100""}","Washington","28151","FALSE","FALSE","America/Chicago"
-"38759","33.82315","-90.73133","Merigold","MS","Mississippi","TRUE","","926","5.8","28011","Bolivar","{""28011"": ""74.12"", ""28133"": ""25.88""}","Bolivar|Sunflower","28011|28133","FALSE","FALSE","America/Chicago"
-"38760","33.45804","-90.98927","Metcalfe","MS","Mississippi","TRUE","","732","49.1","28151","Washington","{""28151"": ""100""}","Washington","28151","FALSE","FALSE","America/Chicago"
-"38761","33.43204","-90.48489","Moorhead","MS","Mississippi","TRUE","","2347","17.8","28133","Sunflower","{""28133"": ""98.68"", ""28083"": ""1.32""}","Sunflower|Leflore","28133|28083","FALSE","FALSE","America/Chicago"
-"38762","33.88792","-90.71629","Mound Bayou","MS","Mississippi","TRUE","","2482","14.2","28011","Bolivar","{""28011"": ""99.91"", ""28133"": ""0.09""}","Bolivar|Sunflower","28011|28133","FALSE","FALSE","America/Chicago"
-"38764","33.79006","-90.86296","Pace","MS","Mississippi","TRUE","","310","19.1","28011","Bolivar","{""28011"": ""100""}","Bolivar","28011","FALSE","FALSE","America/Chicago"
-"38765","33.06911","-90.87459","Panther Burn","MS","Mississippi","TRUE","","97","2.2","28125","Sharkey","{""28125"": ""100""}","Sharkey","28125","FALSE","FALSE","America/Chicago"
-"38767","34.14049","-90.78472","Rena Lara","MS","Mississippi","TRUE","","44","7.8","28027","Coahoma","{""28027"": ""100""}","Coahoma","28027","FALSE","FALSE","America/Chicago"
-"38768","33.96973","-90.48724","Rome","MS","Mississippi","TRUE","","118","4.8","28133","Sunflower","{""28133"": ""100""}","Sunflower","28133","FALSE","FALSE","America/Chicago"
-"38769","33.8651","-90.98235","Rosedale","MS","Mississippi","TRUE","","1800","7.5","28011","Bolivar","{""28011"": ""99.91"", ""05041"": ""0.09""}","Bolivar|Desha","28011|05041","FALSE","FALSE","America/Chicago"
-"38771","33.73799","-90.52927","Ruleville","MS","Mississippi","TRUE","","3097","21.0","28133","Sunflower","{""28133"": ""100""}","Sunflower","28133","FALSE","FALSE","America/Chicago"
-"38772","33.56048","-91.05149","Scott","MS","Mississippi","TRUE","","30","0.8","28011","Bolivar","{""28011"": ""100""}","Bolivar","28011","FALSE","FALSE","America/Chicago"
-"38773","33.60626","-90.77861","Shaw","MS","Mississippi","TRUE","","3358","8.8","28011","Bolivar","{""28011"": ""87.82"", ""28133"": ""12.18""}","Bolivar|Sunflower","28011|28133","FALSE","FALSE","America/Chicago"
-"38774","33.96311","-90.76274","Shelby","MS","Mississippi","TRUE","","1785","9.2","28011","Bolivar","{""28011"": ""100""}","Bolivar","28011","FALSE","FALSE","America/Chicago"
-"38778","33.54826","-90.52479","Sunflower","MS","Mississippi","TRUE","","1500","8.3","28133","Sunflower","{""28133"": ""100""}","Sunflower","28133","FALSE","FALSE","America/Chicago"
-"38781","33.90855","-90.75661","Winstonville","MS","Mississippi","TRUE","","198","77.1","28011","Bolivar","{""28011"": ""100""}","Bolivar","28011","FALSE","FALSE","America/Chicago"
-"38801","34.22131","-88.77303","Tupelo","MS","Mississippi","TRUE","","29767","152.0","28081","Lee","{""28081"": ""96"", ""28115"": ""4""}","Lee|Pontotoc","28081|28115","FALSE","FALSE","America/Chicago"
-"38804","34.2823","-88.67147","Tupelo","MS","Mississippi","TRUE","","16744","79.9","28081","Lee","{""28081"": ""98.48"", ""28057"": ""1.52""}","Lee|Itawamba","28081|28057","FALSE","FALSE","America/Chicago"
-"38821","33.97596","-88.43758","Amory","MS","Mississippi","TRUE","","12790","34.6","28095","Monroe","{""28095"": ""100""}","Monroe","28095","FALSE","FALSE","America/Chicago"
-"38824","34.52038","-88.64307","Baldwyn","MS","Mississippi","TRUE","","7301","20.6","28117","Prentiss","{""28117"": ""51.54"", ""28081"": ""34.08"", ""28057"": ""7.12"", ""28145"": ""6.49"", ""28139"": ""0.77""}","Prentiss|Lee|Itawamba|Union|Tippah","28117|28081|28057|28145|28139","FALSE","FALSE","America/Chicago"
-"38826","34.30572","-88.84606","Belden","MS","Mississippi","TRUE","","5027","62.3","28081","Lee","{""28081"": ""62.75"", ""28115"": ""37.25""}","Lee|Pontotoc","28081|28115","FALSE","FALSE","America/Chicago"
-"38827","34.53265","-88.20043","Belmont","MS","Mississippi","TRUE","","3385","37.3","28141","Tishomingo","{""28141"": ""100""}","Tishomingo","28141","FALSE","FALSE","America/Chicago"
-"38828","34.42964","-88.864","Blue Springs","MS","Mississippi","TRUE","","4293","19.5","28145","Union","{""28145"": ""87.33"", ""28115"": ""6.9"", ""28081"": ""5.77""}","Union|Pontotoc|Lee","28145|28115|28081","FALSE","FALSE","America/Chicago"
-"38829","34.65198","-88.53077","Booneville","MS","Mississippi","TRUE","","19023","27.4","28117","Prentiss","{""28117"": ""97.92"", ""28139"": ""2.08""}","Prentiss|Tippah","28117|28139","FALSE","FALSE","America/Chicago"
-"38833","34.83787","-88.33923","Burnsville","MS","Mississippi","TRUE","","2587","19.0","28141","Tishomingo","{""28141"": ""87.43"", ""28117"": ""6.54"", ""28003"": ""6.03""}","Tishomingo|Prentiss|Alcorn","28141|28117|28003","FALSE","FALSE","America/Chicago"
-"38834","34.91545","-88.5635","Corinth","MS","Mississippi","TRUE","","28781","50.9","28003","Alcorn","{""28003"": ""100""}","Alcorn","28003","FALSE","FALSE","America/Chicago"
-"38838","34.54757","-88.26042","Dennis","MS","Mississippi","TRUE","","1281","10.5","28141","Tishomingo","{""28141"": ""100""}","Tishomingo","28141","FALSE","FALSE","America/Chicago"
-"38841","34.35127","-89.01667","Ecru","MS","Mississippi","TRUE","","3296","40.6","28115","Pontotoc","{""28115"": ""96.43"", ""28145"": ""3.57""}","Pontotoc|Union","28115|28145","FALSE","FALSE","America/Chicago"
-"38843","34.26496","-88.37564","Fulton","MS","Mississippi","TRUE","","11345","22.2","28057","Itawamba","{""28057"": ""99.7"", ""28081"": ""0.3""}","Itawamba|Lee","28057|28081","FALSE","FALSE","America/Chicago"
-"38844","33.83859","-88.25533","Gattman","MS","Mississippi","TRUE","","219","6.7","28095","Monroe","{""28095"": ""100""}","Monroe","28095","FALSE","FALSE","America/Chicago"
-"38846","34.85078","-88.39396","Glen","MS","Mississippi","TRUE","","2412","24.7","28003","Alcorn","{""28003"": ""85.73"", ""28141"": ""14.27""}","Alcorn|Tishomingo","28003|28141","FALSE","FALSE","America/Chicago"
-"38847","34.4109","-88.2422","Golden","MS","Mississippi","TRUE","","3346","14.4","28057","Itawamba","{""28057"": ""74.95"", ""28141"": ""25.05""}","Itawamba|Tishomingo","28057|28141","FALSE","FALSE","America/Chicago"
-"38848","33.94752","-88.27568","Greenwood Springs","MS","Mississippi","TRUE","","580","3.0","28095","Monroe","{""28095"": ""100""}","Monroe","28095","FALSE","FALSE","America/Chicago"
-"38849","34.45623","-88.69749","Guntown","MS","Mississippi","TRUE","","6708","36.6","28081","Lee","{""28081"": ""90.78"", ""28145"": ""8.7"", ""28057"": ""0.53""}","Lee|Union|Itawamba","28081|28145|28057","FALSE","FALSE","America/Chicago"
-"38850","34.04896","-89.05309","Houlka","MS","Mississippi","TRUE","","2726","8.6","28017","Chickasaw","{""28017"": ""73.42"", ""28115"": ""19.01"", ""28013"": ""7.58""}","Chickasaw|Pontotoc|Calhoun","28017|28115|28013","FALSE","FALSE","America/Chicago"
-"38851","33.90862","-88.96909","Houston","MS","Mississippi","TRUE","","8006","14.0","28017","Chickasaw","{""28017"": ""100""}","Chickasaw","28017","FALSE","FALSE","America/Chicago"
-"38852","34.84197","-88.21464","Iuka","MS","Mississippi","TRUE","","9049","17.5","28141","Tishomingo","{""28141"": ""99.46"", ""01033"": ""0.54""}","Tishomingo|Colbert","28141|01033","FALSE","FALSE","America/Chicago"
-"38855","34.3267","-88.48542","Mantachie","MS","Mississippi","TRUE","","4248","27.4","28057","Itawamba","{""28057"": ""100""}","Itawamba","28057","FALSE","FALSE","America/Chicago"
-"38856","34.46863","-88.44672","Marietta","MS","Mississippi","TRUE","","1901","12.0","28057","Itawamba","{""28057"": ""50.11"", ""28117"": ""49.89""}","Itawamba|Prentiss","28057|28117","FALSE","FALSE","America/Chicago"
-"38857","34.28028","-88.57748","Mooreville","MS","Mississippi","TRUE","","4081","83.1","28081","Lee","{""28081"": ""100""}","Lee","28081","FALSE","FALSE","America/Chicago"
-"38858","34.0997","-88.54372","Nettleton","MS","Mississippi","TRUE","","7275","22.2","28095","Monroe","{""28095"": ""44.01"", ""28081"": ""34.63"", ""28057"": ""21.36""}","Monroe|Lee|Itawamba","28095|28081|28057","FALSE","FALSE","America/Chicago"
-"38859","34.52645","-88.37561","New Site","MS","Mississippi","TRUE","","1006","9.1","28117","Prentiss","{""28117"": ""100""}","Prentiss","28117","FALSE","FALSE","America/Chicago"
-"38860","33.96936","-88.76376","Okolona","MS","Mississippi","TRUE","","6248","18.5","28017","Chickasaw","{""28017"": ""83.67"", ""28095"": ""13.33"", ""28081"": ""3""}","Chickasaw|Monroe|Lee","28017|28095|28081","FALSE","FALSE","America/Chicago"
-"38862","34.16941","-88.62123","Plantersville","MS","Mississippi","TRUE","","2623","34.2","28081","Lee","{""28081"": ""100""}","Lee","28081","FALSE","FALSE","America/Chicago"
-"38863","34.21931","-89.01938","Pontotoc","MS","Mississippi","TRUE","","20560","28.1","28115","Pontotoc","{""28115"": ""99.96"", ""28071"": ""0.04""}","Pontotoc|Lafayette","28115|28071","FALSE","FALSE","America/Chicago"
-"38864","34.13398","-89.19913","Randolph","MS","Mississippi","TRUE","","1813","7.9","28115","Pontotoc","{""28115"": ""83.25"", ""28013"": ""16.75""}","Pontotoc|Calhoun","28115|28013","FALSE","FALSE","America/Chicago"
-"38865","34.78437","-88.59098","Rienzi","MS","Mississippi","TRUE","","4754","16.3","28003","Alcorn","{""28003"": ""80.54"", ""28117"": ""19.46""}","Alcorn|Prentiss","28003|28117","FALSE","FALSE","America/Chicago"
-"38866","34.36793","-88.68058","Saltillo","MS","Mississippi","TRUE","","11959","61.5","28081","Lee","{""28081"": ""100""}","Lee","28081","FALSE","FALSE","America/Chicago"
-"38868","34.11927","-88.75739","Shannon","MS","Mississippi","TRUE","","6396","33.2","28081","Lee","{""28081"": ""88.16"", ""28115"": ""5.64"", ""28095"": ""3.43"", ""28017"": ""2.77""}","Lee|Pontotoc|Monroe|Chickasaw","28081|28115|28095|28017","FALSE","FALSE","America/Chicago"
-"38869","34.35744","-88.83516","Sherman","MS","Mississippi","TRUE","","533","152.5","28115","Pontotoc","{""28115"": ""100""}","Pontotoc","28115","FALSE","FALSE","America/Chicago"
-"38870","34.06747","-88.33644","Smithville","MS","Mississippi","TRUE","","2887","17.2","28095","Monroe","{""28095"": ""95.48"", ""28057"": ""4.52""}","Monroe|Itawamba","28095|28057","FALSE","FALSE","America/Chicago"
-"38871","34.33475","-89.2033","Thaxton","MS","Mississippi","TRUE","","2130","15.2","28115","Pontotoc","{""28115"": ""90.18"", ""28071"": ""8.11"", ""28145"": ""1.71""}","Pontotoc|Lafayette|Union","28115|28071|28145","FALSE","FALSE","America/Chicago"
-"38873","34.65801","-88.24941","Tishomingo","MS","Mississippi","TRUE","","2939","13.5","28141","Tishomingo","{""28141"": ""92.24"", ""28117"": ""7.76""}","Tishomingo|Prentiss","28141|28117","FALSE","FALSE","America/Chicago"
-"38876","34.21786","-88.23038","Tremont","MS","Mississippi","TRUE","","1385","6.9","28057","Itawamba","{""28057"": ""100""}","Itawamba","28057","FALSE","FALSE","America/Chicago"
-"38878","33.88925","-89.18913","Vardaman","MS","Mississippi","TRUE","","3111","14.8","28013","Calhoun","{""28013"": ""98.46"", ""28017"": ""1.54""}","Calhoun|Chickasaw","28013|28017","FALSE","FALSE","America/Chicago"
-"38879","34.18699","-88.7169","Verona","MS","Mississippi","TRUE","","786","256.6","28081","Lee","{""28081"": ""100""}","Lee","28081","FALSE","FALSE","America/Chicago"
-"38901","33.76161","-89.80425","Grenada","MS","Mississippi","TRUE","","18168","29.3","28043","Grenada","{""28043"": ""97.92"", ""28015"": ""1.7"", ""28135"": ""0.37""}","Grenada|Carroll|Tallahatchie","28043|28015|28135","FALSE","FALSE","America/Chicago"
-"38913","34.13417","-89.37883","Banner","MS","Mississippi","TRUE","","460","5.7","28013","Calhoun","{""28013"": ""100""}","Calhoun","28013","FALSE","FALSE","America/Chicago"
-"38914","33.86819","-89.45757","Big Creek","MS","Mississippi","TRUE","","894","7.3","28013","Calhoun","{""28013"": ""87.68"", ""28043"": ""12.32""}","Calhoun|Grenada","28013|28043","FALSE","FALSE","America/Chicago"
-"38915","34.02785","-89.38955","Bruce","MS","Mississippi","TRUE","","3422","12.0","28013","Calhoun","{""28013"": ""100""}","Calhoun","28013","FALSE","FALSE","America/Chicago"
-"38916","33.81438","-89.35214","Calhoun City","MS","Mississippi","TRUE","","4945","10.6","28013","Calhoun","{""28013"": ""98.81"", ""28155"": ""1.19""}","Calhoun|Webster","28013|28155","FALSE","FALSE","America/Chicago"
-"38917","33.5516","-89.96044","Carrollton","MS","Mississippi","TRUE","","2930","6.8","28015","Carroll","{""28015"": ""100""}","Carroll","28015","FALSE","FALSE","America/Chicago"
-"38920","33.87636","-90.06536","Cascilla","MS","Mississippi","TRUE","","576","3.9","28135","Tallahatchie","{""28135"": ""100""}","Tallahatchie","28135","FALSE","FALSE","America/Chicago"
-"38921","33.9814","-90.14854","Charleston","MS","Mississippi","TRUE","","4609","12.6","28135","Tallahatchie","{""28135"": ""100""}","Tallahatchie","28135","FALSE","FALSE","America/Chicago"
-"38922","33.9312","-89.64492","Coffeeville","MS","Mississippi","TRUE","","3004","5.4","28161","Yalobusha","{""28161"": ""86.47"", ""28043"": ""13.53""}","Yalobusha|Grenada","28161|28043","FALSE","FALSE","America/Chicago"
-"38923","33.38102","-89.98723","Coila","MS","Mississippi","TRUE","","912","4.4","28015","Carroll","{""28015"": ""100""}","Carroll","28015","FALSE","FALSE","America/Chicago"
-"38924","33.29292","-90.22469","Cruger","MS","Mississippi","TRUE","","574","2.1","28051","Holmes","{""28051"": ""85.73"", ""28015"": ""9.73"", ""28083"": ""3.37"", ""28053"": ""1.17""}","Holmes|Carroll|Leflore|Humphreys","28051|28015|28083|28053","FALSE","FALSE","America/Chicago"
-"38925","33.62764","-89.63211","Duck Hill","MS","Mississippi","TRUE","","2599","6.7","28097","Montgomery","{""28097"": ""83.33"", ""28043"": ""15.74"", ""28155"": ""0.93""}","Montgomery|Grenada|Webster","28097|28043|28155","FALSE","FALSE","America/Chicago"
-"38927","34.13076","-90.025","Enid","MS","Mississippi","TRUE","","1325","8.3","28135","Tallahatchie","{""28135"": ""85.16"", ""28107"": ""14.17"", ""28161"": ""0.67""}","Tallahatchie|Panola|Yalobusha","28135|28107|28161","FALSE","FALSE","America/Chicago"
-"38928","33.85738","-90.28805","Glendora","MS","Mississippi","TRUE","","321","2.7","28135","Tallahatchie","{""28135"": ""100""}","Tallahatchie","28135","FALSE","FALSE","America/Chicago"
-"38929","33.74025","-89.53118","Gore Springs","MS","Mississippi","TRUE","","1471","7.3","28043","Grenada","{""28043"": ""86.18"", ""28155"": ""10.55"", ""28013"": ""3.26""}","Grenada|Webster|Calhoun","28043|28155|28013","FALSE","FALSE","America/Chicago"
-"38930","33.54541","-90.14512","Greenwood","MS","Mississippi","TRUE","","23445","45.0","28083","Leflore","{""28083"": ""94.85"", ""28015"": ""5.15""}","Leflore|Carroll","28083|28015","FALSE","FALSE","America/Chicago"
-"38940","33.7551","-90.03334","Holcomb","MS","Mississippi","TRUE","","1705","4.4","28043","Grenada","{""28043"": ""80.76"", ""28135"": ""15.51"", ""28015"": ""3.74""}","Grenada|Tallahatchie|Carroll","28043|28135|28015","FALSE","FALSE","America/Chicago"
-"38941","33.48085","-90.35694","Itta Bena","MS","Mississippi","TRUE","","4265","17.3","28083","Leflore","{""28083"": ""100""}","Leflore","28083","FALSE","FALSE","America/Chicago"
-"38943","33.53888","-89.84366","McCarley","MS","Mississippi","TRUE","","304","4.4","28015","Carroll","{""28015"": ""100""}","Carroll","28015","FALSE","FALSE","America/Chicago"
-"38944","33.75886","-90.34392","Minter City","MS","Mississippi","TRUE","","362","1.5","28083","Leflore","{""28083"": ""100""}","Leflore","28083","FALSE","FALSE","America/Chicago"
-"38945","33.60004","-90.17071","Greenwood","MS","Mississippi","TRUE","","64","1.4","28083","Leflore","{""28083"": ""100""}","Leflore","28083","FALSE","FALSE","America/Chicago"
-"38946","33.36414","-90.37915","Morgan City","MS","Mississippi","TRUE","","241","3.0","28083","Leflore","{""28083"": ""100""}","Leflore","28083","FALSE","FALSE","America/Chicago"
-"38947","33.53242","-89.90006","North Carrollton","MS","Mississippi","TRUE","","338","55.7","28015","Carroll","{""28015"": ""100""}","Carroll","28015","FALSE","FALSE","America/Chicago"
-"38948","34.07252","-89.88861","Oakland","MS","Mississippi","TRUE","","2175","6.9","28161","Yalobusha","{""28161"": ""71.24"", ""28135"": ""28.76""}","Yalobusha|Tallahatchie","28161|28135","FALSE","FALSE","America/Chicago"
-"38949","34.19267","-89.42174","Paris","MS","Mississippi","TRUE","","341","8.0","28071","Lafayette","{""28071"": ""100""}","Lafayette","28071","FALSE","FALSE","America/Chicago"
-"38950","33.74864","-90.2119","Philipp","MS","Mississippi","TRUE","","473","4.9","28135","Tallahatchie","{""28135"": ""100""}","Tallahatchie","28135","FALSE","FALSE","America/Chicago"
-"38951","33.97296","-89.28954","Pittsboro","MS","Mississippi","TRUE","","1074","7.0","28013","Calhoun","{""28013"": ""100""}","Calhoun","28013","FALSE","FALSE","America/Chicago"
-"38952","33.62117","-90.34601","Schlater","MS","Mississippi","TRUE","","421","1.5","28083","Leflore","{""28083"": ""100""}","Leflore","28083","FALSE","FALSE","America/Chicago"
-"38953","33.92643","-89.92772","Scobey","MS","Mississippi","TRUE","","587","5.1","28135","Tallahatchie","{""28135"": ""45.24"", ""28161"": ""40.48"", ""28043"": ""14.29""}","Tallahatchie|Yalobusha|Grenada","28135|28161|28043","FALSE","FALSE","America/Chicago"
-"38954","33.4153","-90.21174","Sidon","MS","Mississippi","TRUE","","1432","8.1","28083","Leflore","{""28083"": ""87.45"", ""28015"": ""12.55""}","Leflore|Carroll","28083|28015","FALSE","FALSE","America/Chicago"
-"38957","33.9917","-90.35041","Sumner","MS","Mississippi","TRUE","","525","9.5","28135","Tallahatchie","{""28135"": ""100""}","Tallahatchie","28135","FALSE","FALSE","America/Chicago"
-"38958","33.30538","-90.42558","Swan Lake","MS","Mississippi","TRUE","","0","0.0","28083","Leflore","{""28083"": ""100""}","Leflore","28083","FALSE","FALSE","America/Chicago"
-"38961","33.96246","-89.88489","Tillatoba","MS","Mississippi","TRUE","","825","5.7","28161","Yalobusha","{""28161"": ""68.12"", ""28135"": ""31.88""}","Yalobusha|Tallahatchie","28161|28135","FALSE","FALSE","America/Chicago"
-"38962","33.87494","-90.18428","Tippo","MS","Mississippi","TRUE","","136","3.4","28135","Tallahatchie","{""28135"": ""100""}","Tallahatchie","28135","FALSE","FALSE","America/Chicago"
-"38963","34.02207","-90.38975","Tutwiler","MS","Mississippi","TRUE","","3910","14.5","28135","Tallahatchie","{""28135"": ""96.19"", ""28027"": ""2.99"", ""28133"": ""0.82""}","Tallahatchie|Coahoma|Sunflower","28135|28027|28133","FALSE","FALSE","America/Chicago"
-"38964","34.09097","-90.38961","Vance","MS","Mississippi","TRUE","","147","1.9","28119","Quitman","{""28119"": ""71.15"", ""28135"": ""28.85""}","Quitman|Tallahatchie","28119|28135","FALSE","FALSE","America/Chicago"
-"38965","34.13567","-89.60006","Water Valley","MS","Mississippi","TRUE","","8927","14.0","28161","Yalobusha","{""28161"": ""78.66"", ""28071"": ""15.36"", ""28013"": ""3.36"", ""28107"": ""2.62""}","Yalobusha|Lafayette|Calhoun|Panola","28161|28071|28013|28107","FALSE","FALSE","America/Chicago"
-"38966","33.91688","-90.35832","Webb","MS","Mississippi","TRUE","","925","8.3","28135","Tallahatchie","{""28135"": ""100""}","Tallahatchie","28135","FALSE","FALSE","America/Chicago"
-"38967","33.45924","-89.73377","Winona","MS","Mississippi","TRUE","","7397","15.3","28097","Montgomery","{""28097"": ""85.6"", ""28015"": ""14.4""}","Montgomery|Carroll","28097|28015","FALSE","FALSE","America/Chicago"
-"39038","33.18468","-90.48436","Belzoni","MS","Mississippi","TRUE","","5703","10.3","28053","Humphreys","{""28053"": ""97.08"", ""28051"": ""2.22"", ""28083"": ""0.7""}","Humphreys|Holmes|Leflore","28053|28051|28083","FALSE","FALSE","America/Chicago"
-"39039","32.81969","-90.22506","Benton","MS","Mississippi","TRUE","","1840","5.0","28163","Yazoo","{""28163"": ""100""}","Yazoo","28163","FALSE","FALSE","America/Chicago"
-"39040","32.63746","-90.41989","Bentonia","MS","Mississippi","TRUE","","3011","6.7","28163","Yazoo","{""28163"": ""100""}","Yazoo","28163","FALSE","FALSE","America/Chicago"
-"39041","32.41376","-90.47335","Bolton","MS","Mississippi","TRUE","","4306","12.9","28049","Hinds","{""28049"": ""100""}","Hinds","28049","FALSE","FALSE","America/Chicago"
-"39042","32.21203","-89.88862","Brandon","MS","Mississippi","TRUE","","38139","66.0","28121","Rankin","{""28121"": ""99.89"", ""28129"": ""0.11""}","Rankin|Smith","28121|28129","FALSE","FALSE","America/Chicago"
-"39044","32.02921","-89.97299","Braxton","MS","Mississippi","TRUE","","3965","10.9","28127","Simpson","{""28127"": ""68.03"", ""28121"": ""31.97""}","Simpson|Rankin","28127|28121","FALSE","FALSE","America/Chicago"
-"39045","32.7899","-89.81777","Camden","MS","Mississippi","TRUE","","1627","5.4","28089","Madison","{""28089"": ""100""}","Madison","28089","FALSE","FALSE","America/Chicago"
-"39046","32.63195","-89.98542","Canton","MS","Mississippi","TRUE","","28437","35.6","28089","Madison","{""28089"": ""100""}","Madison","28089","FALSE","FALSE","America/Chicago"
-"39047","32.42629","-89.94677","Brandon","MS","Mississippi","TRUE","","39426","151.6","28121","Rankin","{""28121"": ""100""}","Rankin","28121","FALSE","FALSE","America/Chicago"
-"39051","32.78825","-89.50044","Carthage","MS","Mississippi","TRUE","","16453","15.1","28079","Leake","{""28079"": ""96.98"", ""28099"": ""1.71"", ""28007"": ""0.69"", ""28089"": ""0.62""}","Leake|Neshoba|Attala|Madison","28079|28099|28007|28089","FALSE","FALSE","America/Chicago"
-"39054","32.79855","-90.92941","Cary","MS","Mississippi","TRUE","","425","40.6","28125","Sharkey","{""28125"": ""100""}","Sharkey","28125","FALSE","FALSE","America/Chicago"
-"39056","32.37098","-90.34932","Clinton","MS","Mississippi","TRUE","","25761","185.1","28049","Hinds","{""28049"": ""100""}","Hinds","28049","FALSE","FALSE","America/Chicago"
-"39057","32.4926","-89.28509","Conehatta","MS","Mississippi","TRUE","","2391","14.3","28101","Newton","{""28101"": ""92.75"", ""28123"": ""7.25""}","Newton|Scott","28101|28123","FALSE","FALSE","America/Chicago"
-"39059","31.98234","-90.35549","Crystal Springs","MS","Mississippi","TRUE","","11543","28.0","28029","Copiah","{""28029"": ""98.14"", ""28049"": ""1.86""}","Copiah|Hinds","28029|28049","FALSE","FALSE","America/Chicago"
-"39061","33.08812","-90.81733","Delta City","MS","Mississippi","TRUE","","0","0.0","28125","Sharkey","{""28125"": ""100""}","Sharkey","28125","FALSE","FALSE","America/Chicago"
-"39062","31.98509","-89.89836","D Lo","MS","Mississippi","TRUE","","599","156.4","28127","Simpson","{""28127"": ""100""}","Simpson","28127","FALSE","FALSE","America/Chicago"
-"39063","33.1182","-89.89907","Durant","MS","Mississippi","TRUE","","3867","15.4","28051","Holmes","{""28051"": ""100""}","Holmes","28051","FALSE","FALSE","America/Chicago"
-"39066","32.30198","-90.60565","Edwards","MS","Mississippi","TRUE","","4466","11.9","28049","Hinds","{""28049"": ""100""}","Hinds","28049","FALSE","FALSE","America/Chicago"
-"39067","33.11031","-89.4467","Ethel","MS","Mississippi","TRUE","","1355","5.0","28007","Attala","{""28007"": ""100""}","Attala","28007","FALSE","FALSE","America/Chicago"
-"39069","31.68626","-91.04597","Fayette","MS","Mississippi","TRUE","","5290","11.6","28063","Jefferson","{""28063"": ""100""}","Jefferson","28063","FALSE","FALSE","America/Chicago"
-"39071","32.55328","-90.31777","Flora","MS","Mississippi","TRUE","","6192","20.2","28089","Madison","{""28089"": ""98.69"", ""28049"": ""1.31""}","Madison|Hinds","28089|28049","FALSE","FALSE","America/Chicago"
-"39073","32.10176","-90.13333","Florence","MS","Mississippi","TRUE","","19629","47.5","28121","Rankin","{""28121"": ""93.43"", ""28127"": ""6.57""}","Rankin|Simpson","28121|28127","FALSE","FALSE","America/Chicago"
-"39074","32.39097","-89.47839","Forest","MS","Mississippi","TRUE","","14961","21.2","28123","Scott","{""28123"": ""95.69"", ""28129"": ""4.31""}","Scott|Smith","28123|28129","FALSE","FALSE","America/Chicago"
-"39078","31.87707","-90.18895","Georgetown","MS","Mississippi","TRUE","","822","9.2","28029","Copiah","{""28029"": ""100""}","Copiah","28029","FALSE","FALSE","America/Chicago"
-"39079","32.93484","-89.89869","Goodman","MS","Mississippi","TRUE","","1708","9.9","28051","Holmes","{""28051"": ""92.98"", ""28007"": ""6.68"", ""28089"": ""0.34""}","Holmes|Attala|Madison","28051|28007|28089","FALSE","FALSE","America/Chicago"
-"39082","31.94582","-90.12174","Harrisville","MS","Mississippi","TRUE","","1071","6.9","28127","Simpson","{""28127"": ""100""}","Simpson","28127","FALSE","FALSE","America/Chicago"
-"39083","31.83791","-90.47006","Hazlehurst","MS","Mississippi","TRUE","","9703","11.4","28029","Copiah","{""28029"": ""100""}","Copiah","28029","FALSE","FALSE","America/Chicago"
-"39086","31.95832","-90.76335","Hermanville","MS","Mississippi","TRUE","","1733","4.2","28021","Claiborne","{""28021"": ""86.61"", ""28029"": ""13.39""}","Claiborne|Copiah","28021|28029","FALSE","FALSE","America/Chicago"
-"39088","32.74331","-90.73824","Holly Bluff","MS","Mississippi","TRUE","","98","0.8","28163","Yazoo","{""28163"": ""74.07"", ""28125"": ""25.93""}","Yazoo|Sharkey","28163|28125","FALSE","FALSE","America/Chicago"
-"39090","33.00422","-89.55406","Kosciusko","MS","Mississippi","TRUE","","12636","18.4","28007","Attala","{""28007"": ""94.52"", ""28079"": ""5.48""}","Attala|Leake","28007|28079","FALSE","FALSE","America/Chicago"
-"39092","32.31614","-89.37365","Lake","MS","Mississippi","TRUE","","2550","9.2","28123","Scott","{""28123"": ""80.13"", ""28101"": ""19.22"", ""28129"": ""0.65""}","Scott|Newton|Smith","28123|28101|28129","FALSE","FALSE","America/Chicago"
-"39094","32.57821","-89.67588","Lena","MS","Mississippi","TRUE","","3999","9.4","28079","Leake","{""28079"": ""48.38"", ""28123"": ""34.48"", ""28121"": ""17.14""}","Leake|Scott|Rankin","28079|28123|28121","FALSE","FALSE","America/Chicago"
-"39095","33.12456","-90.08242","Lexington","MS","Mississippi","TRUE","","6890","7.9","28051","Holmes","{""28051"": ""97.94"", ""28015"": ""2.01"", ""28163"": ""0.05""}","Holmes|Carroll|Yazoo","28051|28015|28163","FALSE","FALSE","America/Chicago"
-"39096","31.82548","-91.11572","Lorman","MS","Mississippi","TRUE","","2453","4.8","28021","Claiborne","{""28021"": ""56.03"", ""28063"": ""43.97""}","Claiborne|Jefferson","28021|28063","FALSE","FALSE","America/Chicago"
-"39097","32.99034","-90.59906","Louise","MS","Mississippi","TRUE","","659","4.6","28053","Humphreys","{""28053"": ""100""}","Humphreys","28053","FALSE","FALSE","America/Chicago"
-"39108","33.15864","-89.33319","McCool","MS","Mississippi","TRUE","","1998","3.9","28007","Attala","{""28007"": ""55.37"", ""28019"": ""25.84"", ""28159"": ""18.79""}","Attala|Choctaw|Winston","28007|28019|28159","FALSE","FALSE","America/Chicago"
-"39110","32.50599","-90.14022","Madison","MS","Mississippi","TRUE","","42551","220.2","28089","Madison","{""28089"": ""100""}","Madison","28089","FALSE","FALSE","America/Chicago"
-"39111","31.89316","-89.71877","Magee","MS","Mississippi","TRUE","","9217","25.5","28127","Simpson","{""28127"": ""94.45"", ""28129"": ""5.55""}","Simpson|Smith","28127|28129","FALSE","FALSE","America/Chicago"
-"39113","32.91036","-91.02088","Mayersville","MS","Mississippi","TRUE","","621","21.5","28055","Issaquena","{""28055"": ""100""}","Issaquena","28055","FALSE","FALSE","America/Chicago"
-"39114","31.95185","-89.82891","Mendenhall","MS","Mississippi","TRUE","","10465","21.2","28127","Simpson","{""28127"": ""92.25"", ""28121"": ""7.22"", ""28129"": ""0.53""}","Simpson|Rankin|Smith","28127|28121|28129","FALSE","FALSE","America/Chicago"
-"39115","33.04489","-90.56432","Midnight","MS","Mississippi","TRUE","","85","4.5","28053","Humphreys","{""28053"": ""100""}","Humphreys","28053","FALSE","FALSE","America/Chicago"
-"39116","31.88968","-89.54988","Mize","MS","Mississippi","TRUE","","2285","10.3","28129","Smith","{""28129"": ""100""}","Smith","28129","FALSE","FALSE","America/Chicago"
-"39117","32.30567","-89.65928","Morton","MS","Mississippi","TRUE","","10659","15.6","28123","Scott","{""28123"": ""81.8"", ""28129"": ""14.24"", ""28121"": ""3.96""}","Scott|Smith|Rankin","28123|28129|28121","FALSE","FALSE","America/Chicago"
-"39119","31.75288","-89.67334","Mount Olive","MS","Mississippi","TRUE","","5050","14.0","28031","Covington","{""28031"": ""60.77"", ""28129"": ""18.63"", ""28127"": ""12.75"", ""28065"": ""7.85""}","Covington|Smith|Simpson|Jefferson Davis","28031|28129|28127|28065","FALSE","FALSE","America/Chicago"
-"39120","31.51025","-91.35405","Natchez","MS","Mississippi","TRUE","","30838","25.0","28001","Adams","{""28001"": ""97.76"", ""28063"": ""2.24""}","Adams|Jefferson","28001|28063","FALSE","FALSE","America/Chicago"
-"39140","31.75173","-90.00273","Newhebron","MS","Mississippi","TRUE","","2350","9.3","28077","Lawrence","{""28077"": ""52.67"", ""28065"": ""32.09"", ""28127"": ""15.24""}","Lawrence|Jefferson Davis|Simpson","28077|28065|28127","FALSE","FALSE","America/Chicago"
-"39144","31.83048","-90.80474","Pattison","MS","Mississippi","TRUE","","672","2.3","28021","Claiborne","{""28021"": ""84.54"", ""28029"": ""9.11"", ""28063"": ""6.34""}","Claiborne|Copiah|Jefferson","28021|28029|28063","FALSE","FALSE","America/Chicago"
-"39145","32.34293","-89.79806","Pelahatchie","MS","Mississippi","TRUE","","5035","14.8","28121","Rankin","{""28121"": ""97.99"", ""28123"": ""2.01""}","Rankin|Scott","28121|28123","FALSE","FALSE","America/Chicago"
-"39146","32.87092","-89.99534","Pickens","MS","Mississippi","TRUE","","2301","6.5","28051","Holmes","{""28051"": ""69.55"", ""28089"": ""21.75"", ""28163"": ""8.69""}","Holmes|Madison|Yazoo","28051|28089|28163","FALSE","FALSE","America/Chicago"
-"39149","31.83346","-90.00904","Pinola","MS","Mississippi","TRUE","","1346","6.4","28127","Simpson","{""28127"": ""100""}","Simpson","28127","FALSE","FALSE","America/Chicago"
-"39150","31.9967","-90.98386","Port Gibson","MS","Mississippi","TRUE","","5309","9.0","28021","Claiborne","{""28021"": ""100""}","Claiborne","28021","FALSE","FALSE","America/Chicago"
-"39152","32.20928","-89.57703","Pulaski","MS","Mississippi","TRUE","","1288","8.3","28129","Smith","{""28129"": ""54.75"", ""28123"": ""45.25""}","Smith|Scott","28129|28123","FALSE","FALSE","America/Chicago"
-"39153","32.05162","-89.49863","Raleigh","MS","Mississippi","TRUE","","3044","7.6","28129","Smith","{""28129"": ""100""}","Smith","28129","FALSE","FALSE","America/Chicago"
-"39154","32.22581","-90.44898","Raymond","MS","Mississippi","TRUE","","9954","34.2","28049","Hinds","{""28049"": ""100""}","Hinds","28049","FALSE","FALSE","America/Chicago"
-"39156","32.54032","-90.77608","Redwood","MS","Mississippi","TRUE","","194","1.3","28149","Warren","{""28149"": ""100""}","Warren","28149","FALSE","FALSE","America/Chicago"
-"39157","32.42667","-90.17147","Ridgeland","MS","Mississippi","TRUE","","24572","309.7","28089","Madison","{""28089"": ""100""}","Madison","28089","FALSE","FALSE","America/Chicago"
-"39159","32.82769","-90.94764","Rolling Fork","MS","Mississippi","TRUE","","3132","4.1","28125","Sharkey","{""28125"": ""88.66"", ""28055"": ""11.34""}","Sharkey|Issaquena","28125|28055","FALSE","FALSE","America/Chicago"
-"39160","32.99301","-89.75747","Sallis","MS","Mississippi","TRUE","","2807","7.5","28007","Attala","{""28007"": ""96.23"", ""28079"": ""3.77""}","Attala|Leake","28007|28079","FALSE","FALSE","America/Chicago"
-"39162","32.62762","-90.63537","Satartia","MS","Mississippi","TRUE","","39","0.3","28163","Yazoo","{""28163"": ""100""}","Yazoo","28163","FALSE","FALSE","America/Chicago"
-"39166","33.04034","-90.48061","Silver City","MS","Mississippi","TRUE","","578","3.6","28053","Humphreys","{""28053"": ""100""}","Humphreys","28053","FALSE","FALSE","America/Chicago"
-"39167","32.09405","-90.0411","Star","MS","Mississippi","TRUE","","0","0.0","28121","Rankin","{""28121"": ""100""}","Rankin","28121","FALSE","FALSE","America/Chicago"
-"39168","31.83297","-89.409","Taylorsville","MS","Mississippi","TRUE","","6615","16.6","28129","Smith","{""28129"": ""65.42"", ""28067"": ""22.01"", ""28031"": ""12.57""}","Smith|Jones|Covington","28129|28067|28031","FALSE","FALSE","America/Chicago"
-"39169","33.13655","-90.29019","Tchula","MS","Mississippi","TRUE","","2567","6.5","28051","Holmes","{""28051"": ""100""}","Holmes","28051","FALSE","FALSE","America/Chicago"
-"39170","32.11369","-90.33719","Terry","MS","Mississippi","TRUE","","10188","39.6","28049","Hinds","{""28049"": ""99.48"", ""28029"": ""0.52""}","Hinds|Copiah","28049|28029","FALSE","FALSE","America/Chicago"
-"39174","32.40152","-90.15949","Tougaloo","MS","Mississippi","TRUE","","817","341.2","28089","Madison","{""28089"": ""79.3"", ""28049"": ""20.7""}","Madison|Hinds","28089|28049","FALSE","FALSE","America/Chicago"
-"39175","32.09202","-90.62825","Utica","MS","Mississippi","TRUE","","4317","6.9","28049","Hinds","{""28049"": ""82.84"", ""28029"": ""12.39"", ""28021"": ""4.77""}","Hinds|Copiah|Claiborne","28049|28029|28021","FALSE","FALSE","America/Chicago"
-"39176","33.30197","-89.76658","Vaiden","MS","Mississippi","TRUE","","2412","7.3","28015","Carroll","{""28015"": ""84.66"", ""28007"": ""14.86"", ""28097"": ""0.47""}","Carroll|Attala|Montgomery","28015|28007|28097","FALSE","FALSE","America/Chicago"
-"39177","32.62286","-90.80031","Valley Park","MS","Mississippi","TRUE","","125","0.9","28055","Issaquena","{""28055"": ""100""}","Issaquena","28055","FALSE","FALSE","America/Chicago"
-"39179","32.80401","-90.10161","Vaughan","MS","Mississippi","TRUE","","1396","6.6","28163","Yazoo","{""28163"": ""100""}","Yazoo","28163","FALSE","FALSE","America/Chicago"
-"39180","32.23088","-90.85589","Vicksburg","MS","Mississippi","TRUE","","32336","60.6","28149","Warren","{""28149"": ""100""}","Warren","28149","FALSE","FALSE","America/Chicago"
-"39183","32.45228","-90.80658","Vicksburg","MS","Mississippi","TRUE","","13989","21.2","28149","Warren","{""28149"": ""99.97"", ""28055"": ""0.03""}","Warren|Issaquena","28149|28055","FALSE","FALSE","America/Chicago"
-"39189","32.605","-89.3989","Walnut Grove","MS","Mississippi","TRUE","","4014","19.6","28079","Leake","{""28079"": ""92"", ""28123"": ""8""}","Leake|Scott","28079|28123","FALSE","FALSE","America/Chicago"
-"39191","31.71343","-90.41497","Wesson","MS","Mississippi","TRUE","","8013","14.0","28029","Copiah","{""28029"": ""65.3"", ""28085"": ""34.65"", ""28077"": ""0.05""}","Copiah|Lincoln|Lawrence","28029|28085|28077","FALSE","FALSE","America/Chicago"
-"39192","33.18903","-89.76033","West","MS","Mississippi","TRUE","","1196","3.1","28007","Attala","{""28007"": ""51.18"", ""28051"": ""44.89"", ""28015"": ""3.92""}","Attala|Holmes|Carroll","28007|28051|28015","FALSE","FALSE","America/Chicago"
-"39193","32.23445","-90.07935","Whitfield","MS","Mississippi","TRUE","","959","267.3","28121","Rankin","{""28121"": ""100""}","Rankin","28121","FALSE","FALSE","America/Chicago"
-"39194","32.83609","-90.48743","Yazoo City","MS","Mississippi","TRUE","","22241","19.0","28163","Yazoo","{""28163"": ""99.37"", ""28053"": ""0.63""}","Yazoo|Humphreys","28163|28053","FALSE","FALSE","America/Chicago"
-"39201","32.28931","-90.18396","Jackson","MS","Mississippi","TRUE","","514","90.9","28049","Hinds","{""28049"": ""100""}","Hinds","28049","FALSE","FALSE","America/Chicago"
-"39202","32.31029","-90.17096","Jackson","MS","Mississippi","TRUE","","8017","837.8","28049","Hinds","{""28049"": ""100""}","Hinds","28049","FALSE","FALSE","America/Chicago"
-"39203","32.30881","-90.20038","Jackson","MS","Mississippi","TRUE","","6561","1116.1","28049","Hinds","{""28049"": ""100""}","Hinds","28049","FALSE","FALSE","America/Chicago"
-"39204","32.26813","-90.2269","Jackson","MS","Mississippi","TRUE","","16934","482.8","28049","Hinds","{""28049"": ""100""}","Hinds","28049","FALSE","FALSE","America/Chicago"
-"39206","32.37241","-90.17247","Jackson","MS","Mississippi","TRUE","","24236","1041.3","28049","Hinds","{""28049"": ""100""}","Hinds","28049","FALSE","FALSE","America/Chicago"
-"39208","32.26039","-90.08962","Pearl","MS","Mississippi","TRUE","","32819","252.1","28121","Rankin","{""28121"": ""100""}","Rankin","28121","FALSE","FALSE","America/Chicago"
-"39209","32.39339","-90.30136","Jackson","MS","Mississippi","TRUE","","27117","172.1","28049","Hinds","{""28049"": ""99.87"", ""28089"": ""0.13""}","Hinds|Madison","28049|28089","FALSE","FALSE","America/Chicago"
-"39211","32.37175","-90.12222","Jackson","MS","Mississippi","TRUE","","24655","773.6","28049","Hinds","{""28049"": ""100""}","Hinds","28049","FALSE","FALSE","America/Chicago"
-"39212","32.2421","-90.2731","Jackson","MS","Mississippi","TRUE","","33825","507.7","28049","Hinds","{""28049"": ""100""}","Hinds","28049","FALSE","FALSE","America/Chicago"
-"39213","32.39247","-90.23371","Jackson","MS","Mississippi","TRUE","","20301","272.9","28049","Hinds","{""28049"": ""99.75"", ""28089"": ""0.25""}","Hinds|Madison","28049|28089","FALSE","FALSE","America/Chicago"
-"39216","32.33374","-90.16035","Jackson","MS","Mississippi","TRUE","","4080","465.8","28049","Hinds","{""28049"": ""100""}","Hinds","28049","FALSE","FALSE","America/Chicago"
-"39217","32.29911","-90.21045","Jackson","MS","Mississippi","TRUE","","1262","31542.9","28049","Hinds","{""28049"": ""100""}","Hinds","28049","FALSE","FALSE","America/Chicago"
-"39218","32.22866","-90.15903","Richland","MS","Mississippi","TRUE","","7189","155.9","28121","Rankin","{""28121"": ""100""}","Rankin","28121","FALSE","FALSE","America/Chicago"
-"39232","32.32976","-90.09163","Flowood","MS","Mississippi","TRUE","","7774","173.0","28121","Rankin","{""28121"": ""100""}","Rankin","28121","FALSE","FALSE","America/Chicago"
-"39269","32.30114","-90.1889","Jackson","MS","Mississippi","TRUE","","0","0.0","28049","Hinds","{""28049"": ""0""}","Hinds","28049","FALSE","FALSE","America/Chicago"
-"39272","32.18881","-90.25946","Byram","MS","Mississippi","TRUE","","12895","226.1","28049","Hinds","{""28049"": ""100""}","Hinds","28049","FALSE","FALSE","America/Chicago"
-"39301","32.26855","-88.58391","Meridian","MS","Mississippi","TRUE","","25927","35.9","28075","Lauderdale","{""28075"": ""94.1"", ""28023"": ""5.9""}","Lauderdale|Clarke","28075|28023","FALSE","FALSE","America/Chicago"
-"39305","32.46657","-88.72002","Meridian","MS","Mississippi","TRUE","","21126","74.8","28075","Lauderdale","{""28075"": ""100""}","Lauderdale","28075","FALSE","FALSE","America/Chicago"
-"39307","32.33768","-88.79618","Meridian","MS","Mississippi","TRUE","","17051","69.0","28075","Lauderdale","{""28075"": ""100""}","Lauderdale","28075","FALSE","FALSE","America/Chicago"
-"39309","32.55039","-88.61318","Meridian","MS","Mississippi","TRUE","","349","227.2","28075","Lauderdale","{""28075"": ""100""}","Lauderdale","28075","FALSE","FALSE","America/Chicago"
-"39320","32.56871","-88.75401","Bailey","MS","Mississippi","TRUE","","1231","11.0","28075","Lauderdale","{""28075"": ""82.55"", ""28069"": ""17.45""}","Lauderdale|Kemper","28075|28069","FALSE","FALSE","America/Chicago"
-"39322","31.58415","-88.53434","Buckatunna","MS","Mississippi","TRUE","","2217","11.6","28153","Wayne","{""28153"": ""100""}","Wayne","28153","FALSE","FALSE","America/Chicago"
-"39323","32.35105","-88.92633","Chunky","MS","Mississippi","TRUE","","1540","11.2","28101","Newton","{""28101"": ""79.61"", ""28075"": ""20.39""}","Newton|Lauderdale","28101|28075","FALSE","FALSE","America/Chicago"
-"39325","32.5643","-88.87498","Collinsville","MS","Mississippi","TRUE","","6275","22.1","28075","Lauderdale","{""28075"": ""83.12"", ""28069"": ""7.74"", ""28099"": ""6.52"", ""28101"": ""2.62""}","Lauderdale|Kemper|Neshoba|Newton","28075|28069|28099|28101","FALSE","FALSE","America/Chicago"
-"39326","32.59914","-88.67903","Daleville","MS","Mississippi","TRUE","","414","4.1","28075","Lauderdale","{""28075"": ""61.53"", ""28069"": ""38.47""}","Lauderdale|Kemper","28075|28069","FALSE","FALSE","America/Chicago"
-"39327","32.44578","-89.11948","Decatur","MS","Mississippi","TRUE","","4045","15.0","28101","Newton","{""28101"": ""100""}","Newton","28101","FALSE","FALSE","America/Chicago"
-"39328","32.74432","-88.70075","De Kalb","MS","Mississippi","TRUE","","5144","6.6","28069","Kemper","{""28069"": ""100""}","Kemper","28069","FALSE","FALSE","America/Chicago"
-"39330","32.18563","-88.85772","Enterprise","MS","Mississippi","TRUE","","2756","8.0","28023","Clarke","{""28023"": ""81.54"", ""28075"": ""13.36"", ""28061"": ""3.79"", ""28101"": ""1.31""}","Clarke|Lauderdale|Jasper|Newton","28023|28075|28061|28101","FALSE","FALSE","America/Chicago"
-"39332","32.30005","-89.00412","Hickory","MS","Mississippi","TRUE","","1824","9.9","28101","Newton","{""28101"": ""94.18"", ""28061"": ""5.82""}","Newton|Jasper","28101|28061","FALSE","FALSE","America/Chicago"
-"39335","32.5354","-88.49037","Lauderdale","MS","Mississippi","TRUE","","2740","9.1","28075","Lauderdale","{""28075"": ""93.99"", ""28069"": ""6.01""}","Lauderdale|Kemper","28075|28069","FALSE","FALSE","America/Chicago"
-"39336","32.28886","-89.26542","Lawrence","MS","Mississippi","TRUE","","1255","6.2","28101","Newton","{""28101"": ""96.84"", ""28061"": ""2.19"", ""28129"": ""0.97""}","Newton|Jasper|Smith","28101|28061|28129","FALSE","FALSE","America/Chicago"
-"39337","32.51415","-88.98056","Little Rock","MS","Mississippi","TRUE","","1931","11.6","28101","Newton","{""28101"": ""94.3"", ""28099"": ""5.7""}","Newton|Neshoba","28101|28099","FALSE","FALSE","America/Chicago"
-"39338","32.11472","-89.22514","Louin","MS","Mississippi","TRUE","","4375","7.5","28061","Jasper","{""28061"": ""79.87"", ""28129"": ""20.13""}","Jasper|Smith","28061|28129","FALSE","FALSE","America/Chicago"
-"39339","33.10146","-89.00835","Louisville","MS","Mississippi","TRUE","","14378","14.6","28159","Winston","{""28159"": ""100""}","Winston","28159","FALSE","FALSE","America/Chicago"
-"39341","33.10052","-88.56203","Macon","MS","Mississippi","TRUE","","6801","7.0","28103","Noxubee","{""28103"": ""98.78"", ""28159"": ""1.22""}","Noxubee|Winston","28103|28159","FALSE","FALSE","America/Chicago"
-"39342","32.42445","-88.64837","Marion","MS","Mississippi","TRUE","","1436","224.3","28075","Lauderdale","{""28075"": ""100""}","Lauderdale","28075","FALSE","FALSE","America/Chicago"
-"39345","32.29456","-89.12583","Newton","MS","Mississippi","TRUE","","5453","17.1","28101","Newton","{""28101"": ""97.32"", ""28061"": ""2.68""}","Newton|Jasper","28101|28061","FALSE","FALSE","America/Chicago"
-"39346","32.96205","-89.08969","Noxapater","MS","Mississippi","TRUE","","2303","11.3","28159","Winston","{""28159"": ""94.47"", ""28099"": ""5.53""}","Winston|Neshoba","28159|28099","FALSE","FALSE","America/Chicago"
-"39347","32.05785","-88.93097","Pachuta","MS","Mississippi","TRUE","","1368","7.3","28061","Jasper","{""28061"": ""59.65"", ""28023"": ""40.35""}","Jasper|Clarke","28061|28023","FALSE","FALSE","America/Chicago"
-"39348","32.01058","-89.03125","Paulding","MS","Mississippi","TRUE","","518","5.0","28061","Jasper","{""28061"": ""100""}","Jasper","28061","FALSE","FALSE","America/Chicago"
-"39350","32.79578","-89.12848","Philadelphia","MS","Mississippi","TRUE","","24899","23.3","28099","Neshoba","{""28099"": ""96.9"", ""28069"": ""1.66"", ""28159"": ""0.99"", ""28079"": ""0.45""}","Neshoba|Kemper|Winston|Leake","28099|28069|28159|28079","FALSE","FALSE","America/Chicago"
-"39352","32.6844","-88.47989","Porterville","MS","Mississippi","TRUE","","431","1.7","28069","Kemper","{""28069"": ""100""}","Kemper","28069","FALSE","FALSE","America/Chicago"
-"39354","32.88007","-88.83184","Preston","MS","Mississippi","TRUE","","3005","9.1","28069","Kemper","{""28069"": ""70.96"", ""28159"": ""22.06"", ""28099"": ""5.21"", ""28103"": ""1.77""}","Kemper|Winston|Neshoba|Noxubee","28069|28159|28099|28103","FALSE","FALSE","America/Chicago"
-"39355","32.05253","-88.62348","Quitman","MS","Mississippi","TRUE","","6397","9.4","28023","Clarke","{""28023"": ""100""}","Clarke","28023","FALSE","FALSE","America/Chicago"
-"39356","32.13642","-89.02493","Rose Hill","MS","Mississippi","TRUE","","383","2.8","28061","Jasper","{""28061"": ""100""}","Jasper","28061","FALSE","FALSE","America/Chicago"
-"39358","32.84397","-88.46413","Scooba","MS","Mississippi","TRUE","","1676","3.9","28069","Kemper","{""28069"": ""99.64"", ""28103"": ""0.36""}","Kemper|Noxubee","28069|28103","FALSE","FALSE","America/Chicago"
-"39359","32.56781","-89.33359","Sebastopol","MS","Mississippi","TRUE","","339","87.8","28123","Scott","{""28123"": ""100""}","Scott","28123","FALSE","FALSE","America/Chicago"
-"39360","31.85895","-88.74884","Shubuta","MS","Mississippi","TRUE","","2924","4.8","28023","Clarke","{""28023"": ""62.66"", ""28153"": ""37.34""}","Clarke|Wayne","28023|28153","FALSE","FALSE","America/Chicago"
-"39361","32.98149","-88.61159","Shuqualak","MS","Mississippi","TRUE","","1401","3.7","28103","Noxubee","{""28103"": ""99.11"", ""28069"": ""0.89""}","Noxubee|Kemper","28103|28069","FALSE","FALSE","America/Chicago"
-"39362","31.39196","-88.54069","State Line","MS","Mississippi","TRUE","","3476","6.7","28153","Wayne","{""28153"": ""51.78"", ""28041"": ""48.22""}","Wayne|Greene","28153|28041","FALSE","FALSE","America/Chicago"
-"39363","32.12033","-88.77845","Stonewall","MS","Mississippi","TRUE","","1316","21.5","28023","Clarke","{""28023"": ""100""}","Clarke","28023","FALSE","FALSE","America/Chicago"
-"39364","32.40922","-88.49598","Toomsuba","MS","Mississippi","TRUE","","2537","13.2","28075","Lauderdale","{""28075"": ""100""}","Lauderdale","28075","FALSE","FALSE","America/Chicago"
-"39365","32.60123","-89.12602","Union","MS","Mississippi","TRUE","","7698","15.8","28099","Neshoba","{""28099"": ""60.58"", ""28101"": ""39.04"", ""28079"": ""0.34"", ""28069"": ""0.04""}","Neshoba|Newton|Leake|Kemper","28099|28101|28079|28069","FALSE","FALSE","America/Chicago"
-"39366","31.94157","-88.91662","Vossburg","MS","Mississippi","TRUE","","1125","5.6","28061","Jasper","{""28061"": ""58.99"", ""28023"": ""41.01""}","Jasper|Clarke","28061|28023","FALSE","FALSE","America/Chicago"
-"39367","31.67902","-88.66749","Waynesboro","MS","Mississippi","TRUE","","14746","12.1","28153","Wayne","{""28153"": ""98.34"", ""28023"": ""1.66""}","Wayne|Clarke","28153|28023","FALSE","FALSE","America/Chicago"
-"39401","31.23265","-89.26717","Hattiesburg","MS","Mississippi","TRUE","","41931","84.4","28035","Forrest","{""28035"": ""95.35"", ""28073"": ""3.72"", ""28067"": ""0.79"", ""28031"": ""0.14""}","Forrest|Lamar|Jones|Covington","28035|28073|28067|28031","FALSE","FALSE","America/Chicago"
-"39402","31.3337","-89.41259","Hattiesburg","MS","Mississippi","TRUE","","40860","179.5","28073","Lamar","{""28073"": ""74.76"", ""28035"": ""25.13"", ""28031"": ""0.11""}","Lamar|Forrest|Covington","28073|28035|28031","FALSE","FALSE","America/Chicago"
-"39406","31.32844","-89.33449","Hattiesburg","MS","Mississippi","TRUE","","1849","2606.5","28035","Forrest","{""28035"": ""100""}","Forrest","28035","FALSE","FALSE","America/Chicago"
-"39421","31.48476","-89.712","Bassfield","MS","Mississippi","TRUE","","2800","16.6","28065","Jefferson Davis","{""28065"": ""87.77"", ""28091"": ""12.23""}","Jefferson Davis|Marion","28065|28091","FALSE","FALSE","America/Chicago"
-"39422","31.96057","-89.25949","Bay Springs","MS","Mississippi","TRUE","","4766","13.4","28061","Jasper","{""28061"": ""87.95"", ""28129"": ""12.05""}","Jasper|Smith","28061|28129","FALSE","FALSE","America/Chicago"
-"39423","31.17101","-88.91489","Beaumont","MS","Mississippi","TRUE","","2652","10.6","28111","Perry","{""28111"": ""100""}","Perry","28111","FALSE","FALSE","America/Chicago"
-"39425","31.05912","-89.07959","Brooklyn","MS","Mississippi","TRUE","","2399","4.8","28035","Forrest","{""28035"": ""57.53"", ""28111"": ""42.47""}","Forrest|Perry","28035|28111","FALSE","FALSE","America/Chicago"
-"39426","30.65371","-89.66106","Carriere","MS","Mississippi","TRUE","","18074","39.7","28109","Pearl River","{""28109"": ""97.47"", ""28045"": ""2.53""}","Pearl River|Hancock","28109|28045","FALSE","FALSE","America/Chicago"
-"39427","31.48135","-89.82791","Carson","MS","Mississippi","TRUE","","1374","9.1","28065","Jefferson Davis","{""28065"": ""100""}","Jefferson Davis","28065","FALSE","FALSE","America/Chicago"
-"39428","31.65047","-89.57337","Collins","MS","Mississippi","TRUE","","9900","21.1","28031","Covington","{""28031"": ""100""}","Covington","28031","FALSE","FALSE","America/Chicago"
-"39429","31.24372","-89.76187","Columbia","MS","Mississippi","TRUE","","16454","20.8","28091","Marion","{""28091"": ""99.61"", ""28073"": ""0.27"", ""28065"": ""0.12""}","Marion|Lamar|Jefferson Davis","28091|28073|28065","FALSE","FALSE","America/Chicago"
-"39437","31.57844","-89.22003","Ellisville","MS","Mississippi","TRUE","","13720","31.6","28067","Jones","{""28067"": ""100""}","Jones","28067","FALSE","FALSE","America/Chicago"
-"39439","31.85486","-89.01243","Heidelberg","MS","Mississippi","TRUE","","4423","12.3","28061","Jasper","{""28061"": ""72.75"", ""28067"": ""21.34"", ""28023"": ""3.24"", ""28153"": ""2.67""}","Jasper|Jones|Clarke|Wayne","28061|28067|28023|28153","FALSE","FALSE","America/Chicago"
-"39440","31.693","-89.14714","Laurel","MS","Mississippi","TRUE","","21080","412.0","28067","Jones","{""28067"": ""100""}","Jones","28067","FALSE","FALSE","America/Chicago"
-"39443","31.71378","-89.07595","Laurel","MS","Mississippi","TRUE","","21572","31.6","28067","Jones","{""28067"": ""92.85"", ""28061"": ""4.63"", ""28153"": ""2.52""}","Jones|Jasper|Wayne","28067|28061|28153","FALSE","FALSE","America/Chicago"
-"39451","31.17153","-88.6192","Leakesville","MS","Mississippi","TRUE","","6795","9.7","28041","Greene","{""28041"": ""100""}","Greene","28041","FALSE","FALSE","America/Chicago"
-"39452","30.87871","-88.5996","Lucedale","MS","Mississippi","TRUE","","27517","18.8","28039","George","{""28039"": ""82.57"", ""28059"": ""9.88"", ""28041"": ""7.55""}","George|Jackson|Greene","28039|28059|28041","FALSE","FALSE","America/Chicago"
-"39455","31.01053","-89.46549","Lumberton","MS","Mississippi","TRUE","","9834","10.7","28073","Lamar","{""28073"": ""61.07"", ""28109"": ""24.51"", ""28035"": ""8.62"", ""28131"": ""5.57"", ""28091"": ""0.23""}","Lamar|Pearl River|Forrest|Stone|Marion","28073|28109|28035|28131|28091","FALSE","FALSE","America/Chicago"
-"39456","31.04537","-88.82994","McLain","MS","Mississippi","TRUE","","719","2.6","28041","Greene","{""28041"": ""92.49"", ""28111"": ""7.51""}","Greene|Perry","28041|28111","FALSE","FALSE","America/Chicago"
-"39459","31.4908","-89.30087","Moselle","MS","Mississippi","TRUE","","3612","21.7","28067","Jones","{""28067"": ""100""}","Jones","28067","FALSE","FALSE","America/Chicago"
-"39461","31.1828","-88.73818","Neely","MS","Mississippi","TRUE","","624","5.3","28041","Greene","{""28041"": ""100""}","Greene","28041","FALSE","FALSE","America/Chicago"
-"39462","31.22291","-89.06016","New Augusta","MS","Mississippi","TRUE","","1133","8.1","28111","Perry","{""28111"": ""100""}","Perry","28111","FALSE","FALSE","America/Chicago"
-"39464","31.49249","-89.06775","Ovett","MS","Mississippi","TRUE","","3299","13.7","28067","Jones","{""28067"": ""86.54"", ""28111"": ""13.46""}","Jones|Perry","28067|28111","FALSE","FALSE","America/Chicago"
-"39465","31.34449","-89.18036","Petal","MS","Mississippi","TRUE","","21517","62.9","28035","Forrest","{""28035"": ""91.1"", ""28111"": ""8.64"", ""28067"": ""0.26""}","Forrest|Perry|Jones","28035|28111|28067","FALSE","FALSE","America/Chicago"
-"39466","30.54011","-89.63859","Picayune","MS","Mississippi","TRUE","","25868","70.3","28109","Pearl River","{""28109"": ""88.34"", ""28045"": ""11.66""}","Pearl River|Hancock","28109|28045","FALSE","FALSE","America/Chicago"
-"39470","30.81361","-89.57353","Poplarville","MS","Mississippi","TRUE","","12068","10.6","28109","Pearl River","{""28109"": ""99.47"", ""28045"": ""0.53""}","Pearl River|Hancock","28109|28045","FALSE","FALSE","America/Chicago"
-"39474","31.61225","-89.85545","Prentiss","MS","Mississippi","TRUE","","5346","13.0","28065","Jefferson Davis","{""28065"": ""99.77"", ""28031"": ""0.23""}","Jefferson Davis|Covington","28065|28031","FALSE","FALSE","America/Chicago"
-"39475","31.15478","-89.41704","Purvis","MS","Mississippi","TRUE","","13973","32.1","28073","Lamar","{""28073"": ""97.64"", ""28035"": ""2.36""}","Lamar|Forrest","28073|28035","FALSE","FALSE","America/Chicago"
-"39476","31.38345","-88.87558","Richton","MS","Mississippi","TRUE","","7627","7.3","28111","Perry","{""28111"": ""65.04"", ""28041"": ""26.69"", ""28153"": ""5.68"", ""28067"": ""2.59""}","Perry|Greene|Wayne|Jones","28111|28041|28153|28067","FALSE","FALSE","America/Chicago"
-"39477","31.7926","-89.03479","Sandersville","MS","Mississippi","TRUE","","668","46.8","28067","Jones","{""28067"": ""100""}","Jones","28067","FALSE","FALSE","America/Chicago"
-"39478","31.05446","-89.85759","Sandy Hook","MS","Mississippi","TRUE","","2184","11.4","28091","Marion","{""28091"": ""55.11"", ""28147"": ""44.89""}","Marion|Walthall","28091|28147","FALSE","FALSE","America/Chicago"
-"39479","31.53602","-89.46075","Seminary","MS","Mississippi","TRUE","","6153","18.8","28031","Covington","{""28031"": ""84.09"", ""28067"": ""15.91""}","Covington|Jones","28031|28067","FALSE","FALSE","America/Chicago"
-"39480","31.71061","-89.31219","Soso","MS","Mississippi","TRUE","","3010","21.6","28067","Jones","{""28067"": ""97.69"", ""28061"": ""2.31""}","Jones|Jasper","28067|28061","FALSE","FALSE","America/Chicago"
-"39481","31.86715","-89.2422","Stringer","MS","Mississippi","TRUE","","1536","15.1","28061","Jasper","{""28061"": ""100""}","Jasper","28061","FALSE","FALSE","America/Chicago"
-"39482","31.37264","-89.57858","Sumrall","MS","Mississippi","TRUE","","10717","21.0","28073","Lamar","{""28073"": ""83.04"", ""28031"": ""6.53"", ""28065"": ""5.5"", ""28091"": ""4.94""}","Lamar|Covington|Jefferson Davis|Marion","28073|28031|28065|28091","FALSE","FALSE","America/Chicago"
-"39483","31.23585","-89.92948","Foxworth","MS","Mississippi","TRUE","","6122","15.3","28091","Marion","{""28091"": ""98.84"", ""28147"": ""1.16""}","Marion|Walthall","28091|28147","FALSE","FALSE","America/Chicago"
-"39501","30.38317","-89.10346","Gulfport","MS","Mississippi","TRUE","","23600","665.9","28047","Harrison","{""28047"": ""100""}","Harrison","28047","FALSE","FALSE","America/Chicago"
-"39503","30.47761","-89.1536","Gulfport","MS","Mississippi","TRUE","","55692","178.2","28047","Harrison","{""28047"": ""100""}","Harrison","28047","FALSE","FALSE","America/Chicago"
-"39507","30.39914","-89.03582","Gulfport","MS","Mississippi","TRUE","","16300","779.7","28047","Harrison","{""28047"": ""100""}","Harrison","28047","FALSE","FALSE","America/Chicago"
-"39520","30.26641","-89.47043","Bay Saint Louis","MS","Mississippi","TRUE","","17972","74.8","28045","Hancock","{""28045"": ""100""}","Hancock","28045","FALSE","FALSE","America/Chicago"
-"39525","30.38173","-89.37028","Diamondhead","MS","Mississippi","TRUE","","8103","293.0","28045","Hancock","{""28045"": ""100""}","Hancock","28045","FALSE","FALSE","America/Chicago"
-"39530","30.32883","-88.95779","Biloxi","MS","Mississippi","TRUE","","8052","313.2","28047","Harrison","{""28047"": ""100""}","Harrison","28047","FALSE","FALSE","America/Chicago"
-"39531","30.40422","-88.96775","Biloxi","MS","Mississippi","TRUE","","17410","993.8","28047","Harrison","{""28047"": ""100""}","Harrison","28047","FALSE","FALSE","America/Chicago"
-"39532","30.49403","-88.96513","Biloxi","MS","Mississippi","TRUE","","37270","182.3","28047","Harrison","{""28047"": ""71.6"", ""28059"": ""28.4""}","Harrison|Jackson","28047|28059","FALSE","FALSE","America/Chicago"
-"39534","30.40672","-88.92114","Biloxi","MS","Mississippi","TRUE","","2624","627.8","28047","Harrison","{""28047"": ""100""}","Harrison","28047","FALSE","FALSE","America/Chicago"
-"39540","30.44175","-88.89903","Diberville","MS","Mississippi","TRUE","","8872","742.8","28047","Harrison","{""28047"": ""100""}","Harrison","28047","FALSE","FALSE","America/Chicago"
-"39553","30.41322","-88.64751","Gautier","MS","Mississippi","TRUE","","16750","244.6","28059","Jackson","{""28059"": ""100""}","Jackson","28059","FALSE","FALSE","America/Chicago"
-"39556","30.44861","-89.43753","Kiln","MS","Mississippi","TRUE","","9212","33.8","28045","Hancock","{""28045"": ""100""}","Hancock","28045","FALSE","FALSE","America/Chicago"
-"39560","30.3754","-89.17436","Long Beach","MS","Mississippi","TRUE","","17399","307.5","28047","Harrison","{""28047"": ""100""}","Harrison","28047","FALSE","FALSE","America/Chicago"
-"39561","30.70499","-89.15505","McHenry","MS","Mississippi","TRUE","","2464","33.8","28131","Stone","{""28131"": ""100""}","Stone","28131","FALSE","FALSE","America/Chicago"
-"39562","30.54705","-88.49275","Moss Point","MS","Mississippi","TRUE","","16768","34.4","28059","Jackson","{""28059"": ""100""}","Jackson","28059","FALSE","FALSE","America/Chicago"
-"39563","30.42495","-88.52327","Moss Point","MS","Mississippi","TRUE","","13451","255.1","28059","Jackson","{""28059"": ""100""}","Jackson","28059","FALSE","FALSE","America/Chicago"
-"39564","30.40499","-88.75452","Ocean Springs","MS","Mississippi","TRUE","","41544","302.1","28059","Jackson","{""28059"": ""100""}","Jackson","28059","FALSE","FALSE","America/Chicago"
-"39565","30.58047","-88.7431","Vancleave","MS","Mississippi","TRUE","","19863","27.5","28059","Jackson","{""28059"": ""99.8"", ""28047"": ""0.2""}","Jackson|Harrison","28059|28047","FALSE","FALSE","America/Chicago"
-"39567","30.29492","-88.58611","Pascagoula","MS","Mississippi","TRUE","","11289","327.8","28059","Jackson","{""28059"": ""100""}","Jackson","28059","FALSE","FALSE","America/Chicago"
-"39571","30.41702","-89.28186","Pass Christian","MS","Mississippi","TRUE","","13829","62.8","28047","Harrison","{""28047"": ""97.81"", ""28045"": ""2.19""}","Harrison|Hancock","28047|28045","FALSE","FALSE","America/Chicago"
-"39572","30.2507","-89.60124","Pearlington","MS","Mississippi","TRUE","","1137","40.7","28045","Hancock","{""28045"": ""100""}","Hancock","28045","FALSE","FALSE","America/Chicago"
-"39573","30.72713","-89.09229","Perkinston","MS","Mississippi","TRUE","","7624","7.4","28131","Stone","{""28131"": ""70.59"", ""28045"": ""21.91"", ""28039"": ""3.56"", ""28059"": ""1.52"", ""28109"": ""1.31"", ""28047"": ""1.11""}","Stone|Hancock|George|Jackson|Pearl River|Harrison","28131|28045|28039|28059|28109|28047","FALSE","FALSE","America/Chicago"
-"39574","30.60749","-89.09007","Saucier","MS","Mississippi","TRUE","","13471","22.8","28047","Harrison","{""28047"": ""99.59"", ""28131"": ""0.41""}","Harrison|Stone","28047|28131","FALSE","FALSE","America/Chicago"
-"39576","30.28877","-89.38377","Waveland","MS","Mississippi","TRUE","","5690","338.3","28045","Hancock","{""28045"": ""100""}","Hancock","28045","FALSE","FALSE","America/Chicago"
-"39577","30.9061","-89.07637","Wiggins","MS","Mississippi","TRUE","","11104","16.8","28131","Stone","{""28131"": ""87.77"", ""28035"": ""7.58"", ""28111"": ""4.66""}","Stone|Forrest|Perry","28131|28035|28111","FALSE","FALSE","America/Chicago"
-"39581","30.3575","-88.4905","Pascagoula","MS","Mississippi","TRUE","","10572","207.7","28059","Jackson","{""28059"": ""100""}","Jackson","28059","FALSE","FALSE","America/Chicago"
-"39601","31.56536","-90.46973","Brookhaven","MS","Mississippi","TRUE","","23288","34.1","28085","Lincoln","{""28085"": ""98.64"", ""28037"": ""1.36""}","Lincoln|Franklin","28085|28037","FALSE","FALSE","America/Chicago"
-"39629","31.43776","-90.45855","Bogue Chitto","MS","Mississippi","TRUE","","6943","17.2","28085","Lincoln","{""28085"": ""100""}","Lincoln","28085","FALSE","FALSE","America/Chicago"
-"39630","31.45932","-90.84563","Bude","MS","Mississippi","TRUE","","750","95.3","28037","Franklin","{""28037"": ""100""}","Franklin","28037","FALSE","FALSE","America/Chicago"
-"39631","31.07762","-91.09725","Centreville","MS","Mississippi","TRUE","","3229","8.2","28157","Wilkinson","{""28157"": ""78.91"", ""28005"": ""21.09""}","Wilkinson|Amite","28157|28005","FALSE","FALSE","America/Chicago"
-"39633","31.291","-91.18493","Crosby","MS","Mississippi","TRUE","","1144","3.5","28157","Wilkinson","{""28157"": ""77.15"", ""28005"": ""22.85""}","Wilkinson|Amite","28157|28005","FALSE","FALSE","America/Chicago"
-"39635","31.19144","-90.46345","Fernwood","MS","Mississippi","TRUE","","241","76.6","28113","Pike","{""28113"": ""100""}","Pike","28113","FALSE","FALSE","America/Chicago"
-"39638","31.22602","-90.9935","Gloster","MS","Mississippi","TRUE","","3215","7.1","28005","Amite","{""28005"": ""98.68"", ""28157"": ""1.32""}","Amite|Wilkinson","28005|28157","FALSE","FALSE","America/Chicago"
-"39641","31.3567","-90.16983","Jayess","MS","Mississippi","TRUE","","3624","10.0","28147","Walthall","{""28147"": ""45.68"", ""28077"": ""43.4"", ""28113"": ""9.74"", ""28085"": ""1.18""}","Walthall|Lawrence|Pike|Lincoln","28147|28077|28113|28085","FALSE","FALSE","America/Chicago"
-"39643","31.244","-90.0194","Kokomo","MS","Mississippi","TRUE","","1154","13.9","28091","Marion","{""28091"": ""79.58"", ""28147"": ""20.42""}","Marion|Walthall","28091|28147","FALSE","FALSE","America/Chicago"
-"39645","31.14749","-90.79778","Liberty","MS","Mississippi","TRUE","","4917","5.9","28005","Amite","{""28005"": ""100""}","Amite","28005","FALSE","FALSE","America/Chicago"
-"39647","31.51575","-90.72011","McCall Creek","MS","Mississippi","TRUE","","1321","6.5","28037","Franklin","{""28037"": ""94.92"", ""28085"": ""5.08""}","Franklin|Lincoln","28037|28085","FALSE","FALSE","America/Chicago"
-"39648","31.18729","-90.38232","Mccomb","MS","Mississippi","TRUE","","20176","75.1","28113","Pike","{""28113"": ""100""}","Pike","28113","FALSE","FALSE","America/Chicago"
-"39652","31.11253","-90.47403","Magnolia","MS","Mississippi","TRUE","","8395","18.3","28113","Pike","{""28113"": ""86.59"", ""28005"": ""13.41""}","Pike|Amite","28113|28005","FALSE","FALSE","America/Chicago"
-"39653","31.46183","-90.86619","Meadville","MS","Mississippi","TRUE","","2270","4.0","28037","Franklin","{""28037"": ""97.39"", ""28005"": ""2.04"", ""28063"": ""0.57""}","Franklin|Amite|Jefferson","28037|28005|28063","FALSE","FALSE","America/Chicago"
-"39654","31.54357","-90.13543","Monticello","MS","Mississippi","TRUE","","5171","13.0","28077","Lawrence","{""28077"": ""100""}","Lawrence","28077","FALSE","FALSE","America/Chicago"
-"39656","31.44283","-89.93761","Oak Vale","MS","Mississippi","TRUE","","569","4.9","28065","Jefferson Davis","{""28065"": ""69.74"", ""28077"": ""30.26""}","Jefferson Davis|Lawrence","28065|28077","FALSE","FALSE","America/Chicago"
-"39657","31.02567","-90.50366","Osyka","MS","Mississippi","TRUE","","1711","7.2","28113","Pike","{""28113"": ""78.82"", ""28005"": ""21.18""}","Pike|Amite","28113|28005","FALSE","FALSE","America/Chicago"
-"39661","31.48579","-91.0812","Roxie","MS","Mississippi","TRUE","","2904","4.3","28037","Franklin","{""28037"": ""77.08"", ""28001"": ""22.92""}","Franklin|Adams","28037|28001","FALSE","FALSE","America/Chicago"
-"39662","31.39081","-90.2943","Ruth","MS","Mississippi","TRUE","","1500","12.6","28085","Lincoln","{""28085"": ""67.6"", ""28113"": ""21.85"", ""28077"": ""10.55""}","Lincoln|Pike|Lawrence","28085|28113|28077","FALSE","FALSE","America/Chicago"
-"39663","31.58714","-90.02541","Silver Creek","MS","Mississippi","TRUE","","2947","9.2","28077","Lawrence","{""28077"": ""90.65"", ""28065"": ""9.35""}","Lawrence|Jefferson Davis","28077|28065","FALSE","FALSE","America/Chicago"
-"39664","31.33096","-90.67976","Smithdale","MS","Mississippi","TRUE","","2148","7.1","28005","Amite","{""28005"": ""56.56"", ""28037"": ""28.99"", ""28085"": ""14.45""}","Amite|Franklin|Lincoln","28005|28037|28085","FALSE","FALSE","America/Chicago"
-"39665","31.63787","-90.21402","Sontag","MS","Mississippi","TRUE","","1848","12.1","28077","Lawrence","{""28077"": ""79.26"", ""28085"": ""20.74""}","Lawrence|Lincoln","28077|28085","FALSE","FALSE","America/Chicago"
-"39666","31.29094","-90.48192","Summit","MS","Mississippi","TRUE","","10686","26.5","28113","Pike","{""28113"": ""84.95"", ""28005"": ""8.79"", ""28085"": ""6.26""}","Pike|Amite|Lincoln","28113|28005|28085","FALSE","FALSE","America/Chicago"
-"39667","31.12978","-90.12535","Tylertown","MS","Mississippi","TRUE","","12045","14.7","28147","Walthall","{""28147"": ""94.01"", ""28113"": ""4.62"", ""28091"": ""1.37""}","Walthall|Pike|Marion","28147|28113|28091","FALSE","FALSE","America/Chicago"
-"39668","31.69112","-90.79058","Union Church","MS","Mississippi","TRUE","","700","2.3","28063","Jefferson","{""28063"": ""72.54"", ""28085"": ""24.23"", ""28037"": ""3.23""}","Jefferson|Lincoln|Franklin","28063|28085|28037","FALSE","FALSE","America/Chicago"
-"39669","31.14245","-91.3969","Woodville","MS","Mississippi","TRUE","","5335","4.8","28157","Wilkinson","{""28157"": ""100""}","Wilkinson","28157","FALSE","FALSE","America/Chicago"
-"39701","33.41082","-88.50472","Columbus","MS","Mississippi","TRUE","","13346","27.5","28087","Lowndes","{""28087"": ""100""}","Lowndes","28087","FALSE","FALSE","America/Chicago"
-"39702","33.43974","-88.34479","Columbus","MS","Mississippi","TRUE","","23215","88.8","28087","Lowndes","{""28087"": ""100""}","Lowndes","28087","FALSE","FALSE","America/Chicago"
-"39705","33.58606","-88.43574","Columbus","MS","Mississippi","TRUE","","12695","73.5","28087","Lowndes","{""28087"": ""100""}","Lowndes","28087","FALSE","FALSE","America/Chicago"
-"39730","33.8418","-88.56421","Aberdeen","MS","Mississippi","TRUE","","11603","17.8","28095","Monroe","{""28095"": ""100""}","Monroe","28095","FALSE","FALSE","America/Chicago"
-"39735","33.34737","-89.18525","Ackerman","MS","Mississippi","TRUE","","3319","8.3","28019","Choctaw","{""28019"": ""100""}","Choctaw","28019","FALSE","FALSE","America/Chicago"
-"39736","33.43195","-88.65228","Artesia","MS","Mississippi","TRUE","","229","32.6","28087","Lowndes","{""28087"": ""100""}","Lowndes","28087","FALSE","FALSE","America/Chicago"
-"39737","33.67003","-89.32741","Bellefontaine","MS","Mississippi","TRUE","","287","7.2","28155","Webster","{""28155"": ""100""}","Webster","28155","FALSE","FALSE","America/Chicago"
-"39739","33.23963","-88.57382","Brooksville","MS","Mississippi","TRUE","","2345","5.0","28103","Noxubee","{""28103"": ""100""}","Noxubee","28103","FALSE","FALSE","America/Chicago"
-"39740","33.72185","-88.31218","Caledonia","MS","Mississippi","TRUE","","5297","24.6","28087","Lowndes","{""28087"": ""90.43"", ""28095"": ""9.57""}","Lowndes|Monroe","28087|28095","FALSE","FALSE","America/Chicago"
-"39741","33.65137","-88.86238","Cedarbluff","MS","Mississippi","TRUE","","1630","9.4","28025","Clay","{""28025"": ""100""}","Clay","28025","FALSE","FALSE","America/Chicago"
-"39743","33.32189","-88.61306","Crawford","MS","Mississippi","TRUE","","1394","7.8","28087","Lowndes","{""28087"": ""75.81"", ""28105"": ""23.17"", ""28103"": ""1.02""}","Lowndes|Oktibbeha|Noxubee","28087|28105|28103","FALSE","FALSE","America/Chicago"
-"39744","33.58209","-89.30713","Eupora","MS","Mississippi","TRUE","","5384","8.2","28155","Webster","{""28155"": ""91.66"", ""28019"": ""7.71"", ""28013"": ""0.63""}","Webster|Choctaw|Calhoun","28155|28019|28013","FALSE","FALSE","America/Chicago"
-"39745","33.29845","-89.45057","French Camp","MS","Mississippi","TRUE","","965","7.1","28019","Choctaw","{""28019"": ""71.85"", ""28007"": ""17.53"", ""28097"": ""10.62""}","Choctaw|Attala|Montgomery","28019|28007|28097","FALSE","FALSE","America/Chicago"
-"39746","33.74841","-88.41418","Hamilton","MS","Mississippi","TRUE","","2940","12.5","28095","Monroe","{""28095"": ""100""}","Monroe","28095","FALSE","FALSE","America/Chicago"
-"39747","33.40855","-89.55494","Kilmichael","MS","Mississippi","TRUE","","1535","3.9","28097","Montgomery","{""28097"": ""100""}","Montgomery","28097","FALSE","FALSE","America/Chicago"
-"39750","33.56857","-89.0605","Maben","MS","Mississippi","TRUE","","2473","11.6","28155","Webster","{""28155"": ""49.51"", ""28105"": ""44.05"", ""28025"": ""5.11"", ""28019"": ""1.33""}","Webster|Oktibbeha|Clay|Choctaw","28155|28105|28025|28019","FALSE","FALSE","America/Chicago"
-"39751","33.70516","-89.10514","Mantee","MS","Mississippi","TRUE","","1663","8.1","28155","Webster","{""28155"": ""64.78"", ""28025"": ""31.86"", ""28017"": ""3.36""}","Webster|Clay|Chickasaw","28155|28025|28017","FALSE","FALSE","America/Chicago"
-"39752","33.51957","-89.15446","Mathiston","MS","Mississippi","TRUE","","2893","16.2","28155","Webster","{""28155"": ""58.71"", ""28019"": ""41.29""}","Webster|Choctaw","28155|28019","FALSE","FALSE","America/Chicago"
-"39755","33.61192","-88.95385","Pheba","MS","Mississippi","TRUE","","713","4.0","28025","Clay","{""28025"": ""81.64"", ""28105"": ""18.36""}","Clay|Oktibbeha","28025|28105","FALSE","FALSE","America/Chicago"
-"39756","33.78648","-88.74123","Prairie","MS","Mississippi","TRUE","","1722","8.7","28025","Clay","{""28025"": ""52.75"", ""28095"": ""37.36"", ""28017"": ""9.88""}","Clay|Monroe|Chickasaw","28025|28095|28017","FALSE","FALSE","America/Chicago"
-"39759","33.43662","-88.82643","Starkville","MS","Mississippi","TRUE","","44340","52.8","28105","Oktibbeha","{""28105"": ""99.6"", ""28087"": ""0.4""}","Oktibbeha|Lowndes","28105|28087","FALSE","FALSE","America/Chicago"
-"39760","33.46413","-88.70508","Starkville","MS","Mississippi","TRUE","","12","143.6","28105","Oktibbeha","{""28105"": ""100""}","Oktibbeha","28105","FALSE","FALSE","America/Chicago"
-"39762","33.45273","-88.79521","Mississippi State","MS","Mississippi","TRUE","","2783","1880.6","28105","Oktibbeha","{""28105"": ""100""}","Oktibbeha","28105","FALSE","FALSE","America/Chicago"
-"39766","33.58953","-88.31312","Steens","MS","Mississippi","TRUE","","3430","40.5","28087","Lowndes","{""28087"": ""100""}","Lowndes","28087","FALSE","FALSE","America/Chicago"
-"39767","33.47662","-89.44679","Stewart","MS","Mississippi","TRUE","","961","3.9","28155","Webster","{""28155"": ""50.64"", ""28097"": ""25.9"", ""28019"": ""23.46""}","Webster|Montgomery|Choctaw","28155|28097|28019","FALSE","FALSE","America/Chicago"
-"39769","33.3149","-89.00978","Sturgis","MS","Mississippi","TRUE","","1279","3.5","28105","Oktibbeha","{""28105"": ""83.36"", ""28159"": ""15.44"", ""28019"": ""1.2""}","Oktibbeha|Winston|Choctaw","28105|28159|28019","FALSE","FALSE","America/Chicago"
-"39771","33.60697","-89.27517","Walthall","MS","Mississippi","TRUE","","113","76.1","28155","Webster","{""28155"": ""100""}","Webster","28155","FALSE","FALSE","America/Chicago"
-"39772","33.30449","-89.29571","Weir","MS","Mississippi","TRUE","","1687","9.1","28019","Choctaw","{""28019"": ""100""}","Choctaw","28019","FALSE","FALSE","America/Chicago"
-"39773","33.64257","-88.68528","West Point","MS","Mississippi","TRUE","","15267","25.5","28025","Clay","{""28025"": ""98.78"", ""28095"": ""1.22""}","Clay|Monroe","28025|28095","FALSE","FALSE","America/Chicago"
-"39776","33.78226","-89.04258","Woodland","MS","Mississippi","TRUE","","1455","7.5","28017","Chickasaw","{""28017"": ""90.08"", ""28025"": ""9.92""}","Chickasaw|Clay","28017|28025","FALSE","FALSE","America/Chicago"
-"39813","31.41755","-84.681","Arlington","GA","Georgia","TRUE","","1975","6.2","13037","Calhoun","{""13037"": ""62.99"", ""13099"": ""30.38"", ""13007"": ""6.64""}","Calhoun|Early|Baker","13037|13099|13007","FALSE","FALSE","America/New_York"
-"39815","30.73969","-84.49256","Attapulgus","GA","Georgia","TRUE","","1848","13.9","13087","Decatur","{""13087"": ""100""}","Decatur","13087","FALSE","FALSE","America/New_York"
-"39817","30.93816","-84.59338","Bainbridge","GA","Georgia","TRUE","","10201","26.8","13087","Decatur","{""13087"": ""100""}","Decatur","13087","FALSE","FALSE","America/New_York"
-"39819","30.78522","-84.63844","Bainbridge","GA","Georgia","TRUE","","10659","26.5","13087","Decatur","{""13087"": ""100""}","Decatur","13087","FALSE","FALSE","America/New_York"
-"39823","31.3321","-84.94157","Blakely","GA","Georgia","TRUE","","7748","8.6","13099","Early","{""13099"": ""98.28"", ""13201"": ""1.72""}","Early|Miller","13099|13201","FALSE","FALSE","America/New_York"
-"39824","31.50421","-84.90874","Bluffton","GA","Georgia","TRUE","","757","5.2","13061","Clay","{""13061"": ""56.25"", ""13099"": ""43.75""}","Clay|Early","13061|13099","FALSE","FALSE","America/New_York"
-"39825","30.92534","-84.7353","Brinson","GA","Georgia","TRUE","","1453","6.0","13087","Decatur","{""13087"": ""93.98"", ""13253"": ""6.02""}","Decatur|Seminole","13087|13253","FALSE","FALSE","America/New_York"
-"39826","31.81995","-84.33814","Bronwood","GA","Georgia","TRUE","","437","8.0","13273","Terrell","{""13273"": ""100""}","Terrell","13273","FALSE","FALSE","America/New_York"
-"39827","30.95275","-84.20686","Cairo","GA","Georgia","TRUE","","4002","26.1","13131","Grady","{""13131"": ""100""}","Grady","13131","FALSE","FALSE","America/New_York"
-"39828","30.80208","-84.22116","Cairo","GA","Georgia","TRUE","","14477","40.4","13131","Grady","{""13131"": ""100""}","Grady","13131","FALSE","FALSE","America/New_York"
-"39834","30.89334","-84.42558","Climax","GA","Georgia","TRUE","","2197","7.0","13087","Decatur","{""13087"": ""100""}","Decatur","13087","FALSE","FALSE","America/New_York"
-"39836","31.6658","-84.87329","Coleman","GA","Georgia","TRUE","","285","1.4","13243","Randolph","{""13243"": ""85.25"", ""13061"": ""14.75""}","Randolph|Clay","13243|13061","FALSE","FALSE","America/New_York"
-"39837","31.15273","-84.67304","Colquitt","GA","Georgia","TRUE","","6288","8.6","13201","Miller","{""13201"": ""88.1"", ""13007"": ""6.26"", ""13087"": ""5.25"", ""13099"": ""0.39""}","Miller|Baker|Decatur|Early","13201|13007|13087|13099","FALSE","FALSE","America/New_York"
-"39840","31.77755","-84.76738","Cuthbert","GA","Georgia","TRUE","","5317","9.7","13243","Randolph","{""13243"": ""100""}","Randolph","13243","FALSE","FALSE","America/New_York"
-"39841","31.28183","-84.68109","Damascus","GA","Georgia","TRUE","","694","4.0","13099","Early","{""13099"": ""75.06"", ""13007"": ""16.4"", ""13201"": ""8.54""}","Early|Baker|Miller","13099|13007|13201","FALSE","FALSE","America/New_York"
-"39842","31.76133","-84.43681","Dawson","GA","Georgia","TRUE","","7770","10.6","13273","Terrell","{""13273"": ""99.75"", ""13037"": ""0.25""}","Terrell|Calhoun","13273|13037","FALSE","FALSE","America/New_York"
-"39845","30.95155","-84.8944","Donalsonville","GA","Georgia","TRUE","","7603","15.0","13253","Seminole","{""13253"": ""93.44"", ""13201"": ""5.63"", ""13099"": ""0.93""}","Seminole|Miller|Early","13253|13201|13099","FALSE","FALSE","America/New_York"
-"39846","31.56189","-84.74662","Edison","GA","Georgia","TRUE","","1978","8.8","13037","Calhoun","{""13037"": ""95.08"", ""13061"": ""4.92""}","Calhoun|Clay","13037|13061","FALSE","FALSE","America/New_York"
-"39851","31.61953","-85.00607","Fort Gaines","GA","Georgia","TRUE","","1852","5.9","13061","Clay","{""13061"": ""100""}","Clay","13061","FALSE","FALSE","America/New_York"
-"39854","31.86403","-85.03994","Georgetown","GA","Georgia","TRUE","","2404","7.1","13239","Quitman","{""13239"": ""93.06"", ""13061"": ""6.94""}","Quitman|Clay","13239|13061","FALSE","FALSE","America/New_York"
-"39859","30.99571","-84.80724","Iron City","GA","Georgia","TRUE","","1001","6.6","13253","Seminole","{""13253"": ""97.81"", ""13201"": ""2.19""}","Seminole|Miller","13253|13201","FALSE","FALSE","America/New_York"
-"39861","31.13685","-84.98256","Jakin","GA","Georgia","TRUE","","1094","7.9","13099","Early","{""13099"": ""96.71"", ""13253"": ""3.29""}","Early|Seminole","13099|13253","FALSE","FALSE","America/New_York"
-"39862","31.45666","-84.51598","Leary","GA","Georgia","TRUE","","1180","3.1","13037","Calhoun","{""13037"": ""64.4"", ""13007"": ""35.6""}","Calhoun|Baker","13037|13007","FALSE","FALSE","America/New_York"
-"39866","31.55126","-84.60234","Morgan","GA","Georgia","TRUE","","2185","15.1","13037","Calhoun","{""13037"": ""100""}","Calhoun","13037","FALSE","FALSE","America/New_York"
-"39867","31.83428","-84.92551","Morris","GA","Georgia","TRUE","","487","2.2","13061","Clay","{""13061"": ""37.69"", ""13239"": ""31.46"", ""13243"": ""30.84""}","Clay|Quitman|Randolph","13061|13239|13243","FALSE","FALSE","America/New_York"
-"39870","31.32075","-84.40796","Newton","GA","Georgia","TRUE","","1922","4.0","13007","Baker","{""13007"": ""100""}","Baker","13007","FALSE","FALSE","America/New_York"
-"39877","31.91779","-84.50916","Parrott","GA","Georgia","TRUE","","337","3.2","13273","Terrell","{""13273"": ""62.2"", ""13307"": ""37.8""}","Terrell|Webster","13273|13307","FALSE","FALSE","America/New_York"
-"39885","31.71757","-84.35108","Sasser","GA","Georgia","TRUE","","84","109.1","13273","Terrell","{""13273"": ""100""}","Terrell","13273","FALSE","FALSE","America/New_York"
-"39886","31.74896","-84.6202","Shellman","GA","Georgia","TRUE","","1610","5.1","13243","Randolph","{""13243"": ""92.88"", ""13273"": ""4.15"", ""13037"": ""2.97""}","Randolph|Terrell|Calhoun","13243|13273|13037","FALSE","FALSE","America/New_York"
-"39897","30.91394","-84.3303","Whigham","GA","Georgia","TRUE","","3919","10.7","13131","Grady","{""13131"": ""98.28"", ""13087"": ""1.72""}","Grady|Decatur","13131|13087","FALSE","FALSE","America/New_York"
-"40003","38.26916","-85.04705","Bagdad","KY","Kentucky","TRUE","","1886","17.2","21211","Shelby","{""21211"": ""92.85"", ""21073"": ""7.15""}","Shelby|Franklin","21211|21073","FALSE","FALSE","America/New_York"
-"40004","37.80451","-85.46497","Bardstown","KY","Kentucky","TRUE","","30439","81.4","21179","Nelson","{""21179"": ""100""}","Nelson","21179","FALSE","FALSE","America/New_York"
-"40006","38.59161","-85.32669","Bedford","KY","Kentucky","TRUE","","4956","21.0","21223","Trimble","{""21223"": ""97.46"", ""21041"": ""2.54""}","Trimble|Carroll","21223|21041","FALSE","FALSE","America/New_York"
-"40007","38.46211","-84.99972","Bethlehem","KY","Kentucky","TRUE","","71","2.4","21103","Henry","{""21103"": ""100""}","Henry","21103","FALSE","FALSE","America/New_York"
-"40008","37.9163","-85.27637","Bloomfield","KY","Kentucky","TRUE","","2968","14.5","21179","Nelson","{""21179"": ""92.58"", ""21215"": ""7.42""}","Nelson|Spencer","21179|21215","FALSE","FALSE","America/New_York"
-"40009","37.47085","-85.10718","Bradfordsville","KY","Kentucky","TRUE","","929","5.6","21155","Marion","{""21155"": ""81.92"", ""21217"": ""18.08""}","Marion|Taylor","21155|21217","FALSE","FALSE","America/New_York"
-"40010","38.37351","-85.45073","Buckner","KY","Kentucky","TRUE","","790","166.5","21185","Oldham","{""21185"": ""100""}","Oldham","21185","FALSE","FALSE","America/New_York"
-"40011","38.52598","-85.16938","Campbellsburg","KY","Kentucky","TRUE","","2688","17.7","21103","Henry","{""21103"": ""81.48"", ""21223"": ""12.83"", ""21041"": ""5.69""}","Henry|Trimble|Carroll","21103|21223|21041","FALSE","FALSE","America/New_York"
-"40012","37.9072","-85.18462","Chaplin","KY","Kentucky","TRUE","","843","32.5","21179","Nelson","{""21179"": ""100""}","Nelson","21179","FALSE","FALSE","America/New_York"
-"40013","37.93895","-85.46768","Coxs Creek","KY","Kentucky","TRUE","","5431","26.4","21179","Nelson","{""21179"": ""85.01"", ""21215"": ""11.9"", ""21029"": ""3.09""}","Nelson|Spencer|Bullitt","21179|21215|21029","FALSE","FALSE","America/New_York"
-"40014","38.34187","-85.43096","Crestwood","KY","Kentucky","TRUE","","21714","152.2","21185","Oldham","{""21185"": ""100""}","Oldham","21185","FALSE","FALSE","America/New_York"
-"40019","38.37987","-85.1718","Eminence","KY","Kentucky","TRUE","","4100","42.2","21103","Henry","{""21103"": ""95.38"", ""21211"": ""4.62""}","Henry|Shelby","21103|21211","FALSE","FALSE","America/New_York"
-"40020","37.93504","-85.38753","Fairfield","KY","Kentucky","TRUE","","111","90.3","21179","Nelson","{""21179"": ""100""}","Nelson","21179","FALSE","FALSE","America/New_York"
-"40022","38.15093","-85.33515","Finchville","KY","Kentucky","TRUE","","1057","25.4","21211","Shelby","{""21211"": ""100""}","Shelby","21211","FALSE","FALSE","America/New_York"
-"40023","38.16495","-85.42801","Fisherville","KY","Kentucky","TRUE","","5372","91.8","21111","Jefferson","{""21111"": ""50"", ""21215"": ""49.76"", ""21211"": ""0.24""}","Jefferson|Spencer|Shelby","21111|21215|21211","FALSE","FALSE","America/New_York"
-"40025","38.29994","-85.64882","Glenview","KY","Kentucky","TRUE","","91","213.2","21111","Jefferson","{""21111"": ""100""}","Jefferson","21111","FALSE","FALSE","America/New_York"
-"40026","38.42808","-85.53232","Goshen","KY","Kentucky","TRUE","","6389","79.4","21185","Oldham","{""21185"": ""100""}","Oldham","21185","FALSE","FALSE","America/New_York"
-"40031","38.42772","-85.39477","La Grange","KY","Kentucky","TRUE","","24477","142.1","21185","Oldham","{""21185"": ""96.45"", ""21103"": ""3.55""}","Oldham|Henry","21185|21103","FALSE","FALSE","America/New_York"
-"40033","37.55846","-85.23808","Lebanon","KY","Kentucky","TRUE","","12565","33.8","21155","Marion","{""21155"": ""99.64"", ""21229"": ""0.36""}","Marion|Washington","21155|21229","FALSE","FALSE","America/New_York"
-"40036","38.44432","-84.97762","Lockport","KY","Kentucky","TRUE","","190","4.1","21103","Henry","{""21103"": ""100""}","Henry","21103","FALSE","FALSE","America/New_York"
-"40037","37.65468","-85.41157","Loretto","KY","Kentucky","TRUE","","2764","21.7","21155","Marion","{""21155"": ""91.31"", ""21179"": ""8.69""}","Marion|Nelson","21155|21179","FALSE","FALSE","America/New_York"
-"40040","37.77058","-85.05538","Mackville","KY","Kentucky","TRUE","","335","6.3","21229","Washington","{""21229"": ""100""}","Washington","21229","FALSE","FALSE","America/New_York"
-"40041","38.25603","-85.66412","Masonic Home","KY","Kentucky","TRUE","","379","1413.2","21111","Jefferson","{""21111"": ""100""}","Jefferson","21111","FALSE","FALSE","America/New_York"
-"40045","38.68994","-85.3602","Milton","KY","Kentucky","TRUE","","3430","23.2","21223","Trimble","{""21223"": ""89.22"", ""21041"": ""10.78""}","Trimble|Carroll","21223|21041","FALSE","FALSE","America/New_York"
-"40046","38.02262","-85.17422","Mount Eden","KY","Kentucky","TRUE","","1664","13.3","21215","Spencer","{""21215"": ""81.91"", ""21005"": ""10.34"", ""21211"": ""7.75""}","Spencer|Anderson|Shelby","21215|21005|21211","FALSE","FALSE","America/New_York"
-"40047","38.03973","-85.55479","Mount Washington","KY","Kentucky","TRUE","","20515","266.9","21029","Bullitt","{""21029"": ""99.86"", ""21215"": ""0.14""}","Bullitt|Spencer","21029|21215","FALSE","FALSE","America/New_York"
-"40048","37.84717","-85.46922","Nazareth","KY","Kentucky","TRUE","","133","381.0","21179","Nelson","{""21179"": ""100""}","Nelson","21179","FALSE","FALSE","America/New_York"
-"40049","37.66347","-85.39534","Nerinx","KY","Kentucky","TRUE","","114","256.7","21155","Marion","{""21155"": ""100""}","Marion","21155","FALSE","FALSE","America/New_York"
-"40050","38.4459","-85.19007","New Castle","KY","Kentucky","TRUE","","1399","55.6","21103","Henry","{""21103"": ""100""}","Henry","21103","FALSE","FALSE","America/New_York"
-"40051","37.65576","-85.57271","New Haven","KY","Kentucky","TRUE","","4166","17.0","21179","Nelson","{""21179"": ""81.83"", ""21123"": ""17.9"", ""21093"": ""0.27""}","Nelson|Larue|Hardin","21179|21123|21093","FALSE","FALSE","America/New_York"
-"40052","37.58293","-85.51214","New Hope","KY","Kentucky","TRUE","","564","10.3","21179","Nelson","{""21179"": ""69.13"", ""21155"": ""25.24"", ""21123"": ""5.63""}","Nelson|Marion|Larue","21179|21155|21123","FALSE","FALSE","America/New_York"
-"40055","38.49678","-85.32477","Pendleton","KY","Kentucky","TRUE","","2042","38.4","21103","Henry","{""21103"": ""53.25"", ""21223"": ""25.57"", ""21185"": ""21.18""}","Henry|Trimble|Oldham","21103|21223|21185","FALSE","FALSE","America/New_York"
-"40056","38.30628","-85.48823","Pewee Valley","KY","Kentucky","TRUE","","3421","464.1","21185","Oldham","{""21185"": ""100""}","Oldham","21185","FALSE","FALSE","America/New_York"
-"40057","38.38943","-85.0423","Pleasureville","KY","Kentucky","TRUE","","3664","14.5","21103","Henry","{""21103"": ""76.15"", ""21211"": ""23.85""}","Henry|Shelby","21103|21211","FALSE","FALSE","America/New_York"
-"40058","38.43275","-85.17054","Port Royal","KY","Kentucky","TRUE","","62","1007.8","21103","Henry","{""21103"": ""100""}","Henry","21103","FALSE","FALSE","America/New_York"
-"40059","38.35884","-85.59434","Prospect","KY","Kentucky","TRUE","","19886","296.0","21111","Jefferson","{""21111"": ""54.57"", ""21185"": ""45.43""}","Jefferson|Oldham","21111|21185","FALSE","FALSE","America/New_York"
-"40060","37.53801","-85.44181","Raywick","KY","Kentucky","TRUE","","1089","9.6","21155","Marion","{""21155"": ""100""}","Marion","21155","FALSE","FALSE","America/New_York"
-"40062","37.60316","-85.43182","Saint Francis","KY","Kentucky","TRUE","","233","17.3","21155","Marion","{""21155"": ""100""}","Marion","21155","FALSE","FALSE","America/New_York"
-"40063","37.57166","-85.34208","Saint Mary","KY","Kentucky","TRUE","","346","272.4","21155","Marion","{""21155"": ""100""}","Marion","21155","FALSE","FALSE","America/New_York"
-"40065","38.21651","-85.20684","Shelbyville","KY","Kentucky","TRUE","","31388","68.6","21211","Shelby","{""21211"": ""99.97"", ""21215"": ""0.03""}","Shelby|Spencer","21211|21215","FALSE","FALSE","America/New_York"
-"40067","38.2218","-85.36684","Simpsonville","KY","Kentucky","TRUE","","6036","54.0","21211","Shelby","{""21211"": ""100""}","Shelby","21211","FALSE","FALSE","America/New_York"
-"40068","38.39466","-85.27028","Smithfield","KY","Kentucky","TRUE","","2293","20.3","21103","Henry","{""21103"": ""86.95"", ""21185"": ""7.18"", ""21211"": ""5.87""}","Henry|Oldham|Shelby","21103|21185|21211","FALSE","FALSE","America/New_York"
-"40069","37.71603","-85.21602","Springfield","KY","Kentucky","TRUE","","8413","17.1","21229","Washington","{""21229"": ""99.57"", ""21155"": ""0.43""}","Washington|Marion","21229|21155","FALSE","FALSE","America/New_York"
-"40070","38.47984","-85.2367","Sulphur","KY","Kentucky","TRUE","","748","24.1","21103","Henry","{""21103"": ""100""}","Henry","21103","FALSE","FALSE","America/New_York"
-"40071","38.04375","-85.36912","Taylorsville","KY","Kentucky","TRUE","","15670","49.3","21215","Spencer","{""21215"": ""88.53"", ""21029"": ""10.94"", ""21211"": ""0.53""}","Spencer|Bullitt|Shelby","21215|21029|21211","FALSE","FALSE","America/New_York"
-"40075","38.56294","-85.11241","Turners Station","KY","Kentucky","TRUE","","977","8.0","21103","Henry","{""21103"": ""84.2"", ""21041"": ""15.8""}","Henry|Carroll","21103|21041","FALSE","FALSE","America/New_York"
-"40076","38.11262","-85.08903","Waddy","KY","Kentucky","TRUE","","2502","17.1","21211","Shelby","{""21211"": ""90.46"", ""21073"": ""6.96"", ""21005"": ""2.58""}","Shelby|Franklin|Anderson","21211|21073|21005","FALSE","FALSE","America/New_York"
-"40077","38.49728","-85.44552","Westport","KY","Kentucky","TRUE","","403","18.3","21185","Oldham","{""21185"": ""100""}","Oldham","21185","FALSE","FALSE","America/New_York"
-"40078","37.84271","-85.15168","Willisburg","KY","Kentucky","TRUE","","2454","16.2","21229","Washington","{""21229"": ""100""}","Washington","21229","FALSE","FALSE","America/New_York"
-"40104","38.09162","-86.34152","Battletown","KY","Kentucky","TRUE","","902","5.5","21163","Meade","{""21163"": ""100""}","Meade","21163","FALSE","FALSE","America/New_York"
-"40107","37.7763","-85.63968","Boston","KY","Kentucky","TRUE","","2405","17.4","21179","Nelson","{""21179"": ""100""}","Nelson","21179","FALSE","FALSE","America/New_York"
-"40108","37.97261","-86.16632","Brandenburg","KY","Kentucky","TRUE","","11803","64.1","21163","Meade","{""21163"": ""100""}","Meade","21163","FALSE","FALSE","America/New_York"
-"40109","38.06055","-85.75898","Brooks","KY","Kentucky","TRUE","","1842","76.1","21029","Bullitt","{""21029"": ""100""}","Bullitt","21029","FALSE","FALSE","America/New_York"
-"40110","37.93613","-85.65997","Clermont","KY","Kentucky","TRUE","","87","70.9","21029","Bullitt","{""21029"": ""100""}","Bullitt","21029","FALSE","FALSE","America/New_York"
-"40111","37.77313","-86.62819","Cloverport","KY","Kentucky","TRUE","","1531","16.0","21027","Breckinridge","{""21027"": ""100""}","Breckinridge","21027","FALSE","FALSE","America/Chicago"
-"40115","37.73164","-86.22894","Custer","KY","Kentucky","TRUE","","419","8.1","21027","Breckinridge","{""21027"": ""100""}","Breckinridge","21027","FALSE","FALSE","America/Chicago"
-"40117","37.89774","-86.12642","Ekron","KY","Kentucky","TRUE","","2550","51.6","21163","Meade","{""21163"": ""100""}","Meade","21163","FALSE","FALSE","America/New_York"
-"40118","38.09896","-85.75116","Fairdale","KY","Kentucky","TRUE","","9313","262.8","21111","Jefferson","{""21111"": ""100""}","Jefferson","21111","FALSE","FALSE","America/New_York"
-"40119","37.60334","-86.54857","Falls Of Rough","KY","Kentucky","TRUE","","2073","8.3","21085","Grayson","{""21085"": ""60.38"", ""21027"": ""36.78"", ""21183"": ""2.84""}","Grayson|Breckinridge|Ohio","21085|21027|21183","FALSE","FALSE","America/Chicago"
-"40121","37.92933","-85.94141","Fort Knox","KY","Kentucky","TRUE","","8695","99.1","21093","Hardin","{""21093"": ""73.5"", ""21163"": ""26.5""}","Hardin|Meade","21093|21163","FALSE","FALSE","America/New_York"
-"40140","37.72467","-86.30095","Garfield","KY","Kentucky","TRUE","","677","10.9","21027","Breckinridge","{""21027"": ""100""}","Breckinridge","21027","FALSE","FALSE","America/Chicago"
-"40142","37.88669","-86.20983","Guston","KY","Kentucky","TRUE","","2181","17.1","21163","Meade","{""21163"": ""96.92"", ""21027"": ""3.08""}","Meade|Breckinridge","21163|21027","FALSE","FALSE","America/New_York"
-"40143","37.78114","-86.50881","Hardinsburg","KY","Kentucky","TRUE","","6001","15.5","21027","Breckinridge","{""21027"": ""100""}","Breckinridge","21027","FALSE","FALSE","America/Chicago"
-"40144","37.74598","-86.37863","Harned","KY","Kentucky","TRUE","","1288","7.9","21027","Breckinridge","{""21027"": ""100""}","Breckinridge","21027","FALSE","FALSE","America/Chicago"
-"40145","37.64424","-86.31131","Hudson","KY","Kentucky","TRUE","","667","8.0","21027","Breckinridge","{""21027"": ""100""}","Breckinridge","21027","FALSE","FALSE","America/Chicago"
-"40146","37.85466","-86.33149","Irvington","KY","Kentucky","TRUE","","4103","18.9","21027","Breckinridge","{""21027"": ""100""}","Breckinridge","21027","FALSE","FALSE","America/Chicago"
-"40150","37.86869","-85.7225","Lebanon Junction","KY","Kentucky","TRUE","","4514","50.4","21029","Bullitt","{""21029"": ""97.88"", ""21093"": ""2.12""}","Bullitt|Hardin","21029|21093","FALSE","FALSE","America/New_York"
-"40152","37.61503","-86.44294","McDaniels","KY","Kentucky","TRUE","","1191","47.7","21027","Breckinridge","{""21027"": ""100""}","Breckinridge","21027","FALSE","FALSE","America/Chicago"
-"40155","37.93704","-85.99176","Muldraugh","KY","Kentucky","TRUE","","1040","743.4","21163","Meade","{""21163"": ""100""}","Meade","21163","FALSE","FALSE","America/New_York"
-"40157","38.01983","-86.38999","Payneville","KY","Kentucky","TRUE","","949","11.8","21163","Meade","{""21163"": ""95.32"", ""21027"": ""4.68""}","Meade|Breckinridge","21163|21027","FALSE","FALSE","America/New_York"
-"40160","37.81272","-85.93921","Radcliff","KY","Kentucky","TRUE","","23134","530.2","21093","Hardin","{""21093"": ""100""}","Hardin","21093","FALSE","FALSE","America/New_York"
-"40161","38.00253","-86.39048","Rhodelia","KY","Kentucky","TRUE","","188","10.3","21163","Meade","{""21163"": ""100""}","Meade","21163","FALSE","FALSE","America/New_York"
-"40162","37.75457","-86.04907","Rineyville","KY","Kentucky","TRUE","","6769","46.3","21093","Hardin","{""21093"": ""100""}","Hardin","21093","FALSE","FALSE","America/New_York"
-"40165","37.97161","-85.67573","Shepherdsville","KY","Kentucky","TRUE","","36437","97.4","21029","Bullitt","{""21029"": ""100""}","Bullitt","21029","FALSE","FALSE","America/New_York"
-"40170","37.96461","-86.50796","Stephensport","KY","Kentucky","TRUE","","466","10.1","21027","Breckinridge","{""21027"": ""100""}","Breckinridge","21027","FALSE","FALSE","America/Chicago"
-"40171","37.97171","-86.45197","Union Star","KY","Kentucky","TRUE","","191","4.0","21027","Breckinridge","{""21027"": ""100""}","Breckinridge","21027","FALSE","FALSE","America/Chicago"
-"40175","37.82297","-86.08571","Vine Grove","KY","Kentucky","TRUE","","14297","73.1","21093","Hardin","{""21093"": ""49.47"", ""21163"": ""46.56"", ""21027"": ""3.96""}","Hardin|Meade|Breckinridge","21093|21163|21027","FALSE","FALSE","America/New_York"
-"40176","37.92372","-86.34404","Webster","KY","Kentucky","TRUE","","924","12.4","21027","Breckinridge","{""21027"": ""54.67"", ""21163"": ""45.33""}","Breckinridge|Meade","21027|21163","FALSE","FALSE","America/Chicago"
-"40177","38.00813","-85.92173","West Point","KY","Kentucky","TRUE","","1672","47.1","21093","Hardin","{""21093"": ""64.87"", ""21029"": ""29.94"", ""21111"": ""5.19""}","Hardin|Bullitt|Jefferson","21093|21029|21111","FALSE","FALSE","America/New_York"
-"40178","37.65327","-86.40383","Westview","KY","Kentucky","TRUE","","429","19.0","21027","Breckinridge","{""21027"": ""100""}","Breckinridge","21027","FALSE","FALSE","America/Chicago"
-"40202","38.25718","-85.7535","Louisville","KY","Kentucky","TRUE","","7194","1774.1","21111","Jefferson","{""21111"": ""100""}","Jefferson","21111","FALSE","FALSE","America/Kentucky/Louisville"
-"40203","38.24745","-85.7649","Louisville","KY","Kentucky","TRUE","","17815","2338.8","21111","Jefferson","{""21111"": ""100""}","Jefferson","21111","FALSE","FALSE","America/Kentucky/Louisville"
-"40204","38.23918","-85.72084","Louisville","KY","Kentucky","TRUE","","14714","1749.5","21111","Jefferson","{""21111"": ""100""}","Jefferson","21111","FALSE","FALSE","America/New_York"
-"40205","38.22345","-85.68262","Louisville","KY","Kentucky","TRUE","","24477","1353.9","21111","Jefferson","{""21111"": ""100""}","Jefferson","21111","FALSE","FALSE","America/New_York"
-"40206","38.26036","-85.70484","Louisville","KY","Kentucky","TRUE","","19693","1329.2","21111","Jefferson","{""21111"": ""100""}","Jefferson","21111","FALSE","FALSE","America/New_York"
-"40207","38.26523","-85.65712","Louisville","KY","Kentucky","TRUE","","30228","1003.8","21111","Jefferson","{""21111"": ""100""}","Jefferson","21111","FALSE","FALSE","America/New_York"
-"40208","38.21856","-85.76554","Louisville","KY","Kentucky","TRUE","","16036","2516.3","21111","Jefferson","{""21111"": ""100""}","Jefferson","21111","FALSE","FALSE","America/New_York"
-"40209","38.18978","-85.74785","Louisville","KY","Kentucky","TRUE","","316","45.4","21111","Jefferson","{""21111"": ""100""}","Jefferson","21111","FALSE","FALSE","America/New_York"
-"40210","38.23152","-85.78619","Louisville","KY","Kentucky","TRUE","","14083","1689.8","21111","Jefferson","{""21111"": ""100""}","Jefferson","21111","FALSE","FALSE","America/Kentucky/Louisville"
-"40211","38.23443","-85.82394","Louisville","KY","Kentucky","TRUE","","22556","1164.2","21111","Jefferson","{""21111"": ""100""}","Jefferson","21111","FALSE","FALSE","America/Kentucky/Louisville"
-"40212","38.27172","-85.79836","Louisville","KY","Kentucky","TRUE","","16700","1696.9","21111","Jefferson","{""21111"": ""100""}","Jefferson","21111","FALSE","FALSE","America/Kentucky/Louisville"
-"40213","38.17579","-85.71941","Louisville","KY","Kentucky","TRUE","","16296","499.5","21111","Jefferson","{""21111"": ""100""}","Jefferson","21111","FALSE","FALSE","America/New_York"
-"40214","38.15187","-85.78246","Louisville","KY","Kentucky","TRUE","","45844","1189.4","21111","Jefferson","{""21111"": ""100""}","Jefferson","21111","FALSE","FALSE","America/New_York"
-"40215","38.19105","-85.78598","Louisville","KY","Kentucky","TRUE","","20754","2136.4","21111","Jefferson","{""21111"": ""100""}","Jefferson","21111","FALSE","FALSE","America/New_York"
-"40216","38.18765","-85.83979","Louisville","KY","Kentucky","TRUE","","42029","1122.5","21111","Jefferson","{""21111"": ""100""}","Jefferson","21111","FALSE","FALSE","America/Kentucky/Louisville"
-"40217","38.21705","-85.73715","Louisville","KY","Kentucky","TRUE","","12670","2036.4","21111","Jefferson","{""21111"": ""100""}","Jefferson","21111","FALSE","FALSE","America/New_York"
-"40218","38.18904","-85.65404","Louisville","KY","Kentucky","TRUE","","33668","1335.2","21111","Jefferson","{""21111"": ""100""}","Jefferson","21111","FALSE","FALSE","America/New_York"
-"40219","38.13888","-85.68697","Louisville","KY","Kentucky","TRUE","","40106","1074.3","21111","Jefferson","{""21111"": ""100""}","Jefferson","21111","FALSE","FALSE","America/New_York"
-"40220","38.21549","-85.61724","Louisville","KY","Kentucky","TRUE","","34025","1724.5","21111","Jefferson","{""21111"": ""100""}","Jefferson","21111","FALSE","FALSE","America/New_York"
-"40222","38.27128","-85.62034","Louisville","KY","Kentucky","TRUE","","22236","822.6","21111","Jefferson","{""21111"": ""100""}","Jefferson","21111","FALSE","FALSE","America/New_York"
-"40223","38.25996","-85.54185","Louisville","KY","Kentucky","TRUE","","23357","768.0","21111","Jefferson","{""21111"": ""100""}","Jefferson","21111","FALSE","FALSE","America/New_York"
-"40228","38.13551","-85.62829","Louisville","KY","Kentucky","TRUE","","15927","812.3","21111","Jefferson","{""21111"": ""100""}","Jefferson","21111","FALSE","FALSE","America/New_York"
-"40229","38.08909","-85.65482","Louisville","KY","Kentucky","TRUE","","39289","768.2","21111","Jefferson","{""21111"": ""62.78"", ""21029"": ""37.22""}","Jefferson|Bullitt","21111|21029","FALSE","FALSE","America/New_York"
-"40231","38.19498","-85.69498","Louisville","KY","Kentucky","TRUE","","0","0.0","21111","Jefferson","{""21111"": ""0""}","Jefferson","21111","FALSE","FALSE","America/New_York"
-"40241","38.30164","-85.57585","Louisville","KY","Kentucky","TRUE","","30057","803.2","21111","Jefferson","{""21111"": ""98.99"", ""21185"": ""1.01""}","Jefferson|Oldham","21111|21185","FALSE","FALSE","America/New_York"
-"40242","38.27732","-85.59065","Louisville","KY","Kentucky","TRUE","","11073","1602.7","21111","Jefferson","{""21111"": ""100""}","Jefferson","21111","FALSE","FALSE","America/New_York"
-"40243","38.23927","-85.53425","Louisville","KY","Kentucky","TRUE","","10485","1009.0","21111","Jefferson","{""21111"": ""100""}","Jefferson","21111","FALSE","FALSE","America/New_York"
-"40245","38.26478","-85.45223","Louisville","KY","Kentucky","TRUE","","34529","411.6","21111","Jefferson","{""21111"": ""92.78"", ""21211"": ""7.22""}","Jefferson|Shelby","21111|21211","FALSE","FALSE","America/New_York"
-"40258","38.14688","-85.87761","Louisville","KY","Kentucky","TRUE","","26682","881.5","21111","Jefferson","{""21111"": ""100""}","Jefferson","21111","FALSE","FALSE","America/Kentucky/Louisville"
-"40272","38.08446","-85.85245","Louisville","KY","Kentucky","TRUE","","38095","431.0","21111","Jefferson","{""21111"": ""99.63"", ""21029"": ""0.37""}","Jefferson|Bullitt","21111|21029","FALSE","FALSE","America/New_York"
-"40280","38.2477","-85.68848","Louisville","KY","Kentucky","TRUE","","662","2628.0","21111","Jefferson","{""21111"": ""100""}","Jefferson","21111","FALSE","FALSE","America/New_York"
-"40291","38.1291","-85.57807","Louisville","KY","Kentucky","TRUE","","37812","665.7","21111","Jefferson","{""21111"": ""100""}","Jefferson","21111","FALSE","FALSE","America/New_York"
-"40299","38.16266","-85.51677","Louisville","KY","Kentucky","TRUE","","41463","301.4","21111","Jefferson","{""21111"": ""99.52"", ""21029"": ""0.48""}","Jefferson|Bullitt","21111|21029","FALSE","FALSE","America/New_York"
-"40310","37.75023","-84.76619","Burgin","KY","Kentucky","TRUE","","291","188.1","21167","Mercer","{""21167"": ""100""}","Mercer","21167","FALSE","FALSE","America/New_York"
-"40311","38.32372","-84.02449","Carlisle","KY","Kentucky","TRUE","","7398","16.3","21181","Nicholas","{""21181"": ""92.09"", ""21017"": ""7.8"", ""21201"": ""0.11""}","Nicholas|Bourbon|Robertson","21181|21017|21201","FALSE","FALSE","America/New_York"
-"40312","37.85237","-83.93091","Clay City","KY","Kentucky","TRUE","","5122","34.8","21197","Powell","{""21197"": ""100""}","Powell","21197","FALSE","FALSE","America/New_York"
-"40313","38.13047","-83.42092","Clearfield","KY","Kentucky","TRUE","","3329","33.8","21205","Rowan","{""21205"": ""100""}","Rowan","21205","FALSE","FALSE","America/New_York"
-"40316","37.93128","-83.52924","Denniston","KY","Kentucky","TRUE","","429","27.0","21165","Menifee","{""21165"": ""100""}","Menifee","21165","FALSE","FALSE","America/New_York"
-"40322","37.93705","-83.63355","Frenchburg","KY","Kentucky","TRUE","","3389","11.2","21165","Menifee","{""21165"": ""100""}","Menifee","21165","FALSE","FALSE","America/New_York"
-"40324","38.24673","-84.55326","Georgetown","KY","Kentucky","TRUE","","48251","120.1","21209","Scott","{""21209"": ""99.6"", ""21017"": ""0.4""}","Scott|Bourbon","21209|21017","FALSE","FALSE","America/New_York"
-"40328","37.56398","-85.02585","Gravel Switch","KY","Kentucky","TRUE","","1245","9.8","21155","Marion","{""21155"": ""63.76"", ""21021"": ""20.47"", ""21045"": ""15.77""}","Marion|Boyle|Casey","21155|21021|21045","FALSE","FALSE","America/New_York"
-"40330","37.7896","-84.89168","Harrodsburg","KY","Kentucky","TRUE","","19892","34.7","21167","Mercer","{""21167"": ""96.48"", ""21229"": ""3.52""}","Mercer|Washington","21167|21229","FALSE","FALSE","America/New_York"
-"40334","38.01466","-83.76562","Hope","KY","Kentucky","TRUE","","59","38.9","21173","Montgomery","{""21173"": ""69.74"", ""21011"": ""30.26""}","Montgomery|Bath","21173|21011","FALSE","FALSE","America/New_York"
-"40336","37.68573","-83.98616","Irvine","KY","Kentucky","TRUE","","12691","23.8","21065","Estill","{""21065"": ""99.48"", ""21129"": ""0.52""}","Estill|Lee","21065|21129","FALSE","FALSE","America/New_York"
-"40337","37.95348","-83.85639","Jeffersonville","KY","Kentucky","TRUE","","5420","36.3","21173","Montgomery","{""21173"": ""100""}","Montgomery","21173","FALSE","FALSE","America/New_York"
-"40339","37.94188","-84.6443","Keene","KY","Kentucky","TRUE","","0","0.0","21113","Jessamine","{""21113"": ""100""}","Jessamine","21113","FALSE","FALSE","America/New_York"
-"40342","38.00322","-84.98494","Lawrenceburg","KY","Kentucky","TRUE","","22108","45.3","21005","Anderson","{""21005"": ""100""}","Anderson","21005","FALSE","FALSE","America/New_York"
-"40346","37.98075","-83.74476","Means","KY","Kentucky","TRUE","","725","22.6","21165","Menifee","{""21165"": ""80.03"", ""21173"": ""18.95"", ""21011"": ""1.02""}","Menifee|Montgomery|Bath","21165|21173|21011","FALSE","FALSE","America/New_York"
-"40347","38.15843","-84.7156","Midway","KY","Kentucky","TRUE","","3069","33.9","21239","Woodford","{""21239"": ""83.77"", ""21209"": ""13.91"", ""21073"": ""2.31""}","Woodford|Scott|Franklin","21239|21209|21073","FALSE","FALSE","America/New_York"
-"40348","38.28739","-84.1321","Millersburg","KY","Kentucky","TRUE","","525","47.1","21017","Bourbon","{""21017"": ""100""}","Bourbon","21017","FALSE","FALSE","America/New_York"
-"40350","38.30888","-83.87446","Moorefield","KY","Kentucky","TRUE","","115","3.5","21181","Nicholas","{""21181"": ""100""}","Nicholas","21181","FALSE","FALSE","America/New_York"
-"40351","38.20548","-83.4164","Morehead","KY","Kentucky","TRUE","","21354","33.3","21205","Rowan","{""21205"": ""99.32"", ""21063"": ""0.39"", ""21043"": ""0.29""}","Rowan|Elliott|Carter","21205|21063|21043","FALSE","FALSE","America/New_York"
-"40353","38.06564","-83.94764","Mount Sterling","KY","Kentucky","TRUE","","22502","62.4","21173","Montgomery","{""21173"": ""99.07"", ""21049"": ""0.89"", ""21011"": ""0.05""}","Montgomery|Clark|Bath","21173|21049|21011","FALSE","FALSE","America/New_York"
-"40356","37.87301","-84.56447","Nicholasville","KY","Kentucky","TRUE","","44181","121.9","21113","Jessamine","{""21113"": ""100""}","Jessamine","21113","FALSE","FALSE","America/New_York"
-"40358","38.0591","-83.67994","Olympia","KY","Kentucky","TRUE","","966","18.0","21011","Bath","{""21011"": ""100""}","Bath","21011","FALSE","FALSE","America/New_York"
-"40359","38.48924","-84.81944","Owenton","KY","Kentucky","TRUE","","6504","11.0","21187","Owen","{""21187"": ""100""}","Owen","21187","FALSE","FALSE","America/New_York"
-"40360","38.15446","-83.76739","Owingsville","KY","Kentucky","TRUE","","7002","18.5","21011","Bath","{""21011"": ""96.69"", ""21173"": ""3.31""}","Bath|Montgomery","21011|21173","FALSE","FALSE","America/New_York"
-"40361","38.20598","-84.2273","Paris","KY","Kentucky","TRUE","","18436","27.6","21017","Bourbon","{""21017"": ""99.79"", ""21067"": ""0.14"", ""21173"": ""0.07""}","Bourbon|Fayette|Montgomery","21017|21067|21173","FALSE","FALSE","America/New_York"
-"40363","38.51445","-85.00979","Perry Park","KY","Kentucky","TRUE","","15","277.6","21187","Owen","{""21187"": ""100""}","Owen","21187","FALSE","FALSE","America/New_York"
-"40370","38.39836","-84.52642","Sadieville","KY","Kentucky","TRUE","","2582","12.0","21209","Scott","{""21209"": ""74.88"", ""21097"": ""25.12""}","Scott|Harrison","21209|21097","FALSE","FALSE","America/New_York"
-"40371","38.08161","-83.59876","Salt Lick","KY","Kentucky","TRUE","","3015","15.7","21011","Bath","{""21011"": ""93.2"", ""21165"": ""6.8""}","Bath|Menifee","21011|21165","FALSE","FALSE","America/New_York"
-"40372","37.90781","-84.88266","Salvisa","KY","Kentucky","TRUE","","2243","16.1","21167","Mercer","{""21167"": ""97.6"", ""21005"": ""2.4""}","Mercer|Anderson","21167|21005","FALSE","FALSE","America/New_York"
-"40374","38.21279","-83.89962","Sharpsburg","KY","Kentucky","TRUE","","1622","9.9","21011","Bath","{""21011"": ""97.24"", ""21181"": ""2.35"", ""21017"": ""0.41""}","Bath|Nicholas|Bourbon","21011|21181|21017","FALSE","FALSE","America/New_York"
-"40376","37.78143","-83.69449","Slade","KY","Kentucky","TRUE","","54","2.9","21197","Powell","{""21197"": ""100""}","Powell","21197","FALSE","FALSE","America/New_York"
-"40379","38.31339","-84.6872","Stamping Ground","KY","Kentucky","TRUE","","3968","24.1","21209","Scott","{""21209"": ""94.04"", ""21073"": ""4.68"", ""21187"": ""1.28""}","Scott|Franklin|Owen","21209|21073|21187","FALSE","FALSE","America/New_York"
-"40380","37.82391","-83.77924","Stanton","KY","Kentucky","TRUE","","6898","23.3","21197","Powell","{""21197"": ""99.92"", ""21165"": ""0.08""}","Powell|Menifee","21197|21165","FALSE","FALSE","America/New_York"
-"40383","38.01264","-84.73985","Versailles","KY","Kentucky","TRUE","","23805","60.0","21239","Woodford","{""21239"": ""97.8"", ""21113"": ""2.2""}","Woodford|Jessamine","21239|21113","FALSE","FALSE","America/New_York"
-"40385","37.73669","-84.13247","Waco","KY","Kentucky","TRUE","","2969","24.2","21151","Madison","{""21151"": ""100""}","Madison","21151","FALSE","FALSE","America/New_York"
-"40387","37.93536","-83.49267","Wellington","KY","Kentucky","TRUE","","1939","10.3","21165","Menifee","{""21165"": ""93.94"", ""21175"": ""6.06""}","Menifee|Morgan","21165|21175","FALSE","FALSE","America/New_York"
-"40390","37.8534","-84.67167","Wilmore","KY","Kentucky","TRUE","","7931","120.8","21113","Jessamine","{""21113"": ""99.44"", ""21239"": ""0.56""}","Jessamine|Woodford","21113|21239","FALSE","FALSE","America/New_York"
-"40391","37.96942","-84.14518","Winchester","KY","Kentucky","TRUE","","35544","57.3","21049","Clark","{""21049"": ""100""}","Clark","21049","FALSE","FALSE","America/New_York"
-"40402","37.29612","-83.97341","Annville","KY","Kentucky","TRUE","","2366","19.3","21109","Jackson","{""21109"": ""100""}","Jackson","21109","FALSE","FALSE","America/New_York"
-"40403","37.56947","-84.27119","Berea","KY","Kentucky","TRUE","","24248","81.9","21151","Madison","{""21151"": ""90.25"", ""21203"": ""5.32"", ""21079"": ""4.43""}","Madison|Rockcastle|Garrard","21151|21203|21079","FALSE","FALSE","America/New_York"
-"40404","37.57345","-84.29088","Berea","KY","Kentucky","TRUE","","891","2715.2","21151","Madison","{""21151"": ""100""}","Madison","21151","FALSE","FALSE","America/New_York"
-"40409","37.37759","-84.43294","Brodhead","KY","Kentucky","TRUE","","4087","36.0","21203","Rockcastle","{""21203"": ""98.31"", ""21199"": ""0.96"", ""21137"": ""0.73""}","Rockcastle|Pulaski|Lincoln","21203|21199|21137","FALSE","FALSE","America/New_York"
-"40419","37.45061","-84.49303","Crab Orchard","KY","Kentucky","TRUE","","3861","16.2","21137","Lincoln","{""21137"": ""69.77"", ""21079"": ""13.81"", ""21203"": ""12.08"", ""21199"": ""4.35""}","Lincoln|Garrard|Rockcastle|Pulaski","21137|21079|21203|21199","FALSE","FALSE","America/New_York"
-"40422","37.63786","-84.80074","Danville","KY","Kentucky","TRUE","","25485","85.6","21021","Boyle","{""21021"": ""96.73"", ""21137"": ""3.27""}","Boyle|Lincoln","21021|21137","FALSE","FALSE","America/New_York"
-"40434","37.39449","-83.94037","Gray Hawk","KY","Kentucky","TRUE","","0","0.0","21109","Jackson","{""21109"": ""100""}","Jackson","21109","FALSE","FALSE","America/New_York"
-"40437","37.44551","-84.86586","Hustonville","KY","Kentucky","TRUE","","5459","17.4","21137","Lincoln","{""21137"": ""77.37"", ""21045"": ""22.63""}","Lincoln|Casey","21137|21045","FALSE","FALSE","America/New_York"
-"40440","37.57869","-84.82487","Junction City","KY","Kentucky","TRUE","","2261","95.1","21021","Boyle","{""21021"": ""95.94"", ""21137"": ""4.06""}","Boyle|Lincoln","21021|21137","FALSE","FALSE","America/New_York"
-"40442","37.35272","-84.72469","Kings Mountain","KY","Kentucky","TRUE","","951","14.9","21137","Lincoln","{""21137"": ""58.54"", ""21045"": ""41.46""}","Lincoln|Casey","21137|21045","FALSE","FALSE","America/New_York"
-"40444","37.6792","-84.58843","Lancaster","KY","Kentucky","TRUE","","14565","35.5","21079","Garrard","{""21079"": ""98.24"", ""21137"": ""1.76""}","Garrard|Lincoln","21079|21137","FALSE","FALSE","America/New_York"
-"40445","37.33471","-84.18764","Livingston","KY","Kentucky","TRUE","","754","6.4","21203","Rockcastle","{""21203"": ""96.59"", ""21109"": ""3.41""}","Rockcastle|Jackson","21203|21109","FALSE","FALSE","America/New_York"
-"40447","37.45707","-84.02863","McKee","KY","Kentucky","TRUE","","8117","12.5","21109","Jackson","{""21109"": ""98.42"", ""21203"": ""0.78"", ""21129"": ""0.44"", ""21189"": ""0.36""}","Jackson|Rockcastle|Lee|Owsley","21109|21203|21129|21189","FALSE","FALSE","America/New_York"
-"40448","37.46165","-84.75371","McKinney","KY","Kentucky","TRUE","","39","40.5","21137","Lincoln","{""21137"": ""100""}","Lincoln","21137","FALSE","FALSE","America/New_York"
-"40456","37.34837","-84.32157","Mount Vernon","KY","Kentucky","TRUE","","9704","21.7","21203","Rockcastle","{""21203"": ""100""}","Rockcastle","21203","FALSE","FALSE","America/New_York"
-"40460","37.39087","-84.23629","Orlando","KY","Kentucky","TRUE","","1369","14.3","21203","Rockcastle","{""21203"": ""100""}","Rockcastle","21203","FALSE","FALSE","America/New_York"
-"40461","37.59316","-84.40713","Paint Lick","KY","Kentucky","TRUE","","3800","28.8","21151","Madison","{""21151"": ""60.33"", ""21079"": ""39.67""}","Madison|Garrard","21151|21079","FALSE","FALSE","America/New_York"
-"40464","37.55826","-84.92345","Parksville","KY","Kentucky","TRUE","","1235","14.2","21021","Boyle","{""21021"": ""90.75"", ""21045"": ""9.25""}","Boyle|Casey","21021|21045","FALSE","FALSE","America/New_York"
-"40468","37.63522","-84.98604","Perryville","KY","Kentucky","TRUE","","1708","19.5","21021","Boyle","{""21021"": ""94.69"", ""21167"": ""4.15"", ""21229"": ""1.16""}","Boyle|Mercer|Washington","21021|21167|21229","FALSE","FALSE","America/New_York"
-"40472","37.71681","-83.86023","Ravenna","KY","Kentucky","TRUE","","1576","11.6","21065","Estill","{""21065"": ""100""}","Estill","21065","FALSE","FALSE","America/New_York"
-"40475","37.76658","-84.3137","Richmond","KY","Kentucky","TRUE","","62250","88.0","21151","Madison","{""21151"": ""100""}","Madison","21151","FALSE","FALSE","America/New_York"
-"40481","37.44884","-84.08787","Sandgap","KY","Kentucky","TRUE","","85","6.0","21109","Jackson","{""21109"": ""100""}","Jackson","21109","FALSE","FALSE","America/New_York"
-"40484","37.51612","-84.66965","Stanford","KY","Kentucky","TRUE","","11303","33.3","21137","Lincoln","{""21137"": ""98.85"", ""21079"": ""1.15""}","Lincoln|Garrard","21137|21079","FALSE","FALSE","America/New_York"
-"40486","37.36931","-83.86189","Tyner","KY","Kentucky","TRUE","","2874","22.0","21109","Jackson","{""21109"": ""98.16"", ""21189"": ""1.03"", ""21051"": ""0.81""}","Jackson|Owsley|Clay","21109|21189|21051","FALSE","FALSE","America/New_York"
-"40489","37.3685","-84.64331","Waynesburg","KY","Kentucky","TRUE","","4713","27.4","21137","Lincoln","{""21137"": ""93.16"", ""21045"": ""6.84""}","Lincoln|Casey","21137|21045","FALSE","FALSE","America/New_York"
-"40502","38.01387","-84.48207","Lexington","KY","Kentucky","TRUE","","27269","1462.2","21067","Fayette","{""21067"": ""100""}","Fayette","21067","FALSE","FALSE","America/New_York"
-"40503","38.00468","-84.53422","Lexington","KY","Kentucky","TRUE","","29309","1279.3","21067","Fayette","{""21067"": ""100""}","Fayette","21067","FALSE","FALSE","America/New_York"
-"40504","38.04172","-84.54154","Lexington","KY","Kentucky","TRUE","","27796","1766.1","21067","Fayette","{""21067"": ""100""}","Fayette","21067","FALSE","FALSE","America/New_York"
-"40505","38.05995","-84.45692","Lexington","KY","Kentucky","TRUE","","26152","1265.1","21067","Fayette","{""21067"": ""100""}","Fayette","21067","FALSE","FALSE","America/New_York"
-"40506","38.02821","-84.50319","Lexington","KY","Kentucky","TRUE","","2329","10304.1","21067","Fayette","{""21067"": ""100""}","Fayette","21067","FALSE","FALSE","America/New_York"
-"40507","38.04699","-84.4964","Lexington","KY","Kentucky","TRUE","","1772","1643.6","21067","Fayette","{""21067"": ""100""}","Fayette","21067","FALSE","FALSE","America/New_York"
-"40508","38.05001","-84.50114","Lexington","KY","Kentucky","TRUE","","25766","2326.7","21067","Fayette","{""21067"": ""100""}","Fayette","21067","FALSE","FALSE","America/New_York"
-"40509","37.99786","-84.37619","Lexington","KY","Kentucky","TRUE","","41645","391.1","21067","Fayette","{""21067"": ""100""}","Fayette","21067","FALSE","FALSE","America/New_York"
-"40510","38.06892","-84.60142","Lexington","KY","Kentucky","TRUE","","1990","35.8","21067","Fayette","{""21067"": ""100""}","Fayette","21067","FALSE","FALSE","America/New_York"
-"40511","38.13368","-84.47807","Lexington","KY","Kentucky","TRUE","","33909","147.8","21067","Fayette","{""21067"": ""98.69"", ""21209"": ""1.08"", ""21017"": ""0.24""}","Fayette|Scott|Bourbon","21067|21209|21017","FALSE","FALSE","America/New_York"
-"40513","38.01594","-84.60641","Lexington","KY","Kentucky","TRUE","","11163","298.7","21067","Fayette","{""21067"": ""100""}","Fayette","21067","FALSE","FALSE","America/New_York"
-"40514","37.98269","-84.56343","Lexington","KY","Kentucky","TRUE","","16573","2159.8","21067","Fayette","{""21067"": ""100""}","Fayette","21067","FALSE","FALSE","America/New_York"
-"40515","37.92033","-84.40976","Lexington","KY","Kentucky","TRUE","","35772","245.5","21067","Fayette","{""21067"": ""98.85"", ""21113"": ""0.65"", ""21049"": ""0.5""}","Fayette|Jessamine|Clark","21067|21113|21049","FALSE","FALSE","America/New_York"
-"40516","38.06968","-84.3612","Lexington","KY","Kentucky","TRUE","","3303","36.2","21067","Fayette","{""21067"": ""86.65"", ""21017"": ""13.35""}","Fayette|Bourbon","21067|21017","FALSE","FALSE","America/New_York"
-"40517","37.98388","-84.48829","Lexington","KY","Kentucky","TRUE","","37096","2319.6","21067","Fayette","{""21067"": ""100""}","Fayette","21067","FALSE","FALSE","America/New_York"
-"40601","38.23398","-84.88086","Frankfort","KY","Kentucky","TRUE","","50954","89.2","21073","Franklin","{""21073"": ""97.43"", ""21239"": ""1.34"", ""21211"": ""1.15"", ""21103"": ""0.07""}","Franklin|Woodford|Shelby|Henry","21073|21239|21211|21103","FALSE","FALSE","America/New_York"
-"40604","38.17516","-84.86479","Frankfort","KY","Kentucky","TRUE","","165","181.6","21073","Franklin","{""21073"": ""100""}","Franklin","21073","FALSE","FALSE","America/New_York"
-"40701","36.91957","-84.16358","Corbin","KY","Kentucky","TRUE","","29888","80.3","21235","Whitley","{""21235"": ""46.25"", ""21125"": ""28.3"", ""21121"": ""25.45""}","Whitley|Laurel|Knox","21235|21125|21121","FALSE","FALSE","America/New_York"
-"40729","37.24779","-84.13499","East Bernstadt","KY","Kentucky","TRUE","","5161","30.3","21125","Laurel","{""21125"": ""100""}","Laurel","21125","FALSE","FALSE","America/New_York"
-"40734","36.92816","-83.96908","Gray","KY","Kentucky","TRUE","","3709","35.1","21121","Knox","{""21121"": ""98.83"", ""21125"": ""1.17""}","Knox|Laurel","21121|21125","FALSE","FALSE","America/New_York"
-"40737","37.00524","-84.13321","Keavy","KY","Kentucky","TRUE","","817","43.6","21125","Laurel","{""21125"": ""100""}","Laurel","21125","FALSE","FALSE","America/New_York"
-"40740","37.01776","-84.03398","Lily","KY","Kentucky","TRUE","","3139","74.5","21125","Laurel","{""21125"": ""100""}","Laurel","21125","FALSE","FALSE","America/New_York"
-"40741","37.13752","-84.12615","London","KY","Kentucky","TRUE","","24372","45.0","21125","Laurel","{""21125"": ""99.74"", ""21051"": ""0.26""}","Laurel|Clay","21125|21051","FALSE","FALSE","America/New_York"
-"40743","37.07403","-84.11838","London","KY","Kentucky","TRUE","","242","76.7","21125","Laurel","{""21125"": ""100""}","Laurel","21125","FALSE","FALSE","America/New_York"
-"40744","37.03732","-84.09364","London","KY","Kentucky","TRUE","","18312","66.9","21125","Laurel","{""21125"": ""99.16"", ""21051"": ""0.84""}","Laurel|Clay","21125|21051","FALSE","FALSE","America/New_York"
-"40759","36.8204","-84.06001","Rockholds","KY","Kentucky","TRUE","","2536","20.4","21235","Whitley","{""21235"": ""94.63"", ""21121"": ""5.37""}","Whitley|Knox","21235|21121","FALSE","FALSE","America/New_York"
-"40763","36.69269","-83.92336","Siler","KY","Kentucky","TRUE","","434","8.0","21235","Whitley","{""21235"": ""97.65"", ""21121"": ""2.35""}","Whitley|Knox","21235|21121","FALSE","FALSE","America/New_York"
-"40769","36.71208","-84.17017","Williamsburg","KY","Kentucky","TRUE","","18259","24.0","21235","Whitley","{""21235"": ""98.56"", ""21147"": ""1.44""}","Whitley|McCreary","21235|21147","FALSE","FALSE","America/New_York"
-"40771","36.85863","-84.03479","Woodbine","KY","Kentucky","TRUE","","1301","40.3","21121","Knox","{""21121"": ""58.05"", ""21235"": ""41.95""}","Knox|Whitley","21121|21235","FALSE","FALSE","America/New_York"
-"40801","36.86064","-83.24816","Ages Brookside","KY","Kentucky","TRUE","","416","22.8","21095","Harlan","{""21095"": ""100""}","Harlan","21095","FALSE","FALSE","America/New_York"
-"40806","36.88632","-83.28761","Baxter","KY","Kentucky","TRUE","","2723","45.2","21095","Harlan","{""21095"": ""100""}","Harlan","21095","FALSE","FALSE","America/New_York"
-"40807","36.96438","-82.94732","Benham","KY","Kentucky","TRUE","","391","491.4","21095","Harlan","{""21095"": ""100""}","Harlan","21095","FALSE","FALSE","America/New_York"
-"40808","36.99344","-83.21055","Big Laurel","KY","Kentucky","TRUE","","72","4.8","21095","Harlan","{""21095"": ""61.62"", ""21131"": ""38.38""}","Harlan|Leslie","21095|21131","FALSE","FALSE","America/New_York"
-"40810","36.94932","-83.30619","Bledsoe","KY","Kentucky","TRUE","","1058","5.0","21095","Harlan","{""21095"": ""85.21"", ""21131"": ""14.79""}","Harlan|Leslie","21095|21131","FALSE","FALSE","America/New_York"
-"40813","36.72773","-83.59301","Calvin","KY","Kentucky","TRUE","","387","11.9","21013","Bell","{""21013"": ""100""}","Bell","21013","FALSE","FALSE","America/New_York"
-"40815","36.78488","-83.21497","Cawood","KY","Kentucky","TRUE","","1181","11.2","21095","Harlan","{""21095"": ""100""}","Harlan","21095","FALSE","FALSE","America/New_York"
-"40816","37.00448","-83.29736","Chappell","KY","Kentucky","TRUE","","9","0.1","21131","Leslie","{""21131"": ""100""}","Leslie","21131","FALSE","FALSE","America/New_York"
-"40818","36.82016","-83.24454","Coalgood","KY","Kentucky","TRUE","","46","4.1","21095","Harlan","{""21095"": ""100""}","Harlan","21095","FALSE","FALSE","America/New_York"
-"40819","36.80372","-83.46279","Coldiron","KY","Kentucky","TRUE","","506","13.9","21095","Harlan","{""21095"": ""100""}","Harlan","21095","FALSE","FALSE","America/New_York"
-"40820","36.75579","-83.1839","Cranks","KY","Kentucky","TRUE","","646","15.9","21095","Harlan","{""21095"": ""100""}","Harlan","21095","FALSE","FALSE","America/New_York"
-"40823","36.95985","-82.99713","Cumberland","KY","Kentucky","TRUE","","3566","23.7","21095","Harlan","{""21095"": ""97.68"", ""21133"": ""2.32""}","Harlan|Letcher","21095|21133","FALSE","FALSE","America/New_York"
-"40824","36.82493","-83.37222","Dayhoit","KY","Kentucky","TRUE","","226","21.8","21095","Harlan","{""21095"": ""100""}","Harlan","21095","FALSE","FALSE","America/New_York"
-"40826","37.05391","-82.78091","Eolia","KY","Kentucky","TRUE","","590","7.3","21133","Letcher","{""21133"": ""100""}","Letcher","21133","FALSE","FALSE","America/New_York"
-"40827","37.04673","-83.47216","Essie","KY","Kentucky","TRUE","","1035","25.8","21131","Leslie","{""21131"": ""100""}","Leslie","21131","FALSE","FALSE","America/New_York"
-"40828","36.8727","-83.14268","Evarts","KY","Kentucky","TRUE","","3988","32.5","21095","Harlan","{""21095"": ""100""}","Harlan","21095","FALSE","FALSE","America/New_York"
-"40829","36.79695","-83.30246","Grays Knob","KY","Kentucky","TRUE","","182","17.2","21095","Harlan","{""21095"": ""100""}","Harlan","21095","FALSE","FALSE","America/New_York"
-"40830","36.75907","-83.3282","Gulston","KY","Kentucky","TRUE","","110","15.4","21095","Harlan","{""21095"": ""100""}","Harlan","21095","FALSE","FALSE","America/New_York"
-"40831","36.75951","-83.34993","Harlan","KY","Kentucky","TRUE","","4876","36.6","21095","Harlan","{""21095"": ""100""}","Harlan","21095","FALSE","FALSE","America/New_York"
-"40840","36.89882","-83.4429","Helton","KY","Kentucky","TRUE","","206","4.7","21131","Leslie","{""21131"": ""91.35"", ""21095"": ""8.65""}","Leslie|Harlan","21131|21095","FALSE","FALSE","America/New_York"
-"40843","36.8969","-82.97963","Holmes Mill","KY","Kentucky","TRUE","","275","3.5","21095","Harlan","{""21095"": ""100""}","Harlan","21095","FALSE","FALSE","America/New_York"
-"40844","37.06094","-83.35017","Hoskinston","KY","Kentucky","TRUE","","88","4.0","21131","Leslie","{""21131"": ""100""}","Leslie","21131","FALSE","FALSE","America/New_York"
-"40845","36.79894","-83.51768","Hulen","KY","Kentucky","TRUE","","556","24.6","21013","Bell","{""21013"": ""100""}","Bell","21013","FALSE","FALSE","America/New_York"
-"40847","36.85056","-83.17483","Kenvir","KY","Kentucky","TRUE","","371","149.4","21095","Harlan","{""21095"": ""100""}","Harlan","21095","FALSE","FALSE","America/New_York"
-"40849","36.89304","-83.13399","Lejunior","KY","Kentucky","TRUE","","321","121.9","21095","Harlan","{""21095"": ""100""}","Harlan","21095","FALSE","FALSE","America/New_York"
-"40854","36.84587","-83.3542","Loyall","KY","Kentucky","TRUE","","1019","182.4","21095","Harlan","{""21095"": ""100""}","Harlan","21095","FALSE","FALSE","America/New_York"
-"40855","36.94714","-82.89417","Lynch","KY","Kentucky","TRUE","","694","19.6","21095","Harlan","{""21095"": ""100""}","Harlan","21095","FALSE","FALSE","America/New_York"
-"40856","36.71799","-83.53171","Miracle","KY","Kentucky","TRUE","","722","6.5","21013","Bell","{""21013"": ""100""}","Bell","21013","FALSE","FALSE","America/New_York"
-"40858","36.98907","-83.41146","Mozelle","KY","Kentucky","TRUE","","399","9.5","21131","Leslie","{""21131"": ""100""}","Leslie","21131","FALSE","FALSE","America/New_York"
-"40862","37.0118","-82.87382","Partridge","KY","Kentucky","TRUE","","324","7.6","21133","Letcher","{""21133"": ""100""}","Letcher","21133","FALSE","FALSE","America/New_York"
-"40863","36.73949","-83.44596","Pathfork","KY","Kentucky","TRUE","","604","9.2","21095","Harlan","{""21095"": ""100""}","Harlan","21095","FALSE","FALSE","America/New_York"
-"40865","36.91731","-83.21411","Putney","KY","Kentucky","TRUE","","416","51.6","21095","Harlan","{""21095"": ""100""}","Harlan","21095","FALSE","FALSE","America/New_York"
-"40868","37.08233","-83.46831","Stinnett","KY","Kentucky","TRUE","","794","12.1","21131","Leslie","{""21131"": ""100""}","Leslie","21131","FALSE","FALSE","America/New_York"
-"40870","36.92442","-83.14477","Totz","KY","Kentucky","TRUE","","333","18.3","21095","Harlan","{""21095"": ""100""}","Harlan","21095","FALSE","FALSE","America/New_York"
-"40873","36.8179","-83.40889","Wallins Creek","KY","Kentucky","TRUE","","2359","30.7","21095","Harlan","{""21095"": ""100""}","Harlan","21095","FALSE","FALSE","America/New_York"
-"40874","36.97322","-83.4748","Warbranch","KY","Kentucky","TRUE","","361","3.6","21131","Leslie","{""21131"": ""90.87"", ""21051"": ""9.13""}","Leslie|Clay","21131|21051","FALSE","FALSE","America/New_York"
-"40902","36.85258","-83.61678","Arjay","KY","Kentucky","TRUE","","1412","14.5","21013","Bell","{""21013"": ""100""}","Bell","21013","FALSE","FALSE","America/New_York"
-"40903","36.80837","-83.81847","Artemus","KY","Kentucky","TRUE","","764","34.4","21121","Knox","{""21121"": ""100""}","Knox","21121","FALSE","FALSE","America/New_York"
-"40906","36.88215","-83.88646","Barbourville","KY","Kentucky","TRUE","","11739","36.6","21121","Knox","{""21121"": ""98.37"", ""21235"": ""1.63""}","Knox|Whitley","21121|21235","FALSE","FALSE","America/New_York"
-"40913","36.94427","-83.54395","Beverly","KY","Kentucky","TRUE","","368","8.0","21051","Clay","{""21051"": ""50.29"", ""21013"": ""49.71""}","Clay|Bell","21051|21013","FALSE","FALSE","America/New_York"
-"40914","37.10465","-83.57059","Big Creek","KY","Kentucky","TRUE","","387","12.0","21051","Clay","{""21051"": ""100""}","Clay","21051","FALSE","FALSE","America/New_York"
-"40915","36.87992","-83.81648","Bimble","KY","Kentucky","TRUE","","849","34.0","21121","Knox","{""21121"": ""100""}","Knox","21121","FALSE","FALSE","America/New_York"
-"40921","36.7708","-83.90091","Bryants Store","KY","Kentucky","TRUE","","211","5.3","21121","Knox","{""21121"": ""100""}","Knox","21121","FALSE","FALSE","America/New_York"
-"40923","36.91945","-83.85097","Cannon","KY","Kentucky","TRUE","","654","62.8","21121","Knox","{""21121"": ""100""}","Knox","21121","FALSE","FALSE","America/New_York"
-"40927","36.87128","-83.0415","Closplint","KY","Kentucky","TRUE","","426","14.0","21095","Harlan","{""21095"": ""100""}","Harlan","21095","FALSE","FALSE","America/New_York"
-"40935","36.90608","-83.71607","Flat Lick","KY","Kentucky","TRUE","","2688","13.6","21121","Knox","{""21121"": ""100""}","Knox","21121","FALSE","FALSE","America/New_York"
-"40939","36.81095","-83.71287","Fourmile","KY","Kentucky","TRUE","","238","14.0","21013","Bell","{""21013"": ""100""}","Bell","21013","FALSE","FALSE","America/New_York"
-"40940","36.60704","-83.94829","Frakes","KY","Kentucky","TRUE","","337","6.8","21235","Whitley","{""21235"": ""56.69"", ""21013"": ""43.31""}","Whitley|Bell","21235|21013","FALSE","FALSE","America/New_York"
-"40941","37.12546","-83.7336","Garrard","KY","Kentucky","TRUE","","298","82.7","21051","Clay","{""21051"": ""100""}","Clay","21051","FALSE","FALSE","America/New_York"
-"40943","36.95663","-83.85788","Girdler","KY","Kentucky","TRUE","","574","34.8","21121","Knox","{""21121"": ""100""}","Knox","21121","FALSE","FALSE","America/New_York"
-"40946","36.98194","-83.79913","Green Road","KY","Kentucky","TRUE","","252","8.8","21121","Knox","{""21121"": ""100""}","Knox","21121","FALSE","FALSE","America/New_York"
-"40949","36.89048","-83.87163","Heidrick","KY","Kentucky","TRUE","","780","92.9","21121","Knox","{""21121"": ""100""}","Knox","21121","FALSE","FALSE","America/New_York"
-"40953","36.93627","-83.80441","Hinkle","KY","Kentucky","TRUE","","603","20.3","21121","Knox","{""21121"": ""100""}","Knox","21121","FALSE","FALSE","America/New_York"
-"40958","36.80526","-83.59812","Kettle Island","KY","Kentucky","TRUE","","170","9.3","21013","Bell","{""21013"": ""100""}","Bell","21013","FALSE","FALSE","America/New_York"
-"40962","37.14587","-83.74061","Manchester","KY","Kentucky","TRUE","","17444","18.2","21051","Clay","{""21051"": ""99.77"", ""21125"": ""0.23""}","Clay|Laurel","21051|21125","FALSE","FALSE","America/New_York"
-"40964","36.77285","-83.31337","Mary Alice","KY","Kentucky","TRUE","","52","7.8","21095","Harlan","{""21095"": ""100""}","Harlan","21095","FALSE","FALSE","America/New_York"
-"40965","36.63434","-83.71669","Middlesboro","KY","Kentucky","TRUE","","11954","64.1","21013","Bell","{""21013"": ""100""}","Bell","21013","FALSE","FALSE","America/New_York"
-"40972","37.25888","-83.6033","Oneida","KY","Kentucky","TRUE","","1288","8.8","21051","Clay","{""21051"": ""97.66"", ""21193"": ""2.34""}","Clay|Perry","21051|21193","FALSE","FALSE","America/New_York"
-"40977","36.70955","-83.75921","Pineville","KY","Kentucky","TRUE","","10642","30.8","21013","Bell","{""21013"": ""100""}","Bell","21013","FALSE","FALSE","America/New_York"
-"40979","37.00757","-83.50651","Roark","KY","Kentucky","TRUE","","12","1.9","21131","Leslie","{""21131"": ""100""}","Leslie","21131","FALSE","FALSE","America/New_York"
-"40982","36.93272","-83.69013","Scalf","KY","Kentucky","TRUE","","437","27.0","21121","Knox","{""21121"": ""100""}","Knox","21121","FALSE","FALSE","America/New_York"
-"40983","37.33297","-83.76662","Sextons Creek","KY","Kentucky","TRUE","","460","9.4","21051","Clay","{""21051"": ""71.31"", ""21189"": ""28.69""}","Clay|Owsley","21051|21189","FALSE","FALSE","America/New_York"
-"40988","36.849","-83.53251","Stoney Fork","KY","Kentucky","TRUE","","472","8.6","21013","Bell","{""21013"": ""80"", ""21095"": ""20""}","Bell|Harlan","21013|21095","FALSE","FALSE","America/New_York"
-"40995","36.76106","-83.81541","Trosper","KY","Kentucky","TRUE","","162","21.5","21121","Knox","{""21121"": ""100""}","Knox","21121","FALSE","FALSE","America/New_York"
-"40997","36.87745","-83.68497","Walker","KY","Kentucky","TRUE","","302","5.5","21121","Knox","{""21121"": ""100""}","Knox","21121","FALSE","FALSE","America/New_York"
-"41001","38.9149","-84.40265","Alexandria","KY","Kentucky","TRUE","","17401","131.4","21037","Campbell","{""21037"": ""100""}","Campbell","21037","FALSE","FALSE","America/New_York"
-"41002","38.73062","-83.98266","Augusta","KY","Kentucky","TRUE","","2793","24.4","21023","Bracken","{""21023"": ""100""}","Bracken","21023","FALSE","FALSE","America/New_York"
-"41003","38.5322","-84.39037","Berry","KY","Kentucky","TRUE","","2185","9.9","21097","Harrison","{""21097"": ""77.78"", ""21191"": ""14.97"", ""21081"": ""7.25""}","Harrison|Pendleton|Grant","21097|21191|21081","FALSE","FALSE","America/New_York"
-"41004","38.65388","-84.10655","Brooksville","KY","Kentucky","TRUE","","3948","13.3","21023","Bracken","{""21023"": ""97.38"", ""21201"": ""2.52"", ""21191"": ""0.1""}","Bracken|Robertson|Pendleton","21023|21201|21191","FALSE","FALSE","America/New_York"
-"41005","39.00805","-84.76744","Burlington","KY","Kentucky","TRUE","","24451","161.7","21015","Boone","{""21015"": ""100""}","Boone","21015","FALSE","FALSE","America/New_York"
-"41006","38.783","-84.34441","Butler","KY","Kentucky","TRUE","","4091","29.9","21191","Pendleton","{""21191"": ""85.41"", ""21037"": ""14.59""}","Pendleton|Campbell","21191|21037","FALSE","FALSE","America/New_York"
-"41007","38.89179","-84.30447","California","KY","Kentucky","TRUE","","4378","32.7","21037","Campbell","{""21037"": ""85.45"", ""21191"": ""14.55""}","Campbell|Pendleton","21037|21191","FALSE","FALSE","America/New_York"
-"41008","38.66354","-85.16782","Carrollton","KY","Kentucky","TRUE","","7038","62.5","21041","Carroll","{""21041"": ""100""}","Carroll","21041","FALSE","FALSE","America/New_York"
-"41010","38.49773","-84.60525","Corinth","KY","Kentucky","TRUE","","3412","14.9","21081","Grant","{""21081"": ""51.1"", ""21187"": ""35.47"", ""21097"": ""10.07"", ""21209"": ""3.36""}","Grant|Owen|Harrison|Scott","21081|21187|21097|21209","FALSE","FALSE","America/New_York"
-"41011","39.06795","-84.52955","Covington","KY","Kentucky","TRUE","","26558","1440.4","21117","Kenton","{""21117"": ""100""}","Kenton","21117","FALSE","FALSE","America/New_York"
-"41014","39.06574","-84.50548","Covington","KY","Kentucky","TRUE","","7113","2585.0","21117","Kenton","{""21117"": ""100""}","Kenton","21117","FALSE","FALSE","America/New_York"
-"41015","38.97811","-84.4844","Latonia","KY","Kentucky","TRUE","","20209","306.5","21117","Kenton","{""21117"": ""100""}","Kenton","21117","FALSE","FALSE","America/New_York"
-"41016","39.08709","-84.54915","Covington","KY","Kentucky","TRUE","","5869","1410.4","21117","Kenton","{""21117"": ""100""}","Kenton","21117","FALSE","FALSE","America/New_York"
-"41017","39.02889","-84.56148","Ft Mitchell","KY","Kentucky","TRUE","","40198","739.6","21117","Kenton","{""21117"": ""100""}","Kenton","21117","FALSE","FALSE","America/New_York"
-"41018","39.01561","-84.60287","Erlanger","KY","Kentucky","TRUE","","28145","952.0","21117","Kenton","{""21117"": ""95.27"", ""21015"": ""4.73""}","Kenton|Boone","21117|21015","FALSE","FALSE","America/New_York"
-"41030","38.7899","-84.5932","Crittenden","KY","Kentucky","TRUE","","6229","86.1","21081","Grant","{""21081"": ""82.35"", ""21117"": ""11.89"", ""21015"": ""5.43"", ""21191"": ""0.33""}","Grant|Kenton|Boone|Pendleton","21081|21117|21015|21191","FALSE","FALSE","America/New_York"
-"41031","38.41612","-84.28683","Cynthiana","KY","Kentucky","TRUE","","16189","28.7","21097","Harrison","{""21097"": ""98.58"", ""21181"": ""1.33"", ""21017"": ""0.09""}","Harrison|Nicholas|Bourbon","21097|21181|21017","FALSE","FALSE","America/New_York"
-"41033","38.76406","-84.45744","De Mossville","KY","Kentucky","TRUE","","1834","16.8","21191","Pendleton","{""21191"": ""86.99"", ""21117"": ""13.01""}","Pendleton|Kenton","21191|21117","FALSE","FALSE","America/New_York"
-"41034","38.70961","-83.8954","Dover","KY","Kentucky","TRUE","","788","10.9","21161","Mason","{""21161"": ""100""}","Mason","21161","FALSE","FALSE","America/New_York"
-"41035","38.70513","-84.65958","Dry Ridge","KY","Kentucky","TRUE","","11665","42.3","21081","Grant","{""21081"": ""99.81"", ""21191"": ""0.19""}","Grant|Pendleton","21081|21191","FALSE","FALSE","America/New_York"
-"41039","38.41149","-83.88076","Ewing","KY","Kentucky","TRUE","","2897","15.1","21069","Fleming","{""21069"": ""97.24"", ""21181"": ""2.76""}","Fleming|Nicholas","21069|21181","FALSE","FALSE","America/New_York"
-"41040","38.64992","-84.33042","Falmouth","KY","Kentucky","TRUE","","7269","19.2","21191","Pendleton","{""21191"": ""97.91"", ""21023"": ""2.09""}","Pendleton|Bracken","21191|21023","FALSE","FALSE","America/New_York"
-"41041","38.40894","-83.72605","Flemingsburg","KY","Kentucky","TRUE","","6953","25.0","21069","Fleming","{""21069"": ""100""}","Fleming","21069","FALSE","FALSE","America/New_York"
-"41042","39.00112","-84.6528","Florence","KY","Kentucky","TRUE","","52185","701.5","21015","Boone","{""21015"": ""96.57"", ""21117"": ""3.43""}","Boone|Kenton","21015|21117","FALSE","FALSE","America/New_York"
-"41043","38.75874","-84.19762","Foster","KY","Kentucky","TRUE","","1578","12.6","21023","Bracken","{""21023"": ""72.21"", ""21191"": ""27.79""}","Bracken|Pendleton","21023|21191","FALSE","FALSE","America/New_York"
-"41044","38.60776","-83.9751","Germantown","KY","Kentucky","TRUE","","858","10.6","21023","Bracken","{""21023"": ""46.95"", ""21161"": ""41.85"", ""21201"": ""11.2""}","Bracken|Mason|Robertson","21023|21161|21201","FALSE","FALSE","America/New_York"
-"41045","38.72001","-85.02638","Ghent","KY","Kentucky","TRUE","","1422","15.8","21041","Carroll","{""21041"": ""74.86"", ""21077"": ""25.14""}","Carroll|Gallatin","21041|21077","FALSE","FALSE","America/New_York"
-"41046","38.71962","-84.80179","Glencoe","KY","Kentucky","TRUE","","1539","35.1","21077","Gallatin","{""21077"": ""85.79"", ""21081"": ""7.71"", ""21187"": ""6.51""}","Gallatin|Grant|Owen","21077|21081|21187","FALSE","FALSE","America/New_York"
-"41048","39.09489","-84.70691","Hebron","KY","Kentucky","TRUE","","16036","281.5","21015","Boone","{""21015"": ""100""}","Boone","21015","FALSE","FALSE","America/New_York"
-"41049","38.27422","-83.64762","Hillsboro","KY","Kentucky","TRUE","","2309","10.6","21069","Fleming","{""21069"": ""100""}","Fleming","21069","FALSE","FALSE","America/New_York"
-"41051","38.93399","-84.54499","Independence","KY","Kentucky","TRUE","","30694","407.2","21117","Kenton","{""21117"": ""100""}","Kenton","21117","FALSE","FALSE","America/New_York"
-"41052","38.67366","-84.76982","Jonesville","KY","Kentucky","TRUE","","102","14.6","21081","Grant","{""21081"": ""100""}","Grant","21081","FALSE","FALSE","America/New_York"
-"41055","38.51828","-83.87086","Mayslick","KY","Kentucky","TRUE","","1924","11.8","21161","Mason","{""21161"": ""95.31"", ""21069"": ""4.69""}","Mason|Fleming","21161|21069","FALSE","FALSE","America/New_York"
-"41056","38.60007","-83.77847","Maysville","KY","Kentucky","TRUE","","14192","39.1","21161","Mason","{""21161"": ""100""}","Mason","21161","FALSE","FALSE","America/New_York"
-"41059","39.00753","-84.34817","Melbourne","KY","Kentucky","TRUE","","3361","95.1","21037","Campbell","{""21037"": ""100""}","Campbell","21037","FALSE","FALSE","America/New_York"
-"41062","38.70393","-83.92284","Minerva","KY","Kentucky","TRUE","","12","36.2","21161","Mason","{""21161"": ""100""}","Mason","21161","FALSE","FALSE","America/New_York"
-"41063","38.84793","-84.4977","Morning View","KY","Kentucky","TRUE","","3033","32.4","21117","Kenton","{""21117"": ""100""}","Kenton","21117","FALSE","FALSE","America/New_York"
-"41064","38.51063","-84.05973","Mount Olivet","KY","Kentucky","TRUE","","1834","8.3","21201","Robertson","{""21201"": ""98.65"", ""21023"": ""1.35""}","Robertson|Bracken","21201|21023","FALSE","FALSE","America/New_York"
-"41071","39.07384","-84.48277","Newport","KY","Kentucky","TRUE","","20624","1468.6","21037","Campbell","{""21037"": ""100""}","Campbell","21037","FALSE","FALSE","America/New_York"
-"41073","39.10196","-84.47913","Bellevue","KY","Kentucky","TRUE","","5804","2388.4","21037","Campbell","{""21037"": ""100""}","Campbell","21037","FALSE","FALSE","America/New_York"
-"41074","39.11281","-84.46412","Dayton","KY","Kentucky","TRUE","","5496","1637.1","21037","Campbell","{""21037"": ""100""}","Campbell","21037","FALSE","FALSE","America/New_York"
-"41075","39.07985","-84.45099","Fort Thomas","KY","Kentucky","TRUE","","16627","1065.6","21037","Campbell","{""21037"": ""100""}","Campbell","21037","FALSE","FALSE","America/New_York"
-"41076","39.01784","-84.43591","Newport","KY","Kentucky","TRUE","","17165","316.4","21037","Campbell","{""21037"": ""100""}","Campbell","21037","FALSE","FALSE","America/New_York"
-"41080","39.05046","-84.83039","Petersburg","KY","Kentucky","TRUE","","2292","31.1","21015","Boone","{""21015"": ""100""}","Boone","21015","FALSE","FALSE","America/New_York"
-"41083","38.67037","-84.98308","Sanders","KY","Kentucky","TRUE","","1449","16.3","21041","Carroll","{""21041"": ""55.81"", ""21077"": ""36.73"", ""21187"": ""7.47""}","Carroll|Gallatin|Owen","21041|21077|21187","FALSE","FALSE","America/New_York"
-"41085","39.03569","-84.39277","Silver Grove","KY","Kentucky","TRUE","","959","991.9","21037","Campbell","{""21037"": ""100""}","Campbell","21037","FALSE","FALSE","America/New_York"
-"41086","38.68853","-84.87241","Sparta","KY","Kentucky","TRUE","","3070","18.4","21077","Gallatin","{""21077"": ""59.08"", ""21187"": ""40.92""}","Gallatin|Owen","21077|21187","FALSE","FALSE","America/New_York"
-"41091","38.91861","-84.74","Union","KY","Kentucky","TRUE","","20960","157.8","21015","Boone","{""21015"": ""100""}","Boone","21015","FALSE","FALSE","America/New_York"
-"41092","38.81847","-84.70069","Verona","KY","Kentucky","TRUE","","3933","39.7","21015","Boone","{""21015"": ""60.39"", ""21077"": ""39.61""}","Boone|Gallatin","21015|21077","FALSE","FALSE","America/New_York"
-"41093","38.39067","-83.56164","Wallingford","KY","Kentucky","TRUE","","3058","10.9","21069","Fleming","{""21069"": ""84.21"", ""21135"": ""15.79""}","Fleming|Lewis","21069|21135","FALSE","FALSE","America/New_York"
-"41094","38.88397","-84.62524","Walton","KY","Kentucky","TRUE","","15371","131.6","21015","Boone","{""21015"": ""84.74"", ""21117"": ""15.26""}","Boone|Kenton","21015|21117","FALSE","FALSE","America/New_York"
-"41095","38.79218","-84.82367","Warsaw","KY","Kentucky","TRUE","","3558","51.2","21077","Gallatin","{""21077"": ""100""}","Gallatin","21077","FALSE","FALSE","America/New_York"
-"41097","38.61986","-84.58145","Williamstown","KY","Kentucky","TRUE","","6729","25.9","21081","Grant","{""21081"": ""90.47"", ""21191"": ""9.53""}","Grant|Pendleton","21081|21191","FALSE","FALSE","America/New_York"
-"41098","38.59179","-85.00069","Worthville","KY","Kentucky","TRUE","","1927","14.6","21187","Owen","{""21187"": ""60.43"", ""21041"": ""39.57""}","Owen|Carroll","21187|21041","FALSE","FALSE","America/New_York"
-"41099","39.03607","-84.46812","Newport","KY","Kentucky","TRUE","","1186","1984.0","21037","Campbell","{""21037"": ""100""}","Campbell","21037","FALSE","FALSE","America/New_York"
-"41101","38.47222","-82.64601","Ashland","KY","Kentucky","TRUE","","18929","757.8","21019","Boyd","{""21019"": ""91.8"", ""21089"": ""8.2""}","Boyd|Greenup","21019|21089","FALSE","FALSE","America/New_York"
-"41102","38.42109","-82.725","Ashland","KY","Kentucky","TRUE","","19457","146.8","21019","Boyd","{""21019"": ""97.15"", ""21089"": ""2.85""}","Boyd|Greenup","21019|21089","FALSE","FALSE","America/New_York"
-"41121","38.44573","-82.83392","Argillite","KY","Kentucky","TRUE","","1716","13.3","21089","Greenup","{""21089"": ""100""}","Greenup","21089","FALSE","FALSE","America/New_York"
-"41124","38.02977","-82.85102","Blaine","KY","Kentucky","TRUE","","785","5.2","21127","Lawrence","{""21127"": ""100""}","Lawrence","21127","FALSE","FALSE","America/New_York"
-"41129","38.32031","-82.63988","Catlettsburg","KY","Kentucky","TRUE","","10318","46.6","21019","Boyd","{""21019"": ""94.61"", ""21127"": ""5.39""}","Boyd|Lawrence","21019|21127","FALSE","FALSE","America/New_York"
-"41132","38.2633","-82.82465","Denton","KY","Kentucky","TRUE","","385","7.3","21043","Carter","{""21043"": ""88.24"", ""21127"": ""11.76""}","Carter|Lawrence","21043|21127","FALSE","FALSE","America/New_York"
-"41135","38.35627","-83.28767","Emerson","KY","Kentucky","TRUE","","65","3.0","21135","Lewis","{""21135"": ""100""}","Lewis","21135","FALSE","FALSE","America/New_York"
-"41139","38.51539","-82.72849","Flatwoods","KY","Kentucky","TRUE","","7905","501.3","21089","Greenup","{""21089"": ""100""}","Greenup","21089","FALSE","FALSE","America/New_York"
-"41141","38.54794","-83.14641","Garrison","KY","Kentucky","TRUE","","1968","11.7","21135","Lewis","{""21135"": ""77.12"", ""21089"": ""22.88""}","Lewis|Greenup","21135|21089","FALSE","FALSE","America/New_York"
-"41142","38.27856","-83.07328","Grahn","KY","Kentucky","TRUE","","55","35.6","21043","Carter","{""21043"": ""100""}","Carter","21043","FALSE","FALSE","America/New_York"
-"41143","38.33258","-82.97239","Grayson","KY","Kentucky","TRUE","","14091","27.5","21043","Carter","{""21043"": ""97.62"", ""21089"": ""2.38""}","Carter|Greenup","21043|21089","FALSE","FALSE","America/New_York"
-"41144","38.53687","-82.91904","Greenup","KY","Kentucky","TRUE","","9829","25.2","21089","Greenup","{""21089"": ""100""}","Greenup","21089","FALSE","FALSE","America/New_York"
-"41146","38.27656","-82.89823","Hitchins","KY","Kentucky","TRUE","","380","45.6","21043","Carter","{""21043"": ""100""}","Carter","21043","FALSE","FALSE","America/New_York"
-"41149","38.06423","-83.03927","Isonville","KY","Kentucky","TRUE","","475","5.5","21063","Elliott","{""21063"": ""100""}","Elliott","21063","FALSE","FALSE","America/New_York"
-"41159","38.01256","-82.96565","Martha","KY","Kentucky","TRUE","","637","10.3","21127","Lawrence","{""21127"": ""100""}","Lawrence","21127","FALSE","FALSE","America/New_York"
-"41164","38.28972","-83.16254","Olive Hill","KY","Kentucky","TRUE","","12645","20.0","21043","Carter","{""21043"": ""86.28"", ""21063"": ""13.19"", ""21135"": ""0.53""}","Carter|Elliott|Lewis","21043|21063|21135","FALSE","FALSE","America/New_York"
-"41166","38.63741","-83.09222","Quincy","KY","Kentucky","TRUE","","1329","23.8","21135","Lewis","{""21135"": ""100""}","Lewis","21135","FALSE","FALSE","America/New_York"
-"41168","38.30732","-82.76223","Rush","KY","Kentucky","TRUE","","2675","18.9","21019","Boyd","{""21019"": ""60.5"", ""21043"": ""39.5""}","Boyd|Carter","21019|21043","FALSE","FALSE","America/New_York"
-"41169","38.52613","-82.71232","Russell","KY","Kentucky","TRUE","","5185","314.4","21089","Greenup","{""21089"": ""100""}","Greenup","21089","FALSE","FALSE","America/New_York"
-"41171","38.09415","-83.10474","Sandy Hook","KY","Kentucky","TRUE","","5598","17.3","21063","Elliott","{""21063"": ""100""}","Elliott","21063","FALSE","FALSE","America/New_York"
-"41174","38.70488","-83.01162","South Portsmouth","KY","Kentucky","TRUE","","1090","41.6","21089","Greenup","{""21089"": ""78.43"", ""21135"": ""21.57""}","Greenup|Lewis","21089|21135","FALSE","FALSE","America/New_York"
-"41175","38.65133","-82.97229","South Shore","KY","Kentucky","TRUE","","5308","26.7","21089","Greenup","{""21089"": ""100""}","Greenup","21089","FALSE","FALSE","America/New_York"
-"41179","38.52673","-83.38774","Vanceburg","KY","Kentucky","TRUE","","7535","8.9","21135","Lewis","{""21135"": ""100""}","Lewis","21135","FALSE","FALSE","America/New_York"
-"41180","38.13517","-82.85386","Webbville","KY","Kentucky","TRUE","","1074","5.8","21127","Lawrence","{""21127"": ""80.59"", ""21063"": ""13.16"", ""21043"": ""6.26""}","Lawrence|Elliott|Carter","21127|21063|21043","FALSE","FALSE","America/New_York"
-"41183","38.55253","-82.73701","Worthington","KY","Kentucky","TRUE","","1553","465.0","21089","Greenup","{""21089"": ""100""}","Greenup","21089","FALSE","FALSE","America/New_York"
-"41189","38.54575","-83.55469","Tollesboro","KY","Kentucky","TRUE","","1976","12.6","21135","Lewis","{""21135"": ""100""}","Lewis","21135","FALSE","FALSE","America/New_York"
-"41201","38.06391","-82.72941","Adams","KY","Kentucky","TRUE","","131","5.1","21127","Lawrence","{""21127"": ""100""}","Lawrence","21127","FALSE","FALSE","America/New_York"
-"41203","37.83807","-82.44517","Beauty","KY","Kentucky","TRUE","","738","46.9","21159","Martin","{""21159"": ""100""}","Martin","21159","FALSE","FALSE","America/New_York"
-"41204","37.81988","-82.68462","Boons Camp","KY","Kentucky","TRUE","","725","23.1","21115","Johnson","{""21115"": ""100""}","Johnson","21115","FALSE","FALSE","America/New_York"
-"41214","37.80576","-82.60877","Debord","KY","Kentucky","TRUE","","442","8.5","21159","Martin","{""21159"": ""100""}","Martin","21159","FALSE","FALSE","America/New_York"
-"41216","37.72903","-82.81382","East Point","KY","Kentucky","TRUE","","1587","38.6","21071","Floyd","{""21071"": ""62.14"", ""21115"": ""37.86""}","Floyd|Johnson","21071|21115","FALSE","FALSE","America/New_York"
-"41219","37.92816","-82.90765","Flatgap","KY","Kentucky","TRUE","","1793","15.2","21115","Johnson","{""21115"": ""100""}","Johnson","21115","FALSE","FALSE","America/New_York"
-"41222","37.76927","-82.85531","Hagerhill","KY","Kentucky","TRUE","","2358","31.5","21115","Johnson","{""21115"": ""100""}","Johnson","21115","FALSE","FALSE","America/New_York"
-"41224","37.82733","-82.53915","Inez","KY","Kentucky","TRUE","","5923","25.3","21159","Martin","{""21159"": ""100""}","Martin","21159","FALSE","FALSE","America/New_York"
-"41226","37.98036","-82.95574","Keaton","KY","Kentucky","TRUE","","191","13.1","21115","Johnson","{""21115"": ""100""}","Johnson","21115","FALSE","FALSE","America/New_York"
-"41230","38.06401","-82.66635","Louisa","KY","Kentucky","TRUE","","11855","20.2","21127","Lawrence","{""21127"": ""98.7"", ""21159"": ""1.3""}","Lawrence|Martin","21127|21159","FALSE","FALSE","America/New_York"
-"41231","37.80721","-82.41043","Lovely","KY","Kentucky","TRUE","","996","66.7","21159","Martin","{""21159"": ""100""}","Martin","21159","FALSE","FALSE","America/New_York"
-"41232","37.93151","-82.73484","Lowmansville","KY","Kentucky","TRUE","","722","24.6","21127","Lawrence","{""21127"": ""67.01"", ""21115"": ""32.99""}","Lawrence|Johnson","21127|21115","FALSE","FALSE","America/New_York"
-"41234","37.7945","-82.74025","Meally","KY","Kentucky","TRUE","","864","66.4","21115","Johnson","{""21115"": ""100""}","Johnson","21115","FALSE","FALSE","America/New_York"
-"41238","37.84853","-82.95474","Oil Springs","KY","Kentucky","TRUE","","639","10.9","21115","Johnson","{""21115"": ""100""}","Johnson","21115","FALSE","FALSE","America/New_York"
-"41240","37.8239","-82.79748","Paintsville","KY","Kentucky","TRUE","","6659","57.4","21115","Johnson","{""21115"": ""100""}","Johnson","21115","FALSE","FALSE","America/New_York"
-"41250","37.73794","-82.45231","Pilgrim","KY","Kentucky","TRUE","","1329","6.7","21159","Martin","{""21159"": ""100""}","Martin","21159","FALSE","FALSE","America/New_York"
-"41254","37.88958","-82.72129","River","KY","Kentucky","TRUE","","321","12.5","21115","Johnson","{""21115"": ""91.42"", ""21127"": ""8.58""}","Johnson|Lawrence","21115|21127","FALSE","FALSE","America/New_York"
-"41255","37.91239","-82.83308","Sitka","KY","Kentucky","TRUE","","1037","26.4","21115","Johnson","{""21115"": ""100""}","Johnson","21115","FALSE","FALSE","America/New_York"
-"41256","37.8303","-82.88499","Staffordsville","KY","Kentucky","TRUE","","3299","57.7","21115","Johnson","{""21115"": ""100""}","Johnson","21115","FALSE","FALSE","America/New_York"
-"41257","37.92993","-82.79667","Stambaugh","KY","Kentucky","TRUE","","665","43.1","21115","Johnson","{""21115"": ""100""}","Johnson","21115","FALSE","FALSE","America/New_York"
-"41260","37.82198","-82.75265","Thelma","KY","Kentucky","TRUE","","843","128.3","21115","Johnson","{""21115"": ""100""}","Johnson","21115","FALSE","FALSE","America/New_York"
-"41262","37.86548","-82.60328","Tomahawk","KY","Kentucky","TRUE","","1207","21.0","21159","Martin","{""21159"": ""100""}","Martin","21159","FALSE","FALSE","America/New_York"
-"41263","37.85177","-82.76021","Tutor Key","KY","Kentucky","TRUE","","450","27.6","21115","Johnson","{""21115"": ""100""}","Johnson","21115","FALSE","FALSE","America/New_York"
-"41264","37.94165","-82.67389","Ulysses","KY","Kentucky","TRUE","","457","14.7","21127","Lawrence","{""21127"": ""100""}","Lawrence","21127","FALSE","FALSE","America/New_York"
-"41265","37.7481","-82.70538","Van Lear","KY","Kentucky","TRUE","","1226","15.7","21115","Johnson","{""21115"": ""97.68"", ""21071"": ""2.32""}","Johnson|Floyd","21115|21071","FALSE","FALSE","America/New_York"
-"41267","37.87493","-82.43857","Warfield","KY","Kentucky","TRUE","","914","45.8","21159","Martin","{""21159"": ""100""}","Martin","21159","FALSE","FALSE","America/New_York"
-"41268","37.78867","-82.78498","West Van Lear","KY","Kentucky","TRUE","","490","613.1","21115","Johnson","{""21115"": ""100""}","Johnson","21115","FALSE","FALSE","America/New_York"
-"41271","37.82246","-82.72357","Williamsport","KY","Kentucky","TRUE","","167","21.5","21115","Johnson","{""21115"": ""100""}","Johnson","21115","FALSE","FALSE","America/New_York"
-"41274","37.85832","-82.81079","Wittensville","KY","Kentucky","TRUE","","387","40.5","21115","Johnson","{""21115"": ""100""}","Johnson","21115","FALSE","FALSE","America/New_York"
-"41301","37.71939","-83.50059","Campton","KY","Kentucky","TRUE","","6304","11.8","21237","Wolfe","{""21237"": ""92.06"", ""21025"": ""4.5"", ""21129"": ""3.44""}","Wolfe|Breathitt|Lee","21237|21025|21129","FALSE","FALSE","America/New_York"
-"41311","37.58224","-83.71104","Beattyville","KY","Kentucky","TRUE","","6758","14.8","21129","Lee","{""21129"": ""99.22"", ""21025"": ""0.78""}","Lee|Breathitt","21129|21025","FALSE","FALSE","America/New_York"
-"41314","37.42586","-83.6404","Booneville","KY","Kentucky","TRUE","","4827","8.3","21189","Owsley","{""21189"": ""87.34"", ""21025"": ""12.66""}","Owsley|Breathitt","21189|21025","FALSE","FALSE","America/New_York"
-"41317","37.44763","-83.18915","Clayhole","KY","Kentucky","TRUE","","161","2.6","21025","Breathitt","{""21025"": ""100""}","Breathitt","21025","FALSE","FALSE","America/New_York"
-"41332","37.80018","-83.38982","Hazel Green","KY","Kentucky","TRUE","","874","8.0","21237","Wolfe","{""21237"": ""62.5"", ""21175"": ""37.5""}","Wolfe|Morgan","21237|21175","FALSE","FALSE","America/New_York"
-"41339","37.53586","-83.29614","Jackson","KY","Kentucky","TRUE","","10530","11.5","21025","Breathitt","{""21025"": ""99.74"", ""21129"": ""0.26"", ""21119"": ""0.01""}","Breathitt|Lee|Knott","21025|21129|21119","FALSE","FALSE","America/New_York"
-"41348","37.42372","-83.3081","Lost Creek","KY","Kentucky","TRUE","","1006","10.1","21025","Breathitt","{""21025"": ""100""}","Breathitt","21025","FALSE","FALSE","America/New_York"
-"41352","37.82357","-83.33355","Mize","KY","Kentucky","TRUE","","592","10.8","21175","Morgan","{""21175"": ""100""}","Morgan","21175","FALSE","FALSE","America/New_York"
-"41360","37.78906","-83.62758","Pine Ridge","KY","Kentucky","TRUE","","578","13.1","21237","Wolfe","{""21237"": ""88.8"", ""21197"": ""11.2""}","Wolfe|Powell","21237|21197","FALSE","FALSE","America/New_York"
-"41365","37.70928","-83.63143","Rogers","KY","Kentucky","TRUE","","327","8.9","21237","Wolfe","{""21237"": ""100""}","Wolfe","21237","FALSE","FALSE","America/New_York"
-"41366","37.59477","-83.21869","Rousseau","KY","Kentucky","TRUE","","36","11.9","21025","Breathitt","{""21025"": ""100""}","Breathitt","21025","FALSE","FALSE","America/New_York"
-"41367","37.41673","-83.22555","Rowdy","KY","Kentucky","TRUE","","134","10.1","21193","Perry","{""21193"": ""100""}","Perry","21193","FALSE","FALSE","America/New_York"
-"41385","37.65279","-83.35039","Vancleve","KY","Kentucky","TRUE","","461","9.0","21025","Breathitt","{""21025"": ""100""}","Breathitt","21025","FALSE","FALSE","America/New_York"
-"41390","37.40954","-83.3764","Whick","KY","Kentucky","TRUE","","12","4.1","21025","Breathitt","{""21025"": ""100""}","Breathitt","21025","FALSE","FALSE","America/New_York"
-"41397","37.68664","-83.67023","Zoe","KY","Kentucky","TRUE","","11","1.5","21129","Lee","{""21129"": ""100""}","Lee","21129","FALSE","FALSE","America/New_York"
-"41408","37.7808","-83.27927","Cannel City","KY","Kentucky","TRUE","","510","28.0","21175","Morgan","{""21175"": ""100""}","Morgan","21175","FALSE","FALSE","America/New_York"
-"41421","37.98975","-83.19786","Elkfork","KY","Kentucky","TRUE","","399","13.1","21175","Morgan","{""21175"": ""100""}","Morgan","21175","FALSE","FALSE","America/New_York"
-"41425","37.88389","-83.42416","Ezel","KY","Kentucky","TRUE","","1080","13.4","21175","Morgan","{""21175"": ""100""}","Morgan","21175","FALSE","FALSE","America/New_York"
-"41464","37.66765","-82.97331","Royalton","KY","Kentucky","TRUE","","596","15.4","21153","Magoffin","{""21153"": ""100""}","Magoffin","21153","FALSE","FALSE","America/New_York"
-"41465","37.72848","-83.08566","Salyersville","KY","Kentucky","TRUE","","11505","17.0","21153","Magoffin","{""21153"": ""100""}","Magoffin","21153","FALSE","FALSE","America/New_York"
-"41472","37.94287","-83.21962","West Liberty","KY","Kentucky","TRUE","","10273","14.4","21175","Morgan","{""21175"": ""98.88"", ""21063"": ""1.12""}","Morgan|Elliott","21175|21063","FALSE","FALSE","America/New_York"
-"41501","37.51611","-82.51726","Pikeville","KY","Kentucky","TRUE","","22090","42.4","21195","Pike","{""21195"": ""100""}","Pike","21195","FALSE","FALSE","America/New_York"
-"41503","37.66445","-82.28772","South Williamson","KY","Kentucky","TRUE","","569","149.0","21195","Pike","{""21195"": ""100""}","Pike","21195","FALSE","FALSE","America/New_York"
-"41512","37.25381","-82.4761","Ashcamp","KY","Kentucky","TRUE","","804","23.4","21195","Pike","{""21195"": ""100""}","Pike","21195","FALSE","FALSE","America/New_York"
-"41513","37.3493","-82.34252","Belcher","KY","Kentucky","TRUE","","454","15.3","21195","Pike","{""21195"": ""100""}","Pike","21195","FALSE","FALSE","America/New_York"
-"41514","37.67083","-82.33077","Belfry","KY","Kentucky","TRUE","","2918","22.3","21195","Pike","{""21195"": ""100""}","Pike","21195","FALSE","FALSE","America/New_York"
-"41517","37.19508","-82.58035","Burdine","KY","Kentucky","TRUE","","211","78.9","21133","Letcher","{""21133"": ""100""}","Letcher","21133","FALSE","FALSE","America/New_York"
-"41519","37.58399","-82.32156","Canada","KY","Kentucky","TRUE","","1084","39.3","21195","Pike","{""21195"": ""100""}","Pike","21195","FALSE","FALSE","America/New_York"
-"41522","37.31087","-82.40908","Elkhorn City","KY","Kentucky","TRUE","","5363","31.8","21195","Pike","{""21195"": ""100""}","Pike","21195","FALSE","FALSE","America/New_York"
-"41524","37.41797","-82.23107","Fedscreek","KY","Kentucky","TRUE","","150","7.5","21195","Pike","{""21195"": ""100""}","Pike","21195","FALSE","FALSE","America/New_York"
-"41526","37.43166","-82.50853","Fords Branch","KY","Kentucky","TRUE","","170","555.1","21195","Pike","{""21195"": ""100""}","Pike","21195","FALSE","FALSE","America/New_York"
-"41527","37.63207","-82.28901","Forest Hills","KY","Kentucky","TRUE","","729","46.9","21195","Pike","{""21195"": ""100""}","Pike","21195","FALSE","FALSE","America/New_York"
-"41528","37.54901","-82.13991","Freeburn","KY","Kentucky","TRUE","","1038","52.4","21195","Pike","{""21195"": ""100""}","Pike","21195","FALSE","FALSE","America/New_York"
-"41531","37.59301","-82.23266","Hardy","KY","Kentucky","TRUE","","993","41.1","21195","Pike","{""21195"": ""100""}","Pike","21195","FALSE","FALSE","America/New_York"
-"41534","37.27755","-82.47657","Hellier","KY","Kentucky","TRUE","","265","60.3","21195","Pike","{""21195"": ""100""}","Pike","21195","FALSE","FALSE","America/New_York"
-"41535","37.59634","-82.27968","Huddy","KY","Kentucky","TRUE","","526","86.2","21195","Pike","{""21195"": ""100""}","Pike","21195","FALSE","FALSE","America/New_York"
-"41537","37.22894","-82.61109","Jenkins","KY","Kentucky","TRUE","","4772","33.0","21133","Letcher","{""21133"": ""56.58"", ""21195"": ""43.42""}","Letcher|Pike","21133|21195","FALSE","FALSE","America/New_York"
-"41538","37.31164","-82.59555","Jonancy","KY","Kentucky","TRUE","","108","221.9","21195","Pike","{""21195"": ""100""}","Pike","21195","FALSE","FALSE","America/New_York"
-"41539","37.50682","-82.32713","Kimper","KY","Kentucky","TRUE","","1458","15.4","21195","Pike","{""21195"": ""100""}","Pike","21195","FALSE","FALSE","America/New_York"
-"41540","37.39094","-82.33492","Lick Creek","KY","Kentucky","TRUE","","136","5.3","21195","Pike","{""21195"": ""100""}","Pike","21195","FALSE","FALSE","America/New_York"
-"41543","37.5479","-82.28552","McAndrews","KY","Kentucky","TRUE","","205","15.4","21195","Pike","{""21195"": ""100""}","Pike","21195","FALSE","FALSE","America/New_York"
-"41544","37.59399","-82.17406","McCarr","KY","Kentucky","TRUE","","728","25.1","21195","Pike","{""21195"": ""100""}","Pike","21195","FALSE","FALSE","America/New_York"
-"41547","37.53609","-82.09064","Majestic","KY","Kentucky","TRUE","","722","41.2","21195","Pike","{""21195"": ""100""}","Pike","21195","FALSE","FALSE","America/New_York"
-"41548","37.38145","-82.27265","Mouthcard","KY","Kentucky","TRUE","","1187","27.6","21195","Pike","{""21195"": ""100""}","Pike","21195","FALSE","FALSE","America/New_York"
-"41553","37.47712","-82.16361","Phelps","KY","Kentucky","TRUE","","1845","20.9","21195","Pike","{""21195"": ""100""}","Pike","21195","FALSE","FALSE","America/New_York"
-"41554","37.4486","-82.29924","Phyllis","KY","Kentucky","TRUE","","737","8.5","21195","Pike","{""21195"": ""100""}","Pike","21195","FALSE","FALSE","America/New_York"
-"41555","37.53834","-82.25834","Pinsonfork","KY","Kentucky","TRUE","","617","28.6","21195","Pike","{""21195"": ""100""}","Pike","21195","FALSE","FALSE","America/New_York"
-"41557","37.48553","-82.41805","Raccoon","KY","Kentucky","TRUE","","1780","33.0","21195","Pike","{""21195"": ""100""}","Pike","21195","FALSE","FALSE","America/New_York"
-"41558","37.53859","-82.20922","Ransom","KY","Kentucky","TRUE","","815","21.5","21195","Pike","{""21195"": ""100""}","Pike","21195","FALSE","FALSE","America/New_York"
-"41559","37.37443","-82.38292","Regina","KY","Kentucky","TRUE","","184","15.8","21195","Pike","{""21195"": ""100""}","Pike","21195","FALSE","FALSE","America/New_York"
-"41560","37.39551","-82.57831","Robinson Creek","KY","Kentucky","TRUE","","235","14.0","21195","Pike","{""21195"": ""100""}","Pike","21195","FALSE","FALSE","America/New_York"
-"41562","37.39869","-82.46364","Shelbiana","KY","Kentucky","TRUE","","2542","36.0","21195","Pike","{""21195"": ""100""}","Pike","21195","FALSE","FALSE","America/New_York"
-"41563","37.23132","-82.53228","Shelby Gap","KY","Kentucky","TRUE","","398","27.2","21195","Pike","{""21195"": ""100""}","Pike","21195","FALSE","FALSE","America/New_York"
-"41564","37.60768","-82.36479","Sidney","KY","Kentucky","TRUE","","702","16.3","21195","Pike","{""21195"": ""100""}","Pike","21195","FALSE","FALSE","America/New_York"
-"41566","37.40347","-82.2015","Steele","KY","Kentucky","TRUE","","856","24.2","21195","Pike","{""21195"": ""100""}","Pike","21195","FALSE","FALSE","America/New_York"
-"41567","37.57503","-82.2833","Stone","KY","Kentucky","TRUE","","112","13.1","21195","Pike","{""21195"": ""100""}","Pike","21195","FALSE","FALSE","America/New_York"
-"41568","37.50222","-82.06563","Stopover","KY","Kentucky","TRUE","","753","10.6","21195","Pike","{""21195"": ""100""}","Pike","21195","FALSE","FALSE","America/New_York"
-"41571","37.62755","-82.43557","Varney","KY","Kentucky","TRUE","","672","13.6","21195","Pike","{""21195"": ""100""}","Pike","21195","FALSE","FALSE","America/New_York"
-"41572","37.31351","-82.64357","Virgie","KY","Kentucky","TRUE","","3561","30.2","21195","Pike","{""21195"": ""100""}","Pike","21195","FALSE","FALSE","America/New_York"
-"41601","37.60744","-82.72251","Allen","KY","Kentucky","TRUE","","516","43.8","21071","Floyd","{""21071"": ""100""}","Floyd","21071","FALSE","FALSE","America/New_York"
-"41602","37.73752","-82.74988","Auxier","KY","Kentucky","TRUE","","1133","121.7","21071","Floyd","{""21071"": ""100""}","Floyd","21071","FALSE","FALSE","America/New_York"
-"41603","37.5588","-82.68829","Banner","KY","Kentucky","TRUE","","1423","42.2","21071","Floyd","{""21071"": ""100""}","Floyd","21071","FALSE","FALSE","America/New_York"
-"41604","37.38891","-82.66567","Beaver","KY","Kentucky","TRUE","","460","32.4","21071","Floyd","{""21071"": ""100""}","Floyd","21071","FALSE","FALSE","America/New_York"
-"41605","37.55546","-82.62666","Betsy Layne","KY","Kentucky","TRUE","","332","79.3","21071","Floyd","{""21071"": ""100""}","Floyd","21071","FALSE","FALSE","America/New_York"
-"41606","37.34862","-82.73557","Bevinsville","KY","Kentucky","TRUE","","991","36.5","21071","Floyd","{""21071"": ""100""}","Floyd","21071","FALSE","FALSE","America/New_York"
-"41607","37.62526","-82.84181","Blue River","KY","Kentucky","TRUE","","351","23.6","21071","Floyd","{""21071"": ""100""}","Floyd","21071","FALSE","FALSE","America/New_York"
-"41612","37.35431","-82.72306","Bypro","KY","Kentucky","TRUE","","82","89.1","21071","Floyd","{""21071"": ""100""}","Floyd","21071","FALSE","FALSE","America/New_York"
-"41615","37.54387","-82.68177","Dana","KY","Kentucky","TRUE","","675","44.7","21071","Floyd","{""21071"": ""100""}","Floyd","21071","FALSE","FALSE","America/New_York"
-"41616","37.58107","-82.8767","David","KY","Kentucky","TRUE","","486","13.7","21071","Floyd","{""21071"": ""100""}","Floyd","21071","FALSE","FALSE","America/New_York"
-"41619","37.48058","-82.7416","Drift","KY","Kentucky","TRUE","","156","12.1","21071","Floyd","{""21071"": ""100""}","Floyd","21071","FALSE","FALSE","America/New_York"
-"41621","37.62508","-82.72777","Dwale","KY","Kentucky","TRUE","","107","61.6","21071","Floyd","{""21071"": ""100""}","Floyd","21071","FALSE","FALSE","America/New_York"
-"41622","37.52229","-82.81697","Eastern","KY","Kentucky","TRUE","","101","25.8","21071","Floyd","{""21071"": ""100""}","Floyd","21071","FALSE","FALSE","America/New_York"
-"41630","37.4538","-82.86469","Garrett","KY","Kentucky","TRUE","","1463","30.7","21071","Floyd","{""21071"": ""64.39"", ""21119"": ""35.61""}","Floyd|Knott","21071|21119","FALSE","FALSE","America/New_York"
-"41631","37.47297","-82.65525","Grethel","KY","Kentucky","TRUE","","1209","39.0","21071","Floyd","{""21071"": ""100""}","Floyd","21071","FALSE","FALSE","America/New_York"
-"41632","37.54642","-82.94021","Gunlock","KY","Kentucky","TRUE","","390","4.7","21153","Magoffin","{""21153"": ""100""}","Magoffin","21153","FALSE","FALSE","America/New_York"
-"41635","37.47706","-82.62675","Harold","KY","Kentucky","TRUE","","3103","58.2","21071","Floyd","{""21071"": ""100""}","Floyd","21071","FALSE","FALSE","America/New_York"
-"41636","37.39937","-82.72916","Hi Hat","KY","Kentucky","TRUE","","980","38.6","21071","Floyd","{""21071"": ""100""}","Floyd","21071","FALSE","FALSE","America/New_York"
-"41640","37.47755","-82.94522","Hueysville","KY","Kentucky","TRUE","","1105","8.2","21071","Floyd","{""21071"": ""81.53"", ""21119"": ""17.13"", ""21153"": ""1.34""}","Floyd|Knott|Magoffin","21071|21119|21153","FALSE","FALSE","America/New_York"
-"41642","37.59562","-82.64622","Ivel","KY","Kentucky","TRUE","","436","18.3","21071","Floyd","{""21071"": ""100""}","Floyd","21071","FALSE","FALSE","America/New_York"
-"41643","37.46001","-82.8326","Lackey","KY","Kentucky","TRUE","","68","31.0","21119","Knott","{""21119"": ""77.32"", ""21071"": ""22.68""}","Knott|Floyd","21119|21071","FALSE","FALSE","America/New_York"
-"41645","37.52401","-82.79352","Langley","KY","Kentucky","TRUE","","949","27.9","21071","Floyd","{""21071"": ""100""}","Floyd","21071","FALSE","FALSE","America/New_York"
-"41647","37.43553","-82.72034","McDowell","KY","Kentucky","TRUE","","1603","33.5","21071","Floyd","{""21071"": ""100""}","Floyd","21071","FALSE","FALSE","America/New_York"
-"41649","37.57078","-82.78197","Martin","KY","Kentucky","TRUE","","2370","39.3","21071","Floyd","{""21071"": ""100""}","Floyd","21071","FALSE","FALSE","America/New_York"
-"41650","37.35451","-82.68332","Melvin","KY","Kentucky","TRUE","","409","45.7","21071","Floyd","{""21071"": ""100""}","Floyd","21071","FALSE","FALSE","America/New_York"
-"41653","37.66104","-82.76356","Prestonsburg","KY","Kentucky","TRUE","","10717","34.5","21071","Floyd","{""21071"": ""100""}","Floyd","21071","FALSE","FALSE","America/New_York"
-"41655","37.50502","-82.72489","Printer","KY","Kentucky","TRUE","","905","21.1","21071","Floyd","{""21071"": ""100""}","Floyd","21071","FALSE","FALSE","America/New_York"
-"41659","37.57414","-82.62706","Stanville","KY","Kentucky","TRUE","","367","52.4","21071","Floyd","{""21071"": ""100""}","Floyd","21071","FALSE","FALSE","America/New_York"
-"41660","37.41261","-82.63714","Teaberry","KY","Kentucky","TRUE","","703","40.2","21071","Floyd","{""21071"": ""100""}","Floyd","21071","FALSE","FALSE","America/New_York"
-"41663","37.56558","-82.65783","Tram","KY","Kentucky","TRUE","","564","123.7","21071","Floyd","{""21071"": ""100""}","Floyd","21071","FALSE","FALSE","America/New_York"
-"41666","37.43933","-82.80732","Wayland","KY","Kentucky","TRUE","","899","38.4","21071","Floyd","{""21071"": ""100""}","Floyd","21071","FALSE","FALSE","America/New_York"
-"41667","37.32021","-82.69148","Weeksbury","KY","Kentucky","TRUE","","599","29.1","21071","Floyd","{""21071"": ""100""}","Floyd","21071","FALSE","FALSE","America/New_York"
-"41669","37.33167","-82.71552","Wheelwright","KY","Kentucky","TRUE","","796","88.4","21071","Floyd","{""21071"": ""100""}","Floyd","21071","FALSE","FALSE","America/New_York"
-"41701","37.29829","-83.19128","Hazard","KY","Kentucky","TRUE","","16093","42.0","21193","Perry","{""21193"": ""91.04"", ""21119"": ""8.96""}","Perry|Knott","21193|21119","FALSE","FALSE","America/New_York"
-"41712","37.36672","-83.13816","Ary","KY","Kentucky","TRUE","","411","30.5","21193","Perry","{""21193"": ""100""}","Perry","21193","FALSE","FALSE","America/New_York"
-"41713","37.21944","-83.27628","Avawam","KY","Kentucky","TRUE","","123","322.4","21193","Perry","{""21193"": ""100""}","Perry","21193","FALSE","FALSE","America/New_York"
-"41714","37.15778","-83.51806","Bear Branch","KY","Kentucky","TRUE","","418","5.7","21131","Leslie","{""21131"": ""98.8"", ""21051"": ""1.2""}","Leslie|Clay","21131|21051","FALSE","FALSE","America/New_York"
-"41719","37.29835","-83.25431","Bonnyman","KY","Kentucky","TRUE","","1216","39.9","21193","Perry","{""21193"": ""100""}","Perry","21193","FALSE","FALSE","America/New_York"
-"41721","37.30927","-83.49427","Buckhorn","KY","Kentucky","TRUE","","520","5.3","21193","Perry","{""21193"": ""96.83"", ""21189"": ""3.17""}","Perry|Owsley","21193|21189","FALSE","FALSE","America/New_York"
-"41722","37.3718","-83.11757","Bulan","KY","Kentucky","TRUE","","1054","17.0","21193","Perry","{""21193"": ""67.95"", ""21119"": ""32.05""}","Perry|Knott","21193|21119","FALSE","FALSE","America/New_York"
-"41723","37.25347","-83.31956","Busy","KY","Kentucky","TRUE","","1443","26.9","21193","Perry","{""21193"": ""82.95"", ""21131"": ""17.05""}","Perry|Leslie","21193|21131","FALSE","FALSE","America/New_York"
-"41725","37.33916","-83.0351","Carrie","KY","Kentucky","TRUE","","158","44.8","21119","Knott","{""21119"": ""100""}","Knott","21119","FALSE","FALSE","America/New_York"
-"41727","37.35386","-83.30575","Chavies","KY","Kentucky","TRUE","","880","30.5","21193","Perry","{""21193"": ""100""}","Perry","21193","FALSE","FALSE","America/New_York"
-"41729","37.2656","-83.21982","Combs","KY","Kentucky","TRUE","","0","0.0","21193","Perry","{""21193"": ""100""}","Perry","21193","FALSE","FALSE","America/New_York"
-"41731","37.10919","-83.06907","Cornettsville","KY","Kentucky","TRUE","","936","13.5","21193","Perry","{""21193"": ""72.53"", ""21133"": ""27.47""}","Perry|Letcher","21193|21133","FALSE","FALSE","America/New_York"
-"41735","37.01709","-83.10356","Delphia","KY","Kentucky","TRUE","","196","8.7","21193","Perry","{""21193"": ""100""}","Perry","21193","FALSE","FALSE","America/New_York"
-"41739","37.32532","-83.12149","Dwarf","KY","Kentucky","TRUE","","139","24.2","21193","Perry","{""21193"": ""87.71"", ""21119"": ""12.29""}","Perry|Knott","21193|21119","FALSE","FALSE","America/New_York"
-"41740","37.35716","-83.05779","Emmalena","KY","Kentucky","TRUE","","1147","24.8","21119","Knott","{""21119"": ""100""}","Knott","21119","FALSE","FALSE","America/New_York"
-"41745","37.3353","-83.43471","Gays Creek","KY","Kentucky","TRUE","","423","25.7","21193","Perry","{""21193"": ""100""}","Perry","21193","FALSE","FALSE","America/New_York"
-"41746","37.21047","-83.09802","Happy","KY","Kentucky","TRUE","","464","22.7","21193","Perry","{""21193"": ""100""}","Perry","21193","FALSE","FALSE","America/New_York"
-"41749","37.19766","-83.41011","Hyden","KY","Kentucky","TRUE","","2918","12.1","21131","Leslie","{""21131"": ""100""}","Leslie","21131","FALSE","FALSE","America/New_York"
-"41751","37.2078","-83.13696","Jeff","KY","Kentucky","TRUE","","239","121.6","21193","Perry","{""21193"": ""100""}","Perry","21193","FALSE","FALSE","America/New_York"
-"41754","37.30031","-83.32191","Krypton","KY","Kentucky","TRUE","","348","30.7","21193","Perry","{""21193"": ""100""}","Perry","21193","FALSE","FALSE","America/New_York"
-"41759","37.2218","-83.02391","Sassafras","KY","Kentucky","TRUE","","314","23.7","21119","Knott","{""21119"": ""94.96"", ""21193"": ""5.04""}","Knott|Perry","21119|21193","FALSE","FALSE","America/New_York"
-"41760","37.2054","-83.07866","Scuddy","KY","Kentucky","TRUE","","5","50.0","21193","Perry","{""21193"": ""100""}","Perry","21193","FALSE","FALSE","America/New_York"
-"41762","37.25348","-83.48379","Sizerock","KY","Kentucky","TRUE","","0","0.0","21131","Leslie","{""21131"": ""100""}","Leslie","21131","FALSE","FALSE","America/New_York"
-"41763","37.05686","-83.12943","Slemp","KY","Kentucky","TRUE","","563","8.6","21193","Perry","{""21193"": ""100""}","Perry","21193","FALSE","FALSE","America/New_York"
-"41764","37.12686","-83.25533","Smilax","KY","Kentucky","TRUE","","760","15.4","21131","Leslie","{""21131"": ""100""}","Leslie","21131","FALSE","FALSE","America/New_York"
-"41766","37.1799","-83.4657","Thousandsticks","KY","Kentucky","TRUE","","197","15.5","21131","Leslie","{""21131"": ""100""}","Leslie","21131","FALSE","FALSE","America/New_York"
-"41772","37.42968","-83.04841","Vest","KY","Kentucky","TRUE","","356","4.3","21119","Knott","{""21119"": ""100""}","Knott","21119","FALSE","FALSE","America/New_York"
-"41773","37.22864","-83.02845","Vicco","KY","Kentucky","TRUE","","1351","32.1","21193","Perry","{""21193"": ""78.63"", ""21119"": ""21.37""}","Perry|Knott","21193|21119","FALSE","FALSE","America/New_York"
-"41774","37.15853","-83.14047","Viper","KY","Kentucky","TRUE","","2526","20.3","21193","Perry","{""21193"": ""100""}","Perry","21193","FALSE","FALSE","America/New_York"
-"41775","37.09369","-83.34195","Wendover","KY","Kentucky","TRUE","","41","1.7","21131","Leslie","{""21131"": ""100""}","Leslie","21131","FALSE","FALSE","America/New_York"
-"41776","37.16706","-83.29127","Wooton","KY","Kentucky","TRUE","","1850","23.7","21131","Leslie","{""21131"": ""100""}","Leslie","21131","FALSE","FALSE","America/New_York"
-"41777","37.06254","-83.23274","Yeaddiss","KY","Kentucky","TRUE","","738","7.4","21131","Leslie","{""21131"": ""100""}","Leslie","21131","FALSE","FALSE","America/New_York"
-"41804","37.15251","-82.99652","Blackey","KY","Kentucky","TRUE","","396","11.5","21133","Letcher","{""21133"": ""100""}","Letcher","21133","FALSE","FALSE","America/New_York"
-"41810","37.18516","-82.67389","Cromona","KY","Kentucky","TRUE","","244","35.5","21133","Letcher","{""21133"": ""100""}","Letcher","21133","FALSE","FALSE","America/New_York"
-"41812","37.24724","-82.74443","Deane","KY","Kentucky","TRUE","","245","15.6","21133","Letcher","{""21133"": ""100""}","Letcher","21133","FALSE","FALSE","America/New_York"
-"41815","37.16152","-82.7974","Ermine","KY","Kentucky","TRUE","","1094","65.8","21133","Letcher","{""21133"": ""100""}","Letcher","21133","FALSE","FALSE","America/New_York"
-"41817","37.35765","-82.92418","Garner","KY","Kentucky","TRUE","","191","26.0","21119","Knott","{""21119"": ""100""}","Knott","21119","FALSE","FALSE","America/New_York"
-"41819","36.98922","-83.07941","Gordon","KY","Kentucky","TRUE","","259","5.7","21133","Letcher","{""21133"": ""100""}","Letcher","21133","FALSE","FALSE","America/New_York"
-"41821","37.0745","-83.01161","Hallie","KY","Kentucky","TRUE","","398","6.4","21133","Letcher","{""21133"": ""100""}","Letcher","21133","FALSE","FALSE","America/New_York"
-"41822","37.32615","-82.97337","Hindman","KY","Kentucky","TRUE","","2384","30.5","21119","Knott","{""21119"": ""100""}","Knott","21119","FALSE","FALSE","America/New_York"
-"41824","37.20145","-82.87711","Isom","KY","Kentucky","TRUE","","1186","48.8","21133","Letcher","{""21133"": ""100""}","Letcher","21133","FALSE","FALSE","America/New_York"
-"41825","37.23018","-82.70802","Jackhorn","KY","Kentucky","TRUE","","638","40.9","21133","Letcher","{""21133"": ""100""}","Letcher","21133","FALSE","FALSE","America/New_York"
-"41826","37.16991","-82.9258","Jeremiah","KY","Kentucky","TRUE","","643","24.5","21133","Letcher","{""21133"": ""100""}","Letcher","21133","FALSE","FALSE","America/New_York"
-"41828","37.29524","-82.78645","Kite","KY","Kentucky","TRUE","","755","15.5","21119","Knott","{""21119"": ""100""}","Knott","21119","FALSE","FALSE","America/New_York"
-"41831","37.3794","-82.95222","Leburn","KY","Kentucky","TRUE","","693","26.6","21119","Knott","{""21119"": ""100""}","Knott","21119","FALSE","FALSE","America/New_York"
-"41832","37.14879","-82.95853","Letcher","KY","Kentucky","TRUE","","323","19.5","21133","Letcher","{""21133"": ""100""}","Letcher","21133","FALSE","FALSE","America/New_York"
-"41833","37.03469","-82.98374","Linefork","KY","Kentucky","TRUE","","425","10.2","21133","Letcher","{""21133"": ""100""}","Letcher","21133","FALSE","FALSE","America/New_York"
-"41834","37.26133","-82.95686","Littcarr","KY","Kentucky","TRUE","","324","10.1","21119","Knott","{""21119"": ""100""}","Knott","21119","FALSE","FALSE","America/New_York"
-"41835","37.21209","-82.66952","McRoberts","KY","Kentucky","TRUE","","901","58.6","21133","Letcher","{""21133"": ""100""}","Letcher","21133","FALSE","FALSE","America/New_York"
-"41836","37.25954","-82.90993","Mallie","KY","Kentucky","TRUE","","887","31.6","21119","Knott","{""21119"": ""100""}","Knott","21119","FALSE","FALSE","America/New_York"
-"41837","37.12705","-82.74588","Mayking","KY","Kentucky","TRUE","","1268","36.6","21133","Letcher","{""21133"": ""100""}","Letcher","21133","FALSE","FALSE","America/New_York"
-"41838","37.19805","-82.74767","Millstone","KY","Kentucky","TRUE","","618","29.7","21133","Letcher","{""21133"": ""100""}","Letcher","21133","FALSE","FALSE","America/New_York"
-"41839","37.4014","-82.87664","Mousie","KY","Kentucky","TRUE","","1398","18.3","21119","Knott","{""21119"": ""100""}","Knott","21119","FALSE","FALSE","America/New_York"
-"41840","37.19718","-82.71545","Neon","KY","Kentucky","TRUE","","650","66.3","21133","Letcher","{""21133"": ""100""}","Letcher","21133","FALSE","FALSE","America/New_York"
-"41843","37.27235","-82.86478","Pine Top","KY","Kentucky","TRUE","","526","13.6","21119","Knott","{""21119"": ""100""}","Knott","21119","FALSE","FALSE","America/New_York"
-"41844","37.32677","-82.86426","Pippa Passes","KY","Kentucky","TRUE","","1611","46.9","21119","Knott","{""21119"": ""100""}","Knott","21119","FALSE","FALSE","America/New_York"
-"41845","37.13276","-82.91898","Premium","KY","Kentucky","TRUE","","352","28.3","21133","Letcher","{""21133"": ""100""}","Letcher","21133","FALSE","FALSE","America/New_York"
-"41847","37.21149","-82.95737","Redfox","KY","Kentucky","TRUE","","496","14.2","21119","Knott","{""21119"": ""100""}","Knott","21119","FALSE","FALSE","America/New_York"
-"41848","37.09526","-82.94841","Roxana","KY","Kentucky","TRUE","","0","0.0","21133","Letcher","{""21133"": ""100""}","Letcher","21133","FALSE","FALSE","America/New_York"
-"41849","37.17462","-82.73404","Seco","KY","Kentucky","TRUE","","107","40.7","21133","Letcher","{""21133"": ""100""}","Letcher","21133","FALSE","FALSE","America/New_York"
-"41855","37.19069","-82.78512","Thornton","KY","Kentucky","TRUE","","777","33.6","21133","Letcher","{""21133"": ""100""}","Letcher","21133","FALSE","FALSE","America/New_York"
-"41858","37.13537","-82.85272","Whitesburg","KY","Kentucky","TRUE","","7592","33.3","21133","Letcher","{""21133"": ""100""}","Letcher","21133","FALSE","FALSE","America/New_York"
-"41859","37.39793","-82.77683","Dema","KY","Kentucky","TRUE","","312","16.1","21119","Knott","{""21119"": ""100""}","Knott","21119","FALSE","FALSE","America/New_York"
-"41861","37.40578","-82.82191","Raven","KY","Kentucky","TRUE","","159","28.2","21119","Knott","{""21119"": ""100""}","Knott","21119","FALSE","FALSE","America/New_York"
-"41862","37.35362","-82.79398","Topmost","KY","Kentucky","TRUE","","835","15.5","21119","Knott","{""21119"": ""100""}","Knott","21119","FALSE","FALSE","America/New_York"
-"42001","37.03762","-88.71089","Paducah","KY","Kentucky","TRUE","","29489","155.3","21145","McCracken","{""21145"": ""100""}","McCracken","21145","FALSE","FALSE","America/Chicago"
-"42003","37.01039","-88.58562","Paducah","KY","Kentucky","TRUE","","28164","156.3","21145","McCracken","{""21145"": ""100""}","McCracken","21145","FALSE","FALSE","America/Chicago"
-"42020","36.69232","-88.29296","Almo","KY","Kentucky","TRUE","","1813","27.5","21035","Calloway","{""21035"": ""100""}","Calloway","21035","FALSE","FALSE","America/Chicago"
-"42021","36.80481","-89.02655","Arlington","KY","Kentucky","TRUE","","1491","10.0","21039","Carlisle","{""21039"": ""92.29"", ""21105"": ""7.71""}","Carlisle|Hickman","21039|21105","FALSE","FALSE","America/Chicago"
-"42022","37.1459","-88.94554","Bandana","KY","Kentucky","TRUE","","168","131.9","21007","Ballard","{""21007"": ""100""}","Ballard","21007","FALSE","FALSE","America/Chicago"
-"42023","36.87161","-88.9913","Bardwell","KY","Kentucky","TRUE","","2343","9.0","21039","Carlisle","{""21039"": ""100""}","Carlisle","21039","FALSE","FALSE","America/Chicago"
-"42024","37.07568","-89.05165","Barlow","KY","Kentucky","TRUE","","1131","9.6","21007","Ballard","{""21007"": ""100""}","Ballard","21007","FALSE","FALSE","America/Chicago"
-"42025","36.85638","-88.3345","Benton","KY","Kentucky","TRUE","","19468","37.7","21157","Marshall","{""21157"": ""99.19"", ""21035"": ""0.44"", ""21083"": ""0.38""}","Marshall|Calloway|Graves","21157|21035|21083","FALSE","FALSE","America/Chicago"
-"42027","36.91631","-88.62851","Boaz","KY","Kentucky","TRUE","","1516","13.0","21083","Graves","{""21083"": ""65.74"", ""21145"": ""34.26""}","Graves|McCracken","21083|21145","FALSE","FALSE","America/Chicago"
-"42028","37.23925","-88.3379","Burna","KY","Kentucky","TRUE","","839","11.9","21139","Livingston","{""21139"": ""100""}","Livingston","21139","FALSE","FALSE","America/Chicago"
-"42029","37.00775","-88.39222","Calvert City","KY","Kentucky","TRUE","","6354","52.7","21157","Marshall","{""21157"": ""100""}","Marshall","21157","FALSE","FALSE","America/Chicago"
-"42031","36.68755","-88.99122","Clinton","KY","Kentucky","TRUE","","2898","7.4","21105","Hickman","{""21105"": ""100""}","Hickman","21105","FALSE","FALSE","America/Chicago"
-"42032","36.77221","-89.10806","Columbus","KY","Kentucky","TRUE","","214","50.8","21105","Hickman","{""21105"": ""100""}","Hickman","21105","FALSE","FALSE","America/Chicago"
-"42035","36.90497","-88.84197","Cunningham","KY","Kentucky","TRUE","","912","12.5","21039","Carlisle","{""21039"": ""86.99"", ""21083"": ""13.01""}","Carlisle|Graves","21039|21083","FALSE","FALSE","America/Chicago"
-"42036","36.72199","-88.22525","Dexter","KY","Kentucky","TRUE","","1153","16.8","21035","Calloway","{""21035"": ""100""}","Calloway","21035","FALSE","FALSE","America/Chicago"
-"42037","37.17273","-88.18779","Dycusburg","KY","Kentucky","TRUE","","66","25.0","21055","Crittenden","{""21055"": ""100""}","Crittenden","21055","FALSE","FALSE","America/Chicago"
-"42038","37.04143","-88.02225","Eddyville","KY","Kentucky","TRUE","","5134","22.6","21143","Lyon","{""21143"": ""99.87"", ""21033"": ""0.13""}","Lyon|Caldwell","21143|21033","FALSE","FALSE","America/Chicago"
-"42039","36.78263","-88.83142","Fancy Farm","KY","Kentucky","TRUE","","1797","13.6","21083","Graves","{""21083"": ""66.25"", ""21039"": ""20.79"", ""21105"": ""12.96""}","Graves|Carlisle|Hickman","21083|21039|21105","FALSE","FALSE","America/Chicago"
-"42040","36.62056","-88.50269","Farmington","KY","Kentucky","TRUE","","890","10.5","21083","Graves","{""21083"": ""68.48"", ""21035"": ""31.52""}","Graves|Calloway","21083|21035","FALSE","FALSE","America/Chicago"
-"42041","36.54755","-88.87483","Fulton","KY","Kentucky","TRUE","","4506","15.8","21075","Fulton","{""21075"": ""76.49"", ""21083"": ""12.62"", ""21105"": ""10.89""}","Fulton|Graves|Hickman","21075|21083|21105","FALSE","FALSE","America/Chicago"
-"42044","36.95872","-88.26478","Gilbertsville","KY","Kentucky","TRUE","","3580","56.9","21157","Marshall","{""21157"": ""100""}","Marshall","21157","FALSE","FALSE","America/Chicago"
-"42045","37.06498","-88.26195","Grand Rivers","KY","Kentucky","TRUE","","2207","23.7","21139","Livingston","{""21139"": ""100""}","Livingston","21139","FALSE","FALSE","America/Chicago"
-"42047","37.29583","-88.39236","Hampton","KY","Kentucky","TRUE","","329","5.8","21139","Livingston","{""21139"": ""100""}","Livingston","21139","FALSE","FALSE","America/Chicago"
-"42048","36.76673","-88.228","Hardin","KY","Kentucky","TRUE","","1641","24.1","21157","Marshall","{""21157"": ""97.3"", ""21035"": ""2.7""}","Marshall|Calloway","21157|21035","FALSE","FALSE","America/Chicago"
-"42049","36.5178","-88.3264","Hazel","KY","Kentucky","TRUE","","1665","15.1","21035","Calloway","{""21035"": ""99.32"", ""21083"": ""0.68""}","Calloway|Graves","21035|21083","FALSE","FALSE","America/Chicago"
-"42050","36.55193","-89.22078","Hickman","KY","Kentucky","TRUE","","2794","9.3","21075","Fulton","{""21075"": ""100""}","Fulton","21075","FALSE","FALSE","America/Chicago"
-"42051","36.8553","-88.64408","Hickory","KY","Kentucky","TRUE","","3440","23.7","21083","Graves","{""21083"": ""100""}","Graves","21083","FALSE","FALSE","America/Chicago"
-"42053","37.11293","-88.88106","Kevil","KY","Kentucky","TRUE","","5044","16.7","21145","McCracken","{""21145"": ""56.93"", ""21007"": ""43.07""}","McCracken|Ballard","21145|21007","FALSE","FALSE","America/Chicago"
-"42054","36.71528","-88.43389","Kirksey","KY","Kentucky","TRUE","","850","11.3","21035","Calloway","{""21035"": ""89.63"", ""21157"": ""7.22"", ""21083"": ""3.15""}","Calloway|Marshall|Graves","21035|21157|21083","FALSE","FALSE","America/Chicago"
-"42055","37.06848","-88.16781","Kuttawa","KY","Kentucky","TRUE","","2828","24.3","21143","Lyon","{""21143"": ""100""}","Lyon","21143","FALSE","FALSE","America/Chicago"
-"42056","37.1115","-88.98611","La Center","KY","Kentucky","TRUE","","1753","12.5","21007","Ballard","{""21007"": ""100""}","Ballard","21007","FALSE","FALSE","America/Chicago"
-"42058","37.05917","-88.47485","Ledbetter","KY","Kentucky","TRUE","","2509","59.1","21139","Livingston","{""21139"": ""100""}","Livingston","21139","FALSE","FALSE","America/Chicago"
-"42060","36.9644","-88.82774","Lovelaceville","KY","Kentucky","TRUE","","0","0.0","21007","Ballard","{""21007"": ""100""}","Ballard","21007","FALSE","FALSE","America/Chicago"
-"42061","36.88267","-88.76968","Lowes","KY","Kentucky","TRUE","","78","85.0","21083","Graves","{""21083"": ""100""}","Graves","21083","FALSE","FALSE","America/Chicago"
-"42064","37.35404","-88.0939","Marion","KY","Kentucky","TRUE","","8074","10.4","21055","Crittenden","{""21055"": ""99.6"", ""21033"": ""0.4""}","Crittenden|Caldwell","21055|21033","FALSE","FALSE","America/Chicago"
-"42066","36.73284","-88.63943","Mayfield","KY","Kentucky","TRUE","","23792","42.4","21083","Graves","{""21083"": ""99.59"", ""21157"": ""0.41""}","Graves|Marshall","21083|21157","FALSE","FALSE","America/Chicago"
-"42069","36.92218","-88.75655","Melber","KY","Kentucky","TRUE","","610","9.0","21083","Graves","{""21083"": ""81.82"", ""21145"": ""18.18""}","Graves|McCracken","21083|21145","FALSE","FALSE","America/Chicago"
-"42071","36.62034","-88.2839","Murray","KY","Kentucky","TRUE","","31762","57.8","21035","Calloway","{""21035"": ""99.97"", ""21083"": ""0.03""}","Calloway|Graves","21035|21083","FALSE","FALSE","America/Chicago"
-"42076","36.55803","-88.09582","New Concord","KY","Kentucky","TRUE","","1252","11.5","21035","Calloway","{""21035"": ""100""}","Calloway","21035","FALSE","FALSE","America/Chicago"
-"42078","37.29174","-88.27515","Salem","KY","Kentucky","TRUE","","1800","8.1","21139","Livingston","{""21139"": ""87.37"", ""21055"": ""12.63""}","Livingston|Crittenden","21139|21055","FALSE","FALSE","America/Chicago"
-"42079","36.56266","-88.57879","Sedalia","KY","Kentucky","TRUE","","1570","11.6","21083","Graves","{""21083"": ""100""}","Graves","21083","FALSE","FALSE","America/Chicago"
-"42081","37.23217","-88.40806","Smithland","KY","Kentucky","TRUE","","1659","5.5","21139","Livingston","{""21139"": ""100""}","Livingston","21139","FALSE","FALSE","America/Chicago"
-"42082","36.9179","-88.49964","Symsonia","KY","Kentucky","TRUE","","1533","21.0","21083","Graves","{""21083"": ""77.51"", ""21157"": ""17.4"", ""21145"": ""5.09""}","Graves|Marshall|McCracken","21083|21157|21145","FALSE","FALSE","America/Chicago"
-"42083","37.16145","-88.27925","Tiline","KY","Kentucky","TRUE","","260","3.5","21139","Livingston","{""21139"": ""100""}","Livingston","21139","FALSE","FALSE","America/Chicago"
-"42085","36.5704","-88.80015","Water Valley","KY","Kentucky","TRUE","","949","12.8","21083","Graves","{""21083"": ""77.78"", ""21105"": ""22.22""}","Graves|Hickman","21083|21105","FALSE","FALSE","America/Chicago"
-"42086","37.08913","-88.76903","West Paducah","KY","Kentucky","TRUE","","4414","50.9","21145","McCracken","{""21145"": ""100""}","McCracken","21145","FALSE","FALSE","America/Chicago"
-"42087","36.97406","-89.00622","Wickliffe","KY","Kentucky","TRUE","","2551","14.1","21007","Ballard","{""21007"": ""100""}","Ballard","21007","FALSE","FALSE","America/Chicago"
-"42088","36.61604","-88.74671","Wingo","KY","Kentucky","TRUE","","2416","14.7","21083","Graves","{""21083"": ""90.93"", ""21105"": ""9.07""}","Graves|Hickman","21083|21105","FALSE","FALSE","America/Chicago"
-"42101","37.06376","-86.47618","Bowling Green","KY","Kentucky","TRUE","","61768","84.2","21227","Warren","{""21227"": ""97.18"", ""21061"": ""2.53"", ""21031"": ""0.3""}","Warren|Edmonson|Butler","21227|21061|21031","FALSE","FALSE","America/Chicago"
-"42102","37.00366","-86.41825","Bowling Green","KY","Kentucky","TRUE","","352","6090.0","21227","Warren","{""21227"": ""100""}","Warren","21227","FALSE","FALSE","America/Chicago"
-"42103","36.94903","-86.33253","Bowling Green","KY","Kentucky","TRUE","","20798","113.3","21227","Warren","{""21227"": ""100""}","Warren","21227","FALSE","FALSE","America/Chicago"
-"42104","36.87837","-86.45125","Bowling Green","KY","Kentucky","TRUE","","34955","240.4","21227","Warren","{""21227"": ""99.35"", ""21213"": ""0.65""}","Warren|Simpson","21227|21213","FALSE","FALSE","America/Chicago"
-"42120","36.6711","-86.2697","Adolphus","KY","Kentucky","TRUE","","3022","25.8","21003","Allen","{""21003"": ""100""}","Allen","21003","FALSE","FALSE","America/Chicago"
-"42122","36.85954","-86.35821","Alvaton","KY","Kentucky","TRUE","","5371","54.9","21227","Warren","{""21227"": ""97.87"", ""21003"": ""2.13""}","Warren|Allen","21227|21003","FALSE","FALSE","America/Chicago"
-"42123","36.82162","-85.98925","Austin","KY","Kentucky","TRUE","","737","12.1","21009","Barren","{""21009"": ""100""}","Barren","21009","FALSE","FALSE","America/Chicago"
-"42124","36.87052","-85.64393","Beaumont","KY","Kentucky","TRUE","","28","28.6","21169","Metcalfe","{""21169"": ""100""}","Metcalfe","21169","FALSE","FALSE","America/Chicago"
-"42127","37.12131","-85.92893","Cave City","KY","Kentucky","TRUE","","6280","27.4","21009","Barren","{""21009"": ""97.1"", ""21099"": ""2.9""}","Barren|Hart","21009|21099","FALSE","FALSE","America/Chicago"
-"42129","36.99117","-85.58874","Edmonton","KY","Kentucky","TRUE","","6657","12.7","21169","Metcalfe","{""21169"": ""96.21"", ""21001"": ""3.64"", ""21057"": ""0.14""}","Metcalfe|Adair|Cumberland","21169|21001|21057","FALSE","FALSE","America/Chicago"
-"42130","36.92408","-85.77894","Eighty Eight","KY","Kentucky","TRUE","","308","35.1","21009","Barren","{""21009"": ""100""}","Barren","21009","FALSE","FALSE","America/Chicago"
-"42133","36.72482","-85.95753","Fountain Run","KY","Kentucky","TRUE","","1369","7.4","21171","Monroe","{""21171"": ""48.54"", ""21009"": ""33.36"", ""21003"": ""18.1""}","Monroe|Barren|Allen","21171|21009|21003","FALSE","FALSE","America/Chicago"
-"42134","36.72444","-86.56599","Franklin","KY","Kentucky","TRUE","","17700","32.2","21213","Simpson","{""21213"": ""97.42"", ""21003"": ""2.53"", ""21141"": ""0.05""}","Simpson|Allen|Logan","21213|21003|21141","FALSE","FALSE","America/Chicago"
-"42140","36.65651","-85.83405","Gamaliel","KY","Kentucky","TRUE","","920","8.6","21171","Monroe","{""21171"": ""100""}","Monroe","21171","FALSE","FALSE","America/Chicago"
-"42141","36.94755","-85.91659","Glasgow","KY","Kentucky","TRUE","","31812","44.2","21009","Barren","{""21009"": ""100""}","Barren","21009","FALSE","FALSE","America/Chicago"
-"42151","36.64816","-85.55848","Hestand","KY","Kentucky","TRUE","","82","1.2","21171","Monroe","{""21171"": ""100""}","Monroe","21171","FALSE","FALSE","America/Chicago"
-"42153","36.66775","-86.06114","Holland","KY","Kentucky","TRUE","","429","10.2","21003","Allen","{""21003"": ""100""}","Allen","21003","FALSE","FALSE","America/Chicago"
-"42154","37.05422","-85.72543","Knob Lick","KY","Kentucky","TRUE","","522","9.5","21169","Metcalfe","{""21169"": ""86.69"", ""21009"": ""13.31""}","Metcalfe|Barren","21169|21009","FALSE","FALSE","America/Chicago"
-"42156","36.85164","-86.05231","Lucas","KY","Kentucky","TRUE","","331","23.9","21009","Barren","{""21009"": ""100""}","Barren","21009","FALSE","FALSE","America/Chicago"
-"42157","36.79088","-85.81515","Mount Hermon","KY","Kentucky","TRUE","","720","15.8","21171","Monroe","{""21171"": ""100""}","Monroe","21171","FALSE","FALSE","America/Chicago"
-"42159","36.99292","-86.24531","Oakland","KY","Kentucky","TRUE","","1395","19.0","21227","Warren","{""21227"": ""100""}","Warren","21227","FALSE","FALSE","America/Chicago"
-"42160","37.07785","-86.07503","Park City","KY","Kentucky","TRUE","","1511","14.6","21009","Barren","{""21009"": ""77.96"", ""21061"": ""22.04""}","Barren|Edmonson","21009|21061","FALSE","FALSE","America/Chicago"
-"42163","37.0791","-86.13414","Rocky Hill","KY","Kentucky","TRUE","","88","38.5","21061","Edmonson","{""21061"": ""100""}","Edmonson","21061","FALSE","FALSE","America/Chicago"
-"42164","36.77559","-86.18471","Scottsville","KY","Kentucky","TRUE","","16664","25.5","21003","Allen","{""21003"": ""100""}","Allen","21003","FALSE","FALSE","America/Chicago"
-"42166","36.87844","-85.70937","Summer Shade","KY","Kentucky","TRUE","","2426","13.1","21169","Metcalfe","{""21169"": ""71.91"", ""21009"": ""19.97"", ""21171"": ""8.12""}","Metcalfe|Barren|Monroe","21169|21009|21171","FALSE","FALSE","America/Chicago"
-"42167","36.72411","-85.67362","Tompkinsville","KY","Kentucky","TRUE","","8143","15.2","21171","Monroe","{""21171"": ""99.86"", ""21057"": ""0.14""}","Monroe|Cumberland","21171|21057","FALSE","FALSE","America/Chicago"
-"42170","36.84425","-86.57625","Woodburn","KY","Kentucky","TRUE","","1481","17.5","21227","Warren","{""21227"": ""66.07"", ""21213"": ""33.93""}","Warren|Simpson","21227|21213","FALSE","FALSE","America/Chicago"
-"42171","37.03473","-86.16596","Smiths Grove","KY","Kentucky","TRUE","","7586","28.9","21227","Warren","{""21227"": ""40.02"", ""21061"": ""33.24"", ""21009"": ""26.74""}","Warren|Edmonson|Barren","21227|21061|21009","FALSE","FALSE","America/Chicago"
-"42202","36.68737","-86.86041","Adairville","KY","Kentucky","TRUE","","2312","14.6","21141","Logan","{""21141"": ""99.54"", ""21213"": ""0.46""}","Logan|Simpson","21141|21213","FALSE","FALSE","America/Chicago"
-"42204","36.6958","-87.07358","Allensville","KY","Kentucky","TRUE","","514","5.5","21219","Todd","{""21219"": ""83.71"", ""21141"": ""16.29""}","Todd|Logan","21219|21141","FALSE","FALSE","America/Chicago"
-"42206","36.8856","-86.72146","Auburn","KY","Kentucky","TRUE","","5843","19.0","21141","Logan","{""21141"": ""94.23"", ""21213"": ""5.46"", ""21227"": ""0.31""}","Logan|Simpson|Warren","21141|21213|21227","FALSE","FALSE","America/Chicago"
-"42207","37.3034","-86.27858","Bee Spring","KY","Kentucky","TRUE","","1348","27.0","21061","Edmonson","{""21061"": ""98.92"", ""21085"": ""1.08""}","Edmonson|Grayson","21061|21085","FALSE","FALSE","America/Chicago"
-"42210","37.20975","-86.2491","Brownsville","KY","Kentucky","TRUE","","4185","11.2","21061","Edmonson","{""21061"": ""100""}","Edmonson","21061","FALSE","FALSE","America/Chicago"
-"42211","36.82146","-87.83899","Cadiz","KY","Kentucky","TRUE","","13064","18.0","21221","Trigg","{""21221"": ""100""}","Trigg","21221","FALSE","FALSE","America/Chicago"
-"42214","37.13985","-85.6915","Center","KY","Kentucky","TRUE","","746","14.8","21169","Metcalfe","{""21169"": ""80.21"", ""21087"": ""19.79""}","Metcalfe|Green","21169|21087","FALSE","FALSE","America/Chicago"
-"42215","36.99698","-87.66707","Cerulean","KY","Kentucky","TRUE","","1441","9.5","21047","Christian","{""21047"": ""55.77"", ""21221"": ""44.23""}","Christian|Trigg","21047|21221","FALSE","FALSE","America/Chicago"
-"42217","37.04837","-87.46144","Crofton","KY","Kentucky","TRUE","","3164","7.7","21047","Christian","{""21047"": ""100""}","Christian","21047","FALSE","FALSE","America/Chicago"
-"42220","36.89552","-87.17904","Elkton","KY","Kentucky","TRUE","","6783","14.8","21219","Todd","{""21219"": ""100""}","Todd","21219","FALSE","FALSE","America/Chicago"
-"42223","36.62825","-87.46282","Fort Campbell","KY","Kentucky","TRUE","","20311","517.7","21047","Christian","{""21047"": ""68.99"", ""47125"": ""31.01""}","Christian|Montgomery","21047|47125","FALSE","FALSE","America/Chicago"
-"42232","36.87531","-87.65855","Gracey","KY","Kentucky","TRUE","","1162","16.5","21047","Christian","{""21047"": ""75.86"", ""21221"": ""24.14""}","Christian|Trigg","21047|21221","FALSE","FALSE","America/Chicago"
-"42234","36.70645","-87.17664","Guthrie","KY","Kentucky","TRUE","","2509","16.3","21219","Todd","{""21219"": ""100""}","Todd","21219","FALSE","FALSE","America/Chicago"
-"42236","36.71982","-87.61942","Herndon","KY","Kentucky","TRUE","","580","3.4","21047","Christian","{""21047"": ""84.28"", ""21221"": ""15.72""}","Christian|Trigg","21047|21221","FALSE","FALSE","America/Chicago"
-"42240","36.87878","-87.46244","Hopkinsville","KY","Kentucky","TRUE","","41027","58.9","21047","Christian","{""21047"": ""100""}","Christian","21047","FALSE","FALSE","America/Chicago"
-"42254","36.66083","-87.63741","La Fayette","KY","Kentucky","TRUE","","135","10.3","21047","Christian","{""21047"": ""100""}","Christian","21047","FALSE","FALSE","America/Chicago"
-"42256","37.01479","-86.94594","Lewisburg","KY","Kentucky","TRUE","","4637","9.4","21141","Logan","{""21141"": ""74.82"", ""21031"": ""12.13"", ""21219"": ""12.09"", ""21177"": ""0.95""}","Logan|Butler|Todd|Muhlenberg","21141|21031|21219|21177","FALSE","FALSE","America/Chicago"
-"42259","37.24387","-86.15143","Mammoth Cave","KY","Kentucky","TRUE","","1164","13.7","21061","Edmonson","{""21061"": ""100""}","Edmonson","21061","FALSE","FALSE","America/Chicago"
-"42261","37.21978","-86.66901","Morgantown","KY","Kentucky","TRUE","","10650","14.0","21031","Butler","{""21031"": ""100""}","Butler","21031","FALSE","FALSE","America/Chicago"
-"42262","36.68155","-87.44869","Oak Grove","KY","Kentucky","TRUE","","8730","93.5","21047","Christian","{""21047"": ""100""}","Christian","21047","FALSE","FALSE","America/Chicago"
-"42265","36.73581","-86.99345","Olmstead","KY","Kentucky","TRUE","","954","7.2","21141","Logan","{""21141"": ""93.05"", ""21219"": ""6.95""}","Logan|Todd","21141|21219","FALSE","FALSE","America/Chicago"
-"42266","36.76621","-87.36027","Pembroke","KY","Kentucky","TRUE","","2313","11.9","21047","Christian","{""21047"": ""94.21"", ""21219"": ""5.79""}","Christian|Todd","21047|21219","FALSE","FALSE","America/Chicago"
-"42273","37.21755","-86.85332","Rochester","KY","Kentucky","TRUE","","500","10.6","21031","Butler","{""21031"": ""100""}","Butler","21031","FALSE","FALSE","America/Chicago"
-"42274","36.94686","-86.60235","Rockfield","KY","Kentucky","TRUE","","2256","23.1","21227","Warren","{""21227"": ""89.46"", ""21141"": ""10.54""}","Warren|Logan","21227|21141","FALSE","FALSE","America/Chicago"
-"42275","37.22055","-86.44738","Roundhill","KY","Kentucky","TRUE","","772","6.8","21031","Butler","{""21031"": ""62.97"", ""21061"": ""37.03""}","Butler|Edmonson","21031|21061","FALSE","FALSE","America/Chicago"
-"42276","36.8571","-86.88077","Russellville","KY","Kentucky","TRUE","","14344","27.5","21141","Logan","{""21141"": ""100""}","Logan","21141","FALSE","FALSE","America/Chicago"
-"42280","36.95376","-87.09913","Sharon Grove","KY","Kentucky","TRUE","","519","9.1","21219","Todd","{""21219"": ""100""}","Todd","21219","FALSE","FALSE","America/Chicago"
-"42285","37.26405","-86.29777","Sweeden","KY","Kentucky","TRUE","","432","20.3","21061","Edmonson","{""21061"": ""100""}","Edmonson","21061","FALSE","FALSE","America/Chicago"
-"42286","36.72632","-87.27264","Trenton","KY","Kentucky","TRUE","","1319","8.9","21219","Todd","{""21219"": ""100""}","Todd","21219","FALSE","FALSE","America/Chicago"
-"42301","37.74038","-87.24615","Owensboro","KY","Kentucky","TRUE","","44079","99.5","21059","Daviess","{""21059"": ""99.71"", ""21101"": ""0.29""}","Daviess|Henderson","21059|21101","FALSE","FALSE","America/Chicago"
-"42303","37.76154","-87.04899","Owensboro","KY","Kentucky","TRUE","","41091","331.0","21059","Daviess","{""21059"": ""100""}","Daviess","21059","FALSE","FALSE","America/Chicago"
-"42320","37.35244","-86.8709","Beaver Dam","KY","Kentucky","TRUE","","9000","23.6","21183","Ohio","{""21183"": ""99.61"", ""21031"": ""0.39""}","Ohio|Butler","21183|21031","FALSE","FALSE","America/Chicago"
-"42321","37.17156","-87.05596","Beech Creek","KY","Kentucky","TRUE","","108","27.2","21177","Muhlenberg","{""21177"": ""100""}","Muhlenberg","21177","FALSE","FALSE","America/Chicago"
-"42322","37.61369","-87.39532","Beech Grove","KY","Kentucky","TRUE","","78","498.8","21149","McLean","{""21149"": ""100""}","McLean","21149","FALSE","FALSE","America/Chicago"
-"42323","37.17369","-87.03489","Beechmont","KY","Kentucky","TRUE","","631","121.2","21177","Muhlenberg","{""21177"": ""100""}","Muhlenberg","21177","FALSE","FALSE","America/Chicago"
-"42324","37.13534","-87.00093","Belton","KY","Kentucky","TRUE","","1249","13.2","21177","Muhlenberg","{""21177"": ""100""}","Muhlenberg","21177","FALSE","FALSE","America/Chicago"
-"42325","37.32733","-87.27036","Bremen","KY","Kentucky","TRUE","","2290","29.2","21177","Muhlenberg","{""21177"": ""100""}","Muhlenberg","21177","FALSE","FALSE","America/Chicago"
-"42326","37.22439","-87.01035","Browder","KY","Kentucky","TRUE","","456","13.2","21177","Muhlenberg","{""21177"": ""100""}","Muhlenberg","21177","FALSE","FALSE","America/Chicago"
-"42327","37.58745","-87.30164","Calhoun","KY","Kentucky","TRUE","","3957","12.3","21149","McLean","{""21149"": ""99.11"", ""21059"": ""0.89""}","McLean|Daviess","21149|21059","FALSE","FALSE","America/Chicago"
-"42328","37.41858","-87.04225","Centertown","KY","Kentucky","TRUE","","1316","7.9","21183","Ohio","{""21183"": ""100""}","Ohio","21183","FALSE","FALSE","America/Chicago"
-"42330","37.32067","-87.12003","Central City","KY","Kentucky","TRUE","","8959","39.8","21177","Muhlenberg","{""21177"": ""100""}","Muhlenberg","21177","FALSE","FALSE","America/Chicago"
-"42332","37.24996","-87.08786","Cleaton","KY","Kentucky","TRUE","","144","92.0","21177","Muhlenberg","{""21177"": ""100""}","Muhlenberg","21177","FALSE","FALSE","America/Chicago"
-"42333","37.36404","-86.76398","Cromwell","KY","Kentucky","TRUE","","1350","16.4","21183","Ohio","{""21183"": ""92.26"", ""21031"": ""7.74""}","Ohio|Butler","21183|21031","FALSE","FALSE","America/Chicago"
-"42337","37.2272","-87.01079","Drakesboro","KY","Kentucky","TRUE","","2342","18.3","21177","Muhlenberg","{""21177"": ""100""}","Muhlenberg","21177","FALSE","FALSE","America/Chicago"
-"42338","37.54589","-86.79122","Dundee","KY","Kentucky","TRUE","","14","1.6","21183","Ohio","{""21183"": ""100""}","Ohio","21183","FALSE","FALSE","America/Chicago"
-"42339","37.10953","-86.95003","Dunmor","KY","Kentucky","TRUE","","829","10.7","21177","Muhlenberg","{""21177"": ""92.88"", ""21031"": ""7.13""}","Muhlenberg|Butler","21177|21031","FALSE","FALSE","America/Chicago"
-"42343","37.63277","-86.6975","Fordsville","KY","Kentucky","TRUE","","1656","9.0","21183","Ohio","{""21183"": ""88.55"", ""21091"": ""11.45""}","Ohio|Hancock","21183|21091","FALSE","FALSE","America/Chicago"
-"42344","37.25686","-87.32011","Graham","KY","Kentucky","TRUE","","854","9.5","21177","Muhlenberg","{""21177"": ""100""}","Muhlenberg","21177","FALSE","FALSE","America/Chicago"
-"42345","37.14413","-87.18463","Greenville","KY","Kentucky","TRUE","","11246","28.4","21177","Muhlenberg","{""21177"": ""99.94"", ""21219"": ""0.06""}","Muhlenberg|Todd","21177|21219","FALSE","FALSE","America/Chicago"
-"42347","37.52455","-86.88429","Hartford","KY","Kentucky","TRUE","","6204","19.4","21183","Ohio","{""21183"": ""100""}","Ohio","21183","FALSE","FALSE","America/Chicago"
-"42348","37.83486","-86.76308","Hawesville","KY","Kentucky","TRUE","","4898","17.0","21091","Hancock","{""21091"": ""93.74"", ""21059"": ""6.26""}","Hancock|Daviess","21091|21059","FALSE","FALSE","America/Chicago"
-"42349","37.42765","-86.67895","Horse Branch","KY","Kentucky","TRUE","","1323","8.3","21183","Ohio","{""21183"": ""91.22"", ""21085"": ""8.78""}","Ohio|Grayson","21183|21085","FALSE","FALSE","America/Chicago"
-"42350","37.44958","-87.1889","Island","KY","Kentucky","TRUE","","1556","14.4","21149","McLean","{""21149"": ""100""}","McLean","21149","FALSE","FALSE","America/Chicago"
-"42351","37.90602","-86.87955","Lewisport","KY","Kentucky","TRUE","","4143","23.3","21091","Hancock","{""21091"": ""82.37"", ""21059"": ""17.63""}","Hancock|Daviess","21091|21059","FALSE","FALSE","America/Chicago"
-"42352","37.51496","-87.08144","Livermore","KY","Kentucky","TRUE","","1916","32.5","21149","McLean","{""21149"": ""95.24"", ""21183"": ""4.76""}","McLean|Ohio","21149|21183","FALSE","FALSE","America/Chicago"
-"42354","37.37782","-86.9297","McHenry","KY","Kentucky","TRUE","","179","79.8","21183","Ohio","{""21183"": ""100""}","Ohio","21183","FALSE","FALSE","America/Chicago"
-"42355","37.85787","-86.98447","Maceo","KY","Kentucky","TRUE","","1903","25.7","21059","Daviess","{""21059"": ""100""}","Daviess","21059","FALSE","FALSE","America/Chicago"
-"42356","37.69335","-87.32407","Maple Mount","KY","Kentucky","TRUE","","104","1613.4","21059","Daviess","{""21059"": ""100""}","Daviess","21059","FALSE","FALSE","America/Chicago"
-"42361","37.52072","-86.6844","Olaton","KY","Kentucky","TRUE","","423","4.7","21183","Ohio","{""21183"": ""77.85"", ""21085"": ""22.15""}","Ohio|Grayson","21183|21085","FALSE","FALSE","America/Chicago"
-"42366","37.72267","-86.94541","Philpot","KY","Kentucky","TRUE","","5439","26.1","21059","Daviess","{""21059"": ""98.21"", ""21091"": ""1.21"", ""21183"": ""0.58""}","Daviess|Hancock|Ohio","21059|21091|21183","FALSE","FALSE","America/Chicago"
-"42367","37.2393","-87.16002","Powderly","KY","Kentucky","TRUE","","738","270.0","21177","Muhlenberg","{""21177"": ""100""}","Muhlenberg","21177","FALSE","FALSE","America/Chicago"
-"42368","37.70262","-86.75501","Reynolds Station","KY","Kentucky","TRUE","","1303","11.9","21183","Ohio","{""21183"": ""54.04"", ""21091"": ""45.96""}","Ohio|Hancock","21183|21091","FALSE","FALSE","America/Chicago"
-"42369","37.3554","-87.00653","Rockport","KY","Kentucky","TRUE","","278","25.0","21183","Ohio","{""21183"": ""100""}","Ohio","21183","FALSE","FALSE","America/Chicago"
-"42370","37.44912","-86.73906","Rosine","KY","Kentucky","TRUE","","19","68.7","21183","Ohio","{""21183"": ""100""}","Ohio","21183","FALSE","FALSE","America/Chicago"
-"42371","37.49876","-87.28935","Rumsey","KY","Kentucky","TRUE","","313","3.2","21149","McLean","{""21149"": ""100""}","McLean","21149","FALSE","FALSE","America/Chicago"
-"42372","37.40537","-87.27471","Sacramento","KY","Kentucky","TRUE","","1599","16.6","21149","McLean","{""21149"": ""73.68"", ""21177"": ""26.32""}","McLean|Muhlenberg","21149|21177","FALSE","FALSE","America/Chicago"
-"42374","37.33431","-87.15235","South Carrollton","KY","Kentucky","TRUE","","504","48.2","21177","Muhlenberg","{""21177"": ""100""}","Muhlenberg","21177","FALSE","FALSE","America/Chicago"
-"42376","37.61685","-87.08757","Utica","KY","Kentucky","TRUE","","6077","23.5","21059","Daviess","{""21059"": ""76.5"", ""21183"": ""19.26"", ""21149"": ""4.24""}","Daviess|Ohio|McLean","21059|21183|21149","FALSE","FALSE","America/Chicago"
-"42378","37.65607","-86.86895","Whitesville","KY","Kentucky","TRUE","","3321","19.1","21059","Daviess","{""21059"": ""68.37"", ""21183"": ""31.63""}","Daviess|Ohio","21059|21183","FALSE","FALSE","America/Chicago"
-"42404","37.47709","-87.83306","Clay","KY","Kentucky","TRUE","","2399","10.5","21233","Webster","{""21233"": ""96.89"", ""21225"": ""3.11""}","Webster|Union","21233|21225","FALSE","FALSE","America/Chicago"
-"42406","37.76318","-87.73173","Corydon","KY","Kentucky","TRUE","","3155","11.5","21101","Henderson","{""21101"": ""98.2"", ""21233"": ""1.8""}","Henderson|Webster","21101|21233","FALSE","FALSE","America/Chicago"
-"42408","37.18064","-87.6943","Dawson Springs","KY","Kentucky","TRUE","","6720","20.2","21107","Hopkins","{""21107"": ""81.4"", ""21033"": ""13.8"", ""21047"": ""4.79""}","Hopkins|Caldwell|Christian","21107|21033|21047","FALSE","FALSE","America/Chicago"
-"42409","37.54304","-87.70071","Dixon","KY","Kentucky","TRUE","","2758","12.3","21233","Webster","{""21233"": ""100""}","Webster","21233","FALSE","FALSE","America/Chicago"
-"42410","37.27717","-87.51257","Earlington","KY","Kentucky","TRUE","","1427","209.6","21107","Hopkins","{""21107"": ""100""}","Hopkins","21107","FALSE","FALSE","America/Chicago"
-"42411","37.20308","-88.01808","Fredonia","KY","Kentucky","TRUE","","1934","8.6","21033","Caldwell","{""21033"": ""75.79"", ""21055"": ""20.05"", ""21143"": ""4.17""}","Caldwell|Crittenden|Lyon","21033|21055|21143","FALSE","FALSE","America/Chicago"
-"42413","37.44364","-87.47093","Hanson","KY","Kentucky","TRUE","","3097","22.9","21107","Hopkins","{""21107"": ""100""}","Hopkins","21107","FALSE","FALSE","America/Chicago"
-"42420","37.80343","-87.5168","Henderson","KY","Kentucky","TRUE","","38066","78.0","21101","Henderson","{""21101"": ""100""}","Henderson","21101","FALSE","FALSE","America/Chicago"
-"42431","37.32921","-87.4783","Madisonville","KY","Kentucky","TRUE","","25729","59.6","21107","Hopkins","{""21107"": ""100""}","Hopkins","21107","FALSE","FALSE","America/Chicago"
-"42436","37.41444","-87.57033","Manitou","KY","Kentucky","TRUE","","1150","23.7","21107","Hopkins","{""21107"": ""100""}","Hopkins","21107","FALSE","FALSE","America/Chicago"
-"42437","37.66395","-87.93655","Morganfield","KY","Kentucky","TRUE","","8155","18.2","21225","Union","{""21225"": ""99.74"", ""21233"": ""0.26""}","Union|Webster","21225|21233","FALSE","FALSE","America/Chicago"
-"42440","37.24155","-87.4649","Mortons Gap","KY","Kentucky","TRUE","","943","364.6","21107","Hopkins","{""21107"": ""100""}","Hopkins","21107","FALSE","FALSE","America/Chicago"
-"42441","37.35487","-87.66825","Nebo","KY","Kentucky","TRUE","","1679","10.9","21107","Hopkins","{""21107"": ""98.43"", ""21233"": ""1.57""}","Hopkins|Webster","21107|21233","FALSE","FALSE","America/Chicago"
-"42442","37.16366","-87.49561","Nortonville","KY","Kentucky","TRUE","","3227","20.4","21107","Hopkins","{""21107"": ""97.8"", ""21047"": ""2.2""}","Hopkins|Christian","21107|21047","FALSE","FALSE","America/Chicago"
-"42445","37.13023","-87.8547","Princeton","KY","Kentucky","TRUE","","10421","15.2","21033","Caldwell","{""21033"": ""94.94"", ""21143"": ""3.04"", ""21107"": ""2.01""}","Caldwell|Lyon|Hopkins","21033|21143|21107","FALSE","FALSE","America/Chicago"
-"42450","37.39614","-87.76331","Providence","KY","Kentucky","TRUE","","3956","25.6","21233","Webster","{""21233"": ""93.7"", ""21107"": ""5.12"", ""21055"": ""1.18""}","Webster|Hopkins|Crittenden","21233|21107|21055","FALSE","FALSE","America/Chicago"
-"42451","37.88635","-87.39155","Reed","KY","Kentucky","TRUE","","949","9.3","21101","Henderson","{""21101"": ""100""}","Henderson","21101","FALSE","FALSE","America/Chicago"
-"42452","37.68825","-87.53224","Robards","KY","Kentucky","TRUE","","2300","16.6","21101","Henderson","{""21101"": ""98.83"", ""21233"": ""1.17""}","Henderson|Webster","21101|21233","FALSE","FALSE","America/Chicago"
-"42453","37.15801","-87.60336","Saint Charles","KY","Kentucky","TRUE","","622","14.7","21107","Hopkins","{""21107"": ""96.05"", ""21047"": ""3.95""}","Hopkins|Christian","21107|21047","FALSE","FALSE","America/Chicago"
-"42455","37.5871","-87.54166","Sebree","KY","Kentucky","TRUE","","3110","15.7","21233","Webster","{""21233"": ""100""}","Webster","21233","FALSE","FALSE","America/Chicago"
-"42456","37.51336","-87.49436","Slaughters","KY","Kentucky","TRUE","","1428","8.2","21233","Webster","{""21233"": ""63.37"", ""21107"": ""36.63""}","Webster|Hopkins","21233|21107","FALSE","FALSE","America/Chicago"
-"42458","37.84121","-87.4236","Spottsville","KY","Kentucky","TRUE","","1192","27.9","21101","Henderson","{""21101"": ""100""}","Henderson","21101","FALSE","FALSE","America/Chicago"
-"42459","37.55856","-88.01533","Sturgis","KY","Kentucky","TRUE","","4389","14.0","21225","Union","{""21225"": ""95.43"", ""21055"": ""4.57""}","Union|Crittenden","21225|21055","FALSE","FALSE","America/Chicago"
-"42461","37.79347","-87.91064","Uniontown","KY","Kentucky","TRUE","","1175","12.5","21225","Union","{""21225"": ""100""}","Union","21225","FALSE","FALSE","America/Chicago"
-"42462","37.7409","-87.8007","Waverly","KY","Kentucky","TRUE","","1202","10.5","21225","Union","{""21225"": ""69.98"", ""21101"": ""30.02""}","Union|Henderson","21225|21101","FALSE","FALSE","America/Chicago"
-"42463","37.47526","-87.8716","Wheatcroft","KY","Kentucky","TRUE","","85","15.5","21233","Webster","{""21233"": ""100""}","Webster","21233","FALSE","FALSE","America/Chicago"
-"42464","37.18152","-87.36706","White Plains","KY","Kentucky","TRUE","","1571","9.9","21107","Hopkins","{""21107"": ""89.05"", ""21177"": ""6.28"", ""21047"": ""4.67""}","Hopkins|Muhlenberg|Christian","21107|21177|21047","FALSE","FALSE","America/Chicago"
-"42501","37.06174","-84.44978","Somerset","KY","Kentucky","TRUE","","17390","33.6","21199","Pulaski","{""21199"": ""100""}","Pulaski","21199","FALSE","FALSE","America/New_York"
-"42503","37.15641","-84.52524","Somerset","KY","Kentucky","TRUE","","24240","72.4","21199","Pulaski","{""21199"": ""100""}","Pulaski","21199","FALSE","FALSE","America/New_York"
-"42516","37.22715","-84.7786","Bethelridge","KY","Kentucky","TRUE","","743","21.3","21045","Casey","{""21045"": ""100""}","Casey","21045","FALSE","FALSE","America/New_York"
-"42518","36.9346","-84.63301","Bronston","KY","Kentucky","TRUE","","2644","40.2","21199","Pulaski","{""21199"": ""93.31"", ""21231"": ""6.69""}","Pulaski|Wayne","21199|21231","FALSE","FALSE","America/New_York"
-"42519","36.93932","-84.53574","Burnside","KY","Kentucky","TRUE","","3524","27.6","21199","Pulaski","{""21199"": ""100""}","Pulaski","21199","FALSE","FALSE","America/New_York"
-"42528","37.18413","-85.01403","Dunnville","KY","Kentucky","TRUE","","1662","13.1","21045","Casey","{""21045"": ""73.49"", ""21207"": ""17.32"", ""21001"": ""9.19""}","Casey|Russell|Adair","21045|21207|21001","FALSE","FALSE","America/Chicago"
-"42533","37.06762","-84.5929","Ferguson","KY","Kentucky","TRUE","","776","204.3","21199","Pulaski","{""21199"": ""100""}","Pulaski","21199","FALSE","FALSE","America/New_York"
-"42539","37.30381","-84.95386","Liberty","KY","Kentucky","TRUE","","9182","16.7","21045","Casey","{""21045"": ""99.72"", ""21001"": ""0.28""}","Casey|Adair","21045|21001","FALSE","FALSE","America/New_York"
-"42541","37.3715","-84.79765","Middleburg","KY","Kentucky","TRUE","","556","13.9","21045","Casey","{""21045"": ""100""}","Casey","21045","FALSE","FALSE","America/New_York"
-"42544","37.03401","-84.8166","Nancy","KY","Kentucky","TRUE","","5889","15.6","21199","Pulaski","{""21199"": ""82.1"", ""21207"": ""8.95"", ""21231"": ""8.95""}","Pulaski|Russell|Wayne","21199|21207|21231","FALSE","FALSE","America/New_York"
-"42553","37.17121","-84.697","Science Hill","KY","Kentucky","TRUE","","5637","35.0","21199","Pulaski","{""21199"": ""100""}","Pulaski","21199","FALSE","FALSE","America/New_York"
-"42565","37.15503","-84.89352","Windsor","KY","Kentucky","TRUE","","846","12.2","21045","Casey","{""21045"": ""100""}","Casey","21045","FALSE","FALSE","America/New_York"
-"42566","37.28532","-84.7797","Yosemite","KY","Kentucky","TRUE","","493","11.1","21045","Casey","{""21045"": ""100""}","Casey","21045","FALSE","FALSE","America/New_York"
-"42567","37.26417","-84.60653","Eubank","KY","Kentucky","TRUE","","5610","23.7","21199","Pulaski","{""21199"": ""91.31"", ""21137"": ""8.69""}","Pulaski|Lincoln","21199|21137","FALSE","FALSE","America/New_York"
-"42602","36.73159","-85.13322","Albany","KY","Kentucky","TRUE","","10139","20.4","21053","Clinton","{""21053"": ""98.99"", ""47137"": ""0.46"", ""21231"": ""0.39"", ""21207"": ""0.16""}","Clinton|Pickett|Wayne|Russell","21053|47137|21231|21207","FALSE","FALSE","America/Chicago"
-"42603","36.78238","-85.02751","Alpha","KY","Kentucky","TRUE","","59","6.2","21053","Clinton","{""21053"": ""100""}","Clinton","21053","FALSE","FALSE","America/Kentucky/Monticello"
-"42629","36.92484","-85.1168","Jamestown","KY","Kentucky","TRUE","","5382","20.9","21207","Russell","{""21207"": ""100""}","Russell","21207","FALSE","FALSE","America/Chicago"
-"42631","36.73965","-84.48032","Marshes Siding","KY","Kentucky","TRUE","","222","658.5","21147","McCreary","{""21147"": ""100""}","McCreary","21147","FALSE","FALSE","America/New_York"
-"42633","36.79286","-84.83042","Monticello","KY","Kentucky","TRUE","","19613","17.4","21231","Wayne","{""21231"": ""99.95"", ""21053"": ""0.05""}","Wayne|Clinton","21231|21053","FALSE","FALSE","America/Kentucky/Monticello"
-"42634","36.8792","-84.41931","Parkers Lake","KY","Kentucky","TRUE","","1862","7.8","21147","McCreary","{""21147"": ""100""}","McCreary","21147","FALSE","FALSE","America/New_York"
-"42635","36.68069","-84.39841","Pine Knot","KY","Kentucky","TRUE","","4917","81.2","21147","McCreary","{""21147"": ""100""}","McCreary","21147","FALSE","FALSE","America/New_York"
-"42638","36.67476","-84.47022","Revelo","KY","Kentucky","TRUE","","88","26.6","21147","McCreary","{""21147"": ""100""}","McCreary","21147","FALSE","FALSE","America/New_York"
-"42642","37.0551","-85.03748","Russell Springs","KY","Kentucky","TRUE","","12235","33.8","21207","Russell","{""21207"": ""93.92"", ""21001"": ""5.04"", ""21045"": ""0.55"", ""21199"": ""0.49""}","Russell|Adair|Casey|Pulaski","21207|21001|21045|21199","FALSE","FALSE","America/Chicago"
-"42647","36.69206","-84.61067","Stearns","KY","Kentucky","TRUE","","3806","10.6","21147","McCreary","{""21147"": ""100""}","McCreary","21147","FALSE","FALSE","America/New_York"
-"42649","36.62464","-84.42251","Strunk","KY","Kentucky","TRUE","","2087","11.2","21147","McCreary","{""21147"": ""100""}","McCreary","21147","FALSE","FALSE","America/New_York"
-"42653","36.77789","-84.4574","Whitley City","KY","Kentucky","TRUE","","4339","21.1","21147","McCreary","{""21147"": ""100""}","McCreary","21147","FALSE","FALSE","America/New_York"
-"42701","37.70498","-85.8358","Elizabethtown","KY","Kentucky","TRUE","","50647","123.3","21093","Hardin","{""21093"": ""100""}","Hardin","21093","FALSE","FALSE","America/New_York"
-"42712","37.56315","-86.15974","Big Clifty","KY","Kentucky","TRUE","","1737","12.8","21085","Grayson","{""21085"": ""69.49"", ""21093"": ""30.51""}","Grayson|Hardin","21085|21093","FALSE","FALSE","America/New_York"
-"42713","37.38324","-85.88309","Bonnieville","KY","Kentucky","TRUE","","1938","18.3","21099","Hart","{""21099"": ""100""}","Hart","21099","FALSE","FALSE","America/Chicago"
-"42715","36.95294","-85.39256","Breeding","KY","Kentucky","TRUE","","232","5.8","21001","Adair","{""21001"": ""100""}","Adair","21001","FALSE","FALSE","America/Chicago"
-"42716","37.47647","-85.60847","Buffalo","KY","Kentucky","TRUE","","1566","16.7","21123","Larue","{""21123"": ""89.06"", ""21087"": ""5.75"", ""21217"": ""5.18""}","Larue|Green|Taylor","21123|21087|21217","FALSE","FALSE","America/New_York"
-"42717","36.78188","-85.37894","Burkesville","KY","Kentucky","TRUE","","6611","8.5","21057","Cumberland","{""21057"": ""99.71"", ""21053"": ""0.29""}","Cumberland|Clinton","21057|21053","FALSE","FALSE","America/Chicago"
-"42718","37.38734","-85.3736","Campbellsville","KY","Kentucky","TRUE","","25709","39.3","21217","Taylor","{""21217"": ""94.11"", ""21155"": ""3.29"", ""21087"": ""2.32"", ""21123"": ""0.28""}","Taylor|Marion|Green|Larue","21217|21155|21087|21123","FALSE","FALSE","America/New_York"
-"42721","37.42146","-86.49685","Caneyville","KY","Kentucky","TRUE","","3495","9.3","21085","Grayson","{""21085"": ""93.67"", ""21031"": ""3.47"", ""21061"": ""2.86""}","Grayson|Butler|Edmonson","21085|21031|21061","FALSE","FALSE","America/Chicago"
-"42722","37.27541","-85.71688","Canmer","KY","Kentucky","TRUE","","531","11.8","21099","Hart","{""21099"": ""100""}","Hart","21099","FALSE","FALSE","America/Chicago"
-"42724","37.67304","-86.06463","Cecilia","KY","Kentucky","TRUE","","5153","25.8","21093","Hardin","{""21093"": ""100""}","Hardin","21093","FALSE","FALSE","America/New_York"
-"42726","37.42496","-86.14914","Clarkson","KY","Kentucky","TRUE","","4776","17.9","21085","Grayson","{""21085"": ""100""}","Grayson","21085","FALSE","FALSE","America/Chicago"
-"42728","37.11094","-85.28855","Columbia","KY","Kentucky","TRUE","","16656","20.1","21001","Adair","{""21001"": ""99.64"", ""21217"": ""0.36""}","Adair|Taylor","21001|21217","FALSE","FALSE","America/Chicago"
-"42729","37.29759","-86.09407","Cub Run","KY","Kentucky","TRUE","","1343","9.9","21099","Hart","{""21099"": ""78.05"", ""21061"": ""21.95""}","Hart|Edmonson","21099|21061","FALSE","FALSE","America/Chicago"
-"42732","37.60606","-86.11386","Eastview","KY","Kentucky","TRUE","","2452","16.3","21093","Hardin","{""21093"": ""100""}","Hardin","21093","FALSE","FALSE","America/New_York"
-"42733","37.34337","-85.17314","Elk Horn","KY","Kentucky","TRUE","","1252","8.3","21217","Taylor","{""21217"": ""80.12"", ""21045"": ""16.51"", ""21001"": ""3.37""}","Taylor|Casey|Adair","21217|21045|21001","FALSE","FALSE","America/New_York"
-"42740","37.59209","-85.94053","Glendale","KY","Kentucky","TRUE","","2069","25.2","21093","Hardin","{""21093"": ""100""}","Hardin","21093","FALSE","FALSE","America/New_York"
-"42741","36.99531","-85.24056","Glens Fork","KY","Kentucky","TRUE","","634","16.4","21001","Adair","{""21001"": ""100""}","Adair","21001","FALSE","FALSE","America/Chicago"
-"42743","37.22893","-85.53082","Greensburg","KY","Kentucky","TRUE","","8716","16.5","21087","Green","{""21087"": ""98.75"", ""21001"": ""1.25""}","Green|Adair","21087|21001","FALSE","FALSE","America/Chicago"
-"42746","37.21189","-85.7336","Hardyville","KY","Kentucky","TRUE","","2141","17.7","21099","Hart","{""21099"": ""84.36"", ""21087"": ""7.93"", ""21169"": ""7.72""}","Hart|Green|Metcalfe","21099|21087|21169","FALSE","FALSE","America/Chicago"
-"42748","37.57101","-85.70853","Hodgenville","KY","Kentucky","TRUE","","9031","26.5","21123","Larue","{""21123"": ""100""}","Larue","21123","FALSE","FALSE","America/New_York"
-"42749","37.18954","-85.88021","Horse Cave","KY","Kentucky","TRUE","","5568","23.5","21099","Hart","{""21099"": ""91.88"", ""21169"": ""5.4"", ""21009"": ""2.73""}","Hart|Metcalfe|Barren","21099|21169|21009","FALSE","FALSE","America/Chicago"
-"42753","37.22356","-85.18513","Knifley","KY","Kentucky","TRUE","","790","11.9","21001","Adair","{""21001"": ""100""}","Adair","21001","FALSE","FALSE","America/Chicago"
-"42754","37.47598","-86.31461","Leitchfield","KY","Kentucky","TRUE","","16225","33.3","21085","Grayson","{""21085"": ""93.16"", ""21027"": ""6.16"", ""21061"": ""0.68""}","Grayson|Breckinridge|Edmonson","21085|21027|21061","FALSE","FALSE","America/Chicago"
-"42757","37.40058","-85.72075","Magnolia","KY","Kentucky","TRUE","","2879","13.5","21099","Hart","{""21099"": ""45.39"", ""21123"": ""42.94"", ""21087"": ""11.67""}","Hart|Larue|Green","21099|21123|21087","FALSE","FALSE","America/Chicago"
-"42758","37.37623","-85.1991","Mannsville","KY","Kentucky","TRUE","","96","69.2","21217","Taylor","{""21217"": ""100""}","Taylor","21217","FALSE","FALSE","America/New_York"
-"42762","37.45259","-86.39606","Millwood","KY","Kentucky","TRUE","","152","6.3","21085","Grayson","{""21085"": ""100""}","Grayson","21085","FALSE","FALSE","America/Chicago"
-"42764","37.426","-85.61914","Mount Sherman","KY","Kentucky","TRUE","","605","14.9","21087","Green","{""21087"": ""60.29"", ""21123"": ""39.71""}","Green|Larue","21087|21123","FALSE","FALSE","America/Chicago"
-"42765","37.314","-85.92166","Munfordville","KY","Kentucky","TRUE","","6192","20.3","21099","Hart","{""21099"": ""100""}","Hart","21099","FALSE","FALSE","America/Chicago"
-"42776","37.51361","-85.91646","Sonora","KY","Kentucky","TRUE","","2503","14.3","21093","Hardin","{""21093"": ""72.08"", ""21123"": ""27.92""}","Hardin|Larue","21093|21123","FALSE","FALSE","America/New_York"
-"42782","37.34402","-85.63159","Summersville","KY","Kentucky","TRUE","","968","10.5","21087","Green","{""21087"": ""91.82"", ""21099"": ""8.18""}","Green|Hart","21087|21099","FALSE","FALSE","America/Chicago"
-"42784","37.45122","-85.92067","Upton","KY","Kentucky","TRUE","","2208","14.3","21093","Hardin","{""21093"": ""41.27"", ""21123"": ""31.96"", ""21099"": ""26.78""}","Hardin|Larue|Hart","21093|21123|21099","FALSE","FALSE","America/Chicago"
-"42788","37.52882","-86.03469","White Mills","KY","Kentucky","TRUE","","333","15.5","21093","Hardin","{""21093"": ""100""}","Hardin","21093","FALSE","FALSE","America/New_York"
-"43001","40.08865","-82.61366","Alexandria","OH","Ohio","TRUE","","2570","37.4","39089","Licking","{""39089"": ""100""}","Licking","39089","FALSE","FALSE","America/New_York"
-"43002","40.06333","-83.1739","Amlin","OH","Ohio","TRUE","","4303","1659.6","39049","Franklin","{""39049"": ""100""}","Franklin","39049","FALSE","FALSE","America/New_York"
-"43003","40.41034","-82.97538","Ashley","OH","Ohio","TRUE","","2922","33.3","39041","Delaware","{""39041"": ""74.7"", ""39117"": ""25.3""}","Delaware|Morrow","39041|39117","FALSE","FALSE","America/New_York"
-"43004","40.01581","-82.80012","Blacklick","OH","Ohio","TRUE","","27227","812.5","39049","Franklin","{""39049"": ""100""}","Franklin","39049","FALSE","FALSE","America/New_York"
-"43005","40.28618","-82.27706","Bladensburg","OH","Ohio","TRUE","","177","82.1","39083","Knox","{""39083"": ""100""}","Knox","39083","FALSE","FALSE","America/New_York"
-"43006","40.45874","-82.14575","Brinkhaven","OH","Ohio","TRUE","","537","8.7","39075","Holmes","{""39075"": ""44.65"", ""39031"": ""31.39"", ""39083"": ""23.97""}","Holmes|Coshocton|Knox","39075|39031|39083","FALSE","FALSE","America/New_York"
-"43008","39.93381","-82.48137","Buckeye Lake","OH","Ohio","TRUE","","2640","684.0","39089","Licking","{""39089"": ""100""}","Licking","39089","FALSE","FALSE","America/New_York"
-"43009","40.17253","-83.64152","Cable","OH","Ohio","TRUE","","2614","29.3","39021","Champaign","{""39021"": ""100""}","Champaign","39021","FALSE","FALSE","America/New_York"
-"43010","39.99965","-83.62186","Catawba","OH","Ohio","TRUE","","242","404.9","39023","Clark","{""39023"": ""100""}","Clark","39023","FALSE","FALSE","America/New_York"
-"43011","40.31046","-82.68616","Centerburg","OH","Ohio","TRUE","","8018","37.5","39083","Knox","{""39083"": ""68.36"", ""39117"": ""13.43"", ""39089"": ""9.73"", ""39041"": ""8.48""}","Knox|Morrow|Licking|Delaware","39083|39117|39089|39041","FALSE","FALSE","America/New_York"
-"43013","40.2322","-82.68766","Croton","OH","Ohio","TRUE","","778","15.6","39089","Licking","{""39089"": ""100""}","Licking","39089","FALSE","FALSE","America/New_York"
-"43014","40.47131","-82.2564","Danville","OH","Ohio","TRUE","","3733","21.9","39083","Knox","{""39083"": ""100""}","Knox","39083","FALSE","FALSE","America/New_York"
-"43015","40.2968","-83.06065","Delaware","OH","Ohio","TRUE","","56596","174.9","39041","Delaware","{""39041"": ""99.85"", ""39159"": ""0.15""}","Delaware|Union","39041|39159","FALSE","FALSE","America/New_York"
-"43016","40.09861","-83.15376","Dublin","OH","Ohio","TRUE","","36886","786.2","39049","Franklin","{""39049"": ""92.2"", ""39159"": ""7.15"", ""39041"": ""0.65""}","Franklin|Union|Delaware","39049|39159|39041","FALSE","FALSE","America/New_York"
-"43017","40.11682","-83.1301","Dublin","OH","Ohio","TRUE","","41612","952.7","39049","Franklin","{""39049"": ""82.42"", ""39041"": ""15.81"", ""39159"": ""1.76""}","Franklin|Delaware|Union","39049|39041|39159","FALSE","FALSE","America/New_York"
-"43019","40.49344","-82.57643","Fredericktown","OH","Ohio","TRUE","","8786","32.1","39083","Knox","{""39083"": ""78.61"", ""39117"": ""20.47"", ""39139"": ""0.92""}","Knox|Morrow|Richland","39083|39117|39139","FALSE","FALSE","America/New_York"
-"43021","40.20095","-82.88428","Galena","OH","Ohio","TRUE","","12708","137.7","39041","Delaware","{""39041"": ""100""}","Delaware","39041","FALSE","FALSE","America/New_York"
-"43022","40.33833","-82.33968","Gambier","OH","Ohio","TRUE","","4353","40.6","39083","Knox","{""39083"": ""100""}","Knox","39083","FALSE","FALSE","America/New_York"
-"43023","40.07526","-82.53181","Granville","OH","Ohio","TRUE","","14326","106.7","39089","Licking","{""39089"": ""100""}","Licking","39089","FALSE","FALSE","America/New_York"
-"43025","39.96634","-82.51676","Hebron","OH","Ohio","TRUE","","5092","56.2","39089","Licking","{""39089"": ""100""}","Licking","39089","FALSE","FALSE","America/New_York"
-"43026","40.02276","-83.1855","Hilliard","OH","Ohio","TRUE","","63047","694.1","39049","Franklin","{""39049"": ""99.97"", ""39097"": ""0.03""}","Franklin|Madison","39049|39097","FALSE","FALSE","America/New_York"
-"43028","40.40033","-82.29352","Howard","OH","Ohio","TRUE","","8204","59.2","39083","Knox","{""39083"": ""100""}","Knox","39083","FALSE","FALSE","America/New_York"
-"43029","40.09509","-83.45856","Irwin","OH","Ohio","TRUE","","420","6.9","39097","Madison","{""39097"": ""72.74"", ""39159"": ""27.26""}","Madison|Union","39097|39159","FALSE","FALSE","America/New_York"
-"43030","39.9615","-82.41584","Jacksontown","OH","Ohio","TRUE","","108","453.9","39089","Licking","{""39089"": ""100""}","Licking","39089","FALSE","FALSE","America/New_York"
-"43031","40.16102","-82.66624","Johnstown","OH","Ohio","TRUE","","13737","59.6","39089","Licking","{""39089"": ""96.9"", ""39041"": ""3.1""}","Licking|Delaware","39089|39041","FALSE","FALSE","America/New_York"
-"43032","40.32822","-82.95917","Kilbourne","OH","Ohio","TRUE","","19","150.2","39041","Delaware","{""39041"": ""100""}","Delaware","39041","FALSE","FALSE","America/New_York"
-"43033","39.96093","-82.60006","Kirkersville","OH","Ohio","TRUE","","300","260.3","39089","Licking","{""39089"": ""100""}","Licking","39089","FALSE","FALSE","America/New_York"
-"43035","40.18911","-82.99512","Lewis Center","OH","Ohio","TRUE","","27500","542.2","39041","Delaware","{""39041"": ""100""}","Delaware","39041","FALSE","FALSE","America/New_York"
-"43036","40.35232","-83.26215","Magnetic Springs","OH","Ohio","TRUE","","329","595.3","39159","Union","{""39159"": ""100""}","Union","39159","FALSE","FALSE","America/New_York"
-"43037","40.27801","-82.3258","Martinsburg","OH","Ohio","TRUE","","271","22.6","39083","Knox","{""39083"": ""100""}","Knox","39083","FALSE","FALSE","America/New_York"
-"43040","40.26095","-83.35954","Marysville","OH","Ohio","TRUE","","35087","81.0","39159","Union","{""39159"": ""99.81"", ""39041"": ""0.19""}","Union|Delaware","39159|39041","FALSE","FALSE","America/New_York"
-"43044","40.05024","-83.56425","Mechanicsburg","OH","Ohio","TRUE","","4930","24.2","39021","Champaign","{""39021"": ""84.84"", ""39023"": ""12.79"", ""39097"": ""2.37""}","Champaign|Clark|Madison","39021|39023|39097","FALSE","FALSE","America/New_York"
-"43045","40.16987","-83.4486","Milford Center","OH","Ohio","TRUE","","2342","23.9","39159","Union","{""39159"": ""98.98"", ""39021"": ""1.02""}","Union|Champaign","39159|39021","FALSE","FALSE","America/New_York"
-"43046","39.89864","-82.54118","Millersport","OH","Ohio","TRUE","","3684","56.0","39045","Fairfield","{""39045"": ""89.28"", ""39089"": ""10.72""}","Fairfield|Licking","39045|39089","FALSE","FALSE","America/New_York"
-"43050","40.37231","-82.49559","Mount Vernon","OH","Ohio","TRUE","","29264","72.5","39083","Knox","{""39083"": ""99.61"", ""39117"": ""0.39""}","Knox|Morrow","39083|39117","FALSE","FALSE","America/New_York"
-"43054","40.08085","-82.80342","New Albany","OH","Ohio","TRUE","","27441","529.0","39049","Franklin","{""39049"": ""100""}","Franklin","39049","FALSE","FALSE","America/New_York"
-"43055","40.11783","-82.37652","Newark","OH","Ohio","TRUE","","62666","214.4","39089","Licking","{""39089"": ""100""}","Licking","39089","FALSE","FALSE","America/New_York"
-"43056","40.01136","-82.33505","Heath","OH","Ohio","TRUE","","18753","84.3","39089","Licking","{""39089"": ""100""}","Licking","39089","FALSE","FALSE","America/New_York"
-"43060","40.21996","-83.57248","North Lewisburg","OH","Ohio","TRUE","","2810","42.3","39021","Champaign","{""39021"": ""88.06"", ""39091"": ""9.56"", ""39159"": ""2.38""}","Champaign|Logan|Union","39021|39091|39159","FALSE","FALSE","America/New_York"
-"43061","40.28661","-83.20324","Ostrander","OH","Ohio","TRUE","","4603","39.3","39041","Delaware","{""39041"": ""82.35"", ""39159"": ""17.65""}","Delaware|Union","39041|39159","FALSE","FALSE","America/New_York"
-"43062","40.00752","-82.68279","Pataskala","OH","Ohio","TRUE","","29241","143.2","39089","Licking","{""39089"": ""99.35"", ""39045"": ""0.65""}","Licking|Fairfield","39089|39045","FALSE","FALSE","America/New_York"
-"43064","40.09804","-83.28777","Plain City","OH","Ohio","TRUE","","13727","51.5","39097","Madison","{""39097"": ""55.23"", ""39159"": ""44.7"", ""39049"": ""0.07""}","Madison|Union|Franklin","39097|39159|39049","FALSE","FALSE","America/New_York"
-"43065","40.17762","-83.09366","Powell","OH","Ohio","TRUE","","43034","575.5","39041","Delaware","{""39041"": ""81.8"", ""39049"": ""18.2""}","Delaware|Franklin","39041|39049","FALSE","FALSE","America/New_York"
-"43066","40.3977","-83.16451","Radnor","OH","Ohio","TRUE","","1202","12.1","39041","Delaware","{""39041"": ""100""}","Delaware","39041","FALSE","FALSE","America/New_York"
-"43067","40.34577","-83.47083","Raymond","OH","Ohio","TRUE","","1209","14.9","39159","Union","{""39159"": ""100""}","Union","39159","FALSE","FALSE","America/New_York"
-"43068","39.95635","-82.78506","Reynoldsburg","OH","Ohio","TRUE","","54804","1093.6","39049","Franklin","{""39049"": ""64.36"", ""39089"": ""22.12"", ""39045"": ""13.52""}","Franklin|Licking|Fairfield","39049|39089|39045","FALSE","FALSE","America/New_York"
-"43070","40.21577","-83.95792","Rosewood","OH","Ohio","TRUE","","177","447.6","39021","Champaign","{""39021"": ""100""}","Champaign","39021","FALSE","FALSE","America/New_York"
-"43071","40.18424","-82.35821","Saint Louisville","OH","Ohio","TRUE","","2070","23.5","39089","Licking","{""39089"": ""100""}","Licking","39089","FALSE","FALSE","America/New_York"
-"43072","40.11638","-83.95628","Saint Paris","OH","Ohio","TRUE","","5704","29.9","39021","Champaign","{""39021"": ""100""}","Champaign","39021","FALSE","FALSE","America/New_York"
-"43074","40.27834","-82.84958","Sunbury","OH","Ohio","TRUE","","13980","62.3","39041","Delaware","{""39041"": ""98.93"", ""39089"": ""1.07""}","Delaware|Licking","39041|39089","FALSE","FALSE","America/New_York"
-"43076","39.89645","-82.39754","Thornville","OH","Ohio","TRUE","","8664","46.7","39127","Perry","{""39127"": ""50.03"", ""39089"": ""29.09"", ""39045"": ""20.88""}","Perry|Licking|Fairfield","39127|39089|39045","FALSE","FALSE","America/New_York"
-"43077","40.13664","-83.34074","Unionville Center","OH","Ohio","TRUE","","243","490.6","39159","Union","{""39159"": ""100""}","Union","39159","FALSE","FALSE","America/New_York"
-"43078","40.11282","-83.7764","Urbana","OH","Ohio","TRUE","","20347","51.6","39021","Champaign","{""39021"": ""99.75"", ""39023"": ""0.25""}","Champaign|Clark","39021|39023","FALSE","FALSE","America/New_York"
-"43080","40.24273","-82.42906","Utica","OH","Ohio","TRUE","","5316","27.8","39089","Licking","{""39089"": ""73.74"", ""39083"": ""26.26""}","Licking|Knox","39089|39083","FALSE","FALSE","America/New_York"
-"43081","40.11064","-82.89134","Westerville","OH","Ohio","TRUE","","63604","995.4","39049","Franklin","{""39049"": ""100""}","Franklin","39049","FALSE","FALSE","America/New_York"
-"43082","40.15243","-82.88199","Westerville","OH","Ohio","TRUE","","33961","592.8","39041","Delaware","{""39041"": ""100""}","Delaware","39041","FALSE","FALSE","America/New_York"
-"43084","40.15683","-83.54083","Woodstock","OH","Ohio","TRUE","","748","13.4","39021","Champaign","{""39021"": ""98.45"", ""39159"": ""1.55""}","Champaign|Union","39021|39159","FALSE","FALSE","America/New_York"
-"43085","40.09986","-83.01569","Columbus","OH","Ohio","TRUE","","26155","1370.7","39049","Franklin","{""39049"": ""100""}","Franklin","39049","FALSE","FALSE","America/New_York"
-"43101","39.46464","-82.74563","Adelphi","OH","Ohio","TRUE","","329","464.7","39141","Ross","{""39141"": ""100""}","Ross","39141","FALSE","FALSE","America/New_York"
-"43102","39.63957","-82.763","Amanda","OH","Ohio","TRUE","","4480","29.1","39045","Fairfield","{""39045"": ""92.22"", ""39073"": ""5.34"", ""39129"": ""2.44""}","Fairfield|Hocking|Pickaway","39045|39073|39129","FALSE","FALSE","America/New_York"
-"43103","39.7257","-82.93543","Ashville","OH","Ohio","TRUE","","11218","51.9","39129","Pickaway","{""39129"": ""100""}","Pickaway","39129","FALSE","FALSE","America/New_York"
-"43105","39.86357","-82.61664","Baltimore","OH","Ohio","TRUE","","7895","53.2","39045","Fairfield","{""39045"": ""100""}","Fairfield","39045","FALSE","FALSE","America/New_York"
-"43106","39.64231","-83.42115","Bloomingburg","OH","Ohio","TRUE","","1550","15.1","39047","Fayette","{""39047"": ""100""}","Fayette","39047","FALSE","FALSE","America/New_York"
-"43107","39.69084","-82.40959","Bremen","OH","Ohio","TRUE","","3323","42.8","39045","Fairfield","{""39045"": ""95.31"", ""39073"": ""2.73"", ""39127"": ""1.97""}","Fairfield|Hocking|Perry","39045|39073|39127","FALSE","FALSE","America/New_York"
-"43109","39.91257","-82.8337","Brice","OH","Ohio","TRUE","","77","190.0","39049","Franklin","{""39049"": ""100""}","Franklin","39049","FALSE","FALSE","America/New_York"
-"43110","39.82635","-82.79947","Canal Winchester","OH","Ohio","TRUE","","39220","301.5","39049","Franklin","{""39049"": ""78.17"", ""39045"": ""21.71"", ""39129"": ""0.12""}","Franklin|Fairfield|Pickaway","39049|39045|39129","FALSE","FALSE","America/New_York"
-"43111","39.50207","-82.24238","Carbon Hill","OH","Ohio","TRUE","","291","279.4","39073","Hocking","{""39073"": ""100""}","Hocking","39073","FALSE","FALSE","America/New_York"
-"43112","39.79671","-82.70358","Carroll","OH","Ohio","TRUE","","5357","59.3","39045","Fairfield","{""39045"": ""100""}","Fairfield","39045","FALSE","FALSE","America/New_York"
-"43113","39.59091","-82.96316","Circleville","OH","Ohio","TRUE","","24526","57.6","39129","Pickaway","{""39129"": ""99.59"", ""39045"": ""0.41""}","Pickaway|Fairfield","39129|39045","FALSE","FALSE","America/New_York"
-"43115","39.49147","-83.16271","Clarksburg","OH","Ohio","TRUE","","1587","12.8","39141","Ross","{""39141"": ""88.72"", ""39129"": ""11.28""}","Ross|Pickaway","39141|39129","FALSE","FALSE","America/New_York"
-"43116","39.77156","-83.06145","Commercial Point","OH","Ohio","TRUE","","1863","765.3","39129","Pickaway","{""39129"": ""100""}","Pickaway","39129","FALSE","FALSE","America/New_York"
-"43117","39.76879","-83.20612","Derby","OH","Ohio","TRUE","","187","3662.3","39129","Pickaway","{""39129"": ""100""}","Pickaway","39129","FALSE","FALSE","America/New_York"
-"43119","39.93574","-83.20074","Galloway","OH","Ohio","TRUE","","27568","334.7","39049","Franklin","{""39049"": ""97.86"", ""39097"": ""2.14""}","Franklin|Madison","39049|39097","FALSE","FALSE","America/New_York"
-"43123","39.86855","-83.11985","Grove City","OH","Ohio","TRUE","","65577","425.2","39049","Franklin","{""39049"": ""100""}","Franklin","39049","FALSE","FALSE","America/New_York"
-"43125","39.83664","-82.88449","Groveport","OH","Ohio","TRUE","","13350","164.2","39049","Franklin","{""39049"": ""98.86"", ""39129"": ""1.14""}","Franklin|Pickaway","39049|39129","FALSE","FALSE","America/New_York"
-"43126","39.81391","-83.16648","Harrisburg","OH","Ohio","TRUE","","519","434.8","39049","Franklin","{""39049"": ""100""}","Franklin","39049","FALSE","FALSE","America/New_York"
-"43127","39.48052","-82.32422","Haydenville","OH","Ohio","TRUE","","302","201.4","39073","Hocking","{""39073"": ""100""}","Hocking","39073","FALSE","FALSE","America/New_York"
-"43128","39.66406","-83.57754","Jeffersonville","OH","Ohio","TRUE","","2519","20.4","39047","Fayette","{""39047"": ""100""}","Fayette","39047","FALSE","FALSE","America/New_York"
-"43130","39.69883","-82.6105","Lancaster","OH","Ohio","TRUE","","61565","146.8","39045","Fairfield","{""39045"": ""100""}","Fairfield","39045","FALSE","FALSE","America/New_York"
-"43135","39.46644","-82.69757","Laurelville","OH","Ohio","TRUE","","3942","16.0","39073","Hocking","{""39073"": ""70.44"", ""39129"": ""14.06"", ""39141"": ""13.25"", ""39163"": ""2.25""}","Hocking|Pickaway|Ross|Vinton","39073|39129|39141|39163","FALSE","FALSE","America/New_York"
-"43136","39.80136","-82.81252","Lithopolis","OH","Ohio","TRUE","","864","1201.5","39045","Fairfield","{""39045"": ""100""}","Fairfield","39045","FALSE","FALSE","America/New_York"
-"43137","39.80819","-82.98549","Lockbourne","OH","Ohio","TRUE","","2387","30.6","39129","Pickaway","{""39129"": ""57.45"", ""39049"": ""42.55""}","Pickaway|Franklin","39129|39049","FALSE","FALSE","America/New_York"
-"43138","39.52202","-82.41098","Logan","OH","Ohio","TRUE","","17986","39.4","39073","Hocking","{""39073"": ""97.42"", ""39127"": ""2.26"", ""39163"": ""0.32""}","Hocking|Perry|Vinton","39073|39127|39163","FALSE","FALSE","America/New_York"
-"43140","39.88299","-83.42997","London","OH","Ohio","TRUE","","24467","42.5","39097","Madison","{""39097"": ""98.28"", ""39049"": ""1.49"", ""39023"": ""0.22""}","Madison|Franklin|Clark","39097|39049|39023","FALSE","FALSE","America/New_York"
-"43142","39.5934","-83.58742","Milledgeville","OH","Ohio","TRUE","","108","593.3","39047","Fayette","{""39047"": ""100""}","Fayette","39047","FALSE","FALSE","America/New_York"
-"43143","39.71673","-83.29396","Mount Sterling","OH","Ohio","TRUE","","5660","16.4","39097","Madison","{""39097"": ""61.54"", ""39129"": ""25.9"", ""39047"": ""12.56""}","Madison|Pickaway|Fayette","39097|39129|39047","FALSE","FALSE","America/New_York"
-"43144","39.52851","-82.19212","Murray City","OH","Ohio","TRUE","","361","19.8","39073","Hocking","{""39073"": ""100""}","Hocking","39073","FALSE","FALSE","America/New_York"
-"43145","39.56536","-83.25846","New Holland","OH","Ohio","TRUE","","2138","15.3","39129","Pickaway","{""39129"": ""63.66"", ""39047"": ""36.34""}","Pickaway|Fayette","39129|39047","FALSE","FALSE","America/New_York"
-"43146","39.77435","-83.14167","Orient","OH","Ohio","TRUE","","12683","61.3","39129","Pickaway","{""39129"": ""84.47"", ""39049"": ""15.28"", ""39097"": ""0.25""}","Pickaway|Franklin|Madison","39129|39049|39097","FALSE","FALSE","America/New_York"
-"43147","39.89927","-82.74211","Pickerington","OH","Ohio","TRUE","","41530","550.2","39045","Fairfield","{""39045"": ""99.53"", ""39089"": ""0.41"", ""39049"": ""0.06""}","Fairfield|Licking|Franklin","39045|39089|39049","FALSE","FALSE","America/New_York"
-"43148","39.81669","-82.4995","Pleasantville","OH","Ohio","TRUE","","2359","36.7","39045","Fairfield","{""39045"": ""95.41"", ""39127"": ""4.59""}","Fairfield|Perry","39045|39127","FALSE","FALSE","America/New_York"
-"43149","39.53834","-82.57212","Rockbridge","OH","Ohio","TRUE","","2293","16.2","39073","Hocking","{""39073"": ""100""}","Hocking","39073","FALSE","FALSE","America/New_York"
-"43150","39.77327","-82.40933","Rushville","OH","Ohio","TRUE","","2164","31.5","39045","Fairfield","{""39045"": ""67.97"", ""39127"": ""32.03""}","Fairfield|Perry","39045|39127","FALSE","FALSE","America/New_York"
-"43151","39.73291","-83.47637","Sedalia","OH","Ohio","TRUE","","382","507.3","39097","Madison","{""39097"": ""100""}","Madison","39097","FALSE","FALSE","America/New_York"
-"43152","39.39444","-82.61485","South Bloomingville","OH","Ohio","TRUE","","782","6.9","39073","Hocking","{""39073"": ""91.53"", ""39163"": ""8.47""}","Hocking|Vinton","39073|39163","FALSE","FALSE","America/New_York"
-"43153","39.73971","-83.57006","South Solon","OH","Ohio","TRUE","","842","6.2","39097","Madison","{""39097"": ""83.32"", ""39023"": ""9.89"", ""39047"": ""5.15"", ""39057"": ""1.65""}","Madison|Clark|Fayette|Greene","39097|39023|39047|39057","FALSE","FALSE","America/New_York"
-"43154","39.60079","-82.82877","Stoutsville","OH","Ohio","TRUE","","3858","60.1","39045","Fairfield","{""39045"": ""72.79"", ""39129"": ""27.21""}","Fairfield|Pickaway","39045|39129","FALSE","FALSE","America/New_York"
-"43155","39.62612","-82.5249","Sugar Grove","OH","Ohio","TRUE","","2672","34.1","39045","Fairfield","{""39045"": ""65.75"", ""39073"": ""34.25""}","Fairfield|Hocking","39045|39073","FALSE","FALSE","America/New_York"
-"43156","39.55382","-82.77628","Tarlton","OH","Ohio","TRUE","","177","225.9","39129","Pickaway","{""39129"": ""100""}","Pickaway","39129","FALSE","FALSE","America/New_York"
-"43157","39.84266","-82.54613","Thurston","OH","Ohio","TRUE","","630","705.3","39045","Fairfield","{""39045"": ""100""}","Fairfield","39045","FALSE","FALSE","America/New_York"
-"43158","39.44918","-82.35762","Union Furnace","OH","Ohio","TRUE","","346","65.5","39073","Hocking","{""39073"": ""100""}","Hocking","39073","FALSE","FALSE","America/New_York"
-"43160","39.52651","-83.44268","Washington Court House","OH","Ohio","TRUE","","21802","39.1","39047","Fayette","{""39047"": ""99.26"", ""39141"": ""0.74""}","Fayette|Ross","39047|39141","FALSE","FALSE","America/New_York"
-"43162","39.94338","-83.30453","West Jefferson","OH","Ohio","TRUE","","7225","59.7","39097","Madison","{""39097"": ""100""}","Madison","39097","FALSE","FALSE","America/New_York"
-"43164","39.58555","-83.11846","Williamsport","OH","Ohio","TRUE","","2371","16.2","39129","Pickaway","{""39129"": ""96.64"", ""39141"": ""3.36""}","Pickaway|Ross","39129|39141","FALSE","FALSE","America/New_York"
-"43201","39.99131","-83.00039","Columbus","OH","Ohio","TRUE","","34232","4286.0","39049","Franklin","{""39049"": ""100""}","Franklin","39049","FALSE","FALSE","America/New_York"
-"43202","40.02144","-83.01416","Columbus","OH","Ohio","TRUE","","20528","3160.7","39049","Franklin","{""39049"": ""100""}","Franklin","39049","FALSE","FALSE","America/New_York"
-"43203","39.9731","-82.96898","Columbus","OH","Ohio","TRUE","","8014","2092.9","39049","Franklin","{""39049"": ""100""}","Franklin","39049","FALSE","FALSE","America/New_York"
-"43204","39.96136","-83.0816","Columbus","OH","Ohio","TRUE","","42796","1837.5","39049","Franklin","{""39049"": ""100""}","Franklin","39049","FALSE","FALSE","America/New_York"
-"43205","39.95766","-82.96219","Columbus","OH","Ohio","TRUE","","12739","2072.5","39049","Franklin","{""39049"": ""100""}","Franklin","39049","FALSE","FALSE","America/New_York"
-"43206","39.94222","-82.97372","Columbus","OH","Ohio","TRUE","","22680","2918.5","39049","Franklin","{""39049"": ""100""}","Franklin","39049","FALSE","FALSE","America/New_York"
-"43207","39.89583","-82.9629","Columbus","OH","Ohio","TRUE","","46717","774.5","39049","Franklin","{""39049"": ""100""}","Franklin","39049","FALSE","FALSE","America/New_York"
-"43209","39.9539","-82.93011","Columbus","OH","Ohio","TRUE","","28541","1766.5","39049","Franklin","{""39049"": ""100""}","Franklin","39049","FALSE","FALSE","America/New_York"
-"43210","40.00521","-83.02265","Columbus","OH","Ohio","TRUE","","12470","3088.9","39049","Franklin","{""39049"": ""100""}","Franklin","39049","FALSE","FALSE","America/New_York"
-"43211","40.01175","-82.97234","Columbus","OH","Ohio","TRUE","","23162","1896.3","39049","Franklin","{""39049"": ""100""}","Franklin","39049","FALSE","FALSE","America/New_York"
-"43212","39.98705","-83.04167","Columbus","OH","Ohio","TRUE","","21959","2362.2","39049","Franklin","{""39049"": ""100""}","Franklin","39049","FALSE","FALSE","America/New_York"
-"43213","39.96894","-82.8675","Columbus","OH","Ohio","TRUE","","33130","1418.2","39049","Franklin","{""39049"": ""100""}","Franklin","39049","FALSE","FALSE","America/New_York"
-"43214","40.05214","-83.01973","Columbus","OH","Ohio","TRUE","","26293","1507.0","39049","Franklin","{""39049"": ""100""}","Franklin","39049","FALSE","FALSE","America/New_York"
-"43215","39.96635","-83.01282","Columbus","OH","Ohio","TRUE","","15291","1154.9","39049","Franklin","{""39049"": ""100""}","Franklin","39049","FALSE","FALSE","America/New_York"
-"43217","39.81677","-82.93188","Columbus","OH","Ohio","TRUE","","2207","206.5","39049","Franklin","{""39049"": ""100""}","Franklin","39049","FALSE","FALSE","America/New_York"
-"43219","40.0065","-82.92123","Columbus","OH","Ohio","TRUE","","31078","713.1","39049","Franklin","{""39049"": ""100""}","Franklin","39049","FALSE","FALSE","America/New_York"
-"43220","40.04789","-83.07127","Columbus","OH","Ohio","TRUE","","27412","1556.2","39049","Franklin","{""39049"": ""100""}","Franklin","39049","FALSE","FALSE","America/New_York"
-"43221","40.02259","-83.07756","Columbus","OH","Ohio","TRUE","","33442","1384.2","39049","Franklin","{""39049"": ""100""}","Franklin","39049","FALSE","FALSE","America/New_York"
-"43222","39.9612","-83.03526","Columbus","OH","Ohio","TRUE","","4417","1215.6","39049","Franklin","{""39049"": ""100""}","Franklin","39049","FALSE","FALSE","America/New_York"
-"43223","39.92831","-83.03511","Columbus","OH","Ohio","TRUE","","26754","1024.4","39049","Franklin","{""39049"": ""100""}","Franklin","39049","FALSE","FALSE","America/New_York"
-"43224","40.04284","-82.96625","Columbus","OH","Ohio","TRUE","","44624","2059.3","39049","Franklin","{""39049"": ""100""}","Franklin","39049","FALSE","FALSE","America/New_York"
-"43227","39.94485","-82.88937","Columbus","OH","Ohio","TRUE","","24518","2380.2","39049","Franklin","{""39049"": ""100""}","Franklin","39049","FALSE","FALSE","America/New_York"
-"43228","39.96479","-83.126","Columbus","OH","Ohio","TRUE","","56139","1070.7","39049","Franklin","{""39049"": ""100""}","Franklin","39049","FALSE","FALSE","America/New_York"
-"43229","40.08586","-82.97601","Columbus","OH","Ohio","TRUE","","54632","2393.3","39049","Franklin","{""39049"": ""100""}","Franklin","39049","FALSE","FALSE","America/New_York"
-"43230","40.03563","-82.86985","Columbus","OH","Ohio","TRUE","","59111","1090.2","39049","Franklin","{""39049"": ""100""}","Franklin","39049","FALSE","FALSE","America/New_York"
-"43231","40.07927","-82.93894","Columbus","OH","Ohio","TRUE","","22393","2013.3","39049","Franklin","{""39049"": ""100""}","Franklin","39049","FALSE","FALSE","America/New_York"
-"43232","39.92216","-82.87022","Columbus","OH","Ohio","TRUE","","47235","1486.6","39049","Franklin","{""39049"": ""100""}","Franklin","39049","FALSE","FALSE","America/New_York"
-"43235","40.10264","-83.0524","Columbus","OH","Ohio","TRUE","","43356","1240.6","39049","Franklin","{""39049"": ""100""}","Franklin","39049","FALSE","FALSE","America/New_York"
-"43240","40.14545","-82.98172","Columbus","OH","Ohio","TRUE","","4411","679.0","39041","Delaware","{""39041"": ""100""}","Delaware","39041","FALSE","FALSE","America/New_York"
-"43302","40.5997","-83.1296","Marion","OH","Ohio","TRUE","","54650","108.1","39101","Marion","{""39101"": ""99.66"", ""39033"": ""0.3"", ""39159"": ""0.04""}","Marion|Crawford|Union","39101|39033|39159","FALSE","FALSE","America/New_York"
-"43310","40.53492","-83.78126","Belle Center","OH","Ohio","TRUE","","2811","16.9","39091","Logan","{""39091"": ""73.13"", ""39065"": ""26.87""}","Logan|Hardin","39091|39065","FALSE","FALSE","America/New_York"
-"43311","40.36589","-83.75618","Bellefontaine","OH","Ohio","TRUE","","18919","71.9","39091","Logan","{""39091"": ""100""}","Logan","39091","FALSE","FALSE","America/New_York"
-"43314","40.64914","-82.95943","Caledonia","OH","Ohio","TRUE","","3032","21.0","39101","Marion","{""39101"": ""90.8"", ""39117"": ""6.65"", ""39033"": ""2.55""}","Marion|Morrow|Crawford","39101|39117|39033","FALSE","FALSE","America/New_York"
-"43315","40.48322","-82.87768","Cardington","OH","Ohio","TRUE","","7668","36.5","39117","Morrow","{""39117"": ""95.5"", ""39101"": ""4.5""}","Morrow|Marion","39117|39101","FALSE","FALSE","America/New_York"
-"43316","40.95416","-83.3808","Carey","OH","Ohio","TRUE","","5856","31.4","39175","Wyandot","{""39175"": ""91.52"", ""39147"": ""8.09"", ""39063"": ""0.38""}","Wyandot|Seneca|Hancock","39175|39147|39063","FALSE","FALSE","America/New_York"
-"43317","40.47724","-82.68181","Chesterville","OH","Ohio","TRUE","","180","345.1","39117","Morrow","{""39117"": ""100""}","Morrow","39117","FALSE","FALSE","America/New_York"
-"43318","40.30922","-83.91275","De Graff","OH","Ohio","TRUE","","3738","21.2","39091","Logan","{""39091"": ""80.72"", ""39021"": ""19.28""}","Logan|Champaign","39091|39021","FALSE","FALSE","America/New_York"
-"43319","40.30649","-83.57216","East Liberty","OH","Ohio","TRUE","","943","17.4","39091","Logan","{""39091"": ""99.81"", ""39159"": ""0.19""}","Logan|Union","39091|39159","FALSE","FALSE","America/New_York"
-"43320","40.58855","-82.89804","Edison","OH","Ohio","TRUE","","1302","15.2","39117","Morrow","{""39117"": ""100""}","Morrow","39117","FALSE","FALSE","America/New_York"
-"43321","40.45733","-82.8298","Fulton","OH","Ohio","TRUE","","302","163.5","39117","Morrow","{""39117"": ""100""}","Morrow","39117","FALSE","FALSE","America/New_York"
-"43322","40.53226","-83.20788","Green Camp","OH","Ohio","TRUE","","336","399.1","39101","Marion","{""39101"": ""100""}","Marion","39101","FALSE","FALSE","America/New_York"
-"43323","40.73156","-83.25004","Harpster","OH","Ohio","TRUE","","699","7.3","39175","Wyandot","{""39175"": ""100""}","Wyandot","39175","FALSE","FALSE","America/New_York"
-"43324","40.44635","-83.8106","Huntsville","OH","Ohio","TRUE","","3007","40.8","39091","Logan","{""39091"": ""100""}","Logan","39091","FALSE","FALSE","America/New_York"
-"43326","40.63931","-83.61507","Kenton","OH","Ohio","TRUE","","13833","29.0","39065","Hardin","{""39065"": ""100""}","Hardin","39065","FALSE","FALSE","America/New_York"
-"43330","40.81377","-83.41937","Kirby","OH","Ohio","TRUE","","96","344.0","39175","Wyandot","{""39175"": ""100""}","Wyandot","39175","FALSE","FALSE","America/New_York"
-"43331","40.51767","-83.91905","Lakeview","OH","Ohio","TRUE","","4446","55.3","39091","Logan","{""39091"": ""95.52"", ""39011"": ""3.95"", ""39065"": ""0.54""}","Logan|Auglaize|Hardin","39091|39011|39065","FALSE","FALSE","America/New_York"
-"43332","40.58671","-83.37789","La Rue","OH","Ohio","TRUE","","1356","8.3","39101","Marion","{""39101"": ""90.23"", ""39065"": ""7.58"", ""39175"": ""2.2""}","Marion|Hardin|Wyandot","39101|39065|39175","FALSE","FALSE","America/New_York"
-"43333","40.43993","-83.93201","Lewistown","OH","Ohio","TRUE","","935","11.9","39091","Logan","{""39091"": ""100""}","Logan","39091","FALSE","FALSE","America/New_York"
-"43334","40.40049","-82.80419","Marengo","OH","Ohio","TRUE","","6337","37.0","39117","Morrow","{""39117"": ""97.74"", ""39041"": ""2.26""}","Morrow|Delaware","39117|39041","FALSE","FALSE","America/New_York"
-"43336","40.29111","-83.58245","Middleburg","OH","Ohio","TRUE","","0","0.0","39091","Logan","{""39091"": ""100""}","Logan","39091","FALSE","FALSE","America/New_York"
-"43337","40.682","-83.24152","Morral","OH","Ohio","TRUE","","1060","11.8","39101","Marion","{""39101"": ""95.4"", ""39175"": ""4.6""}","Marion|Wyandot","39101|39175","FALSE","FALSE","America/New_York"
-"43338","40.56049","-82.75947","Mount Gilead","OH","Ohio","TRUE","","9938","39.9","39117","Morrow","{""39117"": ""100""}","Morrow","39117","FALSE","FALSE","America/New_York"
-"43340","40.53922","-83.47897","Mount Victory","OH","Ohio","TRUE","","2101","16.9","39065","Hardin","{""39065"": ""89.54"", ""39159"": ""10.46""}","Hardin|Union","39065|39159","FALSE","FALSE","America/New_York"
-"43341","40.5964","-83.3153","New Bloomington","OH","Ohio","TRUE","","915","16.8","39101","Marion","{""39101"": ""100""}","Marion","39101","FALSE","FALSE","America/New_York"
-"43342","40.4756","-83.1836","Prospect","OH","Ohio","TRUE","","2862","25.8","39101","Marion","{""39101"": ""96.13"", ""39041"": ""2.17"", ""39159"": ""1.7""}","Marion|Delaware|Union","39101|39041|39159","FALSE","FALSE","America/New_York"
-"43343","40.30908","-83.97749","Quincy","OH","Ohio","TRUE","","1085","12.3","39091","Logan","{""39091"": ""89.5"", ""39021"": ""10.5""}","Logan|Champaign","39091|39021","FALSE","FALSE","America/New_York"
-"43344","40.4331","-83.33969","Richwood","OH","Ohio","TRUE","","6052","24.2","39159","Union","{""39159"": ""97.73"", ""39041"": ""1.3"", ""39101"": ""0.97""}","Union|Delaware|Marion","39159|39041|39101","FALSE","FALSE","America/New_York"
-"43345","40.51123","-83.58376","Ridgeway","OH","Ohio","TRUE","","847","11.2","39065","Hardin","{""39065"": ""58.15"", ""39091"": ""41.85""}","Hardin|Logan","39065|39091","FALSE","FALSE","America/New_York"
-"43347","40.47782","-83.65955","Rushsylvania","OH","Ohio","TRUE","","1492","19.6","39091","Logan","{""39091"": ""95.23"", ""39065"": ""4.77""}","Logan|Hardin","39091|39065","FALSE","FALSE","America/New_York"
-"43348","40.46752","-83.8869","Russells Point","OH","Ohio","TRUE","","1759","319.8","39091","Logan","{""39091"": ""100""}","Logan","39091","FALSE","FALSE","America/New_York"
-"43351","40.82495","-83.30373","Upper Sandusky","OH","Ohio","TRUE","","10056","25.0","39175","Wyandot","{""39175"": ""100""}","Wyandot","39175","FALSE","FALSE","America/New_York"
-"43356","40.45816","-83.04718","Waldo","OH","Ohio","TRUE","","1137","20.5","39101","Marion","{""39101"": ""84.68"", ""39117"": ""7.98"", ""39041"": ""7.34""}","Marion|Morrow|Delaware","39101|39117|39041","FALSE","FALSE","America/New_York"
-"43357","40.25335","-83.74664","West Liberty","OH","Ohio","TRUE","","3825","21.6","39091","Logan","{""39091"": ""78.96"", ""39021"": ""21.04""}","Logan|Champaign","39091|39021","FALSE","FALSE","America/New_York"
-"43358","40.41959","-83.53257","West Mansfield","OH","Ohio","TRUE","","2771","17.0","39091","Logan","{""39091"": ""53.39"", ""39159"": ""46.61""}","Logan|Union","39091|39159","FALSE","FALSE","America/New_York"
-"43359","40.87347","-83.45487","Wharton","OH","Ohio","TRUE","","742","12.0","39175","Wyandot","{""39175"": ""100""}","Wyandot","39175","FALSE","FALSE","America/New_York"
-"43360","40.3311","-83.63126","Zanesfield","OH","Ohio","TRUE","","1617","20.9","39091","Logan","{""39091"": ""100""}","Logan","39091","FALSE","FALSE","America/New_York"
-"43402","41.40996","-83.6546","Bowling Green","OH","Ohio","TRUE","","32169","111.2","39173","Wood","{""39173"": ""100""}","Wood","39173","FALSE","FALSE","America/New_York"
-"43403","41.377","-83.63711","Bowling Green","OH","Ohio","TRUE","","5374","10105.3","39173","Wood","{""39173"": ""100""}","Wood","39173","FALSE","FALSE","America/New_York"
-"43406","41.33618","-83.4363","Bradner","OH","Ohio","TRUE","","1830","36.9","39173","Wood","{""39173"": ""95.33"", ""39143"": ""4.67""}","Wood|Sandusky","39173|39143","FALSE","FALSE","America/New_York"
-"43407","41.27787","-83.2494","Burgoon","OH","Ohio","TRUE","","605","15.9","39143","Sandusky","{""39143"": ""100""}","Sandusky","39143","FALSE","FALSE","America/New_York"
-"43408","41.57185","-83.36346","Clay Center","OH","Ohio","TRUE","","294","173.3","39123","Ottawa","{""39123"": ""100""}","Ottawa","39123","FALSE","FALSE","America/New_York"
-"43410","41.307","-82.95954","Clyde","OH","Ohio","TRUE","","9950","73.5","39143","Sandusky","{""39143"": ""97.73"", ""39147"": ""2.27""}","Sandusky|Seneca","39143|39147","FALSE","FALSE","America/New_York"
-"43412","41.627","-83.32311","Curtice","OH","Ohio","TRUE","","4162","55.7","39095","Lucas","{""39095"": ""51.67"", ""39123"": ""48.33""}","Lucas|Ottawa","39095|39123","FALSE","FALSE","America/New_York"
-"43413","41.2415","-83.65251","Cygnet","OH","Ohio","TRUE","","1309","15.7","39173","Wood","{""39173"": ""100""}","Wood","39173","FALSE","FALSE","America/New_York"
-"43416","41.48353","-83.26937","Elmore","OH","Ohio","TRUE","","3150","44.3","39123","Ottawa","{""39123"": ""96.06"", ""39143"": ""3.94""}","Ottawa|Sandusky","39123|39143","FALSE","FALSE","America/New_York"
-"43420","41.35774","-83.11204","Fremont","OH","Ohio","TRUE","","29711","85.2","39143","Sandusky","{""39143"": ""100""}","Sandusky","39143","FALSE","FALSE","America/New_York"
-"43430","41.52466","-83.3701","Genoa","OH","Ohio","TRUE","","4246","64.6","39123","Ottawa","{""39123"": ""95.55"", ""39173"": ""2.95"", ""39143"": ""1.51""}","Ottawa|Wood|Sandusky","39123|39173|39143","FALSE","FALSE","America/New_York"
-"43431","41.3899","-83.33777","Gibsonburg","OH","Ohio","TRUE","","4724","37.6","39143","Sandusky","{""39143"": ""100""}","Sandusky","39143","FALSE","FALSE","America/New_York"
-"43432","41.56308","-83.25214","Graytown","OH","Ohio","TRUE","","1309","22.2","39123","Ottawa","{""39123"": ""100""}","Ottawa","39123","FALSE","FALSE","America/New_York"
-"43433","41.50474","-82.88031","Gypsum","OH","Ohio","TRUE","","72","55.5","39123","Ottawa","{""39123"": ""100""}","Ottawa","39123","FALSE","FALSE","America/New_York"
-"43434","41.69299","-83.44471","Harbor View","OH","Ohio","TRUE","","59","1083.6","39095","Lucas","{""39095"": ""100""}","Lucas","39095","FALSE","FALSE","America/New_York"
-"43435","41.32533","-83.31279","Helena","OH","Ohio","TRUE","","1358","14.6","39143","Sandusky","{""39143"": ""100""}","Sandusky","39143","FALSE","FALSE","America/New_York"
-"43437","41.2537","-83.60238","Jerry City","OH","Ohio","TRUE","","668","256.3","39173","Wood","{""39173"": ""100""}","Wood","39173","FALSE","FALSE","America/New_York"
-"43438","41.60341","-82.70291","Kelleys Island","OH","Ohio","TRUE","","236","21.0","39043","Erie","{""39043"": ""100""}","Erie","39043","FALSE","FALSE","America/New_York"
-"43439","41.51768","-83.04128","Lacarne","OH","Ohio","TRUE","","55","383.9","39123","Ottawa","{""39123"": ""100""}","Ottawa","39123","FALSE","FALSE","America/New_York"
-"43440","41.52626","-82.78079","Lakeside Marblehead","OH","Ohio","TRUE","","4556","109.9","39123","Ottawa","{""39123"": ""100""}","Ottawa","39123","FALSE","FALSE","America/New_York"
-"43442","41.42695","-83.21537","Lindsey","OH","Ohio","TRUE","","1083","24.1","39143","Sandusky","{""39143"": ""100""}","Sandusky","39143","FALSE","FALSE","America/New_York"
-"43443","41.46172","-83.4674","Luckey","OH","Ohio","TRUE","","1806","59.6","39173","Wood","{""39173"": ""100""}","Wood","39173","FALSE","FALSE","America/New_York"
-"43445","41.58485","-83.29854","Martin","OH","Ohio","TRUE","","1270","26.0","39123","Ottawa","{""39123"": ""85.96"", ""39095"": ""14.04""}","Ottawa|Lucas","39123|39095","FALSE","FALSE","America/New_York"
-"43446","41.68475","-82.80853","Middle Bass","OH","Ohio","TRUE","","73","22.4","39123","Ottawa","{""39123"": ""100""}","Ottawa","39123","FALSE","FALSE","America/New_York"
-"43447","41.56604","-83.43547","Millbury","OH","Ohio","TRUE","","3498","80.0","39173","Wood","{""39173"": ""82.26"", ""39123"": ""17.74""}","Wood|Ottawa","39173|39123","FALSE","FALSE","America/New_York"
-"43449","41.53624","-83.14349","Oak Harbor","OH","Ohio","TRUE","","8246","37.6","39123","Ottawa","{""39123"": ""98.71"", ""39143"": ""1.29""}","Ottawa|Sandusky","39123|39143","FALSE","FALSE","America/New_York"
-"43450","41.4007","-83.49214","Pemberville","OH","Ohio","TRUE","","3673","33.3","39173","Wood","{""39173"": ""100""}","Wood","39173","FALSE","FALSE","America/New_York"
-"43451","41.31278","-83.6151","Portage","OH","Ohio","TRUE","","1246","19.6","39173","Wood","{""39173"": ""100""}","Wood","39173","FALSE","FALSE","America/New_York"
-"43452","41.5151","-82.96687","Port Clinton","OH","Ohio","TRUE","","13757","113.2","39123","Ottawa","{""39123"": ""100""}","Ottawa","39123","FALSE","FALSE","America/New_York"
-"43456","41.66821","-82.8232","Put In Bay","OH","Ohio","TRUE","","399","42.8","39123","Ottawa","{""39123"": ""100""}","Ottawa","39123","FALSE","FALSE","America/New_York"
-"43457","41.26732","-83.42749","Risingsun","OH","Ohio","TRUE","","1490","31.0","39173","Wood","{""39173"": ""73.35"", ""39143"": ""24.38"", ""39147"": ""2.27""}","Wood|Sandusky|Seneca","39173|39143|39147","FALSE","FALSE","America/New_York"
-"43458","41.53105","-83.21258","Rocky Ridge","OH","Ohio","TRUE","","385","149.6","39123","Ottawa","{""39123"": ""100""}","Ottawa","39123","FALSE","FALSE","America/New_York"
-"43460","41.60286","-83.563","Rossford","OH","Ohio","TRUE","","6471","901.3","39173","Wood","{""39173"": ""100""}","Wood","39173","FALSE","FALSE","America/New_York"
-"43462","41.28356","-83.71868","Rudolph","OH","Ohio","TRUE","","1112","16.7","39173","Wood","{""39173"": ""100""}","Wood","39173","FALSE","FALSE","America/New_York"
-"43463","41.50866","-83.50804","Stony Ridge","OH","Ohio","TRUE","","68","3502.4","39173","Wood","{""39173"": ""100""}","Wood","39173","FALSE","FALSE","America/New_York"
-"43464","41.40348","-82.92993","Vickery","OH","Ohio","TRUE","","1295","15.0","39143","Sandusky","{""39143"": ""74.04"", ""39043"": ""25.96""}","Sandusky|Erie","39143|39043","FALSE","FALSE","America/New_York"
-"43465","41.57004","-83.50379","Walbridge","OH","Ohio","TRUE","","5463","191.7","39173","Wood","{""39173"": ""100""}","Wood","39173","FALSE","FALSE","America/New_York"
-"43466","41.29535","-83.51482","Wayne","OH","Ohio","TRUE","","2110","29.4","39173","Wood","{""39173"": ""100""}","Wood","39173","FALSE","FALSE","America/New_York"
-"43467","41.24321","-83.48382","West Millgrove","OH","Ohio","TRUE","","111","123.6","39173","Wood","{""39173"": ""100""}","Wood","39173","FALSE","FALSE","America/New_York"
-"43468","41.59788","-83.34147","Williston","OH","Ohio","TRUE","","402","216.0","39123","Ottawa","{""39123"": ""100""}","Ottawa","39123","FALSE","FALSE","America/New_York"
-"43469","41.45946","-83.36322","Woodville","OH","Ohio","TRUE","","3220","53.8","39143","Sandusky","{""39143"": ""94.76"", ""39123"": ""5.24""}","Sandusky|Ottawa","39143|39123","FALSE","FALSE","America/New_York"
-"43501","41.6725","-84.45726","Alvordton","OH","Ohio","TRUE","","980","15.7","39171","Williams","{""39171"": ""100""}","Williams","39171","FALSE","FALSE","America/New_York"
-"43502","41.53029","-84.29884","Archbold","OH","Ohio","TRUE","","6532","36.7","39051","Fulton","{""39051"": ""90.93"", ""39069"": ""8.8"", ""39171"": ""0.27""}","Fulton|Henry|Williams","39051|39069|39171","FALSE","FALSE","America/New_York"
-"43504","41.69585","-83.83676","Berkey","OH","Ohio","TRUE","","1181","29.8","39095","Lucas","{""39095"": ""100""}","Lucas","39095","FALSE","FALSE","America/New_York"
-"43505","41.52403","-84.73118","Blakeslee","OH","Ohio","TRUE","","88","347.8","39171","Williams","{""39171"": ""100""}","Williams","39171","FALSE","FALSE","America/New_York"
-"43506","41.46629","-84.55621","Bryan","OH","Ohio","TRUE","","14088","53.5","39171","Williams","{""39171"": ""96.39"", ""39039"": ""3.61""}","Williams|Defiance","39171|39039","FALSE","FALSE","America/New_York"
-"43511","41.26339","-83.82366","Custar","OH","Ohio","TRUE","","1239","10.5","39173","Wood","{""39173"": ""92.87"", ""39069"": ""7.13""}","Wood|Henry","39173|39069","FALSE","FALSE","America/New_York"
-"43512","41.30271","-84.35806","Defiance","OH","Ohio","TRUE","","28109","49.6","39039","Defiance","{""39039"": ""96.31"", ""39125"": ""3.55"", ""39069"": ""0.13""}","Defiance|Paulding|Henry","39039|39125|39069","FALSE","FALSE","America/New_York"
-"43515","41.58534","-84.00775","Delta","OH","Ohio","TRUE","","8254","39.0","39051","Fulton","{""39051"": ""100""}","Fulton","39051","FALSE","FALSE","America/New_York"
-"43516","41.2179","-83.91492","Deshler","OH","Ohio","TRUE","","2986","16.4","39069","Henry","{""39069"": ""88.99"", ""39173"": ""10.3"", ""39063"": ""0.71""}","Henry|Wood|Hancock","39069|39173|39063","FALSE","FALSE","America/New_York"
-"43517","41.44021","-84.72687","Edgerton","OH","Ohio","TRUE","","4012","23.9","39171","Williams","{""39171"": ""80.56"", ""39039"": ""19.44""}","Williams|Defiance","39171|39039","FALSE","FALSE","America/New_York"
-"43518","41.58918","-84.75397","Edon","OH","Ohio","TRUE","","2657","15.0","39171","Williams","{""39171"": ""100""}","Williams","39171","FALSE","FALSE","America/New_York"
-"43519","41.42092","-84.40855","Evansport","OH","Ohio","TRUE","","269","80.8","39039","Defiance","{""39039"": ""100""}","Defiance","39039","FALSE","FALSE","America/New_York"
-"43521","41.66297","-84.29867","Fayette","OH","Ohio","TRUE","","2832","16.4","39051","Fulton","{""39051"": ""98.33"", ""39171"": ""1.67""}","Fulton|Williams","39051|39171","FALSE","FALSE","America/New_York"
-"43522","41.41914","-83.84484","Grand Rapids","OH","Ohio","TRUE","","3466","42.3","39173","Wood","{""39173"": ""53.5"", ""39095"": ""45.45"", ""39069"": ""1.05""}","Wood|Lucas|Henry","39173|39095|39069","FALSE","FALSE","America/New_York"
-"43523","41.33707","-83.98922","Grelton","OH","Ohio","TRUE","","19","5.3","39069","Henry","{""39069"": ""100""}","Henry","39069","FALSE","FALSE","America/New_York"
-"43524","41.22848","-84.03956","Hamler","OH","Ohio","TRUE","","1179","15.1","39069","Henry","{""39069"": ""100""}","Henry","39069","FALSE","FALSE","America/New_York"
-"43525","41.46657","-83.70444","Haskins","OH","Ohio","TRUE","","1186","402.7","39173","Wood","{""39173"": ""100""}","Wood","39173","FALSE","FALSE","America/New_York"
-"43526","41.31447","-84.72798","Hicksville","OH","Ohio","TRUE","","5875","29.2","39039","Defiance","{""39039"": ""98.52"", ""39125"": ""1.48""}","Defiance|Paulding","39039|39125","FALSE","FALSE","America/New_York"
-"43527","41.25049","-84.16007","Holgate","OH","Ohio","TRUE","","1947","14.3","39069","Henry","{""39069"": ""93.88"", ""39039"": ""6.12""}","Henry|Defiance","39069|39039","FALSE","FALSE","America/New_York"
-"43528","41.62859","-83.74896","Holland","OH","Ohio","TRUE","","16022","332.7","39095","Lucas","{""39095"": ""100""}","Lucas","39095","FALSE","FALSE","America/New_York"
-"43529","41.18761","-83.78162","Hoytville","OH","Ohio","TRUE","","306","164.5","39173","Wood","{""39173"": ""100""}","Wood","39173","FALSE","FALSE","America/New_York"
-"43531","41.63509","-84.49572","Kunkle","OH","Ohio","TRUE","","326","730.0","39171","Williams","{""39171"": ""100""}","Williams","39171","FALSE","FALSE","America/New_York"
-"43532","41.45519","-83.97431","Liberty Center","OH","Ohio","TRUE","","4286","35.4","39069","Henry","{""39069"": ""95.19"", ""39051"": ""3.21"", ""39095"": ""1.59""}","Henry|Fulton|Lucas","39069|39051|39095","FALSE","FALSE","America/New_York"
-"43533","41.69143","-84.08253","Lyons","OH","Ohio","TRUE","","1525","23.5","39051","Fulton","{""39051"": ""100""}","Fulton","39051","FALSE","FALSE","America/New_York"
-"43534","41.35557","-83.93006","McClure","OH","Ohio","TRUE","","1681","17.6","39069","Henry","{""39069"": ""100""}","Henry","39069","FALSE","FALSE","America/New_York"
-"43535","41.30731","-84.02206","Malinta","OH","Ohio","TRUE","","673","10.8","39069","Henry","{""39069"": ""100""}","Henry","39069","FALSE","FALSE","America/New_York"
-"43536","41.30977","-84.63288","Mark Center","OH","Ohio","TRUE","","73","1.8","39039","Defiance","{""39039"": ""100""}","Defiance","39039","FALSE","FALSE","America/New_York"
-"43537","41.57468","-83.68551","Maumee","OH","Ohio","TRUE","","27145","572.6","39095","Lucas","{""39095"": ""100""}","Lucas","39095","FALSE","FALSE","America/New_York"
-"43540","41.69563","-83.94129","Metamora","OH","Ohio","TRUE","","1384","28.2","39051","Fulton","{""39051"": ""100""}","Fulton","39051","FALSE","FALSE","America/New_York"
-"43541","41.30076","-83.82951","Milton Center","OH","Ohio","TRUE","","157","155.7","39173","Wood","{""39173"": ""100""}","Wood","39173","FALSE","FALSE","America/New_York"
-"43542","41.56675","-83.76508","Monclova","OH","Ohio","TRUE","","3779","100.3","39095","Lucas","{""39095"": ""100""}","Lucas","39095","FALSE","FALSE","America/New_York"
-"43543","41.60565","-84.63371","Montpelier","OH","Ohio","TRUE","","7697","34.0","39171","Williams","{""39171"": ""100""}","Williams","39171","FALSE","FALSE","America/New_York"
-"43545","41.3912","-84.1275","Napoleon","OH","Ohio","TRUE","","13972","40.5","39069","Henry","{""39069"": ""99.84"", ""39039"": ""0.16""}","Henry|Defiance","39069|39039","FALSE","FALSE","America/New_York"
-"43547","41.49214","-83.87631","Neapolis","OH","Ohio","TRUE","","307","273.6","39095","Lucas","{""39095"": ""100""}","Lucas","39095","FALSE","FALSE","America/New_York"
-"43548","41.18534","-84.17511","New Bavaria","OH","Ohio","TRUE","","693","11.2","39069","Henry","{""39069"": ""91.71"", ""39039"": ""6.71"", ""39137"": ""1.57""}","Henry|Defiance|Putnam","39069|39039|39137","FALSE","FALSE","America/New_York"
-"43549","41.37449","-84.51732","Ney","OH","Ohio","TRUE","","1410","18.0","39039","Defiance","{""39039"": ""100""}","Defiance","39039","FALSE","FALSE","America/New_York"
-"43551","41.52153","-83.57126","Perrysburg","OH","Ohio","TRUE","","39094","190.8","39173","Wood","{""39173"": ""100""}","Wood","39173","FALSE","FALSE","America/New_York"
-"43553","41.53122","-84.2288","Pettisville","OH","Ohio","TRUE","","243","573.8","39051","Fulton","{""39051"": ""100""}","Fulton","39051","FALSE","FALSE","America/New_York"
-"43554","41.66029","-84.55805","Pioneer","OH","Ohio","TRUE","","2326","26.1","39171","Williams","{""39171"": ""100""}","Williams","39171","FALSE","FALSE","America/New_York"
-"43555","41.43418","-84.25433","Ridgeville Corners","OH","Ohio","TRUE","","147","138.3","39069","Henry","{""39069"": ""100""}","Henry","39069","FALSE","FALSE","America/New_York"
-"43556","41.30608","-84.56989","Sherwood","OH","Ohio","TRUE","","1736","21.0","39039","Defiance","{""39039"": ""100""}","Defiance","39039","FALSE","FALSE","America/New_York"
-"43557","41.48405","-84.39612","Stryker","OH","Ohio","TRUE","","3216","28.1","39171","Williams","{""39171"": ""95.96"", ""39069"": ""2.42"", ""39051"": ""1.62""}","Williams|Henry|Fulton","39171|39069|39051","FALSE","FALSE","America/New_York"
-"43558","41.59281","-83.87835","Swanton","OH","Ohio","TRUE","","13016","60.5","39051","Fulton","{""39051"": ""64.82"", ""39095"": ""35.18""}","Fulton|Lucas","39051|39095","FALSE","FALSE","America/New_York"
-"43560","41.70106","-83.73808","Sylvania","OH","Ohio","TRUE","","32238","595.8","39095","Lucas","{""39095"": ""100""}","Lucas","39095","FALSE","FALSE","America/New_York"
-"43565","41.41999","-83.74015","Tontogany","OH","Ohio","TRUE","","457","972.4","39173","Wood","{""39173"": ""100""}","Wood","39173","FALSE","FALSE","America/New_York"
-"43566","41.49591","-83.75864","Waterville","OH","Ohio","TRUE","","7776","152.3","39095","Lucas","{""39095"": ""100""}","Lucas","39095","FALSE","FALSE","America/New_York"
-"43567","41.57568","-84.15406","Wauseon","OH","Ohio","TRUE","","13173","45.0","39051","Fulton","{""39051"": ""99.8"", ""39069"": ""0.2""}","Fulton|Henry","39051|39069","FALSE","FALSE","America/New_York"
-"43569","41.35144","-83.78829","Weston","OH","Ohio","TRUE","","2849","31.7","39173","Wood","{""39173"": ""100""}","Wood","39173","FALSE","FALSE","America/New_York"
-"43570","41.58705","-84.44005","West Unity","OH","Ohio","TRUE","","3194","26.4","39171","Williams","{""39171"": ""96.72"", ""39051"": ""3.28""}","Williams|Fulton","39171|39051","FALSE","FALSE","America/New_York"
-"43571","41.51583","-83.81977","Whitehouse","OH","Ohio","TRUE","","7312","132.0","39095","Lucas","{""39095"": ""100""}","Lucas","39095","FALSE","FALSE","America/New_York"
-"43604","41.65203","-83.53993","Toledo","OH","Ohio","TRUE","","9067","1240.9","39095","Lucas","{""39095"": ""100""}","Lucas","39095","FALSE","FALSE","America/New_York"
-"43605","41.64825","-83.50669","Toledo","OH","Ohio","TRUE","","25610","1401.0","39095","Lucas","{""39095"": ""99.36"", ""39173"": ""0.64""}","Lucas|Wood","39095|39173","FALSE","FALSE","America/New_York"
-"43606","41.67177","-83.61084","Toledo","OH","Ohio","TRUE","","24979","1478.9","39095","Lucas","{""39095"": ""100""}","Lucas","39095","FALSE","FALSE","America/New_York"
-"43607","41.64754","-83.60624","Toledo","OH","Ohio","TRUE","","20854","1118.1","39095","Lucas","{""39095"": ""100""}","Lucas","39095","FALSE","FALSE","America/New_York"
-"43608","41.67987","-83.52854","Toledo","OH","Ohio","TRUE","","14608","1557.7","39095","Lucas","{""39095"": ""100""}","Lucas","39095","FALSE","FALSE","America/New_York"
-"43609","41.62709","-83.58047","Toledo","OH","Ohio","TRUE","","21601","1631.2","39095","Lucas","{""39095"": ""100""}","Lucas","39095","FALSE","FALSE","America/New_York"
-"43610","41.67802","-83.56138","Toledo","OH","Ohio","TRUE","","4465","1365.9","39095","Lucas","{""39095"": ""100""}","Lucas","39095","FALSE","FALSE","America/New_York"
-"43611","41.70313","-83.49138","Toledo","OH","Ohio","TRUE","","18241","1015.5","39095","Lucas","{""39095"": ""100""}","Lucas","39095","FALSE","FALSE","America/New_York"
-"43612","41.70948","-83.54864","Toledo","OH","Ohio","TRUE","","29302","978.1","39095","Lucas","{""39095"": ""100""}","Lucas","39095","FALSE","FALSE","America/New_York"
-"43613","41.70629","-83.60372","Toledo","OH","Ohio","TRUE","","33170","2087.6","39095","Lucas","{""39095"": ""100""}","Lucas","39095","FALSE","FALSE","America/New_York"
-"43614","41.60318","-83.62887","Toledo","OH","Ohio","TRUE","","31100","1325.9","39095","Lucas","{""39095"": ""100""}","Lucas","39095","FALSE","FALSE","America/New_York"
-"43615","41.65078","-83.67317","Toledo","OH","Ohio","TRUE","","40658","968.6","39095","Lucas","{""39095"": ""100""}","Lucas","39095","FALSE","FALSE","America/New_York"
-"43616","41.65847","-83.40906","Oregon","OH","Ohio","TRUE","","20542","203.2","39095","Lucas","{""39095"": ""100""}","Lucas","39095","FALSE","FALSE","America/New_York"
-"43617","41.66465","-83.72823","Toledo","OH","Ohio","TRUE","","7192","507.3","39095","Lucas","{""39095"": ""100""}","Lucas","39095","FALSE","FALSE","America/New_York"
-"43619","41.60449","-83.47218","Northwood","OH","Ohio","TRUE","","7386","252.0","39173","Wood","{""39173"": ""100""}","Wood","39173","FALSE","FALSE","America/New_York"
-"43620","41.66519","-83.55439","Toledo","OH","Ohio","TRUE","","5559","1964.9","39095","Lucas","{""39095"": ""100""}","Lucas","39095","FALSE","FALSE","America/New_York"
-"43623","41.7041","-83.65147","Toledo","OH","Ohio","TRUE","","19819","1136.0","39095","Lucas","{""39095"": ""100""}","Lucas","39095","FALSE","FALSE","America/New_York"
-"43701","39.96008","-81.99398","Zanesville","OH","Ohio","TRUE","","55253","118.2","39119","Muskingum","{""39119"": ""100""}","Muskingum","39119","FALSE","FALSE","America/New_York"
-"43711","39.84213","-81.57748","Ava","OH","Ohio","TRUE","","110","199.1","39121","Noble","{""39121"": ""100""}","Noble","39121","FALSE","FALSE","America/New_York"
-"43713","39.98808","-81.17407","Barnesville","OH","Ohio","TRUE","","6764","28.4","39013","Belmont","{""39013"": ""100""}","Belmont","39013","FALSE","FALSE","America/New_York"
-"43716","39.83676","-81.00996","Beallsville","OH","Ohio","TRUE","","1952","11.1","39111","Monroe","{""39111"": ""81.04"", ""39013"": ""18.96""}","Monroe|Belmont","39111|39013","FALSE","FALSE","America/New_York"
-"43717","39.78971","-81.55569","Belle Valley","OH","Ohio","TRUE","","155","219.5","39121","Noble","{""39121"": ""100""}","Noble","39121","FALSE","FALSE","America/New_York"
-"43718","40.00942","-81.0009","Belmont","OH","Ohio","TRUE","","2944","21.3","39013","Belmont","{""39013"": ""100""}","Belmont","39013","FALSE","FALSE","America/New_York"
-"43719","39.99883","-81.07941","Bethesda","OH","Ohio","TRUE","","2764","28.6","39013","Belmont","{""39013"": ""100""}","Belmont","39013","FALSE","FALSE","America/New_York"
-"43720","39.79451","-81.87296","Blue Rock","OH","Ohio","TRUE","","1328","11.3","39119","Muskingum","{""39119"": ""100""}","Muskingum","39119","FALSE","FALSE","America/New_York"
-"43721","39.94887","-82.2599","Brownsville","OH","Ohio","TRUE","","116","117.7","39089","Licking","{""39089"": ""100""}","Licking","39089","FALSE","FALSE","America/New_York"
-"43722","39.9192","-81.51756","Buffalo","OH","Ohio","TRUE","","341","176.2","39059","Guernsey","{""39059"": ""100""}","Guernsey","39059","FALSE","FALSE","America/New_York"
-"43723","39.96057","-81.54009","Byesville","OH","Ohio","TRUE","","5202","113.4","39059","Guernsey","{""39059"": ""100""}","Guernsey","39059","FALSE","FALSE","America/New_York"
-"43724","39.73278","-81.51487","Caldwell","OH","Ohio","TRUE","","9237","23.0","39121","Noble","{""39121"": ""99.53"", ""39115"": ""0.47""}","Noble|Morgan","39121|39115","FALSE","FALSE","America/New_York"
-"43725","40.04495","-81.58946","Cambridge","OH","Ohio","TRUE","","20249","58.6","39059","Guernsey","{""39059"": ""100""}","Guernsey","39059","FALSE","FALSE","America/New_York"
-"43727","39.86818","-81.79394","Chandlersville","OH","Ohio","TRUE","","1258","6.5","39119","Muskingum","{""39119"": ""100""}","Muskingum","39119","FALSE","FALSE","America/New_York"
-"43728","39.49212","-81.89469","Chesterhill","OH","Ohio","TRUE","","1506","15.6","39115","Morgan","{""39115"": ""98.96"", ""39009"": ""1.04""}","Morgan|Athens","39115|39009","FALSE","FALSE","America/New_York"
-"43730","39.62433","-82.09725","Corning","OH","Ohio","TRUE","","2063","17.2","39127","Perry","{""39127"": ""100""}","Perry","39127","FALSE","FALSE","America/New_York"
-"43731","39.72716","-82.06483","Crooksville","OH","Ohio","TRUE","","5437","41.3","39127","Perry","{""39127"": ""84.25"", ""39115"": ""15.75""}","Perry|Morgan","39127|39115","FALSE","FALSE","America/New_York"
-"43732","39.8457","-81.65279","Cumberland","OH","Ohio","TRUE","","1226","6.4","39059","Guernsey","{""39059"": ""76.81"", ""39121"": ""19.55"", ""39119"": ""3.64""}","Guernsey|Noble|Muskingum","39059|39121|39119","FALSE","FALSE","America/New_York"
-"43733","39.92734","-81.53821","Derwent","OH","Ohio","TRUE","","17","7.1","39059","Guernsey","{""39059"": ""100""}","Guernsey","39059","FALSE","FALSE","America/New_York"
-"43734","39.88311","-81.9011","Duncan Falls","OH","Ohio","TRUE","","1694","171.2","39119","Muskingum","{""39119"": ""100""}","Muskingum","39119","FALSE","FALSE","America/New_York"
-"43735","39.86326","-82.11874","East Fultonham","OH","Ohio","TRUE","","440","113.5","39119","Muskingum","{""39119"": ""100""}","Muskingum","39119","FALSE","FALSE","America/New_York"
-"43736","40.05897","-81.23642","Fairview","OH","Ohio","TRUE","","54","201.6","39059","Guernsey","{""39059"": ""100""}","Guernsey","39059","FALSE","FALSE","America/New_York"
-"43738","39.85532","-82.14106","Fultonham","OH","Ohio","TRUE","","200","665.3","39119","Muskingum","{""39119"": ""100""}","Muskingum","39119","FALSE","FALSE","America/New_York"
-"43739","39.90779","-82.28878","Glenford","OH","Ohio","TRUE","","2345","28.4","39127","Perry","{""39127"": ""64.05"", ""39089"": ""35.95""}","Perry|Licking","39127|39089","FALSE","FALSE","America/New_York"
-"43740","39.95221","-82.21278","Gratiot","OH","Ohio","TRUE","","229","235.6","39089","Licking","{""39089"": ""65.63"", ""39119"": ""34.38""}","Licking|Muskingum","39089|39119","FALSE","FALSE","America/New_York"
-"43746","39.97171","-82.17436","Hopewell","OH","Ohio","TRUE","","1494","27.4","39119","Muskingum","{""39119"": ""91.09"", ""39089"": ""8.91""}","Muskingum|Licking","39119|39089","FALSE","FALSE","America/New_York"
-"43747","39.86251","-81.12164","Jerusalem","OH","Ohio","TRUE","","840","10.3","39111","Monroe","{""39111"": ""64.54"", ""39013"": ""35.46""}","Monroe|Belmont","39111|39013","FALSE","FALSE","America/New_York"
-"43748","39.70025","-82.30934","Junction City","OH","Ohio","TRUE","","2749","29.7","39127","Perry","{""39127"": ""100""}","Perry","39127","FALSE","FALSE","America/New_York"
-"43749","40.16529","-81.56944","Kimbolton","OH","Ohio","TRUE","","2142","8.4","39059","Guernsey","{""39059"": ""93.12"", ""39031"": ""5.47"", ""39157"": ""1.41""}","Guernsey|Coshocton|Tuscarawas","39059|39031|39157","FALSE","FALSE","America/New_York"
-"43750","39.9936","-81.50948","Kipling","OH","Ohio","TRUE","","90","32.1","39059","Guernsey","{""39059"": ""100""}","Guernsey","39059","FALSE","FALSE","America/New_York"
-"43754","39.75808","-81.23765","Lewisville","OH","Ohio","TRUE","","1358","7.0","39111","Monroe","{""39111"": ""100""}","Monroe","39111","FALSE","FALSE","America/New_York"
-"43755","40.05431","-81.43484","Lore City","OH","Ohio","TRUE","","1762","19.2","39059","Guernsey","{""39059"": ""100""}","Guernsey","39059","FALSE","FALSE","America/New_York"
-"43756","39.69077","-81.79502","Mcconnelsville","OH","Ohio","TRUE","","4669","12.7","39115","Morgan","{""39115"": ""100""}","Morgan","39115","FALSE","FALSE","America/New_York"
-"43758","39.62287","-81.94431","Malta","OH","Ohio","TRUE","","3098","13.7","39115","Morgan","{""39115"": ""100""}","Morgan","39115","FALSE","FALSE","America/New_York"
-"43759","40.06479","-81.07431","Morristown","OH","Ohio","TRUE","","47","129.9","39013","Belmont","{""39013"": ""100""}","Belmont","39013","FALSE","FALSE","America/New_York"
-"43760","39.88935","-82.19922","Mount Perry","OH","Ohio","TRUE","","1611","17.9","39127","Perry","{""39127"": ""62.86"", ""39119"": ""31.57"", ""39089"": ""5.57""}","Perry|Muskingum|Licking","39127|39119|39089","FALSE","FALSE","America/New_York"
-"43761","39.66793","-82.14685","Moxahala","OH","Ohio","TRUE","","50","31.1","39127","Perry","{""39127"": ""100""}","Perry","39127","FALSE","FALSE","America/New_York"
-"43762","40.02767","-81.74066","New Concord","OH","Ohio","TRUE","","5769","30.7","39119","Muskingum","{""39119"": ""83.17"", ""39059"": ""16.83""}","Muskingum|Guernsey","39119|39059","FALSE","FALSE","America/New_York"
-"43764","39.71067","-82.19147","New Lexington","OH","Ohio","TRUE","","8557","54.6","39127","Perry","{""39127"": ""100""}","Perry","39127","FALSE","FALSE","America/New_York"
-"43766","39.59848","-82.25152","New Straitsville","OH","Ohio","TRUE","","1578","16.3","39127","Perry","{""39127"": ""88.23"", ""39073"": ""11.77""}","Perry|Hocking","39127|39073","FALSE","FALSE","America/New_York"
-"43767","40.01235","-81.8045","Norwich","OH","Ohio","TRUE","","856","10.3","39119","Muskingum","{""39119"": ""100""}","Muskingum","39119","FALSE","FALSE","America/New_York"
-"43768","40.03777","-81.44485","Old Washington","OH","Ohio","TRUE","","485","294.7","39059","Guernsey","{""39059"": ""100""}","Guernsey","39059","FALSE","FALSE","America/New_York"
-"43771","39.83602","-81.9438","Philo","OH","Ohio","TRUE","","2043","31.6","39119","Muskingum","{""39119"": ""100""}","Muskingum","39119","FALSE","FALSE","America/New_York"
-"43772","39.8817","-81.52433","Pleasant City","OH","Ohio","TRUE","","1867","21.1","39059","Guernsey","{""39059"": ""66.63"", ""39121"": ""33.37""}","Guernsey|Noble","39059|39121","FALSE","FALSE","America/New_York"
-"43773","39.98833","-81.29618","Quaker City","OH","Ohio","TRUE","","3327","12.2","39059","Guernsey","{""39059"": ""63.36"", ""39121"": ""33.41"", ""39111"": ""3.23""}","Guernsey|Noble|Monroe","39059|39121|39111","FALSE","FALSE","America/New_York"
-"43777","39.81816","-82.08729","Roseville","OH","Ohio","TRUE","","4803","35.0","39119","Muskingum","{""39119"": ""57.59"", ""39127"": ""42.41""}","Muskingum|Perry","39119|39127","FALSE","FALSE","America/New_York"
-"43778","40.00716","-81.37625","Salesville","OH","Ohio","TRUE","","1269","10.8","39059","Guernsey","{""39059"": ""95.41"", ""39121"": ""4.59""}","Guernsey|Noble","39059|39121","FALSE","FALSE","America/New_York"
-"43779","39.8162","-81.42435","Sarahsville","OH","Ohio","TRUE","","840","9.2","39121","Noble","{""39121"": ""100""}","Noble","39121","FALSE","FALSE","America/New_York"
-"43780","39.91754","-81.43856","Senecaville","OH","Ohio","TRUE","","1723","18.7","39059","Guernsey","{""39059"": ""81.29"", ""39121"": ""18.71""}","Guernsey|Noble","39059|39121","FALSE","FALSE","America/New_York"
-"43782","39.61842","-82.21731","Shawnee","OH","Ohio","TRUE","","676","21.2","39127","Perry","{""39127"": ""100""}","Perry","39127","FALSE","FALSE","America/New_York"
-"43783","39.80421","-82.28408","Somerset","OH","Ohio","TRUE","","5352","34.3","39127","Perry","{""39127"": ""100""}","Perry","39127","FALSE","FALSE","America/New_York"
-"43786","39.71045","-81.27699","Stafford","OH","Ohio","TRUE","","25","45.3","39111","Monroe","{""39111"": ""100""}","Monroe","39111","FALSE","FALSE","America/New_York"
-"43787","39.53138","-81.80618","Stockport","OH","Ohio","TRUE","","3274","16.8","39115","Morgan","{""39115"": ""87.02"", ""39167"": ""12.98""}","Morgan|Washington","39115|39167","FALSE","FALSE","America/New_York"
-"43788","39.80227","-81.33324","Summerfield","OH","Ohio","TRUE","","663","6.6","39121","Noble","{""39121"": ""75.95"", ""39111"": ""24.05""}","Noble|Monroe","39121|39111","FALSE","FALSE","America/New_York"
-"43793","39.74329","-81.09981","Woodsfield","OH","Ohio","TRUE","","4721","17.6","39111","Monroe","{""39111"": ""100""}","Monroe","39111","FALSE","FALSE","America/New_York"
-"43802","40.09582","-81.8599","Adamsville","OH","Ohio","TRUE","","1173","12.0","39119","Muskingum","{""39119"": ""100""}","Muskingum","39119","FALSE","FALSE","America/New_York"
-"43804","40.45385","-81.73741","Baltic","OH","Ohio","TRUE","","3781","45.9","39075","Holmes","{""39075"": ""55.21"", ""39157"": ""29.89"", ""39031"": ""14.91""}","Holmes|Tuscarawas|Coshocton","39075|39157|39031","FALSE","FALSE","America/New_York"
-"43805","40.39337","-81.97258","Blissfield","OH","Ohio","TRUE","","77","24.9","39031","Coshocton","{""39031"": ""100""}","Coshocton","39031","FALSE","FALSE","America/New_York"
-"43811","40.18324","-81.92621","Conesville","OH","Ohio","TRUE","","769","15.8","39031","Coshocton","{""39031"": ""100""}","Coshocton","39031","FALSE","FALSE","America/New_York"
-"43812","40.27166","-81.88214","Coshocton","OH","Ohio","TRUE","","18751","44.8","39031","Coshocton","{""39031"": ""99.96"", ""39119"": ""0.04""}","Coshocton|Muskingum","39031|39119","FALSE","FALSE","America/New_York"
-"43821","40.13673","-82.00667","Dresden","OH","Ohio","TRUE","","4444","20.8","39119","Muskingum","{""39119"": ""82.51"", ""39031"": ""17.49""}","Muskingum|Coshocton","39119|39031","FALSE","FALSE","America/New_York"
-"43822","40.17741","-82.1725","Frazeysburg","OH","Ohio","TRUE","","5316","23.4","39119","Muskingum","{""39119"": ""58.97"", ""39089"": ""22.05"", ""39031"": ""10.4"", ""39083"": ""8.58""}","Muskingum|Licking|Coshocton|Knox","39119|39089|39031|39083","FALSE","FALSE","America/New_York"
-"43824","40.36278","-81.76149","Fresno","OH","Ohio","TRUE","","4087","20.6","39031","Coshocton","{""39031"": ""94.19"", ""39157"": ""5.81""}","Coshocton|Tuscarawas","39031|39157","FALSE","FALSE","America/New_York"
-"43830","40.06171","-82.14477","Nashport","OH","Ohio","TRUE","","5855","44.4","39119","Muskingum","{""39119"": ""87.63"", ""39089"": ""12.37""}","Muskingum|Licking","39119|39089","FALSE","FALSE","America/New_York"
-"43832","40.27482","-81.58244","Newcomerstown","OH","Ohio","TRUE","","7189","27.5","39157","Tuscarawas","{""39157"": ""83.53"", ""39031"": ""13.75"", ""39059"": ""2.73""}","Tuscarawas|Coshocton|Guernsey","39157|39031|39059","FALSE","FALSE","America/New_York"
-"43836","40.20885","-81.72004","Plainfield","OH","Ohio","TRUE","","106","260.5","39031","Coshocton","{""39031"": ""100""}","Coshocton","39031","FALSE","FALSE","America/New_York"
-"43837","40.30194","-81.48069","Port Washington","OH","Ohio","TRUE","","1979","14.9","39157","Tuscarawas","{""39157"": ""94.68"", ""39059"": ""5.32""}","Tuscarawas|Guernsey","39157|39059","FALSE","FALSE","America/New_York"
-"43840","40.4072","-81.60399","Stone Creek","OH","Ohio","TRUE","","1416","17.0","39157","Tuscarawas","{""39157"": ""99.04"", ""39031"": ""0.96""}","Tuscarawas|Coshocton","39157|39031","FALSE","FALSE","America/New_York"
-"43842","40.13683","-82.01275","Trinway","OH","Ohio","TRUE","","357","336.0","39119","Muskingum","{""39119"": ""100""}","Muskingum","39119","FALSE","FALSE","America/New_York"
-"43843","40.33665","-82.17392","Walhonding","OH","Ohio","TRUE","","1129","10.3","39031","Coshocton","{""39031"": ""61.53"", ""39083"": ""38.47""}","Coshocton|Knox","39031|39083","FALSE","FALSE","America/New_York"
-"43844","40.33368","-82.05252","Warsaw","OH","Ohio","TRUE","","3527","10.9","39031","Coshocton","{""39031"": ""100""}","Coshocton","39031","FALSE","FALSE","America/New_York"
-"43845","40.25695","-81.73121","West Lafayette","OH","Ohio","TRUE","","4696","62.3","39031","Coshocton","{""39031"": ""100""}","Coshocton","39031","FALSE","FALSE","America/New_York"
-"43901","40.22385","-80.86213","Adena","OH","Ohio","TRUE","","1918","23.7","39081","Jefferson","{""39081"": ""74.54"", ""39067"": ""15.5"", ""39013"": ""9.96""}","Jefferson|Harrison|Belmont","39081|39067|39013","FALSE","FALSE","America/New_York"
-"43902","39.89145","-80.96236","Alledonia","OH","Ohio","TRUE","","134","3.0","39013","Belmont","{""39013"": ""100""}","Belmont","39013","FALSE","FALSE","America/New_York"
-"43903","40.4703","-80.95207","Amsterdam","OH","Ohio","TRUE","","2125","21.9","39081","Jefferson","{""39081"": ""53.85"", ""39019"": ""46.15""}","Jefferson|Carroll","39081|39019","FALSE","FALSE","America/New_York"
-"43905","40.10349","-80.83808","Barton","OH","Ohio","TRUE","","209","208.7","39013","Belmont","{""39013"": ""100""}","Belmont","39013","FALSE","FALSE","America/New_York"
-"43906","40.01217","-80.80356","Bellaire","OH","Ohio","TRUE","","8344","100.0","39013","Belmont","{""39013"": ""100""}","Belmont","39013","FALSE","FALSE","America/New_York"
-"43907","40.25609","-81.02123","Cadiz","OH","Ohio","TRUE","","5514","13.5","39067","Harrison","{""39067"": ""98.17"", ""39081"": ""1.83""}","Harrison|Jefferson","39067|39081","FALSE","FALSE","America/New_York"
-"43908","40.50881","-80.8744","Bergholz","OH","Ohio","TRUE","","1496","18.6","39081","Jefferson","{""39081"": ""97.01"", ""39019"": ""2.99""}","Jefferson|Carroll","39081|39019","FALSE","FALSE","America/New_York"
-"43910","40.37232","-80.823","Bloomingdale","OH","Ohio","TRUE","","3411","23.8","39081","Jefferson","{""39081"": ""95.54"", ""39067"": ""4.46""}","Jefferson|Harrison","39081|39067","FALSE","FALSE","America/New_York"
-"43912","40.08805","-80.79447","Bridgeport","OH","Ohio","TRUE","","6390","131.0","39013","Belmont","{""39013"": ""100""}","Belmont","39013","FALSE","FALSE","America/New_York"
-"43913","40.27101","-80.63084","Brilliant","OH","Ohio","TRUE","","1479","224.0","39081","Jefferson","{""39081"": ""100""}","Jefferson","39081","FALSE","FALSE","America/New_York"
-"43914","39.77526","-80.95282","Cameron","OH","Ohio","TRUE","","277","183.6","39111","Monroe","{""39111"": ""100""}","Monroe","39111","FALSE","FALSE","America/New_York"
-"43915","39.75982","-80.89765","Clarington","OH","Ohio","TRUE","","1188","8.6","39111","Monroe","{""39111"": ""100""}","Monroe","39111","FALSE","FALSE","America/New_York"
-"43917","40.22509","-80.80313","Dillonvale","OH","Ohio","TRUE","","3281","35.7","39081","Jefferson","{""39081"": ""84.12"", ""39013"": ""15.88""}","Jefferson|Belmont","39081|39013","FALSE","FALSE","America/New_York"
-"43920","40.67851","-80.5832","East Liverpool","OH","Ohio","TRUE","","22215","191.2","39029","Columbiana","{""39029"": ""100""}","Columbiana","39029","FALSE","FALSE","America/New_York"
-"43925","40.44783","-80.86232","East Springfield","OH","Ohio","TRUE","","149","481.1","39081","Jefferson","{""39081"": ""100""}","Jefferson","39081","FALSE","FALSE","America/New_York"
-"43926","40.50882","-80.62215","Empire","OH","Ohio","TRUE","","212","346.2","39081","Jefferson","{""39081"": ""100""}","Jefferson","39081","FALSE","FALSE","America/New_York"
-"43927","40.11881","-80.93644","Fairpoint","OH","Ohio","TRUE","","336","316.5","39013","Belmont","{""39013"": ""100""}","Belmont","39013","FALSE","FALSE","America/New_York"
-"43928","40.01032","-80.9075","Glencoe","OH","Ohio","TRUE","","129","37.8","39013","Belmont","{""39013"": ""100""}","Belmont","39013","FALSE","FALSE","America/New_York"
-"43930","40.56755","-80.76591","Hammondsville","OH","Ohio","TRUE","","815","8.4","39081","Jefferson","{""39081"": ""81.52"", ""39029"": ""18.48""}","Jefferson|Columbiana","39081|39029","FALSE","FALSE","America/New_York"
-"43931","39.67324","-80.87221","Hannibal","OH","Ohio","TRUE","","300","317.2","39111","Monroe","{""39111"": ""100""}","Monroe","39111","FALSE","FALSE","America/New_York"
-"43932","40.51682","-80.76198","Irondale","OH","Ohio","TRUE","","806","17.0","39081","Jefferson","{""39081"": ""100""}","Jefferson","39081","FALSE","FALSE","America/New_York"
-"43933","39.93718","-80.89439","Jacobsburg","OH","Ohio","TRUE","","1791","14.5","39013","Belmont","{""39013"": ""100""}","Belmont","39013","FALSE","FALSE","America/New_York"
-"43934","40.07815","-80.78999","Lansing","OH","Ohio","TRUE","","444","797.1","39013","Belmont","{""39013"": ""100""}","Belmont","39013","FALSE","FALSE","America/New_York"
-"43935","40.12589","-80.75137","Martins Ferry","OH","Ohio","TRUE","","8735","172.3","39013","Belmont","{""39013"": ""100""}","Belmont","39013","FALSE","FALSE","America/New_York"
-"43938","40.30374","-80.67252","Mingo Junction","OH","Ohio","TRUE","","5359","64.7","39081","Jefferson","{""39081"": ""100""}","Jefferson","39081","FALSE","FALSE","America/New_York"
-"43939","40.16719","-80.79996","Mount Pleasant","OH","Ohio","TRUE","","461","194.7","39081","Jefferson","{""39081"": ""100""}","Jefferson","39081","FALSE","FALSE","America/New_York"
-"43940","40.02877","-80.8234","Neffs","OH","Ohio","TRUE","","318","199.9","39013","Belmont","{""39013"": ""100""}","Belmont","39013","FALSE","FALSE","America/New_York"
-"43942","39.86364","-80.84882","Powhatan Point","OH","Ohio","TRUE","","2922","53.8","39013","Belmont","{""39013"": ""95.36"", ""39111"": ""4.64""}","Belmont|Monroe","39013|39111","FALSE","FALSE","America/New_York"
-"43943","40.22297","-80.72456","Rayland","OH","Ohio","TRUE","","2997","27.8","39081","Jefferson","{""39081"": ""98.91"", ""39013"": ""1.09""}","Jefferson|Belmont","39081|39013","FALSE","FALSE","America/New_York"
-"43944","40.43074","-80.77107","Richmond","OH","Ohio","TRUE","","2495","33.5","39081","Jefferson","{""39081"": ""100""}","Jefferson","39081","FALSE","FALSE","America/New_York"
-"43945","40.6324","-80.84359","Salineville","OH","Ohio","TRUE","","3236","19.2","39029","Columbiana","{""39029"": ""83.39"", ""39019"": ""12.72"", ""39081"": ""3.89""}","Columbiana|Carroll|Jefferson","39029|39019|39081","FALSE","FALSE","America/New_York"
-"43946","39.65071","-80.96512","Sardis","OH","Ohio","TRUE","","2259","14.8","39111","Monroe","{""39111"": ""100""}","Monroe","39111","FALSE","FALSE","America/New_York"
-"43947","39.9561","-80.78563","Shadyside","OH","Ohio","TRUE","","5310","120.6","39013","Belmont","{""39013"": ""100""}","Belmont","39013","FALSE","FALSE","America/New_York"
-"43948","40.27003","-80.77825","Smithfield","OH","Ohio","TRUE","","587","320.8","39081","Jefferson","{""39081"": ""100""}","Jefferson","39081","FALSE","FALSE","America/New_York"
-"43950","40.09619","-80.92587","Saint Clairsville","OH","Ohio","TRUE","","16329","71.9","39013","Belmont","{""39013"": ""99.39"", ""39067"": ""0.61""}","Belmont|Harrison","39013|39067","FALSE","FALSE","America/New_York"
-"43951","40.11082","-81.01164","Lafferty","OH","Ohio","TRUE","","44","115.4","39013","Belmont","{""39013"": ""100""}","Belmont","39013","FALSE","FALSE","America/New_York"
-"43952","40.39806","-80.66163","Steubenville","OH","Ohio","TRUE","","18103","271.7","39081","Jefferson","{""39081"": ""100""}","Jefferson","39081","FALSE","FALSE","America/New_York"
-"43953","40.35806","-80.7078","Steubenville","OH","Ohio","TRUE","","11713","249.1","39081","Jefferson","{""39081"": ""100""}","Jefferson","39081","FALSE","FALSE","America/New_York"
-"43961","40.52531","-80.62971","Stratton","OH","Ohio","TRUE","","385","363.4","39081","Jefferson","{""39081"": ""100""}","Jefferson","39081","FALSE","FALSE","America/New_York"
-"43962","40.67208","-80.87989","Summitville","OH","Ohio","TRUE","","92","27.6","39029","Columbiana","{""39029"": ""100""}","Columbiana","39029","FALSE","FALSE","America/New_York"
-"43963","40.17169","-80.69681","Tiltonsville","OH","Ohio","TRUE","","1406","1224.6","39081","Jefferson","{""39081"": ""100""}","Jefferson","39081","FALSE","FALSE","America/New_York"
-"43964","40.48617","-80.67064","Toronto","OH","Ohio","TRUE","","8727","70.8","39081","Jefferson","{""39081"": ""100""}","Jefferson","39081","FALSE","FALSE","America/New_York"
-"43967","40.02646","-80.94009","Warnock","OH","Ohio","TRUE","","0","0.0","39013","Belmont","{""39013"": ""100""}","Belmont","39013","FALSE","FALSE","America/New_York"
-"43968","40.63219","-80.68551","Wellsville","OH","Ohio","TRUE","","6283","70.8","39029","Columbiana","{""39029"": ""100""}","Columbiana","39029","FALSE","FALSE","America/New_York"
-"43970","40.46323","-80.8891","Wolf Run","OH","Ohio","TRUE","","25","54.2","39081","Jefferson","{""39081"": ""100""}","Jefferson","39081","FALSE","FALSE","America/New_York"
-"43971","40.15815","-80.71288","Yorkville","OH","Ohio","TRUE","","1037","327.7","39081","Jefferson","{""39081"": ""59.65"", ""39013"": ""40.35""}","Jefferson|Belmont","39081|39013","FALSE","FALSE","America/New_York"
-"43972","40.10163","-80.97496","Bannock","OH","Ohio","TRUE","","59","173.0","39013","Belmont","{""39013"": ""100""}","Belmont","39013","FALSE","FALSE","America/New_York"
-"43973","40.19412","-81.27181","Freeport","OH","Ohio","TRUE","","2383","10.2","39067","Harrison","{""39067"": ""57.41"", ""39059"": ""42.59""}","Harrison|Guernsey","39067|39059","FALSE","FALSE","America/New_York"
-"43974","40.18218","-80.88725","Harrisville","OH","Ohio","TRUE","","78","461.8","39067","Harrison","{""39067"": ""100""}","Harrison","39067","FALSE","FALSE","America/New_York"
-"43976","40.36522","-80.90873","Hopedale","OH","Ohio","TRUE","","1672","27.5","39067","Harrison","{""39067"": ""100""}","Harrison","39067","FALSE","FALSE","America/New_York"
-"43977","40.1398","-81.10357","Flushing","OH","Ohio","TRUE","","2152","18.1","39013","Belmont","{""39013"": ""94.6"", ""39067"": ""5.4""}","Belmont|Harrison","39013|39067","FALSE","FALSE","America/New_York"
-"43983","40.14151","-81.20541","Piedmont","OH","Ohio","TRUE","","442","8.3","39013","Belmont","{""39013"": ""55.91"", ""39067"": ""25.68"", ""39059"": ""18.41""}","Belmont|Harrison|Guernsey","39013|39067|39059","FALSE","FALSE","America/New_York"
-"43985","40.16587","-81.13445","Holloway","OH","Ohio","TRUE","","78","73.0","39013","Belmont","{""39013"": ""100""}","Belmont","39013","FALSE","FALSE","America/New_York"
-"43986","40.38015","-80.99374","Jewett","OH","Ohio","TRUE","","2200","21.2","39067","Harrison","{""39067"": ""99.09"", ""39019"": ""0.91""}","Harrison|Carroll","39067|39019","FALSE","FALSE","America/New_York"
-"43988","40.40284","-81.10267","Scio","OH","Ohio","TRUE","","2389","17.7","39067","Harrison","{""39067"": ""81.46"", ""39019"": ""18.54""}","Harrison|Carroll","39067|39019","FALSE","FALSE","America/New_York"
-"44001","41.36493","-82.26176","Amherst","OH","Ohio","TRUE","","21142","237.6","39093","Lorain","{""39093"": ""100""}","Lorain","39093","FALSE","FALSE","America/New_York"
-"44003","41.62142","-80.58599","Andover","OH","Ohio","TRUE","","4323","25.0","39007","Ashtabula","{""39007"": ""100""}","Ashtabula","39007","FALSE","FALSE","America/New_York"
-"44004","41.85338","-80.78859","Ashtabula","OH","Ohio","TRUE","","31498","168.0","39007","Ashtabula","{""39007"": ""100""}","Ashtabula","39007","FALSE","FALSE","America/New_York"
-"44010","41.76247","-80.85209","Austinburg","OH","Ohio","TRUE","","1533","31.0","39007","Ashtabula","{""39007"": ""100""}","Ashtabula","39007","FALSE","FALSE","America/New_York"
-"44011","41.44845","-82.01872","Avon","OH","Ohio","TRUE","","22999","426.8","39093","Lorain","{""39093"": ""100""}","Lorain","39093","FALSE","FALSE","America/New_York"
-"44012","41.49453","-82.01602","Avon Lake","OH","Ohio","TRUE","","24030","833.6","39093","Lorain","{""39093"": ""100""}","Lorain","39093","FALSE","FALSE","America/New_York"
-"44017","41.36865","-81.86317","Berea","OH","Ohio","TRUE","","18856","1183.4","39035","Cuyahoga","{""39035"": ""100""}","Cuyahoga","39035","FALSE","FALSE","America/New_York"
-"44021","41.44167","-81.14743","Burton","OH","Ohio","TRUE","","6080","57.4","39055","Geauga","{""39055"": ""100""}","Geauga","39055","FALSE","FALSE","America/New_York"
-"44022","41.44809","-81.40462","Chagrin Falls","OH","Ohio","TRUE","","16551","210.0","39035","Cuyahoga","{""39035"": ""67.67"", ""39055"": ""32.33""}","Cuyahoga|Geauga","39035|39055","FALSE","FALSE","America/New_York"
-"44023","41.38639","-81.29065","Chagrin Falls","OH","Ohio","TRUE","","17555","131.1","39055","Geauga","{""39055"": ""100""}","Geauga","39055","FALSE","FALSE","America/New_York"
-"44024","41.57663","-81.19262","Chardon","OH","Ohio","TRUE","","23905","102.2","39055","Geauga","{""39055"": ""98.87"", ""39085"": ""1.13""}","Geauga|Lake","39055|39085","FALSE","FALSE","America/New_York"
-"44026","41.53247","-81.33179","Chesterland","OH","Ohio","TRUE","","10967","148.8","39055","Geauga","{""39055"": ""100""}","Geauga","39055","FALSE","FALSE","America/New_York"
-"44028","41.31019","-81.939","Columbia Station","OH","Ohio","TRUE","","8938","104.0","39093","Lorain","{""39093"": ""100""}","Lorain","39093","FALSE","FALSE","America/New_York"
-"44030","41.89683","-80.58027","Conneaut","OH","Ohio","TRUE","","16165","105.3","39007","Ashtabula","{""39007"": ""100""}","Ashtabula","39007","FALSE","FALSE","America/New_York"
-"44032","41.66599","-80.6699","Dorset","OH","Ohio","TRUE","","1434","13.8","39007","Ashtabula","{""39007"": ""100""}","Ashtabula","39007","FALSE","FALSE","America/New_York"
-"44035","41.36515","-82.12938","Elyria","OH","Ohio","TRUE","","63333","512.1","39093","Lorain","{""39093"": ""100""}","Lorain","39093","FALSE","FALSE","America/New_York"
-"44039","41.3847","-82.0196","North Ridgeville","OH","Ohio","TRUE","","33462","546.1","39093","Lorain","{""39093"": ""100""}","Lorain","39093","FALSE","FALSE","America/New_York"
-"44040","41.53204","-81.41101","Gates Mills","OH","Ohio","TRUE","","2851","114.8","39035","Cuyahoga","{""39035"": ""100""}","Cuyahoga","39035","FALSE","FALSE","America/New_York"
-"44041","41.77579","-80.95137","Geneva","OH","Ohio","TRUE","","14399","86.1","39007","Ashtabula","{""39007"": ""99.41"", ""39085"": ""0.59""}","Ashtabula|Lake","39007|39085","FALSE","FALSE","America/New_York"
-"44044","41.26672","-82.04027","Grafton","OH","Ohio","TRUE","","15100","105.5","39093","Lorain","{""39093"": ""100""}","Lorain","39093","FALSE","FALSE","America/New_York"
-"44045","41.74619","-81.2836","Grand River","OH","Ohio","TRUE","","464","176.4","39085","Lake","{""39085"": ""100""}","Lake","39085","FALSE","FALSE","America/New_York"
-"44046","41.54269","-81.06935","Huntsburg","OH","Ohio","TRUE","","2650","66.4","39055","Geauga","{""39055"": ""100""}","Geauga","39055","FALSE","FALSE","America/New_York"
-"44047","41.71894","-80.73887","Jefferson","OH","Ohio","TRUE","","8661","31.7","39007","Ashtabula","{""39007"": ""100""}","Ashtabula","39007","FALSE","FALSE","America/New_York"
-"44048","41.84626","-80.64558","Kingsville","OH","Ohio","TRUE","","2477","31.4","39007","Ashtabula","{""39007"": ""100""}","Ashtabula","39007","FALSE","FALSE","America/New_York"
-"44049","41.26628","-82.3053","Kipton","OH","Ohio","TRUE","","240","258.9","39093","Lorain","{""39093"": ""100""}","Lorain","39093","FALSE","FALSE","America/New_York"
-"44050","41.24845","-82.13008","Lagrange","OH","Ohio","TRUE","","6517","98.8","39093","Lorain","{""39093"": ""100""}","Lorain","39093","FALSE","FALSE","America/New_York"
-"44052","41.45531","-82.16251","Lorain","OH","Ohio","TRUE","","29077","1217.0","39093","Lorain","{""39093"": ""100""}","Lorain","39093","FALSE","FALSE","America/New_York"
-"44053","41.42515","-82.22405","Lorain","OH","Ohio","TRUE","","19424","632.2","39093","Lorain","{""39093"": ""100""}","Lorain","39093","FALSE","FALSE","America/New_York"
-"44054","41.46438","-82.09318","Sheffield Lake","OH","Ohio","TRUE","","12647","390.4","39093","Lorain","{""39093"": ""100""}","Lorain","39093","FALSE","FALSE","America/New_York"
-"44055","41.43383","-82.13369","Lorain","OH","Ohio","TRUE","","18839","1094.6","39093","Lorain","{""39093"": ""100""}","Lorain","39093","FALSE","FALSE","America/New_York"
-"44056","41.31492","-81.49832","Macedonia","OH","Ohio","TRUE","","11873","467.4","39153","Summit","{""39153"": ""100""}","Summit","39153","FALSE","FALSE","America/New_York"
-"44057","41.76786","-81.0583","Madison","OH","Ohio","TRUE","","19486","150.7","39085","Lake","{""39085"": ""98.35"", ""39055"": ""1.45"", ""39007"": ""0.2""}","Lake|Geauga|Ashtabula","39085|39055|39007","FALSE","FALSE","America/New_York"
-"44060","41.678","-81.3285","Mentor","OH","Ohio","TRUE","","60134","585.0","39085","Lake","{""39085"": ""99.83"", ""39055"": ""0.17""}","Lake|Geauga","39085|39055","FALSE","FALSE","America/New_York"
-"44062","41.45764","-81.02602","Middlefield","OH","Ohio","TRUE","","14407","72.7","39055","Geauga","{""39055"": ""76.29"", ""39155"": ""21.27"", ""39007"": ""2.44""}","Geauga|Trumbull|Ashtabula","39055|39155|39007","FALSE","FALSE","America/New_York"
-"44064","41.60517","-81.04787","Montville","OH","Ohio","TRUE","","1655","28.4","39055","Geauga","{""39055"": ""98.43"", ""39007"": ""1.57""}","Geauga|Ashtabula","39055|39007","FALSE","FALSE","America/New_York"
-"44065","41.46337","-81.24302","Newbury","OH","Ohio","TRUE","","4554","80.7","39055","Geauga","{""39055"": ""100""}","Geauga","39055","FALSE","FALSE","America/New_York"
-"44067","41.31477","-81.54766","Northfield","OH","Ohio","TRUE","","20459","467.5","39153","Summit","{""39153"": ""100""}","Summit","39153","FALSE","FALSE","America/New_York"
-"44070","41.41504","-81.91891","North Olmsted","OH","Ohio","TRUE","","31744","1050.5","39035","Cuyahoga","{""39035"": ""100""}","Cuyahoga","39035","FALSE","FALSE","America/New_York"
-"44072","41.47175","-81.32795","Novelty","OH","Ohio","TRUE","","4422","91.1","39055","Geauga","{""39055"": ""100""}","Geauga","39055","FALSE","FALSE","America/New_York"
-"44074","41.28741","-82.2336","Oberlin","OH","Ohio","TRUE","","11487","89.6","39093","Lorain","{""39093"": ""100""}","Lorain","39093","FALSE","FALSE","America/New_York"
-"44076","41.52931","-80.82075","Orwell","OH","Ohio","TRUE","","5018","28.2","39007","Ashtabula","{""39007"": ""86.99"", ""39155"": ""13.01""}","Ashtabula|Trumbull","39007|39155","FALSE","FALSE","America/New_York"
-"44077","41.69943","-81.21074","Painesville","OH","Ohio","TRUE","","56579","359.8","39085","Lake","{""39085"": ""100""}","Lake","39085","FALSE","FALSE","America/New_York"
-"44080","41.36979","-81.05052","Parkman","OH","Ohio","TRUE","","143","55.4","39055","Geauga","{""39055"": ""100""}","Geauga","39055","FALSE","FALSE","America/New_York"
-"44081","41.7678","-81.14561","Perry","OH","Ohio","TRUE","","7137","135.0","39085","Lake","{""39085"": ""100""}","Lake","39085","FALSE","FALSE","America/New_York"
-"44082","41.76233","-80.56598","Pierpont","OH","Ohio","TRUE","","2690","30.7","39007","Ashtabula","{""39007"": ""100""}","Ashtabula","39007","FALSE","FALSE","America/New_York"
-"44084","41.67263","-80.89491","Rock Creek","OH","Ohio","TRUE","","3454","31.4","39007","Ashtabula","{""39007"": ""100""}","Ashtabula","39007","FALSE","FALSE","America/New_York"
-"44085","41.60526","-80.8709","Rome","OH","Ohio","TRUE","","3560","27.3","39007","Ashtabula","{""39007"": ""100""}","Ashtabula","39007","FALSE","FALSE","America/New_York"
-"44086","41.67511","-81.05788","Thompson","OH","Ohio","TRUE","","2381","33.3","39055","Geauga","{""39055"": ""87.37"", ""39085"": ""12.42"", ""39007"": ""0.21""}","Geauga|Lake|Ashtabula","39055|39085|39007","FALSE","FALSE","America/New_York"
-"44087","41.31796","-81.44017","Twinsburg","OH","Ohio","TRUE","","20845","459.7","39153","Summit","{""39153"": ""100""}","Summit","39153","FALSE","FALSE","America/New_York"
-"44089","41.38904","-82.36655","Vermilion","OH","Ohio","TRUE","","15672","175.2","39043","Erie","{""39043"": ""58.79"", ""39093"": ""41.21""}","Erie|Lorain","39043|39093","FALSE","FALSE","America/New_York"
-"44090","41.16738","-82.2296","Wellington","OH","Ohio","TRUE","","12096","44.9","39093","Lorain","{""39093"": ""100""}","Lorain","39093","FALSE","FALSE","America/New_York"
-"44092","41.598","-81.46842","Wickliffe","OH","Ohio","TRUE","","16812","869.3","39085","Lake","{""39085"": ""100""}","Lake","39085","FALSE","FALSE","America/New_York"
-"44093","41.53273","-80.61212","Williamsfield","OH","Ohio","TRUE","","1018","12.2","39007","Ashtabula","{""39007"": ""100""}","Ashtabula","39007","FALSE","FALSE","America/New_York"
-"44094","41.60995","-81.3799","Willoughby","OH","Ohio","TRUE","","35805","352.5","39085","Lake","{""39085"": ""100""}","Lake","39085","FALSE","FALSE","America/New_York"
-"44095","41.65238","-81.44214","Eastlake","OH","Ohio","TRUE","","33234","1413.9","39085","Lake","{""39085"": ""100""}","Lake","39085","FALSE","FALSE","America/New_York"
-"44099","41.55006","-80.97471","Windsor","OH","Ohio","TRUE","","2558","44.9","39007","Ashtabula","{""39007"": ""82.58"", ""39055"": ""17.42""}","Ashtabula|Geauga","39007|39055","FALSE","FALSE","America/New_York"
-"44101","41.48928","-81.66732","Cleveland","OH","Ohio","TRUE","","628","6945.1","39035","Cuyahoga","{""39035"": ""100""}","Cuyahoga","39035","FALSE","FALSE","America/New_York"
-"44102","41.47524","-81.73766","Cleveland","OH","Ohio","TRUE","","45906","2936.3","39035","Cuyahoga","{""39035"": ""100""}","Cuyahoga","39035","FALSE","FALSE","America/New_York"
-"44103","41.5172","-81.64237","Cleveland","OH","Ohio","TRUE","","15938","1410.8","39035","Cuyahoga","{""39035"": ""100""}","Cuyahoga","39035","FALSE","FALSE","America/New_York"
-"44104","41.48222","-81.62674","Cleveland","OH","Ohio","TRUE","","19814","1615.1","39035","Cuyahoga","{""39035"": ""100""}","Cuyahoga","39035","FALSE","FALSE","America/New_York"
-"44105","41.45064","-81.63024","Cleveland","OH","Ohio","TRUE","","36749","1619.4","39035","Cuyahoga","{""39035"": ""100""}","Cuyahoga","39035","FALSE","FALSE","America/New_York"
-"44106","41.50628","-81.60683","Cleveland","OH","Ohio","TRUE","","25309","2317.9","39035","Cuyahoga","{""39035"": ""100""}","Cuyahoga","39035","FALSE","FALSE","America/New_York"
-"44107","41.48243","-81.80106","Lakewood","OH","Ohio","TRUE","","50351","3520.5","39035","Cuyahoga","{""39035"": ""100""}","Cuyahoga","39035","FALSE","FALSE","America/New_York"
-"44108","41.54","-81.60842","Cleveland","OH","Ohio","TRUE","","21250","1933.6","39035","Cuyahoga","{""39035"": ""100""}","Cuyahoga","39035","FALSE","FALSE","America/New_York"
-"44109","41.44473","-81.69672","Cleveland","OH","Ohio","TRUE","","40056","2137.8","39035","Cuyahoga","{""39035"": ""100""}","Cuyahoga","39035","FALSE","FALSE","America/New_York"
-"44110","41.56416","-81.57098","Cleveland","OH","Ohio","TRUE","","18355","1676.0","39035","Cuyahoga","{""39035"": ""100""}","Cuyahoga","39035","FALSE","FALSE","America/New_York"
-"44111","41.45828","-81.78853","Cleveland","OH","Ohio","TRUE","","42378","2621.3","39035","Cuyahoga","{""39035"": ""100""}","Cuyahoga","39035","FALSE","FALSE","America/New_York"
-"44112","41.53569","-81.57368","Cleveland","OH","Ohio","TRUE","","21666","2069.2","39035","Cuyahoga","{""39035"": ""100""}","Cuyahoga","39035","FALSE","FALSE","America/New_York"
-"44113","41.48424","-81.69762","Cleveland","OH","Ohio","TRUE","","20310","2047.8","39035","Cuyahoga","{""39035"": ""100""}","Cuyahoga","39035","FALSE","FALSE","America/New_York"
-"44114","41.51449","-81.67561","Cleveland","OH","Ohio","TRUE","","6896","919.8","39035","Cuyahoga","{""39035"": ""100""}","Cuyahoga","39035","FALSE","FALSE","America/New_York"
-"44115","41.49215","-81.67108","Cleveland","OH","Ohio","TRUE","","8515","1485.5","39035","Cuyahoga","{""39035"": ""100""}","Cuyahoga","39035","FALSE","FALSE","America/New_York"
-"44116","41.47017","-81.85251","Rocky River","OH","Ohio","TRUE","","20239","1629.9","39035","Cuyahoga","{""39035"": ""100""}","Cuyahoga","39035","FALSE","FALSE","America/New_York"
-"44117","41.57149","-81.52679","Euclid","OH","Ohio","TRUE","","9768","988.6","39035","Cuyahoga","{""39035"": ""100""}","Cuyahoga","39035","FALSE","FALSE","America/New_York"
-"44118","41.50186","-81.5563","Cleveland","OH","Ohio","TRUE","","38893","2111.1","39035","Cuyahoga","{""39035"": ""100""}","Cuyahoga","39035","FALSE","FALSE","America/New_York"
-"44119","41.58736","-81.54704","Cleveland","OH","Ohio","TRUE","","13405","2456.7","39035","Cuyahoga","{""39035"": ""100""}","Cuyahoga","39035","FALSE","FALSE","America/New_York"
-"44120","41.47357","-81.57931","Cleveland","OH","Ohio","TRUE","","34902","2535.7","39035","Cuyahoga","{""39035"": ""100""}","Cuyahoga","39035","FALSE","FALSE","America/New_York"
-"44121","41.52647","-81.53214","Cleveland","OH","Ohio","TRUE","","32729","2014.5","39035","Cuyahoga","{""39035"": ""100""}","Cuyahoga","39035","FALSE","FALSE","America/New_York"
-"44122","41.47013","-81.51178","Beachwood","OH","Ohio","TRUE","","33115","969.8","39035","Cuyahoga","{""39035"": ""100""}","Cuyahoga","39035","FALSE","FALSE","America/New_York"
-"44123","41.60382","-81.52422","Euclid","OH","Ohio","TRUE","","17023","2551.2","39035","Cuyahoga","{""39035"": ""100""}","Cuyahoga","39035","FALSE","FALSE","America/New_York"
-"44124","41.50053","-81.46678","Cleveland","OH","Ohio","TRUE","","37341","990.4","39035","Cuyahoga","{""39035"": ""100""}","Cuyahoga","39035","FALSE","FALSE","America/New_York"
-"44125","41.40695","-81.6151","Cleveland","OH","Ohio","TRUE","","27743","753.3","39035","Cuyahoga","{""39035"": ""100""}","Cuyahoga","39035","FALSE","FALSE","America/New_York"
-"44126","41.44175","-81.85303","Cleveland","OH","Ohio","TRUE","","16262","1357.7","39035","Cuyahoga","{""39035"": ""100""}","Cuyahoga","39035","FALSE","FALSE","America/New_York"
-"44127","41.47157","-81.64914","Cleveland","OH","Ohio","TRUE","","4226","860.6","39035","Cuyahoga","{""39035"": ""100""}","Cuyahoga","39035","FALSE","FALSE","America/New_York"
-"44128","41.43761","-81.54027","Cleveland","OH","Ohio","TRUE","","28876","1326.3","39035","Cuyahoga","{""39035"": ""100""}","Cuyahoga","39035","FALSE","FALSE","America/New_York"
-"44129","41.38971","-81.73513","Cleveland","OH","Ohio","TRUE","","28592","1876.4","39035","Cuyahoga","{""39035"": ""100""}","Cuyahoga","39035","FALSE","FALSE","America/New_York"
-"44130","41.3778","-81.78683","Cleveland","OH","Ohio","TRUE","","49713","1120.2","39035","Cuyahoga","{""39035"": ""100""}","Cuyahoga","39035","FALSE","FALSE","America/New_York"
-"44131","41.38285","-81.65242","Independence","OH","Ohio","TRUE","","20422","490.3","39035","Cuyahoga","{""39035"": ""100""}","Cuyahoga","39035","FALSE","FALSE","America/New_York"
-"44132","41.60503","-81.49946","Euclid","OH","Ohio","TRUE","","13726","1685.4","39035","Cuyahoga","{""39035"": ""100""}","Cuyahoga","39035","FALSE","FALSE","America/New_York"
-"44133","41.31414","-81.74522","North Royalton","OH","Ohio","TRUE","","30092","548.5","39035","Cuyahoga","{""39035"": ""100""}","Cuyahoga","39035","FALSE","FALSE","America/New_York"
-"44134","41.38533","-81.70451","Cleveland","OH","Ohio","TRUE","","36580","1471.6","39035","Cuyahoga","{""39035"": ""100""}","Cuyahoga","39035","FALSE","FALSE","America/New_York"
-"44135","41.4257","-81.81966","Cleveland","OH","Ohio","TRUE","","27646","1058.3","39035","Cuyahoga","{""39035"": ""100""}","Cuyahoga","39035","FALSE","FALSE","America/New_York"
-"44136","41.31184","-81.81098","Strongsville","OH","Ohio","TRUE","","25804","732.1","39035","Cuyahoga","{""39035"": ""99.86"", ""39103"": ""0.14""}","Cuyahoga|Medina","39035|39103","FALSE","FALSE","America/New_York"
-"44137","41.40929","-81.56248","Maple Heights","OH","Ohio","TRUE","","22538","1681.5","39035","Cuyahoga","{""39035"": ""100""}","Cuyahoga","39035","FALSE","FALSE","America/New_York"
-"44138","41.37364","-81.9231","Olmsted Falls","OH","Ohio","TRUE","","22271","622.6","39035","Cuyahoga","{""39035"": ""100""}","Cuyahoga","39035","FALSE","FALSE","America/New_York"
-"44139","41.38326","-81.4444","Solon","OH","Ohio","TRUE","","24112","405.8","39035","Cuyahoga","{""39035"": ""100""}","Cuyahoga","39035","FALSE","FALSE","America/New_York"
-"44140","41.48509","-81.93143","Bay Village","OH","Ohio","TRUE","","15325","1296.0","39035","Cuyahoga","{""39035"": ""100""}","Cuyahoga","39035","FALSE","FALSE","America/New_York"
-"44141","41.30084","-81.61424","Brecksville","OH","Ohio","TRUE","","13785","224.7","39035","Cuyahoga","{""39035"": ""97.93"", ""39153"": ""2.07""}","Cuyahoga|Summit","39035|39153","FALSE","FALSE","America/New_York"
-"44142","41.40227","-81.82519","Brookpark","OH","Ohio","TRUE","","18562","937.5","39035","Cuyahoga","{""39035"": ""100""}","Cuyahoga","39035","FALSE","FALSE","America/New_York"
-"44143","41.5535","-81.47509","Cleveland","OH","Ohio","TRUE","","24085","661.1","39035","Cuyahoga","{""39035"": ""100""}","Cuyahoga","39035","FALSE","FALSE","America/New_York"
-"44144","41.43764","-81.74274","Cleveland","OH","Ohio","TRUE","","21512","1485.9","39035","Cuyahoga","{""39035"": ""100""}","Cuyahoga","39035","FALSE","FALSE","America/New_York"
-"44145","41.45244","-81.92945","Westlake","OH","Ohio","TRUE","","32275","782.4","39035","Cuyahoga","{""39035"": ""100""}","Cuyahoga","39035","FALSE","FALSE","America/New_York"
-"44146","41.38161","-81.53018","Bedford","OH","Ohio","TRUE","","29050","560.0","39035","Cuyahoga","{""39035"": ""100""}","Cuyahoga","39035","FALSE","FALSE","America/New_York"
-"44147","41.31914","-81.67871","Broadview Heights","OH","Ohio","TRUE","","19381","568.2","39035","Cuyahoga","{""39035"": ""100""}","Cuyahoga","39035","FALSE","FALSE","America/New_York"
-"44149","41.31341","-81.85617","Strongsville","OH","Ohio","TRUE","","18930","654.6","39035","Cuyahoga","{""39035"": ""100""}","Cuyahoga","39035","FALSE","FALSE","America/New_York"
-"44201","41.02682","-81.17928","Atwater","OH","Ohio","TRUE","","6955","49.1","39133","Portage","{""39133"": ""98.94"", ""39151"": ""1.06""}","Portage|Stark","39133|39151","FALSE","FALSE","America/New_York"
-"44202","41.31499","-81.3399","Aurora","OH","Ohio","TRUE","","20455","260.3","39133","Portage","{""39133"": ""83.41"", ""39153"": ""15.75"", ""39055"": ""0.84""}","Portage|Summit|Geauga","39133|39153|39055","FALSE","FALSE","America/New_York"
-"44203","41.02056","-81.62891","Barberton","OH","Ohio","TRUE","","40445","446.4","39153","Summit","{""39153"": ""99.69"", ""39103"": ""0.31""}","Summit|Medina","39153|39103","FALSE","FALSE","America/New_York"
-"44212","41.24342","-81.82951","Brunswick","OH","Ohio","TRUE","","44625","795.7","39103","Medina","{""39103"": ""100""}","Medina","39103","FALSE","FALSE","America/New_York"
-"44214","40.95263","-81.99851","Burbank","OH","Ohio","TRUE","","2520","35.6","39169","Wayne","{""39169"": ""90.13"", ""39103"": ""9.87""}","Wayne|Medina","39169|39103","FALSE","FALSE","America/New_York"
-"44215","41.07027","-81.89779","Chippewa Lake","OH","Ohio","TRUE","","2209","579.6","39103","Medina","{""39103"": ""100""}","Medina","39103","FALSE","FALSE","America/New_York"
-"44216","40.93914","-81.58506","Clinton","OH","Ohio","TRUE","","9353","155.5","39153","Summit","{""39153"": ""93.59"", ""39151"": ""6.41""}","Summit|Stark","39153|39151","FALSE","FALSE","America/New_York"
-"44217","40.95518","-81.91161","Creston","OH","Ohio","TRUE","","3583","48.0","39169","Wayne","{""39169"": ""92.44"", ""39103"": ""7.56""}","Wayne|Medina","39169|39103","FALSE","FALSE","America/New_York"
-"44221","41.13962","-81.47656","Cuyahoga Falls","OH","Ohio","TRUE","","29473","1750.9","39153","Summit","{""39153"": ""100""}","Summit","39153","FALSE","FALSE","America/New_York"
-"44223","41.17121","-81.53122","Cuyahoga Falls","OH","Ohio","TRUE","","17460","449.3","39153","Summit","{""39153"": ""100""}","Summit","39153","FALSE","FALSE","America/New_York"
-"44224","41.17668","-81.43881","Stow","OH","Ohio","TRUE","","39348","762.4","39153","Summit","{""39153"": ""99.9"", ""39133"": ""0.1""}","Summit|Portage","39153|39133","FALSE","FALSE","America/New_York"
-"44230","40.9633","-81.68996","Doylestown","OH","Ohio","TRUE","","8502","190.8","39169","Wayne","{""39169"": ""98.09"", ""39103"": ""1.91""}","Wayne|Medina","39169|39103","FALSE","FALSE","America/New_York"
-"44231","41.30653","-81.07238","Garrettsville","OH","Ohio","TRUE","","8922","70.1","39133","Portage","{""39133"": ""89.62"", ""39055"": ""10.38""}","Portage|Geauga","39133|39055","FALSE","FALSE","America/New_York"
-"44233","41.23941","-81.73512","Hinckley","OH","Ohio","TRUE","","7967","115.2","39103","Medina","{""39103"": ""100""}","Medina","39103","FALSE","FALSE","America/New_York"
-"44234","41.33498","-81.15758","Hiram","OH","Ohio","TRUE","","4173","65.1","39133","Portage","{""39133"": ""73.66"", ""39055"": ""26.34""}","Portage|Geauga","39133|39055","FALSE","FALSE","America/New_York"
-"44235","41.03146","-82.12449","Homerville","OH","Ohio","TRUE","","1894","29.2","39103","Medina","{""39103"": ""97.75"", ""39005"": ""2.25""}","Medina|Ashland","39103|39005","FALSE","FALSE","America/New_York"
-"44236","41.24769","-81.45094","Hudson","OH","Ohio","TRUE","","25426","288.2","39153","Summit","{""39153"": ""99.32"", ""39133"": ""0.68""}","Summit|Portage","39153|39133","FALSE","FALSE","America/New_York"
-"44240","41.13302","-81.34148","Kent","OH","Ohio","TRUE","","39521","379.3","39133","Portage","{""39133"": ""99.38"", ""39153"": ""0.62""}","Portage|Summit","39133|39153","FALSE","FALSE","America/New_York"
-"44241","41.23941","-81.3472","Streetsboro","OH","Ohio","TRUE","","16487","296.0","39133","Portage","{""39133"": ""100""}","Portage","39133","FALSE","FALSE","America/New_York"
-"44243","41.14798","-81.34119","Kent","OH","Ohio","TRUE","","4914","3923.9","39133","Portage","{""39133"": ""100""}","Portage","39133","FALSE","FALSE","America/New_York"
-"44250","41.02112","-81.43737","Lakemore","OH","Ohio","TRUE","","1009","871.7","39153","Summit","{""39153"": ""100""}","Summit","39153","FALSE","FALSE","America/New_York"
-"44251","41.02914","-81.92738","Westfield Center","OH","Ohio","TRUE","","958","255.5","39103","Medina","{""39103"": ""100""}","Medina","39103","FALSE","FALSE","America/New_York"
-"44253","41.1657","-82.03323","Litchfield","OH","Ohio","TRUE","","3094","48.5","39103","Medina","{""39103"": ""93.63"", ""39093"": ""6.37""}","Medina|Lorain","39103|39093","FALSE","FALSE","America/New_York"
-"44254","41.04413","-82.01481","Lodi","OH","Ohio","TRUE","","5049","74.2","39103","Medina","{""39103"": ""100""}","Medina","39103","FALSE","FALSE","America/New_York"
-"44255","41.28651","-81.22973","Mantua","OH","Ohio","TRUE","","8140","74.8","39133","Portage","{""39133"": ""100""}","Portage","39133","FALSE","FALSE","America/New_York"
-"44256","41.14011","-81.85904","Medina","OH","Ohio","TRUE","","63497","184.0","39103","Medina","{""39103"": ""99.83"", ""39093"": ""0.1"", ""39153"": ""0.08""}","Medina|Lorain|Summit","39103|39093|39153","FALSE","FALSE","America/New_York"
-"44260","41.03678","-81.34084","Mogadore","OH","Ohio","TRUE","","13054","152.2","39133","Portage","{""39133"": ""71.46"", ""39153"": ""21.49"", ""39151"": ""7.04""}","Portage|Summit|Stark","39133|39153|39151","FALSE","FALSE","America/New_York"
-"44262","41.14048","-81.43726","Munroe Falls","OH","Ohio","TRUE","","5017","841.4","39153","Summit","{""39153"": ""100""}","Summit","39153","FALSE","FALSE","America/New_York"
-"44264","41.22823","-81.54253","Peninsula","OH","Ohio","TRUE","","2885","52.2","39153","Summit","{""39153"": ""100""}","Summit","39153","FALSE","FALSE","America/New_York"
-"44265","41.03572","-81.2531","Randolph","OH","Ohio","TRUE","","0","0.0","39133","Portage","{""39133"": ""100""}","Portage","39133","FALSE","FALSE","America/New_York"
-"44266","41.16674","-81.20258","Ravenna","OH","Ohio","TRUE","","33549","141.1","39133","Portage","{""39133"": ""100""}","Portage","39133","FALSE","FALSE","America/New_York"
-"44270","40.96055","-81.77806","Rittman","OH","Ohio","TRUE","","8711","161.2","39169","Wayne","{""39169"": ""92.64"", ""39103"": ""7.36""}","Wayne|Medina","39169|39103","FALSE","FALSE","America/New_York"
-"44272","41.08801","-81.18335","Rootstown","OH","Ohio","TRUE","","5343","92.0","39133","Portage","{""39133"": ""100""}","Portage","39133","FALSE","FALSE","America/New_York"
-"44273","41.02751","-81.87623","Seville","OH","Ohio","TRUE","","7331","73.0","39103","Medina","{""39103"": ""98.88"", ""39169"": ""1.12""}","Medina|Wayne","39103|39169","FALSE","FALSE","America/New_York"
-"44274","41.09834","-81.73264","Sharon Center","OH","Ohio","TRUE","","162","144.7","39103","Medina","{""39103"": ""100""}","Medina","39103","FALSE","FALSE","America/New_York"
-"44275","41.10151","-82.09938","Spencer","OH","Ohio","TRUE","","3387","33.9","39103","Medina","{""39103"": ""97.73"", ""39093"": ""2.27""}","Medina|Lorain","39103|39093","FALSE","FALSE","America/New_York"
-"44276","40.93616","-81.83617","Sterling","OH","Ohio","TRUE","","1899","38.7","39169","Wayne","{""39169"": ""100""}","Wayne","39169","FALSE","FALSE","America/New_York"
-"44278","41.10158","-81.42166","Tallmadge","OH","Ohio","TRUE","","17978","467.9","39153","Summit","{""39153"": ""97.3"", ""39133"": ""2.7""}","Summit|Portage","39153|39133","FALSE","FALSE","America/New_York"
-"44280","41.23896","-81.92381","Valley City","OH","Ohio","TRUE","","4484","70.7","39103","Medina","{""39103"": ""97.98"", ""39093"": ""2.02""}","Medina|Lorain","39103|39093","FALSE","FALSE","America/New_York"
-"44281","41.05858","-81.73834","Wadsworth","OH","Ohio","TRUE","","32280","261.1","39103","Medina","{""39103"": ""99.55"", ""39153"": ""0.45""}","Medina|Summit","39103|39153","FALSE","FALSE","America/New_York"
-"44285","41.15976","-81.07151","Wayland","OH","Ohio","TRUE","","35","97.6","39133","Portage","{""39133"": ""100""}","Portage","39133","FALSE","FALSE","America/New_York"
-"44286","41.23687","-81.64062","Richfield","OH","Ohio","TRUE","","6126","98.9","39153","Summit","{""39153"": ""100""}","Summit","39153","FALSE","FALSE","America/New_York"
-"44287","40.93909","-82.10109","West Salem","OH","Ohio","TRUE","","7793","45.0","39169","Wayne","{""39169"": ""60.09"", ""39005"": ""35.03"", ""39103"": ""4.88""}","Wayne|Ashland|Medina","39169|39005|39103","FALSE","FALSE","America/New_York"
-"44288","41.23861","-81.08434","Windham","OH","Ohio","TRUE","","3542","83.4","39133","Portage","{""39133"": ""100""}","Portage","39133","FALSE","FALSE","America/New_York"
-"44301","41.04388","-81.52455","Akron","OH","Ohio","TRUE","","15044","1643.6","39153","Summit","{""39153"": ""100""}","Summit","39153","FALSE","FALSE","America/New_York"
-"44302","41.08955","-81.53883","Akron","OH","Ohio","TRUE","","4489","1846.2","39153","Summit","{""39153"": ""100""}","Summit","39153","FALSE","FALSE","America/New_York"
-"44303","41.10467","-81.53685","Akron","OH","Ohio","TRUE","","7899","1321.2","39153","Summit","{""39153"": ""100""}","Summit","39153","FALSE","FALSE","America/New_York"
-"44304","41.08306","-81.5078","Akron","OH","Ohio","TRUE","","5018","1285.0","39153","Summit","{""39153"": ""100""}","Summit","39153","FALSE","FALSE","America/New_York"
-"44305","41.07587","-81.4614","Akron","OH","Ohio","TRUE","","22940","1358.2","39153","Summit","{""39153"": ""100""}","Summit","39153","FALSE","FALSE","America/New_York"
-"44306","41.03937","-81.4832","Akron","OH","Ohio","TRUE","","21711","1011.4","39153","Summit","{""39153"": ""100""}","Summit","39153","FALSE","FALSE","America/New_York"
-"44307","41.07044","-81.54631","Akron","OH","Ohio","TRUE","","6413","1289.1","39153","Summit","{""39153"": ""100""}","Summit","39153","FALSE","FALSE","America/New_York"
-"44308","41.08164","-81.51709","Akron","OH","Ohio","TRUE","","1110","871.0","39153","Summit","{""39153"": ""100""}","Summit","39153","FALSE","FALSE","America/New_York"
-"44310","41.1066","-81.4971","Akron","OH","Ohio","TRUE","","26135","1680.3","39153","Summit","{""39153"": ""100""}","Summit","39153","FALSE","FALSE","America/New_York"
-"44311","41.06427","-81.52086","Akron","OH","Ohio","TRUE","","8062","1630.7","39153","Summit","{""39153"": ""100""}","Summit","39153","FALSE","FALSE","America/New_York"
-"44312","41.01539","-81.44085","Akron","OH","Ohio","TRUE","","31460","633.9","39153","Summit","{""39153"": ""99.88"", ""39133"": ""0.12""}","Summit|Portage","39153|39133","FALSE","FALSE","America/New_York"
-"44313","41.13281","-81.56452","Akron","OH","Ohio","TRUE","","25730","720.8","39153","Summit","{""39153"": ""100""}","Summit","39153","FALSE","FALSE","America/New_York"
-"44314","41.0406","-81.55858","Akron","OH","Ohio","TRUE","","19014","1674.5","39153","Summit","{""39153"": ""100""}","Summit","39153","FALSE","FALSE","America/New_York"
-"44319","40.98304","-81.53167","Akron","OH","Ohio","TRUE","","22542","463.6","39153","Summit","{""39153"": ""100""}","Summit","39153","FALSE","FALSE","America/New_York"
-"44320","41.07835","-81.58332","Akron","OH","Ohio","TRUE","","18554","734.7","39153","Summit","{""39153"": ""100""}","Summit","39153","FALSE","FALSE","America/New_York"
-"44321","41.09891","-81.65131","Akron","OH","Ohio","TRUE","","15349","390.4","39153","Summit","{""39153"": ""99.63"", ""39103"": ""0.38""}","Summit|Medina","39153|39103","FALSE","FALSE","America/New_York"
-"44333","41.16193","-81.63287","Akron","OH","Ohio","TRUE","","18769","260.0","39153","Summit","{""39153"": ""99.8"", ""39103"": ""0.2""}","Summit|Medina","39153|39103","FALSE","FALSE","America/New_York"
-"44401","41.02259","-80.94521","Berlin Center","OH","Ohio","TRUE","","2868","34.4","39099","Mahoning","{""39099"": ""100""}","Mahoning","39099","FALSE","FALSE","America/New_York"
-"44402","41.38663","-80.85424","Bristolville","OH","Ohio","TRUE","","3278","35.0","39155","Trumbull","{""39155"": ""100""}","Trumbull","39155","FALSE","FALSE","America/New_York"
-"44403","41.24042","-80.58148","Brookfield","OH","Ohio","TRUE","","3920","104.9","39155","Trumbull","{""39155"": ""100""}","Trumbull","39155","FALSE","FALSE","America/New_York"
-"44404","41.32651","-80.54998","Burghill","OH","Ohio","TRUE","","1583","35.8","39155","Trumbull","{""39155"": ""100""}","Trumbull","39155","FALSE","FALSE","America/New_York"
-"44405","41.07769","-80.59186","Campbell","OH","Ohio","TRUE","","7895","866.7","39099","Mahoning","{""39099"": ""100""}","Mahoning","39099","FALSE","FALSE","America/New_York"
-"44406","41.01105","-80.77222","Canfield","OH","Ohio","TRUE","","21394","155.3","39099","Mahoning","{""39099"": ""100""}","Mahoning","39099","FALSE","FALSE","America/New_York"
-"44408","40.88615","-80.68651","Columbiana","OH","Ohio","TRUE","","9654","104.7","39029","Columbiana","{""39029"": ""78.7"", ""39099"": ""21.3""}","Columbiana|Mahoning","39029|39099","FALSE","FALSE","America/New_York"
-"44410","41.34928","-80.72414","Cortland","OH","Ohio","TRUE","","16901","95.9","39155","Trumbull","{""39155"": ""100""}","Trumbull","39155","FALSE","FALSE","America/New_York"
-"44411","41.035","-81.04871","Deerfield","OH","Ohio","TRUE","","2208","47.8","39133","Portage","{""39133"": ""100""}","Portage","39133","FALSE","FALSE","America/New_York"
-"44412","41.09396","-81.02478","Diamond","OH","Ohio","TRUE","","2492","42.1","39133","Portage","{""39133"": ""83.93"", ""39099"": ""16.07""}","Portage|Mahoning","39133|39099","FALSE","FALSE","America/New_York"
-"44413","40.84785","-80.55409","East Palestine","OH","Ohio","TRUE","","7176","116.8","39029","Columbiana","{""39029"": ""100""}","Columbiana","39029","FALSE","FALSE","America/New_York"
-"44417","41.43634","-80.66387","Farmdale","OH","Ohio","TRUE","","1847","21.4","39155","Trumbull","{""39155"": ""100""}","Trumbull","39155","FALSE","FALSE","America/New_York"
-"44418","41.3074","-80.60347","Fowler","OH","Ohio","TRUE","","1189","26.3","39155","Trumbull","{""39155"": ""100""}","Trumbull","39155","FALSE","FALSE","America/New_York"
-"44420","41.17326","-80.68007","Girard","OH","Ohio","TRUE","","14774","364.8","39155","Trumbull","{""39155"": ""100""}","Trumbull","39155","FALSE","FALSE","America/New_York"
-"44423","40.75272","-80.9008","Hanoverton","OH","Ohio","TRUE","","2495","35.2","39029","Columbiana","{""39029"": ""100""}","Columbiana","39029","FALSE","FALSE","America/New_York"
-"44425","41.17053","-80.57383","Hubbard","OH","Ohio","TRUE","","14069","175.9","39155","Trumbull","{""39155"": ""99.23"", ""39099"": ""0.77""}","Trumbull|Mahoning","39155|39099","FALSE","FALSE","America/New_York"
-"44427","40.71629","-80.95635","Kensington","OH","Ohio","TRUE","","1458","18.4","39029","Columbiana","{""39029"": ""60.55"", ""39019"": ""39.45""}","Columbiana|Carroll","39029|39019","FALSE","FALSE","America/New_York"
-"44428","41.4361","-80.57854","Kinsman","OH","Ohio","TRUE","","3061","21.7","39155","Trumbull","{""39155"": ""98.12"", ""39007"": ""1.88""}","Trumbull|Ashtabula","39155|39007","FALSE","FALSE","America/New_York"
-"44429","41.09715","-80.98165","Lake Milton","OH","Ohio","TRUE","","2629","156.2","39099","Mahoning","{""39099"": ""97.52"", ""39133"": ""2.48""}","Mahoning|Portage","39099|39133","FALSE","FALSE","America/New_York"
-"44430","41.24069","-80.90784","Leavittsburg","OH","Ohio","TRUE","","4698","132.8","39155","Trumbull","{""39155"": ""100""}","Trumbull","39155","FALSE","FALSE","America/New_York"
-"44431","40.8483","-80.75416","Leetonia","OH","Ohio","TRUE","","4491","66.0","39029","Columbiana","{""39029"": ""100""}","Columbiana","39029","FALSE","FALSE","America/New_York"
-"44432","40.75011","-80.75814","Lisbon","OH","Ohio","TRUE","","12969","48.5","39029","Columbiana","{""39029"": ""100""}","Columbiana","39029","FALSE","FALSE","America/New_York"
-"44436","41.05947","-80.54332","Lowellville","OH","Ohio","TRUE","","3796","63.3","39099","Mahoning","{""39099"": ""100""}","Mahoning","39099","FALSE","FALSE","America/New_York"
-"44437","41.15582","-80.73122","McDonald","OH","Ohio","TRUE","","4229","413.0","39155","Trumbull","{""39155"": ""97.77"", ""39099"": ""2.23""}","Trumbull|Mahoning","39155|39099","FALSE","FALSE","America/New_York"
-"44438","41.24234","-80.53365","Masury","OH","Ohio","TRUE","","4360","199.6","39155","Trumbull","{""39155"": ""100""}","Trumbull","39155","FALSE","FALSE","America/New_York"
-"44439","41.4558","-80.95638","Mesopotamia","OH","Ohio","TRUE","","165","365.1","39155","Trumbull","{""39155"": ""100""}","Trumbull","39155","FALSE","FALSE","America/New_York"
-"44440","41.14835","-80.78377","Mineral Ridge","OH","Ohio","TRUE","","4764","220.4","39155","Trumbull","{""39155"": ""75.84"", ""39099"": ""24.16""}","Trumbull|Mahoning","39155|39099","FALSE","FALSE","America/New_York"
-"44441","40.75795","-80.55297","Negley","OH","Ohio","TRUE","","1803","43.4","39029","Columbiana","{""39029"": ""100""}","Columbiana","39029","FALSE","FALSE","America/New_York"
-"44442","40.96613","-80.54925","New Middletown","OH","Ohio","TRUE","","3952","174.1","39099","Mahoning","{""39099"": ""100""}","Mahoning","39099","FALSE","FALSE","America/New_York"
-"44443","40.9244","-80.59836","New Springfield","OH","Ohio","TRUE","","1753","52.7","39099","Mahoning","{""39099"": ""96.13"", ""39029"": ""3.87""}","Mahoning|Columbiana","39099|39029","FALSE","FALSE","America/New_York"
-"44444","41.17342","-80.97525","Newton Falls","OH","Ohio","TRUE","","9776","88.5","39155","Trumbull","{""39155"": ""87.93"", ""39133"": ""9.05"", ""39099"": ""3.02""}","Trumbull|Portage|Mahoning","39155|39133|39099","FALSE","FALSE","America/New_York"
-"44445","40.84865","-80.61804","New Waterford","OH","Ohio","TRUE","","3610","84.1","39029","Columbiana","{""39029"": ""100""}","Columbiana","39029","FALSE","FALSE","America/New_York"
-"44446","41.18996","-80.7496","Niles","OH","Ohio","TRUE","","20151","573.8","39155","Trumbull","{""39155"": ""100""}","Trumbull","39155","FALSE","FALSE","America/New_York"
-"44449","40.98034","-81.03356","North Benton","OH","Ohio","TRUE","","1313","42.8","39099","Mahoning","{""39099"": ""53.06"", ""39133"": ""46.94""}","Mahoning|Portage","39099|39133","FALSE","FALSE","America/New_York"
-"44450","41.45519","-80.82992","North Bloomfield","OH","Ohio","TRUE","","2014","17.0","39155","Trumbull","{""39155"": ""100""}","Trumbull","39155","FALSE","FALSE","America/New_York"
-"44451","41.0812","-80.86852","North Jackson","OH","Ohio","TRUE","","2702","27.8","39099","Mahoning","{""39099"": ""100""}","Mahoning","39099","FALSE","FALSE","America/New_York"
-"44452","40.9477","-80.66169","North Lima","OH","Ohio","TRUE","","3622","104.7","39099","Mahoning","{""39099"": ""100""}","Mahoning","39099","FALSE","FALSE","America/New_York"
-"44454","40.92002","-80.54298","Petersburg","OH","Ohio","TRUE","","1097","51.1","39099","Mahoning","{""39099"": ""93.15"", ""39029"": ""6.85""}","Mahoning|Columbiana","39099|39029","FALSE","FALSE","America/New_York"
-"44455","40.77658","-80.6101","Rogers","OH","Ohio","TRUE","","1699","31.8","39029","Columbiana","{""39029"": ""100""}","Columbiana","39029","FALSE","FALSE","America/New_York"
-"44460","40.89921","-80.87055","Salem","OH","Ohio","TRUE","","25232","89.1","39029","Columbiana","{""39029"": ""81.18"", ""39099"": ""18.82""}","Columbiana|Mahoning","39029|39099","FALSE","FALSE","America/New_York"
-"44470","41.29776","-80.96182","Southington","OH","Ohio","TRUE","","3893","56.2","39155","Trumbull","{""39155"": ""100""}","Trumbull","39155","FALSE","FALSE","America/New_York"
-"44471","41.04848","-80.58968","Struthers","OH","Ohio","TRUE","","10618","933.8","39099","Mahoning","{""39099"": ""100""}","Mahoning","39099","FALSE","FALSE","America/New_York"
-"44473","41.24616","-80.66249","Vienna","OH","Ohio","TRUE","","3287","52.7","39155","Trumbull","{""39155"": ""100""}","Trumbull","39155","FALSE","FALSE","America/New_York"
-"44481","41.22718","-80.86405","Warren","OH","Ohio","TRUE","","9441","63.6","39155","Trumbull","{""39155"": ""98.72"", ""39099"": ""1.28""}","Trumbull|Mahoning","39155|39099","FALSE","FALSE","America/New_York"
-"44483","41.26542","-80.81576","Warren","OH","Ohio","TRUE","","24862","527.1","39155","Trumbull","{""39155"": ""100""}","Trumbull","39155","FALSE","FALSE","America/New_York"
-"44484","41.23521","-80.74905","Warren","OH","Ohio","TRUE","","21347","471.6","39155","Trumbull","{""39155"": ""100""}","Trumbull","39155","FALSE","FALSE","America/New_York"
-"44485","41.24042","-80.84612","Warren","OH","Ohio","TRUE","","15850","795.3","39155","Trumbull","{""39155"": ""100""}","Trumbull","39155","FALSE","FALSE","America/New_York"
-"44490","40.8999","-80.76806","Washingtonville","OH","Ohio","TRUE","","903","461.1","39029","Columbiana","{""39029"": ""56.14"", ""39099"": ""43.86""}","Columbiana|Mahoning","39029|39099","FALSE","FALSE","America/New_York"
-"44491","41.37502","-80.96429","West Farmington","OH","Ohio","TRUE","","3462","45.0","39155","Trumbull","{""39155"": ""84.5"", ""39055"": ""14.74"", ""39133"": ""0.77""}","Trumbull|Geauga|Portage","39155|39055|39133","FALSE","FALSE","America/New_York"
-"44493","40.82502","-80.88864","Winona","OH","Ohio","TRUE","","56","86.3","39029","Columbiana","{""39029"": ""100""}","Columbiana","39029","FALSE","FALSE","America/New_York"
-"44502","41.08438","-80.64246","Youngstown","OH","Ohio","TRUE","","9224","635.5","39099","Mahoning","{""39099"": ""100""}","Mahoning","39099","FALSE","FALSE","America/New_York"
-"44503","41.09917","-80.64895","Youngstown","OH","Ohio","TRUE","","1020","876.1","39099","Mahoning","{""39099"": ""100""}","Mahoning","39099","FALSE","FALSE","America/New_York"
-"44504","41.12356","-80.65365","Youngstown","OH","Ohio","TRUE","","4787","1482.4","39099","Mahoning","{""39099"": ""96.64"", ""39155"": ""3.36""}","Mahoning|Trumbull","39099|39155","FALSE","FALSE","America/New_York"
-"44505","41.12798","-80.6196","Youngstown","OH","Ohio","TRUE","","17319","382.1","39099","Mahoning","{""39099"": ""63.75"", ""39155"": ""36.25""}","Mahoning|Trumbull","39099|39155","FALSE","FALSE","America/New_York"
-"44506","41.09355","-80.62606","Youngstown","OH","Ohio","TRUE","","2853","611.5","39099","Mahoning","{""39099"": ""100""}","Mahoning","39099","FALSE","FALSE","America/New_York"
-"44507","41.07441","-80.65525","Youngstown","OH","Ohio","TRUE","","5346","1187.0","39099","Mahoning","{""39099"": ""100""}","Mahoning","39099","FALSE","FALSE","America/New_York"
-"44509","41.10805","-80.69644","Youngstown","OH","Ohio","TRUE","","12370","874.8","39099","Mahoning","{""39099"": ""100""}","Mahoning","39099","FALSE","FALSE","America/New_York"
-"44510","41.12273","-80.67413","Youngstown","OH","Ohio","TRUE","","2654","537.7","39099","Mahoning","{""39099"": ""100""}","Mahoning","39099","FALSE","FALSE","America/New_York"
-"44511","41.06953","-80.69565","Youngstown","OH","Ohio","TRUE","","20199","1049.8","39099","Mahoning","{""39099"": ""100""}","Mahoning","39099","FALSE","FALSE","America/New_York"
-"44512","41.02498","-80.66778","Youngstown","OH","Ohio","TRUE","","32692","732.7","39099","Mahoning","{""39099"": ""100""}","Mahoning","39099","FALSE","FALSE","America/New_York"
-"44514","40.99893","-80.60809","Youngstown","OH","Ohio","TRUE","","21737","389.3","39099","Mahoning","{""39099"": ""100""}","Mahoning","39099","FALSE","FALSE","America/New_York"
-"44515","41.10123","-80.76375","Youngstown","OH","Ohio","TRUE","","26574","534.9","39099","Mahoning","{""39099"": ""100""}","Mahoning","39099","FALSE","FALSE","America/New_York"
-"44601","40.91936","-81.13023","Alliance","OH","Ohio","TRUE","","34618","163.5","39151","Stark","{""39151"": ""91.72"", ""39029"": ""4.2"", ""39099"": ""4.08""}","Stark|Columbiana|Mahoning","39151|39029|39099","FALSE","FALSE","America/New_York"
-"44606","40.73165","-81.79763","Apple Creek","OH","Ohio","TRUE","","8517","78.4","39169","Wayne","{""39169"": ""100""}","Wayne","39169","FALSE","FALSE","America/New_York"
-"44607","40.68949","-81.02581","Augusta","OH","Ohio","TRUE","","161","29.7","39019","Carroll","{""39019"": ""100""}","Carroll","39019","FALSE","FALSE","America/New_York"
-"44608","40.65394","-81.59493","Beach City","OH","Ohio","TRUE","","2242","39.9","39151","Stark","{""39151"": ""83.95"", ""39157"": ""16.05""}","Stark|Tuscarawas","39151|39157","FALSE","FALSE","America/New_York"
-"44609","40.91729","-80.98799","Beloit","OH","Ohio","TRUE","","3747","48.2","39099","Mahoning","{""39099"": ""59.62"", ""39029"": ""40.38""}","Mahoning|Columbiana","39099|39029","FALSE","FALSE","America/New_York"
-"44610","40.55952","-81.79983","Berlin","OH","Ohio","TRUE","","170","368.8","39075","Holmes","{""39075"": ""100""}","Holmes","39075","FALSE","FALSE","America/New_York"
-"44611","40.60452","-82.08586","Big Prairie","OH","Ohio","TRUE","","2056","27.3","39075","Holmes","{""39075"": ""95.46"", ""39169"": ""4.54""}","Holmes|Wayne","39075|39169","FALSE","FALSE","America/New_York"
-"44612","40.63595","-81.4596","Bolivar","OH","Ohio","TRUE","","5423","81.5","39157","Tuscarawas","{""39157"": ""96.05"", ""39151"": ""3.95""}","Tuscarawas|Stark","39157|39151","FALSE","FALSE","America/New_York"
-"44613","40.71367","-81.60024","Brewster","OH","Ohio","TRUE","","2086","415.2","39151","Stark","{""39151"": ""100""}","Stark","39151","FALSE","FALSE","America/New_York"
-"44614","40.88707","-81.58627","Canal Fulton","OH","Ohio","TRUE","","12597","217.1","39151","Stark","{""39151"": ""98.52"", ""39153"": ""1.48""}","Stark|Summit","39151|39153","FALSE","FALSE","America/New_York"
-"44615","40.56509","-81.07428","Carrollton","OH","Ohio","TRUE","","9662","25.9","39019","Carroll","{""39019"": ""100""}","Carroll","39019","FALSE","FALSE","America/New_York"
-"44618","40.77268","-81.68897","Dalton","OH","Ohio","TRUE","","6711","61.4","39169","Wayne","{""39169"": ""92.42"", ""39151"": ""7.58""}","Wayne|Stark","39169|39151","FALSE","FALSE","America/New_York"
-"44620","40.58266","-81.21376","Dellroy","OH","Ohio","TRUE","","1833","31.1","39019","Carroll","{""39019"": ""100""}","Carroll","39019","FALSE","FALSE","America/New_York"
-"44621","40.42753","-81.29587","Dennison","OH","Ohio","TRUE","","4406","56.3","39157","Tuscarawas","{""39157"": ""94.49"", ""39067"": ""4.46"", ""39019"": ""1.06""}","Tuscarawas|Harrison|Carroll","39157|39067|39019","FALSE","FALSE","America/New_York"
-"44622","40.54871","-81.47896","Dover","OH","Ohio","TRUE","","18112","127.7","39157","Tuscarawas","{""39157"": ""100""}","Tuscarawas","39157","FALSE","FALSE","America/New_York"
-"44624","40.61132","-81.66097","Dundee","OH","Ohio","TRUE","","5400","42.7","39075","Holmes","{""39075"": ""53.07"", ""39157"": ""36"", ""39169"": ""10.93""}","Holmes|Tuscarawas|Wayne","39075|39157|39169","FALSE","FALSE","America/New_York"
-"44625","40.76108","-81.00001","East Rochester","OH","Ohio","TRUE","","1693","34.5","39029","Columbiana","{""39029"": ""84.49"", ""39019"": ""15.51""}","Columbiana|Carroll","39029|39019","FALSE","FALSE","America/New_York"
-"44626","40.68963","-81.38377","East Sparta","OH","Ohio","TRUE","","2811","39.5","39151","Stark","{""39151"": ""98.56"", ""39157"": ""1.44""}","Stark|Tuscarawas","39151|39157","FALSE","FALSE","America/New_York"
-"44627","40.66603","-81.83249","Fredericksburg","OH","Ohio","TRUE","","7177","59.6","39169","Wayne","{""39169"": ""56.14"", ""39075"": ""43.86""}","Wayne|Holmes","39169|39075","FALSE","FALSE","America/New_York"
-"44628","40.53714","-82.16453","Glenmont","OH","Ohio","TRUE","","832","8.3","39075","Holmes","{""39075"": ""77.41"", ""39083"": ""22.59""}","Holmes|Knox","39075|39083","FALSE","FALSE","America/New_York"
-"44629","40.35645","-81.44614","Gnadenhutten","OH","Ohio","TRUE","","2541","47.9","39157","Tuscarawas","{""39157"": ""100""}","Tuscarawas","39157","FALSE","FALSE","America/New_York"
-"44632","40.96379","-81.30667","Hartville","OH","Ohio","TRUE","","9670","136.5","39151","Stark","{""39151"": ""94.72"", ""39133"": ""5.28""}","Stark|Portage","39151|39133","FALSE","FALSE","America/New_York"
-"44633","40.63139","-81.93415","Holmesville","OH","Ohio","TRUE","","2423","40.6","39075","Holmes","{""39075"": ""100""}","Holmes","39075","FALSE","FALSE","America/New_York"
-"44634","40.83417","-81.04793","Homeworth","OH","Ohio","TRUE","","1847","37.5","39029","Columbiana","{""39029"": ""75.46"", ""39151"": ""24.54""}","Columbiana|Stark","39029|39151","FALSE","FALSE","America/New_York"
-"44637","40.48315","-82.03372","Killbuck","OH","Ohio","TRUE","","3000","20.9","39075","Holmes","{""39075"": ""89.31"", ""39031"": ""10.69""}","Holmes|Coshocton","39075|39031","FALSE","FALSE","America/New_York"
-"44638","40.64822","-82.13607","Lakeville","OH","Ohio","TRUE","","1434","19.7","39075","Holmes","{""39075"": ""78.62"", ""39005"": ""16.43"", ""39169"": ""4.94""}","Holmes|Ashland|Wayne","39075|39005|39169","FALSE","FALSE","America/New_York"
-"44640","40.98445","-81.14861","Limaville","OH","Ohio","TRUE","","238","391.2","39151","Stark","{""39151"": ""100""}","Stark","39151","FALSE","FALSE","America/New_York"
-"44641","40.86582","-81.24172","Louisville","OH","Ohio","TRUE","","20221","144.1","39151","Stark","{""39151"": ""100""}","Stark","39151","FALSE","FALSE","America/New_York"
-"44643","40.63965","-81.30086","Magnolia","OH","Ohio","TRUE","","3949","46.6","39151","Stark","{""39151"": ""47.45"", ""39157"": ""28.68"", ""39019"": ""23.87""}","Stark|Tuscarawas|Carroll","39151|39157|39019","FALSE","FALSE","America/New_York"
-"44644","40.68776","-81.17665","Malvern","OH","Ohio","TRUE","","4790","83.5","39019","Carroll","{""39019"": ""100""}","Carroll","39019","FALSE","FALSE","America/New_York"
-"44645","40.90888","-81.71655","Marshallville","OH","Ohio","TRUE","","2530","39.4","39169","Wayne","{""39169"": ""100""}","Wayne","39169","FALSE","FALSE","America/New_York"
-"44646","40.81249","-81.49841","Massillon","OH","Ohio","TRUE","","47437","634.1","39151","Stark","{""39151"": ""100""}","Stark","39151","FALSE","FALSE","America/New_York"
-"44647","40.79758","-81.56503","Massillon","OH","Ohio","TRUE","","18935","254.8","39151","Stark","{""39151"": ""100""}","Stark","39151","FALSE","FALSE","America/New_York"
-"44651","40.62549","-80.95387","Mechanicstown","OH","Ohio","TRUE","","612","9.8","39019","Carroll","{""39019"": ""100""}","Carroll","39019","FALSE","FALSE","America/New_York"
-"44652","40.90044","-81.32618","Middlebranch","OH","Ohio","TRUE","","0","0.0","39151","Stark","{""39151"": ""100""}","Stark","39151","FALSE","FALSE","America/New_York"
-"44653","40.43606","-81.37023","Midvale","OH","Ohio","TRUE","","611","587.3","39157","Tuscarawas","{""39157"": ""100""}","Tuscarawas","39157","FALSE","FALSE","America/New_York"
-"44654","40.53909","-81.87079","Millersburg","OH","Ohio","TRUE","","20348","50.0","39075","Holmes","{""39075"": ""97.69"", ""39031"": ""2.31""}","Holmes|Coshocton","39075|39031","FALSE","FALSE","America/New_York"
-"44656","40.569","-81.33676","Mineral City","OH","Ohio","TRUE","","2647","24.6","39157","Tuscarawas","{""39157"": ""96.36"", ""39019"": ""3.64""}","Tuscarawas|Carroll","39157|39019","FALSE","FALSE","America/New_York"
-"44657","40.74115","-81.0931","Minerva","OH","Ohio","TRUE","","9762","57.3","39151","Stark","{""39151"": ""45.84"", ""39019"": ""35.84"", ""39029"": ""18.32""}","Stark|Carroll|Columbiana","39151|39019|39029","FALSE","FALSE","America/New_York"
-"44659","40.69464","-81.70207","Mount Eaton","OH","Ohio","TRUE","","136","436.4","39169","Wayne","{""39169"": ""100""}","Wayne","39169","FALSE","FALSE","America/New_York"
-"44661","40.59529","-82.11284","Nashville","OH","Ohio","TRUE","","144","980.9","39075","Holmes","{""39075"": ""100""}","Holmes","39075","FALSE","FALSE","America/New_York"
-"44662","40.71086","-81.55621","Navarre","OH","Ohio","TRUE","","9748","62.7","39151","Stark","{""39151"": ""93.51"", ""39169"": ""6.49""}","Stark|Wayne","39151|39169","FALSE","FALSE","America/New_York"
-"44663","40.46047","-81.45206","New Philadelphia","OH","Ohio","TRUE","","25305","104.8","39157","Tuscarawas","{""39157"": ""100""}","Tuscarawas","39157","FALSE","FALSE","America/New_York"
-"44666","40.84409","-81.63286","North Lawrence","OH","Ohio","TRUE","","2505","41.2","39151","Stark","{""39151"": ""84.43"", ""39169"": ""15.57""}","Stark|Wayne","39151|39169","FALSE","FALSE","America/New_York"
-"44667","40.83346","-81.76595","Orrville","OH","Ohio","TRUE","","13226","109.9","39169","Wayne","{""39169"": ""100""}","Wayne","39169","FALSE","FALSE","America/New_York"
-"44669","40.79669","-81.15786","Paris","OH","Ohio","TRUE","","1517","33.7","39151","Stark","{""39151"": ""100""}","Stark","39151","FALSE","FALSE","America/New_York"
-"44670","40.7627","-81.18862","Robertsville","OH","Ohio","TRUE","","168","384.0","39151","Stark","{""39151"": ""100""}","Stark","39151","FALSE","FALSE","America/New_York"
-"44671","40.64595","-81.36565","Sandyville","OH","Ohio","TRUE","","218","104.6","39157","Tuscarawas","{""39157"": ""100""}","Tuscarawas","39157","FALSE","FALSE","America/New_York"
-"44672","40.92059","-81.02542","Sebring","OH","Ohio","TRUE","","4761","555.8","39099","Mahoning","{""39099"": ""100""}","Mahoning","39099","FALSE","FALSE","America/New_York"
-"44675","40.50033","-81.25007","Sherrodsville","OH","Ohio","TRUE","","1970","24.9","39019","Carroll","{""39019"": ""79.25"", ""39157"": ""20.75""}","Carroll|Tuscarawas","39019|39157","FALSE","FALSE","America/New_York"
-"44676","40.6885","-82.0354","Shreve","OH","Ohio","TRUE","","5068","35.7","39169","Wayne","{""39169"": ""76.79"", ""39075"": ""23.21""}","Wayne|Holmes","39169|39075","FALSE","FALSE","America/New_York"
-"44677","40.87411","-81.86115","Smithville","OH","Ohio","TRUE","","2593","60.8","39169","Wayne","{""39169"": ""100""}","Wayne","39169","FALSE","FALSE","America/New_York"
-"44678","40.56661","-81.34988","Somerdale","OH","Ohio","TRUE","","356","148.0","39157","Tuscarawas","{""39157"": ""100""}","Tuscarawas","39157","FALSE","FALSE","America/New_York"
-"44680","40.60258","-81.54245","Strasburg","OH","Ohio","TRUE","","4401","94.0","39157","Tuscarawas","{""39157"": ""100""}","Tuscarawas","39157","FALSE","FALSE","America/New_York"
-"44681","40.5021","-81.66119","Sugarcreek","OH","Ohio","TRUE","","8442","54.9","39157","Tuscarawas","{""39157"": ""61.6"", ""39075"": ""38.4""}","Tuscarawas|Holmes","39157|39075","FALSE","FALSE","America/New_York"
-"44682","40.39729","-81.40533","Tuscarawas","OH","Ohio","TRUE","","1061","1071.0","39157","Tuscarawas","{""39157"": ""100""}","Tuscarawas","39157","FALSE","FALSE","America/New_York"
-"44683","40.35284","-81.32318","Uhrichsville","OH","Ohio","TRUE","","8292","46.8","39157","Tuscarawas","{""39157"": ""94.47"", ""39067"": ""5.53""}","Tuscarawas|Harrison","39157|39067","FALSE","FALSE","America/New_York"
-"44685","40.95992","-81.42424","Uniontown","OH","Ohio","TRUE","","27941","421.1","39153","Summit","{""39153"": ""50.79"", ""39151"": ""49.21""}","Summit|Stark","39153|39151","FALSE","FALSE","America/New_York"
-"44687","40.53789","-81.72007","Walnut Creek","OH","Ohio","TRUE","","293","1739.5","39075","Holmes","{""39075"": ""100""}","Holmes","39075","FALSE","FALSE","America/New_York"
-"44688","40.68462","-81.25771","Waynesburg","OH","Ohio","TRUE","","2961","49.6","39151","Stark","{""39151"": ""91.09"", ""39019"": ""8.91""}","Stark|Carroll","39151|39019","FALSE","FALSE","America/New_York"
-"44689","40.64989","-81.65687","Wilmot","OH","Ohio","TRUE","","782","82.3","39151","Stark","{""39151"": ""63.79"", ""39075"": ""36.21""}","Stark|Holmes","39151|39075","FALSE","FALSE","America/New_York"
-"44690","40.61422","-81.69379","Winesburg","OH","Ohio","TRUE","","163","208.9","39075","Holmes","{""39075"": ""100""}","Holmes","39075","FALSE","FALSE","America/New_York"
-"44691","40.8057","-81.97955","Wooster","OH","Ohio","TRUE","","45195","111.3","39169","Wayne","{""39169"": ""99.9"", ""39005"": ""0.1""}","Wayne|Ashland","39169|39005","FALSE","FALSE","America/New_York"
-"44693","40.3019","-81.18622","Deersville","OH","Ohio","TRUE","","38","15.2","39067","Harrison","{""39067"": ""100""}","Harrison","39067","FALSE","FALSE","America/New_York"
-"44695","40.43674","-81.17831","Bowerston","OH","Ohio","TRUE","","1560","20.0","39019","Carroll","{""39019"": ""50.19"", ""39067"": ""49.81""}","Carroll|Harrison","39019|39067","FALSE","FALSE","America/New_York"
-"44697","40.61156","-81.4236","Zoar","OH","Ohio","TRUE","","183","115.6","39157","Tuscarawas","{""39157"": ""100""}","Tuscarawas","39157","FALSE","FALSE","America/New_York"
-"44699","40.27808","-81.28491","Tippecanoe","OH","Ohio","TRUE","","756","5.3","39067","Harrison","{""39067"": ""73.53"", ""39157"": ""26.25"", ""39059"": ""0.21""}","Harrison|Tuscarawas|Guernsey","39067|39157|39059","FALSE","FALSE","America/New_York"
-"44702","40.79988","-81.37543","Canton","OH","Ohio","TRUE","","925","666.3","39151","Stark","{""39151"": ""100""}","Stark","39151","FALSE","FALSE","America/New_York"
-"44703","40.81052","-81.38138","Canton","OH","Ohio","TRUE","","8156","2873.5","39151","Stark","{""39151"": ""100""}","Stark","39151","FALSE","FALSE","America/New_York"
-"44704","40.8003","-81.34034","Canton","OH","Ohio","TRUE","","3495","557.4","39151","Stark","{""39151"": ""100""}","Stark","39151","FALSE","FALSE","America/New_York"
-"44705","40.83384","-81.33223","Canton","OH","Ohio","TRUE","","19797","933.1","39151","Stark","{""39151"": ""100""}","Stark","39151","FALSE","FALSE","America/New_York"
-"44706","40.75352","-81.41866","Canton","OH","Ohio","TRUE","","16676","346.5","39151","Stark","{""39151"": ""100""}","Stark","39151","FALSE","FALSE","America/New_York"
-"44707","40.76111","-81.34988","Canton","OH","Ohio","TRUE","","8982","241.3","39151","Stark","{""39151"": ""100""}","Stark","39151","FALSE","FALSE","America/New_York"
-"44708","40.81775","-81.43562","Canton","OH","Ohio","TRUE","","25425","960.2","39151","Stark","{""39151"": ""100""}","Stark","39151","FALSE","FALSE","America/New_York"
-"44709","40.84237","-81.38622","Canton","OH","Ohio","TRUE","","19096","1279.8","39151","Stark","{""39151"": ""100""}","Stark","39151","FALSE","FALSE","America/New_York"
-"44710","40.7897","-81.42607","Canton","OH","Ohio","TRUE","","8585","1489.0","39151","Stark","{""39151"": ""100""}","Stark","39151","FALSE","FALSE","America/New_York"
-"44714","40.83611","-81.35907","Canton","OH","Ohio","TRUE","","8495","1248.5","39151","Stark","{""39151"": ""100""}","Stark","39151","FALSE","FALSE","America/New_York"
-"44718","40.85116","-81.44747","Canton","OH","Ohio","TRUE","","11910","559.1","39151","Stark","{""39151"": ""100""}","Stark","39151","FALSE","FALSE","America/New_York"
-"44720","40.90138","-81.43165","North Canton","OH","Ohio","TRUE","","38810","440.0","39151","Stark","{""39151"": ""91.06"", ""39153"": ""8.94""}","Stark|Summit","39151|39153","FALSE","FALSE","America/New_York"
-"44721","40.89412","-81.32837","Canton","OH","Ohio","TRUE","","14065","353.3","39151","Stark","{""39151"": ""100""}","Stark","39151","FALSE","FALSE","America/New_York"
-"44730","40.76573","-81.25905","East Canton","OH","Ohio","TRUE","","5711","59.8","39151","Stark","{""39151"": ""98.51"", ""39019"": ""1.49""}","Stark|Carroll","39151|39019","FALSE","FALSE","America/New_York"
-"44802","41.04566","-83.41945","Alvada","OH","Ohio","TRUE","","1033","14.0","39147","Seneca","{""39147"": ""56.88"", ""39063"": ""43.12""}","Seneca|Hancock","39147|39063","FALSE","FALSE","America/New_York"
-"44804","41.10561","-83.53412","Arcadia","OH","Ohio","TRUE","","883","16.8","39063","Hancock","{""39063"": ""100""}","Hancock","39063","FALSE","FALSE","America/New_York"
-"44805","40.87291","-82.31688","Ashland","OH","Ohio","TRUE","","33290","83.9","39005","Ashland","{""39005"": ""98.69"", ""39139"": ""1.31""}","Ashland|Richland","39005|39139","FALSE","FALSE","America/New_York"
-"44807","41.05988","-82.87733","Attica","OH","Ohio","TRUE","","2064","11.2","39147","Seneca","{""39147"": ""93.91"", ""39077"": ""6.09""}","Seneca|Huron","39147|39077","FALSE","FALSE","America/New_York"
-"44809","41.13348","-83.2888","Bascom","OH","Ohio","TRUE","","269","325.6","39147","Seneca","{""39147"": ""100""}","Seneca","39147","FALSE","FALSE","America/New_York"
-"44811","41.24463","-82.84455","Bellevue","OH","Ohio","TRUE","","12564","41.3","39143","Sandusky","{""39143"": ""47.35"", ""39077"": ""37.19"", ""39147"": ""10.48"", ""39043"": ""4.97""}","Sandusky|Huron|Seneca|Erie","39143|39077|39147|39043","FALSE","FALSE","America/New_York"
-"44813","40.59884","-82.53168","Bellville","OH","Ohio","TRUE","","9148","49.3","39139","Richland","{""39139"": ""86.54"", ""39117"": ""10.2"", ""39083"": ""3.27""}","Richland|Morrow|Knox","39139|39117|39083","FALSE","FALSE","America/New_York"
-"44814","41.32187","-82.4726","Berlin Heights","OH","Ohio","TRUE","","2894","42.5","39043","Erie","{""39043"": ""100""}","Erie","39043","FALSE","FALSE","America/New_York"
-"44815","41.24664","-83.23942","Bettsville","OH","Ohio","TRUE","","607","206.4","39147","Seneca","{""39147"": ""100""}","Seneca","39147","FALSE","FALSE","America/New_York"
-"44816","41.33023","-82.35253","Birmingham","OH","Ohio","TRUE","","24","359.4","39043","Erie","{""39043"": ""100""}","Erie","39043","FALSE","FALSE","America/New_York"
-"44817","41.19985","-83.54542","Bloomdale","OH","Ohio","TRUE","","1517","18.5","39173","Wood","{""39173"": ""93.66"", ""39063"": ""6.34""}","Wood|Hancock","39173|39063","FALSE","FALSE","America/New_York"
-"44818","41.00036","-82.99593","Bloomville","OH","Ohio","TRUE","","2460","13.0","39147","Seneca","{""39147"": ""68.42"", ""39033"": ""31.58""}","Seneca|Crawford","39147|39033","FALSE","FALSE","America/New_York"
-"44820","40.81746","-82.97252","Bucyrus","OH","Ohio","TRUE","","17374","41.9","39033","Crawford","{""39033"": ""100""}","Crawford","39033","FALSE","FALSE","America/New_York"
-"44822","40.55722","-82.39861","Butler","OH","Ohio","TRUE","","3124","27.7","39139","Richland","{""39139"": ""68.83"", ""39083"": ""31.17""}","Richland|Knox","39139|39083","FALSE","FALSE","America/New_York"
-"44824","41.3806","-82.80504","Castalia","OH","Ohio","TRUE","","4325","67.2","39043","Erie","{""39043"": ""97.93"", ""39143"": ""2.07""}","Erie|Sandusky","39043|39143","FALSE","FALSE","America/New_York"
-"44825","40.95424","-82.94314","Chatfield","OH","Ohio","TRUE","","111","1063.3","39033","Crawford","{""39033"": ""100""}","Crawford","39033","FALSE","FALSE","America/New_York"
-"44826","41.2408","-82.48009","Collins","OH","Ohio","TRUE","","1540","22.5","39077","Huron","{""39077"": ""90.22"", ""39043"": ""9.78""}","Huron|Erie","39077|39043","FALSE","FALSE","America/New_York"
-"44827","40.81937","-82.75771","Crestline","OH","Ohio","TRUE","","6832","55.5","39033","Crawford","{""39033"": ""90.22"", ""39139"": ""9.78""}","Crawford|Richland","39033|39139","FALSE","FALSE","America/New_York"
-"44828","41.23186","-82.86093","Flat Rock","OH","Ohio","TRUE","","109","189.0","39147","Seneca","{""39147"": ""100""}","Seneca","39147","FALSE","FALSE","America/New_York"
-"44830","41.16705","-83.39991","Fostoria","OH","Ohio","TRUE","","18888","61.2","39147","Seneca","{""39147"": ""69.19"", ""39063"": ""19.33"", ""39173"": ""11.48""}","Seneca|Hancock|Wood","39147|39063|39173","FALSE","FALSE","America/New_York"
-"44833","40.71064","-82.79417","Galion","OH","Ohio","TRUE","","16658","70.6","39033","Crawford","{""39033"": ""81.06"", ""39117"": ""15.66"", ""39139"": ""2.42"", ""39101"": ""0.85""}","Crawford|Morrow|Richland|Marion","39033|39117|39139|39101","FALSE","FALSE","America/New_York"
-"44836","41.23807","-83.05467","Green Springs","OH","Ohio","TRUE","","2330","25.6","39147","Seneca","{""39147"": ""60.02"", ""39143"": ""39.98""}","Seneca|Sandusky","39147|39143","FALSE","FALSE","America/New_York"
-"44837","41.01641","-82.48219","Greenwich","OH","Ohio","TRUE","","4642","26.5","39077","Huron","{""39077"": ""70.47"", ""39139"": ""21.07"", ""39005"": ""8.46""}","Huron|Richland|Ashland","39077|39139|39005","FALSE","FALSE","America/New_York"
-"44838","40.77228","-82.25979","Hayesville","OH","Ohio","TRUE","","235","291.8","39005","Ashland","{""39005"": ""100""}","Ashland","39005","FALSE","FALSE","America/New_York"
-"44839","41.37348","-82.56096","Huron","OH","Ohio","TRUE","","12022","131.4","39043","Erie","{""39043"": ""100""}","Erie","39043","FALSE","FALSE","America/New_York"
-"44840","40.78965","-82.17898","Jeromesville","OH","Ohio","TRUE","","2578","21.5","39005","Ashland","{""39005"": ""99.21"", ""39169"": ""0.79""}","Ashland|Wayne","39005|39169","FALSE","FALSE","America/New_York"
-"44841","41.25124","-83.30611","Kansas","OH","Ohio","TRUE","","775","15.7","39147","Seneca","{""39147"": ""65.92"", ""39143"": ""34.08""}","Seneca|Sandusky","39147|39143","FALSE","FALSE","America/New_York"
-"44842","40.65147","-82.22496","Loudonville","OH","Ohio","TRUE","","5343","28.5","39005","Ashland","{""39005"": ""88.61"", ""39075"": ""11.39""}","Ashland|Holmes","39005|39075","FALSE","FALSE","America/New_York"
-"44843","40.68904","-82.41074","Lucas","OH","Ohio","TRUE","","2339","33.0","39139","Richland","{""39139"": ""98.62"", ""39005"": ""1.38""}","Richland|Ashland","39139|39005","FALSE","FALSE","America/New_York"
-"44844","40.9922","-83.26132","McCutchenville","OH","Ohio","TRUE","","481","10.5","39175","Wyandot","{""39175"": ""53.8"", ""39147"": ""46.2""}","Wyandot|Seneca","39175|39147","FALSE","FALSE","America/New_York"
-"44846","41.3206","-82.61033","Milan","OH","Ohio","TRUE","","3432","57.7","39043","Erie","{""39043"": ""89.09"", ""39077"": ""10.91""}","Erie|Huron","39043|39077","FALSE","FALSE","America/New_York"
-"44847","41.22885","-82.7055","Monroeville","OH","Ohio","TRUE","","3604","19.8","39077","Huron","{""39077"": ""79.22"", ""39043"": ""20.78""}","Huron|Erie","39077|39043","FALSE","FALSE","America/New_York"
-"44849","40.80925","-83.13046","Nevada","OH","Ohio","TRUE","","2572","20.4","39175","Wyandot","{""39175"": ""79.6"", ""39033"": ""19.2"", ""39101"": ""1.19""}","Wyandot|Crawford|Marion","39175|39033|39101","FALSE","FALSE","America/New_York"
-"44850","41.03549","-82.68406","New Haven","OH","Ohio","TRUE","","52","53.0","39077","Huron","{""39077"": ""100""}","Huron","39077","FALSE","FALSE","America/New_York"
-"44851","41.10396","-82.40599","New London","OH","Ohio","TRUE","","4697","24.4","39077","Huron","{""39077"": ""85.64"", ""39093"": ""8.61"", ""39005"": ""5.75""}","Huron|Lorain|Ashland","39077|39093|39005","FALSE","FALSE","America/New_York"
-"44853","41.0553","-83.30302","New Riegel","OH","Ohio","TRUE","","1442","20.4","39147","Seneca","{""39147"": ""100""}","Seneca","39147","FALSE","FALSE","America/New_York"
-"44854","40.94343","-82.8551","New Washington","OH","Ohio","TRUE","","1639","16.3","39033","Crawford","{""39033"": ""100""}","Crawford","39033","FALSE","FALSE","America/New_York"
-"44855","41.10395","-82.58953","North Fairfield","OH","Ohio","TRUE","","1347","19.2","39077","Huron","{""39077"": ""100""}","Huron","39077","FALSE","FALSE","America/New_York"
-"44856","40.794","-82.85666","North Robinson","OH","Ohio","TRUE","","234","1713.9","39033","Crawford","{""39033"": ""100""}","Crawford","39033","FALSE","FALSE","America/New_York"
-"44857","41.2185","-82.58239","Norwalk","OH","Ohio","TRUE","","23303","108.3","39077","Huron","{""39077"": ""98.7"", ""39043"": ""1.3""}","Huron|Erie","39077|39043","FALSE","FALSE","America/New_York"
-"44859","41.02044","-82.3265","Nova","OH","Ohio","TRUE","","1721","21.9","39005","Ashland","{""39005"": ""95.68"", ""39093"": ""4.32""}","Ashland|Lorain","39005|39093","FALSE","FALSE","America/New_York"
-"44861","41.23951","-83.14798","Old Fort","OH","Ohio","TRUE","","106","1576.1","39147","Seneca","{""39147"": ""100""}","Seneca","39147","FALSE","FALSE","America/New_York"
-"44864","40.66494","-82.32131","Perrysville","OH","Ohio","TRUE","","3281","21.4","39005","Ashland","{""39005"": ""78.31"", ""39139"": ""21.69""}","Ashland|Richland","39005|39139","FALSE","FALSE","America/New_York"
-"44865","40.99234","-82.67912","Plymouth","OH","Ohio","TRUE","","3076","33.5","39077","Huron","{""39077"": ""49.8"", ""39139"": ""48.14"", ""39033"": ""2.07""}","Huron|Richland|Crawford","39077|39139|39033","FALSE","FALSE","America/New_York"
-"44866","40.92062","-82.19347","Polk","OH","Ohio","TRUE","","1838","27.3","39005","Ashland","{""39005"": ""100""}","Ashland","39005","FALSE","FALSE","America/New_York"
-"44867","41.14708","-82.98823","Republic","OH","Ohio","TRUE","","2543","16.1","39147","Seneca","{""39147"": ""100""}","Seneca","39147","FALSE","FALSE","America/New_York"
-"44870","41.4052","-82.72495","Sandusky","OH","Ohio","TRUE","","39202","260.0","39043","Erie","{""39043"": ""100""}","Erie","39043","FALSE","FALSE","America/New_York"
-"44874","40.96814","-82.36642","Savannah","OH","Ohio","TRUE","","360","293.6","39005","Ashland","{""39005"": ""100""}","Ashland","39005","FALSE","FALSE","America/New_York"
-"44875","40.88812","-82.65272","Shelby","OH","Ohio","TRUE","","13353","65.2","39139","Richland","{""39139"": ""99.34"", ""39033"": ""0.66""}","Richland|Crawford","39139|39033","FALSE","FALSE","America/New_York"
-"44878","40.94623","-82.51719","Shiloh","OH","Ohio","TRUE","","3153","20.1","39139","Richland","{""39139"": ""95.68"", ""39005"": ""2.76"", ""39077"": ""1.56""}","Richland|Ashland|Huron","39139|39005|39077","FALSE","FALSE","America/New_York"
-"44880","41.03411","-82.22035","Sullivan","OH","Ohio","TRUE","","2886","36.2","39005","Ashland","{""39005"": ""90.15"", ""39093"": ""9.25"", ""39103"": ""0.59""}","Ashland|Lorain|Medina","39005|39093|39103","FALSE","FALSE","America/New_York"
-"44881","40.87002","-82.87601","Sulphur Springs","OH","Ohio","TRUE","","25","241.6","39033","Crawford","{""39033"": ""100""}","Crawford","39033","FALSE","FALSE","America/New_York"
-"44882","40.9476","-83.13513","Sycamore","OH","Ohio","TRUE","","2839","14.9","39175","Wyandot","{""39175"": ""70.78"", ""39033"": ""23.99"", ""39147"": ""5.23""}","Wyandot|Crawford|Seneca","39175|39033|39147","FALSE","FALSE","America/New_York"
-"44883","41.12373","-83.17331","Tiffin","OH","Ohio","TRUE","","28271","65.4","39147","Seneca","{""39147"": ""100""}","Seneca","39147","FALSE","FALSE","America/New_York"
-"44887","40.92159","-82.78573","Tiro","OH","Ohio","TRUE","","800","10.3","39033","Crawford","{""39033"": ""100""}","Crawford","39033","FALSE","FALSE","America/New_York"
-"44889","41.24556","-82.38327","Wakeman","OH","Ohio","TRUE","","7149","34.9","39077","Huron","{""39077"": ""63.99"", ""39043"": ""25.56"", ""39093"": ""10.46""}","Huron|Erie|Lorain","39077|39043|39093","FALSE","FALSE","America/New_York"
-"44890","41.08111","-82.71563","Willard","OH","Ohio","TRUE","","10936","48.2","39077","Huron","{""39077"": ""100""}","Huron","39077","FALSE","FALSE","America/New_York"
-"44901","40.79166","-82.50941","Mansfield","OH","Ohio","TRUE","","2627","8667.4","39139","Richland","{""39139"": ""100""}","Richland","39139","FALSE","FALSE","America/New_York"
-"44902","40.75817","-82.51056","Mansfield","OH","Ohio","TRUE","","5504","1137.3","39139","Richland","{""39139"": ""100""}","Richland","39139","FALSE","FALSE","America/New_York"
-"44903","40.77603","-82.52734","Mansfield","OH","Ohio","TRUE","","23250","78.6","39139","Richland","{""39139"": ""98.41"", ""39117"": ""1.34"", ""39005"": ""0.25""}","Richland|Morrow|Ashland","39139|39117|39005","FALSE","FALSE","America/New_York"
-"44904","40.66547","-82.61294","Mansfield","OH","Ohio","TRUE","","13427","101.1","39139","Richland","{""39139"": ""90.63"", ""39117"": ""9.37""}","Richland|Morrow","39139|39117","FALSE","FALSE","America/New_York"
-"44905","40.77747","-82.46827","Mansfield","OH","Ohio","TRUE","","13387","406.4","39139","Richland","{""39139"": ""100""}","Richland","39139","FALSE","FALSE","America/New_York"
-"44906","40.76575","-82.57694","Mansfield","OH","Ohio","TRUE","","16984","316.0","39139","Richland","{""39139"": ""100""}","Richland","39139","FALSE","FALSE","America/New_York"
-"44907","40.72722","-82.52138","Mansfield","OH","Ohio","TRUE","","14958","741.7","39139","Richland","{""39139"": ""100""}","Richland","39139","FALSE","FALSE","America/New_York"
-"45001","39.13918","-84.71233","Addyston","OH","Ohio","TRUE","","685","435.7","39061","Hamilton","{""39061"": ""100""}","Hamilton","39061","FALSE","FALSE","America/New_York"
-"45002","39.19836","-84.73405","Cleves","OH","Ohio","TRUE","","13705","208.9","39061","Hamilton","{""39061"": ""100""}","Hamilton","39061","FALSE","FALSE","America/New_York"
-"45003","39.58696","-84.78787","College Corner","OH","Ohio","TRUE","","590","21.6","39135","Preble","{""39135"": ""69.73"", ""39017"": ""30.27""}","Preble|Butler","39135|39017","FALSE","FALSE","America/New_York"
-"45005","39.53559","-84.30296","Franklin","OH","Ohio","TRUE","","31475","337.9","39165","Warren","{""39165"": ""99.18"", ""39113"": ""0.82""}","Warren|Montgomery","39165|39113","FALSE","FALSE","America/New_York"
-"45011","39.42962","-84.50248","Hamilton","OH","Ohio","TRUE","","71189","454.0","39017","Butler","{""39017"": ""100""}","Butler","39017","FALSE","FALSE","America/New_York"
-"45013","39.40771","-84.64867","Hamilton","OH","Ohio","TRUE","","54333","181.7","39017","Butler","{""39017"": ""99.98"", ""39061"": ""0.02""}","Butler|Hamilton","39017|39061","FALSE","FALSE","America/New_York"
-"45014","39.32804","-84.55132","Fairfield","OH","Ohio","TRUE","","43620","776.4","39017","Butler","{""39017"": ""100""}","Butler","39017","FALSE","FALSE","America/New_York"
-"45015","39.36202","-84.53959","Hamilton","OH","Ohio","TRUE","","12122","776.4","39017","Butler","{""39017"": ""100""}","Butler","39017","FALSE","FALSE","America/New_York"
-"45030","39.25707","-84.76083","Harrison","OH","Ohio","TRUE","","19532","176.9","39061","Hamilton","{""39061"": ""100""}","Hamilton","39061","FALSE","FALSE","America/New_York"
-"45032","39.50239","-84.01038","Harveysburg","OH","Ohio","TRUE","","310","444.1","39165","Warren","{""39165"": ""100""}","Warren","39165","FALSE","FALSE","America/New_York"
-"45033","39.1768","-84.76306","Hooven","OH","Ohio","TRUE","","182","1369.1","39061","Hamilton","{""39061"": ""100""}","Hamilton","39061","FALSE","FALSE","America/New_York"
-"45034","39.35889","-84.24646","Kings Mills","OH","Ohio","TRUE","","1251","552.9","39165","Warren","{""39165"": ""100""}","Warren","39165","FALSE","FALSE","America/New_York"
-"45036","39.44443","-84.2202","Lebanon","OH","Ohio","TRUE","","38759","184.0","39165","Warren","{""39165"": ""100""}","Warren","39165","FALSE","FALSE","America/New_York"
-"45039","39.32785","-84.23948","Maineville","OH","Ohio","TRUE","","26045","630.5","39165","Warren","{""39165"": ""100""}","Warren","39165","FALSE","FALSE","America/New_York"
-"45040","39.352","-84.31256","Mason","OH","Ohio","TRUE","","54890","754.8","39165","Warren","{""39165"": ""100""}","Warren","39165","FALSE","FALSE","America/New_York"
-"45041","39.21114","-84.703","Miamitown","OH","Ohio","TRUE","","0","0.0","39061","Hamilton","{""39061"": ""100""}","Hamilton","39061","FALSE","FALSE","America/New_York"
-"45042","39.54879","-84.43796","Middletown","OH","Ohio","TRUE","","27470","215.0","39017","Butler","{""39017"": ""96.74"", ""39135"": ""1.83"", ""39165"": ""1.43""}","Butler|Preble|Warren","39017|39135|39165","FALSE","FALSE","America/New_York"
-"45044","39.45004","-84.38227","Middletown","OH","Ohio","TRUE","","53772","546.6","39017","Butler","{""39017"": ""96.42"", ""39165"": ""3.58""}","Butler|Warren","39017|39165","FALSE","FALSE","America/New_York"
-"45050","39.44535","-84.35918","Monroe","OH","Ohio","TRUE","","8625","447.4","39017","Butler","{""39017"": ""99.12"", ""39165"": ""0.88""}","Butler|Warren","39017|39165","FALSE","FALSE","America/New_York"
-"45051","39.09796","-84.64662","Mount Saint Joseph","OH","Ohio","TRUE","","168","750.5","39061","Hamilton","{""39061"": ""100""}","Hamilton","39061","FALSE","FALSE","America/New_York"
-"45052","39.1448","-84.77923","North Bend","OH","Ohio","TRUE","","3830","112.8","39061","Hamilton","{""39061"": ""100""}","Hamilton","39061","FALSE","FALSE","America/New_York"
-"45053","39.35251","-84.78054","Okeana","OH","Ohio","TRUE","","3780","53.8","39017","Butler","{""39017"": ""99.71"", ""18047"": ""0.29""}","Butler|Franklin","39017|18047","FALSE","FALSE","America/New_York"
-"45054","39.44055","-84.07497","Oregonia","OH","Ohio","TRUE","","2924","36.6","39165","Warren","{""39165"": ""100""}","Warren","39165","FALSE","FALSE","America/New_York"
-"45056","39.49069","-84.74361","Oxford","OH","Ohio","TRUE","","28355","144.1","39017","Butler","{""39017"": ""100""}","Butler","39017","FALSE","FALSE","America/New_York"
-"45062","39.47972","-84.55304","Seven Mile","OH","Ohio","TRUE","","732","876.1","39017","Butler","{""39017"": ""100""}","Butler","39017","FALSE","FALSE","America/New_York"
-"45064","39.56619","-84.60077","Somerville","OH","Ohio","TRUE","","3123","38.1","39017","Butler","{""39017"": ""54.22"", ""39135"": ""45.78""}","Butler|Preble","39017|39135","FALSE","FALSE","America/New_York"
-"45065","39.37086","-84.21025","South Lebanon","OH","Ohio","TRUE","","4520","662.6","39165","Warren","{""39165"": ""100""}","Warren","39165","FALSE","FALSE","America/New_York"
-"45066","39.54906","-84.22313","Springboro","OH","Ohio","TRUE","","25040","467.5","39165","Warren","{""39165"": ""94.89"", ""39113"": ""5.11""}","Warren|Montgomery","39165|39113","FALSE","FALSE","America/New_York"
-"45067","39.48775","-84.47871","Trenton","OH","Ohio","TRUE","","15152","294.6","39017","Butler","{""39017"": ""100""}","Butler","39017","FALSE","FALSE","America/New_York"
-"45068","39.52618","-84.06357","Waynesville","OH","Ohio","TRUE","","11719","68.5","39165","Warren","{""39165"": ""98.2"", ""39057"": ""1.42"", ""39027"": ""0.38""}","Warren|Greene|Clinton","39165|39057|39027","FALSE","FALSE","America/New_York"
-"45069","39.34239","-84.41141","West Chester","OH","Ohio","TRUE","","51627","700.9","39017","Butler","{""39017"": ""100""}","Butler","39017","FALSE","FALSE","America/New_York"
-"45070","39.5897","-84.55807","West Elkton","OH","Ohio","TRUE","","188","180.3","39135","Preble","{""39135"": ""100""}","Preble","39135","FALSE","FALSE","America/New_York"
-"45101","38.69055","-83.74129","Aberdeen","OH","Ohio","TRUE","","2184","46.8","39015","Brown","{""39015"": ""100""}","Brown","39015","FALSE","FALSE","America/New_York"
-"45102","39.01712","-84.20427","Amelia","OH","Ohio","TRUE","","22029","386.0","39025","Clermont","{""39025"": ""100""}","Clermont","39025","FALSE","FALSE","America/New_York"
-"45103","39.09753","-84.13767","Batavia","OH","Ohio","TRUE","","32366","144.8","39025","Clermont","{""39025"": ""100""}","Clermont","39025","FALSE","FALSE","America/New_York"
-"45106","38.94492","-84.07145","Bethel","OH","Ohio","TRUE","","12452","64.2","39025","Clermont","{""39025"": ""89.98"", ""39015"": ""10.02""}","Clermont|Brown","39025|39015","FALSE","FALSE","America/New_York"
-"45107","39.29264","-83.96611","Blanchester","OH","Ohio","TRUE","","9730","49.8","39027","Clinton","{""39027"": ""69.66"", ""39165"": ""16.7"", ""39015"": ""7.45"", ""39025"": ""6.19""}","Clinton|Warren|Brown|Clermont","39027|39165|39015|39025","FALSE","FALSE","America/New_York"
-"45111","39.19634","-84.29021","Camp Dennison","OH","Ohio","TRUE","","335","173.7","39061","Hamilton","{""39061"": ""100""}","Hamilton","39061","FALSE","FALSE","America/New_York"
-"45112","38.7934","-84.14021","Chilo","OH","Ohio","TRUE","","68","105.3","39025","Clermont","{""39025"": ""100""}","Clermont","39025","FALSE","FALSE","America/New_York"
-"45113","39.39718","-83.98502","Clarksville","OH","Ohio","TRUE","","3956","40.5","39027","Clinton","{""39027"": ""68.65"", ""39165"": ""31.35""}","Clinton|Warren","39027|39165","FALSE","FALSE","America/New_York"
-"45115","38.82411","-83.69909","Decatur","OH","Ohio","TRUE","","68","25.2","39015","Brown","{""39015"": ""100""}","Brown","39015","FALSE","FALSE","America/New_York"
-"45118","39.17028","-83.93325","Fayetteville","OH","Ohio","TRUE","","3875","38.1","39015","Brown","{""39015"": ""95.71"", ""39025"": ""3.46"", ""39071"": ""0.83""}","Brown|Clermont|Highland","39015|39025|39071","FALSE","FALSE","America/New_York"
-"45120","38.82223","-84.0896","Felicity","OH","Ohio","TRUE","","2912","27.4","39025","Clermont","{""39025"": ""83.63"", ""39015"": ""16.37""}","Clermont|Brown","39025|39015","FALSE","FALSE","America/New_York"
-"45121","38.87002","-83.90363","Georgetown","OH","Ohio","TRUE","","8922","33.2","39015","Brown","{""39015"": ""99.1"", ""39025"": ""0.9""}","Brown|Clermont","39015|39025","FALSE","FALSE","America/New_York"
-"45122","39.22034","-84.11621","Goshen","OH","Ohio","TRUE","","11088","96.8","39025","Clermont","{""39025"": ""95.68"", ""39165"": ""4.32""}","Clermont|Warren","39025|39165","FALSE","FALSE","America/New_York"
-"45123","39.35023","-83.38582","Greenfield","OH","Ohio","TRUE","","8643","33.9","39071","Highland","{""39071"": ""79.52"", ""39141"": ""13.44"", ""39047"": ""7.05""}","Highland|Ross|Fayette","39071|39141|39047","FALSE","FALSE","America/New_York"
-"45130","38.90948","-83.99864","Hamersville","OH","Ohio","TRUE","","4020","41.3","39015","Brown","{""39015"": ""84.85"", ""39025"": ""15.15""}","Brown|Clermont","39015|39025","FALSE","FALSE","America/New_York"
-"45131","38.79011","-83.9666","Higginsport","OH","Ohio","TRUE","","300","543.6","39015","Brown","{""39015"": ""100""}","Brown","39015","FALSE","FALSE","America/New_York"
-"45132","39.34391","-83.60031","Highland","OH","Ohio","TRUE","","362","760.6","39071","Highland","{""39071"": ""100""}","Highland","39071","FALSE","FALSE","America/New_York"
-"45133","39.15726","-83.57603","Hillsboro","OH","Ohio","TRUE","","24024","29.1","39071","Highland","{""39071"": ""98.75"", ""39131"": ""1.13"", ""39015"": ""0.12""}","Highland|Pike|Brown","39071|39131|39015","FALSE","FALSE","America/New_York"
-"45135","39.34607","-83.54426","Leesburg","OH","Ohio","TRUE","","4873","26.7","39071","Highland","{""39071"": ""90.25"", ""39047"": ""7.71"", ""39027"": ""2.04""}","Highland|Fayette|Clinton","39071|39047|39027","FALSE","FALSE","America/New_York"
-"45140","39.25758","-84.24167","Loveland","OH","Ohio","TRUE","","56357","469.6","39025","Clermont","{""39025"": ""52.36"", ""39061"": ""28.81"", ""39165"": ""18.83""}","Clermont|Hamilton|Warren","39025|39061|39165","FALSE","FALSE","America/New_York"
-"45142","39.20569","-83.8126","Lynchburg","OH","Ohio","TRUE","","3754","22.8","39071","Highland","{""39071"": ""80.29"", ""39027"": ""10.1"", ""39015"": ""9.61""}","Highland|Clinton|Brown","39071|39027|39015","FALSE","FALSE","America/New_York"
-"45144","38.7056","-83.61289","Manchester","OH","Ohio","TRUE","","4149","22.9","39001","Adams","{""39001"": ""97.14"", ""39015"": ""2.86""}","Adams|Brown","39001|39015","FALSE","FALSE","America/New_York"
-"45146","39.31512","-83.79828","Martinsville","OH","Ohio","TRUE","","1507","21.4","39027","Clinton","{""39027"": ""100""}","Clinton","39027","FALSE","FALSE","America/New_York"
-"45147","39.20667","-84.28889","Miamiville","OH","Ohio","TRUE","","235","152.2","39025","Clermont","{""39025"": ""93.88"", ""39061"": ""6.12""}","Clermont|Hamilton","39025|39061","FALSE","FALSE","America/New_York"
-"45148","39.28715","-83.88347","Midland","OH","Ohio","TRUE","","1366","22.8","39027","Clinton","{""39027"": ""94.77"", ""39015"": ""5.23""}","Clinton|Brown","39027|39015","FALSE","FALSE","America/New_York"
-"45150","39.1657","-84.233","Milford","OH","Ohio","TRUE","","33011","389.7","39025","Clermont","{""39025"": ""99.94"", ""39061"": ""0.06""}","Clermont|Hamilton","39025|39061","FALSE","FALSE","America/New_York"
-"45152","39.35058","-84.12168","Morrow","OH","Ohio","TRUE","","12014","90.0","39165","Warren","{""39165"": ""100""}","Warren","39165","FALSE","FALSE","America/New_York"
-"45153","38.86869","-84.18496","Moscow","OH","Ohio","TRUE","","1928","26.7","39025","Clermont","{""39025"": ""100""}","Clermont","39025","FALSE","FALSE","America/New_York"
-"45154","39.05949","-83.91926","Mount Orab","OH","Ohio","TRUE","","8927","51.9","39015","Brown","{""39015"": ""94.91"", ""39071"": ""5.09""}","Brown|Highland","39015|39071","FALSE","FALSE","America/New_York"
-"45155","39.03989","-83.75158","Mowrystown","OH","Ohio","TRUE","","356","271.3","39071","Highland","{""39071"": ""100""}","Highland","39071","FALSE","FALSE","America/New_York"
-"45156","38.81472","-84.2154","Neville","OH","Ohio","TRUE","","59","35.9","39025","Clermont","{""39025"": ""100""}","Clermont","39025","FALSE","FALSE","America/New_York"
-"45157","38.95651","-84.22984","New Richmond","OH","Ohio","TRUE","","10088","93.3","39025","Clermont","{""39025"": ""100""}","Clermont","39025","FALSE","FALSE","America/New_York"
-"45158","39.18114","-84.08991","Newtonsville","OH","Ohio","TRUE","","391","868.7","39025","Clermont","{""39025"": ""100""}","Clermont","39025","FALSE","FALSE","America/New_York"
-"45159","39.33069","-83.68921","New Vienna","OH","Ohio","TRUE","","3826","28.9","39027","Clinton","{""39027"": ""62.65"", ""39071"": ""37.35""}","Clinton|Highland","39027|39071","FALSE","FALSE","America/New_York"
-"45160","39.123","-84.13673","Owensville","OH","Ohio","TRUE","","792","881.1","39025","Clermont","{""39025"": ""100""}","Clermont","39025","FALSE","FALSE","America/New_York"
-"45162","39.26783","-84.07828","Pleasant Plain","OH","Ohio","TRUE","","2510","41.0","39165","Warren","{""39165"": ""62.68"", ""39025"": ""37.32""}","Warren|Clermont","39165|39025","FALSE","FALSE","America/New_York"
-"45164","39.55406","-83.78264","Port William","OH","Ohio","TRUE","","365","496.8","39027","Clinton","{""39027"": ""100""}","Clinton","39027","FALSE","FALSE","America/New_York"
-"45166","39.4766","-83.68776","Reesville","OH","Ohio","TRUE","","82","42.8","39027","Clinton","{""39027"": ""100""}","Clinton","39027","FALSE","FALSE","America/New_York"
-"45167","38.77283","-83.80059","Ripley","OH","Ohio","TRUE","","3652","23.0","39015","Brown","{""39015"": ""100""}","Brown","39015","FALSE","FALSE","America/New_York"
-"45168","38.84488","-83.75573","Russellville","OH","Ohio","TRUE","","1472","17.3","39015","Brown","{""39015"": ""100""}","Brown","39015","FALSE","FALSE","America/New_York"
-"45169","39.50061","-83.64981","Sabina","OH","Ohio","TRUE","","4611","18.3","39027","Clinton","{""39027"": ""92.37"", ""39047"": ""5.72"", ""39057"": ""1.91""}","Clinton|Fayette|Greene","39027|39047|39057","FALSE","FALSE","America/New_York"
-"45171","39.01455","-83.79884","Sardinia","OH","Ohio","TRUE","","5997","30.7","39015","Brown","{""39015"": ""78.28"", ""39071"": ""21.72""}","Brown|Highland","39015|39071","FALSE","FALSE","America/New_York"
-"45172","39.07447","-83.38688","Sinking Spring","OH","Ohio","TRUE","","164","143.5","39071","Highland","{""39071"": ""100""}","Highland","39071","FALSE","FALSE","America/New_York"
-"45174","39.15887","-84.31054","Terrace Park","OH","Ohio","TRUE","","2305","717.0","39061","Hamilton","{""39061"": ""100""}","Hamilton","39061","FALSE","FALSE","America/New_York"
-"45176","39.08341","-84.02315","Williamsburg","OH","Ohio","TRUE","","9521","69.8","39025","Clermont","{""39025"": ""64.96"", ""39015"": ""35.04""}","Clermont|Brown","39025|39015","FALSE","FALSE","America/New_York"
-"45177","39.46013","-83.83716","Wilmington","OH","Ohio","TRUE","","21998","49.2","39027","Clinton","{""39027"": ""100""}","Clinton","39027","FALSE","FALSE","America/New_York"
-"45202","39.10893","-84.50253","Cincinnati","OH","Ohio","TRUE","","14097","2008.5","39061","Hamilton","{""39061"": ""100""}","Hamilton","39061","FALSE","FALSE","America/New_York"
-"45203","39.10428","-84.53355","Cincinnati","OH","Ohio","TRUE","","2202","677.4","39061","Hamilton","{""39061"": ""100""}","Hamilton","39061","FALSE","FALSE","America/New_York"
-"45204","39.09636","-84.57161","Cincinnati","OH","Ohio","TRUE","","5506","661.5","39061","Hamilton","{""39061"": ""100""}","Hamilton","39061","FALSE","FALSE","America/New_York"
-"45205","39.11007","-84.57523","Cincinnati","OH","Ohio","TRUE","","18803","2501.1","39061","Hamilton","{""39061"": ""100""}","Hamilton","39061","FALSE","FALSE","America/New_York"
-"45206","39.12738","-84.48436","Cincinnati","OH","Ohio","TRUE","","10713","2058.3","39061","Hamilton","{""39061"": ""100""}","Hamilton","39061","FALSE","FALSE","America/New_York"
-"45207","39.14203","-84.47135","Cincinnati","OH","Ohio","TRUE","","6927","2273.2","39061","Hamilton","{""39061"": ""100""}","Hamilton","39061","FALSE","FALSE","America/New_York"
-"45208","39.13475","-84.43453","Cincinnati","OH","Ohio","TRUE","","17953","1634.9","39061","Hamilton","{""39061"": ""100""}","Hamilton","39061","FALSE","FALSE","America/New_York"
-"45209","39.15304","-84.42651","Cincinnati","OH","Ohio","TRUE","","11225","1831.8","39061","Hamilton","{""39061"": ""100""}","Hamilton","39061","FALSE","FALSE","America/New_York"
-"45211","39.15629","-84.59823","Cincinnati","OH","Ohio","TRUE","","36890","1574.5","39061","Hamilton","{""39061"": ""100""}","Hamilton","39061","FALSE","FALSE","America/New_York"
-"45212","39.16413","-84.4523","Cincinnati","OH","Ohio","TRUE","","22715","2351.2","39061","Hamilton","{""39061"": ""100""}","Hamilton","39061","FALSE","FALSE","America/New_York"
-"45213","39.18076","-84.42008","Cincinnati","OH","Ohio","TRUE","","11658","1413.2","39061","Hamilton","{""39061"": ""100""}","Hamilton","39061","FALSE","FALSE","America/New_York"
-"45214","39.1226","-84.54458","Cincinnati","OH","Ohio","TRUE","","7895","1351.3","39061","Hamilton","{""39061"": ""100""}","Hamilton","39061","FALSE","FALSE","America/New_York"
-"45215","39.2353","-84.46211","Cincinnati","OH","Ohio","TRUE","","30581","1004.2","39061","Hamilton","{""39061"": ""100""}","Hamilton","39061","FALSE","FALSE","America/New_York"
-"45216","39.2009","-84.48165","Cincinnati","OH","Ohio","TRUE","","9313","1192.9","39061","Hamilton","{""39061"": ""100""}","Hamilton","39061","FALSE","FALSE","America/New_York"
-"45217","39.16767","-84.49728","Cincinnati","OH","Ohio","TRUE","","7085","1315.2","39061","Hamilton","{""39061"": ""100""}","Hamilton","39061","FALSE","FALSE","America/New_York"
-"45218","39.26642","-84.52227","Cincinnati","OH","Ohio","TRUE","","3815","905.3","39061","Hamilton","{""39061"": ""100""}","Hamilton","39061","FALSE","FALSE","America/New_York"
-"45219","39.12733","-84.513","Cincinnati","OH","Ohio","TRUE","","18766","4130.2","39061","Hamilton","{""39061"": ""100""}","Hamilton","39061","FALSE","FALSE","America/New_York"
-"45220","39.14854","-84.52071","Cincinnati","OH","Ohio","TRUE","","14214","1914.8","39061","Hamilton","{""39061"": ""100""}","Hamilton","39061","FALSE","FALSE","America/New_York"
-"45223","39.17123","-84.54898","Cincinnati","OH","Ohio","TRUE","","11877","791.1","39061","Hamilton","{""39061"": ""100""}","Hamilton","39061","FALSE","FALSE","America/New_York"
-"45224","39.20099","-84.53151","Cincinnati","OH","Ohio","TRUE","","21481","1283.2","39061","Hamilton","{""39061"": ""100""}","Hamilton","39061","FALSE","FALSE","America/New_York"
-"45225","39.14307","-84.55211","Cincinnati","OH","Ohio","TRUE","","9285","1163.5","39061","Hamilton","{""39061"": ""100""}","Hamilton","39061","FALSE","FALSE","America/New_York"
-"45226","39.11129","-84.42002","Cincinnati","OH","Ohio","TRUE","","5478","375.6","39061","Hamilton","{""39061"": ""100""}","Hamilton","39061","FALSE","FALSE","America/New_York"
-"45227","39.15384","-84.38531","Cincinnati","OH","Ohio","TRUE","","18468","1239.5","39061","Hamilton","{""39061"": ""100""}","Hamilton","39061","FALSE","FALSE","America/New_York"
-"45229","39.15266","-84.48688","Cincinnati","OH","Ohio","TRUE","","12823","1814.1","39061","Hamilton","{""39061"": ""100""}","Hamilton","39061","FALSE","FALSE","America/New_York"
-"45230","39.07434","-84.39088","Cincinnati","OH","Ohio","TRUE","","27999","788.9","39061","Hamilton","{""39061"": ""100""}","Hamilton","39061","FALSE","FALSE","America/New_York"
-"45231","39.24541","-84.53788","Cincinnati","OH","Ohio","TRUE","","40626","1094.6","39061","Hamilton","{""39061"": ""100""}","Hamilton","39061","FALSE","FALSE","America/New_York"
-"45232","39.18239","-84.51104","Cincinnati","OH","Ohio","TRUE","","7629","1276.9","39061","Hamilton","{""39061"": ""100""}","Hamilton","39061","FALSE","FALSE","America/New_York"
-"45233","39.11841","-84.66579","Cincinnati","OH","Ohio","TRUE","","16062","557.8","39061","Hamilton","{""39061"": ""100""}","Hamilton","39061","FALSE","FALSE","America/New_York"
-"45236","39.20981","-84.3973","Cincinnati","OH","Ohio","TRUE","","24915","1388.1","39061","Hamilton","{""39061"": ""100""}","Hamilton","39061","FALSE","FALSE","America/New_York"
-"45237","39.19306","-84.45233","Cincinnati","OH","Ohio","TRUE","","20892","1333.0","39061","Hamilton","{""39061"": ""100""}","Hamilton","39061","FALSE","FALSE","America/New_York"
-"45238","39.10914","-84.61122","Cincinnati","OH","Ohio","TRUE","","46359","1777.3","39061","Hamilton","{""39061"": ""100""}","Hamilton","39061","FALSE","FALSE","America/New_York"
-"45239","39.20446","-84.57993","Cincinnati","OH","Ohio","TRUE","","28757","1759.5","39061","Hamilton","{""39061"": ""100""}","Hamilton","39061","FALSE","FALSE","America/New_York"
-"45240","39.28513","-84.52883","Cincinnati","OH","Ohio","TRUE","","26685","1123.3","39061","Hamilton","{""39061"": ""100""}","Hamilton","39061","FALSE","FALSE","America/New_York"
-"45241","39.27708","-84.40193","Cincinnati","OH","Ohio","TRUE","","24324","533.8","39061","Hamilton","{""39061"": ""65.47"", ""39017"": ""34.24"", ""39165"": ""0.3""}","Hamilton|Butler|Warren","39061|39017|39165","FALSE","FALSE","America/New_York"
-"45242","39.24362","-84.35637","Cincinnati","OH","Ohio","TRUE","","22481","629.7","39061","Hamilton","{""39061"": ""100""}","Hamilton","39061","FALSE","FALSE","America/New_York"
-"45243","39.18379","-84.34177","Cincinnati","OH","Ohio","TRUE","","15079","299.5","39061","Hamilton","{""39061"": ""100""}","Hamilton","39061","FALSE","FALSE","America/New_York"
-"45244","39.11987","-84.32747","Cincinnati","OH","Ohio","TRUE","","28269","499.4","39061","Hamilton","{""39061"": ""54.08"", ""39025"": ""45.92""}","Hamilton|Clermont","39061|39025","FALSE","FALSE","America/New_York"
-"45245","39.06272","-84.27533","Cincinnati","OH","Ohio","TRUE","","21872","535.4","39025","Clermont","{""39025"": ""100""}","Clermont","39025","FALSE","FALSE","America/New_York"
-"45246","39.28963","-84.46692","Cincinnati","OH","Ohio","TRUE","","14467","548.1","39061","Hamilton","{""39061"": ""93.31"", ""39017"": ""6.69""}","Hamilton|Butler","39061|39017","FALSE","FALSE","America/New_York"
-"45247","39.22036","-84.6516","Cincinnati","OH","Ohio","TRUE","","22854","415.8","39061","Hamilton","{""39061"": ""100""}","Hamilton","39061","FALSE","FALSE","America/New_York"
-"45248","39.16433","-84.66255","Cincinnati","OH","Ohio","TRUE","","25612","832.0","39061","Hamilton","{""39061"": ""100""}","Hamilton","39061","FALSE","FALSE","America/New_York"
-"45249","39.27545","-84.32799","Cincinnati","OH","Ohio","TRUE","","13571","800.2","39061","Hamilton","{""39061"": ""97.33"", ""39165"": ""2.67""}","Hamilton|Warren","39061|39165","FALSE","FALSE","America/New_York"
-"45251","39.26809","-84.59383","Cincinnati","OH","Ohio","TRUE","","22177","718.6","39061","Hamilton","{""39061"": ""100""}","Hamilton","39061","FALSE","FALSE","America/New_York"
-"45252","39.27347","-84.63214","Cincinnati","OH","Ohio","TRUE","","4456","151.0","39061","Hamilton","{""39061"": ""100""}","Hamilton","39061","FALSE","FALSE","America/New_York"
-"45255","39.05885","-84.32711","Cincinnati","OH","Ohio","TRUE","","21972","664.0","39061","Hamilton","{""39061"": ""70.33"", ""39025"": ""29.67""}","Hamilton|Clermont","39061|39025","FALSE","FALSE","America/New_York"
-"45301","39.71146","-84.02204","Alpha","OH","Ohio","TRUE","","99","433.3","39057","Greene","{""39057"": ""100""}","Greene","39057","FALSE","FALSE","America/New_York"
-"45302","40.40228","-84.20383","Anna","OH","Ohio","TRUE","","4281","32.7","39149","Shelby","{""39149"": ""100""}","Shelby","39149","FALSE","FALSE","America/New_York"
-"45303","40.21593","-84.65781","Ansonia","OH","Ohio","TRUE","","2542","30.9","39037","Darke","{""39037"": ""100""}","Darke","39037","FALSE","FALSE","America/New_York"
-"45304","39.9888","-84.53121","Arcanum","OH","Ohio","TRUE","","7305","33.2","39037","Darke","{""39037"": ""98.6"", ""39135"": ""1.07"", ""39109"": ""0.33""}","Darke|Preble|Miami","39037|39135|39109","FALSE","FALSE","America/New_York"
-"45305","39.63474","-84.07969","Bellbrook","OH","Ohio","TRUE","","11172","298.6","39057","Greene","{""39057"": ""100""}","Greene","39057","FALSE","FALSE","America/New_York"
-"45306","40.45819","-84.18727","Botkins","OH","Ohio","TRUE","","2390","27.6","39149","Shelby","{""39149"": ""99.08"", ""39011"": ""0.92""}","Shelby|Auglaize","39149|39011","FALSE","FALSE","America/New_York"
-"45307","39.58066","-83.72337","Bowersville","OH","Ohio","TRUE","","359","805.4","39057","Greene","{""39057"": ""100""}","Greene","39057","FALSE","FALSE","America/New_York"
-"45308","40.12549","-84.4574","Bradford","OH","Ohio","TRUE","","4518","34.1","39037","Darke","{""39037"": ""61.13"", ""39109"": ""38.87""}","Darke|Miami","39037|39109","FALSE","FALSE","America/New_York"
-"45309","39.84263","-84.42149","Brookville","OH","Ohio","TRUE","","12409","71.9","39113","Montgomery","{""39113"": ""99.31"", ""39037"": ""0.48"", ""39135"": ""0.21""}","Montgomery|Darke|Preble","39113|39037|39135","FALSE","FALSE","America/New_York"
-"45310","40.35307","-84.64248","Burkettsville","OH","Ohio","TRUE","","266","590.8","39107","Mercer","{""39107"": ""69.67"", ""39037"": ""30.33""}","Mercer|Darke","39107|39037","FALSE","FALSE","America/New_York"
-"45311","39.62693","-84.6671","Camden","OH","Ohio","TRUE","","6249","26.4","39135","Preble","{""39135"": ""100""}","Preble","39135","FALSE","FALSE","America/New_York"
-"45312","40.06026","-84.08027","Casstown","OH","Ohio","TRUE","","1131","15.8","39109","Miami","{""39109"": ""99.23"", ""39021"": ""0.77""}","Miami|Champaign","39109|39021","FALSE","FALSE","America/New_York"
-"45314","39.74698","-83.77573","Cedarville","OH","Ohio","TRUE","","6042","46.1","39057","Greene","{""39057"": ""99.44"", ""39023"": ""0.56""}","Greene|Clark","39057|39023","FALSE","FALSE","America/New_York"
-"45315","39.85699","-84.33909","Clayton","OH","Ohio","TRUE","","3977","143.1","39113","Montgomery","{""39113"": ""100""}","Montgomery","39113","FALSE","FALSE","America/New_York"
-"45316","39.79715","-83.82576","Clifton","OH","Ohio","TRUE","","85","350.7","39057","Greene","{""39057"": ""76.52"", ""39023"": ""23.48""}","Greene|Clark","39057|39023","FALSE","FALSE","America/New_York"
-"45317","40.17487","-84.01914","Conover","OH","Ohio","TRUE","","1260","19.7","39021","Champaign","{""39021"": ""45.68"", ""39109"": ""45.34"", ""39149"": ""8.98""}","Champaign|Miami|Shelby","39021|39109|39149","FALSE","FALSE","America/New_York"
-"45318","40.12926","-84.35344","Covington","OH","Ohio","TRUE","","5480","47.3","39109","Miami","{""39109"": ""99.68"", ""39037"": ""0.32""}","Miami|Darke","39109|39037","FALSE","FALSE","America/New_York"
-"45319","39.91613","-83.94321","Donnelsville","OH","Ohio","TRUE","","361","388.7","39023","Clark","{""39023"": ""100""}","Clark","39023","FALSE","FALSE","America/New_York"
-"45320","39.74915","-84.68804","Eaton","OH","Ohio","TRUE","","15163","43.7","39135","Preble","{""39135"": ""100""}","Preble","39135","FALSE","FALSE","America/New_York"
-"45321","39.8735","-84.67821","Eldorado","OH","Ohio","TRUE","","791","23.3","39135","Preble","{""39135"": ""100""}","Preble","39135","FALSE","FALSE","America/New_York"
-"45322","39.89787","-84.32868","Englewood","OH","Ohio","TRUE","","21527","417.5","39113","Montgomery","{""39113"": ""98.37"", ""39109"": ""1.63""}","Montgomery|Miami","39113|39109","FALSE","FALSE","America/New_York"
-"45323","39.84989","-83.92759","Enon","OH","Ohio","TRUE","","4947","301.4","39023","Clark","{""39023"": ""100""}","Clark","39023","FALSE","FALSE","America/New_York"
-"45324","39.82283","-83.99406","Fairborn","OH","Ohio","TRUE","","40867","497.7","39057","Greene","{""39057"": ""95.16"", ""39023"": ""4.84""}","Greene|Clark","39057|39023","FALSE","FALSE","America/New_York"
-"45325","39.69126","-84.42457","Farmersville","OH","Ohio","TRUE","","2407","36.4","39113","Montgomery","{""39113"": ""100""}","Montgomery","39113","FALSE","FALSE","America/New_York"
-"45326","40.14271","-84.09287","Fletcher","OH","Ohio","TRUE","","1145","19.2","39109","Miami","{""39109"": ""100""}","Miami","39109","FALSE","FALSE","America/New_York"
-"45327","39.63251","-84.39985","Germantown","OH","Ohio","TRUE","","9115","73.3","39113","Montgomery","{""39113"": ""97.17"", ""39017"": ""1.63"", ""39135"": ""1.2""}","Montgomery|Butler|Preble","39113|39017|39135","FALSE","FALSE","America/New_York"
-"45328","40.116","-84.49651","Gettysburg","OH","Ohio","TRUE","","576","554.7","39037","Darke","{""39037"": ""100""}","Darke","39037","FALSE","FALSE","America/New_York"
-"45330","39.64831","-84.52812","Gratis","OH","Ohio","TRUE","","874","388.1","39135","Preble","{""39135"": ""100""}","Preble","39135","FALSE","FALSE","America/New_York"
-"45331","40.09787","-84.64631","Greenville","OH","Ohio","TRUE","","22049","56.9","39037","Darke","{""39037"": ""100""}","Darke","39037","FALSE","FALSE","America/New_York"
-"45332","39.99702","-84.78665","Hollansburg","OH","Ohio","TRUE","","765","23.2","39037","Darke","{""39037"": ""100""}","Darke","39037","FALSE","FALSE","America/New_York"
-"45333","40.2476","-84.33283","Houston","OH","Ohio","TRUE","","1313","22.9","39149","Shelby","{""39149"": ""100""}","Shelby","39149","FALSE","FALSE","America/New_York"
-"45334","40.44538","-84.04431","Jackson Center","OH","Ohio","TRUE","","2001","30.0","39149","Shelby","{""39149"": ""98.43"", ""39011"": ""1.08"", ""39091"": ""0.49""}","Shelby|Auglaize|Logan","39149|39011|39091","FALSE","FALSE","America/New_York"
-"45335","39.63032","-83.73381","Jamestown","OH","Ohio","TRUE","","7033","32.0","39057","Greene","{""39057"": ""97.18"", ""39027"": ""1.8"", ""39047"": ""1.02""}","Greene|Clinton|Fayette","39057|39027|39047","FALSE","FALSE","America/New_York"
-"45336","40.44015","-84.26137","Kettlersville","OH","Ohio","TRUE","","156","78.5","39149","Shelby","{""39149"": ""100""}","Shelby","39149","FALSE","FALSE","America/New_York"
-"45337","39.97988","-84.42057","Laura","OH","Ohio","TRUE","","1724","32.5","39109","Miami","{""39109"": ""82.96"", ""39037"": ""17.04""}","Miami|Darke","39109|39037","FALSE","FALSE","America/New_York"
-"45338","39.84999","-84.54359","Lewisburg","OH","Ohio","TRUE","","5050","38.3","39135","Preble","{""39135"": ""100""}","Preble","39135","FALSE","FALSE","America/New_York"
-"45339","40.00916","-84.3425","Ludlow Falls","OH","Ohio","TRUE","","1235","33.4","39109","Miami","{""39109"": ""100""}","Miami","39109","FALSE","FALSE","America/New_York"
-"45340","40.37192","-84.04744","Maplewood","OH","Ohio","TRUE","","701","11.7","39149","Shelby","{""39149"": ""100""}","Shelby","39149","FALSE","FALSE","America/New_York"
-"45341","39.87673","-84.02331","Medway","OH","Ohio","TRUE","","3793","253.5","39023","Clark","{""39023"": ""100""}","Clark","39023","FALSE","FALSE","America/New_York"
-"45342","39.62983","-84.27635","Miamisburg","OH","Ohio","TRUE","","36888","410.9","39113","Montgomery","{""39113"": ""99.66"", ""39165"": ""0.34""}","Montgomery|Warren","39113|39165","FALSE","FALSE","America/New_York"
-"45344","39.95646","-84.00956","New Carlisle","OH","Ohio","TRUE","","16283","95.1","39023","Clark","{""39023"": ""89.27"", ""39109"": ""10.12"", ""39021"": ""0.52"", ""39113"": ""0.09""}","Clark|Miami|Champaign|Montgomery","39023|39109|39021|39113","FALSE","FALSE","America/New_York"
-"45345","39.73786","-84.40749","New Lebanon","OH","Ohio","TRUE","","6415","113.3","39113","Montgomery","{""39113"": ""100""}","Montgomery","39113","FALSE","FALSE","America/New_York"
-"45346","39.98073","-84.7113","New Madison","OH","Ohio","TRUE","","2038","18.7","39037","Darke","{""39037"": ""100""}","Darke","39037","FALSE","FALSE","America/New_York"
-"45347","39.88231","-84.76263","New Paris","OH","Ohio","TRUE","","4346","30.4","39135","Preble","{""39135"": ""86.08"", ""39037"": ""13.92""}","Preble|Darke","39135|39037","FALSE","FALSE","America/New_York"
-"45348","40.32806","-84.65193","New Weston","OH","Ohio","TRUE","","919","11.7","39037","Darke","{""39037"": ""100""}","Darke","39037","FALSE","FALSE","America/New_York"
-"45349","39.98914","-83.94135","North Hampton","OH","Ohio","TRUE","","423","711.1","39023","Clark","{""39023"": ""100""}","Clark","39023","FALSE","FALSE","America/New_York"
-"45350","40.32442","-84.57367","North Star","OH","Ohio","TRUE","","85","178.5","39037","Darke","{""39037"": ""100""}","Darke","39037","FALSE","FALSE","America/New_York"
-"45351","40.33941","-84.4952","Osgood","OH","Ohio","TRUE","","255","308.0","39037","Darke","{""39037"": ""100""}","Darke","39037","FALSE","FALSE","America/New_York"
-"45352","40.05016","-84.74424","Palestine","OH","Ohio","TRUE","","242","636.5","39037","Darke","{""39037"": ""100""}","Darke","39037","FALSE","FALSE","America/New_York"
-"45353","40.29252","-84.04274","Pemberton","OH","Ohio","TRUE","","134","18.4","39149","Shelby","{""39149"": ""100""}","Shelby","39149","FALSE","FALSE","America/New_York"
-"45354","39.91054","-84.39968","Phillipsburg","OH","Ohio","TRUE","","570","250.3","39113","Montgomery","{""39113"": ""100""}","Montgomery","39113","FALSE","FALSE","America/New_York"
-"45356","40.16088","-84.23154","Piqua","OH","Ohio","TRUE","","24891","126.1","39109","Miami","{""39109"": ""97.22"", ""39149"": ""2.78""}","Miami|Shelby","39109|39149","FALSE","FALSE","America/New_York"
-"45358","39.98659","-84.48777","Pitsburg","OH","Ohio","TRUE","","303","765.0","39037","Darke","{""39037"": ""100""}","Darke","39037","FALSE","FALSE","America/New_York"
-"45359","40.05141","-84.35256","Pleasant Hill","OH","Ohio","TRUE","","1896","48.6","39109","Miami","{""39109"": ""100""}","Miami","39109","FALSE","FALSE","America/New_York"
-"45360","40.33063","-84.09166","Port Jefferson","OH","Ohio","TRUE","","392","998.0","39149","Shelby","{""39149"": ""100""}","Shelby","39149","FALSE","FALSE","America/New_York"
-"45361","39.96374","-84.41484","Potsdam","OH","Ohio","TRUE","","305","264.2","39109","Miami","{""39109"": ""100""}","Miami","39109","FALSE","FALSE","America/New_York"
-"45362","40.28677","-84.6357","Rossburg","OH","Ohio","TRUE","","941","11.3","39037","Darke","{""39037"": ""100""}","Darke","39037","FALSE","FALSE","America/New_York"
-"45363","40.24047","-84.39892","Russia","OH","Ohio","TRUE","","1811","29.9","39149","Shelby","{""39149"": ""100""}","Shelby","39149","FALSE","FALSE","America/New_York"
-"45365","40.28424","-84.15953","Sidney","OH","Ohio","TRUE","","30016","72.2","39149","Shelby","{""39149"": ""99.96"", ""39021"": ""0.04""}","Shelby|Champaign","39149|39021","FALSE","FALSE","America/New_York"
-"45368","39.84329","-83.65488","South Charleston","OH","Ohio","TRUE","","4824","23.5","39023","Clark","{""39023"": ""98.88"", ""39057"": ""1.12""}","Clark|Greene","39023|39057","FALSE","FALSE","America/New_York"
-"45369","39.95302","-83.6043","South Vienna","OH","Ohio","TRUE","","3559","31.2","39023","Clark","{""39023"": ""99.49"", ""39097"": ""0.51""}","Clark|Madison","39023|39097","FALSE","FALSE","America/New_York"
-"45370","39.60729","-84.02839","Spring Valley","OH","Ohio","TRUE","","2445","43.9","39057","Greene","{""39057"": ""100""}","Greene","39057","FALSE","FALSE","America/New_York"
-"45371","39.94036","-84.16255","Tipp City","OH","Ohio","TRUE","","20324","159.3","39109","Miami","{""39109"": ""99.64"", ""39113"": ""0.36""}","Miami|Montgomery","39109|39113","FALSE","FALSE","America/New_York"
-"45372","40.01472","-83.83862","Tremont City","OH","Ohio","TRUE","","345","601.6","39023","Clark","{""39023"": ""100""}","Clark","39023","FALSE","FALSE","America/New_York"
-"45373","40.03218","-84.19478","Troy","OH","Ohio","TRUE","","36131","163.1","39109","Miami","{""39109"": ""100""}","Miami","39109","FALSE","FALSE","America/New_York"
-"45377","39.89645","-84.22334","Vandalia","OH","Ohio","TRUE","","15332","268.0","39113","Montgomery","{""39113"": ""100""}","Montgomery","39113","FALSE","FALSE","America/New_York"
-"45378","39.90288","-84.48874","Verona","OH","Ohio","TRUE","","341","576.4","39135","Preble","{""39135"": ""100""}","Preble","39135","FALSE","FALSE","America/New_York"
-"45380","40.24335","-84.51429","Versailles","OH","Ohio","TRUE","","5520","31.2","39037","Darke","{""39037"": ""100""}","Darke","39037","FALSE","FALSE","America/New_York"
-"45381","39.73152","-84.52454","West Alexandria","OH","Ohio","TRUE","","5318","40.0","39135","Preble","{""39135"": ""96.06"", ""39113"": ""3.94""}","Preble|Montgomery","39135|39113","FALSE","FALSE","America/New_York"
-"45382","39.90036","-84.61347","West Manchester","OH","Ohio","TRUE","","1362","25.5","39135","Preble","{""39135"": ""82.58"", ""39037"": ""17.42""}","Preble|Darke","39135|39037","FALSE","FALSE","America/New_York"
-"45383","39.95621","-84.33772","West Milton","OH","Ohio","TRUE","","6924","102.5","39109","Miami","{""39109"": ""100""}","Miami","39109","FALSE","FALSE","America/New_York"
-"45384","39.71532","-83.88486","Wilberforce","OH","Ohio","TRUE","","2186","648.5","39057","Greene","{""39057"": ""100""}","Greene","39057","FALSE","FALSE","America/New_York"
-"45385","39.6698","-83.91316","Xenia","OH","Ohio","TRUE","","39139","110.5","39057","Greene","{""39057"": ""100""}","Greene","39057","FALSE","FALSE","America/New_York"
-"45387","39.79806","-83.88693","Yellow Springs","OH","Ohio","TRUE","","5390","75.4","39057","Greene","{""39057"": ""95.76"", ""39023"": ""4.24""}","Greene|Clark","39057|39023","FALSE","FALSE","America/New_York"
-"45388","40.32643","-84.4819","Yorkshire","OH","Ohio","TRUE","","946","20.9","39037","Darke","{""39037"": ""100""}","Darke","39037","FALSE","FALSE","America/New_York"
-"45389","40.05723","-84.02755","Christiansburg","OH","Ohio","TRUE","","425","509.5","39021","Champaign","{""39021"": ""100""}","Champaign","39021","FALSE","FALSE","America/New_York"
-"45390","40.21875","-84.76887","Union City","OH","Ohio","TRUE","","3310","24.2","39037","Darke","{""39037"": ""100""}","Darke","39037","FALSE","FALSE","America/New_York"
-"45402","39.75954","-84.21002","Dayton","OH","Ohio","TRUE","","9696","894.4","39113","Montgomery","{""39113"": ""100""}","Montgomery","39113","FALSE","FALSE","America/New_York"
-"45403","39.76874","-84.14776","Dayton","OH","Ohio","TRUE","","13968","1388.9","39113","Montgomery","{""39113"": ""100""}","Montgomery","39113","FALSE","FALSE","America/New_York"
-"45404","39.79057","-84.16168","Dayton","OH","Ohio","TRUE","","11150","698.2","39113","Montgomery","{""39113"": ""100""}","Montgomery","39113","FALSE","FALSE","America/New_York"
-"45405","39.79241","-84.21588","Dayton","OH","Ohio","TRUE","","16793","1647.8","39113","Montgomery","{""39113"": ""100""}","Montgomery","39113","FALSE","FALSE","America/New_York"
-"45406","39.78436","-84.24168","Dayton","OH","Ohio","TRUE","","19390","1496.3","39113","Montgomery","{""39113"": ""100""}","Montgomery","39113","FALSE","FALSE","America/New_York"
-"45409","39.72428","-84.18758","Dayton","OH","Ohio","TRUE","","16227","1809.3","39113","Montgomery","{""39113"": ""100""}","Montgomery","39113","FALSE","FALSE","America/New_York"
-"45410","39.74802","-84.15809","Dayton","OH","Ohio","TRUE","","16446","2848.2","39113","Montgomery","{""39113"": ""100""}","Montgomery","39113","FALSE","FALSE","America/New_York"
-"45414","39.84254","-84.21243","Dayton","OH","Ohio","TRUE","","20053","341.1","39113","Montgomery","{""39113"": ""100""}","Montgomery","39113","FALSE","FALSE","America/New_York"
-"45415","39.83457","-84.25698","Dayton","OH","Ohio","TRUE","","13212","824.3","39113","Montgomery","{""39113"": ""100""}","Montgomery","39113","FALSE","FALSE","America/New_York"
-"45416","39.80717","-84.25801","Dayton","OH","Ohio","TRUE","","6016","1251.3","39113","Montgomery","{""39113"": ""100""}","Montgomery","39113","FALSE","FALSE","America/New_York"
-"45417","39.73592","-84.28564","Dayton","OH","Ohio","TRUE","","29325","345.7","39113","Montgomery","{""39113"": ""100""}","Montgomery","39113","FALSE","FALSE","America/New_York"
-"45419","39.71342","-84.16718","Dayton","OH","Ohio","TRUE","","15060","1509.6","39113","Montgomery","{""39113"": ""100""}","Montgomery","39113","FALSE","FALSE","America/New_York"
-"45420","39.71954","-84.13056","Dayton","OH","Ohio","TRUE","","25179","1568.9","39113","Montgomery","{""39113"": ""100""}","Montgomery","39113","FALSE","FALSE","America/New_York"
-"45424","39.84675","-84.11121","Dayton","OH","Ohio","TRUE","","51307","629.1","39113","Montgomery","{""39113"": ""98.04"", ""39057"": ""1.34"", ""39109"": ""0.62""}","Montgomery|Greene|Miami","39113|39057|39109","FALSE","FALSE","America/New_York"
-"45426","39.80178","-84.31473","Dayton","OH","Ohio","TRUE","","15315","306.8","39113","Montgomery","{""39113"": ""100""}","Montgomery","39113","FALSE","FALSE","America/New_York"
-"45428","39.74293","-84.26068","Dayton","OH","Ohio","TRUE","","346","226.6","39113","Montgomery","{""39113"": ""100""}","Montgomery","39113","FALSE","FALSE","America/New_York"
-"45429","39.68478","-84.16093","Dayton","OH","Ohio","TRUE","","25563","994.8","39113","Montgomery","{""39113"": ""100""}","Montgomery","39113","FALSE","FALSE","America/New_York"
-"45430","39.71287","-84.08443","Dayton","OH","Ohio","TRUE","","7334","563.4","39057","Greene","{""39057"": ""100""}","Greene","39057","FALSE","FALSE","America/New_York"
-"45431","39.76453","-84.07957","Dayton","OH","Ohio","TRUE","","27785","936.4","39113","Montgomery","{""39113"": ""51.35"", ""39057"": ""48.65""}","Montgomery|Greene","39113|39057","FALSE","FALSE","America/New_York"
-"45432","39.73905","-84.08565","Dayton","OH","Ohio","TRUE","","15106","775.7","39057","Greene","{""39057"": ""53.81"", ""39113"": ""46.19""}","Greene|Montgomery","39057|39113","FALSE","FALSE","America/New_York"
-"45433","39.81256","-84.05835","Dayton","OH","Ohio","TRUE","","2514","89.9","39057","Greene","{""39057"": ""90.35"", ""39113"": ""9.65""}","Greene|Montgomery","39057|39113","FALSE","FALSE","America/New_York"
-"45434","39.72158","-84.02895","Dayton","OH","Ohio","TRUE","","12388","455.0","39057","Greene","{""39057"": ""100""}","Greene","39057","FALSE","FALSE","America/New_York"
-"45439","39.70098","-84.21871","Dayton","OH","Ohio","TRUE","","9809","613.5","39113","Montgomery","{""39113"": ""100""}","Montgomery","39113","FALSE","FALSE","America/New_York"
-"45440","39.674","-84.09859","Dayton","OH","Ohio","TRUE","","21045","862.9","39113","Montgomery","{""39113"": ""58.08"", ""39057"": ""41.92""}","Montgomery|Greene","39113|39057","FALSE","FALSE","America/New_York"
-"45449","39.66467","-84.24134","Dayton","OH","Ohio","TRUE","","17561","1020.4","39113","Montgomery","{""39113"": ""100""}","Montgomery","39113","FALSE","FALSE","America/New_York"
-"45458","39.60072","-84.15813","Dayton","OH","Ohio","TRUE","","31680","611.1","39113","Montgomery","{""39113"": ""93.59"", ""39165"": ""5.45"", ""39057"": ""0.96""}","Montgomery|Warren|Greene","39113|39165|39057","FALSE","FALSE","America/New_York"
-"45459","39.6469","-84.16955","Dayton","OH","Ohio","TRUE","","27342","748.3","39113","Montgomery","{""39113"": ""99.65"", ""39057"": ""0.35""}","Montgomery|Greene","39113|39057","FALSE","FALSE","America/New_York"
-"45502","39.92831","-83.81837","Springfield","OH","Ohio","TRUE","","15708","52.5","39023","Clark","{""39023"": ""98.45"", ""39021"": ""1.55""}","Clark|Champaign","39023|39021","FALSE","FALSE","America/New_York"
-"45503","39.96015","-83.77234","Springfield","OH","Ohio","TRUE","","32599","724.7","39023","Clark","{""39023"": ""100""}","Clark","39023","FALSE","FALSE","America/New_York"
-"45504","39.94925","-83.86602","Springfield","OH","Ohio","TRUE","","17810","295.7","39023","Clark","{""39023"": ""100""}","Clark","39023","FALSE","FALSE","America/New_York"
-"45505","39.90692","-83.7629","Springfield","OH","Ohio","TRUE","","19689","565.0","39023","Clark","{""39023"": ""100""}","Clark","39023","FALSE","FALSE","America/New_York"
-"45506","39.90054","-83.85358","Springfield","OH","Ohio","TRUE","","13368","417.2","39023","Clark","{""39023"": ""100""}","Clark","39023","FALSE","FALSE","America/New_York"
-"45601","39.31024","-82.95564","Chillicothe","OH","Ohio","TRUE","","56263","63.5","39141","Ross","{""39141"": ""99.15"", ""39079"": ""0.43"", ""39131"": ""0.43""}","Ross|Jackson|Pike","39141|39079|39131","FALSE","FALSE","America/New_York"
-"45612","39.21586","-83.27254","Bainbridge","OH","Ohio","TRUE","","4563","15.5","39141","Ross","{""39141"": ""70.79"", ""39131"": ""17.1"", ""39071"": ""12.11""}","Ross|Pike|Highland","39141|39131|39071","FALSE","FALSE","America/New_York"
-"45613","39.03318","-82.85138","Beaver","OH","Ohio","TRUE","","2803","14.0","39131","Pike","{""39131"": ""88.21"", ""39079"": ""10.48"", ""39145"": ""1.31""}","Pike|Jackson|Scioto","39131|39079|39145","FALSE","FALSE","America/New_York"
-"45614","38.92975","-82.27709","Bidwell","OH","Ohio","TRUE","","4883","25.8","39053","Gallia","{""39053"": ""100""}","Gallia","39053","FALSE","FALSE","America/New_York"
-"45616","38.75333","-83.3076","Blue Creek","OH","Ohio","TRUE","","1762","8.3","39001","Adams","{""39001"": ""80.95"", ""39145"": ""19.05""}","Adams|Scioto","39001|39145","FALSE","FALSE","America/New_York"
-"45617","39.2797","-83.15589","Bourneville","OH","Ohio","TRUE","","189","431.2","39141","Ross","{""39141"": ""100""}","Ross","39141","FALSE","FALSE","America/New_York"
-"45618","38.88556","-83.61638","Cherry Fork","OH","Ohio","TRUE","","12","205.1","39001","Adams","{""39001"": ""100""}","Adams","39001","FALSE","FALSE","America/New_York"
-"45619","38.47362","-82.45037","Chesapeake","OH","Ohio","TRUE","","7627","84.0","39087","Lawrence","{""39087"": ""100""}","Lawrence","39087","FALSE","FALSE","America/New_York"
-"45620","38.95777","-82.13982","Cheshire","OH","Ohio","TRUE","","765","12.8","39053","Gallia","{""39053"": ""94.55"", ""39105"": ""5.45""}","Gallia|Meigs","39053|39105","FALSE","FALSE","America/New_York"
-"45621","39.11071","-82.60761","Coalton","OH","Ohio","TRUE","","265","354.4","39079","Jackson","{""39079"": ""100""}","Jackson","39079","FALSE","FALSE","America/New_York"
-"45622","39.37557","-82.49937","Creola","OH","Ohio","TRUE","","84","2.2","39163","Vinton","{""39163"": ""92.83"", ""39073"": ""7.17""}","Vinton|Hocking","39163|39073","FALSE","FALSE","America/New_York"
-"45623","38.6415","-82.26784","Crown City","OH","Ohio","TRUE","","3210","17.1","39053","Gallia","{""39053"": ""79.77"", ""39087"": ""20.23""}","Gallia|Lawrence","39053|39087","FALSE","FALSE","America/New_York"
-"45624","39.17024","-83.3469","Cynthiana","OH","Ohio","TRUE","","0","0.0","39131","Pike","{""39131"": ""100""}","Pike","39131","FALSE","FALSE","America/New_York"
-"45628","39.39099","-83.19805","Frankfort","OH","Ohio","TRUE","","5187","24.9","39141","Ross","{""39141"": ""100""}","Ross","39141","FALSE","FALSE","America/New_York"
-"45629","38.64971","-82.81286","Franklin Furnace","OH","Ohio","TRUE","","2741","34.8","39145","Scioto","{""39145"": ""100""}","Scioto","39145","FALSE","FALSE","America/New_York"
-"45630","38.69916","-83.09141","Friendship","OH","Ohio","TRUE","","78","264.5","39145","Scioto","{""39145"": ""100""}","Scioto","39145","FALSE","FALSE","America/New_York"
-"45631","38.81774","-82.25553","Gallipolis","OH","Ohio","TRUE","","14496","49.4","39053","Gallia","{""39053"": ""100""}","Gallia","39053","FALSE","FALSE","America/New_York"
-"45634","39.17982","-82.48627","Hamden","OH","Ohio","TRUE","","1898","21.4","39163","Vinton","{""39163"": ""99.48"", ""39079"": ""0.52""}","Vinton|Jackson","39163|39079","FALSE","FALSE","America/New_York"
-"45636","38.58725","-82.82521","Haverhill","OH","Ohio","TRUE","","126","75.0","39145","Scioto","{""39145"": ""100""}","Scioto","39145","FALSE","FALSE","America/New_York"
-"45638","38.56184","-82.67799","Ironton","OH","Ohio","TRUE","","21710","108.1","39087","Lawrence","{""39087"": ""96.58"", ""39145"": ""3.42""}","Lawrence|Scioto","39087|39145","FALSE","FALSE","America/New_York"
-"45640","39.02198","-82.65363","Jackson","OH","Ohio","TRUE","","16121","35.0","39079","Jackson","{""39079"": ""100""}","Jackson","39079","FALSE","FALSE","America/New_York"
-"45642","39.04632","-83.05292","Jasper","OH","Ohio","TRUE","","0","0.0","39131","Pike","{""39131"": ""100""}","Pike","39131","FALSE","FALSE","America/New_York"
-"45644","39.4532","-82.84153","Kingston","OH","Ohio","TRUE","","4931","31.4","39141","Ross","{""39141"": ""75.22"", ""39129"": ""24.78""}","Ross|Pickaway","39141|39129","FALSE","FALSE","America/New_York"
-"45645","38.56988","-82.53159","Kitts Hill","OH","Ohio","TRUE","","2317","19.1","39087","Lawrence","{""39087"": ""100""}","Lawrence","39087","FALSE","FALSE","America/New_York"
-"45646","39.07677","-83.3229","Latham","OH","Ohio","TRUE","","571","14.1","39131","Pike","{""39131"": ""100""}","Pike","39131","FALSE","FALSE","America/New_York"
-"45647","39.29437","-82.73775","Londonderry","OH","Ohio","TRUE","","2882","16.7","39141","Ross","{""39141"": ""53.02"", ""39163"": ""46.98""}","Ross|Vinton","39141|39163","FALSE","FALSE","America/New_York"
-"45648","38.92058","-83.0151","Lucasville","OH","Ohio","TRUE","","13143","35.7","39145","Scioto","{""39145"": ""86.52"", ""39131"": ""13.48""}","Scioto|Pike","39145|39131","FALSE","FALSE","America/New_York"
-"45650","38.74441","-83.42086","Lynx","OH","Ohio","TRUE","","454","11.7","39001","Adams","{""39001"": ""100""}","Adams","39001","FALSE","FALSE","America/New_York"
-"45651","39.2787","-82.48881","McArthur","OH","Ohio","TRUE","","5867","15.1","39163","Vinton","{""39163"": ""100""}","Vinton","39163","FALSE","FALSE","America/New_York"
-"45652","38.83144","-83.08477","McDermott","OH","Ohio","TRUE","","3706","43.1","39145","Scioto","{""39145"": ""100""}","Scioto","39145","FALSE","FALSE","America/New_York"
-"45653","38.89155","-82.8231","Minford","OH","Ohio","TRUE","","3924","32.5","39145","Scioto","{""39145"": ""100""}","Scioto","39145","FALSE","FALSE","America/New_York"
-"45654","39.3666","-82.3821","New Plymouth","OH","Ohio","TRUE","","1289","8.9","39163","Vinton","{""39163"": ""59.76"", ""39073"": ""40.24""}","Vinton|Hocking","39163|39073","FALSE","FALSE","America/New_York"
-"45656","38.87587","-82.59256","Oak Hill","OH","Ohio","TRUE","","6170","18.3","39079","Jackson","{""39079"": ""93.79"", ""39053"": ""3.68"", ""39087"": ""2.53""}","Jackson|Gallia|Lawrence","39079|39053|39087","FALSE","FALSE","America/New_York"
-"45657","38.85279","-83.2142","Otway","OH","Ohio","TRUE","","1518","6.0","39145","Scioto","{""39145"": ""87.86"", ""39001"": ""12.14""}","Scioto|Adams","39145|39001","FALSE","FALSE","America/New_York"
-"45658","38.7621","-82.41127","Patriot","OH","Ohio","TRUE","","2708","10.8","39053","Gallia","{""39053"": ""100""}","Gallia","39053","FALSE","FALSE","America/New_York"
-"45659","38.67088","-82.62351","Pedro","OH","Ohio","TRUE","","2653","10.4","39087","Lawrence","{""39087"": ""100""}","Lawrence","39087","FALSE","FALSE","America/New_York"
-"45660","38.98646","-83.3612","Peebles","OH","Ohio","TRUE","","7402","14.6","39001","Adams","{""39001"": ""81.33"", ""39131"": ""16.03"", ""39071"": ""2.36"", ""39145"": ""0.28""}","Adams|Pike|Highland|Scioto","39001|39131|39071|39145","FALSE","FALSE","America/New_York"
-"45661","39.04219","-83.10695","Piketon","OH","Ohio","TRUE","","7268","27.6","39131","Pike","{""39131"": ""99.53"", ""39145"": ""0.47""}","Pike|Scioto","39131|39145","FALSE","FALSE","America/New_York"
-"45662","38.78775","-82.92046","Portsmouth","OH","Ohio","TRUE","","29520","211.7","39145","Scioto","{""39145"": ""100""}","Scioto","39145","FALSE","FALSE","America/New_York"
-"45663","38.74781","-83.10379","West Portsmouth","OH","Ohio","TRUE","","6228","37.1","39145","Scioto","{""39145"": ""100""}","Scioto","39145","FALSE","FALSE","America/New_York"
-"45669","38.49429","-82.35534","Proctorville","OH","Ohio","TRUE","","9844","109.7","39087","Lawrence","{""39087"": ""100""}","Lawrence","39087","FALSE","FALSE","America/New_York"
-"45671","38.96821","-83.24146","Rarden","OH","Ohio","TRUE","","228","5.2","39145","Scioto","{""39145"": ""86.65"", ""39131"": ""13.35""}","Scioto|Pike","39145|39131","FALSE","FALSE","America/New_York"
-"45672","39.20161","-82.68342","Ray","OH","Ohio","TRUE","","1368","9.9","39079","Jackson","{""39079"": ""53.23"", ""39163"": ""46.77""}","Jackson|Vinton","39079|39163","FALSE","FALSE","America/New_York"
-"45673","39.20394","-82.81214","Richmond Dale","OH","Ohio","TRUE","","582","430.7","39141","Ross","{""39141"": ""100""}","Ross","39141","FALSE","FALSE","America/New_York"
-"45674","38.88163","-82.37329","Rio Grande","OH","Ohio","TRUE","","656","156.6","39053","Gallia","{""39053"": ""100""}","Gallia","39053","FALSE","FALSE","America/New_York"
-"45678","38.60103","-82.3772","Scottown","OH","Ohio","TRUE","","1263","12.0","39087","Lawrence","{""39087"": ""91.37"", ""39053"": ""8.63""}","Lawrence|Gallia","39087|39053","FALSE","FALSE","America/New_York"
-"45679","38.97536","-83.56372","Seaman","OH","Ohio","TRUE","","2801","18.6","39001","Adams","{""39001"": ""96.44"", ""39071"": ""3.56""}","Adams|Highland","39001|39071","FALSE","FALSE","America/New_York"
-"45680","38.45479","-82.54513","South Point","OH","Ohio","TRUE","","12647","147.3","39087","Lawrence","{""39087"": ""100""}","Lawrence","39087","FALSE","FALSE","America/New_York"
-"45681","39.30598","-83.25186","South Salem","OH","Ohio","TRUE","","1719","17.3","39141","Ross","{""39141"": ""100""}","Ross","39141","FALSE","FALSE","America/New_York"
-"45682","38.80766","-82.6944","South Webster","OH","Ohio","TRUE","","2133","17.7","39145","Scioto","{""39145"": ""95.99"", ""39087"": ""4.01""}","Scioto|Lawrence","39145|39087","FALSE","FALSE","America/New_York"
-"45684","38.67318","-83.27352","Stout","OH","Ohio","TRUE","","2169","10.6","39145","Scioto","{""39145"": ""62.42"", ""39001"": ""37.58""}","Scioto|Adams","39145|39001","FALSE","FALSE","America/New_York"
-"45685","38.93037","-82.44968","Thurman","OH","Ohio","TRUE","","1419","18.1","39053","Gallia","{""39053"": ""69.14"", ""39079"": ""30.86""}","Gallia|Jackson","39053|39079","FALSE","FALSE","America/New_York"
-"45686","39.01095","-82.37191","Vinton","OH","Ohio","TRUE","","3508","14.6","39053","Gallia","{""39053"": ""75.33"", ""39163"": ""18.9"", ""39105"": ""5.77""}","Gallia|Vinton|Meigs","39053|39163|39105","FALSE","FALSE","America/New_York"
-"45688","38.72999","-82.53036","Waterloo","OH","Ohio","TRUE","","578","6.1","39087","Lawrence","{""39087"": ""96.21"", ""39053"": ""3.79""}","Lawrence|Gallia","39087|39053","FALSE","FALSE","America/New_York"
-"45690","39.13139","-83.01686","Waverly","OH","Ohio","TRUE","","14602","39.2","39131","Pike","{""39131"": ""89.26"", ""39141"": ""10.74""}","Pike|Ross","39131|39141","FALSE","FALSE","America/New_York"
-"45692","39.11457","-82.54062","Wellston","OH","Ohio","TRUE","","8964","42.3","39079","Jackson","{""39079"": ""100""}","Jackson","39079","FALSE","FALSE","America/New_York"
-"45693","38.81009","-83.53667","West Union","OH","Ohio","TRUE","","8935","27.3","39001","Adams","{""39001"": ""100""}","Adams","39001","FALSE","FALSE","America/New_York"
-"45694","38.74733","-82.78221","Wheelersburg","OH","Ohio","TRUE","","12276","66.5","39145","Scioto","{""39145"": ""100""}","Scioto","39145","FALSE","FALSE","America/New_York"
-"45695","39.15942","-82.36917","Wilkesville","OH","Ohio","TRUE","","613","6.5","39163","Vinton","{""39163"": ""100""}","Vinton","39163","FALSE","FALSE","America/New_York"
-"45696","38.60592","-82.45037","Willow Wood","OH","Ohio","TRUE","","1525","16.4","39087","Lawrence","{""39087"": ""100""}","Lawrence","39087","FALSE","FALSE","America/New_York"
-"45697","38.9339","-83.66522","Winchester","OH","Ohio","TRUE","","4715","17.7","39001","Adams","{""39001"": ""65.82"", ""39015"": ""24.95"", ""39071"": ""9.24""}","Adams|Brown|Highland","39001|39015|39071","FALSE","FALSE","America/New_York"
-"45698","39.28581","-82.39259","Zaleski","OH","Ohio","TRUE","","372","38.8","39163","Vinton","{""39163"": ""100""}","Vinton","39163","FALSE","FALSE","America/New_York"
-"45701","39.31358","-82.08214","Athens","OH","Ohio","TRUE","","36270","94.4","39009","Athens","{""39009"": ""100""}","Athens","39009","FALSE","FALSE","America/New_York"
-"45710","39.19803","-82.22951","Albany","OH","Ohio","TRUE","","5378","20.6","39009","Athens","{""39009"": ""62.93"", ""39105"": ""28.14"", ""39163"": ""8.93""}","Athens|Meigs|Vinton","39009|39105|39163","FALSE","FALSE","America/New_York"
-"45711","39.42452","-81.92993","Amesville","OH","Ohio","TRUE","","1134","8.6","39009","Athens","{""39009"": ""84.57"", ""39167"": ""11.21"", ""39115"": ""4.22""}","Athens|Washington|Morgan","39009|39167|39115","FALSE","FALSE","America/New_York"
-"45714","39.31735","-81.61891","Belpre","OH","Ohio","TRUE","","9120","102.2","39167","Washington","{""39167"": ""100""}","Washington","39167","FALSE","FALSE","America/New_York"
-"45715","39.60457","-81.62985","Beverly","OH","Ohio","TRUE","","2653","24.0","39167","Washington","{""39167"": ""68.94"", ""39115"": ""25.82"", ""39121"": ""5.25""}","Washington|Morgan|Noble","39167|39115|39121","FALSE","FALSE","America/New_York"
-"45716","39.46286","-82.18176","Buchtel","OH","Ohio","TRUE","","425","422.5","39009","Athens","{""39009"": ""100""}","Athens","39009","FALSE","FALSE","America/New_York"
-"45719","39.40007","-82.12608","Chauncey","OH","Ohio","TRUE","","1056","576.1","39009","Athens","{""39009"": ""100""}","Athens","39009","FALSE","FALSE","America/New_York"
-"45721","39.56548","-81.58441","Coal Run","OH","Ohio","TRUE","","56","422.1","39167","Washington","{""39167"": ""100""}","Washington","39167","FALSE","FALSE","America/New_York"
-"45723","39.22297","-81.82739","Coolville","OH","Ohio","TRUE","","3532","20.7","39009","Athens","{""39009"": ""86.9"", ""39105"": ""10.75"", ""39167"": ""2.35""}","Athens|Meigs|Washington","39009|39105|39167","FALSE","FALSE","America/New_York"
-"45724","39.38111","-81.79195","Cutler","OH","Ohio","TRUE","","2424","17.6","39167","Washington","{""39167"": ""100""}","Washington","39167","FALSE","FALSE","America/New_York"
-"45727","39.64399","-81.48482","Dexter City","OH","Ohio","TRUE","","342","4.2","39121","Noble","{""39121"": ""100""}","Noble","39121","FALSE","FALSE","America/New_York"
-"45729","39.41361","-81.60783","Fleming","OH","Ohio","TRUE","","1520","23.0","39167","Washington","{""39167"": ""100""}","Washington","39167","FALSE","FALSE","America/New_York"
-"45732","39.51519","-82.0673","Glouster","OH","Ohio","TRUE","","4403","22.8","39009","Athens","{""39009"": ""78.48"", ""39115"": ""18.07"", ""39127"": ""3.45""}","Athens|Morgan|Perry","39009|39115|39127","FALSE","FALSE","America/New_York"
-"45734","39.63875","-81.18571","Graysville","OH","Ohio","TRUE","","447","5.0","39111","Monroe","{""39111"": ""100""}","Monroe","39111","FALSE","FALSE","America/New_York"
-"45735","39.25475","-81.92457","Guysville","OH","Ohio","TRUE","","1360","10.5","39009","Athens","{""39009"": ""100""}","Athens","39009","FALSE","FALSE","America/New_York"
-"45740","39.47702","-82.07966","Jacksonville","OH","Ohio","TRUE","","357","393.7","39009","Athens","{""39009"": ""100""}","Athens","39009","FALSE","FALSE","America/New_York"
-"45741","39.06483","-82.2523","Langsville","OH","Ohio","TRUE","","481","4.4","39105","Meigs","{""39105"": ""100""}","Meigs","39105","FALSE","FALSE","America/New_York"
-"45742","39.2855","-81.72908","Little Hocking","OH","Ohio","TRUE","","3077","44.0","39167","Washington","{""39167"": ""97.35"", ""39009"": ""2.65""}","Washington|Athens","39167|39009","FALSE","FALSE","America/New_York"
-"45743","39.07618","-81.84989","Long Bottom","OH","Ohio","TRUE","","1671","17.6","39105","Meigs","{""39105"": ""100""}","Meigs","39105","FALSE","FALSE","America/New_York"
-"45744","39.53769","-81.50407","Lowell","OH","Ohio","TRUE","","2746","19.5","39167","Washington","{""39167"": ""98.53"", ""39121"": ""1.47""}","Washington|Noble","39167|39121","FALSE","FALSE","America/New_York"
-"45745","39.61622","-81.32979","Lower Salem","OH","Ohio","TRUE","","1485","7.7","39167","Washington","{""39167"": ""55.88"", ""39121"": ""30.35"", ""39111"": ""13.77""}","Washington|Noble|Monroe","39167|39121|39111","FALSE","FALSE","America/New_York"
-"45746","39.60991","-81.45918","Macksburg","OH","Ohio","TRUE","","269","6.3","39167","Washington","{""39167"": ""87.3"", ""39121"": ""12.7""}","Washington|Noble","39167|39121","FALSE","FALSE","America/New_York"
-"45750","39.43136","-81.42219","Marietta","OH","Ohio","TRUE","","26473","91.9","39167","Washington","{""39167"": ""100""}","Washington","39167","FALSE","FALSE","America/New_York"
-"45760","39.01612","-82.12329","Middleport","OH","Ohio","TRUE","","4076","80.5","39105","Meigs","{""39105"": ""100""}","Meigs","39105","FALSE","FALSE","America/New_York"
-"45761","39.42651","-82.09102","Millfield","OH","Ohio","TRUE","","1663","19.4","39009","Athens","{""39009"": ""100""}","Athens","39009","FALSE","FALSE","America/New_York"
-"45764","39.44972","-82.24418","Nelsonville","OH","Ohio","TRUE","","9374","45.0","39009","Athens","{""39009"": ""80.33"", ""39073"": ""19.67""}","Athens|Hocking","39009|39073","FALSE","FALSE","America/New_York"
-"45766","39.32282","-82.25938","New Marshfield","OH","Ohio","TRUE","","1109","14.5","39009","Athens","{""39009"": ""95.15"", ""39163"": ""4.85""}","Athens|Vinton","39009|39163","FALSE","FALSE","America/New_York"
-"45767","39.54029","-81.13416","New Matamoras","OH","Ohio","TRUE","","2724","9.2","39167","Washington","{""39167"": ""81.07"", ""39111"": ""18.93""}","Washington|Monroe","39167|39111","FALSE","FALSE","America/New_York"
-"45768","39.41031","-81.27091","Newport","OH","Ohio","TRUE","","1409","18.2","39167","Washington","{""39167"": ""100""}","Washington","39167","FALSE","FALSE","America/New_York"
-"45769","39.10645","-82.04824","Pomeroy","OH","Ohio","TRUE","","6796","25.0","39105","Meigs","{""39105"": ""100""}","Meigs","39105","FALSE","FALSE","America/New_York"
-"45770","38.98347","-81.80049","Portland","OH","Ohio","TRUE","","640","12.1","39105","Meigs","{""39105"": ""100""}","Meigs","39105","FALSE","FALSE","America/New_York"
-"45771","38.98139","-81.89773","Racine","OH","Ohio","TRUE","","3347","20.9","39105","Meigs","{""39105"": ""100""}","Meigs","39105","FALSE","FALSE","America/New_York"
-"45772","39.14242","-81.8252","Reedsville","OH","Ohio","TRUE","","1847","16.5","39105","Meigs","{""39105"": ""100""}","Meigs","39105","FALSE","FALSE","America/New_York"
-"45773","39.4585","-81.26731","Reno","OH","Ohio","TRUE","","89","7.2","39167","Washington","{""39167"": ""100""}","Washington","39167","FALSE","FALSE","America/New_York"
-"45775","39.08289","-82.15426","Rutland","OH","Ohio","TRUE","","990","13.1","39105","Meigs","{""39105"": ""100""}","Meigs","39105","FALSE","FALSE","America/New_York"
-"45776","39.18708","-82.02045","Shade","OH","Ohio","TRUE","","693","13.6","39105","Meigs","{""39105"": ""58.43"", ""39009"": ""41.57""}","Meigs|Athens","39105|39009","FALSE","FALSE","America/New_York"
-"45778","39.34711","-81.89314","Stewart","OH","Ohio","TRUE","","1028","16.3","39009","Athens","{""39009"": ""100""}","Athens","39009","FALSE","FALSE","America/New_York"
-"45779","38.99844","-81.9731","Syracuse","OH","Ohio","TRUE","","856","453.7","39105","Meigs","{""39105"": ""100""}","Meigs","39105","FALSE","FALSE","America/New_York"
-"45780","39.36636","-82.13108","The Plains","OH","Ohio","TRUE","","3102","474.1","39009","Athens","{""39009"": ""100""}","Athens","39009","FALSE","FALSE","America/New_York"
-"45782","39.48597","-82.07952","Trimble","OH","Ohio","TRUE","","474","332.6","39009","Athens","{""39009"": ""100""}","Athens","39009","FALSE","FALSE","America/New_York"
-"45784","39.38717","-81.68722","Vincent","OH","Ohio","TRUE","","3355","34.6","39167","Washington","{""39167"": ""100""}","Washington","39167","FALSE","FALSE","America/New_York"
-"45786","39.50244","-81.65368","Waterford","OH","Ohio","TRUE","","3361","19.9","39167","Washington","{""39167"": ""97.48"", ""39115"": ""2.52""}","Washington|Morgan","39167|39115","FALSE","FALSE","America/New_York"
-"45787","39.46919","-81.63163","Watertown","OH","Ohio","TRUE","","55","744.1","39167","Washington","{""39167"": ""100""}","Washington","39167","FALSE","FALSE","America/New_York"
-"45788","39.51363","-81.36686","Whipple","OH","Ohio","TRUE","","1216","13.6","39167","Washington","{""39167"": ""100""}","Washington","39167","FALSE","FALSE","America/New_York"
-"45789","39.55155","-81.25683","Wingett Run","OH","Ohio","TRUE","","235","7.9","39167","Washington","{""39167"": ""88.7"", ""39111"": ""11.3""}","Washington|Monroe","39167|39111","FALSE","FALSE","America/New_York"
-"45801","40.77558","-84.03697","Lima","OH","Ohio","TRUE","","22518","193.3","39003","Allen","{""39003"": ""100""}","Allen","39003","FALSE","FALSE","America/New_York"
-"45804","40.71467","-84.06633","Lima","OH","Ohio","TRUE","","15551","276.2","39003","Allen","{""39003"": ""100""}","Allen","39003","FALSE","FALSE","America/New_York"
-"45805","40.72874","-84.16469","Lima","OH","Ohio","TRUE","","23252","596.6","39003","Allen","{""39003"": ""100""}","Allen","39003","FALSE","FALSE","America/New_York"
-"45806","40.6752","-84.12437","Lima","OH","Ohio","TRUE","","10923","70.3","39003","Allen","{""39003"": ""76.43"", ""39011"": ""23.57""}","Allen|Auglaize","39003|39011","FALSE","FALSE","America/New_York"
-"45807","40.80637","-84.17081","Lima","OH","Ohio","TRUE","","12008","61.0","39003","Allen","{""39003"": ""100""}","Allen","39003","FALSE","FALSE","America/New_York"
-"45808","40.83163","-83.97232","Beaverdam","OH","Ohio","TRUE","","345","250.5","39003","Allen","{""39003"": ""100""}","Allen","39003","FALSE","FALSE","America/New_York"
-"45809","40.84563","-84.18742","Gomer","OH","Ohio","TRUE","","146","221.7","39003","Allen","{""39003"": ""100""}","Allen","39003","FALSE","FALSE","America/New_York"
-"45810","40.77679","-83.81205","Ada","OH","Ohio","TRUE","","8006","49.4","39065","Hardin","{""39065"": ""94.8"", ""39063"": ""2.62"", ""39003"": ""2.58""}","Hardin|Hancock|Allen","39065|39063|39003","FALSE","FALSE","America/New_York"
-"45812","40.68519","-83.80944","Alger","OH","Ohio","TRUE","","1744","16.9","39065","Hardin","{""39065"": ""100""}","Hardin","39065","FALSE","FALSE","America/New_York"
-"45813","41.18986","-84.73112","Antwerp","OH","Ohio","TRUE","","3522","24.8","39125","Paulding","{""39125"": ""99.32"", ""39039"": ""0.68""}","Paulding|Defiance","39125|39039","FALSE","FALSE","America/New_York"
-"45814","40.9019","-83.61406","Arlington","OH","Ohio","TRUE","","3417","37.0","39063","Hancock","{""39063"": ""100""}","Hancock","39063","FALSE","FALSE","America/New_York"
-"45816","41.00446","-83.79401","Benton Ridge","OH","Ohio","TRUE","","338","489.9","39063","Hancock","{""39063"": ""100""}","Hancock","39063","FALSE","FALSE","America/New_York"
-"45817","40.87725","-83.88356","Bluffton","OH","Ohio","TRUE","","6862","41.0","39003","Allen","{""39003"": ""82.56"", ""39063"": ""16.72"", ""39137"": ""0.73""}","Allen|Hancock|Putnam","39003|39063|39137","FALSE","FALSE","America/New_York"
-"45819","40.62408","-84.26038","Buckland","OH","Ohio","TRUE","","321","477.4","39011","Auglaize","{""39011"": ""100""}","Auglaize","39011","FALSE","FALSE","America/New_York"
-"45820","40.8349","-84.08394","Cairo","OH","Ohio","TRUE","","508","271.5","39003","Allen","{""39003"": ""100""}","Allen","39003","FALSE","FALSE","America/New_York"
-"45821","41.22627","-84.56425","Cecil","OH","Ohio","TRUE","","986","9.6","39125","Paulding","{""39125"": ""98.4"", ""39039"": ""1.6""}","Paulding|Defiance","39125|39039","FALSE","FALSE","America/New_York"
-"45822","40.55265","-84.59801","Celina","OH","Ohio","TRUE","","18876","44.4","39107","Mercer","{""39107"": ""100""}","Mercer","39107","FALSE","FALSE","America/New_York"
-"45826","40.43575","-84.49344","Chickasaw","OH","Ohio","TRUE","","438","626.9","39107","Mercer","{""39107"": ""100""}","Mercer","39107","FALSE","FALSE","America/New_York"
-"45827","41.0032","-84.30088","Cloverdale","OH","Ohio","TRUE","","2065","12.9","39137","Putnam","{""39137"": ""91.64"", ""39125"": ""8.36""}","Putnam|Paulding","39137|39125","FALSE","FALSE","America/New_York"
-"45828","40.48671","-84.67532","Coldwater","OH","Ohio","TRUE","","6295","73.6","39107","Mercer","{""39107"": ""100""}","Mercer","39107","FALSE","FALSE","America/New_York"
-"45830","40.90566","-84.09236","Columbus Grove","OH","Ohio","TRUE","","5718","23.3","39137","Putnam","{""39137"": ""79.38"", ""39003"": ""20.62""}","Putnam|Allen","39137|39003","FALSE","FALSE","America/New_York"
-"45831","41.11002","-84.24957","Continental","OH","Ohio","TRUE","","3400","17.8","39137","Putnam","{""39137"": ""99.37"", ""39039"": ""0.63""}","Putnam|Defiance","39137|39039","FALSE","FALSE","America/New_York"
-"45832","40.92657","-84.73285","Convoy","OH","Ohio","TRUE","","3088","17.1","39161","Van Wert","{""39161"": ""99.48"", ""39125"": ""0.52""}","Van Wert|Paulding","39161|39125","FALSE","FALSE","America/New_York"
-"45833","40.83401","-84.34917","Delphos","OH","Ohio","TRUE","","10667","59.7","39003","Allen","{""39003"": ""55.35"", ""39161"": ""41"", ""39137"": ""3.65""}","Allen|Van Wert|Putnam","39003|39161|39137","FALSE","FALSE","America/New_York"
-"45835","40.75983","-83.70005","Dola","OH","Ohio","TRUE","","550","11.1","39065","Hardin","{""39065"": ""100""}","Hardin","39065","FALSE","FALSE","America/New_York"
-"45836","40.79266","-83.63982","Dunkirk","OH","Ohio","TRUE","","1287","20.7","39065","Hardin","{""39065"": ""100""}","Hardin","39065","FALSE","FALSE","America/New_York"
-"45838","40.74204","-84.47764","Elgin","OH","Ohio","TRUE","","49","138.6","39161","Van Wert","{""39161"": ""100""}","Van Wert","39161","FALSE","FALSE","America/New_York"
-"45840","41.02537","-83.6521","Findlay","OH","Ohio","TRUE","","55589","128.0","39063","Hancock","{""39063"": ""100""}","Hancock","39063","FALSE","FALSE","America/New_York"
-"45841","40.87455","-83.73719","Jenera","OH","Ohio","TRUE","","888","13.4","39063","Hancock","{""39063"": ""100""}","Hancock","39063","FALSE","FALSE","America/New_York"
-"45843","40.78156","-83.53505","Forest","OH","Ohio","TRUE","","3907","15.1","39065","Hardin","{""39065"": ""64.39"", ""39063"": ""18.32"", ""39175"": ""17.29""}","Hardin|Hancock|Wyandot","39065|39063|39175","FALSE","FALSE","America/New_York"
-"45844","40.91747","-84.27738","Fort Jennings","OH","Ohio","TRUE","","3066","21.8","39137","Putnam","{""39137"": ""96.74"", ""39003"": ""2.4"", ""39161"": ""0.86""}","Putnam|Allen|Van Wert","39137|39003|39161","FALSE","FALSE","America/New_York"
-"45845","40.33031","-84.38174","Fort Loramie","OH","Ohio","TRUE","","2931","35.4","39149","Shelby","{""39149"": ""99.31"", ""39011"": ""0.69""}","Shelby|Auglaize","39149|39011","FALSE","FALSE","America/New_York"
-"45846","40.40882","-84.74634","Fort Recovery","OH","Ohio","TRUE","","4231","21.9","39107","Mercer","{""39107"": ""93.42"", ""39037"": ""6.58""}","Mercer|Darke","39107|39037","FALSE","FALSE","America/New_York"
-"45849","41.01385","-84.45338","Grover Hill","OH","Ohio","TRUE","","1018","8.9","39125","Paulding","{""39125"": ""85.07"", ""39161"": ""13.37"", ""39137"": ""1.56""}","Paulding|Van Wert|Putnam","39125|39161|39137","FALSE","FALSE","America/New_York"
-"45850","40.70409","-83.91821","Harrod","OH","Ohio","TRUE","","3530","22.7","39003","Allen","{""39003"": ""90.64"", ""39065"": ""7.86"", ""39011"": ""1.51""}","Allen|Hardin|Auglaize","39003|39065|39011","FALSE","FALSE","America/New_York"
-"45851","41.03234","-84.60004","Haviland","OH","Ohio","TRUE","","839","9.6","39125","Paulding","{""39125"": ""100""}","Paulding","39125","FALSE","FALSE","America/New_York"
-"45853","40.98624","-84.19854","Kalida","OH","Ohio","TRUE","","1293","450.7","39137","Putnam","{""39137"": ""100""}","Putnam","39137","FALSE","FALSE","America/New_York"
-"45854","40.7578","-83.95175","Lafayette","OH","Ohio","TRUE","","458","538.9","39003","Allen","{""39003"": ""100""}","Allen","39003","FALSE","FALSE","America/New_York"
-"45855","41.08791","-84.5841","Latty","OH","Ohio","TRUE","","147","213.6","39125","Paulding","{""39125"": ""100""}","Paulding","39125","FALSE","FALSE","America/New_York"
-"45856","41.11526","-83.99906","Leipsic","OH","Ohio","TRUE","","5187","19.1","39137","Putnam","{""39137"": ""98.44"", ""39069"": ""1.35"", ""39063"": ""0.21""}","Putnam|Henry|Hancock","39137|39069|39063","FALSE","FALSE","America/New_York"
-"45858","41.10771","-83.80444","McComb","OH","Ohio","TRUE","","2972","18.3","39063","Hancock","{""39063"": ""100""}","Hancock","39063","FALSE","FALSE","America/New_York"
-"45859","40.68372","-83.77862","McGuffey","OH","Ohio","TRUE","","483","140.2","39065","Hardin","{""39065"": ""100""}","Hardin","39065","FALSE","FALSE","America/New_York"
-"45860","40.394","-84.51341","Maria Stein","OH","Ohio","TRUE","","2382","26.3","39107","Mercer","{""39107"": ""100""}","Mercer","39107","FALSE","FALSE","America/New_York"
-"45861","41.08281","-84.42657","Melrose","OH","Ohio","TRUE","","233","47.9","39125","Paulding","{""39125"": ""100""}","Paulding","39125","FALSE","FALSE","America/New_York"
-"45862","40.67074","-84.51455","Mendon","OH","Ohio","TRUE","","1420","14.9","39107","Mercer","{""39107"": ""96.62"", ""39011"": ""3.38""}","Mercer|Auglaize","39107|39011","FALSE","FALSE","America/New_York"
-"45863","40.90781","-84.44728","Middle Point","OH","Ohio","TRUE","","1398","17.9","39161","Van Wert","{""39161"": ""100""}","Van Wert","39161","FALSE","FALSE","America/New_York"
-"45864","41.09936","-84.14086","Miller City","OH","Ohio","TRUE","","159","54.0","39137","Putnam","{""39137"": ""100""}","Putnam","39137","FALSE","FALSE","America/New_York"
-"45865","40.39152","-84.36881","Minster","OH","Ohio","TRUE","","4859","59.2","39011","Auglaize","{""39011"": ""75.01"", ""39149"": ""24.99""}","Auglaize|Shelby","39011|39149","FALSE","FALSE","America/New_York"
-"45866","40.4914","-84.5516","Montezuma","OH","Ohio","TRUE","","111","226.1","39107","Mercer","{""39107"": ""100""}","Mercer","39107","FALSE","FALSE","America/New_York"
-"45867","40.89834","-83.53695","Mount Blanchard","OH","Ohio","TRUE","","968","14.6","39063","Hancock","{""39063"": ""98.15"", ""39175"": ""1.85""}","Hancock|Wyandot","39063|39175","FALSE","FALSE","America/New_York"
-"45868","40.96628","-83.84966","Mount Cory","OH","Ohio","TRUE","","604","15.0","39063","Hancock","{""39063"": ""100""}","Hancock","39063","FALSE","FALSE","America/New_York"
-"45869","40.4566","-84.39712","New Bremen","OH","Ohio","TRUE","","4875","51.2","39011","Auglaize","{""39011"": ""96.05"", ""39149"": ""2.1"", ""39107"": ""1.85""}","Auglaize|Shelby|Mercer","39011|39149|39107","FALSE","FALSE","America/New_York"
-"45870","40.55626","-83.95144","New Hampshire","OH","Ohio","TRUE","","276","326.4","39011","Auglaize","{""39011"": ""100""}","Auglaize","39011","FALSE","FALSE","America/New_York"
-"45871","40.49378","-84.29966","New Knoxville","OH","Ohio","TRUE","","2103","34.2","39011","Auglaize","{""39011"": ""77.29"", ""39149"": ""22.71""}","Auglaize|Shelby","39011|39149","FALSE","FALSE","America/New_York"
-"45872","41.1887","-83.68573","North Baltimore","OH","Ohio","TRUE","","4200","53.4","39173","Wood","{""39173"": ""98.49"", ""39063"": ""1.51""}","Wood|Hancock","39173|39063","FALSE","FALSE","America/New_York"
-"45873","41.11955","-84.39311","Oakwood","OH","Ohio","TRUE","","1855","14.6","39125","Paulding","{""39125"": ""100""}","Paulding","39125","FALSE","FALSE","America/New_York"
-"45874","40.78698","-84.67286","Ohio City","OH","Ohio","TRUE","","2178","14.7","39161","Van Wert","{""39161"": ""100""}","Van Wert","39161","FALSE","FALSE","America/New_York"
-"45875","41.02206","-84.06171","Ottawa","OH","Ohio","TRUE","","11207","42.2","39137","Putnam","{""39137"": ""100""}","Putnam","39137","FALSE","FALSE","America/New_York"
-"45876","40.92728","-84.34131","Ottoville","OH","Ohio","TRUE","","781","502.9","39137","Putnam","{""39137"": ""100""}","Putnam","39137","FALSE","FALSE","America/New_York"
-"45877","40.9558","-83.93683","Pandora","OH","Ohio","TRUE","","2200","30.6","39137","Putnam","{""39137"": ""95.28"", ""39003"": ""4.49"", ""39063"": ""0.23""}","Putnam|Allen|Hancock","39137|39003|39063","FALSE","FALSE","America/New_York"
-"45879","41.12849","-84.56158","Paulding","OH","Ohio","TRUE","","6173","22.5","39125","Paulding","{""39125"": ""100""}","Paulding","39125","FALSE","FALSE","America/New_York"
-"45880","41.0677","-84.7361","Payne","OH","Ohio","TRUE","","2754","18.0","39125","Paulding","{""39125"": ""100""}","Paulding","39125","FALSE","FALSE","America/New_York"
-"45881","40.94952","-83.7756","Rawson","OH","Ohio","TRUE","","1355","17.7","39063","Hancock","{""39063"": ""100""}","Hancock","39063","FALSE","FALSE","America/New_York"
-"45882","40.67736","-84.67559","Rockford","OH","Ohio","TRUE","","2852","13.1","39107","Mercer","{""39107"": ""97.24"", ""39161"": ""2.76""}","Mercer|Van Wert","39107|39161","FALSE","FALSE","America/New_York"
-"45883","40.40709","-84.62852","Saint Henry","OH","Ohio","TRUE","","3899","41.8","39107","Mercer","{""39107"": ""100""}","Mercer","39107","FALSE","FALSE","America/New_York"
-"45884","40.55423","-84.08301","Saint Johns","OH","Ohio","TRUE","","71","163.5","39011","Auglaize","{""39011"": ""100""}","Auglaize","39011","FALSE","FALSE","America/New_York"
-"45885","40.57147","-84.38858","Saint Marys","OH","Ohio","TRUE","","12594","68.6","39011","Auglaize","{""39011"": ""99.69"", ""39107"": ""0.31""}","Auglaize|Mercer","39011|39107","FALSE","FALSE","America/New_York"
-"45886","40.99192","-84.61727","Scott","OH","Ohio","TRUE","","534","9.7","39161","Van Wert","{""39161"": ""52.45"", ""39125"": ""47.55""}","Van Wert|Paulding","39161|39125","FALSE","FALSE","America/New_York"
-"45887","40.71001","-84.36403","Spencerville","OH","Ohio","TRUE","","4279","23.2","39003","Allen","{""39003"": ""80.19"", ""39011"": ""11.25"", ""39161"": ""7.42"", ""39107"": ""1.14""}","Allen|Auglaize|Van Wert|Mercer","39003|39011|39161|39107","FALSE","FALSE","America/New_York"
-"45888","40.60222","-84.08677","Uniopolis","OH","Ohio","TRUE","","262","595.0","39011","Auglaize","{""39011"": ""100""}","Auglaize","39011","FALSE","FALSE","America/New_York"
-"45889","41.14664","-83.63997","Van Buren","OH","Ohio","TRUE","","1663","31.6","39063","Hancock","{""39063"": ""100""}","Hancock","39063","FALSE","FALSE","America/New_York"
-"45890","40.97568","-83.48986","Vanlue","OH","Ohio","TRUE","","606","15.8","39063","Hancock","{""39063"": ""100""}","Hancock","39063","FALSE","FALSE","America/New_York"
-"45891","40.875","-84.57436","Van Wert","OH","Ohio","TRUE","","14956","43.7","39161","Van Wert","{""39161"": ""100""}","Van Wert","39161","FALSE","FALSE","America/New_York"
-"45894","40.76519","-84.46509","Venedocia","OH","Ohio","TRUE","","815","9.6","39161","Van Wert","{""39161"": ""100""}","Van Wert","39161","FALSE","FALSE","America/New_York"
-"45895","40.57016","-84.1518","Wapakoneta","OH","Ohio","TRUE","","17876","36.4","39011","Auglaize","{""39011"": ""99.79"", ""39091"": ""0.21""}","Auglaize|Logan","39011|39091","FALSE","FALSE","America/New_York"
-"45896","40.60422","-83.93137","Waynesfield","OH","Ohio","TRUE","","1754","17.8","39011","Auglaize","{""39011"": ""82.67"", ""39003"": ""9.33"", ""39065"": ""7.99""}","Auglaize|Allen|Hardin","39011|39003|39065","FALSE","FALSE","America/New_York"
-"45897","40.8317","-83.65748","Williamstown","OH","Ohio","TRUE","","0","0.0","39063","Hancock","{""39063"": ""100""}","Hancock","39063","FALSE","FALSE","America/New_York"
-"45898","40.743","-84.75692","Willshire","OH","Ohio","TRUE","","938","10.7","39161","Van Wert","{""39161"": ""82.65"", ""39107"": ""17.35""}","Van Wert|Mercer","39161|39107","FALSE","FALSE","America/New_York"
-"45899","40.80055","-84.77461","Wren","OH","Ohio","TRUE","","125","155.9","39161","Van Wert","{""39161"": ""100""}","Van Wert","39161","FALSE","FALSE","America/New_York"
-"46001","40.25053","-85.6588","Alexandria","IN","Indiana","TRUE","","9993","52.3","18095","Madison","{""18095"": ""99.35"", ""18035"": ""0.65""}","Madison|Delaware","18095|18035","FALSE","FALSE","America/Indiana/Indianapolis"
-"46011","40.12734","-85.76167","Anderson","IN","Indiana","TRUE","","17069","88.2","18095","Madison","{""18095"": ""100""}","Madison","18095","FALSE","FALSE","America/Indiana/Indianapolis"
-"46012","40.14998","-85.62525","Anderson","IN","Indiana","TRUE","","19806","235.8","18095","Madison","{""18095"": ""99.23"", ""18035"": ""0.77""}","Madison|Delaware","18095|18035","FALSE","FALSE","America/Indiana/Indianapolis"
-"46013","40.04912","-85.67827","Anderson","IN","Indiana","TRUE","","17136","306.0","18095","Madison","{""18095"": ""100""}","Madison","18095","FALSE","FALSE","America/Indiana/Indianapolis"
-"46016","40.09784","-85.68144","Anderson","IN","Indiana","TRUE","","18046","1094.4","18095","Madison","{""18095"": ""100""}","Madison","18095","FALSE","FALSE","America/Indiana/Indianapolis"
-"46017","40.07419","-85.60695","Anderson","IN","Indiana","TRUE","","5814","129.8","18095","Madison","{""18095"": ""99.17"", ""18035"": ""0.83""}","Madison|Delaware","18095|18035","FALSE","FALSE","America/Indiana/Indianapolis"
-"46030","40.17211","-86.00741","Arcadia","IN","Indiana","TRUE","","2978","30.8","18057","Hamilton","{""18057"": ""100""}","Hamilton","18057","FALSE","FALSE","America/Indiana/Indianapolis"
-"46031","40.21028","-86.01901","Atlanta","IN","Indiana","TRUE","","2546","20.9","18057","Hamilton","{""18057"": ""83.62"", ""18159"": ""16.38""}","Hamilton|Tipton","18057|18159","FALSE","FALSE","America/Indiana/Indianapolis"
-"46032","39.96582","-86.17109","Carmel","IN","Indiana","TRUE","","51551","770.8","18057","Hamilton","{""18057"": ""100""}","Hamilton","18057","FALSE","FALSE","America/Indiana/Indianapolis"
-"46033","39.97888","-86.08543","Carmel","IN","Indiana","TRUE","","38942","876.2","18057","Hamilton","{""18057"": ""100""}","Hamilton","18057","FALSE","FALSE","America/Indiana/Indianapolis"
-"46034","40.12973","-86.03816","Cicero","IN","Indiana","TRUE","","6649","89.1","18057","Hamilton","{""18057"": ""100""}","Hamilton","18057","FALSE","FALSE","America/Indiana/Indianapolis"
-"46035","40.19001","-86.67809","Colfax","IN","Indiana","TRUE","","1229","19.7","18023","Clinton","{""18023"": ""88.05"", ""18011"": ""6.02"", ""18107"": ""5.93""}","Clinton|Boone|Montgomery","18023|18011|18107","FALSE","FALSE","America/Indiana/Indianapolis"
-"46036","40.29519","-85.83109","Elwood","IN","Indiana","TRUE","","11678","57.3","18095","Madison","{""18095"": ""93.51"", ""18159"": ""6.22"", ""18053"": ""0.27""}","Madison|Tipton|Grant","18095|18159|18053","FALSE","FALSE","America/Indiana/Indianapolis"
-"46037","39.96035","-85.94715","Fishers","IN","Indiana","TRUE","","41890","854.1","18057","Hamilton","{""18057"": ""100""}","Hamilton","18057","FALSE","FALSE","America/Indiana/Indianapolis"
-"46038","39.96739","-86.0168","Fishers","IN","Indiana","TRUE","","43381","1060.1","18057","Hamilton","{""18057"": ""100""}","Hamilton","18057","FALSE","FALSE","America/Indiana/Indianapolis"
-"46039","40.36948","-86.3123","Forest","IN","Indiana","TRUE","","508","7.2","18023","Clinton","{""18023"": ""100""}","Clinton","18023","FALSE","FALSE","America/Indiana/Indianapolis"
-"46040","39.92744","-85.83548","Fortville","IN","Indiana","TRUE","","12474","144.7","18059","Hancock","{""18059"": ""55.58"", ""18057"": ""35.94"", ""18095"": ""8.48""}","Hancock|Hamilton|Madison","18059|18057|18095","FALSE","FALSE","America/Indiana/Indianapolis"
-"46041","40.29751","-86.49189","Frankfort","IN","Indiana","TRUE","","22247","34.2","18023","Clinton","{""18023"": ""99.32"", ""18015"": ""0.68""}","Clinton|Carroll","18023|18015","FALSE","FALSE","America/Indiana/Indianapolis"
-"46044","40.20944","-85.79019","Frankton","IN","Indiana","TRUE","","3147","55.5","18095","Madison","{""18095"": ""100""}","Madison","18095","FALSE","FALSE","America/Indiana/Indianapolis"
-"46045","40.28877","-86.15019","Goldsmith","IN","Indiana","TRUE","","39","442.2","18159","Tipton","{""18159"": ""100""}","Tipton","18159","FALSE","FALSE","America/Indiana/Indianapolis"
-"46047","40.28413","-85.94735","Hobbs","IN","Indiana","TRUE","","56","1631.2","18159","Tipton","{""18159"": ""100""}","Tipton","18159","FALSE","FALSE","America/Indiana/Indianapolis"
-"46048","39.95551","-85.80181","Ingalls","IN","Indiana","TRUE","","2117","604.5","18095","Madison","{""18095"": ""100""}","Madison","18095","FALSE","FALSE","America/Indiana/Indianapolis"
-"46049","40.29755","-86.22067","Kempton","IN","Indiana","TRUE","","1082","15.5","18159","Tipton","{""18159"": ""96.71"", ""18023"": ""3.29""}","Tipton|Clinton","18159|18023","FALSE","FALSE","America/Indiana/Indianapolis"
-"46050","40.20445","-86.34887","Kirklin","IN","Indiana","TRUE","","2127","17.9","18023","Clinton","{""18023"": ""84.17"", ""18011"": ""14.3"", ""18159"": ""1.52""}","Clinton|Boone|Tipton","18023|18011|18159","FALSE","FALSE","America/Indiana/Indianapolis"
-"46051","40.05795","-85.83731","Lapel","IN","Indiana","TRUE","","2817","68.8","18095","Madison","{""18095"": ""100""}","Madison","18095","FALSE","FALSE","America/Indiana/Indianapolis"
-"46052","40.04483","-86.45988","Lebanon","IN","Indiana","TRUE","","22443","48.7","18011","Boone","{""18011"": ""100""}","Boone","18011","FALSE","FALSE","America/Indiana/Indianapolis"
-"46055","39.88557","-85.90443","Mccordsville","IN","Indiana","TRUE","","12638","188.2","18059","Hancock","{""18059"": ""79.96"", ""18057"": ""20.04""}","Hancock|Hamilton","18059|18057","FALSE","FALSE","America/Indiana/Indianapolis"
-"46056","39.97523","-85.61202","Markleville","IN","Indiana","TRUE","","2238","37.3","18095","Madison","{""18095"": ""95.24"", ""18059"": ""4.76""}","Madison|Hancock","18095|18059","FALSE","FALSE","America/Indiana/Indianapolis"
-"46057","40.33629","-86.37735","Michigantown","IN","Indiana","TRUE","","1269","19.7","18023","Clinton","{""18023"": ""100""}","Clinton","18023","FALSE","FALSE","America/Indiana/Indianapolis"
-"46058","40.36118","-86.64734","Mulberry","IN","Indiana","TRUE","","2516","36.3","18023","Clinton","{""18023"": ""97.58"", ""18157"": ""2.42""}","Clinton|Tippecanoe","18023|18157","FALSE","FALSE","America/Indiana/Indianapolis"
-"46060","40.06598","-85.93091","Noblesville","IN","Indiana","TRUE","","41461","200.4","18057","Hamilton","{""18057"": ""99.89"", ""18095"": ""0.11""}","Hamilton|Madison","18057|18095","FALSE","FALSE","America/Indiana/Indianapolis"
-"46062","40.06176","-86.05544","Noblesville","IN","Indiana","TRUE","","35349","400.7","18057","Hamilton","{""18057"": ""100""}","Hamilton","18057","FALSE","FALSE","America/Indiana/Indianapolis"
-"46063","40.27045","-85.72403","Orestes","IN","Indiana","TRUE","","565","474.1","18095","Madison","{""18095"": ""100""}","Madison","18095","FALSE","FALSE","America/Indiana/Indianapolis"
-"46064","39.98347","-85.74743","Pendleton","IN","Indiana","TRUE","","17168","102.0","18095","Madison","{""18095"": ""97.82"", ""18059"": ""2.18""}","Madison|Hancock","18095|18059","FALSE","FALSE","America/Indiana/Indianapolis"
-"46065","40.42452","-86.61327","Rossville","IN","Indiana","TRUE","","3444","34.9","18023","Clinton","{""18023"": ""76.67"", ""18015"": ""23.33""}","Clinton|Carroll","18023|18015","FALSE","FALSE","America/Indiana/Indianapolis"
-"46068","40.37695","-86.11583","Sharpsville","IN","Indiana","TRUE","","2872","24.5","18159","Tipton","{""18159"": ""100""}","Tipton","18159","FALSE","FALSE","America/Indiana/Indianapolis"
-"46069","40.13938","-86.2292","Sheridan","IN","Indiana","TRUE","","7220","30.7","18057","Hamilton","{""18057"": ""81.8"", ""18011"": ""15.89"", ""18023"": ""2.31""}","Hamilton|Boone|Clinton","18057|18011|18023","FALSE","FALSE","America/Indiana/Indianapolis"
-"46070","40.34199","-85.66022","Summitville","IN","Indiana","TRUE","","2336","19.9","18095","Madison","{""18095"": ""100""}","Madison","18095","FALSE","FALSE","America/Indiana/Indianapolis"
-"46071","40.12014","-86.60693","Thorntown","IN","Indiana","TRUE","","3148","17.5","18011","Boone","{""18011"": ""100""}","Boone","18011","FALSE","FALSE","America/Indiana/Indianapolis"
-"46072","40.28611","-86.06745","Tipton","IN","Indiana","TRUE","","8592","29.4","18159","Tipton","{""18159"": ""100""}","Tipton","18159","FALSE","FALSE","America/Indiana/Indianapolis"
-"46074","40.03627","-86.1758","Westfield","IN","Indiana","TRUE","","34755","371.6","18057","Hamilton","{""18057"": ""100""}","Hamilton","18057","FALSE","FALSE","America/Indiana/Indianapolis"
-"46075","40.02527","-86.33489","Whitestown","IN","Indiana","TRUE","","6614","82.7","18011","Boone","{""18011"": ""100""}","Boone","18011","FALSE","FALSE","America/Indiana/Indianapolis"
-"46076","40.36264","-85.93408","Windfall","IN","Indiana","TRUE","","1440","12.5","18159","Tipton","{""18159"": ""95.11"", ""18067"": ""4.89""}","Tipton|Howard","18159|18067","FALSE","FALSE","America/Indiana/Indianapolis"
-"46077","39.98434","-86.28387","Zionsville","IN","Indiana","TRUE","","29296","259.4","18011","Boone","{""18011"": ""94.95"", ""18057"": ""4.28"", ""18097"": ""0.78""}","Boone|Hamilton|Marion","18011|18057|18097","FALSE","FALSE","America/Indiana/Indianapolis"
-"46103","39.68837","-86.61333","Amo","IN","Indiana","TRUE","","162","1653.9","18063","Hendricks","{""18063"": ""100""}","Hendricks","18063","FALSE","FALSE","America/Indiana/Indianapolis"
-"46104","39.66102","-85.59541","Arlington","IN","Indiana","TRUE","","910","12.5","18139","Rush","{""18139"": ""100""}","Rush","18139","FALSE","FALSE","America/Indiana/Indianapolis"
-"46105","39.76418","-86.81056","Bainbridge","IN","Indiana","TRUE","","1794","16.4","18133","Putnam","{""18133"": ""100""}","Putnam","18133","FALSE","FALSE","America/Indiana/Indianapolis"
-"46106","39.51304","-86.20537","Bargersville","IN","Indiana","TRUE","","6855","97.3","18081","Johnson","{""18081"": ""98.46"", ""18109"": ""1.54""}","Johnson|Morgan","18081|18109","FALSE","FALSE","America/Indiana/Indianapolis"
-"46107","39.71654","-86.09147","Beech Grove","IN","Indiana","TRUE","","13081","1537.0","18097","Marion","{""18097"": ""100""}","Marion","18097","FALSE","FALSE","America/Indiana/Indianapolis"
-"46110","39.56337","-85.91627","Boggstown","IN","Indiana","TRUE","","583","15.5","18145","Shelby","{""18145"": ""100""}","Shelby","18145","FALSE","FALSE","America/Indiana/Indianapolis"
-"46111","39.53853","-86.36994","Brooklyn","IN","Indiana","TRUE","","196","722.7","18109","Morgan","{""18109"": ""100""}","Morgan","18109","FALSE","FALSE","America/Indiana/Indianapolis"
-"46112","39.86506","-86.38258","Brownsburg","IN","Indiana","TRUE","","37819","364.7","18063","Hendricks","{""18063"": ""99.87"", ""18011"": ""0.13""}","Hendricks|Boone","18063|18011","FALSE","FALSE","America/Indiana/Indianapolis"
-"46113","39.63282","-86.30532","Camby","IN","Indiana","TRUE","","15505","365.0","18097","Marion","{""18097"": ""43.86"", ""18109"": ""42.99"", ""18063"": ""13.16""}","Marion|Morgan|Hendricks","18097|18109|18063","FALSE","FALSE","America/Indiana/Indianapolis"
-"46115","39.73911","-85.56627","Carthage","IN","Indiana","TRUE","","1967","20.5","18139","Rush","{""18139"": ""94.41"", ""18059"": ""5.59""}","Rush|Hancock","18139|18059","FALSE","FALSE","America/Indiana/Indianapolis"
-"46117","39.81717","-85.61759","Charlottesville","IN","Indiana","TRUE","","828","27.1","18059","Hancock","{""18059"": ""94.63"", ""18065"": ""5.37""}","Hancock|Henry","18059|18065","FALSE","FALSE","America/Indiana/Indianapolis"
-"46118","39.65377","-86.52221","Clayton","IN","Indiana","TRUE","","5068","35.9","18063","Hendricks","{""18063"": ""98.34"", ""18109"": ""1.66""}","Hendricks|Morgan","18063|18109","FALSE","FALSE","America/Indiana/Indianapolis"
-"46120","39.5132","-86.78701","Cloverdale","IN","Indiana","TRUE","","5332","22.4","18133","Putnam","{""18133"": ""83.62"", ""18119"": ""13.5"", ""18109"": ""2.87""}","Putnam|Owen|Morgan","18133|18119|18109","FALSE","FALSE","America/Indiana/Indianapolis"
-"46121","39.67722","-86.67208","Coatesville","IN","Indiana","TRUE","","5545","39.3","18133","Putnam","{""18133"": ""60.63"", ""18063"": ""39.37""}","Putnam|Hendricks","18133|18063","FALSE","FALSE","America/Indiana/Indianapolis"
-"46122","39.76859","-86.54963","Danville","IN","Indiana","TRUE","","16300","71.4","18063","Hendricks","{""18063"": ""100""}","Hendricks","18063","FALSE","FALSE","America/Indiana/Indianapolis"
-"46123","39.76291","-86.39961","Avon","IN","Indiana","TRUE","","36616","461.2","18063","Hendricks","{""18063"": ""100""}","Hendricks","18063","FALSE","FALSE","America/Indiana/Indianapolis"
-"46124","39.37335","-85.92746","Edinburgh","IN","Indiana","TRUE","","8949","56.1","18081","Johnson","{""18081"": ""55.04"", ""18005"": ""24.25"", ""18145"": ""20.71""}","Johnson|Bartholomew|Shelby","18081|18005|18145","FALSE","FALSE","America/Indiana/Indianapolis"
-"46125","39.52146","-86.64156","Eminence","IN","Indiana","TRUE","","55","624.6","18109","Morgan","{""18109"": ""100""}","Morgan","18109","FALSE","FALSE","America/Indiana/Indianapolis"
-"46126","39.62051","-85.88837","Fairland","IN","Indiana","TRUE","","4956","58.6","18145","Shelby","{""18145"": ""100""}","Shelby","18145","FALSE","FALSE","America/Indiana/Indianapolis"
-"46127","39.71195","-85.31219","Falmouth","IN","Indiana","TRUE","","287","4.7","18139","Rush","{""18139"": ""62.5"", ""18041"": ""37.5""}","Rush|Fayette","18139|18041","FALSE","FALSE","America/Indiana/Indianapolis"
-"46128","39.65568","-86.74283","Fillmore","IN","Indiana","TRUE","","1824","20.1","18133","Putnam","{""18133"": ""100""}","Putnam","18133","FALSE","FALSE","America/Indiana/Indianapolis"
-"46130","39.67543","-85.83594","Fountaintown","IN","Indiana","TRUE","","2669","34.6","18145","Shelby","{""18145"": ""72.85"", ""18059"": ""27.15""}","Shelby|Hancock","18145|18059","FALSE","FALSE","America/Indiana/Indianapolis"
-"46131","39.47213","-86.04308","Franklin","IN","Indiana","TRUE","","33215","102.5","18081","Johnson","{""18081"": ""99.26"", ""18145"": ""0.74""}","Johnson|Shelby","18081|18145","FALSE","FALSE","America/Indiana/Indianapolis"
-"46133","39.59162","-85.29965","Glenwood","IN","Indiana","TRUE","","833","13.1","18041","Fayette","{""18041"": ""52.08"", ""18139"": ""47.92""}","Fayette|Rush","18041|18139","FALSE","FALSE","America/Indiana/Indianapolis"
-"46135","39.65837","-86.89231","Greencastle","IN","Indiana","TRUE","","20462","47.4","18133","Putnam","{""18133"": ""99.71"", ""18121"": ""0.29""}","Putnam|Parke","18133|18121","FALSE","FALSE","America/Indiana/Indianapolis"
-"46140","39.80339","-85.77069","Greenfield","IN","Indiana","TRUE","","40292","91.8","18059","Hancock","{""18059"": ""99.74"", ""18139"": ""0.26""}","Hancock|Rush","18059|18139","FALSE","FALSE","America/Indiana/Indianapolis"
-"46142","39.62021","-86.17653","Greenwood","IN","Indiana","TRUE","","29696","766.2","18081","Johnson","{""18081"": ""100""}","Johnson","18081","FALSE","FALSE","America/Indiana/Indianapolis"
-"46143","39.59509","-86.11657","Greenwood","IN","Indiana","TRUE","","57211","453.0","18081","Johnson","{""18081"": ""100""}","Johnson","18081","FALSE","FALSE","America/Indiana/Indianapolis"
-"46144","39.65518","-85.64729","Gwynneville","IN","Indiana","TRUE","","133","99.0","18145","Shelby","{""18145"": ""100""}","Shelby","18145","FALSE","FALSE","America/Indiana/Indianapolis"
-"46146","39.5856","-85.56844","Homer","IN","Indiana","TRUE","","416","206.5","18139","Rush","{""18139"": ""100""}","Rush","18139","FALSE","FALSE","America/Indiana/Indianapolis"
-"46147","39.97068","-86.62604","Jamestown","IN","Indiana","TRUE","","3209","21.0","18011","Boone","{""18011"": ""92.8"", ""18063"": ""7.2""}","Boone|Hendricks","18011|18063","FALSE","FALSE","America/Indiana/Indianapolis"
-"46148","39.80882","-85.51287","Knightstown","IN","Indiana","TRUE","","5555","42.0","18065","Henry","{""18065"": ""90.52"", ""18139"": ""9.48""}","Henry|Rush","18065|18139","FALSE","FALSE","America/Indiana/Indianapolis"
-"46149","39.88594","-86.55754","Lizton","IN","Indiana","TRUE","","2153","31.7","18063","Hendricks","{""18063"": ""100""}","Hendricks","18063","FALSE","FALSE","America/Indiana/Indianapolis"
-"46150","39.54485","-85.60236","Manilla","IN","Indiana","TRUE","","1147","18.0","18139","Rush","{""18139"": ""86.26"", ""18145"": ""13.74""}","Rush|Shelby","18139|18145","FALSE","FALSE","America/Indiana/Indianapolis"
-"46151","39.44797","-86.43051","Martinsville","IN","Indiana","TRUE","","31589","59.6","18109","Morgan","{""18109"": ""99.62"", ""18105"": ""0.21"", ""18081"": ""0.17""}","Morgan|Monroe|Johnson","18109|18105|18081","FALSE","FALSE","America/Indiana/Indianapolis"
-"46155","39.7435","-85.42986","Mays","IN","Indiana","TRUE","","162","2738.1","18139","Rush","{""18139"": ""100""}","Rush","18139","FALSE","FALSE","America/Indiana/Indianapolis"
-"46156","39.48417","-85.4819","Milroy","IN","Indiana","TRUE","","1253","11.8","18139","Rush","{""18139"": ""99.25"", ""18031"": ""0.75""}","Rush|Decatur","18139|18031","FALSE","FALSE","America/Indiana/Indianapolis"
-"46157","39.55463","-86.52815","Monrovia","IN","Indiana","TRUE","","4103","49.7","18109","Morgan","{""18109"": ""100""}","Morgan","18109","FALSE","FALSE","America/Indiana/Indianapolis"
-"46158","39.58224","-86.37492","Mooresville","IN","Indiana","TRUE","","23152","118.7","18109","Morgan","{""18109"": ""95.65"", ""18063"": ""4.35""}","Morgan|Hendricks","18109|18063","FALSE","FALSE","America/Indiana/Indianapolis"
-"46160","39.35229","-86.27077","Morgantown","IN","Indiana","TRUE","","6321","26.4","18013","Brown","{""18013"": ""48.43"", ""18109"": ""36.51"", ""18081"": ""15.06""}","Brown|Morgan|Johnson","18013|18109|18081","FALSE","FALSE","America/Indiana/Indianapolis"
-"46161","39.67041","-85.69456","Morristown","IN","Indiana","TRUE","","2569","27.3","18145","Shelby","{""18145"": ""91.19"", ""18059"": ""6.25"", ""18139"": ""2.56""}","Shelby|Hancock|Rush","18145|18059|18139","FALSE","FALSE","America/Indiana/Indianapolis"
-"46162","39.55081","-85.95348","Needham","IN","Indiana","TRUE","","314","10.8","18081","Johnson","{""18081"": ""57.21"", ""18145"": ""42.79""}","Johnson|Shelby","18081|18145","FALSE","FALSE","America/Indiana/Indianapolis"
-"46163","39.72867","-85.90342","New Palestine","IN","Indiana","TRUE","","13088","171.3","18059","Hancock","{""18059"": ""96.64"", ""18145"": ""3.36""}","Hancock|Shelby","18059|18145","FALSE","FALSE","America/Indiana/Indianapolis"
-"46164","39.32195","-86.11501","Nineveh","IN","Indiana","TRUE","","4166","68.5","18081","Johnson","{""18081"": ""50.49"", ""18013"": ""49.51""}","Johnson|Brown","18081|18013","FALSE","FALSE","America/Indiana/Indianapolis"
-"46165","39.84707","-86.64563","North Salem","IN","Indiana","TRUE","","1522","14.7","18063","Hendricks","{""18063"": ""100""}","Hendricks","18063","FALSE","FALSE","America/Indiana/Indianapolis"
-"46166","39.43205","-86.58727","Paragon","IN","Indiana","TRUE","","2167","24.0","18109","Morgan","{""18109"": ""95.62"", ""18119"": ""4.38""}","Morgan|Owen","18109|18119","FALSE","FALSE","America/Indiana/Indianapolis"
-"46167","39.87543","-86.4706","Pittsboro","IN","Indiana","TRUE","","7066","90.9","18063","Hendricks","{""18063"": ""100""}","Hendricks","18063","FALSE","FALSE","America/Indiana/Indianapolis"
-"46168","39.68923","-86.392","Plainfield","IN","Indiana","TRUE","","35418","423.9","18063","Hendricks","{""18063"": ""100""}","Hendricks","18063","FALSE","FALSE","America/Indiana/Indianapolis"
-"46171","39.53596","-86.9689","Reelsville","IN","Indiana","TRUE","","1762","18.7","18133","Putnam","{""18133"": ""100""}","Putnam","18133","FALSE","FALSE","America/Indiana/Indianapolis"
-"46172","39.8259","-86.81782","Roachdale","IN","Indiana","TRUE","","2562","14.7","18133","Putnam","{""18133"": ""100""}","Putnam","18133","FALSE","FALSE","America/Indiana/Indianapolis"
-"46173","39.60273","-85.42902","Rushville","IN","Indiana","TRUE","","9905","16.9","18139","Rush","{""18139"": ""95.27"", ""18047"": ""2.4"", ""18031"": ""2.32""}","Rush|Franklin|Decatur","18139|18047|18031","FALSE","FALSE","America/Indiana/Indianapolis"
-"46175","39.82156","-86.97354","Russellville","IN","Indiana","TRUE","","646","11.2","18133","Putnam","{""18133"": ""97.32"", ""18121"": ""2.68""}","Putnam|Parke","18133|18121","FALSE","FALSE","America/Indiana/Indianapolis"
-"46176","39.52751","-85.77396","Shelbyville","IN","Indiana","TRUE","","27737","62.2","18145","Shelby","{""18145"": ""100""}","Shelby","18145","FALSE","FALSE","America/Indiana/Indianapolis"
-"46180","39.59816","-86.61796","Stilesville","IN","Indiana","TRUE","","976","14.7","18063","Hendricks","{""18063"": ""65.66"", ""18109"": ""34.34""}","Hendricks|Morgan","18063|18109","FALSE","FALSE","America/Indiana/Indianapolis"
-"46181","39.38059","-86.16262","Trafalgar","IN","Indiana","TRUE","","5286","45.5","18081","Johnson","{""18081"": ""85.97"", ""18013"": ""14.03""}","Johnson|Brown","18081|18013","FALSE","FALSE","America/Indiana/Indianapolis"
-"46182","39.46133","-85.66926","Waldron","IN","Indiana","TRUE","","1526","16.7","18145","Shelby","{""18145"": ""94.5"", ""18139"": ""5.5""}","Shelby|Rush","18145|18139","FALSE","FALSE","America/Indiana/Indianapolis"
-"46183","39.6528","-86.2816","West Newton","IN","Indiana","TRUE","","15","187.4","18097","Marion","{""18097"": ""100""}","Marion","18097","FALSE","FALSE","America/Indiana/Indianapolis"
-"46184","39.5611","-86.0722","Whiteland","IN","Indiana","TRUE","","14042","264.0","18081","Johnson","{""18081"": ""100""}","Johnson","18081","FALSE","FALSE","America/Indiana/Indianapolis"
-"46186","39.8938","-85.64452","Wilkinson","IN","Indiana","TRUE","","1652","22.5","18059","Hancock","{""18059"": ""98.12"", ""18065"": ""1.88""}","Hancock|Henry","18059|18065","FALSE","FALSE","America/Indiana/Indianapolis"
-"46201","39.77421","-86.10917","Indianapolis","IN","Indiana","TRUE","","30962","2135.0","18097","Marion","{""18097"": ""100""}","Marion","18097","FALSE","FALSE","America/Indiana/Indianapolis"
-"46202","39.78408","-86.16334","Indianapolis","IN","Indiana","TRUE","","20504","1416.1","18097","Marion","{""18097"": ""100""}","Marion","18097","FALSE","FALSE","America/Indiana/Indianapolis"
-"46203","39.73761","-86.0969","Indianapolis","IN","Indiana","TRUE","","38581","1076.1","18097","Marion","{""18097"": ""100""}","Marion","18097","FALSE","FALSE","America/Indiana/Indianapolis"
-"46204","39.7715","-86.15699","Indianapolis","IN","Indiana","TRUE","","8356","2870.9","18097","Marion","{""18097"": ""100""}","Marion","18097","FALSE","FALSE","America/Indiana/Indianapolis"
-"46205","39.8282","-86.13483","Indianapolis","IN","Indiana","TRUE","","27580","1688.5","18097","Marion","{""18097"": ""100""}","Marion","18097","FALSE","FALSE","America/Indiana/Indianapolis"
-"46208","39.8238","-86.17236","Indianapolis","IN","Indiana","TRUE","","23080","1324.6","18097","Marion","{""18097"": ""100""}","Marion","18097","FALSE","FALSE","America/Indiana/Indianapolis"
-"46214","39.79174","-86.28961","Indianapolis","IN","Indiana","TRUE","","24549","1330.3","18097","Marion","{""18097"": ""100""}","Marion","18097","FALSE","FALSE","America/Indiana/Indianapolis"
-"46216","39.86626","-86.01148","Indianapolis","IN","Indiana","TRUE","","2324","255.7","18097","Marion","{""18097"": ""100""}","Marion","18097","FALSE","FALSE","America/Indiana/Indianapolis"
-"46217","39.67272","-86.19394","Indianapolis","IN","Indiana","TRUE","","36843","662.8","18097","Marion","{""18097"": ""100""}","Marion","18097","FALSE","FALSE","America/Indiana/Indianapolis"
-"46218","39.80727","-86.09975","Indianapolis","IN","Indiana","TRUE","","28918","1185.8","18097","Marion","{""18097"": ""100""}","Marion","18097","FALSE","FALSE","America/Indiana/Indianapolis"
-"46219","39.78279","-86.04436","Indianapolis","IN","Indiana","TRUE","","36940","1105.4","18097","Marion","{""18097"": ""100""}","Marion","18097","FALSE","FALSE","America/Indiana/Indianapolis"
-"46220","39.86773","-86.10818","Indianapolis","IN","Indiana","TRUE","","36585","1179.5","18097","Marion","{""18097"": ""100""}","Marion","18097","FALSE","FALSE","America/Indiana/Indianapolis"
-"46221","39.69207","-86.23781","Indianapolis","IN","Indiana","TRUE","","26714","518.0","18097","Marion","{""18097"": ""100""}","Marion","18097","FALSE","FALSE","America/Indiana/Indianapolis"
-"46222","39.79109","-86.21493","Indianapolis","IN","Indiana","TRUE","","37885","1313.0","18097","Marion","{""18097"": ""100""}","Marion","18097","FALSE","FALSE","America/Indiana/Indianapolis"
-"46224","39.79543","-86.2565","Indianapolis","IN","Indiana","TRUE","","37074","1992.9","18097","Marion","{""18097"": ""100""}","Marion","18097","FALSE","FALSE","America/Indiana/Indianapolis"
-"46225","39.74048","-86.16312","Indianapolis","IN","Indiana","TRUE","","5577","533.6","18097","Marion","{""18097"": ""100""}","Marion","18097","FALSE","FALSE","America/Indiana/Indianapolis"
-"46226","39.83851","-86.05162","Indianapolis","IN","Indiana","TRUE","","45652","1221.5","18097","Marion","{""18097"": ""100""}","Marion","18097","FALSE","FALSE","America/Indiana/Indianapolis"
-"46227","39.67615","-86.13149","Indianapolis","IN","Indiana","TRUE","","54876","1264.5","18097","Marion","{""18097"": ""100""}","Marion","18097","FALSE","FALSE","America/Indiana/Indianapolis"
-"46228","39.84886","-86.20019","Indianapolis","IN","Indiana","TRUE","","16430","793.5","18097","Marion","{""18097"": ""100""}","Marion","18097","FALSE","FALSE","America/Indiana/Indianapolis"
-"46229","39.78856","-85.97795","Indianapolis","IN","Indiana","TRUE","","28768","1018.7","18097","Marion","{""18097"": ""94.18"", ""18059"": ""5.82""}","Marion|Hancock","18097|18059","FALSE","FALSE","America/Indiana/Indianapolis"
-"46231","39.71581","-86.32181","Indianapolis","IN","Indiana","TRUE","","10277","320.4","18097","Marion","{""18097"": ""67.08"", ""18063"": ""32.92""}","Marion|Hendricks","18097|18063","FALSE","FALSE","America/Indiana/Indianapolis"
-"46234","39.81252","-86.32566","Indianapolis","IN","Indiana","TRUE","","26864","810.4","18097","Marion","{""18097"": ""56.55"", ""18063"": ""43.45""}","Marion|Hendricks","18097|18063","FALSE","FALSE","America/Indiana/Indianapolis"
-"46235","39.83774","-85.97634","Indianapolis","IN","Indiana","TRUE","","33063","1326.2","18097","Marion","{""18097"": ""100""}","Marion","18097","FALSE","FALSE","America/Indiana/Indianapolis"
-"46236","39.89167","-85.96847","Indianapolis","IN","Indiana","TRUE","","28705","1051.5","18097","Marion","{""18097"": ""100""}","Marion","18097","FALSE","FALSE","America/Indiana/Indianapolis"
-"46237","39.67293","-86.0757","Indianapolis","IN","Indiana","TRUE","","39169","1017.1","18097","Marion","{""18097"": ""100""}","Marion","18097","FALSE","FALSE","America/Indiana/Indianapolis"
-"46239","39.72326","-86.00032","Indianapolis","IN","Indiana","TRUE","","30651","407.7","18097","Marion","{""18097"": ""99.85"", ""18059"": ""0.15""}","Marion|Hancock","18097|18059","FALSE","FALSE","America/Indiana/Indianapolis"
-"46240","39.90687","-86.12361","Indianapolis","IN","Indiana","TRUE","","19785","778.3","18097","Marion","{""18097"": ""100"", ""18057"": ""0""}","Marion|Hamilton","18097|18057","FALSE","FALSE","America/Indiana/Indianapolis"
-"46241","39.72567","-86.26606","Indianapolis","IN","Indiana","TRUE","","31941","552.3","18097","Marion","{""18097"": ""100""}","Marion","18097","FALSE","FALSE","America/Indiana/Indianapolis"
-"46250","39.9041","-86.06806","Indianapolis","IN","Indiana","TRUE","","18402","935.9","18097","Marion","{""18097"": ""99.04"", ""18057"": ""0.96""}","Marion|Hamilton","18097|18057","FALSE","FALSE","America/Indiana/Indianapolis"
-"46254","39.84896","-86.27204","Indianapolis","IN","Indiana","TRUE","","40276","1136.3","18097","Marion","{""18097"": ""100""}","Marion","18097","FALSE","FALSE","America/Indiana/Indianapolis"
-"46256","39.90684","-86.01179","Indianapolis","IN","Indiana","TRUE","","23837","824.0","18097","Marion","{""18097"": ""93.3"", ""18057"": ""6.7""}","Marion|Hamilton","18097|18057","FALSE","FALSE","America/Indiana/Indianapolis"
-"46259","39.65177","-85.98712","Indianapolis","IN","Indiana","TRUE","","10999","197.9","18097","Marion","{""18097"": ""93.73"", ""18145"": ""3.42"", ""18081"": ""2.85""}","Marion|Shelby|Johnson","18097|18145|18081","FALSE","FALSE","America/Indiana/Indianapolis"
-"46260","39.89776","-86.17968","Indianapolis","IN","Indiana","TRUE","","34445","1306.7","18097","Marion","{""18097"": ""100"", ""18057"": ""0""}","Marion|Hamilton","18097|18057","FALSE","FALSE","America/Indiana/Indianapolis"
-"46268","39.89937","-86.23333","Indianapolis","IN","Indiana","TRUE","","25443","740.4","18097","Marion","{""18097"": ""98.21"", ""18011"": ""1.79""}","Marion|Boone","18097|18011","FALSE","FALSE","America/Indiana/Indianapolis"
-"46278","39.89518","-86.29787","Indianapolis","IN","Indiana","TRUE","","8859","261.6","18097","Marion","{""18097"": ""97.27"", ""18063"": ""2.73""}","Marion|Hendricks","18097|18063","FALSE","FALSE","America/Indiana/Indianapolis"
-"46280","39.93713","-86.11896","Indianapolis","IN","Indiana","TRUE","","6824","616.8","18057","Hamilton","{""18057"": ""100""}","Hamilton","18057","FALSE","FALSE","America/Indiana/Indianapolis"
-"46290","39.93465","-86.16326","Indianapolis","IN","Indiana","TRUE","","187","133.1","18057","Hamilton","{""18057"": ""100""}","Hamilton","18057","FALSE","FALSE","America/Indiana/Indianapolis"
-"46301","41.68404","-86.98106","Beverly Shores","IN","Indiana","TRUE","","516","59.2","18127","Porter","{""18127"": ""100""}","Porter","18127","FALSE","FALSE","America/Chicago"
-"46303","41.37126","-87.47638","Cedar Lake","IN","Indiana","TRUE","","14765","206.8","18089","Lake","{""18089"": ""100""}","Lake","18089","FALSE","FALSE","America/Chicago"
-"46304","41.61095","-87.04594","Chesterton","IN","Indiana","TRUE","","25351","182.6","18127","Porter","{""18127"": ""100""}","Porter","18127","FALSE","FALSE","America/Chicago"
-"46307","41.4026","-87.32768","Crown Point","IN","Indiana","TRUE","","62779","276.7","18089","Lake","{""18089"": ""94.33"", ""18127"": ""5.67""}","Lake|Porter","18089|18127","FALSE","FALSE","America/Chicago"
-"46310","41.18409","-87.23174","Demotte","IN","Indiana","TRUE","","13832","79.8","18073","Jasper","{""18073"": ""76.91"", ""18111"": ""23.09""}","Jasper|Newton","18073|18111","FALSE","FALSE","America/Chicago"
-"46311","41.46533","-87.50897","Dyer","IN","Indiana","TRUE","","21632","613.5","18089","Lake","{""18089"": ""100""}","Lake","18089","FALSE","FALSE","America/Chicago"
-"46312","41.64701","-87.45443","East Chicago","IN","Indiana","TRUE","","28201","777.3","18089","Lake","{""18089"": ""100""}","Lake","18089","FALSE","FALSE","America/Chicago"
-"46319","41.52585","-87.42228","Griffith","IN","Indiana","TRUE","","17513","729.0","18089","Lake","{""18089"": ""100""}","Lake","18089","FALSE","FALSE","America/Chicago"
-"46320","41.63398","-87.50385","Hammond","IN","Indiana","TRUE","","13561","784.0","18089","Lake","{""18089"": ""100""}","Lake","18089","FALSE","FALSE","America/Chicago"
-"46321","41.54687","-87.50395","Munster","IN","Indiana","TRUE","","22689","1160.8","18089","Lake","{""18089"": ""100""}","Lake","18089","FALSE","FALSE","America/Chicago"
-"46322","41.54827","-87.45875","Highland","IN","Indiana","TRUE","","22581","1260.4","18089","Lake","{""18089"": ""100""}","Lake","18089","FALSE","FALSE","America/Chicago"
-"46323","41.58967","-87.45328","Hammond","IN","Indiana","TRUE","","22195","1384.2","18089","Lake","{""18089"": ""100""}","Lake","18089","FALSE","FALSE","America/Chicago"
-"46324","41.58307","-87.50169","Hammond","IN","Indiana","TRUE","","21820","1913.8","18089","Lake","{""18089"": ""100""}","Lake","18089","FALSE","FALSE","America/Chicago"
-"46327","41.63866","-87.50687","Hammond","IN","Indiana","TRUE","","11466","1067.6","18089","Lake","{""18089"": ""100""}","Lake","18089","FALSE","FALSE","America/Chicago"
-"46340","41.38418","-86.76905","Hanna","IN","Indiana","TRUE","","742","8.7","18091","LaPorte","{""18091"": ""100""}","LaPorte","18091","FALSE","FALSE","America/Chicago"
-"46341","41.31358","-87.21367","Hebron","IN","Indiana","TRUE","","10357","44.3","18127","Porter","{""18127"": ""87.29"", ""18089"": ""12.71""}","Porter|Lake","18127|18089","FALSE","FALSE","America/Chicago"
-"46342","41.51807","-87.24522","Hobart","IN","Indiana","TRUE","","30874","338.4","18089","Lake","{""18089"": ""96.06"", ""18127"": ""3.94""}","Lake|Porter","18089|18127","FALSE","FALSE","America/Chicago"
-"46345","41.52717","-86.69837","Kingsbury","IN","Indiana","TRUE","","170","168.6","18091","LaPorte","{""18091"": ""100""}","LaPorte","18091","FALSE","FALSE","America/Chicago"
-"46346","41.47224","-86.69244","Kingsford Heights","IN","Indiana","TRUE","","1208","259.2","18091","LaPorte","{""18091"": ""100""}","LaPorte","18091","FALSE","FALSE","America/Chicago"
-"46347","41.30497","-87.00735","Kouts","IN","Indiana","TRUE","","4833","26.0","18127","Porter","{""18127"": ""100""}","Porter","18127","FALSE","FALSE","America/Chicago"
-"46348","41.31032","-86.86193","La Crosse","IN","Indiana","TRUE","","1031","7.8","18091","LaPorte","{""18091"": ""98.76"", ""18127"": ""1.24""}","LaPorte|Porter","18091|18127","FALSE","FALSE","America/Chicago"
-"46349","41.10783","-87.42179","Lake Village","IN","Indiana","TRUE","","3251","14.9","18111","Newton","{""18111"": ""100""}","Newton","18111","FALSE","FALSE","America/Chicago"
-"46350","41.60738","-86.72156","La Porte","IN","Indiana","TRUE","","42763","85.0","18091","LaPorte","{""18091"": ""100""}","LaPorte","18091","FALSE","FALSE","America/Chicago"
-"46356","41.25996","-87.41419","Lowell","IN","Indiana","TRUE","","17720","58.0","18089","Lake","{""18089"": ""100""}","Lake","18089","FALSE","FALSE","America/Chicago"
-"46360","41.68703","-86.8689","Michigan City","IN","Indiana","TRUE","","43678","218.1","18091","LaPorte","{""18091"": ""96.98"", ""18127"": ""3.02""}","LaPorte|Porter","18091|18127","FALSE","FALSE","America/Chicago"
-"46365","41.60762","-86.54079","Mill Creek","IN","Indiana","TRUE","","755","12.5","18091","LaPorte","{""18091"": ""100""}","LaPorte","18091","FALSE","FALSE","America/Chicago"
-"46366","41.21533","-86.76793","North Judson","IN","Indiana","TRUE","","5610","27.2","18149","Starke","{""18149"": ""97.08"", ""18131"": ""2.92""}","Starke|Pulaski","18149|18131","FALSE","FALSE","America/Indiana/Knox"
-"46368","41.58677","-87.18035","Portage","IN","Indiana","TRUE","","38661","569.5","18127","Porter","{""18127"": ""100""}","Porter","18127","FALSE","FALSE","America/Chicago"
-"46371","41.68003","-86.60071","Rolling Prairie","IN","Indiana","TRUE","","3246","33.1","18091","LaPorte","{""18091"": ""100""}","LaPorte","18091","FALSE","FALSE","America/Chicago"
-"46373","41.44753","-87.46883","Saint John","IN","Indiana","TRUE","","16083","613.6","18089","Lake","{""18089"": ""100""}","Lake","18089","FALSE","FALSE","America/Chicago"
-"46374","41.20593","-86.89612","San Pierre","IN","Indiana","TRUE","","873","9.3","18149","Starke","{""18149"": ""81.52"", ""18073"": ""11.76"", ""18131"": ""6.72""}","Starke|Jasper|Pulaski","18149|18073|18131","FALSE","FALSE","America/Indiana/Knox"
-"46375","41.49213","-87.44828","Schererville","IN","Indiana","TRUE","","23598","672.3","18089","Lake","{""18089"": ""100""}","Lake","18089","FALSE","FALSE","America/Chicago"
-"46376","41.18465","-87.47639","Schneider","IN","Indiana","TRUE","","243","10.4","18089","Lake","{""18089"": ""100""}","Lake","18089","FALSE","FALSE","America/Chicago"
-"46377","41.1916","-87.3435","Shelby","IN","Indiana","TRUE","","332","213.3","18089","Lake","{""18089"": ""100""}","Lake","18089","FALSE","FALSE","America/Chicago"
-"46379","41.16789","-87.44002","Sumava Resorts","IN","Indiana","TRUE","","81","67.5","18111","Newton","{""18111"": ""100""}","Newton","18111","FALSE","FALSE","America/Chicago"
-"46381","41.16856","-87.32462","Thayer","IN","Indiana","TRUE","","176","74.3","18111","Newton","{""18111"": ""100""}","Newton","18111","FALSE","FALSE","America/Chicago"
-"46382","41.46897","-86.76282","Union Mills","IN","Indiana","TRUE","","1713","13.6","18091","LaPorte","{""18091"": ""100""}","LaPorte","18091","FALSE","FALSE","America/Chicago"
-"46383","41.45914","-87.00339","Valparaiso","IN","Indiana","TRUE","","42245","187.0","18127","Porter","{""18127"": ""100""}","Porter","18127","FALSE","FALSE","America/Chicago"
-"46385","41.4619","-87.12439","Valparaiso","IN","Indiana","TRUE","","39398","187.1","18127","Porter","{""18127"": ""100""}","Porter","18127","FALSE","FALSE","America/Chicago"
-"46390","41.41682","-86.87487","Wanatah","IN","Indiana","TRUE","","3327","26.1","18091","LaPorte","{""18091"": ""99.82"", ""18127"": ""0.18""}","LaPorte|Porter","18091|18127","FALSE","FALSE","America/Chicago"
-"46391","41.5454","-86.91498","Westville","IN","Indiana","TRUE","","9528","91.4","18091","LaPorte","{""18091"": ""79.91"", ""18127"": ""20.09""}","LaPorte|Porter","18091|18127","FALSE","FALSE","America/Chicago"
-"46392","41.18329","-87.04763","Wheatfield","IN","Indiana","TRUE","","7734","27.3","18073","Jasper","{""18073"": ""100""}","Jasper","18073","FALSE","FALSE","America/Chicago"
-"46393","41.50823","-87.1776","Wheeler","IN","Indiana","TRUE","","296","76.4","18127","Porter","{""18127"": ""100""}","Porter","18127","FALSE","FALSE","America/Chicago"
-"46394","41.67388","-87.49358","Whiting","IN","Indiana","TRUE","","12319","1459.0","18089","Lake","{""18089"": ""100""}","Lake","18089","FALSE","FALSE","America/Chicago"
-"46402","41.59942","-87.33082","Gary","IN","Indiana","TRUE","","6295","638.4","18089","Lake","{""18089"": ""100""}","Lake","18089","FALSE","FALSE","America/Chicago"
-"46403","41.6047","-87.26342","Gary","IN","Indiana","TRUE","","13435","626.9","18089","Lake","{""18089"": ""100""}","Lake","18089","FALSE","FALSE","America/Chicago"
-"46404","41.58406","-87.37468","Gary","IN","Indiana","TRUE","","17894","1208.3","18089","Lake","{""18089"": ""100""}","Lake","18089","FALSE","FALSE","America/Chicago"
-"46405","41.57448","-87.26211","Lake Station","IN","Indiana","TRUE","","10855","482.4","18089","Lake","{""18089"": ""100""}","Lake","18089","FALSE","FALSE","America/Chicago"
-"46406","41.60298","-87.408","Gary","IN","Indiana","TRUE","","9042","270.9","18089","Lake","{""18089"": ""100""}","Lake","18089","FALSE","FALSE","America/Chicago"
-"46407","41.57849","-87.33024","Gary","IN","Indiana","TRUE","","10905","995.0","18089","Lake","{""18089"": ""100""}","Lake","18089","FALSE","FALSE","America/Chicago"
-"46408","41.54464","-87.36943","Gary","IN","Indiana","TRUE","","15526","614.6","18089","Lake","{""18089"": ""100""}","Lake","18089","FALSE","FALSE","America/Chicago"
-"46409","41.54838","-87.32422","Gary","IN","Indiana","TRUE","","7205","779.9","18089","Lake","{""18089"": ""100""}","Lake","18089","FALSE","FALSE","America/Chicago"
-"46410","41.4812","-87.33361","Merrillville","IN","Indiana","TRUE","","37813","495.0","18089","Lake","{""18089"": ""100""}","Lake","18089","FALSE","FALSE","America/Chicago"
-"46501","41.22608","-86.24792","Argos","IN","Indiana","TRUE","","3613","19.9","18099","Marshall","{""18099"": ""100""}","Marshall","18099","FALSE","FALSE","America/Indiana/Indianapolis"
-"46502","41.25938","-85.97627","Atwood","IN","Indiana","TRUE","","58","398.6","18085","Kosciusko","{""18085"": ""100""}","Kosciusko","18085","FALSE","FALSE","America/Indiana/Indianapolis"
-"46504","41.29996","-86.11093","Bourbon","IN","Indiana","TRUE","","3735","22.0","18099","Marshall","{""18099"": ""99.18"", ""18085"": ""0.82""}","Marshall|Kosciusko","18099|18085","FALSE","FALSE","America/Indiana/Indianapolis"
-"46506","41.46171","-86.16962","Bremen","IN","Indiana","TRUE","","9700","37.6","18099","Marshall","{""18099"": ""88.32"", ""18141"": ""11.68""}","Marshall|St. Joseph","18099|18141","FALSE","FALSE","America/Indiana/Indianapolis"
-"46507","41.72057","-85.81751","Bristol","IN","Indiana","TRUE","","9434","90.9","18039","Elkhart","{""18039"": ""100""}","Elkhart","18039","FALSE","FALSE","America/Indiana/Indianapolis"
-"46508","41.15083","-85.97616","Burket","IN","Indiana","TRUE","","113","46.7","18085","Kosciusko","{""18085"": ""100""}","Kosciusko","18085","FALSE","FALSE","America/Indiana/Indianapolis"
-"46510","41.11969","-85.87329","Claypool","IN","Indiana","TRUE","","3924","22.6","18085","Kosciusko","{""18085"": ""100""}","Kosciusko","18085","FALSE","FALSE","America/Indiana/Indianapolis"
-"46511","41.22006","-86.42695","Culver","IN","Indiana","TRUE","","4308","24.9","18099","Marshall","{""18099"": ""78.24"", ""18149"": ""10.1"", ""18049"": ""9.72"", ""18131"": ""1.94""}","Marshall|Starke|Fulton|Pulaski","18099|18149|18049|18131","FALSE","FALSE","America/Indiana/Indianapolis"
-"46514","41.72343","-85.97468","Elkhart","IN","Indiana","TRUE","","41616","416.8","18039","Elkhart","{""18039"": ""100""}","Elkhart","18039","FALSE","FALSE","America/Indiana/Indianapolis"
-"46516","41.67571","-85.94449","Elkhart","IN","Indiana","TRUE","","31329","678.8","18039","Elkhart","{""18039"": ""100""}","Elkhart","18039","FALSE","FALSE","America/Indiana/Indianapolis"
-"46517","41.62474","-85.99698","Elkhart","IN","Indiana","TRUE","","26468","277.7","18039","Elkhart","{""18039"": ""100""}","Elkhart","18039","FALSE","FALSE","America/Indiana/Indianapolis"
-"46524","41.29718","-86.02111","Etna Green","IN","Indiana","TRUE","","2124","24.1","18085","Kosciusko","{""18085"": ""100""}","Kosciusko","18085","FALSE","FALSE","America/Indiana/Indianapolis"
-"46526","41.55314","-85.88346","Goshen","IN","Indiana","TRUE","","33117","190.6","18039","Elkhart","{""18039"": ""100""}","Elkhart","18039","FALSE","FALSE","America/Indiana/Indianapolis"
-"46528","41.60607","-85.78552","Goshen","IN","Indiana","TRUE","","27001","147.1","18039","Elkhart","{""18039"": ""100""}","Elkhart","18039","FALSE","FALSE","America/Indiana/Indianapolis"
-"46530","41.73988","-86.12742","Granger","IN","Indiana","TRUE","","31843","494.1","18141","St. Joseph","{""18141"": ""93.97"", ""18039"": ""6.03""}","St. Joseph|Elkhart","18141|18039","FALSE","FALSE","America/Detroit"
-"46531","41.35616","-86.51481","Grovertown","IN","Indiana","TRUE","","1579","28.5","18149","Starke","{""18149"": ""100""}","Starke","18149","FALSE","FALSE","America/Indiana/Knox"
-"46532","41.41826","-86.61872","Hamlet","IN","Indiana","TRUE","","1531","11.2","18149","Starke","{""18149"": ""64.93"", ""18091"": ""35.07""}","Starke|LaPorte","18149|18091","FALSE","FALSE","America/Indiana/Knox"
-"46534","41.28578","-86.61667","Knox","IN","Indiana","TRUE","","11686","37.1","18149","Starke","{""18149"": ""100""}","Starke","18149","FALSE","FALSE","America/Indiana/Knox"
-"46536","41.51836","-86.28482","Lakeville","IN","Indiana","TRUE","","3209","42.7","18141","St. Joseph","{""18141"": ""90.65"", ""18099"": ""9.35""}","St. Joseph|Marshall","18141|18099","FALSE","FALSE","America/Indiana/Indianapolis"
-"46537","41.45987","-86.31025","Lapaz","IN","Indiana","TRUE","","425","333.0","18099","Marshall","{""18099"": ""100""}","Marshall","18099","FALSE","FALSE","America/Indiana/Indianapolis"
-"46538","41.32682","-85.82156","Leesburg","IN","Indiana","TRUE","","4169","52.3","18085","Kosciusko","{""18085"": ""100""}","Kosciusko","18085","FALSE","FALSE","America/Indiana/Indianapolis"
-"46539","41.16718","-86.02419","Mentone","IN","Indiana","TRUE","","2802","33.9","18085","Kosciusko","{""18085"": ""96.04"", ""18099"": ""2.05"", ""18049"": ""1.91""}","Kosciusko|Marshall|Fulton","18085|18099|18049","FALSE","FALSE","America/Indiana/Indianapolis"
-"46540","41.67669","-85.69838","Middlebury","IN","Indiana","TRUE","","11881","75.1","18039","Elkhart","{""18039"": ""92.46"", ""18087"": ""7.54""}","Elkhart|LaGrange","18039|18087","FALSE","FALSE","America/Indiana/Indianapolis"
-"46542","41.39179","-85.87439","Milford","IN","Indiana","TRUE","","4142","30.9","18085","Kosciusko","{""18085"": ""95.28"", ""18039"": ""4.72""}","Kosciusko|Elkhart","18085|18039","FALSE","FALSE","America/Indiana/Indianapolis"
-"46543","41.53519","-85.67212","Millersburg","IN","Indiana","TRUE","","3553","45.5","18039","Elkhart","{""18039"": ""68.25"", ""18087"": ""31.75""}","Elkhart|LaGrange","18039|18087","FALSE","FALSE","America/Indiana/Indianapolis"
-"46544","41.61693","-86.13893","Mishawaka","IN","Indiana","TRUE","","31988","308.0","18141","St. Joseph","{""18141"": ""100""}","St. Joseph","18141","FALSE","FALSE","America/Indiana/Indianapolis"
-"46545","41.69301","-86.14644","Mishawaka","IN","Indiana","TRUE","","24685","534.0","18141","St. Joseph","{""18141"": ""100""}","St. Joseph","18141","FALSE","FALSE","America/Indiana/Indianapolis"
-"46550","41.44618","-86.00019","Nappanee","IN","Indiana","TRUE","","12624","65.3","18039","Elkhart","{""18039"": ""74.75"", ""18085"": ""20.26"", ""18099"": ""3.82"", ""18141"": ""1.17""}","Elkhart|Kosciusko|Marshall|St. Joseph","18039|18085|18099|18141","FALSE","FALSE","America/Indiana/Indianapolis"
-"46552","41.70627","-86.48468","New Carlisle","IN","Indiana","TRUE","","6907","42.7","18141","St. Joseph","{""18141"": ""66.77"", ""18091"": ""33.23""}","St. Joseph|LaPorte","18141|18091","FALSE","FALSE","America/Indiana/Indianapolis"
-"46553","41.47954","-85.84927","New Paris","IN","Indiana","TRUE","","3240","39.9","18039","Elkhart","{""18039"": ""100""}","Elkhart","18039","FALSE","FALSE","America/Indiana/Indianapolis"
-"46554","41.56256","-86.41897","North Liberty","IN","Indiana","TRUE","","4878","26.7","18141","St. Joseph","{""18141"": ""99.21"", ""18091"": ""0.79""}","St. Joseph|LaPorte","18141|18091","FALSE","FALSE","America/Indiana/Indianapolis"
-"46555","41.32933","-85.69044","North Webster","IN","Indiana","TRUE","","2406","100.2","18085","Kosciusko","{""18085"": ""100""}","Kosciusko","18085","FALSE","FALSE","America/Indiana/Indianapolis"
-"46556","41.70662","-86.25128","Notre Dame","IN","Indiana","TRUE","","7301","1397.0","18141","St. Joseph","{""18141"": ""100""}","St. Joseph","18141","FALSE","FALSE","America/Indiana/Indianapolis"
-"46561","41.66379","-86.07526","Osceola","IN","Indiana","TRUE","","13615","362.8","18141","St. Joseph","{""18141"": ""87.18"", ""18039"": ""12.82""}","St. Joseph|Elkhart","18141|18039","FALSE","FALSE","America/Indiana/Indianapolis"
-"46562","41.2105","-85.69774","Pierceton","IN","Indiana","TRUE","","5010","31.9","18085","Kosciusko","{""18085"": ""91.83"", ""18183"": ""5.68"", ""18113"": ""2.49""}","Kosciusko|Whitley|Noble","18085|18183|18113","FALSE","FALSE","America/Indiana/Indianapolis"
-"46563","41.35629","-86.32674","Plymouth","IN","Indiana","TRUE","","23664","60.0","18099","Marshall","{""18099"": ""99.75"", ""18149"": ""0.25""}","Marshall|Starke","18099|18149","FALSE","FALSE","America/Indiana/Indianapolis"
-"46565","41.69266","-85.58044","Shipshewana","IN","Indiana","TRUE","","8642","52.4","18087","LaGrange","{""18087"": ""100""}","LaGrange","18087","FALSE","FALSE","America/Indiana/Indianapolis"
-"46567","41.41348","-85.73106","Syracuse","IN","Indiana","TRUE","","9162","63.6","18085","Kosciusko","{""18085"": ""87.18"", ""18039"": ""12.82""}","Kosciusko|Elkhart","18085|18039","FALSE","FALSE","America/Indiana/Indianapolis"
-"46570","41.20674","-86.12","Tippecanoe","IN","Indiana","TRUE","","833","15.7","18099","Marshall","{""18099"": ""92.74"", ""18049"": ""7.26""}","Marshall|Fulton","18099|18049","FALSE","FALSE","America/Indiana/Indianapolis"
-"46571","41.56849","-85.54557","Topeka","IN","Indiana","TRUE","","5682","50.9","18087","LaGrange","{""18087"": ""97.85"", ""18113"": ""2.15""}","LaGrange|Noble","18087|18113","FALSE","FALSE","America/Indiana/Indianapolis"
-"46573","41.53986","-86.06023","Wakarusa","IN","Indiana","TRUE","","3812","43.1","18039","Elkhart","{""18039"": ""85.92"", ""18141"": ""14.08""}","Elkhart|St. Joseph","18039|18141","FALSE","FALSE","America/Indiana/Indianapolis"
-"46574","41.47378","-86.48799","Walkerton","IN","Indiana","TRUE","","9436","38.7","18141","St. Joseph","{""18141"": ""40.08"", ""18149"": ""23.06"", ""18099"": ""19.8"", ""18091"": ""17.06""}","St. Joseph|Starke|Marshall|LaPorte","18141|18149|18099|18091","FALSE","FALSE","America/Indiana/Indianapolis"
-"46580","41.20773","-85.87106","Warsaw","IN","Indiana","TRUE","","22013","116.6","18085","Kosciusko","{""18085"": ""100""}","Kosciusko","18085","FALSE","FALSE","America/Indiana/Indianapolis"
-"46582","41.28414","-85.85464","Warsaw","IN","Indiana","TRUE","","13459","91.5","18085","Kosciusko","{""18085"": ""100""}","Kosciusko","18085","FALSE","FALSE","America/Indiana/Indianapolis"
-"46590","41.21589","-85.80893","Winona Lake","IN","Indiana","TRUE","","4925","671.1","18085","Kosciusko","{""18085"": ""100""}","Kosciusko","18085","FALSE","FALSE","America/Indiana/Indianapolis"
-"46595","41.52632","-86.16651","Wyatt","IN","Indiana","TRUE","","133","225.1","18141","St. Joseph","{""18141"": ""100""}","St. Joseph","18141","FALSE","FALSE","America/Indiana/Indianapolis"
-"46601","41.67007","-86.25319","South Bend","IN","Indiana","TRUE","","5714","1016.4","18141","St. Joseph","{""18141"": ""100""}","St. Joseph","18141","FALSE","FALSE","America/Indiana/Indianapolis"
-"46613","41.6548","-86.25874","South Bend","IN","Indiana","TRUE","","11327","1533.7","18141","St. Joseph","{""18141"": ""100""}","St. Joseph","18141","FALSE","FALSE","America/Indiana/Indianapolis"
-"46614","41.60336","-86.27873","South Bend","IN","Indiana","TRUE","","31035","226.5","18141","St. Joseph","{""18141"": ""100""}","St. Joseph","18141","FALSE","FALSE","America/Indiana/Indianapolis"
-"46615","41.6747","-86.21161","South Bend","IN","Indiana","TRUE","","13719","1621.1","18141","St. Joseph","{""18141"": ""100""}","St. Joseph","18141","FALSE","FALSE","America/Indiana/Indianapolis"
-"46616","41.69807","-86.26654","South Bend","IN","Indiana","TRUE","","5457","1442.1","18141","St. Joseph","{""18141"": ""100""}","St. Joseph","18141","FALSE","FALSE","America/Indiana/Indianapolis"
-"46617","41.68444","-86.23493","South Bend","IN","Indiana","TRUE","","9689","1440.7","18141","St. Joseph","{""18141"": ""100""}","St. Joseph","18141","FALSE","FALSE","America/Indiana/Indianapolis"
-"46619","41.66009","-86.35098","South Bend","IN","Indiana","TRUE","","21471","363.5","18141","St. Joseph","{""18141"": ""100""}","St. Joseph","18141","FALSE","FALSE","America/Indiana/Indianapolis"
-"46628","41.72133","-86.33639","South Bend","IN","Indiana","TRUE","","26396","291.1","18141","St. Joseph","{""18141"": ""100""}","St. Joseph","18141","FALSE","FALSE","America/Indiana/Indianapolis"
-"46635","41.71488","-86.20853","South Bend","IN","Indiana","TRUE","","6363","786.6","18141","St. Joseph","{""18141"": ""100""}","St. Joseph","18141","FALSE","FALSE","America/Indiana/Indianapolis"
-"46637","41.73375","-86.24157","South Bend","IN","Indiana","TRUE","","16090","644.0","18141","St. Joseph","{""18141"": ""100""}","St. Joseph","18141","FALSE","FALSE","America/Indiana/Indianapolis"
-"46701","41.36059","-85.42992","Albion","IN","Indiana","TRUE","","8102","32.4","18113","Noble","{""18113"": ""100""}","Noble","18113","FALSE","FALSE","America/Indiana/Indianapolis"
-"46702","40.82814","-85.61611","Andrews","IN","Indiana","TRUE","","2074","17.6","18069","Huntington","{""18069"": ""92.8"", ""18169"": ""7.2""}","Huntington|Wabash","18069|18169","FALSE","FALSE","America/Indiana/Indianapolis"
-"46703","41.65273","-85.00801","Angola","IN","Indiana","TRUE","","18264","60.1","18151","Steuben","{""18151"": ""100""}","Steuben","18151","FALSE","FALSE","America/Indiana/Indianapolis"
-"46704","41.10407","-85.29276","Arcola","IN","Indiana","TRUE","","38","725.1","18003","Allen","{""18003"": ""100""}","Allen","18003","FALSE","FALSE","America/Indiana/Indianapolis"
-"46705","41.51828","-85.06304","Ashley","IN","Indiana","TRUE","","1682","32.7","18033","DeKalb","{""18033"": ""62.6"", ""18151"": ""37.4""}","DeKalb|Steuben","18033|18151","FALSE","FALSE","America/Indiana/Indianapolis"
-"46706","41.34277","-85.03938","Auburn","IN","Indiana","TRUE","","18771","84.0","18033","DeKalb","{""18033"": ""98.36"", ""18003"": ""1.64""}","DeKalb|Allen","18033|18003","FALSE","FALSE","America/Indiana/Indianapolis"
-"46710","41.35057","-85.25134","Avilla","IN","Indiana","TRUE","","4291","37.8","18113","Noble","{""18113"": ""95.77"", ""18033"": ""4.23""}","Noble|DeKalb","18113|18033","FALSE","FALSE","America/Indiana/Indianapolis"
-"46711","40.66372","-84.92555","Berne","IN","Indiana","TRUE","","8770","56.8","18001","Adams","{""18001"": ""100""}","Adams","18001","FALSE","FALSE","America/Indiana/Indianapolis"
-"46714","40.71846","-85.17148","Bluffton","IN","Indiana","TRUE","","14931","44.7","18179","Wells","{""18179"": ""97.15"", ""18001"": ""2.85""}","Wells|Adams","18179|18001","FALSE","FALSE","America/Indiana/Indianapolis"
-"46721","41.42359","-84.87445","Butler","IN","Indiana","TRUE","","5084","24.4","18033","DeKalb","{""18033"": ""100""}","DeKalb","18033","FALSE","FALSE","America/Indiana/Indianapolis"
-"46723","41.23982","-85.32565","Churubusco","IN","Indiana","TRUE","","7884","48.8","18183","Whitley","{""18183"": ""60.95"", ""18003"": ""22.41"", ""18113"": ""16.64""}","Whitley|Allen|Noble","18183|18003|18113","FALSE","FALSE","America/Indiana/Indianapolis"
-"46725","41.14913","-85.47486","Columbia City","IN","Indiana","TRUE","","23286","43.8","18183","Whitley","{""18183"": ""96.75"", ""18113"": ""3.25""}","Whitley|Noble","18183|18113","FALSE","FALSE","America/Indiana/Indianapolis"
-"46730","41.45324","-85.15548","Corunna","IN","Indiana","TRUE","","1039","14.3","18033","DeKalb","{""18033"": ""100""}","DeKalb","18033","FALSE","FALSE","America/Indiana/Indianapolis"
-"46731","40.79789","-85.10274","Craigville","IN","Indiana","TRUE","","759","18.4","18179","Wells","{""18179"": ""100""}","Wells","18179","FALSE","FALSE","America/Indiana/Indianapolis"
-"46732","41.37886","-85.62355","Cromwell","IN","Indiana","TRUE","","3244","55.2","18113","Noble","{""18113"": ""60.56"", ""18085"": ""39.44""}","Noble|Kosciusko","18113|18085","FALSE","FALSE","America/Indiana/Indianapolis"
-"46733","40.82852","-84.9401","Decatur","IN","Indiana","TRUE","","18943","42.4","18001","Adams","{""18001"": ""99.25"", ""18003"": ""0.75""}","Adams|Allen","18001|18003","FALSE","FALSE","America/Indiana/Indianapolis"
-"46737","41.72152","-84.92385","Fremont","IN","Indiana","TRUE","","7329","43.5","18151","Steuben","{""18151"": ""100""}","Steuben","18151","FALSE","FALSE","America/Detroit"
-"46738","41.32174","-85.13686","Garrett","IN","Indiana","TRUE","","8549","126.4","18033","DeKalb","{""18033"": ""100""}","DeKalb","18033","FALSE","FALSE","America/Indiana/Indianapolis"
-"46740","40.60209","-84.96445","Geneva","IN","Indiana","TRUE","","3874","24.3","18001","Adams","{""18001"": ""97.04"", ""18179"": ""2.96""}","Adams|Wells","18001|18179","FALSE","FALSE","America/Indiana/Indianapolis"
-"46741","41.21129","-84.94988","Grabill","IN","Indiana","TRUE","","4553","67.6","18003","Allen","{""18003"": ""100""}","Allen","18003","FALSE","FALSE","America/Indiana/Indianapolis"
-"46742","41.54975","-84.87894","Hamilton","IN","Indiana","TRUE","","3290","25.0","18151","Steuben","{""18151"": ""79.19"", ""18033"": ""20.81""}","Steuben|DeKalb","18151|18033","FALSE","FALSE","America/Indiana/Indianapolis"
-"46743","41.21539","-84.85109","Harlan","IN","Indiana","TRUE","","2050","35.3","18003","Allen","{""18003"": ""100""}","Allen","18003","FALSE","FALSE","America/Indiana/Indianapolis"
-"46745","40.95165","-85.00942","Hoagland","IN","Indiana","TRUE","","2146","42.1","18003","Allen","{""18003"": ""100""}","Allen","18003","FALSE","FALSE","America/Indiana/Indianapolis"
-"46746","41.72278","-85.34525","Howe","IN","Indiana","TRUE","","4640","24.4","18087","LaGrange","{""18087"": ""100""}","LaGrange","18087","FALSE","FALSE","America/Detroit"
-"46747","41.55989","-85.15349","Hudson","IN","Indiana","TRUE","","2292","24.1","18151","Steuben","{""18151"": ""75.6"", ""18087"": ""17.16"", ""18033"": ""7.24""}","Steuben|LaGrange|DeKalb","18151|18087|18033","FALSE","FALSE","America/Indiana/Indianapolis"
-"46748","41.24829","-85.16642","Huntertown","IN","Indiana","TRUE","","5021","105.7","18003","Allen","{""18003"": ""97.8"", ""18033"": ""1.48"", ""18113"": ""0.72""}","Allen|DeKalb|Noble","18003|18033|18113","FALSE","FALSE","America/Indiana/Indianapolis"
-"46750","40.87862","-85.49629","Huntington","IN","Indiana","TRUE","","26499","51.4","18069","Huntington","{""18069"": ""99.88"", ""18183"": ""0.12""}","Huntington|Whitley","18069|18183","FALSE","FALSE","America/Indiana/Indianapolis"
-"46755","41.4502","-85.27404","Kendallville","IN","Indiana","TRUE","","15097","77.3","18113","Noble","{""18113"": ""99.63"", ""18033"": ""0.37""}","Noble|DeKalb","18113|18033","FALSE","FALSE","America/Indiana/Indianapolis"
-"46759","40.59967","-85.18084","Keystone","IN","Indiana","TRUE","","508","6.6","18179","Wells","{""18179"": ""100""}","Wells","18179","FALSE","FALSE","America/Indiana/Indianapolis"
-"46760","41.34622","-85.55569","Kimmell","IN","Indiana","TRUE","","1381","21.2","18113","Noble","{""18113"": ""100""}","Noble","18113","FALSE","FALSE","America/Indiana/Indianapolis"
-"46761","41.63486","-85.36831","Lagrange","IN","Indiana","TRUE","","12325","38.6","18087","LaGrange","{""18087"": ""97.8"", ""18151"": ""2.2""}","LaGrange|Steuben","18087|18151","FALSE","FALSE","America/Indiana/Indianapolis"
-"46763","41.29513","-85.23546","Laotto","IN","Indiana","TRUE","","1881","32.4","18113","Noble","{""18113"": ""89.58"", ""18033"": ""10.42""}","Noble|DeKalb","18113|18033","FALSE","FALSE","America/Indiana/Indianapolis"
-"46764","41.22191","-85.62194","Larwill","IN","Indiana","TRUE","","1385","15.7","18183","Whitley","{""18183"": ""88.71"", ""18113"": ""11.29""}","Whitley|Noble","18183|18113","FALSE","FALSE","America/Indiana/Indianapolis"
-"46765","41.2336","-85.04357","Leo","IN","Indiana","TRUE","","5568","165.9","18003","Allen","{""18003"": ""100""}","Allen","18003","FALSE","FALSE","America/Indiana/Indianapolis"
-"46766","40.71204","-85.28477","Liberty Center","IN","Indiana","TRUE","","737","14.0","18179","Wells","{""18179"": ""100""}","Wells","18179","FALSE","FALSE","America/Indiana/Indianapolis"
-"46767","41.46847","-85.5796","Ligonier","IN","Indiana","TRUE","","8102","44.8","18113","Noble","{""18113"": ""95.99"", ""18087"": ""2.14"", ""18039"": ""1.87""}","Noble|LaGrange|Elkhart","18113|18087|18039","FALSE","FALSE","America/Indiana/Indianapolis"
-"46770","40.83313","-85.31898","Markle","IN","Indiana","TRUE","","3057","22.3","18179","Wells","{""18179"": ""65.24"", ""18069"": ""34.76""}","Wells|Huntington","18179|18069","FALSE","FALSE","America/Indiana/Indianapolis"
-"46771","41.6926","-85.29603","Mongo","IN","Indiana","TRUE","","72","23.6","18087","LaGrange","{""18087"": ""100""}","LaGrange","18087","FALSE","FALSE","America/Indiana/Indianapolis"
-"46772","40.72147","-84.91366","Monroe","IN","Indiana","TRUE","","3087","33.6","18001","Adams","{""18001"": ""100""}","Adams","18001","FALSE","FALSE","America/Indiana/Indianapolis"
-"46773","40.98214","-84.87561","Monroeville","IN","Indiana","TRUE","","3392","16.6","18003","Allen","{""18003"": ""95.66"", ""18001"": ""4.34""}","Allen|Adams","18003|18001","FALSE","FALSE","America/Indiana/Indianapolis"
-"46774","41.09195","-84.96975","New Haven","IN","Indiana","TRUE","","17221","130.2","18003","Allen","{""18003"": ""100""}","Allen","18003","FALSE","FALSE","America/Indiana/Indianapolis"
-"46776","41.72835","-85.16272","Orland","IN","Indiana","TRUE","","1715","28.3","18151","Steuben","{""18151"": ""83.56"", ""18087"": ""16.44""}","Steuben|LaGrange","18151|18087","FALSE","FALSE","America/Detroit"
-"46777","40.87229","-85.15033","Ossian","IN","Indiana","TRUE","","6493","45.3","18179","Wells","{""18179"": ""98.34"", ""18001"": ""1.01"", ""18003"": ""0.66""}","Wells|Adams|Allen","18179|18001|18003","FALSE","FALSE","America/Indiana/Indianapolis"
-"46779","41.57441","-85.03508","Pleasant Lake","IN","Indiana","TRUE","","2144","23.4","18151","Steuben","{""18151"": ""100""}","Steuben","18151","FALSE","FALSE","America/Indiana/Indianapolis"
-"46781","40.63691","-85.27305","Poneto","IN","Indiana","TRUE","","728","11.0","18179","Wells","{""18179"": ""100""}","Wells","18179","FALSE","FALSE","America/Indiana/Indianapolis"
-"46783","40.9742","-85.35533","Roanoke","IN","Indiana","TRUE","","6651","42.7","18069","Huntington","{""18069"": ""54.64"", ""18003"": ""35.73"", ""18183"": ""8.27"", ""18179"": ""1.36""}","Huntington|Allen|Whitley|Wells","18069|18003|18183|18179","FALSE","FALSE","America/Indiana/Indianapolis"
-"46784","41.49939","-85.38172","Rome City","IN","Indiana","TRUE","","2159","62.6","18113","Noble","{""18113"": ""100""}","Noble","18113","FALSE","FALSE","America/Indiana/Indianapolis"
-"46785","41.31872","-84.88526","Saint Joe","IN","Indiana","TRUE","","1686","26.7","18033","DeKalb","{""18033"": ""100""}","DeKalb","18033","FALSE","FALSE","America/Indiana/Indianapolis"
-"46786","41.53168","-85.27268","South Milford","IN","Indiana","TRUE","","39","415.5","18087","LaGrange","{""18087"": ""100""}","LaGrange","18087","FALSE","FALSE","America/Indiana/Indianapolis"
-"46787","41.06645","-85.62305","South Whitley","IN","Indiana","TRUE","","3865","23.2","18183","Whitley","{""18183"": ""95.71"", ""18085"": ""4.29""}","Whitley|Kosciusko","18183|18085","FALSE","FALSE","America/Indiana/Indianapolis"
-"46788","41.27018","-84.91075","Spencerville","IN","Indiana","TRUE","","3723","40.5","18003","Allen","{""18003"": ""59.42"", ""18033"": ""40.58""}","Allen|DeKalb","18003|18033","FALSE","FALSE","America/Indiana/Indianapolis"
-"46791","40.83697","-85.24019","Uniondale","IN","Indiana","TRUE","","865","22.0","18179","Wells","{""18179"": ""100""}","Wells","18179","FALSE","FALSE","America/Indiana/Indianapolis"
-"46792","40.68599","-85.43939","Warren","IN","Indiana","TRUE","","3756","14.4","18069","Huntington","{""18069"": ""83.51"", ""18179"": ""16.49""}","Huntington|Wells","18069|18179","FALSE","FALSE","America/Indiana/Indianapolis"
-"46793","41.462","-85.01982","Waterloo","IN","Indiana","TRUE","","4874","33.8","18033","DeKalb","{""18033"": ""99.37"", ""18151"": ""0.63""}","DeKalb|Steuben","18033|18151","FALSE","FALSE","America/Indiana/Indianapolis"
-"46794","41.46635","-85.46059","Wawaka","IN","Indiana","TRUE","","1709","25.6","18113","Noble","{""18113"": ""100""}","Noble","18113","FALSE","FALSE","America/Indiana/Indianapolis"
-"46795","41.5511","-85.33776","Wolcottville","IN","Indiana","TRUE","","6651","46.3","18087","LaGrange","{""18087"": ""85.9"", ""18113"": ""14.1""}","LaGrange|Noble","18087|18113","FALSE","FALSE","America/Indiana/Indianapolis"
-"46797","41.12608","-84.86024","Woodburn","IN","Indiana","TRUE","","3915","29.3","18003","Allen","{""18003"": ""100""}","Allen","18003","FALSE","FALSE","America/Indiana/Indianapolis"
-"46798","40.94093","-85.22391","Yoder","IN","Indiana","TRUE","","1515","28.4","18003","Allen","{""18003"": ""89.34"", ""18179"": ""10.66""}","Allen|Wells","18003|18179","FALSE","FALSE","America/Indiana/Indianapolis"
-"46799","40.91219","-85.28337","Zanesville","IN","Indiana","TRUE","","227","354.1","18179","Wells","{""18179"": ""100""}","Wells","18179","FALSE","FALSE","America/Indiana/Indianapolis"
-"46802","41.06793","-85.16312","Fort Wayne","IN","Indiana","TRUE","","10584","965.0","18003","Allen","{""18003"": ""100""}","Allen","18003","FALSE","FALSE","America/Indiana/Indianapolis"
-"46803","41.07084","-85.0886","Fort Wayne","IN","Indiana","TRUE","","9425","551.2","18003","Allen","{""18003"": ""100""}","Allen","18003","FALSE","FALSE","America/Indiana/Indianapolis"
-"46804","41.05123","-85.24062","Fort Wayne","IN","Indiana","TRUE","","28587","573.2","18003","Allen","{""18003"": ""100""}","Allen","18003","FALSE","FALSE","America/Indiana/Indianapolis"
-"46805","41.09933","-85.11755","Fort Wayne","IN","Indiana","TRUE","","21704","1299.3","18003","Allen","{""18003"": ""100""}","Allen","18003","FALSE","FALSE","America/Indiana/Indianapolis"
-"46806","41.04681","-85.08836","Fort Wayne","IN","Indiana","TRUE","","24711","1037.9","18003","Allen","{""18003"": ""100""}","Allen","18003","FALSE","FALSE","America/Indiana/Indianapolis"
-"46807","41.04495","-85.14761","Fort Wayne","IN","Indiana","TRUE","","17538","2110.6","18003","Allen","{""18003"": ""100""}","Allen","18003","FALSE","FALSE","America/Indiana/Indianapolis"
-"46808","41.09847","-85.17707","Fort Wayne","IN","Indiana","TRUE","","19831","714.7","18003","Allen","{""18003"": ""100""}","Allen","18003","FALSE","FALSE","America/Indiana/Indianapolis"
-"46809","41.00051","-85.20627","Fort Wayne","IN","Indiana","TRUE","","9212","155.4","18003","Allen","{""18003"": ""100""}","Allen","18003","FALSE","FALSE","America/Indiana/Indianapolis"
-"46814","41.04592","-85.30348","Fort Wayne","IN","Indiana","TRUE","","12649","286.8","18003","Allen","{""18003"": ""100""}","Allen","18003","FALSE","FALSE","America/Indiana/Indianapolis"
-"46815","41.10314","-85.05739","Fort Wayne","IN","Indiana","TRUE","","28242","1047.1","18003","Allen","{""18003"": ""100""}","Allen","18003","FALSE","FALSE","America/Indiana/Indianapolis"
-"46816","41.00459","-85.03839","Fort Wayne","IN","Indiana","TRUE","","19055","201.4","18003","Allen","{""18003"": ""100""}","Allen","18003","FALSE","FALSE","America/Indiana/Indianapolis"
-"46818","41.14786","-85.25018","Fort Wayne","IN","Indiana","TRUE","","20852","121.8","18003","Allen","{""18003"": ""98.15"", ""18183"": ""1.85""}","Allen|Whitley","18003|18183","FALSE","FALSE","America/Indiana/Indianapolis"
-"46819","40.96587","-85.13179","Fort Wayne","IN","Indiana","TRUE","","9657","145.6","18003","Allen","{""18003"": ""100""}","Allen","18003","FALSE","FALSE","America/Indiana/Indianapolis"
-"46825","41.15301","-85.12541","Fort Wayne","IN","Indiana","TRUE","","29507","743.9","18003","Allen","{""18003"": ""100""}","Allen","18003","FALSE","FALSE","America/Indiana/Indianapolis"
-"46835","41.15192","-85.04618","Fort Wayne","IN","Indiana","TRUE","","35658","649.6","18003","Allen","{""18003"": ""100""}","Allen","18003","FALSE","FALSE","America/Indiana/Indianapolis"
-"46845","41.20487","-85.10807","Fort Wayne","IN","Indiana","TRUE","","23066","391.3","18003","Allen","{""18003"": ""100""}","Allen","18003","FALSE","FALSE","America/Indiana/Indianapolis"
-"46901","40.52531","-86.15659","Kokomo","IN","Indiana","TRUE","","39383","109.6","18067","Howard","{""18067"": ""95.77"", ""18103"": ""4.23""}","Howard|Miami","18067|18103","FALSE","FALSE","America/Indiana/Indianapolis"
-"46902","40.43794","-86.0954","Kokomo","IN","Indiana","TRUE","","35778","259.1","18067","Howard","{""18067"": ""99.76"", ""18159"": ""0.24""}","Howard|Tipton","18067|18159","FALSE","FALSE","America/Indiana/Indianapolis"
-"46910","41.04154","-86.0413","Akron","IN","Indiana","TRUE","","3376","21.1","18049","Fulton","{""18049"": ""82.23"", ""18085"": ""14.2"", ""18103"": ""3.57""}","Fulton|Kosciusko|Miami","18049|18085|18103","FALSE","FALSE","America/Indiana/Indianapolis"
-"46911","40.62983","-85.94546","Amboy","IN","Indiana","TRUE","","1483","14.4","18103","Miami","{""18103"": ""90.76"", ""18169"": ""9.24""}","Miami|Wabash","18103|18169","FALSE","FALSE","America/Indiana/Indianapolis"
-"46913","40.50298","-86.50356","Bringhurst","IN","Indiana","TRUE","","1048","12.3","18015","Carroll","{""18015"": ""100""}","Carroll","18015","FALSE","FALSE","America/Indiana/Indianapolis"
-"46914","40.63118","-86.09558","Bunker Hill","IN","Indiana","TRUE","","1729","23.2","18103","Miami","{""18103"": ""100""}","Miami","18103","FALSE","FALSE","America/Indiana/Indianapolis"
-"46915","40.47773","-86.38658","Burlington","IN","Indiana","TRUE","","694","112.8","18015","Carroll","{""18015"": ""100""}","Carroll","18015","FALSE","FALSE","America/Indiana/Indianapolis"
-"46917","40.62283","-86.46926","Camden","IN","Indiana","TRUE","","1781","12.8","18015","Carroll","{""18015"": ""100""}","Carroll","18015","FALSE","FALSE","America/Indiana/Indianapolis"
-"46919","40.5896","-85.86881","Converse","IN","Indiana","TRUE","","2407","22.0","18103","Miami","{""18103"": ""56.23"", ""18053"": ""38.16"", ""18067"": ""4.69"", ""18169"": ""0.92""}","Miami|Grant|Howard|Wabash","18103|18053|18067|18169","FALSE","FALSE","America/Indiana/Indianapolis"
-"46920","40.46437","-86.4948","Cutler","IN","Indiana","TRUE","","1103","13.5","18015","Carroll","{""18015"": ""100""}","Carroll","18015","FALSE","FALSE","America/Indiana/Indianapolis"
-"46922","41.13813","-86.41332","Delong","IN","Indiana","TRUE","","31","87.7","18049","Fulton","{""18049"": ""100""}","Fulton","18049","FALSE","FALSE","America/Indiana/Indianapolis"
-"46923","40.60635","-86.6459","Delphi","IN","Indiana","TRUE","","8046","23.1","18015","Carroll","{""18015"": ""99.11"", ""18157"": ""0.89""}","Carroll|Tippecanoe","18015|18157","FALSE","FALSE","America/Indiana/Indianapolis"
-"46926","40.88287","-86.05517","Denver","IN","Indiana","TRUE","","1293","14.2","18103","Miami","{""18103"": ""98.19"", ""18017"": ""1.81""}","Miami|Cass","18103|18017","FALSE","FALSE","America/Indiana/Indianapolis"
-"46928","40.40805","-85.68637","Fairmount","IN","Indiana","TRUE","","4265","22.7","18053","Grant","{""18053"": ""99.35"", ""18095"": ""0.65""}","Grant|Madison","18053|18095","FALSE","FALSE","America/Indiana/Indianapolis"
-"46929","40.54821","-86.46999","Flora","IN","Indiana","TRUE","","3088","23.2","18015","Carroll","{""18015"": ""93.9"", ""18067"": ""6.1""}","Carroll|Howard","18015|18067","FALSE","FALSE","America/Indiana/Indianapolis"
-"46930","40.40894","-85.57232","Fowlerton","IN","Indiana","TRUE","","126","346.4","18053","Grant","{""18053"": ""100""}","Grant","18053","FALSE","FALSE","America/Indiana/Indianapolis"
-"46931","40.94761","-86.26399","Fulton","IN","Indiana","TRUE","","187","1047.8","18049","Fulton","{""18049"": ""100""}","Fulton","18049","FALSE","FALSE","America/Indiana/Indianapolis"
-"46932","40.59751","-86.25757","Galveston","IN","Indiana","TRUE","","3057","21.3","18017","Cass","{""18017"": ""92.11"", ""18103"": ""4.55"", ""18067"": ""3.34""}","Cass|Miami|Howard","18017|18103|18067","FALSE","FALSE","America/Indiana/Indianapolis"
-"46933","40.47987","-85.58236","Gas City","IN","Indiana","TRUE","","6126","207.3","18053","Grant","{""18053"": ""100""}","Grant","18053","FALSE","FALSE","America/Indiana/Indianapolis"
-"46936","40.47942","-85.93093","Greentown","IN","Indiana","TRUE","","5857","34.6","18067","Howard","{""18067"": ""100""}","Howard","18067","FALSE","FALSE","America/Indiana/Indianapolis"
-"46938","40.4474","-85.64756","Jonesboro","IN","Indiana","TRUE","","2928","36.5","18053","Grant","{""18053"": ""100""}","Grant","18053","FALSE","FALSE","America/Indiana/Indianapolis"
-"46939","40.99219","-86.4034","Kewanna","IN","Indiana","TRUE","","1819","7.4","18049","Fulton","{""18049"": ""94.38"", ""18131"": ""5.62""}","Fulton|Pulaski","18049|18131","FALSE","FALSE","America/Indiana/Indianapolis"
-"46940","40.68729","-85.69767","La Fontaine","IN","Indiana","TRUE","","2658","18.1","18169","Wabash","{""18169"": ""86.66"", ""18069"": ""12.05"", ""18053"": ""1.3""}","Wabash|Huntington|Grant","18169|18069|18053","FALSE","FALSE","America/Indiana/Indianapolis"
-"46941","40.82079","-85.69678","Lagro","IN","Indiana","TRUE","","970","14.2","18169","Wabash","{""18169"": ""100""}","Wabash","18169","FALSE","FALSE","America/Indiana/Indianapolis"
-"46943","40.97357","-85.84159","Laketon","IN","Indiana","TRUE","","225","258.7","18169","Wabash","{""18169"": ""100""}","Wabash","18169","FALSE","FALSE","America/Indiana/Indianapolis"
-"46946","41.03942","-85.73046","Liberty Mills","IN","Indiana","TRUE","","34","40.2","18169","Wabash","{""18169"": ""100""}","Wabash","18169","FALSE","FALSE","America/Indiana/Indianapolis"
-"46947","40.76005","-86.37642","Logansport","IN","Indiana","TRUE","","27830","58.0","18017","Cass","{""18017"": ""99.41"", ""18015"": ""0.59""}","Cass|Carroll","18017|18015","FALSE","FALSE","America/Indiana/Indianapolis"
-"46950","40.88296","-86.37179","Lucerne","IN","Indiana","TRUE","","566","7.8","18017","Cass","{""18017"": ""100""}","Cass","18017","FALSE","FALSE","America/Indiana/Indianapolis"
-"46951","40.9454","-86.1047","Macy","IN","Indiana","TRUE","","1874","11.4","18103","Miami","{""18103"": ""74.7"", ""18049"": ""25.3""}","Miami|Fulton","18103|18049","FALSE","FALSE","America/Indiana/Indianapolis"
-"46952","40.59911","-85.63287","Marion","IN","Indiana","TRUE","","18625","67.8","18053","Grant","{""18053"": ""98.96"", ""18179"": ""0.66"", ""18069"": ""0.26"", ""18009"": ""0.12""}","Grant|Wells|Huntington|Blackford","18053|18179|18069|18009","FALSE","FALSE","America/Indiana/Indianapolis"
-"46953","40.51862","-85.64265","Marion","IN","Indiana","TRUE","","23333","106.2","18053","Grant","{""18053"": ""100""}","Grant","18053","FALSE","FALSE","America/Indiana/Indianapolis"
-"46957","40.38832","-85.49586","Matthews","IN","Indiana","TRUE","","592","480.6","18053","Grant","{""18053"": ""100""}","Grant","18053","FALSE","FALSE","America/Indiana/Indianapolis"
-"46958","40.82193","-86.1171","Mexico","IN","Indiana","TRUE","","458","420.1","18103","Miami","{""18103"": ""100""}","Miami","18103","FALSE","FALSE","America/Indiana/Indianapolis"
-"46959","40.62079","-86.10724","Miami","IN","Indiana","TRUE","","838","293.6","18103","Miami","{""18103"": ""100""}","Miami","18103","FALSE","FALSE","America/Indiana/Indianapolis"
-"46960","41.15693","-86.52923","Monterey","IN","Indiana","TRUE","","1062","9.9","18131","Pulaski","{""18131"": ""62.07"", ""18149"": ""37.36"", ""18049"": ""0.57""}","Pulaski|Starke|Fulton","18131|18149|18049","FALSE","FALSE","America/Indiana/Winamac"
-"46961","40.76652","-86.19165","New Waverly","IN","Indiana","TRUE","","169","134.7","18017","Cass","{""18017"": ""100""}","Cass","18017","FALSE","FALSE","America/Indiana/Indianapolis"
-"46962","40.98669","-85.76877","North Manchester","IN","Indiana","TRUE","","8844","31.2","18169","Wabash","{""18169"": ""95.71"", ""18085"": ""3.9"", ""18183"": ""0.39""}","Wabash|Kosciusko|Whitley","18169|18085|18183","FALSE","FALSE","America/Indiana/Indianapolis"
-"46967","40.69478","-86.1952","Onward","IN","Indiana","TRUE","","97","404.2","18017","Cass","{""18017"": ""100""}","Cass","18017","FALSE","FALSE","America/Indiana/Indianapolis"
-"46968","41.17534","-86.54633","Ora","IN","Indiana","TRUE","","142","150.2","18149","Starke","{""18149"": ""90.41"", ""18131"": ""9.59""}","Starke|Pulaski","18149|18131","FALSE","FALSE","America/Indiana/Knox"
-"46970","40.76013","-86.06308","Peru","IN","Indiana","TRUE","","23499","49.1","18103","Miami","{""18103"": ""97.34"", ""18017"": ""2.55"", ""18169"": ""0.11""}","Miami|Cass|Wabash","18103|18017|18169","FALSE","FALSE","America/Indiana/Indianapolis"
-"46974","40.94817","-85.93011","Roann","IN","Indiana","TRUE","","2079","19.2","18169","Wabash","{""18169"": ""79.05"", ""18103"": ""20.95""}","Wabash|Miami","18169|18103","FALSE","FALSE","America/Indiana/Indianapolis"
-"46975","41.0718","-86.25092","Rochester","IN","Indiana","TRUE","","14325","25.6","18049","Fulton","{""18049"": ""100""}","Fulton","18049","FALSE","FALSE","America/Indiana/Indianapolis"
-"46978","40.8566","-86.51255","Royal Center","IN","Indiana","TRUE","","2135","13.0","18017","Cass","{""18017"": ""97.04"", ""18181"": ""1.75"", ""18131"": ""1.21""}","Cass|White|Pulaski","18017|18181|18131","FALSE","FALSE","America/Indiana/Indianapolis"
-"46979","40.4293","-86.28006","Russiaville","IN","Indiana","TRUE","","4940","45.2","18067","Howard","{""18067"": ""98.65"", ""18023"": ""1.35""}","Howard|Clinton","18067|18023","FALSE","FALSE","America/Indiana/Indianapolis"
-"46982","41.05841","-85.88969","Silver Lake","IN","Indiana","TRUE","","2660","24.7","18085","Kosciusko","{""18085"": ""83.37"", ""18169"": ""15"", ""18049"": ""1.63""}","Kosciusko|Wabash|Fulton","18085|18169|18049","FALSE","FALSE","America/Indiana/Indianapolis"
-"46984","40.66812","-85.83066","Somerset","IN","Indiana","TRUE","","188","312.1","18169","Wabash","{""18169"": ""100""}","Wabash","18169","FALSE","FALSE","America/Indiana/Indianapolis"
-"46985","40.95286","-86.57828","Star City","IN","Indiana","TRUE","","1438","7.9","18131","Pulaski","{""18131"": ""97.43"", ""18181"": ""2.57""}","Pulaski|White","18131|18181","FALSE","FALSE","America/Indiana/Winamac"
-"46986","40.49795","-85.8193","Swayzee","IN","Indiana","TRUE","","1683","18.7","18053","Grant","{""18053"": ""100""}","Grant","18053","FALSE","FALSE","America/Indiana/Indianapolis"
-"46987","40.56868","-85.7635","Sweetser","IN","Indiana","TRUE","","884","624.3","18053","Grant","{""18053"": ""100""}","Grant","18053","FALSE","FALSE","America/Indiana/Indianapolis"
-"46988","40.87795","-86.23395","Twelve Mile","IN","Indiana","TRUE","","967","14.1","18017","Cass","{""18017"": ""100""}","Cass","18017","FALSE","FALSE","America/Indiana/Indianapolis"
-"46989","40.45019","-85.47977","Upland","IN","Indiana","TRUE","","4947","56.8","18053","Grant","{""18053"": ""99.67"", ""18035"": ""0.33""}","Grant|Delaware","18053|18035","FALSE","FALSE","America/Indiana/Indianapolis"
-"46990","40.89727","-85.7281","Urbana","IN","Indiana","TRUE","","741","9.5","18169","Wabash","{""18169"": ""100""}","Wabash","18169","FALSE","FALSE","America/Indiana/Indianapolis"
-"46991","40.62867","-85.50558","Van Buren","IN","Indiana","TRUE","","1614","20.4","18053","Grant","{""18053"": ""95.66"", ""18069"": ""4.34""}","Grant|Huntington","18053|18069","FALSE","FALSE","America/Indiana/Indianapolis"
-"46992","40.78605","-85.82911","Wabash","IN","Indiana","TRUE","","16260","38.7","18169","Wabash","{""18169"": ""100""}","Wabash","18169","FALSE","FALSE","America/Indiana/Indianapolis"
-"46994","40.66813","-86.25722","Walton","IN","Indiana","TRUE","","2815","18.9","18017","Cass","{""18017"": ""100""}","Cass","18017","FALSE","FALSE","America/Indiana/Indianapolis"
-"46996","41.06264","-86.65938","Winamac","IN","Indiana","TRUE","","6159","12.7","18131","Pulaski","{""18131"": ""99.48"", ""18181"": ""0.42"", ""18149"": ""0.1""}","Pulaski|White|Starke","18131|18181|18149","FALSE","FALSE","America/Indiana/Winamac"
-"46998","40.56764","-86.34942","Young America","IN","Indiana","TRUE","","226","1068.4","18017","Cass","{""18017"": ""100""}","Cass","18017","FALSE","FALSE","America/Indiana/Indianapolis"
-"47001","39.06666","-84.96833","Aurora","IN","Indiana","TRUE","","10009","53.0","18029","Dearborn","{""18029"": ""93.01"", ""18115"": ""6.99""}","Dearborn|Ohio","18029|18115","FALSE","FALSE","America/New_York"
-"47003","39.55805","-84.84396","West College Corner","IN","Indiana","TRUE","","890","27.3","18161","Union","{""18161"": ""100""}","Union","18161","FALSE","FALSE","America/Indiana/Indianapolis"
-"47006","39.292","-85.21583","Batesville","IN","Indiana","TRUE","","11880","44.3","18137","Ripley","{""18137"": ""66.19"", ""18047"": ""33.56"", ""18031"": ""0.26""}","Ripley|Franklin|Decatur","18137|18047|18031","FALSE","FALSE","America/Indiana/Indianapolis"
-"47010","39.50069","-84.84148","Bath","IN","Indiana","TRUE","","220","7.9","18047","Franklin","{""18047"": ""70.26"", ""18161"": ""29.74""}","Franklin|Union","18047|18161","FALSE","FALSE","America/Indiana/Indianapolis"
-"47011","38.87547","-85.07527","Bennington","IN","Indiana","TRUE","","788","8.5","18155","Switzerland","{""18155"": ""99.14"", ""18115"": ""0.86""}","Switzerland|Ohio","18155|18115","FALSE","FALSE","America/Indiana/Vevay"
-"47012","39.41776","-84.98153","Brookville","IN","Indiana","TRUE","","9396","21.9","18047","Franklin","{""18047"": ""91.62"", ""18029"": ""8.38""}","Franklin|Dearborn","18047|18029","FALSE","FALSE","America/Indiana/Indianapolis"
-"47016","39.37668","-84.88702","Cedar Grove","IN","Indiana","TRUE","","796","15.7","18047","Franklin","{""18047"": ""100""}","Franklin","18047","FALSE","FALSE","America/Indiana/Indianapolis"
-"47017","38.94178","-85.19039","Cross Plains","IN","Indiana","TRUE","","481","12.1","18137","Ripley","{""18137"": ""98.62"", ""18115"": ""1.38""}","Ripley|Ohio","18137|18115","FALSE","FALSE","America/Indiana/Indianapolis"
-"47018","38.98741","-85.0828","Dillsboro","IN","Indiana","TRUE","","4477","24.2","18029","Dearborn","{""18029"": ""67.39"", ""18137"": ""18.27"", ""18115"": ""14.34""}","Dearborn|Ripley|Ohio","18029|18137|18115","FALSE","FALSE","America/New_York"
-"47020","38.81667","-84.9331","Florence","IN","Indiana","TRUE","","1432","25.6","18155","Switzerland","{""18155"": ""100""}","Switzerland","18155","FALSE","FALSE","America/Indiana/Vevay"
-"47022","39.20492","-84.95173","Guilford","IN","Indiana","TRUE","","2980","33.8","18029","Dearborn","{""18029"": ""100""}","Dearborn","18029","FALSE","FALSE","America/New_York"
-"47023","39.07935","-85.3815","Holton","IN","Indiana","TRUE","","1665","13.7","18137","Ripley","{""18137"": ""100""}","Ripley","18137","FALSE","FALSE","America/Indiana/Indianapolis"
-"47024","39.47631","-85.20035","Laurel","IN","Indiana","TRUE","","3708","21.9","18047","Franklin","{""18047"": ""100""}","Franklin","18047","FALSE","FALSE","America/Indiana/Indianapolis"
-"47025","39.15647","-84.87428","Lawrenceburg","IN","Indiana","TRUE","","22794","158.9","18029","Dearborn","{""18029"": ""100""}","Dearborn","18029","FALSE","FALSE","America/New_York"
-"47030","39.42569","-85.12989","Metamora","IN","Indiana","TRUE","","2038","23.4","18047","Franklin","{""18047"": ""100""}","Franklin","18047","FALSE","FALSE","America/Indiana/Indianapolis"
-"47031","39.11942","-85.15856","Milan","IN","Indiana","TRUE","","5477","34.3","18137","Ripley","{""18137"": ""96.96"", ""18029"": ""3.04""}","Ripley|Dearborn","18137|18029","FALSE","FALSE","America/Indiana/Indianapolis"
-"47032","39.0808","-85.04983","Moores Hill","IN","Indiana","TRUE","","3116","34.4","18029","Dearborn","{""18029"": ""100""}","Dearborn","18029","FALSE","FALSE","America/New_York"
-"47034","39.204","-85.32747","Napoleon","IN","Indiana","TRUE","","135","454.0","18137","Ripley","{""18137"": ""100""}","Ripley","18137","FALSE","FALSE","America/Indiana/Indianapolis"
-"47035","39.30925","-84.90554","New Trenton","IN","Indiana","TRUE","","246","310.8","18047","Franklin","{""18047"": ""100""}","Franklin","18047","FALSE","FALSE","America/Indiana/Indianapolis"
-"47036","39.38865","-85.24529","Oldenburg","IN","Indiana","TRUE","","882","21.2","18047","Franklin","{""18047"": ""100""}","Franklin","18047","FALSE","FALSE","America/Indiana/Indianapolis"
-"47037","39.16443","-85.31848","Osgood","IN","Indiana","TRUE","","4553","21.9","18137","Ripley","{""18137"": ""100""}","Ripley","18137","FALSE","FALSE","America/Indiana/Indianapolis"
-"47038","38.84824","-84.84764","Patriot","IN","Indiana","TRUE","","1716","21.3","18155","Switzerland","{""18155"": ""100""}","Switzerland","18155","FALSE","FALSE","America/Indiana/Vevay"
-"47040","38.93011","-84.93655","Rising Sun","IN","Indiana","TRUE","","5103","29.4","18115","Ohio","{""18115"": ""87.01"", ""18155"": ""12.99""}","Ohio|Switzerland","18115|18155","FALSE","FALSE","America/New_York"
-"47041","39.2328","-85.08336","Sunman","IN","Indiana","TRUE","","6626","30.9","18137","Ripley","{""18137"": ""57.31"", ""18029"": ""42.69""}","Ripley|Dearborn","18137|18029","FALSE","FALSE","America/Indiana/Indianapolis"
-"47042","39.01119","-85.25929","Versailles","IN","Indiana","TRUE","","4089","20.5","18137","Ripley","{""18137"": ""100""}","Ripley","18137","FALSE","FALSE","America/Indiana/Indianapolis"
-"47043","38.79437","-85.09909","Vevay","IN","Indiana","TRUE","","5212","19.5","18155","Switzerland","{""18155"": ""98.32"", ""18077"": ""1.68""}","Switzerland|Jefferson","18155|18077","FALSE","FALSE","America/Indiana/Vevay"
-"47060","39.30086","-84.88096","West Harrison","IN","Indiana","TRUE","","5942","40.1","18029","Dearborn","{""18029"": ""66.1"", ""18047"": ""33.9""}","Dearborn|Franklin","18029|18047","FALSE","FALSE","America/New_York"
-"47102","38.75868","-85.79089","Austin","IN","Indiana","TRUE","","6953","67.1","18143","Scott","{""18143"": ""95.93"", ""18071"": ""4.07""}","Scott|Jackson","18143|18071","FALSE","FALSE","America/Indiana/Indianapolis"
-"47104","38.53994","-85.42094","Bethlehem","IN","Indiana","TRUE","","0","0.0","18019","Clark","{""18019"": ""100""}","Clark","18019","FALSE","FALSE","America/New_York"
-"47106","38.4624","-85.90238","Borden","IN","Indiana","TRUE","","5005","27.8","18019","Clark","{""18019"": ""87.03"", ""18043"": ""8.73"", ""18175"": ""4.24""}","Clark|Floyd|Washington","18019|18043|18175","FALSE","FALSE","America/Kentucky/Louisville"
-"47108","38.6415","-86.25874","Campbellsburg","IN","Indiana","TRUE","","2352","10.2","18175","Washington","{""18175"": ""98.82"", ""18117"": ""1.18""}","Washington|Orange","18175|18117","FALSE","FALSE","America/Indiana/Indianapolis"
-"47110","38.09886","-86.18509","Central","IN","Indiana","TRUE","","417","27.8","18061","Harrison","{""18061"": ""100""}","Harrison","18061","FALSE","FALSE","America/Kentucky/Louisville"
-"47111","38.46471","-85.62776","Charlestown","IN","Indiana","TRUE","","16971","82.0","18019","Clark","{""18019"": ""100""}","Clark","18019","FALSE","FALSE","America/Kentucky/Louisville"
-"47112","38.19537","-86.14434","Corydon","IN","Indiana","TRUE","","16593","39.6","18061","Harrison","{""18061"": ""100""}","Harrison","18061","FALSE","FALSE","America/Kentucky/Louisville"
-"47114","38.28832","-86.07174","Crandall","IN","Indiana","TRUE","","328","129.5","18061","Harrison","{""18061"": ""100""}","Harrison","18061","FALSE","FALSE","America/Kentucky/Louisville"
-"47115","38.34596","-86.21711","Depauw","IN","Indiana","TRUE","","3025","20.5","18061","Harrison","{""18061"": ""100""}","Harrison","18061","FALSE","FALSE","America/Kentucky/Louisville"
-"47116","38.32497","-86.61755","Eckerty","IN","Indiana","TRUE","","681","8.8","18025","Crawford","{""18025"": ""100""}","Crawford","18025","FALSE","FALSE","America/Indiana/Marengo"
-"47117","38.10535","-85.97309","Elizabeth","IN","Indiana","TRUE","","4531","21.0","18061","Harrison","{""18061"": ""96.12"", ""18043"": ""3.88""}","Harrison|Floyd","18061|18043","FALSE","FALSE","America/Kentucky/Louisville"
-"47118","38.29756","-86.48766","English","IN","Indiana","TRUE","","3474","9.4","18025","Crawford","{""18025"": ""83.64"", ""18123"": ""9.34"", ""18117"": ""7.02""}","Crawford|Perry|Orange","18025|18123|18117","FALSE","FALSE","America/Indiana/Marengo"
-"47119","38.36648","-85.88372","Floyds Knobs","IN","Indiana","TRUE","","11700","104.7","18043","Floyd","{""18043"": ""96.88"", ""18019"": ""3.12""}","Floyd|Clark","18043|18019","FALSE","FALSE","America/Kentucky/Louisville"
-"47120","38.45656","-86.18847","Fredericksburg","IN","Indiana","TRUE","","741","15.4","18175","Washington","{""18175"": ""100""}","Washington","18175","FALSE","FALSE","America/Indiana/Indianapolis"
-"47122","38.30472","-85.98253","Georgetown","IN","Indiana","TRUE","","10943","118.8","18043","Floyd","{""18043"": ""82.89"", ""18061"": ""17.11""}","Floyd|Harrison","18043|18061","FALSE","FALSE","America/Kentucky/Louisville"
-"47123","38.26719","-86.47935","Grantsburg","IN","Indiana","TRUE","","122","6.4","18025","Crawford","{""18025"": ""100""}","Crawford","18025","FALSE","FALSE","America/Indiana/Marengo"
-"47124","38.36792","-86.00835","Greenville","IN","Indiana","TRUE","","5146","81.1","18043","Floyd","{""18043"": ""89.14"", ""18061"": ""10.86""}","Floyd|Harrison","18043|18061","FALSE","FALSE","America/Kentucky/Louisville"
-"47125","38.4607","-86.30858","Hardinsburg","IN","Indiana","TRUE","","1554","14.5","18175","Washington","{""18175"": ""60.86"", ""18117"": ""39.14""}","Washington|Orange","18175|18117","FALSE","FALSE","America/Indiana/Indianapolis"
-"47126","38.54865","-85.7757","Henryville","IN","Indiana","TRUE","","4698","51.8","18019","Clark","{""18019"": ""96.64"", ""18175"": ""3.36""}","Clark|Washington","18019|18175","FALSE","FALSE","America/Kentucky/Louisville"
-"47129","38.31391","-85.76898","Clarksville","IN","Indiana","TRUE","","19684","805.7","18019","Clark","{""18019"": ""100""}","Clark","18019","FALSE","FALSE","America/Kentucky/Louisville"
-"47130","38.33516","-85.69714","Jeffersonville","IN","Indiana","TRUE","","46645","528.5","18019","Clark","{""18019"": ""100""}","Clark","18019","FALSE","FALSE","America/Kentucky/Louisville"
-"47135","38.0411","-86.07437","Laconia","IN","Indiana","TRUE","","938","7.1","18061","Harrison","{""18061"": ""100""}","Harrison","18061","FALSE","FALSE","America/Kentucky/Louisville"
-"47136","38.23546","-85.96047","Lanesville","IN","Indiana","TRUE","","4482","62.4","18061","Harrison","{""18061"": ""50.84"", ""18043"": ""49.16""}","Harrison|Floyd","18061|18043","FALSE","FALSE","America/Kentucky/Louisville"
-"47137","38.18652","-86.38382","Leavenworth","IN","Indiana","TRUE","","1499","9.5","18025","Crawford","{""18025"": ""99.65"", ""18123"": ""0.35""}","Crawford|Perry","18025|18123","FALSE","FALSE","America/Indiana/Marengo"
-"47138","38.68093","-85.59552","Lexington","IN","Indiana","TRUE","","4378","22.9","18143","Scott","{""18143"": ""55.2"", ""18077"": ""44.8""}","Scott|Jefferson","18143|18077","FALSE","FALSE","America/Indiana/Indianapolis"
-"47140","38.38358","-86.36725","Marengo","IN","Indiana","TRUE","","2559","23.8","18025","Crawford","{""18025"": ""81.3"", ""18117"": ""18.7""}","Crawford|Orange","18025|18117","FALSE","FALSE","America/Indiana/Marengo"
-"47141","38.55454","-85.60943","Marysville","IN","Indiana","TRUE","","1542","17.4","18019","Clark","{""18019"": ""100""}","Clark","18019","FALSE","FALSE","America/Kentucky/Louisville"
-"47142","38.07578","-86.21637","Mauckport","IN","Indiana","TRUE","","1049","10.9","18061","Harrison","{""18061"": ""100""}","Harrison","18061","FALSE","FALSE","America/New_York"
-"47143","38.46737","-85.76986","Memphis","IN","Indiana","TRUE","","3063","52.6","18019","Clark","{""18019"": ""100""}","Clark","18019","FALSE","FALSE","America/Kentucky/Louisville"
-"47145","38.3306","-86.30261","Milltown","IN","Indiana","TRUE","","1913","17.2","18025","Crawford","{""18025"": ""100""}","Crawford","18025","FALSE","FALSE","America/Indiana/Marengo"
-"47147","38.59462","-85.5472","Nabb","IN","Indiana","TRUE","","1273","17.7","18019","Clark","{""18019"": ""62.22"", ""18143"": ""28.47"", ""18077"": ""9.31""}","Clark|Scott|Jefferson","18019|18143|18077","FALSE","FALSE","America/Kentucky/Louisville"
-"47150","38.28829","-85.84664","New Albany","IN","Indiana","TRUE","","47912","421.5","18043","Floyd","{""18043"": ""99.91"", ""18019"": ""0.09""}","Floyd|Clark","18043|18019","FALSE","FALSE","America/Kentucky/Louisville"
-"47160","38.16445","-86.05101","New Middletown","IN","Indiana","TRUE","","113","1055.5","18061","Harrison","{""18061"": ""100""}","Harrison","18061","FALSE","FALSE","America/Kentucky/Louisville"
-"47161","38.32305","-86.10363","New Salisbury","IN","Indiana","TRUE","","3305","57.8","18061","Harrison","{""18061"": ""100""}","Harrison","18061","FALSE","FALSE","America/Kentucky/Louisville"
-"47162","38.55393","-85.47192","New Washington","IN","Indiana","TRUE","","801","13.6","18019","Clark","{""18019"": ""100""}","Clark","18019","FALSE","FALSE","America/Kentucky/Louisville"
-"47163","38.53227","-85.6697","Otisco","IN","Indiana","TRUE","","1210","22.5","18019","Clark","{""18019"": ""100""}","Clark","18019","FALSE","FALSE","America/Kentucky/Louisville"
-"47164","38.40416","-86.09273","Palmyra","IN","Indiana","TRUE","","4115","45.3","18061","Harrison","{""18061"": ""80.55"", ""18175"": ""19.45""}","Harrison|Washington","18061|18175","FALSE","FALSE","America/Kentucky/Louisville"
-"47165","38.50454","-86.00561","Pekin","IN","Indiana","TRUE","","6034","28.3","18175","Washington","{""18175"": ""98.49"", ""18043"": ""1.51""}","Washington|Floyd","18175|18043","FALSE","FALSE","America/Indiana/Indianapolis"
-"47166","38.30689","-86.16742","Ramsey","IN","Indiana","TRUE","","1515","45.6","18061","Harrison","{""18061"": ""100""}","Harrison","18061","FALSE","FALSE","America/Kentucky/Louisville"
-"47167","38.61184","-86.09583","Salem","IN","Indiana","TRUE","","14879","26.9","18175","Washington","{""18175"": ""100""}","Washington","18175","FALSE","FALSE","America/Indiana/Indianapolis"
-"47170","38.6849","-85.84356","Scottsburg","IN","Indiana","TRUE","","14919","36.2","18143","Scott","{""18143"": ""92.81"", ""18175"": ""7.19""}","Scott|Washington","18143|18175","FALSE","FALSE","America/Indiana/Indianapolis"
-"47172","38.39885","-85.76864","Sellersburg","IN","Indiana","TRUE","","17813","277.3","18019","Clark","{""18019"": ""88.99"", ""18043"": ""11.01""}","Clark|Floyd","18019|18043","FALSE","FALSE","America/Kentucky/Louisville"
-"47175","38.36482","-86.55697","Taswell","IN","Indiana","TRUE","","1033","17.7","18025","Crawford","{""18025"": ""95.71"", ""18117"": ""4.29""}","Crawford|Orange","18025|18117","FALSE","FALSE","America/Indiana/Marengo"
-"47177","38.60072","-85.78269","Underwood","IN","Indiana","TRUE","","1241","28.7","18019","Clark","{""18019"": ""55.53"", ""18143"": ""44.47""}","Clark|Scott","18019|18143","FALSE","FALSE","America/Indiana/Indianapolis"
-"47201","39.15768","-85.9907","Columbus","IN","Indiana","TRUE","","44831","84.7","18005","Bartholomew","{""18005"": ""97.12"", ""18013"": ""2.88""}","Bartholomew|Brown","18005|18013","FALSE","FALSE","America/Indiana/Indianapolis"
-"47203","39.23159","-85.83295","Columbus","IN","Indiana","TRUE","","26807","133.5","18005","Bartholomew","{""18005"": ""100""}","Bartholomew","18005","FALSE","FALSE","America/Indiana/Indianapolis"
-"47220","38.87745","-86.0504","Brownstown","IN","Indiana","TRUE","","5671","26.3","18071","Jackson","{""18071"": ""100""}","Jackson","18071","FALSE","FALSE","America/Indiana/Indianapolis"
-"47223","39.04911","-85.47891","Butlerville","IN","Indiana","TRUE","","1024","6.8","18079","Jennings","{""18079"": ""100""}","Jennings","18079","FALSE","FALSE","America/Indiana/Indianapolis"
-"47224","38.88697","-85.22128","Canaan","IN","Indiana","TRUE","","520","8.9","18155","Switzerland","{""18155"": ""53.14"", ""18077"": ""43.87"", ""18137"": ""2.99""}","Switzerland|Jefferson|Ripley","18155|18077|18137","FALSE","FALSE","America/Indiana/Indianapolis"
-"47226","39.28268","-85.8691","Clifford","IN","Indiana","TRUE","","260","969.1","18005","Bartholomew","{""18005"": ""100""}","Bartholomew","18005","FALSE","FALSE","America/Indiana/Indianapolis"
-"47227","38.8749","-85.65178","Commiskey","IN","Indiana","TRUE","","2299","18.1","18079","Jennings","{""18079"": ""83.85"", ""18077"": ""16.15""}","Jennings|Jefferson","18079|18077","FALSE","FALSE","America/Indiana/Indianapolis"
-"47229","38.8041","-85.86737","Crothersville","IN","Indiana","TRUE","","3261","25.2","18071","Jackson","{""18071"": ""94.86"", ""18079"": ""5.14""}","Jackson|Jennings","18071|18079","FALSE","FALSE","America/Indiana/Indianapolis"
-"47230","38.795","-85.6298","Deputy","IN","Indiana","TRUE","","1439","11.1","18077","Jefferson","{""18077"": ""79.25"", ""18143"": ""13.01"", ""18079"": ""7.74""}","Jefferson|Scott|Jennings","18077|18143|18079","FALSE","FALSE","America/Indiana/Indianapolis"
-"47231","38.89924","-85.49577","Dupont","IN","Indiana","TRUE","","858","11.7","18077","Jefferson","{""18077"": ""77.04"", ""18079"": ""22.96""}","Jefferson|Jennings","18077|18079","FALSE","FALSE","America/Indiana/Indianapolis"
-"47232","39.11337","-85.7931","Elizabethtown","IN","Indiana","TRUE","","3327","40.4","18005","Bartholomew","{""18005"": ""64.25"", ""18079"": ""35.75""}","Bartholomew|Jennings","18005|18079","FALSE","FALSE","America/Indiana/Indianapolis"
-"47234","39.37721","-85.76796","Flat Rock","IN","Indiana","TRUE","","1457","17.0","18145","Shelby","{""18145"": ""100""}","Shelby","18145","FALSE","FALSE","America/Indiana/Indianapolis"
-"47235","38.99605","-86.13628","Freetown","IN","Indiana","TRUE","","1488","14.3","18071","Jackson","{""18071"": ""78.81"", ""18013"": ""21.19""}","Jackson|Brown","18071|18013","FALSE","FALSE","America/Indiana/Indianapolis"
-"47240","39.32316","-85.47994","Greensburg","IN","Indiana","TRUE","","21836","28.2","18031","Decatur","{""18031"": ""98.77"", ""18047"": ""0.54"", ""18145"": ""0.3"", ""18139"": ""0.23"", ""18137"": ""0.16""}","Decatur|Franklin|Shelby|Rush|Ripley","18031|18047|18145|18139|18137","FALSE","FALSE","America/Indiana/Indianapolis"
-"47243","38.67096","-85.48023","Hanover","IN","Indiana","TRUE","","5907","65.3","18077","Jefferson","{""18077"": ""100""}","Jefferson","18077","FALSE","FALSE","America/Indiana/Indianapolis"
-"47244","39.21913","-85.70149","Hartsville","IN","Indiana","TRUE","","734","16.1","18005","Bartholomew","{""18005"": ""89.69"", ""18031"": ""10.31""}","Bartholomew|Decatur","18005|18031","FALSE","FALSE","America/Indiana/Indianapolis"
-"47246","39.2985","-85.76731","Hope","IN","Indiana","TRUE","","4600","30.2","18005","Bartholomew","{""18005"": ""100""}","Bartholomew","18005","FALSE","FALSE","America/Indiana/Indianapolis"
-"47247","39.05961","-85.88811","Jonesville","IN","Indiana","TRUE","","194","637.4","18005","Bartholomew","{""18005"": ""100""}","Bartholomew","18005","FALSE","FALSE","America/Indiana/Indianapolis"
-"47250","38.81842","-85.35149","Madison","IN","Indiana","TRUE","","22202","41.4","18077","Jefferson","{""18077"": ""96.82"", ""18137"": ""1.71"", ""18155"": ""1.47""}","Jefferson|Ripley|Switzerland","18077|18137|18155","FALSE","FALSE","America/Indiana/Indianapolis"
-"47260","38.8361","-86.19866","Medora","IN","Indiana","TRUE","","1705","11.8","18071","Jackson","{""18071"": ""100""}","Jackson","18071","FALSE","FALSE","America/Indiana/Indianapolis"
-"47263","39.30947","-85.33021","New Point","IN","Indiana","TRUE","","255","787.1","18031","Decatur","{""18031"": ""100""}","Decatur","18031","FALSE","FALSE","America/Indiana/Indianapolis"
-"47264","38.96688","-86.26906","Norman","IN","Indiana","TRUE","","1197","4.7","18071","Jackson","{""18071"": ""78.22"", ""18093"": ""19.19"", ""18105"": ""2.59""}","Jackson|Lawrence|Monroe","18071|18093|18105","FALSE","FALSE","America/Indiana/Indianapolis"
-"47265","39.01233","-85.62763","North Vernon","IN","Indiana","TRUE","","20344","41.1","18079","Jennings","{""18079"": ""100""}","Jennings","18079","FALSE","FALSE","America/Indiana/Indianapolis"
-"47270","38.84044","-85.7235","Paris Crossing","IN","Indiana","TRUE","","530","11.0","18079","Jennings","{""18079"": ""93.56"", ""18077"": ""6.44""}","Jennings|Jefferson","18079|18077","FALSE","FALSE","America/Indiana/Indianapolis"
-"47272","39.41234","-85.62046","Saint Paul","IN","Indiana","TRUE","","2185","25.9","18031","Decatur","{""18031"": ""64.87"", ""18145"": ""35.13""}","Decatur|Shelby","18031|18145","FALSE","FALSE","America/Indiana/Indianapolis"
-"47273","39.07426","-85.73672","Scipio","IN","Indiana","TRUE","","2210","27.6","18079","Jennings","{""18079"": ""100""}","Jennings","18079","FALSE","FALSE","America/Indiana/Indianapolis"
-"47274","38.96581","-85.93097","Seymour","IN","Indiana","TRUE","","31352","57.2","18071","Jackson","{""18071"": ""97.29"", ""18005"": ""1.38"", ""18079"": ""0.83"", ""18013"": ""0.51""}","Jackson|Bartholomew|Jennings|Brown","18071|18005|18079|18013","FALSE","FALSE","America/Indiana/Indianapolis"
-"47280","39.29652","-85.95056","Taylorsville","IN","Indiana","TRUE","","979","360.3","18005","Bartholomew","{""18005"": ""100""}","Bartholomew","18005","FALSE","FALSE","America/Indiana/Indianapolis"
-"47281","38.78587","-86.10386","Vallonia","IN","Indiana","TRUE","","1237","8.5","18071","Jackson","{""18071"": ""71"", ""18175"": ""29""}","Jackson|Washington","18071|18175","FALSE","FALSE","America/Indiana/Indianapolis"
-"47282","38.98241","-85.61069","Vernon","IN","Indiana","TRUE","","293","351.7","18079","Jennings","{""18079"": ""100""}","Jennings","18079","FALSE","FALSE","America/Indiana/Indianapolis"
-"47283","39.17338","-85.58861","Westport","IN","Indiana","TRUE","","3193","20.6","18031","Decatur","{""18031"": ""95.19"", ""18005"": ""3.43"", ""18079"": ""1.39""}","Decatur|Bartholomew|Jennings","18031|18005|18079","FALSE","FALSE","America/Indiana/Indianapolis"
-"47302","40.12999","-85.37673","Muncie","IN","Indiana","TRUE","","26018","151.3","18035","Delaware","{""18035"": ""99.76"", ""18065"": ""0.24""}","Delaware|Henry","18035|18065","FALSE","FALSE","America/Indiana/Indianapolis"
-"47303","40.27154","-85.37801","Muncie","IN","Indiana","TRUE","","25124","167.0","18035","Delaware","{""18035"": ""100""}","Delaware","18035","FALSE","FALSE","America/Indiana/Indianapolis"
-"47304","40.2331","-85.46054","Muncie","IN","Indiana","TRUE","","32105","354.0","18035","Delaware","{""18035"": ""100""}","Delaware","18035","FALSE","FALSE","America/Indiana/Indianapolis"
-"47305","40.19375","-85.38603","Muncie","IN","Indiana","TRUE","","3504","1013.4","18035","Delaware","{""18035"": ""100""}","Delaware","18035","FALSE","FALSE","America/Indiana/Indianapolis"
-"47306","40.20418","-85.4069","Muncie","IN","Indiana","TRUE","","5096","8835.7","18035","Delaware","{""18035"": ""100""}","Delaware","18035","FALSE","FALSE","America/Indiana/Indianapolis"
-"47320","40.27874","-85.26668","Albany","IN","Indiana","TRUE","","3648","42.1","18035","Delaware","{""18035"": ""92.21"", ""18135"": ""7.16"", ""18075"": ""0.63""}","Delaware|Randolph|Jay","18035|18135|18075","FALSE","FALSE","America/Indiana/Indianapolis"
-"47324","39.74118","-84.85172","Boston","IN","Indiana","TRUE","","149","261.2","18177","Wayne","{""18177"": ""100""}","Wayne","18177","FALSE","FALSE","America/Indiana/Indianapolis"
-"47325","39.68923","-85.01756","Brownsville","IN","Indiana","TRUE","","663","12.6","18161","Union","{""18161"": ""68.07"", ""18041"": ""31.93""}","Union|Fayette","18161|18041","FALSE","FALSE","America/Indiana/Indianapolis"
-"47326","40.54567","-84.96605","Bryant","IN","Indiana","TRUE","","2195","12.7","18075","Jay","{""18075"": ""97.3"", ""18001"": ""2.7""}","Jay|Adams","18075|18001","FALSE","FALSE","America/Indiana/Indianapolis"
-"47327","39.83125","-85.17382","Cambridge City","IN","Indiana","TRUE","","4512","31.9","18177","Wayne","{""18177"": ""93.02"", ""18065"": ""6.98""}","Wayne|Henry","18177|18065","FALSE","FALSE","America/Indiana/Indianapolis"
-"47330","39.78641","-85.02219","Centerville","IN","Indiana","TRUE","","5196","33.7","18177","Wayne","{""18177"": ""100""}","Wayne","18177","FALSE","FALSE","America/Indiana/Indianapolis"
-"47331","39.62981","-85.16411","Connersville","IN","Indiana","TRUE","","22391","45.4","18041","Fayette","{""18041"": ""99.36"", ""18047"": ""0.33"", ""18161"": ""0.31""}","Fayette|Franklin|Union","18041|18047|18161","FALSE","FALSE","America/Indiana/Indianapolis"
-"47334","40.11771","-85.52701","Daleville","IN","Indiana","TRUE","","3189","46.3","18035","Delaware","{""18035"": ""97.21"", ""18065"": ""2.79""}","Delaware|Henry","18035|18065","FALSE","FALSE","America/Indiana/Indianapolis"
-"47335","39.81238","-85.2049","Dublin","IN","Indiana","TRUE","","753","603.0","18177","Wayne","{""18177"": ""100""}","Wayne","18177","FALSE","FALSE","America/Indiana/Indianapolis"
-"47336","40.3961","-85.20756","Dunkirk","IN","Indiana","TRUE","","3243","26.7","18075","Jay","{""18075"": ""79.43"", ""18035"": ""11.72"", ""18009"": ""8.85""}","Jay|Delaware|Blackford","18075|18035|18009","FALSE","FALSE","America/Indiana/Indianapolis"
-"47337","39.80245","-85.43732","Dunreith","IN","Indiana","TRUE","","138","288.8","18065","Henry","{""18065"": ""100""}","Henry","18065","FALSE","FALSE","America/Indiana/Indianapolis"
-"47338","40.3399","-85.3409","Eaton","IN","Indiana","TRUE","","2789","38.5","18035","Delaware","{""18035"": ""100""}","Delaware","18035","FALSE","FALSE","America/Indiana/Indianapolis"
-"47339","39.96271","-85.09496","Economy","IN","Indiana","TRUE","","497","14.5","18177","Wayne","{""18177"": ""100""}","Wayne","18177","FALSE","FALSE","America/Indiana/Indianapolis"
-"47340","40.18107","-85.1323","Farmland","IN","Indiana","TRUE","","2998","21.6","18135","Randolph","{""18135"": ""100""}","Randolph","18135","FALSE","FALSE","America/Indiana/Indianapolis"
-"47341","39.97229","-84.89277","Fountain City","IN","Indiana","TRUE","","2382","25.2","18177","Wayne","{""18177"": ""100""}","Wayne","18177","FALSE","FALSE","America/Indiana/Indianapolis"
-"47342","40.32196","-85.51233","Gaston","IN","Indiana","TRUE","","2558","19.7","18035","Delaware","{""18035"": ""100""}","Delaware","18035","FALSE","FALSE","America/Indiana/Indianapolis"
-"47344","39.87833","-85.46549","Greensboro","IN","Indiana","TRUE","","124","335.2","18065","Henry","{""18065"": ""100""}","Henry","18065","FALSE","FALSE","America/Indiana/Indianapolis"
-"47345","39.89103","-85.04865","Greens Fork","IN","Indiana","TRUE","","1406","18.3","18177","Wayne","{""18177"": ""100""}","Wayne","18177","FALSE","FALSE","America/Indiana/Indianapolis"
-"47346","39.93436","-85.16281","Hagerstown","IN","Indiana","TRUE","","3911","33.5","18177","Wayne","{""18177"": ""96.52"", ""18065"": ""3.48""}","Wayne|Henry","18177|18065","FALSE","FALSE","America/Indiana/Indianapolis"
-"47348","40.45668","-85.34818","Hartford City","IN","Indiana","TRUE","","9159","30.3","18009","Blackford","{""18009"": ""100""}","Blackford","18009","FALSE","FALSE","America/Indiana/Indianapolis"
-"47351","39.90547","-85.52219","Kennard","IN","Indiana","TRUE","","540","492.5","18065","Henry","{""18065"": ""100""}","Henry","18065","FALSE","FALSE","America/Indiana/Indianapolis"
-"47352","39.79743","-85.36459","Lewisville","IN","Indiana","TRUE","","860","11.0","18065","Henry","{""18065"": ""85.18"", ""18139"": ""14.82""}","Henry|Rush","18065|18139","FALSE","FALSE","America/Indiana/Indianapolis"
-"47353","39.62773","-84.91944","Liberty","IN","Indiana","TRUE","","5508","17.1","18161","Union","{""18161"": ""99.39"", ""18047"": ""0.61""}","Union|Franklin","18161|18047","FALSE","FALSE","America/Indiana/Indianapolis"
-"47354","40.04568","-85.19698","Losantville","IN","Indiana","TRUE","","1075","14.0","18135","Randolph","{""18135"": ""57.13"", ""18065"": ""32.77"", ""18177"": ""5.93"", ""18035"": ""4.16""}","Randolph|Henry|Wayne|Delaware","18135|18065|18177|18035","FALSE","FALSE","America/Indiana/Indianapolis"
-"47355","40.04527","-84.92712","Lynn","IN","Indiana","TRUE","","2752","16.7","18135","Randolph","{""18135"": ""100""}","Randolph","18135","FALSE","FALSE","America/Indiana/Indianapolis"
-"47356","40.02869","-85.50531","Middletown","IN","Indiana","TRUE","","5286","37.9","18065","Henry","{""18065"": ""91.04"", ""18095"": ""7.85"", ""18035"": ""1.11""}","Henry|Madison|Delaware","18065|18095|18035","FALSE","FALSE","America/Indiana/Indianapolis"
-"47357","39.75631","-85.14961","Milton","IN","Indiana","TRUE","","822","9.1","18177","Wayne","{""18177"": ""83.21"", ""18041"": ""16.79""}","Wayne|Fayette","18177|18041","FALSE","FALSE","America/Indiana/Indianapolis"
-"47358","40.05394","-85.11076","Modoc","IN","Indiana","TRUE","","1060","10.8","18135","Randolph","{""18135"": ""94.98"", ""18177"": ""5.02""}","Randolph|Wayne","18135|18177","FALSE","FALSE","America/Indiana/Indianapolis"
-"47359","40.55043","-85.28362","Montpelier","IN","Indiana","TRUE","","3013","19.3","18009","Blackford","{""18009"": ""81.96"", ""18179"": ""18.04""}","Blackford|Wells","18009|18179","FALSE","FALSE","America/Indiana/Indianapolis"
-"47360","40.01534","-85.26269","Mooreland","IN","Indiana","TRUE","","1259","14.1","18065","Henry","{""18065"": ""94.57"", ""18177"": ""4.79"", ""18135"": ""0.65""}","Henry|Wayne|Randolph","18065|18177|18135","FALSE","FALSE","America/Indiana/Indianapolis"
-"47361","40.00423","-85.38501","Mount Summit","IN","Indiana","TRUE","","215","1794.8","18065","Henry","{""18065"": ""100""}","Henry","18065","FALSE","FALSE","America/Indiana/Indianapolis"
-"47362","39.93024","-85.36904","New Castle","IN","Indiana","TRUE","","29873","78.7","18065","Henry","{""18065"": ""100""}","Henry","18065","FALSE","FALSE","America/Indiana/Indianapolis"
-"47367","40.08265","-85.38721","Oakville","IN","Indiana","TRUE","","57","30.6","18035","Delaware","{""18035"": ""100""}","Delaware","18035","FALSE","FALSE","America/Indiana/Indianapolis"
-"47368","40.18497","-85.19973","Parker City","IN","Indiana","TRUE","","2831","31.2","18135","Randolph","{""18135"": ""84.46"", ""18035"": ""15.54""}","Randolph|Delaware","18135|18035","FALSE","FALSE","America/Indiana/Indianapolis"
-"47369","40.50537","-85.14469","Pennville","IN","Indiana","TRUE","","1320","14.9","18075","Jay","{""18075"": ""100""}","Jay","18075","FALSE","FALSE","America/Indiana/Indianapolis"
-"47371","40.41858","-84.96004","Portland","IN","Indiana","TRUE","","12200","21.6","18075","Jay","{""18075"": ""99.93"", ""18135"": ""0.07""}","Jay|Randolph","18075|18135","FALSE","FALSE","America/Indiana/Indianapolis"
-"47373","40.33676","-85.15582","Redkey","IN","Indiana","TRUE","","2404","30.8","18075","Jay","{""18075"": ""91.82"", ""18135"": ""8.18""}","Jay|Randolph","18075|18135","FALSE","FALSE","America/Indiana/Indianapolis"
-"47374","39.83163","-84.88909","Richmond","IN","Indiana","TRUE","","45571","149.8","18177","Wayne","{""18177"": ""99.97"", ""18161"": ""0.03""}","Wayne|Union","18177|18161","FALSE","FALSE","America/Indiana/Indianapolis"
-"47380","40.28679","-85.03009","Ridgeville","IN","Indiana","TRUE","","1476","9.4","18135","Randolph","{""18135"": ""93.91"", ""18075"": ""6.09""}","Randolph|Jay","18135|18075","FALSE","FALSE","America/Indiana/Indianapolis"
-"47381","40.38177","-84.86689","Salamonia","IN","Indiana","TRUE","","122","157.1","18075","Jay","{""18075"": ""100""}","Jay","18075","FALSE","FALSE","America/Indiana/Indianapolis"
-"47382","40.23637","-84.91748","Saratoga","IN","Indiana","TRUE","","255","630.5","18135","Randolph","{""18135"": ""100""}","Randolph","18135","FALSE","FALSE","America/Indiana/Indianapolis"
-"47383","40.14794","-85.26244","Selma","IN","Indiana","TRUE","","3133","37.0","18035","Delaware","{""18035"": ""100""}","Delaware","18035","FALSE","FALSE","America/Indiana/Indianapolis"
-"47384","39.91453","-85.55438","Shirley","IN","Indiana","TRUE","","2044","24.1","18065","Henry","{""18065"": ""54.85"", ""18059"": ""45.15""}","Henry|Hancock","18065|18059","FALSE","FALSE","America/Indiana/Indianapolis"
-"47385","39.83248","-85.4465","Spiceland","IN","Indiana","TRUE","","1277","33.1","18065","Henry","{""18065"": ""100""}","Henry","18065","FALSE","FALSE","America/Indiana/Indianapolis"
-"47386","40.05272","-85.3833","Springport","IN","Indiana","TRUE","","1206","26.2","18065","Henry","{""18065"": ""100""}","Henry","18065","FALSE","FALSE","America/Indiana/Indianapolis"
-"47387","39.83539","-85.29404","Straughn","IN","Indiana","TRUE","","730","17.2","18065","Henry","{""18065"": ""100""}","Henry","18065","FALSE","FALSE","America/Indiana/Indianapolis"
-"47388","40.00489","-85.44307","Sulphur Springs","IN","Indiana","TRUE","","335","447.4","18065","Henry","{""18065"": ""100""}","Henry","18065","FALSE","FALSE","America/Indiana/Indianapolis"
-"47390","40.20611","-84.84719","Union City","IN","Indiana","TRUE","","4960","24.4","18135","Randolph","{""18135"": ""98.15"", ""18075"": ""1.85""}","Randolph|Jay","18135|18075","FALSE","FALSE","America/Indiana/Indianapolis"
-"47393","39.96395","-85.00188","Williamsburg","IN","Indiana","TRUE","","1825","18.9","18177","Wayne","{""18177"": ""93.08"", ""18135"": ""6.92""}","Wayne|Randolph","18177|18135","FALSE","FALSE","America/Indiana/Indianapolis"
-"47394","40.16903","-84.98723","Winchester","IN","Indiana","TRUE","","8334","26.6","18135","Randolph","{""18135"": ""100""}","Randolph","18135","FALSE","FALSE","America/Indiana/Indianapolis"
-"47396","40.18874","-85.51634","Yorktown","IN","Indiana","TRUE","","6903","83.6","18035","Delaware","{""18035"": ""100""}","Delaware","18035","FALSE","FALSE","America/Indiana/Indianapolis"
-"47401","39.08592","-86.45156","Bloomington","IN","Indiana","TRUE","","43279","201.5","18105","Monroe","{""18105"": ""99.9"", ""18013"": ""0.1""}","Monroe|Brown","18105|18013","FALSE","FALSE","America/Indiana/Indianapolis"
-"47403","39.08488","-86.6113","Bloomington","IN","Indiana","TRUE","","33505","149.6","18105","Monroe","{""18105"": ""99.28"", ""18055"": ""0.72""}","Monroe|Greene","18105|18055","FALSE","FALSE","America/Indiana/Indianapolis"
-"47404","39.21963","-86.58968","Bloomington","IN","Indiana","TRUE","","23832","179.4","18105","Monroe","{""18105"": ""99.48"", ""18119"": ""0.52""}","Monroe|Owen","18105|18119","FALSE","FALSE","America/Indiana/Indianapolis"
-"47405","39.16817","-86.5185","Bloomington","IN","Indiana","TRUE","","3697","3036.5","18105","Monroe","{""18105"": ""100""}","Monroe","18105","FALSE","FALSE","America/Indiana/Indianapolis"
-"47406","39.17777","-86.51543","Bloomington","IN","Indiana","TRUE","","3945","6861.7","18105","Monroe","{""18105"": ""100""}","Monroe","18105","FALSE","FALSE","America/Indiana/Indianapolis"
-"47408","39.22993","-86.46447","Bloomington","IN","Indiana","TRUE","","25804","150.0","18105","Monroe","{""18105"": ""100""}","Monroe","18105","FALSE","FALSE","America/Indiana/Indianapolis"
-"47420","38.91316","-86.54891","Avoca","IN","Indiana","TRUE","","439","756.5","18093","Lawrence","{""18093"": ""100""}","Lawrence","18093","FALSE","FALSE","America/Indiana/Indianapolis"
-"47421","38.86267","-86.45106","Bedford","IN","Indiana","TRUE","","27417","57.9","18093","Lawrence","{""18093"": ""100""}","Lawrence","18093","FALSE","FALSE","America/Indiana/Indianapolis"
-"47424","39.02176","-86.87338","Bloomfield","IN","Indiana","TRUE","","8965","18.8","18055","Greene","{""18055"": ""100""}","Greene","18055","FALSE","FALSE","America/Indiana/Indianapolis"
-"47427","39.2393","-87.01498","Coal City","IN","Indiana","TRUE","","662","4.8","18119","Owen","{""18119"": ""90.03"", ""18021"": ""9.97""}","Owen|Clay","18119|18021","FALSE","FALSE","America/Indiana/Indianapolis"
-"47429","39.27332","-86.61593","Ellettsville","IN","Indiana","TRUE","","9269","145.2","18105","Monroe","{""18105"": ""100""}","Monroe","18105","FALSE","FALSE","America/Indiana/Indianapolis"
-"47431","39.23883","-86.90057","Freedom","IN","Indiana","TRUE","","1584","16.5","18119","Owen","{""18119"": ""100""}","Owen","18119","FALSE","FALSE","America/Indiana/Indianapolis"
-"47432","38.48988","-86.64364","French Lick","IN","Indiana","TRUE","","4386","20.5","18117","Orange","{""18117"": ""87.46"", ""18037"": ""9.12"", ""18101"": ""3.42""}","Orange|Dubois|Martin","18117|18037|18101","FALSE","FALSE","America/Indiana/Indianapolis"
-"47433","39.3559","-86.65253","Gosport","IN","Indiana","TRUE","","4039","19.3","18119","Owen","{""18119"": ""63.33"", ""18105"": ""27.78"", ""18109"": ""8.89""}","Owen|Monroe|Morgan","18119|18105|18109","FALSE","FALSE","America/Indiana/Indianapolis"
-"47434","39.01188","-86.54723","Harrodsburg","IN","Indiana","TRUE","","0","0.0","18105","Monroe","{""18105"": ""100""}","Monroe","18105","FALSE","FALSE","America/Indiana/Indianapolis"
-"47436","38.95429","-86.39413","Heltonville","IN","Indiana","TRUE","","1379","11.6","18093","Lawrence","{""18093"": ""80.4"", ""18105"": ""19.6""}","Lawrence|Monroe","18093|18105","FALSE","FALSE","America/Indiana/Indianapolis"
-"47437","38.71466","-86.67704","Huron","IN","Indiana","TRUE","","155","69.8","18093","Lawrence","{""18093"": ""100""}","Lawrence","18093","FALSE","FALSE","America/Indiana/Indianapolis"
-"47438","39.15935","-87.18853","Jasonville","IN","Indiana","TRUE","","4475","29.1","18055","Greene","{""18055"": ""72.51"", ""18021"": ""24.2"", ""18153"": ""3.29""}","Greene|Clay|Sullivan","18055|18021|18153","FALSE","FALSE","America/Indiana/Indianapolis"
-"47441","39.04328","-87.16595","Linton","IN","Indiana","TRUE","","9153","52.7","18055","Greene","{""18055"": ""100""}","Greene","18055","FALSE","FALSE","America/Indiana/Indianapolis"
-"47443","38.95976","-87.09107","Lyons","IN","Indiana","TRUE","","1275","11.1","18055","Greene","{""18055"": ""100""}","Greene","18055","FALSE","FALSE","America/Indiana/Indianapolis"
-"47446","38.73824","-86.51377","Mitchell","IN","Indiana","TRUE","","10393","33.3","18093","Lawrence","{""18093"": ""99.15"", ""18101"": ""0.85""}","Lawrence|Martin","18093|18101","FALSE","FALSE","America/Indiana/Indianapolis"
-"47448","39.17381","-86.24241","Nashville","IN","Indiana","TRUE","","7261","14.2","18013","Brown","{""18013"": ""99.33"", ""18105"": ""0.67""}","Brown|Monroe","18013|18105","FALSE","FALSE","America/Indiana/Indianapolis"
-"47449","38.92668","-87.00277","Newberry","IN","Indiana","TRUE","","400","7.9","18055","Greene","{""18055"": ""100""}","Greene","18055","FALSE","FALSE","America/Indiana/Indianapolis"
-"47451","38.89285","-86.52351","Oolitic","IN","Indiana","TRUE","","1111","231.0","18093","Lawrence","{""18093"": ""100""}","Lawrence","18093","FALSE","FALSE","America/Indiana/Indianapolis"
-"47452","38.64141","-86.42254","Orleans","IN","Indiana","TRUE","","5360","20.3","18117","Orange","{""18117"": ""92.55"", ""18093"": ""7.45""}","Orange|Lawrence","18117|18093","FALSE","FALSE","America/Indiana/Indianapolis"
-"47453","38.92528","-86.7742","Owensburg","IN","Indiana","TRUE","","683","21.1","18055","Greene","{""18055"": ""100""}","Greene","18055","FALSE","FALSE","America/Indiana/Indianapolis"
-"47454","38.51759","-86.45591","Paoli","IN","Indiana","TRUE","","7046","21.5","18117","Orange","{""18117"": ""100""}","Orange","18117","FALSE","FALSE","America/Indiana/Indianapolis"
-"47455","39.31654","-86.95619","Patricksburg","IN","Indiana","TRUE","","76","52.3","18119","Owen","{""18119"": ""100""}","Owen","18119","FALSE","FALSE","America/Indiana/Indianapolis"
-"47456","39.45989","-86.70434","Quincy","IN","Indiana","TRUE","","1352","19.9","18119","Owen","{""18119"": ""61.58"", ""18109"": ""31.42"", ""18133"": ""7""}","Owen|Morgan|Putnam","18119|18109|18133","FALSE","FALSE","America/Indiana/Indianapolis"
-"47457","38.90909","-86.90472","Scotland","IN","Indiana","TRUE","","192","128.6","18055","Greene","{""18055"": ""100""}","Greene","18055","FALSE","FALSE","America/Indiana/Indianapolis"
-"47458","39.07034","-86.50724","Smithville","IN","Indiana","TRUE","","58","1496.0","18105","Monroe","{""18105"": ""100""}","Monroe","18105","FALSE","FALSE","America/Indiana/Indianapolis"
-"47459","39.11278","-86.74958","Solsberry","IN","Indiana","TRUE","","3597","23.8","18055","Greene","{""18055"": ""93.28"", ""18119"": ""6.72""}","Greene|Owen","18055|18119","FALSE","FALSE","America/Indiana/Indianapolis"
-"47460","39.28379","-86.79022","Spencer","IN","Indiana","TRUE","","10917","28.0","18119","Owen","{""18119"": ""97.37"", ""18105"": ""2.21"", ""18055"": ""0.42""}","Owen|Monroe|Greene","18119|18105|18055","FALSE","FALSE","America/Indiana/Indianapolis"
-"47462","38.95668","-86.64716","Springville","IN","Indiana","TRUE","","4812","24.5","18093","Lawrence","{""18093"": ""66.84"", ""18055"": ""26.93"", ""18105"": ""6.22""}","Lawrence|Greene|Monroe","18093|18055|18105","FALSE","FALSE","America/Indiana/Indianapolis"
-"47464","39.29982","-86.64993","Stinesville","IN","Indiana","TRUE","","212","745.7","18105","Monroe","{""18105"": ""100""}","Monroe","18105","FALSE","FALSE","America/Indiana/Indianapolis"
-"47465","39.04648","-87.04078","Switz City","IN","Indiana","TRUE","","520","8.4","18055","Greene","{""18055"": ""100""}","Greene","18055","FALSE","FALSE","America/Indiana/Indianapolis"
-"47467","38.7681","-86.34444","Tunnelton","IN","Indiana","TRUE","","167","1167.5","18093","Lawrence","{""18093"": ""100""}","Lawrence","18093","FALSE","FALSE","America/Indiana/Indianapolis"
-"47468","39.27287","-86.40299","Unionville","IN","Indiana","TRUE","","1510","22.1","18105","Monroe","{""18105"": ""77.76"", ""18013"": ""22.24""}","Monroe|Brown","18105|18013","FALSE","FALSE","America/Indiana/Indianapolis"
-"47469","38.61775","-86.61281","West Baden Springs","IN","Indiana","TRUE","","1828","11.3","18117","Orange","{""18117"": ""100""}","Orange","18117","FALSE","FALSE","America/Indiana/Indianapolis"
-"47470","38.81504","-86.64717","Williams","IN","Indiana","TRUE","","1580","13.2","18093","Lawrence","{""18093"": ""90.72"", ""18101"": ""9.28""}","Lawrence|Martin","18093|18101","FALSE","FALSE","America/Indiana/Indianapolis"
-"47471","39.1417","-87.00228","Worthington","IN","Indiana","TRUE","","2746","15.5","18055","Greene","{""18055"": ""87.28"", ""18119"": ""12.72""}","Greene|Owen","18055|18119","FALSE","FALSE","America/Indiana/Indianapolis"
-"47501","38.6624","-87.1724","Washington","IN","Indiana","TRUE","","17882","47.2","18027","Daviess","{""18027"": ""100""}","Daviess","18027","FALSE","FALSE","America/Indiana/Vincennes"
-"47512","38.78317","-87.31779","Bicknell","IN","Indiana","TRUE","","4095","31.7","18083","Knox","{""18083"": ""100""}","Knox","18083","FALSE","FALSE","America/Indiana/Vincennes"
-"47513","38.30612","-86.70315","Birdseye","IN","Indiana","TRUE","","2222","14.5","18037","Dubois","{""18037"": ""79.3"", ""18025"": ""18.25"", ""18123"": ""2.44""}","Dubois|Crawford|Perry","18037|18025|18123","FALSE","FALSE","America/Indiana/Vincennes"
-"47514","38.15621","-86.58619","Branchville","IN","Indiana","TRUE","","1556","136.6","18123","Perry","{""18123"": ""100""}","Perry","18123","FALSE","FALSE","America/Indiana/Tell_City"
-"47515","38.18399","-86.70629","Bristow","IN","Indiana","TRUE","","880","6.1","18123","Perry","{""18123"": ""100""}","Perry","18123","FALSE","FALSE","America/Indiana/Tell_City"
-"47516","38.76734","-87.4194","Bruceville","IN","Indiana","TRUE","","1100","14.3","18083","Knox","{""18083"": ""100""}","Knox","18083","FALSE","FALSE","America/Indiana/Vincennes"
-"47519","38.60321","-86.98644","Cannelburg","IN","Indiana","TRUE","","847","16.8","18027","Daviess","{""18027"": ""100""}","Daviess","18027","FALSE","FALSE","America/Indiana/Vincennes"
-"47520","37.98606","-86.59333","Cannelton","IN","Indiana","TRUE","","2786","13.2","18123","Perry","{""18123"": ""100""}","Perry","18123","FALSE","FALSE","America/Indiana/Tell_City"
-"47521","38.39662","-86.72827","Celestine","IN","Indiana","TRUE","","692","14.2","18037","Dubois","{""18037"": ""100""}","Dubois","18037","FALSE","FALSE","America/Indiana/Vincennes"
-"47522","38.88884","-86.83637","Crane","IN","Indiana","TRUE","","437","20.0","18101","Martin","{""18101"": ""100""}","Martin","18101","FALSE","FALSE","America/Indiana/Vincennes"
-"47523","38.17218","-87.02768","Dale","IN","Indiana","TRUE","","3346","19.7","18147","Spencer","{""18147"": ""77.29"", ""18173"": ""22.71""}","Spencer|Warrick","18147|18173","FALSE","FALSE","America/Chicago"
-"47524","38.4866","-87.61272","Decker","IN","Indiana","TRUE","","612","4.6","18083","Knox","{""18083"": ""100""}","Knox","18083","FALSE","FALSE","America/Indiana/Vincennes"
-"47525","38.03115","-86.56374","Derby","IN","Indiana","TRUE","","281","3.8","18123","Perry","{""18123"": ""100""}","Perry","18123","FALSE","FALSE","America/Indiana/Tell_City"
-"47527","38.47214","-86.77973","Dubois","IN","Indiana","TRUE","","1935","13.9","18037","Dubois","{""18037"": ""99.31"", ""18117"": ""0.69""}","Dubois|Orange","18037|18117","FALSE","FALSE","America/Indiana/Vincennes"
-"47528","38.83787","-87.25692","Edwardsport","IN","Indiana","TRUE","","504","10.4","18083","Knox","{""18083"": ""100""}","Knox","18083","FALSE","FALSE","America/Indiana/Vincennes"
-"47529","38.86025","-87.07992","Elnora","IN","Indiana","TRUE","","1173","14.3","18027","Daviess","{""18027"": ""97.02"", ""18055"": ""2.98""}","Daviess|Greene","18027|18055","FALSE","FALSE","America/Indiana/Vincennes"
-"47531","38.03898","-86.85225","Evanston","IN","Indiana","TRUE","","945","9.9","18147","Spencer","{""18147"": ""100""}","Spencer","18147","FALSE","FALSE","America/Chicago"
-"47532","38.22118","-86.86049","Ferdinand","IN","Indiana","TRUE","","4358","24.1","18037","Dubois","{""18037"": ""87.42"", ""18147"": ""11.67"", ""18123"": ""0.91""}","Dubois|Spencer|Perry","18037|18147|18123","FALSE","FALSE","America/Indiana/Vincennes"
-"47535","38.87234","-87.30761","Freelandville","IN","Indiana","TRUE","","758","83.6","18083","Knox","{""18083"": ""100""}","Knox","18083","FALSE","FALSE","America/Indiana/Vincennes"
-"47536","38.11228","-86.83653","Fulda","IN","Indiana","TRUE","","0","0.0","18147","Spencer","{""18147"": ""100""}","Spencer","18147","FALSE","FALSE","America/Chicago"
-"47537","38.10582","-87.07233","Gentryville","IN","Indiana","TRUE","","896","21.7","18147","Spencer","{""18147"": ""73.37"", ""18173"": ""26.63""}","Spencer|Warrick","18147|18173","FALSE","FALSE","America/Chicago"
-"47541","38.23611","-87.04441","Holland","IN","Indiana","TRUE","","1196","23.1","18037","Dubois","{""18037"": ""96.57"", ""18173"": ""2.53"", ""18147"": ""0.9""}","Dubois|Warrick|Spencer","18037|18173|18147","FALSE","FALSE","America/Indiana/Vincennes"
-"47542","38.29668","-86.96932","Huntingburg","IN","Indiana","TRUE","","10061","47.7","18037","Dubois","{""18037"": ""98.34"", ""18125"": ""1.66""}","Dubois|Pike","18037|18125","FALSE","FALSE","America/Indiana/Vincennes"
-"47546","38.4195","-86.9358","Jasper","IN","Indiana","TRUE","","21538","67.2","18037","Dubois","{""18037"": ""100""}","Dubois","18037","FALSE","FALSE","America/Indiana/Vincennes"
-"47550","38.06463","-86.92632","Lamar","IN","Indiana","TRUE","","561","6.2","18147","Spencer","{""18147"": ""100""}","Spencer","18147","FALSE","FALSE","America/Chicago"
-"47551","38.12335","-86.56237","Leopold","IN","Indiana","TRUE","","914","11.0","18123","Perry","{""18123"": ""100""}","Perry","18123","FALSE","FALSE","America/Indiana/Tell_City"
-"47552","38.11406","-86.99819","Lincoln City","IN","Indiana","TRUE","","270","20.2","18147","Spencer","{""18147"": ""100""}","Spencer","18147","FALSE","FALSE","America/Chicago"
-"47553","38.65257","-86.91012","Loogootee","IN","Indiana","TRUE","","8614","23.9","18101","Martin","{""18101"": ""67.84"", ""18027"": ""32.16""}","Martin|Daviess","18101|18027","FALSE","FALSE","America/Indiana/Vincennes"
-"47557","38.57478","-87.33777","Monroe City","IN","Indiana","TRUE","","1586","11.2","18083","Knox","{""18083"": ""100""}","Knox","18083","FALSE","FALSE","America/Indiana/Vincennes"
-"47558","38.64343","-87.04095","Montgomery","IN","Indiana","TRUE","","4632","20.7","18027","Daviess","{""18027"": ""100""}","Daviess","18027","FALSE","FALSE","America/Indiana/Vincennes"
-"47561","38.85911","-87.43569","Oaktown","IN","Indiana","TRUE","","1650","8.9","18083","Knox","{""18083"": ""98.3"", ""18153"": ""1.7""}","Knox|Sullivan","18083|18153","FALSE","FALSE","America/Indiana/Vincennes"
-"47562","38.83541","-86.98378","Odon","IN","Indiana","TRUE","","4755","27.8","18027","Daviess","{""18027"": ""99.12"", ""18101"": ""0.88""}","Daviess|Martin","18027|18101","FALSE","FALSE","America/Indiana/Vincennes"
-"47564","38.48247","-87.09414","Otwell","IN","Indiana","TRUE","","1224","12.8","18125","Pike","{""18125"": ""89.87"", ""18037"": ""10.13""}","Pike|Dubois","18125|18037","FALSE","FALSE","America/Indiana/Vincennes"
-"47567","38.46997","-87.30424","Petersburg","IN","Indiana","TRUE","","6116","20.6","18125","Pike","{""18125"": ""100""}","Pike","18125","FALSE","FALSE","America/Indiana/Petersburg"
-"47568","38.79285","-87.13419","Plainville","IN","Indiana","TRUE","","829","11.6","18027","Daviess","{""18027"": ""100""}","Daviess","18027","FALSE","FALSE","America/Indiana/Vincennes"
-"47574","37.95313","-86.55187","Rome","IN","Indiana","TRUE","","213","5.7","18123","Perry","{""18123"": ""100""}","Perry","18123","FALSE","FALSE","America/Indiana/Tell_City"
-"47575","38.32153","-86.81057","Saint Anthony","IN","Indiana","TRUE","","955","17.4","18037","Dubois","{""18037"": ""100""}","Dubois","18037","FALSE","FALSE","America/Indiana/Vincennes"
-"47576","38.18343","-86.60584","Saint Croix","IN","Indiana","TRUE","","341","6.0","18123","Perry","{""18123"": ""100""}","Perry","18123","FALSE","FALSE","America/Indiana/Tell_City"
-"47577","38.15219","-86.80675","Saint Meinrad","IN","Indiana","TRUE","","1211","18.5","18147","Spencer","{""18147"": ""88.54"", ""18123"": ""11.46""}","Spencer|Perry","18147|18123","FALSE","FALSE","America/Chicago"
-"47578","38.90183","-87.19851","Sandborn","IN","Indiana","TRUE","","710","5.5","18083","Knox","{""18083"": ""74.1"", ""18055"": ""25.9""}","Knox|Greene","18083|18055","FALSE","FALSE","America/Indiana/Vincennes"
-"47579","38.11405","-86.91852","Santa Claus","IN","Indiana","TRUE","","2636","87.8","18147","Spencer","{""18147"": ""100""}","Spencer","18147","FALSE","FALSE","America/Chicago"
-"47580","38.35631","-86.76806","Schnellville","IN","Indiana","TRUE","","406","31.3","18037","Dubois","{""18037"": ""100""}","Dubois","18037","FALSE","FALSE","America/Indiana/Vincennes"
-"47581","38.66118","-86.76792","Shoals","IN","Indiana","TRUE","","3721","10.1","18101","Martin","{""18101"": ""100""}","Martin","18101","FALSE","FALSE","America/Indiana/Vincennes"
-"47584","38.25486","-87.25848","Spurgeon","IN","Indiana","TRUE","","139","364.5","18125","Pike","{""18125"": ""100""}","Pike","18125","FALSE","FALSE","America/Indiana/Petersburg"
-"47585","38.27092","-87.14807","Stendal","IN","Indiana","TRUE","","800","8.7","18125","Pike","{""18125"": ""100""}","Pike","18125","FALSE","FALSE","America/Indiana/Petersburg"
-"47586","38.03704","-86.69933","Tell City","IN","Indiana","TRUE","","11022","45.1","18123","Perry","{""18123"": ""100""}","Perry","18123","FALSE","FALSE","America/Indiana/Tell_City"
-"47588","38.07041","-86.77929","Troy","IN","Indiana","TRUE","","615","14.6","18123","Perry","{""18123"": ""71.35"", ""18147"": ""28.65""}","Perry|Spencer","18123|18147","FALSE","FALSE","America/Indiana/Tell_City"
-"47590","38.35964","-87.10423","Velpen","IN","Indiana","TRUE","","413","4.0","18125","Pike","{""18125"": ""85.41"", ""18037"": ""14.59""}","Pike|Dubois","18125|18037","FALSE","FALSE","America/Indiana/Petersburg"
-"47591","38.62838","-87.5041","Vincennes","IN","Indiana","TRUE","","25370","60.6","18083","Knox","{""18083"": ""100""}","Knox","18083","FALSE","FALSE","America/Indiana/Vincennes"
-"47596","38.86651","-87.2277","Westphalia","IN","Indiana","TRUE","","71","13.3","18083","Knox","{""18083"": ""100""}","Knox","18083","FALSE","FALSE","America/Indiana/Vincennes"
-"47597","38.65498","-87.29957","Wheatland","IN","Indiana","TRUE","","904","7.9","18083","Knox","{""18083"": ""100""}","Knox","18083","FALSE","FALSE","America/Indiana/Vincennes"
-"47598","38.38799","-87.21356","Winslow","IN","Indiana","TRUE","","3058","16.7","18125","Pike","{""18125"": ""100""}","Pike","18125","FALSE","FALSE","America/Indiana/Petersburg"
-"47601","38.05209","-87.2553","Boonville","IN","Indiana","TRUE","","13854","42.9","18173","Warrick","{""18173"": ""99.14"", ""18147"": ""0.86""}","Warrick|Spencer","18173|18147","FALSE","FALSE","America/Chicago"
-"47610","38.05726","-87.40168","Chandler","IN","Indiana","TRUE","","5444","58.9","18173","Warrick","{""18173"": ""100""}","Warrick","18173","FALSE","FALSE","America/Chicago"
-"47611","38.02795","-87.05342","Chrisney","IN","Indiana","TRUE","","1489","14.8","18147","Spencer","{""18147"": ""100""}","Spencer","18147","FALSE","FALSE","America/Chicago"
-"47612","38.19303","-87.69924","Cynthiana","IN","Indiana","TRUE","","715","17.3","18129","Posey","{""18129"": ""88.97"", ""18051"": ""11.03""}","Posey|Gibson","18129|18051","FALSE","FALSE","America/Chicago"
-"47613","38.15751","-87.41729","Elberfeld","IN","Indiana","TRUE","","3224","23.5","18173","Warrick","{""18173"": ""86.08"", ""18051"": ""13.92""}","Warrick|Gibson","18173|18051","FALSE","FALSE","America/Chicago"
-"47615","37.97103","-86.95901","Grandview","IN","Indiana","TRUE","","1832","19.7","18147","Spencer","{""18147"": ""100""}","Spencer","18147","FALSE","FALSE","America/Chicago"
-"47616","38.23664","-87.89822","Griffin","IN","Indiana","TRUE","","265","2.4","18129","Posey","{""18129"": ""92.86"", ""18051"": ""7.14""}","Posey|Gibson","18129|18051","FALSE","FALSE","America/Chicago"
-"47619","38.1913","-87.29806","Lynnville","IN","Indiana","TRUE","","1753","14.0","18173","Warrick","{""18173"": ""92.63"", ""18051"": ""3.89"", ""18125"": ""3.48""}","Warrick|Gibson|Pike","18173|18051|18125","FALSE","FALSE","America/Chicago"
-"47620","37.93261","-87.90612","Mount Vernon","IN","Indiana","TRUE","","13129","24.4","18129","Posey","{""18129"": ""100""}","Posey","18129","FALSE","FALSE","America/Chicago"
-"47630","37.95542","-87.35553","Newburgh","IN","Indiana","TRUE","","36182","299.1","18173","Warrick","{""18173"": ""100""}","Warrick","18173","FALSE","FALSE","America/Chicago"
-"47631","38.10123","-87.90994","New Harmony","IN","Indiana","TRUE","","2217","14.2","18129","Posey","{""18129"": ""100""}","Posey","18129","FALSE","FALSE","America/Chicago"
-"47633","38.17263","-87.78918","Poseyville","IN","Indiana","TRUE","","2384","14.8","18129","Posey","{""18129"": ""92.33"", ""18051"": ""7.2"", ""18163"": ""0.47""}","Posey|Gibson|Vanderburgh","18129|18051|18163","FALSE","FALSE","America/Chicago"
-"47634","37.93768","-87.18335","Richland","IN","Indiana","TRUE","","2358","18.0","18147","Spencer","{""18147"": ""100""}","Spencer","18147","FALSE","FALSE","America/Chicago"
-"47635","37.88622","-87.10551","Rockport","IN","Indiana","TRUE","","5432","24.7","18147","Spencer","{""18147"": ""100""}","Spencer","18147","FALSE","FALSE","America/Chicago"
-"47637","38.13444","-87.14952","Tennyson","IN","Indiana","TRUE","","1294","8.6","18173","Warrick","{""18173"": ""90.11"", ""18147"": ""9.89""}","Warrick|Spencer","18173|18147","FALSE","FALSE","America/Chicago"
-"47638","38.07144","-87.77364","Wadesville","IN","Indiana","TRUE","","3514","27.6","18129","Posey","{""18129"": ""100""}","Posey","18129","FALSE","FALSE","America/Chicago"
-"47639","38.17983","-87.575","Haubstadt","IN","Indiana","TRUE","","4243","38.1","18051","Gibson","{""18051"": ""93.04"", ""18163"": ""6.96""}","Gibson|Vanderburgh","18051|18163","FALSE","FALSE","America/Chicago"
-"47640","38.47765","-87.49341","Hazleton","IN","Indiana","TRUE","","1099","11.0","18051","Gibson","{""18051"": ""77.32"", ""18125"": ""22.68""}","Gibson|Pike","18051|18125","FALSE","FALSE","America/Indiana/Vincennes"
-"47648","38.24636","-87.55152","Fort Branch","IN","Indiana","TRUE","","4219","30.4","18051","Gibson","{""18051"": ""100""}","Gibson","18051","FALSE","FALSE","America/Chicago"
-"47649","38.35216","-87.44734","Francisco","IN","Indiana","TRUE","","1499","13.5","18051","Gibson","{""18051"": ""100""}","Gibson","18051","FALSE","FALSE","America/Chicago"
-"47654","38.24903","-87.3925","Mackey","IN","Indiana","TRUE","","92","333.9","18051","Gibson","{""18051"": ""100""}","Gibson","18051","FALSE","FALSE","America/Chicago"
-"47660","38.29471","-87.32513","Oakland City","IN","Indiana","TRUE","","4868","21.0","18051","Gibson","{""18051"": ""92.6"", ""18125"": ""6.99"", ""18173"": ""0.41""}","Gibson|Pike|Warrick","18051|18125|18173","FALSE","FALSE","America/Indiana/Petersburg"
-"47665","38.27881","-87.72268","Owensville","IN","Indiana","TRUE","","3746","20.5","18051","Gibson","{""18051"": ""100""}","Gibson","18051","FALSE","FALSE","America/Chicago"
-"47666","38.41898","-87.59994","Patoka","IN","Indiana","TRUE","","1813","14.2","18051","Gibson","{""18051"": ""100""}","Gibson","18051","FALSE","FALSE","America/Chicago"
-"47670","38.34529","-87.57539","Princeton","IN","Indiana","TRUE","","12048","58.4","18051","Gibson","{""18051"": ""100""}","Gibson","18051","FALSE","FALSE","America/Chicago"
-"47683","38.27618","-87.37737","Somerville","IN","Indiana","TRUE","","235","492.6","18051","Gibson","{""18051"": ""100""}","Gibson","18051","FALSE","FALSE","America/Chicago"
-"47708","37.97445","-87.57379","Evansville","IN","Indiana","TRUE","","445","310.0","18163","Vanderburgh","{""18163"": ""100""}","Vanderburgh","18163","FALSE","FALSE","America/Chicago"
-"47710","38.02559","-87.57598","Evansville","IN","Indiana","TRUE","","18869","828.4","18163","Vanderburgh","{""18163"": ""100""}","Vanderburgh","18163","FALSE","FALSE","America/Chicago"
-"47711","38.01537","-87.53589","Evansville","IN","Indiana","TRUE","","32612","776.1","18163","Vanderburgh","{""18163"": ""100""}","Vanderburgh","18163","FALSE","FALSE","America/Chicago"
-"47712","37.92866","-87.66007","Evansville","IN","Indiana","TRUE","","26764","163.0","18163","Vanderburgh","{""18163"": ""86.88"", ""18129"": ""13.12""}","Vanderburgh|Posey","18163|18129","FALSE","FALSE","America/Chicago"
-"47713","37.954","-87.55959","Evansville","IN","Indiana","TRUE","","10108","1013.7","18163","Vanderburgh","{""18163"": ""100""}","Vanderburgh","18163","FALSE","FALSE","America/Chicago"
-"47714","37.95755","-87.52112","Evansville","IN","Indiana","TRUE","","34447","1665.8","18163","Vanderburgh","{""18163"": ""100""}","Vanderburgh","18163","FALSE","FALSE","America/Chicago"
-"47715","37.96998","-87.48426","Evansville","IN","Indiana","TRUE","","26196","435.6","18163","Vanderburgh","{""18163"": ""100""}","Vanderburgh","18163","FALSE","FALSE","America/Chicago"
-"47720","38.06052","-87.6425","Evansville","IN","Indiana","TRUE","","17763","123.5","18163","Vanderburgh","{""18163"": ""100""}","Vanderburgh","18163","FALSE","FALSE","America/Chicago"
-"47725","38.10708","-87.52564","Evansville","IN","Indiana","TRUE","","17326","117.3","18163","Vanderburgh","{""18163"": ""99.5"", ""18051"": ""0.45"", ""18173"": ""0.05""}","Vanderburgh|Gibson|Warrick","18163|18051|18173","FALSE","FALSE","America/Chicago"
-"47802","39.3511","-87.40744","Terre Haute","IN","Indiana","TRUE","","34894","83.3","18167","Vigo","{""18167"": ""99.95"", ""18021"": ""0.05""}","Vigo|Clay","18167|18021","FALSE","FALSE","America/Indiana/Indianapolis"
-"47803","39.46452","-87.30749","Terre Haute","IN","Indiana","TRUE","","20939","236.6","18167","Vigo","{""18167"": ""100""}","Vigo","18167","FALSE","FALSE","America/Indiana/Indianapolis"
-"47804","39.49758","-87.38966","Terre Haute","IN","Indiana","TRUE","","11781","691.6","18167","Vigo","{""18167"": ""100""}","Vigo","18167","FALSE","FALSE","America/Indiana/Indianapolis"
-"47805","39.54708","-87.32663","Terre Haute","IN","Indiana","TRUE","","12624","93.4","18167","Vigo","{""18167"": ""100""}","Vigo","18167","FALSE","FALSE","America/Indiana/Indianapolis"
-"47807","39.47061","-87.40277","Terre Haute","IN","Indiana","TRUE","","11886","1223.5","18167","Vigo","{""18167"": ""100""}","Vigo","18167","FALSE","FALSE","America/Indiana/Indianapolis"
-"47809","39.47131","-87.40998","Terre Haute","IN","Indiana","TRUE","","2516","5536.5","18167","Vigo","{""18167"": ""100""}","Vigo","18167","FALSE","FALSE","America/Indiana/Indianapolis"
-"47832","39.8779","-87.25424","Bloomingdale","IN","Indiana","TRUE","","1059","9.6","18121","Parke","{""18121"": ""100""}","Parke","18121","FALSE","FALSE","America/Indiana/Indianapolis"
-"47833","39.36","-86.97664","Bowling Green","IN","Indiana","TRUE","","761","7.9","18119","Owen","{""18119"": ""51.29"", ""18021"": ""48.71""}","Owen|Clay","18119|18021","FALSE","FALSE","America/Indiana/Indianapolis"
-"47834","39.52586","-87.12123","Brazil","IN","Indiana","TRUE","","19263","49.5","18021","Clay","{""18021"": ""94.59"", ""18167"": ""3.44"", ""18121"": ""1.97""}","Clay|Vigo|Parke","18021|18167|18121","FALSE","FALSE","America/Indiana/Indianapolis"
-"47836","39.64605","-87.17903","Bridgeton","IN","Indiana","TRUE","","0","0.0","18121","Parke","{""18121"": ""100""}","Parke","18121","FALSE","FALSE","America/Indiana/Indianapolis"
-"47837","39.63084","-87.11328","Carbon","IN","Indiana","TRUE","","1008","13.4","18021","Clay","{""18021"": ""59.71"", ""18121"": ""40.29""}","Clay|Parke","18021|18121","FALSE","FALSE","America/Indiana/Indianapolis"
-"47838","38.95545","-87.37791","Carlisle","IN","Indiana","TRUE","","3772","13.8","18153","Sullivan","{""18153"": ""100""}","Sullivan","18153","FALSE","FALSE","America/Indiana/Indianapolis"
-"47840","39.41107","-87.05825","Centerpoint","IN","Indiana","TRUE","","1831","13.3","18021","Clay","{""18021"": ""97.47"", ""18133"": ""2.53""}","Clay|Putnam","18021|18133","FALSE","FALSE","America/Indiana/Indianapolis"
-"47841","39.275","-87.11502","Clay City","IN","Indiana","TRUE","","2305","13.4","18021","Clay","{""18021"": ""99.25"", ""18119"": ""0.75""}","Clay|Owen","18021|18119","FALSE","FALSE","America/Indiana/Indianapolis"
-"47842","39.67855","-87.4636","Clinton","IN","Indiana","TRUE","","9597","51.5","18165","Vermillion","{""18165"": ""98.93"", ""18167"": ""1.07""}","Vermillion|Vigo","18165|18167","FALSE","FALSE","America/Indiana/Indianapolis"
-"47846","39.37474","-87.19767","Cory","IN","Indiana","TRUE","","532","6.5","18021","Clay","{""18021"": ""100""}","Clay","18021","FALSE","FALSE","America/Indiana/Indianapolis"
-"47847","39.82545","-87.48739","Dana","IN","Indiana","TRUE","","1187","9.4","18165","Vermillion","{""18165"": ""100""}","Vermillion","18165","FALSE","FALSE","America/Indiana/Indianapolis"
-"47848","39.03865","-87.26313","Dugger","IN","Indiana","TRUE","","1616","37.0","18153","Sullivan","{""18153"": ""92.43"", ""18055"": ""7.57""}","Sullivan|Greene","18153|18055","FALSE","FALSE","America/Indiana/Indianapolis"
-"47849","39.19363","-87.556","Fairbanks","IN","Indiana","TRUE","","502","7.4","18153","Sullivan","{""18153"": ""100""}","Sullivan","18153","FALSE","FALSE","America/Indiana/Indianapolis"
-"47850","39.24585","-87.43141","Farmersburg","IN","Indiana","TRUE","","2239","16.9","18153","Sullivan","{""18153"": ""80.58"", ""18167"": ""19.42""}","Sullivan|Vigo","18153|18167","FALSE","FALSE","America/Indiana/Indianapolis"
-"47853","39.53822","-87.07283","Harmony","IN","Indiana","TRUE","","121","1081.3","18021","Clay","{""18021"": ""100""}","Clay","18021","FALSE","FALSE","America/Indiana/Indianapolis"
-"47854","39.79856","-87.40244","Hillsdale","IN","Indiana","TRUE","","612","8.2","18165","Vermillion","{""18165"": ""100""}","Vermillion","18165","FALSE","FALSE","America/Indiana/Indianapolis"
-"47855","39.18992","-87.3041","Hymera","IN","Indiana","TRUE","","526","254.6","18153","Sullivan","{""18153"": ""100""}","Sullivan","18153","FALSE","FALSE","America/Indiana/Indianapolis"
-"47857","39.52416","-87.09111","Knightsville","IN","Indiana","TRUE","","420","315.7","18021","Clay","{""18021"": ""100""}","Clay","18021","FALSE","FALSE","America/Indiana/Indianapolis"
-"47858","39.26386","-87.23117","Lewis","IN","Indiana","TRUE","","724","8.8","18021","Clay","{""18021"": ""43.12"", ""18167"": ""28.51"", ""18153"": ""28.37""}","Clay|Vigo|Sullivan","18021|18167|18153","FALSE","FALSE","America/Indiana/Indianapolis"
-"47859","39.88661","-87.17203","Marshall","IN","Indiana","TRUE","","1027","9.6","18121","Parke","{""18121"": ""100""}","Parke","18121","FALSE","FALSE","America/Indiana/Indianapolis"
-"47860","39.72188","-87.33024","Mecca","IN","Indiana","TRUE","","425","247.0","18121","Parke","{""18121"": ""100""}","Parke","18121","FALSE","FALSE","America/Indiana/Indianapolis"
-"47861","39.06483","-87.56629","Merom","IN","Indiana","TRUE","","663","5.8","18153","Sullivan","{""18153"": ""100""}","Sullivan","18153","FALSE","FALSE","America/Indiana/Indianapolis"
-"47862","39.7705","-87.34552","Montezuma","IN","Indiana","TRUE","","1390","13.3","18121","Parke","{""18121"": ""100""}","Parke","18121","FALSE","FALSE","America/Indiana/Indianapolis"
-"47863","39.58564","-87.4549","New Goshen","IN","Indiana","TRUE","","294","134.4","18167","Vigo","{""18167"": ""100""}","Vigo","18167","FALSE","FALSE","America/Indiana/Indianapolis"
-"47865","39.02103","-87.39144","Paxton","IN","Indiana","TRUE","","55","156.1","18153","Sullivan","{""18153"": ""100""}","Sullivan","18153","FALSE","FALSE","America/Indiana/Indianapolis"
-"47866","39.28951","-87.32533","Pimento","IN","Indiana","TRUE","","613","13.3","18167","Vigo","{""18167"": ""100""}","Vigo","18167","FALSE","FALSE","America/Indiana/Indianapolis"
-"47868","39.40964","-86.89941","Poland","IN","Indiana","TRUE","","3072","20.4","18119","Owen","{""18119"": ""84.92"", ""18021"": ""11.99"", ""18133"": ""3.1""}","Owen|Clay|Putnam","18119|18021|18133","FALSE","FALSE","America/Indiana/Indianapolis"
-"47869","39.27384","-87.49671","Prairie Creek","IN","Indiana","TRUE","","124","463.6","18167","Vigo","{""18167"": ""100""}","Vigo","18167","FALSE","FALSE","America/Indiana/Indianapolis"
-"47871","39.3897","-87.29994","Riley","IN","Indiana","TRUE","","321","1500.0","18167","Vigo","{""18167"": ""100""}","Vigo","18167","FALSE","FALSE","America/Indiana/Indianapolis"
-"47872","39.75343","-87.16204","Rockville","IN","Indiana","TRUE","","8747","19.7","18121","Parke","{""18121"": ""99.84"", ""18133"": ""0.16""}","Parke|Putnam","18121|18133","FALSE","FALSE","America/Indiana/Indianapolis"
-"47874","39.62794","-87.27458","Rosedale","IN","Indiana","TRUE","","3207","18.0","18121","Parke","{""18121"": ""71.94"", ""18167"": ""23.52"", ""18021"": ""4.54""}","Parke|Vigo|Clay","18121|18167|18021","FALSE","FALSE","America/Indiana/Indianapolis"
-"47876","39.51317","-87.45964","Saint Mary Of The Woods","IN","Indiana","TRUE","","348","286.2","18167","Vigo","{""18167"": ""100""}","Vigo","18167","FALSE","FALSE","America/Indiana/Indianapolis"
-"47879","39.18916","-87.37822","Shelburn","IN","Indiana","TRUE","","3592","23.4","18153","Sullivan","{""18153"": ""100""}","Sullivan","18153","FALSE","FALSE","America/Indiana/Indianapolis"
-"47880","39.59975","-87.41885","Shepardsville","IN","Indiana","TRUE","","78","1276.7","18167","Vigo","{""18167"": ""100""}","Vigo","18167","FALSE","FALSE","America/Indiana/Indianapolis"
-"47881","39.48594","-87.19237","Staunton","IN","Indiana","TRUE","","329","321.3","18021","Clay","{""18021"": ""100""}","Clay","18021","FALSE","FALSE","America/Indiana/Indianapolis"
-"47882","39.09092","-87.41029","Sullivan","IN","Indiana","TRUE","","7731","20.8","18153","Sullivan","{""18153"": ""100""}","Sullivan","18153","FALSE","FALSE","America/Indiana/Indianapolis"
-"47884","39.61524","-87.44982","Universal","IN","Indiana","TRUE","","185","55.5","18165","Vermillion","{""18165"": ""100""}","Vermillion","18165","FALSE","FALSE","America/Indiana/Indianapolis"
-"47885","39.50955","-87.47661","West Terre Haute","IN","Indiana","TRUE","","8920","41.8","18167","Vigo","{""18167"": ""100""}","Vigo","18167","FALSE","FALSE","America/Indiana/Indianapolis"
-"47901","40.41785","-86.88992","Lafayette","IN","Indiana","TRUE","","3715","2417.2","18157","Tippecanoe","{""18157"": ""100""}","Tippecanoe","18157","FALSE","FALSE","America/Indiana/Indianapolis"
-"47904","40.43836","-86.87665","Lafayette","IN","Indiana","TRUE","","17285","1182.7","18157","Tippecanoe","{""18157"": ""100""}","Tippecanoe","18157","FALSE","FALSE","America/Indiana/Indianapolis"
-"47905","40.42039","-86.76599","Lafayette","IN","Indiana","TRUE","","41631","134.6","18157","Tippecanoe","{""18157"": ""100""}","Tippecanoe","18157","FALSE","FALSE","America/Indiana/Indianapolis"
-"47906","40.48698","-86.98647","West Lafayette","IN","Indiana","TRUE","","77702","222.1","18157","Tippecanoe","{""18157"": ""99.75"", ""18171"": ""0.15"", ""18181"": ""0.09""}","Tippecanoe|Warren|White","18157|18171|18181","FALSE","FALSE","America/Indiana/Indianapolis"
-"47907","40.42435","-86.91536","West Lafayette","IN","Indiana","TRUE","","0","0.0","18157","Tippecanoe","{""18157"": ""0""}","Tippecanoe","18157","FALSE","FALSE","America/Indiana/Indianapolis"
-"47909","40.32346","-86.90075","Lafayette","IN","Indiana","TRUE","","43291","144.5","18157","Tippecanoe","{""18157"": ""100""}","Tippecanoe","18157","FALSE","FALSE","America/Indiana/Indianapolis"
-"47916","39.98353","-87.05527","Alamo","IN","Indiana","TRUE","","43","276.8","18107","Montgomery","{""18107"": ""100""}","Montgomery","18107","FALSE","FALSE","America/Indiana/Indianapolis"
-"47917","40.46688","-87.47347","Ambia","IN","Indiana","TRUE","","492","4.8","18007","Benton","{""18007"": ""64.77"", ""18171"": ""35.23""}","Benton|Warren","18007|18171","FALSE","FALSE","America/Indiana/Indianapolis"
-"47918","40.30479","-87.20376","Attica","IN","Indiana","TRUE","","5679","15.1","18045","Fountain","{""18045"": ""78.06"", ""18171"": ""20.84"", ""18157"": ""1.11""}","Fountain|Warren|Tippecanoe","18045|18171|18157","FALSE","FALSE","America/Indiana/Indianapolis"
-"47920","40.54758","-86.82359","Battle Ground","IN","Indiana","TRUE","","2260","30.7","18157","Tippecanoe","{""18157"": ""86"", ""18181"": ""10.56"", ""18015"": ""3.44""}","Tippecanoe|White|Carroll","18157|18181|18015","FALSE","FALSE","America/Indiana/Indianapolis"
-"47921","40.47718","-87.37539","Boswell","IN","Indiana","TRUE","","1140","10.7","18007","Benton","{""18007"": ""87.76"", ""18171"": ""12.24""}","Benton|Warren","18007|18171","FALSE","FALSE","America/Indiana/Indianapolis"
-"47922","40.87657","-87.35286","Brook","IN","Indiana","TRUE","","1570","8.0","18111","Newton","{""18111"": ""96.86"", ""18073"": ""3.14""}","Newton|Jasper","18111|18073","FALSE","FALSE","America/Chicago"
-"47923","40.61137","-86.93134","Brookston","IN","Indiana","TRUE","","3220","13.6","18181","White","{""18181"": ""89.27"", ""18015"": ""10.73""}","White|Carroll","18181|18015","FALSE","FALSE","America/Indiana/Indianapolis"
-"47924","40.48792","-86.7631","Buck Creek","IN","Indiana","TRUE","","162","796.2","18157","Tippecanoe","{""18157"": ""100""}","Tippecanoe","18157","FALSE","FALSE","America/Indiana/Indianapolis"
-"47925","40.87716","-86.74713","Buffalo","IN","Indiana","TRUE","","133","109.7","18181","White","{""18181"": ""100""}","White","18181","FALSE","FALSE","America/Indiana/Indianapolis"
-"47926","40.77611","-86.59597","Burnettsville","IN","Indiana","TRUE","","1480","15.3","18181","White","{""18181"": ""71.01"", ""18015"": ""28.99""}","White|Carroll","18181|18015","FALSE","FALSE","America/Indiana/Indianapolis"
-"47928","39.93048","-87.46735","Cayuga","IN","Indiana","TRUE","","2036","18.2","18165","Vermillion","{""18165"": ""100""}","Vermillion","18165","FALSE","FALSE","America/Indiana/Indianapolis"
-"47929","40.6763","-86.91641","Chalmers","IN","Indiana","TRUE","","673","6.1","18181","White","{""18181"": ""100""}","White","18181","FALSE","FALSE","America/Indiana/Indianapolis"
-"47930","40.23714","-86.74237","Clarks Hill","IN","Indiana","TRUE","","1294","19.5","18157","Tippecanoe","{""18157"": ""97.71"", ""18107"": ""2.29""}","Tippecanoe|Montgomery","18157|18107","FALSE","FALSE","America/Indiana/Indianapolis"
-"47932","40.12919","-87.40884","Covington","IN","Indiana","TRUE","","5317","18.9","18045","Fountain","{""18045"": ""83.29"", ""18171"": ""9.5"", ""18165"": ""7.21""}","Fountain|Warren|Vermillion","18045|18171|18165","FALSE","FALSE","America/Indiana/Indianapolis"
-"47933","40.03865","-86.89671","Crawfordsville","IN","Indiana","TRUE","","27521","45.3","18107","Montgomery","{""18107"": ""99.94"", ""18011"": ""0.06""}","Montgomery|Boone","18107|18011","FALSE","FALSE","America/Indiana/Indianapolis"
-"47940","40.11759","-86.7466","Darlington","IN","Indiana","TRUE","","1739","16.4","18107","Montgomery","{""18107"": ""100""}","Montgomery","18107","FALSE","FALSE","America/Indiana/Indianapolis"
-"47941","40.3761","-86.77391","Dayton","IN","Indiana","TRUE","","1405","684.8","18157","Tippecanoe","{""18157"": ""100""}","Tippecanoe","18157","FALSE","FALSE","America/Indiana/Indianapolis"
-"47942","40.68547","-87.44579","Earl Park","IN","Indiana","TRUE","","728","5.0","18007","Benton","{""18007"": ""100""}","Benton","18007","FALSE","FALSE","America/Indiana/Indianapolis"
-"47943","41.06206","-87.27352","Fair Oaks","IN","Indiana","TRUE","","1096","6.8","18073","Jasper","{""18073"": ""75.32"", ""18111"": ""24.68""}","Jasper|Newton","18073|18111","FALSE","FALSE","America/Chicago"
-"47944","40.61422","-87.33031","Fowler","IN","Indiana","TRUE","","3402","7.1","18007","Benton","{""18007"": ""100""}","Benton","18007","FALSE","FALSE","America/Indiana/Indianapolis"
-"47946","40.98176","-86.86838","Francesville","IN","Indiana","TRUE","","2170","9.1","18131","Pulaski","{""18131"": ""93.05"", ""18073"": ""6.95""}","Pulaski|Jasper","18131|18073","FALSE","FALSE","America/Indiana/Winamac"
-"47948","40.77706","-87.28169","Goodland","IN","Indiana","TRUE","","1485","10.4","18111","Newton","{""18111"": ""85.8"", ""18073"": ""11.63"", ""18007"": ""2.58""}","Newton|Jasper|Benton","18111|18073|18007","FALSE","FALSE","America/Indiana/Indianapolis"
-"47949","40.05931","-87.13284","Hillsboro","IN","Indiana","TRUE","","1209","11.1","18045","Fountain","{""18045"": ""100""}","Fountain","18045","FALSE","FALSE","America/Indiana/Indianapolis"
-"47950","40.80244","-86.65487","Idaville","IN","Indiana","TRUE","","921","9.4","18181","White","{""18181"": ""92.65"", ""18015"": ""7.35""}","White|Carroll","18181|18015","FALSE","FALSE","America/Indiana/Indianapolis"
-"47951","40.78947","-87.44134","Kentland","IN","Indiana","TRUE","","2168","13.0","18111","Newton","{""18111"": ""100""}","Newton","18111","FALSE","FALSE","America/Chicago"
-"47952","39.96154","-87.29611","Kingman","IN","Indiana","TRUE","","2941","9.9","18045","Fountain","{""18045"": ""75.38"", ""18121"": ""24.62""}","Fountain|Parke","18045|18121","FALSE","FALSE","America/Indiana/Indianapolis"
-"47954","39.89955","-86.81523","Ladoga","IN","Indiana","TRUE","","2433","14.0","18107","Montgomery","{""18107"": ""98.06"", ""18133"": ""1.94""}","Montgomery|Putnam","18107|18133","FALSE","FALSE","America/Indiana/Indianapolis"
-"47955","40.19632","-86.86181","Linden","IN","Indiana","TRUE","","1016","15.8","18107","Montgomery","{""18107"": ""96.23"", ""18157"": ""3.77""}","Montgomery|Tippecanoe","18107|18157","FALSE","FALSE","America/Indiana/Indianapolis"
-"47957","41.08616","-86.87475","Medaryville","IN","Indiana","TRUE","","1908","12.4","18131","Pulaski","{""18131"": ""93.19"", ""18073"": ""6.81""}","Pulaski|Jasper","18131|18073","FALSE","FALSE","America/Indiana/Winamac"
-"47958","40.16432","-87.14405","Mellott","IN","Indiana","TRUE","","140","95.4","18045","Fountain","{""18045"": ""100""}","Fountain","18045","FALSE","FALSE","America/Indiana/Indianapolis"
-"47959","40.86485","-86.90152","Monon","IN","Indiana","TRUE","","2906","16.4","18181","White","{""18181"": ""97.52"", ""18073"": ""2.48""}","White|Jasper","18181|18073","FALSE","FALSE","America/Indiana/Indianapolis"
-"47960","40.78051","-86.74994","Monticello","IN","Indiana","TRUE","","14721","48.5","18181","White","{""18181"": ""86.11"", ""18015"": ""13.89""}","White|Carroll","18181|18015","FALSE","FALSE","America/Indiana/Indianapolis"
-"47963","40.9716","-87.43977","Morocco","IN","Indiana","TRUE","","2057","7.7","18111","Newton","{""18111"": ""100""}","Newton","18111","FALSE","FALSE","America/Chicago"
-"47964","40.95212","-87.29864","Mount Ayr","IN","Indiana","TRUE","","110","284.6","18111","Newton","{""18111"": ""100""}","Newton","18111","FALSE","FALSE","America/Chicago"
-"47965","39.95431","-86.92036","New Market","IN","Indiana","TRUE","","599","567.6","18107","Montgomery","{""18107"": ""100""}","Montgomery","18107","FALSE","FALSE","America/Indiana/Indianapolis"
-"47966","39.88581","-87.39706","Newport","IN","Indiana","TRUE","","359","126.8","18165","Vermillion","{""18165"": ""100""}","Vermillion","18165","FALSE","FALSE","America/Indiana/Indianapolis"
-"47967","40.19667","-87.00164","New Richmond","IN","Indiana","TRUE","","680","8.4","18107","Montgomery","{""18107"": ""90.03"", ""18157"": ""9.97""}","Montgomery|Tippecanoe","18107|18157","FALSE","FALSE","America/Indiana/Indianapolis"
-"47968","39.96142","-86.7458","New Ross","IN","Indiana","TRUE","","1030","16.3","18107","Montgomery","{""18107"": ""92.97"", ""18011"": ""7.03""}","Montgomery|Boone","18107|18011","FALSE","FALSE","America/Indiana/Indianapolis"
-"47969","40.20572","-87.14875","Newtown","IN","Indiana","TRUE","","109","234.3","18045","Fountain","{""18045"": ""100""}","Fountain","18045","FALSE","FALSE","America/Indiana/Indianapolis"
-"47970","40.47323","-87.1314","Otterbein","IN","Indiana","TRUE","","1779","11.7","18007","Benton","{""18007"": ""56.49"", ""18171"": ""24.93"", ""18157"": ""18.58""}","Benton|Warren|Tippecanoe","18007|18171|18157","FALSE","FALSE","America/Indiana/Indianapolis"
-"47971","40.53213","-87.23824","Oxford","IN","Indiana","TRUE","","1957","13.6","18007","Benton","{""18007"": ""100""}","Benton","18007","FALSE","FALSE","America/Indiana/Indianapolis"
-"47974","40.04168","-87.47336","Perrysville","IN","Indiana","TRUE","","1176","11.1","18165","Vermillion","{""18165"": ""100""}","Vermillion","18165","FALSE","FALSE","America/Indiana/Indianapolis"
-"47975","40.44912","-87.25331","Pine Village","IN","Indiana","TRUE","","664","6.6","18171","Warren","{""18171"": ""97.4"", ""18007"": ""2.6""}","Warren|Benton","18171|18007","FALSE","FALSE","America/Indiana/Indianapolis"
-"47977","40.75498","-87.15604","Remington","IN","Indiana","TRUE","","2322","10.7","18073","Jasper","{""18073"": ""89.08"", ""18007"": ""10.92""}","Jasper|Benton","18073|18007","FALSE","FALSE","America/Indiana/Indianapolis"
-"47978","40.98123","-87.11551","Rensselaer","IN","Indiana","TRUE","","11515","17.3","18073","Jasper","{""18073"": ""99.39"", ""18111"": ""0.41"", ""18181"": ""0.2""}","Jasper|Newton|White","18073|18111|18181","FALSE","FALSE","America/Chicago"
-"47980","40.75274","-86.90378","Reynolds","IN","Indiana","TRUE","","1005","7.0","18181","White","{""18181"": ""100""}","White","18181","FALSE","FALSE","America/Indiana/Indianapolis"
-"47981","40.245","-86.93044","Romney","IN","Indiana","TRUE","","1130","12.0","18157","Tippecanoe","{""18157"": ""95.05"", ""18107"": ""4.95""}","Tippecanoe|Montgomery","18157|18107","FALSE","FALSE","America/Indiana/Indianapolis"
-"47982","40.19735","-87.52696","State Line","IN","Indiana","TRUE","","173","480.0","18171","Warren","{""18171"": ""100""}","Warren","18171","FALSE","FALSE","America/Indiana/Indianapolis"
-"47983","40.27915","-86.76727","Stockwell","IN","Indiana","TRUE","","303","234.0","18157","Tippecanoe","{""18157"": ""100""}","Tippecanoe","18157","FALSE","FALSE","America/Indiana/Indianapolis"
-"47987","40.1233","-87.22674","Veedersburg","IN","Indiana","TRUE","","4074","12.7","18045","Fountain","{""18045"": ""100""}","Fountain","18045","FALSE","FALSE","America/Indiana/Indianapolis"
-"47989","39.88972","-87.05358","Waveland","IN","Indiana","TRUE","","1430","13.1","18107","Montgomery","{""18107"": ""77.6"", ""18121"": ""22.17"", ""18133"": ""0.23""}","Montgomery|Parke|Putnam","18107|18121|18133","FALSE","FALSE","America/Indiana/Indianapolis"
-"47990","40.06187","-87.05431","Waynetown","IN","Indiana","TRUE","","1964","17.6","18107","Montgomery","{""18107"": ""100""}","Montgomery","18107","FALSE","FALSE","America/Indiana/Indianapolis"
-"47991","40.28056","-87.44828","West Lebanon","IN","Indiana","TRUE","","975","12.5","18171","Warren","{""18171"": ""100""}","Warren","18171","FALSE","FALSE","America/Indiana/Indianapolis"
-"47992","40.32231","-87.05291","Westpoint","IN","Indiana","TRUE","","1357","14.4","18157","Tippecanoe","{""18157"": ""100""}","Tippecanoe","18157","FALSE","FALSE","America/Indiana/Indianapolis"
-"47993","40.31215","-87.4146","Williamsport","IN","Indiana","TRUE","","3661","10.0","18171","Warren","{""18171"": ""100""}","Warren","18171","FALSE","FALSE","America/Indiana/Indianapolis"
-"47994","40.16927","-87.06217","Wingate","IN","Indiana","TRUE","","309","8.1","18107","Montgomery","{""18107"": ""100""}","Montgomery","18107","FALSE","FALSE","America/Indiana/Indianapolis"
-"47995","40.76381","-87.03248","Wolcott","IN","Indiana","TRUE","","1670","7.8","18181","White","{""18181"": ""98.22"", ""18073"": ""1.78""}","White|Jasper","18181|18073","FALSE","FALSE","America/Indiana/Indianapolis"
-"47997","40.66769","-86.72359","Yeoman","IN","Indiana","TRUE","","134","425.0","18015","Carroll","{""18015"": ""100""}","Carroll","18015","FALSE","FALSE","America/Indiana/Indianapolis"
-"48001","42.63776","-82.5796","Algonac","MI","Michigan","TRUE","","11903","241.5","26147","St. Clair","{""26147"": ""100""}","St. Clair","26147","FALSE","FALSE","America/Detroit"
-"48002","42.93908","-82.926","Allenton","MI","Michigan","TRUE","","3224","33.5","26147","St. Clair","{""26147"": ""100""}","St. Clair","26147","FALSE","FALSE","America/Detroit"
-"48003","42.93259","-83.04065","Almont","MI","Michigan","TRUE","","6047","70.8","26087","Lapeer","{""26087"": ""100""}","Lapeer","26087","FALSE","FALSE","America/Detroit"
-"48005","42.85024","-82.9231","Armada","MI","Michigan","TRUE","","5509","58.3","26099","Macomb","{""26099"": ""100""}","Macomb","26099","FALSE","FALSE","America/Detroit"
-"48006","43.07539","-82.69647","Avoca","MI","Michigan","TRUE","","4058","21.9","26147","St. Clair","{""26147"": ""100""}","St. Clair","26147","FALSE","FALSE","America/Detroit"
-"48009","42.54421","-83.21766","Birmingham","MI","Michigan","TRUE","","21201","1623.0","26125","Oakland","{""26125"": ""100""}","Oakland","26125","FALSE","FALSE","America/Detroit"
-"48014","43.02537","-82.93086","Capac","MI","Michigan","TRUE","","4136","43.6","26147","St. Clair","{""26147"": ""98.83"", ""26087"": ""1.17""}","St. Clair|Lapeer","26147|26087","FALSE","FALSE","America/Detroit"
-"48015","42.48042","-83.0272","Center Line","MI","Michigan","TRUE","","8260","1862.7","26099","Macomb","{""26099"": ""100""}","Macomb","26099","FALSE","FALSE","America/Detroit"
-"48017","42.53669","-83.15038","Clawson","MI","Michigan","TRUE","","11910","2094.8","26125","Oakland","{""26125"": ""100""}","Oakland","26125","FALSE","FALSE","America/Detroit"
-"48021","42.46561","-82.94606","Eastpointe","MI","Michigan","TRUE","","32336","2434.1","26099","Macomb","{""26099"": ""100""}","Macomb","26099","FALSE","FALSE","America/Detroit"
-"48022","43.02828","-82.81122","Emmett","MI","Michigan","TRUE","","2605","28.5","26147","St. Clair","{""26147"": ""100""}","St. Clair","26147","FALSE","FALSE","America/Detroit"
-"48023","42.70096","-82.65923","Fair Haven","MI","Michigan","TRUE","","5094","115.5","26147","St. Clair","{""26147"": ""100""}","St. Clair","26147","FALSE","FALSE","America/Detroit"
-"48025","42.52032","-83.26737","Franklin","MI","Michigan","TRUE","","14820","711.7","26125","Oakland","{""26125"": ""100""}","Oakland","26125","FALSE","FALSE","America/Detroit"
-"48026","42.5388","-82.94964","Fraser","MI","Michigan","TRUE","","14580","1359.4","26099","Macomb","{""26099"": ""100""}","Macomb","26099","FALSE","FALSE","America/Detroit"
-"48027","42.94467","-82.68212","Goodells","MI","Michigan","TRUE","","3194","33.0","26147","St. Clair","{""26147"": ""100""}","St. Clair","26147","FALSE","FALSE","America/Detroit"
-"48028","42.5891","-82.61944","Harsens Island","MI","Michigan","TRUE","","999","21.6","26147","St. Clair","{""26147"": ""100""}","St. Clair","26147","FALSE","FALSE","America/Detroit"
-"48030","42.46192","-83.09766","Hazel Park","MI","Michigan","TRUE","","16525","2265.2","26125","Oakland","{""26125"": ""100""}","Oakland","26125","FALSE","FALSE","America/Detroit"
-"48032","43.13334","-82.59489","Jeddo","MI","Michigan","TRUE","","1875","19.4","26147","St. Clair","{""26147"": ""81.44"", ""26151"": ""18.56""}","St. Clair|Sanilac","26147|26151","FALSE","FALSE","America/Detroit"
-"48033","42.46456","-83.28869","Southfield","MI","Michigan","TRUE","","16757","721.8","26125","Oakland","{""26125"": ""100""}","Oakland","26125","FALSE","FALSE","America/Detroit"
-"48034","42.49693","-83.29111","Southfield","MI","Michigan","TRUE","","13846","1240.1","26125","Oakland","{""26125"": ""100""}","Oakland","26125","FALSE","FALSE","America/Detroit"
-"48035","42.55613","-82.90942","Clinton Township","MI","Michigan","TRUE","","35599","1563.4","26099","Macomb","{""26099"": ""100""}","Macomb","26099","FALSE","FALSE","America/Detroit"
-"48036","42.59213","-82.89995","Clinton Township","MI","Michigan","TRUE","","21353","990.4","26099","Macomb","{""26099"": ""100""}","Macomb","26099","FALSE","FALSE","America/Detroit"
-"48038","42.60546","-82.94158","Clinton Township","MI","Michigan","TRUE","","43478","1539.3","26099","Macomb","{""26099"": ""100""}","Macomb","26099","FALSE","FALSE","America/Detroit"
-"48039","42.69665","-82.55054","Marine City","MI","Michigan","TRUE","","7573","127.1","26147","St. Clair","{""26147"": ""100""}","St. Clair","26147","FALSE","FALSE","America/Detroit"
-"48040","42.90986","-82.48023","Marysville","MI","Michigan","TRUE","","9693","541.6","26147","St. Clair","{""26147"": ""100""}","St. Clair","26147","FALSE","FALSE","America/Detroit"
-"48041","42.93873","-82.80268","Memphis","MI","Michigan","TRUE","","4536","43.8","26147","St. Clair","{""26147"": ""81.41"", ""26099"": ""18.59""}","St. Clair|Macomb","26147|26099","FALSE","FALSE","America/Detroit"
-"48042","42.68677","-82.90861","Macomb","MI","Michigan","TRUE","","31485","534.4","26099","Macomb","{""26099"": ""100""}","Macomb","26099","FALSE","FALSE","America/Detroit"
-"48043","42.59781","-82.88221","Mount Clemens","MI","Michigan","TRUE","","16332","1535.6","26099","Macomb","{""26099"": ""100""}","Macomb","26099","FALSE","FALSE","America/Detroit"
-"48044","42.64991","-82.92956","Macomb","MI","Michigan","TRUE","","57745","1651.1","26099","Macomb","{""26099"": ""100""}","Macomb","26099","FALSE","FALSE","America/Detroit"
-"48045","42.59168","-82.83023","Harrison Township","MI","Michigan","TRUE","","24995","670.4","26099","Macomb","{""26099"": ""100""}","Macomb","26099","FALSE","FALSE","America/Detroit"
-"48047","42.6777","-82.77761","New Baltimore","MI","Michigan","TRUE","","40535","867.9","26099","Macomb","{""26099"": ""100""}","Macomb","26099","FALSE","FALSE","America/Detroit"
-"48048","42.74246","-82.79774","New Haven","MI","Michigan","TRUE","","7973","161.9","26099","Macomb","{""26099"": ""100""}","Macomb","26099","FALSE","FALSE","America/Detroit"
-"48049","43.03594","-82.57496","North Street","MI","Michigan","TRUE","","5451","58.8","26147","St. Clair","{""26147"": ""100""}","St. Clair","26147","FALSE","FALSE","America/Detroit"
-"48050","42.78482","-82.80142","New Haven","MI","Michigan","TRUE","","1416","29.5","26099","Macomb","{""26099"": ""100""}","Macomb","26099","FALSE","FALSE","America/Detroit"
-"48051","42.69378","-82.82068","New Baltimore","MI","Michigan","TRUE","","18878","485.1","26099","Macomb","{""26099"": ""100""}","Macomb","26099","FALSE","FALSE","America/Detroit"
-"48054","42.77074","-82.54496","East China","MI","Michigan","TRUE","","7170","68.2","26147","St. Clair","{""26147"": ""100""}","St. Clair","26147","FALSE","FALSE","America/Detroit"
-"48059","43.08281","-82.49942","Fort Gratiot","MI","Michigan","TRUE","","14932","182.5","26147","St. Clair","{""26147"": ""100""}","St. Clair","26147","FALSE","FALSE","America/Detroit"
-"48060","42.97864","-82.46271","Port Huron","MI","Michigan","TRUE","","39405","729.6","26147","St. Clair","{""26147"": ""100""}","St. Clair","26147","FALSE","FALSE","America/Detroit"
-"48062","42.849","-82.79989","Richmond","MI","Michigan","TRUE","","9604","93.9","26099","Macomb","{""26099"": ""100""}","Macomb","26099","FALSE","FALSE","America/Detroit"
-"48063","42.85587","-82.67679","Columbus","MI","Michigan","TRUE","","4013","42.2","26147","St. Clair","{""26147"": ""100""}","St. Clair","26147","FALSE","FALSE","America/Detroit"
-"48064","42.76719","-82.67231","Casco","MI","Michigan","TRUE","","4036","42.1","26147","St. Clair","{""26147"": ""100""}","St. Clair","26147","FALSE","FALSE","America/Detroit"
-"48065","42.84552","-83.0407","Romeo","MI","Michigan","TRUE","","11042","114.1","26099","Macomb","{""26099"": ""100""}","Macomb","26099","FALSE","FALSE","America/Detroit"
-"48066","42.50734","-82.93697","Roseville","MI","Michigan","TRUE","","47507","1860.7","26099","Macomb","{""26099"": ""100""}","Macomb","26099","FALSE","FALSE","America/Detroit"
-"48067","42.49046","-83.13795","Royal Oak","MI","Michigan","TRUE","","24556","2065.5","26125","Oakland","{""26125"": ""100""}","Oakland","26125","FALSE","FALSE","America/Detroit"
-"48069","42.4714","-83.14426","Pleasant Ridge","MI","Michigan","TRUE","","2431","1757.9","26125","Oakland","{""26125"": ""100""}","Oakland","26125","FALSE","FALSE","America/Detroit"
-"48070","42.48163","-83.16844","Huntington Woods","MI","Michigan","TRUE","","6322","1640.7","26125","Oakland","{""26125"": ""100""}","Oakland","26125","FALSE","FALSE","America/Detroit"
-"48071","42.5073","-83.10339","Madison Heights","MI","Michigan","TRUE","","30120","1639.0","26125","Oakland","{""26125"": ""100""}","Oakland","26125","FALSE","FALSE","America/Detroit"
-"48072","42.49788","-83.18588","Berkley","MI","Michigan","TRUE","","15372","2471.3","26125","Oakland","{""26125"": ""100""}","Oakland","26125","FALSE","FALSE","America/Detroit"
-"48073","42.5192","-83.16436","Royal Oak","MI","Michigan","TRUE","","34700","1815.6","26125","Oakland","{""26125"": ""100""}","Oakland","26125","FALSE","FALSE","America/Detroit"
-"48074","42.94827","-82.56202","Smiths Creek","MI","Michigan","TRUE","","9172","95.5","26147","St. Clair","{""26147"": ""100""}","St. Clair","26147","FALSE","FALSE","America/Detroit"
-"48075","42.46206","-83.23042","Southfield","MI","Michigan","TRUE","","21758","1135.9","26125","Oakland","{""26125"": ""100""}","Oakland","26125","FALSE","FALSE","America/Detroit"
-"48076","42.4975","-83.23088","Southfield","MI","Michigan","TRUE","","24947","1353.8","26125","Oakland","{""26125"": ""100""}","Oakland","26125","FALSE","FALSE","America/Detroit"
-"48079","42.85781","-82.54738","Saint Clair","MI","Michigan","TRUE","","12188","112.9","26147","St. Clair","{""26147"": ""100""}","St. Clair","26147","FALSE","FALSE","America/Detroit"
-"48080","42.46416","-82.89956","Saint Clair Shores","MI","Michigan","TRUE","","22592","1973.6","26099","Macomb","{""26099"": ""100""}","Macomb","26099","FALSE","FALSE","America/Detroit"
-"48081","42.49505","-82.89862","Saint Clair Shores","MI","Michigan","TRUE","","20671","2030.5","26099","Macomb","{""26099"": ""100""}","Macomb","26099","FALSE","FALSE","America/Detroit"
-"48082","42.52703","-82.88713","Saint Clair Shores","MI","Michigan","TRUE","","16200","1892.6","26099","Macomb","{""26099"": ""100""}","Macomb","26099","FALSE","FALSE","America/Detroit"
-"48083","42.55706","-83.11685","Troy","MI","Michigan","TRUE","","22561","1008.4","26125","Oakland","{""26125"": ""100""}","Oakland","26125","FALSE","FALSE","America/Detroit"
-"48084","42.56064","-83.17572","Troy","MI","Michigan","TRUE","","15737","983.2","26125","Oakland","{""26125"": ""100""}","Oakland","26125","FALSE","FALSE","America/Detroit"
-"48085","42.60063","-83.11982","Troy","MI","Michigan","TRUE","","26459","1098.3","26125","Oakland","{""26125"": ""100""}","Oakland","26125","FALSE","FALSE","America/Detroit"
-"48088","42.51565","-82.98297","Warren","MI","Michigan","TRUE","","22189","1931.1","26099","Macomb","{""26099"": ""100""}","Macomb","26099","FALSE","FALSE","America/Detroit"
-"48089","42.47019","-82.99544","Warren","MI","Michigan","TRUE","","31226","1516.4","26099","Macomb","{""26099"": ""100""}","Macomb","26099","FALSE","FALSE","America/Detroit"
-"48091","42.46818","-83.05799","Warren","MI","Michigan","TRUE","","29811","1441.0","26099","Macomb","{""26099"": ""100""}","Macomb","26099","FALSE","FALSE","America/Detroit"
-"48092","42.51398","-83.05937","Warren","MI","Michigan","TRUE","","26939","1269.6","26099","Macomb","{""26099"": ""100""}","Macomb","26099","FALSE","FALSE","America/Detroit"
-"48093","42.51416","-83.01481","Warren","MI","Michigan","TRUE","","24632","1682.0","26099","Macomb","{""26099"": ""100""}","Macomb","26099","FALSE","FALSE","America/Detroit"
-"48094","42.73641","-83.03709","Washington","MI","Michigan","TRUE","","19872","438.0","26099","Macomb","{""26099"": ""100""}","Macomb","26099","FALSE","FALSE","America/Detroit"
-"48095","42.7798","-83.03864","Washington","MI","Michigan","TRUE","","5765","131.5","26099","Macomb","{""26099"": ""100""}","Macomb","26099","FALSE","FALSE","America/Detroit"
-"48096","42.76136","-82.92003","Ray","MI","Michigan","TRUE","","4010","42.3","26099","Macomb","{""26099"": ""100""}","Macomb","26099","FALSE","FALSE","America/Detroit"
-"48097","43.126","-82.8295","Yale","MI","Michigan","TRUE","","5273","26.7","26147","St. Clair","{""26147"": ""88.93"", ""26151"": ""11.07""}","St. Clair|Sanilac","26147|26151","FALSE","FALSE","America/Detroit"
-"48098","42.59907","-83.17888","Troy","MI","Michigan","TRUE","","19232","791.1","26125","Oakland","{""26125"": ""100""}","Oakland","26125","FALSE","FALSE","America/Detroit"
-"48101","42.25987","-83.21061","Allen Park","MI","Michigan","TRUE","","27216","1495.6","26163","Wayne","{""26163"": ""100""}","Wayne","26163","FALSE","FALSE","America/Detroit"
-"48103","42.25991","-83.84325","Ann Arbor","MI","Michigan","TRUE","","55118","327.0","26161","Washtenaw","{""26161"": ""100""}","Washtenaw","26161","FALSE","FALSE","America/Detroit"
-"48104","42.26425","-83.71703","Ann Arbor","MI","Michigan","TRUE","","43369","2152.9","26161","Washtenaw","{""26161"": ""100""}","Washtenaw","26161","FALSE","FALSE","America/Detroit"
-"48105","42.33168","-83.70705","Ann Arbor","MI","Michigan","TRUE","","36718","284.1","26161","Washtenaw","{""26161"": ""100""}","Washtenaw","26161","FALSE","FALSE","America/Detroit"
-"48108","42.22217","-83.73181","Ann Arbor","MI","Michigan","TRUE","","26753","608.9","26161","Washtenaw","{""26161"": ""100""}","Washtenaw","26161","FALSE","FALSE","America/Detroit"
-"48109","42.28357","-83.72398","Ann Arbor","MI","Michigan","TRUE","","5506","2176.5","26161","Washtenaw","{""26161"": ""100""}","Washtenaw","26161","FALSE","FALSE","America/Detroit"
-"48111","42.17903","-83.48676","Belleville","MI","Michigan","TRUE","","40926","234.1","26163","Wayne","{""26163"": ""99.34"", ""26161"": ""0.48"", ""26115"": ""0.17""}","Wayne|Washtenaw|Monroe","26163|26161|26115","FALSE","FALSE","America/Detroit"
-"48114","42.57002","-83.74835","Brighton","MI","Michigan","TRUE","","21177","247.4","26093","Livingston","{""26093"": ""100""}","Livingston","26093","FALSE","FALSE","America/Detroit"
-"48116","42.50513","-83.78199","Brighton","MI","Michigan","TRUE","","27244","287.6","26093","Livingston","{""26093"": ""100""}","Livingston","26093","FALSE","FALSE","America/Detroit"
-"48117","42.04999","-83.40922","Carleton","MI","Michigan","TRUE","","10039","70.6","26115","Monroe","{""26115"": ""100""}","Monroe","26115","FALSE","FALSE","America/Detroit"
-"48118","42.31257","-84.03874","Chelsea","MI","Michigan","TRUE","","12827","56.4","26161","Washtenaw","{""26161"": ""100""}","Washtenaw","26161","FALSE","FALSE","America/Detroit"
-"48120","42.30697","-83.17394","Dearborn","MI","Michigan","TRUE","","7386","894.9","26163","Wayne","{""26163"": ""100""}","Wayne","26163","FALSE","FALSE","America/Detroit"
-"48122","42.28024","-83.17807","Melvindale","MI","Michigan","TRUE","","10348","1466.2","26163","Wayne","{""26163"": ""100""}","Wayne","26163","FALSE","FALSE","America/Detroit"
-"48124","42.29832","-83.24756","Dearborn","MI","Michigan","TRUE","","28396","1238.1","26163","Wayne","{""26163"": ""100""}","Wayne","26163","FALSE","FALSE","America/Detroit"
-"48125","42.27791","-83.26539","Dearborn Heights","MI","Michigan","TRUE","","20110","1917.2","26163","Wayne","{""26163"": ""100""}","Wayne","26163","FALSE","FALSE","America/Detroit"
-"48126","42.32556","-83.18336","Dearborn","MI","Michigan","TRUE","","48424","1907.9","26163","Wayne","{""26163"": ""100""}","Wayne","26163","FALSE","FALSE","America/Detroit"
-"48127","42.33659","-83.28293","Dearborn Heights","MI","Michigan","TRUE","","35747","1794.1","26163","Wayne","{""26163"": ""100""}","Wayne","26163","FALSE","FALSE","America/Detroit"
-"48128","42.32043","-83.25926","Dearborn","MI","Michigan","TRUE","","10495","1713.9","26163","Wayne","{""26163"": ""100""}","Wayne","26163","FALSE","FALSE","America/Detroit"
-"48130","42.35419","-83.90324","Dexter","MI","Michigan","TRUE","","15756","97.8","26161","Washtenaw","{""26161"": ""100""}","Washtenaw","26161","FALSE","FALSE","America/Detroit"
-"48131","41.96572","-83.67235","Dundee","MI","Michigan","TRUE","","7060","54.4","26115","Monroe","{""26115"": ""100""}","Monroe","26115","FALSE","FALSE","America/Detroit"
-"48133","41.7812","-83.48594","Erie","MI","Michigan","TRUE","","5227","74.7","26115","Monroe","{""26115"": ""100""}","Monroe","26115","FALSE","FALSE","America/Detroit"
-"48134","42.10714","-83.29339","Flat Rock","MI","Michigan","TRUE","","21937","472.5","26163","Wayne","{""26163"": ""96.61"", ""26115"": ""3.39""}","Wayne|Monroe","26163|26115","FALSE","FALSE","America/Detroit"
-"48135","42.3244","-83.34119","Garden City","MI","Michigan","TRUE","","26683","1755.5","26163","Wayne","{""26163"": ""100""}","Wayne","26163","FALSE","FALSE","America/Detroit"
-"48137","42.46219","-84.0736","Gregory","MI","Michigan","TRUE","","5245","47.7","26093","Livingston","{""26093"": ""71.25"", ""26161"": ""28.75""}","Livingston|Washtenaw","26093|26161","FALSE","FALSE","America/Detroit"
-"48138","42.13309","-83.15577","Grosse Ile","MI","Michigan","TRUE","","10159","441.5","26163","Wayne","{""26163"": ""100""}","Wayne","26163","FALSE","FALSE","America/Detroit"
-"48139","42.45237","-83.80585","Hamburg","MI","Michigan","TRUE","","135","75.7","26093","Livingston","{""26093"": ""100""}","Livingston","26093","FALSE","FALSE","America/Detroit"
-"48140","41.88134","-83.58142","Ida","MI","Michigan","TRUE","","3251","47.2","26115","Monroe","{""26115"": ""100""}","Monroe","26115","FALSE","FALSE","America/Detroit"
-"48141","42.29349","-83.31483","Inkster","MI","Michigan","TRUE","","24520","1514.1","26163","Wayne","{""26163"": ""100""}","Wayne","26163","FALSE","FALSE","America/Detroit"
-"48143","42.45982","-83.85196","Lakeland","MI","Michigan","TRUE","","0","0.0","26093","Livingston","{""26093"": ""100""}","Livingston","26093","FALSE","FALSE","America/Detroit"
-"48144","41.75327","-83.62835","Lambertville","MI","Michigan","TRUE","","9545","484.6","26115","Monroe","{""26115"": ""100""}","Monroe","26115","FALSE","FALSE","America/Detroit"
-"48145","41.85061","-83.46329","La Salle","MI","Michigan","TRUE","","3358","77.2","26115","Monroe","{""26115"": ""100""}","Monroe","26115","FALSE","FALSE","America/Detroit"
-"48146","42.2433","-83.18113","Lincoln Park","MI","Michigan","TRUE","","36697","2419.6","26163","Wayne","{""26163"": ""100""}","Wayne","26163","FALSE","FALSE","America/Detroit"
-"48150","42.36843","-83.3726","Livonia","MI","Michigan","TRUE","","25938","835.5","26163","Wayne","{""26163"": ""100""}","Wayne","26163","FALSE","FALSE","America/Detroit"
-"48152","42.42583","-83.37459","Livonia","MI","Michigan","TRUE","","31018","988.8","26163","Wayne","{""26163"": ""100""}","Wayne","26163","FALSE","FALSE","America/Detroit"
-"48154","42.3971","-83.37291","Livonia","MI","Michigan","TRUE","","37293","1239.6","26163","Wayne","{""26163"": ""100""}","Wayne","26163","FALSE","FALSE","America/Detroit"
-"48157","41.81451","-83.43854","Luna Pier","MI","Michigan","TRUE","","1217","488.9","26115","Monroe","{""26115"": ""100""}","Monroe","26115","FALSE","FALSE","America/Detroit"
-"48158","42.15601","-84.03098","Manchester","MI","Michigan","TRUE","","7585","31.2","26161","Washtenaw","{""26161"": ""99.29"", ""26075"": ""0.71""}","Washtenaw|Jackson","26161|26075","FALSE","FALSE","America/Detroit"
-"48159","42.02416","-83.55357","Maybee","MI","Michigan","TRUE","","2615","33.1","26115","Monroe","{""26115"": ""100""}","Monroe","26115","FALSE","FALSE","America/Detroit"
-"48160","42.08085","-83.67886","Milan","MI","Michigan","TRUE","","13565","65.1","26161","Washtenaw","{""26161"": ""65.61"", ""26115"": ""34.39""}","Washtenaw|Monroe","26161|26115","FALSE","FALSE","America/Detroit"
-"48161","41.90805","-83.47199","Monroe","MI","Michigan","TRUE","","26254","226.3","26115","Monroe","{""26115"": ""100""}","Monroe","26115","FALSE","FALSE","America/Detroit"
-"48162","41.96032","-83.4356","Monroe","MI","Michigan","TRUE","","27659","187.5","26115","Monroe","{""26115"": ""100""}","Monroe","26115","FALSE","FALSE","America/Detroit"
-"48164","42.12697","-83.3909","New Boston","MI","Michigan","TRUE","","8713","114.5","26163","Wayne","{""26163"": ""99.24"", ""26115"": ""0.76""}","Wayne|Monroe","26163|26115","FALSE","FALSE","America/Detroit"
-"48165","42.50135","-83.6176","New Hudson","MI","Michigan","TRUE","","7506","311.6","26125","Oakland","{""26125"": ""100""}","Oakland","26125","FALSE","FALSE","America/Detroit"
-"48166","41.9863","-83.29408","Newport","MI","Michigan","TRUE","","11758","170.8","26115","Monroe","{""26115"": ""100""}","Monroe","26115","FALSE","FALSE","America/Detroit"
-"48167","42.43528","-83.52917","Northville","MI","Michigan","TRUE","","22382","486.0","26125","Oakland","{""26125"": ""49.74"", ""26163"": ""44.04"", ""26161"": ""6.22""}","Oakland|Wayne|Washtenaw","26125|26163|26161","FALSE","FALSE","America/Detroit"
-"48168","42.4063","-83.54044","Northville","MI","Michigan","TRUE","","22849","432.6","26163","Wayne","{""26163"": ""93.58"", ""26161"": ""6.42""}","Wayne|Washtenaw","26163|26161","FALSE","FALSE","America/Detroit"
-"48169","42.46279","-83.949","Pinckney","MI","Michigan","TRUE","","21818","146.1","26093","Livingston","{""26093"": ""95.09"", ""26161"": ""4.91""}","Livingston|Washtenaw","26093|26161","FALSE","FALSE","America/Detroit"
-"48170","42.36761","-83.53159","Plymouth","MI","Michigan","TRUE","","39470","446.2","26163","Wayne","{""26163"": ""95.15"", ""26161"": ""4.85""}","Wayne|Washtenaw","26163|26161","FALSE","FALSE","America/Detroit"
-"48173","42.07512","-83.21467","Rockwood","MI","Michigan","TRUE","","12443","418.7","26163","Wayne","{""26163"": ""100""}","Wayne","26163","FALSE","FALSE","America/Detroit"
-"48174","42.20857","-83.35402","Romulus","MI","Michigan","TRUE","","31633","297.9","26163","Wayne","{""26163"": ""100""}","Wayne","26163","FALSE","FALSE","America/Detroit"
-"48176","42.15132","-83.81531","Saline","MI","Michigan","TRUE","","23640","122.8","26161","Washtenaw","{""26161"": ""99.86"", ""26091"": ""0.14""}","Washtenaw|Lenawee","26161|26091","FALSE","FALSE","America/Detroit"
-"48177","41.80396","-83.58091","Samaria","MI","Michigan","TRUE","","229","142.2","26115","Monroe","{""26115"": ""100""}","Monroe","26115","FALSE","FALSE","America/Detroit"
-"48178","42.44466","-83.6635","South Lyon","MI","Michigan","TRUE","","35390","270.3","26125","Oakland","{""26125"": ""61.52"", ""26093"": ""31.16"", ""26161"": ""7.32""}","Oakland|Livingston|Washtenaw","26125|26093|26161","FALSE","FALSE","America/Detroit"
-"48179","42.03561","-83.2534","South Rockwood","MI","Michigan","TRUE","","3686","69.8","26115","Monroe","{""26115"": ""100""}","Monroe","26115","FALSE","FALSE","America/Detroit"
-"48180","42.226","-83.26882","Taylor","MI","Michigan","TRUE","","61379","1003.9","26163","Wayne","{""26163"": ""100""}","Wayne","26163","FALSE","FALSE","America/Detroit"
-"48182","41.79189","-83.57932","Temperance","MI","Michigan","TRUE","","22463","218.7","26115","Monroe","{""26115"": ""100""}","Monroe","26115","FALSE","FALSE","America/Detroit"
-"48183","42.13585","-83.21932","Trenton","MI","Michigan","TRUE","","42248","879.4","26163","Wayne","{""26163"": ""100""}","Wayne","26163","FALSE","FALSE","America/Detroit"
-"48184","42.27421","-83.39407","Wayne","MI","Michigan","TRUE","","17279","948.9","26163","Wayne","{""26163"": ""100""}","Wayne","26163","FALSE","FALSE","America/Detroit"
-"48185","42.33574","-83.38462","Westland","MI","Michigan","TRUE","","48007","1523.5","26163","Wayne","{""26163"": ""100""}","Wayne","26163","FALSE","FALSE","America/Detroit"
-"48186","42.29478","-83.37453","Westland","MI","Michigan","TRUE","","33931","1586.2","26163","Wayne","{""26163"": ""100""}","Wayne","26163","FALSE","FALSE","America/Detroit"
-"48187","42.32916","-83.48782","Canton","MI","Michigan","TRUE","","50037","1068.9","26163","Wayne","{""26163"": ""100""}","Wayne","26163","FALSE","FALSE","America/Detroit"
-"48188","42.28563","-83.48588","Canton","MI","Michigan","TRUE","","41883","896.5","26163","Wayne","{""26163"": ""100""}","Wayne","26163","FALSE","FALSE","America/Detroit"
-"48189","42.41212","-83.78537","Whitmore Lake","MI","Michigan","TRUE","","13830","155.5","26161","Washtenaw","{""26161"": ""54.18"", ""26093"": ""45.82""}","Washtenaw|Livingston","26161|26093","FALSE","FALSE","America/Detroit"
-"48190","42.13155","-83.59377","Whittaker","MI","Michigan","TRUE","","226","247.1","26161","Washtenaw","{""26161"": ""100""}","Washtenaw","26161","FALSE","FALSE","America/Detroit"
-"48191","42.11987","-83.564","Willis","MI","Michigan","TRUE","","4436","105.3","26161","Washtenaw","{""26161"": ""95.56"", ""26115"": ""4.44""}","Washtenaw|Monroe","26161|26115","FALSE","FALSE","America/Detroit"
-"48192","42.20834","-83.16162","Wyandotte","MI","Michigan","TRUE","","25044","1837.4","26163","Wayne","{""26163"": ""100""}","Wayne","26163","FALSE","FALSE","America/Detroit"
-"48193","42.17378","-83.20944","Riverview","MI","Michigan","TRUE","","15754","865.5","26163","Wayne","{""26163"": ""100""}","Wayne","26163","FALSE","FALSE","America/Detroit"
-"48195","42.20472","-83.20589","Southgate","MI","Michigan","TRUE","","29165","1649.2","26163","Wayne","{""26163"": ""100""}","Wayne","26163","FALSE","FALSE","America/Detroit"
-"48197","42.19714","-83.62885","Ypsilanti","MI","Michigan","TRUE","","68108","627.3","26161","Washtenaw","{""26161"": ""100""}","Washtenaw","26161","FALSE","FALSE","America/Detroit"
-"48198","42.27549","-83.58835","Ypsilanti","MI","Michigan","TRUE","","38451","442.1","26161","Washtenaw","{""26161"": ""100""}","Washtenaw","26161","FALSE","FALSE","America/Detroit"
-"48201","42.34704","-83.06014","Detroit","MI","Michigan","TRUE","","15846","3050.9","26163","Wayne","{""26163"": ""100""}","Wayne","26163","FALSE","FALSE","America/Detroit"
-"48202","42.37483","-83.07771","Detroit","MI","Michigan","TRUE","","15816","1835.6","26163","Wayne","{""26163"": ""100""}","Wayne","26163","FALSE","FALSE","America/Detroit"
-"48203","42.42166","-83.10232","Highland Park","MI","Michigan","TRUE","","23063","1111.4","26163","Wayne","{""26163"": ""100""}","Wayne","26163","FALSE","FALSE","America/Detroit"
-"48204","42.36576","-83.14294","Detroit","MI","Michigan","TRUE","","23927","1843.3","26163","Wayne","{""26163"": ""100""}","Wayne","26163","FALSE","FALSE","America/Detroit"
-"48205","42.43315","-82.9811","Detroit","MI","Michigan","TRUE","","33956","2054.0","26163","Wayne","{""26163"": ""100""}","Wayne","26163","FALSE","FALSE","America/Detroit"
-"48206","42.3751","-83.10785","Detroit","MI","Michigan","TRUE","","16065","1984.4","26163","Wayne","{""26163"": ""100""}","Wayne","26163","FALSE","FALSE","America/Detroit"
-"48207","42.3493","-83.0148","Detroit","MI","Michigan","TRUE","","20809","1296.0","26163","Wayne","{""26163"": ""100""}","Wayne","26163","FALSE","FALSE","America/Detroit"
-"48208","42.34852","-83.09192","Detroit","MI","Michigan","TRUE","","9026","1102.1","26163","Wayne","{""26163"": ""100""}","Wayne","26163","FALSE","FALSE","America/Detroit"
-"48209","42.30535","-83.11626","Detroit","MI","Michigan","TRUE","","31624","1800.9","26163","Wayne","{""26163"": ""100""}","Wayne","26163","FALSE","FALSE","America/Detroit"
-"48210","42.33622","-83.12832","Detroit","MI","Michigan","TRUE","","30046","2301.9","26163","Wayne","{""26163"": ""100""}","Wayne","26163","FALSE","FALSE","America/Detroit"
-"48211","42.38134","-83.04578","Detroit","MI","Michigan","TRUE","","6229","575.0","26163","Wayne","{""26163"": ""100""}","Wayne","26163","FALSE","FALSE","America/Detroit"
-"48212","42.40942","-83.05601","Hamtramck","MI","Michigan","TRUE","","38162","2751.2","26163","Wayne","{""26163"": ""100""}","Wayne","26163","FALSE","FALSE","America/Detroit"
-"48213","42.39794","-82.9954","Detroit","MI","Michigan","TRUE","","22148","1308.7","26163","Wayne","{""26163"": ""100""}","Wayne","26163","FALSE","FALSE","America/Detroit"
-"48214","42.36508","-82.98744","Detroit","MI","Michigan","TRUE","","21599","1671.1","26163","Wayne","{""26163"": ""100""}","Wayne","26163","FALSE","FALSE","America/Detroit"
-"48215","42.37512","-82.95445","Detroit","MI","Michigan","TRUE","","11690","1124.8","26163","Wayne","{""26163"": ""100""}","Wayne","26163","FALSE","FALSE","America/Detroit"
-"48216","42.32655","-83.07873","Detroit","MI","Michigan","TRUE","","5318","929.2","26163","Wayne","{""26163"": ""100""}","Wayne","26163","FALSE","FALSE","America/Detroit"
-"48217","42.27806","-83.15399","Detroit","MI","Michigan","TRUE","","6678","1129.6","26163","Wayne","{""26163"": ""100""}","Wayne","26163","FALSE","FALSE","America/Detroit"
-"48218","42.27317","-83.12728","River Rouge","MI","Michigan","TRUE","","7502","1091.3","26163","Wayne","{""26163"": ""100""}","Wayne","26163","FALSE","FALSE","America/Detroit"
-"48219","42.42575","-83.25286","Detroit","MI","Michigan","TRUE","","47632","2187.6","26163","Wayne","{""26163"": ""100""}","Wayne","26163","FALSE","FALSE","America/Detroit"
-"48220","42.45807","-83.13521","Ferndale","MI","Michigan","TRUE","","22548","1967.2","26125","Oakland","{""26125"": ""100""}","Oakland","26125","FALSE","FALSE","America/Detroit"
-"48221","42.42703","-83.14869","Detroit","MI","Michigan","TRUE","","41523","2940.8","26163","Wayne","{""26163"": ""100""}","Wayne","26163","FALSE","FALSE","America/Detroit"
-"48223","42.39343","-83.24641","Detroit","MI","Michigan","TRUE","","25746","1642.0","26163","Wayne","{""26163"": ""100""}","Wayne","26163","FALSE","FALSE","America/Detroit"
-"48224","42.41067","-82.94128","Detroit","MI","Michigan","TRUE","","41453","2790.9","26163","Wayne","{""26163"": ""100""}","Wayne","26163","FALSE","FALSE","America/Detroit"
-"48225","42.43897","-82.92948","Harper Woods","MI","Michigan","TRUE","","14194","2055.9","26163","Wayne","{""26163"": ""100""}","Wayne","26163","FALSE","FALSE","America/Detroit"
-"48226","42.33168","-83.05016","Detroit","MI","Michigan","TRUE","","7150","2284.8","26163","Wayne","{""26163"": ""100""}","Wayne","26163","FALSE","FALSE","America/Detroit"
-"48227","42.38725","-83.19264","Detroit","MI","Michigan","TRUE","","41353","2120.4","26163","Wayne","{""26163"": ""100""}","Wayne","26163","FALSE","FALSE","America/Detroit"
-"48228","42.35545","-83.21705","Detroit","MI","Michigan","TRUE","","56262","2523.0","26163","Wayne","{""26163"": ""100""}","Wayne","26163","FALSE","FALSE","America/Detroit"
-"48229","42.25087","-83.14284","Ecorse","MI","Michigan","TRUE","","9432","1300.4","26163","Wayne","{""26163"": ""100""}","Wayne","26163","FALSE","FALSE","America/Detroit"
-"48230","42.38324","-82.92332","Grosse Pointe","MI","Michigan","TRUE","","16359","1956.2","26163","Wayne","{""26163"": ""100""}","Wayne","26163","FALSE","FALSE","America/Toronto"
-"48233","42.3237","-83.06166","Detroit","MI","Michigan","TRUE","","0","0.0","26163","Wayne","{""26163"": ""0""}","Wayne","26163","FALSE","FALSE","America/Detroit"
-"48234","42.43127","-83.03958","Detroit","MI","Michigan","TRUE","","34307","1691.0","26163","Wayne","{""26163"": ""100""}","Wayne","26163","FALSE","FALSE","America/Detroit"
-"48235","42.42704","-83.1948","Detroit","MI","Michigan","TRUE","","46450","2869.1","26163","Wayne","{""26163"": ""100""}","Wayne","26163","FALSE","FALSE","America/Detroit"
-"48236","42.42502","-82.89655","Grosse Pointe","MI","Michigan","TRUE","","29492","1524.5","26163","Wayne","{""26163"": ""99.74"", ""26099"": ""0.26""}","Wayne|Macomb","26163|26099","FALSE","FALSE","America/Detroit"
-"48237","42.46494","-83.18237","Oak Park","MI","Michigan","TRUE","","29726","2222.9","26125","Oakland","{""26125"": ""100""}","Oakland","26125","FALSE","FALSE","America/Detroit"
-"48238","42.39627","-83.14133","Detroit","MI","Michigan","TRUE","","25038","1791.5","26163","Wayne","{""26163"": ""100""}","Wayne","26163","FALSE","FALSE","America/Detroit"
-"48239","42.37587","-83.28466","Redford","MI","Michigan","TRUE","","36364","1443.4","26163","Wayne","{""26163"": ""100""}","Wayne","26163","FALSE","FALSE","America/Detroit"
-"48240","42.42445","-83.30128","Redford","MI","Michigan","TRUE","","16978","1751.1","26163","Wayne","{""26163"": ""100""}","Wayne","26163","FALSE","FALSE","America/Detroit"
-"48242","42.212","-83.35249","Detroit","MI","Michigan","TRUE","","0","0.0","26163","Wayne","{""26163"": ""0""}","Wayne","26163","FALSE","FALSE","America/Detroit"
-"48243","42.32995","-83.03954","Detroit","MI","Michigan","TRUE","","0","0.0","26163","Wayne","{""26163"": ""0""}","Wayne","26163","FALSE","FALSE","America/Detroit"
-"48301","42.54444","-83.28284","Bloomfield Hills","MI","Michigan","TRUE","","14796","774.0","26125","Oakland","{""26125"": ""100""}","Oakland","26125","FALSE","FALSE","America/Detroit"
-"48302","42.58569","-83.29526","Bloomfield Hills","MI","Michigan","TRUE","","15964","557.8","26125","Oakland","{""26125"": ""100""}","Oakland","26125","FALSE","FALSE","America/Detroit"
-"48304","42.58765","-83.23463","Bloomfield Hills","MI","Michigan","TRUE","","16237","554.4","26125","Oakland","{""26125"": ""100""}","Oakland","26125","FALSE","FALSE","America/Detroit"
-"48306","42.72323","-83.14914","Rochester","MI","Michigan","TRUE","","27334","464.1","26125","Oakland","{""26125"": ""98.66"", ""26099"": ""1.34""}","Oakland|Macomb","26125|26099","FALSE","FALSE","America/Detroit"
-"48307","42.65958","-83.12322","Rochester","MI","Michigan","TRUE","","43674","1099.0","26125","Oakland","{""26125"": ""100""}","Oakland","26125","FALSE","FALSE","America/Detroit"
-"48309","42.65864","-83.18367","Rochester","MI","Michigan","TRUE","","30215","754.9","26125","Oakland","{""26125"": ""100""}","Oakland","26125","FALSE","FALSE","America/Detroit"
-"48310","42.56436","-83.06782","Sterling Heights","MI","Michigan","TRUE","","43545","1987.2","26099","Macomb","{""26099"": ""100""}","Macomb","26099","FALSE","FALSE","America/Detroit"
-"48312","42.55846","-83.00941","Sterling Heights","MI","Michigan","TRUE","","34882","1197.2","26099","Macomb","{""26099"": ""100""}","Macomb","26099","FALSE","FALSE","America/Detroit"
-"48313","42.59956","-83.00153","Sterling Heights","MI","Michigan","TRUE","","33467","1422.6","26099","Macomb","{""26099"": ""100""}","Macomb","26099","FALSE","FALSE","America/Detroit"
-"48314","42.60989","-83.05431","Sterling Heights","MI","Michigan","TRUE","","20582","1031.5","26099","Macomb","{""26099"": ""100""}","Macomb","26099","FALSE","FALSE","America/Detroit"
-"48315","42.6729","-82.99631","Utica","MI","Michigan","TRUE","","27662","836.4","26099","Macomb","{""26099"": ""100""}","Macomb","26099","FALSE","FALSE","America/Detroit"
-"48316","42.69064","-83.0568","Utica","MI","Michigan","TRUE","","27858","965.8","26099","Macomb","{""26099"": ""100""}","Macomb","26099","FALSE","FALSE","America/Detroit"
-"48317","42.64676","-83.05315","Utica","MI","Michigan","TRUE","","28651","910.5","26099","Macomb","{""26099"": ""100""}","Macomb","26099","FALSE","FALSE","America/Detroit"
-"48320","42.61261","-83.33801","Keego Harbor","MI","Michigan","TRUE","","4933","1756.0","26125","Oakland","{""26125"": ""100""}","Oakland","26125","FALSE","FALSE","America/Detroit"
-"48322","42.54215","-83.38137","West Bloomfield","MI","Michigan","TRUE","","32608","1070.9","26125","Oakland","{""26125"": ""100""}","Oakland","26125","FALSE","FALSE","America/Detroit"
-"48323","42.57032","-83.37617","West Bloomfield","MI","Michigan","TRUE","","17128","758.7","26125","Oakland","{""26125"": ""100""}","Oakland","26125","FALSE","FALSE","America/Detroit"
-"48324","42.59614","-83.39263","West Bloomfield","MI","Michigan","TRUE","","17830","808.4","26125","Oakland","{""26125"": ""100""}","Oakland","26125","FALSE","FALSE","America/Detroit"
-"48326","42.67577","-83.25332","Auburn Hills","MI","Michigan","TRUE","","22352","501.1","26125","Oakland","{""26125"": ""100""}","Oakland","26125","FALSE","FALSE","America/Detroit"
-"48327","42.64421","-83.41415","Waterford","MI","Michigan","TRUE","","21937","747.2","26125","Oakland","{""26125"": ""100""}","Oakland","26125","FALSE","FALSE","America/Detroit"
-"48328","42.64382","-83.35626","Waterford","MI","Michigan","TRUE","","26476","1128.5","26125","Oakland","{""26125"": ""100""}","Oakland","26125","FALSE","FALSE","America/Detroit"
-"48329","42.68839","-83.38888","Waterford","MI","Michigan","TRUE","","24400","924.5","26125","Oakland","{""26125"": ""100""}","Oakland","26125","FALSE","FALSE","America/Detroit"
-"48331","42.50399","-83.40853","Farmington","MI","Michigan","TRUE","","21372","888.1","26125","Oakland","{""26125"": ""100""}","Oakland","26125","FALSE","FALSE","America/Detroit"
-"48334","42.50667","-83.34946","Farmington","MI","Michigan","TRUE","","19107","821.1","26125","Oakland","{""26125"": ""100""}","Oakland","26125","FALSE","FALSE","America/Detroit"
-"48335","42.46285","-83.40199","Farmington","MI","Michigan","TRUE","","22998","1178.8","26125","Oakland","{""26125"": ""100""}","Oakland","26125","FALSE","FALSE","America/Detroit"
-"48336","42.4631","-83.34727","Farmington","MI","Michigan","TRUE","","25913","1100.6","26125","Oakland","{""26125"": ""100""}","Oakland","26125","FALSE","FALSE","America/Detroit"
-"48340","42.67083","-83.29099","Pontiac","MI","Michigan","TRUE","","25387","1311.7","26125","Oakland","{""26125"": ""100""}","Oakland","26125","FALSE","FALSE","America/Detroit"
-"48341","42.62781","-83.29636","Pontiac","MI","Michigan","TRUE","","18020","1089.6","26125","Oakland","{""26125"": ""100""}","Oakland","26125","FALSE","FALSE","America/Detroit"
-"48342","42.64337","-83.27435","Pontiac","MI","Michigan","TRUE","","16652","1123.3","26125","Oakland","{""26125"": ""100""}","Oakland","26125","FALSE","FALSE","America/Detroit"
-"48346","42.72155","-83.42304","Clarkston","MI","Michigan","TRUE","","23776","511.3","26125","Oakland","{""26125"": ""100""}","Oakland","26125","FALSE","FALSE","America/Detroit"
-"48348","42.76696","-83.40128","Clarkston","MI","Michigan","TRUE","","24605","286.9","26125","Oakland","{""26125"": ""100""}","Oakland","26125","FALSE","FALSE","America/Detroit"
-"48350","42.74084","-83.53218","Davisburg","MI","Michigan","TRUE","","7242","117.5","26125","Oakland","{""26125"": ""100""}","Oakland","26125","FALSE","FALSE","America/Detroit"
-"48353","42.64765","-83.71682","Hartland","MI","Michigan","TRUE","","6753","194.6","26093","Livingston","{""26093"": ""100""}","Livingston","26093","FALSE","FALSE","America/Detroit"
-"48356","42.65507","-83.58926","Highland","MI","Michigan","TRUE","","8743","239.1","26125","Oakland","{""26125"": ""100""}","Oakland","26125","FALSE","FALSE","America/Detroit"
-"48357","42.65606","-83.64388","Highland","MI","Michigan","TRUE","","8347","274.0","26125","Oakland","{""26125"": ""100""}","Oakland","26125","FALSE","FALSE","America/Detroit"
-"48359","42.72202","-83.27878","Lake Orion","MI","Michigan","TRUE","","9800","351.5","26125","Oakland","{""26125"": ""100""}","Oakland","26125","FALSE","FALSE","America/Detroit"
-"48360","42.74934","-83.269","Lake Orion","MI","Michigan","TRUE","","12768","417.1","26125","Oakland","{""26125"": ""100""}","Oakland","26125","FALSE","FALSE","America/Detroit"
-"48362","42.78226","-83.26969","Lake Orion","MI","Michigan","TRUE","","15833","617.5","26125","Oakland","{""26125"": ""100""}","Oakland","26125","FALSE","FALSE","America/Detroit"
-"48363","42.77285","-83.1618","Oakland","MI","Michigan","TRUE","","7049","134.8","26125","Oakland","{""26125"": ""100""}","Oakland","26125","FALSE","FALSE","America/Detroit"
-"48367","42.84283","-83.14145","Leonard","MI","Michigan","TRUE","","4697","77.3","26125","Oakland","{""26125"": ""100""}","Oakland","26125","FALSE","FALSE","America/Detroit"
-"48370","42.84124","-83.20084","Oxford","MI","Michigan","TRUE","","1901","61.4","26125","Oakland","{""26125"": ""100""}","Oakland","26125","FALSE","FALSE","America/Detroit"
-"48371","42.84121","-83.29086","Oxford","MI","Michigan","TRUE","","25463","229.8","26125","Oakland","{""26125"": ""98.63"", ""26087"": ""1.37""}","Oakland|Lapeer","26125|26087","FALSE","FALSE","America/Detroit"
-"48374","42.47081","-83.52386","Novi","MI","Michigan","TRUE","","16589","704.3","26125","Oakland","{""26125"": ""100""}","Oakland","26125","FALSE","FALSE","America/Detroit"
-"48375","42.46482","-83.46335","Novi","MI","Michigan","TRUE","","22041","991.4","26125","Oakland","{""26125"": ""100""}","Oakland","26125","FALSE","FALSE","America/Detroit"
-"48377","42.50648","-83.47275","Novi","MI","Michigan","TRUE","","16735","672.5","26125","Oakland","{""26125"": ""100""}","Oakland","26125","FALSE","FALSE","America/Detroit"
-"48380","42.58073","-83.66216","Milford","MI","Michigan","TRUE","","7435","113.1","26125","Oakland","{""26125"": ""76.7"", ""26093"": ""23.3""}","Oakland|Livingston","26125|26093","FALSE","FALSE","America/Detroit"
-"48381","42.56168","-83.5942","Milford","MI","Michigan","TRUE","","13481","259.6","26125","Oakland","{""26125"": ""100""}","Oakland","26125","FALSE","FALSE","America/Detroit"
-"48382","42.59073","-83.50585","Commerce Township","MI","Michigan","TRUE","","23581","553.1","26125","Oakland","{""26125"": ""100""}","Oakland","26125","FALSE","FALSE","America/Detroit"
-"48383","42.65789","-83.53215","White Lake","MI","Michigan","TRUE","","13013","337.5","26125","Oakland","{""26125"": ""100""}","Oakland","26125","FALSE","FALSE","America/Detroit"
-"48386","42.65786","-83.47527","White Lake","MI","Michigan","TRUE","","18341","426.0","26125","Oakland","{""26125"": ""100""}","Oakland","26125","FALSE","FALSE","America/Detroit"
-"48390","42.55142","-83.47637","Walled Lake","MI","Michigan","TRUE","","23880","736.6","26125","Oakland","{""26125"": ""100""}","Oakland","26125","FALSE","FALSE","America/Detroit"
-"48393","42.52113","-83.54507","Wixom","MI","Michigan","TRUE","","17054","496.8","26125","Oakland","{""26125"": ""100""}","Oakland","26125","FALSE","FALSE","America/Detroit"
-"48397","42.49501","-83.04105","Warren","MI","Michigan","TRUE","","0","0.0","26099","Macomb","{""26099"": ""0""}","Macomb","26099","FALSE","FALSE","America/Detroit"
-"48401","43.3527","-82.66725","Applegate","MI","Michigan","TRUE","","1453","16.9","26151","Sanilac","{""26151"": ""100""}","Sanilac","26151","FALSE","FALSE","America/Detroit"
-"48411","42.93608","-83.53083","Atlas","MI","Michigan","TRUE","","123","78.9","26049","Genesee","{""26049"": ""100""}","Genesee","26049","FALSE","FALSE","America/Detroit"
-"48412","43.06287","-83.17079","Attica","MI","Michigan","TRUE","","5000","38.6","26087","Lapeer","{""26087"": ""100""}","Lapeer","26087","FALSE","FALSE","America/Detroit"
-"48413","43.80193","-82.99474","Bad Axe","MI","Michigan","TRUE","","7231","20.3","26063","Huron","{""26063"": ""100""}","Huron","26063","FALSE","FALSE","America/Detroit"
-"48414","42.86178","-84.07879","Bancroft","MI","Michigan","TRUE","","2610","31.3","26155","Shiawassee","{""26155"": ""100""}","Shiawassee","26155","FALSE","FALSE","America/Detroit"
-"48415","43.27114","-83.80094","Birch Run","MI","Michigan","TRUE","","9107","53.8","26145","Saginaw","{""26145"": ""96.54"", ""26049"": ""1.83"", ""26157"": ""1.64""}","Saginaw|Genesee|Tuscola","26145|26049|26157","FALSE","FALSE","America/Detroit"
-"48416","43.21671","-82.98451","Brown City","MI","Michigan","TRUE","","5179","17.8","26151","Sanilac","{""26151"": ""62.2"", ""26087"": ""32.95"", ""26147"": ""4.86""}","Sanilac|Lapeer|St. Clair","26151|26087|26147","FALSE","FALSE","America/Detroit"
-"48417","43.26049","-83.93595","Burt","MI","Michigan","TRUE","","2691","42.1","26145","Saginaw","{""26145"": ""100""}","Saginaw","26145","FALSE","FALSE","America/Detroit"
-"48418","42.80426","-83.97019","Byron","MI","Michigan","TRUE","","3926","39.1","26155","Shiawassee","{""26155"": ""60.02"", ""26049"": ""30.45"", ""26093"": ""9.53""}","Shiawassee|Genesee|Livingston","26155|26049|26093","FALSE","FALSE","America/Detroit"
-"48419","43.42927","-82.65461","Carsonville","MI","Michigan","TRUE","","2282","11.4","26151","Sanilac","{""26151"": ""100""}","Sanilac","26151","FALSE","FALSE","America/Detroit"
-"48420","43.17959","-83.71417","Clio","MI","Michigan","TRUE","","21380","127.9","26049","Genesee","{""26049"": ""97.31"", ""26157"": ""2.57"", ""26145"": ""0.13""}","Genesee|Tuscola|Saginaw","26049|26157|26145","FALSE","FALSE","America/Detroit"
-"48421","43.1537","-83.39208","Columbiaville","MI","Michigan","TRUE","","6259","59.3","26087","Lapeer","{""26087"": ""97.67"", ""26049"": ""2.33""}","Lapeer|Genesee","26087|26049","FALSE","FALSE","America/Detroit"
-"48422","43.26263","-82.65059","Croswell","MI","Michigan","TRUE","","6571","26.4","26151","Sanilac","{""26151"": ""100""}","Sanilac","26151","FALSE","FALSE","America/Detroit"
-"48423","43.0398","-83.51346","Davison","MI","Michigan","TRUE","","31859","187.5","26049","Genesee","{""26049"": ""99.88"", ""26087"": ""0.12""}","Genesee|Lapeer","26049|26087","FALSE","FALSE","America/Detroit"
-"48426","43.51006","-83.05897","Decker","MI","Michigan","TRUE","","1007","9.9","26151","Sanilac","{""26151"": ""100""}","Sanilac","26151","FALSE","FALSE","America/Detroit"
-"48427","43.53798","-82.72406","Deckerville","MI","Michigan","TRUE","","2754","11.0","26151","Sanilac","{""26151"": ""100""}","Sanilac","26151","FALSE","FALSE","America/Detroit"
-"48428","42.93844","-83.14816","Dryden","MI","Michigan","TRUE","","5281","59.6","26087","Lapeer","{""26087"": ""99.8"", ""26125"": ""0.2""}","Lapeer|Oakland","26087|26125","FALSE","FALSE","America/Detroit"
-"48429","42.9068","-84.00369","Durand","MI","Michigan","TRUE","","8937","63.6","26155","Shiawassee","{""26155"": ""97.48"", ""26049"": ""2.52""}","Shiawassee|Genesee","26155|26049","FALSE","FALSE","America/Detroit"
-"48430","42.75837","-83.74277","Fenton","MI","Michigan","TRUE","","35948","167.2","26049","Genesee","{""26049"": ""59.58"", ""26093"": ""37.43"", ""26125"": ""2.99""}","Genesee|Livingston|Oakland","26049|26093|26125","FALSE","FALSE","America/Detroit"
-"48432","43.89911","-82.97668","Filion","MI","Michigan","TRUE","","600","6.9","26063","Huron","{""26063"": ""100""}","Huron","26063","FALSE","FALSE","America/Detroit"
-"48433","43.07575","-83.86625","Flushing","MI","Michigan","TRUE","","25000","173.8","26049","Genesee","{""26049"": ""99.75"", ""26155"": ""0.25""}","Genesee|Shiawassee","26049|26155","FALSE","FALSE","America/Detroit"
-"48434","43.66187","-82.61168","Forestville","MI","Michigan","TRUE","","89","62.9","26151","Sanilac","{""26151"": ""100""}","Sanilac","26151","FALSE","FALSE","America/Detroit"
-"48435","43.24828","-83.35811","Fostoria","MI","Michigan","TRUE","","1940","29.9","26157","Tuscola","{""26157"": ""57.13"", ""26087"": ""42.87""}","Tuscola|Lapeer","26157|26087","FALSE","FALSE","America/Detroit"
-"48436","42.86708","-83.87327","Gaines","MI","Michigan","TRUE","","3795","46.0","26049","Genesee","{""26049"": ""96.81"", ""26155"": ""3.19""}","Genesee|Shiawassee","26049|26155","FALSE","FALSE","America/Detroit"
-"48437","43.11231","-83.61542","Genesee","MI","Michigan","TRUE","","783","511.9","26049","Genesee","{""26049"": ""100""}","Genesee","26049","FALSE","FALSE","America/Detroit"
-"48438","42.91236","-83.47688","Goodrich","MI","Michigan","TRUE","","6805","81.7","26049","Genesee","{""26049"": ""84.06"", ""26087"": ""15.94""}","Genesee|Lapeer","26049|26087","FALSE","FALSE","America/Detroit"
-"48439","42.91681","-83.62911","Grand Blanc","MI","Michigan","TRUE","","48754","355.8","26049","Genesee","{""26049"": ""99.27"", ""26125"": ""0.73""}","Genesee|Oakland","26049|26125","FALSE","FALSE","America/Detroit"
-"48440","42.95066","-83.41234","Hadley","MI","Michigan","TRUE","","89","50.9","26087","Lapeer","{""26087"": ""100""}","Lapeer","26087","FALSE","FALSE","America/Detroit"
-"48441","43.8062","-82.71738","Harbor Beach","MI","Michigan","TRUE","","4041","15.4","26063","Huron","{""26063"": ""98.87"", ""26151"": ""1.13""}","Huron|Sanilac","26063|26151","FALSE","FALSE","America/Detroit"
-"48442","42.79164","-83.60347","Holly","MI","Michigan","TRUE","","21228","95.9","26125","Oakland","{""26125"": ""93.05"", ""26049"": ""5.77"", ""26093"": ""1.18""}","Oakland|Genesee|Livingston","26125|26049|26093","FALSE","FALSE","America/Detroit"
-"48444","43.06499","-83.05511","Imlay City","MI","Michigan","TRUE","","9730","46.5","26087","Lapeer","{""26087"": ""99.22"", ""26147"": ""0.78""}","Lapeer|St. Clair","26087|26147","FALSE","FALSE","America/Detroit"
-"48445","43.95158","-82.98696","Kinde","MI","Michigan","TRUE","","1245","8.6","26063","Huron","{""26063"": ""100""}","Huron","26063","FALSE","FALSE","America/Detroit"
-"48446","43.05355","-83.33761","Lapeer","MI","Michigan","TRUE","","31014","99.1","26087","Lapeer","{""26087"": ""100""}","Lapeer","26087","FALSE","FALSE","America/Detroit"
-"48449","42.9949","-83.94622","Lennon","MI","Michigan","TRUE","","2855","43.1","26155","Shiawassee","{""26155"": ""60.34"", ""26049"": ""39.66""}","Shiawassee|Genesee","26155|26049","FALSE","FALSE","America/Detroit"
-"48450","43.25872","-82.54203","Lexington","MI","Michigan","TRUE","","4511","78.3","26151","Sanilac","{""26151"": ""100""}","Sanilac","26151","FALSE","FALSE","America/Detroit"
-"48451","42.80266","-83.81948","Linden","MI","Michigan","TRUE","","14988","171.3","26049","Genesee","{""26049"": ""94.59"", ""26093"": ""5.41""}","Genesee|Livingston","26049|26093","FALSE","FALSE","America/Detroit"
-"48453","43.34412","-83.03193","Marlette","MI","Michigan","TRUE","","5153","18.6","26151","Sanilac","{""26151"": ""89.9"", ""26157"": ""5.29"", ""26087"": ""4.82""}","Sanilac|Tuscola|Lapeer","26151|26157|26087","FALSE","FALSE","America/Detroit"
-"48454","43.19918","-82.81951","Melvin","MI","Michigan","TRUE","","1187","15.2","26151","Sanilac","{""26151"": ""100""}","Sanilac","26151","FALSE","FALSE","America/Detroit"
-"48455","42.93886","-83.2892","Metamora","MI","Michigan","TRUE","","7924","47.0","26087","Lapeer","{""26087"": ""100""}","Lapeer","26087","FALSE","FALSE","America/Detroit"
-"48456","43.67026","-82.75953","Minden City","MI","Michigan","TRUE","","777","6.5","26151","Sanilac","{""26151"": ""85.9"", ""26063"": ""14.1""}","Sanilac|Huron","26151|26063","FALSE","FALSE","America/Detroit"
-"48457","43.18943","-83.89564","Montrose","MI","Michigan","TRUE","","8118","71.4","26049","Genesee","{""26049"": ""82.82"", ""26145"": ""17.18""}","Genesee|Saginaw","26049|26145","FALSE","FALSE","America/Detroit"
-"48458","43.12225","-83.68221","Mount Morris","MI","Michigan","TRUE","","18410","202.6","26049","Genesee","{""26049"": ""100""}","Genesee","26049","FALSE","FALSE","America/Detroit"
-"48460","43.1282","-83.98722","New Lothrop","MI","Michigan","TRUE","","2356","27.0","26155","Shiawassee","{""26155"": ""63.43"", ""26145"": ""36.57""}","Shiawassee|Saginaw","26155|26145","FALSE","FALSE","America/Detroit"
-"48461","43.204","-83.20452","North Branch","MI","Michigan","TRUE","","8239","38.0","26087","Lapeer","{""26087"": ""100""}","Lapeer","26087","FALSE","FALSE","America/Detroit"
-"48462","42.8489","-83.42665","Ortonville","MI","Michigan","TRUE","","13860","112.3","26125","Oakland","{""26125"": ""94.6"", ""26087"": ""4.44"", ""26049"": ""0.96""}","Oakland|Lapeer|Genesee","26125|26087|26049","FALSE","FALSE","America/Detroit"
-"48463","43.16587","-83.52301","Otisville","MI","Michigan","TRUE","","4445","49.1","26049","Genesee","{""26049"": ""100""}","Genesee","26049","FALSE","FALSE","America/Detroit"
-"48464","43.21906","-83.42104","Otter Lake","MI","Michigan","TRUE","","2157","44.6","26087","Lapeer","{""26087"": ""78.17"", ""26157"": ""13.63"", ""26049"": ""8.2""}","Lapeer|Tuscola|Genesee","26087|26157|26049","FALSE","FALSE","America/Detroit"
-"48465","43.6146","-82.70806","Palms","MI","Michigan","TRUE","","702","6.6","26151","Sanilac","{""26151"": ""100""}","Sanilac","26151","FALSE","FALSE","America/Detroit"
-"48466","43.27695","-82.81672","Peck","MI","Michigan","TRUE","","1473","15.5","26151","Sanilac","{""26151"": ""100""}","Sanilac","26151","FALSE","FALSE","America/Detroit"
-"48467","44.00834","-82.98494","Port Austin","MI","Michigan","TRUE","","2127","12.9","26063","Huron","{""26063"": ""100""}","Huron","26063","FALSE","FALSE","America/Detroit"
-"48468","43.94225","-82.78773","Port Hope","MI","Michigan","TRUE","","1088","6.6","26063","Huron","{""26063"": ""100""}","Huron","26063","FALSE","FALSE","America/Detroit"
-"48469","43.43925","-82.5583","Port Sanilac","MI","Michigan","TRUE","","1213","59.4","26151","Sanilac","{""26151"": ""100""}","Sanilac","26151","FALSE","FALSE","America/Detroit"
-"48470","43.73254","-82.75783","Ruth","MI","Michigan","TRUE","","743","7.2","26063","Huron","{""26063"": ""100""}","Huron","26063","FALSE","FALSE","America/Detroit"
-"48471","43.41814","-82.85228","Sandusky","MI","Michigan","TRUE","","5341","20.4","26151","Sanilac","{""26151"": ""100""}","Sanilac","26151","FALSE","FALSE","America/Detroit"
-"48472","43.51347","-82.95538","Snover","MI","Michigan","TRUE","","1731","8.8","26151","Sanilac","{""26151"": ""100""}","Sanilac","26151","FALSE","FALSE","America/Detroit"
-"48473","42.93991","-83.82618","Swartz Creek","MI","Michigan","TRUE","","22022","144.2","26049","Genesee","{""26049"": ""100""}","Genesee","26049","FALSE","FALSE","America/Detroit"
-"48475","43.67062","-82.93945","Ubly","MI","Michigan","TRUE","","2519","9.0","26063","Huron","{""26063"": ""66.74"", ""26151"": ""33.26""}","Huron|Sanilac","26063|26151","FALSE","FALSE","America/Detroit"
-"48476","42.9385","-84.02992","Vernon","MI","Michigan","TRUE","","471","684.1","26155","Shiawassee","{""26155"": ""100""}","Shiawassee","26155","FALSE","FALSE","America/Detroit"
-"48502","43.01359","-83.68855","Flint","MI","Michigan","TRUE","","1152","1125.7","26049","Genesee","{""26049"": ""100""}","Genesee","26049","FALSE","FALSE","America/Detroit"
-"48503","43.01179","-83.6885","Flint","MI","Michigan","TRUE","","26466","1245.3","26049","Genesee","{""26049"": ""100""}","Genesee","26049","FALSE","FALSE","America/Detroit"
-"48504","43.05734","-83.74982","Flint","MI","Michigan","TRUE","","26804","669.2","26049","Genesee","{""26049"": ""100""}","Genesee","26049","FALSE","FALSE","America/Detroit"
-"48505","43.07042","-83.68744","Flint","MI","Michigan","TRUE","","20327","624.9","26049","Genesee","{""26049"": ""100""}","Genesee","26049","FALSE","FALSE","America/Detroit"
-"48506","43.06784","-83.62161","Flint","MI","Michigan","TRUE","","28915","590.1","26049","Genesee","{""26049"": ""100""}","Genesee","26049","FALSE","FALSE","America/Detroit"
-"48507","42.96539","-83.71547","Flint","MI","Michigan","TRUE","","30760","570.1","26049","Genesee","{""26049"": ""100""}","Genesee","26049","FALSE","FALSE","America/Detroit"
-"48509","43.02616","-83.60528","Burton","MI","Michigan","TRUE","","9351","407.5","26049","Genesee","{""26049"": ""100""}","Genesee","26049","FALSE","FALSE","America/Detroit"
-"48519","42.98752","-83.60693","Burton","MI","Michigan","TRUE","","6984","349.1","26049","Genesee","{""26049"": ""100""}","Genesee","26049","FALSE","FALSE","America/Detroit"
-"48529","42.97245","-83.6618","Burton","MI","Michigan","TRUE","","9424","736.8","26049","Genesee","{""26049"": ""100""}","Genesee","26049","FALSE","FALSE","America/Detroit"
-"48532","43.01239","-83.79085","Flint","MI","Michigan","TRUE","","20270","511.3","26049","Genesee","{""26049"": ""100""}","Genesee","26049","FALSE","FALSE","America/Detroit"
-"48551","42.98103","-83.71691","Flint","MI","Michigan","TRUE","","0","0.0","26049","Genesee","{""26049"": ""0""}","Genesee","26049","FALSE","FALSE","America/Detroit"
-"48553","42.97781","-83.72352","Flint","MI","Michigan","TRUE","","0","0.0","26049","Genesee","{""26049"": ""0""}","Genesee","26049","FALSE","FALSE","America/Detroit"
-"48554","42.97584","-83.79096","Flint","MI","Michigan","TRUE","","0","0.0","26049","Genesee","{""26049"": ""0""}","Genesee","26049","FALSE","FALSE","America/Detroit"
-"48601","43.40416","-83.89375","Saginaw","MI","Michigan","TRUE","","34793","128.0","26145","Saginaw","{""26145"": ""100""}","Saginaw","26145","FALSE","FALSE","America/Detroit"
-"48602","43.41969","-83.97466","Saginaw","MI","Michigan","TRUE","","30199","1489.0","26145","Saginaw","{""26145"": ""100""}","Saginaw","26145","FALSE","FALSE","America/Detroit"
-"48603","43.46313","-84.02967","Saginaw","MI","Michigan","TRUE","","26623","561.4","26145","Saginaw","{""26145"": ""100""}","Saginaw","26145","FALSE","FALSE","America/Detroit"
-"48604","43.49444","-83.96255","Saginaw","MI","Michigan","TRUE","","12307","190.6","26145","Saginaw","{""26145"": ""98.81"", ""26017"": ""1.19""}","Saginaw|Bay","26145|26017","FALSE","FALSE","America/Detroit"
-"48607","43.43177","-83.9338","Saginaw","MI","Michigan","TRUE","","1556","673.1","26145","Saginaw","{""26145"": ""100""}","Saginaw","26145","FALSE","FALSE","America/Detroit"
-"48609","43.38736","-84.08797","Saginaw","MI","Michigan","TRUE","","12422","107.6","26145","Saginaw","{""26145"": ""100""}","Saginaw","26145","FALSE","FALSE","America/Detroit"
-"48610","44.12834","-84.17435","Alger","MI","Michigan","TRUE","","2760","9.1","26011","Arenac","{""26011"": ""39.05"", ""26129"": ""38.01"", ""26051"": ""22.93""}","Arenac|Ogemaw|Gladwin","26011|26129|26051","FALSE","FALSE","America/Detroit"
-"48611","43.63183","-84.09311","Auburn","MI","Michigan","TRUE","","6611","66.5","26017","Bay","{""26017"": ""100""}","Bay","26017","FALSE","FALSE","America/Detroit"
-"48612","43.88113","-84.43196","Beaverton","MI","Michigan","TRUE","","8772","28.0","26051","Gladwin","{""26051"": ""98.48"", ""26111"": ""1.52""}","Gladwin|Midland","26051|26111","FALSE","FALSE","America/Detroit"
-"48613","43.9532","-84.16778","Bentley","MI","Michigan","TRUE","","983","6.3","26017","Bay","{""26017"": ""91.36"", ""26051"": ""8.64""}","Bay|Gladwin","26017|26051","FALSE","FALSE","America/Detroit"
-"48614","43.25053","-84.3025","Brant","MI","Michigan","TRUE","","1425","15.5","26145","Saginaw","{""26145"": ""98.11"", ""26057"": ""1.89""}","Saginaw|Gratiot","26145|26057","FALSE","FALSE","America/Detroit"
-"48615","43.42948","-84.47145","Breckenridge","MI","Michigan","TRUE","","2729","18.3","26057","Gratiot","{""26057"": ""71.81"", ""26111"": ""28.19""}","Gratiot|Midland","26057|26111","FALSE","FALSE","America/Detroit"
-"48616","43.19288","-84.11164","Chesaning","MI","Michigan","TRUE","","7321","35.1","26145","Saginaw","{""26145"": ""99.75"", ""26155"": ""0.25""}","Saginaw|Shiawassee","26145|26155","FALSE","FALSE","America/Detroit"
-"48617","43.84684","-84.71585","Clare","MI","Michigan","TRUE","","9242","25.7","26035","Clare","{""26035"": ""77.87"", ""26073"": ""22.13""}","Clare|Isabella","26035|26073","FALSE","FALSE","America/Detroit"
-"48618","43.73725","-84.56022","Coleman","MI","Michigan","TRUE","","5049","18.8","26111","Midland","{""26111"": ""84.33"", ""26073"": ""12.65"", ""26051"": ""3.02""}","Midland|Isabella|Gladwin","26111|26073|26051","FALSE","FALSE","America/Detroit"
-"48619","44.82455","-84.03134","Comins","MI","Michigan","TRUE","","549","2.7","26135","Oscoda","{""26135"": ""89.03"", ""26119"": ""10.97""}","Oscoda|Montmorency","26135|26119","FALSE","FALSE","America/Detroit"
-"48621","44.72406","-83.99442","Fairview","MI","Michigan","TRUE","","1149","7.9","26135","Oscoda","{""26135"": ""100""}","Oscoda","26135","FALSE","FALSE","America/Detroit"
-"48622","43.84005","-84.88039","Farwell","MI","Michigan","TRUE","","5838","23.7","26035","Clare","{""26035"": ""82.44"", ""26073"": ""17.56""}","Clare|Isabella","26035|26073","FALSE","FALSE","America/Detroit"
-"48623","43.51988","-84.13557","Freeland","MI","Michigan","TRUE","","13662","71.4","26145","Saginaw","{""26145"": ""88.06"", ""26111"": ""7.48"", ""26017"": ""4.46""}","Saginaw|Midland|Bay","26145|26111|26017","FALSE","FALSE","America/Detroit"
-"48624","44.06207","-84.46659","Gladwin","MI","Michigan","TRUE","","15837","18.0","26051","Gladwin","{""26051"": ""91.68"", ""26035"": ""6.07"", ""26143"": ""1.28"", ""26129"": ""0.97""}","Gladwin|Clare|Roscommon|Ogemaw","26051|26035|26143|26129","FALSE","FALSE","America/Detroit"
-"48625","44.05402","-84.83132","Harrison","MI","Michigan","TRUE","","13104","21.0","26035","Clare","{""26035"": ""100""}","Clare","26035","FALSE","FALSE","America/Detroit"
-"48626","43.42214","-84.22535","Hemlock","MI","Michigan","TRUE","","5847","35.4","26145","Saginaw","{""26145"": ""92.04"", ""26111"": ""7.96""}","Saginaw|Midland","26145|26111","FALSE","FALSE","America/Detroit"
-"48627","44.46165","-84.74959","Higgins Lake","MI","Michigan","TRUE","","131","233.0","26143","Roscommon","{""26143"": ""100""}","Roscommon","26143","FALSE","FALSE","America/Detroit"
-"48628","43.7835","-84.32883","Hope","MI","Michigan","TRUE","","2281","26.6","26111","Midland","{""26111"": ""86.27"", ""26051"": ""13.73""}","Midland|Gladwin","26111|26051","FALSE","FALSE","America/Detroit"
-"48629","44.31164","-84.77662","Houghton Lake","MI","Michigan","TRUE","","7551","36.3","26143","Roscommon","{""26143"": ""100""}","Roscommon","26143","FALSE","FALSE","America/Detroit"
-"48630","44.32478","-84.77246","Houghton Lake Heights","MI","Michigan","TRUE","","42","169.9","26143","Roscommon","{""26143"": ""100""}","Roscommon","26143","FALSE","FALSE","America/Detroit"
-"48631","43.68516","-84.001","Kawkawlin","MI","Michigan","TRUE","","4188","48.8","26017","Bay","{""26017"": ""100""}","Bay","26017","FALSE","FALSE","America/Detroit"
-"48632","43.85751","-85.02182","Lake","MI","Michigan","TRUE","","5311","16.2","26035","Clare","{""26035"": ""74.46"", ""26073"": ""23.73"", ""26133"": ""1.81""}","Clare|Isabella|Osceola","26035|26073|26133","FALSE","FALSE","America/Detroit"
-"48633","43.93715","-84.93121","Lake George","MI","Michigan","TRUE","","107","16.0","26035","Clare","{""26035"": ""100""}","Clare","26035","FALSE","FALSE","America/Detroit"
-"48634","43.75358","-84.06081","Linwood","MI","Michigan","TRUE","","4298","35.7","26017","Bay","{""26017"": ""100""}","Bay","26017","FALSE","FALSE","America/Detroit"
-"48635","44.39543","-84.00128","Lupton","MI","Michigan","TRUE","","1510","10.1","26129","Ogemaw","{""26129"": ""100""}","Ogemaw","26129","FALSE","FALSE","America/Detroit"
-"48636","44.60008","-84.29318","Luzerne","MI","Michigan","TRUE","","782","3.4","26135","Oscoda","{""26135"": ""100""}","Oscoda","26135","FALSE","FALSE","America/Detroit"
-"48637","43.41327","-84.33678","Merrill","MI","Michigan","TRUE","","3163","16.8","26145","Saginaw","{""26145"": ""81.04"", ""26111"": ""11.73"", ""26057"": ""7.23""}","Saginaw|Midland|Gratiot","26145|26111|26057","FALSE","FALSE","America/Detroit"
-"48638","43.41704","-84.01958","Saginaw","MI","Michigan","TRUE","","11692","683.3","26145","Saginaw","{""26145"": ""100""}","Saginaw","26145","FALSE","FALSE","America/Detroit"
-"48640","43.58564","-84.33573","Midland","MI","Michigan","TRUE","","32202","123.1","26111","Midland","{""26111"": ""100""}","Midland","26111","FALSE","FALSE","America/Detroit"
-"48642","43.70615","-84.22942","Midland","MI","Michigan","TRUE","","33259","112.3","26111","Midland","{""26111"": ""93.86"", ""26017"": ""6.14""}","Midland|Bay","26111|26017","FALSE","FALSE","America/Detroit"
-"48647","44.65892","-84.10486","Mio","MI","Michigan","TRUE","","4384","12.0","26135","Oscoda","{""26135"": ""99.93"", ""26001"": ""0.07""}","Oscoda|Alcona","26135|26001","FALSE","FALSE","America/Detroit"
-"48649","43.15577","-84.21534","Oakley","MI","Michigan","TRUE","","1253","18.7","26145","Saginaw","{""26145"": ""97.59"", ""26155"": ""2.41""}","Saginaw|Shiawassee","26145|26155","FALSE","FALSE","America/Detroit"
-"48650","43.8503","-84.01348","Pinconning","MI","Michigan","TRUE","","6995","27.5","26017","Bay","{""26017"": ""93.2"", ""26011"": ""6.8""}","Bay|Arenac","26017|26011","FALSE","FALSE","America/Detroit"
-"48651","44.25569","-84.6156","Prudenville","MI","Michigan","TRUE","","4740","27.5","26143","Roscommon","{""26143"": ""100""}","Roscommon","26143","FALSE","FALSE","America/Detroit"
-"48652","43.85571","-84.20511","Rhodes","MI","Michigan","TRUE","","1647","11.9","26051","Gladwin","{""26051"": ""54.52"", ""26017"": ""30.62"", ""26111"": ""14.86""}","Gladwin|Bay|Midland","26051|26017|26111","FALSE","FALSE","America/Detroit"
-"48653","44.48783","-84.60048","Roscommon","MI","Michigan","TRUE","","10084","15.5","26143","Roscommon","{""26143"": ""72.22"", ""26039"": ""27.78""}","Roscommon|Crawford","26143|26039","FALSE","FALSE","America/Detroit"
-"48654","44.45598","-84.13163","Rose City","MI","Michigan","TRUE","","2215","9.0","26129","Ogemaw","{""26129"": ""89.96"", ""26135"": ""10.04""}","Ogemaw|Oscoda","26129|26135","FALSE","FALSE","America/Detroit"
-"48655","43.29223","-84.15912","Saint Charles","MI","Michigan","TRUE","","5688","23.2","26145","Saginaw","{""26145"": ""100""}","Saginaw","26145","FALSE","FALSE","America/Detroit"
-"48656","44.34819","-84.44879","Saint Helen","MI","Michigan","TRUE","","3875","11.3","26143","Roscommon","{""26143"": ""100""}","Roscommon","26143","FALSE","FALSE","America/Detroit"
-"48657","43.7109","-84.42066","Sanford","MI","Michigan","TRUE","","7871","49.2","26111","Midland","{""26111"": ""100""}","Midland","26111","FALSE","FALSE","America/Detroit"
-"48658","43.98067","-83.93686","Standish","MI","Michigan","TRUE","","4915","23.3","26011","Arenac","{""26011"": ""95.5"", ""26017"": ""4.5""}","Arenac|Bay","26011|26017","FALSE","FALSE","America/Detroit"
-"48659","44.06686","-84.05049","Sterling","MI","Michigan","TRUE","","2758","13.4","26011","Arenac","{""26011"": ""98"", ""26017"": ""2""}","Arenac|Bay","26011|26017","FALSE","FALSE","America/Detroit"
-"48661","44.3289","-84.24079","West Branch","MI","Michigan","TRUE","","10469","15.2","26129","Ogemaw","{""26129"": ""100""}","Ogemaw","26129","FALSE","FALSE","America/Detroit"
-"48662","43.41115","-84.41098","Wheeler","MI","Michigan","TRUE","","1659","13.8","26057","Gratiot","{""26057"": ""80.3"", ""26111"": ""19.7""}","Gratiot|Midland","26057|26111","FALSE","FALSE","America/Detroit"
-"48667","43.60217","-84.23409","Midland","MI","Michigan","TRUE","","0","0.0","26111","Midland","{""26111"": ""0""}","Midland","26111","FALSE","FALSE","America/Detroit"
-"48701","43.58606","-83.54525","Akron","MI","Michigan","TRUE","","1420","12.9","26157","Tuscola","{""26157"": ""100""}","Tuscola","26157","FALSE","FALSE","America/Detroit"
-"48703","44.0631","-83.67161","Au Gres","MI","Michigan","TRUE","","2939","26.0","26011","Arenac","{""26011"": ""100""}","Arenac","26011","FALSE","FALSE","America/Detroit"
-"48705","44.70086","-83.65359","Barton City","MI","Michigan","TRUE","","511","2.2","26001","Alcona","{""26001"": ""100""}","Alcona","26001","FALSE","FALSE","America/Detroit"
-"48706","43.59715","-83.95464","Bay City","MI","Michigan","TRUE","","39499","227.7","26017","Bay","{""26017"": ""100""}","Bay","26017","FALSE","FALSE","America/Detroit"
-"48708","43.5619","-83.84505","Bay City","MI","Michigan","TRUE","","25827","357.8","26017","Bay","{""26017"": ""99.9"", ""26145"": ""0.1""}","Bay|Saginaw","26017|26145","FALSE","FALSE","America/Detroit"
-"48710","43.55649","-83.98781","University Center","MI","Michigan","TRUE","","0","0.0","26017","Bay","{""26017"": ""0""}","Bay","26017","FALSE","FALSE","America/Detroit"
-"48720","43.83237","-83.35022","Bay Port","MI","Michigan","TRUE","","1036","12.5","26063","Huron","{""26063"": ""100""}","Huron","26063","FALSE","FALSE","America/Detroit"
-"48721","44.80516","-83.34552","Black River","MI","Michigan","TRUE","","472","6.6","26001","Alcona","{""26001"": ""100""}","Alcona","26001","FALSE","FALSE","America/Detroit"
-"48722","43.34833","-83.8418","Bridgeport","MI","Michigan","TRUE","","3068","68.9","26145","Saginaw","{""26145"": ""100""}","Saginaw","26145","FALSE","FALSE","America/Detroit"
-"48723","43.4856","-83.387","Caro","MI","Michigan","TRUE","","12050","35.8","26157","Tuscola","{""26157"": ""100""}","Tuscola","26157","FALSE","FALSE","America/Detroit"
-"48724","43.46004","-83.92283","Carrollton","MI","Michigan","TRUE","","544","608.6","26145","Saginaw","{""26145"": ""100""}","Saginaw","26145","FALSE","FALSE","America/Detroit"
-"48725","43.93738","-83.2071","Caseville","MI","Michigan","TRUE","","2072","22.5","26063","Huron","{""26063"": ""100""}","Huron","26063","FALSE","FALSE","America/Detroit"
-"48726","43.60769","-83.16911","Cass City","MI","Michigan","TRUE","","5831","17.8","26157","Tuscola","{""26157"": ""83.04"", ""26151"": ""13.56"", ""26063"": ""3.4""}","Tuscola|Sanilac|Huron","26157|26151|26063","FALSE","FALSE","America/Detroit"
-"48727","43.30975","-83.17566","Clifford","MI","Michigan","TRUE","","1128","18.1","26087","Lapeer","{""26087"": ""67.69"", ""26157"": ""32.31""}","Lapeer|Tuscola","26087|26157","FALSE","FALSE","America/Detroit"
-"48728","44.73606","-83.82747","Curran","MI","Michigan","TRUE","","252","0.8","26001","Alcona","{""26001"": ""86.55"", ""26135"": ""13.45""}","Alcona|Oscoda","26001|26135","FALSE","FALSE","America/Detroit"
-"48729","43.49495","-83.17857","Deford","MI","Michigan","TRUE","","1479","13.1","26157","Tuscola","{""26157"": ""100""}","Tuscola","26157","FALSE","FALSE","America/Detroit"
-"48730","44.34876","-83.47091","East Tawas","MI","Michigan","TRUE","","4558","24.0","26069","Iosco","{""26069"": ""100""}","Iosco","26069","FALSE","FALSE","America/Detroit"
-"48731","43.84084","-83.1587","Elkton","MI","Michigan","TRUE","","1534","12.2","26063","Huron","{""26063"": ""100""}","Huron","26063","FALSE","FALSE","America/Detroit"
-"48732","43.60666","-83.78266","Essexville","MI","Michigan","TRUE","","11173","175.5","26017","Bay","{""26017"": ""100""}","Bay","26017","FALSE","FALSE","America/Detroit"
-"48733","43.53286","-83.5907","Fairgrove","MI","Michigan","TRUE","","1587","12.5","26157","Tuscola","{""26157"": ""100""}","Tuscola","26157","FALSE","FALSE","America/Detroit"
-"48734","43.35437","-83.74436","Frankenmuth","MI","Michigan","TRUE","","7601","71.9","26145","Saginaw","{""26145"": ""98.12"", ""26157"": ""1.88""}","Saginaw|Tuscola","26145|26157","FALSE","FALSE","America/Detroit"
-"48735","43.66824","-83.27345","Gagetown","MI","Michigan","TRUE","","1049","10.9","26157","Tuscola","{""26157"": ""67.46"", ""26063"": ""32.54""}","Tuscola|Huron","26157|26063","FALSE","FALSE","America/Detroit"
-"48737","44.55041","-83.69879","Glennie","MI","Michigan","TRUE","","1226","4.6","26001","Alcona","{""26001"": ""87.95"", ""26069"": ""12.05""}","Alcona|Iosco","26001|26069","FALSE","FALSE","America/Detroit"
-"48738","44.55187","-83.33286","Greenbush","MI","Michigan","TRUE","","1085","38.5","26001","Alcona","{""26001"": ""91.1"", ""26069"": ""8.9""}","Alcona|Iosco","26001|26069","FALSE","FALSE","America/Detroit"
-"48739","44.37289","-83.84006","Hale","MI","Michigan","TRUE","","4007","16.6","26069","Iosco","{""26069"": ""77.2"", ""26129"": ""22.8""}","Iosco|Ogemaw","26069|26129","FALSE","FALSE","America/Detroit"
-"48740","44.66021","-83.37952","Harrisville","MI","Michigan","TRUE","","2425","13.9","26001","Alcona","{""26001"": ""100""}","Alcona","26001","FALSE","FALSE","America/Detroit"
-"48741","43.40514","-83.18348","Kingston","MI","Michigan","TRUE","","1924","16.2","26157","Tuscola","{""26157"": ""100""}","Tuscola","26157","FALSE","FALSE","America/Detroit"
-"48742","44.72833","-83.4436","Lincoln","MI","Michigan","TRUE","","1618","8.4","26001","Alcona","{""26001"": ""100""}","Alcona","26001","FALSE","FALSE","America/Detroit"
-"48743","44.43963","-83.86964","Long Lake","MI","Michigan","TRUE","","90","17.0","26069","Iosco","{""26069"": ""100""}","Iosco","26069","FALSE","FALSE","America/Detroit"
-"48744","43.3477","-83.36059","Mayville","MI","Michigan","TRUE","","4128","24.6","26157","Tuscola","{""26157"": ""91.55"", ""26087"": ""8.45""}","Tuscola|Lapeer","26157|26087","FALSE","FALSE","America/Detroit"
-"48745","44.56994","-83.47269","Mikado","MI","Michigan","TRUE","","1264","6.5","26001","Alcona","{""26001"": ""98.81"", ""26069"": ""1.19""}","Alcona|Iosco","26001|26069","FALSE","FALSE","America/Detroit"
-"48746","43.265","-83.54281","Millington","MI","Michigan","TRUE","","7904","37.5","26157","Tuscola","{""26157"": ""90.31"", ""26049"": ""9.69""}","Tuscola|Genesee","26157|26049","FALSE","FALSE","America/Detroit"
-"48747","43.52176","-83.76125","Munger","MI","Michigan","TRUE","","1288","16.2","26017","Bay","{""26017"": ""98.59"", ""26145"": ""1.41""}","Bay|Saginaw","26017|26145","FALSE","FALSE","America/Detroit"
-"48748","44.30406","-83.66737","National City","MI","Michigan","TRUE","","1662","13.9","26069","Iosco","{""26069"": ""100""}","Iosco","26069","FALSE","FALSE","America/Detroit"
-"48749","44.0546","-83.88724","Omer","MI","Michigan","TRUE","","1105","12.3","26011","Arenac","{""26011"": ""100""}","Arenac","26011","FALSE","FALSE","America/Detroit"
-"48750","44.44325","-83.45426","Oscoda","MI","Michigan","TRUE","","8629","34.7","26069","Iosco","{""26069"": ""99.36"", ""26001"": ""0.64""}","Iosco|Alcona","26069|26001","FALSE","FALSE","America/Detroit"
-"48754","43.73368","-83.23591","Owendale","MI","Michigan","TRUE","","965","10.2","26063","Huron","{""26063"": ""100""}","Huron","26063","FALSE","FALSE","America/Detroit"
-"48755","43.83422","-83.27021","Pigeon","MI","Michigan","TRUE","","2993","22.8","26063","Huron","{""26063"": ""100""}","Huron","26063","FALSE","FALSE","America/Detroit"
-"48756","44.22939","-83.97408","Prescott","MI","Michigan","TRUE","","4630","22.9","26129","Ogemaw","{""26129"": ""100""}","Ogemaw","26129","FALSE","FALSE","America/Detroit"
-"48757","43.46941","-83.67944","Reese","MI","Michigan","TRUE","","3742","26.2","26157","Tuscola","{""26157"": ""76.37"", ""26145"": ""21.69"", ""26017"": ""1.94""}","Tuscola|Saginaw|Bay","26157|26145|26017","FALSE","FALSE","America/Detroit"
-"48759","43.72871","-83.39381","Sebewaing","MI","Michigan","TRUE","","3211","24.9","26063","Huron","{""26063"": ""99.09"", ""26157"": ""0.91""}","Huron|Tuscola","26063|26157","FALSE","FALSE","America/Detroit"
-"48760","43.32116","-83.25754","Silverwood","MI","Michigan","TRUE","","1419","20.0","26157","Tuscola","{""26157"": ""54.7"", ""26087"": ""45.3""}","Tuscola|Lapeer","26157|26087","FALSE","FALSE","America/Detroit"
-"48761","44.51192","-83.8924","South Branch","MI","Michigan","TRUE","","841","3.7","26069","Iosco","{""26069"": ""48.54"", ""26129"": ""27.19"", ""26001"": ""20.47"", ""26135"": ""3.8""}","Iosco|Ogemaw|Alcona|Oscoda","26069|26129|26001|26135","FALSE","FALSE","America/Detroit"
-"48762","44.81744","-83.4888","Spruce","MI","Michigan","TRUE","","1097","9.4","26001","Alcona","{""26001"": ""83.23"", ""26007"": ""16.77""}","Alcona|Alpena","26001|26007","FALSE","FALSE","America/Detroit"
-"48763","44.25253","-83.61271","Tawas City","MI","Michigan","TRUE","","4951","20.5","26069","Iosco","{""26069"": ""91.92"", ""26011"": ""8.08""}","Iosco|Arenac","26069|26011","FALSE","FALSE","America/Detroit"
-"48765","44.15241","-83.7179","Turner","MI","Michigan","TRUE","","711","5.0","26011","Arenac","{""26011"": ""68.28"", ""26069"": ""31.72""}","Arenac|Iosco","26011|26069","FALSE","FALSE","America/Detroit"
-"48766","44.11105","-83.84696","Twining","MI","Michigan","TRUE","","1251","9.3","26011","Arenac","{""26011"": ""100""}","Arenac","26011","FALSE","FALSE","America/Detroit"
-"48767","43.64224","-83.45716","Unionville","MI","Michigan","TRUE","","2060","10.7","26157","Tuscola","{""26157"": ""98.84"", ""26063"": ""1.16""}","Tuscola|Huron","26157|26063","FALSE","FALSE","America/Detroit"
-"48768","43.37136","-83.57789","Vassar","MI","Michigan","TRUE","","9697","35.7","26157","Tuscola","{""26157"": ""100""}","Tuscola","26157","FALSE","FALSE","America/Detroit"
-"48770","44.24876","-83.82086","Whittemore","MI","Michigan","TRUE","","1774","10.1","26069","Iosco","{""26069"": ""100""}","Iosco","26069","FALSE","FALSE","America/Detroit"
-"48801","43.3777","-84.67974","Alma","MI","Michigan","TRUE","","12691","68.6","26057","Gratiot","{""26057"": ""100""}","Gratiot","26057","FALSE","FALSE","America/Detroit"
-"48806","43.18499","-84.49754","Ashley","MI","Michigan","TRUE","","1523","9.1","26057","Gratiot","{""26057"": ""100""}","Gratiot","26057","FALSE","FALSE","America/Detroit"
-"48807","43.15305","-84.40478","Bannister","MI","Michigan","TRUE","","853","11.8","26057","Gratiot","{""26057"": ""70.09"", ""26145"": ""29.91""}","Gratiot|Saginaw","26057|26145","FALSE","FALSE","America/Detroit"
-"48808","42.82554","-84.44828","Bath","MI","Michigan","TRUE","","5943","93.1","26037","Clinton","{""26037"": ""100""}","Clinton","26037","FALSE","FALSE","America/Detroit"
-"48809","43.06537","-85.25823","Belding","MI","Michigan","TRUE","","10728","50.5","26067","Ionia","{""26067"": ""85.24"", ""26081"": ""14.7"", ""26117"": ""0.06""}","Ionia|Kent|Montcalm","26067|26081|26117","FALSE","FALSE","America/Detroit"
-"48811","43.1811","-84.855","Carson City","MI","Michigan","TRUE","","5390","33.1","26117","Montcalm","{""26117"": ""93.39"", ""26057"": ""6.61""}","Montcalm|Gratiot","26117|26057","FALSE","FALSE","America/Detroit"
-"48813","42.58015","-84.8454","Charlotte","MI","Michigan","TRUE","","20967","47.7","26045","Eaton","{""26045"": ""99.88"", ""26025"": ""0.12""}","Eaton|Calhoun","26045|26025","FALSE","FALSE","America/Detroit"
-"48815","42.84126","-85.25708","Clarksville","MI","Michigan","TRUE","","2424","34.1","26067","Ionia","{""26067"": ""98.63"", ""26081"": ""1.37""}","Ionia|Kent","26067|26081","FALSE","FALSE","America/Detroit"
-"48816","42.76398","-83.95447","Cohoctah","MI","Michigan","TRUE","","36","30.1","26093","Livingston","{""26093"": ""100""}","Livingston","26093","FALSE","FALSE","America/Detroit"
-"48817","43.01789","-84.03859","Corunna","MI","Michigan","TRUE","","6075","39.7","26155","Shiawassee","{""26155"": ""100""}","Shiawassee","26155","FALSE","FALSE","America/Detroit"
-"48818","43.27546","-84.89218","Crystal","MI","Michigan","TRUE","","2392","36.6","26117","Montcalm","{""26117"": ""100""}","Montcalm","26117","FALSE","FALSE","America/Detroit"
-"48819","42.54638","-84.28531","Dansville","MI","Michigan","TRUE","","2738","23.8","26065","Ingham","{""26065"": ""100""}","Ingham","26065","FALSE","FALSE","America/Detroit"
-"48820","42.86302","-84.5929","Dewitt","MI","Michigan","TRUE","","18187","106.9","26037","Clinton","{""26037"": ""100""}","Clinton","26037","FALSE","FALSE","America/Detroit"
-"48821","42.63938","-84.64707","Dimondale","MI","Michigan","TRUE","","5862","106.8","26045","Eaton","{""26045"": ""94.71"", ""26065"": ""5.29""}","Eaton|Ingham","26045|26065","FALSE","FALSE","America/Detroit"
-"48822","42.83332","-84.76068","Eagle","MI","Michigan","TRUE","","2888","34.5","26037","Clinton","{""26037"": ""100""}","Clinton","26037","FALSE","FALSE","America/Detroit"
-"48823","42.76191","-84.45389","East Lansing","MI","Michigan","TRUE","","51469","887.0","26065","Ingham","{""26065"": ""85.5"", ""26037"": ""14.5""}","Ingham|Clinton","26065|26037","FALSE","FALSE","America/Detroit"
-"48825","42.72701","-84.48087","East Lansing","MI","Michigan","TRUE","","12829","3992.4","26065","Ingham","{""26065"": ""100""}","Ingham","26065","FALSE","FALSE","America/Detroit"
-"48827","42.50912","-84.65979","Eaton Rapids","MI","Michigan","TRUE","","16116","55.7","26045","Eaton","{""26045"": ""88.01"", ""26065"": ""11.7"", ""26075"": ""0.29""}","Eaton|Ingham|Jackson","26045|26065|26075","FALSE","FALSE","America/Detroit"
-"48829","43.40119","-85.0202","Edmore","MI","Michigan","TRUE","","3360","19.8","26117","Montcalm","{""26117"": ""98.16"", ""26073"": ""1.84""}","Montcalm|Isabella","26117|26073","FALSE","FALSE","America/Detroit"
-"48831","43.10289","-84.37169","Elsie","MI","Michigan","TRUE","","3473","18.4","26037","Clinton","{""26037"": ""61.85"", ""26155"": ""20.64"", ""26145"": ""16.63"", ""26057"": ""0.88""}","Clinton|Shiawassee|Saginaw|Gratiot","26037|26155|26145|26057","FALSE","FALSE","America/Detroit"
-"48832","43.41464","-84.78014","Elwell","MI","Michigan","TRUE","","1465","21.8","26057","Gratiot","{""26057"": ""100""}","Gratiot","26057","FALSE","FALSE","America/Detroit"
-"48834","43.13224","-85.02952","Fenwick","MI","Michigan","TRUE","","2275","19.0","26117","Montcalm","{""26117"": ""68.42"", ""26067"": ""31.58""}","Montcalm|Ionia","26117|26067","FALSE","FALSE","America/Detroit"
-"48835","43.02831","-84.74686","Fowler","MI","Michigan","TRUE","","3109","21.4","26037","Clinton","{""26037"": ""99.07"", ""26057"": ""0.93""}","Clinton|Gratiot","26037|26057","FALSE","FALSE","America/Detroit"
-"48836","42.67078","-84.07467","Fowlerville","MI","Michigan","TRUE","","13967","58.0","26093","Livingston","{""26093"": ""100""}","Livingston","26093","FALSE","FALSE","America/Detroit"
-"48837","42.74646","-84.7684","Grand Ledge","MI","Michigan","TRUE","","19603","95.2","26045","Eaton","{""26045"": ""88.09"", ""26037"": ""10.84"", ""26067"": ""1.07""}","Eaton|Clinton|Ionia","26045|26037|26067","FALSE","FALSE","America/Detroit"
-"48838","43.18392","-85.25749","Greenville","MI","Michigan","TRUE","","18376","76.8","26117","Montcalm","{""26117"": ""85.66"", ""26081"": ""14.17"", ""26067"": ""0.16""}","Montcalm|Kent|Ionia","26117|26081|26067","FALSE","FALSE","America/Detroit"
-"48840","42.76902","-84.37066","Haslett","MI","Michigan","TRUE","","12685","253.1","26065","Ingham","{""26065"": ""85.69"", ""26037"": ""8.86"", ""26155"": ""5.45""}","Ingham|Clinton|Shiawassee","26065|26037|26155","FALSE","FALSE","America/Detroit"
-"48841","43.11434","-84.237","Henderson","MI","Michigan","TRUE","","723","11.8","26155","Shiawassee","{""26155"": ""75.79"", ""26145"": ""24.21""}","Shiawassee|Saginaw","26155|26145","FALSE","FALSE","America/Detroit"
-"48842","42.63384","-84.53868","Holt","MI","Michigan","TRUE","","21974","471.9","26065","Ingham","{""26065"": ""100""}","Ingham","26065","FALSE","FALSE","America/Detroit"
-"48843","42.56904","-83.92628","Howell","MI","Michigan","TRUE","","45544","195.3","26093","Livingston","{""26093"": ""100""}","Livingston","26093","FALSE","FALSE","America/Detroit"
-"48845","43.10442","-84.8479","Hubbardston","MI","Michigan","TRUE","","900","14.2","26067","Ionia","{""26067"": ""73.48"", ""26037"": ""15.75"", ""26117"": ""8.08"", ""26057"": ""2.69""}","Ionia|Clinton|Montcalm|Gratiot","26067|26037|26117|26057","FALSE","FALSE","America/Detroit"
-"48846","42.98705","-85.05756","Ionia","MI","Michigan","TRUE","","20472","72.9","26067","Ionia","{""26067"": ""100""}","Ionia","26067","FALSE","FALSE","America/Detroit"
-"48847","43.27111","-84.57475","Ithaca","MI","Michigan","TRUE","","5811","18.3","26057","Gratiot","{""26057"": ""100""}","Gratiot","26057","FALSE","FALSE","America/Detroit"
-"48848","42.88721","-84.35562","Laingsburg","MI","Michigan","TRUE","","7444","43.5","26155","Shiawassee","{""26155"": ""63.74"", ""26037"": ""36.26""}","Shiawassee|Clinton","26155|26037","FALSE","FALSE","America/Detroit"
-"48849","42.80093","-85.13199","Lake Odessa","MI","Michigan","TRUE","","6000","27.9","26067","Ionia","{""26067"": ""82.16"", ""26015"": ""15.46"", ""26045"": ""2.38""}","Ionia|Barry|Eaton","26067|26015|26045","FALSE","FALSE","America/Detroit"
-"48850","43.43784","-85.25416","Lakeview","MI","Michigan","TRUE","","4647","22.2","26117","Montcalm","{""26117"": ""81.96"", ""26107"": ""18.04""}","Montcalm|Mecosta","26117|26107","FALSE","FALSE","America/Detroit"
-"48851","42.95567","-84.93978","Lyons","MI","Michigan","TRUE","","2161","26.8","26067","Ionia","{""26067"": ""100""}","Ionia","26067","FALSE","FALSE","America/Detroit"
-"48852","43.35167","-85.04608","Mcbrides","MI","Michigan","TRUE","","189","174.6","26117","Montcalm","{""26117"": ""100""}","Montcalm","26117","FALSE","FALSE","America/Detroit"
-"48853","43.10129","-84.69016","Maple Rapids","MI","Michigan","TRUE","","542","223.8","26037","Clinton","{""26037"": ""100""}","Clinton","26037","FALSE","FALSE","America/Detroit"
-"48854","42.58201","-84.45163","Mason","MI","Michigan","TRUE","","19737","68.4","26065","Ingham","{""26065"": ""100""}","Ingham","26065","FALSE","FALSE","America/Detroit"
-"48855","42.68702","-83.91404","Howell","MI","Michigan","TRUE","","15704","66.7","26093","Livingston","{""26093"": ""100""}","Livingston","26093","FALSE","FALSE","America/Detroit"
-"48856","43.2","-84.73662","Middleton","MI","Michigan","TRUE","","817","11.5","26057","Gratiot","{""26057"": ""100""}","Gratiot","26057","FALSE","FALSE","America/Detroit"
-"48857","42.84251","-84.1553","Morrice","MI","Michigan","TRUE","","3202","53.9","26155","Shiawassee","{""26155"": ""100""}","Shiawassee","26155","FALSE","FALSE","America/Detroit"
-"48858","43.61519","-84.79615","Mount Pleasant","MI","Michigan","TRUE","","50521","112.8","26073","Isabella","{""26073"": ""99.67"", ""26111"": ""0.33""}","Isabella|Midland","26073|26111","FALSE","FALSE","America/Detroit"
-"48860","43.05232","-84.91093","Muir","MI","Michigan","TRUE","","1771","23.1","26067","Ionia","{""26067"": ""100""}","Ionia","26067","FALSE","FALSE","America/Detroit"
-"48861","42.7306","-84.92028","Mulliken","MI","Michigan","TRUE","","1379","22.7","26045","Eaton","{""26045"": ""90.74"", ""26067"": ""9.26""}","Eaton|Ionia","26045|26067","FALSE","FALSE","America/Detroit"
-"48864","42.70133","-84.40675","Okemos","MI","Michigan","TRUE","","23451","419.9","26065","Ingham","{""26065"": ""100""}","Ingham","26065","FALSE","FALSE","America/Detroit"
-"48865","43.087","-85.10561","Orleans","MI","Michigan","TRUE","","2158","37.3","26067","Ionia","{""26067"": ""100""}","Ionia","26067","FALSE","FALSE","America/Detroit"
-"48866","42.99488","-84.37438","Ovid","MI","Michigan","TRUE","","4942","39.2","26037","Clinton","{""26037"": ""72.25"", ""26155"": ""27.75""}","Clinton|Shiawassee","26037|26155","FALSE","FALSE","America/Detroit"
-"48867","43.00318","-84.1886","Owosso","MI","Michigan","TRUE","","27186","76.2","26155","Shiawassee","{""26155"": ""100""}","Shiawassee","26155","FALSE","FALSE","America/Detroit"
-"48870","43.11037","-84.98474","Palo","MI","Michigan","TRUE","","191","1246.7","26067","Ionia","{""26067"": ""100""}","Ionia","26067","FALSE","FALSE","America/Detroit"
-"48871","43.15437","-84.67549","Perrinton","MI","Michigan","TRUE","","2093","26.7","26057","Gratiot","{""26057"": ""100""}","Gratiot","26057","FALSE","FALSE","America/Detroit"
-"48872","42.80075","-84.21794","Perry","MI","Michigan","TRUE","","6767","46.4","26155","Shiawassee","{""26155"": ""91.45"", ""26065"": ""5.6"", ""26093"": ""2.95""}","Shiawassee|Ingham|Livingston","26155|26065|26093","FALSE","FALSE","America/Detroit"
-"48873","42.99628","-84.84343","Pewamo","MI","Michigan","TRUE","","1483","17.1","26067","Ionia","{""26067"": ""83.28"", ""26037"": ""16.72""}","Ionia|Clinton","26067|26037","FALSE","FALSE","America/Detroit"
-"48874","43.18645","-84.59493","Pompeii","MI","Michigan","TRUE","","188","126.0","26057","Gratiot","{""26057"": ""100""}","Gratiot","26057","FALSE","FALSE","America/Detroit"
-"48875","42.85933","-84.92965","Portland","MI","Michigan","TRUE","","10432","46.7","26067","Ionia","{""26067"": ""95.59"", ""26037"": ""4.41""}","Ionia|Clinton","26067|26037","FALSE","FALSE","America/Detroit"
-"48876","42.64556","-84.7357","Potterville","MI","Michigan","TRUE","","4172","116.4","26045","Eaton","{""26045"": ""100""}","Eaton","26045","FALSE","FALSE","America/Detroit"
-"48877","43.40172","-84.84284","Riverdale","MI","Michigan","TRUE","","2459","28.2","26057","Gratiot","{""26057"": ""62.08"", ""26117"": ""33.11"", ""26073"": ""4.81""}","Gratiot|Montcalm|Isabella","26057|26117|26073","FALSE","FALSE","America/Detroit"
-"48878","43.71229","-84.77694","Rosebush","MI","Michigan","TRUE","","1386","16.7","26073","Isabella","{""26073"": ""100""}","Isabella","26073","FALSE","FALSE","America/Detroit"
-"48879","43.0043","-84.57907","Saint Johns","MI","Michigan","TRUE","","17980","36.7","26037","Clinton","{""26037"": ""99.16"", ""26057"": ""0.84""}","Clinton|Gratiot","26037|26057","FALSE","FALSE","America/Detroit"
-"48880","43.4576","-84.56832","Saint Louis","MI","Michigan","TRUE","","10034","51.6","26057","Gratiot","{""26057"": ""89.46"", ""26111"": ""9.01"", ""26073"": ""1.54""}","Gratiot|Midland|Isabella","26057|26111|26073","FALSE","FALSE","America/Detroit"
-"48881","42.93281","-85.20153","Saranac","MI","Michigan","TRUE","","5560","38.5","26067","Ionia","{""26067"": ""100""}","Ionia","26067","FALSE","FALSE","America/Detroit"
-"48883","43.54186","-84.66863","Shepherd","MI","Michigan","TRUE","","6822","22.4","26073","Isabella","{""26073"": ""74.11"", ""26111"": ""25.89""}","Isabella|Midland","26073|26111","FALSE","FALSE","America/Detroit"
-"48884","43.2083","-85.04322","Sheridan","MI","Michigan","TRUE","","4440","28.2","26117","Montcalm","{""26117"": ""100""}","Montcalm","26117","FALSE","FALSE","America/Detroit"
-"48885","43.24983","-85.14445","Sidney","MI","Michigan","TRUE","","972","22.1","26117","Montcalm","{""26117"": ""100""}","Montcalm","26117","FALSE","FALSE","America/Detroit"
-"48886","43.41909","-85.16183","Six Lakes","MI","Michigan","TRUE","","1956","25.3","26117","Montcalm","{""26117"": ""97.59"", ""26107"": ""2.41""}","Montcalm|Mecosta","26117|26107","FALSE","FALSE","America/Detroit"
-"48888","43.31038","-85.09559","Stanton","MI","Michigan","TRUE","","6079","26.5","26117","Montcalm","{""26117"": ""100""}","Montcalm","26117","FALSE","FALSE","America/Detroit"
-"48889","43.29162","-84.7976","Sumner","MI","Michigan","TRUE","","1300","17.0","26057","Gratiot","{""26057"": ""100""}","Gratiot","26057","FALSE","FALSE","America/Detroit"
-"48890","42.76963","-84.96872","Sunfield","MI","Michigan","TRUE","","2059","25.6","26045","Eaton","{""26045"": ""59.99"", ""26067"": ""40.01""}","Eaton|Ionia","26045|26067","FALSE","FALSE","America/Detroit"
-"48891","43.39589","-84.91364","Vestaburg","MI","Michigan","TRUE","","2807","25.3","26117","Montcalm","{""26117"": ""100""}","Montcalm","26117","FALSE","FALSE","America/Detroit"
-"48892","42.63649","-84.1745","Webberville","MI","Michigan","TRUE","","4753","33.8","26065","Ingham","{""26065"": ""81.24"", ""26093"": ""18.76""}","Ingham|Livingston","26065|26093","FALSE","FALSE","America/Detroit"
-"48893","43.683","-84.97788","Weidman","MI","Michigan","TRUE","","5244","39.5","26073","Isabella","{""26073"": ""100""}","Isabella","26073","FALSE","FALSE","America/Detroit"
-"48894","42.92452","-84.78564","Westphalia","MI","Michigan","TRUE","","1938","26.0","26037","Clinton","{""26037"": ""100""}","Clinton","26037","FALSE","FALSE","America/Detroit"
-"48895","42.68872","-84.2796","Williamston","MI","Michigan","TRUE","","11437","53.2","26065","Ingham","{""26065"": ""100""}","Ingham","26065","FALSE","FALSE","America/Detroit"
-"48896","43.52128","-84.90102","Winn","MI","Michigan","TRUE","","306","433.6","26073","Isabella","{""26073"": ""100""}","Isabella","26073","FALSE","FALSE","America/Detroit"
-"48897","42.7068","-85.13214","Woodland","MI","Michigan","TRUE","","1846","22.0","26015","Barry","{""26015"": ""98.1"", ""26045"": ""1.9""}","Barry|Eaton","26015|26045","FALSE","FALSE","America/Detroit"
-"48906","42.78453","-84.58759","Lansing","MI","Michigan","TRUE","","26391","307.2","26065","Ingham","{""26065"": ""68.33"", ""26037"": ""28.4"", ""26045"": ""3.27""}","Ingham|Clinton|Eaton","26065|26037|26045","FALSE","FALSE","America/Detroit"
-"48910","42.69853","-84.52299","Lansing","MI","Michigan","TRUE","","35183","893.4","26065","Ingham","{""26065"": ""100""}","Ingham","26065","FALSE","FALSE","America/Detroit"
-"48911","42.67443","-84.57087","Lansing","MI","Michigan","TRUE","","40852","991.9","26065","Ingham","{""26065"": ""87.31"", ""26045"": ""12.69""}","Ingham|Eaton","26065|26045","FALSE","FALSE","America/Detroit"
-"48912","42.7402","-84.52354","Lansing","MI","Michigan","TRUE","","17452","1403.1","26065","Ingham","{""26065"": ""100""}","Ingham","26065","FALSE","FALSE","America/Detroit"
-"48915","42.7382","-84.57099","Lansing","MI","Michigan","TRUE","","10740","2285.7","26065","Ingham","{""26065"": ""100""}","Ingham","26065","FALSE","FALSE","America/Detroit"
-"48917","42.72379","-84.63995","Lansing","MI","Michigan","TRUE","","32044","508.8","26045","Eaton","{""26045"": ""83.2"", ""26065"": ""16.8""}","Eaton|Ingham","26045|26065","FALSE","FALSE","America/Detroit"
-"48933","42.7325","-84.55428","Lansing","MI","Michigan","TRUE","","2637","1348.7","26065","Ingham","{""26065"": ""100""}","Ingham","26065","FALSE","FALSE","America/Detroit"
-"49001","42.26472","-85.56245","Kalamazoo","MI","Michigan","TRUE","","21643","1085.8","26077","Kalamazoo","{""26077"": ""100""}","Kalamazoo","26077","FALSE","FALSE","America/Detroit"
-"49002","42.19737","-85.56095","Portage","MI","Michigan","TRUE","","20739","453.4","26077","Kalamazoo","{""26077"": ""100""}","Kalamazoo","26077","FALSE","FALSE","America/Detroit"
-"49004","42.35183","-85.56203","Kalamazoo","MI","Michigan","TRUE","","16434","301.0","26077","Kalamazoo","{""26077"": ""100""}","Kalamazoo","26077","FALSE","FALSE","America/Detroit"
-"49006","42.29536","-85.63017","Kalamazoo","MI","Michigan","TRUE","","28711","1699.6","26077","Kalamazoo","{""26077"": ""100""}","Kalamazoo","26077","FALSE","FALSE","America/Detroit"
-"49007","42.30237","-85.58823","Kalamazoo","MI","Michigan","TRUE","","10097","1081.2","26077","Kalamazoo","{""26077"": ""100""}","Kalamazoo","26077","FALSE","FALSE","America/Detroit"
-"49008","42.26284","-85.61512","Kalamazoo","MI","Michigan","TRUE","","17012","1004.5","26077","Kalamazoo","{""26077"": ""100""}","Kalamazoo","26077","FALSE","FALSE","America/Detroit"
-"49009","42.30764","-85.69405","Kalamazoo","MI","Michigan","TRUE","","45267","170.3","26077","Kalamazoo","{""26077"": ""99.17"", ""26159"": ""0.83""}","Kalamazoo|Van Buren","26077|26159","FALSE","FALSE","America/Detroit"
-"49010","42.53463","-85.87431","Allegan","MI","Michigan","TRUE","","18001","43.8","26005","Allegan","{""26005"": ""99.48"", ""26159"": ""0.52""}","Allegan|Van Buren","26005|26159","FALSE","FALSE","America/Detroit"
-"49011","42.10523","-85.22291","Athens","MI","Michigan","TRUE","","2272","27.1","26025","Calhoun","{""26025"": ""96.28"", ""26023"": ""1.97"", ""26149"": ""1.75""}","Calhoun|Branch|St. Joseph","26025|26023|26149","FALSE","FALSE","America/Detroit"
-"49012","42.36122","-85.34642","Augusta","MI","Michigan","TRUE","","3356","41.8","26077","Kalamazoo","{""26077"": ""97.12"", ""26025"": ""2.88""}","Kalamazoo|Calhoun","26077|26025","FALSE","FALSE","America/Detroit"
-"49013","42.30567","-86.10846","Bangor","MI","Michigan","TRUE","","5301","34.7","26159","Van Buren","{""26159"": ""100""}","Van Buren","26159","FALSE","FALSE","America/Detroit"
-"49014","42.31108","-85.10611","Battle Creek","MI","Michigan","TRUE","","21481","109.7","26025","Calhoun","{""26025"": ""100""}","Calhoun","26025","FALSE","FALSE","America/Detroit"
-"49015","42.27125","-85.2261","Battle Creek","MI","Michigan","TRUE","","27465","450.5","26025","Calhoun","{""26025"": ""100""}","Calhoun","26025","FALSE","FALSE","America/Detroit"
-"49017","42.39988","-85.21207","Battle Creek","MI","Michigan","TRUE","","21238","147.8","26025","Calhoun","{""26025"": ""92.66"", ""26015"": ""7.34""}","Calhoun|Barry","26025|26015","FALSE","FALSE","America/Detroit"
-"49021","42.45915","-85.06393","Bellevue","MI","Michigan","TRUE","","6382","26.8","26045","Eaton","{""26045"": ""54.51"", ""26015"": ""34.07"", ""26025"": ""11.42""}","Eaton|Barry|Calhoun","26045|26015|26025","FALSE","FALSE","America/Detroit"
-"49022","42.11367","-86.36565","Benton Harbor","MI","Michigan","TRUE","","31185","175.0","26021","Berrien","{""26021"": ""99.22"", ""26159"": ""0.78""}","Berrien|Van Buren","26021|26159","FALSE","FALSE","America/Detroit"
-"49024","42.20269","-85.61906","Portage","MI","Michigan","TRUE","","29299","659.4","26077","Kalamazoo","{""26077"": ""100""}","Kalamazoo","26077","FALSE","FALSE","America/Detroit"
-"49026","42.3772","-85.96541","Bloomingdale","MI","Michigan","TRUE","","2364","30.9","26159","Van Buren","{""26159"": ""92.27"", ""26005"": ""7.73""}","Van Buren|Allegan","26159|26005","FALSE","FALSE","America/Detroit"
-"49027","42.34805","-86.06872","Breedsville","MI","Michigan","TRUE","","215","194.5","26159","Van Buren","{""26159"": ""100""}","Van Buren","26159","FALSE","FALSE","America/Detroit"
-"49028","41.84824","-85.18658","Bronson","MI","Michigan","TRUE","","6174","20.1","26023","Branch","{""26023"": ""100""}","Branch","26023","FALSE","FALSE","America/Detroit"
-"49029","42.14344","-85.09245","Burlington","MI","Michigan","TRUE","","1595","18.3","26025","Calhoun","{""26025"": ""100""}","Calhoun","26025","FALSE","FALSE","America/Detroit"
-"49030","41.85654","-85.33179","Burr Oak","MI","Michigan","TRUE","","2420","19.7","26149","St. Joseph","{""26149"": ""95.8"", ""26023"": ""4.2""}","St. Joseph|Branch","26149|26023","FALSE","FALSE","America/Detroit"
-"49031","41.89839","-85.9873","Cassopolis","MI","Michigan","TRUE","","7646","25.8","26027","Cass","{""26027"": ""100""}","Cass","26027","FALSE","FALSE","America/Detroit"
-"49032","41.91821","-85.5095","Centreville","MI","Michigan","TRUE","","3284","34.5","26149","St. Joseph","{""26149"": ""100""}","St. Joseph","26149","FALSE","FALSE","America/Detroit"
-"49033","42.2262","-85.09109","Ceresco","MI","Michigan","TRUE","","1698","20.3","26025","Calhoun","{""26025"": ""100""}","Calhoun","26025","FALSE","FALSE","America/Detroit"
-"49034","42.23117","-85.33688","Climax","MI","Michigan","TRUE","","2564","26.2","26077","Kalamazoo","{""26077"": ""91.92"", ""26025"": ""8.08""}","Kalamazoo|Calhoun","26077|26025","FALSE","FALSE","America/Detroit"
-"49036","41.90283","-85.02321","Coldwater","MI","Michigan","TRUE","","23685","58.1","26023","Branch","{""26023"": ""100""}","Branch","26023","FALSE","FALSE","America/Detroit"
-"49037","42.33243","-85.24827","Battle Creek","MI","Michigan","TRUE","","20647","321.5","26025","Calhoun","{""26025"": ""100""}","Calhoun","26025","FALSE","FALSE","America/Detroit"
-"49038","42.20296","-86.3258","Coloma","MI","Michigan","TRUE","","9267","94.9","26021","Berrien","{""26021"": ""95.7"", ""26159"": ""4.3""}","Berrien|Van Buren","26021|26159","FALSE","FALSE","America/Detroit"
-"49040","41.96419","-85.32892","Colon","MI","Michigan","TRUE","","3252","31.3","26149","St. Joseph","{""26149"": ""92.41"", ""26023"": ""7.59""}","St. Joseph|Branch","26149|26023","FALSE","FALSE","America/Detroit"
-"49042","41.85734","-85.66665","Constantine","MI","Michigan","TRUE","","4723","33.5","26149","St. Joseph","{""26149"": ""99.65"", ""26027"": ""0.35""}","St. Joseph|Cass","26149|26027","FALSE","FALSE","America/Detroit"
-"49043","42.28577","-86.26737","Covert","MI","Michigan","TRUE","","2106","25.1","26159","Van Buren","{""26159"": ""100""}","Van Buren","26159","FALSE","FALSE","America/Detroit"
-"49045","42.10531","-86.00067","Decatur","MI","Michigan","TRUE","","5322","23.7","26159","Van Buren","{""26159"": ""91.98"", ""26027"": ""8.02""}","Van Buren|Cass","26159|26027","FALSE","FALSE","America/Detroit"
-"49046","42.51237","-85.40322","Delton","MI","Michigan","TRUE","","7883","38.5","26015","Barry","{""26015"": ""100""}","Barry","26015","FALSE","FALSE","America/Detroit"
-"49047","42.00405","-86.12197","Dowagiac","MI","Michigan","TRUE","","14810","47.8","26027","Cass","{""26027"": ""93.25"", ""26159"": ""6.11"", ""26021"": ""0.64""}","Cass|Van Buren|Berrien","26027|26159|26021","FALSE","FALSE","America/Detroit"
-"49048","42.27284","-85.49849","Kalamazoo","MI","Michigan","TRUE","","25416","258.9","26077","Kalamazoo","{""26077"": ""100""}","Kalamazoo","26077","FALSE","FALSE","America/Detroit"
-"49050","42.5059","-85.23697","Dowling","MI","Michigan","TRUE","","1567","24.3","26015","Barry","{""26015"": ""100""}","Barry","26015","FALSE","FALSE","America/Detroit"
-"49051","42.1835","-85.24042","East Leroy","MI","Michigan","TRUE","","2796","36.7","26025","Calhoun","{""26025"": ""100""}","Calhoun","26025","FALSE","FALSE","America/Detroit"
-"49052","42.11428","-85.32073","Fulton","MI","Michigan","TRUE","","864","10.8","26077","Kalamazoo","{""26077"": ""74.87"", ""26025"": ""25.13""}","Kalamazoo|Calhoun","26077|26025","FALSE","FALSE","America/Detroit"
-"49053","42.28896","-85.4163","Galesburg","MI","Michigan","TRUE","","7640","122.5","26077","Kalamazoo","{""26077"": ""100""}","Kalamazoo","26077","FALSE","FALSE","America/Detroit"
-"49055","42.37012","-85.85335","Gobles","MI","Michigan","TRUE","","6342","41.6","26159","Van Buren","{""26159"": ""91.83"", ""26005"": ""8.17""}","Van Buren|Allegan","26159|26005","FALSE","FALSE","America/Detroit"
-"49056","42.4022","-86.06054","Grand Junction","MI","Michigan","TRUE","","3391","23.1","26159","Van Buren","{""26159"": ""63.05"", ""26005"": ""36.95""}","Van Buren|Allegan","26159|26005","FALSE","FALSE","America/Detroit"
-"49057","42.18365","-86.16402","Hartford","MI","Michigan","TRUE","","6459","48.4","26159","Van Buren","{""26159"": ""100""}","Van Buren","26159","FALSE","FALSE","America/Detroit"
-"49058","42.6319","-85.29211","Hastings","MI","Michigan","TRUE","","19122","50.1","26015","Barry","{""26015"": ""100""}","Barry","26015","FALSE","FALSE","America/Detroit"
-"49060","42.42654","-85.39533","Hickory Corners","MI","Michigan","TRUE","","1902","38.8","26015","Barry","{""26015"": ""67.55"", ""26077"": ""32.45""}","Barry|Kalamazoo","26015|26077","FALSE","FALSE","America/Detroit"
-"49061","41.87903","-85.82276","Jones","MI","Michigan","TRUE","","1605","16.5","26027","Cass","{""26027"": ""100""}","Cass","26027","FALSE","FALSE","America/Detroit"
-"49064","42.22108","-86.04888","Lawrence","MI","Michigan","TRUE","","3818","32.4","26159","Van Buren","{""26159"": ""100""}","Van Buren","26159","FALSE","FALSE","America/Detroit"
-"49065","42.13619","-85.84016","Lawton","MI","Michigan","TRUE","","6290","55.9","26159","Van Buren","{""26159"": ""100""}","Van Buren","26159","FALSE","FALSE","America/Detroit"
-"49066","42.03445","-85.34999","Leonidas","MI","Michigan","TRUE","","546","10.4","26149","St. Joseph","{""26149"": ""100""}","St. Joseph","26149","FALSE","FALSE","America/Detroit"
-"49067","42.02408","-85.80197","Marcellus","MI","Michigan","TRUE","","4434","20.6","26027","Cass","{""26027"": ""72.31"", ""26149"": ""19.7"", ""26159"": ""7.98""}","Cass|St. Joseph|Van Buren","26027|26149|26159","FALSE","FALSE","America/Detroit"
-"49068","42.27682","-84.94084","Marshall","MI","Michigan","TRUE","","14862","44.3","26025","Calhoun","{""26025"": ""100""}","Calhoun","26025","FALSE","FALSE","America/Detroit"
-"49070","42.54045","-85.63117","Martin","MI","Michigan","TRUE","","2458","35.9","26005","Allegan","{""26005"": ""100""}","Allegan","26005","FALSE","FALSE","America/Detroit"
-"49071","42.22744","-85.78169","Mattawan","MI","Michigan","TRUE","","10286","139.4","26159","Van Buren","{""26159"": ""82.48"", ""26077"": ""17.52""}","Van Buren|Kalamazoo","26159|26077","FALSE","FALSE","America/Detroit"
-"49072","42.01201","-85.46057","Mendon","MI","Michigan","TRUE","","2945","20.3","26149","St. Joseph","{""26149"": ""100""}","St. Joseph","26149","FALSE","FALSE","America/Detroit"
-"49073","42.57738","-85.11775","Nashville","MI","Michigan","TRUE","","4777","26.5","26015","Barry","{""26015"": ""91.82"", ""26045"": ""8.18""}","Barry|Eaton","26015|26045","FALSE","FALSE","America/Detroit"
-"49074","42.31736","-85.5387","Nazareth","MI","Michigan","TRUE","","160","870.4","26077","Kalamazoo","{""26077"": ""100""}","Kalamazoo","26077","FALSE","FALSE","America/Detroit"
-"49075","41.91758","-85.44912","Nottawa","MI","Michigan","TRUE","","136","980.9","26149","St. Joseph","{""26149"": ""100""}","St. Joseph","26149","FALSE","FALSE","America/Detroit"
-"49076","42.43181","-84.8876","Olivet","MI","Michigan","TRUE","","4694","32.5","26045","Eaton","{""26045"": ""76.81"", ""26025"": ""23.19""}","Eaton|Calhoun","26045|26025","FALSE","FALSE","America/Detroit"
-"49078","42.46507","-85.72807","Otsego","MI","Michigan","TRUE","","9452","76.0","26005","Allegan","{""26005"": ""93.82"", ""26077"": ""5.17"", ""26159"": ""1.01""}","Allegan|Kalamazoo|Van Buren","26005|26077|26159","FALSE","FALSE","America/Detroit"
-"49079","42.24056","-85.90806","Paw Paw","MI","Michigan","TRUE","","13185","61.2","26159","Van Buren","{""26159"": ""100""}","Van Buren","26159","FALSE","FALSE","America/Detroit"
-"49080","42.461","-85.57506","Plainwell","MI","Michigan","TRUE","","16160","80.0","26005","Allegan","{""26005"": ""71.38"", ""26015"": ""18.59"", ""26077"": ""10.03""}","Allegan|Barry|Kalamazoo","26005|26015|26077","FALSE","FALSE","America/Detroit"
-"49082","41.94441","-84.87575","Quincy","MI","Michigan","TRUE","","5965","26.8","26023","Branch","{""26023"": ""96.17"", ""26059"": ""3.83""}","Branch|Hillsdale","26023|26059","FALSE","FALSE","America/Detroit"
-"49083","42.3775","-85.46056","Richland","MI","Michigan","TRUE","","7896","90.2","26077","Kalamazoo","{""26077"": ""99.66"", ""26015"": ""0.34""}","Kalamazoo|Barry","26077|26015","FALSE","FALSE","America/Detroit"
-"49084","42.18255","-86.38207","Riverside","MI","Michigan","TRUE","","39","798.0","26021","Berrien","{""26021"": ""100""}","Berrien","26021","FALSE","FALSE","America/Detroit"
-"49085","42.05013","-86.46028","Saint Joseph","MI","Michigan","TRUE","","23959","393.0","26021","Berrien","{""26021"": ""100""}","Berrien","26021","FALSE","FALSE","America/Detroit"
-"49087","42.12188","-85.68818","Schoolcraft","MI","Michigan","TRUE","","6397","40.4","26077","Kalamazoo","{""26077"": ""98.58"", ""26159"": ""1.42""}","Kalamazoo|Van Buren","26077|26159","FALSE","FALSE","America/Detroit"
-"49088","42.18514","-85.4289","Scotts","MI","Michigan","TRUE","","3802","45.7","26077","Kalamazoo","{""26077"": ""100""}","Kalamazoo","26077","FALSE","FALSE","America/Detroit"
-"49089","42.00466","-85.23596","Sherwood","MI","Michigan","TRUE","","1851","18.5","26023","Branch","{""26023"": ""100""}","Branch","26023","FALSE","FALSE","America/Detroit"
-"49090","42.40865","-86.21614","South Haven","MI","Michigan","TRUE","","14439","70.7","26159","Van Buren","{""26159"": ""82.08"", ""26005"": ""17.92""}","Van Buren|Allegan","26159|26005","FALSE","FALSE","America/Detroit"
-"49091","41.82443","-85.44609","Sturgis","MI","Michigan","TRUE","","19644","87.1","26149","St. Joseph","{""26149"": ""100""}","St. Joseph","26149","FALSE","FALSE","America/Detroit"
-"49092","42.10005","-84.97579","Tekonsha","MI","Michigan","TRUE","","1920","13.3","26025","Calhoun","{""26025"": ""80.89"", ""26023"": ""19.11""}","Calhoun|Branch","26025|26023","FALSE","FALSE","America/Detroit"
-"49093","41.97256","-85.64978","Three Rivers","MI","Michigan","TRUE","","18346","67.0","26149","St. Joseph","{""26149"": ""97.5"", ""26027"": ""2.5""}","St. Joseph|Cass","26149|26027","FALSE","FALSE","America/Detroit"
-"49094","42.04734","-85.11419","Union City","MI","Michigan","TRUE","","4028","27.2","26023","Branch","{""26023"": ""82.04"", ""26025"": ""17.96""}","Branch|Calhoun","26023|26025","FALSE","FALSE","America/Detroit"
-"49095","41.90703","-85.88036","Vandalia","MI","Michigan","TRUE","","2223","30.9","26027","Cass","{""26027"": ""100""}","Cass","26027","FALSE","FALSE","America/Detroit"
-"49096","42.64167","-85.01576","Vermontville","MI","Michigan","TRUE","","3441","20.0","26045","Eaton","{""26045"": ""100""}","Eaton","26045","FALSE","FALSE","America/Detroit"
-"49097","42.11459","-85.48818","Vicksburg","MI","Michigan","TRUE","","11106","57.6","26077","Kalamazoo","{""26077"": ""98.97"", ""26149"": ""1.03""}","Kalamazoo|St. Joseph","26077|26149","FALSE","FALSE","America/Detroit"
-"49098","42.16878","-86.24276","Watervliet","MI","Michigan","TRUE","","5776","68.7","26021","Berrien","{""26021"": ""92.41"", ""26159"": ""7.59""}","Berrien|Van Buren","26021|26159","FALSE","FALSE","America/Detroit"
-"49099","41.79176","-85.6779","White Pigeon","MI","Michigan","TRUE","","5787","37.8","26149","St. Joseph","{""26149"": ""87.6"", ""26027"": ""12.4""}","St. Joseph|Cass","26149|26027","FALSE","FALSE","America/Detroit"
-"49101","41.94291","-86.4829","Baroda","MI","Michigan","TRUE","","2861","50.6","26021","Berrien","{""26021"": ""100""}","Berrien","26021","FALSE","FALSE","America/Detroit"
-"49102","41.9523","-86.26113","Berrien Center","MI","Michigan","TRUE","","1627","40.6","26021","Berrien","{""26021"": ""99.55"", ""26027"": ""0.45""}","Berrien|Cass","26021|26027","FALSE","FALSE","America/Detroit"
-"49103","41.94691","-86.37641","Berrien Springs","MI","Michigan","TRUE","","10437","90.6","26021","Berrien","{""26021"": ""100""}","Berrien","26021","FALSE","FALSE","America/Detroit"
-"49104","41.96373","-86.35895","Berrien Springs","MI","Michigan","TRUE","","668","1619.9","26021","Berrien","{""26021"": ""100""}","Berrien","26021","FALSE","FALSE","America/Detroit"
-"49106","41.93763","-86.55148","Bridgman","MI","Michigan","TRUE","","4973","122.2","26021","Berrien","{""26021"": ""100""}","Berrien","26021","FALSE","FALSE","America/Detroit"
-"49107","41.84578","-86.41376","Buchanan","MI","Michigan","TRUE","","10431","61.6","26021","Berrien","{""26021"": ""100""}","Berrien","26021","FALSE","FALSE","America/Detroit"
-"49111","42.02477","-86.28776","Eau Claire","MI","Michigan","TRUE","","3620","34.2","26021","Berrien","{""26021"": ""95.64"", ""26027"": ""4.36""}","Berrien|Cass","26021|26027","FALSE","FALSE","America/Detroit"
-"49112","41.79758","-86.03353","Edwardsburg","MI","Michigan","TRUE","","9941","89.2","26027","Cass","{""26027"": ""100""}","Cass","26027","FALSE","FALSE","America/Detroit"
-"49113","41.80237","-86.50087","Galien","MI","Michigan","TRUE","","1773","19.4","26021","Berrien","{""26021"": ""100""}","Berrien","26021","FALSE","FALSE","America/Detroit"
-"49115","41.87229","-86.62929","Harbert","MI","Michigan","TRUE","","458","132.4","26021","Berrien","{""26021"": ""100""}","Berrien","26021","FALSE","FALSE","America/Detroit"
-"49116","41.84904","-86.66164","Lakeside","MI","Michigan","TRUE","","256","46.9","26021","Berrien","{""26021"": ""100""}","Berrien","26021","FALSE","FALSE","America/Detroit"
-"49117","41.7806","-86.72678","New Buffalo","MI","Michigan","TRUE","","3756","75.8","26021","Berrien","{""26021"": ""100""}","Berrien","26021","FALSE","FALSE","America/Detroit"
-"49119","41.87436","-86.54904","New Troy","MI","Michigan","TRUE","","66","195.3","26021","Berrien","{""26021"": ""100""}","Berrien","26021","FALSE","FALSE","America/Detroit"
-"49120","41.83224","-86.23082","Niles","MI","Michigan","TRUE","","36346","119.5","26021","Berrien","{""26021"": ""72.67"", ""26027"": ""27.33""}","Berrien|Cass","26021|26027","FALSE","FALSE","America/Detroit"
-"49125","41.88708","-86.57745","Sawyer","MI","Michigan","TRUE","","2243","64.2","26021","Berrien","{""26021"": ""100""}","Berrien","26021","FALSE","FALSE","America/Detroit"
-"49126","42.02581","-86.36878","Sodus","MI","Michigan","TRUE","","1225","29.6","26021","Berrien","{""26021"": ""100""}","Berrien","26021","FALSE","FALSE","America/Detroit"
-"49127","42.00635","-86.51219","Stevensville","MI","Michigan","TRUE","","10755","256.5","26021","Berrien","{""26021"": ""100""}","Berrien","26021","FALSE","FALSE","America/Detroit"
-"49128","41.81651","-86.60333","Three Oaks","MI","Michigan","TRUE","","3408","30.7","26021","Berrien","{""26021"": ""100""}","Berrien","26021","FALSE","FALSE","America/Detroit"
-"49129","41.81695","-86.68803","Union Pier","MI","Michigan","TRUE","","513","39.5","26021","Berrien","{""26021"": ""100""}","Berrien","26021","FALSE","FALSE","America/Detroit"
-"49130","41.78195","-85.85943","Union","MI","Michigan","TRUE","","1474","47.2","26027","Cass","{""26027"": ""100""}","Cass","26027","FALSE","FALSE","America/Detroit"
-"49201","42.24977","-84.38151","Jackson","MI","Michigan","TRUE","","45222","114.3","26075","Jackson","{""26075"": ""100""}","Jackson","26075","FALSE","FALSE","America/Detroit"
-"49202","42.26859","-84.41036","Jackson","MI","Michigan","TRUE","","19289","534.3","26075","Jackson","{""26075"": ""100""}","Jackson","26075","FALSE","FALSE","America/Detroit"
-"49203","42.22151","-84.4011","Jackson","MI","Michigan","TRUE","","38633","566.7","26075","Jackson","{""26075"": ""100""}","Jackson","26075","FALSE","FALSE","America/Detroit"
-"49220","41.99461","-84.34243","Addison","MI","Michigan","TRUE","","2415","32.9","26091","Lenawee","{""26091"": ""84.76"", ""26059"": ""15.24""}","Lenawee|Hillsdale","26091|26059","FALSE","FALSE","America/Detroit"
-"49221","41.90301","-84.06363","Adrian","MI","Michigan","TRUE","","40423","131.8","26091","Lenawee","{""26091"": ""100""}","Lenawee","26091","FALSE","FALSE","America/Detroit"
-"49224","42.28109","-84.75185","Albion","MI","Michigan","TRUE","","13966","54.5","26025","Calhoun","{""26025"": ""87.18"", ""26075"": ""12.82""}","Calhoun|Jackson","26025|26075","FALSE","FALSE","America/Detroit"
-"49227","41.95194","-84.77118","Allen","MI","Michigan","TRUE","","1114","16.8","26059","Hillsdale","{""26059"": ""100""}","Hillsdale","26059","FALSE","FALSE","America/Detroit"
-"49228","41.80438","-83.88349","Blissfield","MI","Michigan","TRUE","","5310","25.8","26091","Lenawee","{""26091"": ""100""}","Lenawee","26091","FALSE","FALSE","America/Detroit"
-"49229","41.98679","-83.82832","Britton","MI","Michigan","TRUE","","3404","23.8","26091","Lenawee","{""26091"": ""96.46"", ""26115"": ""3.54""}","Lenawee|Monroe","26091|26115","FALSE","FALSE","America/Detroit"
-"49230","42.09465","-84.22071","Brooklyn","MI","Michigan","TRUE","","10331","60.8","26075","Jackson","{""26075"": ""78.66"", ""26091"": ""21.34""}","Jackson|Lenawee","26075|26091","FALSE","FALSE","America/Detroit"
-"49232","41.74047","-84.66858","Camden","MI","Michigan","TRUE","","2716","16.7","26059","Hillsdale","{""26059"": ""100""}","Hillsdale","26059","FALSE","FALSE","America/Detroit"
-"49233","42.06223","-84.36286","Cement City","MI","Michigan","TRUE","","2386","43.0","26059","Hillsdale","{""26059"": ""55.56"", ""26091"": ""32.16"", ""26075"": ""12.28""}","Hillsdale|Lenawee|Jackson","26059|26091|26075","FALSE","FALSE","America/Detroit"
-"49234","42.11855","-84.36865","Clarklake","MI","Michigan","TRUE","","2650","46.7","26075","Jackson","{""26075"": ""100""}","Jackson","26075","FALSE","FALSE","America/Detroit"
-"49235","41.86356","-84.21469","Clayton","MI","Michigan","TRUE","","2088","16.1","26091","Lenawee","{""26091"": ""100""}","Lenawee","26091","FALSE","FALSE","America/Detroit"
-"49236","42.07839","-83.95098","Clinton","MI","Michigan","TRUE","","4807","49.4","26091","Lenawee","{""26091"": ""86.69"", ""26161"": ""13.31""}","Lenawee|Washtenaw","26091|26161","FALSE","FALSE","America/Detroit"
-"49237","42.17573","-84.65157","Concord","MI","Michigan","TRUE","","3047","30.9","26075","Jackson","{""26075"": ""99.53"", ""26025"": ""0.47""}","Jackson|Calhoun","26075|26025","FALSE","FALSE","America/Detroit"
-"49238","41.90553","-83.78599","Deerfield","MI","Michigan","TRUE","","1803","24.6","26091","Lenawee","{""26091"": ""81.1"", ""26115"": ""18.9""}","Lenawee|Monroe","26091|26115","FALSE","FALSE","America/Detroit"
-"49240","42.27984","-84.17871","Grass Lake","MI","Michigan","TRUE","","9688","35.4","26075","Jackson","{""26075"": ""90.82"", ""26161"": ""9.18""}","Jackson|Washtenaw","26075|26161","FALSE","FALSE","America/Detroit"
-"49241","42.10325","-84.60227","Hanover","MI","Michigan","TRUE","","2773","31.5","26075","Jackson","{""26075"": ""100""}","Jackson","26075","FALSE","FALSE","America/Detroit"
-"49242","41.88334","-84.6164","Hillsdale","MI","Michigan","TRUE","","14809","63.1","26059","Hillsdale","{""26059"": ""100""}","Hillsdale","26059","FALSE","FALSE","America/Detroit"
-"49245","42.14004","-84.81759","Homer","MI","Michigan","TRUE","","4745","19.0","26025","Calhoun","{""26025"": ""97.44"", ""26023"": ""1.98"", ""26075"": ""0.58""}","Calhoun|Branch|Jackson","26025|26023|26075","FALSE","FALSE","America/Detroit"
-"49246","42.12627","-84.50881","Horton","MI","Michigan","TRUE","","3116","35.2","26075","Jackson","{""26075"": ""97.02"", ""26059"": ""2.98""}","Jackson|Hillsdale","26075|26059","FALSE","FALSE","America/Detroit"
-"49247","41.84785","-84.34247","Hudson","MI","Michigan","TRUE","","5690","25.7","26091","Lenawee","{""26091"": ""75.68"", ""26059"": ""24.32""}","Lenawee|Hillsdale","26091|26059","FALSE","FALSE","America/Detroit"
-"49248","41.75645","-84.01123","Jasper","MI","Michigan","TRUE","","821","9.6","26091","Lenawee","{""26091"": ""100""}","Lenawee","26091","FALSE","FALSE","America/Detroit"
-"49249","42.02285","-84.45833","Jerome","MI","Michigan","TRUE","","3625","43.7","26059","Hillsdale","{""26059"": ""89.5"", ""26075"": ""10.5""}","Hillsdale|Jackson","26059|26075","FALSE","FALSE","America/Detroit"
-"49250","42.01912","-84.62273","Jonesville","MI","Michigan","TRUE","","6322","31.2","26059","Hillsdale","{""26059"": ""97.22"", ""26075"": ""2.78""}","Hillsdale|Jackson","26059|26075","FALSE","FALSE","America/Detroit"
-"49251","42.46595","-84.41006","Leslie","MI","Michigan","TRUE","","6278","41.5","26065","Ingham","{""26065"": ""95.25"", ""26075"": ""4.75""}","Ingham|Jackson","26065|26075","FALSE","FALSE","America/Detroit"
-"49252","42.0369","-84.76722","Litchfield","MI","Michigan","TRUE","","2373","23.5","26059","Hillsdale","{""26059"": ""93.47"", ""26075"": ""4.41"", ""26023"": ""1.77"", ""26025"": ""0.35""}","Hillsdale|Jackson|Branch|Calhoun","26059|26075|26023|26025","FALSE","FALSE","America/Detroit"
-"49253","41.96685","-84.271","Manitou Beach","MI","Michigan","TRUE","","2771","43.6","26091","Lenawee","{""26091"": ""100""}","Lenawee","26091","FALSE","FALSE","America/Detroit"
-"49254","42.22712","-84.31609","Michigan Center","MI","Michigan","TRUE","","3069","365.2","26075","Jackson","{""26075"": ""100""}","Jackson","26075","FALSE","FALSE","America/Detroit"
-"49255","41.77276","-84.85057","Montgomery","MI","Michigan","TRUE","","2617","25.3","26023","Branch","{""26023"": ""56.73"", ""26059"": ""43.27""}","Branch|Hillsdale","26023|26059","FALSE","FALSE","America/Detroit"
-"49256","41.74998","-84.21859","Morenci","MI","Michigan","TRUE","","3750","24.6","26091","Lenawee","{""26091"": ""100""}","Lenawee","26091","FALSE","FALSE","America/Detroit"
-"49259","42.3789","-84.25303","Munith","MI","Michigan","TRUE","","2116","29.2","26075","Jackson","{""26075"": ""100""}","Jackson","26075","FALSE","FALSE","America/Detroit"
-"49261","42.16098","-84.23845","Napoleon","MI","Michigan","TRUE","","269","177.2","26075","Jackson","{""26075"": ""100""}","Jackson","26075","FALSE","FALSE","America/Detroit"
-"49262","41.96146","-84.46737","North Adams","MI","Michigan","TRUE","","1243","20.9","26059","Hillsdale","{""26059"": ""100""}","Hillsdale","26059","FALSE","FALSE","America/Detroit"
-"49263","42.15943","-84.18477","Norvell","MI","Michigan","TRUE","","65","249.4","26075","Jackson","{""26075"": ""100""}","Jackson","26075","FALSE","FALSE","America/Detroit"
-"49264","42.44358","-84.5514","Onondaga","MI","Michigan","TRUE","","2100","30.2","26065","Ingham","{""26065"": ""75.7"", ""26075"": ""24.3""}","Ingham|Jackson","26065|26075","FALSE","FALSE","America/Detroit"
-"49265","42.0073","-84.17264","Onsted","MI","Michigan","TRUE","","5102","65.5","26091","Lenawee","{""26091"": ""100""}","Lenawee","26091","FALSE","FALSE","America/Detroit"
-"49266","41.84223","-84.54784","Osseo","MI","Michigan","TRUE","","3323","29.0","26059","Hillsdale","{""26059"": ""100""}","Hillsdale","26059","FALSE","FALSE","America/Detroit"
-"49267","41.76089","-83.72251","Ottawa Lake","MI","Michigan","TRUE","","3988","38.5","26115","Monroe","{""26115"": ""93.03"", ""26091"": ""6.97""}","Monroe|Lenawee","26115|26091","FALSE","FALSE","America/Detroit"
-"49268","41.8729","-83.92632","Palmyra","MI","Michigan","TRUE","","1153","20.6","26091","Lenawee","{""26091"": ""100""}","Lenawee","26091","FALSE","FALSE","America/Detroit"
-"49269","42.29295","-84.58793","Parma","MI","Michigan","TRUE","","6175","39.7","26075","Jackson","{""26075"": ""100""}","Jackson","26075","FALSE","FALSE","America/Detroit"
-"49270","41.86973","-83.68326","Petersburg","MI","Michigan","TRUE","","5716","49.2","26115","Monroe","{""26115"": ""100""}","Monroe","26115","FALSE","FALSE","America/Detroit"
-"49271","41.83693","-84.45552","Pittsford","MI","Michigan","TRUE","","1872","13.1","26059","Hillsdale","{""26059"": ""100""}","Hillsdale","26059","FALSE","FALSE","America/Detroit"
-"49272","42.39405","-84.34663","Pleasant Lake","MI","Michigan","TRUE","","2326","79.2","26075","Jackson","{""26075"": ""100""}","Jackson","26075","FALSE","FALSE","America/Detroit"
-"49274","41.83849","-84.76278","Reading","MI","Michigan","TRUE","","3365","21.7","26059","Hillsdale","{""26059"": ""90.3"", ""26023"": ""9.7""}","Hillsdale|Branch","26059|26023","FALSE","FALSE","America/Detroit"
-"49276","41.79744","-83.78462","Riga","MI","Michigan","TRUE","","851","14.5","26091","Lenawee","{""26091"": ""66.6"", ""26115"": ""33.4""}","Lenawee|Monroe","26091|26115","FALSE","FALSE","America/Detroit"
-"49277","42.38734","-84.46528","Rives Junction","MI","Michigan","TRUE","","3290","35.8","26075","Jackson","{""26075"": ""100""}","Jackson","26075","FALSE","FALSE","America/Detroit"
-"49279","41.78085","-84.10395","Sand Creek","MI","Michigan","TRUE","","845","12.4","26091","Lenawee","{""26091"": ""100""}","Lenawee","26091","FALSE","FALSE","America/Detroit"
-"49282","42.03884","-84.40599","Somerset Center","MI","Michigan","TRUE","","244","32.2","26059","Hillsdale","{""26059"": ""100""}","Hillsdale","26059","FALSE","FALSE","America/Detroit"
-"49283","42.20696","-84.55069","Spring Arbor","MI","Michigan","TRUE","","3799","107.9","26075","Jackson","{""26075"": ""100""}","Jackson","26075","FALSE","FALSE","America/Detroit"
-"49284","42.38674","-84.69318","Springport","MI","Michigan","TRUE","","2995","21.7","26075","Jackson","{""26075"": ""66.38"", ""26025"": ""25.53"", ""26045"": ""8.09""}","Jackson|Calhoun|Eaton","26075|26025|26045","FALSE","FALSE","America/Detroit"
-"49285","42.4706","-84.21008","Stockbridge","MI","Michigan","TRUE","","5740","29.8","26065","Ingham","{""26065"": ""88.95"", ""26075"": ""5.52"", ""26093"": ""3.97"", ""26161"": ""1.56""}","Ingham|Jackson|Livingston|Washtenaw","26065|26075|26093|26161","FALSE","FALSE","America/Detroit"
-"49286","42.0136","-83.936","Tecumseh","MI","Michigan","TRUE","","14639","94.7","26091","Lenawee","{""26091"": ""100""}","Lenawee","26091","FALSE","FALSE","America/Detroit"
-"49287","42.02108","-84.08139","Tipton","MI","Michigan","TRUE","","2019","27.7","26091","Lenawee","{""26091"": ""94.66"", ""26161"": ""5.34""}","Lenawee|Washtenaw","26091|26161","FALSE","FALSE","America/Detroit"
-"49288","41.73466","-84.42999","Waldron","MI","Michigan","TRUE","","1491","15.3","26059","Hillsdale","{""26059"": ""92.92"", ""26091"": ""7.08""}","Hillsdale|Lenawee","26059|26091","FALSE","FALSE","America/Detroit"
-"49289","41.76813","-84.1078","Weston","MI","Michigan","TRUE","","127","68.2","26091","Lenawee","{""26091"": ""100""}","Lenawee","26091","FALSE","FALSE","America/Detroit"
-"49301","42.97647","-85.47661","Ada","MI","Michigan","TRUE","","20302","138.3","26081","Kent","{""26081"": ""100""}","Kent","26081","FALSE","FALSE","America/Detroit"
-"49302","42.82286","-85.3986","Alto","MI","Michigan","TRUE","","8717","69.0","26081","Kent","{""26081"": ""100""}","Kent","26081","FALSE","FALSE","America/Detroit"
-"49303","43.27729","-85.85483","Bailey","MI","Michigan","TRUE","","1019","26.2","26121","Muskegon","{""26121"": ""95.57"", ""26123"": ""4.43""}","Muskegon|Newaygo","26121|26123","FALSE","FALSE","America/Detroit"
-"49304","43.91391","-85.87","Baldwin","MI","Michigan","TRUE","","3922","11.7","26085","Lake","{""26085"": ""100""}","Lake","26085","FALSE","FALSE","America/Detroit"
-"49305","43.75075","-85.1497","Barryton","MI","Michigan","TRUE","","2134","17.9","26107","Mecosta","{""26107"": ""96.38"", ""26073"": ""3.62""}","Mecosta|Isabella","26107|26073","FALSE","FALSE","America/Detroit"
-"49306","43.07325","-85.56775","Belmont","MI","Michigan","TRUE","","10650","207.6","26081","Kent","{""26081"": ""100""}","Kent","26081","FALSE","FALSE","America/Detroit"
-"49307","43.69892","-85.48912","Big Rapids","MI","Michigan","TRUE","","20590","58.4","26107","Mecosta","{""26107"": ""97.01"", ""26123"": ""2.99""}","Mecosta|Newaygo","26107|26123","FALSE","FALSE","America/Detroit"
-"49309","43.7595","-85.88093","Bitely","MI","Michigan","TRUE","","1509","4.7","26123","Newaygo","{""26123"": ""96.8"", ""26085"": ""3.2""}","Newaygo|Lake","26123|26085","FALSE","FALSE","America/Detroit"
-"49310","43.51564","-85.05652","Blanchard","MI","Michigan","TRUE","","3284","14.2","26073","Isabella","{""26073"": ""63.93"", ""26107"": ""33.39"", ""26117"": ""2.69""}","Isabella|Mecosta|Montcalm","26073|26107|26117","FALSE","FALSE","America/Detroit"
-"49312","43.68821","-85.80547","Brohman","MI","Michigan","TRUE","","293","3.9","26123","Newaygo","{""26123"": ""100""}","Newaygo","26123","FALSE","FALSE","America/Detroit"
-"49315","42.80013","-85.73622","Byron Center","MI","Michigan","TRUE","","23283","167.9","26081","Kent","{""26081"": ""94.1"", ""26139"": ""4.01"", ""26005"": ""1.88""}","Kent|Ottawa|Allegan","26081|26139|26005","FALSE","FALSE","America/Detroit"
-"49316","42.79679","-85.55403","Caledonia","MI","Michigan","TRUE","","23391","158.7","26081","Kent","{""26081"": ""87.71"", ""26005"": ""9.35"", ""26015"": ""2.94""}","Kent|Allegan|Barry","26081|26005|26015","FALSE","FALSE","America/Detroit"
-"49318","43.22347","-85.82912","Casnovia","MI","Michigan","TRUE","","1515","32.9","26121","Muskegon","{""26121"": ""67.81"", ""26139"": ""17.95"", ""26081"": ""14.23""}","Muskegon|Ottawa|Kent","26121|26139|26081","FALSE","FALSE","America/Detroit"
-"49319","43.22712","-85.52638","Cedar Springs","MI","Michigan","TRUE","","16705","74.1","26081","Kent","{""26081"": ""100""}","Kent","26081","FALSE","FALSE","America/Detroit"
-"49320","43.75358","-85.27547","Chippewa Lake","MI","Michigan","TRUE","","22","23.7","26107","Mecosta","{""26107"": ""100""}","Mecosta","26107","FALSE","FALSE","America/Detroit"
-"49321","43.07427","-85.68089","Comstock Park","MI","Michigan","TRUE","","17160","256.5","26081","Kent","{""26081"": ""100""}","Kent","26081","FALSE","FALSE","America/Detroit"
-"49322","43.35674","-85.35115","Coral","MI","Michigan","TRUE","","1532","23.1","26117","Montcalm","{""26117"": ""100""}","Montcalm","26117","FALSE","FALSE","America/Detroit"
-"49323","42.72534","-85.78723","Dorr","MI","Michigan","TRUE","","10296","81.0","26005","Allegan","{""26005"": ""100""}","Allegan","26005","FALSE","FALSE","America/Detroit"
-"49325","42.76052","-85.29815","Freeport","MI","Michigan","TRUE","","2050","28.4","26015","Barry","{""26015"": ""78.37"", ""26081"": ""12"", ""26067"": ""9.64""}","Barry|Kent|Ionia","26015|26081|26067","FALSE","FALSE","America/Detroit"
-"49326","43.24982","-85.3206","Gowen","MI","Michigan","TRUE","","4308","69.8","26081","Kent","{""26081"": ""72.55"", ""26117"": ""27.45""}","Kent|Montcalm","26081|26117","FALSE","FALSE","America/Detroit"
-"49327","43.33539","-85.84617","Grant","MI","Michigan","TRUE","","8472","35.3","26123","Newaygo","{""26123"": ""99.46"", ""26081"": ""0.54""}","Newaygo|Kent","26123|26081","FALSE","FALSE","America/Detroit"
-"49328","42.63167","-85.7592","Hopkins","MI","Michigan","TRUE","","4288","29.3","26005","Allegan","{""26005"": ""100""}","Allegan","26005","FALSE","FALSE","America/Detroit"
-"49329","43.40631","-85.48347","Howard City","MI","Michigan","TRUE","","8664","41.0","26117","Montcalm","{""26117"": ""84.94"", ""26123"": ""15.06""}","Montcalm|Newaygo","26117|26123","FALSE","FALSE","America/Detroit"
-"49330","43.24504","-85.73739","Kent City","MI","Michigan","TRUE","","5724","49.9","26081","Kent","{""26081"": ""92.06"", ""26123"": ""5.57"", ""26139"": ""1.69"", ""26121"": ""0.68""}","Kent|Newaygo|Ottawa|Muskegon","26081|26123|26139|26121","FALSE","FALSE","America/Detroit"
-"49331","42.95145","-85.35216","Lowell","MI","Michigan","TRUE","","18028","76.9","26081","Kent","{""26081"": ""86.92"", ""26067"": ""13.08""}","Kent|Ionia","26081|26067","FALSE","FALSE","America/Detroit"
-"49332","43.62439","-85.24589","Mecosta","MI","Michigan","TRUE","","3251","27.8","26107","Mecosta","{""26107"": ""100""}","Mecosta","26107","FALSE","FALSE","America/Detroit"
-"49333","42.69563","-85.46103","Middleville","MI","Michigan","TRUE","","11639","56.5","26015","Barry","{""26015"": ""98.11"", ""26081"": ""1.84"", ""26005"": ""0.04""}","Barry|Kent|Allegan","26015|26081|26005","FALSE","FALSE","America/Detroit"
-"49335","42.73858","-85.66841","Moline","MI","Michigan","TRUE","","224","91.2","26005","Allegan","{""26005"": ""100""}","Allegan","26005","FALSE","FALSE","America/Detroit"
-"49336","43.50869","-85.43177","Morley","MI","Michigan","TRUE","","4170","20.6","26107","Mecosta","{""26107"": ""94.69"", ""26117"": ""5.26"", ""26123"": ""0.05""}","Mecosta|Montcalm|Newaygo","26107|26117|26123","FALSE","FALSE","America/Detroit"
-"49337","43.43535","-85.7136","Newaygo","MI","Michigan","TRUE","","12017","41.2","26123","Newaygo","{""26123"": ""97.1"", ""26117"": ""1.89"", ""26107"": ""1.02""}","Newaygo|Montcalm|Mecosta","26123|26117|26107","FALSE","FALSE","America/Detroit"
-"49338","43.75952","-85.60856","Paris","MI","Michigan","TRUE","","1750","12.8","26107","Mecosta","{""26107"": ""68.4"", ""26123"": ""30.4"", ""26133"": ""1.19""}","Mecosta|Newaygo|Osceola","26107|26123|26133","FALSE","FALSE","America/Detroit"
-"49339","43.33242","-85.49033","Pierson","MI","Michigan","TRUE","","2160","28.5","26117","Montcalm","{""26117"": ""100""}","Montcalm","26117","FALSE","FALSE","America/Detroit"
-"49340","43.62151","-85.11395","Remus","MI","Michigan","TRUE","","2786","12.4","26107","Mecosta","{""26107"": ""73.04"", ""26073"": ""26.96""}","Mecosta|Isabella","26107|26073","FALSE","FALSE","America/Detroit"
-"49341","43.1243","-85.49188","Rockford","MI","Michigan","TRUE","","37505","173.9","26081","Kent","{""26081"": ""100""}","Kent","26081","FALSE","FALSE","America/Detroit"
-"49342","43.69241","-85.32222","Rodney","MI","Michigan","TRUE","","1816","15.6","26107","Mecosta","{""26107"": ""100""}","Mecosta","26107","FALSE","FALSE","America/Detroit"
-"49343","43.29642","-85.53553","Sand Lake","MI","Michigan","TRUE","","5551","40.5","26081","Kent","{""26081"": ""56.39"", ""26123"": ""31.92"", ""26117"": ""11.7""}","Kent|Newaygo|Montcalm","26081|26123|26117","FALSE","FALSE","America/Detroit"
-"49344","42.59299","-85.59134","Shelbyville","MI","Michigan","TRUE","","3266","39.1","26005","Allegan","{""26005"": ""59"", ""26015"": ""41""}","Allegan|Barry","26005|26015","FALSE","FALSE","America/Detroit"
-"49345","43.15398","-85.70374","Sparta","MI","Michigan","TRUE","","15123","109.9","26081","Kent","{""26081"": ""100""}","Kent","26081","FALSE","FALSE","America/Detroit"
-"49346","43.58572","-85.42186","Stanwood","MI","Michigan","TRUE","","5326","31.9","26107","Mecosta","{""26107"": ""99.82"", ""26123"": ""0.18""}","Mecosta|Newaygo","26107|26123","FALSE","FALSE","America/Detroit"
-"49347","43.31473","-85.34851","Trufant","MI","Michigan","TRUE","","1188","24.7","26117","Montcalm","{""26117"": ""97.77"", ""26081"": ""2.23""}","Montcalm|Kent","26117|26081","FALSE","FALSE","America/Detroit"
-"49348","42.68571","-85.61467","Wayland","MI","Michigan","TRUE","","12501","72.6","26005","Allegan","{""26005"": ""81.44"", ""26015"": ""16.87"", ""26081"": ""1.7""}","Allegan|Barry|Kent","26005|26015|26081","FALSE","FALSE","America/Detroit"
-"49349","43.58204","-85.7429","White Cloud","MI","Michigan","TRUE","","7871","15.8","26123","Newaygo","{""26123"": ""100""}","Newaygo","26123","FALSE","FALSE","America/Detroit"
-"49401","42.97619","-85.94147","Allendale","MI","Michigan","TRUE","","24900","374.4","26139","Ottawa","{""26139"": ""100""}","Ottawa","26139","FALSE","FALSE","America/Detroit"
-"49402","43.93322","-86.03456","Branch","MI","Michigan","TRUE","","1269","4.0","26105","Mason","{""26105"": ""64.06"", ""26085"": ""29.71"", ""26127"": ""6.23""}","Mason|Lake|Oceana","26105|26085|26127","FALSE","FALSE","America/Detroit"
-"49403","43.13495","-85.8519","Conklin","MI","Michigan","TRUE","","2747","22.5","26139","Ottawa","{""26139"": ""94.38"", ""26121"": ""4.04"", ""26081"": ""1.58""}","Ottawa|Muskegon|Kent","26139|26121|26081","FALSE","FALSE","America/Detroit"
-"49404","43.06584","-85.95067","Coopersville","MI","Michigan","TRUE","","8553","53.1","26139","Ottawa","{""26139"": ""98.31"", ""26121"": ""1.69""}","Ottawa|Muskegon","26139|26121","FALSE","FALSE","America/Detroit"
-"49405","43.91432","-86.19148","Custer","MI","Michigan","TRUE","","1583","8.9","26105","Mason","{""26105"": ""100""}","Mason","26105","FALSE","FALSE","America/Detroit"
-"49406","42.64221","-86.20249","Douglas","MI","Michigan","TRUE","","710","146.5","26005","Allegan","{""26005"": ""100""}","Allegan","26005","FALSE","FALSE","America/Detroit"
-"49408","42.57039","-86.11456","Fennville","MI","Michigan","TRUE","","9726","35.6","26005","Allegan","{""26005"": ""100""}","Allegan","26005","FALSE","FALSE","America/Detroit"
-"49410","44.03194","-86.12977","Fountain","MI","Michigan","TRUE","","1925","17.2","26105","Mason","{""26105"": ""100""}","Mason","26105","FALSE","FALSE","America/Detroit"
-"49411","44.1066","-86.25056","Free Soil","MI","Michigan","TRUE","","1451","6.5","26105","Mason","{""26105"": ""100""}","Mason","26105","FALSE","FALSE","America/Detroit"
-"49412","43.4686","-85.94815","Fremont","MI","Michigan","TRUE","","11419","40.9","26123","Newaygo","{""26123"": ""98.17"", ""26127"": ""1.17"", ""26121"": ""0.66""}","Newaygo|Oceana|Muskegon","26123|26127|26121","FALSE","FALSE","America/Detroit"
-"49415","43.15111","-86.11799","Fruitport","MI","Michigan","TRUE","","6905","90.6","26121","Muskegon","{""26121"": ""91.02"", ""26139"": ""8.98""}","Muskegon|Ottawa","26121|26139","FALSE","FALSE","America/Detroit"
-"49417","43.01589","-86.14361","Grand Haven","MI","Michigan","TRUE","","31496","261.8","26139","Ottawa","{""26139"": ""100""}","Ottawa","26139","FALSE","FALSE","America/Detroit"
-"49418","42.87799","-85.77136","Grandville","MI","Michigan","TRUE","","28521","582.5","26081","Kent","{""26081"": ""84.27"", ""26139"": ""15.73""}","Kent|Ottawa","26081|26139","FALSE","FALSE","America/Detroit"
-"49419","42.6789","-85.981","Hamilton","MI","Michigan","TRUE","","8612","46.1","26005","Allegan","{""26005"": ""100""}","Allegan","26005","FALSE","FALSE","America/Detroit"
-"49420","43.71823","-86.28308","Hart","MI","Michigan","TRUE","","6308","20.6","26127","Oceana","{""26127"": ""100""}","Oceana","26127","FALSE","FALSE","America/Detroit"
-"49421","43.60245","-86.06114","Hesperia","MI","Michigan","TRUE","","5906","17.0","26127","Oceana","{""26127"": ""65.18"", ""26123"": ""34.82""}","Oceana|Newaygo","26127|26123","FALSE","FALSE","America/Detroit"
-"49423","42.74045","-86.08942","Holland","MI","Michigan","TRUE","","45040","224.1","26139","Ottawa","{""26139"": ""65.47"", ""26005"": ""34.53""}","Ottawa|Allegan","26139|26005","FALSE","FALSE","America/Detroit"
-"49424","42.84476","-86.12522","Holland","MI","Michigan","TRUE","","48799","328.2","26139","Ottawa","{""26139"": ""100""}","Ottawa","26139","FALSE","FALSE","America/Detroit"
-"49425","43.43849","-86.09886","Holton","MI","Michigan","TRUE","","3823","23.2","26121","Muskegon","{""26121"": ""79.84"", ""26127"": ""13.47"", ""26123"": ""6.69""}","Muskegon|Oceana|Newaygo","26121|26127|26123","FALSE","FALSE","America/Detroit"
-"49426","42.86322","-85.88836","Hudsonville","MI","Michigan","TRUE","","37601","232.1","26139","Ottawa","{""26139"": ""99.92"", ""26005"": ""0.08""}","Ottawa|Allegan","26139|26005","FALSE","FALSE","America/Detroit"
-"49428","42.92001","-85.83769","Jenison","MI","Michigan","TRUE","","27445","642.7","26139","Ottawa","{""26139"": ""100""}","Ottawa","26139","FALSE","FALSE","America/Detroit"
-"49431","43.98218","-86.40018","Ludington","MI","Michigan","TRUE","","17274","64.2","26105","Mason","{""26105"": ""100""}","Mason","26105","FALSE","FALSE","America/Detroit"
-"49434","42.76916","-86.20766","Macatawa","MI","Michigan","TRUE","","6","40.5","26139","Ottawa","{""26139"": ""75"", ""26005"": ""25""}","Ottawa|Allegan","26139|26005","FALSE","FALSE","America/Detroit"
-"49435","43.02697","-85.84073","Marne","MI","Michigan","TRUE","","3929","69.2","26139","Ottawa","{""26139"": ""100""}","Ottawa","26139","FALSE","FALSE","America/Detroit"
-"49436","43.67846","-86.46312","Mears","MI","Michigan","TRUE","","1584","19.6","26127","Oceana","{""26127"": ""100""}","Oceana","26127","FALSE","FALSE","America/Detroit"
-"49437","43.45945","-86.38286","Montague","MI","Michigan","TRUE","","6852","40.2","26121","Muskegon","{""26121"": ""81.35"", ""26127"": ""18.65""}","Muskegon|Oceana","26121|26127","FALSE","FALSE","America/Detroit"
-"49440","43.23855","-86.25385","Muskegon","MI","Michigan","TRUE","","811","522.0","26121","Muskegon","{""26121"": ""100""}","Muskegon","26121","FALSE","FALSE","America/Detroit"
-"49441","43.18555","-86.27255","Muskegon","MI","Michigan","TRUE","","35365","628.2","26121","Muskegon","{""26121"": ""100""}","Muskegon","26121","FALSE","FALSE","America/Detroit"
-"49442","43.24203","-86.12904","Muskegon","MI","Michigan","TRUE","","41580","368.7","26121","Muskegon","{""26121"": ""100""}","Muskegon","26121","FALSE","FALSE","America/Detroit"
-"49444","43.17906","-86.19887","Muskegon","MI","Michigan","TRUE","","29684","482.3","26121","Muskegon","{""26121"": ""100""}","Muskegon","26121","FALSE","FALSE","America/Detroit"
-"49445","43.29648","-86.27539","Muskegon","MI","Michigan","TRUE","","21670","136.7","26121","Muskegon","{""26121"": ""100""}","Muskegon","26121","FALSE","FALSE","America/Detroit"
-"49446","43.55469","-86.38688","New Era","MI","Michigan","TRUE","","2463","29.4","26127","Oceana","{""26127"": ""100""}","Oceana","26127","FALSE","FALSE","America/Detroit"
-"49448","43.09071","-86.07328","Nunica","MI","Michigan","TRUE","","4100","47.6","26139","Ottawa","{""26139"": ""89.94"", ""26121"": ""10.06""}","Ottawa|Muskegon","26139|26121","FALSE","FALSE","America/Detroit"
-"49449","43.79871","-86.3746","Pentwater","MI","Michigan","TRUE","","2661","24.6","26127","Oceana","{""26127"": ""78.5"", ""26105"": ""21.5""}","Oceana|Mason","26127|26105","FALSE","FALSE","America/Detroit"
-"49450","42.48437","-86.08277","Pullman","MI","Michigan","TRUE","","3314","43.4","26005","Allegan","{""26005"": ""100""}","Allegan","26005","FALSE","FALSE","America/Detroit"
-"49451","43.21197","-85.96945","Ravenna","MI","Michigan","TRUE","","6025","28.0","26121","Muskegon","{""26121"": ""96.64"", ""26139"": ""3.36""}","Muskegon|Ottawa","26121|26139","FALSE","FALSE","America/Detroit"
-"49452","43.51202","-86.25363","Rothbury","MI","Michigan","TRUE","","2102","17.7","26127","Oceana","{""26127"": ""100""}","Oceana","26127","FALSE","FALSE","America/Detroit"
-"49453","42.66315","-86.17241","Saugatuck","MI","Michigan","TRUE","","2400","85.4","26005","Allegan","{""26005"": ""100""}","Allegan","26005","FALSE","FALSE","America/Detroit"
-"49454","43.95136","-86.28808","Scottville","MI","Michigan","TRUE","","4796","25.3","26105","Mason","{""26105"": ""100""}","Mason","26105","FALSE","FALSE","America/Detroit"
-"49455","43.60957","-86.3663","Shelby","MI","Michigan","TRUE","","4831","22.4","26127","Oceana","{""26127"": ""100""}","Oceana","26127","FALSE","FALSE","America/Detroit"
-"49456","43.08947","-86.19426","Spring Lake","MI","Michigan","TRUE","","19480","302.3","26139","Ottawa","{""26139"": ""94.16"", ""26121"": ""5.84""}","Ottawa|Muskegon","26139|26121","FALSE","FALSE","America/Detroit"
-"49457","43.35365","-86.14828","Twin Lake","MI","Michigan","TRUE","","10137","50.6","26121","Muskegon","{""26121"": ""99.33"", ""26123"": ""0.67""}","Muskegon|Newaygo","26121|26123","FALSE","FALSE","America/Detroit"
-"49458","43.92618","-86.09675","Walhalla","MI","Michigan","TRUE","","80","4.3","26105","Mason","{""26105"": ""100""}","Mason","26105","FALSE","FALSE","America/Detroit"
-"49459","43.74097","-86.11271","Walkerville","MI","Michigan","TRUE","","1515","7.7","26127","Oceana","{""26127"": ""90.3"", ""26123"": ""9.7""}","Oceana|Newaygo","26127|26123","FALSE","FALSE","America/Detroit"
-"49460","42.93866","-86.13498","West Olive","MI","Michigan","TRUE","","8932","63.1","26139","Ottawa","{""26139"": ""100""}","Ottawa","26139","FALSE","FALSE","America/Detroit"
-"49461","43.3826","-86.32258","Whitehall","MI","Michigan","TRUE","","9174","81.3","26121","Muskegon","{""26121"": ""100""}","Muskegon","26121","FALSE","FALSE","America/Detroit"
-"49464","42.84713","-85.98617","Zeeland","MI","Michigan","TRUE","","29220","149.9","26139","Ottawa","{""26139"": ""98.64"", ""26005"": ""1.36""}","Ottawa|Allegan","26139|26005","FALSE","FALSE","America/Detroit"
-"49503","42.96252","-85.65928","Grand Rapids","MI","Michigan","TRUE","","37250","2003.1","26081","Kent","{""26081"": ""100""}","Kent","26081","FALSE","FALSE","America/Detroit"
-"49504","42.98041","-85.70941","Grand Rapids","MI","Michigan","TRUE","","39633","1386.7","26081","Kent","{""26081"": ""100""}","Kent","26081","FALSE","FALSE","America/Detroit"
-"49505","42.99835","-85.63693","Grand Rapids","MI","Michigan","TRUE","","32372","1404.3","26081","Kent","{""26081"": ""100""}","Kent","26081","FALSE","FALSE","America/Detroit"
-"49506","42.9451","-85.614","Grand Rapids","MI","Michigan","TRUE","","34528","1830.0","26081","Kent","{""26081"": ""100""}","Kent","26081","FALSE","FALSE","America/Detroit"
-"49507","42.93068","-85.65513","Grand Rapids","MI","Michigan","TRUE","","39323","2751.3","26081","Kent","{""26081"": ""100""}","Kent","26081","FALSE","FALSE","America/Detroit"
-"49508","42.87352","-85.62526","Grand Rapids","MI","Michigan","TRUE","","39571","1266.5","26081","Kent","{""26081"": ""100""}","Kent","26081","FALSE","FALSE","America/Detroit"
-"49509","42.89755","-85.69297","Wyoming","MI","Michigan","TRUE","","28323","1507.9","26081","Kent","{""26081"": ""100""}","Kent","26081","FALSE","FALSE","America/Detroit"
-"49512","42.8814","-85.54673","Grand Rapids","MI","Michigan","TRUE","","18170","310.2","26081","Kent","{""26081"": ""100""}","Kent","26081","FALSE","FALSE","America/Detroit"
-"49519","42.89792","-85.71863","Wyoming","MI","Michigan","TRUE","","28836","1397.1","26081","Kent","{""26081"": ""100""}","Kent","26081","FALSE","FALSE","America/Detroit"
-"49525","43.02115","-85.5917","Grand Rapids","MI","Michigan","TRUE","","30019","493.3","26081","Kent","{""26081"": ""100""}","Kent","26081","FALSE","FALSE","America/Detroit"
-"49534","42.97092","-85.78825","Grand Rapids","MI","Michigan","TRUE","","21952","242.4","26081","Kent","{""26081"": ""77.18"", ""26139"": ""22.82""}","Kent|Ottawa","26081|26139","FALSE","FALSE","America/Detroit"
-"49544","43.04596","-85.74191","Grand Rapids","MI","Michigan","TRUE","","10341","192.0","26081","Kent","{""26081"": ""99.43"", ""26139"": ""0.57""}","Kent|Ottawa","26081|26139","FALSE","FALSE","America/Detroit"
-"49546","42.92759","-85.53745","Grand Rapids","MI","Michigan","TRUE","","34111","729.3","26081","Kent","{""26081"": ""100""}","Kent","26081","FALSE","FALSE","America/Detroit"
-"49548","42.86966","-85.66276","Grand Rapids","MI","Michigan","TRUE","","33613","1227.0","26081","Kent","{""26081"": ""100""}","Kent","26081","FALSE","FALSE","America/Detroit"
-"49601","44.24978","-85.50741","Cadillac","MI","Michigan","TRUE","","21816","40.8","26165","Wexford","{""26165"": ""98.33"", ""26113"": ""1.67""}","Wexford|Missaukee","26165|26113","FALSE","FALSE","America/Detroit"
-"49611","44.97368","-84.97443","Alba","MI","Michigan","TRUE","","285","70.0","26009","Antrim","{""26009"": ""100""}","Antrim","26009","FALSE","FALSE","America/Detroit"
-"49612","44.87135","-85.24242","Alden","MI","Michigan","TRUE","","1332","21.8","26009","Antrim","{""26009"": ""71.01"", ""26079"": ""28.99""}","Antrim|Kalkaska","26009|26079","FALSE","FALSE","America/Detroit"
-"49613","44.50271","-86.20548","Arcadia","MI","Michigan","TRUE","","677","11.1","26101","Manistee","{""26101"": ""80"", ""26019"": ""20""}","Manistee|Benzie","26101|26019","FALSE","FALSE","America/Detroit"
-"49614","44.43874","-86.11643","Bear Lake","MI","Michigan","TRUE","","2942","13.5","26101","Manistee","{""26101"": ""100""}","Manistee","26101","FALSE","FALSE","America/Detroit"
-"49615","44.97086","-85.2064","Bellaire","MI","Michigan","TRUE","","3925","21.7","26009","Antrim","{""26009"": ""100""}","Antrim","26009","FALSE","FALSE","America/Detroit"
-"49616","44.57439","-86.08099","Benzonia","MI","Michigan","TRUE","","2186","22.8","26019","Benzie","{""26019"": ""100""}","Benzie","26019","FALSE","FALSE","America/Detroit"
-"49617","44.64409","-86.03259","Beulah","MI","Michigan","TRUE","","3047","26.1","26019","Benzie","{""26019"": ""100""}","Benzie","26019","FALSE","FALSE","America/Detroit"
-"49618","44.29285","-85.60237","Boon","MI","Michigan","TRUE","","773","9.6","26165","Wexford","{""26165"": ""100""}","Wexford","26165","FALSE","FALSE","America/Detroit"
-"49619","44.30263","-85.98189","Brethren","MI","Michigan","TRUE","","1031","6.3","26101","Manistee","{""26101"": ""100""}","Manistee","26101","FALSE","FALSE","America/Detroit"
-"49620","44.52136","-85.69383","Buckley","MI","Michigan","TRUE","","2533","18.7","26165","Wexford","{""26165"": ""62.66"", ""26055"": ""37.34""}","Wexford|Grand Traverse","26165|26055","FALSE","FALSE","America/Detroit"
-"49621","44.8634","-85.77556","Cedar","MI","Michigan","TRUE","","3908","25.7","26089","Leelanau","{""26089"": ""100""}","Leelanau","26089","FALSE","FALSE","America/Detroit"
-"49622","45.07736","-85.26139","Central Lake","MI","Michigan","TRUE","","2475","21.3","26009","Antrim","{""26009"": ""100""}","Antrim","26009","FALSE","FALSE","America/Detroit"
-"49623","43.9048","-85.6835","Chase","MI","Michigan","TRUE","","1226","8.3","26085","Lake","{""26085"": ""100""}","Lake","26085","FALSE","FALSE","America/Detroit"
-"49625","44.4323","-85.87975","Copemish","MI","Michigan","TRUE","","1113","5.1","26101","Manistee","{""26101"": ""95.58"", ""26165"": ""4.42""}","Manistee|Wexford","26101|26165","FALSE","FALSE","America/Detroit"
-"49626","44.23777","-86.29323","Eastlake","MI","Michigan","TRUE","","364","101.1","26101","Manistee","{""26101"": ""100""}","Manistee","26101","FALSE","FALSE","America/Detroit"
-"49627","45.09603","-85.34991","Eastport","MI","Michigan","TRUE","","219","50.7","26009","Antrim","{""26009"": ""100""}","Antrim","26009","FALSE","FALSE","America/Detroit"
-"49628","44.62085","-86.23105","Elberta","MI","Michigan","TRUE","","165","85.2","26019","Benzie","{""26019"": ""100""}","Benzie","26019","FALSE","FALSE","America/Detroit"
-"49629","44.91081","-85.39302","Elk Rapids","MI","Michigan","TRUE","","2045","196.6","26009","Antrim","{""26009"": ""100""}","Antrim","26009","FALSE","FALSE","America/Detroit"
-"49630","44.81378","-85.99273","Empire","MI","Michigan","TRUE","","1474","12.6","26089","Leelanau","{""26089"": ""97.76"", ""26019"": ""2.24""}","Leelanau|Benzie","26089|26019","FALSE","FALSE","America/Detroit"
-"49631","43.91413","-85.26182","Evart","MI","Michigan","TRUE","","6226","16.2","26133","Osceola","{""26133"": ""88.75"", ""26107"": ""11.25""}","Osceola|Mecosta","26133|26107","FALSE","FALSE","America/Detroit"
-"49632","44.23892","-84.96935","Falmouth","MI","Michigan","TRUE","","1051","4.8","26113","Missaukee","{""26113"": ""100""}","Missaukee","26113","FALSE","FALSE","America/Detroit"
-"49633","44.55957","-85.20286","Fife Lake","MI","Michigan","TRUE","","3713","8.7","26079","Kalkaska","{""26079"": ""64.87"", ""26055"": ""31.62"", ""26165"": ""2.89"", ""26113"": ""0.62""}","Kalkaska|Grand Traverse|Wexford|Missaukee","26079|26055|26165|26113","FALSE","FALSE","America/Detroit"
-"49634","44.21485","-86.29031","Filer City","MI","Michigan","TRUE","","57","147.5","26101","Manistee","{""26101"": ""100""}","Manistee","26101","FALSE","FALSE","America/Detroit"
-"49635","44.61996","-86.18479","Frankfort","MI","Michigan","TRUE","","3450","33.1","26019","Benzie","{""26019"": ""100""}","Benzie","26019","FALSE","FALSE","America/Detroit"
-"49636","44.87721","-85.99598","Glen Arbor","MI","Michigan","TRUE","","427","13.8","26089","Leelanau","{""26089"": ""100""}","Leelanau","26089","FALSE","FALSE","America/Detroit"
-"49637","44.6264","-85.7059","Grawn","MI","Michigan","TRUE","","3411","52.7","26055","Grand Traverse","{""26055"": ""100""}","Grand Traverse","26055","FALSE","FALSE","America/Detroit"
-"49638","44.29045","-85.75115","Harrietta","MI","Michigan","TRUE","","849","4.8","26165","Wexford","{""26165"": ""91.5"", ""26101"": ""8.5""}","Wexford|Manistee","26165|26101","FALSE","FALSE","America/Detroit"
-"49639","43.84591","-85.39842","Hersey","MI","Michigan","TRUE","","2253","14.5","26133","Osceola","{""26133"": ""77.28"", ""26107"": ""22.72""}","Osceola|Mecosta","26133|26107","FALSE","FALSE","America/Detroit"
-"49640","44.716","-86.03671","Honor","MI","Michigan","TRUE","","1610","10.4","26019","Benzie","{""26019"": ""100""}","Benzie","26019","FALSE","FALSE","America/Detroit"
-"49642","43.86676","-85.76056","Idlewild","MI","Michigan","TRUE","","771","16.4","26085","Lake","{""26085"": ""100""}","Lake","26085","FALSE","FALSE","America/Detroit"
-"49643","44.63959","-85.83375","Interlochen","MI","Michigan","TRUE","","6956","47.8","26055","Grand Traverse","{""26055"": ""67.94"", ""26019"": ""32.06""}","Grand Traverse|Benzie","26055|26019","FALSE","FALSE","America/Detroit"
-"49644","44.10623","-85.92203","Irons","MI","Michigan","TRUE","","2152","7.2","26085","Lake","{""26085"": ""94.05"", ""26101"": ""5.85"", ""26105"": ""0.1""}","Lake|Manistee|Mason","26085|26101|26105","FALSE","FALSE","America/Detroit"
-"49645","44.36961","-86.02592","Kaleva","MI","Michigan","TRUE","","1608","15.5","26101","Manistee","{""26101"": ""100""}","Manistee","26101","FALSE","FALSE","America/Detroit"
-"49646","44.72786","-85.05866","Kalkaska","MI","Michigan","TRUE","","8252","14.4","26079","Kalkaska","{""26079"": ""100""}","Kalkaska","26079","FALSE","FALSE","America/Detroit"
-"49648","44.98464","-85.34315","Kewadin","MI","Michigan","TRUE","","2240","32.5","26009","Antrim","{""26009"": ""100""}","Antrim","26009","FALSE","FALSE","America/Detroit"
-"49649","44.56775","-85.53483","Kingsley","MI","Michigan","TRUE","","7101","26.4","26055","Grand Traverse","{""26055"": ""97.88"", ""26165"": ""2.12""}","Grand Traverse|Wexford","26055|26165","FALSE","FALSE","America/Detroit"
-"49650","44.73314","-85.87878","Lake Ann","MI","Michigan","TRUE","","3295","51.7","26019","Benzie","{""26019"": ""100""}","Benzie","26019","FALSE","FALSE","America/Detroit"
-"49651","44.39399","-85.11292","Lake City","MI","Michigan","TRUE","","7838","13.5","26113","Missaukee","{""26113"": ""100""}","Missaukee","26113","FALSE","FALSE","America/Detroit"
-"49653","44.97548","-85.73205","Lake Leelanau","MI","Michigan","TRUE","","1969","27.3","26089","Leelanau","{""26089"": ""100""}","Leelanau","26089","FALSE","FALSE","America/Detroit"
-"49654","45.07933","-85.98983","Leland","MI","Michigan","TRUE","","424","4.7","26089","Leelanau","{""26089"": ""100""}","Leelanau","26089","FALSE","FALSE","America/Detroit"
-"49655","44.02602","-85.44344","Leroy","MI","Michigan","TRUE","","3538","15.2","26133","Osceola","{""26133"": ""94.52"", ""26085"": ""5.48""}","Osceola|Lake","26133|26085","FALSE","FALSE","America/Detroit"
-"49656","44.06554","-85.69763","Luther","MI","Michigan","TRUE","","1667","5.1","26085","Lake","{""26085"": ""100""}","Lake","26085","FALSE","FALSE","America/Detroit"
-"49657","44.21434","-85.17354","McBain","MI","Michigan","TRUE","","3704","14.8","26113","Missaukee","{""26113"": ""100""}","Missaukee","26113","FALSE","FALSE","America/Detroit"
-"49659","44.89941","-85.02408","Mancelona","MI","Michigan","TRUE","","6809","15.9","26009","Antrim","{""26009"": ""78.64"", ""26079"": ""21.36""}","Antrim|Kalkaska","26009|26079","FALSE","FALSE","America/Detroit"
-"49660","44.22586","-86.20635","Manistee","MI","Michigan","TRUE","","14202","29.4","26101","Manistee","{""26101"": ""95.92"", ""26105"": ""4.08""}","Manistee|Mason","26101|26105","FALSE","FALSE","America/Detroit"
-"49663","44.42993","-85.38848","Manton","MI","Michigan","TRUE","","6205","14.1","26165","Wexford","{""26165"": ""79.79"", ""26113"": ""20.21""}","Wexford|Missaukee","26165|26113","FALSE","FALSE","America/Detroit"
-"49664","44.87029","-85.89005","Maple City","MI","Michigan","TRUE","","1848","12.3","26089","Leelanau","{""26089"": ""100""}","Leelanau","26089","FALSE","FALSE","America/Detroit"
-"49665","44.09683","-85.12696","Marion","MI","Michigan","TRUE","","4150","10.2","26133","Osceola","{""26133"": ""81.83"", ""26035"": ""12.26"", ""26113"": ""5.91""}","Osceola|Clare|Missaukee","26133|26035|26113","FALSE","FALSE","America/Detroit"
-"49666","44.62204","-85.55408","Mayfield","MI","Michigan","TRUE","","245","37.4","26055","Grand Traverse","{""26055"": ""100""}","Grand Traverse","26055","FALSE","FALSE","America/Detroit"
-"49667","44.36653","-84.91323","Merritt","MI","Michigan","TRUE","","514","2.5","26113","Missaukee","{""26113"": ""100""}","Missaukee","26113","FALSE","FALSE","America/Detroit"
-"49668","44.40582","-85.7044","Mesick","MI","Michigan","TRUE","","3404","12.4","26165","Wexford","{""26165"": ""99.61"", ""26101"": ""0.39""}","Wexford|Manistee","26165|26101","FALSE","FALSE","America/Detroit"
-"49670","45.16042","-85.65145","Northport","MI","Michigan","TRUE","","1963","16.4","26089","Leelanau","{""26089"": ""100""}","Leelanau","26089","FALSE","FALSE","America/Detroit"
-"49674","45.05225","-85.59331","Omena","MI","Michigan","TRUE","","53","12.7","26089","Leelanau","{""26089"": ""100""}","Leelanau","26089","FALSE","FALSE","America/Detroit"
-"49675","44.37615","-86.21656","Onekama","MI","Michigan","TRUE","","993","31.8","26101","Manistee","{""26101"": ""100""}","Manistee","26101","FALSE","FALSE","America/Detroit"
-"49676","44.83306","-85.2892","Rapid City","MI","Michigan","TRUE","","3686","33.0","26079","Kalkaska","{""26079"": ""67.27"", ""26009"": ""32.73""}","Kalkaska|Antrim","26079|26009","FALSE","FALSE","America/Detroit"
-"49677","43.89683","-85.54827","Reed City","MI","Michigan","TRUE","","7155","20.9","26133","Osceola","{""26133"": ""81.86"", ""26085"": ""14.49"", ""26123"": ""3.65""}","Osceola|Lake|Newaygo","26133|26085|26123","FALSE","FALSE","America/Detroit"
-"49679","43.87765","-85.14647","Sears","MI","Michigan","TRUE","","1291","9.1","26133","Osceola","{""26133"": ""86.76"", ""26107"": ""13.24""}","Osceola|Mecosta","26133|26107","FALSE","FALSE","America/Detroit"
-"49680","44.64121","-85.25244","South Boardman","MI","Michigan","TRUE","","1927","14.3","26079","Kalkaska","{""26079"": ""99.9"", ""26055"": ""0.1""}","Kalkaska|Grand Traverse","26079|26055","FALSE","FALSE","America/Detroit"
-"49682","44.97877","-85.65001","Suttons Bay","MI","Michigan","TRUE","","4068","42.7","26089","Leelanau","{""26089"": ""100""}","Leelanau","26089","FALSE","FALSE","America/Detroit"
-"49683","44.53935","-85.9306","Thompsonville","MI","Michigan","TRUE","","2135","9.6","26019","Benzie","{""26019"": ""60.29"", ""26101"": ""34.19"", ""26055"": ""5.52""}","Benzie|Manistee|Grand Traverse","26019|26101|26055","FALSE","FALSE","America/Detroit"
-"49684","44.75802","-85.70845","Traverse City","MI","Michigan","TRUE","","40681","155.9","26055","Grand Traverse","{""26055"": ""83.97"", ""26089"": ""15.07"", ""26019"": ""0.95""}","Grand Traverse|Leelanau|Benzie","26055|26089|26019","FALSE","FALSE","America/Detroit"
-"49686","44.73572","-85.50303","Traverse City","MI","Michigan","TRUE","","33459","107.4","26055","Grand Traverse","{""26055"": ""100""}","Grand Traverse","26055","FALSE","FALSE","America/Detroit"
-"49688","44.12052","-85.44678","Tustin","MI","Michigan","TRUE","","2503","10.0","26133","Osceola","{""26133"": ""93.16"", ""26085"": ""5.73"", ""26165"": ""1.11""}","Osceola|Lake|Wexford","26133|26085|26165","FALSE","FALSE","America/Detroit"
-"49689","44.21424","-85.90753","Wellston","MI","Michigan","TRUE","","1437","7.1","26101","Manistee","{""26101"": ""90.64"", ""26165"": ""9.36""}","Manistee|Wexford","26101|26165","FALSE","FALSE","America/Detroit"
-"49690","44.78224","-85.39565","Williamsburg","MI","Michigan","TRUE","","7036","35.4","26055","Grand Traverse","{""26055"": ""88.56"", ""26009"": ""6"", ""26079"": ""5.44""}","Grand Traverse|Antrim|Kalkaska","26055|26009|26079","FALSE","FALSE","America/Detroit"
-"49701","45.75566","-84.72915","Mackinaw City","MI","Michigan","TRUE","","977","30.0","26047","Emmet","{""26047"": ""58.69"", ""26031"": ""41.31""}","Emmet|Cheboygan","26047|26031","FALSE","FALSE","America/Detroit"
-"49705","45.35578","-84.46131","Afton","MI","Michigan","TRUE","","889","4.5","26031","Cheboygan","{""26031"": ""100""}","Cheboygan","26031","FALSE","FALSE","America/Detroit"
-"49706","45.4403","-84.78045","Alanson","MI","Michigan","TRUE","","4300","26.6","26047","Emmet","{""26047"": ""82.01"", ""26031"": ""17.99""}","Emmet|Cheboygan","26047|26031","FALSE","FALSE","America/Detroit"
-"49707","45.0916","-83.49648","Alpena","MI","Michigan","TRUE","","21771","38.9","26007","Alpena","{""26007"": ""97.54"", ""26141"": ""2.46""}","Alpena|Presque Isle","26007|26141","FALSE","FALSE","America/Detroit"
-"49709","45.01522","-84.15842","Atlanta","MI","Michigan","TRUE","","3549","6.0","26119","Montmorency","{""26119"": ""100""}","Montmorency","26119","FALSE","FALSE","America/Detroit"
-"49710","46.28343","-84.18837","Barbeau","MI","Michigan","TRUE","","383","4.1","26033","Chippewa","{""26033"": ""100""}","Chippewa","26033","FALSE","FALSE","America/Detroit"
-"49712","45.21009","-85.00996","Boyne City","MI","Michigan","TRUE","","8026","43.2","26029","Charlevoix","{""26029"": ""98.37"", ""26009"": ""1.63""}","Charlevoix|Antrim","26029|26009","FALSE","FALSE","America/Detroit"
-"49713","45.21434","-84.85253","Boyne Falls","MI","Michigan","TRUE","","2099","8.2","26029","Charlevoix","{""26029"": ""95.06"", ""26047"": ""4.4"", ""26009"": ""0.54""}","Charlevoix|Emmet|Antrim","26029|26047|26009","FALSE","FALSE","America/Detroit"
-"49715","46.3875","-84.70636","Brimley","MI","Michigan","TRUE","","3499","7.4","26033","Chippewa","{""26033"": ""100""}","Chippewa","26033","FALSE","FALSE","America/Detroit"
-"49716","45.51117","-84.74935","Brutus","MI","Michigan","TRUE","","1012","16.2","26047","Emmet","{""26047"": ""70.84"", ""26031"": ""29.16""}","Emmet|Cheboygan","26047|26031","FALSE","FALSE","America/Detroit"
-"49717","45.439","-84.69817","Burt Lake","MI","Michigan","TRUE","","111","46.8","26031","Cheboygan","{""26031"": ""100""}","Cheboygan","26031","FALSE","FALSE","America/Detroit"
-"49718","45.7204","-84.8317","Carp Lake","MI","Michigan","TRUE","","632","4.9","26047","Emmet","{""26047"": ""91.3"", ""26031"": ""8.7""}","Emmet|Cheboygan","26047|26031","FALSE","FALSE","America/Detroit"
-"49719","46.0093","-84.32334","Cedarville","MI","Michigan","TRUE","","1176","7.8","26097","Mackinac","{""26097"": ""100""}","Mackinac","26097","FALSE","FALSE","America/Detroit"
-"49720","45.27545","-85.23947","Charlevoix","MI","Michigan","TRUE","","8766","35.4","26029","Charlevoix","{""26029"": ""97.17"", ""26009"": ""2.83""}","Charlevoix|Antrim","26029|26009","FALSE","FALSE","America/Detroit"
-"49721","45.57899","-84.45895","Cheboygan","MI","Michigan","TRUE","","14164","21.1","26031","Cheboygan","{""26031"": ""100""}","Cheboygan","26031","FALSE","FALSE","America/Detroit"
-"49722","45.42349","-84.86324","Conway","MI","Michigan","TRUE","","306","178.0","26047","Emmet","{""26047"": ""100""}","Emmet","26047","FALSE","FALSE","America/Detroit"
-"49724","46.32697","-84.38785","Dafter","MI","Michigan","TRUE","","1135","7.9","26033","Chippewa","{""26033"": ""100""}","Chippewa","26033","FALSE","FALSE","America/Detroit"
-"49725","45.99858","-84.0289","De Tour Village","MI","Michigan","TRUE","","680","5.5","26033","Chippewa","{""26033"": ""100""}","Chippewa","26033","FALSE","FALSE","America/Detroit"
-"49726","46.0016","-83.66243","Drummond Island","MI","Michigan","TRUE","","1051","3.2","26033","Chippewa","{""26033"": ""100""}","Chippewa","26033","FALSE","FALSE","America/Detroit"
-"49727","45.13063","-85.10348","East Jordan","MI","Michigan","TRUE","","7312","21.9","26029","Charlevoix","{""26029"": ""76.74"", ""26009"": ""23.26""}","Charlevoix|Antrim","26029|26009","FALSE","FALSE","America/Detroit"
-"49728","46.39445","-85.01704","Eckerman","MI","Michigan","TRUE","","274","0.6","26033","Chippewa","{""26033"": ""100""}","Chippewa","26033","FALSE","FALSE","America/Detroit"
-"49729","45.16162","-85.28369","Ellsworth","MI","Michigan","TRUE","","1573","16.1","26009","Antrim","{""26009"": ""88.66"", ""26029"": ""11.34""}","Antrim|Charlevoix","26009|26029","FALSE","FALSE","America/Detroit"
-"49730","45.046","-84.87388","Elmira","MI","Michigan","TRUE","","2234","9.2","26009","Antrim","{""26009"": ""55.74"", ""26137"": ""24.51"", ""26029"": ""19.75""}","Antrim|Otsego|Charlevoix","26009|26137|26029","FALSE","FALSE","America/Detroit"
-"49733","44.80858","-84.70122","Frederic","MI","Michigan","TRUE","","2078","6.3","26039","Crawford","{""26039"": ""76.28"", ""26137"": ""23.72""}","Crawford|Otsego","26039|26137","FALSE","FALSE","America/Detroit"
-"49735","44.99526","-84.67103","Gaylord","MI","Michigan","TRUE","","19744","30.4","26137","Otsego","{""26137"": ""100""}","Otsego","26137","FALSE","FALSE","America/Detroit"
-"49736","46.07216","-84.14056","Goetzville","MI","Michigan","TRUE","","475","2.3","26033","Chippewa","{""26033"": ""100""}","Chippewa","26033","FALSE","FALSE","America/Detroit"
-"49738","44.69373","-84.60635","Grayling","MI","Michigan","TRUE","","9854","13.0","26039","Crawford","{""26039"": ""97.76"", ""26079"": ""2.04"", ""26137"": ""0.2""}","Crawford|Kalkaska|Otsego","26039|26079|26137","FALSE","FALSE","America/Detroit"
-"49740","45.52448","-85.00071","Harbor Springs","MI","Michigan","TRUE","","7046","22.0","26047","Emmet","{""26047"": ""100""}","Emmet","26047","FALSE","FALSE","America/Detroit"
-"49743","45.27349","-83.89646","Hawks","MI","Michigan","TRUE","","766","3.3","26141","Presque Isle","{""26141"": ""100""}","Presque Isle","26141","FALSE","FALSE","America/Detroit"
-"49744","45.00018","-83.66623","Herron","MI","Michigan","TRUE","","740","8.1","26007","Alpena","{""26007"": ""100""}","Alpena","26007","FALSE","FALSE","America/Detroit"
-"49745","46.05191","-84.53123","Hessel","MI","Michigan","TRUE","","973","4.8","26097","Mackinac","{""26097"": ""100""}","Mackinac","26097","FALSE","FALSE","America/Detroit"
-"49746","45.06388","-83.95317","Hillman","MI","Michigan","TRUE","","3316","6.0","26119","Montmorency","{""26119"": ""89.72"", ""26007"": ""10.28""}","Montmorency|Alpena","26119|26007","FALSE","FALSE","America/Detroit"
-"49747","44.85112","-83.64207","Hubbard Lake","MI","Michigan","TRUE","","1953","7.8","26007","Alpena","{""26007"": ""61.32"", ""26001"": ""38.68""}","Alpena|Alcona","26007|26001","FALSE","FALSE","America/Detroit"
-"49748","46.37799","-85.19108","Hulbert","MI","Michigan","TRUE","","171","0.6","26033","Chippewa","{""26033"": ""98.82"", ""26095"": ""1.18""}","Chippewa|Luce","26033|26095","FALSE","FALSE","America/Detroit"
-"49749","45.41967","-84.57446","Indian River","MI","Michigan","TRUE","","3958","21.0","26031","Cheboygan","{""26031"": ""100""}","Cheboygan","26031","FALSE","FALSE","America/Detroit"
-"49751","44.99838","-84.41512","Johannesburg","MI","Michigan","TRUE","","2021","5.1","26137","Otsego","{""26137"": ""87.49"", ""26119"": ""12.51""}","Otsego|Montmorency","26137|26119","FALSE","FALSE","America/Detroit"
-"49752","46.28287","-84.46843","Kinross","MI","Michigan","TRUE","","912","13.7","26033","Chippewa","{""26033"": ""100""}","Chippewa","26033","FALSE","FALSE","America/Detroit"
-"49753","45.01889","-83.77221","Lachine","MI","Michigan","TRUE","","2075","4.7","26007","Alpena","{""26007"": ""100""}","Alpena","26007","FALSE","FALSE","America/Detroit"
-"49755","45.63581","-84.80027","Levering","MI","Michigan","TRUE","","1978","7.7","26047","Emmet","{""26047"": ""81.13"", ""26031"": ""18.87""}","Emmet|Cheboygan","26047|26031","FALSE","FALSE","America/Detroit"
-"49756","44.82343","-84.28073","Lewiston","MI","Michigan","TRUE","","3599","8.5","26119","Montmorency","{""26119"": ""65.57"", ""26135"": ""32.54"", ""26137"": ""1.58"", ""26039"": ""0.31""}","Montmorency|Oscoda|Otsego|Crawford","26119|26135|26137|26039","FALSE","FALSE","America/Detroit"
-"49757","45.85933","-84.62533","Mackinac Island","MI","Michigan","TRUE","","1072","95.1","26097","Mackinac","{""26097"": ""100""}","Mackinac","26097","FALSE","FALSE","America/Detroit"
-"49759","45.41794","-84.09842","Millersburg","MI","Michigan","TRUE","","1520","3.9","26141","Presque Isle","{""26141"": ""100""}","Presque Isle","26141","FALSE","FALSE","America/Detroit"
-"49760","46.05368","-84.89498","Moran","MI","Michigan","TRUE","","647","1.7","26097","Mackinac","{""26097"": ""100""}","Mackinac","26097","FALSE","FALSE","America/Detroit"
-"49762","46.13871","-85.26754","Naubinway","MI","Michigan","TRUE","","615","1.1","26097","Mackinac","{""26097"": ""100""}","Mackinac","26097","FALSE","FALSE","America/Detroit"
-"49764","45.42431","-84.82766","Oden","MI","Michigan","TRUE","","363","2355.1","26047","Emmet","{""26047"": ""100""}","Emmet","26047","FALSE","FALSE","America/Detroit"
-"49765","45.32844","-84.24545","Onaway","MI","Michigan","TRUE","","3771","5.8","26141","Presque Isle","{""26141"": ""62.83"", ""26031"": ""37.17""}","Presque Isle|Cheboygan","26141|26031","FALSE","FALSE","America/Detroit"
-"49766","44.90578","-83.44709","Ossineke","MI","Michigan","TRUE","","2304","20.1","26007","Alpena","{""26007"": ""100""}","Alpena","26007","FALSE","FALSE","America/Detroit"
-"49768","46.64427","-85.13305","Paradise","MI","Michigan","TRUE","","448","1.1","26033","Chippewa","{""26033"": ""100""}","Chippewa","26033","FALSE","FALSE","America/Detroit"
-"49769","45.56748","-84.85911","Pellston","MI","Michigan","TRUE","","1671","12.1","26047","Emmet","{""26047"": ""92.15"", ""26031"": ""7.85""}","Emmet|Cheboygan","26047|26031","FALSE","FALSE","America/Detroit"
-"49770","45.34405","-84.88842","Petoskey","MI","Michigan","TRUE","","17045","60.0","26047","Emmet","{""26047"": ""98.34"", ""26029"": ""1.66""}","Emmet|Charlevoix","26047|26029","FALSE","FALSE","America/Detroit"
-"49774","46.15693","-84.34679","Pickford","MI","Michigan","TRUE","","1772","4.2","26033","Chippewa","{""26033"": ""80.28"", ""26097"": ""19.72""}","Chippewa|Mackinac","26033|26097","FALSE","FALSE","America/Detroit"
-"49775","45.76941","-84.46333","Pointe Aux Pins","MI","Michigan","TRUE","","76","0.8","26097","Mackinac","{""26097"": ""100""}","Mackinac","26097","FALSE","FALSE","America/Detroit"
-"49776","45.24542","-83.69068","Posen","MI","Michigan","TRUE","","1747","5.5","26141","Presque Isle","{""26141"": ""78.28"", ""26007"": ""21.72""}","Presque Isle|Alpena","26141|26007","FALSE","FALSE","America/Detroit"
-"49777","45.2924","-83.51533","Presque Isle","MI","Michigan","TRUE","","1735","10.5","26141","Presque Isle","{""26141"": ""100""}","Presque Isle","26141","FALSE","FALSE","America/Detroit"
-"49779","45.40153","-83.876","Rogers City","MI","Michigan","TRUE","","4448","14.2","26141","Presque Isle","{""26141"": ""100""}","Presque Isle","26141","FALSE","FALSE","America/Detroit"
-"49780","46.2121","-84.72555","Rudyard","MI","Michigan","TRUE","","1882","2.4","26033","Chippewa","{""26033"": ""95.53"", ""26097"": ""4.47""}","Chippewa|Mackinac","26033|26097","FALSE","FALSE","America/Detroit"
-"49781","45.95424","-84.78404","Saint Ignace","MI","Michigan","TRUE","","3587","17.6","26097","Mackinac","{""26097"": ""100""}","Mackinac","26097","FALSE","FALSE","America/Detroit"
-"49782","45.68297","-85.54832","Beaver Island","MI","Michigan","TRUE","","577","3.1","26029","Charlevoix","{""26029"": ""100""}","Charlevoix","26029","FALSE","FALSE","America/Detroit"
-"49783","46.41474","-84.28349","Sault Sainte Marie","MI","Michigan","TRUE","","19270","49.3","26033","Chippewa","{""26033"": ""100""}","Chippewa","26033","FALSE","FALSE","America/Detroit"
-"49788","46.264","-84.46748","Kincheloe","MI","Michigan","TRUE","","5998","298.8","26033","Chippewa","{""26033"": ""100""}","Chippewa","26033","FALSE","FALSE","America/Detroit"
-"49791","45.48686","-84.59583","Topinabee","MI","Michigan","TRUE","","375","134.4","26031","Cheboygan","{""26031"": ""100""}","Cheboygan","26031","FALSE","FALSE","America/Detroit"
-"49793","46.2092","-85.06095","Trout Lake","MI","Michigan","TRUE","","186","1.2","26033","Chippewa","{""26033"": ""98.76"", ""26097"": ""1.24""}","Chippewa|Mackinac","26033|26097","FALSE","FALSE","America/Detroit"
-"49795","45.15877","-84.57657","Vanderbilt","MI","Michigan","TRUE","","1937","5.7","26137","Otsego","{""26137"": ""82.98"", ""26031"": ""9.01"", ""26029"": ""8.01""}","Otsego|Cheboygan|Charlevoix","26137|26031|26029","FALSE","FALSE","America/Detroit"
-"49796","45.26286","-84.94535","Walloon Lake","MI","Michigan","TRUE","","283","53.9","26029","Charlevoix","{""26029"": ""100""}","Charlevoix","26029","FALSE","FALSE","America/Detroit"
-"49799","45.26109","-84.58194","Wolverine","MI","Michigan","TRUE","","2240","7.8","26031","Cheboygan","{""26031"": ""100""}","Cheboygan","26031","FALSE","FALSE","America/Detroit"
-"49801","45.96733","-87.98216","Iron Mountain","MI","Michigan","TRUE","","11306","29.0","26043","Dickinson","{""26043"": ""100""}","Dickinson","26043","FALSE","FALSE","America/Menominee"
-"49802","45.80058","-88.07727","Kingsford","MI","Michigan","TRUE","","5981","291.5","26043","Dickinson","{""26043"": ""100""}","Dickinson","26043","FALSE","FALSE","America/Menominee"
-"49805","47.35563","-88.36961","Allouez","MI","Michigan","TRUE","","359","4.6","26083","Keweenaw","{""26083"": ""97.02"", ""26061"": ""2.98""}","Keweenaw|Houghton","26083|26061","FALSE","FALSE","America/Detroit"
-"49806","46.44251","-86.89667","Au Train","MI","Michigan","TRUE","","496","4.2","26003","Alger","{""26003"": ""100""}","Alger","26003","FALSE","FALSE","America/Detroit"
-"49807","45.78476","-87.37235","Bark River","MI","Michigan","TRUE","","3581","6.6","26041","Delta","{""26041"": ""79.59"", ""26109"": ""14.01"", ""26043"": ""6.4""}","Delta|Menominee|Dickinson","26041|26109|26043","FALSE","FALSE","America/Menominee"
-"49808","46.8126","-87.88242","Big Bay","MI","Michigan","TRUE","","223","0.5","26103","Marquette","{""26103"": ""100""}","Marquette","26103","FALSE","FALSE","America/Detroit"
-"49812","45.59335","-87.49817","Carney","MI","Michigan","TRUE","","877","4.7","26109","Menominee","{""26109"": ""100""}","Menominee","26109","FALSE","FALSE","America/Menominee"
-"49814","46.56817","-87.91206","Champion","MI","Michigan","TRUE","","1360","2.3","26103","Marquette","{""26103"": ""100""}","Marquette","26103","FALSE","FALSE","America/Detroit"
-"49815","46.18673","-87.96492","Channing","MI","Michigan","TRUE","","281","0.9","26043","Dickinson","{""26043"": ""100""}","Dickinson","26043","FALSE","FALSE","America/Menominee"
-"49816","46.28458","-86.89419","Chatham","MI","Michigan","TRUE","","749","5.2","26003","Alger","{""26003"": ""100""}","Alger","26003","FALSE","FALSE","America/Detroit"
-"49817","45.96723","-86.4632","Cooks","MI","Michigan","TRUE","","575","2.4","26153","Schoolcraft","{""26153"": ""87.48"", ""26041"": ""12.52""}","Schoolcraft|Delta","26153|26041","FALSE","FALSE","America/Detroit"
-"49818","45.97522","-87.3461","Cornell","MI","Michigan","TRUE","","1003","2.2","26041","Delta","{""26041"": ""86.44"", ""26103"": ""13.56""}","Delta|Marquette","26041|26103","FALSE","FALSE","America/Detroit"
-"49819","46.09393","-87.47656","Arnold","MI","Michigan","TRUE","","27","0.8","26103","Marquette","{""26103"": ""100""}","Marquette","26103","FALSE","FALSE","America/Detroit"
-"49820","46.20385","-85.69056","Curtis","MI","Michigan","TRUE","","294","5.6","26097","Mackinac","{""26097"": ""100""}","Mackinac","26097","FALSE","FALSE","America/Detroit"
-"49821","45.53014","-87.63265","Daggett","MI","Michigan","TRUE","","1217","3.3","26109","Menominee","{""26109"": ""100""}","Menominee","26109","FALSE","FALSE","America/Menominee"
-"49822","46.44231","-87.03984","Deerton","MI","Michigan","TRUE","","178","1.1","26003","Alger","{""26003"": ""96.82"", ""26103"": ""3.18""}","Alger|Marquette","26003|26103","FALSE","FALSE","America/Detroit"
-"49825","46.34505","-86.98526","Eben Junction","MI","Michigan","TRUE","","211","3.6","26003","Alger","{""26003"": ""100""}","Alger","26003","FALSE","FALSE","America/Detroit"
-"49826","46.34071","-87.03928","Rumely","MI","Michigan","TRUE","","271","7.3","26003","Alger","{""26003"": ""100""}","Alger","26003","FALSE","FALSE","America/Detroit"
-"49827","46.16915","-85.55772","Engadine","MI","Michigan","TRUE","","1021","3.8","26097","Mackinac","{""26097"": ""100""}","Mackinac","26097","FALSE","FALSE","America/Detroit"
-"49829","45.76353","-87.15961","Escanaba","MI","Michigan","TRUE","","16869","100.0","26041","Delta","{""26041"": ""100""}","Delta","26041","FALSE","FALSE","America/Detroit"
-"49831","46.06707","-87.72935","Felch","MI","Michigan","TRUE","","824","2.7","26043","Dickinson","{""26043"": ""92.18"", ""26103"": ""7.82""}","Dickinson|Marquette","26043|26103","FALSE","FALSE","America/Menominee"
-"49833","46.29185","-87.32754","Little Lake","MI","Michigan","TRUE","","178","8.5","26103","Marquette","{""26103"": ""100""}","Marquette","26103","FALSE","FALSE","America/Detroit"
-"49834","45.94378","-87.75838","Foster City","MI","Michigan","TRUE","","221","2.4","26043","Dickinson","{""26043"": ""100""}","Dickinson","26043","FALSE","FALSE","America/Menominee"
-"49835","45.73335","-86.58289","Garden","MI","Michigan","TRUE","","917","3.8","26041","Delta","{""26041"": ""100""}","Delta","26041","FALSE","FALSE","America/Detroit"
-"49836","46.19793","-85.88414","Germfask","MI","Michigan","TRUE","","855","3.3","26153","Schoolcraft","{""26153"": ""56.72"", ""26097"": ""43.28""}","Schoolcraft|Mackinac","26153|26097","FALSE","FALSE","America/Detroit"
-"49837","45.87446","-87.09707","Gladstone","MI","Michigan","TRUE","","9349","52.4","26041","Delta","{""26041"": ""100""}","Delta","26041","FALSE","FALSE","America/Detroit"
-"49838","46.06199","-85.74746","Gould City","MI","Michigan","TRUE","","453","1.3","26097","Mackinac","{""26097"": ""100""}","Mackinac","26097","FALSE","FALSE","America/Detroit"
-"49839","46.60785","-86.09856","Grand Marais","MI","Michigan","TRUE","","395","1.1","26003","Alger","{""26003"": ""100""}","Alger","26003","FALSE","FALSE","America/Detroit"
-"49840","46.08795","-86.01775","Gulliver","MI","Michigan","TRUE","","603","1.3","26153","Schoolcraft","{""26153"": ""100""}","Schoolcraft","26153","FALSE","FALSE","America/Detroit"
-"49841","46.27424","-87.47057","Gwinn","MI","Michigan","TRUE","","7276","14.6","26103","Marquette","{""26103"": ""100""}","Marquette","26103","FALSE","FALSE","America/Detroit"
-"49847","45.7054","-87.63187","Hermansville","MI","Michigan","TRUE","","1058","6.9","26109","Menominee","{""26109"": ""100""}","Menominee","26109","FALSE","FALSE","America/Menominee"
-"49848","45.37829","-87.63642","Ingalls","MI","Michigan","TRUE","","71","6.4","26109","Menominee","{""26109"": ""100""}","Menominee","26109","FALSE","FALSE","America/Menominee"
-"49849","46.43127","-87.75311","Ishpeming","MI","Michigan","TRUE","","12412","16.8","26103","Marquette","{""26103"": ""100""}","Marquette","26103","FALSE","FALSE","America/Detroit"
-"49852","45.78392","-87.81806","Loretto","MI","Michigan","TRUE","","105","171.0","26043","Dickinson","{""26043"": ""100""}","Dickinson","26043","FALSE","FALSE","America/Menominee"
-"49853","46.35941","-85.74505","McMillan","MI","Michigan","TRUE","","1141","2.6","26095","Luce","{""26095"": ""95.46"", ""26097"": ""4.54""}","Luce|Mackinac","26095|26097","FALSE","FALSE","America/Detroit"
-"49854","46.12581","-86.33788","Manistique","MI","Michigan","TRUE","","6271","4.7","26153","Schoolcraft","{""26153"": ""99.21"", ""26041"": ""0.79""}","Schoolcraft|Delta","26153|26041","FALSE","FALSE","America/Detroit"
-"49855","46.57442","-87.46659","Marquette","MI","Michigan","TRUE","","33006","63.5","26103","Marquette","{""26103"": ""99.93"", ""26003"": ""0.07""}","Marquette|Alger","26103|26003","FALSE","FALSE","America/Detroit"
-"49858","45.21945","-87.58409","Menominee","MI","Michigan","TRUE","","11647","52.4","26109","Menominee","{""26109"": ""100""}","Menominee","26109","FALSE","FALSE","America/Menominee"
-"49861","46.56862","-88.16938","Michigamme","MI","Michigan","TRUE","","518","1.0","26103","Marquette","{""26103"": ""52.92"", ""26013"": ""47.08""}","Marquette|Baraga","26103|26013","FALSE","FALSE","America/Detroit"
-"49862","46.37771","-86.70846","Munising","MI","Michigan","TRUE","","5163","12.1","26003","Alger","{""26003"": ""100""}","Alger","26003","FALSE","FALSE","America/Detroit"
-"49863","45.61329","-87.55149","Nadeau","MI","Michigan","TRUE","","146","103.6","26109","Menominee","{""26109"": ""100""}","Menominee","26109","FALSE","FALSE","America/Menominee"
-"49864","45.87145","-86.67261","Nahma","MI","Michigan","TRUE","","78","6.4","26041","Delta","{""26041"": ""100""}","Delta","26041","FALSE","FALSE","America/Detroit"
-"49866","46.52135","-87.57875","Negaunee","MI","Michigan","TRUE","","8134","21.6","26103","Marquette","{""26103"": ""100""}","Marquette","26103","FALSE","FALSE","America/Detroit"
-"49868","46.49368","-85.50573","Newberry","MI","Michigan","TRUE","","5293","2.9","26095","Luce","{""26095"": ""100""}","Luce","26095","FALSE","FALSE","America/Detroit"
-"49870","45.86816","-87.90541","Norway","MI","Michigan","TRUE","","3301","23.2","26043","Dickinson","{""26043"": ""100""}","Dickinson","26043","FALSE","FALSE","America/Menominee"
-"49871","46.42415","-87.53865","Palmer","MI","Michigan","TRUE","","558","16.5","26103","Marquette","{""26103"": ""100""}","Marquette","26103","FALSE","FALSE","America/Detroit"
-"49872","46.02103","-87.08436","Perkins","MI","Michigan","TRUE","","166","3.4","26041","Delta","{""26041"": ""100""}","Delta","26041","FALSE","FALSE","America/Detroit"
-"49873","45.87947","-87.53794","Perronville","MI","Michigan","TRUE","","93","0.2","26109","Menominee","{""26109"": ""96.67"", ""26043"": ""3.33""}","Menominee|Dickinson","26109|26043","FALSE","FALSE","America/Menominee"
-"49874","45.70195","-87.50304","Powers","MI","Michigan","TRUE","","1011","9.9","26109","Menominee","{""26109"": ""100""}","Menominee","26109","FALSE","FALSE","America/Menominee"
-"49876","45.80265","-87.98215","Quinnesec","MI","Michigan","TRUE","","1198","133.7","26043","Dickinson","{""26043"": ""100""}","Dickinson","26043","FALSE","FALSE","America/Menominee"
-"49877","46.14909","-87.7089","Ralph","MI","Michigan","TRUE","","17","0.1","26043","Dickinson","{""26043"": ""100""}","Dickinson","26043","FALSE","FALSE","America/Menominee"
-"49878","45.95738","-86.85514","Rapid River","MI","Michigan","TRUE","","3344","2.8","26041","Delta","{""26041"": ""98.69"", ""26003"": ""1.31""}","Delta|Alger","26041|26003","FALSE","FALSE","America/Detroit"
-"49879","46.36208","-88.0317","Republic","MI","Michigan","TRUE","","975","2.7","26103","Marquette","{""26103"": ""98.75"", ""26071"": ""1.25""}","Marquette|Iron","26103|26071","FALSE","FALSE","America/Detroit"
-"49880","46.11278","-87.22182","Rock","MI","Michigan","TRUE","","1013","1.8","26041","Delta","{""26041"": ""72.68"", ""26103"": ""27.32""}","Delta|Marquette","26041|26103","FALSE","FALSE","America/Detroit"
-"49881","46.07835","-88.03349","Sagola","MI","Michigan","TRUE","","305","2.5","26043","Dickinson","{""26043"": ""100""}","Dickinson","26043","FALSE","FALSE","America/Menominee"
-"49883","46.43518","-86.01333","Seney","MI","Michigan","TRUE","","118","0.2","26153","Schoolcraft","{""26153"": ""83.44"", ""26003"": ""16.56""}","Schoolcraft|Alger","26153|26003","FALSE","FALSE","America/Detroit"
-"49884","46.42305","-86.33948","Shingleton","MI","Michigan","TRUE","","367","0.5","26003","Alger","{""26003"": ""99.28"", ""26153"": ""0.72""}","Alger|Schoolcraft","26003|26153","FALSE","FALSE","America/Detroit"
-"49885","46.33662","-87.20744","Skandia","MI","Michigan","TRUE","","1871","4.9","26103","Marquette","{""26103"": ""94.25"", ""26003"": ""5.75""}","Marquette|Alger","26103|26003","FALSE","FALSE","America/Detroit"
-"49886","45.73911","-87.52696","Spalding","MI","Michigan","TRUE","","553","13.7","26109","Menominee","{""26109"": ""100""}","Menominee","26109","FALSE","FALSE","America/Menominee"
-"49887","45.43422","-87.56487","Stephenson","MI","Michigan","TRUE","","2594","4.7","26109","Menominee","{""26109"": ""100""}","Menominee","26109","FALSE","FALSE","America/Menominee"
-"49891","46.22516","-87.01703","Trenary","MI","Michigan","TRUE","","673","3.0","26003","Alger","{""26003"": ""100""}","Alger","26003","FALSE","FALSE","America/Detroit"
-"49892","45.78927","-87.78646","Vulcan","MI","Michigan","TRUE","","1877","4.4","26043","Dickinson","{""26043"": ""87.32"", ""26109"": ""12.68""}","Dickinson|Menominee","26043|26109","FALSE","FALSE","America/Menominee"
-"49893","45.29686","-87.59794","Wallace","MI","Michigan","TRUE","","1399","7.2","26109","Menominee","{""26109"": ""100""}","Menominee","26109","FALSE","FALSE","America/Menominee"
-"49894","45.78192","-87.07439","Wells","MI","Michigan","TRUE","","750","346.5","26041","Delta","{""26041"": ""100""}","Delta","26041","FALSE","FALSE","America/Detroit"
-"49895","46.16752","-86.66583","Wetmore","MI","Michigan","TRUE","","652","1.2","26003","Alger","{""26003"": ""69.28"", ""26041"": ""18.17"", ""26153"": ""12.55""}","Alger|Delta|Schoolcraft","26003|26041|26153","FALSE","FALSE","America/Detroit"
-"49896","45.67439","-87.38991","Wilson","MI","Michigan","TRUE","","1685","11.1","26109","Menominee","{""26109"": ""100""}","Menominee","26109","FALSE","FALSE","America/Menominee"
-"49901","47.30785","-88.39524","Ahmeek","MI","Michigan","TRUE","","215","34.6","26083","Keweenaw","{""26083"": ""100""}","Keweenaw","26083","FALSE","FALSE","America/Detroit"
-"49902","46.04303","-88.37986","Alpha","MI","Michigan","TRUE","","175","214.3","26071","Iron","{""26071"": ""100""}","Iron","26071","FALSE","FALSE","America/Menominee"
-"49903","46.32813","-88.42991","Amasa","MI","Michigan","TRUE","","79","0.2","26071","Iron","{""26071"": ""100""}","Iron","26071","FALSE","FALSE","America/Menominee"
-"49905","47.12377","-88.71648","Atlantic Mine","MI","Michigan","TRUE","","1986","12.9","26061","Houghton","{""26061"": ""100""}","Houghton","26061","FALSE","FALSE","America/Detroit"
-"49908","46.76547","-88.5679","Baraga","MI","Michigan","TRUE","","3376","12.6","26013","Baraga","{""26013"": ""100""}","Baraga","26013","FALSE","FALSE","America/Detroit"
-"49910","46.59851","-89.61275","Bergland","MI","Michigan","TRUE","","252","0.8","26131","Ontonagon","{""26131"": ""100""}","Ontonagon","26131","FALSE","FALSE","America/Detroit"
-"49911","46.48999","-90.04988","Bessemer","MI","Michigan","TRUE","","2746","25.6","26053","Gogebic","{""26053"": ""100""}","Gogebic","26053","FALSE","FALSE","America/Menominee"
-"49912","46.49436","-89.2028","Bruce Crossing","MI","Michigan","TRUE","","937","1.7","26131","Ontonagon","{""26131"": ""100""}","Ontonagon","26131","FALSE","FALSE","America/Detroit"
-"49913","47.24374","-88.45654","Calumet","MI","Michigan","TRUE","","6516","35.9","26061","Houghton","{""26061"": ""97.7"", ""26083"": ""2.3""}","Houghton|Keweenaw","26061|26083","FALSE","FALSE","America/Detroit"
-"49915","46.06511","-88.62197","Caspian","MI","Michigan","TRUE","","319","136.7","26071","Iron","{""26071"": ""100""}","Iron","26071","FALSE","FALSE","America/Menominee"
-"49916","46.98011","-88.59177","Chassell","MI","Michigan","TRUE","","3014","10.9","26061","Houghton","{""26061"": ""100""}","Houghton","26061","FALSE","FALSE","America/Detroit"
-"49917","47.28139","-88.35909","Copper City","MI","Michigan","TRUE","","197","44.3","26061","Houghton","{""26061"": ""100""}","Houghton","26061","FALSE","FALSE","America/Detroit"
-"49918","47.43409","-87.83571","Copper Harbor","MI","Michigan","TRUE","","102","0.8","26083","Keweenaw","{""26083"": ""100""}","Keweenaw","26083","FALSE","FALSE","America/Detroit"
-"49919","46.51861","-88.45585","Covington","MI","Michigan","TRUE","","179","0.6","26013","Baraga","{""26013"": ""100""}","Baraga","26013","FALSE","FALSE","America/Detroit"
-"49920","46.15512","-88.29236","Crystal Falls","MI","Michigan","TRUE","","4144","3.8","26071","Iron","{""26071"": ""100""}","Iron","26071","FALSE","FALSE","America/Menominee"
-"49921","47.09251","-88.58227","Dodgeville","MI","Michigan","TRUE","","389","366.7","26061","Houghton","{""26061"": ""100""}","Houghton","26061","FALSE","FALSE","America/Detroit"
-"49922","47.10391","-88.48497","Dollar Bay","MI","Michigan","TRUE","","652","42.9","26061","Houghton","{""26061"": ""100""}","Houghton","26061","FALSE","FALSE","America/Detroit"
-"49925","46.5448","-89.37248","Ewen","MI","Michigan","TRUE","","510","1.6","26131","Ontonagon","{""26131"": ""100""}","Ontonagon","26131","FALSE","FALSE","America/Detroit"
-"49927","46.04518","-88.56439","Gaastra","MI","Michigan","TRUE","","475","10.5","26071","Iron","{""26071"": ""100""}","Iron","26071","FALSE","FALSE","America/Menominee"
-"49929","46.79434","-89.10725","Greenland","MI","Michigan","TRUE","","230","5.0","26131","Ontonagon","{""26131"": ""100""}","Ontonagon","26131","FALSE","FALSE","America/Detroit"
-"49930","47.16247","-88.53997","Hancock","MI","Michigan","TRUE","","7258","57.3","26061","Houghton","{""26061"": ""100""}","Houghton","26061","FALSE","FALSE","America/Detroit"
-"49931","47.1305","-88.60379","Houghton","MI","Michigan","TRUE","","9600","131.1","26061","Houghton","{""26061"": ""100""}","Houghton","26061","FALSE","FALSE","America/Detroit"
-"49934","47.17083","-88.43781","Hubbell","MI","Michigan","TRUE","","886","154.8","26061","Houghton","{""26061"": ""100""}","Houghton","26061","FALSE","FALSE","America/Detroit"
-"49935","46.19924","-88.74481","Iron River","MI","Michigan","TRUE","","5896","4.8","26071","Iron","{""26071"": ""100""}","Iron","26071","FALSE","FALSE","America/Menominee"
-"49938","46.53458","-90.11674","Ironwood","MI","Michigan","TRUE","","7483","12.1","26053","Gogebic","{""26053"": ""100""}","Gogebic","26053","FALSE","FALSE","America/Menominee"
-"49942","47.27452","-88.4071","Kearsarge","MI","Michigan","TRUE","","368","139.4","26061","Houghton","{""26061"": ""100""}","Houghton","26061","FALSE","FALSE","America/Detroit"
-"49945","47.18093","-88.29842","Lake Linden","MI","Michigan","TRUE","","2537","5.9","26061","Houghton","{""26061"": ""97.1"", ""26083"": ""2.9""}","Houghton|Keweenaw","26061|26083","FALSE","FALSE","America/Detroit"
-"49946","46.70629","-88.3165","Lanse","MI","Michigan","TRUE","","3859","5.5","26013","Baraga","{""26013"": ""100""}","Baraga","26013","FALSE","FALSE","America/Detroit"
-"49947","46.38709","-89.59717","Marenisco","MI","Michigan","TRUE","","1338","1.6","26053","Gogebic","{""26053"": ""95.16"", ""26131"": ""4.84""}","Gogebic|Ontonagon","26053|26131","FALSE","FALSE","America/Menominee"
-"49948","46.72151","-89.01733","Mass City","MI","Michigan","TRUE","","593","1.7","26131","Ontonagon","{""26131"": ""100""}","Ontonagon","26131","FALSE","FALSE","America/Detroit"
-"49950","47.38063","-88.11995","Mohawk","MI","Michigan","TRUE","","1206","2.6","26083","Keweenaw","{""26083"": ""100""}","Keweenaw","26083","FALSE","FALSE","America/Detroit"
-"49952","46.69708","-88.78883","Nisula","MI","Michigan","TRUE","","111","0.7","26061","Houghton","{""26061"": ""98.6"", ""26131"": ""1.4""}","Houghton|Ontonagon","26061|26131","FALSE","FALSE","America/Detroit"
-"49953","46.80404","-89.37181","Ontonagon","MI","Michigan","TRUE","","2329","2.1","26131","Ontonagon","{""26131"": ""100""}","Ontonagon","26131","FALSE","FALSE","America/Detroit"
-"49955","47.00441","-88.70782","Painesdale","MI","Michigan","TRUE","","389","13.2","26061","Houghton","{""26061"": ""100""}","Houghton","26061","FALSE","FALSE","America/Detroit"
-"49958","46.82582","-88.67424","Pelkie","MI","Michigan","TRUE","","740","2.4","26061","Houghton","{""26061"": ""61.18"", ""26013"": ""38.82""}","Houghton|Baraga","26061|26013","FALSE","FALSE","America/Detroit"
-"49959","46.47064","-89.99838","Ramsay","MI","Michigan","TRUE","","342","186.4","26053","Gogebic","{""26053"": ""100""}","Gogebic","26053","FALSE","FALSE","America/Menominee"
-"49960","46.71123","-89.25647","Rockland","MI","Michigan","TRUE","","160","1.5","26131","Ontonagon","{""26131"": ""100""}","Ontonagon","26131","FALSE","FALSE","America/Detroit"
-"49961","46.52257","-88.72205","Sidnaw","MI","Michigan","TRUE","","109","0.7","26061","Houghton","{""26061"": ""100""}","Houghton","26061","FALSE","FALSE","America/Detroit"
-"49962","46.83131","-88.15186","Skanee","MI","Michigan","TRUE","","237","0.9","26013","Baraga","{""26013"": ""100""}","Baraga","26013","FALSE","FALSE","America/Detroit"
-"49963","47.05329","-88.66482","South Range","MI","Michigan","TRUE","","1000","32.2","26061","Houghton","{""26061"": ""100""}","Houghton","26061","FALSE","FALSE","America/Detroit"
-"49965","46.95053","-88.85511","Toivola","MI","Michigan","TRUE","","690","1.3","26061","Houghton","{""26061"": ""88.64"", ""26131"": ""11.36""}","Houghton|Ontonagon","26061|26131","FALSE","FALSE","America/Detroit"
-"49967","46.49554","-88.93683","Trout Creek","MI","Michigan","TRUE","","458","0.5","26131","Ontonagon","{""26131"": ""66.46"", ""26061"": ""26.63"", ""26071"": ""6.91""}","Ontonagon|Houghton|Iron","26131|26061|26071","FALSE","FALSE","America/Detroit"
-"49968","46.49227","-89.893","Wakefield","MI","Michigan","TRUE","","1942","3.0","26053","Gogebic","{""26053"": ""100""}","Gogebic","26053","FALSE","FALSE","America/Menominee"
-"49969","46.2463","-89.22106","Watersmeet","MI","Michigan","TRUE","","1259","1.9","26053","Gogebic","{""26053"": ""100""}","Gogebic","26053","FALSE","FALSE","America/Menominee"
-"49970","46.5412","-88.60494","Watton","MI","Michigan","TRUE","","292","1.1","26013","Baraga","{""26013"": ""100""}","Baraga","26013","FALSE","FALSE","America/Detroit"
-"49971","46.67711","-89.70132","White Pine","MI","Michigan","TRUE","","478","2.0","26131","Ontonagon","{""26131"": ""100""}","Ontonagon","26131","FALSE","FALSE","America/Detroit"
-"50001","41.36149","-93.43259","Ackworth","IA","Iowa","TRUE","","932","15.0","19181","Warren","{""19181"": ""100""}","Warren","19181","FALSE","FALSE","America/Chicago"
-"50002","41.51429","-94.64688","Adair","IA","Iowa","TRUE","","1417","5.1","19001","Adair","{""19001"": ""76.95"", ""19077"": ""23.05""}","Adair|Guthrie","19001|19077","FALSE","FALSE","America/Chicago"
-"50003","41.61058","-94.04272","Adel","IA","Iowa","TRUE","","7714","26.0","19049","Dallas","{""19049"": ""100""}","Dallas","19049","FALSE","FALSE","America/Chicago"
-"50005","42.12925","-93.02632","Albion","IA","Iowa","TRUE","","1057","15.2","19127","Marshall","{""19127"": ""100""}","Marshall","19127","FALSE","FALSE","America/Chicago"
-"50006","42.51425","-93.39912","Alden","IA","Iowa","TRUE","","1715","5.4","19083","Hardin","{""19083"": ""86.34"", ""19069"": ""13.66""}","Hardin|Franklin","19083|19069","FALSE","FALSE","America/Chicago"
-"50007","41.80683","-93.602","Alleman","IA","Iowa","TRUE","","434","31.5","19153","Polk","{""19153"": ""100""}","Polk","19153","FALSE","FALSE","America/Chicago"
-"50008","40.68072","-93.38472","Allerton","IA","Iowa","TRUE","","844","3.8","19185","Wayne","{""19185"": ""100""}","Wayne","19185","FALSE","FALSE","America/Chicago"
-"50009","41.64447","-93.45794","Altoona","IA","Iowa","TRUE","","19840","304.6","19153","Polk","{""19153"": ""100""}","Polk","19153","FALSE","FALSE","America/Chicago"
-"50010","42.0336","-93.58826","Ames","IA","Iowa","TRUE","","34165","221.4","19169","Story","{""19169"": ""100""}","Story","19169","FALSE","FALSE","America/Chicago"
-"50011","42.02406","-93.63648","Ames","IA","Iowa","TRUE","","1322","10568.1","19169","Story","{""19169"": ""100""}","Story","19169","FALSE","FALSE","America/Chicago"
-"50012","42.02717","-93.64525","Ames","IA","Iowa","TRUE","","4725","2397.5","19169","Story","{""19169"": ""100""}","Story","19169","FALSE","FALSE","America/Chicago"
-"50014","42.04855","-93.69449","Ames","IA","Iowa","TRUE","","29706","205.3","19169","Story","{""19169"": ""97.48"", ""19015"": ""2.52""}","Story|Boone","19169|19015","FALSE","FALSE","America/Chicago"
-"50020","41.43242","-94.74806","Anita","IA","Iowa","TRUE","","1330","5.4","19029","Cass","{""19029"": ""93.67"", ""19001"": ""3.7"", ""19009"": ""2.63""}","Cass|Adair|Audubon","19029|19001|19009","FALSE","FALSE","America/Chicago"
-"50021","41.72119","-93.56816","Ankeny","IA","Iowa","TRUE","","28306","424.5","19153","Polk","{""19153"": ""100""}","Polk","19153","FALSE","FALSE","America/Chicago"
-"50022","41.41596","-95.0018","Atlantic","IA","Iowa","TRUE","","8350","19.4","19029","Cass","{""19029"": ""98.8"", ""19009"": ""0.92"", ""19165"": ""0.28""}","Cass|Audubon|Shelby","19029|19009|19165","FALSE","FALSE","America/Chicago"
-"50023","41.73146","-93.63099","Ankeny","IA","Iowa","TRUE","","38469","670.4","19153","Polk","{""19153"": ""100""}","Polk","19153","FALSE","FALSE","America/Chicago"
-"50025","41.75791","-94.92352","Audubon","IA","Iowa","TRUE","","3064","6.0","19009","Audubon","{""19009"": ""100""}","Audubon","19009","FALSE","FALSE","America/Chicago"
-"50026","41.85852","-94.44962","Bagley","IA","Iowa","TRUE","","531","3.7","19077","Guthrie","{""19077"": ""85.45"", ""19073"": ""14.55""}","Guthrie|Greene","19077|19073","FALSE","FALSE","America/Chicago"
-"50027","41.47497","-92.47316","Barnes City","IA","Iowa","TRUE","","370","5.1","19123","Mahaska","{""19123"": ""94.04"", ""19157"": ""5.96""}","Mahaska|Poweshiek","19123|19157","FALSE","FALSE","America/Chicago"
-"50028","41.81523","-93.14755","Baxter","IA","Iowa","TRUE","","1555","13.5","19099","Jasper","{""19099"": ""100""}","Jasper","19099","FALSE","FALSE","America/Chicago"
-"50029","41.82587","-94.55061","Bayard","IA","Iowa","TRUE","","617","5.9","19077","Guthrie","{""19077"": ""98.7"", ""19073"": ""1.3""}","Guthrie|Greene","19077|19073","FALSE","FALSE","America/Chicago"
-"50032","41.66644","-93.54247","Berwick","IA","Iowa","TRUE","","352","368.4","19153","Polk","{""19153"": ""100""}","Polk","19153","FALSE","FALSE","America/Chicago"
-"50033","41.36303","-93.79289","Bevington","IA","Iowa","TRUE","","23","79.8","19121","Madison","{""19121"": ""100""}","Madison","19121","FALSE","FALSE","America/Chicago"
-"50034","42.52381","-93.64747","Blairsburg","IA","Iowa","TRUE","","467","2.9","19079","Hamilton","{""19079"": ""87.76"", ""19197"": ""12.24""}","Hamilton|Wright","19079|19197","FALSE","FALSE","America/Chicago"
-"50035","41.72529","-93.45743","Bondurant","IA","Iowa","TRUE","","8341","71.4","19153","Polk","{""19153"": ""100""}","Polk","19153","FALSE","FALSE","America/Chicago"
-"50036","42.08722","-93.8566","Boone","IA","Iowa","TRUE","","16676","33.2","19015","Boone","{""19015"": ""100""}","Boone","19015","FALSE","FALSE","America/Chicago"
-"50038","41.52342","-93.90269","Booneville","IA","Iowa","TRUE","","86","10.9","19049","Dallas","{""19049"": ""100""}","Dallas","19049","FALSE","FALSE","America/Chicago"
-"50039","41.81983","-94.00523","Bouton","IA","Iowa","TRUE","","463","7.6","19049","Dallas","{""19049"": ""100""}","Dallas","19049","FALSE","FALSE","America/Chicago"
-"50041","42.63844","-93.24804","Bradford","IA","Iowa","TRUE","","66","60.5","19069","Franklin","{""19069"": ""100""}","Franklin","19069","FALSE","FALSE","America/Chicago"
-"50042","41.53343","-94.90151","Brayton","IA","Iowa","TRUE","","249","3.0","19009","Audubon","{""19009"": ""100""}","Audubon","19009","FALSE","FALSE","America/Chicago"
-"50044","41.20301","-92.88238","Bussey","IA","Iowa","TRUE","","899","7.6","19125","Marion","{""19125"": ""81.29"", ""19123"": ""17.14"", ""19135"": ""1.58""}","Marion|Mahaska|Monroe","19125|19123|19135","FALSE","FALSE","America/Chicago"
-"50046","41.8939","-93.52354","Cambridge","IA","Iowa","TRUE","","1765","14.8","19169","Story","{""19169"": ""83.73"", ""19153"": ""16.27""}","Story|Polk","19169|19153","FALSE","FALSE","America/Chicago"
-"50047","41.46829","-93.47383","Carlisle","IA","Iowa","TRUE","","6077","40.4","19181","Warren","{""19181"": ""91.2"", ""19153"": ""8.8""}","Warren|Polk","19181|19153","FALSE","FALSE","America/Chicago"
-"50048","41.51337","-94.52011","Casey","IA","Iowa","TRUE","","904","4.0","19077","Guthrie","{""19077"": ""77.35"", ""19001"": ""22.65""}","Guthrie|Adair","19077|19001","FALSE","FALSE","America/Chicago"
-"50049","41.03564","-93.30104","Chariton","IA","Iowa","TRUE","","6403","12.3","19117","Lucas","{""19117"": ""99.8"", ""19185"": ""0.2""}","Lucas|Wayne","19117|19185","FALSE","FALSE","America/Chicago"
-"50050","42.16159","-94.50664","Churdan","IA","Iowa","TRUE","","682","3.5","19073","Greene","{""19073"": ""100""}","Greene","19073","FALSE","FALSE","America/Chicago"
-"50051","42.13446","-93.14126","Clemons","IA","Iowa","TRUE","","265","4.0","19127","Marshall","{""19127"": ""100""}","Marshall","19127","FALSE","FALSE","America/Chicago"
-"50052","40.64211","-93.44223","Clio","IA","Iowa","TRUE","","162","3.2","19185","Wayne","{""19185"": ""100""}","Wayne","19185","FALSE","FALSE","America/Chicago"
-"50054","41.68833","-93.23502","Colfax","IA","Iowa","TRUE","","2996","19.8","19099","Jasper","{""19099"": ""100""}","Jasper","19099","FALSE","FALSE","America/Chicago"
-"50055","41.88524","-93.29042","Collins","IA","Iowa","TRUE","","944","7.5","19169","Story","{""19169"": ""84.88"", ""19099"": ""15.12""}","Story|Jasper","19169|19099","FALSE","FALSE","America/Chicago"
-"50056","42.01691","-93.29739","Colo","IA","Iowa","TRUE","","1474","9.9","19169","Story","{""19169"": ""100""}","Story","19169","FALSE","FALSE","America/Chicago"
-"50057","41.17828","-93.14679","Columbia","IA","Iowa","TRUE","","315","6.0","19125","Marion","{""19125"": ""100""}","Marion","19125","FALSE","FALSE","America/Chicago"
-"50058","41.85605","-94.6903","Coon Rapids","IA","Iowa","TRUE","","1916","5.3","19027","Carroll","{""19027"": ""82.67"", ""19077"": ""10.85"", ""19009"": ""3.53"", ""19073"": ""2.96""}","Carroll|Guthrie|Audubon|Greene","19027|19077|19009|19073","FALSE","FALSE","America/Chicago"
-"50060","40.75342","-93.31808","Corydon","IA","Iowa","TRUE","","2473","5.5","19185","Wayne","{""19185"": ""100""}","Wayne","19185","FALSE","FALSE","America/Chicago"
-"50061","41.48516","-93.78805","Cumming","IA","Iowa","TRUE","","1848","23.1","19181","Warren","{""19181"": ""44.44"", ""19049"": ""28.34"", ""19121"": ""24.4"", ""19153"": ""2.82""}","Warren|Dallas|Madison|Polk","19181|19049|19121|19153","FALSE","FALSE","America/Chicago"
-"50062","41.23459","-93.24393","Melcher Dallas","IA","Iowa","TRUE","","693","8.7","19125","Marion","{""19125"": ""100""}","Marion","19125","FALSE","FALSE","America/Chicago"
-"50063","41.69932","-93.93612","Dallas Center","IA","Iowa","TRUE","","2380","14.0","19049","Dallas","{""19049"": ""100""}","Dallas","19049","FALSE","FALSE","America/Chicago"
-"50064","42.10771","-94.2366","Dana","IA","Iowa","TRUE","","159","3.9","19073","Greene","{""19073"": ""100""}","Greene","19073","FALSE","FALSE","America/Chicago"
-"50065","40.60809","-93.78626","Davis City","IA","Iowa","TRUE","","731","5.0","19053","Decatur","{""19053"": ""100""}","Decatur","19053","FALSE","FALSE","America/Chicago"
-"50066","41.80485","-94.22581","Dawson","IA","Iowa","TRUE","","154","2.4","19049","Dallas","{""19049"": ""100""}","Dallas","19049","FALSE","FALSE","America/Chicago"
-"50067","40.7157","-93.85996","Decatur","IA","Iowa","TRUE","","273","3.1","19053","Decatur","{""19053"": ""100""}","Decatur","19053","FALSE","FALSE","America/Chicago"
-"50068","40.94509","-93.46973","Derby","IA","Iowa","TRUE","","363","3.2","19117","Lucas","{""19117"": ""90.71"", ""19185"": ""9.29""}","Lucas|Wayne","19117|19185","FALSE","FALSE","America/Chicago"
-"50069","41.5207","-94.03028","De Soto","IA","Iowa","TRUE","","1061","80.3","19049","Dallas","{""19049"": ""100""}","Dallas","19049","FALSE","FALSE","America/Chicago"
-"50070","41.45566","-94.23822","Dexter","IA","Iowa","TRUE","","1371","8.0","19049","Dallas","{""19049"": ""47.75"", ""19077"": ""31.7"", ""19121"": ""12.56"", ""19001"": ""7.99""}","Dallas|Guthrie|Madison|Adair","19049|19077|19121|19001","FALSE","FALSE","America/Chicago"
-"50071","42.64944","-93.50305","Dows","IA","Iowa","TRUE","","1069","3.6","19197","Wright","{""19197"": ""70.41"", ""19069"": ""29.59""}","Wright|Franklin","19197|19069","FALSE","FALSE","America/Chicago"
-"50072","41.46964","-94.12251","Earlham","IA","Iowa","TRUE","","2367","10.4","19121","Madison","{""19121"": ""76.56"", ""19049"": ""23.44""}","Madison|Dallas","19121|19049","FALSE","FALSE","America/Chicago"
-"50073","41.7939","-93.52469","Elkhart","IA","Iowa","TRUE","","1032","15.3","19153","Polk","{""19153"": ""100""}","Polk","19153","FALSE","FALSE","America/Chicago"
-"50074","40.85679","-94.07581","Ellston","IA","Iowa","TRUE","","381","3.0","19159","Ringgold","{""19159"": ""94.91"", ""19175"": ""5.09""}","Ringgold|Union","19159|19175","FALSE","FALSE","America/Chicago"
-"50075","42.33527","-93.55981","Ellsworth","IA","Iowa","TRUE","","839","7.0","19079","Hamilton","{""19079"": ""100""}","Hamilton","19079","FALSE","FALSE","America/Chicago"
-"50076","41.59357","-94.85858","Exira","IA","Iowa","TRUE","","1458","5.0","19009","Audubon","{""19009"": ""100""}","Audubon","19009","FALSE","FALSE","America/Chicago"
-"50078","41.93859","-92.86301","Ferguson","IA","Iowa","TRUE","","176","266.4","19127","Marshall","{""19127"": ""100""}","Marshall","19127","FALSE","FALSE","America/Chicago"
-"50101","42.6673","-93.63472","Galt","IA","Iowa","TRUE","","44","1.7","19197","Wright","{""19197"": ""100""}","Wright","19197","FALSE","FALSE","America/Chicago"
-"50102","42.24554","-93.40019","Garden City","IA","Iowa","TRUE","","183","140.2","19083","Hardin","{""19083"": ""100""}","Hardin","19083","FALSE","FALSE","America/Chicago"
-"50103","40.79594","-93.60825","Garden Grove","IA","Iowa","TRUE","","369","2.3","19053","Decatur","{""19053"": ""100""}","Decatur","19053","FALSE","FALSE","America/Chicago"
-"50104","41.48679","-92.38665","Gibson","IA","Iowa","TRUE","","77","2.7","19107","Keokuk","{""19107"": ""97.66"", ""19123"": ""2.34""}","Keokuk|Mahaska","19107|19123","FALSE","FALSE","America/Chicago"
-"50105","42.11027","-93.63735","Gilbert","IA","Iowa","TRUE","","1013","49.3","19169","Story","{""19169"": ""100""}","Story","19169","FALSE","FALSE","America/Chicago"
-"50106","41.88171","-92.8135","Gilman","IA","Iowa","TRUE","","852","5.0","19127","Marshall","{""19127"": ""82.58"", ""19099"": ""9.34"", ""19171"": ""6.54"", ""19157"": ""1.54""}","Marshall|Jasper|Tama|Poweshiek","19127|19099|19171|19157","FALSE","FALSE","America/Chicago"
-"50107","42.03835","-94.22474","Grand Junction","IA","Iowa","TRUE","","1040","8.0","19073","Greene","{""19073"": ""97.73"", ""19015"": ""2.27""}","Greene|Boone","19073|19015","FALSE","FALSE","America/Chicago"
-"50108","40.83227","-93.95517","Grand River","IA","Iowa","TRUE","","445","2.4","19053","Decatur","{""19053"": ""91.08"", ""19039"": ""8.92""}","Decatur|Clarke","19053|19039","FALSE","FALSE","America/Chicago"
-"50109","41.76602","-93.80392","Granger","IA","Iowa","TRUE","","3023","53.3","19049","Dallas","{""19049"": ""52.61"", ""19153"": ""47.39""}","Dallas|Polk","19049|19153","FALSE","FALSE","America/Chicago"
-"50111","41.69178","-93.80431","Grimes","IA","Iowa","TRUE","","14472","203.4","19153","Polk","{""19153"": ""98.17"", ""19049"": ""1.83""}","Polk|Dallas","19153|19049","FALSE","FALSE","America/Chicago"
-"50112","41.7313","-92.71481","Grinnell","IA","Iowa","TRUE","","11411","24.0","19157","Poweshiek","{""19157"": ""92.91"", ""19099"": ""7.09""}","Poweshiek|Jasper","19157|19099","FALSE","FALSE","America/Chicago"
-"50115","41.68714","-94.55865","Guthrie Center","IA","Iowa","TRUE","","2603","5.9","19077","Guthrie","{""19077"": ""100""}","Guthrie","19077","FALSE","FALSE","America/Chicago"
-"50116","41.1797","-92.97601","Hamilton","IA","Iowa","TRUE","","198","4.5","19125","Marion","{""19125"": ""100""}","Marion","19125","FALSE","FALSE","America/Chicago"
-"50117","41.66819","-94.85988","Hamlin","IA","Iowa","TRUE","","133","1.9","19009","Audubon","{""19009"": ""100""}","Audubon","19009","FALSE","FALSE","America/Chicago"
-"50118","41.46369","-93.37299","Hartford","IA","Iowa","TRUE","","1080","21.7","19181","Warren","{""19181"": ""100""}","Warren","19181","FALSE","FALSE","America/Chicago"
-"50119","41.31664","-92.9475","Harvey","IA","Iowa","TRUE","","331","8.4","19125","Marion","{""19125"": ""100""}","Marion","19125","FALSE","FALSE","America/Chicago"
-"50120","41.93371","-92.98288","Haverhill","IA","Iowa","TRUE","","391","8.9","19127","Marshall","{""19127"": ""100""}","Marshall","19127","FALSE","FALSE","America/Chicago"
-"50122","42.30333","-93.3126","Hubbard","IA","Iowa","TRUE","","1420","6.5","19083","Hardin","{""19083"": ""100""}","Hardin","19083","FALSE","FALSE","America/Chicago"
-"50123","40.83778","-93.50475","Humeston","IA","Iowa","TRUE","","757","3.7","19185","Wayne","{""19185"": ""90.71"", ""19117"": ""6.72"", ""19053"": ""2.57""}","Wayne|Lucas|Decatur","19185|19117|19053","FALSE","FALSE","America/Chicago"
-"50124","41.88569","-93.60408","Huxley","IA","Iowa","TRUE","","4180","77.3","19169","Story","{""19169"": ""98.37"", ""19153"": ""1.63""}","Story|Polk","19169|19153","FALSE","FALSE","America/Chicago"
-"50125","41.33363","-93.57962","Indianola","IA","Iowa","TRUE","","20622","48.7","19181","Warren","{""19181"": ""100""}","Warren","19181","FALSE","FALSE","America/Chicago"
-"50126","42.50703","-93.24705","Iowa Falls","IA","Iowa","TRUE","","6470","18.4","19083","Hardin","{""19083"": ""96.85"", ""19069"": ""3.15""}","Hardin|Franklin","19083|19069","FALSE","FALSE","America/Chicago"
-"50127","41.77714","-93.20581","Ira","IA","Iowa","TRUE","","0","0.0","19099","Jasper","{""19099"": ""100""}","Jasper","19099","FALSE","FALSE","America/Chicago"
-"50128","41.85089","-94.29899","Jamaica","IA","Iowa","TRUE","","455","6.0","19077","Guthrie","{""19077"": ""82.22"", ""19073"": ""11.11"", ""19049"": ""6.67""}","Guthrie|Greene|Dallas","19077|19073|19049","FALSE","FALSE","America/Chicago"
-"50129","42.01447","-94.3768","Jefferson","IA","Iowa","TRUE","","5024","11.6","19073","Greene","{""19073"": ""100""}","Greene","19073","FALSE","FALSE","America/Chicago"
-"50130","42.30249","-93.6722","Jewell","IA","Iowa","TRUE","","1447","8.5","19079","Hamilton","{""19079"": ""100""}","Hamilton","19079","FALSE","FALSE","America/Chicago"
-"50131","41.69337","-93.71697","Johnston","IA","Iowa","TRUE","","21439","385.0","19153","Polk","{""19153"": ""100""}","Polk","19153","FALSE","FALSE","America/Chicago"
-"50132","42.39167","-93.69151","Kamrar","IA","Iowa","TRUE","","245","3.3","19079","Hamilton","{""19079"": ""100""}","Hamilton","19079","FALSE","FALSE","America/Chicago"
-"50133","40.71536","-94.06862","Kellerton","IA","Iowa","TRUE","","435","2.2","19159","Ringgold","{""19159"": ""95.77"", ""19053"": ""4.23""}","Ringgold|Decatur","19159|19053","FALSE","FALSE","America/Chicago"
-"50134","41.93949","-93.67159","Kelley","IA","Iowa","TRUE","","780","16.2","19169","Story","{""19169"": ""92.73"", ""19015"": ""7.27""}","Story|Boone","19169|19015","FALSE","FALSE","America/Chicago"
-"50135","41.74406","-92.88749","Kellogg","IA","Iowa","TRUE","","1498","7.8","19099","Jasper","{""19099"": ""100""}","Jasper","19099","FALSE","FALSE","America/Chicago"
-"50136","41.47087","-92.29086","Keswick","IA","Iowa","TRUE","","420","4.2","19107","Keokuk","{""19107"": ""97.75"", ""19095"": ""2.25""}","Keokuk|Iowa","19107|19095","FALSE","FALSE","America/Chicago"
-"50138","41.30073","-93.10425","Knoxville","IA","Iowa","TRUE","","11940","27.0","19125","Marion","{""19125"": ""100""}","Marion","19125","FALSE","FALSE","America/Chicago"
-"50139","41.19313","-93.36765","Lacona","IA","Iowa","TRUE","","1105","4.8","19181","Warren","{""19181"": ""69.88"", ""19125"": ""19.33"", ""19117"": ""10.79""}","Warren|Marion|Lucas","19181|19125|19117","FALSE","FALSE","America/Chicago"
-"50140","40.64211","-93.98213","Lamoni","IA","Iowa","TRUE","","2940","12.3","19053","Decatur","{""19053"": ""97.47"", ""19159"": ""2.53""}","Decatur|Ringgold","19053|19159","FALSE","FALSE","America/Chicago"
-"50141","41.86871","-92.95535","Laurel","IA","Iowa","TRUE","","493","5.3","19127","Marshall","{""19127"": ""82.25"", ""19099"": ""17.75""}","Marshall|Jasper","19127|19099","FALSE","FALSE","America/Chicago"
-"50142","42.00662","-92.77563","Le Grand","IA","Iowa","TRUE","","989","385.3","19127","Marshall","{""19127"": ""100""}","Marshall","19127","FALSE","FALSE","America/Chicago"
-"50143","41.34324","-92.7991","Leighton","IA","Iowa","TRUE","","651","7.0","19123","Mahaska","{""19123"": ""100""}","Mahaska","19123","FALSE","FALSE","America/Chicago"
-"50144","40.73871","-93.74101","Leon","IA","Iowa","TRUE","","2622","7.3","19053","Decatur","{""19053"": ""100""}","Decatur","19053","FALSE","FALSE","America/Chicago"
-"50146","41.68406","-94.24308","Linden","IA","Iowa","TRUE","","450","5.9","19049","Dallas","{""19049"": ""100""}","Dallas","19049","FALSE","FALSE","America/Chicago"
-"50147","40.62714","-93.5491","Lineville","IA","Iowa","TRUE","","369","2.0","19185","Wayne","{""19185"": ""75.68"", ""19053"": ""24.32""}","Wayne|Decatur","19185|19053","FALSE","FALSE","America/Chicago"
-"50148","42.18127","-92.99283","Liscomb","IA","Iowa","TRUE","","339","6.6","19127","Marshall","{""19127"": ""100""}","Marshall","19127","FALSE","FALSE","America/Chicago"
-"50149","41.15117","-94.08066","Lorimor","IA","Iowa","TRUE","","964","4.5","19175","Union","{""19175"": ""66.18"", ""19121"": ""33.82""}","Union|Madison","19175|19121","FALSE","FALSE","America/Chicago"
-"50150","41.12767","-92.96932","Lovilia","IA","Iowa","TRUE","","974","6.6","19135","Monroe","{""19135"": ""100""}","Monroe","19135","FALSE","FALSE","America/Chicago"
-"50151","41.08384","-93.49842","Lucas","IA","Iowa","TRUE","","556","2.7","19117","Lucas","{""19117"": ""93.23"", ""19181"": ""6.77""}","Lucas|Warren","19117|19181","FALSE","FALSE","America/Chicago"
-"50153","41.57548","-92.80204","Lynnville","IA","Iowa","TRUE","","858","10.7","19099","Jasper","{""19099"": ""94.28"", ""19123"": ""4.09"", ""19157"": ""1.63""}","Jasper|Mahaska|Poweshiek","19099|19123|19157","FALSE","FALSE","America/Chicago"
-"50154","42.17224","-93.39266","McCallsburg","IA","Iowa","TRUE","","500","9.4","19169","Story","{""19169"": ""98.71"", ""19083"": ""1.29""}","Story|Hardin","19169|19083","FALSE","FALSE","America/Chicago"
-"50155","41.20806","-94.20033","Macksburg","IA","Iowa","TRUE","","307","3.9","19121","Madison","{""19121"": ""95.29"", ""19001"": ""4.71""}","Madison|Adair","19121|19001","FALSE","FALSE","America/Chicago"
-"50156","41.90298","-93.79847","Madrid","IA","Iowa","TRUE","","4820","20.7","19015","Boone","{""19015"": ""88.06"", ""19153"": ""9.63"", ""19049"": ""2.31""}","Boone|Polk|Dallas","19015|19153|19049","FALSE","FALSE","America/Chicago"
-"50157","41.74492","-92.56145","Malcom","IA","Iowa","TRUE","","905","5.4","19157","Poweshiek","{""19157"": ""100""}","Poweshiek","19157","FALSE","FALSE","America/Chicago"
-"50158","42.05031","-92.90058","Marshalltown","IA","Iowa","TRUE","","30828","56.3","19127","Marshall","{""19127"": ""99.87"", ""19171"": ""0.13""}","Marshall|Tama","19127|19171","FALSE","FALSE","America/Chicago"
-"50160","41.37379","-93.73865","Martensdale","IA","Iowa","TRUE","","478","491.3","19181","Warren","{""19181"": ""100""}","Warren","19181","FALSE","FALSE","America/Chicago"
-"50161","41.84826","-93.40232","Maxwell","IA","Iowa","TRUE","","1831","8.7","19169","Story","{""19169"": ""74.35"", ""19153"": ""25.65""}","Story|Polk","19169|19153","FALSE","FALSE","America/Chicago"
-"50162","41.92488","-93.06923","Melbourne","IA","Iowa","TRUE","","1308","9.9","19127","Marshall","{""19127"": ""100""}","Marshall","19127","FALSE","FALSE","America/Chicago"
-"50163","41.22221","-93.24098","Melcher Dallas","IA","Iowa","TRUE","","701","569.9","19125","Marion","{""19125"": ""100""}","Marion","19125","FALSE","FALSE","America/Chicago"
-"50164","41.50129","-94.41876","Menlo","IA","Iowa","TRUE","","466","3.4","19077","Guthrie","{""19077"": ""81.29"", ""19001"": ""18.71""}","Guthrie|Adair","19077|19001","FALSE","FALSE","America/Chicago"
-"50165","40.84367","-93.28372","Millerton","IA","Iowa","TRUE","","108","16.8","19185","Wayne","{""19185"": ""100""}","Wayne","19185","FALSE","FALSE","America/Chicago"
-"50166","41.28079","-93.42661","Milo","IA","Iowa","TRUE","","1589","9.8","19181","Warren","{""19181"": ""100""}","Warren","19181","FALSE","FALSE","America/Chicago"
-"50167","41.74418","-94.04805","Minburn","IA","Iowa","TRUE","","701","6.9","19049","Dallas","{""19049"": ""100""}","Dallas","19049","FALSE","FALSE","America/Chicago"
-"50168","41.78066","-93.27442","Mingo","IA","Iowa","TRUE","","794","7.6","19099","Jasper","{""19099"": ""100""}","Jasper","19099","FALSE","FALSE","America/Chicago"
-"50169","41.65845","-93.3526","Mitchellville","IA","Iowa","TRUE","","2989","29.0","19153","Polk","{""19153"": ""90.59"", ""19099"": ""9.41""}","Polk|Jasper","19153|19099","FALSE","FALSE","America/Chicago"
-"50170","41.52589","-93.12124","Monroe","IA","Iowa","TRUE","","2875","12.6","19099","Jasper","{""19099"": ""89.84"", ""19125"": ""10.16""}","Jasper|Marion","19099|19125","FALSE","FALSE","America/Chicago"
-"50171","41.58604","-92.52499","Montezuma","IA","Iowa","TRUE","","2468","8.8","19157","Poweshiek","{""19157"": ""100""}","Poweshiek","19157","FALSE","FALSE","America/Chicago"
-"50173","41.97299","-92.71422","Montour","IA","Iowa","TRUE","","860","10.8","19171","Tama","{""19171"": ""100""}","Tama","19171","FALSE","FALSE","America/Chicago"
-"50174","41.03768","-93.96153","Murray","IA","Iowa","TRUE","","1375","4.9","19039","Clarke","{""19039"": ""96.71"", ""19175"": ""3.29""}","Clarke|Union","19039|19175","FALSE","FALSE","America/Chicago"
-"50201","42.03506","-93.44454","Nevada","IA","Iowa","TRUE","","8044","26.8","19169","Story","{""19169"": ""100""}","Story","19169","FALSE","FALSE","America/Chicago"
-"50206","42.25172","-93.18959","New Providence","IA","Iowa","TRUE","","555","4.5","19083","Hardin","{""19083"": ""89.92"", ""19127"": ""6.65"", ""19169"": ""3.42""}","Hardin|Marshall|Story","19083|19127|19169","FALSE","FALSE","America/Chicago"
-"50207","41.4347","-92.63752","New Sharon","IA","Iowa","TRUE","","2125","5.8","19123","Mahaska","{""19123"": ""99.25"", ""19157"": ""0.75""}","Mahaska|Poweshiek","19123|19157","FALSE","FALSE","America/Chicago"
-"50208","41.71025","-93.0383","Newton","IA","Iowa","TRUE","","20610","48.5","19099","Jasper","{""19099"": ""100""}","Jasper","19099","FALSE","FALSE","America/Chicago"
-"50210","41.18832","-93.69761","New Virginia","IA","Iowa","TRUE","","1493","7.6","19181","Warren","{""19181"": ""81.31"", ""19039"": ""16.56"", ""19121"": ""2.13""}","Warren|Clarke|Madison","19181|19039|19121","FALSE","FALSE","America/Chicago"
-"50211","41.45582","-93.69179","Norwalk","IA","Iowa","TRUE","","13152","90.3","19181","Warren","{""19181"": ""99.62"", ""19121"": ""0.38""}","Warren|Madison","19181|19121","FALSE","FALSE","America/Chicago"
-"50212","42.0366","-94.06756","Ogden","IA","Iowa","TRUE","","2813","8.0","19015","Boone","{""19015"": ""100""}","Boone","19015","FALSE","FALSE","America/Chicago"
-"50213","41.03205","-93.76611","Osceola","IA","Iowa","TRUE","","6953","12.8","19039","Clarke","{""19039"": ""100""}","Clarke","19039","FALSE","FALSE","America/Chicago"
-"50214","41.46195","-93.05122","Otley","IA","Iowa","TRUE","","866","8.7","19125","Marion","{""19125"": ""100""}","Marion","19125","FALSE","FALSE","America/Chicago"
-"50216","41.69629","-94.3484","Panora","IA","Iowa","TRUE","","2598","18.5","19077","Guthrie","{""19077"": ""100""}","Guthrie","19077","FALSE","FALSE","America/Chicago"
-"50217","42.17387","-94.24943","Paton","IA","Iowa","TRUE","","637","3.6","19073","Greene","{""19073"": ""80.98"", ""19015"": ""19.02""}","Greene|Boone","19073|19015","FALSE","FALSE","America/Chicago"
-"50218","41.34828","-93.8802","Patterson","IA","Iowa","TRUE","","143","263.1","19121","Madison","{""19121"": ""100""}","Madison","19121","FALSE","FALSE","America/Chicago"
-"50219","41.42365","-92.89833","Pella","IA","Iowa","TRUE","","13785","45.4","19125","Marion","{""19125"": ""94.67"", ""19123"": ""5.33""}","Marion|Mahaska","19125|19123","FALSE","FALSE","America/Chicago"
-"50220","41.83609","-94.12296","Perry","IA","Iowa","TRUE","","8898","33.4","19049","Dallas","{""19049"": ""94.61"", ""19015"": ""5.01"", ""19073"": ""0.38""}","Dallas|Boone|Greene","19049|19015|19073","FALSE","FALSE","America/Chicago"
-"50222","41.22119","-93.9472","Peru","IA","Iowa","TRUE","","627","5.8","19121","Madison","{""19121"": ""100""}","Madison","19121","FALSE","FALSE","America/Chicago"
-"50223","42.16892","-94.03007","Pilot Mound","IA","Iowa","TRUE","","557","7.3","19015","Boone","{""19015"": ""100""}","Boone","19015","FALSE","FALSE","America/Chicago"
-"50225","41.38457","-93.26904","Pleasantville","IA","Iowa","TRUE","","2776","12.9","19125","Marion","{""19125"": ""93.47"", ""19181"": ""6.53""}","Marion|Warren","19125|19181","FALSE","FALSE","America/Chicago"
-"50226","41.79269","-93.70235","Polk City","IA","Iowa","TRUE","","6584","68.0","19153","Polk","{""19153"": ""99.17"", ""19169"": ""0.83""}","Polk|Story","19153|19169","FALSE","FALSE","America/Chicago"
-"50227","42.59744","-93.42788","Popejoy","IA","Iowa","TRUE","","28","29.0","19069","Franklin","{""19069"": ""100""}","Franklin","19069","FALSE","FALSE","America/Chicago"
-"50228","41.57869","-93.24221","Prairie City","IA","Iowa","TRUE","","3009","16.7","19099","Jasper","{""19099"": ""99.38"", ""19125"": ""0.62""}","Jasper|Marion","19099|19125","FALSE","FALSE","America/Chicago"
-"50229","41.37647","-93.77679","Prole","IA","Iowa","TRUE","","894","8.5","19181","Warren","{""19181"": ""72"", ""19121"": ""28""}","Warren|Madison","19181|19121","FALSE","FALSE","America/Chicago"
-"50230","42.30375","-93.44749","Radcliffe","IA","Iowa","TRUE","","1067","4.8","19083","Hardin","{""19083"": ""82.83"", ""19079"": ""17.17""}","Hardin|Hamilton","19083|19079","FALSE","FALSE","America/Chicago"
-"50231","42.23715","-93.60262","Randall","IA","Iowa","TRUE","","170","159.6","19079","Hamilton","{""19079"": ""100""}","Hamilton","19079","FALSE","FALSE","America/Chicago"
-"50232","41.5565","-92.96697","Reasnor","IA","Iowa","TRUE","","480","5.6","19099","Jasper","{""19099"": ""100""}","Jasper","19099","FALSE","FALSE","America/Chicago"
-"50233","41.6129","-94.21136","Redfield","IA","Iowa","TRUE","","1357","10.4","19049","Dallas","{""19049"": ""92.65"", ""19077"": ""7.35""}","Dallas|Guthrie","19049|19077","FALSE","FALSE","America/Chicago"
-"50234","41.89146","-93.18454","Rhodes","IA","Iowa","TRUE","","490","6.1","19127","Marshall","{""19127"": ""91.03"", ""19099"": ""8.97""}","Marshall|Jasper","19127|19099","FALSE","FALSE","America/Chicago"
-"50235","41.92959","-94.21032","Rippey","IA","Iowa","TRUE","","371","3.1","19073","Greene","{""19073"": ""92.96"", ""19015"": ""4.55"", ""19049"": ""2.48""}","Greene|Boone|Dallas","19073|19015|19049","FALSE","FALSE","America/Chicago"
-"50236","42.16802","-93.48318","Roland","IA","Iowa","TRUE","","1650","18.5","19169","Story","{""19169"": ""100""}","Story","19169","FALSE","FALSE","America/Chicago"
-"50237","41.54005","-93.37014","Runnells","IA","Iowa","TRUE","","3101","21.6","19153","Polk","{""19153"": ""92.15"", ""19125"": ""6.4"", ""19099"": ""1.45""}","Polk|Marion|Jasper","19153|19125|19099","FALSE","FALSE","America/Chicago"
-"50238","40.96944","-93.17102","Russell","IA","Iowa","TRUE","","1170","3.9","19117","Lucas","{""19117"": ""90.1"", ""19185"": ""9.9""}","Lucas|Wayne","19117|19185","FALSE","FALSE","America/Chicago"
-"50239","42.14869","-93.19937","Saint Anthony","IA","Iowa","TRUE","","50","1.1","19127","Marshall","{""19127"": ""100""}","Marshall","19127","FALSE","FALSE","America/Chicago"
-"50240","41.29506","-93.79469","Saint Charles","IA","Iowa","TRUE","","2874","14.6","19121","Madison","{""19121"": ""62.58"", ""19181"": ""37.42""}","Madison|Warren","19121|19181","FALSE","FALSE","America/Chicago"
-"50242","41.56241","-92.69399","Searsboro","IA","Iowa","TRUE","","595","5.6","19157","Poweshiek","{""19157"": ""100""}","Poweshiek","19157","FALSE","FALSE","America/Chicago"
-"50243","41.86591","-93.69416","Sheldahl","IA","Iowa","TRUE","","234","164.2","19169","Story","{""19169"": ""50.41"", ""19153"": ""49.59""}","Story|Polk","19169|19153","FALSE","FALSE","America/Chicago"
-"50244","41.85754","-93.65265","Slater","IA","Iowa","TRUE","","2026","35.5","19169","Story","{""19169"": ""90.24"", ""19153"": ""8.16"", ""19015"": ""1.6""}","Story|Polk|Boone","19169|19153|19015","FALSE","FALSE","America/Chicago"
-"50246","42.27537","-93.78216","Stanhope","IA","Iowa","TRUE","","674","5.6","19079","Hamilton","{""19079"": ""100""}","Hamilton","19079","FALSE","FALSE","America/Chicago"
-"50247","42.01698","-93.16502","State Center","IA","Iowa","TRUE","","2619","12.1","19127","Marshall","{""19127"": ""98.49"", ""19169"": ""1.51""}","Marshall|Story","19127|19169","FALSE","FALSE","America/Chicago"
-"50248","42.19268","-93.61095","Story City","IA","Iowa","TRUE","","4421","20.9","19169","Story","{""19169"": ""91.33"", ""19079"": ""7.44"", ""19015"": ""1.22""}","Story|Hamilton|Boone","19169|19079|19015","FALSE","FALSE","America/Chicago"
-"50249","42.27289","-93.90139","Stratford","IA","Iowa","TRUE","","1257","6.2","19079","Hamilton","{""19079"": ""83.93"", ""19187"": ""10.51"", ""19015"": ""5.56""}","Hamilton|Webster|Boone","19079|19187|19015","FALSE","FALSE","America/Chicago"
-"50250","41.48281","-94.33906","Stuart","IA","Iowa","TRUE","","2293","8.7","19077","Guthrie","{""19077"": ""54.42"", ""19001"": ""45.58""}","Guthrie|Adair","19077|19001","FALSE","FALSE","America/Chicago"
-"50251","41.56878","-92.87127","Sully","IA","Iowa","TRUE","","1360","12.9","19099","Jasper","{""19099"": ""100""}","Jasper","19099","FALSE","FALSE","America/Chicago"
-"50252","41.46357","-93.30101","Swan","IA","Iowa","TRUE","","266","12.0","19125","Marion","{""19125"": ""100""}","Marion","19125","FALSE","FALSE","America/Chicago"
-"50254","40.98707","-94.07011","Thayer","IA","Iowa","TRUE","","246","2.2","19175","Union","{""19175"": ""100""}","Union","19175","FALSE","FALSE","America/Chicago"
-"50255","41.45579","-92.33224","Thornburg","IA","Iowa","TRUE","","48","105.1","19107","Keokuk","{""19107"": ""100""}","Keokuk","19107","FALSE","FALSE","America/Chicago"
-"50256","41.26854","-92.91229","Tracy","IA","Iowa","TRUE","","430","6.1","19125","Marion","{""19125"": ""91.02"", ""19123"": ""8.98""}","Marion|Mahaska","19125|19123","FALSE","FALSE","America/Chicago"
-"50257","41.18952","-93.84723","Truro","IA","Iowa","TRUE","","1008","9.8","19121","Madison","{""19121"": ""91.23"", ""19039"": ""6.35"", ""19181"": ""2.42""}","Madison|Clarke|Warren","19121|19039|19181","FALSE","FALSE","America/Chicago"
-"50258","42.22711","-93.07691","Union","IA","Iowa","TRUE","","957","6.9","19083","Hardin","{""19083"": ""87.62"", ""19127"": ""12.38""}","Hardin|Marshall","19083|19127","FALSE","FALSE","America/Chicago"
-"50261","41.4699","-93.92069","Van Meter","IA","Iowa","TRUE","","2622","15.3","19049","Dallas","{""19049"": ""66.03"", ""19121"": ""33.97""}","Dallas|Madison","19049|19121","FALSE","FALSE","America/Chicago"
-"50262","40.85516","-93.8156","Van Wert","IA","Iowa","TRUE","","369","4.4","19053","Decatur","{""19053"": ""100""}","Decatur","19053","FALSE","FALSE","America/Chicago"
-"50263","41.59562","-93.87241","Waukee","IA","Iowa","TRUE","","25402","283.1","19049","Dallas","{""19049"": ""100""}","Dallas","19049","FALSE","FALSE","America/Chicago"
-"50264","40.90134","-93.70259","Weldon","IA","Iowa","TRUE","","468","2.7","19053","Decatur","{""19053"": ""62.45"", ""19039"": ""37.55""}","Decatur|Clarke","19053|19039","FALSE","FALSE","America/Chicago"
-"50265","41.55553","-93.73736","West Des Moines","IA","Iowa","TRUE","","32532","728.1","19153","Polk","{""19153"": ""100""}","Polk","19153","FALSE","FALSE","America/Chicago"
-"50266","41.56942","-93.79934","West Des Moines","IA","Iowa","TRUE","","29636","690.7","19153","Polk","{""19153"": ""56.27"", ""19049"": ""43.73""}","Polk|Dallas","19153|19049","FALSE","FALSE","America/Chicago"
-"50268","41.407","-92.36339","What Cheer","IA","Iowa","TRUE","","1059","8.6","19107","Keokuk","{""19107"": ""95.87"", ""19123"": ""4.13""}","Keokuk|Mahaska","19107|19123","FALSE","FALSE","America/Chicago"
-"50271","42.48278","-93.54144","Williams","IA","Iowa","TRUE","","639","3.7","19079","Hamilton","{""19079"": ""98.41"", ""19197"": ""1.59""}","Hamilton|Wright","19079|19197","FALSE","FALSE","America/Chicago"
-"50272","41.09602","-93.25587","Williamson","IA","Iowa","TRUE","","179","93.1","19117","Lucas","{""19117"": ""100""}","Lucas","19117","FALSE","FALSE","America/Chicago"
-"50273","41.32937","-94.05413","Winterset","IA","Iowa","TRUE","","8457","16.3","19121","Madison","{""19121"": ""100""}","Madison","19121","FALSE","FALSE","America/Chicago"
-"50274","41.38138","-94.85343","Wiota","IA","Iowa","TRUE","","167","1.3","19029","Cass","{""19029"": ""100""}","Cass","19029","FALSE","FALSE","America/Chicago"
-"50275","41.03747","-93.58957","Woodburn","IA","Iowa","TRUE","","585","4.4","19039","Clarke","{""19039"": ""100""}","Clarke","19039","FALSE","FALSE","America/Chicago"
-"50276","41.86238","-93.92341","Woodward","IA","Iowa","TRUE","","2388","11.5","19049","Dallas","{""19049"": ""61.3"", ""19015"": ""38.7""}","Dallas|Boone","19049|19015","FALSE","FALSE","America/Chicago"
-"50277","41.77734","-94.34908","Yale","IA","Iowa","TRUE","","316","3.0","19077","Guthrie","{""19077"": ""89.65"", ""19049"": ""10.35""}","Guthrie|Dallas","19077|19049","FALSE","FALSE","America/Chicago"
-"50278","42.15018","-93.29745","Zearing","IA","Iowa","TRUE","","771","5.6","19169","Story","{""19169"": ""100""}","Story","19169","FALSE","FALSE","America/Chicago"
-"50309","41.58487","-93.62063","Des Moines","IA","Iowa","TRUE","","8040","1101.3","19153","Polk","{""19153"": ""100""}","Polk","19153","FALSE","FALSE","America/Chicago"
-"50310","41.62783","-93.67321","Des Moines","IA","Iowa","TRUE","","31832","1528.6","19153","Polk","{""19153"": ""100""}","Polk","19153","FALSE","FALSE","America/Chicago"
-"50311","41.60102","-93.67284","Des Moines","IA","Iowa","TRUE","","15738","2419.1","19153","Polk","{""19153"": ""100""}","Polk","19153","FALSE","FALSE","America/Chicago"
-"50312","41.58092","-93.67593","Des Moines","IA","Iowa","TRUE","","15883","1081.6","19153","Polk","{""19153"": ""100""}","Polk","19153","FALSE","FALSE","America/Chicago"
-"50313","41.65465","-93.62155","Des Moines","IA","Iowa","TRUE","","18834","410.7","19153","Polk","{""19153"": ""100""}","Polk","19153","FALSE","FALSE","America/Chicago"
-"50314","41.60535","-93.63122","Des Moines","IA","Iowa","TRUE","","11377","1769.7","19153","Polk","{""19153"": ""100""}","Polk","19153","FALSE","FALSE","America/Chicago"
-"50315","41.54562","-93.62102","Des Moines","IA","Iowa","TRUE","","35795","1379.6","19153","Polk","{""19153"": ""100""}","Polk","19153","FALSE","FALSE","America/Chicago"
-"50316","41.60865","-93.59763","Des Moines","IA","Iowa","TRUE","","16520","1793.8","19153","Polk","{""19153"": ""100""}","Polk","19153","FALSE","FALSE","America/Chicago"
-"50317","41.6163","-93.54711","Des Moines","IA","Iowa","TRUE","","37983","657.8","19153","Polk","{""19153"": ""100""}","Polk","19153","FALSE","FALSE","America/Chicago"
-"50319","41.59091","-93.60399","Des Moines","IA","Iowa","TRUE","","0","0.0","19153","Polk","{""19153"": ""0""}","Polk","19153","FALSE","FALSE","America/Chicago"
-"50320","41.52873","-93.57062","Des Moines","IA","Iowa","TRUE","","22687","469.3","19153","Polk","{""19153"": ""90.96"", ""19181"": ""9.04""}","Polk|Warren","19153|19181","FALSE","FALSE","America/Chicago"
-"50321","41.53945","-93.67288","Des Moines","IA","Iowa","TRUE","","8698","286.3","19153","Polk","{""19153"": ""100""}","Polk","19153","FALSE","FALSE","America/Chicago"
-"50322","41.63362","-93.73618","Urbandale","IA","Iowa","TRUE","","31118","1116.1","19153","Polk","{""19153"": ""100""}","Polk","19153","FALSE","FALSE","America/Chicago"
-"50323","41.63469","-93.81379","Urbandale","IA","Iowa","TRUE","","14593","728.2","19049","Dallas","{""19049"": ""61.39"", ""19153"": ""38.61""}","Dallas|Polk","19049|19153","FALSE","FALSE","America/Chicago"
-"50324","41.6044","-93.7128","Windsor Heights","IA","Iowa","TRUE","","4953","1323.2","19153","Polk","{""19153"": ""100""}","Polk","19153","FALSE","FALSE","America/Chicago"
-"50325","41.61465","-93.79823","Clive","IA","Iowa","TRUE","","17186","861.4","19153","Polk","{""19153"": ""69.45"", ""19049"": ""30.55""}","Polk|Dallas","19153|19049","FALSE","FALSE","America/Chicago"
-"50327","41.58155","-93.48471","Pleasant Hill","IA","Iowa","TRUE","","11400","236.4","19153","Polk","{""19153"": ""100""}","Polk","19153","FALSE","FALSE","America/Chicago"
-"50401","43.15371","-93.20016","Mason City","IA","Iowa","TRUE","","28957","75.0","19033","Cerro Gordo","{""19033"": ""100""}","Cerro Gordo","19033","FALSE","FALSE","America/Chicago"
-"50420","42.8042","-93.46037","Alexander","IA","Iowa","TRUE","","283","2.4","19069","Franklin","{""19069"": ""89.92"", ""19197"": ""10.08""}","Franklin|Wright","19069|19197","FALSE","FALSE","America/Chicago"
-"50421","42.84308","-93.62007","Belmond","IA","Iowa","TRUE","","2899","12.5","19197","Wright","{""19197"": ""100""}","Wright","19197","FALSE","FALSE","America/Chicago"
-"50423","43.10928","-93.81267","Britt","IA","Iowa","TRUE","","2599","7.0","19081","Hancock","{""19081"": ""100""}","Hancock","19081","FALSE","FALSE","America/Chicago"
-"50424","43.39441","-93.93381","Buffalo Center","IA","Iowa","TRUE","","1467","4.6","19189","Winnebago","{""19189"": ""88.46"", ""19109"": ""11.54""}","Winnebago|Kossuth","19189|19109","FALSE","FALSE","America/Chicago"
-"50426","43.4155","-93.01721","Carpenter","IA","Iowa","TRUE","","57","948.2","19131","Mitchell","{""19131"": ""100""}","Mitchell","19131","FALSE","FALSE","America/Chicago"
-"50428","43.13775","-93.38988","Clear Lake","IA","Iowa","TRUE","","9374","30.6","19033","Cerro Gordo","{""19033"": ""100""}","Cerro Gordo","19033","FALSE","FALSE","America/Chicago"
-"50430","42.9816","-93.95399","Corwith","IA","Iowa","TRUE","","412","2.6","19081","Hancock","{""19081"": ""83.98"", ""19109"": ""16.02""}","Hancock|Kossuth","19081|19109","FALSE","FALSE","America/Chicago"
-"50431","42.73711","-93.36824","Coulter","IA","Iowa","TRUE","","218","112.6","19069","Franklin","{""19069"": ""100""}","Franklin","19069","FALSE","FALSE","America/Chicago"
-"50432","43.22388","-93.79805","Crystal Lake","IA","Iowa","TRUE","","230","204.0","19081","Hancock","{""19081"": ""100""}","Hancock","19081","FALSE","FALSE","America/Chicago"
-"50433","42.92325","-93.0502","Dougherty","IA","Iowa","TRUE","","282","2.2","19033","Cerro Gordo","{""19033"": ""65.63"", ""19067"": ""15.63"", ""19069"": ""13.67"", ""19023"": ""5.08""}","Cerro Gordo|Floyd|Franklin|Butler","19033|19067|19069|19023","FALSE","FALSE","America/Chicago"
-"50434","43.25906","-93.45355","Fertile","IA","Iowa","TRUE","","362","15.6","19195","Worth","{""19195"": ""92.57"", ""19033"": ""7.43""}","Worth|Cerro Gordo","19195|19033","FALSE","FALSE","America/Chicago"
-"50435","43.15802","-92.76702","Floyd","IA","Iowa","TRUE","","718","6.8","19067","Floyd","{""19067"": ""100""}","Floyd","19067","FALSE","FALSE","America/Chicago"
-"50436","43.26285","-93.6634","Forest City","IA","Iowa","TRUE","","5652","16.0","19189","Winnebago","{""19189"": ""82.97"", ""19081"": ""17.03""}","Winnebago|Hancock","19189|19081","FALSE","FALSE","America/Chicago"
-"50438","43.10935","-93.61746","Garner","IA","Iowa","TRUE","","4167","12.1","19081","Hancock","{""19081"": ""100""}","Hancock","19081","FALSE","FALSE","America/Chicago"
-"50439","42.94567","-93.63521","Goodell","IA","Iowa","TRUE","","178","2.1","19081","Hancock","{""19081"": ""100""}","Hancock","19081","FALSE","FALSE","America/Chicago"
-"50440","43.33158","-93.07262","Grafton","IA","Iowa","TRUE","","418","5.2","19195","Worth","{""19195"": ""100""}","Worth","19195","FALSE","FALSE","America/Chicago"
-"50441","42.74141","-93.2211","Hampton","IA","Iowa","TRUE","","5289","13.4","19069","Franklin","{""19069"": ""100""}","Franklin","19069","FALSE","FALSE","America/Chicago"
-"50444","43.29323","-93.38693","Hanlontown","IA","Iowa","TRUE","","376","6.7","19195","Worth","{""19195"": ""96.6"", ""19033"": ""3.4""}","Worth|Cerro Gordo","19195|19033","FALSE","FALSE","America/Chicago"
-"50446","43.34257","-93.45257","Joice","IA","Iowa","TRUE","","543","5.0","19195","Worth","{""19195"": ""93.98"", ""19189"": ""6.02""}","Worth|Winnebago","19195|19189","FALSE","FALSE","America/Chicago"
-"50447","42.92663","-93.80107","Kanawha","IA","Iowa","TRUE","","1260","4.8","19081","Hancock","{""19081"": ""85.48"", ""19197"": ""14.52""}","Hancock|Wright","19081|19197","FALSE","FALSE","America/Chicago"
-"50448","43.35","-93.24825","Kensett","IA","Iowa","TRUE","","671","4.2","19195","Worth","{""19195"": ""100""}","Worth","19195","FALSE","FALSE","America/Chicago"
-"50449","42.99902","-93.55878","Klemme","IA","Iowa","TRUE","","900","9.5","19081","Hancock","{""19081"": ""99.59"", ""19033"": ""0.41""}","Hancock|Cerro Gordo","19081|19033","FALSE","FALSE","America/Chicago"
-"50450","43.42171","-93.52389","Lake Mills","IA","Iowa","TRUE","","2826","13.5","19189","Winnebago","{""19189"": ""94.13"", ""19195"": ""5.87""}","Winnebago|Worth","19189|19195","FALSE","FALSE","America/Chicago"
-"50451","43.37865","-94.08844","Lakota","IA","Iowa","TRUE","","567","3.4","19109","Kossuth","{""19109"": ""100""}","Kossuth","19109","FALSE","FALSE","America/Chicago"
-"50452","42.78542","-93.37264","Latimer","IA","Iowa","TRUE","","983","7.7","19069","Franklin","{""19069"": ""100""}","Franklin","19069","FALSE","FALSE","America/Chicago"
-"50453","43.36604","-93.65241","Leland","IA","Iowa","TRUE","","576","5.0","19189","Winnebago","{""19189"": ""100""}","Winnebago","19189","FALSE","FALSE","America/Chicago"
-"50454","43.38185","-92.73733","Little Cedar","IA","Iowa","TRUE","","66","1.5","19131","Mitchell","{""19131"": ""100""}","Mitchell","19131","FALSE","FALSE","America/Chicago"
-"50455","43.45691","-92.64977","McIntire","IA","Iowa","TRUE","","591","7.0","19131","Mitchell","{""19131"": ""100""}","Mitchell","19131","FALSE","FALSE","America/Chicago"
-"50456","43.28806","-93.21757","Manly","IA","Iowa","TRUE","","1813","15.1","19195","Worth","{""19195"": ""100""}","Worth","19195","FALSE","FALSE","America/Chicago"
-"50457","42.91633","-93.4936","Meservey","IA","Iowa","TRUE","","335","3.8","19033","Cerro Gordo","{""19033"": ""72.56"", ""19069"": ""12.24"", ""19081"": ""11.56"", ""19197"": ""3.63""}","Cerro Gordo|Franklin|Hancock|Wright","19033|19069|19081|19197","FALSE","FALSE","America/Chicago"
-"50458","43.16088","-93.00756","Nora Springs","IA","Iowa","TRUE","","2283","12.0","19067","Floyd","{""19067"": ""85.69"", ""19033"": ""10.97"", ""19131"": ""3.34""}","Floyd|Cerro Gordo|Mitchell","19067|19033|19131","FALSE","FALSE","America/Chicago"
-"50459","43.4454","-93.25412","Northwood","IA","Iowa","TRUE","","2906","7.8","19195","Worth","{""19195"": ""100""}","Worth","19195","FALSE","FALSE","America/Chicago"
-"50460","43.2278","-92.68884","Orchard","IA","Iowa","TRUE","","306","3.3","19131","Mitchell","{""19131"": ""88.19"", ""19067"": ""11.81""}","Mitchell|Floyd","19131|19067","FALSE","FALSE","America/Chicago"
-"50461","43.2994","-92.81903","Osage","IA","Iowa","TRUE","","5532","12.4","19131","Mitchell","{""19131"": ""99.75"", ""19067"": ""0.25""}","Mitchell|Floyd","19131|19067","FALSE","FALSE","America/Chicago"
-"50464","43.25339","-93.08079","Plymouth","IA","Iowa","TRUE","","628","10.3","19033","Cerro Gordo","{""19033"": ""78.31"", ""19195"": ""21.69""}","Cerro Gordo|Worth","19033|19195","FALSE","FALSE","America/Chicago"
-"50465","43.48644","-93.91222","Rake","IA","Iowa","TRUE","","161","17.0","19189","Winnebago","{""19189"": ""100""}","Winnebago","19189","FALSE","FALSE","America/Chicago"
-"50466","43.38531","-92.54188","Riceville","IA","Iowa","TRUE","","1680","4.7","19131","Mitchell","{""19131"": ""52.79"", ""19089"": ""47.21""}","Mitchell|Howard","19131|19089","FALSE","FALSE","America/Chicago"
-"50467","43.2117","-93.08654","Rock Falls","IA","Iowa","TRUE","","89","125.4","19033","Cerro Gordo","{""19033"": ""100""}","Cerro Gordo","19033","FALSE","FALSE","America/Chicago"
-"50468","43.04668","-92.9548","Rockford","IA","Iowa","TRUE","","1383","5.4","19067","Floyd","{""19067"": ""91.7"", ""19033"": ""8.3""}","Floyd|Cerro Gordo","19067|19033","FALSE","FALSE","America/Chicago"
-"50469","42.99874","-93.19417","Rockwell","IA","Iowa","TRUE","","1465","6.4","19033","Cerro Gordo","{""19033"": ""100""}","Cerro Gordo","19033","FALSE","FALSE","America/Chicago"
-"50470","42.74576","-93.56039","Rowan","IA","Iowa","TRUE","","221","3.5","19197","Wright","{""19197"": ""100""}","Wright","19197","FALSE","FALSE","America/Chicago"
-"50471","43.16657","-92.87642","Rudd","IA","Iowa","TRUE","","619","5.6","19067","Floyd","{""19067"": ""96.66"", ""19131"": ""3.34""}","Floyd|Mitchell","19067|19131","FALSE","FALSE","America/Chicago"
-"50472","43.42206","-92.94688","Saint Ansgar","IA","Iowa","TRUE","","2325","7.4","19131","Mitchell","{""19131"": ""96.28"", ""19195"": ""3.72""}","Mitchell|Worth","19131|19195","FALSE","FALSE","America/Chicago"
-"50473","43.46615","-93.67886","Scarville","IA","Iowa","TRUE","","294","3.1","19189","Winnebago","{""19189"": ""100""}","Winnebago","19189","FALSE","FALSE","America/Chicago"
-"50475","42.87944","-93.21844","Sheffield","IA","Iowa","TRUE","","1519","6.6","19069","Franklin","{""19069"": ""92.71"", ""19033"": ""7.29""}","Franklin|Cerro Gordo","19069|19033","FALSE","FALSE","America/Chicago"
-"50476","43.45235","-92.76398","Stacyville","IA","Iowa","TRUE","","670","6.6","19131","Mitchell","{""19131"": ""100""}","Mitchell","19131","FALSE","FALSE","America/Chicago"
-"50477","42.98926","-93.32708","Swaledale","IA","Iowa","TRUE","","237","4.1","19033","Cerro Gordo","{""19033"": ""100""}","Cerro Gordo","19033","FALSE","FALSE","America/Chicago"
-"50478","43.40159","-93.78474","Thompson","IA","Iowa","TRUE","","638","3.3","19189","Winnebago","{""19189"": ""100""}","Winnebago","19189","FALSE","FALSE","America/Chicago"
-"50479","42.93948","-93.40988","Thornton","IA","Iowa","TRUE","","549","3.7","19033","Cerro Gordo","{""19033"": ""89.91"", ""19069"": ""10.09""}","Cerro Gordo|Franklin","19033|19069","FALSE","FALSE","America/Chicago"
-"50480","43.25039","-94.05021","Titonka","IA","Iowa","TRUE","","916","5.6","19109","Kossuth","{""19109"": ""98.75"", ""19081"": ""1.25""}","Kossuth|Hancock","19109|19081","FALSE","FALSE","America/Chicago"
-"50482","43.11573","-93.47867","Ventura","IA","Iowa","TRUE","","868","11.6","19033","Cerro Gordo","{""19033"": ""95.74"", ""19081"": ""4.26""}","Cerro Gordo|Hancock","19033|19081","FALSE","FALSE","America/Chicago"
-"50483","43.11261","-94.00092","Wesley","IA","Iowa","TRUE","","604","3.0","19109","Kossuth","{""19109"": ""84.25"", ""19081"": ""15.75""}","Kossuth|Hancock","19109|19081","FALSE","FALSE","America/Chicago"
-"50484","43.23409","-93.91352","Woden","IA","Iowa","TRUE","","397","3.5","19081","Hancock","{""19081"": ""83.56"", ""19189"": ""13.96"", ""19109"": ""2.48""}","Hancock|Winnebago|Kossuth","19081|19189|19109","FALSE","FALSE","America/Chicago"
-"50501","42.49286","-94.19259","Fort Dodge","IA","Iowa","TRUE","","28077","69.5","19187","Webster","{""19187"": ""100""}","Webster","19187","FALSE","FALSE","America/Chicago"
-"50510","42.76092","-94.98481","Albert City","IA","Iowa","TRUE","","1003","4.6","19021","Buena Vista","{""19021"": ""93.91"", ""19151"": ""6.09""}","Buena Vista|Pocahontas","19021|19151","FALSE","FALSE","America/Chicago"
-"50511","43.07388","-94.22014","Algona","IA","Iowa","TRUE","","6767","21.1","19109","Kossuth","{""19109"": ""100""}","Kossuth","19109","FALSE","FALSE","America/Chicago"
-"50514","43.41603","-94.47186","Armstrong","IA","Iowa","TRUE","","1384","4.8","19063","Emmet","{""19063"": ""88.64"", ""19109"": ""11.36""}","Emmet|Kossuth","19063|19109","FALSE","FALSE","America/Chicago"
-"50515","43.02086","-94.87102","Ayrshire","IA","Iowa","TRUE","","193","2.0","19147","Palo Alto","{""19147"": ""95.7"", ""19041"": ""4.3""}","Palo Alto|Clay","19147|19041","FALSE","FALSE","America/Chicago"
-"50516","42.62335","-94.1365","Badger","IA","Iowa","TRUE","","589","9.2","19187","Webster","{""19187"": ""92.49"", ""19091"": ""7.51""}","Webster|Humboldt","19187|19091","FALSE","FALSE","America/Chicago"
-"50517","43.30284","-94.22974","Bancroft","IA","Iowa","TRUE","","1120","5.7","19109","Kossuth","{""19109"": ""100""}","Kossuth","19109","FALSE","FALSE","America/Chicago"
-"50518","42.51493","-94.38603","Barnum","IA","Iowa","TRUE","","405","5.0","19187","Webster","{""19187"": ""100""}","Webster","19187","FALSE","FALSE","America/Chicago"
-"50519","42.90172","-94.26289","Bode","IA","Iowa","TRUE","","595","4.2","19091","Humboldt","{""19091"": ""68.27"", ""19109"": ""31.73""}","Humboldt|Kossuth","19091|19109","FALSE","FALSE","America/Chicago"
-"50520","42.80521","-94.39549","Bradgate","IA","Iowa","TRUE","","166","2.7","19091","Humboldt","{""19091"": ""97.92"", ""19151"": ""2.08""}","Humboldt|Pocahontas","19091|19151","FALSE","FALSE","America/Chicago"
-"50521","42.34624","-94.10284","Burnside","IA","Iowa","TRUE","","299","94.6","19187","Webster","{""19187"": ""100""}","Webster","19187","FALSE","FALSE","America/Chicago"
-"50522","43.1877","-94.18825","Burt","IA","Iowa","TRUE","","958","5.4","19109","Kossuth","{""19109"": ""100""}","Kossuth","19109","FALSE","FALSE","America/Chicago"
-"50523","42.36804","-94.29575","Callender","IA","Iowa","TRUE","","574","5.3","19187","Webster","{""19187"": ""100""}","Webster","19187","FALSE","FALSE","America/Chicago"
-"50524","42.60255","-94.3559","Clare","IA","Iowa","TRUE","","620","4.2","19187","Webster","{""19187"": ""98.08"", ""19151"": ""1.92""}","Webster|Pocahontas","19187|19151","FALSE","FALSE","America/Chicago"
-"50525","42.73648","-93.74724","Clarion","IA","Iowa","TRUE","","3383","9.4","19197","Wright","{""19197"": ""100""}","Wright","19197","FALSE","FALSE","America/Chicago"
-"50527","42.965","-94.78542","Curlew","IA","Iowa","TRUE","","228","1.6","19147","Palo Alto","{""19147"": ""100""}","Palo Alto","19147","FALSE","FALSE","America/Chicago"
-"50528","43.13396","-94.54085","Cylinder","IA","Iowa","TRUE","","277","1.4","19147","Palo Alto","{""19147"": ""100""}","Palo Alto","19147","FALSE","FALSE","America/Chicago"
-"50529","42.72141","-94.19946","Dakota City","IA","Iowa","TRUE","","846","602.3","19091","Humboldt","{""19091"": ""100""}","Humboldt","19091","FALSE","FALSE","America/Chicago"
-"50530","42.26796","-94.04239","Dayton","IA","Iowa","TRUE","","1172","7.0","19187","Webster","{""19187"": ""98.67"", ""19015"": ""1.33""}","Webster|Boone","19187|19015","FALSE","FALSE","America/Chicago"
-"50531","43.45779","-94.61111","Dolliver","IA","Iowa","TRUE","","181","1.9","19063","Emmet","{""19063"": ""100""}","Emmet","19063","FALSE","FALSE","America/Chicago"
-"50532","42.46158","-94.00536","Duncombe","IA","Iowa","TRUE","","807","4.5","19187","Webster","{""19187"": ""98.63"", ""19079"": ""1.37""}","Webster|Hamilton","19187|19079","FALSE","FALSE","America/Chicago"
-"50533","42.65194","-93.91181","Eagle Grove","IA","Iowa","TRUE","","3982","15.4","19197","Wright","{""19197"": ""97.72"", ""19091"": ""1.38"", ""19187"": ""0.9""}","Wright|Humboldt|Webster","19197|19091|19187","FALSE","FALSE","America/Chicago"
-"50535","42.45253","-95.16234","Early","IA","Iowa","TRUE","","1024","6.5","19161","Sac","{""19161"": ""100""}","Sac","19161","FALSE","FALSE","America/Chicago"
-"50536","43.1174","-94.70157","Emmetsburg","IA","Iowa","TRUE","","4447","12.1","19147","Palo Alto","{""19147"": ""100""}","Palo Alto","19147","FALSE","FALSE","America/Chicago"
-"50538","42.27663","-94.4296","Farnhamville","IA","Iowa","TRUE","","460","5.7","19025","Calhoun","{""19025"": ""99.01"", ""19187"": ""0.99""}","Calhoun|Webster","19025|19187","FALSE","FALSE","America/Chicago"
-"50539","43.23703","-94.41999","Fenton","IA","Iowa","TRUE","","542","3.9","19109","Kossuth","{""19109"": ""88.52"", ""19147"": ""11.48""}","Kossuth|Palo Alto","19109|19147","FALSE","FALSE","America/Chicago"
-"50540","42.59651","-94.842","Fonda","IA","Iowa","TRUE","","1103","4.0","19151","Pocahontas","{""19151"": ""88.94"", ""19025"": ""11.06""}","Pocahontas|Calhoun","19151|19025","FALSE","FALSE","America/Chicago"
-"50541","42.71549","-94.44915","Gilmore City","IA","Iowa","TRUE","","837","3.5","19091","Humboldt","{""19091"": ""56.31"", ""19151"": ""43.69""}","Humboldt|Pocahontas","19091|19151","FALSE","FALSE","America/Chicago"
-"50542","42.77759","-93.94493","Goldfield","IA","Iowa","TRUE","","967","5.6","19197","Wright","{""19197"": ""87.35"", ""19091"": ""12.65""}","Wright|Humboldt","19197|19091","FALSE","FALSE","America/Chicago"
-"50543","42.27473","-94.30461","Gowrie","IA","Iowa","TRUE","","1400","6.6","19187","Webster","{""19187"": ""100""}","Webster","19187","FALSE","FALSE","America/Chicago"
-"50544","42.25071","-94.17053","Harcourt","IA","Iowa","TRUE","","429","5.7","19187","Webster","{""19187"": ""100""}","Webster","19187","FALSE","FALSE","America/Chicago"
-"50545","42.79948","-94.08111","Hardy","IA","Iowa","TRUE","","203","2.1","19091","Humboldt","{""19091"": ""100""}","Humboldt","19091","FALSE","FALSE","America/Chicago"
-"50546","42.83787","-94.7028","Havelock","IA","Iowa","TRUE","","257","1.9","19151","Pocahontas","{""19151"": ""100""}","Pocahontas","19151","FALSE","FALSE","America/Chicago"
-"50548","42.71503","-94.22545","Humboldt","IA","Iowa","TRUE","","5557","17.3","19091","Humboldt","{""19091"": ""98.96"", ""19187"": ""1.04""}","Humboldt|Webster","19091|19187","FALSE","FALSE","America/Chicago"
-"50551","42.47954","-94.75105","Jolley","IA","Iowa","TRUE","","94","1.3","19025","Calhoun","{""19025"": ""100""}","Calhoun","19025","FALSE","FALSE","America/Chicago"
-"50554","42.84555","-94.84291","Laurens","IA","Iowa","TRUE","","1625","7.1","19151","Pocahontas","{""19151"": ""98.28"", ""19147"": ""1.11"", ""19021"": ""0.62""}","Pocahontas|Palo Alto|Buena Vista","19151|19147|19021","FALSE","FALSE","America/Chicago"
-"50556","43.45256","-94.1961","Ledyard","IA","Iowa","TRUE","","181","1.8","19109","Kossuth","{""19109"": ""100""}","Kossuth","19109","FALSE","FALSE","America/Chicago"
-"50557","42.35614","-94.04052","Lehigh","IA","Iowa","TRUE","","661","5.1","19187","Webster","{""19187"": ""100""}","Webster","19187","FALSE","FALSE","America/Chicago"
-"50558","42.86105","-94.1652","Livermore","IA","Iowa","TRUE","","688","6.0","19091","Humboldt","{""19091"": ""90.29"", ""19109"": ""9.71""}","Humboldt|Kossuth","19091|19109","FALSE","FALSE","America/Chicago"
-"50559","43.20888","-94.32922","Lone Rock","IA","Iowa","TRUE","","321","3.1","19109","Kossuth","{""19109"": ""100""}","Kossuth","19109","FALSE","FALSE","America/Chicago"
-"50560","42.96058","-94.10802","Lu Verne","IA","Iowa","TRUE","","617","2.7","19109","Kossuth","{""19109"": ""86.95"", ""19091"": ""13.05""}","Kossuth|Humboldt","19109|19091","FALSE","FALSE","America/Chicago"
-"50561","42.42412","-94.84988","Lytton","IA","Iowa","TRUE","","475","4.0","19161","Sac","{""19161"": ""68.08"", ""19025"": ""31.92""}","Sac|Calhoun","19161|19025","FALSE","FALSE","America/Chicago"
-"50562","42.96153","-94.64178","Mallard","IA","Iowa","TRUE","","361","2.2","19147","Palo Alto","{""19147"": ""95.26"", ""19151"": ""4.74""}","Palo Alto|Pocahontas","19147|19151","FALSE","FALSE","America/Chicago"
-"50563","42.52767","-94.52741","Manson","IA","Iowa","TRUE","","2561","10.1","19025","Calhoun","{""19025"": ""93.24"", ""19151"": ""5.88"", ""19187"": ""0.88""}","Calhoun|Pocahontas|Webster","19025|19151|19187","FALSE","FALSE","America/Chicago"
-"50565","42.85774","-94.99572","Marathon","IA","Iowa","TRUE","","417","3.7","19021","Buena Vista","{""19021"": ""100""}","Buena Vista","19021","FALSE","FALSE","America/Chicago"
-"50566","42.43883","-94.32967","Moorland","IA","Iowa","TRUE","","485","5.4","19187","Webster","{""19187"": ""100""}","Webster","19187","FALSE","FALSE","America/Chicago"
-"50567","42.52311","-95.09631","Nemaha","IA","Iowa","TRUE","","280","4.2","19161","Sac","{""19161"": ""100""}","Sac","19161","FALSE","FALSE","America/Chicago"
-"50568","42.62221","-94.99333","Newell","IA","Iowa","TRUE","","1523","6.9","19021","Buena Vista","{""19021"": ""96.92"", ""19161"": ""3.08""}","Buena Vista|Sac","19021|19161","FALSE","FALSE","America/Chicago"
-"50569","42.40303","-94.13872","Otho","IA","Iowa","TRUE","","650","12.0","19187","Webster","{""19187"": ""100""}","Webster","19187","FALSE","FALSE","America/Chicago"
-"50570","42.89455","-94.36848","Ottosen","IA","Iowa","TRUE","","217","1.9","19091","Humboldt","{""19091"": ""72.18"", ""19109"": ""27.82""}","Humboldt|Kossuth","19091|19109","FALSE","FALSE","America/Chicago"
-"50571","42.63095","-94.57859","Palmer","IA","Iowa","TRUE","","345","3.0","19151","Pocahontas","{""19151"": ""100""}","Pocahontas","19151","FALSE","FALSE","America/Chicago"
-"50573","42.87674","-94.62382","Plover","IA","Iowa","TRUE","","84","80.3","19151","Pocahontas","{""19151"": ""100""}","Pocahontas","19151","FALSE","FALSE","America/Chicago"
-"50574","42.71668","-94.69859","Pocahontas","IA","Iowa","TRUE","","1996","6.9","19151","Pocahontas","{""19151"": ""100""}","Pocahontas","19151","FALSE","FALSE","America/Chicago"
-"50575","42.56038","-94.70053","Pomeroy","IA","Iowa","TRUE","","783","4.8","19025","Calhoun","{""19025"": ""84.73"", ""19151"": ""15.27""}","Calhoun|Pocahontas","19025|19151","FALSE","FALSE","America/Chicago"
-"50576","42.80326","-95.17528","Rembrandt","IA","Iowa","TRUE","","325","3.5","19021","Buena Vista","{""19021"": ""100""}","Buena Vista","19021","FALSE","FALSE","America/Chicago"
-"50577","42.85884","-93.97707","Renwick","IA","Iowa","TRUE","","379","3.5","19091","Humboldt","{""19091"": ""80"", ""19197"": ""20""}","Humboldt|Wright","19091|19197","FALSE","FALSE","America/Chicago"
-"50578","43.29968","-94.54591","Ringsted","IA","Iowa","TRUE","","629","3.3","19063","Emmet","{""19063"": ""97.83"", ""19147"": ""2.17""}","Emmet|Palo Alto","19063|19147","FALSE","FALSE","America/Chicago"
-"50579","42.39404","-94.63855","Rockwell City","IA","Iowa","TRUE","","2827","8.0","19025","Calhoun","{""19025"": ""100""}","Calhoun","19025","FALSE","FALSE","America/Chicago"
-"50581","42.84801","-94.54307","Rolfe","IA","Iowa","TRUE","","841","3.4","19151","Pocahontas","{""19151"": ""97.29"", ""19147"": ""2.71""}","Pocahontas|Palo Alto","19151|19147","FALSE","FALSE","America/Chicago"
-"50582","42.79502","-94.30163","Rutland","IA","Iowa","TRUE","","299","5.6","19091","Humboldt","{""19091"": ""100""}","Humboldt","19091","FALSE","FALSE","America/Chicago"
-"50583","42.43266","-94.98656","Sac City","IA","Iowa","TRUE","","2628","8.6","19161","Sac","{""19161"": ""100""}","Sac","19161","FALSE","FALSE","America/Chicago"
-"50585","42.91313","-95.13809","Sioux Rapids","IA","Iowa","TRUE","","1302","7.9","19021","Buena Vista","{""19021"": ""85.8"", ""19041"": ""14.2""}","Buena Vista|Clay","19021|19041","FALSE","FALSE","America/Chicago"
-"50586","42.40411","-94.43174","Somers","IA","Iowa","TRUE","","254","2.8","19025","Calhoun","{""19025"": ""95.77"", ""19187"": ""4.23""}","Calhoun|Webster","19025|19187","FALSE","FALSE","America/Chicago"
-"50588","42.65776","-95.16434","Storm Lake","IA","Iowa","TRUE","","12572","35.3","19021","Buena Vista","{""19021"": ""100""}","Buena Vista","19021","FALSE","FALSE","America/Chicago"
-"50590","43.40756","-94.30542","Swea City","IA","Iowa","TRUE","","889","4.4","19109","Kossuth","{""19109"": ""100""}","Kossuth","19109","FALSE","FALSE","America/Chicago"
-"50591","42.67602","-94.0557","Thor","IA","Iowa","TRUE","","422","5.7","19091","Humboldt","{""19091"": ""94.38"", ""19187"": ""5.63""}","Humboldt|Webster","19091|19187","FALSE","FALSE","America/Chicago"
-"50593","42.65716","-94.89883","Varina","IA","Iowa","TRUE","","36","75.0","19151","Pocahontas","{""19151"": ""100""}","Pocahontas","19151","FALSE","FALSE","America/Chicago"
-"50594","42.5852","-94.04011","Vincent","IA","Iowa","TRUE","","166","2.5","19187","Webster","{""19187"": ""100""}","Webster","19187","FALSE","FALSE","America/Chicago"
-"50595","42.46184","-93.82268","Webster City","IA","Iowa","TRUE","","8988","22.5","19079","Hamilton","{""19079"": ""100""}","Hamilton","19079","FALSE","FALSE","America/Chicago"
-"50597","42.97603","-94.45095","West Bend","IA","Iowa","TRUE","","1052","4.9","19147","Palo Alto","{""19147"": ""81.59"", ""19109"": ""18.41""}","Palo Alto|Kossuth","19147|19109","FALSE","FALSE","America/Chicago"
-"50598","43.08188","-94.41708","Whittemore","IA","Iowa","TRUE","","936","5.3","19109","Kossuth","{""19109"": ""92"", ""19147"": ""8""}","Kossuth|Palo Alto","19109|19147","FALSE","FALSE","America/Chicago"
-"50599","42.57894","-93.81385","Woolstock","IA","Iowa","TRUE","","376","2.8","19197","Wright","{""19197"": ""92.11"", ""19079"": ""7.89""}","Wright|Hamilton","19197|19079","FALSE","FALSE","America/Chicago"
-"50601","42.56684","-93.05642","Ackley","IA","Iowa","TRUE","","2638","7.2","19083","Hardin","{""19083"": ""73.82"", ""19069"": ""13.56"", ""19075"": ""7.26"", ""19023"": ""5.36""}","Hardin|Franklin|Grundy|Butler","19083|19069|19075|19023","FALSE","FALSE","America/Chicago"
-"50602","42.74109","-92.80312","Allison","IA","Iowa","TRUE","","1549","7.5","19023","Butler","{""19023"": ""100""}","Butler","19023","FALSE","FALSE","America/Chicago"
-"50603","43.18771","-92.45952","Alta Vista","IA","Iowa","TRUE","","443","3.6","19037","Chickasaw","{""19037"": ""87.36"", ""19089"": ""12.64""}","Chickasaw|Howard","19037|19089","FALSE","FALSE","America/Chicago"
-"50604","42.60345","-92.90396","Aplington","IA","Iowa","TRUE","","1779","9.6","19023","Butler","{""19023"": ""93.35"", ""19075"": ""6.65""}","Butler|Grundy","19023|19075","FALSE","FALSE","America/Chicago"
-"50605","42.83176","-93.02091","Aredale","IA","Iowa","TRUE","","242","6.2","19023","Butler","{""19023"": ""66.67"", ""19069"": ""33.33""}","Butler|Franklin","19023|19069","FALSE","FALSE","America/Chicago"
-"50606","42.74733","-91.6839","Arlington","IA","Iowa","TRUE","","742","4.0","19065","Fayette","{""19065"": ""98.08"", ""19043"": ""1.92""}","Fayette|Clayton","19065|19043","FALSE","FALSE","America/Chicago"
-"50607","42.61067","-91.74982","Aurora","IA","Iowa","TRUE","","466","3.8","19019","Buchanan","{""19019"": ""74.64"", ""19065"": ""25.36""}","Buchanan|Fayette","19019|19065","FALSE","FALSE","America/Chicago"
-"50609","42.22993","-92.80985","Beaman","IA","Iowa","TRUE","","422","4.7","19075","Grundy","{""19075"": ""75.34"", ""19127"": ""23.09"", ""19171"": ""1.57""}","Grundy|Marshall|Tama","19075|19127|19171","FALSE","FALSE","America/Chicago"
-"50611","42.81547","-92.90896","Bristow","IA","Iowa","TRUE","","294","3.7","19023","Butler","{""19023"": ""100""}","Butler","19023","FALSE","FALSE","America/Chicago"
-"50612","42.28344","-92.38606","Buckingham","IA","Iowa","TRUE","","322","5.6","19171","Tama","{""19171"": ""95.22"", ""19013"": ""4.78""}","Tama|Black Hawk","19171|19013","FALSE","FALSE","America/Chicago"
-"50613","42.53309","-92.48895","Cedar Falls","IA","Iowa","TRUE","","43717","134.1","19013","Black Hawk","{""19013"": ""98.63"", ""19075"": ""1.27"", ""19023"": ""0.1""}","Black Hawk|Grundy|Butler","19013|19075|19023","FALSE","FALSE","America/Chicago"
-"50616","43.0812","-92.66096","Charles City","IA","Iowa","TRUE","","10214","22.9","19067","Floyd","{""19067"": ""99.16"", ""19037"": ""0.84""}","Floyd|Chickasaw","19067|19037","FALSE","FALSE","America/Chicago"
-"50619","42.80178","-92.65563","Clarksville","IA","Iowa","TRUE","","2306","10.1","19023","Butler","{""19023"": ""100""}","Butler","19023","FALSE","FALSE","America/Chicago"
-"50620","43.15842","-92.59055","Colwell","IA","Iowa","TRUE","","40","123.2","19067","Floyd","{""19067"": ""100""}","Floyd","19067","FALSE","FALSE","America/Chicago"
-"50621","42.2511","-92.92101","Conrad","IA","Iowa","TRUE","","1546","9.3","19075","Grundy","{""19075"": ""95.56"", ""19127"": ""4.44""}","Grundy|Marshall","19075|19127","FALSE","FALSE","America/Chicago"
-"50622","42.67305","-92.3352","Denver","IA","Iowa","TRUE","","3213","49.6","19017","Bremer","{""19017"": ""100""}","Bremer","19017","FALSE","FALSE","America/Chicago"
-"50624","42.46782","-92.65873","Dike","IA","Iowa","TRUE","","1560","11.5","19075","Grundy","{""19075"": ""100""}","Grundy","19075","FALSE","FALSE","America/Chicago"
-"50625","42.74821","-92.98611","Dumont","IA","Iowa","TRUE","","1091","6.9","19023","Butler","{""19023"": ""93.73"", ""19069"": ""6.27""}","Butler|Franklin","19023|19069","FALSE","FALSE","America/Chicago"
-"50626","42.57816","-92.17095","Dunkerton","IA","Iowa","TRUE","","1694","13.0","19013","Black Hawk","{""19013"": ""100""}","Black Hawk","19013","FALSE","FALSE","America/Chicago"
-"50627","42.35055","-93.09573","Eldora","IA","Iowa","TRUE","","3200","11.6","19083","Hardin","{""19083"": ""97.05"", ""19075"": ""2.95""}","Hardin|Grundy","19083|19075","FALSE","FALSE","America/Chicago"
-"50628","43.26719","-92.39069","Elma","IA","Iowa","TRUE","","1287","4.5","19089","Howard","{""19089"": ""95.92"", ""19131"": ""4.08""}","Howard|Mitchell","19089|19131","FALSE","FALSE","America/Chicago"
-"50629","42.6424","-92.08067","Fairbank","IA","Iowa","TRUE","","2605","12.7","19019","Buchanan","{""19019"": ""60.63"", ""19065"": ""21.42"", ""19017"": ""11.25"", ""19013"": ""6.7""}","Buchanan|Fayette|Bremer|Black Hawk","19019|19065|19017|19013","FALSE","FALSE","America/Chicago"
-"50630","42.95627","-92.2127","Fredericksburg","IA","Iowa","TRUE","","1738","8.1","19037","Chickasaw","{""19037"": ""96.47"", ""19017"": ""3.53""}","Chickasaw|Bremer","19037|19017","FALSE","FALSE","America/Chicago"
-"50632","42.07524","-92.70334","Garwin","IA","Iowa","TRUE","","1024","9.3","19171","Tama","{""19171"": ""88.89"", ""19127"": ""11.11""}","Tama|Marshall","19171|19127","FALSE","FALSE","America/Chicago"
-"50633","42.67127","-93.12857","Geneva","IA","Iowa","TRUE","","333","3.2","19069","Franklin","{""19069"": ""100""}","Franklin","19069","FALSE","FALSE","America/Chicago"
-"50634","42.41892","-92.21456","Gilbertville","IA","Iowa","TRUE","","822","826.5","19013","Black Hawk","{""19013"": ""100""}","Black Hawk","19013","FALSE","FALSE","America/Chicago"
-"50635","42.20208","-92.69932","Gladbrook","IA","Iowa","TRUE","","1584","7.3","19171","Tama","{""19171"": ""98.94"", ""19127"": ""1.06""}","Tama|Marshall","19171|19127","FALSE","FALSE","America/Chicago"
-"50636","42.89517","-92.80925","Greene","IA","Iowa","TRUE","","1695","5.4","19023","Butler","{""19023"": ""85.12"", ""19067"": ""14.88""}","Butler|Floyd","19023|19067","FALSE","FALSE","America/Chicago"
-"50638","42.35673","-92.79394","Grundy Center","IA","Iowa","TRUE","","3304","13.4","19075","Grundy","{""19075"": ""100""}","Grundy","19075","FALSE","FALSE","America/Chicago"
-"50641","42.59932","-91.91993","Hazleton","IA","Iowa","TRUE","","1376","11.2","19019","Buchanan","{""19019"": ""100""}","Buchanan","19019","FALSE","FALSE","America/Chicago"
-"50642","42.43977","-92.81271","Holland","IA","Iowa","TRUE","","550","6.6","19075","Grundy","{""19075"": ""100""}","Grundy","19075","FALSE","FALSE","America/Chicago"
-"50643","42.36189","-92.46865","Hudson","IA","Iowa","TRUE","","2773","17.0","19013","Black Hawk","{""19013"": ""98.98"", ""19075"": ""1.02""}","Black Hawk|Grundy","19013|19075","FALSE","FALSE","America/Chicago"
-"50644","42.47638","-91.89355","Independence","IA","Iowa","TRUE","","9046","24.5","19019","Buchanan","{""19019"": ""100""}","Buchanan","19019","FALSE","FALSE","America/Chicago"
-"50645","43.0201","-92.45139","Ionia","IA","Iowa","TRUE","","1062","5.0","19037","Chickasaw","{""19037"": ""93.36"", ""19017"": ""4.32"", ""19067"": ""2.33""}","Chickasaw|Bremer|Floyd","19037|19017|19067","FALSE","FALSE","America/Chicago"
-"50647","42.64885","-92.48336","Janesville","IA","Iowa","TRUE","","2194","28.3","19017","Bremer","{""19017"": ""65.31"", ""19013"": ""34.69""}","Bremer|Black Hawk","19017|19013","FALSE","FALSE","America/Chicago"
-"50648","42.45225","-92.09253","Jesup","IA","Iowa","TRUE","","4247","19.0","19019","Buchanan","{""19019"": ""79.9"", ""19013"": ""20.1""}","Buchanan|Black Hawk","19019|19013","FALSE","FALSE","America/Chicago"
-"50650","42.61899","-91.65459","Lamont","IA","Iowa","TRUE","","865","8.1","19019","Buchanan","{""19019"": ""84.12"", ""19065"": ""15.88""}","Buchanan|Fayette","19019|19065","FALSE","FALSE","America/Chicago"
-"50651","42.31721","-92.19695","La Porte City","IA","Iowa","TRUE","","3920","13.5","19013","Black Hawk","{""19013"": ""91.17"", ""19011"": ""8.83""}","Black Hawk|Benton","19013|19011","FALSE","FALSE","America/Chicago"
-"50652","42.26429","-92.69376","Lincoln","IA","Iowa","TRUE","","91","150.2","19171","Tama","{""19171"": ""100""}","Tama","19171","FALSE","FALSE","America/Chicago"
-"50653","42.96591","-92.89219","Marble Rock","IA","Iowa","TRUE","","619","4.6","19067","Floyd","{""19067"": ""100""}","Floyd","19067","FALSE","FALSE","America/Chicago"
-"50654","42.45198","-91.60916","Masonville","IA","Iowa","TRUE","","502","3.7","19055","Delaware","{""19055"": ""60.72"", ""19019"": ""39.28""}","Delaware|Buchanan","19055|19019","FALSE","FALSE","America/Chicago"
-"50655","42.77295","-91.90037","Maynard","IA","Iowa","TRUE","","768","8.4","19065","Fayette","{""19065"": ""100""}","Fayette","19065","FALSE","FALSE","America/Chicago"
-"50658","42.95699","-92.53563","Nashua","IA","Iowa","TRUE","","2305","12.5","19037","Chickasaw","{""19037"": ""89.36"", ""19067"": ""10.64""}","Chickasaw|Floyd","19037|19067","FALSE","FALSE","America/Chicago"
-"50659","43.08814","-92.32253","New Hampton","IA","Iowa","TRUE","","5670","14.1","19037","Chickasaw","{""19037"": ""100""}","Chickasaw","19037","FALSE","FALSE","America/Chicago"
-"50660","42.58307","-92.6327","New Hartford","IA","Iowa","TRUE","","1332","13.3","19023","Butler","{""19023"": ""90.1"", ""19075"": ""9.9""}","Butler|Grundy","19023|19075","FALSE","FALSE","America/Chicago"
-"50662","42.6904","-91.93483","Oelwein","IA","Iowa","TRUE","","6669","37.9","19065","Fayette","{""19065"": ""99.28"", ""19019"": ""0.72""}","Fayette|Buchanan","19065|19019","FALSE","FALSE","America/Chicago"
-"50664","42.70125","-92.07619","Oran","IA","Iowa","TRUE","","42","440.5","19065","Fayette","{""19065"": ""100""}","Fayette","19065","FALSE","FALSE","America/Chicago"
-"50665","42.58037","-92.77191","Parkersburg","IA","Iowa","TRUE","","2883","11.4","19023","Butler","{""19023"": ""87.82"", ""19075"": ""12.18""}","Butler|Grundy","19023|19075","FALSE","FALSE","America/Chicago"
-"50666","42.86442","-92.50692","Plainfield","IA","Iowa","TRUE","","952","6.8","19017","Bremer","{""19017"": ""89.19"", ""19023"": ""10.81""}","Bremer|Butler","19017|19023","FALSE","FALSE","America/Chicago"
-"50667","42.47028","-92.2264","Raymond","IA","Iowa","TRUE","","718","137.6","19013","Black Hawk","{""19013"": ""100""}","Black Hawk","19013","FALSE","FALSE","America/Chicago"
-"50668","42.69069","-92.2265","Readlyn","IA","Iowa","TRUE","","1168","13.3","19017","Bremer","{""19017"": ""100""}","Bremer","19017","FALSE","FALSE","America/Chicago"
-"50669","42.33212","-92.6077","Reinbeck","IA","Iowa","TRUE","","2259","9.4","19075","Grundy","{""19075"": ""91.54"", ""19171"": ""8.29"", ""19013"": ""0.16""}","Grundy|Tama|Black Hawk","19075|19171|19013","FALSE","FALSE","America/Chicago"
-"50670","42.68687","-92.61615","Shell Rock","IA","Iowa","TRUE","","2270","15.4","19023","Butler","{""19023"": ""98.76"", ""19017"": ""1.24""}","Butler|Bremer","19023|19017","FALSE","FALSE","America/Chicago"
-"50671","42.65231","-91.80091","Stanley","IA","Iowa","TRUE","","166","2.9","19019","Buchanan","{""19019"": ""63.94"", ""19065"": ""36.06""}","Buchanan|Fayette","19019|19065","FALSE","FALSE","America/Chicago"
-"50672","42.4252","-93.0632","Steamboat Rock","IA","Iowa","TRUE","","532","5.6","19083","Hardin","{""19083"": ""94.78"", ""19075"": ""5.22""}","Hardin|Grundy","19083|19075","FALSE","FALSE","America/Chicago"
-"50673","42.52495","-92.71127","Stout","IA","Iowa","TRUE","","182","408.1","19075","Grundy","{""19075"": ""100""}","Grundy","19075","FALSE","FALSE","America/Chicago"
-"50674","42.84098","-92.11881","Sumner","IA","Iowa","TRUE","","3733","9.2","19017","Bremer","{""19017"": ""85.01"", ""19065"": ""12.66"", ""19037"": ""2.33""}","Bremer|Fayette|Chickasaw","19017|19065|19037","FALSE","FALSE","America/Chicago"
-"50675","42.20102","-92.4917","Traer","IA","Iowa","TRUE","","2407","8.4","19171","Tama","{""19171"": ""99.06"", ""19013"": ""0.94""}","Tama|Black Hawk","19171|19013","FALSE","FALSE","America/Chicago"
-"50676","42.79629","-92.27961","Tripoli","IA","Iowa","TRUE","","2196","14.9","19017","Bremer","{""19017"": ""100""}","Bremer","19017","FALSE","FALSE","America/Chicago"
-"50677","42.76264","-92.43273","Waverly","IA","Iowa","TRUE","","12526","38.9","19017","Bremer","{""19017"": ""100""}","Bremer","19017","FALSE","FALSE","America/Chicago"
-"50680","42.45212","-92.92301","Wellsburg","IA","Iowa","TRUE","","1090","7.9","19075","Grundy","{""19075"": ""100""}","Grundy","19075","FALSE","FALSE","America/Chicago"
-"50681","42.7776","-92.00941","Westgate","IA","Iowa","TRUE","","440","7.0","19065","Fayette","{""19065"": ""100""}","Fayette","19065","FALSE","FALSE","America/Chicago"
-"50682","42.45328","-91.69678","Winthrop","IA","Iowa","TRUE","","1897","8.6","19019","Buchanan","{""19019"": ""100""}","Buchanan","19019","FALSE","FALSE","America/Chicago"
-"50701","42.41584","-92.34144","Waterloo","IA","Iowa","TRUE","","30817","145.8","19013","Black Hawk","{""19013"": ""100""}","Black Hawk","19013","FALSE","FALSE","America/Chicago"
-"50702","42.45745","-92.31237","Waterloo","IA","Iowa","TRUE","","19446","794.4","19013","Black Hawk","{""19013"": ""100""}","Black Hawk","19013","FALSE","FALSE","America/Chicago"
-"50703","42.54851","-92.28049","Waterloo","IA","Iowa","TRUE","","19306","79.6","19013","Black Hawk","{""19013"": ""100""}","Black Hawk","19013","FALSE","FALSE","America/Chicago"
-"50707","42.47933","-92.27892","Evansdale","IA","Iowa","TRUE","","8329","332.6","19013","Black Hawk","{""19013"": ""100""}","Black Hawk","19013","FALSE","FALSE","America/Chicago"
-"50801","41.07972","-94.39127","Creston","IA","Iowa","TRUE","","9383","17.3","19175","Union","{""19175"": ""96.76"", ""19003"": ""2.03"", ""19001"": ""1.21""}","Union|Adams|Adair","19175|19003|19001","FALSE","FALSE","America/Chicago"
-"50830","41.02717","-94.19089","Afton","IA","Iowa","TRUE","","1760","5.8","19175","Union","{""19175"": ""100""}","Union","19175","FALSE","FALSE","America/Chicago"
-"50833","40.6704","-94.70071","Bedford","IA","Iowa","TRUE","","2294","4.3","19173","Taylor","{""19173"": ""100""}","Taylor","19173","FALSE","FALSE","America/Chicago"
-"50835","40.70813","-94.36888","Benton","IA","Iowa","TRUE","","65","1.5","19159","Ringgold","{""19159"": ""100""}","Ringgold","19159","FALSE","FALSE","America/Chicago"
-"50836","40.62772","-94.49636","Blockton","IA","Iowa","TRUE","","257","1.1","19173","Taylor","{""19173"": ""75.93"", ""19159"": ""24.07""}","Taylor|Ringgold","19173|19159","FALSE","FALSE","America/Chicago"
-"50837","41.22898","-94.68109","Bridgewater","IA","Iowa","TRUE","","341","2.6","19001","Adair","{""19001"": ""88.83"", ""19003"": ""5.85"", ""19029"": ""5.32""}","Adair|Adams|Cass","19001|19003|19029","FALSE","FALSE","America/Chicago"
-"50839","41.04966","-94.82398","Carbon","IA","Iowa","TRUE","","46","25.2","19003","Adams","{""19003"": ""100""}","Adams","19003","FALSE","FALSE","America/Chicago"
-"50840","40.7913","-94.48525","Clearfield","IA","Iowa","TRUE","","568","4.4","19173","Taylor","{""19173"": ""84.82"", ""19159"": ""15.18""}","Taylor|Ringgold","19173|19159","FALSE","FALSE","America/Chicago"
-"50841","41.00973","-94.76344","Corning","IA","Iowa","TRUE","","2538","4.2","19003","Adams","{""19003"": ""95.47"", ""19173"": ""4.53""}","Adams|Taylor","19003|19173","FALSE","FALSE","America/Chicago"
-"50842","41.03987","-94.4618","Cromwell","IA","Iowa","TRUE","","84","124.5","19175","Union","{""19175"": ""100""}","Union","19175","FALSE","FALSE","America/Chicago"
-"50843","41.23973","-94.88901","Cumberland","IA","Iowa","TRUE","","442","2.3","19029","Cass","{""19029"": ""98.49"", ""19003"": ""1.51""}","Cass|Adams","19029|19003","FALSE","FALSE","America/Chicago"
-"50845","40.81871","-94.35236","Diagonal","IA","Iowa","TRUE","","849","3.0","19159","Ringgold","{""19159"": ""94.08"", ""19175"": ""5.92""}","Ringgold|Union","19159|19175","FALSE","FALSE","America/Chicago"
-"50846","41.30961","-94.56974","Fontanelle","IA","Iowa","TRUE","","959","4.0","19001","Adair","{""19001"": ""100""}","Adair","19001","FALSE","FALSE","America/Chicago"
-"50847","41.14112","-94.98165","Grant","IA","Iowa","TRUE","","82","98.0","19137","Montgomery","{""19137"": ""100""}","Montgomery","19137","FALSE","FALSE","America/Chicago"
-"50848","40.78371","-94.76523","Gravity","IA","Iowa","TRUE","","291","2.5","19173","Taylor","{""19173"": ""100""}","Taylor","19173","FALSE","FALSE","America/Chicago"
-"50849","41.30326","-94.39942","Greenfield","IA","Iowa","TRUE","","2488","8.2","19001","Adair","{""19001"": ""100""}","Adair","19001","FALSE","FALSE","America/Chicago"
-"50851","40.90322","-94.53761","Lenox","IA","Iowa","TRUE","","2037","6.1","19173","Taylor","{""19173"": ""79.83"", ""19003"": ""11.69"", ""19175"": ""7.33"", ""19159"": ""1.15""}","Taylor|Adams|Union|Ringgold","19173|19003|19175|19159","FALSE","FALSE","America/Chicago"
-"50853","41.23979","-94.77067","Massena","IA","Iowa","TRUE","","682","3.5","19029","Cass","{""19029"": ""98.43"", ""19003"": ""1.57""}","Cass|Adams","19029|19003","FALSE","FALSE","America/Chicago"
-"50854","40.69107","-94.21526","Mount Ayr","IA","Iowa","TRUE","","2666","7.6","19159","Ringgold","{""19159"": ""100""}","Ringgold","19159","FALSE","FALSE","America/Chicago"
-"50857","40.94349","-94.87875","Nodaway","IA","Iowa","TRUE","","189","1.4","19003","Adams","{""19003"": ""88.6"", ""19173"": ""11.4""}","Adams|Taylor","19003|19173","FALSE","FALSE","America/Chicago"
-"50858","41.21055","-94.41292","Orient","IA","Iowa","TRUE","","732","3.5","19001","Adair","{""19001"": ""100""}","Adair","19001","FALSE","FALSE","America/Chicago"
-"50859","41.06719","-94.60106","Prescott","IA","Iowa","TRUE","","643","3.1","19003","Adams","{""19003"": ""97.77"", ""19001"": ""2.23""}","Adams|Adair","19003|19001","FALSE","FALSE","America/Chicago"
-"50860","40.62377","-94.34049","Redding","IA","Iowa","TRUE","","158","1.4","19159","Ringgold","{""19159"": ""100""}","Ringgold","19159","FALSE","FALSE","America/Chicago"
-"50861","40.91157","-94.2565","Shannon City","IA","Iowa","TRUE","","239","2.1","19175","Union","{""19175"": ""81.02"", ""19159"": ""18.98""}","Union|Ringgold","19175|19159","FALSE","FALSE","America/Chicago"
-"50862","40.81279","-94.65336","Sharpsburg","IA","Iowa","TRUE","","202","3.6","19173","Taylor","{""19173"": ""100""}","Taylor","19173","FALSE","FALSE","America/Chicago"
-"50863","40.84241","-94.16795","Tingley","IA","Iowa","TRUE","","187","2.4","19159","Ringgold","{""19159"": ""100""}","Ringgold","19159","FALSE","FALSE","America/Chicago"
-"50864","40.97373","-94.98216","Villisca","IA","Iowa","TRUE","","1900","5.0","19137","Montgomery","{""19137"": ""86.19"", ""19145"": ""9.58"", ""19173"": ""3.31"", ""19029"": ""0.63"", ""19003"": ""0.29""}","Montgomery|Page|Taylor|Cass|Adams","19137|19145|19173|19029|19003","FALSE","FALSE","America/Chicago"
-"51001","42.83311","-96.52235","Akron","IA","Iowa","TRUE","","2330","6.5","19149","Plymouth","{""19149"": ""90.05"", ""46127"": ""9.95""}","Plymouth|Union","19149|46127","FALSE","FALSE","America/Chicago"
-"51002","42.69791","-95.31991","Alta","IA","Iowa","TRUE","","2778","9.4","19021","Buena Vista","{""19021"": ""99.85"", ""19035"": ""0.15""}","Buena Vista|Cherokee","19021|19035","FALSE","FALSE","America/Chicago"
-"51003","42.98503","-95.98664","Alton","IA","Iowa","TRUE","","1713","11.9","19167","Sioux","{""19167"": ""100""}","Sioux","19167","FALSE","FALSE","America/Chicago"
-"51004","42.3761","-95.9147","Anthon","IA","Iowa","TRUE","","963","4.5","19193","Woodbury","{""19193"": ""100""}","Woodbury","19193","FALSE","FALSE","America/Chicago"
-"51005","42.72154","-95.4249","Aurelia","IA","Iowa","TRUE","","1321","5.4","19035","Cherokee","{""19035"": ""96.04"", ""19021"": ""3.96""}","Cherokee|Buena Vista","19035|19021","FALSE","FALSE","America/Chicago"
-"51006","42.31588","-95.6156","Battle Creek","IA","Iowa","TRUE","","1025","4.8","19093","Ida","{""19093"": ""95.53"", ""19193"": ""4.47""}","Ida|Woodbury","19093|19193","FALSE","FALSE","America/Chicago"
-"51007","42.40397","-96.18705","Bronson","IA","Iowa","TRUE","","508","5.8","19193","Woodbury","{""19193"": ""100""}","Woodbury","19193","FALSE","FALSE","America/Chicago"
-"51008","42.81092","-96.26691","Brunsville","IA","Iowa","TRUE","","157","249.0","19149","Plymouth","{""19149"": ""100""}","Plymouth","19149","FALSE","FALSE","America/Chicago"
-"51009","42.94431","-95.55152","Calumet","IA","Iowa","TRUE","","246","402.1","19141","O'Brien","{""19141"": ""100""}","O'Brien","19141","FALSE","FALSE","America/Chicago"
-"51010","42.08962","-95.90927","Castana","IA","Iowa","TRUE","","367","2.1","19133","Monona","{""19133"": ""100""}","Monona","19133","FALSE","FALSE","America/Chicago"
-"51011","42.91631","-96.51445","Chatsworth","IA","Iowa","TRUE","","61","47.8","19167","Sioux","{""19167"": ""100""}","Sioux","19167","FALSE","FALSE","America/Chicago"
-"51012","42.74445","-95.56191","Cherokee","IA","Iowa","TRUE","","6317","16.3","19035","Cherokee","{""19035"": ""100""}","Cherokee","19035","FALSE","FALSE","America/Chicago"
-"51014","42.78564","-95.71073","Cleghorn","IA","Iowa","TRUE","","405","2.9","19035","Cherokee","{""19035"": ""100""}","Cherokee","19035","FALSE","FALSE","America/Chicago"
-"51016","42.4707","-95.8062","Correctionville","IA","Iowa","TRUE","","1339","5.1","19193","Woodbury","{""19193"": ""97.1"", ""19093"": ""2.9""}","Woodbury|Ida","19193|19093","FALSE","FALSE","America/Chicago"
-"51018","42.44717","-95.68223","Cushing","IA","Iowa","TRUE","","386","4.1","19193","Woodbury","{""19193"": ""77.48"", ""19093"": ""22.52""}","Woodbury|Ida","19193|19093","FALSE","FALSE","America/Chicago"
-"51019","42.27019","-95.72793","Danbury","IA","Iowa","TRUE","","959","4.0","19193","Woodbury","{""19193"": ""88.36"", ""19093"": ""7.12"", ""19047"": ""4.53""}","Woodbury|Ida|Crawford","19193|19093|19047","FALSE","FALSE","America/Chicago"
-"51020","42.51064","-95.41163","Galva","IA","Iowa","TRUE","","705","5.0","19093","Ida","{""19093"": ""87.84"", ""19161"": ""7.29"", ""19035"": ""4.86""}","Ida|Sac|Cherokee","19093|19161|19035","FALSE","FALSE","America/Chicago"
-"51022","42.97695","-95.85","Granville","IA","Iowa","TRUE","","649","3.2","19167","Sioux","{""19167"": ""66.29"", ""19141"": ""32.95"", ""19149"": ""0.76""}","Sioux|O'Brien|Plymouth","19167|19141|19149","FALSE","FALSE","America/Chicago"
-"51023","43.01335","-96.45389","Hawarden","IA","Iowa","TRUE","","3268","12.1","19167","Sioux","{""19167"": ""96.74"", ""46127"": ""3.26""}","Sioux|Union","19167|46127","FALSE","FALSE","America/Chicago"
-"51024","42.6184","-96.2666","Hinton","IA","Iowa","TRUE","","1874","8.1","19149","Plymouth","{""19149"": ""100""}","Plymouth","19149","FALSE","FALSE","America/Chicago"
-"51025","42.49745","-95.55756","Holstein","IA","Iowa","TRUE","","1924","6.9","19093","Ida","{""19093"": ""96.18"", ""19035"": ""3.82""}","Ida|Cherokee","19093|19035","FALSE","FALSE","America/Chicago"
-"51026","42.25059","-96.07447","Hornick","IA","Iowa","TRUE","","723","2.6","19193","Woodbury","{""19193"": ""88.28"", ""19133"": ""11.72""}","Woodbury|Monona","19193|19133","FALSE","FALSE","America/Chicago"
-"51027","42.96556","-96.32775","Ireton","IA","Iowa","TRUE","","1112","4.6","19167","Sioux","{""19167"": ""91.67"", ""19149"": ""8.33""}","Sioux|Plymouth","19167|19149","FALSE","FALSE","America/Chicago"
-"51028","42.60001","-95.98665","Kingsley","IA","Iowa","TRUE","","2327","7.1","19149","Plymouth","{""19149"": ""91.48"", ""19193"": ""8.52""}","Plymouth|Woodbury","19149|19193","FALSE","FALSE","America/Chicago"
-"51029","42.88057","-95.53787","Larrabee","IA","Iowa","TRUE","","265","4.5","19035","Cherokee","{""19035"": ""100""}","Cherokee","19035","FALSE","FALSE","America/Chicago"
-"51030","42.49794","-96.19256","Lawton","IA","Iowa","TRUE","","1807","11.7","19193","Woodbury","{""19193"": ""100""}","Woodbury","19193","FALSE","FALSE","America/Chicago"
-"51031","42.80163","-96.17911","Le Mars","IA","Iowa","TRUE","","12026","19.9","19149","Plymouth","{""19149"": ""100""}","Plymouth","19149","FALSE","FALSE","America/Chicago"
-"51033","42.91705","-95.25031","Linn Grove","IA","Iowa","TRUE","","390","2.4","19021","Buena Vista","{""19021"": ""69.16"", ""19041"": ""30.84""}","Buena Vista|Clay","19021|19041","FALSE","FALSE","America/Chicago"
-"51034","42.15945","-95.78911","Mapleton","IA","Iowa","TRUE","","1757","6.1","19133","Monona","{""19133"": ""94.84"", ""19193"": ""4.18"", ""19047"": ""0.99""}","Monona|Woodbury|Crawford","19133|19193|19047","FALSE","FALSE","America/Chicago"
-"51035","42.77878","-95.79948","Marcus","IA","Iowa","TRUE","","1579","5.7","19035","Cherokee","{""19035"": ""100""}","Cherokee","19035","FALSE","FALSE","America/Chicago"
-"51036","42.96902","-96.18999","Maurice","IA","Iowa","TRUE","","1053","9.2","19167","Sioux","{""19167"": ""100""}","Sioux","19167","FALSE","FALSE","America/Chicago"
-"51037","42.82664","-95.64314","Meriden","IA","Iowa","TRUE","","385","6.2","19035","Cherokee","{""19035"": ""100""}","Cherokee","19035","FALSE","FALSE","America/Chicago"
-"51038","42.70552","-96.31433","Merrill","IA","Iowa","TRUE","","1729","7.4","19149","Plymouth","{""19149"": ""100""}","Plymouth","19149","FALSE","FALSE","America/Chicago"
-"51039","42.45685","-96.05389","Moville","IA","Iowa","TRUE","","2635","11.8","19193","Woodbury","{""19193"": ""100""}","Woodbury","19193","FALSE","FALSE","America/Chicago"
-"51040","42.0365","-96.08046","Onawa","IA","Iowa","TRUE","","3500","8.9","19133","Monona","{""19133"": ""100""}","Monona","19133","FALSE","FALSE","America/Chicago"
-"51041","43.02612","-96.07792","Orange City","IA","Iowa","TRUE","","7180","38.9","19167","Sioux","{""19167"": ""100""}","Sioux","19167","FALSE","FALSE","America/Chicago"
-"51044","42.29926","-95.92022","Oto","IA","Iowa","TRUE","","258","2.9","19193","Woodbury","{""19193"": ""100""}","Woodbury","19193","FALSE","FALSE","America/Chicago"
-"51046","42.96436","-95.67832","Paullina","IA","Iowa","TRUE","","1510","6.3","19141","O'Brien","{""19141"": ""98.73"", ""19035"": ""1.27""}","O'Brien|Cherokee","19141|19035","FALSE","FALSE","America/Chicago"
-"51047","42.93568","-95.36129","Peterson","IA","Iowa","TRUE","","697","3.5","19041","Clay","{""19041"": ""77.71"", ""19021"": ""13.78"", ""19035"": ""5.73"", ""19141"": ""2.79""}","Clay|Buena Vista|Cherokee|O'Brien","19041|19021|19035|19141","FALSE","FALSE","America/Chicago"
-"51048","42.57519","-95.86175","Pierson","IA","Iowa","TRUE","","639","7.4","19193","Woodbury","{""19193"": ""85.74"", ""19035"": ""14.26""}","Woodbury|Cherokee","19193|19035","FALSE","FALSE","America/Chicago"
-"51049","42.62942","-95.64804","Quimby","IA","Iowa","TRUE","","601","5.3","19035","Cherokee","{""19035"": ""100""}","Cherokee","19035","FALSE","FALSE","America/Chicago"
-"51050","42.79362","-95.94595","Remsen","IA","Iowa","TRUE","","2720","7.7","19149","Plymouth","{""19149"": ""100""}","Plymouth","19149","FALSE","FALSE","America/Chicago"
-"51051","42.20444","-95.97015","Rodney","IA","Iowa","TRUE","","76","8.7","19133","Monona","{""19133"": ""100""}","Monona","19133","FALSE","FALSE","America/Chicago"
-"51052","42.31471","-96.26502","Salix","IA","Iowa","TRUE","","764","4.9","19193","Woodbury","{""19193"": ""100""}","Woodbury","19193","FALSE","FALSE","America/Chicago"
-"51053","42.49383","-95.2855","Schaller","IA","Iowa","TRUE","","1046","5.4","19161","Sac","{""19161"": ""97.33"", ""19093"": ""2.67""}","Sac|Ida","19161|19093","FALSE","FALSE","America/Chicago"
-"51054","42.37974","-96.33027","Sergeant Bluff","IA","Iowa","TRUE","","5425","52.2","19193","Woodbury","{""19193"": ""100""}","Woodbury","19193","FALSE","FALSE","America/Chicago"
-"51055","42.21586","-96.25672","Sloan","IA","Iowa","TRUE","","1618","9.4","19193","Woodbury","{""19193"": ""86.2"", ""19133"": ""13.8""}","Woodbury|Monona","19193|19133","FALSE","FALSE","America/Chicago"
-"51056","42.23547","-95.95351","Smithland","IA","Iowa","TRUE","","460","5.2","19193","Woodbury","{""19193"": ""96.86"", ""19133"": ""3.14""}","Woodbury|Monona","19193|19133","FALSE","FALSE","America/Chicago"
-"51058","42.98161","-95.47097","Sutherland","IA","Iowa","TRUE","","819","3.8","19141","O'Brien","{""19141"": ""97.72"", ""19035"": ""1.89"", ""19041"": ""0.4""}","O'Brien|Cherokee|Clay","19141|19035|19041","FALSE","FALSE","America/Chicago"
-"51060","42.04157","-95.69791","Ute","IA","Iowa","TRUE","","503","3.2","19133","Monona","{""19133"": ""88.13"", ""19047"": ""11.87""}","Monona|Crawford","19133|19047","FALSE","FALSE","America/Chicago"
-"51061","42.57853","-95.71807","Washta","IA","Iowa","TRUE","","458","3.8","19035","Cherokee","{""19035"": ""85.88"", ""19093"": ""14.12""}","Cherokee|Ida","19035|19093","FALSE","FALSE","America/Chicago"
-"51062","42.70701","-96.53667","Westfield","IA","Iowa","TRUE","","299","2.1","19149","Plymouth","{""19149"": ""100""}","Plymouth","19149","FALSE","FALSE","America/Chicago"
-"51063","42.14724","-96.17462","Whiting","IA","Iowa","TRUE","","1066","6.7","19133","Monona","{""19133"": ""100""}","Monona","19133","FALSE","FALSE","America/Chicago"
-"51101","42.49406","-96.39361","Sioux City","IA","Iowa","TRUE","","816","266.7","19193","Woodbury","{""19193"": ""100""}","Woodbury","19193","FALSE","FALSE","America/Chicago"
-"51103","42.51807","-96.4428","Sioux City","IA","Iowa","TRUE","","16938","620.2","19193","Woodbury","{""19193"": ""100""}","Woodbury","19193","FALSE","FALSE","America/Chicago"
-"51104","42.53542","-96.40413","Sioux City","IA","Iowa","TRUE","","22981","1142.4","19193","Woodbury","{""19193"": ""100""}","Woodbury","19193","FALSE","FALSE","America/Chicago"
-"51105","42.50866","-96.36643","Sioux City","IA","Iowa","TRUE","","10531","668.6","19193","Woodbury","{""19193"": ""100""}","Woodbury","19193","FALSE","FALSE","America/Chicago"
-"51106","42.46615","-96.32082","Sioux City","IA","Iowa","TRUE","","26474","328.0","19193","Woodbury","{""19193"": ""100""}","Woodbury","19193","FALSE","FALSE","America/Chicago"
-"51108","42.5669","-96.35227","Sioux City","IA","Iowa","TRUE","","5084","43.8","19193","Woodbury","{""19193"": ""77.81"", ""19149"": ""22.19""}","Woodbury|Plymouth","19193|19149","FALSE","FALSE","America/Chicago"
-"51109","42.59486","-96.47856","Sioux City","IA","Iowa","TRUE","","3166","67.4","19193","Woodbury","{""19193"": ""89.93"", ""19149"": ""10.07""}","Woodbury|Plymouth","19193|19149","FALSE","FALSE","America/Chicago"
-"51111","42.40999","-96.38638","Sioux City","IA","Iowa","TRUE","","122","7.0","19193","Woodbury","{""19193"": ""100""}","Woodbury","19193","FALSE","FALSE","America/Chicago"
-"51201","43.18336","-95.86572","Sheldon","IA","Iowa","TRUE","","5845","19.8","19141","O'Brien","{""19141"": ""88.81"", ""19167"": ""11.03"", ""19119"": ""0.16""}","O'Brien|Sioux|Lyon","19141|19167|19119","FALSE","FALSE","America/Chicago"
-"51230","43.36033","-96.32367","Alvord","IA","Iowa","TRUE","","294","4.5","19119","Lyon","{""19119"": ""100""}","Lyon","19119","FALSE","FALSE","America/Chicago"
-"51231","43.10312","-95.74219","Archer","IA","Iowa","TRUE","","386","5.3","19141","O'Brien","{""19141"": ""100""}","O'Brien","19141","FALSE","FALSE","America/Chicago"
-"51232","43.30166","-95.81755","Ashton","IA","Iowa","TRUE","","748","4.8","19143","Osceola","{""19143"": ""87.54"", ""19119"": ""12.46""}","Osceola|Lyon","19143|19119","FALSE","FALSE","America/Chicago"
-"51234","43.19407","-96.01993","Boyden","IA","Iowa","TRUE","","1288","10.0","19167","Sioux","{""19167"": ""100""}","Sioux","19167","FALSE","FALSE","America/Chicago"
-"51235","43.29454","-96.21823","Doon","IA","Iowa","TRUE","","1374","9.5","19119","Lyon","{""19119"": ""97.59"", ""19167"": ""2.41""}","Lyon|Sioux","19119|19167","FALSE","FALSE","America/Chicago"
-"51237","43.33672","-96.00067","George","IA","Iowa","TRUE","","1753","7.0","19119","Lyon","{""19119"": ""100""}","Lyon","19119","FALSE","FALSE","America/Chicago"
-"51238","43.07667","-95.89465","Hospers","IA","Iowa","TRUE","","1220","10.3","19167","Sioux","{""19167"": ""90.2"", ""19141"": ""9.8""}","Sioux|O'Brien","19167|19141","FALSE","FALSE","America/Chicago"
-"51239","43.20131","-96.14576","Hull","IA","Iowa","TRUE","","3168","18.5","19167","Sioux","{""19167"": ""98.82"", ""19119"": ""1.18""}","Sioux|Lyon","19167|19119","FALSE","FALSE","America/Chicago"
-"51240","43.30949","-96.45715","Inwood","IA","Iowa","TRUE","","2103","8.0","19119","Lyon","{""19119"": ""91.98"", ""19167"": ""8.02""}","Lyon|Sioux","19119|19167","FALSE","FALSE","America/Chicago"
-"51241","43.44966","-96.45993","Larchwood","IA","Iowa","TRUE","","1835","7.9","19119","Lyon","{""19119"": ""100""}","Lyon","19119","FALSE","FALSE","America/Chicago"
-"51242","43.44113","-96.33481","Lester","IA","Iowa","TRUE","","208","176.5","19119","Lyon","{""19119"": ""100""}","Lyon","19119","FALSE","FALSE","America/Chicago"
-"51243","43.44247","-95.90405","Little Rock","IA","Iowa","TRUE","","702","5.0","19119","Lyon","{""19119"": ""95.79"", ""19143"": ""4.21""}","Lyon|Osceola","19119|19143","FALSE","FALSE","America/Chicago"
-"51244","43.24479","-95.93544","Matlock","IA","Iowa","TRUE","","103","131.1","19167","Sioux","{""19167"": ""100""}","Sioux","19167","FALSE","FALSE","America/Chicago"
-"51245","43.07473","-95.59999","Primghar","IA","Iowa","TRUE","","1216","6.0","19141","O'Brien","{""19141"": ""100""}","O'Brien","19141","FALSE","FALSE","America/Chicago"
-"51246","43.42831","-96.16717","Rock Rapids","IA","Iowa","TRUE","","3649","8.6","19119","Lyon","{""19119"": ""100""}","Lyon","19119","FALSE","FALSE","America/Chicago"
-"51247","43.19133","-96.33947","Rock Valley","IA","Iowa","TRUE","","4834","16.7","19167","Sioux","{""19167"": ""99.28"", ""19119"": ""0.72""}","Sioux|Lyon","19167|19119","FALSE","FALSE","America/Chicago"
-"51248","43.20555","-95.65783","Sanborn","IA","Iowa","TRUE","","2030","9.5","19141","O'Brien","{""19141"": ""97.63"", ""19143"": ""2.37""}","O'Brien|Osceola","19141|19143","FALSE","FALSE","America/Chicago"
-"51249","43.41257","-95.73207","Sibley","IA","Iowa","TRUE","","3164","9.7","19143","Osceola","{""19143"": ""100""}","Osceola","19143","FALSE","FALSE","America/Chicago"
-"51250","43.08428","-96.2124","Sioux Center","IA","Iowa","TRUE","","8826","47.4","19167","Sioux","{""19167"": ""100""}","Sioux","19167","FALSE","FALSE","America/Chicago"
-"51301","43.15289","-95.14724","Spencer","IA","Iowa","TRUE","","12232","30.2","19041","Clay","{""19041"": ""100""}","Clay","19041","FALSE","FALSE","America/Chicago"
-"51331","43.36379","-95.12808","Arnolds Park","IA","Iowa","TRUE","","1022","234.5","19059","Dickinson","{""19059"": ""100""}","Dickinson","19059","FALSE","FALSE","America/Chicago"
-"51333","43.12798","-94.99965","Dickens","IA","Iowa","TRUE","","469","2.8","19041","Clay","{""19041"": ""100""}","Clay","19041","FALSE","FALSE","America/Chicago"
-"51334","43.4036","-94.80508","Estherville","IA","Iowa","TRUE","","6873","14.2","19063","Emmet","{""19063"": ""98.67"", ""19059"": ""1.33""}","Emmet|Dickinson","19063|19059","FALSE","FALSE","America/Chicago"
-"51338","43.20596","-95.32193","Everly","IA","Iowa","TRUE","","986","5.2","19041","Clay","{""19041"": ""95.8"", ""19059"": ""4.2""}","Clay|Dickinson","19041|19059","FALSE","FALSE","America/Chicago"
-"51341","43.01413","-95.03872","Gillett Grove","IA","Iowa","TRUE","","30","33.6","19041","Clay","{""19041"": ""100""}","Clay","19041","FALSE","FALSE","America/Chicago"
-"51342","43.24395","-94.73795","Graettinger","IA","Iowa","TRUE","","1399","6.5","19147","Palo Alto","{""19147"": ""91.75"", ""19063"": ""8.25""}","Palo Alto|Emmet","19147|19063","FALSE","FALSE","America/Chicago"
-"51343","43.0158","-95.10568","Greenville","IA","Iowa","TRUE","","372","5.7","19041","Clay","{""19041"": ""100""}","Clay","19041","FALSE","FALSE","America/Chicago"
-"51345","43.41265","-95.42922","Harris","IA","Iowa","TRUE","","426","2.9","19143","Osceola","{""19143"": ""98.26"", ""19059"": ""1.74""}","Osceola|Dickinson","19143|19059","FALSE","FALSE","America/Chicago"
-"51346","43.18233","-95.46082","Hartley","IA","Iowa","TRUE","","2302","6.1","19141","O'Brien","{""19141"": ""92.33"", ""19143"": ""4.98"", ""19041"": ""2.69""}","O'Brien|Osceola|Clay","19141|19143|19041","FALSE","FALSE","America/Chicago"
-"51347","43.42329","-95.31427","Lake Park","IA","Iowa","TRUE","","1517","6.9","19059","Dickinson","{""19059"": ""100""}","Dickinson","19059","FALSE","FALSE","America/Chicago"
-"51350","43.31097","-95.60083","Melvin","IA","Iowa","TRUE","","568","5.1","19143","Osceola","{""19143"": ""100""}","Osceola","19143","FALSE","FALSE","America/Chicago"
-"51351","43.31658","-95.18692","Milford","IA","Iowa","TRUE","","4509","16.5","19059","Dickinson","{""19059"": ""100""}","Dickinson","19059","FALSE","FALSE","America/Chicago"
-"51354","43.41211","-95.53985","Ocheyedan","IA","Iowa","TRUE","","1049","4.6","19143","Osceola","{""19143"": ""100""}","Osceola","19143","FALSE","FALSE","America/Chicago"
-"51355","43.38871","-95.13672","Okoboji","IA","Iowa","TRUE","","845","136.3","19059","Dickinson","{""19059"": ""100""}","Dickinson","19059","FALSE","FALSE","America/Chicago"
-"51357","43.06075","-95.28063","Royal","IA","Iowa","TRUE","","559","5.1","19041","Clay","{""19041"": ""100""}","Clay","19041","FALSE","FALSE","America/Chicago"
-"51358","43.13121","-94.89974","Ruthven","IA","Iowa","TRUE","","1358","7.2","19147","Palo Alto","{""19147"": ""84.5"", ""19041"": ""15.5""}","Palo Alto|Clay","19147|19041","FALSE","FALSE","America/Chicago"
-"51360","43.4425","-95.08759","Spirit Lake","IA","Iowa","TRUE","","8312","28.8","19059","Dickinson","{""19059"": ""98.84"", ""27063"": ""1.16""}","Dickinson|Jackson","19059|27063","FALSE","FALSE","America/Chicago"
-"51363","43.43359","-94.94672","Superior","IA","Iowa","TRUE","","221","205.9","19059","Dickinson","{""19059"": ""100""}","Dickinson","19059","FALSE","FALSE","America/Chicago"
-"51364","43.29958","-94.96542","Terril","IA","Iowa","TRUE","","784","4.7","19059","Dickinson","{""19059"": ""92.46"", ""19041"": ""3.77"", ""19063"": ""3.77""}","Dickinson|Clay|Emmet","19059|19041|19063","FALSE","FALSE","America/Chicago"
-"51365","43.30797","-94.73681","Wallingford","IA","Iowa","TRUE","","416","7.9","19063","Emmet","{""19063"": ""100""}","Emmet","19063","FALSE","FALSE","America/Chicago"
-"51366","42.95917","-95.00773","Webb","IA","Iowa","TRUE","","361","2.2","19041","Clay","{""19041"": ""97.36"", ""19021"": ""2.64""}","Clay|Buena Vista","19041|19021","FALSE","FALSE","America/Chicago"
-"51401","42.06615","-94.86957","Carroll","IA","Iowa","TRUE","","12164","26.8","19027","Carroll","{""19027"": ""100""}","Carroll","19027","FALSE","FALSE","America/Chicago"
-"51430","42.086","-95.02556","Arcadia","IA","Iowa","TRUE","","827","7.8","19027","Carroll","{""19027"": ""100""}","Carroll","19027","FALSE","FALSE","America/Chicago"
-"51431","42.34488","-95.35168","Arthur","IA","Iowa","TRUE","","426","4.2","19093","Ida","{""19093"": ""94.42"", ""19161"": ""5.58""}","Ida|Sac","19093|19161","FALSE","FALSE","America/Chicago"
-"51433","42.27619","-94.87114","Auburn","IA","Iowa","TRUE","","475","3.3","19161","Sac","{""19161"": ""75.15"", ""19025"": ""24.85""}","Sac|Calhoun","19161|19025","FALSE","FALSE","America/Chicago"
-"51436","42.18516","-95.01671","Breda","IA","Iowa","TRUE","","844","5.4","19027","Carroll","{""19027"": ""84.73"", ""19161"": ""8.08"", ""19047"": ""7.19""}","Carroll|Sac|Crawford","19027|19161|19047","FALSE","FALSE","America/Chicago"
-"51439","42.08473","-95.58489","Charter Oak","IA","Iowa","TRUE","","1064","4.8","19047","Crawford","{""19047"": ""100""}","Crawford","19047","FALSE","FALSE","America/Chicago"
-"51440","41.91334","-94.81294","Dedham","IA","Iowa","TRUE","","322","4.9","19027","Carroll","{""19027"": ""100""}","Carroll","19027","FALSE","FALSE","America/Chicago"
-"51441","42.12097","-95.3167","Deloit","IA","Iowa","TRUE","","377","9.4","19047","Crawford","{""19047"": ""100""}","Crawford","19047","FALSE","FALSE","America/Chicago"
-"51442","42.03038","-95.35836","Denison","IA","Iowa","TRUE","","9633","21.5","19047","Crawford","{""19047"": ""100""}","Crawford","19047","FALSE","FALSE","America/Chicago"
-"51443","42.08044","-94.7025","Glidden","IA","Iowa","TRUE","","1555","5.6","19027","Carroll","{""19027"": ""100""}","Carroll","19027","FALSE","FALSE","America/Chicago"
-"51444","42.00485","-94.97312","Halbur","IA","Iowa","TRUE","","281","665.5","19027","Carroll","{""19027"": ""100""}","Carroll","19027","FALSE","FALSE","America/Chicago"
-"51445","42.32447","-95.46452","Ida Grove","IA","Iowa","TRUE","","2693","8.2","19093","Ida","{""19093"": ""100""}","Ida","19093","FALSE","FALSE","America/Chicago"
-"51446","41.77512","-95.19191","Irwin","IA","Iowa","TRUE","","563","6.2","19165","Shelby","{""19165"": ""100""}","Shelby","19165","FALSE","FALSE","America/Chicago"
-"51447","41.7221","-95.19595","Kirkman","IA","Iowa","TRUE","","277","3.1","19165","Shelby","{""19165"": ""100""}","Shelby","19165","FALSE","FALSE","America/Chicago"
-"51448","42.20349","-95.30768","Kiron","IA","Iowa","TRUE","","514","3.6","19047","Crawford","{""19047"": ""82.49"", ""19161"": ""10.47"", ""19093"": ""7.04""}","Crawford|Sac|Ida","19047|19161|19093","FALSE","FALSE","America/Chicago"
-"51449","42.26814","-94.7345","Lake City","IA","Iowa","TRUE","","2093","9.0","19025","Calhoun","{""19025"": ""97.23"", ""19027"": ""2.77""}","Calhoun|Carroll","19025|19027","FALSE","FALSE","America/Chicago"
-"51450","42.31322","-95.03107","Lake View","IA","Iowa","TRUE","","1486","9.7","19161","Sac","{""19161"": ""100""}","Sac","19161","FALSE","FALSE","America/Chicago"
-"51451","42.18453","-94.69468","Lanesboro","IA","Iowa","TRUE","","120","126.1","19027","Carroll","{""19027"": ""100""}","Carroll","19027","FALSE","FALSE","America/Chicago"
-"51453","42.26946","-94.54712","Lohrville","IA","Iowa","TRUE","","627","2.8","19025","Calhoun","{""19025"": ""93.09"", ""19027"": ""6.91""}","Calhoun|Carroll","19025|19027","FALSE","FALSE","America/Chicago"
-"51454","41.87381","-95.20712","Manilla","IA","Iowa","TRUE","","1534","5.9","19047","Crawford","{""19047"": ""81.87"", ""19165"": ""18.13""}","Crawford|Shelby","19047|19165","FALSE","FALSE","America/Chicago"
-"51455","41.91142","-95.05564","Manning","IA","Iowa","TRUE","","2296","8.0","19027","Carroll","{""19027"": ""83.82"", ""19047"": ""10.32"", ""19009"": ""5.38"", ""19165"": ""0.48""}","Carroll|Crawford|Audubon|Shelby","19027|19047|19009|19165","FALSE","FALSE","America/Chicago"
-"51458","42.32056","-95.23589","Odebolt","IA","Iowa","TRUE","","1419","5.8","19161","Sac","{""19161"": ""100""}","Sac","19161","FALSE","FALSE","America/Chicago"
-"51459","42.04521","-94.63797","Ralston","IA","Iowa","TRUE","","59","43.5","19027","Carroll","{""19027"": ""100""}","Carroll","19027","FALSE","FALSE","America/Chicago"
-"51461","42.1698","-95.48096","Schleswig","IA","Iowa","TRUE","","1060","8.2","19047","Crawford","{""19047"": ""100""}","Crawford","19047","FALSE","FALSE","America/Chicago"
-"51462","42.01069","-94.55635","Scranton","IA","Iowa","TRUE","","1058","3.8","19073","Greene","{""19073"": ""100""}","Greene","19073","FALSE","FALSE","America/Chicago"
-"51463","41.90744","-94.91273","Templeton","IA","Iowa","TRUE","","462","6.0","19027","Carroll","{""19027"": ""100""}","Carroll","19027","FALSE","FALSE","America/Chicago"
-"51465","42.09191","-95.20201","Vail","IA","Iowa","TRUE","","895","6.3","19047","Crawford","{""19047"": ""100""}","Crawford","19047","FALSE","FALSE","America/Chicago"
-"51466","42.25635","-95.10379","Wall Lake","IA","Iowa","TRUE","","1095","8.2","19161","Sac","{""19161"": ""100""}","Sac","19161","FALSE","FALSE","America/Chicago"
-"51467","42.07189","-95.11509","Westside","IA","Iowa","TRUE","","614","3.6","19047","Crawford","{""19047"": ""84.39"", ""19027"": ""15.61""}","Crawford|Carroll","19047|19027","FALSE","FALSE","America/Chicago"
-"51501","41.22798","-95.87858","Council Bluffs","IA","Iowa","TRUE","","35426","566.6","19155","Pottawattamie","{""19155"": ""100""}","Pottawattamie","19155","FALSE","FALSE","America/Chicago"
-"51503","41.23203","-95.77811","Council Bluffs","IA","Iowa","TRUE","","36914","120.0","19155","Pottawattamie","{""19155"": ""99.47"", ""19129"": ""0.53""}","Pottawattamie|Mills","19155|19129","FALSE","FALSE","America/Chicago"
-"51510","41.28843","-95.91714","Carter Lake","IA","Iowa","TRUE","","3796","795.6","19155","Pottawattamie","{""19155"": ""100""}","Pottawattamie","19155","FALSE","FALSE","America/Chicago"
-"51520","41.96961","-95.46146","Arion","IA","Iowa","TRUE","","203","4.2","19047","Crawford","{""19047"": ""100""}","Crawford","19047","FALSE","FALSE","America/Chicago"
-"51521","41.47835","-95.34466","Avoca","IA","Iowa","TRUE","","1784","8.0","19155","Pottawattamie","{""19155"": ""92.58"", ""19165"": ""7.42""}","Pottawattamie|Shelby","19155|19165","FALSE","FALSE","America/Chicago"
-"51523","41.91325","-96.06795","Blencoe","IA","Iowa","TRUE","","380","2.9","19133","Monona","{""19133"": ""95.8"", ""19085"": ""4.2""}","Monona|Harrison","19133|19085","FALSE","FALSE","America/Chicago"
-"51525","41.23381","-95.41644","Carson","IA","Iowa","TRUE","","1115","7.1","19155","Pottawattamie","{""19155"": ""100""}","Pottawattamie","19155","FALSE","FALSE","America/Chicago"
-"51526","41.36876","-95.877","Crescent","IA","Iowa","TRUE","","1673","15.4","19155","Pottawattamie","{""19155"": ""100""}","Pottawattamie","19155","FALSE","FALSE","America/Chicago"
-"51527","41.82572","-95.34817","Defiance","IA","Iowa","TRUE","","480","4.8","19165","Shelby","{""19165"": ""91.51"", ""19047"": ""8.49""}","Shelby|Crawford","19165|19047","FALSE","FALSE","America/Chicago"
-"51528","41.92755","-95.50198","Dow City","IA","Iowa","TRUE","","741","3.9","19047","Crawford","{""19047"": ""100""}","Crawford","19047","FALSE","FALSE","America/Chicago"
-"51529","41.86033","-95.62573","Dunlap","IA","Iowa","TRUE","","1884","5.7","19085","Harrison","{""19085"": ""79.83"", ""19047"": ""11.79"", ""19165"": ""4.91"", ""19133"": ""3.47""}","Harrison|Crawford|Shelby|Monona","19085|19047|19165|19133","FALSE","FALSE","America/Chicago"
-"51530","41.78448","-95.43022","Earling","IA","Iowa","TRUE","","651","4.6","19165","Shelby","{""19165"": ""100""}","Shelby","19165","FALSE","FALSE","America/Chicago"
-"51531","41.58868","-95.08721","Elk Horn","IA","Iowa","TRUE","","762","10.3","19165","Shelby","{""19165"": ""91.03"", ""19009"": ""8.97""}","Shelby|Audubon","19165|19009","FALSE","FALSE","America/Chicago"
-"51532","41.13518","-95.11248","Elliott","IA","Iowa","TRUE","","733","5.0","19137","Montgomery","{""19137"": ""91.8"", ""19155"": ""7.07"", ""19029"": ""1.13""}","Montgomery|Pottawattamie|Cass","19137|19155|19029","FALSE","FALSE","America/Chicago"
-"51533","41.03613","-95.38042","Emerson","IA","Iowa","TRUE","","990","4.6","19129","Mills","{""19129"": ""73.52"", ""19137"": ""26.48""}","Mills|Montgomery","19129|19137","FALSE","FALSE","America/Chicago"
-"51534","41.04291","-95.71685","Glenwood","IA","Iowa","TRUE","","9470","36.4","19129","Mills","{""19129"": ""100""}","Mills","19129","FALSE","FALSE","America/Chicago"
-"51535","41.22411","-95.13004","Griswold","IA","Iowa","TRUE","","1840","5.5","19029","Cass","{""19029"": ""84.14"", ""19155"": ""15.86""}","Cass|Pottawattamie","19029|19155","FALSE","FALSE","America/Chicago"
-"51536","41.38616","-95.36077","Hancock","IA","Iowa","TRUE","","337","2.7","19155","Pottawattamie","{""19155"": ""100""}","Pottawattamie","19155","FALSE","FALSE","America/Chicago"
-"51537","41.64756","-95.29293","Harlan","IA","Iowa","TRUE","","6716","15.9","19165","Shelby","{""19165"": ""100""}","Shelby","19165","FALSE","FALSE","America/Chicago"
-"51540","41.02448","-95.49899","Hastings","IA","Iowa","TRUE","","380","2.7","19129","Mills","{""19129"": ""100""}","Mills","19129","FALSE","FALSE","America/Chicago"
-"51541","41.13446","-95.41759","Henderson","IA","Iowa","TRUE","","566","5.3","19129","Mills","{""19129"": ""87.33"", ""19155"": ""7.99"", ""19137"": ""4.68""}","Mills|Pottawattamie|Montgomery","19129|19155|19137","FALSE","FALSE","America/Chicago"
-"51542","41.43792","-95.84137","Honey Creek","IA","Iowa","TRUE","","1182","12.8","19155","Pottawattamie","{""19155"": ""100""}","Pottawattamie","19155","FALSE","FALSE","America/Chicago"
-"51543","41.65667","-95.07595","Kimballton","IA","Iowa","TRUE","","420","7.3","19009","Audubon","{""19009"": ""90.11"", ""19165"": ""9.89""}","Audubon|Shelby","19009|19165","FALSE","FALSE","America/Chicago"
-"51544","41.31053","-95.1089","Lewis","IA","Iowa","TRUE","","627","4.3","19029","Cass","{""19029"": ""93.76"", ""19155"": ""6.24""}","Cass|Pottawattamie","19029|19155","FALSE","FALSE","America/Chicago"
-"51545","41.84029","-96.02555","Little Sioux","IA","Iowa","TRUE","","300","2.6","19085","Harrison","{""19085"": ""93.65"", ""19133"": ""6.35""}","Harrison|Monona","19085|19133","FALSE","FALSE","America/Chicago"
-"51546","41.64245","-95.77515","Logan","IA","Iowa","TRUE","","2830","9.7","19085","Harrison","{""19085"": ""100""}","Harrison","19085","FALSE","FALSE","America/Chicago"
-"51548","41.31795","-95.63696","McClelland","IA","Iowa","TRUE","","515","8.0","19155","Pottawattamie","{""19155"": ""100""}","Pottawattamie","19155","FALSE","FALSE","America/Chicago"
-"51549","41.18287","-95.45322","Macedonia","IA","Iowa","TRUE","","576","6.8","19155","Pottawattamie","{""19155"": ""100""}","Pottawattamie","19155","FALSE","FALSE","America/Chicago"
-"51550","41.69215","-95.87416","Magnolia","IA","Iowa","TRUE","","158","108.5","19085","Harrison","{""19085"": ""100""}","Harrison","19085","FALSE","FALSE","America/Chicago"
-"51551","40.99208","-95.58941","Malvern","IA","Iowa","TRUE","","1610","7.7","19129","Mills","{""19129"": ""100""}","Mills","19129","FALSE","FALSE","America/Chicago"
-"51552","41.49075","-95.11349","Marne","IA","Iowa","TRUE","","265","2.9","19029","Cass","{""19029"": ""78.41"", ""19165"": ""21.59""}","Cass|Shelby","19029|19165","FALSE","FALSE","America/Chicago"
-"51553","41.42089","-95.54653","Minden","IA","Iowa","TRUE","","1116","9.4","19155","Pottawattamie","{""19155"": ""100""}","Pottawattamie","19155","FALSE","FALSE","America/Chicago"
-"51554","41.14738","-95.68136","Mineola","IA","Iowa","TRUE","","239","35.8","19129","Mills","{""19129"": ""100""}","Mills","19129","FALSE","FALSE","America/Chicago"
-"51555","41.55841","-95.91921","Missouri Valley","IA","Iowa","TRUE","","4877","12.1","19085","Harrison","{""19085"": ""94.09"", ""19155"": ""5.91""}","Harrison|Pottawattamie","19085|19155","FALSE","FALSE","America/Chicago"
-"51556","41.64287","-96.03096","Modale","IA","Iowa","TRUE","","465","4.1","19085","Harrison","{""19085"": ""100""}","Harrison","19085","FALSE","FALSE","America/Chicago"
-"51557","41.73047","-95.9926","Mondamin","IA","Iowa","TRUE","","853","4.7","19085","Harrison","{""19085"": ""95.42"", ""31021"": ""4.58""}","Harrison|Burt","19085|31021","FALSE","FALSE","America/Chicago"
-"51558","41.9049","-95.86228","Moorhead","IA","Iowa","TRUE","","436","2.0","19133","Monona","{""19133"": ""88.75"", ""19085"": ""11.25""}","Monona|Harrison","19133|19085","FALSE","FALSE","America/Chicago"
-"51559","41.46344","-95.66368","Neola","IA","Iowa","TRUE","","1765","8.0","19155","Pottawattamie","{""19155"": ""95.02"", ""19085"": ""4.98""}","Pottawattamie|Harrison","19155|19085","FALSE","FALSE","America/Chicago"
-"51560","41.31712","-95.40166","Oakland","IA","Iowa","TRUE","","2049","8.1","19155","Pottawattamie","{""19155"": ""100""}","Pottawattamie","19155","FALSE","FALSE","America/Chicago"
-"51561","41.00927","-95.80869","Pacific Junction","IA","Iowa","TRUE","","1184","7.6","19129","Mills","{""19129"": ""100""}","Mills","19129","FALSE","FALSE","America/Chicago"
-"51562","41.7257","-95.50274","Panama","IA","Iowa","TRUE","","481","5.5","19165","Shelby","{""19165"": ""100""}","Shelby","19165","FALSE","FALSE","America/Chicago"
-"51563","41.57494","-95.59363","Persia","IA","Iowa","TRUE","","697","4.9","19085","Harrison","{""19085"": ""100""}","Harrison","19085","FALSE","FALSE","America/Chicago"
-"51564","41.81606","-95.91198","Pisgah","IA","Iowa","TRUE","","388","3.8","19085","Harrison","{""19085"": ""100""}","Harrison","19085","FALSE","FALSE","America/Chicago"
-"51565","41.64473","-95.5207","Portsmouth","IA","Iowa","TRUE","","403","3.2","19165","Shelby","{""19165"": ""87.23"", ""19085"": ""12.77""}","Shelby|Harrison","19165|19085","FALSE","FALSE","America/Chicago"
-"51566","41.0163","-95.2313","Red Oak","IA","Iowa","TRUE","","6380","14.0","19137","Montgomery","{""19137"": ""98.86"", ""19145"": ""0.95"", ""19155"": ""0.18""}","Montgomery|Page|Pottawattamie","19137|19145|19155","FALSE","FALSE","America/Chicago"
-"51570","41.52347","-95.45765","Shelby","IA","Iowa","TRUE","","948","5.7","19165","Shelby","{""19165"": ""78.44"", ""19155"": ""13.09"", ""19085"": ""8.47""}","Shelby|Pottawattamie|Harrison","19165|19155|19085","FALSE","FALSE","America/Chicago"
-"51571","41.14531","-95.60924","Silver City","IA","Iowa","TRUE","","610","5.0","19129","Mills","{""19129"": ""75.96"", ""19155"": ""24.04""}","Mills|Pottawattamie","19129|19155","FALSE","FALSE","America/Chicago"
-"51572","41.99123","-95.78753","Soldier","IA","Iowa","TRUE","","474","4.2","19133","Monona","{""19133"": ""100""}","Monona","19133","FALSE","FALSE","America/Chicago"
-"51573","40.97948","-95.09532","Stanton","IA","Iowa","TRUE","","1096","7.0","19137","Montgomery","{""19137"": ""100""}","Montgomery","19137","FALSE","FALSE","America/Chicago"
-"51575","41.24193","-95.60305","Treynor","IA","Iowa","TRUE","","1521","12.0","19155","Pottawattamie","{""19155"": ""100""}","Pottawattamie","19155","FALSE","FALSE","America/Chicago"
-"51576","41.37728","-95.70979","Underwood","IA","Iowa","TRUE","","1928","14.8","19155","Pottawattamie","{""19155"": ""100""}","Pottawattamie","19155","FALSE","FALSE","America/Chicago"
-"51577","41.46344","-95.20487","Walnut","IA","Iowa","TRUE","","1138","5.5","19155","Pottawattamie","{""19155"": ""87.08"", ""19165"": ""12.92""}","Pottawattamie|Shelby","19155|19165","FALSE","FALSE","America/Chicago"
-"51578","41.71937","-95.39456","Westphalia","IA","Iowa","TRUE","","67","693.0","19165","Shelby","{""19165"": ""100""}","Shelby","19165","FALSE","FALSE","America/Chicago"
-"51579","41.7467","-95.70341","Woodbine","IA","Iowa","TRUE","","2217","7.4","19085","Harrison","{""19085"": ""100""}","Harrison","19085","FALSE","FALSE","America/Chicago"
-"51601","40.72616","-95.34978","Shenandoah","IA","Iowa","TRUE","","5684","20.6","19145","Page","{""19145"": ""95.88"", ""19071"": ""4.12""}","Page|Fremont","19145|19071","FALSE","FALSE","America/Chicago"
-"51630","40.60099","-95.19132","Blanchard","IA","Iowa","TRUE","","201","3.1","19145","Page","{""19145"": ""100""}","Page","19145","FALSE","FALSE","America/Chicago"
-"51631","40.60217","-95.00781","Braddyville","IA","Iowa","TRUE","","290","3.0","19145","Page","{""19145"": ""100""}","Page","19145","FALSE","FALSE","America/Chicago"
-"51632","40.74694","-95.04956","Clarinda","IA","Iowa","TRUE","","7006","13.0","19145","Page","{""19145"": ""99.89"", ""19173"": ""0.11""}","Page|Taylor","19145|19173","FALSE","FALSE","America/Chicago"
-"51636","40.66725","-95.23255","Coin","IA","Iowa","TRUE","","447","3.1","19145","Page","{""19145"": ""100""}","Page","19145","FALSE","FALSE","America/Chicago"
-"51637","40.6249","-95.11565","College Springs","IA","Iowa","TRUE","","246","58.8","19145","Page","{""19145"": ""100""}","Page","19145","FALSE","FALSE","America/Chicago"
-"51638","40.84261","-95.27171","Essex","IA","Iowa","TRUE","","1154","5.2","19145","Page","{""19145"": ""99.46"", ""19137"": ""0.54""}","Page|Montgomery","19145|19137","FALSE","FALSE","America/Chicago"
-"51639","40.71982","-95.47485","Farragut","IA","Iowa","TRUE","","733","3.9","19071","Fremont","{""19071"": ""100""}","Fremont","19071","FALSE","FALSE","America/Chicago"
-"51640","40.6229","-95.65642","Hamburg","IA","Iowa","TRUE","","1569","5.1","19071","Fremont","{""19071"": ""99.37"", ""29005"": ""0.63""}","Fremont|Atchison","19071|29005","FALSE","FALSE","America/Chicago"
-"51645","40.88192","-95.4326","Imogene","IA","Iowa","TRUE","","238","2.2","19071","Fremont","{""19071"": ""71.37"", ""19129"": ""28.63""}","Fremont|Mills","19071|19129","FALSE","FALSE","America/Chicago"
-"51646","40.74651","-94.87583","New Market","IA","Iowa","TRUE","","860","5.3","19173","Taylor","{""19173"": ""100""}","Taylor","19173","FALSE","FALSE","America/Chicago"
-"51647","40.60885","-95.31974","Northboro","IA","Iowa","TRUE","","166","3.3","19145","Page","{""19145"": ""100""}","Page","19145","FALSE","FALSE","America/Chicago"
-"51648","40.73376","-95.80879","Percival","IA","Iowa","TRUE","","244","1.9","19071","Fremont","{""19071"": ""100""}","Fremont","19071","FALSE","FALSE","America/Chicago"
-"51649","40.8526","-95.53615","Randolph","IA","Iowa","TRUE","","343","3.2","19071","Fremont","{""19071"": ""100""}","Fremont","19071","FALSE","FALSE","America/Chicago"
-"51650","40.66665","-95.55374","Riverton","IA","Iowa","TRUE","","284","3.8","19071","Fremont","{""19071"": ""100""}","Fremont","19071","FALSE","FALSE","America/Chicago"
-"51652","40.77031","-95.62757","Sidney","IA","Iowa","TRUE","","1636","8.2","19071","Fremont","{""19071"": ""100""}","Fremont","19071","FALSE","FALSE","America/Chicago"
-"51653","40.88427","-95.67215","Tabor","IA","Iowa","TRUE","","1561","17.5","19071","Fremont","{""19071"": ""87.89"", ""19129"": ""12.11""}","Fremont|Mills","19071|19129","FALSE","FALSE","America/Chicago"
-"51654","40.83125","-95.76454","Thurman","IA","Iowa","TRUE","","355","2.6","19071","Fremont","{""19071"": ""100""}","Fremont","19071","FALSE","FALSE","America/Chicago"
-"51656","40.73471","-95.1563","Yorktown","IA","Iowa","TRUE","","37","84.5","19145","Page","{""19145"": ""100""}","Page","19145","FALSE","FALSE","America/Chicago"
-"52001","42.54498","-90.6938","Dubuque","IA","Iowa","TRUE","","43328","639.2","19061","Dubuque","{""19061"": ""100""}","Dubuque","19061","FALSE","FALSE","America/Chicago"
-"52002","42.52478","-90.77322","Dubuque","IA","Iowa","TRUE","","17170","229.9","19061","Dubuque","{""19061"": ""100""}","Dubuque","19061","FALSE","FALSE","America/Chicago"
-"52003","42.43441","-90.67522","Dubuque","IA","Iowa","TRUE","","13453","92.1","19061","Dubuque","{""19061"": ""100""}","Dubuque","19061","FALSE","FALSE","America/Chicago"
-"52030","42.15329","-90.59188","Andrew","IA","Iowa","TRUE","","456","664.6","19097","Jackson","{""19097"": ""100""}","Jackson","19097","FALSE","FALSE","America/Chicago"
-"52031","42.24884","-90.4886","Bellevue","IA","Iowa","TRUE","","5102","11.8","19097","Jackson","{""19097"": ""90.9"", ""19061"": ""9.1""}","Jackson|Dubuque","19097|19061","FALSE","FALSE","America/Chicago"
-"52032","42.29108","-90.84194","Bernard","IA","Iowa","TRUE","","1510","5.5","19061","Dubuque","{""19061"": ""50.14"", ""19097"": ""45.74"", ""19105"": ""4.12""}","Dubuque|Jackson|Jones","19061|19097|19105","FALSE","FALSE","America/Chicago"
-"52033","42.27904","-91.00122","Cascade","IA","Iowa","TRUE","","3199","12.7","19061","Dubuque","{""19061"": ""70.21"", ""19105"": ""29.79""}","Dubuque|Jones","19061|19105","FALSE","FALSE","America/Chicago"
-"52035","42.66072","-91.19094","Colesburg","IA","Iowa","TRUE","","892","6.4","19055","Delaware","{""19055"": ""58.91"", ""19043"": ""41.09""}","Delaware|Clayton","19055|19043","FALSE","FALSE","America/Chicago"
-"52037","41.96713","-90.62862","Delmar","IA","Iowa","TRUE","","993","5.6","19045","Clinton","{""19045"": ""98.45"", ""19097"": ""1.55""}","Clinton|Jackson","19045|19097","FALSE","FALSE","America/Chicago"
-"52038","42.58561","-91.55823","Dundee","IA","Iowa","TRUE","","636","8.4","19055","Delaware","{""19055"": ""100""}","Delaware","19055","FALSE","FALSE","America/Chicago"
-"52039","42.53921","-90.86095","Durango","IA","Iowa","TRUE","","850","9.3","19061","Dubuque","{""19061"": ""100""}","Dubuque","19061","FALSE","FALSE","America/Chicago"
-"52040","42.50814","-91.13598","Dyersville","IA","Iowa","TRUE","","5776","36.7","19061","Dubuque","{""19061"": ""84.06"", ""19055"": ""15.94""}","Dubuque|Delaware","19061|19055","FALSE","FALSE","America/Chicago"
-"52041","42.50616","-91.25694","Earlville","IA","Iowa","TRUE","","1778","11.5","19055","Delaware","{""19055"": ""100""}","Delaware","19055","FALSE","FALSE","America/Chicago"
-"52042","42.68118","-91.36804","Edgewood","IA","Iowa","TRUE","","1561","9.7","19043","Clayton","{""19043"": ""61.78"", ""19055"": ""38.22""}","Clayton|Delaware","19043|19055","FALSE","FALSE","America/Chicago"
-"52043","42.84522","-91.41923","Elkader","IA","Iowa","TRUE","","2269","8.8","19043","Clayton","{""19043"": ""100""}","Clayton","19043","FALSE","FALSE","America/Chicago"
-"52044","42.76904","-91.32355","Elkport","IA","Iowa","TRUE","","141","4.5","19043","Clayton","{""19043"": ""100""}","Clayton","19043","FALSE","FALSE","America/Chicago"
-"52045","42.46088","-90.93757","Epworth","IA","Iowa","TRUE","","2499","20.2","19061","Dubuque","{""19061"": ""100""}","Dubuque","19061","FALSE","FALSE","America/Chicago"
-"52046","42.43833","-91.01309","Farley","IA","Iowa","TRUE","","2402","20.2","19061","Dubuque","{""19061"": ""100""}","Dubuque","19061","FALSE","FALSE","America/Chicago"
-"52047","42.96553","-91.34992","Farmersburg","IA","Iowa","TRUE","","755","8.5","19043","Clayton","{""19043"": ""100""}","Clayton","19043","FALSE","FALSE","America/Chicago"
-"52048","42.74216","-91.25724","Garber","IA","Iowa","TRUE","","402","4.7","19043","Clayton","{""19043"": ""100""}","Clayton","19043","FALSE","FALSE","America/Chicago"
-"52049","42.88544","-91.20424","Garnavillo","IA","Iowa","TRUE","","1357","7.6","19043","Clayton","{""19043"": ""100""}","Clayton","19043","FALSE","FALSE","America/Chicago"
-"52050","42.60481","-91.33469","Greeley","IA","Iowa","TRUE","","449","5.3","19055","Delaware","{""19055"": ""94.56"", ""19043"": ""5.44""}","Delaware|Clayton","19055|19043","FALSE","FALSE","America/Chicago"
-"52052","42.74045","-91.11954","Guttenberg","IA","Iowa","TRUE","","3068","13.3","19043","Clayton","{""19043"": ""95.15"", ""19061"": ""4.85""}","Clayton|Dubuque","19043|19061","FALSE","FALSE","America/Chicago"
-"52053","42.61163","-90.96505","Holy Cross","IA","Iowa","TRUE","","982","6.4","19061","Dubuque","{""19061"": ""81.94"", ""19043"": ""18.06""}","Dubuque|Clayton","19061|19043","FALSE","FALSE","America/Chicago"
-"52054","42.30542","-90.6271","La Motte","IA","Iowa","TRUE","","848","6.1","19097","Jackson","{""19097"": ""89.57"", ""19061"": ""10.43""}","Jackson|Dubuque","19097|19061","FALSE","FALSE","America/Chicago"
-"52057","42.48979","-91.45472","Manchester","IA","Iowa","TRUE","","7826","21.6","19055","Delaware","{""19055"": ""100""}","Delaware","19055","FALSE","FALSE","America/Chicago"
-"52060","42.10336","-90.68142","Maquoketa","IA","Iowa","TRUE","","8403","20.6","19097","Jackson","{""19097"": ""98.2"", ""19045"": ""1.8""}","Jackson|Clinton","19097|19045","FALSE","FALSE","America/Chicago"
-"52064","42.08862","-90.31241","Miles","IA","Iowa","TRUE","","924","8.7","19097","Jackson","{""19097"": ""92.09"", ""19045"": ""7.91""}","Jackson|Clinton","19097|19045","FALSE","FALSE","America/Chicago"
-"52065","42.58298","-91.10622","New Vienna","IA","Iowa","TRUE","","1111","8.5","19061","Dubuque","{""19061"": ""87.52"", ""19055"": ""12.48""}","Dubuque|Delaware","19061|19055","FALSE","FALSE","America/Chicago"
-"52066","42.67839","-90.95184","North Buena Vista","IA","Iowa","TRUE","","53","77.7","19043","Clayton","{""19043"": ""100""}","Clayton","19043","FALSE","FALSE","America/Chicago"
-"52068","42.42289","-90.81718","Peosta","IA","Iowa","TRUE","","4650","38.6","19061","Dubuque","{""19061"": ""100""}","Dubuque","19061","FALSE","FALSE","America/Chicago"
-"52069","42.05839","-90.43244","Preston","IA","Iowa","TRUE","","1476","11.1","19097","Jackson","{""19097"": ""93.16"", ""19045"": ""6.84""}","Jackson|Clinton","19097|19045","FALSE","FALSE","America/Chicago"
-"52070","42.0816","-90.2185","Sabula","IA","Iowa","TRUE","","1008","7.8","19097","Jackson","{""19097"": ""89.1"", ""19045"": ""10.9""}","Jackson|Clinton","19097|19045","FALSE","FALSE","America/Chicago"
-"52072","42.92198","-91.3778","Saint Olaf","IA","Iowa","TRUE","","309","3.5","19043","Clayton","{""19043"": ""100""}","Clayton","19043","FALSE","FALSE","America/Chicago"
-"52073","42.62514","-90.82169","Sherrill","IA","Iowa","TRUE","","1378","10.8","19061","Dubuque","{""19061"": ""97.88"", ""19043"": ""2.12""}","Dubuque|Clayton","19061|19043","FALSE","FALSE","America/Chicago"
-"52074","42.10943","-90.47243","Spragueville","IA","Iowa","TRUE","","394","4.9","19097","Jackson","{""19097"": ""100""}","Jackson","19097","FALSE","FALSE","America/Chicago"
-"52076","42.69982","-91.51016","Strawberry Point","IA","Iowa","TRUE","","2302","9.1","19043","Clayton","{""19043"": ""94.12"", ""19055"": ""5.62"", ""19065"": ""0.26""}","Clayton|Delaware|Fayette","19043|19055|19065","FALSE","FALSE","America/Chicago"
-"52077","42.8225","-91.55697","Volga","IA","Iowa","TRUE","","353","4.2","19043","Clayton","{""19043"": ""100""}","Clayton","19043","FALSE","FALSE","America/Chicago"
-"52078","42.39466","-91.11604","Worthington","IA","Iowa","TRUE","","715","6.7","19061","Dubuque","{""19061"": ""74.51"", ""19055"": ""25.49""}","Dubuque|Delaware","19061|19055","FALSE","FALSE","America/Chicago"
-"52079","42.28552","-90.71624","Zwingle","IA","Iowa","TRUE","","729","4.7","19097","Jackson","{""19097"": ""58.31"", ""19061"": ""41.69""}","Jackson|Dubuque","19097|19061","FALSE","FALSE","America/Chicago"
-"52101","43.35368","-91.76474","Decorah","IA","Iowa","TRUE","","13531","16.8","19191","Winneshiek","{""19191"": ""99.72"", ""19005"": ""0.28""}","Winneshiek|Allamakee","19191|19005","FALSE","FALSE","America/Chicago"
-"52132","43.20618","-91.92323","Calmar","IA","Iowa","TRUE","","1830","11.6","19191","Winneshiek","{""19191"": ""98.71"", ""19089"": ""1.29""}","Winneshiek|Howard","19191|19089","FALSE","FALSE","America/Chicago"
-"52133","43.10742","-91.66625","Castalia","IA","Iowa","TRUE","","778","6.6","19191","Winneshiek","{""19191"": ""85.84"", ""19065"": ""14.16""}","Winneshiek|Fayette","19191|19065","FALSE","FALSE","America/Chicago"
-"52134","43.46957","-92.41122","Chester","IA","Iowa","TRUE","","315","4.1","19089","Howard","{""19089"": ""100""}","Howard","19089","FALSE","FALSE","America/Chicago"
-"52135","43.01941","-91.66822","Clermont","IA","Iowa","TRUE","","667","9.9","19065","Fayette","{""19065"": ""100""}","Fayette","19065","FALSE","FALSE","America/Chicago"
-"52136","43.37403","-92.1112","Cresco","IA","Iowa","TRUE","","5722","10.4","19089","Howard","{""19089"": ""90.13"", ""19191"": ""9.87""}","Howard|Winneshiek","19089|19191","FALSE","FALSE","America/Chicago"
-"52140","43.44338","-91.53666","Dorchester","IA","Iowa","TRUE","","597","3.0","19005","Allamakee","{""19005"": ""86.28"", ""19191"": ""13.72""}","Allamakee|Winneshiek","19005|19191","FALSE","FALSE","America/Chicago"
-"52141","42.93934","-91.63086","Elgin","IA","Iowa","TRUE","","1196","5.5","19065","Fayette","{""19065"": ""79.86"", ""19043"": ""20.14""}","Fayette|Clayton","19065|19043","FALSE","FALSE","America/Chicago"
-"52142","42.82875","-91.7916","Fayette","IA","Iowa","TRUE","","1743","9.2","19065","Fayette","{""19065"": ""100""}","Fayette","19065","FALSE","FALSE","America/Chicago"
-"52144","43.13915","-91.96241","Fort Atkinson","IA","Iowa","TRUE","","1167","6.0","19191","Winneshiek","{""19191"": ""96.27"", ""19065"": ""3.73""}","Winneshiek|Fayette","19191|19065","FALSE","FALSE","America/Chicago"
-"52146","43.18966","-91.19789","Harpers Ferry","IA","Iowa","TRUE","","877","4.3","19005","Allamakee","{""19005"": ""100""}","Allamakee","19005","FALSE","FALSE","America/Chicago"
-"52147","42.95107","-91.96285","Hawkeye","IA","Iowa","TRUE","","1061","5.6","19065","Fayette","{""19065"": ""100""}","Fayette","19065","FALSE","FALSE","America/Chicago"
-"52151","43.3439","-91.27788","Lansing","IA","Iowa","TRUE","","1849","5.9","19005","Allamakee","{""19005"": ""100""}","Allamakee","19005","FALSE","FALSE","America/Chicago"
-"52154","43.12258","-92.16531","Lawler","IA","Iowa","TRUE","","842","4.4","19037","Chickasaw","{""19037"": ""98.09"", ""19089"": ""1.91""}","Chickasaw|Howard","19037|19089","FALSE","FALSE","America/Chicago"
-"52155","43.41479","-92.29668","Lime Springs","IA","Iowa","TRUE","","1340","4.9","19089","Howard","{""19089"": ""100""}","Howard","19089","FALSE","FALSE","America/Chicago"
-"52156","43.05254","-91.46234","Luana","IA","Iowa","TRUE","","517","4.7","19043","Clayton","{""19043"": ""84.67"", ""19005"": ""15.33""}","Clayton|Allamakee","19043|19005","FALSE","FALSE","America/Chicago"
-"52157","43.01876","-91.23439","McGregor","IA","Iowa","TRUE","","1692","11.6","19043","Clayton","{""19043"": ""100""}","Clayton","19043","FALSE","FALSE","America/Chicago"
-"52158","43.04387","-91.18663","Marquette","IA","Iowa","TRUE","","257","84.6","19043","Clayton","{""19043"": ""100""}","Clayton","19043","FALSE","FALSE","America/Chicago"
-"52159","43.07794","-91.35866","Monona","IA","Iowa","TRUE","","2295","11.6","19043","Clayton","{""19043"": ""83.86"", ""19005"": ""16.14""}","Clayton|Allamakee","19043|19005","FALSE","FALSE","America/Chicago"
-"52160","43.46599","-91.36386","New Albin","IA","Iowa","TRUE","","860","8.3","19005","Allamakee","{""19005"": ""100""}","Allamakee","19005","FALSE","FALSE","America/Chicago"
-"52161","43.12957","-91.75713","Ossian","IA","Iowa","TRUE","","1317","9.4","19191","Winneshiek","{""19191"": ""94.68"", ""19065"": ""5.32""}","Winneshiek|Fayette","19191|19065","FALSE","FALSE","America/Chicago"
-"52162","43.10757","-91.55162","Postville","IA","Iowa","TRUE","","3669","14.2","19005","Allamakee","{""19005"": ""75.59"", ""19043"": ""18.39"", ""19191"": ""5.24"", ""19065"": ""0.79""}","Allamakee|Clayton|Winneshiek|Fayette","19005|19043|19191|19065","FALSE","FALSE","America/Chicago"
-"52163","43.21975","-92.10312","Protivin","IA","Iowa","TRUE","","363","78.9","19089","Howard","{""19089"": ""100""}","Howard","19089","FALSE","FALSE","America/Chicago"
-"52164","42.8502","-91.89511","Randalia","IA","Iowa","TRUE","","335","5.1","19065","Fayette","{""19065"": ""100""}","Fayette","19065","FALSE","FALSE","America/Chicago"
-"52165","43.30679","-91.98342","Ridgeway","IA","Iowa","TRUE","","654","3.8","19191","Winneshiek","{""19191"": ""100""}","Winneshiek","19191","FALSE","FALSE","America/Chicago"
-"52166","43.06592","-91.93343","Saint Lucas","IA","Iowa","TRUE","","118","239.0","19065","Fayette","{""19065"": ""100""}","Fayette","19065","FALSE","FALSE","America/Chicago"
-"52168","43.20545","-91.95232","Spillville","IA","Iowa","TRUE","","254","609.9","19191","Winneshiek","{""19191"": ""100""}","Winneshiek","19191","FALSE","FALSE","America/Chicago"
-"52169","42.85318","-91.66429","Wadena","IA","Iowa","TRUE","","315","4.1","19065","Fayette","{""19065"": ""100""}","Fayette","19065","FALSE","FALSE","America/Chicago"
-"52170","43.22394","-91.30523","Waterville","IA","Iowa","TRUE","","509","4.2","19005","Allamakee","{""19005"": ""100""}","Allamakee","19005","FALSE","FALSE","America/Chicago"
-"52171","43.07364","-92.051","Waucoma","IA","Iowa","TRUE","","953","4.6","19065","Fayette","{""19065"": ""69.66"", ""19037"": ""20.8"", ""19191"": ""9.54""}","Fayette|Chickasaw|Winneshiek","19065|19037|19191","FALSE","FALSE","America/Chicago"
-"52172","43.27079","-91.48449","Waukon","IA","Iowa","TRUE","","6128","14.9","19005","Allamakee","{""19005"": ""98.83"", ""19191"": ""1.17""}","Allamakee|Winneshiek","19005|19191","FALSE","FALSE","America/Chicago"
-"52175","42.99396","-91.82561","West Union","IA","Iowa","TRUE","","3535","15.7","19065","Fayette","{""19065"": ""100""}","Fayette","19065","FALSE","FALSE","America/Chicago"
-"52201","41.33233","-91.54614","Ainsworth","IA","Iowa","TRUE","","1464","8.5","19183","Washington","{""19183"": ""100""}","Washington","19183","FALSE","FALSE","America/Chicago"
-"52202","42.15775","-91.63781","Alburnett","IA","Iowa","TRUE","","1056","16.2","19113","Linn","{""19113"": ""100""}","Linn","19113","FALSE","FALSE","America/Chicago"
-"52203","41.81227","-91.88652","Amana","IA","Iowa","TRUE","","2214","18.7","19095","Iowa","{""19095"": ""92.34"", ""19103"": ""7.66""}","Iowa|Johnson","19095|19103","FALSE","FALSE","America/Chicago"
-"52205","42.11853","-91.28537","Anamosa","IA","Iowa","TRUE","","8855","28.7","19105","Jones","{""19105"": ""98.24"", ""19113"": ""1.76""}","Jones|Linn","19105|19113","FALSE","FALSE","America/Chicago"
-"52206","41.99159","-91.88547","Atkins","IA","Iowa","TRUE","","2614","35.7","19011","Benton","{""19011"": ""100""}","Benton","19011","FALSE","FALSE","America/Chicago"
-"52207","42.09508","-90.83168","Baldwin","IA","Iowa","TRUE","","472","4.6","19097","Jackson","{""19097"": ""90.86"", ""19045"": ""9.14""}","Jackson|Clinton","19097|19045","FALSE","FALSE","America/Chicago"
-"52208","41.88283","-92.25768","Belle Plaine","IA","Iowa","TRUE","","3102","20.6","19011","Benton","{""19011"": ""92.58"", ""19095"": ""5.33"", ""19171"": ""1.52"", ""19157"": ""0.57""}","Benton|Iowa|Tama|Poweshiek","19011|19095|19171|19157","FALSE","FALSE","America/Chicago"
-"52209","41.9067","-92.0994","Blairstown","IA","Iowa","TRUE","","1100","11.6","19011","Benton","{""19011"": ""100""}","Benton","19011","FALSE","FALSE","America/Chicago"
-"52210","42.33982","-92.00458","Brandon","IA","Iowa","TRUE","","726","8.0","19019","Buchanan","{""19019"": ""100""}","Buchanan","19019","FALSE","FALSE","America/Chicago"
-"52211","41.76038","-92.44768","Brooklyn","IA","Iowa","TRUE","","2628","11.1","19157","Poweshiek","{""19157"": ""100""}","Poweshiek","19157","FALSE","FALSE","America/Chicago"
-"52212","42.10885","-91.08569","Center Junction","IA","Iowa","TRUE","","237","3.9","19105","Jones","{""19105"": ""100""}","Jones","19105","FALSE","FALSE","America/Chicago"
-"52213","42.19785","-91.77249","Center Point","IA","Iowa","TRUE","","4021","20.8","19113","Linn","{""19113"": ""88.41"", ""19011"": ""11.59""}","Linn|Benton","19113|19011","FALSE","FALSE","America/Chicago"
-"52214","42.19095","-91.50686","Central City","IA","Iowa","TRUE","","3320","13.6","19113","Linn","{""19113"": ""100""}","Linn","19113","FALSE","FALSE","America/Chicago"
-"52215","41.90871","-92.39557","Chelsea","IA","Iowa","TRUE","","737","3.3","19171","Tama","{""19171"": ""88.49"", ""19157"": ""11.51""}","Tama|Poweshiek","19171|19157","FALSE","FALSE","America/Chicago"
-"52216","41.88701","-91.04235","Clarence","IA","Iowa","TRUE","","1224","8.3","19031","Cedar","{""19031"": ""98.04"", ""19105"": ""1.96""}","Cedar|Jones","19031|19105","FALSE","FALSE","America/Chicago"
-"52217","42.07994","-92.40795","Clutier","IA","Iowa","TRUE","","572","3.8","19171","Tama","{""19171"": ""100""}","Tama","19171","FALSE","FALSE","America/Chicago"
-"52218","42.2925","-91.53606","Coggon","IA","Iowa","TRUE","","2049","11.0","19113","Linn","{""19113"": ""83.33"", ""19019"": ""8.45"", ""19055"": ""8.22""}","Linn|Buchanan|Delaware","19113|19019|19055","FALSE","FALSE","America/Chicago"
-"52219","42.23776","-91.42586","Prairieburg","IA","Iowa","TRUE","","176","147.4","19113","Linn","{""19113"": ""100""}","Linn","19113","FALSE","FALSE","America/Chicago"
-"52220","41.72826","-91.99844","Conroy","IA","Iowa","TRUE","","268","224.4","19095","Iowa","{""19095"": ""100""}","Iowa","19095","FALSE","FALSE","America/Chicago"
-"52221","41.64197","-92.33228","Guernsey","IA","Iowa","TRUE","","245","4.6","19157","Poweshiek","{""19157"": ""89.14"", ""19095"": ""10.86""}","Poweshiek|Iowa","19157|19095","FALSE","FALSE","America/Chicago"
-"52222","41.57307","-92.34078","Deep River","IA","Iowa","TRUE","","502","2.4","19157","Poweshiek","{""19157"": ""82.93"", ""19095"": ""17.07""}","Poweshiek|Iowa","19157|19095","FALSE","FALSE","America/Chicago"
-"52223","42.41326","-91.32424","Delhi","IA","Iowa","TRUE","","1017","8.1","19055","Delaware","{""19055"": ""100""}","Delaware","19055","FALSE","FALSE","America/Chicago"
-"52224","42.16565","-92.2996","Dysart","IA","Iowa","TRUE","","1974","7.7","19171","Tama","{""19171"": ""85.86"", ""19011"": ""14.14""}","Tama|Benton","19171|19011","FALSE","FALSE","America/Chicago"
-"52225","42.01081","-92.32687","Elberon","IA","Iowa","TRUE","","290","3.2","19171","Tama","{""19171"": ""83.89"", ""19011"": ""16.11""}","Tama|Benton","19171|19011","FALSE","FALSE","America/Chicago"
-"52227","41.90006","-91.56278","Ely","IA","Iowa","TRUE","","3021","40.6","19113","Linn","{""19113"": ""100""}","Linn","19113","FALSE","FALSE","America/Chicago"
-"52228","41.90254","-91.79151","Fairfax","IA","Iowa","TRUE","","3194","33.0","19113","Linn","{""19113"": ""94.73"", ""19011"": ""2.99"", ""19103"": ""2.27""}","Linn|Benton|Johnson","19113|19011|19103","FALSE","FALSE","America/Chicago"
-"52229","42.14562","-92.16776","Garrison","IA","Iowa","TRUE","","822","6.5","19011","Benton","{""19011"": ""100""}","Benton","19011","FALSE","FALSE","America/Chicago"
-"52231","41.36249","-92.05636","Harper","IA","Iowa","TRUE","","214","2.5","19107","Keokuk","{""19107"": ""100""}","Keokuk","19107","FALSE","FALSE","America/Chicago"
-"52232","41.80266","-92.33595","Hartwick","IA","Iowa","TRUE","","170","3.6","19157","Poweshiek","{""19157"": ""100""}","Poweshiek","19157","FALSE","FALSE","America/Chicago"
-"52233","42.04674","-91.68694","Hiawatha","IA","Iowa","TRUE","","7139","784.9","19113","Linn","{""19113"": ""100""}","Linn","19113","FALSE","FALSE","America/Chicago"
-"52235","41.57221","-91.53201","Hills","IA","Iowa","TRUE","","740","150.6","19103","Johnson","{""19103"": ""100""}","Johnson","19103","FALSE","FALSE","America/Chicago"
-"52236","41.73279","-91.8761","Homestead","IA","Iowa","TRUE","","723","9.7","19095","Iowa","{""19095"": ""100""}","Iowa","19095","FALSE","FALSE","America/Chicago"
-"52237","42.34467","-91.24829","Hopkinton","IA","Iowa","TRUE","","1622","7.7","19055","Delaware","{""19055"": ""99.01"", ""19061"": ""0.99""}","Delaware|Dubuque","19055|19061","FALSE","FALSE","America/Chicago"
-"52240","41.63545","-91.50162","Iowa City","IA","Iowa","TRUE","","36402","88.2","19103","Johnson","{""19103"": ""100""}","Johnson","19103","FALSE","FALSE","America/Chicago"
-"52241","41.69869","-91.59474","Coralville","IA","Iowa","TRUE","","20909","681.4","19103","Johnson","{""19103"": ""100""}","Johnson","19103","FALSE","FALSE","America/Chicago"
-"52242","41.66264","-91.54787","Iowa City","IA","Iowa","TRUE","","1474","791.3","19103","Johnson","{""19103"": ""100""}","Johnson","19103","FALSE","FALSE","America/Chicago"
-"52245","41.6708","-91.50768","Iowa City","IA","Iowa","TRUE","","25195","1176.8","19103","Johnson","{""19103"": ""100""}","Johnson","19103","FALSE","FALSE","America/Chicago"
-"52246","41.65162","-91.5697","Iowa City","IA","Iowa","TRUE","","23032","979.6","19103","Johnson","{""19103"": ""100""}","Johnson","19103","FALSE","FALSE","America/Chicago"
-"52247","41.51488","-91.71884","Kalona","IA","Iowa","TRUE","","5130","24.9","19183","Washington","{""19183"": ""67.83"", ""19103"": ""32.17""}","Washington|Johnson","19183|19103","FALSE","FALSE","America/Chicago"
-"52248","41.34691","-91.93583","Keota","IA","Iowa","TRUE","","1823","6.2","19107","Keokuk","{""19107"": ""74.55"", ""19183"": ""25.45""}","Keokuk|Washington","19107|19183","FALSE","FALSE","America/Chicago"
-"52249","42.01417","-92.20543","Keystone","IA","Iowa","TRUE","","939","7.2","19011","Benton","{""19011"": ""100""}","Benton","19011","FALSE","FALSE","America/Chicago"
-"52251","41.70993","-92.20222","Ladora","IA","Iowa","TRUE","","573","5.4","19095","Iowa","{""19095"": ""100""}","Iowa","19095","FALSE","FALSE","America/Chicago"
-"52253","41.8966","-91.35123","Lisbon","IA","Iowa","TRUE","","3362","28.1","19113","Linn","{""19113"": ""74.15"", ""19031"": ""18.26"", ""19105"": ""4.07"", ""19103"": ""3.51""}","Linn|Cedar|Jones|Johnson","19113|19031|19105|19103","FALSE","FALSE","America/Chicago"
-"52254","41.95214","-90.80116","Lost Nation","IA","Iowa","TRUE","","770","5.2","19045","Clinton","{""19045"": ""100""}","Clinton","19045","FALSE","FALSE","America/Chicago"
-"52255","41.86364","-90.96132","Lowden","IA","Iowa","TRUE","","1730","15.4","19031","Cedar","{""19031"": ""100""}","Cedar","19031","FALSE","FALSE","America/Chicago"
-"52257","41.92095","-92.17825","Luzerne","IA","Iowa","TRUE","","225","5.5","19011","Benton","{""19011"": ""100""}","Benton","19011","FALSE","FALSE","America/Chicago"
-"52301","41.78838","-92.08411","Marengo","IA","Iowa","TRUE","","3527","11.2","19095","Iowa","{""19095"": ""98.89"", ""19011"": ""1.11""}","Iowa|Benton","19095|19011","FALSE","FALSE","America/Chicago"
-"52302","42.06554","-91.57061","Marion","IA","Iowa","TRUE","","41179","214.3","19113","Linn","{""19113"": ""100""}","Linn","19113","FALSE","FALSE","America/Chicago"
-"52305","42.01924","-91.33917","Martelle","IA","Iowa","TRUE","","654","8.9","19105","Jones","{""19105"": ""88.24"", ""19113"": ""11.76""}","Jones|Linn","19105|19113","FALSE","FALSE","America/Chicago"
-"52306","41.89844","-91.25343","Mechanicsville","IA","Iowa","TRUE","","1601","8.3","19031","Cedar","{""19031"": ""91.33"", ""19105"": ""8.67""}","Cedar|Jones","19031|19105","FALSE","FALSE","America/Chicago"
-"52307","41.79297","-91.89884","Middle Amana","IA","Iowa","TRUE","","162","335.5","19095","Iowa","{""19095"": ""100""}","Iowa","19095","FALSE","FALSE","America/Chicago"
-"52308","41.57231","-92.15852","Millersburg","IA","Iowa","TRUE","","135","637.1","19095","Iowa","{""19095"": ""100""}","Iowa","19095","FALSE","FALSE","America/Chicago"
-"52309","42.12354","-90.88873","Monmouth","IA","Iowa","TRUE","","460","6.2","19097","Jackson","{""19097"": ""80.86"", ""19105"": ""19.14""}","Jackson|Jones","19097|19105","FALSE","FALSE","America/Chicago"
-"52310","42.22067","-91.19722","Monticello","IA","Iowa","TRUE","","6343","16.5","19105","Jones","{""19105"": ""99.22"", ""19113"": ""0.7"", ""19055"": ""0.08""}","Jones|Linn|Delaware","19105|19113|19055","FALSE","FALSE","America/Chicago"
-"52312","42.00605","-91.24587","Morley","IA","Iowa","TRUE","","51","210.0","19105","Jones","{""19105"": ""100""}","Jones","19105","FALSE","FALSE","America/Chicago"
-"52313","42.25906","-92.09498","Mount Auburn","IA","Iowa","TRUE","","313","3.8","19011","Benton","{""19011"": ""100""}","Benton","19011","FALSE","FALSE","America/Chicago"
-"52314","41.93381","-91.44866","Mount Vernon","IA","Iowa","TRUE","","6023","39.0","19113","Linn","{""19113"": ""100""}","Linn","19113","FALSE","FALSE","America/Chicago"
-"52315","42.00089","-91.97011","Newhall","IA","Iowa","TRUE","","1118","14.9","19011","Benton","{""19011"": ""100""}","Benton","19011","FALSE","FALSE","America/Chicago"
-"52316","41.54311","-92.08857","North English","IA","Iowa","TRUE","","1650","9.2","19095","Iowa","{""19095"": ""99.4"", ""19107"": ""0.6""}","Iowa|Keokuk","19095|19107","FALSE","FALSE","America/Chicago"
-"52317","41.76242","-91.63101","North Liberty","IA","Iowa","TRUE","","20321","226.3","19103","Johnson","{""19103"": ""100""}","Johnson","19103","FALSE","FALSE","America/Chicago"
-"52318","41.88927","-91.89274","Norway","IA","Iowa","TRUE","","859","9.0","19011","Benton","{""19011"": ""90.03"", ""19095"": ""9.97""}","Benton|Iowa","19011|19095","FALSE","FALSE","America/Chicago"
-"52320","41.99769","-91.14852","Olin","IA","Iowa","TRUE","","1138","7.4","19105","Jones","{""19105"": ""94.26"", ""19031"": ""5.74""}","Jones|Cedar","19105|19031","FALSE","FALSE","America/Chicago"
-"52321","42.14722","-90.98325","Onslow","IA","Iowa","TRUE","","358","4.6","19105","Jones","{""19105"": ""100""}","Jones","19105","FALSE","FALSE","America/Chicago"
-"52322","41.6911","-91.76015","Oxford","IA","Iowa","TRUE","","2498","10.8","19103","Johnson","{""19103"": ""100""}","Johnson","19103","FALSE","FALSE","America/Chicago"
-"52323","41.98445","-90.9598","Oxford Junction","IA","Iowa","TRUE","","926","7.0","19105","Jones","{""19105"": ""91.58"", ""19045"": ""5.88"", ""19031"": ""2.54""}","Jones|Clinton|Cedar","19105|19045|19031","FALSE","FALSE","America/Chicago"
-"52324","42.06363","-91.80536","Palo","IA","Iowa","TRUE","","2112","20.3","19113","Linn","{""19113"": ""89.21"", ""19011"": ""10.79""}","Linn|Benton","19113|19011","FALSE","FALSE","America/Chicago"
-"52325","41.57949","-91.92401","Parnell","IA","Iowa","TRUE","","988","9.1","19095","Iowa","{""19095"": ""94.96"", ""19103"": ""5.04""}","Iowa|Johnson","19095|19103","FALSE","FALSE","America/Chicago"
-"52326","42.39026","-91.75735","Quasqueton","IA","Iowa","TRUE","","567","107.6","19019","Buchanan","{""19019"": ""100""}","Buchanan","19019","FALSE","FALSE","America/Chicago"
-"52327","41.47637","-91.58101","Riverside","IA","Iowa","TRUE","","3042","14.0","19183","Washington","{""19183"": ""84.53"", ""19103"": ""15.47""}","Washington|Johnson","19183|19103","FALSE","FALSE","America/Chicago"
-"52328","42.07158","-91.66609","Robins","IA","Iowa","TRUE","","3059","384.0","19113","Linn","{""19113"": ""100""}","Linn","19113","FALSE","FALSE","America/Chicago"
-"52329","42.35766","-91.85573","Rowley","IA","Iowa","TRUE","","852","6.5","19019","Buchanan","{""19019"": ""100""}","Buchanan","19019","FALSE","FALSE","America/Chicago"
-"52330","42.34949","-91.50048","Ryan","IA","Iowa","TRUE","","798","6.5","19055","Delaware","{""19055"": ""100""}","Delaware","19055","FALSE","FALSE","America/Chicago"
-"52332","42.09884","-91.88842","Shellsburg","IA","Iowa","TRUE","","2053","18.7","19011","Benton","{""19011"": ""99.55"", ""19113"": ""0.45""}","Benton|Linn","19011|19113","FALSE","FALSE","America/Chicago"
-"52333","41.80621","-91.49268","Solon","IA","Iowa","TRUE","","6808","30.5","19103","Johnson","{""19103"": ""99.38"", ""19031"": ""0.62""}","Johnson|Cedar","19103|19031","FALSE","FALSE","America/Chicago"
-"52334","41.7402","-91.94109","South Amana","IA","Iowa","TRUE","","157","3.6","19095","Iowa","{""19095"": ""100""}","Iowa","19095","FALSE","FALSE","America/Chicago"
-"52335","41.46229","-92.06377","South English","IA","Iowa","TRUE","","730","5.0","19107","Keokuk","{""19107"": ""100""}","Keokuk","19107","FALSE","FALSE","America/Chicago"
-"52336","42.06925","-91.43977","Springville","IA","Iowa","TRUE","","2394","18.8","19113","Linn","{""19113"": ""100""}","Linn","19113","FALSE","FALSE","America/Chicago"
-"52337","41.88026","-91.14202","Stanwood","IA","Iowa","TRUE","","794","11.2","19031","Cedar","{""19031"": ""100""}","Cedar","19031","FALSE","FALSE","America/Chicago"
-"52338","41.82956","-91.70868","Swisher","IA","Iowa","TRUE","","3489","39.9","19103","Johnson","{""19103"": ""98.63"", ""19113"": ""1.37""}","Johnson|Linn","19103|19113","FALSE","FALSE","America/Chicago"
-"52339","41.92296","-92.58862","Tama","IA","Iowa","TRUE","","4067","15.4","19171","Tama","{""19171"": ""99.64"", ""19157"": ""0.36""}","Tama|Poweshiek","19171|19157","FALSE","FALSE","America/Chicago"
-"52340","41.70831","-91.68468","Tiffin","IA","Iowa","TRUE","","3236","75.4","19103","Johnson","{""19103"": ""100""}","Johnson","19103","FALSE","FALSE","America/Chicago"
-"52341","42.10383","-91.73537","Toddville","IA","Iowa","TRUE","","1119","33.0","19113","Linn","{""19113"": ""100""}","Linn","19113","FALSE","FALSE","America/Chicago"
-"52342","42.05139","-92.55782","Toledo","IA","Iowa","TRUE","","3436","14.8","19171","Tama","{""19171"": ""100""}","Tama","19171","FALSE","FALSE","America/Chicago"
-"52345","42.23413","-91.89197","Urbana","IA","Iowa","TRUE","","1517","179.5","19011","Benton","{""19011"": ""100""}","Benton","19011","FALSE","FALSE","America/Chicago"
-"52346","42.01005","-92.08067","Van Horne","IA","Iowa","TRUE","","1431","10.6","19011","Benton","{""19011"": ""100""}","Benton","19011","FALSE","FALSE","America/Chicago"
-"52347","41.71253","-92.28449","Victor","IA","Iowa","TRUE","","1259","7.6","19095","Iowa","{""19095"": ""79.43"", ""19157"": ""20.57""}","Iowa|Poweshiek","19095|19157","FALSE","FALSE","America/Chicago"
-"52348","41.99015","-92.38148","Vining","IA","Iowa","TRUE","","62","26.1","19171","Tama","{""19171"": ""100""}","Tama","19171","FALSE","FALSE","America/Chicago"
-"52349","42.17237","-92.00562","Vinton","IA","Iowa","TRUE","","7551","19.9","19011","Benton","{""19011"": ""100""}","Benton","19011","FALSE","FALSE","America/Chicago"
-"52351","41.87788","-91.83177","Walford","IA","Iowa","TRUE","","1367","639.9","19011","Benton","{""19011"": ""74.02"", ""19113"": ""25.98""}","Benton|Linn","19011|19113","FALSE","FALSE","America/Chicago"
-"52352","42.28787","-91.77579","Walker","IA","Iowa","TRUE","","1568","7.7","19113","Linn","{""19113"": ""70.42"", ""19019"": ""20.69"", ""19011"": ""8.89""}","Linn|Buchanan|Benton","19113|19019|19011","FALSE","FALSE","America/Chicago"
-"52353","41.29844","-91.71326","Washington","IA","Iowa","TRUE","","9488","24.0","19183","Washington","{""19183"": ""100""}","Washington","19183","FALSE","FALSE","America/Chicago"
-"52354","41.91593","-91.98774","Watkins","IA","Iowa","TRUE","","365","4.8","19011","Benton","{""19011"": ""100""}","Benton","19011","FALSE","FALSE","America/Chicago"
-"52355","41.45995","-92.18292","Webster","IA","Iowa","TRUE","","257","2.7","19107","Keokuk","{""19107"": ""93.5"", ""19095"": ""6.5""}","Keokuk|Iowa","19107|19095","FALSE","FALSE","America/Chicago"
-"52356","41.47372","-91.84517","Wellman","IA","Iowa","TRUE","","2573","11.1","19183","Washington","{""19183"": ""85.54"", ""19095"": ""8.28"", ""19103"": ""6.17""}","Washington|Iowa|Johnson","19183|19095|19103","FALSE","FALSE","America/Chicago"
-"52358","41.69604","-91.31918","West Branch","IA","Iowa","TRUE","","3723","18.6","19031","Cedar","{""19031"": ""92.39"", ""19103"": ""7.61""}","Cedar|Johnson","19031|19103","FALSE","FALSE","America/Chicago"
-"52359","41.35852","-91.80745","West Chester","IA","Iowa","TRUE","","265","6.9","19183","Washington","{""19183"": ""100""}","Washington","19183","FALSE","FALSE","America/Chicago"
-"52361","41.6476","-92.01396","Williamsburg","IA","Iowa","TRUE","","4425","13.4","19095","Iowa","{""19095"": ""100""}","Iowa","19095","FALSE","FALSE","America/Chicago"
-"52362","42.0657","-90.99687","Wyoming","IA","Iowa","TRUE","","1127","7.2","19105","Jones","{""19105"": ""100""}","Jones","19105","FALSE","FALSE","America/Chicago"
-"52401","41.97541","-91.65848","Cedar Rapids","IA","Iowa","TRUE","","2089","680.3","19113","Linn","{""19113"": ""100""}","Linn","19113","FALSE","FALSE","America/Chicago"
-"52402","42.02277","-91.65978","Cedar Rapids","IA","Iowa","TRUE","","41531","1162.6","19113","Linn","{""19113"": ""100""}","Linn","19113","FALSE","FALSE","America/Chicago"
-"52403","41.96873","-91.5804","Cedar Rapids","IA","Iowa","TRUE","","23408","344.5","19113","Linn","{""19113"": ""100""}","Linn","19113","FALSE","FALSE","America/Chicago"
-"52404","41.9238","-91.69422","Cedar Rapids","IA","Iowa","TRUE","","40279","282.9","19113","Linn","{""19113"": ""99.87"", ""19103"": ""0.13""}","Linn|Johnson","19113|19103","FALSE","FALSE","America/Chicago"
-"52405","41.98684","-91.74659","Cedar Rapids","IA","Iowa","TRUE","","24848","657.2","19113","Linn","{""19113"": ""100""}","Linn","19113","FALSE","FALSE","America/Chicago"
-"52411","42.05151","-91.72714","Cedar Rapids","IA","Iowa","TRUE","","8033","188.7","19113","Linn","{""19113"": ""100""}","Linn","19113","FALSE","FALSE","America/Chicago"
-"52501","41.03574","-92.4315","Ottumwa","IA","Iowa","TRUE","","29478","50.4","19179","Wapello","{""19179"": ""100""}","Wapello","19179","FALSE","FALSE","America/Chicago"
-"52530","40.99229","-92.29196","Agency","IA","Iowa","TRUE","","1123","30.6","19179","Wapello","{""19179"": ""100""}","Wapello","19179","FALSE","FALSE","America/Chicago"
-"52531","41.02676","-92.81433","Albia","IA","Iowa","TRUE","","5880","10.4","19135","Monroe","{""19135"": ""100""}","Monroe","19135","FALSE","FALSE","America/Chicago"
-"52533","41.0176","-92.15249","Batavia","IA","Iowa","TRUE","","1425","6.3","19101","Jefferson","{""19101"": ""84.2"", ""19179"": ""15.8""}","Jefferson|Wapello","19101|19179","FALSE","FALSE","America/Chicago"
-"52534","41.27193","-92.68188","Beacon","IA","Iowa","TRUE","","421","415.8","19123","Mahaska","{""19123"": ""100""}","Mahaska","19123","FALSE","FALSE","America/Chicago"
-"52535","40.86516","-91.96052","Birmingham","IA","Iowa","TRUE","","1039","7.0","19177","Van Buren","{""19177"": ""94.03"", ""19101"": ""5.97""}","Van Buren|Jefferson","19177|19101","FALSE","FALSE","America/Chicago"
-"52536","40.95548","-92.61948","Blakesburg","IA","Iowa","TRUE","","991","6.2","19179","Wapello","{""19179"": ""88"", ""19135"": ""12""}","Wapello|Monroe","19179|19135","FALSE","FALSE","America/Chicago"
-"52537","40.73627","-92.41215","Bloomfield","IA","Iowa","TRUE","","7316","8.2","19051","Davis","{""19051"": ""95.01"", ""19179"": ""4.99""}","Davis|Wapello","19051|19179","FALSE","FALSE","America/Chicago"
-"52540","41.15762","-91.8222","Brighton","IA","Iowa","TRUE","","1349","5.3","19183","Washington","{""19183"": ""64.72"", ""19101"": ""35.28""}","Washington|Jefferson","19183|19101","FALSE","FALSE","America/Chicago"
-"52542","40.62797","-92.05186","Cantril","IA","Iowa","TRUE","","354","3.0","19177","Van Buren","{""19177"": ""90.8"", ""29199"": ""9.2""}","Van Buren|Scotland","19177|29199","FALSE","FALSE","America/Chicago"
-"52543","41.20076","-92.51993","Cedar","IA","Iowa","TRUE","","459","8.6","19123","Mahaska","{""19123"": ""100""}","Mahaska","19123","FALSE","FALSE","America/Chicago"
-"52544","40.71758","-92.91073","Centerville","IA","Iowa","TRUE","","7309","20.6","19007","Appanoose","{""19007"": ""100""}","Appanoose","19007","FALSE","FALSE","America/Chicago"
-"52548","41.08602","-92.53032","Chillicothe","IA","Iowa","TRUE","","97","164.9","19179","Wapello","{""19179"": ""100""}","Wapello","19179","FALSE","FALSE","America/Chicago"
-"52549","40.61376","-92.94649","Cincinnati","IA","Iowa","TRUE","","965","8.5","19007","Appanoose","{""19007"": ""100""}","Appanoose","19007","FALSE","FALSE","America/Chicago"
-"52550","41.31386","-92.35996","Delta","IA","Iowa","TRUE","","583","5.8","19107","Keokuk","{""19107"": ""100""}","Keokuk","19107","FALSE","FALSE","America/Chicago"
-"52551","40.82485","-92.10191","Douds","IA","Iowa","TRUE","","402","2.7","19177","Van Buren","{""19177"": ""100""}","Van Buren","19177","FALSE","FALSE","America/Chicago"
-"52552","40.83572","-92.53676","Drakesville","IA","Iowa","TRUE","","846","5.6","19051","Davis","{""19051"": ""96.51"", ""19179"": ""3.49""}","Davis|Wapello","19051|19179","FALSE","FALSE","America/Chicago"
-"52553","41.14836","-92.65505","Eddyville","IA","Iowa","TRUE","","1889","8.7","19179","Wapello","{""19179"": ""63.15"", ""19123"": ""26.42"", ""19135"": ""10.43""}","Wapello|Mahaska|Monroe","19179|19123|19135","FALSE","FALSE","America/Chicago"
-"52554","40.92594","-92.22927","Eldon","IA","Iowa","TRUE","","1306","14.1","19179","Wapello","{""19179"": ""96.21"", ""19101"": ""1.97"", ""19177"": ""1.17"", ""19051"": ""0.66""}","Wapello|Jefferson|Van Buren|Davis","19179|19101|19177|19051","FALSE","FALSE","America/Chicago"
-"52555","40.63966","-92.81523","Exline","IA","Iowa","TRUE","","368","5.7","19007","Appanoose","{""19007"": ""100""}","Appanoose","19007","FALSE","FALSE","America/Chicago"
-"52556","41.01982","-91.92902","Fairfield","IA","Iowa","TRUE","","13806","30.2","19101","Jefferson","{""19101"": ""100""}","Jefferson","19101","FALSE","FALSE","America/Chicago"
-"52557","41.02212","-91.96476","Fairfield","IA","Iowa","TRUE","","66","568.5","19101","Jefferson","{""19101"": ""100""}","Jefferson","19101","FALSE","FALSE","America/Chicago"
-"52560","40.85153","-92.24667","Floris","IA","Iowa","TRUE","","256","2.8","19051","Davis","{""19051"": ""100""}","Davis","19051","FALSE","FALSE","America/Chicago"
-"52561","41.21987","-92.44621","Fremont","IA","Iowa","TRUE","","965","10.7","19123","Mahaska","{""19123"": ""99.06"", ""19107"": ""0.94""}","Mahaska|Keokuk","19123|19107","FALSE","FALSE","America/Chicago"
-"52563","41.17498","-92.28314","Hedrick","IA","Iowa","TRUE","","1463","4.9","19107","Keokuk","{""19107"": ""80.54"", ""19179"": ""18.07"", ""19101"": ""1.39""}","Keokuk|Wapello|Jefferson","19107|19179|19101","FALSE","FALSE","America/Chicago"
-"52565","40.74009","-91.94187","Keosauqua","IA","Iowa","TRUE","","1752","5.8","19177","Van Buren","{""19177"": ""100""}","Van Buren","19177","FALSE","FALSE","America/Chicago"
-"52566","41.14796","-92.50257","Kirkville","IA","Iowa","TRUE","","199","73.9","19179","Wapello","{""19179"": ""100""}","Wapello","19179","FALSE","FALSE","America/Chicago"
-"52567","40.93035","-92.07781","Libertyville","IA","Iowa","TRUE","","803","11.0","19101","Jefferson","{""19101"": ""96.1"", ""19177"": ""3.9""}","Jefferson|Van Buren","19101|19177","FALSE","FALSE","America/Chicago"
-"52569","40.98568","-93.04223","Melrose","IA","Iowa","TRUE","","506","2.1","19135","Monroe","{""19135"": ""80.82"", ""19007"": ""11.15"", ""19185"": ""8.03""}","Monroe|Appanoose|Wayne","19135|19007|19185","FALSE","FALSE","America/Chicago"
-"52570","40.6852","-92.15075","Milton","IA","Iowa","TRUE","","1014","5.7","19177","Van Buren","{""19177"": ""88.89"", ""19051"": ""11.11""}","Van Buren|Davis","19177|19051","FALSE","FALSE","America/Chicago"
-"52571","40.87713","-92.83776","Moravia","IA","Iowa","TRUE","","1482","6.0","19007","Appanoose","{""19007"": ""85.43"", ""19135"": ""14.57""}","Appanoose|Monroe","19007|19135","FALSE","FALSE","America/Chicago"
-"52572","40.67726","-92.69193","Moulton","IA","Iowa","TRUE","","1112","4.4","19007","Appanoose","{""19007"": ""91.96"", ""19051"": ""8.04""}","Appanoose|Davis","19007|19051","FALSE","FALSE","America/Chicago"
-"52573","40.63302","-91.93868","Mount Sterling","IA","Iowa","TRUE","","196","2.7","19177","Van Buren","{""19177"": ""84.57"", ""29199"": ""15.43""}","Van Buren|Scotland","19177|29199","FALSE","FALSE","America/Chicago"
-"52574","40.80374","-92.96646","Mystic","IA","Iowa","TRUE","","744","7.3","19007","Appanoose","{""19007"": ""100""}","Appanoose","19007","FALSE","FALSE","America/Chicago"
-"52576","41.21359","-92.11125","Ollie","IA","Iowa","TRUE","","536","4.6","19107","Keokuk","{""19107"": ""100""}","Keokuk","19107","FALSE","FALSE","America/Chicago"
-"52577","41.27193","-92.66047","Oskaloosa","IA","Iowa","TRUE","","14896","36.2","19123","Mahaska","{""19123"": ""100""}","Mahaska","19123","FALSE","FALSE","America/Chicago"
-"52580","41.12332","-92.08762","Packwood","IA","Iowa","TRUE","","621","6.3","19101","Jefferson","{""19101"": ""100""}","Jefferson","19101","FALSE","FALSE","America/Chicago"
-"52581","40.80587","-93.06286","Plano","IA","Iowa","TRUE","","355","3.6","19007","Appanoose","{""19007"": ""93.77"", ""19185"": ""6.23""}","Appanoose|Wayne","19007|19185","FALSE","FALSE","America/Chicago"
-"52583","40.80034","-93.15264","Promise City","IA","Iowa","TRUE","","360","3.0","19185","Wayne","{""19185"": ""100""}","Wayne","19185","FALSE","FALSE","America/Chicago"
-"52584","40.64523","-92.25362","Pulaski","IA","Iowa","TRUE","","690","11.8","19051","Davis","{""19051"": ""100""}","Davis","19051","FALSE","FALSE","America/Chicago"
-"52585","41.19238","-91.98205","Richland","IA","Iowa","TRUE","","984","6.8","19107","Keokuk","{""19107"": ""81.98"", ""19183"": ""9.21"", ""19101"": ""8.81""}","Keokuk|Washington|Jefferson","19107|19183|19101","FALSE","FALSE","America/Chicago"
-"52586","41.34679","-92.47041","Rose Hill","IA","Iowa","TRUE","","462","3.8","19123","Mahaska","{""19123"": ""100""}","Mahaska","19123","FALSE","FALSE","America/Chicago"
-"52588","40.86421","-92.17314","Selma","IA","Iowa","TRUE","","35","1.3","19177","Van Buren","{""19177"": ""70.15"", ""19051"": ""29.85""}","Van Buren|Davis","19177|19051","FALSE","FALSE","America/Chicago"
-"52590","40.66439","-93.13237","Seymour","IA","Iowa","TRUE","","1264","6.5","19185","Wayne","{""19185"": ""94.86"", ""19007"": ""5.14""}","Wayne|Appanoose","19185|19007","FALSE","FALSE","America/Chicago"
-"52591","41.32085","-92.19297","Sigourney","IA","Iowa","TRUE","","2972","9.1","19107","Keokuk","{""19107"": ""100""}","Keokuk","19107","FALSE","FALSE","America/Chicago"
-"52593","40.7736","-92.73956","Udell","IA","Iowa","TRUE","","187","4.4","19007","Appanoose","{""19007"": ""100""}","Appanoose","19007","FALSE","FALSE","America/Chicago"
-"52594","40.8357","-92.64972","Unionville","IA","Iowa","TRUE","","251","2.1","19007","Appanoose","{""19007"": ""76.44"", ""19051"": ""23.56""}","Appanoose|Davis","19007|19051","FALSE","FALSE","America/Chicago"
-"52595","41.28862","-92.61497","University Park","IA","Iowa","TRUE","","384","321.6","19123","Mahaska","{""19123"": ""100""}","Mahaska","19123","FALSE","FALSE","America/Chicago"
-"52601","40.85501","-91.112","Burlington","IA","Iowa","TRUE","","28735","100.1","19057","Des Moines","{""19057"": ""100""}","Des Moines","19057","FALSE","FALSE","America/Chicago"
-"52619","40.52517","-91.56519","Argyle","IA","Iowa","TRUE","","664","7.1","19111","Lee","{""19111"": ""100""}","Lee","19111","FALSE","FALSE","America/Chicago"
-"52620","40.69791","-91.79695","Bonaparte","IA","Iowa","TRUE","","931","6.8","19177","Van Buren","{""19177"": ""100""}","Van Buren","19177","FALSE","FALSE","America/Chicago"
-"52621","41.20908","-91.53098","Crawfordsville","IA","Iowa","TRUE","","731","6.7","19183","Washington","{""19183"": ""89.22"", ""19115"": ""10.78""}","Washington|Louisa","19183|19115","FALSE","FALSE","America/Chicago"
-"52623","40.85736","-91.33838","Danville","IA","Iowa","TRUE","","1798","12.0","19057","Des Moines","{""19057"": ""84.5"", ""19087"": ""15.5""}","Des Moines|Henry","19057|19087","FALSE","FALSE","America/Chicago"
-"52624","40.73642","-91.33752","Denmark","IA","Iowa","TRUE","","317","191.4","19111","Lee","{""19111"": ""100""}","Lee","19111","FALSE","FALSE","America/Chicago"
-"52625","40.66545","-91.56941","Donnellson","IA","Iowa","TRUE","","2786","9.8","19111","Lee","{""19111"": ""100""}","Lee","19111","FALSE","FALSE","America/Chicago"
-"52626","40.62634","-91.72836","Farmington","IA","Iowa","TRUE","","1122","4.6","19177","Van Buren","{""19177"": ""63.6"", ""19111"": ""28.9"", ""29045"": ""7.5""}","Van Buren|Lee|Clark","19177|19111|29045","FALSE","FALSE","America/Chicago"
-"52627","40.66821","-91.34874","Fort Madison","IA","Iowa","TRUE","","12398","70.2","19111","Lee","{""19111"": ""100""}","Lee","19111","FALSE","FALSE","America/Chicago"
-"52630","40.80226","-91.70709","Hillsboro","IA","Iowa","TRUE","","374","3.4","19087","Henry","{""19087"": ""55.73"", ""19177"": ""23.37"", ""19111"": ""20.9""}","Henry|Van Buren|Lee","19087|19177|19111","FALSE","FALSE","America/Chicago"
-"52632","40.43915","-91.44079","Keokuk","IA","Iowa","TRUE","","12577","95.3","19111","Lee","{""19111"": ""100""}","Lee","19111","FALSE","FALSE","America/Chicago"
-"52635","40.99525","-91.75774","Lockridge","IA","Iowa","TRUE","","855","7.7","19101","Jefferson","{""19101"": ""98.52"", ""19087"": ""1.48""}","Jefferson|Henry","19101|19087","FALSE","FALSE","America/Chicago"
-"52637","41.02013","-91.13679","Mediapolis","IA","Iowa","TRUE","","2558","14.9","19057","Des Moines","{""19057"": ""100""}","Des Moines","19057","FALSE","FALSE","America/Chicago"
-"52638","40.79857","-91.24575","Middletown","IA","Iowa","TRUE","","591","6.7","19057","Des Moines","{""19057"": ""100""}","Des Moines","19057","FALSE","FALSE","America/Chicago"
-"52639","40.52993","-91.45635","Montrose","IA","Iowa","TRUE","","1888","19.1","19111","Lee","{""19111"": ""100""}","Lee","19111","FALSE","FALSE","America/Chicago"
-"52640","41.09971","-91.28487","Morning Sun","IA","Iowa","TRUE","","1451","7.7","19115","Louisa","{""19115"": ""87.35"", ""19057"": ""12.65""}","Louisa|Des Moines","19115|19057","FALSE","FALSE","America/Chicago"
-"52641","40.98967","-91.5872","Mount Pleasant","IA","Iowa","TRUE","","12247","22.3","19087","Henry","{""19087"": ""99.17"", ""19183"": ""0.47"", ""19101"": ""0.36""}","Henry|Washington|Jefferson","19087|19183|19101","FALSE","FALSE","America/Chicago"
-"52644","41.04","-91.41496","Mount Union","IA","Iowa","TRUE","","422","3.8","19087","Henry","{""19087"": ""88.35"", ""19057"": ""11.65""}","Henry|Des Moines","19087|19057","FALSE","FALSE","America/Chicago"
-"52645","40.91366","-91.40301","New London","IA","Iowa","TRUE","","3455","18.7","19087","Henry","{""19087"": ""92"", ""19057"": ""8""}","Henry|Des Moines","19087|19057","FALSE","FALSE","America/Chicago"
-"52646","41.06666","-91.00139","Oakville","IA","Iowa","TRUE","","357","2.5","19115","Louisa","{""19115"": ""68.09"", ""19057"": ""31.91""}","Louisa|Des Moines","19115|19057","FALSE","FALSE","America/Chicago"
-"52647","41.13517","-91.54472","Olds","IA","Iowa","TRUE","","200","219.4","19087","Henry","{""19087"": ""100""}","Henry","19087","FALSE","FALSE","America/Chicago"
-"52649","40.84075","-91.60359","Salem","IA","Iowa","TRUE","","897","7.5","19087","Henry","{""19087"": ""90.76"", ""19111"": ""9.24""}","Henry|Lee","19087|19111","FALSE","FALSE","America/Chicago"
-"52650","40.94888","-91.15727","Sperry","IA","Iowa","TRUE","","802","7.7","19057","Des Moines","{""19057"": ""100""}","Des Moines","19057","FALSE","FALSE","America/Chicago"
-"52651","40.85848","-91.81407","Stockport","IA","Iowa","TRUE","","650","4.2","19177","Van Buren","{""19177"": ""94.12"", ""19101"": ""5.88""}","Van Buren|Jefferson","19177|19101","FALSE","FALSE","America/Chicago"
-"52653","41.16722","-91.15658","Wapello","IA","Iowa","TRUE","","3611","12.4","19115","Louisa","{""19115"": ""100""}","Louisa","19115","FALSE","FALSE","America/Chicago"
-"52654","41.13751","-91.66823","Wayland","IA","Iowa","TRUE","","1669","12.3","19087","Henry","{""19087"": ""87.73"", ""19183"": ""12.27""}","Henry|Washington","19087|19183","FALSE","FALSE","America/Chicago"
-"52655","40.84804","-91.21327","West Burlington","IA","Iowa","TRUE","","4163","98.2","19057","Des Moines","{""19057"": ""100""}","Des Moines","19057","FALSE","FALSE","America/Chicago"
-"52656","40.73894","-91.46353","West Point","IA","Iowa","TRUE","","2385","9.7","19111","Lee","{""19111"": ""98.86"", ""19087"": ""1.14""}","Lee|Henry","19111|19087","FALSE","FALSE","America/Chicago"
-"52657","40.76785","-91.51879","Saint Paul","IA","Iowa","TRUE","","73","148.3","19111","Lee","{""19111"": ""100""}","Lee","19111","FALSE","FALSE","America/Chicago"
-"52658","40.69989","-91.22547","Wever","IA","Iowa","TRUE","","887","7.5","19111","Lee","{""19111"": ""92.62"", ""19057"": ""7.38""}","Lee|Des Moines","19111|19057","FALSE","FALSE","America/Chicago"
-"52659","41.12941","-91.44114","Winfield","IA","Iowa","TRUE","","1434","9.0","19087","Henry","{""19087"": ""94.01"", ""19115"": ""5.99""}","Henry|Louisa","19087|19115","FALSE","FALSE","America/Chicago"
-"52660","40.99252","-91.29763","Yarmouth","IA","Iowa","TRUE","","155","2.7","19057","Des Moines","{""19057"": ""100""}","Des Moines","19057","FALSE","FALSE","America/Chicago"
-"52701","41.98195","-90.24912","Andover","IA","Iowa","TRUE","","127","77.3","19045","Clinton","{""19045"": ""100""}","Clinton","19045","FALSE","FALSE","America/Chicago"
-"52720","41.59255","-91.16601","Atalissa","IA","Iowa","TRUE","","752","7.1","19139","Muscatine","{""19139"": ""73.75"", ""19031"": ""26.25""}","Muscatine|Cedar","19139|19031","FALSE","FALSE","America/Chicago"
-"52721","41.75691","-90.95971","Bennett","IA","Iowa","TRUE","","904","8.3","19031","Cedar","{""19031"": ""100""}","Cedar","19031","FALSE","FALSE","America/Chicago"
-"52722","41.56601","-90.46662","Bettendorf","IA","Iowa","TRUE","","37476","545.1","19163","Scott","{""19163"": ""100""}","Scott","19163","FALSE","FALSE","America/Chicago"
-"52726","41.50248","-90.78391","Blue Grass","IA","Iowa","TRUE","","4780","51.1","19163","Scott","{""19163"": ""89.08"", ""19139"": ""10.92""}","Scott|Muscatine","19163|19139","FALSE","FALSE","America/Chicago"
-"52727","41.95831","-90.3334","Bryant","IA","Iowa","TRUE","","390","6.2","19045","Clinton","{""19045"": ""100""}","Clinton","19045","FALSE","FALSE","America/Chicago"
-"52728","41.45622","-90.74195","Buffalo","IA","Iowa","TRUE","","1070","259.4","19163","Scott","{""19163"": ""100""}","Scott","19163","FALSE","FALSE","America/Chicago"
-"52729","41.80405","-90.74747","Calamus","IA","Iowa","TRUE","","918","8.4","19045","Clinton","{""19045"": ""100""}","Clinton","19045","FALSE","FALSE","America/Chicago"
-"52730","41.77257","-90.3433","Camanche","IA","Iowa","TRUE","","5076","53.6","19045","Clinton","{""19045"": ""100""}","Clinton","19045","FALSE","FALSE","America/Chicago"
-"52731","41.967","-90.48643","Charlotte","IA","Iowa","TRUE","","726","5.3","19045","Clinton","{""19045"": ""98.66"", ""19097"": ""1.34""}","Clinton|Jackson","19045|19097","FALSE","FALSE","America/Chicago"
-"52732","41.90219","-90.25075","Clinton","IA","Iowa","TRUE","","26721","93.1","19045","Clinton","{""19045"": ""100""}","Clinton","19045","FALSE","FALSE","America/Chicago"
-"52737","41.25929","-91.37459","Columbus City","IA","Iowa","TRUE","","340","559.9","19115","Louisa","{""19115"": ""100""}","Louisa","19115","FALSE","FALSE","America/Chicago"
-"52738","41.27158","-91.37902","Columbus Junction","IA","Iowa","TRUE","","3566","11.2","19115","Louisa","{""19115"": ""100""}","Louisa","19115","FALSE","FALSE","America/Chicago"
-"52739","41.37286","-91.36867","Conesville","IA","Iowa","TRUE","","795","9.4","19139","Muscatine","{""19139"": ""71.95"", ""19115"": ""28.05""}","Muscatine|Louisa","19139|19115","FALSE","FALSE","America/Chicago"
-"52742","41.83628","-90.51073","De Witt","IA","Iowa","TRUE","","7541","24.8","19045","Clinton","{""19045"": ""100""}","Clinton","19045","FALSE","FALSE","America/Chicago"
-"52745","41.7135","-90.76056","Dixon","IA","Iowa","TRUE","","423","5.7","19163","Scott","{""19163"": ""100""}","Scott","19163","FALSE","FALSE","America/Chicago"
-"52746","41.72089","-90.67108","Donahue","IA","Iowa","TRUE","","1067","15.6","19163","Scott","{""19163"": ""100""}","Scott","19163","FALSE","FALSE","America/Chicago"
-"52747","41.61006","-90.91147","Durant","IA","Iowa","TRUE","","2005","35.8","19031","Cedar","{""19031"": ""90.17"", ""19163"": ""6.84"", ""19139"": ""2.99""}","Cedar|Scott|Muscatine","19031|19163|19139","FALSE","FALSE","America/Chicago"
-"52748","41.66653","-90.55679","Eldridge","IA","Iowa","TRUE","","10272","96.1","19163","Scott","{""19163"": ""100""}","Scott","19163","FALSE","FALSE","America/Chicago"
-"52749","41.3457","-91.13073","Fruitland","IA","Iowa","TRUE","","1031","197.6","19139","Muscatine","{""19139"": ""100""}","Muscatine","19139","FALSE","FALSE","America/Chicago"
-"52750","41.93211","-90.39107","Goose Lake","IA","Iowa","TRUE","","493","6.3","19045","Clinton","{""19045"": ""100""}","Clinton","19045","FALSE","FALSE","America/Chicago"
-"52751","41.85112","-90.68183","Grand Mound","IA","Iowa","TRUE","","993","7.7","19045","Clinton","{""19045"": ""100""}","Clinton","19045","FALSE","FALSE","America/Chicago"
-"52752","41.27473","-91.1912","Grandview","IA","Iowa","TRUE","","427","433.8","19115","Louisa","{""19115"": ""100""}","Louisa","19115","FALSE","FALSE","America/Chicago"
-"52753","41.62529","-90.39047","Le Claire","IA","Iowa","TRUE","","5589","86.6","19163","Scott","{""19163"": ""100""}","Scott","19163","FALSE","FALSE","America/Chicago"
-"52754","41.34304","-91.23802","Letts","IA","Iowa","TRUE","","1394","7.5","19115","Louisa","{""19115"": ""63.74"", ""19139"": ""36.26""}","Louisa|Muscatine","19115|19139","FALSE","FALSE","America/Chicago"
-"52755","41.47849","-91.43113","Lone Tree","IA","Iowa","TRUE","","2048","13.1","19103","Johnson","{""19103"": ""96.32"", ""19115"": ""3.68""}","Johnson|Louisa","19103|19115","FALSE","FALSE","America/Chicago"
-"52756","41.73071","-90.53964","Long Grove","IA","Iowa","TRUE","","2004","18.1","19163","Scott","{""19163"": ""100""}","Scott","19163","FALSE","FALSE","America/Chicago"
-"52757","41.80381","-90.37911","Low Moor","IA","Iowa","TRUE","","220","71.7","19045","Clinton","{""19045"": ""100""}","Clinton","19045","FALSE","FALSE","America/Chicago"
-"52758","41.74583","-90.43931","McCausland","IA","Iowa","TRUE","","303","188.7","19163","Scott","{""19163"": ""100""}","Scott","19163","FALSE","FALSE","America/Chicago"
-"52760","41.58174","-91.09907","Moscow","IA","Iowa","TRUE","","423","7.4","19139","Muscatine","{""19139"": ""75.23"", ""19031"": ""24.77""}","Muscatine|Cedar","19139|19031","FALSE","FALSE","America/Chicago"
-"52761","41.43871","-91.05848","Muscatine","IA","Iowa","TRUE","","30263","66.0","19139","Muscatine","{""19139"": ""98.13"", ""19115"": ""1.87""}","Muscatine|Louisa","19139|19115","FALSE","FALSE","America/Chicago"
-"52765","41.72546","-90.8715","New Liberty","IA","Iowa","TRUE","","283","3.6","19163","Scott","{""19163"": ""85.65"", ""19031"": ""14.35""}","Scott|Cedar","19163|19031","FALSE","FALSE","America/Chicago"
-"52766","41.46616","-91.29615","Nichols","IA","Iowa","TRUE","","801","6.8","19139","Muscatine","{""19139"": ""100""}","Muscatine","19139","FALSE","FALSE","America/Chicago"
-"52767","41.56564","-90.42228","Pleasant Valley","IA","Iowa","TRUE","","103","59.6","19163","Scott","{""19163"": ""100""}","Scott","19163","FALSE","FALSE","America/Chicago"
-"52768","41.69899","-90.38985","Princeton","IA","Iowa","TRUE","","1580","18.9","19163","Scott","{""19163"": ""100""}","Scott","19163","FALSE","FALSE","America/Chicago"
-"52769","41.61027","-90.84652","Stockton","IA","Iowa","TRUE","","640","6.0","19139","Muscatine","{""19139"": ""61.55"", ""19163"": ""38.45""}","Muscatine|Scott","19139|19163","FALSE","FALSE","America/Chicago"
-"52772","41.75037","-91.14065","Tipton","IA","Iowa","TRUE","","5038","14.8","19031","Cedar","{""19031"": ""100""}","Cedar","19031","FALSE","FALSE","America/Chicago"
-"52773","41.62196","-90.7567","Walcott","IA","Iowa","TRUE","","2821","19.4","19163","Scott","{""19163"": ""99.33"", ""19139"": ""0.67""}","Scott|Muscatine","19163|19139","FALSE","FALSE","America/Chicago"
-"52774","41.90679","-90.59515","Welton","IA","Iowa","TRUE","","108","148.2","19045","Clinton","{""19045"": ""100""}","Clinton","19045","FALSE","FALSE","America/Chicago"
-"52776","41.57747","-91.27006","West Liberty","IA","Iowa","TRUE","","4959","22.6","19139","Muscatine","{""19139"": ""93.67"", ""19031"": ""6.33""}","Muscatine|Cedar","19139|19031","FALSE","FALSE","America/Chicago"
-"52777","41.854","-90.85613","Wheatland","IA","Iowa","TRUE","","1202","8.6","19045","Clinton","{""19045"": ""98.08"", ""19031"": ""1.92""}","Clinton|Cedar","19045|19031","FALSE","FALSE","America/Chicago"
-"52778","41.60591","-90.99261","Wilton","IA","Iowa","TRUE","","4331","20.1","19139","Muscatine","{""19139"": ""80.34"", ""19031"": ""19.66""}","Muscatine|Cedar","19139|19031","FALSE","FALSE","America/Chicago"
-"52801","41.52076","-90.57451","Davenport","IA","Iowa","TRUE","","1191","1267.9","19163","Scott","{""19163"": ""100""}","Scott","19163","FALSE","FALSE","America/Chicago"
-"52802","41.49749","-90.63498","Davenport","IA","Iowa","TRUE","","10562","426.4","19163","Scott","{""19163"": ""100""}","Scott","19163","FALSE","FALSE","America/Chicago"
-"52803","41.53865","-90.55607","Davenport","IA","Iowa","TRUE","","21583","1626.0","19163","Scott","{""19163"": ""100""}","Scott","19163","FALSE","FALSE","America/Chicago"
-"52804","41.53258","-90.67858","Davenport","IA","Iowa","TRUE","","27648","316.0","19163","Scott","{""19163"": ""100""}","Scott","19163","FALSE","FALSE","America/Chicago"
-"52806","41.58968","-90.6259","Davenport","IA","Iowa","TRUE","","28288","356.0","19163","Scott","{""19163"": ""100""}","Scott","19163","FALSE","FALSE","America/Chicago"
-"52807","41.61062","-90.51687","Davenport","IA","Iowa","TRUE","","15521","203.1","19163","Scott","{""19163"": ""100""}","Scott","19163","FALSE","FALSE","America/Chicago"
-"53001","43.60613","-88.05516","Adell","WI","Wisconsin","TRUE","","1882","24.6","55117","Sheboygan","{""55117"": ""100""}","Sheboygan","55117","FALSE","FALSE","America/Chicago"
-"53002","43.47014","-88.35696","Allenton","WI","Wisconsin","TRUE","","2305","28.0","55131","Washington","{""55131"": ""100""}","Washington","55131","FALSE","FALSE","America/Chicago"
-"53003","43.20657","-88.50973","Ashippun","WI","Wisconsin","TRUE","","161","132.7","55027","Dodge","{""55027"": ""100""}","Dodge","55027","FALSE","FALSE","America/Chicago"
-"53004","43.49997","-87.88005","Belgium","WI","Wisconsin","TRUE","","3334","36.4","55089","Ozaukee","{""55089"": ""100""}","Ozaukee","55089","FALSE","FALSE","America/Chicago"
-"53005","43.06261","-88.09925","Brookfield","WI","Wisconsin","TRUE","","20124","528.7","55133","Waukesha","{""55133"": ""100""}","Waukesha","55133","FALSE","FALSE","America/Chicago"
-"53006","43.62009","-88.53642","Brownsville","WI","Wisconsin","TRUE","","1704","16.0","55027","Dodge","{""55027"": ""77.46"", ""55039"": ""22.54""}","Dodge|Fond du Lac","55027|55039","FALSE","FALSE","America/Chicago"
-"53007","43.10842","-88.07118","Butler","WI","Wisconsin","TRUE","","1821","910.2","55133","Waukesha","{""55133"": ""100""}","Waukesha","55133","FALSE","FALSE","America/Chicago"
-"53010","43.60987","-88.27706","Campbellsport","WI","Wisconsin","TRUE","","7635","28.6","55039","Fond du Lac","{""55039"": ""96.02"", ""55131"": ""3.98""}","Fond du Lac|Washington","55039|55131","FALSE","FALSE","America/Chicago"
-"53011","43.65816","-88.07891","Cascade","WI","Wisconsin","TRUE","","2149","20.9","55117","Sheboygan","{""55117"": ""97.04"", ""55039"": ""2.96""}","Sheboygan|Fond du Lac","55117|55039","FALSE","FALSE","America/Chicago"
-"53012","43.3147","-88.03769","Cedarburg","WI","Wisconsin","TRUE","","18335","202.2","55089","Ozaukee","{""55089"": ""91.41"", ""55131"": ""8.59""}","Ozaukee|Washington","55089|55131","FALSE","FALSE","America/Chicago"
-"53013","43.56705","-87.85218","Cedar Grove","WI","Wisconsin","TRUE","","3326","44.4","55117","Sheboygan","{""55117"": ""90.6"", ""55089"": ""9.4""}","Sheboygan|Ozaukee","55117|55089","FALSE","FALSE","America/Chicago"
-"53014","44.02436","-88.175","Chilton","WI","Wisconsin","TRUE","","7745","23.4","55015","Calumet","{""55015"": ""96.83"", ""55071"": ""3"", ""55039"": ""0.16""}","Calumet|Manitowoc|Fond du Lac","55015|55071|55039","FALSE","FALSE","America/Chicago"
-"53015","43.90617","-87.7918","Cleveland","WI","Wisconsin","TRUE","","2661","25.9","55071","Manitowoc","{""55071"": ""84.06"", ""55117"": ""15.94""}","Manitowoc|Sheboygan","55071|55117","FALSE","FALSE","America/Chicago"
-"53016","43.31069","-88.71438","Clyman","WI","Wisconsin","TRUE","","395","320.3","55027","Dodge","{""55027"": ""100""}","Dodge","55027","FALSE","FALSE","America/Chicago"
-"53017","43.20382","-88.25538","Colgate","WI","Wisconsin","TRUE","","5592","123.4","55131","Washington","{""55131"": ""82.34"", ""55133"": ""17.66""}","Washington|Waukesha","55131|55133","FALSE","FALSE","America/Chicago"
-"53018","43.0471","-88.39209","Delafield","WI","Wisconsin","TRUE","","7602","255.9","55133","Waukesha","{""55133"": ""100""}","Waukesha","55133","FALSE","FALSE","America/Chicago"
-"53019","43.69408","-88.31255","Eden","WI","Wisconsin","TRUE","","1847","18.0","55039","Fond du Lac","{""55039"": ""100""}","Fond du Lac","55039","FALSE","FALSE","America/Chicago"
-"53020","43.86343","-88.01051","Elkhart Lake","WI","Wisconsin","TRUE","","3807","23.9","55117","Sheboygan","{""55117"": ""96.26"", ""55071"": ""1.89"", ""55015"": ""1.86""}","Sheboygan|Manitowoc|Calumet","55117|55071|55015","FALSE","FALSE","America/Chicago"
-"53021","43.49465","-88.00158","Fredonia","WI","Wisconsin","TRUE","","4843","56.5","55089","Ozaukee","{""55089"": ""85.45"", ""55131"": ""14.55""}","Ozaukee|Washington","55089|55131","FALSE","FALSE","America/Chicago"
-"53022","43.23067","-88.11333","Germantown","WI","Wisconsin","TRUE","","19397","268.7","55131","Washington","{""55131"": ""100""}","Washington","55131","FALSE","FALSE","America/Chicago"
-"53023","43.78226","-88.10641","Glenbeulah","WI","Wisconsin","TRUE","","2486","23.8","55117","Sheboygan","{""55117"": ""100""}","Sheboygan","55117","FALSE","FALSE","America/Chicago"
-"53024","43.33196","-87.93311","Grafton","WI","Wisconsin","TRUE","","17270","244.2","55089","Ozaukee","{""55089"": ""100""}","Ozaukee","55089","FALSE","FALSE","America/Chicago"
-"53027","43.31795","-88.37298","Hartford","WI","Wisconsin","TRUE","","23279","97.4","55131","Washington","{""55131"": ""97.45"", ""55027"": ""2.55""}","Washington|Dodge","55131|55027","FALSE","FALSE","America/Chicago"
-"53029","43.14521","-88.34689","Hartland","WI","Wisconsin","TRUE","","21514","223.3","55133","Waukesha","{""55133"": ""99.55"", ""55131"": ""0.45""}","Waukesha|Washington","55133|55131","FALSE","FALSE","America/Chicago"
-"53031","43.63914","-87.91563","Hingham","WI","Wisconsin","TRUE","","0","0.0","55117","Sheboygan","{""55117"": ""100""}","Sheboygan","55117","FALSE","FALSE","America/Chicago"
-"53032","43.45044","-88.62616","Horicon","WI","Wisconsin","TRUE","","4839","58.0","55027","Dodge","{""55027"": ""100""}","Dodge","55027","FALSE","FALSE","America/Chicago"
-"53033","43.23611","-88.25567","Hubertus","WI","Wisconsin","TRUE","","4719","124.1","55131","Washington","{""55131"": ""100""}","Washington","55131","FALSE","FALSE","America/Chicago"
-"53034","43.34065","-88.60911","Hustisford","WI","Wisconsin","TRUE","","1735","80.3","55027","Dodge","{""55027"": ""100""}","Dodge","55027","FALSE","FALSE","America/Chicago"
-"53035","43.39214","-88.54509","Iron Ridge","WI","Wisconsin","TRUE","","2403","26.2","55027","Dodge","{""55027"": ""100""}","Dodge","55027","FALSE","FALSE","America/Chicago"
-"53036","43.17006","-88.57682","Ixonia","WI","Wisconsin","TRUE","","2994","43.1","55055","Jefferson","{""55055"": ""86.76"", ""55027"": ""11.65"", ""55133"": ""1.58""}","Jefferson|Dodge|Waukesha","55055|55027|55133","FALSE","FALSE","America/Chicago"
-"53037","43.31225","-88.16245","Jackson","WI","Wisconsin","TRUE","","9982","167.8","55131","Washington","{""55131"": ""100""}","Washington","55131","FALSE","FALSE","America/Chicago"
-"53038","43.08335","-88.78702","Johnson Creek","WI","Wisconsin","TRUE","","4280","54.7","55055","Jefferson","{""55055"": ""100""}","Jefferson","55055","FALSE","FALSE","America/Chicago"
-"53039","43.37002","-88.7129","Juneau","WI","Wisconsin","TRUE","","4594","25.0","55027","Dodge","{""55027"": ""100""}","Dodge","55027","FALSE","FALSE","America/Chicago"
-"53040","43.5208","-88.19076","Kewaskum","WI","Wisconsin","TRUE","","8145","48.2","55131","Washington","{""55131"": ""90.6"", ""55039"": ""4.81"", ""55117"": ""4.59""}","Washington|Fond du Lac|Sheboygan","55131|55039|55117","FALSE","FALSE","America/Chicago"
-"53042","43.95138","-87.98168","Kiel","WI","Wisconsin","TRUE","","6587","41.2","55071","Manitowoc","{""55071"": ""92.39"", ""55015"": ""7.61""}","Manitowoc|Calumet","55071|55015","FALSE","FALSE","America/Chicago"
-"53044","43.74238","-87.78231","Kohler","WI","Wisconsin","TRUE","","2334","228.8","55117","Sheboygan","{""55117"": ""100""}","Sheboygan","55117","FALSE","FALSE","America/Chicago"
-"53045","43.06091","-88.15149","Brookfield","WI","Wisconsin","TRUE","","21468","576.6","55133","Waukesha","{""55133"": ""100""}","Waukesha","55133","FALSE","FALSE","America/Chicago"
-"53046","43.15219","-88.16174","Lannon","WI","Wisconsin","TRUE","","1213","190.3","55133","Waukesha","{""55133"": ""100""}","Waukesha","55133","FALSE","FALSE","America/Chicago"
-"53047","43.25715","-88.63018","Lebanon","WI","Wisconsin","TRUE","","127","300.5","55027","Dodge","{""55027"": ""100""}","Dodge","55027","FALSE","FALSE","America/Chicago"
-"53048","43.57945","-88.45134","Lomira","WI","Wisconsin","TRUE","","3314","48.3","55027","Dodge","{""55027"": ""99.38"", ""55039"": ""0.62""}","Dodge|Fond du Lac","55027|55039","FALSE","FALSE","America/Chicago"
-"53049","43.88533","-88.28656","Malone","WI","Wisconsin","TRUE","","2960","28.8","55039","Fond du Lac","{""55039"": ""96.74"", ""55015"": ""3.26""}","Fond du Lac|Calumet","55039|55015","FALSE","FALSE","America/Chicago"
-"53050","43.51167","-88.54775","Mayville","WI","Wisconsin","TRUE","","6744","38.0","55027","Dodge","{""55027"": ""100""}","Dodge","55027","FALSE","FALSE","America/Chicago"
-"53051","43.14878","-88.12274","Menomonee Falls","WI","Wisconsin","TRUE","","37219","436.3","55133","Waukesha","{""55133"": ""100""}","Waukesha","55133","FALSE","FALSE","America/Chicago"
-"53057","43.78927","-88.24517","Mount Calvary","WI","Wisconsin","TRUE","","1515","17.8","55039","Fond du Lac","{""55039"": ""100""}","Fond du Lac","55039","FALSE","FALSE","America/Chicago"
-"53058","43.10999","-88.4035","Nashotah","WI","Wisconsin","TRUE","","3313","221.2","55133","Waukesha","{""55133"": ""100""}","Waukesha","55133","FALSE","FALSE","America/Chicago"
-"53059","43.28863","-88.52972","Neosho","WI","Wisconsin","TRUE","","1832","22.4","55027","Dodge","{""55027"": ""100""}","Dodge","55027","FALSE","FALSE","America/Chicago"
-"53061","43.94409","-88.12167","New Holstein","WI","Wisconsin","TRUE","","4944","41.7","55015","Calumet","{""55015"": ""91.11"", ""55039"": ""7.91"", ""55071"": ""0.98""}","Calumet|Fond du Lac|Manitowoc","55015|55039|55071","FALSE","FALSE","America/Chicago"
-"53063","43.96272","-87.80144","Newton","WI","Wisconsin","TRUE","","1677","16.5","55071","Manitowoc","{""55071"": ""100""}","Manitowoc","55071","FALSE","FALSE","America/Chicago"
-"53065","43.68397","-88.56886","Oakfield","WI","Wisconsin","TRUE","","2208","19.1","55039","Fond du Lac","{""55039"": ""99.24"", ""55027"": ""0.76""}","Fond du Lac|Dodge","55039|55027","FALSE","FALSE","America/Chicago"
-"53066","43.11314","-88.48992","Oconomowoc","WI","Wisconsin","TRUE","","35357","129.0","55133","Waukesha","{""55133"": ""89.32"", ""55055"": ""6.27"", ""55027"": ""4.41""}","Waukesha|Jefferson|Dodge","55133|55055|55027","FALSE","FALSE","America/Chicago"
-"53069","43.11378","-88.43298","Okauchee","WI","Wisconsin","TRUE","","685","684.3","55133","Waukesha","{""55133"": ""100""}","Waukesha","55133","FALSE","FALSE","America/Chicago"
-"53070","43.62349","-87.80988","Oostburg","WI","Wisconsin","TRUE","","4940","66.7","55117","Sheboygan","{""55117"": ""100""}","Sheboygan","55117","FALSE","FALSE","America/Chicago"
-"53072","43.08113","-88.26664","Pewaukee","WI","Wisconsin","TRUE","","25984","344.0","55133","Waukesha","{""55133"": ""100""}","Waukesha","55133","FALSE","FALSE","America/Chicago"
-"53073","43.75211","-87.98876","Plymouth","WI","Wisconsin","TRUE","","14777","70.0","55117","Sheboygan","{""55117"": ""100""}","Sheboygan","55117","FALSE","FALSE","America/Chicago"
-"53074","43.42621","-87.88359","Port Washington","WI","Wisconsin","TRUE","","12872","165.0","55089","Ozaukee","{""55089"": ""100""}","Ozaukee","55089","FALSE","FALSE","America/Chicago"
-"53075","43.56635","-87.99129","Random Lake","WI","Wisconsin","TRUE","","3251","34.6","55117","Sheboygan","{""55117"": ""95.4"", ""55089"": ""4.6""}","Sheboygan|Ozaukee","55117|55089","FALSE","FALSE","America/Chicago"
-"53076","43.2684","-88.20707","Richfield","WI","Wisconsin","TRUE","","4441","77.3","55131","Washington","{""55131"": ""100""}","Washington","55131","FALSE","FALSE","America/Chicago"
-"53078","43.31933","-88.4601","Rubicon","WI","Wisconsin","TRUE","","1715","19.6","55027","Dodge","{""55027"": ""100""}","Dodge","55027","FALSE","FALSE","America/Chicago"
-"53079","43.80915","-88.18454","Saint Cloud","WI","Wisconsin","TRUE","","1508","17.1","55039","Fond du Lac","{""55039"": ""98.23"", ""55117"": ""1.77""}","Fond du Lac|Sheboygan","55039|55117","FALSE","FALSE","America/Chicago"
-"53080","43.40951","-87.98748","Saukville","WI","Wisconsin","TRUE","","5718","76.9","55089","Ozaukee","{""55089"": ""100""}","Ozaukee","55089","FALSE","FALSE","America/Chicago"
-"53081","43.71276","-87.74032","Sheboygan","WI","Wisconsin","TRUE","","42199","638.2","55117","Sheboygan","{""55117"": ""100""}","Sheboygan","55117","FALSE","FALSE","America/Chicago"
-"53083","43.8164","-87.77057","Sheboygan","WI","Wisconsin","TRUE","","20479","244.0","55117","Sheboygan","{""55117"": ""100""}","Sheboygan","55117","FALSE","FALSE","America/Chicago"
-"53085","43.73592","-87.85119","Sheboygan Falls","WI","Wisconsin","TRUE","","11537","62.6","55117","Sheboygan","{""55117"": ""100""}","Sheboygan","55117","FALSE","FALSE","America/Chicago"
-"53086","43.32336","-88.27199","Slinger","WI","Wisconsin","TRUE","","8279","148.9","55131","Washington","{""55131"": ""100""}","Washington","55131","FALSE","FALSE","America/Chicago"
-"53088","44.07003","-88.30063","Stockbridge","WI","Wisconsin","TRUE","","406","119.3","55015","Calumet","{""55015"": ""100""}","Calumet","55015","FALSE","FALSE","America/Chicago"
-"53089","43.1472","-88.23476","Sussex","WI","Wisconsin","TRUE","","19128","271.5","55133","Waukesha","{""55133"": ""100""}","Waukesha","55133","FALSE","FALSE","America/Chicago"
-"53090","43.45568","-88.18518","West Bend","WI","Wisconsin","TRUE","","21687","149.4","55131","Washington","{""55131"": ""99.07"", ""55089"": ""0.93""}","Washington|Ozaukee","55131|55089","FALSE","FALSE","America/Chicago"
-"53091","43.49609","-88.43664","Theresa","WI","Wisconsin","TRUE","","1935","29.0","55027","Dodge","{""55027"": ""97.42"", ""55131"": ""2.58""}","Dodge|Washington","55027|55131","FALSE","FALSE","America/Chicago"
-"53092","43.22139","-87.95366","Mequon","WI","Wisconsin","TRUE","","20983","398.0","55089","Ozaukee","{""55089"": ""100""}","Ozaukee","55089","FALSE","FALSE","America/Chicago"
-"53093","43.65997","-87.94223","Waldo","WI","Wisconsin","TRUE","","2036","39.1","55117","Sheboygan","{""55117"": ""100""}","Sheboygan","55117","FALSE","FALSE","America/Chicago"
-"53094","43.14566","-88.73039","Watertown","WI","Wisconsin","TRUE","","19301","83.1","55055","Jefferson","{""55055"": ""100""}","Jefferson","55055","FALSE","FALSE","America/Chicago"
-"53095","43.38903","-88.15788","West Bend","WI","Wisconsin","TRUE","","27351","146.8","55131","Washington","{""55131"": ""99.17"", ""55089"": ""0.83""}","Washington|Ozaukee","55131|55089","FALSE","FALSE","America/Chicago"
-"53097","43.24581","-88.0067","Mequon","WI","Wisconsin","TRUE","","6318","90.6","55089","Ozaukee","{""55089"": ""100""}","Ozaukee","55089","FALSE","FALSE","America/Chicago"
-"53098","43.24963","-88.71305","Watertown","WI","Wisconsin","TRUE","","11685","43.7","55027","Dodge","{""55027"": ""100""}","Dodge","55027","FALSE","FALSE","America/Chicago"
-"53103","42.88164","-88.21375","Big Bend","WI","Wisconsin","TRUE","","3626","108.9","55133","Waukesha","{""55133"": ""100""}","Waukesha","55133","FALSE","FALSE","America/Chicago"
-"53104","42.55728","-88.03498","Bristol","WI","Wisconsin","TRUE","","5437","65.9","55059","Kenosha","{""55059"": ""100""}","Kenosha","55059","FALSE","FALSE","America/Chicago"
-"53105","42.66416","-88.27988","Burlington","WI","Wisconsin","TRUE","","29781","73.0","55101","Racine","{""55101"": ""68.04"", ""55127"": ""17.83"", ""55059"": ""14.13""}","Racine|Walworth|Kenosha","55101|55127|55059","FALSE","FALSE","America/Chicago"
-"53108","42.81978","-87.94647","Caledonia","WI","Wisconsin","TRUE","","3417","66.6","55101","Racine","{""55101"": ""100""}","Racine","55101","FALSE","FALSE","America/Chicago"
-"53110","42.94672","-87.86398","Cudahy","WI","Wisconsin","TRUE","","18271","1481.7","55079","Milwaukee","{""55079"": ""100""}","Milwaukee","55079","FALSE","FALSE","America/Chicago"
-"53114","42.59736","-88.75083","Darien","WI","Wisconsin","TRUE","","2901","32.3","55127","Walworth","{""55127"": ""92.72"", ""55105"": ""7.28""}","Walworth|Rock","55127|55105","FALSE","FALSE","America/Chicago"
-"53115","42.65545","-88.67317","Delavan","WI","Wisconsin","TRUE","","15998","86.7","55127","Walworth","{""55127"": ""100""}","Walworth","55127","FALSE","FALSE","America/Chicago"
-"53118","42.97132","-88.49083","Dousman","WI","Wisconsin","TRUE","","7112","73.3","55133","Waukesha","{""55133"": ""93.21"", ""55055"": ""6.79""}","Waukesha|Jefferson","55133|55055","FALSE","FALSE","America/Chicago"
-"53119","42.88488","-88.48554","Eagle","WI","Wisconsin","TRUE","","5895","58.9","55133","Waukesha","{""55133"": ""93.56"", ""55127"": ""6.44""}","Waukesha|Walworth","55133|55127","FALSE","FALSE","America/Chicago"
-"53120","42.80064","-88.41664","East Troy","WI","Wisconsin","TRUE","","9485","63.4","55127","Walworth","{""55127"": ""96.45"", ""55101"": ""3.55""}","Walworth|Racine","55127|55101","FALSE","FALSE","America/Chicago"
-"53121","42.70882","-88.52927","Elkhorn","WI","Wisconsin","TRUE","","18949","63.5","55127","Walworth","{""55127"": ""100""}","Walworth","55127","FALSE","FALSE","America/Chicago"
-"53122","43.04813","-88.08681","Elm Grove","WI","Wisconsin","TRUE","","6153","727.0","55133","Waukesha","{""55133"": ""100""}","Waukesha","55133","FALSE","FALSE","America/Chicago"
-"53125","42.54793","-88.56179","Fontana","WI","Wisconsin","TRUE","","1741","123.1","55127","Walworth","{""55127"": ""100""}","Walworth","55127","FALSE","FALSE","America/Chicago"
-"53126","42.78838","-87.99671","Franksville","WI","Wisconsin","TRUE","","6933","51.3","55101","Racine","{""55101"": ""100""}","Racine","55101","FALSE","FALSE","America/Chicago"
-"53128","42.53087","-88.33951","Genoa City","WI","Wisconsin","TRUE","","9052","137.5","55127","Walworth","{""55127"": ""87.35"", ""55059"": ""12.65""}","Walworth|Kenosha","55127|55059","FALSE","FALSE","America/Chicago"
-"53129","42.93801","-88.00003","Greendale","WI","Wisconsin","TRUE","","14148","1062.4","55079","Milwaukee","{""55079"": ""100""}","Milwaukee","55079","FALSE","FALSE","America/Chicago"
-"53130","42.94103","-88.0489","Hales Corners","WI","Wisconsin","TRUE","","7564","914.6","55079","Milwaukee","{""55079"": ""100""}","Milwaukee","55079","FALSE","FALSE","America/Chicago"
-"53132","42.8856","-88.01084","Franklin","WI","Wisconsin","TRUE","","35782","397.2","55079","Milwaukee","{""55079"": ""100""}","Milwaukee","55079","FALSE","FALSE","America/Chicago"
-"53137","43.00563","-88.6687","Helenville","WI","Wisconsin","TRUE","","1690","20.2","55055","Jefferson","{""55055"": ""100""}","Jefferson","55055","FALSE","FALSE","America/Chicago"
-"53139","42.68594","-88.11952","Kansasville","WI","Wisconsin","TRUE","","2324","30.0","55101","Racine","{""55101"": ""83.69"", ""55059"": ""16.31""}","Racine|Kenosha","55101|55059","FALSE","FALSE","America/Chicago"
-"53140","42.62256","-87.83","Kenosha","WI","Wisconsin","TRUE","","29671","1333.5","55059","Kenosha","{""55059"": ""100""}","Kenosha","55059","FALSE","FALSE","America/Chicago"
-"53142","42.54277","-87.94223","Kenosha","WI","Wisconsin","TRUE","","33447","595.9","55059","Kenosha","{""55059"": ""100""}","Kenosha","55059","FALSE","FALSE","America/Chicago"
-"53143","42.56095","-87.8304","Kenosha","WI","Wisconsin","TRUE","","23115","2137.9","55059","Kenosha","{""55059"": ""100""}","Kenosha","55059","FALSE","FALSE","America/Chicago"
-"53144","42.61949","-87.92314","Kenosha","WI","Wisconsin","TRUE","","26459","233.7","55059","Kenosha","{""55059"": ""100""}","Kenosha","55059","FALSE","FALSE","America/Chicago"
-"53146","42.97188","-88.1589","New Berlin","WI","Wisconsin","TRUE","","8082","170.1","55133","Waukesha","{""55133"": ""100""}","Waukesha","55133","FALSE","FALSE","America/Chicago"
-"53147","42.57095","-88.45149","Lake Geneva","WI","Wisconsin","TRUE","","16858","91.5","55127","Walworth","{""55127"": ""100""}","Walworth","55127","FALSE","FALSE","America/Chicago"
-"53149","42.87777","-88.3411","Mukwonago","WI","Wisconsin","TRUE","","20252","133.1","55133","Waukesha","{""55133"": ""95.08"", ""55127"": ""3.59"", ""55101"": ""1.33""}","Waukesha|Walworth|Racine","55133|55127|55101","FALSE","FALSE","America/Chicago"
-"53150","42.8843","-88.12768","Muskego","WI","Wisconsin","TRUE","","25824","297.9","55133","Waukesha","{""55133"": ""98.5"", ""55101"": ""1.5""}","Waukesha|Racine","55133|55101","FALSE","FALSE","America/Chicago"
-"53151","42.97409","-88.09873","New Berlin","WI","Wisconsin","TRUE","","31515","684.9","55133","Waukesha","{""55133"": ""100""}","Waukesha","55133","FALSE","FALSE","America/Chicago"
-"53153","42.93381","-88.40785","North Prairie","WI","Wisconsin","TRUE","","2465","233.0","55133","Waukesha","{""55133"": ""100""}","Waukesha","55133","FALSE","FALSE","America/Chicago"
-"53154","42.88039","-87.90087","Oak Creek","WI","Wisconsin","TRUE","","36066","488.7","55079","Milwaukee","{""55079"": ""100""}","Milwaukee","55079","FALSE","FALSE","America/Chicago"
-"53156","42.88772","-88.59074","Palmyra","WI","Wisconsin","TRUE","","2973","35.6","55055","Jefferson","{""55055"": ""100""}","Jefferson","55055","FALSE","FALSE","America/Chicago"
-"53158","42.52429","-87.88838","Pleasant Prairie","WI","Wisconsin","TRUE","","16750","213.3","55059","Kenosha","{""55059"": ""100""}","Kenosha","55059","FALSE","FALSE","America/Chicago"
-"53167","42.74132","-88.22526","Rochester","WI","Wisconsin","TRUE","","700","1265.8","55101","Racine","{""55101"": ""100""}","Racine","55101","FALSE","FALSE","America/Chicago"
-"53168","42.582","-88.13148","Salem","WI","Wisconsin","TRUE","","8814","96.6","55059","Kenosha","{""55059"": ""100""}","Kenosha","55059","FALSE","FALSE","America/Chicago"
-"53170","42.55195","-88.16144","Silver Lake","WI","Wisconsin","TRUE","","2211","832.8","55059","Kenosha","{""55059"": ""100""}","Kenosha","55059","FALSE","FALSE","America/Chicago"
-"53172","42.91197","-87.86266","South Milwaukee","WI","Wisconsin","TRUE","","20957","1675.8","55079","Milwaukee","{""55079"": ""100""}","Milwaukee","55079","FALSE","FALSE","America/Chicago"
-"53177","42.70241","-87.93542","Sturtevant","WI","Wisconsin","TRUE","","8079","114.4","55101","Racine","{""55101"": ""95.98"", ""55059"": ""4.02""}","Racine|Kenosha","55101|55059","FALSE","FALSE","America/Chicago"
-"53178","43.02247","-88.59833","Sullivan","WI","Wisconsin","TRUE","","2755","34.1","55055","Jefferson","{""55055"": ""100""}","Jefferson","55055","FALSE","FALSE","America/Chicago"
-"53179","42.5135","-88.13113","Trevor","WI","Wisconsin","TRUE","","7143","256.8","55059","Kenosha","{""55059"": ""100""}","Kenosha","55059","FALSE","FALSE","America/Chicago"
-"53181","42.5166","-88.24475","Twin Lakes","WI","Wisconsin","TRUE","","7460","205.1","55059","Kenosha","{""55059"": ""100""}","Kenosha","55059","FALSE","FALSE","America/Chicago"
-"53182","42.6989","-88.04164","Union Grove","WI","Wisconsin","TRUE","","9888","67.2","55101","Racine","{""55101"": ""92.11"", ""55059"": ""7.89""}","Racine|Kenosha","55101|55059","FALSE","FALSE","America/Chicago"
-"53183","43.0043","-88.37322","Wales","WI","Wisconsin","TRUE","","2945","319.9","55133","Waukesha","{""55133"": ""100""}","Waukesha","55133","FALSE","FALSE","America/Chicago"
-"53184","42.53101","-88.6068","Walworth","WI","Wisconsin","TRUE","","4182","55.1","55127","Walworth","{""55127"": ""100""}","Walworth","55127","FALSE","FALSE","America/Chicago"
-"53185","42.79492","-88.19529","Waterford","WI","Wisconsin","TRUE","","19113","160.6","55101","Racine","{""55101"": ""100""}","Racine","55101","FALSE","FALSE","America/Chicago"
-"53186","43.02337","-88.20311","Waukesha","WI","Wisconsin","TRUE","","33065","1015.9","55133","Waukesha","{""55133"": ""100""}","Waukesha","55133","FALSE","FALSE","America/Chicago"
-"53188","43.02214","-88.29138","Waukesha","WI","Wisconsin","TRUE","","35730","500.4","55133","Waukesha","{""55133"": ""100""}","Waukesha","55133","FALSE","FALSE","America/Chicago"
-"53189","42.95324","-88.28223","Waukesha","WI","Wisconsin","TRUE","","26762","218.0","55133","Waukesha","{""55133"": ""100""}","Waukesha","55133","FALSE","FALSE","America/Chicago"
-"53190","42.80597","-88.73329","Whitewater","WI","Wisconsin","TRUE","","19241","55.3","55127","Walworth","{""55127"": ""71.54"", ""55055"": ""21.63"", ""55105"": ""6.83""}","Walworth|Jefferson|Rock","55127|55055|55105","FALSE","FALSE","America/Chicago"
-"53191","42.57946","-88.54526","Williams Bay","WI","Wisconsin","TRUE","","2850","283.8","55127","Walworth","{""55127"": ""100""}","Walworth","55127","FALSE","FALSE","America/Chicago"
-"53192","42.50568","-88.18673","Wilmot","WI","Wisconsin","TRUE","","0","0.0","55059","Kenosha","{""55059"": ""100""}","Kenosha","55059","FALSE","FALSE","America/Chicago"
-"53195","42.51399","-88.49014","Zenda","WI","Wisconsin","TRUE","","154","183.0","55127","Walworth","{""55127"": ""100""}","Walworth","55127","FALSE","FALSE","America/Chicago"
-"53202","43.04513","-87.89819","Milwaukee","WI","Wisconsin","TRUE","","24921","4555.5","55079","Milwaukee","{""55079"": ""100""}","Milwaukee","55079","FALSE","FALSE","America/Chicago"
-"53203","43.03857","-87.91617","Milwaukee","WI","Wisconsin","TRUE","","1726","1487.4","55079","Milwaukee","{""55079"": ""100""}","Milwaukee","55079","FALSE","FALSE","America/Chicago"
-"53204","43.01827","-87.9255","Milwaukee","WI","Wisconsin","TRUE","","38678","4549.2","55079","Milwaukee","{""55079"": ""100""}","Milwaukee","55079","FALSE","FALSE","America/Chicago"
-"53205","43.05339","-87.93393","Milwaukee","WI","Wisconsin","TRUE","","8908","2432.4","55079","Milwaukee","{""55079"": ""100""}","Milwaukee","55079","FALSE","FALSE","America/Chicago"
-"53206","43.07508","-87.93368","Milwaukee","WI","Wisconsin","TRUE","","22520","3235.5","55079","Milwaukee","{""55079"": ""100""}","Milwaukee","55079","FALSE","FALSE","America/Chicago"
-"53207","42.97199","-87.90148","Milwaukee","WI","Wisconsin","TRUE","","36889","1436.3","55079","Milwaukee","{""55079"": ""100""}","Milwaukee","55079","FALSE","FALSE","America/Chicago"
-"53208","43.04662","-87.96559","Milwaukee","WI","Wisconsin","TRUE","","30161","2984.5","55079","Milwaukee","{""55079"": ""100""}","Milwaukee","55079","FALSE","FALSE","America/Chicago"
-"53209","43.12841","-87.94713","Milwaukee","WI","Wisconsin","TRUE","","46616","1654.3","55079","Milwaukee","{""55079"": ""100""}","Milwaukee","55079","FALSE","FALSE","America/Chicago"
-"53210","43.06881","-87.9738","Milwaukee","WI","Wisconsin","TRUE","","26793","4065.3","55079","Milwaukee","{""55079"": ""100""}","Milwaukee","55079","FALSE","FALSE","America/Chicago"
-"53211","43.08262","-87.8842","Milwaukee","WI","Wisconsin","TRUE","","35457","3507.4","55079","Milwaukee","{""55079"": ""100""}","Milwaukee","55079","FALSE","FALSE","America/Chicago"
-"53212","43.07455","-87.90853","Milwaukee","WI","Wisconsin","TRUE","","30546","2893.6","55079","Milwaukee","{""55079"": ""100""}","Milwaukee","55079","FALSE","FALSE","America/Chicago"
-"53213","43.04889","-88.00141","Milwaukee","WI","Wisconsin","TRUE","","27667","2647.9","55079","Milwaukee","{""55079"": ""100""}","Milwaukee","55079","FALSE","FALSE","America/Chicago"
-"53214","43.02079","-88.01465","Milwaukee","WI","Wisconsin","TRUE","","35543","1886.4","55079","Milwaukee","{""55079"": ""100""}","Milwaukee","55079","FALSE","FALSE","America/Chicago"
-"53215","42.99922","-87.9468","Milwaukee","WI","Wisconsin","TRUE","","60010","4093.0","55079","Milwaukee","{""55079"": ""100""}","Milwaukee","55079","FALSE","FALSE","America/Chicago"
-"53216","43.08636","-87.97635","Milwaukee","WI","Wisconsin","TRUE","","33583","2795.4","55079","Milwaukee","{""55079"": ""100""}","Milwaukee","55079","FALSE","FALSE","America/Chicago"
-"53217","43.15744","-87.91631","Milwaukee","WI","Wisconsin","TRUE","","28661","782.2","55079","Milwaukee","{""55079"": ""99.7"", ""55089"": ""0.3""}","Milwaukee|Ozaukee","55079|55089","FALSE","FALSE","America/Chicago"
-"53218","43.11472","-87.99312","Milwaukee","WI","Wisconsin","TRUE","","41974","2759.2","55079","Milwaukee","{""55079"": ""100""}","Milwaukee","55079","FALSE","FALSE","America/Chicago"
-"53219","42.99546","-87.99218","Milwaukee","WI","Wisconsin","TRUE","","34878","2722.6","55079","Milwaukee","{""55079"": ""100""}","Milwaukee","55079","FALSE","FALSE","America/Chicago"
-"53220","42.96513","-87.99135","Milwaukee","WI","Wisconsin","TRUE","","26360","1837.4","55079","Milwaukee","{""55079"": ""100""}","Milwaukee","55079","FALSE","FALSE","America/Chicago"
-"53221","42.95406","-87.94392","Milwaukee","WI","Wisconsin","TRUE","","40109","1695.5","55079","Milwaukee","{""55079"": ""100""}","Milwaukee","55079","FALSE","FALSE","America/Chicago"
-"53222","43.08244","-88.03549","Milwaukee","WI","Wisconsin","TRUE","","26367","1841.1","55079","Milwaukee","{""55079"": ""100""}","Milwaukee","55079","FALSE","FALSE","America/Chicago"
-"53223","43.1634","-87.99049","Milwaukee","WI","Wisconsin","TRUE","","29244","1108.9","55079","Milwaukee","{""55079"": ""100""}","Milwaukee","55079","FALSE","FALSE","America/Chicago"
-"53224","43.16331","-88.03964","Milwaukee","WI","Wisconsin","TRUE","","22308","877.4","55079","Milwaukee","{""55079"": ""100""}","Milwaukee","55079","FALSE","FALSE","America/Chicago"
-"53225","43.11501","-88.04186","Milwaukee","WI","Wisconsin","TRUE","","26551","1493.2","55079","Milwaukee","{""55079"": ""99.98"", ""55133"": ""0.02""}","Milwaukee|Waukesha","55079|55133","FALSE","FALSE","America/Chicago"
-"53226","43.04948","-88.04215","Milwaukee","WI","Wisconsin","TRUE","","18940","1063.9","55079","Milwaukee","{""55079"": ""100""}","Milwaukee","55079","FALSE","FALSE","America/Chicago"
-"53227","42.99555","-88.04252","Milwaukee","WI","Wisconsin","TRUE","","23609","1790.6","55079","Milwaukee","{""55079"": ""100""}","Milwaukee","55079","FALSE","FALSE","America/Chicago"
-"53228","42.96682","-88.0434","Milwaukee","WI","Wisconsin","TRUE","","14703","1087.8","55079","Milwaukee","{""55079"": ""100""}","Milwaukee","55079","FALSE","FALSE","America/Chicago"
-"53233","43.03691","-87.93383","Milwaukee","WI","Wisconsin","TRUE","","15143","3462.0","55079","Milwaukee","{""55079"": ""100""}","Milwaukee","55079","FALSE","FALSE","America/Chicago"
-"53235","42.97168","-87.87294","Saint Francis","WI","Wisconsin","TRUE","","9519","1435.4","55079","Milwaukee","{""55079"": ""100""}","Milwaukee","55079","FALSE","FALSE","America/Chicago"
-"53295","43.02243","-87.97609","Milwaukee","WI","Wisconsin","TRUE","","173","286.7","55079","Milwaukee","{""55079"": ""100""}","Milwaukee","55079","FALSE","FALSE","America/Chicago"
-"53402","42.79871","-87.82385","Racine","WI","Wisconsin","TRUE","","33554","632.6","55101","Racine","{""55101"": ""100""}","Racine","55101","FALSE","FALSE","America/Chicago"
-"53403","42.68864","-87.82515","Racine","WI","Wisconsin","TRUE","","26339","1066.9","55101","Racine","{""55101"": ""98.29"", ""55059"": ""1.71""}","Racine|Kenosha","55101|55059","FALSE","FALSE","America/Chicago"
-"53404","42.75379","-87.81121","Racine","WI","Wisconsin","TRUE","","14996","1299.6","55101","Racine","{""55101"": ""100""}","Racine","55101","FALSE","FALSE","America/Chicago"
-"53405","42.72615","-87.82545","Racine","WI","Wisconsin","TRUE","","25441","1509.7","55101","Racine","{""55101"": ""100""}","Racine","55101","FALSE","FALSE","America/Chicago"
-"53406","42.72989","-87.8649","Racine","WI","Wisconsin","TRUE","","26160","608.6","55101","Racine","{""55101"": ""100""}","Racine","55101","FALSE","FALSE","America/Chicago"
-"53501","42.60606","-89.06536","Afton","WI","Wisconsin","TRUE","","191","1131.0","55105","Rock","{""55105"": ""100""}","Rock","55105","FALSE","FALSE","America/Chicago"
-"53502","42.73287","-89.44184","Albany","WI","Wisconsin","TRUE","","2515","19.0","55045","Green","{""55045"": ""100""}","Green","55045","FALSE","FALSE","America/Chicago"
-"53503","43.1393","-89.95615","Arena","WI","Wisconsin","TRUE","","1963","13.4","55049","Iowa","{""55049"": ""100""}","Iowa","55049","FALSE","FALSE","America/Chicago"
-"53504","42.70422","-89.86003","Argyle","WI","Wisconsin","TRUE","","2039","8.6","55065","Lafayette","{""55065"": ""72.84"", ""55045"": ""27.16""}","Lafayette|Green","55065|55045","FALSE","FALSE","America/Chicago"
-"53505","42.65691","-88.81901","Avalon","WI","Wisconsin","TRUE","","357","7.5","55105","Rock","{""55105"": ""100""}","Rock","55105","FALSE","FALSE","America/Chicago"
-"53506","43.15083","-90.28774","Avoca","WI","Wisconsin","TRUE","","1043","6.4","55049","Iowa","{""55049"": ""100""}","Iowa","55049","FALSE","FALSE","America/Chicago"
-"53507","43.00235","-89.9026","Barneveld","WI","Wisconsin","TRUE","","2149","13.2","55049","Iowa","{""55049"": ""100""}","Iowa","55049","FALSE","FALSE","America/Chicago"
-"53508","42.86884","-89.56429","Belleville","WI","Wisconsin","TRUE","","5733","31.9","55025","Dane","{""55025"": ""57.49"", ""55045"": ""42.51""}","Dane|Green","55025|55045","FALSE","FALSE","America/Chicago"
-"53510","42.73729","-90.31818","Belmont","WI","Wisconsin","TRUE","","1482","13.6","55065","Lafayette","{""55065"": ""100""}","Lafayette","55065","FALSE","FALSE","America/Chicago"
-"53511","42.54557","-89.09499","Beloit","WI","Wisconsin","TRUE","","49256","172.1","55105","Rock","{""55105"": ""100""}","Rock","55105","FALSE","FALSE","America/Chicago"
-"53515","43.11685","-89.75134","Black Earth","WI","Wisconsin","TRUE","","2281","23.7","55025","Dane","{""55025"": ""100""}","Dane","55025","FALSE","FALSE","America/Chicago"
-"53516","42.80168","-89.86334","Blanchardville","WI","Wisconsin","TRUE","","2268","10.5","55065","Lafayette","{""55065"": ""51.53"", ""55045"": ""32.34"", ""55049"": ""14.5"", ""55025"": ""1.63""}","Lafayette|Green|Iowa|Dane","55065|55045|55049|55025","FALSE","FALSE","America/Chicago"
-"53517","43.03593","-89.8317","Blue Mounds","WI","Wisconsin","TRUE","","1925","16.8","55025","Dane","{""55025"": ""81.96"", ""55049"": ""18.04""}","Dane|Iowa","55025|55049","FALSE","FALSE","America/Chicago"
-"53518","43.24518","-90.59399","Blue River","WI","Wisconsin","TRUE","","1393","7.2","55103","Richland","{""55103"": ""59.47"", ""55043"": ""39.02"", ""55023"": ""1.5""}","Richland|Grant|Crawford","55103|55043|55023","FALSE","FALSE","America/Chicago"
-"53520","42.59967","-89.35857","Brodhead","WI","Wisconsin","TRUE","","6510","20.5","55045","Green","{""55045"": ""81.45"", ""55105"": ""18.55""}","Green|Rock","55045|55105","FALSE","FALSE","America/Chicago"
-"53521","42.84109","-89.40278","Brooklyn","WI","Wisconsin","TRUE","","3739","23.6","55025","Dane","{""55025"": ""52.68"", ""55045"": ""39.2"", ""55105"": ""8.12""}","Dane|Green|Rock","55025|55045|55105","FALSE","FALSE","America/Chicago"
-"53522","42.55635","-89.79023","Browntown","WI","Wisconsin","TRUE","","996","9.9","55045","Green","{""55045"": ""93.27"", ""55065"": ""6.73""}","Green|Lafayette","55045|55065","FALSE","FALSE","America/Chicago"
-"53523","42.98402","-89.03208","Cambridge","WI","Wisconsin","TRUE","","5182","41.3","55025","Dane","{""55025"": ""51.22"", ""55055"": ""48.78""}","Dane|Jefferson","55025|55055","FALSE","FALSE","America/Chicago"
-"53525","42.54801","-88.85533","Clinton","WI","Wisconsin","TRUE","","4032","27.9","55105","Rock","{""55105"": ""100""}","Rock","55105","FALSE","FALSE","America/Chicago"
-"53526","42.9741","-90.34362","Cobb","WI","Wisconsin","TRUE","","620","29.5","55049","Iowa","{""55049"": ""100""}","Iowa","55049","FALSE","FALSE","America/Chicago"
-"53527","43.06173","-89.1927","Cottage Grove","WI","Wisconsin","TRUE","","10950","117.6","55025","Dane","{""55025"": ""100""}","Dane","55025","FALSE","FALSE","America/Chicago"
-"53528","43.11866","-89.63877","Cross Plains","WI","Wisconsin","TRUE","","6258","51.7","55025","Dane","{""55025"": ""100""}","Dane","55025","FALSE","FALSE","America/Chicago"
-"53529","43.24143","-89.51559","Dane","WI","Wisconsin","TRUE","","2068","21.8","55025","Dane","{""55025"": ""100""}","Dane","55025","FALSE","FALSE","America/Chicago"
-"53530","42.69384","-90.10584","Darlington","WI","Wisconsin","TRUE","","4457","12.9","55065","Lafayette","{""55065"": ""100""}","Lafayette","55065","FALSE","FALSE","America/Chicago"
-"53531","43.06122","-89.10168","Deerfield","WI","Wisconsin","TRUE","","4624","42.2","55025","Dane","{""55025"": ""100""}","Dane","55025","FALSE","FALSE","America/Chicago"
-"53532","43.24904","-89.32467","Deforest","WI","Wisconsin","TRUE","","15696","112.1","55025","Dane","{""55025"": ""98.31"", ""55021"": ""1.69""}","Dane|Columbia","55025|55021","FALSE","FALSE","America/Chicago"
-"53533","42.99399","-90.14677","Dodgeville","WI","Wisconsin","TRUE","","7066","19.0","55049","Iowa","{""55049"": ""100""}","Iowa","55049","FALSE","FALSE","America/Chicago"
-"53534","42.84999","-89.0875","Edgerton","WI","Wisconsin","TRUE","","12040","57.2","55105","Rock","{""55105"": ""79.81"", ""55025"": ""18.15"", ""55055"": ""2.03""}","Rock|Dane|Jefferson","55105|55025|55055","FALSE","FALSE","America/Chicago"
-"53536","42.76193","-89.26543","Evansville","WI","Wisconsin","TRUE","","8713","35.6","55105","Rock","{""55105"": ""100""}","Rock","55105","FALSE","FALSE","America/Chicago"
-"53537","42.67244","-89.21045","Footville","WI","Wisconsin","TRUE","","843","368.6","55105","Rock","{""55105"": ""100""}","Rock","55105","FALSE","FALSE","America/Chicago"
-"53538","42.9209","-88.86448","Fort Atkinson","WI","Wisconsin","TRUE","","18528","72.1","55055","Jefferson","{""55055"": ""99.33"", ""55105"": ""0.67""}","Jefferson|Rock","55055|55105","FALSE","FALSE","America/Chicago"
-"53540","43.2293","-90.28481","Gotham","WI","Wisconsin","TRUE","","203","57.2","55103","Richland","{""55103"": ""100""}","Richland","55103","FALSE","FALSE","America/Chicago"
-"53541","42.56614","-90.02929","Gratiot","WI","Wisconsin","TRUE","","931","5.8","55065","Lafayette","{""55065"": ""100""}","Lafayette","55065","FALSE","FALSE","America/Chicago"
-"53543","43.05436","-90.36073","Highland","WI","Wisconsin","TRUE","","1738","8.4","55049","Iowa","{""55049"": ""95.19"", ""55043"": ""4.81""}","Iowa|Grant","55049|55043","FALSE","FALSE","America/Chicago"
-"53544","42.88253","-89.91449","Hollandale","WI","Wisconsin","TRUE","","828","8.0","55049","Iowa","{""55049"": ""98.75"", ""55025"": ""1.25""}","Iowa|Dane","55049|55025","FALSE","FALSE","America/Chicago"
-"53545","42.73551","-89.04054","Janesville","WI","Wisconsin","TRUE","","23208","361.9","55105","Rock","{""55105"": ""100""}","Rock","55105","FALSE","FALSE","America/Chicago"
-"53546","42.65267","-88.94916","Janesville","WI","Wisconsin","TRUE","","30185","141.0","55105","Rock","{""55105"": ""100""}","Rock","55105","FALSE","FALSE","America/Chicago"
-"53548","42.68536","-89.12871","Janesville","WI","Wisconsin","TRUE","","19243","104.0","55105","Rock","{""55105"": ""100""}","Rock","55105","FALSE","FALSE","America/Chicago"
-"53549","42.99112","-88.77675","Jefferson","WI","Wisconsin","TRUE","","10316","57.0","55055","Jefferson","{""55055"": ""100""}","Jefferson","55055","FALSE","FALSE","America/Chicago"
-"53550","42.5596","-89.49335","Juda","WI","Wisconsin","TRUE","","1220","9.8","55045","Green","{""55045"": ""100""}","Green","55045","FALSE","FALSE","America/Chicago"
-"53551","43.08158","-88.91614","Lake Mills","WI","Wisconsin","TRUE","","8656","79.1","55055","Jefferson","{""55055"": ""100""}","Jefferson","55055","FALSE","FALSE","America/Chicago"
-"53553","42.90783","-90.30218","Linden","WI","Wisconsin","TRUE","","602","26.7","55049","Iowa","{""55049"": ""100""}","Iowa","55049","FALSE","FALSE","America/Chicago"
-"53554","42.90148","-90.45066","Livingston","WI","Wisconsin","TRUE","","1152","9.5","55043","Grant","{""55043"": ""88.1"", ""55049"": ""11.9""}","Grant|Iowa","55043|55049","FALSE","FALSE","America/Chicago"
-"53555","43.32154","-89.55904","Lodi","WI","Wisconsin","TRUE","","8728","42.3","55021","Columbia","{""55021"": ""92.78"", ""55025"": ""7.22""}","Columbia|Dane","55021|55025","FALSE","FALSE","America/Chicago"
-"53556","43.23808","-90.24298","Lone Rock","WI","Wisconsin","TRUE","","2642","21.9","55103","Richland","{""55103"": ""87.97"", ""55111"": ""12.03""}","Richland|Sauk","55103|55111","FALSE","FALSE","America/Chicago"
-"53557","43.34225","-88.79883","Lowell","WI","Wisconsin","TRUE","","348","23.9","55027","Dodge","{""55027"": ""100""}","Dodge","55027","FALSE","FALSE","America/Chicago"
-"53558","43.0037","-89.28276","Mcfarland","WI","Wisconsin","TRUE","","12305","273.6","55025","Dane","{""55025"": ""100""}","Dane","55025","FALSE","FALSE","America/Chicago"
-"53559","43.16526","-89.07999","Marshall","WI","Wisconsin","TRUE","","6302","38.2","55025","Dane","{""55025"": ""99.8"", ""55055"": ""0.2""}","Dane|Jefferson","55025|55055","FALSE","FALSE","America/Chicago"
-"53560","43.19328","-89.75666","Mazomanie","WI","Wisconsin","TRUE","","3692","24.2","55025","Dane","{""55025"": ""97.43"", ""55049"": ""2.57""}","Dane|Iowa","55025|55049","FALSE","FALSE","America/Chicago"
-"53561","43.39963","-89.64159","Merrimac","WI","Wisconsin","TRUE","","1970","21.1","55111","Sauk","{""55111"": ""84.3"", ""55021"": ""15.7""}","Sauk|Columbia","55111|55021","FALSE","FALSE","America/Chicago"
-"53562","43.11646","-89.54157","Middleton","WI","Wisconsin","TRUE","","26335","319.3","55025","Dane","{""55025"": ""100""}","Dane","55025","FALSE","FALSE","America/Chicago"
-"53563","42.7917","-88.93357","Milton","WI","Wisconsin","TRUE","","11349","67.8","55105","Rock","{""55105"": ""99.07"", ""55055"": ""0.93""}","Rock|Jefferson","55105|55055","FALSE","FALSE","America/Chicago"
-"53565","42.83912","-90.16508","Mineral Point","WI","Wisconsin","TRUE","","4672","9.9","55049","Iowa","{""55049"": ""87.68"", ""55065"": ""12.32""}","Iowa|Lafayette","55049|55065","FALSE","FALSE","America/Chicago"
-"53566","42.60867","-89.64885","Monroe","WI","Wisconsin","TRUE","","15162","38.0","55045","Green","{""55045"": ""100""}","Green","55045","FALSE","FALSE","America/Chicago"
-"53569","42.98163","-90.43311","Montfort","WI","Wisconsin","TRUE","","1267","11.1","55043","Grant","{""55043"": ""75.5"", ""55049"": ""24.5""}","Grant|Iowa","55043|55049","FALSE","FALSE","America/Chicago"
-"53570","42.73922","-89.61868","Monticello","WI","Wisconsin","TRUE","","2446","13.1","55045","Green","{""55045"": ""100""}","Green","55045","FALSE","FALSE","America/Chicago"
-"53571","43.27802","-89.35327","Morrisonville","WI","Wisconsin","TRUE","","112","105.7","55025","Dane","{""55025"": ""100""}","Dane","55025","FALSE","FALSE","America/Chicago"
-"53572","42.96143","-89.73562","Mount Horeb","WI","Wisconsin","TRUE","","10659","39.5","55025","Dane","{""55025"": ""99.84"", ""55045"": ""0.16""}","Dane|Green","55025|55045","FALSE","FALSE","America/Chicago"
-"53573","43.18541","-90.46751","Muscoda","WI","Wisconsin","TRUE","","3119","11.1","55043","Grant","{""55043"": ""68.32"", ""55103"": ""23.94"", ""55049"": ""7.74""}","Grant|Richland|Iowa","55043|55103|55049","FALSE","FALSE","America/Chicago"
-"53574","42.81652","-89.65015","New Glarus","WI","Wisconsin","TRUE","","3837","35.8","55045","Green","{""55045"": ""98.81"", ""55025"": ""1.19""}","Green|Dane","55045|55025","FALSE","FALSE","America/Chicago"
-"53575","42.9337","-89.38998","Oregon","WI","Wisconsin","TRUE","","16357","115.5","55025","Dane","{""55025"": ""100""}","Dane","55025","FALSE","FALSE","America/Chicago"
-"53576","42.62423","-89.23481","Orfordville","WI","Wisconsin","TRUE","","2300","28.4","55105","Rock","{""55105"": ""100""}","Rock","55105","FALSE","FALSE","America/Chicago"
-"53577","43.31433","-90.07105","Plain","WI","Wisconsin","TRUE","","1387","11.7","55111","Sauk","{""55111"": ""100""}","Sauk","55111","FALSE","FALSE","America/Chicago"
-"53578","43.32208","-89.77613","Prairie Du Sac","WI","Wisconsin","TRUE","","6373","50.0","55111","Sauk","{""55111"": ""88.28"", ""55021"": ""11.72""}","Sauk|Columbia","55111|55021","FALSE","FALSE","America/Chicago"
-"53579","43.29012","-88.87891","Reeseville","WI","Wisconsin","TRUE","","1765","15.9","55027","Dodge","{""55027"": ""100""}","Dodge","55027","FALSE","FALSE","America/Chicago"
-"53580","42.85981","-90.37807","Rewey","WI","Wisconsin","TRUE","","596","11.1","55049","Iowa","{""55049"": ""100""}","Iowa","55049","FALSE","FALSE","America/Chicago"
-"53581","43.37272","-90.41141","Richland Center","WI","Wisconsin","TRUE","","9982","16.2","55103","Richland","{""55103"": ""100""}","Richland","55103","FALSE","FALSE","America/Chicago"
-"53582","43.01834","-89.99178","Ridgeway","WI","Wisconsin","TRUE","","1164","13.1","55049","Iowa","{""55049"": ""100""}","Iowa","55049","FALSE","FALSE","America/Chicago"
-"53583","43.25426","-89.80015","Sauk City","WI","Wisconsin","TRUE","","6015","30.5","55111","Sauk","{""55111"": ""73.74"", ""55025"": ""25.33"", ""55021"": ""0.92""}","Sauk|Dane|Columbia","55111|55025|55021","FALSE","FALSE","America/Chicago"
-"53585","42.52965","-88.71557","Sharon","WI","Wisconsin","TRUE","","2138","30.3","55127","Walworth","{""55127"": ""99.01"", ""55105"": ""0.99""}","Walworth|Rock","55127|55105","FALSE","FALSE","America/Chicago"
-"53586","42.57309","-90.22662","Shullsburg","WI","Wisconsin","TRUE","","2281","8.8","55065","Lafayette","{""55065"": ""100""}","Lafayette","55065","FALSE","FALSE","America/Chicago"
-"53587","42.57809","-89.9032","South Wayne","WI","Wisconsin","TRUE","","1186","7.9","55065","Lafayette","{""55065"": ""100""}","Lafayette","55065","FALSE","FALSE","America/Chicago"
-"53588","43.19261","-90.07965","Spring Green","WI","Wisconsin","TRUE","","3998","11.3","55111","Sauk","{""55111"": ""90.61"", ""55049"": ""9.39""}","Sauk|Iowa","55111|55049","FALSE","FALSE","America/Chicago"
-"53589","42.9269","-89.21277","Stoughton","WI","Wisconsin","TRUE","","20176","92.4","55025","Dane","{""55025"": ""99.9"", ""55105"": ""0.1""}","Dane|Rock","55025|55105","FALSE","FALSE","America/Chicago"
-"53590","43.20077","-89.20597","Sun Prairie","WI","Wisconsin","TRUE","","40417","233.6","55025","Dane","{""55025"": ""100""}","Dane","55025","FALSE","FALSE","America/Chicago"
-"53593","42.98451","-89.57813","Verona","WI","Wisconsin","TRUE","","23676","127.1","55025","Dane","{""55025"": ""100""}","Dane","55025","FALSE","FALSE","America/Chicago"
-"53594","43.187","-88.97222","Waterloo","WI","Wisconsin","TRUE","","5098","27.8","55055","Jefferson","{""55055"": ""82.97"", ""55027"": ""13.36"", ""55025"": ""3.67""}","Jefferson|Dodge|Dane","55055|55027|55025","FALSE","FALSE","America/Chicago"
-"53597","43.18256","-89.45691","Waunakee","WI","Wisconsin","TRUE","","19445","144.9","55025","Dane","{""55025"": ""100""}","Dane","55025","FALSE","FALSE","America/Chicago"
-"53598","43.20628","-89.33763","Windsor","WI","Wisconsin","TRUE","","2713","304.0","55025","Dane","{""55025"": ""100""}","Dane","55025","FALSE","FALSE","America/Chicago"
-"53599","42.64765","-89.85989","Woodford","WI","Wisconsin","TRUE","","50","80.1","55065","Lafayette","{""55065"": ""100""}","Lafayette","55065","FALSE","FALSE","America/Chicago"
-"53702","43.06093","-88.23073","Madison","WI","Wisconsin","TRUE","","170","3944.2","55133","Waukesha","{""55133"": ""100""}","Waukesha","55133","FALSE","FALSE","America/Chicago"
-"53703","43.07984","-89.37708","Madison","WI","Wisconsin","TRUE","","34766","7375.8","55025","Dane","{""55025"": ""100""}","Dane","55025","FALSE","FALSE","America/Chicago"
-"53704","43.13688","-89.34735","Madison","WI","Wisconsin","TRUE","","46090","793.9","55025","Dane","{""55025"": ""100""}","Dane","55025","FALSE","FALSE","America/Chicago"
-"53705","43.07364","-89.46339","Madison","WI","Wisconsin","TRUE","","25643","1505.5","55025","Dane","{""55025"": ""100""}","Dane","55025","FALSE","FALSE","America/Chicago"
-"53706","43.07484","-89.41054","Madison","WI","Wisconsin","TRUE","","6097","4456.8","55025","Dane","{""55025"": ""100""}","Dane","55025","FALSE","FALSE","America/Chicago"
-"53711","43.01504","-89.40923","Madison","WI","Wisconsin","TRUE","","50062","757.3","55025","Dane","{""55025"": ""100""}","Dane","55025","FALSE","FALSE","America/Chicago"
-"53713","43.03713","-89.38561","Madison","WI","Wisconsin","TRUE","","22255","824.1","55025","Dane","{""55025"": ""100""}","Dane","55025","FALSE","FALSE","America/Chicago"
-"53714","43.09867","-89.31218","Madison","WI","Wisconsin","TRUE","","16147","1349.5","55025","Dane","{""55025"": ""100""}","Dane","55025","FALSE","FALSE","America/Chicago"
-"53715","43.06037","-89.39734","Madison","WI","Wisconsin","TRUE","","13508","4310.5","55025","Dane","{""55025"": ""100""}","Dane","55025","FALSE","FALSE","America/Chicago"
-"53716","43.06444","-89.314","Madison","WI","Wisconsin","TRUE","","18480","1086.5","55025","Dane","{""55025"": ""100""}","Dane","55025","FALSE","FALSE","America/Chicago"
-"53717","43.07384","-89.51958","Madison","WI","Wisconsin","TRUE","","12748","1349.9","55025","Dane","{""55025"": ""100""}","Dane","55025","FALSE","FALSE","America/Chicago"
-"53718","43.09842","-89.27339","Madison","WI","Wisconsin","TRUE","","14768","284.5","55025","Dane","{""55025"": ""100""}","Dane","55025","FALSE","FALSE","America/Chicago"
-"53719","43.02756","-89.50153","Madison","WI","Wisconsin","TRUE","","31487","1203.1","55025","Dane","{""55025"": ""100""}","Dane","55025","FALSE","FALSE","America/Chicago"
-"53726","43.06974","-89.42264","Madison","WI","Wisconsin","TRUE","","5612","4376.1","55025","Dane","{""55025"": ""100""}","Dane","55025","FALSE","FALSE","America/Chicago"
-"53792","43.07754","-89.43065","Madison","WI","Wisconsin","TRUE","","0","0.0","55025","Dane","{""55025"": ""0""}","Dane","55025","FALSE","FALSE","America/Chicago"
-"53801","42.92505","-91.06963","Bagley","WI","Wisconsin","TRUE","","861","5.6","55043","Grant","{""55043"": ""100""}","Grant","55043","FALSE","FALSE","America/Chicago"
-"53802","42.80589","-90.88858","Beetown","WI","Wisconsin","TRUE","","44","17.8","55043","Grant","{""55043"": ""100""}","Grant","55043","FALSE","FALSE","America/Chicago"
-"53803","42.55947","-90.35364","Benton","WI","Wisconsin","TRUE","","1211","38.1","55065","Lafayette","{""55065"": ""100""}","Lafayette","55065","FALSE","FALSE","America/Chicago"
-"53804","42.87499","-90.90786","Bloomington","WI","Wisconsin","TRUE","","1334","10.2","55043","Grant","{""55043"": ""100""}","Grant","55043","FALSE","FALSE","America/Chicago"
-"53805","43.1447","-90.68732","Boscobel","WI","Wisconsin","TRUE","","5118","14.2","55043","Grant","{""55043"": ""88.78"", ""55023"": ""11.22""}","Grant|Crawford","55043|55023","FALSE","FALSE","America/Chicago"
-"53806","42.73845","-90.93029","Cassville","WI","Wisconsin","TRUE","","1710","9.5","55043","Grant","{""55043"": ""100""}","Grant","55043","FALSE","FALSE","America/Chicago"
-"53807","42.61173","-90.47021","Cuba City","WI","Wisconsin","TRUE","","5077","18.4","55043","Grant","{""55043"": ""81.29"", ""55065"": ""18.71""}","Grant|Lafayette","55043|55065","FALSE","FALSE","America/Chicago"
-"53808","42.62614","-90.5931","Dickeyville","WI","Wisconsin","TRUE","","1226","573.4","55043","Grant","{""55043"": ""100""}","Grant","55043","FALSE","FALSE","America/Chicago"
-"53809","42.99378","-90.63365","Fennimore","WI","Wisconsin","TRUE","","4246","16.2","55043","Grant","{""55043"": ""100""}","Grant","55043","FALSE","FALSE","America/Chicago"
-"53810","42.82151","-90.99945","Glen Haven","WI","Wisconsin","TRUE","","373","3.9","55043","Grant","{""55043"": ""100""}","Grant","55043","FALSE","FALSE","America/Chicago"
-"53811","42.53599","-90.51387","Hazel Green","WI","Wisconsin","TRUE","","3297","26.2","55043","Grant","{""55043"": ""96.71"", ""55065"": ""3.29""}","Grant|Lafayette","55043|55065","FALSE","FALSE","America/Chicago"
-"53813","42.84391","-90.71955","Lancaster","WI","Wisconsin","TRUE","","5887","15.4","55043","Grant","{""55043"": ""100""}","Grant","55043","FALSE","FALSE","America/Chicago"
-"53816","42.97885","-90.85437","Mount Hope","WI","Wisconsin","TRUE","","841","5.4","55043","Grant","{""55043"": ""100""}","Grant","55043","FALSE","FALSE","America/Chicago"
-"53817","42.94508","-90.96765","Patch Grove","WI","Wisconsin","TRUE","","166","41.2","55043","Grant","{""55043"": ""100""}","Grant","55043","FALSE","FALSE","America/Chicago"
-"53818","42.74737","-90.48892","Platteville","WI","Wisconsin","TRUE","","16179","40.7","55043","Grant","{""55043"": ""95.36"", ""55065"": ""4.47"", ""55049"": ""0.17""}","Grant|Lafayette|Iowa","55043|55065|55049","FALSE","FALSE","America/Chicago"
-"53820","42.69557","-90.71111","Potosi","WI","Wisconsin","TRUE","","2235","9.6","55043","Grant","{""55043"": ""100""}","Grant","55043","FALSE","FALSE","America/Chicago"
-"53821","43.052","-91.05837","Prairie Du Chien","WI","Wisconsin","TRUE","","8058","30.1","55023","Crawford","{""55023"": ""97.13"", ""55043"": ""2.87""}","Crawford|Grant","55023|55043","FALSE","FALSE","America/Chicago"
-"53825","42.91821","-90.59059","Stitzer","WI","Wisconsin","TRUE","","571","7.1","55043","Grant","{""55043"": ""100""}","Grant","55043","FALSE","FALSE","America/Chicago"
-"53826","43.12235","-90.91348","Wauzeka","WI","Wisconsin","TRUE","","1308","7.1","55023","Crawford","{""55023"": ""100""}","Crawford","55023","FALSE","FALSE","America/Chicago"
-"53827","43.05207","-90.83367","Woodman","WI","Wisconsin","TRUE","","261","3.0","55043","Grant","{""55043"": ""100""}","Grant","55043","FALSE","FALSE","America/Chicago"
-"53901","43.55706","-89.48644","Portage","WI","Wisconsin","TRUE","","14751","40.1","55021","Columbia","{""55021"": ""99.63"", ""55077"": ""0.37""}","Columbia|Marquette","55021|55077","FALSE","FALSE","America/Chicago"
-"53910","43.89017","-89.8045","Adams","WI","Wisconsin","TRUE","","3345","21.0","55001","Adams","{""55001"": ""100""}","Adams","55001","FALSE","FALSE","America/Chicago"
-"53911","43.32544","-89.36305","Arlington","WI","Wisconsin","TRUE","","1237","13.4","55021","Columbia","{""55021"": ""98.08"", ""55025"": ""1.92""}","Columbia|Dane","55021|55025","FALSE","FALSE","America/Chicago"
-"53913","43.49603","-89.7288","Baraboo","WI","Wisconsin","TRUE","","20799","61.1","55111","Sauk","{""55111"": ""99.96"", ""55021"": ""0.04""}","Sauk|Columbia","55111|55021","FALSE","FALSE","America/Chicago"
-"53916","43.45547","-88.85942","Beaver Dam","WI","Wisconsin","TRUE","","22552","86.7","55027","Dodge","{""55027"": ""100""}","Dodge","55027","FALSE","FALSE","America/Chicago"
-"53919","43.73482","-88.77605","Brandon","WI","Wisconsin","TRUE","","2761","15.5","55039","Fond du Lac","{""55039"": ""100""}","Fond du Lac","55039","FALSE","FALSE","America/Chicago"
-"53920","43.66696","-89.59605","Briggsville","WI","Wisconsin","TRUE","","393","19.1","55077","Marquette","{""55077"": ""74.15"", ""55001"": ""25.85""}","Marquette|Adams","55077|55001","FALSE","FALSE","America/Chicago"
-"53922","43.5246","-88.70977","Burnett","WI","Wisconsin","TRUE","","863","7.3","55027","Dodge","{""55027"": ""100""}","Dodge","55027","FALSE","FALSE","America/Chicago"
-"53923","43.57359","-89.13717","Cambria","WI","Wisconsin","TRUE","","2139","10.7","55021","Columbia","{""55021"": ""88.85"", ""55047"": ""11.15""}","Columbia|Green Lake","55021|55047","FALSE","FALSE","America/Chicago"
-"53924","43.48544","-90.25622","Cazenovia","WI","Wisconsin","TRUE","","1437","7.9","55103","Richland","{""55103"": ""97.06"", ""55111"": ""2.94""}","Richland|Sauk","55103|55111","FALSE","FALSE","America/Chicago"
-"53925","43.33474","-89.05209","Columbus","WI","Wisconsin","TRUE","","7858","24.2","55021","Columbia","{""55021"": ""80.66"", ""55027"": ""15.63"", ""55025"": ""3.71""}","Columbia|Dodge|Dane","55021|55027|55025","FALSE","FALSE","America/Chicago"
-"53926","43.67075","-89.21169","Dalton","WI","Wisconsin","TRUE","","1665","13.3","55047","Green Lake","{""55047"": ""68"", ""55021"": ""18.24"", ""55077"": ""13.76""}","Green Lake|Columbia|Marquette","55047|55021|55077","FALSE","FALSE","America/Chicago"
-"53928","43.42635","-89.15357","Doylestown","WI","Wisconsin","TRUE","","111","153.0","55021","Columbia","{""55021"": ""100""}","Columbia","55021","FALSE","FALSE","America/Chicago"
-"53929","43.7509","-90.28434","Elroy","WI","Wisconsin","TRUE","","2647","12.8","55057","Juneau","{""55057"": ""84.58"", ""55081"": ""8.16"", ""55123"": ""7.26""}","Juneau|Monroe|Vernon","55057|55081|55123","FALSE","FALSE","America/Chicago"
-"53930","43.68344","-89.49072","Endeavor","WI","Wisconsin","TRUE","","1373","13.1","55077","Marquette","{""55077"": ""100""}","Marquette","55077","FALSE","FALSE","America/Chicago"
-"53931","43.74164","-88.85983","Fairwater","WI","Wisconsin","TRUE","","220","100.2","55039","Fond du Lac","{""55039"": ""100""}","Fond du Lac","55039","FALSE","FALSE","America/Chicago"
-"53932","43.42085","-89.06709","Fall River","WI","Wisconsin","TRUE","","2657","27.7","55021","Columbia","{""55021"": ""97.82"", ""55027"": ""2.18""}","Columbia|Dodge","55021|55027","FALSE","FALSE","America/Chicago"
-"53933","43.5731","-88.88294","Fox Lake","WI","Wisconsin","TRUE","","4455","46.1","55027","Dodge","{""55027"": ""100""}","Dodge","55027","FALSE","FALSE","America/Chicago"
-"53934","43.98193","-89.81915","Friendship","WI","Wisconsin","TRUE","","4389","14.1","55001","Adams","{""55001"": ""100""}","Adams","55001","FALSE","FALSE","America/Chicago"
-"53935","43.58857","-89.067","Friesland","WI","Wisconsin","TRUE","","254","99.5","55021","Columbia","{""55021"": ""100""}","Columbia","55021","FALSE","FALSE","America/Chicago"
-"53936","43.87433","-89.70865","Grand Marsh","WI","Wisconsin","TRUE","","2333","15.2","55001","Adams","{""55001"": ""100""}","Adams","55001","FALSE","FALSE","America/Chicago"
-"53937","43.38661","-90.15233","Hillpoint","WI","Wisconsin","TRUE","","1165","8.8","55111","Sauk","{""55111"": ""85.28"", ""55103"": ""14.72""}","Sauk|Richland","55111|55103","FALSE","FALSE","America/Chicago"
-"53939","43.69169","-89.13067","Kingston","WI","Wisconsin","TRUE","","256","189.7","55047","Green Lake","{""55047"": ""100""}","Green Lake","55047","FALSE","FALSE","America/Chicago"
-"53941","43.57392","-90.13772","La Valle","WI","Wisconsin","TRUE","","3135","17.3","55111","Sauk","{""55111"": ""98.36"", ""55057"": ""1.64""}","Sauk|Juneau","55111|55057","FALSE","FALSE","America/Chicago"
-"53943","43.39384","-90.03058","Loganville","WI","Wisconsin","TRUE","","1047","8.3","55111","Sauk","{""55111"": ""100""}","Sauk","55111","FALSE","FALSE","America/Chicago"
-"53944","43.68666","-89.92579","Lyndon Station","WI","Wisconsin","TRUE","","2097","10.4","55057","Juneau","{""55057"": ""92.09"", ""55111"": ""7.91""}","Juneau|Sauk","55057|55111","FALSE","FALSE","America/Chicago"
-"53946","43.71576","-89.02484","Markesan","WI","Wisconsin","TRUE","","4079","12.4","55047","Green Lake","{""55047"": ""98.04"", ""55039"": ""1.8"", ""55077"": ""0.11"", ""55027"": ""0.05""}","Green Lake|Fond du Lac|Marquette|Dodge","55047|55039|55077|55027","FALSE","FALSE","America/Chicago"
-"53947","43.74678","-89.14009","Marquette","WI","Wisconsin","TRUE","","177","267.5","55047","Green Lake","{""55047"": ""100""}","Green Lake","55047","FALSE","FALSE","America/Chicago"
-"53948","43.77532","-90.04816","Mauston","WI","Wisconsin","TRUE","","8049","21.1","55057","Juneau","{""55057"": ""100""}","Juneau","55057","FALSE","FALSE","America/Chicago"
-"53949","43.78296","-89.33587","Montello","WI","Wisconsin","TRUE","","6098","13.9","55077","Marquette","{""55077"": ""99.45"", ""55047"": ""0.55""}","Marquette|Green Lake","55077|55047","FALSE","FALSE","America/Chicago"
-"53950","43.90181","-90.13635","New Lisbon","WI","Wisconsin","TRUE","","5580","20.9","55057","Juneau","{""55057"": ""100""}","Juneau","55057","FALSE","FALSE","America/Chicago"
-"53951","43.39197","-89.87218","North Freedom","WI","Wisconsin","TRUE","","2233","11.8","55111","Sauk","{""55111"": ""100""}","Sauk","55111","FALSE","FALSE","America/Chicago"
-"53952","43.78323","-89.59856","Oxford","WI","Wisconsin","TRUE","","3219","13.1","55001","Adams","{""55001"": ""57.44"", ""55077"": ""42.56""}","Adams|Marquette","55001|55077","FALSE","FALSE","America/Chicago"
-"53953","43.77254","-89.46829","Packwaukee","WI","Wisconsin","TRUE","","249","38.8","55077","Marquette","{""55077"": ""100""}","Marquette","55077","FALSE","FALSE","America/Chicago"
-"53954","43.55253","-89.31312","Pardeeville","WI","Wisconsin","TRUE","","6664","32.5","55021","Columbia","{""55021"": ""98.12"", ""55077"": ""1.88""}","Columbia|Marquette","55021|55077","FALSE","FALSE","America/Chicago"
-"53955","43.40405","-89.40619","Poynette","WI","Wisconsin","TRUE","","5676","29.6","55021","Columbia","{""55021"": ""100""}","Columbia","55021","FALSE","FALSE","America/Chicago"
-"53956","43.54181","-89.01821","Randolph","WI","Wisconsin","TRUE","","3228","15.9","55027","Dodge","{""55027"": ""60.14"", ""55021"": ""38.15"", ""55047"": ""1.71""}","Dodge|Columbia|Green Lake","55027|55021|55047","FALSE","FALSE","America/Chicago"
-"53959","43.53422","-89.99898","Reedsburg","WI","Wisconsin","TRUE","","13999","48.9","55111","Sauk","{""55111"": ""100""}","Sauk","55111","FALSE","FALSE","America/Chicago"
-"53960","43.42134","-89.23355","Rio","WI","Wisconsin","TRUE","","3446","14.7","55021","Columbia","{""55021"": ""100""}","Columbia","55021","FALSE","FALSE","America/Chicago"
-"53961","43.46255","-89.93557","Rock Springs","WI","Wisconsin","TRUE","","798","12.9","55111","Sauk","{""55111"": ""100""}","Sauk","55111","FALSE","FALSE","America/Chicago"
-"53963","43.63945","-88.74388","Waupun","WI","Wisconsin","TRUE","","13887","64.0","55027","Dodge","{""55027"": ""62.6"", ""55039"": ""37.4""}","Dodge|Fond du Lac","55027|55039","FALSE","FALSE","America/Chicago"
-"53964","43.90959","-89.50927","Westfield","WI","Wisconsin","TRUE","","3606","12.3","55077","Marquette","{""55077"": ""97.53"", ""55001"": ""1.94"", ""55137"": ""0.53""}","Marquette|Adams|Waushara","55077|55001|55137","FALSE","FALSE","America/Chicago"
-"53965","43.67536","-89.75564","Wisconsin Dells","WI","Wisconsin","TRUE","","10450","23.8","55111","Sauk","{""55111"": ""33.71"", ""55001"": ""30.47"", ""55021"": ""30.43"", ""55057"": ""5.4""}","Sauk|Adams|Columbia|Juneau","55111|55001|55021|55057","FALSE","FALSE","America/Chicago"
-"53968","43.64267","-90.22906","Wonewoc","WI","Wisconsin","TRUE","","2278","12.2","55057","Juneau","{""55057"": ""76.6"", ""55111"": ""21.6"", ""55123"": ""1.8""}","Juneau|Sauk|Vernon","55057|55111|55123","FALSE","FALSE","America/Chicago"
-"53969","43.49387","-89.30435","Wyocena","WI","Wisconsin","TRUE","","438","182.3","55021","Columbia","{""55021"": ""100""}","Columbia","55021","FALSE","FALSE","America/Chicago"
-"54001","45.33476","-92.38718","Amery","WI","Wisconsin","TRUE","","7928","26.4","55095","Polk","{""55095"": ""100""}","Polk","55095","FALSE","FALSE","America/Chicago"
-"54002","44.9625","-92.37135","Baldwin","WI","Wisconsin","TRUE","","6361","32.5","55109","St. Croix","{""55109"": ""100""}","St. Croix","55109","FALSE","FALSE","America/Chicago"
-"54003","44.7902","-92.43919","Beldenville","WI","Wisconsin","TRUE","","1058","14.1","55093","Pierce","{""55093"": ""100""}","Pierce","55093","FALSE","FALSE","America/Chicago"
-"54004","45.30862","-92.12583","Clayton","WI","Wisconsin","TRUE","","2207","10.1","55095","Polk","{""55095"": ""58.22"", ""55005"": ""41.78""}","Polk|Barron","55095|55005","FALSE","FALSE","America/Chicago"
-"54005","45.23565","-92.23198","Clear Lake","WI","Wisconsin","TRUE","","3107","15.1","55095","Polk","{""55095"": ""84.2"", ""55109"": ""7.1"", ""55005"": ""5.27"", ""55033"": ""3.44""}","Polk|St. Croix|Barron|Dunn","55095|55109|55005|55033","FALSE","FALSE","America/Chicago"
-"54006","45.59165","-92.65028","Cushing","WI","Wisconsin","TRUE","","598","8.5","55095","Polk","{""55095"": ""100""}","Polk","55095","FALSE","FALSE","America/Chicago"
-"54007","45.18829","-92.35803","Deer Park","WI","Wisconsin","TRUE","","1020","8.3","55109","St. Croix","{""55109"": ""73.99"", ""55095"": ""26.01""}","St. Croix|Polk","55109|55095","FALSE","FALSE","America/Chicago"
-"54009","45.3528","-92.57797","Dresser","WI","Wisconsin","TRUE","","2615","31.3","55095","Polk","{""55095"": ""100""}","Polk","55095","FALSE","FALSE","America/Chicago"
-"54011","44.71608","-92.45864","Ellsworth","WI","Wisconsin","TRUE","","6915","26.0","55093","Pierce","{""55093"": ""100""}","Pierce","55093","FALSE","FALSE","America/Chicago"
-"54013","45.08091","-92.23065","Glenwood City","WI","Wisconsin","TRUE","","3349","12.7","55109","St. Croix","{""55109"": ""99.08"", ""55033"": ""0.92""}","St. Croix|Dunn","55109|55033","FALSE","FALSE","America/Chicago"
-"54014","44.64671","-92.56764","Hager City","WI","Wisconsin","TRUE","","2134","19.0","55093","Pierce","{""55093"": ""100""}","Pierce","55093","FALSE","FALSE","America/Chicago"
-"54015","44.96473","-92.45626","Hammond","WI","Wisconsin","TRUE","","3687","37.6","55109","St. Croix","{""55109"": ""100""}","St. Croix","55109","FALSE","FALSE","America/Chicago"
-"54016","44.97895","-92.69329","Hudson","WI","Wisconsin","TRUE","","31972","181.0","55109","St. Croix","{""55109"": ""100""}","St. Croix","55109","FALSE","FALSE","America/Chicago"
-"54017","45.11889","-92.52065","New Richmond","WI","Wisconsin","TRUE","","17995","50.2","55109","St. Croix","{""55109"": ""99.14"", ""55095"": ""0.86""}","St. Croix|Polk","55109|55095","FALSE","FALSE","America/Chicago"
-"54020","45.2789","-92.65071","Osceola","WI","Wisconsin","TRUE","","7002","35.6","55095","Polk","{""55095"": ""98.69"", ""55109"": ""1.31""}","Polk|St. Croix","55095|55109","FALSE","FALSE","America/Chicago"
-"54021","44.73898","-92.70967","Prescott","WI","Wisconsin","TRUE","","6659","57.7","55093","Pierce","{""55093"": ""100""}","Pierce","55093","FALSE","FALSE","America/Chicago"
-"54022","44.84792","-92.60802","River Falls","WI","Wisconsin","TRUE","","23537","64.7","55093","Pierce","{""55093"": ""72.17"", ""55109"": ""27.83""}","Pierce|St. Croix","55093|55109","FALSE","FALSE","America/Chicago"
-"54023","44.98115","-92.55497","Roberts","WI","Wisconsin","TRUE","","4191","39.2","55109","St. Croix","{""55109"": ""100""}","St. Croix","55109","FALSE","FALSE","America/Chicago"
-"54024","45.49745","-92.6465","Saint Croix Falls","WI","Wisconsin","TRUE","","4748","21.7","55095","Polk","{""55095"": ""100""}","Polk","55095","FALSE","FALSE","America/Chicago"
-"54025","45.14311","-92.6894","Somerset","WI","Wisconsin","TRUE","","7274","57.8","55109","St. Croix","{""55109"": ""100""}","St. Croix","55109","FALSE","FALSE","America/Chicago"
-"54026","45.22603","-92.53037","Star Prairie","WI","Wisconsin","TRUE","","2018","28.1","55095","Polk","{""55095"": ""62.96"", ""55109"": ""37.04""}","Polk|St. Croix","55095|55109","FALSE","FALSE","America/Chicago"
-"54027","44.92414","-92.19588","Wilson","WI","Wisconsin","TRUE","","1045","13.5","55109","St. Croix","{""55109"": ""100""}","St. Croix","55109","FALSE","FALSE","America/Chicago"
-"54028","44.95437","-92.27948","Woodville","WI","Wisconsin","TRUE","","2448","22.8","55109","St. Croix","{""55109"": ""100""}","St. Croix","55109","FALSE","FALSE","America/Chicago"
-"54082","45.07196","-92.75135","Houlton","WI","Wisconsin","TRUE","","1655","47.3","55109","St. Croix","{""55109"": ""100""}","St. Croix","55109","FALSE","FALSE","America/Chicago"
-"54101","44.78959","-88.06277","Abrams","WI","Wisconsin","TRUE","","2723","19.8","55083","Oconto","{""55083"": ""100""}","Oconto","55083","FALSE","FALSE","America/Chicago"
-"54102","45.50014","-87.98358","Amberg","WI","Wisconsin","TRUE","","774","3.0","55075","Marinette","{""55075"": ""100""}","Marinette","55075","FALSE","FALSE","America/Chicago"
-"54103","45.65038","-88.50159","Armstrong Creek","WI","Wisconsin","TRUE","","471","2.4","55041","Forest","{""55041"": ""98.09"", ""55075"": ""1.91""}","Forest|Marinette","55041|55075","FALSE","FALSE","America/Chicago"
-"54104","45.44818","-88.26253","Athelstane","WI","Wisconsin","TRUE","","1179","2.2","55075","Marinette","{""55075"": ""99.43"", ""55041"": ""0.57""}","Marinette|Forest","55075|55041","FALSE","FALSE","America/Chicago"
-"54106","44.48476","-88.45863","Black Creek","WI","Wisconsin","TRUE","","5232","22.0","55087","Outagamie","{""55087"": ""100""}","Outagamie","55087","FALSE","FALSE","America/Chicago"
-"54107","44.69819","-88.44737","Bonduel","WI","Wisconsin","TRUE","","3620","19.0","55115","Shawano","{""55115"": ""99.84"", ""55087"": ""0.16""}","Shawano|Outagamie","55115|55087","FALSE","FALSE","America/Chicago"
-"54110","44.18832","-88.07538","Brillion","WI","Wisconsin","TRUE","","5395","32.2","55015","Calumet","{""55015"": ""86.76"", ""55071"": ""10.94"", ""55009"": ""2.3""}","Calumet|Manitowoc|Brown","55015|55071|55009","FALSE","FALSE","America/Chicago"
-"54111","44.81453","-88.38449","Cecil","WI","Wisconsin","TRUE","","2303","16.9","55115","Shawano","{""55115"": ""96.53"", ""55083"": ""3.47""}","Shawano|Oconto","55115|55083","FALSE","FALSE","America/Chicago"
-"54112","45.04584","-88.04584","Coleman","WI","Wisconsin","TRUE","","2349","14.4","55075","Marinette","{""55075"": ""81.65"", ""55083"": ""18.35""}","Marinette|Oconto","55075|55083","FALSE","FALSE","America/Chicago"
-"54113","44.26422","-88.30647","Combined Locks","WI","Wisconsin","TRUE","","3577","802.8","55087","Outagamie","{""55087"": ""100""}","Outagamie","55087","FALSE","FALSE","America/Chicago"
-"54114","45.25282","-88.12948","Crivitz","WI","Wisconsin","TRUE","","5265","8.3","55075","Marinette","{""55075"": ""94.73"", ""55083"": ""5.27""}","Marinette|Oconto","55075|55083","FALSE","FALSE","America/Chicago"
-"54115","44.40464","-88.09197","De Pere","WI","Wisconsin","TRUE","","45657","140.5","55009","Brown","{""55009"": ""95.03"", ""55087"": ""4.97""}","Brown|Outagamie","55009|55087","FALSE","FALSE","America/Chicago"
-"54119","45.6115","-88.16741","Dunbar","WI","Wisconsin","TRUE","","697","2.9","55075","Marinette","{""55075"": ""100""}","Marinette","55075","FALSE","FALSE","America/Chicago"
-"54120","45.76084","-88.49609","Fence","WI","Wisconsin","TRUE","","249","1.0","55037","Florence","{""55037"": ""63.67"", ""55075"": ""36.33""}","Florence|Marinette","55037|55075","FALSE","FALSE","America/Chicago"
-"54121","45.86474","-88.31981","Florence","WI","Wisconsin","TRUE","","3021","4.5","55037","Florence","{""55037"": ""100""}","Florence","55037","FALSE","FALSE","America/Chicago"
-"54123","44.21126","-88.14301","Forest Junction","WI","Wisconsin","TRUE","","263","210.7","55015","Calumet","{""55015"": ""100""}","Calumet","55015","FALSE","FALSE","America/Chicago"
-"54124","44.90706","-88.36666","Gillett","WI","Wisconsin","TRUE","","3440","14.1","55083","Oconto","{""55083"": ""92.79"", ""55078"": ""4.38"", ""55115"": ""2.83""}","Oconto|Menominee|Shawano","55083|55078|55115","FALSE","FALSE","America/Chicago"
-"54125","45.60064","-88.37509","Goodman","WI","Wisconsin","TRUE","","506","2.6","55075","Marinette","{""55075"": ""99.61"", ""55041"": ""0.39""}","Marinette|Forest","55075|55041","FALSE","FALSE","America/Chicago"
-"54126","44.29013","-88.03134","Greenleaf","WI","Wisconsin","TRUE","","3870","19.7","55009","Brown","{""55009"": ""99.59"", ""55071"": ""0.41""}","Brown|Manitowoc","55009|55071","FALSE","FALSE","America/Chicago"
-"54127","44.79639","-88.2696","Green Valley","WI","Wisconsin","TRUE","","77","352.1","55115","Shawano","{""55115"": ""100""}","Shawano","55115","FALSE","FALSE","America/Chicago"
-"54128","44.86848","-88.80487","Gresham","WI","Wisconsin","TRUE","","1749","13.0","55115","Shawano","{""55115"": ""100""}","Shawano","55115","FALSE","FALSE","America/Chicago"
-"54129","44.13195","-88.20044","Hilbert","WI","Wisconsin","TRUE","","3047","16.2","55015","Calumet","{""55015"": ""100""}","Calumet","55015","FALSE","FALSE","America/Chicago"
-"54130","44.31239","-88.24169","Kaukauna","WI","Wisconsin","TRUE","","25837","125.1","55087","Outagamie","{""55087"": ""94.64"", ""55009"": ""3.58"", ""55015"": ""1.79""}","Outagamie|Brown|Calumet","55087|55009|55015","FALSE","FALSE","America/Chicago"
-"54135","44.92472","-88.6266","Keshena","WI","Wisconsin","TRUE","","3332","16.0","55078","Menominee","{""55078"": ""100""}","Menominee","55078","FALSE","FALSE","America/Chicago"
-"54136","44.26826","-88.33892","Kimberly","WI","Wisconsin","TRUE","","6298","1167.6","55087","Outagamie","{""55087"": ""100""}","Outagamie","55087","FALSE","FALSE","America/Chicago"
-"54137","44.75683","-88.25495","Krakow","WI","Wisconsin","TRUE","","1144","16.9","55115","Shawano","{""55115"": ""68.07"", ""55083"": ""31.93""}","Shawano|Oconto","55115|55083","FALSE","FALSE","America/Chicago"
-"54138","45.32936","-88.42985","Lakewood","WI","Wisconsin","TRUE","","895","4.7","55083","Oconto","{""55083"": ""100""}","Oconto","55083","FALSE","FALSE","America/Chicago"
-"54139","44.95601","-88.07501","Lena","WI","Wisconsin","TRUE","","3221","13.0","55083","Oconto","{""55083"": ""98.8"", ""55075"": ""1.2""}","Oconto|Marinette","55083|55075","FALSE","FALSE","America/Chicago"
-"54140","44.28664","-88.31133","Little Chute","WI","Wisconsin","TRUE","","9589","1153.4","55087","Outagamie","{""55087"": ""100""}","Outagamie","55087","FALSE","FALSE","America/Chicago"
-"54141","44.72742","-88.00603","Little Suamico","WI","Wisconsin","TRUE","","2257","34.0","55083","Oconto","{""55083"": ""100""}","Oconto","55083","FALSE","FALSE","America/Chicago"
-"54143","45.08657","-87.70086","Marinette","WI","Wisconsin","TRUE","","14885","84.8","55075","Marinette","{""55075"": ""100""}","Marinette","55075","FALSE","FALSE","America/Chicago"
-"54149","45.1997","-88.48299","Mountain","WI","Wisconsin","TRUE","","1182","3.6","55083","Oconto","{""55083"": ""100""}","Oconto","55083","FALSE","FALSE","America/Chicago"
-"54150","44.98708","-88.84341","Neopit","WI","Wisconsin","TRUE","","1087","24.5","55078","Menominee","{""55078"": ""76.08"", ""55115"": ""23.92""}","Menominee|Shawano","55078|55115","FALSE","FALSE","America/Chicago"
-"54151","45.72489","-87.98815","Niagara","WI","Wisconsin","TRUE","","3238","10.4","55075","Marinette","{""55075"": ""72.33"", ""55037"": ""27.67""}","Marinette|Florence","55075|55037","FALSE","FALSE","America/Chicago"
-"54153","44.90181","-87.92149","Oconto","WI","Wisconsin","TRUE","","7054","27.0","55083","Oconto","{""55083"": ""100""}","Oconto","55083","FALSE","FALSE","America/Chicago"
-"54154","44.86807","-88.18845","Oconto Falls","WI","Wisconsin","TRUE","","5656","26.2","55083","Oconto","{""55083"": ""95.8"", ""55115"": ""4.2""}","Oconto|Shawano","55083|55115","FALSE","FALSE","America/Chicago"
-"54155","44.52252","-88.19821","Oneida","WI","Wisconsin","TRUE","","7369","82.8","55009","Brown","{""55009"": ""67.99"", ""55087"": ""32.01""}","Brown|Outagamie","55009|55087","FALSE","FALSE","America/Chicago"
-"54156","45.62477","-88.0129","Pembine","WI","Wisconsin","TRUE","","1616","4.6","55075","Marinette","{""55075"": ""100""}","Marinette","55075","FALSE","FALSE","America/Chicago"
-"54157","45.04905","-87.81165","Peshtigo","WI","Wisconsin","TRUE","","5843","25.4","55075","Marinette","{""55075"": ""99.87"", ""55083"": ""0.13""}","Marinette|Oconto","55075|55083","FALSE","FALSE","America/Chicago"
-"54159","45.194","-87.82772","Porterfield","WI","Wisconsin","TRUE","","1150","7.1","55075","Marinette","{""55075"": ""100""}","Marinette","55075","FALSE","FALSE","America/Chicago"
-"54160","44.12057","-88.10046","Potter","WI","Wisconsin","TRUE","","327","282.2","55015","Calumet","{""55015"": ""100""}","Calumet","55015","FALSE","FALSE","America/Chicago"
-"54161","45.12332","-88.15937","Pound","WI","Wisconsin","TRUE","","2792","8.7","55075","Marinette","{""55075"": ""62.43"", ""55083"": ""37.57""}","Marinette|Oconto","55075|55083","FALSE","FALSE","America/Chicago"
-"54162","44.66275","-88.27925","Pulaski","WI","Wisconsin","TRUE","","9127","30.9","55009","Brown","{""55009"": ""51.67"", ""55115"": ""29.61"", ""55083"": ""18.72""}","Brown|Shawano|Oconto","55009|55115|55083","FALSE","FALSE","America/Chicago"
-"54165","44.51889","-88.32055","Seymour","WI","Wisconsin","TRUE","","7641","31.6","55087","Outagamie","{""55087"": ""95.72"", ""55115"": ""3.49"", ""55009"": ""0.8""}","Outagamie|Shawano|Brown","55087|55115|55009","FALSE","FALSE","America/Chicago"
-"54166","44.77703","-88.63245","Shawano","WI","Wisconsin","TRUE","","16620","45.4","55115","Shawano","{""55115"": ""100""}","Shawano","55115","FALSE","FALSE","America/Chicago"
-"54169","44.17644","-88.27799","Sherwood","WI","Wisconsin","TRUE","","2776","313.8","55015","Calumet","{""55015"": ""100""}","Calumet","55015","FALSE","FALSE","America/Chicago"
-"54170","44.5136","-88.57595","Shiocton","WI","Wisconsin","TRUE","","3559","12.0","55087","Outagamie","{""55087"": ""93.59"", ""55115"": ""6.19"", ""55135"": ""0.21""}","Outagamie|Shawano|Waupaca","55087|55115|55135","FALSE","FALSE","America/Chicago"
-"54171","44.71734","-88.11667","Sobieski","WI","Wisconsin","TRUE","","3674","61.2","55083","Oconto","{""55083"": ""100""}","Oconto","55083","FALSE","FALSE","America/Chicago"
-"54173","44.64354","-88.03191","Suamico","WI","Wisconsin","TRUE","","4426","121.4","55009","Brown","{""55009"": ""100""}","Brown","55009","FALSE","FALSE","America/Chicago"
-"54174","45.03767","-88.42948","Suring","WI","Wisconsin","TRUE","","3008","6.1","55083","Oconto","{""55083"": ""94.13"", ""55078"": ""5.87""}","Oconto|Menominee","55083|55078","FALSE","FALSE","America/Chicago"
-"54175","45.30646","-88.62295","Townsend","WI","Wisconsin","TRUE","","936","6.7","55083","Oconto","{""55083"": ""100"", ""55067"": ""0""}","Oconto|Langlade","55083|55067","FALSE","FALSE","America/Chicago"
-"54177","45.35544","-87.888","Wausaukee","WI","Wisconsin","TRUE","","2785","6.2","55075","Marinette","{""55075"": ""100""}","Marinette","55075","FALSE","FALSE","America/Menominee"
-"54180","44.32639","-88.17479","Wrightstown","WI","Wisconsin","TRUE","","3490","328.6","55009","Brown","{""55009"": ""94.72"", ""55087"": ""5.28""}","Brown|Outagamie","55009|55087","FALSE","FALSE","America/Chicago"
-"54201","44.62082","-87.49347","Algoma","WI","Wisconsin","TRUE","","5136","26.5","55061","Kewaunee","{""55061"": ""97.1"", ""55029"": ""2.9""}","Kewaunee|Door","55061|55029","FALSE","FALSE","America/Chicago"
-"54202","45.07718","-87.13809","Baileys Harbor","WI","Wisconsin","TRUE","","1292","12.0","55029","Door","{""55029"": ""100""}","Door","55029","FALSE","FALSE","America/Chicago"
-"54204","44.75871","-87.62032","Brussels","WI","Wisconsin","TRUE","","1608","13.0","55029","Door","{""55029"": ""100""}","Door","55029","FALSE","FALSE","America/Chicago"
-"54205","44.60088","-87.62521","Casco","WI","Wisconsin","TRUE","","2100","19.7","55061","Kewaunee","{""55061"": ""97.01"", ""55029"": ""2.99""}","Kewaunee|Door","55061|55029","FALSE","FALSE","America/Chicago"
-"54207","44.08782","-87.98502","Collins","WI","Wisconsin","TRUE","","146","57.0","55071","Manitowoc","{""55071"": ""100""}","Manitowoc","55071","FALSE","FALSE","America/Chicago"
-"54208","44.36408","-87.79668","Denmark","WI","Wisconsin","TRUE","","6441","24.3","55009","Brown","{""55009"": ""79.31"", ""55061"": ""11.81"", ""55071"": ""8.88""}","Brown|Kewaunee|Manitowoc","55009|55061|55071","FALSE","FALSE","America/Chicago"
-"54209","45.01107","-87.26975","Egg Harbor","WI","Wisconsin","TRUE","","1326","13.0","55029","Door","{""55029"": ""100""}","Door","55029","FALSE","FALSE","America/Chicago"
-"54210","45.25343","-87.0356","Ellison Bay","WI","Wisconsin","TRUE","","758","11.0","55029","Door","{""55029"": ""100""}","Door","55029","FALSE","FALSE","America/Chicago"
-"54211","45.15937","-87.16786","Ephraim","WI","Wisconsin","TRUE","","259","28.2","55029","Door","{""55029"": ""100""}","Door","55029","FALSE","FALSE","America/Chicago"
-"54212","45.12134","-87.22908","Fish Creek","WI","Wisconsin","TRUE","","1035","12.1","55029","Door","{""55029"": ""100""}","Door","55029","FALSE","FALSE","America/Chicago"
-"54213","44.69964","-87.52147","Forestville","WI","Wisconsin","TRUE","","1347","14.2","55029","Door","{""55029"": ""94.91"", ""55061"": ""5.09""}","Door|Kewaunee","55029|55061","FALSE","FALSE","America/Chicago"
-"54214","44.19737","-87.71273","Francis Creek","WI","Wisconsin","TRUE","","257","347.6","55071","Manitowoc","{""55071"": ""100""}","Manitowoc","55071","FALSE","FALSE","America/Chicago"
-"54216","44.43696","-87.58065","Kewaunee","WI","Wisconsin","TRUE","","6246","22.3","55061","Kewaunee","{""55061"": ""100""}","Kewaunee","55061","FALSE","FALSE","America/Chicago"
-"54217","44.55075","-87.71497","Luxemburg","WI","Wisconsin","TRUE","","7281","24.9","55061","Kewaunee","{""55061"": ""83.93"", ""55009"": ""10.61"", ""55029"": ""5.46""}","Kewaunee|Brown|Door","55061|55009|55029","FALSE","FALSE","America/Chicago"
-"54220","44.09757","-87.72976","Manitowoc","WI","Wisconsin","TRUE","","39008","152.6","55071","Manitowoc","{""55071"": ""100""}","Manitowoc","55071","FALSE","FALSE","America/Chicago"
-"54227","44.28012","-87.80783","Maribel","WI","Wisconsin","TRUE","","1561","19.3","55071","Manitowoc","{""55071"": ""100""}","Manitowoc","55071","FALSE","FALSE","America/Chicago"
-"54228","44.27675","-87.64873","Mishicot","WI","Wisconsin","TRUE","","2769","26.6","55071","Manitowoc","{""55071"": ""100""}","Manitowoc","55071","FALSE","FALSE","America/Chicago"
-"54229","44.56155","-87.82307","New Franken","WI","Wisconsin","TRUE","","5066","47.7","55009","Brown","{""55009"": ""100""}","Brown","55009","FALSE","FALSE","America/Chicago"
-"54230","44.15781","-87.91291","Reedsville","WI","Wisconsin","TRUE","","4740","16.7","55071","Manitowoc","{""55071"": ""100""}","Manitowoc","55071","FALSE","FALSE","America/Chicago"
-"54232","44.00743","-87.9243","Saint Nazianz","WI","Wisconsin","TRUE","","840","436.0","55071","Manitowoc","{""55071"": ""100""}","Manitowoc","55071","FALSE","FALSE","America/Chicago"
-"54234","45.18253","-87.09228","Sister Bay","WI","Wisconsin","TRUE","","1644","26.4","55029","Door","{""55029"": ""100""}","Door","55029","FALSE","FALSE","America/Chicago"
-"54235","44.84077","-87.37946","Sturgeon Bay","WI","Wisconsin","TRUE","","16840","33.8","55029","Door","{""55029"": ""100""}","Door","55029","FALSE","FALSE","America/Chicago"
-"54241","44.21813","-87.59652","Two Rivers","WI","Wisconsin","TRUE","","14014","81.5","55071","Manitowoc","{""55071"": ""100""}","Manitowoc","55071","FALSE","FALSE","America/Chicago"
-"54245","44.0271","-87.89606","Valders","WI","Wisconsin","TRUE","","2066","19.7","55071","Manitowoc","{""55071"": ""100""}","Manitowoc","55071","FALSE","FALSE","America/Chicago"
-"54246","45.37524","-86.8974","Washington Island","WI","Wisconsin","TRUE","","850","12.9","55029","Door","{""55029"": ""100""}","Door","55029","FALSE","FALSE","America/Chicago"
-"54247","44.19705","-87.78509","Whitelaw","WI","Wisconsin","TRUE","","1988","22.6","55071","Manitowoc","{""55071"": ""100""}","Manitowoc","55071","FALSE","FALSE","America/Chicago"
-"54301","44.48205","-88.02034","Green Bay","WI","Wisconsin","TRUE","","21501","1277.5","55009","Brown","{""55009"": ""100""}","Brown","55009","FALSE","FALSE","America/Chicago"
-"54302","44.50772","-87.97613","Green Bay","WI","Wisconsin","TRUE","","31633","1275.5","55009","Brown","{""55009"": ""100""}","Brown","55009","FALSE","FALSE","America/Chicago"
-"54303","44.53868","-88.05","Green Bay","WI","Wisconsin","TRUE","","27416","971.1","55009","Brown","{""55009"": ""100""}","Brown","55009","FALSE","FALSE","America/Chicago"
-"54304","44.49407","-88.0679","Green Bay","WI","Wisconsin","TRUE","","27315","897.3","55009","Brown","{""55009"": ""100""}","Brown","55009","FALSE","FALSE","America/Chicago"
-"54307","44.47045","-88.03664","Green Bay","WI","Wisconsin","TRUE","","1173","5582.9","55009","Brown","{""55009"": ""100""}","Brown","55009","FALSE","FALSE","America/Chicago"
-"54311","44.48328","-87.89609","Green Bay","WI","Wisconsin","TRUE","","36289","218.6","55009","Brown","{""55009"": ""100""}","Brown","55009","FALSE","FALSE","America/Chicago"
-"54313","44.58619","-88.11147","Green Bay","WI","Wisconsin","TRUE","","38837","249.8","55009","Brown","{""55009"": ""99.93"", ""55087"": ""0.07""}","Brown|Outagamie","55009|55087","FALSE","FALSE","America/Chicago"
-"54401","44.96559","-89.70676","Wausau","WI","Wisconsin","TRUE","","30549","141.8","55073","Marathon","{""55073"": ""100""}","Marathon","55073","FALSE","FALSE","America/Chicago"
-"54403","45.03139","-89.51374","Wausau","WI","Wisconsin","TRUE","","24525","70.8","55073","Marathon","{""55073"": ""100""}","Marathon","55073","FALSE","FALSE","America/Chicago"
-"54405","44.96139","-90.28741","Abbotsford","WI","Wisconsin","TRUE","","3061","39.5","55019","Clark","{""55019"": ""62.66"", ""55073"": ""37.34""}","Clark|Marathon","55019|55073","FALSE","FALSE","America/Chicago"
-"54406","44.40962","-89.31085","Amherst","WI","Wisconsin","TRUE","","3423","19.7","55097","Portage","{""55097"": ""100""}","Portage","55097","FALSE","FALSE","America/Chicago"
-"54407","44.52623","-89.29339","Amherst Junction","WI","Wisconsin","TRUE","","1468","12.1","55097","Portage","{""55097"": ""100""}","Portage","55097","FALSE","FALSE","America/Chicago"
-"54408","45.02914","-89.31057","Aniwa","WI","Wisconsin","TRUE","","997","8.6","55073","Marathon","{""55073"": ""67.7"", ""55115"": ""28.09"", ""55067"": ""4.21""}","Marathon|Shawano|Langlade","55073|55115|55067","FALSE","FALSE","America/Chicago"
-"54409","45.11913","-89.16997","Antigo","WI","Wisconsin","TRUE","","12900","23.5","55067","Langlade","{""55067"": ""98.19"", ""55073"": ""1.03"", ""55115"": ""0.78""}","Langlade|Marathon|Shawano","55067|55073|55115","FALSE","FALSE","America/Chicago"
-"54410","44.542","-90.03027","Arpin","WI","Wisconsin","TRUE","","2594","15.1","55141","Wood","{""55141"": ""100""}","Wood","55141","FALSE","FALSE","America/Chicago"
-"54411","45.04989","-90.02757","Athens","WI","Wisconsin","TRUE","","5226","10.6","55073","Marathon","{""55073"": ""97.48"", ""55119"": ""2.52""}","Marathon|Taylor","55073|55119","FALSE","FALSE","America/Chicago"
-"54412","44.66906","-89.98049","Auburndale","WI","Wisconsin","TRUE","","2036","10.9","55141","Wood","{""55141"": ""79.64"", ""55073"": ""20.36""}","Wood|Marathon","55141|55073","FALSE","FALSE","America/Chicago"
-"54413","44.28432","-90.13183","Babcock","WI","Wisconsin","TRUE","","149","1.8","55141","Wood","{""55141"": ""100""}","Wood","55141","FALSE","FALSE","America/Chicago"
-"54414","44.95708","-89.17873","Birnamwood","WI","Wisconsin","TRUE","","3520","10.5","55115","Shawano","{""55115"": ""67.74"", ""55073"": ""32.26""}","Shawano|Marathon","55115|55073","FALSE","FALSE","America/Chicago"
-"54416","44.87666","-88.94167","Bowler","WI","Wisconsin","TRUE","","1784","8.3","55115","Shawano","{""55115"": ""100""}","Shawano","55115","FALSE","FALSE","America/Chicago"
-"54417","45.0255","-89.65176","Brokaw","WI","Wisconsin","TRUE","","39","48.3","55073","Marathon","{""55073"": ""100""}","Marathon","55073","FALSE","FALSE","America/Chicago"
-"54418","45.22116","-88.94497","Bryant","WI","Wisconsin","TRUE","","966","3.2","55067","Langlade","{""55067"": ""100""}","Langlade","55067","FALSE","FALSE","America/Chicago"
-"54420","44.61231","-90.35344","Chili","WI","Wisconsin","TRUE","","1268","12.7","55019","Clark","{""55019"": ""96.4"", ""55141"": ""3.6""}","Clark|Wood","55019|55141","FALSE","FALSE","America/Chicago"
-"54421","44.89899","-90.29505","Colby","WI","Wisconsin","TRUE","","3669","20.0","55019","Clark","{""55019"": ""62.29"", ""55073"": ""37.71""}","Clark|Marathon","55019|55073","FALSE","FALSE","America/Chicago"
-"54422","44.98436","-90.45648","Curtiss","WI","Wisconsin","TRUE","","1306","13.0","55019","Clark","{""55019"": ""74.36"", ""55119"": ""25.64""}","Clark|Taylor","55019|55119","FALSE","FALSE","America/Chicago"
-"54423","44.58228","-89.42148","Custer","WI","Wisconsin","TRUE","","2347","17.0","55097","Portage","{""55097"": ""100""}","Portage","55097","FALSE","FALSE","America/Chicago"
-"54424","45.28771","-89.18119","Deerbrook","WI","Wisconsin","TRUE","","1531","3.6","55067","Langlade","{""55067"": ""100""}","Langlade","55067","FALSE","FALSE","America/Chicago"
-"54425","45.00925","-90.33973","Dorchester","WI","Wisconsin","TRUE","","2095","18.3","55019","Clark","{""55019"": ""72.4"", ""55073"": ""21.07"", ""55119"": ""6.53""}","Clark|Marathon|Taylor","55019|55073|55119","FALSE","FALSE","America/Chicago"
-"54426","44.90587","-89.98573","Edgar","WI","Wisconsin","TRUE","","4533","16.2","55073","Marathon","{""55073"": ""100""}","Marathon","55073","FALSE","FALSE","America/Chicago"
-"54427","44.82476","-89.26009","Eland","WI","Wisconsin","TRUE","","1185","10.2","55073","Marathon","{""55073"": ""66.88"", ""55115"": ""33.12""}","Marathon|Shawano","55073|55115","FALSE","FALSE","America/Chicago"
-"54428","45.43252","-89.14769","Elcho","WI","Wisconsin","TRUE","","1006","5.9","55067","Langlade","{""55067"": ""98.4"", ""55085"": ""1.6""}","Langlade|Oneida","55067|55085","FALSE","FALSE","America/Chicago"
-"54430","45.1507","-88.88287","Elton","WI","Wisconsin","TRUE","","156","12.4","55067","Langlade","{""55067"": ""100""}","Langlade","55067","FALSE","FALSE","America/Chicago"
-"54433","45.20014","-90.81672","Gilman","WI","Wisconsin","TRUE","","1864","4.5","55119","Taylor","{""55119"": ""89.16"", ""55017"": ""10.84""}","Taylor|Chippewa","55119|55017","FALSE","FALSE","America/Chicago"
-"54435","45.35639","-89.43915","Gleason","WI","Wisconsin","TRUE","","2032","3.6","55069","Lincoln","{""55069"": ""79.4"", ""55067"": ""20.6""}","Lincoln|Langlade","55069|55067","FALSE","FALSE","America/Chicago"
-"54436","44.53929","-90.42885","Granton","WI","Wisconsin","TRUE","","2396","8.7","55019","Clark","{""55019"": ""100""}","Clark","55019","FALSE","FALSE","America/Chicago"
-"54437","44.77497","-90.6383","Greenwood","WI","Wisconsin","TRUE","","3049","9.9","55019","Clark","{""55019"": ""100""}","Clark","55019","FALSE","FALSE","America/Chicago"
-"54440","44.80885","-89.38629","Hatley","WI","Wisconsin","TRUE","","2962","13.5","55073","Marathon","{""55073"": ""100""}","Marathon","55073","FALSE","FALSE","America/Chicago"
-"54441","44.64249","-90.10484","Hewitt","WI","Wisconsin","TRUE","","923","383.5","55141","Wood","{""55141"": ""100""}","Wood","55141","FALSE","FALSE","America/Chicago"
-"54442","45.36581","-89.65445","Irma","WI","Wisconsin","TRUE","","1160","6.0","55069","Lincoln","{""55069"": ""100""}","Lincoln","55069","FALSE","FALSE","America/Chicago"
-"54443","44.61209","-89.75353","Junction City","WI","Wisconsin","TRUE","","2142","9.1","55097","Portage","{""55097"": ""98.6"", ""55073"": ""1.17"", ""55141"": ""0.23""}","Portage|Marathon|Wood","55097|55073|55141","FALSE","FALSE","America/Chicago"
-"54446","44.7532","-90.47184","Loyal","WI","Wisconsin","TRUE","","3092","15.6","55019","Clark","{""55019"": ""100""}","Clark","55019","FALSE","FALSE","America/Chicago"
-"54447","45.08446","-90.73992","Lublin","WI","Wisconsin","TRUE","","439","5.5","55119","Taylor","{""55119"": ""100""}","Taylor","55119","FALSE","FALSE","America/Chicago"
-"54448","44.93371","-89.83362","Marathon","WI","Wisconsin","TRUE","","4396","19.1","55073","Marathon","{""55073"": ""100""}","Marathon","55073","FALSE","FALSE","America/Chicago"
-"54449","44.63687","-90.19925","Marshfield","WI","Wisconsin","TRUE","","25574","57.9","55141","Wood","{""55141"": ""86.42"", ""55073"": ""13.55"", ""55019"": ""0.03""}","Wood|Marathon|Clark","55141|55073|55019","FALSE","FALSE","America/Chicago"
-"54450","45.00431","-89.04064","Mattoon","WI","Wisconsin","TRUE","","455","105.2","55115","Shawano","{""55115"": ""100""}","Shawano","55115","FALSE","FALSE","America/Chicago"
-"54451","45.19521","-90.40546","Medford","WI","Wisconsin","TRUE","","11404","12.7","55119","Taylor","{""55119"": ""99.63"", ""55073"": ""0.37""}","Taylor|Marathon","55119|55073","FALSE","FALSE","America/Chicago"
-"54452","45.20989","-89.76838","Merrill","WI","Wisconsin","TRUE","","18407","16.1","55069","Lincoln","{""55069"": ""92.21"", ""55073"": ""7.79""}","Lincoln|Marathon","55069|55073","FALSE","FALSE","America/Chicago"
-"54454","44.6071","-89.8849","Milladore","WI","Wisconsin","TRUE","","1352","11.5","55141","Wood","{""55141"": ""98.59"", ""55097"": ""1.41"", ""55073"": ""0""}","Wood|Portage|Marathon","55141|55097|55073","FALSE","FALSE","America/Chicago"
-"54455","44.76579","-89.68458","Mosinee","WI","Wisconsin","TRUE","","18174","30.5","55073","Marathon","{""55073"": ""97.84"", ""55097"": ""2.16""}","Marathon|Portage","55073|55097","FALSE","FALSE","America/Chicago"
-"54456","44.54707","-90.63589","Neillsville","WI","Wisconsin","TRUE","","5898","10.3","55019","Clark","{""55019"": ""100""}","Clark","55019","FALSE","FALSE","America/Chicago"
-"54457","44.22743","-89.89145","Nekoosa","WI","Wisconsin","TRUE","","8155","23.2","55141","Wood","{""55141"": ""63.81"", ""55001"": ""32.56"", ""55057"": ""3.63""}","Wood|Adams|Juneau","55141|55001|55057","FALSE","FALSE","America/Chicago"
-"54458","44.49572","-89.30808","Nelsonville","WI","Wisconsin","TRUE","","98","56.5","55097","Portage","{""55097"": ""100""}","Portage","55097","FALSE","FALSE","America/Chicago"
-"54459","45.42581","-90.27358","Ogema","WI","Wisconsin","TRUE","","1238","3.5","55099","Price","{""55099"": ""100""}","Price","55099","FALSE","FALSE","America/Chicago"
-"54460","44.94244","-90.53901","Owen","WI","Wisconsin","TRUE","","2654","12.0","55019","Clark","{""55019"": ""91.88"", ""55119"": ""8.12""}","Clark|Taylor","55019|55119","FALSE","FALSE","America/Chicago"
-"54462","45.39568","-88.99395","Pearson","WI","Wisconsin","TRUE","","357","3.4","55067","Langlade","{""55067"": ""100""}","Langlade","55067","FALSE","FALSE","America/Chicago"
-"54463","45.5104","-89.21785","Pelican Lake","WI","Wisconsin","TRUE","","596","2.9","55085","Oneida","{""55085"": ""100""}","Oneida","55085","FALSE","FALSE","America/Chicago"
-"54465","45.38306","-88.8912","Pickerel","WI","Wisconsin","TRUE","","495","6.8","55067","Langlade","{""55067"": ""54.85"", ""55041"": ""45.15""}","Langlade|Forest","55067|55041","FALSE","FALSE","America/Chicago"
-"54466","44.38423","-90.30733","Pittsville","WI","Wisconsin","TRUE","","2761","3.5","55141","Wood","{""55141"": ""89.41"", ""55053"": ""6.79"", ""55019"": ""3.8""}","Wood|Jackson|Clark","55141|55053|55019","FALSE","FALSE","America/Chicago"
-"54467","44.41621","-89.54175","Plover","WI","Wisconsin","TRUE","","14100","78.9","55097","Portage","{""55097"": ""100""}","Portage","55097","FALSE","FALSE","America/Chicago"
-"54469","44.34595","-89.8703","Port Edwards","WI","Wisconsin","TRUE","","1717","260.4","55141","Wood","{""55141"": ""100""}","Wood","55141","FALSE","FALSE","America/Chicago"
-"54470","45.29264","-90.14032","Rib Lake","WI","Wisconsin","TRUE","","2042","7.5","55119","Taylor","{""55119"": ""99.23"", ""55099"": ""0.77""}","Taylor|Price","55119|55099","FALSE","FALSE","America/Chicago"
-"54471","44.93864","-89.41638","Ringle","WI","Wisconsin","TRUE","","1780","14.8","55073","Marathon","{""55073"": ""100""}","Marathon","55073","FALSE","FALSE","America/Chicago"
-"54473","44.65015","-89.3558","Rosholt","WI","Wisconsin","TRUE","","2655","12.0","55097","Portage","{""55097"": ""77.44"", ""55073"": ""22.56""}","Portage|Marathon","55097|55073","FALSE","FALSE","America/Chicago"
-"54474","44.87483","-89.62092","Rothschild","WI","Wisconsin","TRUE","","3874","344.0","55073","Marathon","{""55073"": ""100""}","Marathon","55073","FALSE","FALSE","America/Chicago"
-"54475","44.48241","-89.78891","Rudolph","WI","Wisconsin","TRUE","","1575","16.5","55141","Wood","{""55141"": ""91.03"", ""55097"": ""8.97""}","Wood|Portage","55141|55097","FALSE","FALSE","America/Chicago"
-"54476","44.88805","-89.5241","Schofield","WI","Wisconsin","TRUE","","19025","173.7","55073","Marathon","{""55073"": ""100""}","Marathon","55073","FALSE","FALSE","America/Chicago"
-"54479","44.75636","-90.32153","Spencer","WI","Wisconsin","TRUE","","3977","19.2","55073","Marathon","{""55073"": ""73.17"", ""55019"": ""26.83""}","Marathon|Clark","55073|55019","FALSE","FALSE","America/Chicago"
-"54480","45.05988","-90.2767","Stetsonville","WI","Wisconsin","TRUE","","1410","15.6","55119","Taylor","{""55119"": ""97.15"", ""55073"": ""2.85""}","Taylor|Marathon","55119|55073","FALSE","FALSE","America/Chicago"
-"54481","44.51577","-89.63778","Stevens Point","WI","Wisconsin","TRUE","","28614","173.2","55097","Portage","{""55097"": ""100""}","Portage","55097","FALSE","FALSE","America/Chicago"
-"54482","44.55634","-89.51828","Stevens Point","WI","Wisconsin","TRUE","","9990","42.2","55097","Portage","{""55097"": ""100""}","Portage","55097","FALSE","FALSE","America/Chicago"
-"54484","44.79947","-90.07835","Stratford","WI","Wisconsin","TRUE","","5111","19.0","55073","Marathon","{""55073"": ""100""}","Marathon","55073","FALSE","FALSE","America/Chicago"
-"54485","45.39504","-89.22156","Summit Lake","WI","Wisconsin","TRUE","","380","7.1","55067","Langlade","{""55067"": ""100""}","Langlade","55067","FALSE","FALSE","America/Chicago"
-"54486","44.72524","-89.05162","Tigerton","WI","Wisconsin","TRUE","","1917","6.0","55115","Shawano","{""55115"": ""91.66"", ""55135"": ""8.34""}","Shawano|Waupaca","55115|55135","FALSE","FALSE","America/Chicago"
-"54487","45.50665","-89.76299","Tomahawk","WI","Wisconsin","TRUE","","9489","12.2","55069","Lincoln","{""55069"": ""81.51"", ""55085"": ""18.49""}","Lincoln|Oneida","55069|55085","FALSE","FALSE","America/Chicago"
-"54488","44.84315","-90.3324","Unity","WI","Wisconsin","TRUE","","1216","11.7","55019","Clark","{""55019"": ""55.55"", ""55073"": ""44.45""}","Clark|Marathon","55019|55073","FALSE","FALSE","America/Chicago"
-"54489","44.45927","-89.99994","Vesper","WI","Wisconsin","TRUE","","1660","14.5","55141","Wood","{""55141"": ""100""}","Wood","55141","FALSE","FALSE","America/Chicago"
-"54490","45.33809","-90.40265","Westboro","WI","Wisconsin","TRUE","","762","2.6","55119","Taylor","{""55119"": ""97.87"", ""55099"": ""2.13""}","Taylor|Price","55119|55099","FALSE","FALSE","America/Chicago"
-"54491","45.24004","-88.75196","White Lake","WI","Wisconsin","TRUE","","1555","3.4","55067","Langlade","{""55067"": ""95.64"", ""55083"": ""4.36""}","Langlade|Oconto","55067|55083","FALSE","FALSE","America/Chicago"
-"54493","44.70187","-90.80356","Willard","WI","Wisconsin","TRUE","","600","2.1","55019","Clark","{""55019"": ""100""}","Clark","55019","FALSE","FALSE","America/Chicago"
-"54494","44.33908","-89.73768","Wisconsin Rapids","WI","Wisconsin","TRUE","","26577","77.0","55141","Wood","{""55141"": ""92.77"", ""55097"": ""7.1"", ""55001"": ""0.13""}","Wood|Portage|Adams","55141|55097|55001","FALSE","FALSE","America/Chicago"
-"54495","44.38628","-89.95749","Wisconsin Rapids","WI","Wisconsin","TRUE","","7326","26.3","55141","Wood","{""55141"": ""100""}","Wood","55141","FALSE","FALSE","America/Chicago"
-"54498","45.03348","-90.62445","Withee","WI","Wisconsin","TRUE","","2372","7.5","55019","Clark","{""55019"": ""76.21"", ""55119"": ""23.79""}","Clark|Taylor","55019|55119","FALSE","FALSE","America/Chicago"
-"54499","44.79125","-89.17806","Wittenberg","WI","Wisconsin","TRUE","","2984","10.2","55115","Shawano","{""55115"": ""80.73"", ""55073"": ""18.71"", ""55097"": ""0.56""}","Shawano|Marathon|Portage","55115|55073|55097","FALSE","FALSE","America/Chicago"
-"54501","45.65303","-89.34502","Rhinelander","WI","Wisconsin","TRUE","","19960","21.1","55085","Oneida","{""55085"": ""99.36"", ""55069"": ""0.64""}","Oneida|Lincoln","55085|55069","FALSE","FALSE","America/Chicago"
-"54511","45.72765","-88.83421","Argonne","WI","Wisconsin","TRUE","","1233","1.7","55041","Forest","{""55041"": ""100""}","Forest","55041","FALSE","FALSE","America/Chicago"
-"54512","46.09528","-89.67093","Boulder Junction","WI","Wisconsin","TRUE","","865","4.3","55125","Vilas","{""55125"": ""100""}","Vilas","55125","FALSE","FALSE","America/Chicago"
-"54513","45.56604","-90.11667","Brantwood","WI","Wisconsin","TRUE","","394","1.6","55099","Price","{""55099"": ""100""}","Price","55099","FALSE","FALSE","America/Chicago"
-"54514","46.04328","-90.47638","Butternut","WI","Wisconsin","TRUE","","1791","3.3","55003","Ashland","{""55003"": ""73.33"", ""55099"": ""22.89"", ""55051"": ""3.79""}","Ashland|Price|Iron","55003|55099|55051","FALSE","FALSE","America/Chicago"
-"54515","45.51813","-90.49694","Catawba","WI","Wisconsin","TRUE","","448","2.1","55099","Price","{""55099"": ""100""}","Price","55099","FALSE","FALSE","America/Chicago"
-"54517","46.14749","-90.93303","Clam Lake","WI","Wisconsin","TRUE","","105","0.5","55003","Ashland","{""55003"": ""78.57"", ""55113"": ""15.18"", ""55007"": ""6.25""}","Ashland|Sawyer|Bayfield","55003|55113|55007","FALSE","FALSE","America/Chicago"
-"54519","46.0499","-89.26222","Conover","WI","Wisconsin","TRUE","","1267","6.1","55125","Vilas","{""55125"": ""100""}","Vilas","55125","FALSE","FALSE","America/Chicago"
-"54520","45.53287","-88.91079","Crandon","WI","Wisconsin","TRUE","","4289","11.6","55041","Forest","{""55041"": ""100""}","Forest","55041","FALSE","FALSE","America/Chicago"
-"54521","45.9341","-89.28504","Eagle River","WI","Wisconsin","TRUE","","7908","13.4","55125","Vilas","{""55125"": ""84.34"", ""55085"": ""15.18"", ""55041"": ""0.48""}","Vilas|Oneida|Forest","55125|55085|55041","FALSE","FALSE","America/Chicago"
-"54524","45.84562","-90.33167","Fifield","WI","Wisconsin","TRUE","","632","2.7","55099","Price","{""55099"": ""100""}","Price","55099","FALSE","FALSE","America/Chicago"
-"54525","46.42897","-90.22015","Gile","WI","Wisconsin","TRUE","","247","131.5","55051","Iron","{""55051"": ""100""}","Iron","55051","FALSE","FALSE","America/Menominee"
-"54526","45.50554","-90.85908","Glen Flora","WI","Wisconsin","TRUE","","734","2.6","55107","Rusk","{""55107"": ""100""}","Rusk","55107","FALSE","FALSE","America/Chicago"
-"54527","46.12333","-90.66421","Glidden","WI","Wisconsin","TRUE","","857","1.4","55003","Ashland","{""55003"": ""100""}","Ashland","55003","FALSE","FALSE","America/Chicago"
-"54529","45.67827","-89.66341","Harshaw","WI","Wisconsin","TRUE","","1200","7.0","55085","Oneida","{""55085"": ""100""}","Oneida","55085","FALSE","FALSE","America/Chicago"
-"54530","45.5307","-90.72529","Hawkins","WI","Wisconsin","TRUE","","832","3.0","55107","Rusk","{""55107"": ""78.57"", ""55113"": ""11.29"", ""55099"": ""10.14""}","Rusk|Sawyer|Price","55107|55113|55099","FALSE","FALSE","America/Chicago"
-"54531","45.74851","-89.78583","Hazelhurst","WI","Wisconsin","TRUE","","1383","6.9","55085","Oneida","{""55085"": ""100""}","Oneida","55085","FALSE","FALSE","America/Chicago"
-"54534","46.34892","-90.22852","Hurley","WI","Wisconsin","TRUE","","2278","6.7","55051","Iron","{""55051"": ""100""}","Iron","55051","FALSE","FALSE","America/Chicago"
-"54536","46.3286","-90.35431","Iron Belt","WI","Wisconsin","TRUE","","169","1.3","55051","Iron","{""55051"": ""100""}","Iron","55051","FALSE","FALSE","America/Chicago"
-"54537","45.5269","-90.6061","Kennan","WI","Wisconsin","TRUE","","495","2.0","55099","Price","{""55099"": ""100""}","Price","55099","FALSE","FALSE","America/Chicago"
-"54538","45.97046","-89.90891","Lac Du Flambeau","WI","Wisconsin","TRUE","","2961","10.2","55125","Vilas","{""55125"": ""96.94"", ""55085"": ""2.42"", ""55099"": ""0.48"", ""55051"": ""0.16""}","Vilas|Oneida|Price|Iron","55125|55085|55099|55051","FALSE","FALSE","America/Chicago"
-"54539","45.80539","-89.56781","Lake Tomahawk","WI","Wisconsin","TRUE","","1265","10.0","55085","Oneida","{""55085"": ""100""}","Oneida","55085","FALSE","FALSE","America/Chicago"
-"54540","46.15615","-89.38222","Land O'Lakes","WI","Wisconsin","TRUE","","916","4.3","55125","Vilas","{""55125"": ""98.31"", ""26053"": ""1.69""}","Vilas|Gogebic","55125|26053","FALSE","FALSE","America/Chicago"
-"54541","45.55474","-88.64354","Laona","WI","Wisconsin","TRUE","","1307","3.8","55041","Forest","{""55041"": ""100""}","Forest","55041","FALSE","FALSE","America/Chicago"
-"54542","45.92228","-88.71962","Long Lake","WI","Wisconsin","TRUE","","402","0.6","55037","Florence","{""55037"": ""64.04"", ""55041"": ""35.96""}","Florence|Forest","55037|55041","FALSE","FALSE","America/Chicago"
-"54545","46.12872","-89.859","Manitowish Waters","WI","Wisconsin","TRUE","","808","7.2","55125","Vilas","{""55125"": ""97.28"", ""55051"": ""2.72""}","Vilas|Iron","55125|55051","FALSE","FALSE","America/Chicago"
-"54546","46.30229","-90.70272","Mellen","WI","Wisconsin","TRUE","","1119","2.0","55003","Ashland","{""55003"": ""100""}","Ashland","55003","FALSE","FALSE","America/Chicago"
-"54547","46.1923","-90.10199","Mercer","WI","Wisconsin","TRUE","","1365","2.4","55051","Iron","{""55051"": ""100""}","Iron","55051","FALSE","FALSE","America/Chicago"
-"54548","45.85982","-89.82106","Minocqua","WI","Wisconsin","TRUE","","4853","21.2","55085","Oneida","{""55085"": ""91.79"", ""55125"": ""8.21""}","Oneida|Vilas","55085|55125","FALSE","FALSE","America/Chicago"
-"54550","46.36212","-90.26062","Montreal","WI","Wisconsin","TRUE","","654","10.5","55051","Iron","{""55051"": ""100""}","Iron","55051","FALSE","FALSE","America/Chicago"
-"54552","45.94084","-90.31193","Park Falls","WI","Wisconsin","TRUE","","4071","4.5","55099","Price","{""55099"": ""93.5"", ""55051"": ""6.34"", ""55113"": ""0.16""}","Price|Iron|Sawyer","55099|55051|55113","FALSE","FALSE","America/Chicago"
-"54554","46.05232","-89.05673","Phelps","WI","Wisconsin","TRUE","","1043","4.6","55125","Vilas","{""55125"": ""99.11"", ""26071"": ""0.89""}","Vilas|Iron","55125|26071","FALSE","FALSE","America/Chicago"
-"54555","45.70662","-90.3978","Phillips","WI","Wisconsin","TRUE","","4776","5.8","55099","Price","{""55099"": ""100""}","Price","55099","FALSE","FALSE","America/Chicago"
-"54556","45.53563","-90.29965","Prentice","WI","Wisconsin","TRUE","","1159","5.0","55099","Price","{""55099"": ""100""}","Price","55099","FALSE","FALSE","America/Chicago"
-"54557","46.21921","-89.75778","Presque Isle","WI","Wisconsin","TRUE","","838","3.5","55125","Vilas","{""55125"": ""100""}","Vilas","55125","FALSE","FALSE","America/Chicago"
-"54558","45.92342","-89.50139","Saint Germain","WI","Wisconsin","TRUE","","2000","18.1","55125","Vilas","{""55125"": ""89.3"", ""55085"": ""10.7""}","Vilas|Oneida","55125|55085","FALSE","FALSE","America/Chicago"
-"54559","46.49173","-90.47819","Saxon","WI","Wisconsin","TRUE","","893","2.5","55051","Iron","{""55051"": ""61.26"", ""55003"": ""38.74""}","Iron|Ashland","55051|55003","FALSE","FALSE","America/Chicago"
-"54560","46.0151","-89.54514","Sayner","WI","Wisconsin","TRUE","","568","6.3","55125","Vilas","{""55125"": ""100""}","Vilas","55125","FALSE","FALSE","America/Chicago"
-"54561","46.08694","-89.51407","Star Lake","WI","Wisconsin","TRUE","","0","0.0","55125","Vilas","{""55125"": ""100""}","Vilas","55125","FALSE","FALSE","America/Chicago"
-"54562","45.80976","-89.08346","Three Lakes","WI","Wisconsin","TRUE","","1858","5.0","55085","Oneida","{""55085"": ""98.25"", ""55041"": ""1.75""}","Oneida|Forest","55085|55041","FALSE","FALSE","America/Chicago"
-"54563","45.46546","-90.97366","Tony","WI","Wisconsin","TRUE","","781","7.3","55107","Rusk","{""55107"": ""100""}","Rusk","55107","FALSE","FALSE","America/Chicago"
-"54564","45.61407","-89.97157","Tripoli","WI","Wisconsin","TRUE","","395","0.9","55085","Oneida","{""55085"": ""55.81"", ""55069"": ""44.19""}","Oneida|Lincoln","55085|55069","FALSE","FALSE","America/Chicago"
-"54565","46.30136","-90.44842","Upson","WI","Wisconsin","TRUE","","39","0.1","55051","Iron","{""55051"": ""100""}","Iron","55051","FALSE","FALSE","America/Chicago"
-"54566","45.43213","-88.62055","Wabeno","WI","Wisconsin","TRUE","","1259","3.7","55041","Forest","{""55041"": ""100""}","Forest","55041","FALSE","FALSE","America/Chicago"
-"54568","45.94645","-89.67527","Woodruff","WI","Wisconsin","TRUE","","5109","25.9","55125","Vilas","{""55125"": ""64.68"", ""55085"": ""35.32""}","Vilas|Oneida","55125|55085","FALSE","FALSE","America/Chicago"
-"54601","43.80439","-91.1425","La Crosse","WI","Wisconsin","TRUE","","50388","264.6","55063","La Crosse","{""55063"": ""100""}","La Crosse","55063","FALSE","FALSE","America/Chicago"
-"54603","43.85705","-91.24708","La Crosse","WI","Wisconsin","TRUE","","14090","593.6","55063","La Crosse","{""55063"": ""100""}","La Crosse","55063","FALSE","FALSE","America/Chicago"
-"54610","44.3717","-91.83453","Alma","WI","Wisconsin","TRUE","","1649","5.0","55011","Buffalo","{""55011"": ""100""}","Buffalo","55011","FALSE","FALSE","America/Chicago"
-"54611","44.44771","-90.95226","Alma Center","WI","Wisconsin","TRUE","","1142","8.1","55053","Jackson","{""55053"": ""100""}","Jackson","55053","FALSE","FALSE","America/Chicago"
-"54612","44.24805","-91.50053","Arcadia","WI","Wisconsin","TRUE","","5062","12.6","55121","Trempealeau","{""55121"": ""90.55"", ""55011"": ""9.45""}","Trempealeau|Buffalo","55121|55011","FALSE","FALSE","America/Chicago"
-"54613","44.07503","-89.92131","Arkdale","WI","Wisconsin","TRUE","","1663","8.8","55001","Adams","{""55001"": ""100""}","Adams","55001","FALSE","FALSE","America/Chicago"
-"54614","43.90109","-90.97023","Bangor","WI","Wisconsin","TRUE","","2666","12.6","55063","La Crosse","{""55063"": ""100""}","La Crosse","55063","FALSE","FALSE","America/Chicago"
-"54615","44.26092","-90.78617","Black River Falls","WI","Wisconsin","TRUE","","10532","13.5","55053","Jackson","{""55053"": ""99.78"", ""55081"": ""0.22""}","Jackson|Monroe","55053|55081","FALSE","FALSE","America/Chicago"
-"54616","44.29961","-91.23187","Blair","WI","Wisconsin","TRUE","","2650","11.5","55121","Trempealeau","{""55121"": ""99.04"", ""55053"": ""0.96""}","Trempealeau|Jackson","55121|55053","FALSE","FALSE","America/Chicago"
-"54618","43.96744","-90.28807","Camp Douglas","WI","Wisconsin","TRUE","","2299","8.9","55057","Juneau","{""55057"": ""65.47"", ""55081"": ""34.53""}","Juneau|Monroe","55057|55081","FALSE","FALSE","America/Chicago"
-"54619","43.75716","-90.77702","Cashton","WI","Wisconsin","TRUE","","3896","14.6","55081","Monroe","{""55081"": ""75.66"", ""55123"": ""23.83"", ""55063"": ""0.51""}","Monroe|Vernon|La Crosse","55081|55123|55063","FALSE","FALSE","America/Chicago"
-"54621","43.65801","-91.08282","Chaseburg","WI","Wisconsin","TRUE","","1466","15.0","55123","Vernon","{""55123"": ""100""}","Vernon","55123","FALSE","FALSE","America/Chicago"
-"54622","44.26719","-91.77157","Cochrane","WI","Wisconsin","TRUE","","1882","12.5","55011","Buffalo","{""55011"": ""100""}","Buffalo","55011","FALSE","FALSE","America/Chicago"
-"54623","43.73042","-91.01906","Coon Valley","WI","Wisconsin","TRUE","","2142","15.8","55123","Vernon","{""55123"": ""69.53"", ""55063"": ""30.47""}","Vernon|La Crosse","55123|55063","FALSE","FALSE","America/Chicago"
-"54624","43.46795","-91.13957","De Soto","WI","Wisconsin","TRUE","","1422","8.4","55123","Vernon","{""55123"": ""85.83"", ""55023"": ""14.17""}","Vernon|Crawford","55123|55023","FALSE","FALSE","America/Chicago"
-"54625","44.13342","-91.525","Dodge","WI","Wisconsin","TRUE","","240","14.7","55121","Trempealeau","{""55121"": ""100""}","Trempealeau","55121","FALSE","FALSE","America/Chicago"
-"54626","43.21702","-91.03844","Eastman","WI","Wisconsin","TRUE","","1340","7.7","55023","Crawford","{""55023"": ""100""}","Crawford","55023","FALSE","FALSE","America/Chicago"
-"54627","44.16764","-91.24052","Ettrick","WI","Wisconsin","TRUE","","1707","8.1","55121","Trempealeau","{""55121"": ""95.88"", ""55053"": ""4.12""}","Trempealeau|Jackson","55121|55053","FALSE","FALSE","America/Chicago"
-"54628","43.37294","-91.02466","Ferryville","WI","Wisconsin","TRUE","","986","5.1","55023","Crawford","{""55023"": ""93.96"", ""55123"": ""6.04""}","Crawford|Vernon","55023|55123","FALSE","FALSE","America/Chicago"
-"54629","44.1587","-91.66432","Fountain City","WI","Wisconsin","TRUE","","2606","9.2","55011","Buffalo","{""55011"": ""100""}","Buffalo","55011","FALSE","FALSE","America/Chicago"
-"54630","44.1009","-91.35798","Galesville","WI","Wisconsin","TRUE","","4173","20.5","55121","Trempealeau","{""55121"": ""100""}","Trempealeau","55121","FALSE","FALSE","America/Chicago"
-"54631","43.28559","-90.83419","Gays Mills","WI","Wisconsin","TRUE","","1706","6.3","55023","Crawford","{""55023"": ""100""}","Crawford","55023","FALSE","FALSE","America/Chicago"
-"54632","43.56413","-91.14609","Genoa","WI","Wisconsin","TRUE","","1132","9.3","55123","Vernon","{""55123"": ""100""}","Vernon","55123","FALSE","FALSE","America/Chicago"
-"54634","43.59665","-90.42659","Hillsboro","WI","Wisconsin","TRUE","","4482","11.6","55123","Vernon","{""55123"": ""85.35"", ""55103"": ""14.58"", ""55057"": ""0.07""}","Vernon|Richland|Juneau","55123|55103|55057","FALSE","FALSE","America/Chicago"
-"54635","44.40441","-91.04457","Hixton","WI","Wisconsin","TRUE","","1794","8.1","55053","Jackson","{""55053"": ""100""}","Jackson","55053","FALSE","FALSE","America/Chicago"
-"54636","44.00759","-91.22657","Holmen","WI","Wisconsin","TRUE","","14587","68.1","55063","La Crosse","{""55063"": ""100""}","La Crosse","55063","FALSE","FALSE","America/Chicago"
-"54637","43.87875","-90.27016","Hustler","WI","Wisconsin","TRUE","","195","208.4","55057","Juneau","{""55057"": ""100""}","Juneau","55057","FALSE","FALSE","America/Chicago"
-"54638","43.79595","-90.38606","Kendall","WI","Wisconsin","TRUE","","1680","11.7","55081","Monroe","{""55081"": ""92.4"", ""55123"": ""5.72"", ""55057"": ""1.88""}","Monroe|Vernon|Juneau","55081|55123|55057","FALSE","FALSE","America/Chicago"
-"54639","43.60653","-90.63976","La Farge","WI","Wisconsin","TRUE","","2708","10.8","55123","Vernon","{""55123"": ""96.79"", ""55103"": ""3.21""}","Vernon|Richland","55123|55103","FALSE","FALSE","America/Chicago"
-"54641","44.27697","-90.33979","Mather","WI","Wisconsin","TRUE","","3","0.3","55053","Jackson","{""55053"": ""100""}","Jackson","55053","FALSE","FALSE","America/Chicago"
-"54642","44.15146","-91.05324","Melrose","WI","Wisconsin","TRUE","","2148","8.8","55053","Jackson","{""55053"": ""88.42"", ""55063"": ""7.48"", ""55121"": ""4.09""}","Jackson|La Crosse|Trempealeau","55053|55063|55121","FALSE","FALSE","America/Chicago"
-"54643","44.1866","-90.63897","Millston","WI","Wisconsin","TRUE","","3","12.6","55053","Jackson","{""55053"": ""100""}","Jackson","55053","FALSE","FALSE","America/Chicago"
-"54644","44.03086","-91.04235","Mindoro","WI","Wisconsin","TRUE","","1621","10.0","55063","La Crosse","{""55063"": ""98.33"", ""55053"": ""1.67""}","La Crosse|Jackson","55063|55053","FALSE","FALSE","America/Chicago"
-"54645","43.32116","-90.93268","Mount Sterling","WI","Wisconsin","TRUE","","80","63.6","55023","Crawford","{""55023"": ""100""}","Crawford","55023","FALSE","FALSE","America/Chicago"
-"54646","44.09002","-90.08963","Necedah","WI","Wisconsin","TRUE","","4163","9.6","55057","Juneau","{""55057"": ""100""}","Juneau","55057","FALSE","FALSE","America/Chicago"
-"54648","43.834","-90.63729","Norwalk","WI","Wisconsin","TRUE","","1704","9.1","55081","Monroe","{""55081"": ""100""}","Monroe","55081","FALSE","FALSE","America/Chicago"
-"54650","43.91066","-91.22523","Onalaska","WI","Wisconsin","TRUE","","24602","305.2","55063","La Crosse","{""55063"": ""100""}","La Crosse","55063","FALSE","FALSE","America/Chicago"
-"54651","43.72533","-90.56471","Ontario","WI","Wisconsin","TRUE","","1453","9.7","55123","Vernon","{""55123"": ""68.81"", ""55081"": ""31.19""}","Vernon|Monroe","55123|55081","FALSE","FALSE","America/Chicago"
-"54652","43.46063","-90.76227","Readstown","WI","Wisconsin","TRUE","","1150","12.3","55123","Vernon","{""55123"": ""100""}","Vernon","55123","FALSE","FALSE","America/Chicago"
-"54653","43.81746","-90.90828","Rockland","WI","Wisconsin","TRUE","","975","21.8","55063","La Crosse","{""55063"": ""85.23"", ""55081"": ""14.77""}","La Crosse|Monroe","55063|55081","FALSE","FALSE","America/Chicago"
-"54654","43.26813","-90.96341","Seneca","WI","Wisconsin","TRUE","","99","52.9","55023","Crawford","{""55023"": ""100""}","Crawford","55023","FALSE","FALSE","America/Chicago"
-"54655","43.37944","-90.76606","Soldiers Grove","WI","Wisconsin","TRUE","","1816","7.8","55023","Crawford","{""55023"": ""87.85"", ""55103"": ""8.04"", ""55123"": ""4.11""}","Crawford|Richland|Vernon","55023|55103|55123","FALSE","FALSE","America/Chicago"
-"54656","44.00277","-90.81094","Sparta","WI","Wisconsin","TRUE","","17670","27.3","55081","Monroe","{""55081"": ""99.95"", ""55063"": ""0.05""}","Monroe|La Crosse","55081|55063","FALSE","FALSE","America/Chicago"
-"54657","43.19307","-90.89826","Steuben","WI","Wisconsin","TRUE","","376","5.3","55023","Crawford","{""55023"": ""100""}","Crawford","55023","FALSE","FALSE","America/Chicago"
-"54658","43.67908","-91.17662","Stoddard","WI","Wisconsin","TRUE","","2598","27.7","55123","Vernon","{""55123"": ""84.41"", ""55063"": ""15.59""}","Vernon|La Crosse","55123|55063","FALSE","FALSE","America/Chicago"
-"54659","44.29442","-91.10773","Taylor","WI","Wisconsin","TRUE","","1322","9.0","55053","Jackson","{""55053"": ""97.8"", ""55121"": ""2.2""}","Jackson|Trempealeau","55053|55121","FALSE","FALSE","America/Chicago"
-"54660","43.98256","-90.49021","Tomah","WI","Wisconsin","TRUE","","15887","40.2","55081","Monroe","{""55081"": ""100""}","Monroe","55081","FALSE","FALSE","America/Chicago"
-"54661","44.0597","-91.47069","Trempealeau","WI","Wisconsin","TRUE","","3718","27.6","55121","Trempealeau","{""55121"": ""99.97"", ""55063"": ""0.03""}","Trempealeau|La Crosse","55121|55063","FALSE","FALSE","America/Chicago"
-"54664","43.49887","-90.63688","Viola","WI","Wisconsin","TRUE","","1665","8.2","55103","Richland","{""55103"": ""68.01"", ""55123"": ""31.99""}","Richland|Vernon","55103|55123","FALSE","FALSE","America/Chicago"
-"54665","43.52853","-90.92655","Viroqua","WI","Wisconsin","TRUE","","8137","17.8","55123","Vernon","{""55123"": ""100""}","Vernon","55123","FALSE","FALSE","America/Chicago"
-"54666","44.17466","-90.44513","Warrens","WI","Wisconsin","TRUE","","2786","4.7","55081","Monroe","{""55081"": ""79.6"", ""55053"": ""16.58"", ""55057"": ""3.82""}","Monroe|Jackson|Juneau","55081|55053|55057","FALSE","FALSE","America/Chicago"
-"54667","43.66723","-90.85913","Westby","WI","Wisconsin","TRUE","","4818","21.3","55123","Vernon","{""55123"": ""99.28"", ""55063"": ""0.72""}","Vernon|La Crosse","55123|55063","FALSE","FALSE","America/Chicago"
-"54669","43.91175","-91.09104","West Salem","WI","Wisconsin","TRUE","","7905","59.7","55063","La Crosse","{""55063"": ""100""}","La Crosse","55063","FALSE","FALSE","America/Chicago"
-"54670","43.83738","-90.48586","Wilton","WI","Wisconsin","TRUE","","1724","12.3","55081","Monroe","{""55081"": ""100""}","Monroe","55081","FALSE","FALSE","America/Chicago"
-"54701","44.74438","-91.51058","Eau Claire","WI","Wisconsin","TRUE","","40874","183.7","55035","Eau Claire","{""55035"": ""99.66"", ""55033"": ""0.34""}","Eau Claire|Dunn","55035|55033","FALSE","FALSE","America/Chicago"
-"54703","44.83443","-91.51609","Eau Claire","WI","Wisconsin","TRUE","","43622","212.0","55035","Eau Claire","{""55035"": ""92.56"", ""55017"": ""6.94"", ""55033"": ""0.51""}","Eau Claire|Chippewa|Dunn","55035|55017|55033","FALSE","FALSE","America/Chicago"
-"54720","44.80403","-91.43549","Altoona","WI","Wisconsin","TRUE","","7743","610.9","55035","Eau Claire","{""55035"": ""100""}","Eau Claire","55035","FALSE","FALSE","America/Chicago"
-"54721","44.62932","-92.06966","Arkansaw","WI","Wisconsin","TRUE","","1334","8.1","55091","Pepin","{""55091"": ""94.25"", ""55033"": ""5.75""}","Pepin|Dunn","55091|55033","FALSE","FALSE","America/Chicago"
-"54722","44.71502","-91.10299","Augusta","WI","Wisconsin","TRUE","","3854","10.3","55035","Eau Claire","{""55035"": ""100""}","Eau Claire","55035","FALSE","FALSE","America/Chicago"
-"54723","44.60881","-92.43235","Bay City","WI","Wisconsin","TRUE","","1137","14.3","55093","Pierce","{""55093"": ""100""}","Pierce","55093","FALSE","FALSE","America/Chicago"
-"54724","45.10646","-91.48778","Bloomer","WI","Wisconsin","TRUE","","7421","18.0","55017","Chippewa","{""55017"": ""99.9"", ""55033"": ""0.1""}","Chippewa|Dunn","55017|55033","FALSE","FALSE","America/Chicago"
-"54725","45.07012","-92.01216","Boyceville","WI","Wisconsin","TRUE","","2866","11.1","55033","Dunn","{""55033"": ""100""}","Dunn","55033","FALSE","FALSE","America/Chicago"
-"54726","44.93125","-91.01739","Boyd","WI","Wisconsin","TRUE","","1792","8.4","55017","Chippewa","{""55017"": ""86.8"", ""55035"": ""13.2""}","Chippewa|Eau Claire","55017|55035","FALSE","FALSE","America/Chicago"
-"54727","44.95514","-91.15774","Cadott","WI","Wisconsin","TRUE","","5069","14.0","55017","Chippewa","{""55017"": ""96.32"", ""55035"": ""3.68""}","Chippewa|Eau Claire","55017|55035","FALSE","FALSE","America/Chicago"
-"54728","45.30833","-91.63943","Chetek","WI","Wisconsin","TRUE","","6223","19.0","55005","Barron","{""55005"": ""93.03"", ""55107"": ""6.97""}","Barron|Rusk","55005|55107","FALSE","FALSE","America/Chicago"
-"54729","44.94402","-91.39495","Chippewa Falls","WI","Wisconsin","TRUE","","32714","75.9","55017","Chippewa","{""55017"": ""99.33"", ""55035"": ""0.67""}","Chippewa|Eau Claire","55017|55035","FALSE","FALSE","America/Chicago"
-"54730","45.02006","-91.72338","Colfax","WI","Wisconsin","TRUE","","4890","13.6","55033","Dunn","{""55033"": ""87.88"", ""55017"": ""12.12""}","Dunn|Chippewa","55033|55017","FALSE","FALSE","America/Chicago"
-"54731","45.35093","-91.08182","Conrath","WI","Wisconsin","TRUE","","721","5.7","55107","Rusk","{""55107"": ""100""}","Rusk","55107","FALSE","FALSE","America/Chicago"
-"54732","45.14305","-91.17255","Cornell","WI","Wisconsin","TRUE","","2989","10.5","55017","Chippewa","{""55017"": ""100""}","Chippewa","55017","FALSE","FALSE","America/Chicago"
-"54733","45.27787","-91.85681","Dallas","WI","Wisconsin","TRUE","","1181","9.9","55005","Barron","{""55005"": ""100""}","Barron","55005","FALSE","FALSE","America/Chicago"
-"54734","45.09863","-92.11774","Downing","WI","Wisconsin","TRUE","","820","9.6","55033","Dunn","{""55033"": ""94.86"", ""55109"": ""5.14""}","Dunn|St. Croix","55033|55109","FALSE","FALSE","America/Chicago"
-"54736","44.59978","-91.90719","Durand","WI","Wisconsin","TRUE","","4174","12.7","55091","Pepin","{""55091"": ""86.79"", ""55011"": ""12.43"", ""55033"": ""0.78""}","Pepin|Buffalo|Dunn","55091|55011|55033","FALSE","FALSE","America/Chicago"
-"54737","44.71526","-91.9822","Eau Galle","WI","Wisconsin","TRUE","","531","9.5","55033","Dunn","{""55033"": ""92.81"", ""55091"": ""7.19""}","Dunn|Pepin","55033|55091","FALSE","FALSE","America/Chicago"
-"54738","44.59184","-91.48015","Eleva","WI","Wisconsin","TRUE","","3274","12.7","55035","Eau Claire","{""55035"": ""57.32"", ""55121"": ""42.68""}","Eau Claire|Trempealeau","55035|55121","FALSE","FALSE","America/Chicago"
-"54739","44.86288","-91.7014","Elk Mound","WI","Wisconsin","TRUE","","5389","20.4","55033","Dunn","{""55033"": ""77.31"", ""55017"": ""22.1"", ""55035"": ""0.59""}","Dunn|Chippewa|Eau Claire","55033|55017|55035","FALSE","FALSE","America/Chicago"
-"54740","44.74436","-92.16172","Elmwood","WI","Wisconsin","TRUE","","1989","8.4","55093","Pierce","{""55093"": ""75.83"", ""55033"": ""24.17""}","Pierce|Dunn","55093|55033","FALSE","FALSE","America/Chicago"
-"54741","44.61528","-90.97799","Fairchild","WI","Wisconsin","TRUE","","1951","7.9","55035","Eau Claire","{""55035"": ""67.47"", ""55053"": ""31.52"", ""55019"": ""1.01""}","Eau Claire|Jackson|Clark","55035|55053|55019","FALSE","FALSE","America/Chicago"
-"54742","44.765","-91.27075","Fall Creek","WI","Wisconsin","TRUE","","5033","18.6","55035","Eau Claire","{""55035"": ""100""}","Eau Claire","55035","FALSE","FALSE","America/Chicago"
-"54745","45.25013","-91.12559","Holcombe","WI","Wisconsin","TRUE","","1968","5.8","55017","Chippewa","{""55017"": ""86.82"", ""55107"": ""13.18""}","Chippewa|Rusk","55017|55107","FALSE","FALSE","America/Chicago"
-"54746","44.54446","-90.87579","Humbird","WI","Wisconsin","TRUE","","726","6.4","55019","Clark","{""55019"": ""78.82"", ""55053"": ""21.18""}","Clark|Jackson","55019|55053","FALSE","FALSE","America/Chicago"
-"54747","44.39028","-91.50512","Independence","WI","Wisconsin","TRUE","","2513","8.6","55121","Trempealeau","{""55121"": ""88.4"", ""55011"": ""11.6""}","Trempealeau|Buffalo","55121|55011","FALSE","FALSE","America/Chicago"
-"54748","45.07813","-91.26289","Jim Falls","WI","Wisconsin","TRUE","","1021","9.6","55017","Chippewa","{""55017"": ""100""}","Chippewa","55017","FALSE","FALSE","America/Chicago"
-"54749","44.94767","-92.09664","Knapp","WI","Wisconsin","TRUE","","1380","13.8","55033","Dunn","{""55033"": ""88.63"", ""55109"": ""11.37""}","Dunn|St. Croix","55033|55109","FALSE","FALSE","America/Chicago"
-"54750","44.6143","-92.29379","Maiden Rock","WI","Wisconsin","TRUE","","1003","6.1","55093","Pierce","{""55093"": ""100""}","Pierce","55093","FALSE","FALSE","America/Chicago"
-"54751","44.85062","-91.93037","Menomonie","WI","Wisconsin","TRUE","","26011","44.2","55033","Dunn","{""55033"": ""100""}","Dunn","55033","FALSE","FALSE","America/Chicago"
-"54754","44.43413","-90.76372","Merrillan","WI","Wisconsin","TRUE","","1868","8.4","55053","Jackson","{""55053"": ""84.09"", ""55019"": ""15.91""}","Jackson|Clark","55053|55019","FALSE","FALSE","America/Chicago"
-"54755","44.57631","-91.68452","Mondovi","WI","Wisconsin","TRUE","","7082","10.1","55011","Buffalo","{""55011"": ""67.4"", ""55033"": ""14.38"", ""55035"": ""9.85"", ""55091"": ""8.37""}","Buffalo|Dunn|Eau Claire|Pepin","55011|55033|55035|55091","FALSE","FALSE","America/Chicago"
-"54756","44.46805","-91.94816","Nelson","WI","Wisconsin","TRUE","","911","4.9","55011","Buffalo","{""55011"": ""100""}","Buffalo","55011","FALSE","FALSE","America/Chicago"
-"54757","45.23174","-91.52428","New Auburn","WI","Wisconsin","TRUE","","3542","8.7","55017","Chippewa","{""55017"": ""56.46"", ""55005"": ""24.86"", ""55033"": ""12.73"", ""55107"": ""5.94""}","Chippewa|Barron|Dunn|Rusk","55017|55005|55033|55107","FALSE","FALSE","America/Chicago"
-"54758","44.54861","-91.21876","Osseo","WI","Wisconsin","TRUE","","4505","10.9","55121","Trempealeau","{""55121"": ""71.6"", ""55035"": ""14.38"", ""55053"": ""14.03""}","Trempealeau|Eau Claire|Jackson","55121|55035|55053","FALSE","FALSE","America/Chicago"
-"54759","44.48662","-92.12777","Pepin","WI","Wisconsin","TRUE","","1454","10.9","55091","Pepin","{""55091"": ""100""}","Pepin","55091","FALSE","FALSE","America/Chicago"
-"54760","44.42402","-91.20653","Pigeon Falls","WI","Wisconsin","TRUE","","234","626.4","55121","Trempealeau","{""55121"": ""100""}","Trempealeau","55121","FALSE","FALSE","America/Chicago"
-"54761","44.6305","-92.18001","Plum City","WI","Wisconsin","TRUE","","1146","10.8","55093","Pierce","{""55093"": ""100""}","Pierce","55093","FALSE","FALSE","America/Chicago"
-"54762","45.24796","-91.99095","Prairie Farm","WI","Wisconsin","TRUE","","1269","9.9","55005","Barron","{""55005"": ""91.89"", ""55033"": ""8.11""}","Barron|Dunn","55005|55033","FALSE","FALSE","America/Chicago"
-"54763","45.17955","-91.88157","Ridgeland","WI","Wisconsin","TRUE","","1128","7.9","55033","Dunn","{""55033"": ""86.6"", ""55005"": ""13.4""}","Dunn|Barron","55033|55005","FALSE","FALSE","America/Chicago"
-"54765","45.16912","-91.68549","Sand Creek","WI","Wisconsin","TRUE","","9","302.3","55033","Dunn","{""55033"": ""100""}","Dunn","55033","FALSE","FALSE","America/Chicago"
-"54766","45.33877","-90.85758","Sheldon","WI","Wisconsin","TRUE","","1801","5.3","55107","Rusk","{""55107"": ""48.86"", ""55119"": ""44.35"", ""55017"": ""6.8""}","Rusk|Taylor|Chippewa","55107|55119|55017","FALSE","FALSE","America/Chicago"
-"54767","44.82855","-92.26147","Spring Valley","WI","Wisconsin","TRUE","","3604","16.6","55093","Pierce","{""55093"": ""93.57"", ""55109"": ""5.87"", ""55033"": ""0.56""}","Pierce|St. Croix|Dunn","55093|55109|55033","FALSE","FALSE","America/Chicago"
-"54768","44.95702","-90.92924","Stanley","WI","Wisconsin","TRUE","","6150","18.9","55017","Chippewa","{""55017"": ""81.44"", ""55019"": ""13.19"", ""55035"": ""3.49"", ""55119"": ""1.89""}","Chippewa|Clark|Eau Claire|Taylor","55017|55019|55035|55119","FALSE","FALSE","America/Chicago"
-"54769","44.51417","-92.23733","Stockholm","WI","Wisconsin","TRUE","","644","7.9","55091","Pepin","{""55091"": ""79.08"", ""55093"": ""20.92""}","Pepin|Pierce","55091|55093","FALSE","FALSE","America/Chicago"
-"54770","44.5483","-91.37612","Strum","WI","Wisconsin","TRUE","","2152","12.1","55121","Trempealeau","{""55121"": ""85.77"", ""55035"": ""14.23""}","Trempealeau|Eau Claire","55121|55035","FALSE","FALSE","America/Chicago"
-"54771","44.93238","-90.80678","Thorp","WI","Wisconsin","TRUE","","4377","10.9","55019","Clark","{""55019"": ""91.44"", ""55119"": ""8.56""}","Clark|Taylor","55019|55119","FALSE","FALSE","America/Chicago"
-"54772","45.09971","-91.87388","Wheeler","WI","Wisconsin","TRUE","","1068","6.9","55033","Dunn","{""55033"": ""100""}","Dunn","55033","FALSE","FALSE","America/Chicago"
-"54773","44.39256","-91.29405","Whitehall","WI","Wisconsin","TRUE","","3439","18.2","55121","Trempealeau","{""55121"": ""100""}","Trempealeau","55121","FALSE","FALSE","America/Chicago"
-"54801","45.87254","-91.93445","Spooner","WI","Wisconsin","TRUE","","6593","13.5","55129","Washburn","{""55129"": ""90.62"", ""55013"": ""9.38""}","Washburn|Burnett","55129|55013","FALSE","FALSE","America/Chicago"
-"54805","45.41281","-92.02158","Almena","WI","Wisconsin","TRUE","","1461","16.9","55005","Barron","{""55005"": ""100""}","Barron","55005","FALSE","FALSE","America/Chicago"
-"54806","46.5508","-90.86913","Ashland","WI","Wisconsin","TRUE","","11440","16.7","55003","Ashland","{""55003"": ""87.78"", ""55007"": ""12.22""}","Ashland|Bayfield","55003|55007","FALSE","FALSE","America/Chicago"
-"54810","45.46026","-92.38174","Balsam Lake","WI","Wisconsin","TRUE","","2302","19.6","55095","Polk","{""55095"": ""100""}","Polk","55095","FALSE","FALSE","America/Chicago"
-"54812","45.39678","-91.88238","Barron","WI","Wisconsin","TRUE","","5591","23.4","55005","Barron","{""55005"": ""100""}","Barron","55005","FALSE","FALSE","America/Chicago"
-"54813","45.65593","-92.0319","Barronett","WI","Wisconsin","TRUE","","631","4.5","55005","Barron","{""55005"": ""60.4"", ""55013"": ""23.63"", ""55129"": ""15.97""}","Barron|Burnett|Washburn","55005|55013|55129","FALSE","FALSE","America/Chicago"
-"54814","46.86052","-90.91781","Bayfield","WI","Wisconsin","TRUE","","2718","7.1","55007","Bayfield","{""55007"": ""100""}","Bayfield","55007","FALSE","FALSE","America/Chicago"
-"54817","45.67316","-91.54273","Birchwood","WI","Wisconsin","TRUE","","2064","4.9","55129","Washburn","{""55129"": ""44.01"", ""55005"": ""27.7"", ""55113"": ""23.72"", ""55107"": ""4.57""}","Washburn|Barron|Sawyer|Rusk","55129|55005|55113|55107","FALSE","FALSE","America/Chicago"
-"54819","45.48398","-91.3059","Bruce","WI","Wisconsin","TRUE","","2281","5.3","55107","Rusk","{""55107"": ""100""}","Rusk","55107","FALSE","FALSE","America/Chicago"
-"54820","46.5718","-91.56072","Brule","WI","Wisconsin","TRUE","","878","3.1","55031","Douglas","{""55031"": ""69.33"", ""55007"": ""30.67""}","Douglas|Bayfield","55031|55007","FALSE","FALSE","America/Chicago"
-"54821","46.22159","-91.16299","Cable","WI","Wisconsin","TRUE","","1178","2.5","55007","Bayfield","{""55007"": ""97.65"", ""55113"": ""2.35""}","Bayfield|Sawyer","55007|55113","FALSE","FALSE","America/Chicago"
-"54822","45.39374","-91.69652","Cameron","WI","Wisconsin","TRUE","","4560","36.8","55005","Barron","{""55005"": ""100""}","Barron","55005","FALSE","FALSE","America/Chicago"
-"54824","45.47415","-92.54195","Centuria","WI","Wisconsin","TRUE","","2208","22.7","55095","Polk","{""55095"": ""100""}","Polk","55095","FALSE","FALSE","America/Chicago"
-"54826","45.50282","-92.16712","Comstock","WI","Wisconsin","TRUE","","733","5.8","55005","Barron","{""55005"": ""56.51"", ""55095"": ""43.49""}","Barron|Polk","55005|55095","FALSE","FALSE","America/Chicago"
-"54827","46.79683","-91.10857","Cornucopia","WI","Wisconsin","TRUE","","289","2.6","55007","Bayfield","{""55007"": ""100""}","Bayfield","55007","FALSE","FALSE","America/Chicago"
-"54828","45.84072","-91.28358","Couderay","WI","Wisconsin","TRUE","","701","4.4","55113","Sawyer","{""55113"": ""100""}","Sawyer","55113","FALSE","FALSE","America/Chicago"
-"54829","45.55904","-92.05212","Cumberland","WI","Wisconsin","TRUE","","5102","14.8","55005","Barron","{""55005"": ""93.83"", ""55095"": ""6.17""}","Barron|Polk","55005|55095","FALSE","FALSE","America/Chicago"
-"54830","46.10807","-92.21857","Danbury","WI","Wisconsin","TRUE","","2807","3.0","55013","Burnett","{""55013"": ""93.2"", ""55031"": ""6.69"", ""55129"": ""0.11""}","Burnett|Douglas|Washburn","55013|55031|55129","FALSE","FALSE","America/Chicago"
-"54832","46.32679","-91.32795","Drummond","WI","Wisconsin","TRUE","","346","1.3","55007","Bayfield","{""55007"": ""100""}","Bayfield","55007","FALSE","FALSE","America/Chicago"
-"54835","45.67993","-91.24127","Exeland","WI","Wisconsin","TRUE","","872","2.4","55113","Sawyer","{""55113"": ""87.43"", ""55107"": ""12.57""}","Sawyer|Rusk","55113|55107","FALSE","FALSE","America/Chicago"
-"54836","46.43044","-92.1946","Foxboro","WI","Wisconsin","TRUE","","1060","3.1","55031","Douglas","{""55031"": ""100""}","Douglas","55031","FALSE","FALSE","America/Chicago"
-"54837","45.67293","-92.35442","Frederic","WI","Wisconsin","TRUE","","3752","8.2","55095","Polk","{""55095"": ""88.27"", ""55013"": ""11.73""}","Polk|Burnett","55095|55013","FALSE","FALSE","America/Chicago"
-"54838","46.25158","-91.81064","Gordon","WI","Wisconsin","TRUE","","1106","1.8","55031","Douglas","{""55031"": ""100"", ""55007"": ""0""}","Douglas|Bayfield","55031|55007","FALSE","FALSE","America/Chicago"
-"54839","46.36035","-91.14147","Grand View","WI","Wisconsin","TRUE","","251","2.1","55007","Bayfield","{""55007"": ""100""}","Bayfield","55007","FALSE","FALSE","America/Chicago"
-"54840","45.75628","-92.68902","Grantsburg","WI","Wisconsin","TRUE","","4391","6.7","55013","Burnett","{""55013"": ""98.88"", ""55095"": ""1.12""}","Burnett|Polk","55013|55095","FALSE","FALSE","America/Chicago"
-"54841","45.60657","-91.77864","Haugen","WI","Wisconsin","TRUE","","283","302.1","55005","Barron","{""55005"": ""100""}","Barron","55005","FALSE","FALSE","America/Chicago"
-"54842","46.4951","-91.85627","Hawthorne","WI","Wisconsin","TRUE","","162","9.9","55031","Douglas","{""55031"": ""100""}","Douglas","55031","FALSE","FALSE","America/Chicago"
-"54843","46.02612","-91.29713","Hayward","WI","Wisconsin","TRUE","","11790","10.3","55113","Sawyer","{""55113"": ""96.43"", ""55129"": ""3.57""}","Sawyer|Washburn","55113|55129","FALSE","FALSE","America/Chicago"
-"54844","46.79019","-91.22254","Herbster","WI","Wisconsin","TRUE","","266","1.7","55007","Bayfield","{""55007"": ""100""}","Bayfield","55007","FALSE","FALSE","America/Chicago"
-"54845","45.80039","-92.17539","Hertel","WI","Wisconsin","TRUE","","124","7.2","55013","Burnett","{""55013"": ""100""}","Burnett","55013","FALSE","FALSE","America/Chicago"
-"54846","46.37917","-90.7211","High Bridge","WI","Wisconsin","TRUE","","496","6.1","55003","Ashland","{""55003"": ""100""}","Ashland","55003","FALSE","FALSE","America/Chicago"
-"54847","46.58715","-91.40233","Iron River","WI","Wisconsin","TRUE","","2083","4.9","55007","Bayfield","{""55007"": ""100""}","Bayfield","55007","FALSE","FALSE","America/Chicago"
-"54848","45.51783","-91.09811","Ladysmith","WI","Wisconsin","TRUE","","5764","11.9","55107","Rusk","{""55107"": ""100""}","Rusk","55107","FALSE","FALSE","America/Chicago"
-"54849","46.47653","-91.72473","Lake Nebagamon","WI","Wisconsin","TRUE","","1732","7.4","55031","Douglas","{""55031"": ""100""}","Douglas","55031","FALSE","FALSE","America/Chicago"
-"54850","46.92356","-90.62246","La Pointe","WI","Wisconsin","TRUE","","237","1.2","55003","Ashland","{""55003"": ""100""}","Ashland","55003","FALSE","FALSE","America/Chicago"
-"54853","45.57001","-92.44633","Luck","WI","Wisconsin","TRUE","","4112","17.0","55095","Polk","{""55095"": ""97.46"", ""55013"": ""2.54""}","Polk|Burnett","55095|55013","FALSE","FALSE","America/Chicago"
-"54854","46.64465","-91.66853","Maple","WI","Wisconsin","TRUE","","978","4.7","55031","Douglas","{""55031"": ""100""}","Douglas","55031","FALSE","FALSE","America/Chicago"
-"54855","46.37428","-90.84374","Marengo","WI","Wisconsin","TRUE","","876","4.7","55003","Ashland","{""55003"": ""100""}","Ashland","55003","FALSE","FALSE","America/Chicago"
-"54856","46.43996","-91.13186","Mason","WI","Wisconsin","TRUE","","1637","2.7","55007","Bayfield","{""55007"": ""96.53"", ""55003"": ""3.47""}","Bayfield|Ashland","55007|55003","FALSE","FALSE","America/Chicago"
-"54857","45.59493","-91.60317","Mikana","WI","Wisconsin","TRUE","","59","80.8","55005","Barron","{""55005"": ""100""}","Barron","55005","FALSE","FALSE","America/Chicago"
-"54858","45.51428","-92.46429","Milltown","WI","Wisconsin","TRUE","","1672","33.5","55095","Polk","{""55095"": ""100""}","Polk","55095","FALSE","FALSE","America/Chicago"
-"54859","46.1264","-91.80167","Minong","WI","Wisconsin","TRUE","","1770","3.8","55129","Washburn","{""55129"": ""85.55"", ""55031"": ""14.45""}","Washburn|Douglas","55129|55031","FALSE","FALSE","America/Chicago"
-"54861","46.61506","-90.65678","Odanah","WI","Wisconsin","TRUE","","205","16.6","55003","Ashland","{""55003"": ""100""}","Ashland","55003","FALSE","FALSE","America/Chicago"
-"54862","45.77725","-91.11838","Ojibwa","WI","Wisconsin","TRUE","","219","1.9","55113","Sawyer","{""55113"": ""100""}","Sawyer","55113","FALSE","FALSE","America/Chicago"
-"54864","46.60494","-91.79234","Poplar","WI","Wisconsin","TRUE","","1249","9.5","55031","Douglas","{""55031"": ""100""}","Douglas","55031","FALSE","FALSE","America/Chicago"
-"54865","46.74666","-91.3792","Port Wing","WI","Wisconsin","TRUE","","441","2.8","55007","Bayfield","{""55007"": ""100""}","Bayfield","55007","FALSE","FALSE","America/Chicago"
-"54867","45.78494","-91.22066","Radisson","WI","Wisconsin","TRUE","","432","5.1","55113","Sawyer","{""55113"": ""100""}","Sawyer","55113","FALSE","FALSE","America/Chicago"
-"54868","45.52596","-91.71346","Rice Lake","WI","Wisconsin","TRUE","","15247","28.1","55005","Barron","{""55005"": ""99.5"", ""55107"": ""0.34"", ""55129"": ""0.16""}","Barron|Rusk|Washburn","55005|55107|55129","FALSE","FALSE","America/Chicago"
-"54870","45.71621","-91.77102","Sarona","WI","Wisconsin","TRUE","","1548","6.6","55129","Washburn","{""55129"": ""97.58"", ""55005"": ""2.42""}","Washburn|Barron","55129|55005","FALSE","FALSE","America/Chicago"
-"54871","45.74345","-92.01353","Shell Lake","WI","Wisconsin","TRUE","","3002","10.4","55129","Washburn","{""55129"": ""82.9"", ""55013"": ""17.1""}","Washburn|Burnett","55129|55013","FALSE","FALSE","America/Chicago"
-"54872","45.77019","-92.40008","Siren","WI","Wisconsin","TRUE","","2682","16.6","55013","Burnett","{""55013"": ""99.19"", ""55095"": ""0.81""}","Burnett|Polk","55013|55095","FALSE","FALSE","America/Chicago"
-"54873","46.34635","-91.67535","Solon Springs","WI","Wisconsin","TRUE","","2905","4.2","55031","Douglas","{""55031"": ""72.78"", ""55007"": ""27.22""}","Douglas|Bayfield","55031|55007","FALSE","FALSE","America/Chicago"
-"54874","46.5663","-91.94369","South Range","WI","Wisconsin","TRUE","","3900","10.2","55031","Douglas","{""55031"": ""100""}","Douglas","55031","FALSE","FALSE","America/Chicago"
-"54875","45.97","-91.69431","Springbrook","WI","Wisconsin","TRUE","","1060","3.7","55129","Washburn","{""55129"": ""100""}","Washburn","55129","FALSE","FALSE","America/Chicago"
-"54876","45.83049","-91.50264","Stone Lake","WI","Wisconsin","TRUE","","1317","5.0","55113","Sawyer","{""55113"": ""68.79"", ""55129"": ""31.21""}","Sawyer|Washburn","55113|55129","FALSE","FALSE","America/Chicago"
-"54880","46.59058","-92.12741","Superior","WI","Wisconsin","TRUE","","29914","67.1","55031","Douglas","{""55031"": ""100""}","Douglas","55031","FALSE","FALSE","America/Chicago"
-"54888","45.98085","-91.88299","Trego","WI","Wisconsin","TRUE","","1303","5.3","55129","Washburn","{""55129"": ""100""}","Washburn","55129","FALSE","FALSE","America/Chicago"
-"54889","45.41583","-92.17149","Turtle Lake","WI","Wisconsin","TRUE","","2648","14.6","55005","Barron","{""55005"": ""62.87"", ""55095"": ""37.13""}","Barron|Polk","55005|55095","FALSE","FALSE","America/Chicago"
-"54891","46.70092","-90.96518","Washburn","WI","Wisconsin","TRUE","","3400","17.8","55007","Bayfield","{""55007"": ""100""}","Bayfield","55007","FALSE","FALSE","America/Chicago"
-"54893","45.87112","-92.30633","Webster","WI","Wisconsin","TRUE","","3706","9.1","55013","Burnett","{""55013"": ""100""}","Burnett","55013","FALSE","FALSE","America/Chicago"
-"54895","45.45093","-91.44721","Weyerhaeuser","WI","Wisconsin","TRUE","","970","3.5","55107","Rusk","{""55107"": ""100""}","Rusk","55107","FALSE","FALSE","America/Chicago"
-"54896","45.81343","-90.8856","Winter","WI","Wisconsin","TRUE","","1427","1.3","55113","Sawyer","{""55113"": ""100"", ""55107"": ""0""}","Sawyer|Rusk","55113|55107","FALSE","FALSE","America/Chicago"
-"54901","44.06283","-88.53313","Oshkosh","WI","Wisconsin","TRUE","","37792","874.7","55139","Winnebago","{""55139"": ""100""}","Winnebago","55139","FALSE","FALSE","America/Chicago"
-"54902","43.9493","-88.53969","Oshkosh","WI","Wisconsin","TRUE","","22415","246.4","55139","Winnebago","{""55139"": ""100""}","Winnebago","55139","FALSE","FALSE","America/Chicago"
-"54904","44.02148","-88.62508","Oshkosh","WI","Wisconsin","TRUE","","21517","111.3","55139","Winnebago","{""55139"": ""100""}","Winnebago","55139","FALSE","FALSE","America/Chicago"
-"54909","44.28416","-89.35463","Almond","WI","Wisconsin","TRUE","","2139","8.6","55097","Portage","{""55097"": ""91.24"", ""55137"": ""8.76""}","Portage|Waushara","55097|55137","FALSE","FALSE","America/Chicago"
-"54911","44.2817","-88.38164","Appleton","WI","Wisconsin","TRUE","","26348","1227.2","55087","Outagamie","{""55087"": ""100""}","Outagamie","55087","FALSE","FALSE","America/Chicago"
-"54913","44.34148","-88.39996","Appleton","WI","Wisconsin","TRUE","","21510","131.9","55087","Outagamie","{""55087"": ""100""}","Outagamie","55087","FALSE","FALSE","America/Chicago"
-"54914","44.26384","-88.47529","Appleton","WI","Wisconsin","TRUE","","30890","669.8","55087","Outagamie","{""55087"": ""97.87"", ""55139"": ""2.13""}","Outagamie|Winnebago","55087|55139","FALSE","FALSE","America/Chicago"
-"54915","44.24247","-88.35644","Appleton","WI","Wisconsin","TRUE","","43354","1066.2","55087","Outagamie","{""55087"": ""45.86"", ""55015"": ""44.89"", ""55139"": ""9.25""}","Outagamie|Calumet|Winnebago","55087|55015|55139","FALSE","FALSE","America/Chicago"
-"54921","44.30242","-89.56444","Bancroft","WI","Wisconsin","TRUE","","1097","5.4","55097","Portage","{""55097"": ""92.99"", ""55001"": ""7.01""}","Portage|Adams","55097|55001","FALSE","FALSE","America/Chicago"
-"54922","44.54243","-88.74312","Bear Creek","WI","Wisconsin","TRUE","","1347","11.0","55087","Outagamie","{""55087"": ""62.88"", ""55135"": ""37.12""}","Outagamie|Waupaca","55087|55135","FALSE","FALSE","America/Chicago"
-"54923","43.9978","-88.96727","Berlin","WI","Wisconsin","TRUE","","8968","25.6","55047","Green Lake","{""55047"": ""78.69"", ""55137"": ""18.7"", ""55139"": ""2.61""}","Green Lake|Waushara|Winnebago","55047|55137|55139","FALSE","FALSE","America/Chicago"
-"54927","44.10166","-88.65399","Butte Des Morts","WI","Wisconsin","TRUE","","470","798.8","55139","Winnebago","{""55139"": ""100""}","Winnebago","55139","FALSE","FALSE","America/Chicago"
-"54928","44.73803","-88.88733","Caroline","WI","Wisconsin","TRUE","","404","14.2","55115","Shawano","{""55115"": ""100""}","Shawano","55115","FALSE","FALSE","America/Chicago"
-"54929","44.63661","-88.74009","Clintonville","WI","Wisconsin","TRUE","","8673","28.1","55135","Waupaca","{""55135"": ""83.96"", ""55115"": ""15.53"", ""55087"": ""0.51""}","Waupaca|Shawano|Outagamie","55135|55115|55087","FALSE","FALSE","America/Chicago"
-"54930","44.02804","-89.5561","Coloma","WI","Wisconsin","TRUE","","1710","7.1","55137","Waushara","{""55137"": ""87.01"", ""55001"": ""12.21"", ""55077"": ""0.78""}","Waushara|Adams|Marquette","55137|55001|55077","FALSE","FALSE","America/Chicago"
-"54931","44.2745","-88.67911","Dale","WI","Wisconsin","TRUE","","270","400.2","55087","Outagamie","{""55087"": ""100""}","Outagamie","55087","FALSE","FALSE","America/Chicago"
-"54932","43.83082","-88.61354","Eldorado","WI","Wisconsin","TRUE","","1256","16.0","55039","Fond du Lac","{""55039"": ""100""}","Fond du Lac","55039","FALSE","FALSE","America/Chicago"
-"54933","44.66819","-88.70533","Embarrass","WI","Wisconsin","TRUE","","382","151.2","55135","Waupaca","{""55135"": ""100""}","Waupaca","55135","FALSE","FALSE","America/Chicago"
-"54935","43.77424","-88.43516","Fond Du Lac","WI","Wisconsin","TRUE","","42156","1032.6","55039","Fond du Lac","{""55039"": ""100""}","Fond du Lac","55039","FALSE","FALSE","America/Chicago"
-"54937","43.76132","-88.43035","Fond Du Lac","WI","Wisconsin","TRUE","","19766","66.8","55039","Fond du Lac","{""55039"": ""100""}","Fond du Lac","55039","FALSE","FALSE","America/Chicago"
-"54940","44.22487","-88.84428","Fremont","WI","Wisconsin","TRUE","","4093","18.2","55135","Waupaca","{""55135"": ""47.56"", ""55139"": ""24.03"", ""55137"": ""18.23"", ""55087"": ""10.17""}","Waupaca|Winnebago|Waushara|Outagamie","55135|55139|55137|55087","FALSE","FALSE","America/Chicago"
-"54941","43.84447","-88.99315","Green Lake","WI","Wisconsin","TRUE","","2313","27.6","55047","Green Lake","{""55047"": ""100""}","Green Lake","55047","FALSE","FALSE","America/Chicago"
-"54942","44.29119","-88.54784","Greenville","WI","Wisconsin","TRUE","","9986","186.8","55087","Outagamie","{""55087"": ""100""}","Outagamie","55087","FALSE","FALSE","America/Chicago"
-"54943","44.12528","-89.5836","Hancock","WI","Wisconsin","TRUE","","1992","6.3","55137","Waushara","{""55137"": ""72.85"", ""55001"": ""27.15""}","Waushara|Adams","55137|55001","FALSE","FALSE","America/Chicago"
-"54944","44.32503","-88.62775","Hortonville","WI","Wisconsin","TRUE","","9039","51.5","55087","Outagamie","{""55087"": ""100""}","Outagamie","55087","FALSE","FALSE","America/Chicago"
-"54945","44.57649","-89.13694","Iola","WI","Wisconsin","TRUE","","3338","12.3","55135","Waupaca","{""55135"": ""99.63"", ""55097"": ""0.37""}","Waupaca|Portage","55135|55097","FALSE","FALSE","America/Chicago"
-"54946","44.33661","-89.14439","King","WI","Wisconsin","TRUE","","89","4914.4","55135","Waupaca","{""55135"": ""100""}","Waupaca","55135","FALSE","FALSE","America/Chicago"
-"54947","44.19998","-88.68862","Larsen","WI","Wisconsin","TRUE","","2332","19.4","55139","Winnebago","{""55139"": ""100""}","Winnebago","55139","FALSE","FALSE","America/Chicago"
-"54948","44.7771","-88.86982","Leopolis","WI","Wisconsin","TRUE","","240","6.5","55115","Shawano","{""55115"": ""100""}","Shawano","55115","FALSE","FALSE","America/Chicago"
-"54949","44.48361","-88.91262","Manawa","WI","Wisconsin","TRUE","","3379","20.6","55135","Waupaca","{""55135"": ""100""}","Waupaca","55135","FALSE","FALSE","America/Chicago"
-"54950","44.65489","-88.90539","Marion","WI","Wisconsin","TRUE","","2773","12.9","55135","Waupaca","{""55135"": ""75.22"", ""55115"": ""24.78""}","Waupaca|Shawano","55135|55115","FALSE","FALSE","America/Chicago"
-"54952","44.20034","-88.32884","Menasha","WI","Wisconsin","TRUE","","27071","371.5","55139","Winnebago","{""55139"": ""80.34"", ""55015"": ""19.66""}","Winnebago|Calumet","55139|55015","FALSE","FALSE","America/Chicago"
-"54956","44.1825","-88.52769","Neenah","WI","Wisconsin","TRUE","","44037","277.2","55139","Winnebago","{""55139"": ""99.81"", ""55087"": ""0.19""}","Winnebago|Outagamie","55139|55087","FALSE","FALSE","America/Chicago"
-"54960","43.94703","-89.22337","Neshkoro","WI","Wisconsin","TRUE","","2493","9.2","55077","Marquette","{""55077"": ""57.21"", ""55137"": ""37.54"", ""55047"": ""5.25""}","Marquette|Waushara|Green Lake","55077|55137|55047","FALSE","FALSE","America/Chicago"
-"54961","44.40924","-88.76117","New London","WI","Wisconsin","TRUE","","13602","42.5","55135","Waupaca","{""55135"": ""78.38"", ""55087"": ""21.62""}","Waupaca|Outagamie","55135|55087","FALSE","FALSE","America/Chicago"
-"54962","44.48563","-89.02258","Ogdensburg","WI","Wisconsin","TRUE","","1144","9.3","55135","Waupaca","{""55135"": ""100""}","Waupaca","55135","FALSE","FALSE","America/Chicago"
-"54963","44.04307","-88.77445","Omro","WI","Wisconsin","TRUE","","7063","35.6","55139","Winnebago","{""55139"": ""100""}","Winnebago","55139","FALSE","FALSE","America/Chicago"
-"54964","43.92077","-88.71955","Pickett","WI","Wisconsin","TRUE","","973","10.5","55139","Winnebago","{""55139"": ""78.38"", ""55039"": ""21.62""}","Winnebago|Fond du Lac","55139|55039","FALSE","FALSE","America/Chicago"
-"54965","44.16619","-89.03272","Pine River","WI","Wisconsin","TRUE","","1352","9.0","55137","Waushara","{""55137"": ""98.51"", ""55135"": ""1.49""}","Waushara|Waupaca","55137|55135","FALSE","FALSE","America/Chicago"
-"54966","44.2122","-89.50419","Plainfield","WI","Wisconsin","TRUE","","1979","9.5","55137","Waushara","{""55137"": ""86.01"", ""55097"": ""12.6"", ""55001"": ""1.39""}","Waushara|Portage|Adams","55137|55097|55001","FALSE","FALSE","America/Chicago"
-"54967","44.131","-88.98352","Poy Sippi","WI","Wisconsin","TRUE","","353","41.4","55137","Waushara","{""55137"": ""100""}","Waushara","55137","FALSE","FALSE","America/Chicago"
-"54968","43.84918","-89.13053","Princeton","WI","Wisconsin","TRUE","","2738","17.6","55047","Green Lake","{""55047"": ""97.16"", ""55077"": ""2.84""}","Green Lake|Marquette","55047|55077","FALSE","FALSE","America/Chicago"
-"54970","44.07211","-89.09307","Redgranite","WI","Wisconsin","TRUE","","3824","31.9","55137","Waushara","{""55137"": ""100""}","Waushara","55137","FALSE","FALSE","America/Chicago"
-"54971","43.85612","-88.8298","Ripon","WI","Wisconsin","TRUE","","10697","37.5","55039","Fond du Lac","{""55039"": ""89.72"", ""55047"": ""5.6"", ""55139"": ""4.68""}","Fond du Lac|Green Lake|Winnebago","55039|55047|55139","FALSE","FALSE","America/Chicago"
-"54974","43.78367","-88.6613","Rosendale","WI","Wisconsin","TRUE","","1510","22.2","55039","Fond du Lac","{""55039"": ""100""}","Fond du Lac","55039","FALSE","FALSE","America/Chicago"
-"54977","44.45795","-89.16597","Scandinavia","WI","Wisconsin","TRUE","","1502","15.1","55135","Waupaca","{""55135"": ""93.42"", ""55097"": ""6.58""}","Waupaca|Portage","55135|55097","FALSE","FALSE","America/Chicago"
-"54979","43.86871","-88.53749","Van Dyne","WI","Wisconsin","TRUE","","1312","19.4","55039","Fond du Lac","{""55039"": ""96.6"", ""55139"": ""3.4""}","Fond du Lac|Winnebago","55039|55139","FALSE","FALSE","America/Chicago"
-"54980","43.98377","-88.76983","Waukau","WI","Wisconsin","TRUE","","109","85.0","55139","Winnebago","{""55139"": ""100""}","Winnebago","55139","FALSE","FALSE","America/Chicago"
-"54981","44.32667","-89.12443","Waupaca","WI","Wisconsin","TRUE","","15209","43.9","55135","Waupaca","{""55135"": ""96.29"", ""55097"": ""2.26"", ""55137"": ""1.45""}","Waupaca|Portage|Waushara","55135|55097|55137","FALSE","FALSE","America/Chicago"
-"54982","44.07214","-89.29132","Wautoma","WI","Wisconsin","TRUE","","6957","21.6","55137","Waushara","{""55137"": ""99.06"", ""55077"": ""0.94""}","Waushara|Marquette","55137|55077","FALSE","FALSE","America/Chicago"
-"54983","44.31923","-88.93356","Weyauwega","WI","Wisconsin","TRUE","","4445","20.2","55135","Waupaca","{""55135"": ""93.93"", ""55137"": ""6.07""}","Waupaca|Waushara","55135|55137","FALSE","FALSE","America/Chicago"
-"54984","44.18831","-89.21758","Wild Rose","WI","Wisconsin","TRUE","","3121","15.8","55137","Waushara","{""55137"": ""98.29"", ""55097"": ""1.71""}","Waushara|Portage","55137|55097","FALSE","FALSE","America/Chicago"
-"54985","44.07507","-88.51838","Winnebago","WI","Wisconsin","TRUE","","1033","3944.1","55139","Winnebago","{""55139"": ""100""}","Winnebago","55139","FALSE","FALSE","America/Chicago"
-"54986","44.12078","-88.7475","Winneconne","WI","Wisconsin","TRUE","","5284","71.7","55139","Winnebago","{""55139"": ""99.31"", ""55137"": ""0.69""}","Winnebago|Waushara","55139|55137","FALSE","FALSE","America/Chicago"
-"55001","44.9017","-92.81888","Afton","MN","Minnesota","TRUE","","3038","44.5","27163","Washington","{""27163"": ""100""}","Washington","27163","FALSE","FALSE","America/Chicago"
-"55003","45.01181","-92.77887","Bayport","MN","Minnesota","TRUE","","4276","790.0","27163","Washington","{""27163"": ""100""}","Washington","27163","FALSE","FALSE","America/Chicago"
-"55005","45.39234","-93.21887","Bethel","MN","Minnesota","TRUE","","4644","92.6","27003","Anoka","{""27003"": ""100""}","Anoka","27003","FALSE","FALSE","America/Chicago"
-"55006","45.73819","-93.20864","Braham","MN","Minnesota","TRUE","","3797","18.7","27059","Isanti","{""27059"": ""59.6"", ""27065"": ""21.6"", ""27115"": ""13.57"", ""27025"": ""5.23""}","Isanti|Kanabec|Pine|Chisago","27059|27065|27115|27025","FALSE","FALSE","America/Chicago"
-"55007","45.97515","-93.12285","Brook Park","MN","Minnesota","TRUE","","2493","8.1","27065","Kanabec","{""27065"": ""58.01"", ""27115"": ""41.99""}","Kanabec|Pine","27065|27115","FALSE","FALSE","America/Chicago"
-"55008","45.57271","-93.27004","Cambridge","MN","Minnesota","TRUE","","15579","59.9","27059","Isanti","{""27059"": ""99.93"", ""27025"": ""0.07""}","Isanti|Chisago","27059|27025","FALSE","FALSE","America/Chicago"
-"55009","44.48303","-92.86484","Cannon Falls","MN","Minnesota","TRUE","","7894","25.0","27049","Goodhue","{""27049"": ""90.12"", ""27037"": ""9.88""}","Goodhue|Dakota","27049|27037","FALSE","FALSE","America/Chicago"
-"55011","45.34072","-93.25328","Cedar","MN","Minnesota","TRUE","","10787","92.6","27003","Anoka","{""27003"": ""100""}","Anoka","27003","FALSE","FALSE","America/Chicago"
-"55012","45.4379","-92.79168","Center City","MN","Minnesota","TRUE","","2062","34.9","27025","Chisago","{""27025"": ""100""}","Chisago","27025","FALSE","FALSE","America/Chicago"
-"55013","45.35437","-92.89819","Chisago City","MN","Minnesota","TRUE","","6726","88.6","27025","Chisago","{""27025"": ""100""}","Chisago","27025","FALSE","FALSE","America/Chicago"
-"55014","45.16421","-93.12315","Circle Pines","MN","Minnesota","TRUE","","28222","584.0","27003","Anoka","{""27003"": ""100""}","Anoka","27003","FALSE","FALSE","America/Chicago"
-"55016","44.8177","-92.93462","Cottage Grove","MN","Minnesota","TRUE","","36208","479.1","27163","Washington","{""27163"": ""100""}","Washington","27163","FALSE","FALSE","America/Chicago"
-"55017","45.68019","-93.43366","Dalbo","MN","Minnesota","TRUE","","844","10.8","27059","Isanti","{""27059"": ""100""}","Isanti","27059","FALSE","FALSE","America/Chicago"
-"55018","44.42218","-92.99565","Dennison","MN","Minnesota","TRUE","","906","7.3","27049","Goodhue","{""27049"": ""88.37"", ""27131"": ""11.63""}","Goodhue|Rice","27049|27131","FALSE","FALSE","America/Chicago"
-"55019","44.41445","-93.248","Dundas","MN","Minnesota","TRUE","","2069","39.5","27131","Rice","{""27131"": ""100""}","Rice","27131","FALSE","FALSE","America/Chicago"
-"55020","44.57624","-93.36947","Elko New Market","MN","Minnesota","TRUE","","4260","65.9","27139","Scott","{""27139"": ""100""}","Scott","27139","FALSE","FALSE","America/Chicago"
-"55021","44.29978","-93.27718","Faribault","MN","Minnesota","TRUE","","30032","64.1","27131","Rice","{""27131"": ""100""}","Rice","27131","FALSE","FALSE","America/Chicago"
-"55024","44.62994","-93.13428","Farmington","MN","Minnesota","TRUE","","35519","154.1","27037","Dakota","{""27037"": ""100""}","Dakota","27037","FALSE","FALSE","America/Chicago"
-"55025","45.26256","-93.0227","Forest Lake","MN","Minnesota","TRUE","","25371","124.4","27163","Washington","{""27163"": ""78.97"", ""27003"": ""16.04"", ""27025"": ""4.99""}","Washington|Anoka|Chisago","27163|27003|27025","FALSE","FALSE","America/Chicago"
-"55026","44.52642","-92.34858","Frontenac","MN","Minnesota","TRUE","","392","27.5","27049","Goodhue","{""27049"": ""100""}","Goodhue","27049","FALSE","FALSE","America/Chicago"
-"55027","44.40949","-92.62085","Goodhue","MN","Minnesota","TRUE","","3142","10.2","27049","Goodhue","{""27049"": ""98.19"", ""27157"": ""1.81""}","Goodhue|Wabasha","27049|27157","FALSE","FALSE","America/Chicago"
-"55029","45.63861","-93.1986","Grandy","MN","Minnesota","TRUE","","98","516.5","27059","Isanti","{""27059"": ""100""}","Isanti","27059","FALSE","FALSE","America/Chicago"
-"55030","45.8395","-93.11393","Grasston","MN","Minnesota","TRUE","","1358","13.7","27115","Pine","{""27115"": ""76.73"", ""27065"": ""23.27""}","Pine|Kanabec","27115|27065","FALSE","FALSE","America/Chicago"
-"55031","44.60805","-92.96228","Hampton","MN","Minnesota","TRUE","","2008","19.6","27037","Dakota","{""27037"": ""100""}","Dakota","27037","FALSE","FALSE","America/Chicago"
-"55032","45.58823","-92.99162","Harris","MN","Minnesota","TRUE","","3611","20.0","27025","Chisago","{""27025"": ""100""}","Chisago","27025","FALSE","FALSE","America/Chicago"
-"55033","44.713","-92.86373","Hastings","MN","Minnesota","TRUE","","30140","82.5","27037","Dakota","{""27037"": ""92.66"", ""27163"": ""7.09"", ""27049"": ""0.25""}","Dakota|Washington|Goodhue","27037|27163|27049","FALSE","FALSE","America/Chicago"
-"55036","45.87114","-93.11959","Henriette","MN","Minnesota","TRUE","","82","111.3","27115","Pine","{""27115"": ""100""}","Pine","27115","FALSE","FALSE","America/Chicago"
-"55037","46.01299","-92.77561","Hinckley","MN","Minnesota","TRUE","","4681","5.9","27115","Pine","{""27115"": ""97.75"", ""27065"": ""2.25""}","Pine|Kanabec","27115|27065","FALSE","FALSE","America/Chicago"
-"55038","45.16869","-92.97938","Hugo","MN","Minnesota","TRUE","","22844","178.0","27163","Washington","{""27163"": ""61.12"", ""27003"": ""38.84"", ""27123"": ""0.04""}","Washington|Anoka|Ramsey","27163|27003|27123","FALSE","FALSE","America/Chicago"
-"55040","45.4685","-93.27972","Isanti","MN","Minnesota","TRUE","","13180","51.3","27059","Isanti","{""27059"": ""100""}","Isanti","27059","FALSE","FALSE","America/Chicago"
-"55041","44.39402","-92.32022","Lake City","MN","Minnesota","TRUE","","7877","20.7","27157","Wabasha","{""27157"": ""78.27"", ""27049"": ""21.73""}","Wabasha|Goodhue","27157|27049","FALSE","FALSE","America/Chicago"
-"55042","44.99196","-92.89876","Lake Elmo","MN","Minnesota","TRUE","","9750","153.8","27163","Washington","{""27163"": ""100""}","Washington","27163","FALSE","FALSE","America/Chicago"
-"55043","44.94089","-92.76967","Lakeland","MN","Minnesota","TRUE","","3559","355.0","27163","Washington","{""27163"": ""100""}","Washington","27163","FALSE","FALSE","America/Chicago"
-"55044","44.64094","-93.2798","Lakeville","MN","Minnesota","TRUE","","55085","331.5","27037","Dakota","{""27037"": ""93.42"", ""27139"": ""6.58""}","Dakota|Scott","27037|27139","FALSE","FALSE","America/Chicago"
-"55045","45.39473","-92.83217","Lindstrom","MN","Minnesota","TRUE","","7612","82.9","27025","Chisago","{""27025"": ""100""}","Chisago","27025","FALSE","FALSE","America/Chicago"
-"55046","44.44863","-93.41897","Lonsdale","MN","Minnesota","TRUE","","5528","45.7","27131","Rice","{""27131"": ""100""}","Rice","27131","FALSE","FALSE","America/Chicago"
-"55047","45.20246","-92.82401","Marine On Saint Croix","MN","Minnesota","TRUE","","2381","30.6","27163","Washington","{""27163"": ""100""}","Washington","27163","FALSE","FALSE","America/Chicago"
-"55049","44.17659","-93.22797","Medford","MN","Minnesota","TRUE","","2659","21.4","27147","Steele","{""27147"": ""98.87"", ""27131"": ""1.13""}","Steele|Rice","27147|27131","FALSE","FALSE","America/Chicago"
-"55051","45.92772","-93.30432","Mora","MN","Minnesota","TRUE","","9551","18.8","27065","Kanabec","{""27065"": ""100""}","Kanabec","27065","FALSE","FALSE","America/Chicago"
-"55052","44.23223","-93.43952","Morristown","MN","Minnesota","TRUE","","2014","16.7","27131","Rice","{""27131"": ""97.18"", ""27161"": ""1.63"", ""27147"": ""1.2""}","Rice|Waseca|Steele","27131|27161|27147","FALSE","FALSE","America/Chicago"
-"55053","44.34655","-93.06401","Nerstrand","MN","Minnesota","TRUE","","1038","9.3","27131","Rice","{""27131"": ""83.75"", ""27049"": ""16.25""}","Rice|Goodhue","27131|27049","FALSE","FALSE","America/Chicago"
-"55054","44.57008","-93.35029","Elko New Market","MN","Minnesota","TRUE","","2462","787.7","27139","Scott","{""27139"": ""100""}","Scott","27139","FALSE","FALSE","America/Chicago"
-"55055","44.87382","-92.99777","Newport","MN","Minnesota","TRUE","","3532","385.0","27163","Washington","{""27163"": ""100""}","Washington","27163","FALSE","FALSE","America/Chicago"
-"55056","45.50874","-92.95253","North Branch","MN","Minnesota","TRUE","","14021","53.3","27025","Chisago","{""27025"": ""87.58"", ""27059"": ""12.42""}","Chisago|Isanti","27025|27059","FALSE","FALSE","America/Chicago"
-"55057","44.4713","-93.17617","Northfield","MN","Minnesota","TRUE","","25312","78.1","27131","Rice","{""27131"": ""88.17"", ""27037"": ""11.83""}","Rice|Dakota","27131|27037","FALSE","FALSE","America/Chicago"
-"55060","44.05901","-93.22289","Owatonna","MN","Minnesota","TRUE","","29028","54.7","27147","Steele","{""27147"": ""100""}","Steele","27147","FALSE","FALSE","America/Chicago"
-"55063","45.83631","-92.90419","Pine City","MN","Minnesota","TRUE","","9472","21.9","27115","Pine","{""27115"": ""100""}","Pine","27115","FALSE","FALSE","America/Chicago"
-"55065","44.54689","-93.01637","Randolph","MN","Minnesota","TRUE","","1281","15.0","27037","Dakota","{""27037"": ""98.42"", ""27049"": ""1.58""}","Dakota|Goodhue","27037|27049","FALSE","FALSE","America/Chicago"
-"55066","44.51829","-92.54508","Red Wing","MN","Minnesota","TRUE","","18279","59.0","27049","Goodhue","{""27049"": ""100""}","Goodhue","27049","FALSE","FALSE","America/Chicago"
-"55068","44.73781","-93.06868","Rosemount","MN","Minnesota","TRUE","","29380","264.6","27037","Dakota","{""27037"": ""100""}","Dakota","27037","FALSE","FALSE","America/Chicago"
-"55069","45.69343","-92.96549","Rush City","MN","Minnesota","TRUE","","5397","28.1","27025","Chisago","{""27025"": ""93.66"", ""27115"": ""6.34""}","Chisago|Pine","27025|27115","FALSE","FALSE","America/Chicago"
-"55070","45.41252","-93.38804","Saint Francis","MN","Minnesota","TRUE","","7885","111.6","27003","Anoka","{""27003"": ""95.8"", ""27059"": ""4.2""}","Anoka|Isanti","27003|27059","FALSE","FALSE","America/Chicago"
-"55071","44.82146","-92.99653","Saint Paul Park","MN","Minnesota","TRUE","","5725","430.7","27163","Washington","{""27163"": ""100""}","Washington","27163","FALSE","FALSE","America/Chicago"
-"55072","46.14102","-92.61841","Sandstone","MN","Minnesota","TRUE","","4566","5.6","27115","Pine","{""27115"": ""96.77"", ""27065"": ""3.23""}","Pine|Kanabec","27115|27065","FALSE","FALSE","America/Chicago"
-"55073","45.27293","-92.82494","Scandia","MN","Minnesota","TRUE","","3524","49.1","27163","Washington","{""27163"": ""87.46"", ""27025"": ""12.54""}","Washington|Chisago","27163|27025","FALSE","FALSE","America/Chicago"
-"55074","45.38445","-92.73341","Shafer","MN","Minnesota","TRUE","","2346","26.1","27025","Chisago","{""27025"": ""100""}","Chisago","27025","FALSE","FALSE","America/Chicago"
-"55075","44.88747","-93.04093","South Saint Paul","MN","Minnesota","TRUE","","20212","1377.1","27037","Dakota","{""27037"": ""100""}","Dakota","27037","FALSE","FALSE","America/Chicago"
-"55076","44.83633","-93.03401","Inver Grove Heights","MN","Minnesota","TRUE","","21985","929.1","27037","Dakota","{""27037"": ""100""}","Dakota","27037","FALSE","FALSE","America/Chicago"
-"55077","44.81828","-93.07364","Inver Grove Heights","MN","Minnesota","TRUE","","13280","274.5","27037","Dakota","{""27037"": ""100""}","Dakota","27037","FALSE","FALSE","America/Chicago"
-"55079","45.41321","-93.03309","Stacy","MN","Minnesota","TRUE","","8669","54.5","27025","Chisago","{""27025"": ""48.43"", ""27003"": ""42.5"", ""27059"": ""9.06""}","Chisago|Anoka|Isanti","27025|27003|27059","FALSE","FALSE","America/Chicago"
-"55080","45.66146","-93.21462","Stanchfield","MN","Minnesota","TRUE","","2641","15.7","27059","Isanti","{""27059"": ""61.87"", ""27025"": ""38.13""}","Isanti|Chisago","27059|27025","FALSE","FALSE","America/Chicago"
-"55082","45.07279","-92.84039","Stillwater","MN","Minnesota","TRUE","","36093","178.1","27163","Washington","{""27163"": ""100""}","Washington","27163","FALSE","FALSE","America/Chicago"
-"55084","45.45951","-92.70629","Taylors Falls","MN","Minnesota","TRUE","","1688","26.8","27025","Chisago","{""27025"": ""100""}","Chisago","27025","FALSE","FALSE","America/Chicago"
-"55085","44.67266","-92.96293","Vermillion","MN","Minnesota","TRUE","","498","235.6","27037","Dakota","{""27037"": ""100""}","Dakota","27037","FALSE","FALSE","America/Chicago"
-"55087","44.24851","-93.39495","Warsaw","MN","Minnesota","TRUE","","418","792.8","27131","Rice","{""27131"": ""100""}","Rice","27131","FALSE","FALSE","America/Chicago"
-"55088","44.53088","-93.38698","Webster","MN","Minnesota","TRUE","","1772","19.6","27131","Rice","{""27131"": ""66.9"", ""27139"": ""33.1""}","Rice|Scott","27131|27139","FALSE","FALSE","America/Chicago"
-"55089","44.5814","-92.71593","Welch","MN","Minnesota","TRUE","","1731","11.1","27049","Goodhue","{""27049"": ""83.02"", ""27037"": ""16.98""}","Goodhue|Dakota","27049|27037","FALSE","FALSE","America/Chicago"
-"55090","45.05349","-92.95738","Willernie","MN","Minnesota","TRUE","","292","1134.2","27163","Washington","{""27163"": ""100""}","Washington","27163","FALSE","FALSE","America/Chicago"
-"55092","45.33657","-93.07864","Wyoming","MN","Minnesota","TRUE","","10597","121.2","27025","Chisago","{""27025"": ""58.63"", ""27003"": ""41.37""}","Chisago|Anoka","27025|27003","FALSE","FALSE","America/Chicago"
-"55101","44.9513","-93.09023","Saint Paul","MN","Minnesota","TRUE","","7743","3664.5","27123","Ramsey","{""27123"": ""100""}","Ramsey","27123","FALSE","FALSE","America/Chicago"
-"55102","44.93189","-93.12161","Saint Paul","MN","Minnesota","TRUE","","18633","2210.4","27123","Ramsey","{""27123"": ""100""}","Ramsey","27123","FALSE","FALSE","America/Chicago"
-"55103","44.96423","-93.12446","Saint Paul","MN","Minnesota","TRUE","","14062","2602.1","27123","Ramsey","{""27123"": ""100""}","Ramsey","27123","FALSE","FALSE","America/Chicago"
-"55104","44.95447","-93.16221","Saint Paul","MN","Minnesota","TRUE","","45278","2886.2","27123","Ramsey","{""27123"": ""100""}","Ramsey","27123","FALSE","FALSE","America/Chicago"
-"55105","44.9346","-93.16817","Saint Paul","MN","Minnesota","TRUE","","26545","2837.4","27123","Ramsey","{""27123"": ""100""}","Ramsey","27123","FALSE","FALSE","America/Chicago"
-"55106","44.96353","-93.04827","Saint Paul","MN","Minnesota","TRUE","","58771","2622.4","27123","Ramsey","{""27123"": ""100""}","Ramsey","27123","FALSE","FALSE","America/Chicago"
-"55107","44.93108","-93.07958","Saint Paul","MN","Minnesota","TRUE","","14279","1341.8","27123","Ramsey","{""27123"": ""100""}","Ramsey","27123","FALSE","FALSE","America/Chicago"
-"55108","44.98095","-93.17541","Saint Paul","MN","Minnesota","TRUE","","15795","1550.0","27123","Ramsey","{""27123"": ""100""}","Ramsey","27123","FALSE","FALSE","America/Chicago"
-"55109","45.01462","-93.02611","Saint Paul","MN","Minnesota","TRUE","","34148","1126.8","27123","Ramsey","{""27123"": ""100""}","Ramsey","27123","FALSE","FALSE","America/Chicago"
-"55110","45.09024","-93.00627","Saint Paul","MN","Minnesota","TRUE","","40254","642.0","27123","Ramsey","{""27123"": ""89.23"", ""27163"": ""9.34"", ""27003"": ""1.43""}","Ramsey|Washington|Anoka","27123|27163|27003","FALSE","FALSE","America/Chicago"
-"55111","44.87899","-93.19854","Saint Paul","MN","Minnesota","TRUE","","25","4.3","27053","Hennepin","{""27053"": ""0""}","Hennepin","27053","FALSE","FALSE","America/Chicago"
-"55112","45.07658","-93.18893","Saint Paul","MN","Minnesota","TRUE","","46009","934.4","27123","Ramsey","{""27123"": ""100""}","Ramsey","27123","FALSE","FALSE","America/Chicago"
-"55113","45.01301","-93.15555","Saint Paul","MN","Minnesota","TRUE","","41771","1079.9","27123","Ramsey","{""27123"": ""100""}","Ramsey","27123","FALSE","FALSE","America/Chicago"
-"55114","44.96609","-93.19433","Saint Paul","MN","Minnesota","TRUE","","3120","925.7","27123","Ramsey","{""27123"": ""100""}","Ramsey","27123","FALSE","FALSE","America/Chicago"
-"55115","45.06774","-92.95329","Saint Paul","MN","Minnesota","TRUE","","9253","531.3","27163","Washington","{""27163"": ""100""}","Washington","27163","FALSE","FALSE","America/Chicago"
-"55116","44.90973","-93.17024","Saint Paul","MN","Minnesota","TRUE","","24809","1756.3","27123","Ramsey","{""27123"": ""100""}","Ramsey","27123","FALSE","FALSE","America/Chicago"
-"55117","44.99936","-93.09687","Saint Paul","MN","Minnesota","TRUE","","45653","1904.5","27123","Ramsey","{""27123"": ""100""}","Ramsey","27123","FALSE","FALSE","America/Chicago"
-"55118","44.89648","-93.10344","Saint Paul","MN","Minnesota","TRUE","","28318","1037.6","27037","Dakota","{""27037"": ""99.34"", ""27123"": ""0.66""}","Dakota|Ramsey","27037|27123","FALSE","FALSE","America/Chicago"
-"55119","44.93794","-93.00936","Saint Paul","MN","Minnesota","TRUE","","43784","1198.6","27123","Ramsey","{""27123"": ""100""}","Ramsey","27123","FALSE","FALSE","America/Chicago"
-"55120","44.87251","-93.14907","Saint Paul","MN","Minnesota","TRUE","","4495","324.8","27037","Dakota","{""27037"": ""100""}","Dakota","27037","FALSE","FALSE","America/Chicago"
-"55121","44.84706","-93.15429","Saint Paul","MN","Minnesota","TRUE","","8954","382.6","27037","Dakota","{""27037"": ""100""}","Dakota","27037","FALSE","FALSE","America/Chicago"
-"55122","44.80469","-93.1977","Saint Paul","MN","Minnesota","TRUE","","31447","1077.6","27037","Dakota","{""27037"": ""100""}","Dakota","27037","FALSE","FALSE","America/Chicago"
-"55123","44.80465","-93.13754","Saint Paul","MN","Minnesota","TRUE","","26051","913.8","27037","Dakota","{""27037"": ""100""}","Dakota","27037","FALSE","FALSE","America/Chicago"
-"55124","44.74557","-93.20073","Saint Paul","MN","Minnesota","TRUE","","52889","1214.2","27037","Dakota","{""27037"": ""100""}","Dakota","27037","FALSE","FALSE","America/Chicago"
-"55125","44.91985","-92.94394","Saint Paul","MN","Minnesota","TRUE","","43497","1099.8","27163","Washington","{""27163"": ""100""}","Washington","27163","FALSE","FALSE","America/Chicago"
-"55126","45.08477","-93.13255","Saint Paul","MN","Minnesota","TRUE","","26957","867.6","27123","Ramsey","{""27123"": ""99.73"", ""27003"": ""0.27""}","Ramsey|Anoka","27123|27003","FALSE","FALSE","America/Chicago"
-"55127","45.08411","-93.08265","Saint Paul","MN","Minnesota","TRUE","","18869","539.6","27123","Ramsey","{""27123"": ""100""}","Ramsey","27123","FALSE","FALSE","America/Chicago"
-"55128","44.98793","-92.96393","Saint Paul","MN","Minnesota","TRUE","","28863","991.5","27163","Washington","{""27163"": ""100""}","Washington","27163","FALSE","FALSE","America/Chicago"
-"55129","44.89405","-92.90679","Saint Paul","MN","Minnesota","TRUE","","26409","521.2","27163","Washington","{""27163"": ""100""}","Washington","27163","FALSE","FALSE","America/Chicago"
-"55130","44.97298","-93.08268","Saint Paul","MN","Minnesota","TRUE","","18146","3530.3","27123","Ramsey","{""27123"": ""100""}","Ramsey","27123","FALSE","FALSE","America/Chicago"
-"55150","44.8869","-93.1642","Mendota","MN","Minnesota","TRUE","","150","170.9","27037","Dakota","{""27037"": ""100""}","Dakota","27037","FALSE","FALSE","America/Chicago"
-"55155","44.95601","-93.08265","Saint Paul","MN","Minnesota","TRUE","","0","0.0","27123","Ramsey","{""27123"": ""0""}","Ramsey","27123","FALSE","FALSE","America/Chicago"
-"55301","45.24784","-93.65869","Albertville","MN","Minnesota","TRUE","","13657","516.8","27171","Wright","{""27171"": ""100""}","Wright","27171","FALSE","FALSE","America/Chicago"
-"55302","45.24268","-94.11894","Annandale","MN","Minnesota","TRUE","","7364","39.8","27171","Wright","{""27171"": ""100""}","Wright","27171","FALSE","FALSE","America/Chicago"
-"55303","45.28861","-93.42307","Anoka","MN","Minnesota","TRUE","","49784","304.4","27003","Anoka","{""27003"": ""100""}","Anoka","27003","FALSE","FALSE","America/Chicago"
-"55304","45.25574","-93.2655","Andover","MN","Minnesota","TRUE","","49470","276.5","27003","Anoka","{""27003"": ""100""}","Anoka","27003","FALSE","FALSE","America/Chicago"
-"55305","44.95479","-93.43235","Hopkins","MN","Minnesota","TRUE","","21406","888.4","27053","Hennepin","{""27053"": ""100""}","Hennepin","27053","FALSE","FALSE","America/Chicago"
-"55306","44.73069","-93.292","Burnsville","MN","Minnesota","TRUE","","16387","1018.3","27037","Dakota","{""27037"": ""100""}","Dakota","27037","FALSE","FALSE","America/Chicago"
-"55307","44.60335","-94.10241","Arlington","MN","Minnesota","TRUE","","3475","17.3","27143","Sibley","{""27143"": ""100""}","Sibley","27143","FALSE","FALSE","America/Chicago"
-"55308","45.43026","-93.83604","Becker","MN","Minnesota","TRUE","","9825","60.5","27141","Sherburne","{""27141"": ""100""}","Sherburne","27141","FALSE","FALSE","America/Chicago"
-"55309","45.37999","-93.73908","Big Lake","MN","Minnesota","TRUE","","19294","113.6","27141","Sherburne","{""27141"": ""100""}","Sherburne","27141","FALSE","FALSE","America/Chicago"
-"55310","44.75918","-94.88069","Bird Island","MN","Minnesota","TRUE","","1293","5.0","27129","Renville","{""27129"": ""100""}","Renville","27129","FALSE","FALSE","America/Chicago"
-"55311","45.1049","-93.49482","Maple Grove","MN","Minnesota","TRUE","","38362","904.8","27053","Hennepin","{""27053"": ""100""}","Hennepin","27053","FALSE","FALSE","America/Chicago"
-"55312","44.70468","-94.34221","Brownton","MN","Minnesota","TRUE","","1480","8.0","27085","McLeod","{""27085"": ""100""}","McLeod","27085","FALSE","FALSE","America/Chicago"
-"55313","45.17379","-93.85143","Buffalo","MN","Minnesota","TRUE","","24633","87.6","27171","Wright","{""27171"": ""100""}","Wright","27171","FALSE","FALSE","America/Chicago"
-"55314","44.76936","-94.59938","Buffalo Lake","MN","Minnesota","TRUE","","1081","5.6","27129","Renville","{""27129"": ""88.93"", ""27143"": ""11.07""}","Renville|Sibley","27129|27143","FALSE","FALSE","America/Chicago"
-"55315","44.71842","-93.68698","Carver","MN","Minnesota","TRUE","","5772","84.1","27019","Carver","{""27019"": ""100""}","Carver","27019","FALSE","FALSE","America/Chicago"
-"55316","45.17026","-93.39045","Champlin","MN","Minnesota","TRUE","","24755","1173.0","27053","Hennepin","{""27053"": ""100""}","Hennepin","27053","FALSE","FALSE","America/Chicago"
-"55317","44.85809","-93.55192","Chanhassen","MN","Minnesota","TRUE","","21905","673.8","27019","Carver","{""27019"": ""100""}","Carver","27019","FALSE","FALSE","America/Chicago"
-"55318","44.81107","-93.63664","Chaska","MN","Minnesota","TRUE","","28524","267.0","27019","Carver","{""27019"": ""100""}","Carver","27019","FALSE","FALSE","America/Chicago"
-"55319","45.47349","-93.94425","Clear Lake","MN","Minnesota","TRUE","","5337","29.0","27141","Sherburne","{""27141"": ""100""}","Sherburne","27141","FALSE","FALSE","America/Chicago"
-"55320","45.39591","-94.08707","Clearwater","MN","Minnesota","TRUE","","5052","36.7","27171","Wright","{""27171"": ""61.33"", ""27145"": ""38.67""}","Wright|Stearns","27171|27145","FALSE","FALSE","America/Chicago"
-"55321","45.08414","-94.19274","Cokato","MN","Minnesota","TRUE","","5371","25.5","27171","Wright","{""27171"": ""100""}","Wright","27171","FALSE","FALSE","America/Chicago"
-"55322","44.77013","-93.78573","Cologne","MN","Minnesota","TRUE","","3466","24.5","27019","Carver","{""27019"": ""100""}","Carver","27019","FALSE","FALSE","America/Chicago"
-"55324","45.05595","-94.42354","Darwin","MN","Minnesota","TRUE","","1198","13.2","27093","Meeker","{""27093"": ""100""}","Meeker","27093","FALSE","FALSE","America/Chicago"
-"55325","45.0837","-94.31909","Dassel","MN","Minnesota","TRUE","","4600","23.1","27093","Meeker","{""27093"": ""100""}","Meeker","27093","FALSE","FALSE","America/Chicago"
-"55327","45.19864","-93.47573","Dayton","MN","Minnesota","TRUE","","3501","74.7","27053","Hennepin","{""27053"": ""98.22"", ""27171"": ""1.78""}","Hennepin|Wright","27053|27171","FALSE","FALSE","America/Chicago"
-"55328","45.03575","-93.81318","Delano","MN","Minnesota","TRUE","","9623","83.6","27171","Wright","{""27171"": ""96.19"", ""27053"": ""2.61"", ""27019"": ""1.19""}","Wright|Hennepin|Carver","27171|27053|27019","FALSE","FALSE","America/Chicago"
-"55329","45.3092","-94.57192","Eden Valley","MN","Minnesota","TRUE","","1943","14.9","27145","Stearns","{""27145"": ""50.09"", ""27093"": ""49.91""}","Stearns|Meeker","27145|27093","FALSE","FALSE","America/Chicago"
-"55330","45.33432","-93.5679","Elk River","MN","Minnesota","TRUE","","38664","142.9","27141","Sherburne","{""27141"": ""72.75"", ""27171"": ""22.5"", ""27003"": ""4.75""}","Sherburne|Wright|Anoka","27141|27171|27003","FALSE","FALSE","America/Chicago"
-"55331","44.89951","-93.60394","Excelsior","MN","Minnesota","TRUE","","18979","490.5","27053","Hennepin","{""27053"": ""75.47"", ""27019"": ""24.53""}","Hennepin|Carver","27053|27019","FALSE","FALSE","America/Chicago"
-"55332","44.52043","-94.70944","Fairfax","MN","Minnesota","TRUE","","1796","6.1","27129","Renville","{""27129"": ""93.81"", ""27103"": ""6.19""}","Renville|Nicollet","27129|27103","FALSE","FALSE","America/Chicago"
-"55333","44.56018","-94.86708","Franklin","MN","Minnesota","TRUE","","849","4.6","27129","Renville","{""27129"": ""97.9"", ""27127"": ""1.52"", ""27015"": ""0.58""}","Renville|Redwood|Brown","27129|27127|27015","FALSE","FALSE","America/Chicago"
-"55334","44.54169","-94.20761","Gaylord","MN","Minnesota","TRUE","","2547","11.4","27143","Sibley","{""27143"": ""98.09"", ""27103"": ""1.91""}","Sibley|Nicollet","27143|27103","FALSE","FALSE","America/Chicago"
-"55335","44.52995","-94.5472","Gibbon","MN","Minnesota","TRUE","","1580","5.4","27143","Sibley","{""27143"": ""91.59"", ""27103"": ""8.41""}","Sibley|Nicollet","27143|27103","FALSE","FALSE","America/Chicago"
-"55336","44.77083","-94.18114","Glencoe","MN","Minnesota","TRUE","","7772","23.5","27085","McLeod","{""27085"": ""96.05"", ""27143"": ""3.95""}","McLeod|Sibley","27085|27143","FALSE","FALSE","America/Chicago"
-"55337","44.77668","-93.27503","Burnsville","MN","Minnesota","TRUE","","44924","928.9","27037","Dakota","{""27037"": ""100""}","Dakota","27037","FALSE","FALSE","America/Chicago"
-"55338","44.66948","-93.99815","Green Isle","MN","Minnesota","TRUE","","1234","12.0","27143","Sibley","{""27143"": ""100""}","Sibley","27143","FALSE","FALSE","America/Chicago"
-"55339","44.72709","-93.95634","Hamburg","MN","Minnesota","TRUE","","1135","19.6","27019","Carver","{""27019"": ""84.31"", ""27143"": ""15.69""}","Carver|Sibley","27019|27143","FALSE","FALSE","America/Chicago"
-"55340","45.0762","-93.57576","Hamel","MN","Minnesota","TRUE","","8475","90.6","27053","Hennepin","{""27053"": ""100""}","Hennepin","27053","FALSE","FALSE","America/Chicago"
-"55341","45.15922","-93.65914","Hanover","MN","Minnesota","TRUE","","3243","264.4","27171","Wright","{""27171"": ""79.75"", ""27053"": ""20.25""}","Wright|Hennepin","27171|27053","FALSE","FALSE","America/Chicago"
-"55342","44.74281","-94.73171","Hector","MN","Minnesota","TRUE","","1738","4.2","27129","Renville","{""27129"": ""100""}","Renville","27129","FALSE","FALSE","America/Chicago"
-"55343","44.91441","-93.41625","Hopkins","MN","Minnesota","TRUE","","25245","1290.7","27053","Hennepin","{""27053"": ""100""}","Hennepin","27053","FALSE","FALSE","America/Chicago"
-"55344","44.86428","-93.43082","Eden Prairie","MN","Minnesota","TRUE","","16846","737.8","27053","Hennepin","{""27053"": ""100""}","Hennepin","27053","FALSE","FALSE","America/Chicago"
-"55345","44.91527","-93.48375","Minnetonka","MN","Minnesota","TRUE","","21717","738.3","27053","Hennepin","{""27053"": ""100""}","Hennepin","27053","FALSE","FALSE","America/Chicago"
-"55346","44.87844","-93.48322","Eden Prairie","MN","Minnesota","TRUE","","16453","922.5","27053","Hennepin","{""27053"": ""100""}","Hennepin","27053","FALSE","FALSE","America/Chicago"
-"55347","44.82932","-93.46632","Eden Prairie","MN","Minnesota","TRUE","","30880","706.0","27053","Hennepin","{""27053"": ""100""}","Hennepin","27053","FALSE","FALSE","America/Chicago"
-"55349","45.05955","-94.07407","Howard Lake","MN","Minnesota","TRUE","","3779","22.3","27171","Wright","{""27171"": ""100""}","Wright","27171","FALSE","FALSE","America/Chicago"
-"55350","44.89535","-94.3939","Hutchinson","MN","Minnesota","TRUE","","17903","43.0","27085","McLeod","{""27085"": ""97.64"", ""27093"": ""2.13"", ""27129"": ""0.23""}","McLeod|Meeker|Renville","27085|27093|27129","FALSE","FALSE","America/Chicago"
-"55352","44.65501","-93.58766","Jordan","MN","Minnesota","TRUE","","9522","55.1","27139","Scott","{""27139"": ""100""}","Scott","27139","FALSE","FALSE","America/Chicago"
-"55353","45.32194","-94.31535","Kimball","MN","Minnesota","TRUE","","3751","17.2","27145","Stearns","{""27145"": ""80.46"", ""27093"": ""19.54""}","Stearns|Meeker","27145|27093","FALSE","FALSE","America/Chicago"
-"55354","44.88304","-94.06871","Lester Prairie","MN","Minnesota","TRUE","","2907","35.4","27085","McLeod","{""27085"": ""100""}","McLeod","27085","FALSE","FALSE","America/Chicago"
-"55355","45.09862","-94.53992","Litchfield","MN","Minnesota","TRUE","","9544","21.3","27093","Meeker","{""27093"": ""100""}","Meeker","27093","FALSE","FALSE","America/Chicago"
-"55356","44.99301","-93.58801","Long Lake","MN","Minnesota","TRUE","","5348","165.6","27053","Hennepin","{""27053"": ""100""}","Hennepin","27053","FALSE","FALSE","America/Chicago"
-"55357","45.09912","-93.65971","Loretto","MN","Minnesota","TRUE","","3398","69.0","27053","Hennepin","{""27053"": ""100""}","Hennepin","27053","FALSE","FALSE","America/Chicago"
-"55358","45.25161","-93.99595","Maple Lake","MN","Minnesota","TRUE","","5440","38.3","27171","Wright","{""27171"": ""100""}","Wright","27171","FALSE","FALSE","America/Chicago"
-"55359","45.00502","-93.70126","Maple Plain","MN","Minnesota","TRUE","","6256","57.6","27053","Hennepin","{""27053"": ""100""}","Hennepin","27053","FALSE","FALSE","America/Chicago"
-"55360","44.90864","-93.91963","Mayer","MN","Minnesota","TRUE","","2698","32.5","27019","Carver","{""27019"": ""100""}","Carver","27019","FALSE","FALSE","America/Chicago"
-"55362","45.30049","-93.8316","Monticello","MN","Minnesota","TRUE","","19286","122.0","27171","Wright","{""27171"": ""100""}","Wright","27171","FALSE","FALSE","America/Chicago"
-"55363","45.04414","-93.91389","Montrose","MN","Minnesota","TRUE","","4737","67.5","27171","Wright","{""27171"": ""100""}","Wright","27171","FALSE","FALSE","America/Chicago"
-"55364","44.93742","-93.67275","Mound","MN","Minnesota","TRUE","","15348","378.1","27053","Hennepin","{""27053"": ""100""}","Hennepin","27053","FALSE","FALSE","America/Chicago"
-"55366","44.67262","-94.23203","New Auburn","MN","Minnesota","TRUE","","526","305.4","27143","Sibley","{""27143"": ""100""}","Sibley","27143","FALSE","FALSE","America/Chicago"
-"55367","44.89503","-93.97722","New Germany","MN","Minnesota","TRUE","","1050","19.7","27019","Carver","{""27019"": ""100""}","Carver","27019","FALSE","FALSE","America/Chicago"
-"55368","44.74172","-93.89419","Norwood Young America","MN","Minnesota","TRUE","","2231","23.5","27019","Carver","{""27019"": ""100""}","Carver","27019","FALSE","FALSE","America/Chicago"
-"55369","45.12644","-93.44629","Osseo","MN","Minnesota","TRUE","","37450","606.2","27053","Hennepin","{""27053"": ""100""}","Hennepin","27053","FALSE","FALSE","America/Chicago"
-"55370","44.77738","-94.03899","Plato","MN","Minnesota","TRUE","","695","11.7","27085","McLeod","{""27085"": ""100""}","McLeod","27085","FALSE","FALSE","America/Chicago"
-"55371","45.5801","-93.59086","Princeton","MN","Minnesota","TRUE","","16878","35.3","27095","Mille Lacs","{""27095"": ""51.99"", ""27141"": ""33.98"", ""27059"": ""13.34"", ""27009"": ""0.68""}","Mille Lacs|Sherburne|Isanti|Benton","27095|27141|27059|27009","FALSE","FALSE","America/Chicago"
-"55372","44.67752","-93.41126","Prior Lake","MN","Minnesota","TRUE","","33852","227.9","27139","Scott","{""27139"": ""100""}","Scott","27139","FALSE","FALSE","America/Chicago"
-"55373","45.08818","-93.72376","Rockford","MN","Minnesota","TRUE","","5741","201.8","27171","Wright","{""27171"": ""73.27"", ""27053"": ""26.73""}","Wright|Hennepin","27171|27053","FALSE","FALSE","America/Chicago"
-"55374","45.17646","-93.57956","Rogers","MN","Minnesota","TRUE","","15528","168.6","27053","Hennepin","{""27053"": ""94.62"", ""27171"": ""5.38""}","Hennepin|Wright","27053|27171","FALSE","FALSE","America/Chicago"
-"55375","44.89699","-93.74287","Saint Bonifacius","MN","Minnesota","TRUE","","4775","351.9","27053","Hennepin","{""27053"": ""86.85"", ""27019"": ""13.15""}","Hennepin|Carver","27053|27019","FALSE","FALSE","America/Chicago"
-"55376","45.21057","-93.68726","Saint Michael","MN","Minnesota","TRUE","","17469","223.9","27171","Wright","{""27171"": ""100""}","Wright","27171","FALSE","FALSE","America/Chicago"
-"55378","44.75741","-93.36308","Savage","MN","Minnesota","TRUE","","30606","815.2","27139","Scott","{""27139"": ""100""}","Scott","27139","FALSE","FALSE","America/Chicago"
-"55379","44.75421","-93.51618","Shakopee","MN","Minnesota","TRUE","","45062","295.1","27139","Scott","{""27139"": ""100""}","Scott","27139","FALSE","FALSE","America/Chicago"
-"55381","44.92671","-94.18751","Silver Lake","MN","Minnesota","TRUE","","2075","17.6","27085","McLeod","{""27085"": ""100""}","McLeod","27085","FALSE","FALSE","America/Chicago"
-"55382","45.30632","-94.20458","South Haven","MN","Minnesota","TRUE","","3701","20.2","27145","Stearns","{""27145"": ""51.78"", ""27171"": ""38.87"", ""27093"": ""9.35""}","Stearns|Wright|Meeker","27145|27171|27093","FALSE","FALSE","America/Chicago"
-"55384","44.9368","-93.63183","Spring Park","MN","Minnesota","TRUE","","1906","2089.3","27053","Hennepin","{""27053"": ""100""}","Hennepin","27053","FALSE","FALSE","America/Chicago"
-"55385","44.73835","-94.49127","Stewart","MN","Minnesota","TRUE","","1176","4.7","27085","McLeod","{""27085"": ""77.61"", ""27129"": ""15.8"", ""27143"": ""6.58""}","McLeod|Renville|Sibley","27085|27129|27143","FALSE","FALSE","America/Chicago"
-"55386","44.86264","-93.66794","Victoria","MN","Minnesota","TRUE","","7829","447.0","27019","Carver","{""27019"": ""100""}","Carver","27019","FALSE","FALSE","America/Chicago"
-"55387","44.85669","-93.77569","Waconia","MN","Minnesota","TRUE","","13512","166.3","27019","Carver","{""27019"": ""99.87"", ""27053"": ""0.13""}","Carver|Hennepin","27019|27053","FALSE","FALSE","America/Chicago"
-"55388","44.94945","-93.84551","Watertown","MN","Minnesota","TRUE","","5975","57.5","27019","Carver","{""27019"": ""94.14"", ""27171"": ""4.89"", ""27053"": ""0.96""}","Carver|Wright|Hennepin","27019|27171|27053","FALSE","FALSE","America/Chicago"
-"55389","45.29687","-94.43982","Watkins","MN","Minnesota","TRUE","","2524","13.1","27093","Meeker","{""27093"": ""84.15"", ""27145"": ""15.85""}","Meeker|Stearns","27093|27145","FALSE","FALSE","America/Chicago"
-"55390","45.0653","-93.97954","Waverly","MN","Minnesota","TRUE","","2466","27.2","27171","Wright","{""27171"": ""100""}","Wright","27171","FALSE","FALSE","America/Chicago"
-"55391","44.95945","-93.54199","Wayzata","MN","Minnesota","TRUE","","16585","376.9","27053","Hennepin","{""27053"": ""100""}","Hennepin","27053","FALSE","FALSE","America/Chicago"
-"55395","44.9534","-94.06546","Winsted","MN","Minnesota","TRUE","","2784","52.5","27085","McLeod","{""27085"": ""98.51"", ""27019"": ""1.49""}","McLeod|Carver","27085|27019","FALSE","FALSE","America/Chicago"
-"55396","44.54548","-94.36698","Winthrop","MN","Minnesota","TRUE","","2144","7.8","27143","Sibley","{""27143"": ""100""}","Sibley","27143","FALSE","FALSE","America/Chicago"
-"55397","44.81564","-93.93409","Young America","MN","Minnesota","TRUE","","2780","39.4","27019","Carver","{""27019"": ""99.48"", ""27085"": ""0.52""}","Carver|McLeod","27019|27085","FALSE","FALSE","America/Chicago"
-"55398","45.46401","-93.59843","Zimmerman","MN","Minnesota","TRUE","","16428","81.6","27141","Sherburne","{""27141"": ""95.28"", ""27059"": ""4.72""}","Sherburne|Isanti","27141|27059","FALSE","FALSE","America/Chicago"
-"55401","44.98479","-93.26946","Minneapolis","MN","Minnesota","TRUE","","10238","4388.6","27053","Hennepin","{""27053"": ""100""}","Hennepin","27053","FALSE","FALSE","America/Chicago"
-"55402","44.97605","-93.2716","Minneapolis","MN","Minnesota","TRUE","","524","1138.1","27053","Hennepin","{""27053"": ""100""}","Hennepin","27053","FALSE","FALSE","America/Chicago"
-"55403","44.96998","-93.2857","Minneapolis","MN","Minnesota","TRUE","","16784","4752.0","27053","Hennepin","{""27053"": ""100""}","Hennepin","27053","FALSE","FALSE","America/Chicago"
-"55404","44.96197","-93.26085","Minneapolis","MN","Minnesota","TRUE","","26963","5890.9","27053","Hennepin","{""27053"": ""100""}","Hennepin","27053","FALSE","FALSE","America/Chicago"
-"55405","44.97026","-93.30476","Minneapolis","MN","Minnesota","TRUE","","15942","2209.8","27053","Hennepin","{""27053"": ""100""}","Hennepin","27053","FALSE","FALSE","America/Chicago"
-"55406","44.93957","-93.22115","Minneapolis","MN","Minnesota","TRUE","","33563","2590.8","27053","Hennepin","{""27053"": ""100""}","Hennepin","27053","FALSE","FALSE","America/Chicago"
-"55407","44.93503","-93.2529","Minneapolis","MN","Minnesota","TRUE","","40980","3915.9","27053","Hennepin","{""27053"": ""100""}","Hennepin","27053","FALSE","FALSE","America/Chicago"
-"55408","44.94005","-93.29197","Minneapolis","MN","Minnesota","TRUE","","31731","4505.1","27053","Hennepin","{""27053"": ""100""}","Hennepin","27053","FALSE","FALSE","America/Chicago"
-"55409","44.9303","-93.28142","Minneapolis","MN","Minnesota","TRUE","","11926","3708.2","27053","Hennepin","{""27053"": ""100""}","Hennepin","27053","FALSE","FALSE","America/Chicago"
-"55410","44.91187","-93.31958","Minneapolis","MN","Minnesota","TRUE","","20820","2700.3","27053","Hennepin","{""27053"": ""100""}","Hennepin","27053","FALSE","FALSE","America/Chicago"
-"55411","44.99927","-93.29835","Minneapolis","MN","Minnesota","TRUE","","31183","2966.8","27053","Hennepin","{""27053"": ""100""}","Hennepin","27053","FALSE","FALSE","America/Chicago"
-"55412","45.02701","-93.29983","Minneapolis","MN","Minnesota","TRUE","","23631","2516.5","27053","Hennepin","{""27053"": ""100""}","Hennepin","27053","FALSE","FALSE","America/Chicago"
-"55413","44.99895","-93.24185","Minneapolis","MN","Minnesota","TRUE","","14261","1664.4","27053","Hennepin","{""27053"": ""100""}","Hennepin","27053","FALSE","FALSE","America/Chicago"
-"55414","44.97936","-93.22646","Minneapolis","MN","Minnesota","TRUE","","35925","4107.2","27053","Hennepin","{""27053"": ""100""}","Hennepin","27053","FALSE","FALSE","America/Chicago"
-"55415","44.97478","-93.25765","Minneapolis","MN","Minnesota","TRUE","","4815","4345.8","27053","Hennepin","{""27053"": ""100""}","Hennepin","27053","FALSE","FALSE","America/Chicago"
-"55416","44.94927","-93.33884","Minneapolis","MN","Minnesota","TRUE","","33036","1742.7","27053","Hennepin","{""27053"": ""100""}","Hennepin","27053","FALSE","FALSE","America/Chicago"
-"55417","44.90409","-93.23078","Minneapolis","MN","Minnesota","TRUE","","26593","1878.9","27053","Hennepin","{""27053"": ""100""}","Hennepin","27053","FALSE","FALSE","America/Chicago"
-"55418","45.02122","-93.24284","Minneapolis","MN","Minnesota","TRUE","","30305","1730.9","27053","Hennepin","{""27053"": ""99.52"", ""27123"": ""0.48""}","Hennepin|Ramsey","27053|27123","FALSE","FALSE","America/Chicago"
-"55419","44.90593","-93.28735","Minneapolis","MN","Minnesota","TRUE","","27966","2562.1","27053","Hennepin","{""27053"": ""100""}","Hennepin","27053","FALSE","FALSE","America/Chicago"
-"55420","44.83593","-93.27774","Minneapolis","MN","Minnesota","TRUE","","21644","1286.4","27053","Hennepin","{""27053"": ""100""}","Hennepin","27053","FALSE","FALSE","America/Chicago"
-"55421","45.0509","-93.25313","Minneapolis","MN","Minnesota","TRUE","","28582","1756.8","27003","Anoka","{""27003"": ""88.16"", ""27123"": ""11.36"", ""27053"": ""0.49""}","Anoka|Ramsey|Hennepin","27003|27123|27053","FALSE","FALSE","America/Chicago"
-"55422","45.00908","-93.33952","Minneapolis","MN","Minnesota","TRUE","","29837","1386.3","27053","Hennepin","{""27053"": ""100""}","Hennepin","27053","FALSE","FALSE","America/Chicago"
-"55423","44.87624","-93.28215","Minneapolis","MN","Minnesota","TRUE","","36300","2013.4","27053","Hennepin","{""27053"": ""100""}","Hennepin","27053","FALSE","FALSE","America/Chicago"
-"55424","44.90525","-93.33976","Minneapolis","MN","Minnesota","TRUE","","9966","1579.2","27053","Hennepin","{""27053"": ""100""}","Hennepin","27053","FALSE","FALSE","America/Chicago"
-"55425","44.84222","-93.23632","Minneapolis","MN","Minnesota","TRUE","","10737","876.8","27053","Hennepin","{""27053"": ""100""}","Hennepin","27053","FALSE","FALSE","America/Chicago"
-"55426","44.95532","-93.38088","Minneapolis","MN","Minnesota","TRUE","","26339","1507.0","27053","Hennepin","{""27053"": ""100""}","Hennepin","27053","FALSE","FALSE","America/Chicago"
-"55427","45.00628","-93.38022","Minneapolis","MN","Minnesota","TRUE","","22646","1211.1","27053","Hennepin","{""27053"": ""100""}","Hennepin","27053","FALSE","FALSE","America/Chicago"
-"55428","45.06322","-93.3812","Minneapolis","MN","Minnesota","TRUE","","31323","1493.6","27053","Hennepin","{""27053"": ""100""}","Hennepin","27053","FALSE","FALSE","America/Chicago"
-"55429","45.06454","-93.34137","Minneapolis","MN","Minnesota","TRUE","","27899","1729.8","27053","Hennepin","{""27053"": ""100""}","Hennepin","27053","FALSE","FALSE","America/Chicago"
-"55430","45.06397","-93.30129","Minneapolis","MN","Minnesota","TRUE","","22546","1538.9","27053","Hennepin","{""27053"": ""100""}","Hennepin","27053","FALSE","FALSE","America/Chicago"
-"55431","44.82605","-93.31243","Minneapolis","MN","Minnesota","TRUE","","18275","882.2","27053","Hennepin","{""27053"": ""100""}","Hennepin","27053","FALSE","FALSE","America/Chicago"
-"55432","45.09695","-93.25467","Minneapolis","MN","Minnesota","TRUE","","30233","1180.9","27003","Anoka","{""27003"": ""99.41"", ""27123"": ""0.59""}","Anoka|Ramsey","27003|27123","FALSE","FALSE","America/Chicago"
-"55433","45.16134","-93.31642","Minneapolis","MN","Minnesota","TRUE","","34441","1144.9","27003","Anoka","{""27003"": ""100""}","Anoka","27003","FALSE","FALSE","America/Chicago"
-"55434","45.16809","-93.2505","Minneapolis","MN","Minnesota","TRUE","","31149","1331.6","27003","Anoka","{""27003"": ""100""}","Anoka","27003","FALSE","FALSE","America/Chicago"
-"55435","44.87352","-93.33471","Minneapolis","MN","Minnesota","TRUE","","13965","1824.3","27053","Hennepin","{""27053"": ""100""}","Hennepin","27053","FALSE","FALSE","America/Chicago"
-"55436","44.9034","-93.37405","Minneapolis","MN","Minnesota","TRUE","","13444","1095.7","27053","Hennepin","{""27053"": ""100""}","Hennepin","27053","FALSE","FALSE","America/Chicago"
-"55437","44.82463","-93.34525","Minneapolis","MN","Minnesota","TRUE","","18136","1067.1","27053","Hennepin","{""27053"": ""100""}","Hennepin","27053","FALSE","FALSE","America/Chicago"
-"55438","44.82494","-93.37819","Minneapolis","MN","Minnesota","TRUE","","16540","762.5","27053","Hennepin","{""27053"": ""100""}","Hennepin","27053","FALSE","FALSE","America/Chicago"
-"55439","44.87513","-93.37569","Minneapolis","MN","Minnesota","TRUE","","9072","733.5","27053","Hennepin","{""27053"": ""100""}","Hennepin","27053","FALSE","FALSE","America/Chicago"
-"55441","45.00459","-93.42831","Minneapolis","MN","Minnesota","TRUE","","18405","822.5","27053","Hennepin","{""27053"": ""100""}","Hennepin","27053","FALSE","FALSE","America/Chicago"
-"55442","45.04855","-93.42689","Minneapolis","MN","Minnesota","TRUE","","12747","928.8","27053","Hennepin","{""27053"": ""100""}","Hennepin","27053","FALSE","FALSE","America/Chicago"
-"55443","45.11958","-93.33713","Minneapolis","MN","Minnesota","TRUE","","31519","1315.3","27053","Hennepin","{""27053"": ""100""}","Hennepin","27053","FALSE","FALSE","America/Chicago"
-"55444","45.10596","-93.30214","Minneapolis","MN","Minnesota","TRUE","","16122","1408.0","27053","Hennepin","{""27053"": ""100""}","Hennepin","27053","FALSE","FALSE","America/Chicago"
-"55445","45.12327","-93.37971","Minneapolis","MN","Minnesota","TRUE","","12978","643.4","27053","Hennepin","{""27053"": ""100""}","Hennepin","27053","FALSE","FALSE","America/Chicago"
-"55446","45.04404","-93.48754","Minneapolis","MN","Minnesota","TRUE","","25437","965.8","27053","Hennepin","{""27053"": ""100""}","Hennepin","27053","FALSE","FALSE","America/Chicago"
-"55447","45.0011","-93.4892","Minneapolis","MN","Minnesota","TRUE","","21981","962.0","27053","Hennepin","{""27053"": ""100""}","Hennepin","27053","FALSE","FALSE","America/Chicago"
-"55448","45.19075","-93.30214","Minneapolis","MN","Minnesota","TRUE","","28091","998.9","27003","Anoka","{""27003"": ""100""}","Anoka","27003","FALSE","FALSE","America/Chicago"
-"55449","45.17278","-93.19461","Minneapolis","MN","Minnesota","TRUE","","28165","503.7","27003","Anoka","{""27003"": ""100"", ""27123"": ""0""}","Anoka|Ramsey","27003|27123","FALSE","FALSE","America/Chicago"
-"55450","44.87908","-93.22705","Minneapolis","MN","Minnesota","TRUE","","7","0.7","27053","Hennepin","{""27053"": ""100""}","Hennepin","27053","FALSE","FALSE","America/Chicago"
-"55454","44.96966","-93.2422","Minneapolis","MN","Minnesota","TRUE","","10024","6184.1","27053","Hennepin","{""27053"": ""100""}","Hennepin","27053","FALSE","FALSE","America/Chicago"
-"55455","44.97358","-93.23316","Minneapolis","MN","Minnesota","TRUE","","1118","1588.1","27053","Hennepin","{""27053"": ""100""}","Hennepin","27053","FALSE","FALSE","America/Chicago"
-"55601","47.23577","-91.36285","Beaver Bay","MN","Minnesota","TRUE","","75","1.8","27075","Lake","{""27075"": ""100""}","Lake","27075","FALSE","FALSE","America/Chicago"
-"55602","47.34149","-91.87954","Brimson","MN","Minnesota","TRUE","","163","0.5","27137","St. Louis","{""27137"": ""100""}","St. Louis","27137","FALSE","FALSE","America/Chicago"
-"55603","47.55843","-91.26394","Finland","MN","Minnesota","TRUE","","497","0.5","27075","Lake","{""27075"": ""100""}","Lake","27075","FALSE","FALSE","America/Chicago"
-"55604","47.96004","-90.56468","Grand Marais","MN","Minnesota","TRUE","","3578","1.6","27031","Cook","{""27031"": ""100""}","Cook","27031","FALSE","FALSE","America/Chicago"
-"55605","47.96314","-89.75309","Grand Portage","MN","Minnesota","TRUE","","684","3.7","27031","Cook","{""27031"": ""100""}","Cook","27031","FALSE","FALSE","America/Chicago"
-"55606","47.93521","-89.99773","Hovland","MN","Minnesota","TRUE","","188","0.6","27031","Cook","{""27031"": ""100""}","Cook","27031","FALSE","FALSE","America/Chicago"
-"55607","47.62179","-91.51817","Isabella","MN","Minnesota","TRUE","","183","0.2","27075","Lake","{""27075"": ""100""}","Lake","27075","FALSE","FALSE","America/Chicago"
-"55609","46.97015","-91.78115","Knife River","MN","Minnesota","TRUE","","194","21.0","27075","Lake","{""27075"": ""100""}","Lake","27075","FALSE","FALSE","America/Chicago"
-"55612","47.77269","-90.70127","Lutsen","MN","Minnesota","TRUE","","520","1.2","27031","Cook","{""27031"": ""100""}","Cook","27031","FALSE","FALSE","America/Chicago"
-"55613","47.60721","-90.95745","Schroeder","MN","Minnesota","TRUE","","178","0.8","27031","Cook","{""27031"": ""100""}","Cook","27031","FALSE","FALSE","America/Chicago"
-"55614","47.36675","-91.39457","Silver Bay","MN","Minnesota","TRUE","","2309","3.7","27075","Lake","{""27075"": ""100""}","Lake","27075","FALSE","FALSE","America/Chicago"
-"55615","47.73504","-90.83271","Tofte","MN","Minnesota","TRUE","","228","0.8","27031","Cook","{""27031"": ""100""}","Cook","27031","FALSE","FALSE","America/Chicago"
-"55616","47.19075","-91.66289","Two Harbors","MN","Minnesota","TRUE","","6869","7.5","27075","Lake","{""27075"": ""94.74"", ""27137"": ""5.26""}","Lake|St. Louis","27075|27137","FALSE","FALSE","America/Chicago"
-"55702","46.95298","-92.67355","Alborn","MN","Minnesota","TRUE","","533","2.7","27137","St. Louis","{""27137"": ""100""}","St. Louis","27137","FALSE","FALSE","America/Chicago"
-"55703","47.74202","-92.78159","Angora","MN","Minnesota","TRUE","","647","1.8","27137","St. Louis","{""27137"": ""100""}","St. Louis","27137","FALSE","FALSE","America/Chicago"
-"55704","46.20394","-92.76826","Askov","MN","Minnesota","TRUE","","1051","7.3","27115","Pine","{""27115"": ""100""}","Pine","27115","FALSE","FALSE","America/Chicago"
-"55705","47.44915","-92.2033","Aurora","MN","Minnesota","TRUE","","3341","11.1","27137","St. Louis","{""27137"": ""100""}","St. Louis","27137","FALSE","FALSE","America/Chicago"
-"55706","47.72478","-91.96488","Babbitt","MN","Minnesota","TRUE","","1746","11.0","27137","St. Louis","{""27137"": ""100""}","St. Louis","27137","FALSE","FALSE","America/Chicago"
-"55707","46.54618","-92.64828","Barnum","MN","Minnesota","TRUE","","3321","8.1","27017","Carlton","{""27017"": ""100""}","Carlton","27017","FALSE","FALSE","America/Chicago"
-"55708","47.57147","-92.33939","Biwabik","MN","Minnesota","TRUE","","584","10.4","27137","St. Louis","{""27137"": ""100""}","St. Louis","27137","FALSE","FALSE","America/Chicago"
-"55709","47.42657","-93.37103","Bovey","MN","Minnesota","TRUE","","3994","6.7","27061","Itasca","{""27061"": ""100""}","Itasca","27061","FALSE","FALSE","America/Chicago"
-"55710","47.62542","-92.71544","Britt","MN","Minnesota","TRUE","","1357","5.2","27137","St. Louis","{""27137"": ""100""}","St. Louis","27137","FALSE","FALSE","America/Chicago"
-"55711","46.84457","-92.6989","Brookston","MN","Minnesota","TRUE","","639","3.6","27137","St. Louis","{""27137"": ""100""}","St. Louis","27137","FALSE","FALSE","America/Chicago"
-"55712","46.29373","-92.49977","Bruno","MN","Minnesota","TRUE","","623","1.3","27115","Pine","{""27115"": ""100""}","Pine","27115","FALSE","FALSE","America/Chicago"
-"55713","47.49064","-92.76718","Buhl","MN","Minnesota","TRUE","","1019","72.6","27137","St. Louis","{""27137"": ""100""}","St. Louis","27137","FALSE","FALSE","America/Chicago"
-"55716","47.31915","-93.26726","Calumet","MN","Minnesota","TRUE","","343","96.6","27061","Itasca","{""27061"": ""100""}","Itasca","27061","FALSE","FALSE","America/Chicago"
-"55717","47.05818","-92.39241","Canyon","MN","Minnesota","TRUE","","349","1.2","27137","St. Louis","{""27137"": ""100""}","St. Louis","27137","FALSE","FALSE","America/Chicago"
-"55718","46.62315","-92.48532","Carlton","MN","Minnesota","TRUE","","3299","20.9","27017","Carlton","{""27017"": ""100""}","Carlton","27017","FALSE","FALSE","America/Chicago"
-"55719","47.55556","-92.87256","Chisholm","MN","Minnesota","TRUE","","5922","32.7","27137","St. Louis","{""27137"": ""100""}","St. Louis","27137","FALSE","FALSE","America/Chicago"
-"55720","46.7546","-92.54077","Cloquet","MN","Minnesota","TRUE","","17088","41.0","27017","Carlton","{""27017"": ""87.78"", ""27137"": ""12.22""}","Carlton|St. Louis","27017|27137","FALSE","FALSE","America/Chicago"
-"55721","47.21981","-93.68697","Cohasset","MN","Minnesota","TRUE","","3253","14.3","27061","Itasca","{""27061"": ""100""}","Itasca","27061","FALSE","FALSE","America/Chicago"
-"55722","47.27937","-93.43921","Coleraine","MN","Minnesota","TRUE","","1043","150.3","27061","Itasca","{""27061"": ""100""}","Itasca","27061","FALSE","FALSE","America/Chicago"
-"55723","47.82291","-92.9351","Cook","MN","Minnesota","TRUE","","2152","1.6","27137","St. Louis","{""27137"": ""89.72"", ""27061"": ""10.28""}","St. Louis|Itasca","27137|27061","FALSE","FALSE","America/Chicago"
-"55724","47.17903","-92.36188","Cotton","MN","Minnesota","TRUE","","669","1.1","27137","St. Louis","{""27137"": ""100""}","St. Louis","27137","FALSE","FALSE","America/Chicago"
-"55725","48.25997","-92.30212","Crane Lake","MN","Minnesota","TRUE","","133","0.2","27137","St. Louis","{""27137"": ""100""}","St. Louis","27137","FALSE","FALSE","America/Winnipeg"
-"55726","46.67413","-92.83121","Cromwell","MN","Minnesota","TRUE","","1033","4.3","27017","Carlton","{""27017"": ""100""}","Carlton","27017","FALSE","FALSE","America/Chicago"
-"55731","47.97722","-91.65229","Ely","MN","Minnesota","TRUE","","5896","2.7","27137","St. Louis","{""27137"": ""90.33"", ""27075"": ""9.67""}","St. Louis|Lake","27137|27075","FALSE","FALSE","America/Chicago"
-"55732","47.67754","-92.21375","Embarrass","MN","Minnesota","TRUE","","1515","3.3","27137","St. Louis","{""27137"": ""100""}","St. Louis","27137","FALSE","FALSE","America/Chicago"
-"55733","46.70914","-92.36292","Esko","MN","Minnesota","TRUE","","4938","53.2","27017","Carlton","{""27017"": ""100""}","Carlton","27017","FALSE","FALSE","America/Chicago"
-"55734","47.3576","-92.47242","Eveleth","MN","Minnesota","TRUE","","5934","23.0","27137","St. Louis","{""27137"": ""100""}","St. Louis","27137","FALSE","FALSE","America/Chicago"
-"55735","46.21689","-93.02405","Finlayson","MN","Minnesota","TRUE","","1699","4.9","27115","Pine","{""27115"": ""79.1"", ""27001"": ""20.9""}","Pine|Aitkin","27115|27001","FALSE","FALSE","America/Chicago"
-"55736","46.96363","-92.93793","Floodwood","MN","Minnesota","TRUE","","1347","1.7","27137","St. Louis","{""27137"": ""95.35"", ""27061"": ""4.65""}","St. Louis|Itasca","27137|27061","FALSE","FALSE","America/Chicago"
-"55738","47.27432","-92.67239","Forbes","MN","Minnesota","TRUE","","514","1.8","27137","St. Louis","{""27137"": ""100""}","St. Louis","27137","FALSE","FALSE","America/Chicago"
-"55741","47.4633","-92.39795","Gilbert","MN","Minnesota","TRUE","","3641","21.5","27137","St. Louis","{""27137"": ""100""}","St. Louis","27137","FALSE","FALSE","America/Chicago"
-"55742","47.19558","-93.1365","Goodland","MN","Minnesota","TRUE","","302","2.2","27061","Itasca","{""27061"": ""100""}","Itasca","27061","FALSE","FALSE","America/Chicago"
-"55744","47.23487","-93.51155","Grand Rapids","MN","Minnesota","TRUE","","20444","31.8","27061","Itasca","{""27061"": ""100""}","Itasca","27061","FALSE","FALSE","America/Chicago"
-"55746","47.36127","-92.95286","Hibbing","MN","Minnesota","TRUE","","16901","19.6","27137","St. Louis","{""27137"": ""99.65"", ""27061"": ""0.35""}","St. Louis|Itasca","27137|27061","FALSE","FALSE","America/Chicago"
-"55748","47.00801","-93.62389","Hill City","MN","Minnesota","TRUE","","1486","4.8","27001","Aitkin","{""27001"": ""81.91"", ""27061"": ""18.09""}","Aitkin|Itasca","27001|27061","FALSE","FALSE","America/Chicago"
-"55749","46.44528","-92.42728","Holyoke","MN","Minnesota","TRUE","","440","2.1","27017","Carlton","{""27017"": ""69.71"", ""27115"": ""30.29""}","Carlton|Pine","27017|27115","FALSE","FALSE","America/Chicago"
-"55750","47.52203","-91.96576","Hoyt Lakes","MN","Minnesota","TRUE","","2079","5.5","27137","St. Louis","{""27137"": ""100""}","St. Louis","27137","FALSE","FALSE","America/Chicago"
-"55751","47.39855","-92.66106","Iron","MN","Minnesota","TRUE","","1638","10.3","27137","St. Louis","{""27137"": ""100""}","St. Louis","27137","FALSE","FALSE","America/Chicago"
-"55752","46.95319","-93.2774","Jacobson","MN","Minnesota","TRUE","","382","0.7","27001","Aitkin","{""27001"": ""96.46"", ""27061"": ""3.54""}","Aitkin|Itasca","27001|27061","FALSE","FALSE","America/Chicago"
-"55753","47.39547","-93.08159","Keewatin","MN","Minnesota","TRUE","","1013","519.1","27061","Itasca","{""27061"": ""100""}","Itasca","27061","FALSE","FALSE","America/Chicago"
-"55756","46.36669","-92.59251","Kerrick","MN","Minnesota","TRUE","","408","3.2","27115","Pine","{""27115"": ""95.13"", ""27017"": ""4.87""}","Pine|Carlton","27115|27017","FALSE","FALSE","America/Chicago"
-"55757","46.51485","-92.93706","Kettle River","MN","Minnesota","TRUE","","689","2.4","27017","Carlton","{""27017"": ""100""}","Carlton","27017","FALSE","FALSE","America/Chicago"
-"55758","47.50955","-92.72588","Kinney","MN","Minnesota","TRUE","","198","36.3","27137","St. Louis","{""27137"": ""100""}","St. Louis","27137","FALSE","FALSE","America/Chicago"
-"55760","46.64196","-93.24358","Mcgregor","MN","Minnesota","TRUE","","3009","3.1","27001","Aitkin","{""27001"": ""100""}","Aitkin","27001","FALSE","FALSE","America/Chicago"
-"55763","47.32622","-92.14929","Makinen","MN","Minnesota","TRUE","","513","1.1","27137","St. Louis","{""27137"": ""100""}","St. Louis","27137","FALSE","FALSE","America/Chicago"
-"55764","47.32773","-93.31055","Marble","MN","Minnesota","TRUE","","572","38.0","27061","Itasca","{""27061"": ""100""}","Itasca","27061","FALSE","FALSE","America/Chicago"
-"55765","47.10843","-92.76083","Meadowlands","MN","Minnesota","TRUE","","829","1.8","27137","St. Louis","{""27137"": ""100""}","St. Louis","27137","FALSE","FALSE","America/Chicago"
-"55766","47.2581","-92.42755","Melrude","MN","Minnesota","TRUE","","25","0.5","27137","St. Louis","{""27137"": ""100""}","St. Louis","27137","FALSE","FALSE","America/Chicago"
-"55767","46.45069","-92.75917","Moose Lake","MN","Minnesota","TRUE","","4527","32.1","27017","Carlton","{""27017"": ""93.34"", ""27115"": ""6.66""}","Carlton|Pine","27017|27115","FALSE","FALSE","America/Chicago"
-"55768","47.48668","-92.68649","Mountain Iron","MN","Minnesota","TRUE","","2674","16.5","27137","St. Louis","{""27137"": ""100""}","St. Louis","27137","FALSE","FALSE","America/Chicago"
-"55769","47.485","-93.18871","Nashwauk","MN","Minnesota","TRUE","","2489","5.3","27061","Itasca","{""27061"": ""100""}","Itasca","27061","FALSE","FALSE","America/Chicago"
-"55771","48.14393","-92.85607","Orr","MN","Minnesota","TRUE","","1616","0.6","27137","St. Louis","{""27137"": ""95.6"", ""27071"": ""4.4""}","St. Louis|Koochiching","27137|27071","FALSE","FALSE","America/Chicago"
-"55772","48.09474","-93.15553","Nett Lake","MN","Minnesota","TRUE","","162","4.2","27071","Koochiching","{""27071"": ""100""}","Koochiching","27071","FALSE","FALSE","America/Chicago"
-"55775","47.31315","-93.16784","Pengilly","MN","Minnesota","TRUE","","1567","10.2","27061","Itasca","{""27061"": ""100""}","Itasca","27061","FALSE","FALSE","America/Chicago"
-"55779","46.91574","-92.44455","Saginaw","MN","Minnesota","TRUE","","3893","11.3","27137","St. Louis","{""27137"": ""100""}","St. Louis","27137","FALSE","FALSE","America/Chicago"
-"55780","46.68309","-92.69275","Sawyer","MN","Minnesota","TRUE","","190","2.9","27017","Carlton","{""27017"": ""100""}","Carlton","27017","FALSE","FALSE","America/Chicago"
-"55781","47.66706","-93.04234","Side Lake","MN","Minnesota","TRUE","","724","3.7","27137","St. Louis","{""27137"": ""79.97"", ""27061"": ""20.03""}","St. Louis|Itasca","27137|27061","FALSE","FALSE","America/Chicago"
-"55782","47.8231","-92.2049","Soudan","MN","Minnesota","TRUE","","395","11.5","27137","St. Louis","{""27137"": ""100""}","St. Louis","27137","FALSE","FALSE","America/Chicago"
-"55783","46.3964","-92.88291","Sturgeon Lake","MN","Minnesota","TRUE","","2364","8.6","27115","Pine","{""27115"": ""96.64"", ""27017"": ""2.79"", ""27001"": ""0.57""}","Pine|Carlton|Aitkin","27115|27017|27001","FALSE","FALSE","America/Chicago"
-"55784","47.05249","-93.18733","Swan River","MN","Minnesota","TRUE","","104","1.6","27061","Itasca","{""27061"": ""100""}","Itasca","27061","FALSE","FALSE","America/Chicago"
-"55785","46.92319","-93.74633","Swatara","MN","Minnesota","TRUE","","223","0.8","27001","Aitkin","{""27001"": ""80.23"", ""27021"": ""19.77""}","Aitkin|Cass","27001|27021","FALSE","FALSE","America/Chicago"
-"55786","47.31638","-93.39046","Taconite","MN","Minnesota","TRUE","","332","30.0","27061","Itasca","{""27061"": ""100""}","Itasca","27061","FALSE","FALSE","America/Chicago"
-"55787","46.67989","-93.11205","Tamarack","MN","Minnesota","TRUE","","524","2.3","27001","Aitkin","{""27001"": ""82.29"", ""27017"": ""17.71""}","Aitkin|Carlton","27001|27017","FALSE","FALSE","America/Chicago"
-"55790","47.93483","-92.28442","Tower","MN","Minnesota","TRUE","","1955","2.3","27137","St. Louis","{""27137"": ""100""}","St. Louis","27137","FALSE","FALSE","America/Chicago"
-"55792","47.60053","-92.48723","Virginia","MN","Minnesota","TRUE","","9946","38.5","27137","St. Louis","{""27137"": ""100""}","St. Louis","27137","FALSE","FALSE","America/Chicago"
-"55793","47.1159","-93.28405","Warba","MN","Minnesota","TRUE","","671","3.3","27061","Itasca","{""27061"": ""100""}","Itasca","27061","FALSE","FALSE","America/Chicago"
-"55795","46.3139","-92.86291","Willow River","MN","Minnesota","TRUE","","1753","7.9","27115","Pine","{""27115"": ""100""}","Pine","27115","FALSE","FALSE","America/Chicago"
-"55797","46.56514","-92.36871","Wrenshall","MN","Minnesota","TRUE","","1694","9.5","27017","Carlton","{""27017"": ""100""}","Carlton","27017","FALSE","FALSE","America/Chicago"
-"55798","46.71831","-92.98054","Wright","MN","Minnesota","TRUE","","638","2.6","27017","Carlton","{""27017"": ""89.5"", ""27137"": ""9.98"", ""27001"": ""0.52""}","Carlton|St. Louis|Aitkin","27017|27137|27001","FALSE","FALSE","America/Chicago"
-"55802","46.75279","-92.08194","Duluth","MN","Minnesota","TRUE","","2412","362.3","27137","St. Louis","{""27137"": ""100""}","St. Louis","27137","FALSE","FALSE","America/Chicago"
-"55803","47.04751","-92.05538","Duluth","MN","Minnesota","TRUE","","17974","20.7","27137","St. Louis","{""27137"": ""100""}","St. Louis","27137","FALSE","FALSE","America/Chicago"
-"55804","46.93687","-91.93249","Duluth","MN","Minnesota","TRUE","","14907","63.0","27137","St. Louis","{""27137"": ""100""}","St. Louis","27137","FALSE","FALSE","America/Chicago"
-"55805","46.80082","-92.09558","Duluth","MN","Minnesota","TRUE","","9545","2611.1","27137","St. Louis","{""27137"": ""100""}","St. Louis","27137","FALSE","FALSE","America/Chicago"
-"55806","46.76815","-92.12837","Duluth","MN","Minnesota","TRUE","","8756","1008.5","27137","St. Louis","{""27137"": ""100""}","St. Louis","27137","FALSE","FALSE","America/Chicago"
-"55807","46.73519","-92.16843","Duluth","MN","Minnesota","TRUE","","9350","626.7","27137","St. Louis","{""27137"": ""100""}","St. Louis","27137","FALSE","FALSE","America/Chicago"
-"55808","46.6767","-92.23808","Duluth","MN","Minnesota","TRUE","","5848","208.6","27137","St. Louis","{""27137"": ""100""}","St. Louis","27137","FALSE","FALSE","America/Chicago"
-"55810","46.75959","-92.27299","Duluth","MN","Minnesota","TRUE","","8292","62.4","27137","St. Louis","{""27137"": ""96.33"", ""27017"": ""3.67""}","St. Louis|Carlton","27137|27017","FALSE","FALSE","America/Chicago"
-"55811","46.84223","-92.22244","Duluth","MN","Minnesota","TRUE","","27938","166.0","27137","St. Louis","{""27137"": ""100""}","St. Louis","27137","FALSE","FALSE","America/Chicago"
-"55812","46.81162","-92.07396","Duluth","MN","Minnesota","TRUE","","11485","2526.4","27137","St. Louis","{""27137"": ""100""}","St. Louis","27137","FALSE","FALSE","America/Chicago"
-"55814","46.83413","-92.19769","Duluth","MN","Minnesota","TRUE","","596","5506.7","27137","St. Louis","{""27137"": ""100""}","St. Louis","27137","FALSE","FALSE","America/Chicago"
-"55901","44.06977","-92.50688","Rochester","MN","Minnesota","TRUE","","55363","715.6","27109","Olmsted","{""27109"": ""100""}","Olmsted","27109","FALSE","FALSE","America/Chicago"
-"55902","43.96721","-92.51596","Rochester","MN","Minnesota","TRUE","","25066","239.0","27109","Olmsted","{""27109"": ""100""}","Olmsted","27109","FALSE","FALSE","America/Chicago"
-"55904","43.95996","-92.40063","Rochester","MN","Minnesota","TRUE","","27506","170.8","27109","Olmsted","{""27109"": ""100""}","Olmsted","27109","FALSE","FALSE","America/Chicago"
-"55905","44.05595","-92.52583","Rochester","MN","Minnesota","TRUE","","0","0.0","27109","Olmsted","{""27109"": ""0""}","Olmsted","27109","FALSE","FALSE","America/Chicago"
-"55906","44.10731","-92.40531","Rochester","MN","Minnesota","TRUE","","19060","115.4","27109","Olmsted","{""27109"": ""99.64"", ""27157"": ""0.36""}","Olmsted|Wabasha","27109|27157","FALSE","FALSE","America/Chicago"
-"55909","43.56201","-92.73378","Adams","MN","Minnesota","TRUE","","1467","11.1","27099","Mower","{""27099"": ""100""}","Mower","27099","FALSE","FALSE","America/Chicago"
-"55910","44.13295","-91.97332","Altura","MN","Minnesota","TRUE","","1225","5.4","27169","Winona","{""27169"": ""88.83"", ""27157"": ""11.17""}","Winona|Wabasha","27169|27157","FALSE","FALSE","America/Chicago"
-"55912","43.68155","-92.99022","Austin","MN","Minnesota","TRUE","","28970","59.5","27099","Mower","{""27099"": ""98.12"", ""27047"": ""1.88""}","Mower|Freeborn","27099|27047","FALSE","FALSE","America/Chicago"
-"55917","43.87833","-93.071","Blooming Prairie","MN","Minnesota","TRUE","","3721","10.7","27147","Steele","{""27147"": ""77.22"", ""27039"": ""11.17"", ""27047"": ""6.06"", ""27099"": ""5.55""}","Steele|Dodge|Freeborn|Mower","27147|27039|27047|27099","FALSE","FALSE","America/Chicago"
-"55918","43.74081","-92.84647","Brownsdale","MN","Minnesota","TRUE","","831","12.4","27099","Mower","{""27099"": ""100""}","Mower","27099","FALSE","FALSE","America/Chicago"
-"55919","43.61871","-91.29394","Brownsville","MN","Minnesota","TRUE","","1043","9.3","27055","Houston","{""27055"": ""100""}","Houston","27055","FALSE","FALSE","America/Chicago"
-"55920","44.01384","-92.62204","Byron","MN","Minnesota","TRUE","","7840","43.2","27109","Olmsted","{""27109"": ""100""}","Olmsted","27109","FALSE","FALSE","America/Chicago"
-"55921","43.62303","-91.4626","Caledonia","MN","Minnesota","TRUE","","4667","9.9","27055","Houston","{""27055"": ""100""}","Houston","27055","FALSE","FALSE","America/Chicago"
-"55922","43.5589","-91.90098","Canton","MN","Minnesota","TRUE","","1089","9.9","27045","Fillmore","{""27045"": ""100""}","Fillmore","27045","FALSE","FALSE","America/Chicago"
-"55923","43.85103","-92.18612","Chatfield","MN","Minnesota","TRUE","","4613","14.5","27045","Fillmore","{""27045"": ""52.63"", ""27109"": ""45.78"", ""27169"": ""1.59""}","Fillmore|Olmsted|Winona","27045|27109|27169","FALSE","FALSE","America/Chicago"
-"55924","44.03024","-93.01691","Claremont","MN","Minnesota","TRUE","","1502","7.5","27039","Dodge","{""27039"": ""81.43"", ""27147"": ""18.57""}","Dodge|Steele","27039|27147","FALSE","FALSE","America/Chicago"
-"55925","43.90903","-91.4623","Dakota","MN","Minnesota","TRUE","","1098","14.0","27169","Winona","{""27169"": ""100""}","Winona","27169","FALSE","FALSE","America/Chicago"
-"55926","43.74327","-92.70689","Dexter","MN","Minnesota","TRUE","","795","4.9","27099","Mower","{""27099"": ""100""}","Mower","27099","FALSE","FALSE","America/Chicago"
-"55927","44.03432","-92.87104","Dodge Center","MN","Minnesota","TRUE","","4325","20.8","27039","Dodge","{""27039"": ""100""}","Dodge","27039","FALSE","FALSE","America/Chicago"
-"55929","43.97676","-92.13966","Dover","MN","Minnesota","TRUE","","1271","10.6","27109","Olmsted","{""27109"": ""100""}","Olmsted","27109","FALSE","FALSE","America/Chicago"
-"55931","43.51402","-91.39604","Eitzen","MN","Minnesota","TRUE","","335","7.0","27055","Houston","{""27055"": ""100""}","Houston","27055","FALSE","FALSE","America/Chicago"
-"55932","44.1391","-92.3019","Elgin","MN","Minnesota","TRUE","","2091","15.9","27157","Wabasha","{""27157"": ""84.23"", ""27109"": ""15.77""}","Wabasha|Olmsted","27157|27109","FALSE","FALSE","America/Chicago"
-"55933","43.64605","-92.6806","Elkton","MN","Minnesota","TRUE","","244","3.6","27099","Mower","{""27099"": ""100""}","Mower","27099","FALSE","FALSE","America/Chicago"
-"55934","44.00402","-92.26424","Eyota","MN","Minnesota","TRUE","","3231","15.7","27109","Olmsted","{""27109"": ""100""}","Olmsted","27109","FALSE","FALSE","America/Chicago"
-"55935","43.74892","-92.12597","Fountain","MN","Minnesota","TRUE","","830","5.9","27045","Fillmore","{""27045"": ""100""}","Fillmore","27045","FALSE","FALSE","America/Chicago"
-"55936","43.71374","-92.5837","Grand Meadow","MN","Minnesota","TRUE","","1889","8.9","27099","Mower","{""27099"": ""100""}","Mower","27099","FALSE","FALSE","America/Chicago"
-"55939","43.54334","-92.09167","Harmony","MN","Minnesota","TRUE","","1973","9.4","27045","Fillmore","{""27045"": ""100""}","Fillmore","27045","FALSE","FALSE","America/Chicago"
-"55940","43.89491","-92.80423","Hayfield","MN","Minnesota","TRUE","","2839","12.1","27039","Dodge","{""27039"": ""95.57"", ""27109"": ""4.43""}","Dodge|Olmsted","27039|27109","FALSE","FALSE","America/Chicago"
-"55941","43.72564","-91.34828","Hokah","MN","Minnesota","TRUE","","1028","15.9","27055","Houston","{""27055"": ""100""}","Houston","27055","FALSE","FALSE","America/Chicago"
-"55943","43.79079","-91.58398","Houston","MN","Minnesota","TRUE","","2852","6.5","27055","Houston","{""27055"": ""89.08"", ""27169"": ""10.92""}","Houston|Winona","27055|27169","FALSE","FALSE","America/Chicago"
-"55944","43.98769","-92.73786","Kasson","MN","Minnesota","TRUE","","7324","48.5","27039","Dodge","{""27039"": ""99.34"", ""27109"": ""0.66""}","Dodge|Olmsted","27039|27109","FALSE","FALSE","America/Chicago"
-"55945","44.27089","-92.06606","Kellogg","MN","Minnesota","TRUE","","1254","4.9","27157","Wabasha","{""27157"": ""100""}","Wabasha","27157","FALSE","FALSE","America/Chicago"
-"55946","44.26963","-92.96187","Kenyon","MN","Minnesota","TRUE","","3326","10.7","27049","Goodhue","{""27049"": ""92.67"", ""27131"": ""7.33""}","Goodhue|Rice","27049|27131","FALSE","FALSE","America/Chicago"
-"55947","43.8247","-91.35784","La Crescent","MN","Minnesota","TRUE","","7509","39.7","27055","Houston","{""27055"": ""89.52"", ""27169"": ""10.48""}","Houston|Winona","27055|27169","FALSE","FALSE","America/Chicago"
-"55949","43.71262","-91.9379","Lanesboro","MN","Minnesota","TRUE","","1697","5.9","27045","Fillmore","{""27045"": ""100""}","Fillmore","27045","FALSE","FALSE","America/Chicago"
-"55950","43.7471","-92.96451","Lansing","MN","Minnesota","TRUE","","125","72.4","27099","Mower","{""27099"": ""100""}","Mower","27099","FALSE","FALSE","America/Chicago"
-"55951","43.53642","-92.48128","Le Roy","MN","Minnesota","TRUE","","1596","8.1","27099","Mower","{""27099"": ""89.41"", ""27045"": ""10.59""}","Mower|Fillmore","27099|27045","FALSE","FALSE","America/Chicago"
-"55952","43.94335","-91.84356","Lewiston","MN","Minnesota","TRUE","","2680","15.8","27169","Winona","{""27169"": ""100""}","Winona","27169","FALSE","FALSE","America/Chicago"
-"55953","43.52651","-92.96659","Lyle","MN","Minnesota","TRUE","","849","9.5","27099","Mower","{""27099"": ""97.87"", ""27047"": ""2.13""}","Mower|Freeborn","27099|27047","FALSE","FALSE","America/Chicago"
-"55954","43.56465","-91.78085","Mabel","MN","Minnesota","TRUE","","1438","8.5","27045","Fillmore","{""27045"": ""93.97"", ""27055"": ""6.03""}","Fillmore|Houston","27045|27055","FALSE","FALSE","America/Chicago"
-"55955","44.08924","-92.7398","Mantorville","MN","Minnesota","TRUE","","2542","31.1","27039","Dodge","{""27039"": ""100""}","Dodge","27039","FALSE","FALSE","America/Chicago"
-"55956","44.28344","-92.52956","Mazeppa","MN","Minnesota","TRUE","","1908","13.6","27157","Wabasha","{""27157"": ""88.43"", ""27049"": ""10.4"", ""27109"": ""1.17""}","Wabasha|Goodhue|Olmsted","27157|27049|27109","FALSE","FALSE","America/Chicago"
-"55957","44.25102","-92.28267","Millville","MN","Minnesota","TRUE","","700","6.7","27157","Wabasha","{""27157"": ""100""}","Wabasha","27157","FALSE","FALSE","America/Chicago"
-"55959","44.11011","-91.78445","Minnesota City","MN","Minnesota","TRUE","","2508","26.0","27169","Winona","{""27169"": ""100""}","Winona","27169","FALSE","FALSE","America/Chicago"
-"55960","44.14076","-92.53738","Oronoco","MN","Minnesota","TRUE","","3251","35.1","27109","Olmsted","{""27109"": ""99.39"", ""27157"": ""0.61""}","Olmsted|Wabasha","27109|27157","FALSE","FALSE","America/Chicago"
-"55961","43.60842","-92.47377","Ostrander","MN","Minnesota","TRUE","","461","5.4","27045","Fillmore","{""27045"": ""75.84"", ""27099"": ""24.16""}","Fillmore|Mower","27045|27099","FALSE","FALSE","America/Chicago"
-"55962","43.76172","-91.84183","Peterson","MN","Minnesota","TRUE","","777","4.7","27045","Fillmore","{""27045"": ""96.59"", ""27169"": ""3.41""}","Fillmore|Winona","27045|27169","FALSE","FALSE","America/Chicago"
-"55963","44.1898","-92.66251","Pine Island","MN","Minnesota","TRUE","","5468","27.0","27049","Goodhue","{""27049"": ""63.81"", ""27109"": ""29.11"", ""27039"": ""7.08""}","Goodhue|Olmsted|Dodge","27049|27109|27039","FALSE","FALSE","America/Chicago"
-"55964","44.16445","-92.15669","Plainview","MN","Minnesota","TRUE","","4408","19.0","27157","Wabasha","{""27157"": ""96.38"", ""27109"": ""2.35"", ""27169"": ""1.28""}","Wabasha|Olmsted|Winona","27157|27109|27169","FALSE","FALSE","America/Chicago"
-"55965","43.62841","-92.12664","Preston","MN","Minnesota","TRUE","","2460","8.3","27045","Fillmore","{""27045"": ""100""}","Fillmore","27045","FALSE","FALSE","America/Chicago"
-"55967","43.79517","-92.51341","Racine","MN","Minnesota","TRUE","","1128","11.6","27099","Mower","{""27099"": ""100""}","Mower","27099","FALSE","FALSE","America/Chicago"
-"55968","44.39778","-92.08944","Reads Landing","MN","Minnesota","TRUE","","86","21.0","27157","Wabasha","{""27157"": ""100""}","Wabasha","27157","FALSE","FALSE","America/Chicago"
-"55969","44.08247","-91.87731","Rollingstone","MN","Minnesota","TRUE","","1024","12.8","27169","Winona","{""27169"": ""100""}","Winona","27169","FALSE","FALSE","America/Chicago"
-"55970","43.5951","-92.83191","Rose Creek","MN","Minnesota","TRUE","","1044","6.7","27099","Mower","{""27099"": ""100""}","Mower","27099","FALSE","FALSE","America/Chicago"
-"55971","43.81586","-91.75538","Rushford","MN","Minnesota","TRUE","","2902","13.9","27045","Fillmore","{""27045"": ""84.83"", ""27169"": ""10.46"", ""27055"": ""4.71""}","Fillmore|Winona|Houston","27045|27169|27055","FALSE","FALSE","America/Chicago"
-"55972","43.99619","-92.04897","Saint Charles","MN","Minnesota","TRUE","","5260","23.5","27169","Winona","{""27169"": ""96.24"", ""27109"": ""3.76""}","Winona|Olmsted","27169|27109","FALSE","FALSE","America/Chicago"
-"55973","43.80626","-92.77284","Sargeant","MN","Minnesota","TRUE","","272","3.7","27099","Mower","{""27099"": ""100""}","Mower","27099","FALSE","FALSE","America/Chicago"
-"55974","43.58027","-91.64952","Spring Grove","MN","Minnesota","TRUE","","2043","9.4","27055","Houston","{""27055"": ""98.5"", ""27045"": ""1.5""}","Houston|Fillmore","27055|27045","FALSE","FALSE","America/Chicago"
-"55975","43.67542","-92.37189","Spring Valley","MN","Minnesota","TRUE","","4285","10.8","27045","Fillmore","{""27045"": ""95.78"", ""27099"": ""4.22""}","Fillmore|Mower","27045|27099","FALSE","FALSE","America/Chicago"
-"55976","43.86431","-92.4874","Stewartville","MN","Minnesota","TRUE","","7853","34.3","27109","Olmsted","{""27109"": ""98.51"", ""27045"": ""1.49""}","Olmsted|Fillmore","27109|27045","FALSE","FALSE","America/Chicago"
-"55977","43.55577","-92.64807","Taopi","MN","Minnesota","TRUE","","170","2.7","27099","Mower","{""27099"": ""100""}","Mower","27099","FALSE","FALSE","America/Chicago"
-"55979","43.92042","-91.95094","Utica","MN","Minnesota","TRUE","","1180","7.8","27169","Winona","{""27169"": ""95.71"", ""27045"": ""4.29""}","Winona|Fillmore","27169|27045","FALSE","FALSE","America/Chicago"
-"55981","44.35555","-92.06703","Wabasha","MN","Minnesota","TRUE","","3983","30.3","27157","Wabasha","{""27157"": ""100""}","Wabasha","27157","FALSE","FALSE","America/Chicago"
-"55982","43.81574","-92.88474","Waltham","MN","Minnesota","TRUE","","474","6.1","27099","Mower","{""27099"": ""100""}","Mower","27099","FALSE","FALSE","America/Chicago"
-"55983","44.2861","-92.80949","Wanamingo","MN","Minnesota","TRUE","","1593","15.9","27049","Goodhue","{""27049"": ""100""}","Goodhue","27049","FALSE","FALSE","America/Chicago"
-"55985","44.15827","-92.90358","West Concord","MN","Minnesota","TRUE","","1832","7.8","27039","Dodge","{""27039"": ""96.39"", ""27049"": ""2.31"", ""27147"": ""1.29""}","Dodge|Goodhue|Steele","27039|27049|27147","FALSE","FALSE","America/Chicago"
-"55987","43.98519","-91.63469","Winona","MN","Minnesota","TRUE","","34834","84.2","27169","Winona","{""27169"": ""100""}","Winona","27169","FALSE","FALSE","America/Chicago"
-"55990","43.7322","-92.26178","Wykoff","MN","Minnesota","TRUE","","898","7.5","27045","Fillmore","{""27045"": ""100""}","Fillmore","27045","FALSE","FALSE","America/Chicago"
-"55991","44.25815","-92.4193","Zumbro Falls","MN","Minnesota","TRUE","","1464","10.3","27157","Wabasha","{""27157"": ""97.32"", ""27109"": ""2.68""}","Wabasha|Olmsted","27157|27109","FALSE","FALSE","America/Chicago"
-"55992","44.30605","-92.68211","Zumbrota","MN","Minnesota","TRUE","","4932","25.5","27049","Goodhue","{""27049"": ""100""}","Goodhue","27049","FALSE","FALSE","America/Chicago"
-"56001","44.13203","-93.97704","Mankato","MN","Minnesota","TRUE","","48397","163.1","27013","Blue Earth","{""27013"": ""100""}","Blue Earth","27013","FALSE","FALSE","America/Chicago"
-"56003","44.21274","-94.0886","Mankato","MN","Minnesota","TRUE","","14738","130.2","27103","Nicollet","{""27103"": ""100""}","Nicollet","27103","FALSE","FALSE","America/Chicago"
-"56007","43.66036","-93.32527","Albert Lea","MN","Minnesota","TRUE","","21075","48.1","27047","Freeborn","{""27047"": ""100""}","Freeborn","27047","FALSE","FALSE","America/Chicago"
-"56009","43.66368","-93.55584","Alden","MN","Minnesota","TRUE","","1343","5.4","27047","Freeborn","{""27047"": ""100""}","Freeborn","27047","FALSE","FALSE","America/Chicago"
-"56010","43.89118","-94.17806","Amboy","MN","Minnesota","TRUE","","1258","6.0","27013","Blue Earth","{""27013"": ""100""}","Blue Earth","27013","FALSE","FALSE","America/Chicago"
-"56011","44.60236","-93.77421","Belle Plaine","MN","Minnesota","TRUE","","9403","34.8","27139","Scott","{""27139"": ""89.09"", ""27143"": ""7.55"", ""27019"": ""2.24"", ""27079"": ""1.12""}","Scott|Sibley|Carver|Le Sueur","27139|27143|27019|27079","FALSE","FALSE","America/Chicago"
-"56013","43.62265","-94.1056","Blue Earth","MN","Minnesota","TRUE","","4263","9.7","27043","Faribault","{""27043"": ""98.08"", ""27091"": ""1.92""}","Faribault|Martin","27043|27091","FALSE","FALSE","America/Chicago"
-"56014","43.58261","-93.82579","Bricelyn","MN","Minnesota","TRUE","","623","3.3","27043","Faribault","{""27043"": ""100""}","Faribault","27043","FALSE","FALSE","America/Chicago"
-"56016","43.76364","-93.34549","Clarks Grove","MN","Minnesota","TRUE","","962","14.1","27047","Freeborn","{""27047"": ""100""}","Freeborn","27047","FALSE","FALSE","America/Chicago"
-"56017","44.30705","-93.82016","Cleveland","MN","Minnesota","TRUE","","1717","23.0","27079","Le Sueur","{""27079"": ""100""}","Le Sueur","27079","FALSE","FALSE","America/Chicago"
-"56019","44.11271","-94.89317","Comfrey","MN","Minnesota","TRUE","","847","3.2","27015","Brown","{""27015"": ""76.26"", ""27033"": ""19.37"", ""27165"": ""4.38""}","Brown|Cottonwood|Watonwan","27015|27033|27165","FALSE","FALSE","America/Chicago"
-"56020","43.60817","-93.53817","Conger","MN","Minnesota","TRUE","","110","41.3","27047","Freeborn","{""27047"": ""100""}","Freeborn","27047","FALSE","FALSE","America/Chicago"
-"56021","44.28391","-94.31379","Courtland","MN","Minnesota","TRUE","","1088","11.7","27103","Nicollet","{""27103"": ""100""}","Nicollet","27103","FALSE","FALSE","America/Chicago"
-"56022","44.05354","-94.83936","Darfur","MN","Minnesota","TRUE","","50","200.1","27165","Watonwan","{""27165"": ""100""}","Watonwan","27165","FALSE","FALSE","America/Chicago"
-"56023","43.77551","-94.01335","Delavan","MN","Minnesota","TRUE","","514","3.3","27043","Faribault","{""27043"": ""100""}","Faribault","27043","FALSE","FALSE","America/Chicago"
-"56024","44.15134","-93.84783","Eagle Lake","MN","Minnesota","TRUE","","3311","64.4","27013","Blue Earth","{""27013"": ""100""}","Blue Earth","27013","FALSE","FALSE","America/Chicago"
-"56025","43.75162","-93.91077","Easton","MN","Minnesota","TRUE","","435","3.4","27043","Faribault","{""27043"": ""100""}","Faribault","27043","FALSE","FALSE","America/Chicago"
-"56026","43.87551","-93.29274","Ellendale","MN","Minnesota","TRUE","","2020","7.4","27147","Steele","{""27147"": ""76.09"", ""27047"": ""22.42"", ""27161"": ""1.49""}","Steele|Freeborn|Waseca","27147|27047|27161","FALSE","FALSE","America/Chicago"
-"56027","43.51151","-94.11966","Elmore","MN","Minnesota","TRUE","","676","3.3","27043","Faribault","{""27043"": ""88.54"", ""19109"": ""6.91"", ""27091"": ""4.54""}","Faribault|Kossuth|Martin","27043|19109|27091","FALSE","FALSE","America/Chicago"
-"56028","44.22507","-93.70937","Elysian","MN","Minnesota","TRUE","","1280","22.3","27079","Le Sueur","{""27079"": ""94.17"", ""27161"": ""5.83""}","Le Sueur|Waseca","27079|27161","FALSE","FALSE","America/Chicago"
-"56029","43.52648","-93.5242","Emmons","MN","Minnesota","TRUE","","714","6.1","27047","Freeborn","{""27047"": ""100""}","Freeborn","27047","FALSE","FALSE","America/Chicago"
-"56031","43.62216","-94.46744","Fairmont","MN","Minnesota","TRUE","","11802","29.2","27091","Martin","{""27091"": ""100""}","Martin","27091","FALSE","FALSE","America/Chicago"
-"56032","43.76271","-93.55952","Freeborn","MN","Minnesota","TRUE","","282","169.8","27047","Freeborn","{""27047"": ""100""}","Freeborn","27047","FALSE","FALSE","America/Chicago"
-"56033","43.56008","-93.93073","Frost","MN","Minnesota","TRUE","","369","4.0","27043","Faribault","{""27043"": ""100""}","Faribault","27043","FALSE","FALSE","America/Chicago"
-"56034","44.03065","-94.18331","Garden City","MN","Minnesota","TRUE","","493","6.6","27013","Blue Earth","{""27013"": ""100""}","Blue Earth","27013","FALSE","FALSE","America/Chicago"
-"56035","43.8215","-93.26853","Geneva","MN","Minnesota","TRUE","","349","241.0","27047","Freeborn","{""27047"": ""100""}","Freeborn","27047","FALSE","FALSE","America/Chicago"
-"56036","43.55141","-93.2205","Glenville","MN","Minnesota","TRUE","","1908","6.2","27047","Freeborn","{""27047"": ""100""}","Freeborn","27047","FALSE","FALSE","America/Chicago"
-"56037","44.01864","-94.04886","Good Thunder","MN","Minnesota","TRUE","","1637","8.9","27013","Blue Earth","{""27013"": ""100""}","Blue Earth","27013","FALSE","FALSE","America/Chicago"
-"56039","43.66113","-94.32587","Granada","MN","Minnesota","TRUE","","841","3.7","27091","Martin","{""27091"": ""100""}","Martin","27091","FALSE","FALSE","America/Chicago"
-"56041","44.15269","-94.52895","Hanska","MN","Minnesota","TRUE","","1068","6.0","27015","Brown","{""27015"": ""100""}","Brown","27015","FALSE","FALSE","America/Chicago"
-"56042","43.80419","-93.48359","Hartland","MN","Minnesota","TRUE","","712","5.2","27047","Freeborn","{""27047"": ""100""}","Freeborn","27047","FALSE","FALSE","America/Chicago"
-"56043","43.64831","-93.22324","Hayward","MN","Minnesota","TRUE","","433","8.3","27047","Freeborn","{""27047"": ""100""}","Freeborn","27047","FALSE","FALSE","America/Chicago"
-"56044","44.56177","-93.93485","Henderson","MN","Minnesota","TRUE","","2132","10.3","27143","Sibley","{""27143"": ""91.31"", ""27079"": ""8.69""}","Sibley|Le Sueur","27143|27079","FALSE","FALSE","America/Chicago"
-"56045","43.75943","-93.21294","Hollandale","MN","Minnesota","TRUE","","983","13.9","27047","Freeborn","{""27047"": ""100""}","Freeborn","27047","FALSE","FALSE","America/Chicago"
-"56046","43.9645","-93.27154","Hope","MN","Minnesota","TRUE","","91","24.0","27147","Steele","{""27147"": ""100""}","Steele","27147","FALSE","FALSE","America/Chicago"
-"56047","43.73228","-94.23364","Huntley","MN","Minnesota","TRUE","","101","23.1","27043","Faribault","{""27043"": ""100""}","Faribault","27043","FALSE","FALSE","America/Chicago"
-"56048","44.09289","-93.71891","Janesville","MN","Minnesota","TRUE","","4289","13.9","27161","Waseca","{""27161"": ""87.84"", ""27013"": ""12.16""}","Waseca|Blue Earth","27161|27013","FALSE","FALSE","America/Chicago"
-"56050","44.26488","-93.95316","Kasota","MN","Minnesota","TRUE","","1440","26.6","27079","Le Sueur","{""27079"": ""100""}","Le Sueur","27079","FALSE","FALSE","America/Chicago"
-"56051","43.53744","-93.71056","Kiester","MN","Minnesota","TRUE","","706","8.9","27043","Faribault","{""27043"": ""100""}","Faribault","27043","FALSE","FALSE","America/Chicago"
-"56052","44.32011","-93.55363","Kilkenny","MN","Minnesota","TRUE","","762","6.1","27079","Le Sueur","{""27079"": ""73.1"", ""27131"": ""26.9""}","Le Sueur|Rice","27079|27131","FALSE","FALSE","America/Chicago"
-"56054","44.43521","-94.3738","Lafayette","MN","Minnesota","TRUE","","1054","6.8","27103","Nicollet","{""27103"": ""93.28"", ""27143"": ""6.72""}","Nicollet|Sibley","27103|27143","FALSE","FALSE","America/Chicago"
-"56055","44.12821","-94.24573","Lake Crystal","MN","Minnesota","TRUE","","4095","13.4","27013","Blue Earth","{""27013"": ""100""}","Blue Earth","27013","FALSE","FALSE","America/Chicago"
-"56056","44.07277","-94.57928","La Salle","MN","Minnesota","TRUE","","91","34.1","27165","Watonwan","{""27165"": ""100""}","Watonwan","27165","FALSE","FALSE","America/Chicago"
-"56057","44.39454","-93.71549","Le Center","MN","Minnesota","TRUE","","3910","17.4","27079","Le Sueur","{""27079"": ""100""}","Le Sueur","27079","FALSE","FALSE","America/Chicago"
-"56058","44.44502","-93.91536","Le Sueur","MN","Minnesota","TRUE","","5745","17.2","27079","Le Sueur","{""27079"": ""90.01"", ""27143"": ""7.74"", ""27103"": ""2.26""}","Le Sueur|Sibley|Nicollet","27079|27143|27103","FALSE","FALSE","America/Chicago"
-"56060","43.93273","-94.44547","Lewisville","MN","Minnesota","TRUE","","429","5.1","27165","Watonwan","{""27165"": ""100""}","Watonwan","27165","FALSE","FALSE","America/Chicago"
-"56062","44.04739","-94.41483","Madelia","MN","Minnesota","TRUE","","3535","10.9","27165","Watonwan","{""27165"": ""91.96"", ""27013"": ""6.27"", ""27015"": ""1.78""}","Watonwan|Blue Earth|Brown","27165|27013|27015","FALSE","FALSE","America/Chicago"
-"56063","44.21914","-93.82015","Madison Lake","MN","Minnesota","TRUE","","2909","26.6","27013","Blue Earth","{""27013"": ""73.46"", ""27079"": ""25.04"", ""27161"": ""1.51""}","Blue Earth|Le Sueur|Waseca","27013|27079|27161","FALSE","FALSE","America/Chicago"
-"56065","43.93683","-93.91869","Mapleton","MN","Minnesota","TRUE","","2801","9.3","27013","Blue Earth","{""27013"": ""100""}","Blue Earth","27013","FALSE","FALSE","America/Chicago"
-"56068","43.8645","-93.80599","Minnesota Lake","MN","Minnesota","TRUE","","963","5.7","27043","Faribault","{""27043"": ""72.59"", ""27013"": ""15.73"", ""27161"": ""11.68""}","Faribault|Blue Earth|Waseca","27043|27013|27161","FALSE","FALSE","America/Chicago"
-"56069","44.41823","-93.55372","Montgomery","MN","Minnesota","TRUE","","4697","25.4","27079","Le Sueur","{""27079"": ""89.99"", ""27131"": ""10.01""}","Le Sueur|Rice","27079|27131","FALSE","FALSE","America/Chicago"
-"56071","44.53702","-93.58185","New Prague","MN","Minnesota","TRUE","","12878","59.8","27139","Scott","{""27139"": ""54.87"", ""27079"": ""42.81"", ""27131"": ""2.32""}","Scott|Le Sueur|Rice","27139|27079|27131","FALSE","FALSE","America/Chicago"
-"56072","43.89744","-93.51478","New Richland","MN","Minnesota","TRUE","","2189","6.9","27161","Waseca","{""27161"": ""88.87"", ""27147"": ""8.75"", ""27047"": ""2.39""}","Waseca|Steele|Freeborn","27161|27147|27047","FALSE","FALSE","America/Chicago"
-"56073","44.30581","-94.46737","New Ulm","MN","Minnesota","TRUE","","16405","31.7","27015","Brown","{""27015"": ""91.58"", ""27103"": ""7.22"", ""27013"": ""1.2""}","Brown|Nicollet|Blue Earth","27015|27103|27013","FALSE","FALSE","America/Chicago"
-"56074","44.32305","-94.20066","Nicollet","MN","Minnesota","TRUE","","2099","10.4","27103","Nicollet","{""27103"": ""100""}","Nicollet","27103","FALSE","FALSE","America/Chicago"
-"56075","43.73492","-94.43667","Northrop","MN","Minnesota","TRUE","","145","956.8","27091","Martin","{""27091"": ""100""}","Martin","27091","FALSE","FALSE","America/Chicago"
-"56078","44.00597","-93.76562","Pemberton","MN","Minnesota","TRUE","","471","8.4","27013","Blue Earth","{""27013"": ""75.84"", ""27161"": ""24.16""}","Blue Earth|Waseca","27013|27161","FALSE","FALSE","America/Chicago"
-"56080","44.08034","-93.85446","Saint Clair","MN","Minnesota","TRUE","","707","608.8","27013","Blue Earth","{""27013"": ""100""}","Blue Earth","27013","FALSE","FALSE","America/Chicago"
-"56081","43.99128","-94.62912","Saint James","MN","Minnesota","TRUE","","5803","12.7","27165","Watonwan","{""27165"": ""98.93"", ""27015"": ""1.07""}","Watonwan|Brown","27165|27015","FALSE","FALSE","America/Chicago"
-"56082","44.35226","-94.03246","Saint Peter","MN","Minnesota","TRUE","","14475","45.1","27103","Nicollet","{""27103"": ""94.37"", ""27079"": ""5.63""}","Nicollet|Le Sueur","27103|27079","FALSE","FALSE","America/Chicago"
-"56083","44.20556","-95.13522","Sanborn","MN","Minnesota","TRUE","","850","3.3","27127","Redwood","{""27127"": ""68.99"", ""27033"": ""22.08"", ""27015"": ""8.92""}","Redwood|Cottonwood|Brown","27127|27033|27015","FALSE","FALSE","America/Chicago"
-"56085","44.29333","-94.73619","Sleepy Eye","MN","Minnesota","TRUE","","5280","9.7","27015","Brown","{""27015"": ""99.05"", ""27127"": ""0.95""}","Brown|Redwood","27015|27127","FALSE","FALSE","America/Chicago"
-"56087","44.24009","-94.97457","Springfield","MN","Minnesota","TRUE","","2952","7.8","27015","Brown","{""27015"": ""93.49"", ""27127"": ""6.51""}","Brown|Redwood","27015|27127","FALSE","FALSE","America/Chicago"
-"56088","43.82613","-94.44562","Truman","MN","Minnesota","TRUE","","1767","5.4","27091","Martin","{""27091"": ""87.46"", ""27165"": ""10.07"", ""27013"": ""2.47""}","Martin|Watonwan|Blue Earth","27091|27165|27013","FALSE","FALSE","America/Chicago"
-"56089","43.56103","-93.43083","Twin Lakes","MN","Minnesota","TRUE","","150","76.3","27047","Freeborn","{""27047"": ""100""}","Freeborn","27047","FALSE","FALSE","America/Chicago"
-"56090","43.95747","-94.2398","Vernon Center","MN","Minnesota","TRUE","","656","5.5","27013","Blue Earth","{""27013"": ""100""}","Blue Earth","27013","FALSE","FALSE","America/Chicago"
-"56091","43.92733","-93.68572","Waldorf","MN","Minnesota","TRUE","","337","6.7","27161","Waseca","{""27161"": ""100""}","Waseca","27161","FALSE","FALSE","America/Chicago"
-"56093","44.06461","-93.51471","Waseca","MN","Minnesota","TRUE","","12287","26.4","27161","Waseca","{""27161"": ""98.07"", ""27147"": ""1.85"", ""27131"": ""0.08""}","Waseca|Steele|Rice","27161|27147|27131","FALSE","FALSE","America/Chicago"
-"56096","44.24278","-93.59757","Waterville","MN","Minnesota","TRUE","","3021","21.8","27079","Le Sueur","{""27079"": ""91.19"", ""27161"": ""5.16"", ""27131"": ""3.64""}","Le Sueur|Waseca|Rice","27079|27161|27131","FALSE","FALSE","America/Chicago"
-"56097","43.72404","-93.71629","Wells","MN","Minnesota","TRUE","","3692","7.7","27043","Faribault","{""27043"": ""93.65"", ""27047"": ""4.85"", ""27161"": ""1.51""}","Faribault|Freeborn|Waseca","27043|27047|27161","FALSE","FALSE","America/Chicago"
-"56098","43.77421","-94.18564","Winnebago","MN","Minnesota","TRUE","","2105","7.3","27043","Faribault","{""27043"": ""95.53"", ""27091"": ""4.47""}","Faribault|Martin","27043|27091","FALSE","FALSE","America/Chicago"
-"56101","43.88314","-95.13734","Windom","MN","Minnesota","TRUE","","5871","13.0","27033","Cottonwood","{""27033"": ""91.43"", ""27063"": ""8.57""}","Cottonwood|Jackson","27033|27063","FALSE","FALSE","America/Chicago"
-"56110","43.62068","-95.94208","Adrian","MN","Minnesota","TRUE","","1825","6.5","27105","Nobles","{""27105"": ""100""}","Nobles","27105","FALSE","FALSE","America/Chicago"
-"56111","43.6391","-94.88195","Alpha","MN","Minnesota","TRUE","","384","3.0","27063","Jackson","{""27063"": ""100""}","Jackson","27063","FALSE","FALSE","America/Chicago"
-"56113","44.39936","-96.15369","Arco","MN","Minnesota","TRUE","","217","2.3","27081","Lincoln","{""27081"": ""100""}","Lincoln","27081","FALSE","FALSE","America/Chicago"
-"56114","43.97713","-95.59835","Avoca","MN","Minnesota","TRUE","","348","2.8","27101","Murray","{""27101"": ""100""}","Murray","27101","FALSE","FALSE","America/Chicago"
-"56115","44.21649","-95.89824","Balaton","MN","Minnesota","TRUE","","1381","4.5","27083","Lyon","{""27083"": ""82.8"", ""27101"": ""17.2""}","Lyon|Murray","27083|27101","FALSE","FALSE","America/Chicago"
-"56116","43.61497","-96.38155","Beaver Creek","MN","Minnesota","TRUE","","826","7.5","27133","Rock","{""27133"": ""100""}","Rock","27133","FALSE","FALSE","America/Chicago"
-"56117","43.52855","-95.68531","Bigelow","MN","Minnesota","TRUE","","403","6.1","27105","Nobles","{""27105"": ""100""}","Nobles","27105","FALSE","FALSE","America/Chicago"
-"56118","43.93821","-95.03209","Bingham Lake","MN","Minnesota","TRUE","","416","3.0","27033","Cottonwood","{""27033"": ""94.06"", ""27063"": ""5.94""}","Cottonwood|Jackson","27033|27063","FALSE","FALSE","America/Chicago"
-"56119","43.71168","-95.46887","Brewster","MN","Minnesota","TRUE","","964","4.1","27105","Nobles","{""27105"": ""83.28"", ""27063"": ""16.72""}","Nobles|Jackson","27105|27063","FALSE","FALSE","America/Chicago"
-"56120","43.96231","-94.7922","Butterfield","MN","Minnesota","TRUE","","869","3.4","27165","Watonwan","{""27165"": ""100""}","Watonwan","27165","FALSE","FALSE","America/Chicago"
-"56121","43.53771","-94.6113","Ceylon","MN","Minnesota","TRUE","","607","6.3","27091","Martin","{""27091"": ""100""}","Martin","27091","FALSE","FALSE","America/Chicago"
-"56122","43.89664","-95.95325","Chandler","MN","Minnesota","TRUE","","613","4.7","27101","Murray","{""27101"": ""95.9"", ""27105"": ""4.1""}","Murray|Nobles","27101|27105","FALSE","FALSE","America/Chicago"
-"56123","44.08554","-95.59614","Currie","MN","Minnesota","TRUE","","434","2.4","27101","Murray","{""27101"": ""100""}","Murray","27101","FALSE","FALSE","America/Chicago"
-"56125","44.05821","-95.55287","Dovray","MN","Minnesota","TRUE","","52","19.8","27101","Murray","{""27101"": ""100""}","Murray","27101","FALSE","FALSE","America/Chicago"
-"56127","43.54764","-94.77441","Dunnell","MN","Minnesota","TRUE","","415","3.1","27091","Martin","{""27091"": ""100""}","Martin","27091","FALSE","FALSE","America/Chicago"
-"56128","43.88151","-96.1156","Edgerton","MN","Minnesota","TRUE","","2102","6.9","27117","Pipestone","{""27117"": ""86.39"", ""27133"": ""5.9"", ""27105"": ""3.98"", ""27101"": ""3.73""}","Pipestone|Rock|Nobles|Murray","27117|27133|27105|27101","FALSE","FALSE","America/Chicago"
-"56129","43.5282","-96.04059","Ellsworth","MN","Minnesota","TRUE","","777","6.4","27105","Nobles","{""27105"": ""82.73"", ""27133"": ""17.27""}","Nobles|Rock","27105|27133","FALSE","FALSE","America/Chicago"
-"56131","43.86002","-95.57781","Fulda","MN","Minnesota","TRUE","","2310","5.5","27101","Murray","{""27101"": ""77.71"", ""27105"": ""20.15"", ""27033"": ""2.14""}","Murray|Nobles|Cottonwood","27101|27105|27033","FALSE","FALSE","America/Chicago"
-"56132","44.20559","-95.75858","Garvin","MN","Minnesota","TRUE","","431","2.8","27083","Lyon","{""27083"": ""60.74"", ""27101"": ""39.26""}","Lyon|Murray","27083|27101","FALSE","FALSE","America/Chicago"
-"56134","43.7957","-96.23845","Hardwick","MN","Minnesota","TRUE","","409","3.1","27133","Rock","{""27133"": ""100""}","Rock","27133","FALSE","FALSE","America/Chicago"
-"56136","44.50245","-96.3969","Hendricks","MN","Minnesota","TRUE","","1090","4.9","27081","Lincoln","{""27081"": ""100""}","Lincoln","27081","FALSE","FALSE","America/Chicago"
-"56137","43.83488","-95.32681","Heron Lake","MN","Minnesota","TRUE","","1171","3.8","27063","Jackson","{""27063"": ""89.3"", ""27033"": ""10.7""}","Jackson|Cottonwood","27063|27033","FALSE","FALSE","America/Chicago"
-"56138","43.5338","-96.38767","Hills","MN","Minnesota","TRUE","","906","12.1","27133","Rock","{""27133"": ""100""}","Rock","27133","FALSE","FALSE","America/Chicago"
-"56139","44.10295","-96.17727","Holland","MN","Minnesota","TRUE","","455","3.9","27117","Pipestone","{""27117"": ""100""}","Pipestone","27117","FALSE","FALSE","America/Chicago"
-"56140","43.90898","-96.36802","Ihlen","MN","Minnesota","TRUE","","38","122.0","27117","Pipestone","{""27117"": ""100""}","Pipestone","27117","FALSE","FALSE","America/Chicago"
-"56141","43.87881","-95.79022","Iona","MN","Minnesota","TRUE","","285","2.8","27101","Murray","{""27101"": ""95.05"", ""27105"": ""4.95""}","Murray|Nobles","27101|27105","FALSE","FALSE","America/Chicago"
-"56142","44.47157","-96.23256","Ivanhoe","MN","Minnesota","TRUE","","982","3.9","27081","Lincoln","{""27081"": ""100""}","Lincoln","27081","FALSE","FALSE","America/Chicago"
-"56143","43.632","-95.00409","Jackson","MN","Minnesota","TRUE","","4159","8.8","27063","Jackson","{""27063"": ""100""}","Jackson","27063","FALSE","FALSE","America/Chicago"
-"56144","43.85183","-96.39177","Jasper","MN","Minnesota","TRUE","","1184","4.6","27117","Pipestone","{""27117"": ""72.79"", ""27133"": ""19.34"", ""46101"": ""7.87""}","Pipestone|Rock|Moody","27117|27133|46101","FALSE","FALSE","America/Chicago"
-"56145","44.05473","-95.17571","Jeffers","MN","Minnesota","TRUE","","549","4.0","27033","Cottonwood","{""27033"": ""100""}","Cottonwood","27033","FALSE","FALSE","America/Chicago"
-"56146","43.58006","-96.10343","Kanaranzi","MN","Minnesota","TRUE","","88","34.2","27133","Rock","{""27133"": ""100""}","Rock","27133","FALSE","FALSE","America/Chicago"
-"56147","43.75937","-96.0616","Kenneth","MN","Minnesota","TRUE","","182","2.4","27133","Rock","{""27133"": ""80.73"", ""27105"": ""19.27""}","Rock|Nobles","27133|27105","FALSE","FALSE","America/Chicago"
-"56149","44.30096","-96.30744","Lake Benton","MN","Minnesota","TRUE","","1082","3.8","27081","Lincoln","{""27081"": ""99.05"", ""27117"": ""0.95""}","Lincoln|Pipestone","27081|27117","FALSE","FALSE","America/Chicago"
-"56150","43.63559","-95.21108","Lakefield","MN","Minnesota","TRUE","","2676","6.0","27063","Jackson","{""27063"": ""100""}","Jackson","27063","FALSE","FALSE","America/Chicago"
-"56151","44.0324","-95.92804","Lake Wilson","MN","Minnesota","TRUE","","762","2.9","27101","Murray","{""27101"": ""100""}","Murray","27101","FALSE","FALSE","America/Chicago"
-"56152","44.23054","-95.27345","Lamberton","MN","Minnesota","TRUE","","1341","3.9","27127","Redwood","{""27127"": ""85.2"", ""27033"": ""14.8""}","Redwood|Cottonwood","27127|27033","FALSE","FALSE","America/Chicago"
-"56153","43.8331","-96.01097","Leota","MN","Minnesota","TRUE","","219","23.4","27105","Nobles","{""27105"": ""100""}","Nobles","27105","FALSE","FALSE","America/Chicago"
-"56155","43.7685","-95.94072","Lismore","MN","Minnesota","TRUE","","426","3.9","27105","Nobles","{""27105"": ""100""}","Nobles","27105","FALSE","FALSE","America/Chicago"
-"56156","43.66279","-96.22599","Luverne","MN","Minnesota","TRUE","","5825","13.4","27133","Rock","{""27133"": ""100""}","Rock","27133","FALSE","FALSE","America/Chicago"
-"56157","44.39638","-95.94815","Lynd","MN","Minnesota","TRUE","","727","6.2","27083","Lyon","{""27083"": ""100""}","Lyon","27083","FALSE","FALSE","America/Chicago"
-"56158","43.63905","-96.07365","Magnolia","MN","Minnesota","TRUE","","428","4.0","27133","Rock","{""27133"": ""83.64"", ""27105"": ""16.36""}","Rock|Nobles","27133|27105","FALSE","FALSE","America/Chicago"
-"56159","43.94162","-94.93219","Mountain Lake","MN","Minnesota","TRUE","","2774","9.0","27033","Cottonwood","{""27033"": ""98.09"", ""27063"": ""1.91""}","Cottonwood|Jackson","27033|27063","FALSE","FALSE","America/Chicago"
-"56160","43.83478","-94.80794","Odin","MN","Minnesota","TRUE","","250","4.5","27165","Watonwan","{""27165"": ""58.88"", ""27091"": ""29.44"", ""27063"": ""11.68""}","Watonwan|Martin|Jackson","27165|27091|27063","FALSE","FALSE","America/Chicago"
-"56161","43.70866","-95.32354","Okabena","MN","Minnesota","TRUE","","349","4.1","27063","Jackson","{""27063"": ""100""}","Jackson","27063","FALSE","FALSE","America/Chicago"
-"56162","43.84171","-94.66875","Ormsby","MN","Minnesota","TRUE","","247","4.2","27091","Martin","{""27091"": ""55.44"", ""27165"": ""44.56""}","Martin|Watonwan","27091|27165","FALSE","FALSE","America/Chicago"
-"56164","44.05663","-96.33918","Pipestone","MN","Minnesota","TRUE","","5329","7.9","27117","Pipestone","{""27117"": ""96.68"", ""27081"": ""2.5"", ""46101"": ""0.82""}","Pipestone|Lincoln|Moody","27117|27081|46101","FALSE","FALSE","America/Chicago"
-"56165","43.72466","-95.71049","Reading","MN","Minnesota","TRUE","","429","4.3","27105","Nobles","{""27105"": ""100""}","Nobles","27105","FALSE","FALSE","America/Chicago"
-"56166","44.19999","-95.37236","Revere","MN","Minnesota","TRUE","","210","2.3","27127","Redwood","{""27127"": ""72.73"", ""27033"": ""27.27""}","Redwood|Cottonwood","27127|27033","FALSE","FALSE","America/Chicago"
-"56167","43.55154","-95.40261","Round Lake","MN","Minnesota","TRUE","","630","4.8","27105","Nobles","{""27105"": ""65.51"", ""27063"": ""34.49""}","Nobles|Jackson","27105|27063","FALSE","FALSE","America/Chicago"
-"56168","43.61749","-95.80619","Rushmore","MN","Minnesota","TRUE","","806","3.2","27105","Nobles","{""27105"": ""100""}","Nobles","27105","FALSE","FALSE","America/Chicago"
-"56169","44.33383","-96.00494","Russell","MN","Minnesota","TRUE","","628","4.5","27083","Lyon","{""27083"": ""100""}","Lyon","27083","FALSE","FALSE","America/Chicago"
-"56170","44.16825","-96.08704","Ruthton","MN","Minnesota","TRUE","","644","3.6","27117","Pipestone","{""27117"": ""72.57"", ""27083"": ""14.48"", ""27101"": ""12.95""}","Pipestone|Lyon|Murray","27117|27083|27101","FALSE","FALSE","America/Chicago"
-"56171","43.66765","-94.7652","Sherburn","MN","Minnesota","TRUE","","1814","7.5","27091","Martin","{""27091"": ""100""}","Martin","27091","FALSE","FALSE","America/Chicago"
-"56172","44.00895","-95.7708","Slayton","MN","Minnesota","TRUE","","2984","9.7","27101","Murray","{""27101"": ""100""}","Murray","27101","FALSE","FALSE","America/Chicago"
-"56173","43.52478","-96.24592","Steen","MN","Minnesota","TRUE","","323","4.3","27133","Rock","{""27133"": ""100""}","Rock","27133","FALSE","FALSE","America/Chicago"
-"56174","44.01598","-95.30553","Storden","MN","Minnesota","TRUE","","404","4.1","27033","Cottonwood","{""27033"": ""100""}","Cottonwood","27033","FALSE","FALSE","America/Chicago"
-"56175","44.25519","-95.63527","Tracy","MN","Minnesota","TRUE","","3202","9.1","27083","Lyon","{""27083"": ""86.06"", ""27101"": ""9.08"", ""27127"": ""4.86""}","Lyon|Murray|Redwood","27083|27101|27127","FALSE","FALSE","America/Chicago"
-"56176","43.78443","-94.724","Trimont","MN","Minnesota","TRUE","","1111","7.0","27091","Martin","{""27091"": ""100""}","Martin","27091","FALSE","FALSE","America/Chicago"
-"56178","44.28485","-96.1312","Tyler","MN","Minnesota","TRUE","","1891","8.6","27081","Lincoln","{""27081"": ""96.51"", ""27083"": ""3.49""}","Lincoln|Lyon","27081|27083","FALSE","FALSE","America/Chicago"
-"56180","44.24594","-95.46528","Walnut Grove","MN","Minnesota","TRUE","","1180","4.0","27127","Redwood","{""27127"": ""88.07"", ""27033"": ""6.25"", ""27101"": ""5.68""}","Redwood|Cottonwood|Murray","27127|27033|27101","FALSE","FALSE","America/Chicago"
-"56181","43.67983","-94.61734","Welcome","MN","Minnesota","TRUE","","1119","6.6","27091","Martin","{""27091"": ""100""}","Martin","27091","FALSE","FALSE","America/Chicago"
-"56183","44.0294","-95.42781","Westbrook","MN","Minnesota","TRUE","","1301","4.9","27033","Cottonwood","{""27033"": ""91.37"", ""27101"": ""8.63""}","Cottonwood|Murray","27033|27101","FALSE","FALSE","America/Chicago"
-"56185","43.79203","-95.82543","Wilmont","MN","Minnesota","TRUE","","551","4.9","27105","Nobles","{""27105"": ""100""}","Nobles","27105","FALSE","FALSE","America/Chicago"
-"56186","44.03033","-96.08164","Woodstock","MN","Minnesota","TRUE","","321","2.0","27117","Pipestone","{""27117"": ""79.12"", ""27101"": ""20.88""}","Pipestone|Murray","27117|27101","FALSE","FALSE","America/Chicago"
-"56187","43.62385","-95.58286","Worthington","MN","Minnesota","TRUE","","14574","33.1","27105","Nobles","{""27105"": ""99.29"", ""27063"": ""0.71""}","Nobles|Jackson","27105|27063","FALSE","FALSE","America/Chicago"
-"56201","45.10152","-95.0419","Willmar","MN","Minnesota","TRUE","","23562","75.9","27067","Kandiyohi","{""27067"": ""100""}","Kandiyohi","27067","FALSE","FALSE","America/Chicago"
-"56207","45.49685","-96.06945","Alberta","MN","Minnesota","TRUE","","256","2.1","27149","Stevens","{""27149"": ""97.21"", ""27151"": ""2.79""}","Stevens|Swift","27149|27151","FALSE","FALSE","America/Chicago"
-"56208","45.2425","-96.0043","Appleton","MN","Minnesota","TRUE","","2051","4.2","27151","Swift","{""27151"": ""97.05"", ""27073"": ""2.57"", ""27023"": ""0.39""}","Swift|Lac qui Parle|Chippewa","27151|27073|27023","FALSE","FALSE","America/Chicago"
-"56209","45.12422","-94.80081","Atwater","MN","Minnesota","TRUE","","2216","8.7","27067","Kandiyohi","{""27067"": ""93.8"", ""27093"": ""6.2""}","Kandiyohi|Meeker","27067|27093","FALSE","FALSE","America/Chicago"
-"56210","45.55988","-96.56527","Barry","MN","Minnesota","TRUE","","5","8.5","27011","Big Stone","{""27011"": ""100""}","Big Stone","27011","FALSE","FALSE","America/Chicago"
-"56211","45.57994","-96.69185","Beardsley","MN","Minnesota","TRUE","","423","1.5","27011","Big Stone","{""27011"": ""76.18"", ""27155"": ""23.82""}","Big Stone|Traverse","27011|27155","FALSE","FALSE","America/Chicago"
-"56212","45.13696","-96.33196","Bellingham","MN","Minnesota","TRUE","","508","2.4","27073","Lac qui Parle","{""27073"": ""100""}","Lac qui Parle","27073","FALSE","FALSE","America/Chicago"
-"56214","44.60675","-95.32622","Belview","MN","Minnesota","TRUE","","667","4.1","27127","Redwood","{""27127"": ""94.62"", ""27173"": ""5.38""}","Redwood|Yellow Medicine","27127|27173","FALSE","FALSE","America/Chicago"
-"56215","45.31146","-95.57235","Benson","MN","Minnesota","TRUE","","4281","7.8","27151","Swift","{""27151"": ""98.19"", ""27121"": ""1.81""}","Swift|Pope","27151|27121","FALSE","FALSE","America/Chicago"
-"56216","44.93658","-95.05655","Blomkest","MN","Minnesota","TRUE","","658","6.6","27067","Kandiyohi","{""27067"": ""100""}","Kandiyohi","27067","FALSE","FALSE","America/Chicago"
-"56218","44.82443","-95.9456","Boyd","MN","Minnesota","TRUE","","467","1.8","27073","Lac qui Parle","{""27073"": ""71.34"", ""27173"": ""28.66""}","Lac qui Parle|Yellow Medicine","27073|27173","FALSE","FALSE","America/Chicago"
-"56219","45.59978","-96.81994","Browns Valley","MN","Minnesota","TRUE","","1106","5.6","27155","Traverse","{""27155"": ""67.93"", ""46109"": ""32.07""}","Traverse|Roberts","27155|46109","FALSE","FALSE","America/Chicago"
-"56220","44.73183","-96.29416","Canby","MN","Minnesota","TRUE","","2653","3.7","27173","Yellow Medicine","{""27173"": ""89.38"", ""27073"": ""6.03"", ""27081"": ""4.59""}","Yellow Medicine|Lac qui Parle|Lincoln","27173|27073|27081","FALSE","FALSE","America/Chicago"
-"56221","45.55512","-96.19635","Chokio","MN","Minnesota","TRUE","","716","2.0","27149","Stevens","{""27149"": ""93.66"", ""27011"": ""6.08"", ""27155"": ""0.26""}","Stevens|Big Stone|Traverse","27149|27011|27155","FALSE","FALSE","America/Chicago"
-"56222","44.98414","-95.36161","Clara City","MN","Minnesota","TRUE","","2086","8.5","27023","Chippewa","{""27023"": ""100""}","Chippewa","27023","FALSE","FALSE","America/Chicago"
-"56223","44.76201","-95.81929","Clarkfield","MN","Minnesota","TRUE","","1435","4.7","27173","Yellow Medicine","{""27173"": ""100""}","Yellow Medicine","27173","FALSE","FALSE","America/Chicago"
-"56224","44.37437","-95.05108","Clements","MN","Minnesota","TRUE","","348","3.6","27127","Redwood","{""27127"": ""100""}","Redwood","27127","FALSE","FALSE","America/Chicago"
-"56225","45.45313","-96.4369","Clinton","MN","Minnesota","TRUE","","728","2.6","27011","Big Stone","{""27011"": ""100""}","Big Stone","27011","FALSE","FALSE","America/Chicago"
-"56226","45.41622","-95.67238","Clontarf","MN","Minnesota","TRUE","","220","2.7","27151","Swift","{""27151"": ""72.44"", ""27121"": ""27.56""}","Swift|Pope","27151|27121","FALSE","FALSE","America/Chicago"
-"56227","45.29278","-96.16591","Correll","MN","Minnesota","TRUE","","205","1.2","27011","Big Stone","{""27011"": ""100""}","Big Stone","27011","FALSE","FALSE","America/Chicago"
-"56228","44.93688","-94.67707","Cosmos","MN","Minnesota","TRUE","","950","6.2","27093","Meeker","{""27093"": ""97.28"", ""27129"": ""2.72""}","Meeker|Renville","27093|27129","FALSE","FALSE","America/Chicago"
-"56229","44.59331","-95.71817","Cottonwood","MN","Minnesota","TRUE","","1921","7.6","27083","Lyon","{""27083"": ""90.81"", ""27173"": ""9.19""}","Lyon|Yellow Medicine","27083|27173","FALSE","FALSE","America/Chicago"
-"56230","44.79299","-95.0924","Danube","MN","Minnesota","TRUE","","805","5.1","27129","Renville","{""27129"": ""100""}","Renville","27129","FALSE","FALSE","America/Chicago"
-"56231","45.28237","-95.7614","Danvers","MN","Minnesota","TRUE","","390","1.5","27151","Swift","{""27151"": ""100""}","Swift","27151","FALSE","FALSE","America/Chicago"
-"56232","44.93054","-96.03834","Dawson","MN","Minnesota","TRUE","","2392","6.3","27073","Lac qui Parle","{""27073"": ""100""}","Lac qui Parle","27073","FALSE","FALSE","America/Chicago"
-"56235","45.70425","-96.01918","Donnelly","MN","Minnesota","TRUE","","484","2.1","27149","Stevens","{""27149"": ""100""}","Stevens","27149","FALSE","FALSE","America/Chicago"
-"56236","45.65973","-96.41057","Dumont","MN","Minnesota","TRUE","","348","1.4","27155","Traverse","{""27155"": ""84.12"", ""27011"": ""15.88""}","Traverse|Big Stone","27155|27011","FALSE","FALSE","America/Chicago"
-"56237","44.61646","-95.4325","Echo","MN","Minnesota","TRUE","","519","3.0","27173","Yellow Medicine","{""27173"": ""100""}","Yellow Medicine","27173","FALSE","FALSE","America/Chicago"
-"56239","44.50421","-95.91039","Ghent","MN","Minnesota","TRUE","","627","9.0","27083","Lyon","{""27083"": ""100""}","Lyon","27083","FALSE","FALSE","America/Chicago"
-"56240","45.56404","-96.4754","Graceville","MN","Minnesota","TRUE","","983","2.5","27011","Big Stone","{""27011"": ""85.89"", ""27155"": ""14.11""}","Big Stone|Traverse","27011|27155","FALSE","FALSE","America/Chicago"
-"56241","44.79694","-95.57915","Granite Falls","MN","Minnesota","TRUE","","3858","10.1","27173","Yellow Medicine","{""27173"": ""70.52"", ""27023"": ""26.55"", ""27129"": ""2.93""}","Yellow Medicine|Chippewa|Renville","27173|27023|27129","FALSE","FALSE","America/Chicago"
-"56243","45.16765","-94.68214","Grove City","MN","Minnesota","TRUE","","1670","6.9","27093","Meeker","{""27093"": ""100""}","Meeker","27093","FALSE","FALSE","America/Chicago"
-"56244","45.48197","-95.78307","Hancock","MN","Minnesota","TRUE","","1529","4.9","27149","Stevens","{""27149"": ""85.03"", ""27121"": ""13.5"", ""27151"": ""1.47""}","Stevens|Pope|Swift","27149|27121|27151","FALSE","FALSE","America/Chicago"
-"56245","44.68438","-95.68112","Hanley Falls","MN","Minnesota","TRUE","","731","6.0","27173","Yellow Medicine","{""27173"": ""100""}","Yellow Medicine","27173","FALSE","FALSE","America/Chicago"
-"56248","45.79568","-96.1369","Herman","MN","Minnesota","TRUE","","751","2.1","27051","Grant","{""27051"": ""88.48"", ""27149"": ""6.2"", ""27155"": ""5.33""}","Grant|Stevens|Traverse","27051|27149|27155","FALSE","FALSE","America/Chicago"
-"56249","45.31552","-95.89866","Holloway","MN","Minnesota","TRUE","","283","1.7","27151","Swift","{""27151"": ""100""}","Swift","27151","FALSE","FALSE","America/Chicago"
-"56251","45.14248","-94.91824","Kandiyohi","MN","Minnesota","TRUE","","848","9.7","27067","Kandiyohi","{""27067"": ""100""}","Kandiyohi","27067","FALSE","FALSE","America/Chicago"
-"56252","45.18108","-95.30209","Kerkhoven","MN","Minnesota","TRUE","","1185","6.3","27151","Swift","{""27151"": ""86.75"", ""27023"": ""9.45"", ""27067"": ""3.8""}","Swift|Chippewa|Kandiyohi","27151|27023|27067","FALSE","FALSE","America/Chicago"
-"56253","44.96362","-94.87981","Lake Lillian","MN","Minnesota","TRUE","","1084","3.9","27067","Kandiyohi","{""27067"": ""100""}","Kandiyohi","27067","FALSE","FALSE","America/Chicago"
-"56255","44.39598","-95.41863","Lucan","MN","Minnesota","TRUE","","362","3.5","27127","Redwood","{""27127"": ""100""}","Redwood","27127","FALSE","FALSE","America/Chicago"
-"56256","45.02506","-96.19793","Madison","MN","Minnesota","TRUE","","2412","4.0","27073","Lac qui Parle","{""27073"": ""100""}","Lac qui Parle","27073","FALSE","FALSE","America/Chicago"
-"56257","44.97103","-96.39811","Marietta","MN","Minnesota","TRUE","","505","2.3","27073","Lac qui Parle","{""27073"": ""100""}","Lac qui Parle","27073","FALSE","FALSE","America/Chicago"
-"56258","44.44389","-95.76046","Marshall","MN","Minnesota","TRUE","","15505","30.9","27083","Lyon","{""27083"": ""99.69"", ""27127"": ""0.31""}","Lyon|Redwood","27083|27127","FALSE","FALSE","America/Chicago"
-"56260","44.96579","-95.48291","Maynard","MN","Minnesota","TRUE","","838","3.4","27023","Chippewa","{""27023"": ""90.96"", ""27129"": ""9.04""}","Chippewa|Renville","27023|27129","FALSE","FALSE","America/Chicago"
-"56262","45.11816","-95.86472","Milan","MN","Minnesota","TRUE","","624","3.6","27023","Chippewa","{""27023"": ""91.99"", ""27151"": ""8.01""}","Chippewa|Swift","27023|27151","FALSE","FALSE","America/Chicago"
-"56263","44.41485","-95.54378","Milroy","MN","Minnesota","TRUE","","463","3.6","27127","Redwood","{""27127"": ""91.87"", ""27083"": ""8.13""}","Redwood|Lyon","27127|27083","FALSE","FALSE","America/Chicago"
-"56264","44.57051","-95.9794","Minneota","MN","Minnesota","TRUE","","2080","6.4","27083","Lyon","{""27083"": ""88.93"", ""27173"": ""10.21"", ""27081"": ""0.86""}","Lyon|Yellow Medicine|Lincoln","27083|27173|27081","FALSE","FALSE","America/Chicago"
-"56265","45.00486","-95.69626","Montevideo","MN","Minnesota","TRUE","","7324","10.6","27023","Chippewa","{""27023"": ""91.12"", ""27073"": ""5.62"", ""27173"": ""3.26""}","Chippewa|Lac qui Parle|Yellow Medicine","27023|27073|27173","FALSE","FALSE","America/Chicago"
-"56266","44.42396","-94.91732","Morgan","MN","Minnesota","TRUE","","1471","5.5","27127","Redwood","{""27127"": ""87.35"", ""27015"": ""12.65""}","Redwood|Brown","27127|27015","FALSE","FALSE","America/Chicago"
-"56267","45.58453","-95.93008","Morris","MN","Minnesota","TRUE","","7003","13.3","27149","Stevens","{""27149"": ""100""}","Stevens","27149","FALSE","FALSE","America/Chicago"
-"56270","44.56746","-94.9914","Morton","MN","Minnesota","TRUE","","1137","10.9","27129","Renville","{""27129"": ""56.46"", ""27127"": ""43.54""}","Renville|Redwood","27129|27127","FALSE","FALSE","America/Chicago"
-"56271","45.2447","-95.41168","Murdock","MN","Minnesota","TRUE","","1161","3.0","27151","Swift","{""27151"": ""89.97"", ""27023"": ""10.03""}","Swift|Chippewa","27151|27023","FALSE","FALSE","America/Chicago"
-"56273","45.32132","-94.96514","New London","MN","Minnesota","TRUE","","4926","19.3","27067","Kandiyohi","{""27067"": ""100""}","Kandiyohi","27067","FALSE","FALSE","America/Chicago"
-"56274","45.90222","-96.24572","Norcross","MN","Minnesota","TRUE","","206","1.1","27051","Grant","{""27051"": ""75.14"", ""27155"": ""24.86""}","Grant|Traverse","27051|27155","FALSE","FALSE","America/Chicago"
-"56276","45.24253","-96.31464","Odessa","MN","Minnesota","TRUE","","200","1.4","27011","Big Stone","{""27011"": ""81.54"", ""27073"": ""18.46""}","Big Stone|Lac qui Parle","27011|27073","FALSE","FALSE","America/Chicago"
-"56277","44.76534","-94.99499","Olivia","MN","Minnesota","TRUE","","3089","11.2","27129","Renville","{""27129"": ""100""}","Renville","27129","FALSE","FALSE","America/Chicago"
-"56278","45.34709","-96.37797","Ortonville","MN","Minnesota","TRUE","","2661","8.0","27011","Big Stone","{""27011"": ""98.19"", ""27073"": ""1.81""}","Big Stone|Lac qui Parle","27011|27073","FALSE","FALSE","America/Chicago"
-"56279","45.21742","-95.17399","Pennock","MN","Minnesota","TRUE","","1397","9.0","27067","Kandiyohi","{""27067"": ""100""}","Kandiyohi","27067","FALSE","FALSE","America/Chicago"
-"56280","44.63289","-96.16847","Porter","MN","Minnesota","TRUE","","431","2.4","27173","Yellow Medicine","{""27173"": ""67.92"", ""27081"": ""32.08""}","Yellow Medicine|Lincoln","27173|27081","FALSE","FALSE","America/Chicago"
-"56281","44.95326","-95.16929","Prinsburg","MN","Minnesota","TRUE","","660","20.7","27067","Kandiyohi","{""27067"": ""100""}","Kandiyohi","27067","FALSE","FALSE","America/Chicago"
-"56282","45.03884","-95.22591","Raymond","MN","Minnesota","TRUE","","1659","6.1","27067","Kandiyohi","{""27067"": ""85.63"", ""27023"": ""14.37""}","Kandiyohi|Chippewa","27067|27023","FALSE","FALSE","America/Chicago"
-"56283","44.53276","-95.14209","Redwood Falls","MN","Minnesota","TRUE","","6310","13.8","27127","Redwood","{""27127"": ""97.21"", ""27129"": ""2.79""}","Redwood|Renville","27127|27129","FALSE","FALSE","America/Chicago"
-"56284","44.78469","-95.20234","Renville","MN","Minnesota","TRUE","","2039","5.6","27129","Renville","{""27129"": ""93.08"", ""27067"": ""6.54"", ""27127"": ""0.38""}","Renville|Kandiyohi|Redwood","27129|27067|27127","FALSE","FALSE","America/Chicago"
-"56285","44.78885","-95.34902","Sacred Heart","MN","Minnesota","TRUE","","1200","4.7","27129","Renville","{""27129"": ""100""}","Renville","27129","FALSE","FALSE","America/Chicago"
-"56287","44.47544","-95.32623","Seaforth","MN","Minnesota","TRUE","","81","71.2","27127","Redwood","{""27127"": ""100""}","Redwood","27127","FALSE","FALSE","America/Chicago"
-"56288","45.2418","-94.95244","Spicer","MN","Minnesota","TRUE","","4718","38.8","27067","Kandiyohi","{""27067"": ""100""}","Kandiyohi","27067","FALSE","FALSE","America/Chicago"
-"56289","45.33175","-95.22657","Sunburg","MN","Minnesota","TRUE","","639","5.0","27067","Kandiyohi","{""27067"": ""90.06"", ""27151"": ""9.94""}","Kandiyohi|Swift","27067|27151","FALSE","FALSE","America/Chicago"
-"56291","44.62353","-96.06835","Taunton","MN","Minnesota","TRUE","","436","2.5","27083","Lyon","{""27083"": ""52.1"", ""27173"": ""30.14"", ""27081"": ""17.76""}","Lyon|Yellow Medicine|Lincoln","27083|27173|27081","FALSE","FALSE","America/Chicago"
-"56292","44.49817","-95.45715","Vesta","MN","Minnesota","TRUE","","604","3.9","27127","Redwood","{""27127"": ""100""}","Redwood","27127","FALSE","FALSE","America/Chicago"
-"56293","44.4169","-95.26531","Wabasso","MN","Minnesota","TRUE","","1287","5.9","27127","Redwood","{""27127"": ""100""}","Redwood","27127","FALSE","FALSE","America/Chicago"
-"56294","44.31485","-95.21306","Wanda","MN","Minnesota","TRUE","","55","82.0","27127","Redwood","{""27127"": ""100""}","Redwood","27127","FALSE","FALSE","America/Chicago"
-"56295","45.04119","-95.83406","Watson","MN","Minnesota","TRUE","","296","5.2","27023","Chippewa","{""27023"": ""100""}","Chippewa","27023","FALSE","FALSE","America/Chicago"
-"56296","45.82866","-96.46746","Wheaton","MN","Minnesota","TRUE","","1894","2.9","27155","Traverse","{""27155"": ""100""}","Traverse","27155","FALSE","FALSE","America/Chicago"
-"56297","44.63679","-95.54302","Wood Lake","MN","Minnesota","TRUE","","865","5.1","27173","Yellow Medicine","{""27173"": ""100""}","Yellow Medicine","27173","FALSE","FALSE","America/Chicago"
-"56301","45.48813","-94.24229","Saint Cloud","MN","Minnesota","TRUE","","34524","179.6","27145","Stearns","{""27145"": ""100""}","Stearns","27145","FALSE","FALSE","America/Chicago"
-"56303","45.57441","-94.21155","Saint Cloud","MN","Minnesota","TRUE","","25490","881.6","27145","Stearns","{""27145"": ""100""}","Stearns","27145","FALSE","FALSE","America/Chicago"
-"56304","45.52536","-94.05284","Saint Cloud","MN","Minnesota","TRUE","","16701","107.6","27141","Sherburne","{""27141"": ""57.96"", ""27009"": ""42.04""}","Sherburne|Benton","27141|27009","FALSE","FALSE","America/Chicago"
-"56307","45.62799","-94.58872","Albany","MN","Minnesota","TRUE","","5427","19.5","27145","Stearns","{""27145"": ""100""}","Stearns","27145","FALSE","FALSE","America/Chicago"
-"56308","45.87903","-95.38672","Alexandria","MN","Minnesota","TRUE","","25235","62.6","27041","Douglas","{""27041"": ""99.74"", ""27121"": ""0.26""}","Douglas|Pope","27041|27121","FALSE","FALSE","America/Chicago"
-"56309","46.08118","-95.80641","Ashby","MN","Minnesota","TRUE","","1394","9.8","27051","Grant","{""27051"": ""80"", ""27111"": ""20""}","Grant|Otter Tail","27051|27111","FALSE","FALSE","America/Chicago"
-"56310","45.63407","-94.44332","Avon","MN","Minnesota","TRUE","","5383","29.0","27145","Stearns","{""27145"": ""100""}","Stearns","27145","FALSE","FALSE","America/Chicago"
-"56311","45.89728","-95.89764","Barrett","MN","Minnesota","TRUE","","743","4.1","27051","Grant","{""27051"": ""100""}","Grant","27051","FALSE","FALSE","America/Chicago"
-"56312","45.4635","-94.95258","Belgrade","MN","Minnesota","TRUE","","2673","5.9","27145","Stearns","{""27145"": ""81.56"", ""27067"": ""18.44""}","Stearns|Kandiyohi","27145|27067","FALSE","FALSE","America/Chicago"
-"56313","45.78397","-93.55308","Bock","MN","Minnesota","TRUE","","104","278.1","27095","Mille Lacs","{""27095"": ""100""}","Mille Lacs","27095","FALSE","FALSE","America/Chicago"
-"56314","45.81167","-94.43311","Bowlus","MN","Minnesota","TRUE","","1157","10.5","27097","Morrison","{""27097"": ""95.55"", ""27145"": ""4.45""}","Morrison|Stearns","27097|27145","FALSE","FALSE","America/Chicago"
-"56315","45.98475","-95.58899","Brandon","MN","Minnesota","TRUE","","1637","9.1","27041","Douglas","{""27041"": ""99.37"", ""27111"": ""0.63""}","Douglas|Otter Tail","27041|27111","FALSE","FALSE","America/Chicago"
-"56316","45.49549","-95.15268","Brooten","MN","Minnesota","TRUE","","1509","4.3","27145","Stearns","{""27145"": ""68.86"", ""27121"": ""23.92"", ""27067"": ""7.22""}","Stearns|Pope|Kandiyohi","27145|27121|27067","FALSE","FALSE","America/Chicago"
-"56318","45.85441","-94.67228","Burtrum","MN","Minnesota","TRUE","","1048","10.1","27153","Todd","{""27153"": ""63.33"", ""27097"": ""36.67""}","Todd|Morrison","27153|27097","FALSE","FALSE","America/Chicago"
-"56319","46.00199","-95.22751","Carlos","MN","Minnesota","TRUE","","1300","12.5","27041","Douglas","{""27041"": ""96.29"", ""27153"": ""3.71""}","Douglas|Todd","27041|27153","FALSE","FALSE","America/Chicago"
-"56320","45.4648","-94.41873","Cold Spring","MN","Minnesota","TRUE","","8471","61.1","27145","Stearns","{""27145"": ""100""}","Stearns","27145","FALSE","FALSE","America/Chicago"
-"56321","45.58047","-94.39312","Collegeville","MN","Minnesota","TRUE","","1489","892.9","27145","Stearns","{""27145"": ""100""}","Stearns","27145","FALSE","FALSE","America/Chicago"
-"56323","45.6322","-95.72517","Cyrus","MN","Minnesota","TRUE","","516","5.5","27121","Pope","{""27121"": ""96.37"", ""27149"": ""3.63""}","Pope|Stevens","27121|27149","FALSE","FALSE","America/Chicago"
-"56324","46.16608","-95.90514","Dalton","MN","Minnesota","TRUE","","1114","7.6","27111","Otter Tail","{""27111"": ""100""}","Otter Tail","27111","FALSE","FALSE","America/Chicago"
-"56325","45.56305","-94.94629","Elrosa","MN","Minnesota","TRUE","","219","500.8","27145","Stearns","{""27145"": ""100""}","Stearns","27145","FALSE","FALSE","America/Chicago"
-"56326","46.02287","-95.68728","Evansville","MN","Minnesota","TRUE","","1472","6.0","27041","Douglas","{""27041"": ""94.82"", ""27111"": ""5.18""}","Douglas|Otter Tail","27041|27111","FALSE","FALSE","America/Chicago"
-"56327","45.75739","-95.61273","Farwell","MN","Minnesota","TRUE","","790","6.1","27041","Douglas","{""27041"": ""70.73"", ""27121"": ""29.27""}","Douglas|Pope","27041|27121","FALSE","FALSE","America/Chicago"
-"56328","45.9547","-94.51757","Flensburg","MN","Minnesota","TRUE","","152","42.1","27097","Morrison","{""27097"": ""100""}","Morrison","27097","FALSE","FALSE","America/Chicago"
-"56329","45.70875","-93.90575","Foley","MN","Minnesota","TRUE","","7449","15.0","27009","Benton","{""27009"": ""94.38"", ""27097"": ""5.62""}","Benton|Morrison","27009|27097","FALSE","FALSE","America/Chicago"
-"56330","45.7497","-93.74923","Foreston","MN","Minnesota","TRUE","","1624","15.8","27095","Mille Lacs","{""27095"": ""84.03"", ""27009"": ""15.97""}","Mille Lacs|Benton","27095|27009","FALSE","FALSE","America/Chicago"
-"56331","45.67731","-94.67654","Freeport","MN","Minnesota","TRUE","","2395","13.3","27145","Stearns","{""27145"": ""99.5"", ""27153"": ""0.5""}","Stearns|Todd","27145|27153","FALSE","FALSE","America/Chicago"
-"56332","45.96507","-95.5058","Garfield","MN","Minnesota","TRUE","","1589","12.0","27041","Douglas","{""27041"": ""100""}","Douglas","27041","FALSE","FALSE","America/Chicago"
-"56334","45.58335","-95.34548","Glenwood","MN","Minnesota","TRUE","","5739","11.0","27121","Pope","{""27121"": ""98.14"", ""27041"": ""1.86""}","Pope|Douglas","27121|27041","FALSE","FALSE","America/Chicago"
-"56335","45.60045","-94.86175","Greenwald","MN","Minnesota","TRUE","","230","178.2","27145","Stearns","{""27145"": ""100""}","Stearns","27145","FALSE","FALSE","America/Chicago"
-"56336","45.82325","-94.76155","Grey Eagle","MN","Minnesota","TRUE","","1456","11.3","27153","Todd","{""27153"": ""94.91"", ""27145"": ""5.09""}","Todd|Stearns","27153|27145","FALSE","FALSE","America/Chicago"
-"56338","46.00872","-93.87842","Hillman","MN","Minnesota","TRUE","","1506","3.5","27097","Morrison","{""27097"": ""91.43"", ""27035"": ""8.57""}","Morrison|Crow Wing","27097|27035","FALSE","FALSE","America/Chicago"
-"56339","45.82768","-95.8169","Hoffman","MN","Minnesota","TRUE","","1043","6.4","27051","Grant","{""27051"": ""92.03"", ""27041"": ""7.97""}","Grant|Douglas","27051|27041","FALSE","FALSE","America/Chicago"
-"56340","45.75601","-94.44614","Holdingford","MN","Minnesota","TRUE","","2526","19.8","27145","Stearns","{""27145"": ""81.91"", ""27097"": ""18.09""}","Stearns|Morrison","27145|27097","FALSE","FALSE","America/Chicago"
-"56342","46.18132","-93.40806","Isle","MN","Minnesota","TRUE","","2609","5.3","27095","Mille Lacs","{""27095"": ""60.75"", ""27001"": ""23.18"", ""27065"": ""16.06""}","Mille Lacs|Aitkin|Kanabec","27095|27001|27065","FALSE","FALSE","America/Chicago"
-"56343","45.7887","-95.69968","Kensington","MN","Minnesota","TRUE","","1034","5.8","27041","Douglas","{""27041"": ""82.51"", ""27121"": ""8.53"", ""27051"": ""5.51"", ""27149"": ""3.46""}","Douglas|Pope|Grant|Stevens","27041|27121|27051|27149","FALSE","FALSE","America/Chicago"
-"56345","45.98881","-94.37486","Little Falls","MN","Minnesota","TRUE","","14498","24.7","27097","Morrison","{""27097"": ""100""}","Morrison","27097","FALSE","FALSE","America/Chicago"
-"56347","45.96752","-94.87195","Long Prairie","MN","Minnesota","TRUE","","7326","15.1","27153","Todd","{""27153"": ""100""}","Todd","27153","FALSE","FALSE","America/Chicago"
-"56349","45.72518","-95.51186","Lowry","MN","Minnesota","TRUE","","831","7.5","27121","Pope","{""27121"": ""89.09"", ""27041"": ""10.91""}","Pope|Douglas","27121|27041","FALSE","FALSE","America/Chicago"
-"56350","46.31575","-93.23493","McGrath","MN","Minnesota","TRUE","","507","0.9","27001","Aitkin","{""27001"": ""100""}","Aitkin","27001","FALSE","FALSE","America/Chicago"
-"56352","45.65043","-94.80221","Melrose","MN","Minnesota","TRUE","","6007","20.5","27145","Stearns","{""27145"": ""100""}","Stearns","27145","FALSE","FALSE","America/Chicago"
-"56353","45.79738","-93.62818","Milaca","MN","Minnesota","TRUE","","9300","19.4","27095","Mille Lacs","{""27095"": ""99.14"", ""27059"": ""0.52"", ""27065"": ""0.33""}","Mille Lacs|Isanti|Kanabec","27095|27059|27065","FALSE","FALSE","America/Chicago"
-"56354","46.06295","-95.26466","Miltona","MN","Minnesota","TRUE","","1404","12.9","27041","Douglas","{""27041"": ""100""}","Douglas","27041","FALSE","FALSE","America/Chicago"
-"56355","45.93999","-95.23556","Nelson","MN","Minnesota","TRUE","","527","7.9","27041","Douglas","{""27041"": ""100""}","Douglas","27041","FALSE","FALSE","America/Chicago"
-"56356","45.629","-94.75336","New Munich","MN","Minnesota","TRUE","","288","296.0","27145","Stearns","{""27145"": ""100""}","Stearns","27145","FALSE","FALSE","America/Chicago"
-"56357","45.69729","-93.80078","Oak Park","MN","Minnesota","TRUE","","1160","12.1","27009","Benton","{""27009"": ""69"", ""27095"": ""31""}","Benton|Mille Lacs","27009|27095","FALSE","FALSE","America/Chicago"
-"56358","45.84355","-93.45215","Ogilvie","MN","Minnesota","TRUE","","3307","10.4","27065","Kanabec","{""27065"": ""96.99"", ""27059"": ""1.63"", ""27095"": ""1.38""}","Kanabec|Isanti|Mille Lacs","27065|27059|27095","FALSE","FALSE","America/Chicago"
-"56359","46.08377","-93.66374","Onamia","MN","Minnesota","TRUE","","3673","7.3","27095","Mille Lacs","{""27095"": ""100""}","Mille Lacs","27095","FALSE","FALSE","America/Chicago"
-"56360","45.87375","-95.12725","Osakis","MN","Minnesota","TRUE","","3836","11.4","27041","Douglas","{""27041"": ""61.09"", ""27153"": ""38.91""}","Douglas|Todd","27041|27153","FALSE","FALSE","America/Chicago"
-"56361","46.16024","-95.33724","Parkers Prairie","MN","Minnesota","TRUE","","2417","6.0","27111","Otter Tail","{""27111"": ""85.52"", ""27041"": ""14.48""}","Otter Tail|Douglas","27111|27041","FALSE","FALSE","America/Chicago"
-"56362","45.40328","-94.7142","Paynesville","MN","Minnesota","TRUE","","5772","15.2","27145","Stearns","{""27145"": ""88.55"", ""27093"": ""7.72"", ""27067"": ""3.73""}","Stearns|Meeker|Kandiyohi","27145|27093|27067","FALSE","FALSE","America/Chicago"
-"56363","45.69668","-93.64982","Pease","MN","Minnesota","TRUE","","171","193.7","27095","Mille Lacs","{""27095"": ""100""}","Mille Lacs","27095","FALSE","FALSE","America/Chicago"
-"56364","46.01121","-94.0656","Pierz","MN","Minnesota","TRUE","","5775","9.4","27097","Morrison","{""27097"": ""98.34"", ""27035"": ""1.66""}","Morrison|Crow Wing","27097|27035","FALSE","FALSE","America/Chicago"
-"56367","45.76141","-94.17008","Rice","MN","Minnesota","TRUE","","6697","25.5","27009","Benton","{""27009"": ""79.53"", ""27145"": ""20.47""}","Benton|Stearns","27009|27145","FALSE","FALSE","America/Chicago"
-"56368","45.4521","-94.53893","Richmond","MN","Minnesota","TRUE","","4634","26.0","27145","Stearns","{""27145"": ""100""}","Stearns","27145","FALSE","FALSE","America/Chicago"
-"56369","45.46705","-94.34535","Rockville","MN","Minnesota","TRUE","","700","288.0","27145","Stearns","{""27145"": ""100""}","Stearns","27145","FALSE","FALSE","America/Chicago"
-"56371","45.43316","-94.63661","Roscoe","MN","Minnesota","TRUE","","129","110.4","27145","Stearns","{""27145"": ""100""}","Stearns","27145","FALSE","FALSE","America/Chicago"
-"56373","45.85573","-94.23654","Royalton","MN","Minnesota","TRUE","","3188","12.2","27097","Morrison","{""27097"": ""90.59"", ""27009"": ""9.41""}","Morrison|Benton","27097|27009","FALSE","FALSE","America/Chicago"
-"56374","45.60711","-94.33586","Saint Joseph","MN","Minnesota","TRUE","","10778","61.5","27145","Stearns","{""27145"": ""100""}","Stearns","27145","FALSE","FALSE","America/Chicago"
-"56375","45.70091","-94.27427","Saint Stephen","MN","Minnesota","TRUE","","963","101.5","27145","Stearns","{""27145"": ""100""}","Stearns","27145","FALSE","FALSE","America/Chicago"
-"56376","45.50562","-94.67959","Saint Martin","MN","Minnesota","TRUE","","345","73.5","27145","Stearns","{""27145"": ""100""}","Stearns","27145","FALSE","FALSE","America/Chicago"
-"56377","45.6414","-94.22927","Sartell","MN","Minnesota","TRUE","","19637","362.4","27145","Stearns","{""27145"": ""87.31"", ""27009"": ""12.69""}","Stearns|Benton","27145|27009","FALSE","FALSE","America/Chicago"
-"56378","45.72274","-94.98834","Sauk Centre","MN","Minnesota","TRUE","","7889","14.4","27145","Stearns","{""27145"": ""82.09"", ""27153"": ""17.91""}","Stearns|Todd","27145|27153","FALSE","FALSE","America/Chicago"
-"56379","45.63993","-94.08445","Sauk Rapids","MN","Minnesota","TRUE","","16905","72.1","27009","Benton","{""27009"": ""100""}","Benton","27009","FALSE","FALSE","America/Chicago"
-"56381","45.55252","-95.54989","Starbuck","MN","Minnesota","TRUE","","2459","6.3","27121","Pope","{""27121"": ""100""}","Pope","27121","FALSE","FALSE","America/Chicago"
-"56382","45.91891","-94.61092","Swanville","MN","Minnesota","TRUE","","1505","8.0","27097","Morrison","{""27097"": ""75.97"", ""27153"": ""24.03""}","Morrison|Todd","27097|27153","FALSE","FALSE","America/Chicago"
-"56384","45.80948","-94.56718","Upsala","MN","Minnesota","TRUE","","380","134.8","27097","Morrison","{""27097"": ""100""}","Morrison","27097","FALSE","FALSE","America/Chicago"
-"56385","45.70512","-95.22287","Villard","MN","Minnesota","TRUE","","745","4.4","27121","Pope","{""27121"": ""96.98"", ""27041"": ""3.02""}","Pope|Douglas","27121|27041","FALSE","FALSE","America/Chicago"
-"56386","46.11173","-93.52019","Wahkon","MN","Minnesota","TRUE","","670","13.0","27095","Mille Lacs","{""27095"": ""100""}","Mille Lacs","27095","FALSE","FALSE","America/Chicago"
-"56387","45.53289","-94.23969","Waite Park","MN","Minnesota","TRUE","","7329","333.9","27145","Stearns","{""27145"": ""100""}","Stearns","27145","FALSE","FALSE","America/Chicago"
-"56389","45.79887","-95.08922","West Union","MN","Minnesota","TRUE","","115","77.0","27153","Todd","{""27153"": ""100""}","Todd","27153","FALSE","FALSE","America/Chicago"
-"56401","46.32011","-94.11503","Brainerd","MN","Minnesota","TRUE","","29973","35.6","27035","Crow Wing","{""27035"": ""94.28"", ""27021"": ""5.72""}","Crow Wing|Cass","27035|27021","FALSE","FALSE","America/Chicago"
-"56425","46.34286","-94.28219","Baxter","MN","Minnesota","TRUE","","8262","168.2","27035","Crow Wing","{""27035"": ""100""}","Crow Wing","27035","FALSE","FALSE","America/Chicago"
-"56431","46.48197","-93.6427","Aitkin","MN","Minnesota","TRUE","","8778","7.5","27001","Aitkin","{""27001"": ""92.52"", ""27035"": ""7.48""}","Aitkin|Crow Wing","27001|27035","FALSE","FALSE","America/Chicago"
-"56433","46.97333","-94.69687","Akeley","MN","Minnesota","TRUE","","1679","5.3","27057","Hubbard","{""27057"": ""81.2"", ""27021"": ""18.8""}","Hubbard|Cass","27057|27021","FALSE","FALSE","America/Chicago"
-"56434","46.33853","-94.93461","Aldrich","MN","Minnesota","TRUE","","285","7.4","27153","Todd","{""27153"": ""69.36"", ""27159"": ""30.64""}","Todd|Wadena","27153|27159","FALSE","FALSE","America/Chicago"
-"56435","46.80838","-94.53793","Backus","MN","Minnesota","TRUE","","2733","6.6","27021","Cass","{""27021"": ""99.79"", ""27035"": ""0.21""}","Cass|Crow Wing","27021|27035","FALSE","FALSE","America/Chicago"
-"56436","47.16187","-94.6888","Benedict","MN","Minnesota","TRUE","","46","27.3","27057","Hubbard","{""27057"": ""100""}","Hubbard","27057","FALSE","FALSE","America/Chicago"
-"56437","46.24891","-95.05896","Bertha","MN","Minnesota","TRUE","","1452","8.4","27153","Todd","{""27153"": ""93.41"", ""27111"": ""6.59""}","Todd|Otter Tail","27153|27111","FALSE","FALSE","America/Chicago"
-"56438","46.13804","-94.80893","Browerville","MN","Minnesota","TRUE","","2717","7.3","27153","Todd","{""27153"": ""100""}","Todd","27153","FALSE","FALSE","America/Chicago"
-"56440","46.14557","-94.95755","Clarissa","MN","Minnesota","TRUE","","1467","10.4","27153","Todd","{""27153"": ""100""}","Todd","27153","FALSE","FALSE","America/Chicago"
-"56441","46.5702","-93.98312","Crosby","MN","Minnesota","TRUE","","3742","18.3","27035","Crow Wing","{""27035"": ""100""}","Crow Wing","27035","FALSE","FALSE","America/Chicago"
-"56442","46.67502","-94.10179","Crosslake","MN","Minnesota","TRUE","","2428","26.4","27035","Crow Wing","{""27035"": ""100""}","Crow Wing","27035","FALSE","FALSE","America/Chicago"
-"56443","46.17895","-94.61822","Cushing","MN","Minnesota","TRUE","","1325","5.1","27097","Morrison","{""27097"": ""75.44"", ""27153"": ""24.56""}","Morrison|Todd","27097|27153","FALSE","FALSE","America/Chicago"
-"56444","46.41916","-93.8748","Deerwood","MN","Minnesota","TRUE","","3127","21.7","27035","Crow Wing","{""27035"": ""100""}","Crow Wing","27035","FALSE","FALSE","America/Chicago"
-"56446","46.12551","-95.08925","Eagle Bend","MN","Minnesota","TRUE","","1532","5.9","27153","Todd","{""27153"": ""89.42"", ""27111"": ""5.32"", ""27041"": ""5.26""}","Todd|Otter Tail|Douglas","27153|27111|27041","FALSE","FALSE","America/Chicago"
-"56447","46.73516","-93.91683","Emily","MN","Minnesota","TRUE","","948","3.7","27035","Crow Wing","{""27035"": ""100""}","Crow Wing","27035","FALSE","FALSE","America/Chicago"
-"56448","46.76812","-94.09042","Fifty Lakes","MN","Minnesota","TRUE","","301","4.3","27035","Crow Wing","{""27035"": ""92.47"", ""27021"": ""7.53""}","Crow Wing|Cass","27035|27021","FALSE","FALSE","America/Chicago"
-"56449","46.1758","-94.27166","Fort Ripley","MN","Minnesota","TRUE","","1991","8.3","27035","Crow Wing","{""27035"": ""76.43"", ""27097"": ""23.57""}","Crow Wing|Morrison","27035|27097","FALSE","FALSE","America/Chicago"
-"56450","46.23147","-93.83415","Garrison","MN","Minnesota","TRUE","","929","14.0","27035","Crow Wing","{""27035"": ""61.75"", ""27095"": ""38.25""}","Crow Wing|Mille Lacs","27035|27095","FALSE","FALSE","America/Chicago"
-"56452","46.94724","-94.46365","Hackensack","MN","Minnesota","TRUE","","1779","7.0","27021","Cass","{""27021"": ""100""}","Cass","27021","FALSE","FALSE","America/Chicago"
-"56453","46.31417","-95.16055","Hewitt","MN","Minnesota","TRUE","","888","6.3","27153","Todd","{""27153"": ""63.61"", ""27111"": ""36.39""}","Todd|Otter Tail","27153|27111","FALSE","FALSE","America/Chicago"
-"56455","46.44873","-94.00749","Ironton","MN","Minnesota","TRUE","","1883","29.8","27035","Crow Wing","{""27035"": ""100""}","Crow Wing","27035","FALSE","FALSE","America/Chicago"
-"56456","46.63778","-94.3373","Jenkins","MN","Minnesota","TRUE","","59","30.7","27035","Crow Wing","{""27035"": ""100""}","Crow Wing","27035","FALSE","FALSE","America/Chicago"
-"56458","47.19912","-94.98969","Lake George","MN","Minnesota","TRUE","","427","6.5","27057","Hubbard","{""27057"": ""100""}","Hubbard","27057","FALSE","FALSE","America/Chicago"
-"56461","47.23613","-94.85164","Laporte","MN","Minnesota","TRUE","","3260","4.6","27057","Hubbard","{""27057"": ""96.24"", ""27021"": ""3.76""}","Hubbard|Cass","27057|27021","FALSE","FALSE","America/Chicago"
-"56464","46.7633","-95.10477","Menahga","MN","Minnesota","TRUE","","4606","7.0","27159","Wadena","{""27159"": ""60.56"", ""27005"": ""24.65"", ""27057"": ""12.85"", ""27111"": ""1.94""}","Wadena|Becker|Hubbard|Otter Tail","27159|27005|27057|27111","FALSE","FALSE","America/Chicago"
-"56465","46.53526","-94.11216","Merrifield","MN","Minnesota","TRUE","","2097","20.9","27035","Crow Wing","{""27035"": ""100""}","Crow Wing","27035","FALSE","FALSE","America/Chicago"
-"56466","46.40923","-94.63597","Motley","MN","Minnesota","TRUE","","2979","6.2","27021","Cass","{""27021"": ""44.96"", ""27097"": ""44.03"", ""27153"": ""11.01""}","Cass|Morrison|Todd","27021|27097|27153","FALSE","FALSE","America/Chicago"
-"56467","46.97944","-94.84325","Nevis","MN","Minnesota","TRUE","","2517","8.0","27057","Hubbard","{""27057"": ""100""}","Hubbard","27057","FALSE","FALSE","America/Chicago"
-"56468","46.49294","-94.29767","Nisswa","MN","Minnesota","TRUE","","4385","32.8","27035","Crow Wing","{""27035"": ""70.3"", ""27021"": ""29.7""}","Crow Wing|Cass","27035|27021","FALSE","FALSE","America/Chicago"
-"56469","46.77909","-93.54598","Palisade","MN","Minnesota","TRUE","","1004","1.4","27001","Aitkin","{""27001"": ""100""}","Aitkin","27001","FALSE","FALSE","America/Chicago"
-"56470","47.02292","-95.09814","Park Rapids","MN","Minnesota","TRUE","","10457","10.3","27057","Hubbard","{""27057"": ""92.02"", ""27005"": ""7.59"", ""27029"": ""0.25"", ""27159"": ""0.15""}","Hubbard|Becker|Clearwater|Wadena","27057|27005|27029|27159","FALSE","FALSE","America/Chicago"
-"56472","46.57402","-94.35565","Pequot Lakes","MN","Minnesota","TRUE","","7780","19.3","27035","Crow Wing","{""27035"": ""83.07"", ""27021"": ""16.93""}","Crow Wing|Cass","27035|27021","FALSE","FALSE","America/Chicago"
-"56473","46.36069","-94.48958","Pillager","MN","Minnesota","TRUE","","3441","16.5","27021","Cass","{""27021"": ""95.47"", ""27097"": ""4.53""}","Cass|Morrison","27021|27097","FALSE","FALSE","America/Chicago"
-"56474","46.71985","-94.40297","Pine River","MN","Minnesota","TRUE","","4138","6.6","27021","Cass","{""27021"": ""84.45"", ""27035"": ""15.55""}","Cass|Crow Wing","27021|27035","FALSE","FALSE","America/Chicago"
-"56475","46.08319","-94.54153","Randall","MN","Minnesota","TRUE","","1568","9.0","27097","Morrison","{""27097"": ""100""}","Morrison","27097","FALSE","FALSE","America/Chicago"
-"56477","46.64357","-95.00667","Sebeka","MN","Minnesota","TRUE","","2924","4.8","27159","Wadena","{""27159"": ""80.31"", ""27111"": ""17.26"", ""27021"": ""2.43""}","Wadena|Otter Tail|Cass","27159|27111|27021","FALSE","FALSE","America/Chicago"
-"56479","46.44004","-94.79023","Staples","MN","Minnesota","TRUE","","5225","10.2","27153","Todd","{""27153"": ""61.79"", ""27159"": ""34.27"", ""27021"": ""3.94""}","Todd|Wadena|Cass","27153|27159|27021","FALSE","FALSE","America/Chicago"
-"56481","46.47357","-94.93251","Verndale","MN","Minnesota","TRUE","","1936","5.1","27159","Wadena","{""27159"": ""82.23"", ""27153"": ""15.26"", ""27021"": ""2.51""}","Wadena|Todd|Cass","27159|27153|27021","FALSE","FALSE","America/Chicago"
-"56482","46.46532","-95.14279","Wadena","MN","Minnesota","TRUE","","6829","20.1","27159","Wadena","{""27159"": ""81.01"", ""27111"": ""18.47"", ""27153"": ""0.53""}","Wadena|Otter Tail|Todd","27159|27111|27153","FALSE","FALSE","America/Chicago"
-"56484","47.0991","-94.4677","Walker","MN","Minnesota","TRUE","","3343","14.2","27021","Cass","{""27021"": ""100""}","Cass","27021","FALSE","FALSE","America/Chicago"
-"56501","46.84061","-95.80915","Detroit Lakes","MN","Minnesota","TRUE","","17425","36.0","27005","Becker","{""27005"": ""97.66"", ""27111"": ""2.34""}","Becker|Otter Tail","27005|27111","FALSE","FALSE","America/Chicago"
-"56510","47.36034","-96.5254","Ada","MN","Minnesota","TRUE","","2249","3.7","27107","Norman","{""27107"": ""100""}","Norman","27107","FALSE","FALSE","America/Chicago"
-"56511","46.86146","-96.00127","Audubon","MN","Minnesota","TRUE","","1954","11.6","27005","Becker","{""27005"": ""100""}","Becker","27005","FALSE","FALSE","America/Chicago"
-"56514","46.6481","-96.43137","Barnesville","MN","Minnesota","TRUE","","3701","6.7","27027","Clay","{""27027"": ""91.67"", ""27167"": ""7.47"", ""27111"": ""0.87""}","Clay|Wilkin|Otter Tail","27027|27167|27111","FALSE","FALSE","America/Chicago"
-"56515","46.28824","-95.70826","Battle Lake","MN","Minnesota","TRUE","","2999","11.6","27111","Otter Tail","{""27111"": ""100""}","Otter Tail","27111","FALSE","FALSE","America/Chicago"
-"56516","47.44188","-95.97604","Bejou","MN","Minnesota","TRUE","","292","1.4","27087","Mahnomen","{""27087"": ""81.97"", ""27107"": ""18.03""}","Mahnomen|Norman","27087|27107","FALSE","FALSE","America/Chicago"
-"56517","47.56033","-96.54963","Beltrami","MN","Minnesota","TRUE","","319","1.3","27119","Polk","{""27119"": ""100""}","Polk","27119","FALSE","FALSE","America/Chicago"
-"56518","46.48906","-95.24512","Bluffton","MN","Minnesota","TRUE","","414","8.6","27111","Otter Tail","{""27111"": ""100""}","Otter Tail","27111","FALSE","FALSE","America/Chicago"
-"56519","47.16305","-96.48887","Borup","MN","Minnesota","TRUE","","269","1.1","27107","Norman","{""27107"": ""69.67"", ""27027"": ""30.33""}","Norman|Clay","27107|27027","FALSE","FALSE","America/Chicago"
-"56520","46.28543","-96.50478","Breckenridge","MN","Minnesota","TRUE","","3780","11.9","27167","Wilkin","{""27167"": ""100""}","Wilkin","27167","FALSE","FALSE","America/Chicago"
-"56521","46.99834","-95.89688","Callaway","MN","Minnesota","TRUE","","750","4.3","27005","Becker","{""27005"": ""100""}","Becker","27005","FALSE","FALSE","America/Chicago"
-"56522","46.13638","-96.38819","Campbell","MN","Minnesota","TRUE","","404","1.1","27167","Wilkin","{""27167"": ""92.19"", ""27111"": ""7.81""}","Wilkin|Otter Tail","27167|27111","FALSE","FALSE","America/Chicago"
-"56523","47.65026","-96.81344","Climax","MN","Minnesota","TRUE","","550","2.6","27119","Polk","{""27119"": ""100""}","Polk","27119","FALSE","FALSE","America/Chicago"
-"56524","46.21378","-95.61021","Clitherall","MN","Minnesota","TRUE","","618","5.9","27111","Otter Tail","{""27111"": ""100""}","Otter Tail","27111","FALSE","FALSE","America/Chicago"
-"56525","46.66635","-96.75003","Comstock","MN","Minnesota","TRUE","","83","15.3","27027","Clay","{""27027"": ""100""}","Clay","27027","FALSE","FALSE","America/Chicago"
-"56527","46.37872","-95.31722","Deer Creek","MN","Minnesota","TRUE","","875","6.5","27111","Otter Tail","{""27111"": ""100""}","Otter Tail","27111","FALSE","FALSE","America/Chicago"
-"56528","46.52869","-95.81167","Dent","MN","Minnesota","TRUE","","1664","9.9","27111","Otter Tail","{""27111"": ""100""}","Otter Tail","27111","FALSE","FALSE","America/Chicago"
-"56529","46.87655","-96.6895","Dilworth","MN","Minnesota","TRUE","","4414","346.1","27027","Clay","{""27027"": ""100""}","Clay","27027","FALSE","FALSE","America/Chicago"
-"56531","45.98789","-95.98588","Elbow Lake","MN","Minnesota","TRUE","","1918","4.6","27051","Grant","{""27051"": ""100""}","Grant","27051","FALSE","FALSE","America/Chicago"
-"56533","46.40948","-96.1567","Elizabeth","MN","Minnesota","TRUE","","323","7.0","27111","Otter Tail","{""27111"": ""100""}","Otter Tail","27111","FALSE","FALSE","America/Chicago"
-"56534","46.46113","-96.01096","Erhard","MN","Minnesota","TRUE","","1291","8.1","27111","Otter Tail","{""27111"": ""100""}","Otter Tail","27111","FALSE","FALSE","America/Chicago"
-"56535","47.67935","-96.03913","Erskine","MN","Minnesota","TRUE","","1216","5.6","27119","Polk","{""27119"": ""98.09"", ""27125"": ""1.91""}","Polk|Red Lake","27119|27125","FALSE","FALSE","America/Chicago"
-"56536","47.04718","-96.52556","Felton","MN","Minnesota","TRUE","","395","1.5","27027","Clay","{""27027"": ""100""}","Clay","27027","FALSE","FALSE","America/Chicago"
-"56537","46.27602","-96.0904","Fergus Falls","MN","Minnesota","TRUE","","18838","25.5","27111","Otter Tail","{""27111"": ""100""}","Otter Tail","27111","FALSE","FALSE","America/Chicago"
-"56540","47.55101","-96.27991","Fertile","MN","Minnesota","TRUE","","2121","4.3","27119","Polk","{""27119"": ""89.4"", ""27107"": ""10.6""}","Polk|Norman","27119|27107","FALSE","FALSE","America/Chicago"
-"56541","47.1588","-96.13092","Flom","MN","Minnesota","TRUE","","28","5.4","27107","Norman","{""27107"": ""100""}","Norman","27107","FALSE","FALSE","America/Chicago"
-"56542","47.55566","-95.73003","Fosston","MN","Minnesota","TRUE","","2808","5.7","27119","Polk","{""27119"": ""94.41"", ""27087"": ""5.59""}","Polk|Mahnomen","27119|27087","FALSE","FALSE","America/Chicago"
-"56543","46.28703","-96.33833","Foxhome","MN","Minnesota","TRUE","","217","1.3","27167","Wilkin","{""27167"": ""100""}","Wilkin","27167","FALSE","FALSE","America/Chicago"
-"56544","46.75762","-95.59377","Frazee","MN","Minnesota","TRUE","","5433","10.9","27005","Becker","{""27005"": ""80.83"", ""27111"": ""19.17""}","Becker|Otter Tail","27005|27111","FALSE","FALSE","America/Chicago"
-"56545","47.38576","-96.23907","Gary","MN","Minnesota","TRUE","","680","1.7","27107","Norman","{""27107"": ""100""}","Norman","27107","FALSE","FALSE","America/Chicago"
-"56546","47.10368","-96.72757","Georgetown","MN","Minnesota","TRUE","","261","1.7","27027","Clay","{""27027"": ""100""}","Clay","27027","FALSE","FALSE","America/Chicago"
-"56547","46.8896","-96.54951","Glyndon","MN","Minnesota","TRUE","","2653","6.6","27027","Clay","{""27027"": ""100""}","Clay","27027","FALSE","FALSE","America/Chicago"
-"56548","47.37051","-96.7535","Halstad","MN","Minnesota","TRUE","","748","4.5","27107","Norman","{""27107"": ""100""}","Norman","27107","FALSE","FALSE","America/Chicago"
-"56549","46.84847","-96.31024","Hawley","MN","Minnesota","TRUE","","5026","9.3","27027","Clay","{""27027"": ""100""}","Clay","27027","FALSE","FALSE","America/Chicago"
-"56550","47.27135","-96.73674","Hendrum","MN","Minnesota","TRUE","","429","2.9","27107","Norman","{""27107"": ""100""}","Norman","27107","FALSE","FALSE","America/Chicago"
-"56551","46.31819","-95.44552","Henning","MN","Minnesota","TRUE","","2073","7.4","27111","Otter Tail","{""27111"": ""100""}","Otter Tail","27111","FALSE","FALSE","America/Chicago"
-"56552","46.98809","-96.21221","Hitterdal","MN","Minnesota","TRUE","","497","4.0","27027","Clay","{""27027"": ""89.28"", ""27005"": ""10.72""}","Clay|Becker","27027|27005","FALSE","FALSE","America/Chicago"
-"56553","46.42885","-96.61825","Kent","MN","Minnesota","TRUE","","215","1.3","27167","Wilkin","{""27167"": ""100""}","Wilkin","27167","FALSE","FALSE","America/Chicago"
-"56554","46.88346","-96.11475","Lake Park","MN","Minnesota","TRUE","","2676","8.8","27005","Becker","{""27005"": ""96.23"", ""27027"": ""3.77""}","Becker|Clay","27005|27027","FALSE","FALSE","America/Chicago"
-"56556","47.66337","-95.88328","Mcintosh","MN","Minnesota","TRUE","","1050","4.1","27119","Polk","{""27119"": ""100""}","Polk","27119","FALSE","FALSE","America/Chicago"
-"56557","47.31672","-95.80367","Mahnomen","MN","Minnesota","TRUE","","2903","4.6","27087","Mahnomen","{""27087"": ""96.16"", ""27029"": ""1.99"", ""27107"": ""1.85""}","Mahnomen|Clearwater|Norman","27087|27029|27107","FALSE","FALSE","America/Chicago"
-"56560","46.84226","-96.73561","Moorhead","MN","Minnesota","TRUE","","44321","108.1","27027","Clay","{""27027"": ""99.94"", ""27167"": ""0.06""}","Clay|Wilkin","27027|27167","FALSE","FALSE","America/Chicago"
-"56565","46.04962","-96.29764","Nashua","MN","Minnesota","TRUE","","103","1.4","27167","Wilkin","{""27167"": ""91.59"", ""27051"": ""8.41""}","Wilkin|Grant","27167|27051","FALSE","FALSE","America/Chicago"
-"56566","47.24014","-95.61125","Naytahwaush","MN","Minnesota","TRUE","","584","12.6","27087","Mahnomen","{""27087"": ""100""}","Mahnomen","27087","FALSE","FALSE","America/Chicago"
-"56567","46.54688","-95.36728","New York Mills","MN","Minnesota","TRUE","","3238","8.4","27111","Otter Tail","{""27111"": ""100""}","Otter Tail","27111","FALSE","FALSE","America/Chicago"
-"56568","47.53378","-96.76867","Nielsville","MN","Minnesota","TRUE","","179","2.1","27119","Polk","{""27119"": ""100""}","Polk","27119","FALSE","FALSE","America/Chicago"
-"56569","47.08056","-95.85769","Ogema","MN","Minnesota","TRUE","","1297","4.0","27005","Becker","{""27005"": ""100""}","Becker","27005","FALSE","FALSE","America/Chicago"
-"56570","46.90877","-95.35587","Osage","MN","Minnesota","TRUE","","1289","5.1","27005","Becker","{""27005"": ""100""}","Becker","27005","FALSE","FALSE","America/Chicago"
-"56571","46.43786","-95.54191","Ottertail","MN","Minnesota","TRUE","","1863","15.6","27111","Otter Tail","{""27111"": ""100""}","Otter Tail","27111","FALSE","FALSE","America/Chicago"
-"56572","46.60306","-96.08207","Pelican Rapids","MN","Minnesota","TRUE","","5323","12.5","27111","Otter Tail","{""27111"": ""97.23"", ""27005"": ""2.77""}","Otter Tail|Becker","27111|27005","FALSE","FALSE","America/Chicago"
-"56573","46.61556","-95.55123","Perham","MN","Minnesota","TRUE","","6273","17.5","27111","Otter Tail","{""27111"": ""100""}","Otter Tail","27111","FALSE","FALSE","America/Chicago"
-"56574","47.19517","-96.71298","Perley","MN","Minnesota","TRUE","","220","1.4","27107","Norman","{""27107"": ""100""}","Norman","27107","FALSE","FALSE","America/Chicago"
-"56575","47.04218","-95.43878","Ponsford","MN","Minnesota","TRUE","","771","2.0","27005","Becker","{""27005"": ""100""}","Becker","27005","FALSE","FALSE","America/Chicago"
-"56576","46.46682","-95.6974","Richville","MN","Minnesota","TRUE","","849","8.3","27111","Otter Tail","{""27111"": ""100""}","Otter Tail","27111","FALSE","FALSE","America/Chicago"
-"56577","46.97357","-95.80329","Richwood","MN","Minnesota","TRUE","","7","8.9","27005","Becker","{""27005"": ""100""}","Becker","27005","FALSE","FALSE","America/Chicago"
-"56578","46.94039","-95.65265","Rochert","MN","Minnesota","TRUE","","778","4.4","27005","Becker","{""27005"": ""100""}","Becker","27005","FALSE","FALSE","America/Chicago"
-"56579","46.46993","-96.34343","Rothsay","MN","Minnesota","TRUE","","1162","2.3","27167","Wilkin","{""27167"": ""57.48"", ""27111"": ""42.52""}","Wilkin|Otter Tail","27167|27111","FALSE","FALSE","America/Chicago"
-"56580","46.73588","-96.60707","Sabin","MN","Minnesota","TRUE","","1380","8.4","27027","Clay","{""27027"": ""100""}","Clay","27027","FALSE","FALSE","America/Chicago"
-"56581","47.4608","-96.76911","Shelly","MN","Minnesota","TRUE","","215","2.1","27107","Norman","{""27107"": ""100""}","Norman","27107","FALSE","FALSE","America/Chicago"
-"56583","46.01056","-96.41106","Tintah","MN","Minnesota","TRUE","","145","0.7","27155","Traverse","{""27155"": ""77.38"", ""27167"": ""22.62""}","Traverse|Wilkin","27155|27167","FALSE","FALSE","America/Chicago"
-"56584","47.22952","-96.22904","Twin Valley","MN","Minnesota","TRUE","","1412","4.0","27107","Norman","{""27107"": ""100""}","Norman","27107","FALSE","FALSE","America/Chicago"
-"56585","47.09213","-96.24571","Ulen","MN","Minnesota","TRUE","","1039","3.4","27027","Clay","{""27027"": ""90.85"", ""27005"": ""9.15""}","Clay|Becker","27027|27005","FALSE","FALSE","America/Chicago"
-"56586","46.3227","-95.84146","Underwood","MN","Minnesota","TRUE","","1881","10.1","27111","Otter Tail","{""27111"": ""100""}","Otter Tail","27111","FALSE","FALSE","America/Chicago"
-"56587","46.64126","-95.86143","Vergas","MN","Minnesota","TRUE","","1353","9.1","27111","Otter Tail","{""27111"": ""100""}","Otter Tail","27111","FALSE","FALSE","America/Chicago"
-"56588","46.21949","-95.50605","Vining","MN","Minnesota","TRUE","","449","3.3","27111","Otter Tail","{""27111"": ""100""}","Otter Tail","27111","FALSE","FALSE","America/Chicago"
-"56589","47.1786","-95.72986","Waubun","MN","Minnesota","TRUE","","2152","3.4","27087","Mahnomen","{""27087"": ""68.41"", ""27005"": ""31.34"", ""27029"": ""0.25""}","Mahnomen|Becker|Clearwater","27087|27005|27029","FALSE","FALSE","America/Chicago"
-"56590","46.03682","-96.1618","Wendell","MN","Minnesota","TRUE","","284","1.4","27051","Grant","{""27051"": ""100""}","Grant","27051","FALSE","FALSE","America/Chicago"
-"56591","47.08873","-95.84464","White Earth","MN","Minnesota","TRUE","","202","90.3","27005","Becker","{""27005"": ""100""}","Becker","27005","FALSE","FALSE","America/Chicago"
-"56592","47.53638","-96.00757","Winger","MN","Minnesota","TRUE","","479","3.2","27119","Polk","{""27119"": ""99.22"", ""27087"": ""0.78""}","Polk|Mahnomen","27119|27087","FALSE","FALSE","America/Chicago"
-"56593","46.8038","-95.35401","Wolf Lake","MN","Minnesota","TRUE","","0","0.0","27005","Becker","{""27005"": ""100""}","Becker","27005","FALSE","FALSE","America/Chicago"
-"56594","46.54828","-96.64299","Wolverton","MN","Minnesota","TRUE","","467","1.9","27167","Wilkin","{""27167"": ""100""}","Wilkin","27167","FALSE","FALSE","America/Chicago"
-"56601","47.51242","-94.85697","Bemidji","MN","Minnesota","TRUE","","34785","36.7","27007","Beltrami","{""27007"": ""94.41"", ""27057"": ""5.59""}","Beltrami|Hubbard","27007|27057","FALSE","FALSE","America/Chicago"
-"56621","47.41863","-95.4075","Bagley","MN","Minnesota","TRUE","","4840","6.0","27029","Clearwater","{""27029"": ""98.38"", ""27119"": ""1.42"", ""27087"": ""0.19""}","Clearwater|Polk|Mahnomen","27029|27119|27087","FALSE","FALSE","America/Chicago"
-"56623","48.60057","-94.56999","Baudette","MN","Minnesota","TRUE","","2759","2.3","27077","Lake of the Woods","{""27077"": ""96.14"", ""27071"": ""3.86""}","Lake of the Woods|Koochiching","27077|27071","FALSE","FALSE","America/Chicago"
-"56626","47.33949","-94.24502","Bena","MN","Minnesota","TRUE","","258","1.7","27021","Cass","{""27021"": ""100""}","Cass","27021","FALSE","FALSE","America/Chicago"
-"56627","48.23393","-94.05488","Big Falls","MN","Minnesota","TRUE","","246","0.1","27071","Koochiching","{""27071"": ""100""}","Koochiching","27071","FALSE","FALSE","America/Chicago"
-"56628","47.68668","-93.59346","Bigfork","MN","Minnesota","TRUE","","1631","2.5","27061","Itasca","{""27061"": ""100""}","Itasca","27061","FALSE","FALSE","America/Chicago"
-"56629","48.54414","-94.11781","Birchdale","MN","Minnesota","TRUE","","254","0.4","27071","Koochiching","{""27071"": ""100""}","Koochiching","27071","FALSE","FALSE","America/Chicago"
-"56630","47.75703","-94.49914","Blackduck","MN","Minnesota","TRUE","","2204","3.1","27007","Beltrami","{""27007"": ""90.74"", ""27061"": ""9.26""}","Beltrami|Itasca","27007|27061","FALSE","FALSE","America/Chicago"
-"56633","47.31969","-94.50844","Cass Lake","MN","Minnesota","TRUE","","4701","8.2","27021","Cass","{""27021"": ""63.97"", ""27007"": ""21.47"", ""27057"": ""14.56""}","Cass|Beltrami|Hubbard","27021|27007|27057","FALSE","FALSE","America/Chicago"
-"56634","47.6827","-95.40297","Clearbrook","MN","Minnesota","TRUE","","1455","4.7","27029","Clearwater","{""27029"": ""99.63"", ""27119"": ""0.37""}","Clearwater|Polk","27029|27119","FALSE","FALSE","America/Chicago"
-"56636","47.40863","-93.90401","Deer River","MN","Minnesota","TRUE","","4977","4.3","27061","Itasca","{""27061"": ""93.26"", ""27021"": ""6.74""}","Itasca|Cass","27061|27021","FALSE","FALSE","America/Chicago"
-"56637","47.61075","-93.83605","Talmoon","MN","Minnesota","TRUE","","196","3.2","27061","Itasca","{""27061"": ""100""}","Itasca","27061","FALSE","FALSE","America/Chicago"
-"56639","47.9062","-93.52201","Effie","MN","Minnesota","TRUE","","422","0.5","27061","Itasca","{""27061"": ""96.95"", ""27071"": ""3.05""}","Itasca|Koochiching","27061|27071","FALSE","FALSE","America/Chicago"
-"56641","47.20637","-94.24352","Federal Dam","MN","Minnesota","TRUE","","351","4.3","27021","Cass","{""27021"": ""100""}","Cass","27021","FALSE","FALSE","America/Chicago"
-"56644","47.79095","-95.51085","Gonvick","MN","Minnesota","TRUE","","780","2.9","27029","Clearwater","{""27029"": ""98.86"", ""27119"": ""1.14""}","Clearwater|Polk","27029|27119","FALSE","FALSE","America/Chicago"
-"56646","47.77564","-95.6372","Gully","MN","Minnesota","TRUE","","530","2.6","27119","Polk","{""27119"": ""100""}","Polk","27119","FALSE","FALSE","America/Chicago"
-"56647","47.69009","-94.61994","Hines","MN","Minnesota","TRUE","","608","2.9","27007","Beltrami","{""27007"": ""100""}","Beltrami","27007","FALSE","FALSE","America/Chicago"
-"56649","48.53442","-93.13185","International Falls","MN","Minnesota","TRUE","","9036","13.5","27071","Koochiching","{""27071"": ""100"", ""27137"": ""0""}","Koochiching|St. Louis","27071|27137","FALSE","FALSE","America/Chicago"
-"56650","47.99759","-94.56322","Kelliher","MN","Minnesota","TRUE","","766","1.6","27007","Beltrami","{""27007"": ""100""}","Beltrami","27007","FALSE","FALSE","America/Chicago"
-"56651","47.43874","-95.62106","Lengby","MN","Minnesota","TRUE","","652","3.8","27087","Mahnomen","{""27087"": ""51.86"", ""27119"": ""48.14""}","Mahnomen|Polk","27087|27119","FALSE","FALSE","America/Chicago"
-"56652","47.73334","-95.24819","Leonard","MN","Minnesota","TRUE","","549","2.5","27029","Clearwater","{""27029"": ""90.17"", ""27007"": ""9.83""}","Clearwater|Beltrami","27029|27007","FALSE","FALSE","America/Chicago"
-"56653","48.2607","-93.49868","Littlefork","MN","Minnesota","TRUE","","1366","0.8","27071","Koochiching","{""27071"": ""100""}","Koochiching","27071","FALSE","FALSE","America/Chicago"
-"56654","48.47215","-93.94023","Loman","MN","Minnesota","TRUE","","136","0.4","27071","Koochiching","{""27071"": ""100""}","Koochiching","27071","FALSE","FALSE","America/Chicago"
-"56655","47.00359","-94.22748","Longville","MN","Minnesota","TRUE","","1430","5.2","27021","Cass","{""27021"": ""100""}","Cass","27021","FALSE","FALSE","America/Chicago"
-"56657","47.57472","-93.61664","Marcell","MN","Minnesota","TRUE","","295","2.1","27061","Itasca","{""27061"": ""100""}","Itasca","27061","FALSE","FALSE","America/Chicago"
-"56658","48.09036","-93.82919","Margie","MN","Minnesota","TRUE","","0","0.0","27071","Koochiching","{""27071"": ""100""}","Koochiching","27071","FALSE","FALSE","America/Chicago"
-"56659","47.64691","-94.01643","Max","MN","Minnesota","TRUE","","68","2.0","27061","Itasca","{""27061"": ""100""}","Itasca","27061","FALSE","FALSE","America/Chicago"
-"56660","47.98996","-94.1743","Mizpah","MN","Minnesota","TRUE","","337","0.7","27071","Koochiching","{""27071"": ""100""}","Koochiching","27071","FALSE","FALSE","America/Chicago"
-"56661","47.85834","-94.12806","Northome","MN","Minnesota","TRUE","","862","0.8","27071","Koochiching","{""27071"": ""52.65"", ""27061"": ""36.73"", ""27007"": ""10.62""}","Koochiching|Itasca|Beltrami","27071|27061|27007","FALSE","FALSE","America/Chicago"
-"56662","46.84415","-93.89664","Outing","MN","Minnesota","TRUE","","494","3.2","27021","Cass","{""27021"": ""100""}","Cass","27021","FALSE","FALSE","America/Chicago"
-"56663","47.51767","-94.46764","Pennington","MN","Minnesota","TRUE","","178","1.2","27007","Beltrami","{""27007"": ""100""}","Beltrami","27007","FALSE","FALSE","America/Chicago"
-"56666","48.03179","-94.8337","Ponemah","MN","Minnesota","TRUE","","1224","10.7","27007","Beltrami","{""27007"": ""100""}","Beltrami","27007","FALSE","FALSE","America/Chicago"
-"56667","47.73659","-94.94017","Puposky","MN","Minnesota","TRUE","","588","2.5","27007","Beltrami","{""27007"": ""100""}","Beltrami","27007","FALSE","FALSE","America/Chicago"
-"56668","48.61279","-93.34597","Ranier","MN","Minnesota","TRUE","","147","366.3","27071","Koochiching","{""27071"": ""100""}","Koochiching","27071","FALSE","FALSE","America/Winnipeg"
-"56669","48.40816","-93.19277","Kabetogama","MN","Minnesota","TRUE","","303","0.5","27071","Koochiching","{""27071"": ""62.93"", ""27137"": ""37.07""}","Koochiching|St. Louis","27071|27137","FALSE","FALSE","America/Chicago"
-"56670","47.84881","-94.86603","Redby","MN","Minnesota","TRUE","","1204","10.0","27007","Beltrami","{""27007"": ""100""}","Beltrami","27007","FALSE","FALSE","America/Chicago"
-"56671","47.91059","-95.31776","Redlake","MN","Minnesota","TRUE","","3383","5.9","27007","Beltrami","{""27007"": ""97.42"", ""27029"": ""2.58""}","Beltrami|Clearwater","27007|27029","FALSE","FALSE","America/Chicago"
-"56672","47.07447","-94.01538","Remer","MN","Minnesota","TRUE","","2026","1.8","27021","Cass","{""27021"": ""100""}","Cass","27021","FALSE","FALSE","America/Chicago"
-"56673","48.82786","-95.1119","Roosevelt","MN","Minnesota","TRUE","","735","2.4","27135","Roseau","{""27135"": ""62.52"", ""27077"": ""37.48""}","Roseau|Lake of the Woods","27135|27077","FALSE","FALSE","America/Chicago"
-"56676","47.53466","-95.19276","Shevlin","MN","Minnesota","TRUE","","1640","3.1","27029","Clearwater","{""27029"": ""62.54"", ""27007"": ""37.46""}","Clearwater|Beltrami","27029|27007","FALSE","FALSE","America/Chicago"
-"56678","47.42229","-95.11983","Solway","MN","Minnesota","TRUE","","1190","3.7","27007","Beltrami","{""27007"": ""64.35"", ""27057"": ""34.14"", ""27029"": ""1.51""}","Beltrami|Hubbard|Clearwater","27007|27057|27029","FALSE","FALSE","America/Chicago"
-"56680","47.64803","-93.94111","Spring Lake","MN","Minnesota","TRUE","","133","1.8","27061","Itasca","{""27061"": ""100""}","Itasca","27061","FALSE","FALSE","America/Chicago"
-"56681","47.60997","-94.25265","Squaw Lake","MN","Minnesota","TRUE","","267","1.0","27061","Itasca","{""27061"": ""100""}","Itasca","27061","FALSE","FALSE","America/Chicago"
-"56683","47.71829","-94.75213","Tenstrike","MN","Minnesota","TRUE","","854","5.3","27007","Beltrami","{""27007"": ""100""}","Beltrami","27007","FALSE","FALSE","America/Chicago"
-"56684","47.86001","-95.6962","Trail","MN","Minnesota","TRUE","","275","1.1","27119","Polk","{""27119"": ""81.21"", ""27113"": ""18.79""}","Polk|Pennington","27119|27113","FALSE","FALSE","America/Chicago"
-"56685","48.23841","-94.52099","Waskish","MN","Minnesota","TRUE","","88","0.3","27007","Beltrami","{""27007"": ""100""}","Beltrami","27007","FALSE","FALSE","America/Chicago"
-"56686","48.78527","-94.91374","Williams","MN","Minnesota","TRUE","","725","1.6","27077","Lake of the Woods","{""27077"": ""100""}","Lake of the Woods","27077","FALSE","FALSE","America/Chicago"
-"56687","47.49933","-94.99641","Wilton","MN","Minnesota","TRUE","","37","7.8","27007","Beltrami","{""27007"": ""100""}","Beltrami","27007","FALSE","FALSE","America/Chicago"
-"56688","47.7674","-93.9131","Wirt","MN","Minnesota","TRUE","","132","0.5","27061","Itasca","{""27061"": ""100""}","Itasca","27061","FALSE","FALSE","America/Chicago"
-"56701","48.12209","-96.19247","Thief River Falls","MN","Minnesota","TRUE","","12998","13.2","27113","Pennington","{""27113"": ""96.19"", ""27089"": ""3.81""}","Pennington|Marshall","27113|27089","FALSE","FALSE","America/Chicago"
-"56710","48.21548","-97.00188","Alvarado","MN","Minnesota","TRUE","","550","5.0","27089","Marshall","{""27089"": ""95.92"", ""27119"": ""4.08""}","Marshall|Polk","27089|27119","FALSE","FALSE","America/Chicago"
-"56711","49.32761","-95.00168","Angle Inlet","MN","Minnesota","TRUE","","0","0.0","27077","Lake of the Woods","{""27077"": ""100""}","Lake of the Woods","27077","FALSE","FALSE","America/Chicago"
-"56713","48.34841","-96.8135","Argyle","MN","Minnesota","TRUE","","1049","2.1","27089","Marshall","{""27089"": ""100""}","Marshall","27089","FALSE","FALSE","America/Chicago"
-"56714","48.78556","-96.00593","Badger","MN","Minnesota","TRUE","","1202","2.2","27135","Roseau","{""27135"": ""100""}","Roseau","27135","FALSE","FALSE","America/Chicago"
-"56715","47.80889","-95.94138","Brooks","MN","Minnesota","TRUE","","367","2.2","27125","Red Lake","{""27125"": ""97.14"", ""27119"": ""2.86""}","Red Lake|Polk","27125|27119","FALSE","FALSE","America/Chicago"
-"56716","47.7454","-96.55255","Crookston","MN","Minnesota","TRUE","","9207","11.2","27119","Polk","{""27119"": ""99.7"", ""27125"": ""0.3""}","Polk|Red Lake","27119|27125","FALSE","FALSE","America/Chicago"
-"56720","48.57202","-96.89294","Donaldson","MN","Minnesota","TRUE","","7","0.1","27069","Kittson","{""27069"": ""100""}","Kittson","27069","FALSE","FALSE","America/Chicago"
-"56721","47.97356","-96.94394","East Grand Forks","MN","Minnesota","TRUE","","10242","21.0","27119","Polk","{""27119"": ""100""}","Polk","27119","FALSE","FALSE","America/Chicago"
-"56722","47.9839","-96.64515","Euclid","MN","Minnesota","TRUE","","338","0.9","27119","Polk","{""27119"": ""100""}","Polk","27119","FALSE","FALSE","America/Chicago"
-"56723","47.80943","-96.80638","Fisher","MN","Minnesota","TRUE","","878","3.0","27119","Polk","{""27119"": ""100""}","Polk","27119","FALSE","FALSE","America/Chicago"
-"56724","48.44587","-95.73593","Gatzke","MN","Minnesota","TRUE","","140","0.5","27089","Marshall","{""27089"": ""100""}","Marshall","27089","FALSE","FALSE","America/Chicago"
-"56725","48.15052","-95.80073","Goodridge","MN","Minnesota","TRUE","","951","1.3","27113","Pennington","{""27113"": ""82.52"", ""27089"": ""17.48""}","Pennington|Marshall","27113|27089","FALSE","FALSE","America/Chicago"
-"56726","48.74709","-96.23095","Greenbush","MN","Minnesota","TRUE","","1702","2.1","27135","Roseau","{""27135"": ""100""}","Roseau","27135","FALSE","FALSE","America/Chicago"
-"56727","48.29343","-95.40182","Grygla","MN","Minnesota","TRUE","","687","0.3","27089","Marshall","{""27089"": ""60.86"", ""27007"": ""39.14""}","Marshall|Beltrami","27089|27007","FALSE","FALSE","America/Chicago"
-"56728","48.79182","-96.99731","Hallock","MN","Minnesota","TRUE","","1493","3.0","27069","Kittson","{""27069"": ""100""}","Kittson","27069","FALSE","FALSE","America/Chicago"
-"56729","48.6639","-96.55754","Halma","MN","Minnesota","TRUE","","97","0.7","27069","Kittson","{""27069"": ""100""}","Kittson","27069","FALSE","FALSE","America/Chicago"
-"56731","48.90923","-97.06743","Humboldt","MN","Minnesota","TRUE","","79","0.8","27069","Kittson","{""27069"": ""100""}","Kittson","27069","FALSE","FALSE","America/Chicago"
-"56732","48.57627","-96.48706","Karlstad","MN","Minnesota","TRUE","","1098","3.0","27069","Kittson","{""27069"": ""94.54"", ""27089"": ""4.49"", ""27135"": ""0.97""}","Kittson|Marshall|Roseau","27069|27089|27135","FALSE","FALSE","America/Chicago"
-"56733","48.63232","-96.89649","Kennedy","MN","Minnesota","TRUE","","303","0.8","27069","Kittson","{""27069"": ""100""}","Kittson","27069","FALSE","FALSE","America/Chicago"
-"56734","48.76782","-96.59521","Lake Bronson","MN","Minnesota","TRUE","","509","1.1","27069","Kittson","{""27069"": ""100""}","Kittson","27069","FALSE","FALSE","America/Chicago"
-"56735","48.91531","-96.63664","Lancaster","MN","Minnesota","TRUE","","746","0.8","27069","Kittson","{""27069"": ""97.3"", ""27135"": ""2.7""}","Kittson|Roseau","27069|27135","FALSE","FALSE","America/Chicago"
-"56736","47.71411","-96.19226","Mentor","MN","Minnesota","TRUE","","962","3.5","27119","Polk","{""27119"": ""96.46"", ""27125"": ""3.54""}","Polk|Red Lake","27119|27125","FALSE","FALSE","America/Chicago"
-"56737","48.43414","-96.03504","Middle River","MN","Minnesota","TRUE","","860","1.7","27089","Marshall","{""27089"": ""100""}","Marshall","27089","FALSE","FALSE","America/Chicago"
-"56738","48.33514","-96.33509","Newfolden","MN","Minnesota","TRUE","","1588","3.4","27089","Marshall","{""27089"": ""100""}","Marshall","27089","FALSE","FALSE","America/Chicago"
-"56741","49.28434","-94.85818","Oak Island","MN","Minnesota","TRUE","","0","0.0","27077","Lake of the Woods","{""27077"": ""100""}","Lake of the Woods","27077","FALSE","FALSE","America/Chicago"
-"56742","47.92821","-95.80976","Oklee","MN","Minnesota","TRUE","","1027","3.1","27125","Red Lake","{""27125"": ""78.1"", ""27113"": ""19.72"", ""27119"": ""2.18""}","Red Lake|Pennington|Polk","27125|27113|27119","FALSE","FALSE","America/Chicago"
-"56744","48.24552","-97.11368","Oslo","MN","Minnesota","TRUE","","505","1.9","27089","Marshall","{""27089"": ""74.4"", ""27119"": ""13.04"", ""38099"": ""8.53"", ""38035"": ""4.03""}","Marshall|Polk|Walsh|Grand Forks","27089|27119|38099|38035","FALSE","FALSE","America/Chicago"
-"56748","47.92198","-96.01021","Plummer","MN","Minnesota","TRUE","","668","3.0","27125","Red Lake","{""27125"": ""94.33"", ""27113"": ""5.67""}","Red Lake|Pennington","27125|27113","FALSE","FALSE","America/Chicago"
-"56750","47.89265","-96.29926","Red Lake Falls","MN","Minnesota","TRUE","","2288","3.8","27125","Red Lake","{""27125"": ""93.74"", ""27113"": ""4.02"", ""27119"": ""2.24""}","Red Lake|Pennington|Polk","27125|27113|27119","FALSE","FALSE","America/Chicago"
-"56751","48.81137","-95.73291","Roseau","MN","Minnesota","TRUE","","5728","4.7","27135","Roseau","{""27135"": ""100""}","Roseau","27135","FALSE","FALSE","America/Chicago"
-"56754","47.99354","-96.1922","Saint Hilaire","MN","Minnesota","TRUE","","536","5.6","27113","Pennington","{""27113"": ""100""}","Pennington","27113","FALSE","FALSE","America/Chicago"
-"56755","48.97109","-97.10472","Saint Vincent","MN","Minnesota","TRUE","","66","0.5","27069","Kittson","{""27069"": ""100""}","Kittson","27069","FALSE","FALSE","America/Chicago"
-"56756","48.89219","-95.54779","Salol","MN","Minnesota","TRUE","","685","2.5","27135","Roseau","{""27135"": ""100""}","Roseau","27135","FALSE","FALSE","America/Chicago"
-"56757","48.47462","-96.89199","Stephen","MN","Minnesota","TRUE","","907","1.6","27089","Marshall","{""27089"": ""100""}","Marshall","27089","FALSE","FALSE","America/Chicago"
-"56758","48.46661","-96.51583","Strandquist","MN","Minnesota","TRUE","","303","1.1","27089","Marshall","{""27089"": ""100""}","Marshall","27089","FALSE","FALSE","America/Chicago"
-"56759","48.54587","-96.08797","Strathcona","MN","Minnesota","TRUE","","240","0.6","27135","Roseau","{""27135"": ""73.9"", ""27089"": ""26.1""}","Roseau|Marshall","27135|27089","FALSE","FALSE","America/Chicago"
-"56760","48.24358","-96.45326","Viking","MN","Minnesota","TRUE","","327","1.7","27089","Marshall","{""27089"": ""100""}","Marshall","27089","FALSE","FALSE","America/Chicago"
-"56761","48.60273","-95.69637","Wannaska","MN","Minnesota","TRUE","","464","1.7","27135","Roseau","{""27135"": ""100""}","Roseau","27135","FALSE","FALSE","America/Chicago"
-"56762","48.16876","-96.73961","Warren","MN","Minnesota","TRUE","","2569","2.9","27089","Marshall","{""27089"": ""84.64"", ""27119"": ""15.36""}","Marshall|Polk","27089|27119","FALSE","FALSE","America/Chicago"
-"56763","48.80886","-95.35636","Warroad","MN","Minnesota","TRUE","","4977","7.9","27135","Roseau","{""27135"": ""100""}","Roseau","27135","FALSE","FALSE","America/Chicago"
-"57001","42.98447","-96.63972","Alcester","SD","South Dakota","TRUE","","1667","5.1","46127","Union","{""46127"": ""97.19"", ""46083"": ""2.81""}","Union|Lincoln","46127|46083","FALSE","FALSE","America/Chicago"
-"57002","44.2965","-96.67695","Aurora","SD","South Dakota","TRUE","","1062","6.9","46011","Brookings","{""46011"": ""100""}","Brookings","46011","FALSE","FALSE","America/Chicago"
-"57003","43.73545","-96.75995","Baltic","SD","South Dakota","TRUE","","1916","15.4","46099","Minnehaha","{""46099"": ""100""}","Minnehaha","46099","FALSE","FALSE","America/Chicago"
-"57004","43.07769","-96.79149","Beresford","SD","South Dakota","TRUE","","3862","7.5","46127","Union","{""46127"": ""60.1"", ""46083"": ""30.93"", ""46027"": ""8.97""}","Union|Lincoln|Clay","46127|46083|46027","FALSE","FALSE","America/Chicago"
-"57005","43.59263","-96.58601","Brandon","SD","South Dakota","TRUE","","11498","86.4","46099","Minnehaha","{""46099"": ""100""}","Minnehaha","46099","FALSE","FALSE","America/Chicago"
-"57006","44.31526","-96.79634","Brookings","SD","South Dakota","TRUE","","26526","65.8","46011","Brookings","{""46011"": ""99.42"", ""46101"": ""0.58""}","Brookings|Moody","46011|46101","FALSE","FALSE","America/Chicago"
-"57010","42.8183","-96.82082","Burbank","SD","South Dakota","TRUE","","393","2.7","46027","Clay","{""46027"": ""77.89"", ""46127"": ""22.11""}","Clay|Union","46027|46127","FALSE","FALSE","America/Chicago"
-"57012","43.59566","-97.27312","Canistota","SD","South Dakota","TRUE","","1186","5.4","46087","McCook","{""46087"": ""100""}","McCook","46087","FALSE","FALSE","America/Chicago"
-"57013","43.28311","-96.62","Canton","SD","South Dakota","TRUE","","4955","14.0","46083","Lincoln","{""46083"": ""100""}","Lincoln","46083","FALSE","FALSE","America/Chicago"
-"57014","43.11301","-96.95273","Centerville","SD","South Dakota","TRUE","","1380","4.0","46125","Turner","{""46125"": ""77.77"", ""46083"": ""11.49"", ""46027"": ""10.74""}","Turner|Lincoln|Clay","46125|46083|46027","FALSE","FALSE","America/Chicago"
-"57015","43.41842","-96.98006","Chancellor","SD","South Dakota","TRUE","","800","6.3","46125","Turner","{""46125"": ""100""}","Turner","46125","FALSE","FALSE","America/Chicago"
-"57016","43.893","-96.9618","Chester","SD","South Dakota","TRUE","","812","9.3","46079","Lake","{""46079"": ""100""}","Lake","46079","FALSE","FALSE","America/Chicago"
-"57017","44.01208","-96.82924","Colman","SD","South Dakota","TRUE","","1412","4.3","46101","Moody","{""46101"": ""100""}","Moody","46101","FALSE","FALSE","America/Chicago"
-"57018","43.79804","-96.98275","Colton","SD","South Dakota","TRUE","","1337","6.3","46099","Minnehaha","{""46099"": ""100""}","Minnehaha","46099","FALSE","FALSE","America/Chicago"
-"57020","43.67853","-96.83054","Crooks","SD","South Dakota","TRUE","","1442","34.4","46099","Minnehaha","{""46099"": ""100""}","Minnehaha","46099","FALSE","FALSE","America/Chicago"
-"57021","43.27028","-96.97796","Davis","SD","South Dakota","TRUE","","253","3.1","46125","Turner","{""46125"": ""100""}","Turner","46125","FALSE","FALSE","America/Chicago"
-"57022","43.84539","-96.72324","Dell Rapids","SD","South Dakota","TRUE","","5173","15.2","46099","Minnehaha","{""46099"": ""91.23"", ""46101"": ""8.47"", ""46079"": ""0.3""}","Minnehaha|Moody|Lake","46099|46101|46079","FALSE","FALSE","America/Chicago"
-"57024","43.9885","-96.67923","Egan","SD","South Dakota","TRUE","","512","6.2","46101","Moody","{""46101"": ""100""}","Moody","46101","FALSE","FALSE","America/Chicago"
-"57025","42.72733","-96.69199","Elk Point","SD","South Dakota","TRUE","","3045","8.9","46127","Union","{""46127"": ""100""}","Union","46127","FALSE","FALSE","America/Chicago"
-"57026","44.25924","-96.51241","Elkton","SD","South Dakota","TRUE","","1360","3.3","46011","Brookings","{""46011"": ""83.95"", ""46101"": ""11.52"", ""27081"": ""4.53""}","Brookings|Moody|Lincoln","46011|46101|27081","FALSE","FALSE","America/Chicago"
-"57027","43.18667","-96.49742","Fairview","SD","South Dakota","TRUE","","154","10.1","46083","Lincoln","{""46083"": ""100""}","Lincoln","46083","FALSE","FALSE","America/Chicago"
-"57028","44.0604","-96.60564","Flandreau","SD","South Dakota","TRUE","","3425","6.6","46101","Moody","{""46101"": ""100""}","Moody","46101","FALSE","FALSE","America/Chicago"
-"57029","43.33754","-97.48028","Freeman","SD","South Dakota","TRUE","","2335","4.7","46067","Hutchinson","{""46067"": ""88.24"", ""46125"": ""11.76""}","Hutchinson|Turner","46067|46125","FALSE","FALSE","America/Chicago"
-"57030","43.73698","-96.52246","Garretson","SD","South Dakota","TRUE","","2878","7.4","46099","Minnehaha","{""46099"": ""95.17"", ""27133"": ""4.83""}","Minnehaha|Rock","46099|27133","FALSE","FALSE","America/Chicago"
-"57031","42.87453","-97.18347","Gayville","SD","South Dakota","TRUE","","815","6.5","46135","Yankton","{""46135"": ""91.9"", ""46027"": ""8.1""}","Yankton|Clay","46135|46027","FALSE","FALSE","America/Chicago"
-"57032","43.42188","-96.6869","Harrisburg","SD","South Dakota","TRUE","","8549","67.6","46083","Lincoln","{""46083"": ""100""}","Lincoln","46083","FALSE","FALSE","America/Chicago"
-"57033","43.61913","-96.95759","Hartford","SD","South Dakota","TRUE","","5694","18.7","46099","Minnehaha","{""46099"": ""100""}","Minnehaha","46099","FALSE","FALSE","America/Chicago"
-"57034","43.1219","-96.55137","Hudson","SD","South Dakota","TRUE","","884","4.7","46083","Lincoln","{""46083"": ""92.98"", ""46127"": ""7.02""}","Lincoln|Union","46083|46127","FALSE","FALSE","America/Chicago"
-"57035","43.63214","-97.07453","Humboldt","SD","South Dakota","TRUE","","1061","4.8","46099","Minnehaha","{""46099"": ""97.5"", ""46087"": ""2.5""}","Minnehaha|McCook","46099|46087","FALSE","FALSE","America/Chicago"
-"57036","43.27297","-97.14117","Hurley","SD","South Dakota","TRUE","","551","2.3","46125","Turner","{""46125"": ""100""}","Turner","46125","FALSE","FALSE","America/Chicago"
-"57037","43.10295","-97.2557","Irene","SD","South Dakota","TRUE","","983","3.8","46135","Yankton","{""46135"": ""47.37"", ""46125"": ""35.78"", ""46027"": ""16.85""}","Yankton|Turner|Clay","46135|46125|46027","FALSE","FALSE","America/Chicago"
-"57038","42.58243","-96.58099","Jefferson","SD","South Dakota","TRUE","","1427","10.3","46127","Union","{""46127"": ""100""}","Union","46127","FALSE","FALSE","America/Chicago"
-"57039","43.33696","-96.86951","Lennox","SD","South Dakota","TRUE","","3756","16.4","46083","Lincoln","{""46083"": ""97.61"", ""46125"": ""2.39""}","Lincoln|Turner","46083|46125","FALSE","FALSE","America/Chicago"
-"57040","43.0637","-97.58616","Lesterville","SD","South Dakota","TRUE","","333","2.0","46135","Yankton","{""46135"": ""100""}","Yankton","46135","FALSE","FALSE","America/Chicago"
-"57041","43.72978","-96.86761","Lyons","SD","South Dakota","TRUE","","101","13.1","46099","Minnehaha","{""46099"": ""100""}","Minnehaha","46099","FALSE","FALSE","America/Chicago"
-"57042","43.97971","-97.15072","Madison","SD","South Dakota","TRUE","","9378","17.7","46079","Lake","{""46079"": ""100""}","Lake","46079","FALSE","FALSE","America/Chicago"
-"57043","43.41623","-97.31155","Marion","SD","South Dakota","TRUE","","1377","4.9","46125","Turner","{""46125"": ""96.01"", ""46087"": ""3.12"", ""46067"": ""0.87""}","Turner|McCook|Hutchinson","46125|46087|46067","FALSE","FALSE","America/Chicago"
-"57045","43.20784","-97.53005","Menno","SD","South Dakota","TRUE","","1097","3.5","46067","Hutchinson","{""46067"": ""91.16"", ""46135"": ""8.84""}","Hutchinson|Yankton","46067|46135","FALSE","FALSE","America/Chicago"
-"57046","42.95912","-97.30789","Mission Hill","SD","South Dakota","TRUE","","851","7.0","46135","Yankton","{""46135"": ""100""}","Yankton","46135","FALSE","FALSE","America/Chicago"
-"57047","43.52064","-97.21195","Monroe","SD","South Dakota","TRUE","","275","7.2","46125","Turner","{""46125"": ""67.58"", ""46087"": ""32.42""}","Turner|McCook","46125|46087","FALSE","FALSE","America/Chicago"
-"57048","43.74273","-97.19195","Montrose","SD","South Dakota","TRUE","","1217","3.7","46087","McCook","{""46087"": ""92.05"", ""46099"": ""7.95""}","McCook|Minnehaha","46087|46099","FALSE","FALSE","America/Chicago"
-"57049","42.52476","-96.50721","North Sioux City","SD","South Dakota","TRUE","","6521","177.7","46127","Union","{""46127"": ""100""}","Union","46127","FALSE","FALSE","America/Chicago"
-"57050","44.15727","-97.01469","Nunda","SD","South Dakota","TRUE","","325","3.1","46079","Lake","{""46079"": ""100""}","Lake","46079","FALSE","FALSE","America/Chicago"
-"57051","44.22942","-97.33512","Oldham","SD","South Dakota","TRUE","","290","1.8","46077","Kingsbury","{""46077"": ""100""}","Kingsbury","46077","FALSE","FALSE","America/Chicago"
-"57052","43.29367","-97.71244","Olivet","SD","South Dakota","TRUE","","330","1.7","46067","Hutchinson","{""46067"": ""100""}","Hutchinson","46067","FALSE","FALSE","America/Chicago"
-"57053","43.41009","-97.14026","Parker","SD","South Dakota","TRUE","","1876","5.1","46125","Turner","{""46125"": ""95.62"", ""46087"": ""4.38""}","Turner|McCook","46125|46087","FALSE","FALSE","America/Chicago"
-"57054","44.12934","-97.25468","Ramona","SD","South Dakota","TRUE","","537","1.8","46079","Lake","{""46079"": ""100""}","Lake","46079","FALSE","FALSE","America/Chicago"
-"57055","43.66731","-96.74057","Renner","SD","South Dakota","TRUE","","1256","27.9","46099","Minnehaha","{""46099"": ""100""}","Minnehaha","46099","FALSE","FALSE","America/Chicago"
-"57057","44.1017","-96.95957","Rutland","SD","South Dakota","TRUE","","268","3.6","46079","Lake","{""46079"": ""100""}","Lake","46079","FALSE","FALSE","America/Chicago"
-"57058","43.73939","-97.40163","Salem","SD","South Dakota","TRUE","","1897","4.6","46087","McCook","{""46087"": ""100""}","McCook","46087","FALSE","FALSE","America/Chicago"
-"57059","43.12564","-97.75782","Scotland","SD","South Dakota","TRUE","","1221","3.1","46009","Bon Homme","{""46009"": ""78.98"", ""46067"": ""21.02""}","Bon Homme|Hutchinson","46009|46067","FALSE","FALSE","America/Chicago"
-"57061","44.24236","-97.044","Sinai","SD","South Dakota","TRUE","","71","126.4","46011","Brookings","{""46011"": ""100""}","Brookings","46011","FALSE","FALSE","America/Chicago"
-"57062","42.85036","-97.95455","Springfield","SD","South Dakota","TRUE","","2377","9.1","46009","Bon Homme","{""46009"": ""100""}","Bon Homme","46009","FALSE","FALSE","America/Chicago"
-"57063","42.92373","-97.68508","Tabor","SD","South Dakota","TRUE","","816","3.5","46009","Bon Homme","{""46009"": ""87.97"", ""46135"": ""12.03""}","Bon Homme|Yankton","46009|46135","FALSE","FALSE","America/Chicago"
-"57064","43.45592","-96.87384","Tea","SD","South Dakota","TRUE","","6778","100.6","46083","Lincoln","{""46083"": ""99.35"", ""46125"": ""0.65""}","Lincoln|Turner","46083|46125","FALSE","FALSE","America/Chicago"
-"57065","43.90454","-96.61559","Trent","SD","South Dakota","TRUE","","335","4.3","46101","Moody","{""46101"": ""100""}","Moody","46101","FALSE","FALSE","America/Chicago"
-"57066","42.9904","-97.86923","Tyndall","SD","South Dakota","TRUE","","1614","5.3","46009","Bon Homme","{""46009"": ""100""}","Bon Homme","46009","FALSE","FALSE","America/Chicago"
-"57067","43.04058","-97.47611","Utica","SD","South Dakota","TRUE","","403","2.4","46135","Yankton","{""46135"": ""100""}","Yankton","46135","FALSE","FALSE","America/Chicago"
-"57068","43.57541","-96.49221","Valley Springs","SD","South Dakota","TRUE","","1397","12.0","46099","Minnehaha","{""46099"": ""97.29"", ""27133"": ""2.71""}","Minnehaha|Rock","46099|27133","FALSE","FALSE","America/Chicago"
-"57069","42.83957","-96.97314","Vermillion","SD","South Dakota","TRUE","","11950","28.2","46027","Clay","{""46027"": ""100""}","Clay","46027","FALSE","FALSE","America/Chicago"
-"57070","43.18289","-97.17439","Viborg","SD","South Dakota","TRUE","","1421","5.8","46125","Turner","{""46125"": ""94.74"", ""46135"": ""5.26""}","Turner|Yankton","46125|46135","FALSE","FALSE","America/Chicago"
-"57071","44.27352","-96.96064","Volga","SD","South Dakota","TRUE","","3015","9.8","46011","Brookings","{""46011"": ""98.59"", ""46079"": ""1.41""}","Brookings|Lake","46011|46079","FALSE","FALSE","America/Chicago"
-"57072","42.98223","-97.19354","Volin","SD","South Dakota","TRUE","","695","3.1","46135","Yankton","{""46135"": ""76.37"", ""46027"": ""23.63""}","Yankton|Clay","46135|46027","FALSE","FALSE","America/Chicago"
-"57073","43.00393","-97.05586","Wakonda","SD","South Dakota","TRUE","","734","4.1","46027","Clay","{""46027"": ""98.03"", ""46125"": ""1.97""}","Clay|Turner","46027|46125","FALSE","FALSE","America/Chicago"
-"57075","44.00185","-96.96352","Wentworth","SD","South Dakota","TRUE","","1099","6.2","46079","Lake","{""46079"": ""100""}","Lake","46079","FALSE","FALSE","America/Chicago"
-"57076","43.99297","-97.35973","Winfred","SD","South Dakota","TRUE","","411","1.3","46079","Lake","{""46079"": ""57.58"", ""46097"": ""42.42""}","Lake|Miner","46079|46097","FALSE","FALSE","America/Chicago"
-"57077","43.32013","-96.75782","Worthing","SD","South Dakota","TRUE","","1503","12.7","46083","Lincoln","{""46083"": ""100""}","Lincoln","46083","FALSE","FALSE","America/Chicago"
-"57078","42.91596","-97.44362","Yankton","SD","South Dakota","TRUE","","19269","66.7","46135","Yankton","{""46135"": ""99.83"", ""31027"": ""0.17""}","Yankton|Cedar","46135|31027","FALSE","FALSE","America/Chicago"
-"57103","43.54647","-96.68894","Sioux Falls","SD","South Dakota","TRUE","","35493","1141.5","46099","Minnehaha","{""46099"": ""100""}","Minnehaha","46099","FALSE","FALSE","America/Chicago"
-"57104","43.60469","-96.70745","Sioux Falls","SD","South Dakota","TRUE","","26224","361.6","46099","Minnehaha","{""46099"": ""100""}","Minnehaha","46099","FALSE","FALSE","America/Chicago"
-"57105","43.52065","-96.73534","Sioux Falls","SD","South Dakota","TRUE","","22082","1221.5","46099","Minnehaha","{""46099"": ""100""}","Minnehaha","46099","FALSE","FALSE","America/Chicago"
-"57106","43.51054","-96.83901","Sioux Falls","SD","South Dakota","TRUE","","47372","607.0","46099","Minnehaha","{""46099"": ""85.55"", ""46083"": ""14.45""}","Minnehaha|Lincoln","46099|46083","FALSE","FALSE","America/Chicago"
-"57107","43.59489","-96.82121","Sioux Falls","SD","South Dakota","TRUE","","10404","82.7","46099","Minnehaha","{""46099"": ""100""}","Minnehaha","46099","FALSE","FALSE","America/Chicago"
-"57108","43.47752","-96.70406","Sioux Falls","SD","South Dakota","TRUE","","23689","296.5","46083","Lincoln","{""46083"": ""99.32"", ""46099"": ""0.68""}","Lincoln|Minnehaha","46083|46099","FALSE","FALSE","America/Chicago"
-"57110","43.54322","-96.63772","Sioux Falls","SD","South Dakota","TRUE","","18422","350.8","46099","Minnehaha","{""46099"": ""100""}","Minnehaha","46099","FALSE","FALSE","America/Chicago"
-"57117","43.53124","-96.75497","Sioux Falls","SD","South Dakota","TRUE","","1","4.1","46099","Minnehaha","{""46099"": ""100""}","Minnehaha","46099","FALSE","FALSE","America/Chicago"
-"57197","43.52457","-96.73861","Sioux Falls","SD","South Dakota","TRUE","","957","4402.3","46099","Minnehaha","{""46099"": ""100""}","Minnehaha","46099","FALSE","FALSE","America/Chicago"
-"57201","44.93786","-97.09464","Watertown","SD","South Dakota","TRUE","","25350","30.2","46029","Codington","{""46029"": ""100""}","Codington","46029","FALSE","FALSE","America/Chicago"
-"57212","44.37942","-97.1433","Arlington","SD","South Dakota","TRUE","","2180","3.7","46077","Kingsbury","{""46077"": ""71.92"", ""46011"": ""22.74"", ""46057"": ""5.33""}","Kingsbury|Brookings|Hamlin","46077|46011|46057","FALSE","FALSE","America/Chicago"
-"57213","44.54863","-96.52265","Astoria","SD","South Dakota","TRUE","","758","4.3","46039","Deuel","{""46039"": ""56.29"", ""46011"": ""43.71""}","Deuel|Brookings","46039|46011","FALSE","FALSE","America/Chicago"
-"57214","44.50184","-97.20477","Badger","SD","South Dakota","TRUE","","54","5.1","46077","Kingsbury","{""46077"": ""100""}","Kingsbury","46077","FALSE","FALSE","America/Chicago"
-"57216","45.30015","-96.52616","Big Stone City","SD","South Dakota","TRUE","","1121","6.9","46051","Grant","{""46051"": ""74.43"", ""46109"": ""25.57""}","Grant|Roberts","46051|46109","FALSE","FALSE","America/Chicago"
-"57217","45.07844","-97.66123","Bradley","SD","South Dakota","TRUE","","261","1.0","46025","Clark","{""46025"": ""100""}","Clark","46025","FALSE","FALSE","America/Chicago"
-"57218","44.65767","-96.59183","Brandt","SD","South Dakota","TRUE","","360","2.0","46039","Deuel","{""46039"": ""100""}","Deuel","46039","FALSE","FALSE","America/Chicago"
-"57219","45.28801","-97.80865","Bristol","SD","South Dakota","TRUE","","524","1.3","46037","Day","{""46037"": ""100""}","Day","46037","FALSE","FALSE","America/Chicago"
-"57220","44.46796","-96.92042","Bruce","SD","South Dakota","TRUE","","763","2.7","46011","Brookings","{""46011"": ""100""}","Brookings","46011","FALSE","FALSE","America/Chicago"
-"57221","44.59541","-97.45309","Bryant","SD","South Dakota","TRUE","","897","3.4","46057","Hamlin","{""46057"": ""92.45"", ""46025"": ""7.55""}","Hamlin|Clark","46057|46025","FALSE","FALSE","America/Chicago"
-"57223","44.71561","-97.00842","Castlewood","SD","South Dakota","TRUE","","1234","3.7","46057","Hamlin","{""46057"": ""99.48"", ""46039"": ""0.52""}","Hamlin|Deuel","46057|46039","FALSE","FALSE","America/Chicago"
-"57224","45.86237","-97.13702","Claire City","SD","South Dakota","TRUE","","129","1.0","46109","Roberts","{""46109"": ""100""}","Roberts","46109","FALSE","FALSE","America/Chicago"
-"57225","44.88507","-97.72526","Clark","SD","South Dakota","TRUE","","1928","2.7","46025","Clark","{""46025"": ""100""}","Clark","46025","FALSE","FALSE","America/Chicago"
-"57226","44.7876","-96.71862","Clear Lake","SD","South Dakota","TRUE","","1957","4.0","46039","Deuel","{""46039"": ""97.73"", ""46057"": ""2.27""}","Deuel|Hamlin","46039|46057","FALSE","FALSE","America/Chicago"
-"57227","45.36221","-96.71801","Corona","SD","South Dakota","TRUE","","352","3.1","46109","Roberts","{""46109"": ""98.62"", ""46051"": ""1.38""}","Roberts|Grant","46109|46051","FALSE","FALSE","America/Chicago"
-"57231","44.36451","-97.59028","De Smet","SD","South Dakota","TRUE","","1623","2.3","46077","Kingsbury","{""46077"": ""100""}","Kingsbury","46077","FALSE","FALSE","America/Chicago"
-"57232","45.61756","-97.38428","Eden","SD","South Dakota","TRUE","","310","1.5","46091","Marshall","{""46091"": ""100""}","Marshall","46091","FALSE","FALSE","America/Chicago"
-"57233","44.51193","-97.39821","Erwin","SD","South Dakota","TRUE","","139","1.6","46077","Kingsbury","{""46077"": ""100""}","Kingsbury","46077","FALSE","FALSE","America/Chicago"
-"57234","44.60292","-96.89277","Estelline","SD","South Dakota","TRUE","","1234","4.7","46057","Hamlin","{""46057"": ""88.62"", ""46039"": ""11.38""}","Hamlin|Deuel","46057|46039","FALSE","FALSE","America/Chicago"
-"57235","45.07397","-97.30875","Florence","SD","South Dakota","TRUE","","950","2.7","46029","Codington","{""46029"": ""97.39"", ""46037"": ""2.61""}","Codington|Day","46029|46037","FALSE","FALSE","America/Chicago"
-"57236","44.98413","-97.58139","Garden City","SD","South Dakota","TRUE","","148","1.2","46025","Clark","{""46025"": ""100""}","Clark","46025","FALSE","FALSE","America/Chicago"
-"57237","44.79479","-96.51693","Gary","SD","South Dakota","TRUE","","610","2.5","46039","Deuel","{""46039"": ""100""}","Deuel","46039","FALSE","FALSE","America/Chicago"
-"57238","44.87543","-96.86082","Goodwin","SD","South Dakota","TRUE","","510","2.6","46039","Deuel","{""46039"": ""72.67"", ""46029"": ""23.81"", ""46057"": ""3.52""}","Deuel|Codington|Hamlin","46039|46029|46057","FALSE","FALSE","America/Chicago"
-"57239","45.50968","-97.30925","Grenville","SD","South Dakota","TRUE","","237","2.0","46037","Day","{""46037"": ""100""}","Day","46037","FALSE","FALSE","America/Chicago"
-"57241","44.69891","-97.21352","Hayti","SD","South Dakota","TRUE","","1132","4.3","46057","Hamlin","{""46057"": ""100""}","Hamlin","46057","FALSE","FALSE","America/Chicago"
-"57242","44.77385","-97.3629","Hazel","SD","South Dakota","TRUE","","537","2.5","46057","Hamlin","{""46057"": ""86.57"", ""46029"": ""13.43""}","Hamlin|Codington","46057|46029","FALSE","FALSE","America/Chicago"
-"57243","44.91279","-97.41939","Henry","SD","South Dakota","TRUE","","708","2.3","46029","Codington","{""46029"": ""92.88"", ""46025"": ""7.12""}","Codington|Clark","46029|46025","FALSE","FALSE","America/Chicago"
-"57245","44.89759","-96.91817","Kranzburg","SD","South Dakota","TRUE","","154","122.7","46029","Codington","{""46029"": ""100""}","Codington","46029","FALSE","FALSE","America/Chicago"
-"57246","45.05837","-96.66704","Labolt","SD","South Dakota","TRUE","","212","2.7","46051","Grant","{""46051"": ""100""}","Grant","46051","FALSE","FALSE","America/Chicago"
-"57247","45.72002","-97.43095","Lake City","SD","South Dakota","TRUE","","223","1.5","46091","Marshall","{""46091"": ""100""}","Marshall","46091","FALSE","FALSE","America/Chicago"
-"57248","44.57978","-97.18943","Lake Norden","SD","South Dakota","TRUE","","972","5.5","46057","Hamlin","{""46057"": ""95.18"", ""46077"": ""4.82""}","Hamlin|Kingsbury","46057|46077","FALSE","FALSE","America/Chicago"
-"57249","44.37332","-97.36306","Lake Preston","SD","South Dakota","TRUE","","704","1.8","46077","Kingsbury","{""46077"": ""100""}","Kingsbury","46077","FALSE","FALSE","America/Chicago"
-"57251","45.27889","-96.93516","Marvin","SD","South Dakota","TRUE","","172","1.4","46051","Grant","{""46051"": ""100""}","Grant","46051","FALSE","FALSE","America/Chicago"
-"57252","45.20386","-96.6117","Milbank","SD","South Dakota","TRUE","","4617","10.9","46051","Grant","{""46051"": ""99.4"", ""46109"": ""0.6""}","Grant|Roberts","46051|46109","FALSE","FALSE","America/Chicago"
-"57255","45.85807","-96.9413","New Effington","SD","South Dakota","TRUE","","371","1.4","46109","Roberts","{""46109"": ""100""}","Roberts","46109","FALSE","FALSE","America/Chicago"
-"57256","45.2657","-97.19248","Ortley","SD","South Dakota","TRUE","","110","1.5","46109","Roberts","{""46109"": ""58.27"", ""46051"": ""41.73""}","Roberts|Grant","46109|46051","FALSE","FALSE","America/Chicago"
-"57257","45.49709","-97.02624","Peever","SD","South Dakota","TRUE","","704","3.7","46109","Roberts","{""46109"": ""100""}","Roberts","46109","FALSE","FALSE","America/Chicago"
-"57258","44.88631","-97.91985","Raymond","SD","South Dakota","TRUE","","121","0.4","46025","Clark","{""46025"": ""72.21"", ""46115"": ""27.79""}","Clark|Spink","46025|46115","FALSE","FALSE","America/Chicago"
-"57259","44.99961","-96.56585","Revillo","SD","South Dakota","TRUE","","501","1.4","46051","Grant","{""46051"": ""74.26"", ""46039"": ""25.74""}","Grant|Deuel","46051|46039","FALSE","FALSE","America/Chicago"
-"57260","45.83605","-96.71839","Rosholt","SD","South Dakota","TRUE","","917","2.2","46109","Roberts","{""46109"": ""100""}","Roberts","46109","FALSE","FALSE","America/Chicago"
-"57261","45.54059","-97.49161","Roslyn","SD","South Dakota","TRUE","","399","2.3","46037","Day","{""46037"": ""100""}","Day","46037","FALSE","FALSE","America/Chicago"
-"57262","45.67323","-97.07148","Sisseton","SD","South Dakota","TRUE","","5594","6.2","46109","Roberts","{""46109"": ""96.92"", ""46091"": ""3.08""}","Roberts|Marshall","46109|46091","FALSE","FALSE","America/Chicago"
-"57263","45.13744","-97.00214","South Shore","SD","South Dakota","TRUE","","476","2.0","46029","Codington","{""46029"": ""87.33"", ""46051"": ""12.67""}","Codington|Grant","46029|46051","FALSE","FALSE","America/Chicago"
-"57264","45.11135","-96.80465","Stockholm","SD","South Dakota","TRUE","","297","2.7","46051","Grant","{""46051"": ""100""}","Grant","46051","FALSE","FALSE","America/Chicago"
-"57265","44.99019","-96.78992","Strandburg","SD","South Dakota","TRUE","","172","0.8","46051","Grant","{""46051"": ""81.33"", ""46039"": ""18.67""}","Grant|Deuel","46051|46039","FALSE","FALSE","America/Chicago"
-"57266","45.27903","-97.09701","Summit","SD","South Dakota","TRUE","","634","1.8","46109","Roberts","{""46109"": ""64.74"", ""46051"": ""35.26""}","Roberts|Grant","46109|46051","FALSE","FALSE","America/Chicago"
-"57268","44.56975","-96.69075","Toronto","SD","South Dakota","TRUE","","490","3.0","46039","Deuel","{""46039"": ""90.07"", ""46011"": ""9.93""}","Deuel|Brookings","46039|46011","FALSE","FALSE","America/Chicago"
-"57269","45.2209","-96.8145","Twin Brooks","SD","South Dakota","TRUE","","256","1.0","46051","Grant","{""46051"": ""100""}","Grant","46051","FALSE","FALSE","America/Chicago"
-"57270","45.84287","-97.34063","Veblen","SD","South Dakota","TRUE","","805","1.9","46091","Marshall","{""46091"": ""97.12"", ""46109"": ""2.88""}","Marshall|Roberts","46091|46109","FALSE","FALSE","America/Chicago"
-"57271","44.73617","-97.53066","Vienna","SD","South Dakota","TRUE","","311","1.4","46025","Clark","{""46025"": ""69.23"", ""46057"": ""30.77""}","Clark|Hamlin","46025|46057","FALSE","FALSE","America/Chicago"
-"57272","45.10327","-97.46793","Wallace","SD","South Dakota","TRUE","","232","2.7","46029","Codington","{""46029"": ""97.69"", ""46025"": ""2.31""}","Codington|Clark","46029|46025","FALSE","FALSE","America/Chicago"
-"57273","45.33582","-97.27353","Waubay","SD","South Dakota","TRUE","","1205","2.7","46037","Day","{""46037"": ""93.84"", ""46109"": ""6.16""}","Day|Roberts","46037|46109","FALSE","FALSE","America/Chicago"
-"57274","45.30335","-97.56291","Webster","SD","South Dakota","TRUE","","2454","2.4","46037","Day","{""46037"": ""98.83"", ""46025"": ""1.17""}","Day|Clark","46037|46025","FALSE","FALSE","America/Chicago"
-"57276","44.43013","-96.6135","White","SD","South Dakota","TRUE","","1173","3.6","46011","Brookings","{""46011"": ""100""}","Brookings","46011","FALSE","FALSE","America/Chicago"
-"57278","44.63908","-97.69546","Willow Lake","SD","South Dakota","TRUE","","734","1.6","46025","Clark","{""46025"": ""100""}","Clark","46025","FALSE","FALSE","America/Chicago"
-"57279","45.41983","-96.87483","Wilmot","SD","South Dakota","TRUE","","1184","3.1","46109","Roberts","{""46109"": ""100""}","Roberts","46109","FALSE","FALSE","America/Chicago"
-"57301","43.71376","-98.04724","Mitchell","SD","South Dakota","TRUE","","18549","29.6","46035","Davison","{""46035"": ""96.78"", ""46061"": ""3.22""}","Davison|Hanson","46035|46061","FALSE","FALSE","America/Chicago"
-"57311","43.65292","-97.76171","Alexandria","SD","South Dakota","TRUE","","1498","3.1","46061","Hanson","{""46061"": ""93.25"", ""46067"": ""6.75""}","Hanson|Hutchinson","46061|46067","FALSE","FALSE","America/Chicago"
-"57312","44.20046","-98.37634","Alpena","SD","South Dakota","TRUE","","621","2.3","46073","Jerauld","{""46073"": ""70.16"", ""46005"": ""29.84""}","Jerauld|Beadle","46073|46005","FALSE","FALSE","America/Chicago"
-"57313","43.31032","-98.3658","Armour","SD","South Dakota","TRUE","","1241","2.7","46043","Douglas","{""46043"": ""90.6"", ""46023"": ""9.4""}","Douglas|Charles Mix","46043|46023","FALSE","FALSE","America/Chicago"
-"57314","44.05029","-97.98514","Artesian","SD","South Dakota","TRUE","","696","1.0","46111","Sanborn","{""46111"": ""100""}","Sanborn","46111","FALSE","FALSE","America/Chicago"
-"57315","42.99326","-98.04664","Avon","SD","South Dakota","TRUE","","1206","3.9","46009","Bon Homme","{""46009"": ""100""}","Bon Homme","46009","FALSE","FALSE","America/Chicago"
-"57317","43.12625","-98.98066","Bonesteel","SD","South Dakota","TRUE","","668","1.7","46053","Gregory","{""46053"": ""100""}","Gregory","46053","FALSE","FALSE","America/Chicago"
-"57319","43.53605","-97.48283","Bridgewater","SD","South Dakota","TRUE","","840","2.2","46087","McCook","{""46087"": ""81.46"", ""46067"": ""13.26"", ""46125"": ""5.28""}","McCook|Hutchinson|Turner","46087|46067|46125","FALSE","FALSE","America/Chicago"
-"57321","43.87233","-97.55062","Canova","SD","South Dakota","TRUE","","431","1.4","46097","Miner","{""46097"": ""79.38"", ""46087"": ""10.82"", ""46061"": ""9.79""}","Miner|McCook|Hanson","46097|46087|46061","FALSE","FALSE","America/Chicago"
-"57322","44.63068","-97.97403","Carpenter","SD","South Dakota","TRUE","","376","0.9","46005","Beadle","{""46005"": ""60.81"", ""46025"": ""22.64"", ""46115"": ""16.55""}","Beadle|Clark|Spink","46005|46025|46115","FALSE","FALSE","America/Chicago"
-"57323","44.14585","-97.71383","Carthage","SD","South Dakota","TRUE","","225","1.0","46097","Miner","{""46097"": ""100""}","Miner","46097","FALSE","FALSE","America/Chicago"
-"57324","44.29847","-98.05399","Cavour","SD","South Dakota","TRUE","","343","1.8","46005","Beadle","{""46005"": ""100""}","Beadle","46005","FALSE","FALSE","America/Chicago"
-"57325","43.7561","-99.29633","Chamberlain","SD","South Dakota","TRUE","","3147","5.6","46015","Brule","{""46015"": ""98.43"", ""46017"": ""1.57""}","Brule|Buffalo","46015|46017","FALSE","FALSE","America/Chicago"
-"57328","43.43242","-98.4403","Corsica","SD","South Dakota","TRUE","","1215","2.9","46043","Douglas","{""46043"": ""100""}","Douglas","46043","FALSE","FALSE","America/Chicago"
-"57329","42.97949","-98.15395","Dante","SD","South Dakota","TRUE","","349","2.1","46023","Charles Mix","{""46023"": ""100""}","Charles Mix","46023","FALSE","FALSE","America/Chicago"
-"57330","43.25187","-98.16564","Delmont","SD","South Dakota","TRUE","","455","1.4","46043","Douglas","{""46043"": ""74.24"", ""46023"": ""23.68"", ""46067"": ""2.08""}","Douglas|Charles Mix|Hutchinson","46043|46023|46067","FALSE","FALSE","America/Chicago"
-"57331","43.47318","-98.03723","Dimock","SD","South Dakota","TRUE","","494","2.6","46067","Hutchinson","{""46067"": ""75.82"", ""46043"": ""15.03"", ""46035"": ""9.15""}","Hutchinson|Douglas|Davison","46067|46043|46035","FALSE","FALSE","America/Chicago"
-"57332","43.54804","-97.64734","Emery","SD","South Dakota","TRUE","","903","3.4","46061","Hanson","{""46061"": ""83.84"", ""46067"": ""8.63"", ""46087"": ""7.53""}","Hanson|Hutchinson|McCook","46061|46067|46087","FALSE","FALSE","America/Chicago"
-"57334","43.54636","-97.99428","Ethan","SD","South Dakota","TRUE","","951","3.4","46035","Davison","{""46035"": ""70.06"", ""46061"": ""16.98"", ""46067"": ""12.96""}","Davison|Hanson|Hutchinson","46035|46061|46067","FALSE","FALSE","America/Chicago"
-"57335","43.06138","-98.77377","Fairfax","SD","South Dakota","TRUE","","278","1.0","46053","Gregory","{""46053"": ""100""}","Gregory","46053","FALSE","FALSE","America/Chicago"
-"57337","44.00976","-97.79213","Fedora","SD","South Dakota","TRUE","","122","0.6","46097","Miner","{""46097"": ""100""}","Miner","46097","FALSE","FALSE","America/Chicago"
-"57339","44.11596","-99.41258","Fort Thompson","SD","South Dakota","TRUE","","1522","4.6","46017","Buffalo","{""46017"": ""100""}","Buffalo","46017","FALSE","FALSE","America/Chicago"
-"57340","43.79557","-97.84511","Fulton","SD","South Dakota","TRUE","","340","1.6","46061","Hanson","{""46061"": ""96.62"", ""46097"": ""3.38""}","Hanson|Miner","46061|46097","FALSE","FALSE","America/Chicago"
-"57341","44.08985","-99.08809","Gann Valley","SD","South Dakota","TRUE","","148","0.2","46017","Buffalo","{""46017"": ""100""}","Buffalo","46017","FALSE","FALSE","America/Chicago"
-"57342","43.2466","-98.70177","Geddes","SD","South Dakota","TRUE","","577","1.4","46023","Charles Mix","{""46023"": ""100""}","Charles Mix","46023","FALSE","FALSE","America/Chicago"
-"57344","43.45074","-98.63395","Harrison","SD","South Dakota","TRUE","","109","1.2","46043","Douglas","{""46043"": ""100""}","Douglas","46043","FALSE","FALSE","America/Chicago"
-"57345","44.57382","-99.45348","Highmore","SD","South Dakota","TRUE","","1095","0.6","46069","Hyde","{""46069"": ""100""}","Hyde","46069","FALSE","FALSE","America/Chicago"
-"57346","44.23508","-99.5524","Stephan","SD","South Dakota","TRUE","","95","0.7","46069","Hyde","{""46069"": ""100""}","Hyde","46069","FALSE","FALSE","America/Chicago"
-"57348","44.62177","-98.36444","Hitchcock","SD","South Dakota","TRUE","","530","0.8","46005","Beadle","{""46005"": ""68.88"", ""46115"": ""31.12""}","Beadle|Spink","46005|46115","FALSE","FALSE","America/Chicago"
-"57349","44.03028","-97.57578","Howard","SD","South Dakota","TRUE","","1434","2.4","46097","Miner","{""46097"": ""100""}","Miner","46097","FALSE","FALSE","America/Chicago"
-"57350","44.40227","-98.20051","Huron","SD","South Dakota","TRUE","","15427","19.4","46005","Beadle","{""46005"": ""100""}","Beadle","46005","FALSE","FALSE","America/Chicago"
-"57353","44.35872","-97.84415","Iroquois","SD","South Dakota","TRUE","","890","1.1","46077","Kingsbury","{""46077"": ""56.57"", ""46005"": ""43.43""}","Kingsbury|Beadle","46077|46005","FALSE","FALSE","America/Chicago"
-"57355","43.77867","-98.9494","Kimball","SD","South Dakota","TRUE","","1394","1.4","46015","Brule","{""46015"": ""96.3"", ""46017"": ""2.51"", ""46073"": ""1.18""}","Brule|Buffalo|Jerauld","46015|46017|46073","FALSE","FALSE","America/Chicago"
-"57356","43.15884","-98.52724","Lake Andes","SD","South Dakota","TRUE","","2034","5.2","46023","Charles Mix","{""46023"": ""100""}","Charles Mix","46023","FALSE","FALSE","America/Chicago"
-"57358","44.0753","-98.42189","Lane","SD","South Dakota","TRUE","","21","8.6","46073","Jerauld","{""46073"": ""100""}","Jerauld","46073","FALSE","FALSE","America/Chicago"
-"57359","43.89804","-98.17521","Letcher","SD","South Dakota","TRUE","","762","1.8","46111","Sanborn","{""46111"": ""79.35"", ""46035"": ""10.79"", ""46003"": ""9.86""}","Sanborn|Davison|Aurora","46111|46035|46003","FALSE","FALSE","America/Chicago"
-"57361","42.99698","-98.42921","Marty","SD","South Dakota","TRUE","","120","16.1","46023","Charles Mix","{""46023"": ""100""}","Charles Mix","46023","FALSE","FALSE","America/Chicago"
-"57362","44.4916","-99.07088","Miller","SD","South Dakota","TRUE","","2076","1.6","46059","Hand","{""46059"": ""100""}","Hand","46059","FALSE","FALSE","America/Chicago"
-"57363","43.67863","-98.25553","Mount Vernon","SD","South Dakota","TRUE","","924","2.0","46035","Davison","{""46035"": ""97.81"", ""46111"": ""2.19""}","Davison|Sanborn","46035|46111","FALSE","FALSE","America/Chicago"
-"57364","43.42922","-98.60689","New Holland","SD","South Dakota","TRUE","","0","0.0","46043","Douglas","{""46043"": ""100""}","Douglas","46043","FALSE","FALSE","America/Chicago"
-"57365","43.81175","-99.41645","Oacoma","SD","South Dakota","TRUE","","552","3.4","46085","Lyman","{""46085"": ""100""}","Lyman","46085","FALSE","FALSE","America/Chicago"
-"57366","43.38348","-97.94396","Parkston","SD","South Dakota","TRUE","","2315","4.0","46067","Hutchinson","{""46067"": ""96.59"", ""46043"": ""3.41""}","Hutchinson|Douglas","46067|46043","FALSE","FALSE","America/Chicago"
-"57367","43.06397","-98.52206","Pickstown","SD","South Dakota","TRUE","","270","28.1","46023","Charles Mix","{""46023"": ""100""}","Charles Mix","46023","FALSE","FALSE","America/Chicago"
-"57368","43.75128","-98.47749","Plankinton","SD","South Dakota","TRUE","","1185","1.9","46003","Aurora","{""46003"": ""100""}","Aurora","46003","FALSE","FALSE","America/Chicago"
-"57369","43.42504","-98.9479","Platte","SD","South Dakota","TRUE","","2411","2.1","46023","Charles Mix","{""46023"": ""87.7"", ""46015"": ""11.26"", ""46043"": ""1.04""}","Charles Mix|Brule|Douglas","46023|46015|46043","FALSE","FALSE","America/Chicago"
-"57370","43.80154","-99.16909","Pukwana","SD","South Dakota","TRUE","","668","1.2","46015","Brule","{""46015"": ""81.08"", ""46017"": ""18.92""}","Brule|Buffalo","46015|46017","FALSE","FALSE","America/Chicago"
-"57371","44.42302","-99.23537","Ree Heights","SD","South Dakota","TRUE","","152","0.3","46059","Hand","{""46059"": ""100""}","Hand","46059","FALSE","FALSE","America/Chicago"
-"57373","44.53858","-98.86412","Saint Lawrence","SD","South Dakota","TRUE","","507","1.0","46059","Hand","{""46059"": ""100""}","Hand","46059","FALSE","FALSE","America/Chicago"
-"57374","43.75613","-97.60163","Spencer","SD","South Dakota","TRUE","","415","2.1","46087","McCook","{""46087"": ""74.34"", ""46061"": ""25.66""}","McCook|Hanson","46087|46061","FALSE","FALSE","America/Chicago"
-"57375","43.56202","-98.47987","Stickney","SD","South Dakota","TRUE","","734","1.9","46003","Aurora","{""46003"": ""100""}","Aurora","46003","FALSE","FALSE","America/Chicago"
-"57376","43.21571","-97.94065","Tripp","SD","South Dakota","TRUE","","928","2.3","46067","Hutchinson","{""46067"": ""92.28"", ""46009"": ""7.72""}","Hutchinson|Bon Homme","46067|46009","FALSE","FALSE","America/Chicago"
-"57379","44.25834","-98.55119","Virgil","SD","South Dakota","TRUE","","80","0.6","46005","Beadle","{""46005"": ""100""}","Beadle","46005","FALSE","FALSE","America/Chicago"
-"57380","43.0305","-98.3076","Wagner","SD","South Dakota","TRUE","","3810","5.3","46023","Charles Mix","{""46023"": ""100""}","Charles Mix","46023","FALSE","FALSE","America/Chicago"
-"57381","44.39086","-98.73306","Wessington","SD","South Dakota","TRUE","","576","0.7","46005","Beadle","{""46005"": ""55.1"", ""46059"": ""44.9""}","Beadle|Hand","46005|46059","FALSE","FALSE","America/Chicago"
-"57382","44.06162","-98.66741","Wessington Springs","SD","South Dakota","TRUE","","1362","1.2","46073","Jerauld","{""46073"": ""97.17"", ""46003"": ""1.45"", ""46005"": ""1.38""}","Jerauld|Aurora|Beadle","46073|46003|46005","FALSE","FALSE","America/Chicago"
-"57383","43.71959","-98.71463","White Lake","SD","South Dakota","TRUE","","727","1.1","46003","Aurora","{""46003"": ""99.18"", ""46015"": ""0.82""}","Aurora|Brule","46003|46015","FALSE","FALSE","America/Chicago"
-"57384","44.41466","-98.49125","Wolsey","SD","South Dakota","TRUE","","947","1.7","46005","Beadle","{""46005"": ""100""}","Beadle","46005","FALSE","FALSE","America/Chicago"
-"57385","44.0508","-98.28843","Woonsocket","SD","South Dakota","TRUE","","1220","2.0","46111","Sanborn","{""46111"": ""88.78"", ""46073"": ""9.25"", ""46003"": ""1.97""}","Sanborn|Jerauld|Aurora","46111|46073|46003","FALSE","FALSE","America/Chicago"
-"57386","44.51317","-98.00368","Yale","SD","South Dakota","TRUE","","230","1.6","46005","Beadle","{""46005"": ""100""}","Beadle","46005","FALSE","FALSE","America/Chicago"
-"57401","45.47648","-98.52753","Aberdeen","SD","South Dakota","TRUE","","32831","43.6","46013","Brown","{""46013"": ""100""}","Brown","46013","FALSE","FALSE","America/Chicago"
-"57420","45.28685","-100.14134","Akaska","SD","South Dakota","TRUE","","89","0.7","46129","Walworth","{""46129"": ""100""}","Walworth","46129","FALSE","FALSE","America/Chicago"
-"57421","45.75366","-97.9163","Amherst","SD","South Dakota","TRUE","","77","0.8","46091","Marshall","{""46091"": ""100""}","Marshall","46091","FALSE","FALSE","America/Chicago"
-"57422","45.42189","-97.91166","Andover","SD","South Dakota","TRUE","","219","0.8","46037","Day","{""46037"": ""100""}","Day","46037","FALSE","FALSE","America/Chicago"
-"57424","45.01655","-98.53829","Ashton","SD","South Dakota","TRUE","","214","0.5","46115","Spink","{""46115"": ""95.88"", ""46049"": ""4.12""}","Spink|Faulk","46115|46049","FALSE","FALSE","America/Chicago"
-"57426","45.73795","-98.49555","Barnard","SD","South Dakota","TRUE","","26","1.4","46013","Brown","{""46013"": ""100""}","Brown","46013","FALSE","FALSE","America/Chicago"
-"57427","45.48373","-98.31718","Bath","SD","South Dakota","TRUE","","761","4.9","46013","Brown","{""46013"": ""100""}","Brown","46013","FALSE","FALSE","America/Chicago"
-"57428","45.45234","-99.67794","Bowdle","SD","South Dakota","TRUE","","634","1.3","46045","Edmunds","{""46045"": ""90.99"", ""46129"": ""9.01""}","Edmunds|Walworth","46045|46129","FALSE","FALSE","America/Chicago"
-"57429","45.17477","-98.2973","Brentford","SD","South Dakota","TRUE","","70","1.0","46115","Spink","{""46115"": ""100""}","Spink","46115","FALSE","FALSE","America/Chicago"
-"57430","45.81545","-97.7108","Britton","SD","South Dakota","TRUE","","2559","2.7","46091","Marshall","{""46091"": ""100""}","Marshall","46091","FALSE","FALSE","America/Chicago"
-"57432","45.68238","-98.03365","Claremont","SD","South Dakota","TRUE","","367","1.4","46013","Brown","{""46013"": ""62.8"", ""46091"": ""37.2""}","Brown|Marshall","46013|46091","FALSE","FALSE","America/Chicago"
-"57433","45.65115","-98.31581","Columbia","SD","South Dakota","TRUE","","369","1.1","46013","Brown","{""46013"": ""100""}","Brown","46013","FALSE","FALSE","America/Chicago"
-"57434","45.16922","-98.07465","Conde","SD","South Dakota","TRUE","","489","0.7","46115","Spink","{""46115"": ""49.29"", ""46013"": ""37.46"", ""46025"": ""9.01"", ""46037"": ""4.24""}","Spink|Brown|Clark|Day","46115|46013|46025|46037","FALSE","FALSE","America/Chicago"
-"57435","45.17654","-98.91268","Cresbard","SD","South Dakota","TRUE","","315","0.9","46049","Faulk","{""46049"": ""85.43"", ""46045"": ""14.57""}","Faulk|Edmunds","46049|46045","FALSE","FALSE","America/Chicago"
-"57436","44.85674","-98.08626","Doland","SD","South Dakota","TRUE","","494","0.9","46115","Spink","{""46115"": ""100""}","Spink","46115","FALSE","FALSE","America/Chicago"
-"57437","45.79144","-99.59805","Eureka","SD","South Dakota","TRUE","","1453","1.0","46089","McPherson","{""46089"": ""90.28"", ""46021"": ""9.72""}","McPherson|Campbell","46089|46021","FALSE","FALSE","America/Chicago"
-"57438","45.06372","-99.16239","Faulkton","SD","South Dakota","TRUE","","1403","1.2","46049","Faulk","{""46049"": ""100""}","Faulk","46049","FALSE","FALSE","America/Chicago"
-"57439","45.33168","-98.06511","Ferney","SD","South Dakota","TRUE","","41","3.2","46013","Brown","{""46013"": ""100""}","Brown","46013","FALSE","FALSE","America/Chicago"
-"57440","44.84998","-98.26189","Frankfort","SD","South Dakota","TRUE","","597","1.6","46115","Spink","{""46115"": ""100""}","Spink","46115","FALSE","FALSE","America/Chicago"
-"57441","45.82891","-98.52457","Frederick","SD","South Dakota","TRUE","","523","0.7","46013","Brown","{""46013"": ""100""}","Brown","46013","FALSE","FALSE","America/Chicago"
-"57442","45.05451","-100.14463","Gettysburg","SD","South Dakota","TRUE","","1842","1.2","46107","Potter","{""46107"": ""92.13"", ""46041"": ""7.03"", ""46119"": ""0.84""}","Potter|Dewey|Sully","46107|46041|46119","FALSE","FALSE","America/Chicago"
-"57445","45.46107","-98.11901","Groton","SD","South Dakota","TRUE","","1940","2.9","46013","Brown","{""46013"": ""100""}","Brown","46013","FALSE","FALSE","America/Chicago"
-"57446","45.86836","-98.14616","Hecla","SD","South Dakota","TRUE","","456","1.1","46013","Brown","{""46013"": ""100""}","Brown","46013","FALSE","FALSE","America/Chicago"
-"57448","45.61283","-99.40674","Hosmer","SD","South Dakota","TRUE","","498","1.1","46045","Edmunds","{""46045"": ""80.46"", ""46089"": ""19.54""}","Edmunds|McPherson","46045|46089","FALSE","FALSE","America/Chicago"
-"57449","45.73821","-98.18289","Houghton","SD","South Dakota","TRUE","","195","1.0","46013","Brown","{""46013"": ""100""}","Brown","46013","FALSE","FALSE","America/Chicago"
-"57450","45.22527","-99.83955","Hoven","SD","South Dakota","TRUE","","539","1.1","46107","Potter","{""46107"": ""82.89"", ""46129"": ""17.11""}","Potter|Walworth","46107|46129","FALSE","FALSE","America/Chicago"
-"57451","45.43469","-98.94763","Ipswich","SD","South Dakota","TRUE","","2166","1.9","46045","Edmunds","{""46045"": ""96.6"", ""46013"": ""3.4""}","Edmunds|Brown","46045|46013","FALSE","FALSE","America/Chicago"
-"57452","45.532","-99.86624","Java","SD","South Dakota","TRUE","","307","0.6","46129","Walworth","{""46129"": ""73.74"", ""46021"": ""26.26""}","Walworth|Campbell","46129|46021","FALSE","FALSE","America/Chicago"
-"57454","45.61118","-97.77843","Langford","SD","South Dakota","TRUE","","651","1.7","46091","Marshall","{""46091"": ""89.96"", ""46037"": ""10.04""}","Marshall|Day","46091|46037","FALSE","FALSE","America/Chicago"
-"57455","45.00296","-99.73449","Lebanon","SD","South Dakota","TRUE","","85","0.3","46107","Potter","{""46107"": ""100""}","Potter","46107","FALSE","FALSE","America/Chicago"
-"57456","45.73712","-98.98196","Leola","SD","South Dakota","TRUE","","818","0.8","46089","McPherson","{""46089"": ""89.79"", ""46045"": ""10.21""}","McPherson|Edmunds","46089|46045","FALSE","FALSE","America/Chicago"
-"57457","45.88672","-99.16009","Long Lake","SD","South Dakota","TRUE","","91","0.3","46089","McPherson","{""46089"": ""100""}","McPherson","46089","FALSE","FALSE","America/Chicago"
-"57460","45.27419","-98.6741","Mansfield","SD","South Dakota","TRUE","","411","1.3","46013","Brown","{""46013"": ""66.03"", ""46115"": ""18.63"", ""46049"": ""8.49"", ""46045"": ""6.85""}","Brown|Spink|Faulk|Edmunds","46013|46115|46049|46045","FALSE","FALSE","America/Chicago"
-"57461","45.15692","-98.43202","Mellette","SD","South Dakota","TRUE","","356","1.1","46115","Spink","{""46115"": ""100""}","Spink","46115","FALSE","FALSE","America/Chicago"
-"57465","45.14218","-98.68102","Northville","SD","South Dakota","TRUE","","310","0.8","46115","Spink","{""46115"": ""73.58"", ""46049"": ""26.42""}","Spink|Faulk","46115|46049","FALSE","FALSE","America/Chicago"
-"57466","45.21161","-99.46409","Onaka","SD","South Dakota","TRUE","","169","0.5","46049","Faulk","{""46049"": ""77.42"", ""46045"": ""22.58""}","Faulk|Edmunds","46049|46045","FALSE","FALSE","America/Chicago"
-"57467","44.83336","-99.1415","Orient","SD","South Dakota","TRUE","","222","0.5","46059","Hand","{""46059"": ""72.35"", ""46049"": ""27.65""}","Hand|Faulk","46059|46049","FALSE","FALSE","America/Chicago"
-"57468","45.50012","-97.7555","Pierpont","SD","South Dakota","TRUE","","421","2.1","46037","Day","{""46037"": ""100""}","Day","46037","FALSE","FALSE","America/Chicago"
-"57469","44.86139","-98.57443","Redfield","SD","South Dakota","TRUE","","3480","4.6","46115","Spink","{""46115"": ""96.61"", ""46049"": ""1.72"", ""46059"": ""1.66""}","Spink|Faulk|Hand","46115|46049|46059","FALSE","FALSE","America/Chicago"
-"57470","44.87671","-98.86688","Rockham","SD","South Dakota","TRUE","","85","0.2","46049","Faulk","{""46049"": ""54.55"", ""46059"": ""45.45""}","Faulk|Hand","46049|46059","FALSE","FALSE","America/Chicago"
-"57471","45.39945","-99.3257","Roscoe","SD","South Dakota","TRUE","","560","0.6","46045","Edmunds","{""46045"": ""100""}","Edmunds","46045","FALSE","FALSE","America/Chicago"
-"57472","45.44768","-100.07291","Selby","SD","South Dakota","TRUE","","907","1.3","46129","Walworth","{""46129"": ""100""}","Walworth","46129","FALSE","FALSE","America/Chicago"
-"57473","44.99611","-99.50199","Seneca","SD","South Dakota","TRUE","","174","0.4","46049","Faulk","{""46049"": ""74.53"", ""46107"": ""25.47""}","Faulk|Potter","46049|46107","FALSE","FALSE","America/Chicago"
-"57474","45.29864","-98.26884","Stratford","SD","South Dakota","TRUE","","177","1.1","46013","Brown","{""46013"": ""100""}","Brown","46013","FALSE","FALSE","America/Chicago"
-"57475","45.22191","-99.63213","Tolstoy","SD","South Dakota","TRUE","","127","0.4","46107","Potter","{""46107"": ""63.75"", ""46045"": ""36.25""}","Potter|Edmunds","46107|46045","FALSE","FALSE","America/Chicago"
-"57476","44.71425","-98.61703","Tulare","SD","South Dakota","TRUE","","479","1.1","46115","Spink","{""46115"": ""87.26"", ""46059"": ""12.74""}","Spink|Hand","46115|46059","FALSE","FALSE","America/Chicago"
-"57477","45.04038","-98.16155","Turton","SD","South Dakota","TRUE","","161","0.7","46115","Spink","{""46115"": ""100""}","Spink","46115","FALSE","FALSE","America/Chicago"
-"57479","45.30296","-98.44322","Warner","SD","South Dakota","TRUE","","601","4.4","46013","Brown","{""46013"": ""100""}","Brown","46013","FALSE","FALSE","America/Chicago"
-"57481","45.65042","-98.66769","Westport","SD","South Dakota","TRUE","","369","0.8","46013","Brown","{""46013"": ""62.37"", ""46089"": ""34.11"", ""46045"": ""3.51""}","Brown|McPherson|Edmunds","46013|46089|46045","FALSE","FALSE","America/Chicago"
-"57501","44.52935","-100.30251","Pierre","SD","South Dakota","TRUE","","16850","11.1","46065","Hughes","{""46065"": ""98.8"", ""46119"": ""1.2""}","Hughes|Sully","46065|46119","FALSE","FALSE","America/Chicago"
-"57520","44.8448","-100.16428","Agar","SD","South Dakota","TRUE","","100","0.3","46119","Sully","{""46119"": ""100""}","Sully","46119","FALSE","FALSE","America/Chicago"
-"57521","43.80982","-101.207","Belvidere","SD","South Dakota","TRUE","","150","0.1","46071","Jackson","{""46071"": ""82.63"", ""46095"": ""17.37""}","Jackson|Mellette","46071|46095","FALSE","FALSE","America/Denver"
-"57522","44.47735","-99.99679","Blunt","SD","South Dakota","TRUE","","571","1.9","46065","Hughes","{""46065"": ""100""}","Hughes","46065","FALSE","FALSE","America/Chicago"
-"57523","43.23661","-99.23922","Burke","SD","South Dakota","TRUE","","923","1.4","46053","Gregory","{""46053"": ""100""}","Gregory","46053","FALSE","FALSE","America/Chicago"
-"57528","43.19158","-99.76538","Colome","SD","South Dakota","TRUE","","1000","1.9","46123","Tripp","{""46123"": ""100""}","Tripp","46123","FALSE","FALSE","America/Chicago"
-"57529","43.23148","-99.56769","Dallas","SD","South Dakota","TRUE","","370","0.6","46053","Gregory","{""46053"": ""60.76"", ""46123"": ""39.24""}","Gregory|Tripp","46053|46123","FALSE","FALSE","America/Chicago"
-"57531","43.9707","-100.49108","Draper","SD","South Dakota","TRUE","","96","0.1","46075","Jones","{""46075"": ""100""}","Jones","46075","FALSE","FALSE","America/Chicago"
-"57532","44.38995","-100.61774","Fort Pierre","SD","South Dakota","TRUE","","2937","1.0","46117","Stanley","{""46117"": ""99.47"", ""46085"": ""0.53""}","Stanley|Lyman","46117|46085","FALSE","FALSE","America/Denver"
-"57533","43.37414","-99.43177","Gregory","SD","South Dakota","TRUE","","1864","1.8","46053","Gregory","{""46053"": ""95.32"", ""46085"": ""4.68""}","Gregory|Lyman","46053|46085","FALSE","FALSE","America/Chicago"
-"57534","43.58107","-99.68744","Hamill","SD","South Dakota","TRUE","","242","0.5","46123","Tripp","{""46123"": ""100""}","Tripp","46123","FALSE","FALSE","America/Chicago"
-"57536","44.3991","-99.76162","Harrold","SD","South Dakota","TRUE","","401","0.4","46065","Hughes","{""46065"": ""94.88"", ""46119"": ""5.12""}","Hughes|Sully","46065|46119","FALSE","FALSE","America/Chicago"
-"57537","44.56549","-101.06026","Hayes","SD","South Dakota","TRUE","","144","0.3","46117","Stanley","{""46117"": ""100""}","Stanley","46117","FALSE","FALSE","America/Denver"
-"57538","43.12035","-99.14445","Herrick","SD","South Dakota","TRUE","","275","0.8","46053","Gregory","{""46053"": ""100""}","Gregory","46053","FALSE","FALSE","America/Chicago"
-"57540","44.51898","-99.6073","Holabird","SD","South Dakota","TRUE","","114","0.3","46069","Hyde","{""46069"": ""100""}","Hyde","46069","FALSE","FALSE","America/Chicago"
-"57541","43.6032","-99.89584","Ideal","SD","South Dakota","TRUE","","147","0.5","46123","Tripp","{""46123"": ""100""}","Tripp","46123","FALSE","FALSE","America/Chicago"
-"57543","43.75287","-101.51687","Kadoka","SD","South Dakota","TRUE","","854","0.7","46071","Jackson","{""46071"": ""100""}","Jackson","46071","FALSE","FALSE","America/Denver"
-"57544","43.9455","-99.88774","Kennebec","SD","South Dakota","TRUE","","450","0.5","46085","Lyman","{""46085"": ""100""}","Lyman","46085","FALSE","FALSE","America/Chicago"
-"57547","43.47547","-101.42936","Long Valley","SD","South Dakota","TRUE","","149","0.2","46071","Jackson","{""46071"": ""100""}","Jackson","46071","FALSE","FALSE","America/Denver"
-"57548","44.08834","-99.6589","Lower Brule","SD","South Dakota","TRUE","","1594","5.3","46085","Lyman","{""46085"": ""100""}","Lyman","46085","FALSE","FALSE","America/Chicago"
-"57551","43.17891","-101.6976","Martin","SD","South Dakota","TRUE","","2442","1.3","46007","Bennett","{""46007"": ""100""}","Bennett","46007","FALSE","FALSE","America/Denver"
-"57552","44.27155","-101.19563","Midland","SD","South Dakota","TRUE","","554","0.2","46055","Haakon","{""46055"": ""79.96"", ""46117"": ""11.37"", ""46075"": ""6.14"", ""46071"": ""2.53""}","Haakon|Stanley|Jones|Jackson","46055|46117|46075|46071","FALSE","FALSE","America/Denver"
-"57553","44.48113","-101.64204","Milesville","SD","South Dakota","TRUE","","165","0.2","46055","Haakon","{""46055"": ""100""}","Haakon","46055","FALSE","FALSE","America/Denver"
-"57555","43.24342","-100.6321","Mission","SD","South Dakota","TRUE","","4292","4.0","46121","Todd","{""46121"": ""100""}","Todd","46121","FALSE","FALSE","America/Chicago"
-"57559","43.935","-100.72531","Murdo","SD","South Dakota","TRUE","","553","0.6","46075","Jones","{""46075"": ""100""}","Jones","46075","FALSE","FALSE","America/Chicago"
-"57560","43.43957","-101.19703","Norris","SD","South Dakota","TRUE","","510","1.2","46095","Mellette","{""46095"": ""97.02"", ""46007"": ""2.98""}","Mellette|Bennett","46095|46007","FALSE","FALSE","America/Chicago"
-"57562","43.89385","-100.95269","Okaton","SD","South Dakota","TRUE","","89","0.3","46075","Jones","{""46075"": ""100""}","Jones","46075","FALSE","FALSE","America/Chicago"
-"57563","43.36321","-100.38085","Okreek","SD","South Dakota","TRUE","","202","2.7","46121","Todd","{""46121"": ""100""}","Todd","46121","FALSE","FALSE","America/Chicago"
-"57564","44.7122","-99.99244","Onida","SD","South Dakota","TRUE","","981","0.7","46119","Sully","{""46119"": ""99.2"", ""46069"": ""0.8""}","Sully|Hyde","46119|46069","FALSE","FALSE","America/Chicago"
-"57566","43.32465","-101.093","Parmelee","SD","South Dakota","TRUE","","1256","2.8","46121","Todd","{""46121"": ""97.55"", ""46095"": ""2.45""}","Todd|Mellette","46121|46095","FALSE","FALSE","America/Chicago"
-"57567","44.11878","-101.73082","Philip","SD","South Dakota","TRUE","","1349","0.5","46055","Haakon","{""46055"": ""91.89"", ""46071"": ""8.11""}","Haakon|Jackson","46055|46071","FALSE","FALSE","America/Denver"
-"57568","43.88753","-100.08533","Presho","SD","South Dakota","TRUE","","675","0.7","46085","Lyman","{""46085"": ""100""}","Lyman","46085","FALSE","FALSE","America/Chicago"
-"57569","43.85788","-99.57537","Reliance","SD","South Dakota","TRUE","","282","0.3","46085","Lyman","{""46085"": ""100""}","Lyman","46085","FALSE","FALSE","America/Chicago"
-"57570","43.23712","-100.87597","Rosebud","SD","South Dakota","TRUE","","1994","8.1","46121","Todd","{""46121"": ""100""}","Todd","46121","FALSE","FALSE","America/Chicago"
-"57571","43.08528","-99.09257","Saint Charles","SD","South Dakota","TRUE","","8","7.9","46053","Gregory","{""46053"": ""100""}","Gregory","46053","FALSE","FALSE","America/Chicago"
-"57572","43.14943","-101.03101","Saint Francis","SD","South Dakota","TRUE","","1998","4.6","46121","Todd","{""46121"": ""100""}","Todd","46121","FALSE","FALSE","America/Chicago"
-"57574","43.10506","-101.35617","Tuthill","SD","South Dakota","TRUE","","75","0.1","46007","Bennett","{""46007"": ""100""}","Bennett","46007","FALSE","FALSE","America/Denver"
-"57576","43.92019","-100.30092","Vivian","SD","South Dakota","TRUE","","187","0.3","46085","Lyman","{""46085"": ""96.08"", ""46075"": ""3.92""}","Lyman|Jones","46085|46075","FALSE","FALSE","America/Chicago"
-"57577","43.5417","-101.67957","Wanblee","SD","South Dakota","TRUE","","1741","2.8","46071","Jackson","{""46071"": ""99.34"", ""46007"": ""0.66""}","Jackson|Bennett","46071|46007","FALSE","FALSE","America/Denver"
-"57579","43.59156","-100.79476","White River","SD","South Dakota","TRUE","","1354","0.8","46095","Mellette","{""46095"": ""100""}","Mellette","46095","FALSE","FALSE","America/Chicago"
-"57580","43.278","-100.05857","Winner","SD","South Dakota","TRUE","","3936","1.4","46123","Tripp","{""46123"": ""95.89"", ""46121"": ""3.8"", ""46095"": ""0.31""}","Tripp|Todd|Mellette","46123|46121|46095","FALSE","FALSE","America/Chicago"
-"57584","43.53318","-100.071","Witten","SD","South Dakota","TRUE","","65","0.3","46123","Tripp","{""46123"": ""100""}","Tripp","46123","FALSE","FALSE","America/Chicago"
-"57585","43.53994","-100.40351","Wood","SD","South Dakota","TRUE","","115","0.1","46095","Mellette","{""46095"": ""100""}","Mellette","46095","FALSE","FALSE","America/Chicago"
-"57601","45.44464","-100.50963","Mobridge","SD","South Dakota","TRUE","","3962","7.3","46129","Walworth","{""46129"": ""94.43"", ""46041"": ""4.7"", ""46031"": ""0.87""}","Walworth|Dewey|Corson","46129|46041|46031","FALSE","FALSE","America/Denver"
-"57620","45.38241","-102.54875","Bison","SD","South Dakota","TRUE","","498","0.5","46105","Perkins","{""46105"": ""100""}","Perkins","46105","FALSE","FALSE","America/Denver"
-"57621","45.7492","-101.07488","Bullhead","SD","South Dakota","TRUE","","385","1.6","46031","Corson","{""46031"": ""100""}","Corson","46031","FALSE","FALSE","America/Denver"
-"57622","44.66411","-101.54094","Cherry Creek","SD","South Dakota","TRUE","","398","1.4","46137","Ziebach","{""46137"": ""100""}","Ziebach","46137","FALSE","FALSE","America/Denver"
-"57623","45.02371","-101.68134","Dupree","SD","South Dakota","TRUE","","1120","0.5","46137","Ziebach","{""46137"": ""100""}","Ziebach","46137","FALSE","FALSE","America/Denver"
-"57625","44.95167","-100.99522","Eagle Butte","SD","South Dakota","TRUE","","4365","1.4","46041","Dewey","{""46041"": ""78.39"", ""46137"": ""21.61""}","Dewey|Ziebach","46041|46137","FALSE","FALSE","America/Denver"
-"57626","44.99261","-102.20973","Faith","SD","South Dakota","TRUE","","1019","0.3","46093","Meade","{""46093"": ""60.97"", ""46105"": ""20.49"", ""46137"": ""18.54""}","Meade|Perkins|Ziebach","46093|46105|46137","FALSE","FALSE","America/Denver"
-"57630","45.43917","-100.90554","Glencross","SD","South Dakota","TRUE","","26","0.9","46041","Dewey","{""46041"": ""100""}","Dewey","46041","FALSE","FALSE","America/Denver"
-"57631","45.53361","-100.28243","Glenham","SD","South Dakota","TRUE","","398","1.0","46129","Walworth","{""46129"": ""68.14"", ""46021"": ""31.86""}","Walworth|Campbell","46129|46021","FALSE","FALSE","America/Chicago"
-"57632","45.83662","-100.03958","Herreid","SD","South Dakota","TRUE","","664","1.3","46021","Campbell","{""46021"": ""100""}","Campbell","46021","FALSE","FALSE","America/Chicago"
-"57633","45.46016","-101.45463","Isabel","SD","South Dakota","TRUE","","400","0.2","46041","Dewey","{""46041"": ""57"", ""46031"": ""30.92"", ""46137"": ""12.08""}","Dewey|Corson|Ziebach","46041|46031|46137","FALSE","FALSE","America/Denver"
-"57634","45.75269","-101.88428","Keldron","SD","South Dakota","TRUE","","155","0.3","46031","Corson","{""46031"": ""100""}","Corson","46031","FALSE","FALSE","America/Denver"
-"57636","45.03497","-101.46131","Lantry","SD","South Dakota","TRUE","","195","3.7","46041","Dewey","{""46041"": ""100""}","Dewey","46041","FALSE","FALSE","America/Denver"
-"57638","45.8862","-102.21443","Lemmon","SD","South Dakota","TRUE","","1788","0.7","46105","Perkins","{""46105"": ""85.94"", ""38001"": ""10.36"", ""38085"": ""1.46"", ""46031"": ""1.25"", ""38037"": ""0.99""}","Perkins|Adams|Sioux|Corson|Grant","46105|38001|38085|46031|38037","FALSE","FALSE","America/Denver"
-"57639","45.70362","-100.7718","Little Eagle","SD","South Dakota","TRUE","","383","7.2","46031","Corson","{""46031"": ""100""}","Corson","46031","FALSE","FALSE","America/Denver"
-"57640","45.7802","-102.72035","Lodgepole","SD","South Dakota","TRUE","","182","0.2","46105","Perkins","{""46105"": ""100""}","Perkins","46105","FALSE","FALSE","America/Denver"
-"57641","45.87398","-101.32176","McIntosh","SD","South Dakota","TRUE","","357","0.4","46031","Corson","{""46031"": ""92.2"", ""38085"": ""7.8""}","Corson|Sioux","46031|38085","FALSE","FALSE","America/Denver"
-"57642","45.81092","-100.74303","McLaughlin","SD","South Dakota","TRUE","","1949","1.3","46031","Corson","{""46031"": ""98.12"", ""38085"": ""1.88""}","Corson|Sioux","46031|38085","FALSE","FALSE","America/Denver"
-"57644","45.44865","-102.05859","Meadow","SD","South Dakota","TRUE","","221","0.1","46105","Perkins","{""46105"": ""72.84"", ""46137"": ""18.51"", ""46031"": ""8.66""}","Perkins|Ziebach|Corson","46105|46137|46031","FALSE","FALSE","America/Denver"
-"57645","45.98433","-101.74271","Morristown","SD","South Dakota","TRUE","","158","0.2","46031","Corson","{""46031"": ""58.53"", ""38085"": ""23.5"", ""38037"": ""17.97""}","Corson|Sioux|Grant","46031|38085|38037","FALSE","FALSE","America/Denver"
-"57646","45.69014","-100.08379","Mound City","SD","South Dakota","TRUE","","252","0.7","46021","Campbell","{""46021"": ""100""}","Campbell","46021","FALSE","FALSE","America/Chicago"
-"57648","45.9106","-100.36469","Pollock","SD","South Dakota","TRUE","","302","0.9","46021","Campbell","{""46021"": ""95.52"", ""38029"": ""4.48""}","Campbell|Emmons","46021|38029","FALSE","FALSE","America/Chicago"
-"57649","45.51717","-102.86106","Prairie City","SD","South Dakota","TRUE","","295","0.2","46105","Perkins","{""46105"": ""81.11"", ""46063"": ""18.89""}","Perkins|Harding","46105|46063","FALSE","FALSE","America/Denver"
-"57650","45.8385","-103.02244","Ralph","SD","South Dakota","TRUE","","30","0.2","46063","Harding","{""46063"": ""100""}","Harding","46063","FALSE","FALSE","America/Denver"
-"57651","45.5094","-103.1002","Reva","SD","South Dakota","TRUE","","125","0.2","46063","Harding","{""46063"": ""100""}","Harding","46063","FALSE","FALSE","America/Denver"
-"57652","45.20262","-100.60482","Ridgeview","SD","South Dakota","TRUE","","475","0.4","46041","Dewey","{""46041"": ""100""}","Dewey","46041","FALSE","FALSE","America/Denver"
-"57656","45.38806","-101.07766","Timber Lake","SD","South Dakota","TRUE","","876","0.8","46041","Dewey","{""46041"": ""95.57"", ""46031"": ""4.43""}","Dewey|Corson","46041|46031","FALSE","FALSE","America/Denver"
-"57657","45.50669","-100.81216","Trail City","SD","South Dakota","TRUE","","229","0.3","46031","Corson","{""46031"": ""67"", ""46041"": ""33""}","Corson|Dewey","46031|46041","FALSE","FALSE","America/Denver"
-"57658","45.67891","-100.49452","Wakpala","SD","South Dakota","TRUE","","400","1.1","46031","Corson","{""46031"": ""100""}","Corson","46031","FALSE","FALSE","America/Denver"
-"57660","45.80335","-101.56816","Watauga","SD","South Dakota","TRUE","","94","0.1","46031","Corson","{""46031"": ""76.77"", ""38085"": ""13.13"", ""38037"": ""10.1""}","Corson|Sioux|Grant","46031|38085|38037","FALSE","FALSE","America/Denver"
-"57661","45.25675","-100.96018","Whitehorse","SD","South Dakota","TRUE","","113","2.1","46041","Dewey","{""46041"": ""100""}","Dewey","46041","FALSE","FALSE","America/Denver"
-"57701","44.14153","-103.20508","Rapid City","SD","South Dakota","TRUE","","45721","249.2","46103","Pennington","{""46103"": ""97.46"", ""46093"": ""2.54""}","Pennington|Meade","46103|46093","FALSE","FALSE","America/Denver"
-"57702","44.03379","-103.39048","Rapid City","SD","South Dakota","TRUE","","35058","46.4","46103","Pennington","{""46103"": ""98.6"", ""46093"": ""1.4""}","Pennington|Meade","46103|46093","FALSE","FALSE","America/Denver"
-"57703","44.00284","-103.04377","Rapid City","SD","South Dakota","TRUE","","17069","51.3","46103","Pennington","{""46103"": ""100""}","Pennington","46103","FALSE","FALSE","America/Denver"
-"57706","44.15719","-103.09356","Ellsworth Afb","SD","South Dakota","TRUE","","3035","182.2","46093","Meade","{""46093"": ""86.01"", ""46103"": ""13.99""}","Meade|Pennington","46093|46103","FALSE","FALSE","America/Denver"
-"57714","43.30254","-101.93317","Allen","SD","South Dakota","TRUE","","846","1.8","46007","Bennett","{""46007"": ""100""}","Bennett","46007","FALSE","FALSE","America/Denver"
-"57716","43.1085","-102.20056","Batesland","SD","South Dakota","TRUE","","520","1.1","46102","Oglala Lakota","{""46102"": 97.33, ""46007"": 2.67}","Oglala Lakota|Bennett","46102|46007","FALSE","FALSE","America/Denver"
-"57717","44.9518","-103.88836","Belle Fourche","SD","South Dakota","TRUE","","7825","2.4","46019","Butte","{""46019"": ""98.5"", ""56011"": ""0.87"", ""46081"": ""0.39"", ""46063"": ""0.24""}","Butte|Crook|Lawrence|Harding","46019|56011|46081|46063","FALSE","FALSE","America/Denver"
-"57718","44.17891","-103.3648","Black Hawk","SD","South Dakota","TRUE","","7198","122.8","46093","Meade","{""46093"": ""99.46"", ""46103"": ""0.54""}","Meade|Pennington","46093|46103","FALSE","FALSE","America/Denver"
-"57719","44.23334","-102.98161","Box Elder","SD","South Dakota","TRUE","","8167","19.1","46103","Pennington","{""46103"": ""86.12"", ""46093"": ""13.88""}","Pennington|Meade","46103|46093","FALSE","FALSE","America/Denver"
-"57720","45.56634","-103.61302","Buffalo","SD","South Dakota","TRUE","","734","0.2","46063","Harding","{""46063"": ""100""}","Harding","46063","FALSE","FALSE","America/Denver"
-"57722","43.46359","-102.93334","Buffalo Gap","SD","South Dakota","TRUE","","186","0.2","46102","Oglala Lakota","{""46102"": 62.25, ""46033"": 32.64, ""46047"": 5.11}","Oglala Lakota|Custer|Fall River","46102|46033|46047","FALSE","FALSE","America/Denver"
-"57724","45.64027","-104.02776","Camp Crook","SD","South Dakota","TRUE","","255","0.3","46063","Harding","{""46063"": ""83.81"", ""30011"": ""16.19""}","Harding|Carter","46063|30011","FALSE","FALSE","America/Denver"
-"57725","43.94008","-102.80947","Caputa","SD","South Dakota","TRUE","","296","1.0","46103","Pennington","{""46103"": ""100""}","Pennington","46103","FALSE","FALSE","America/Denver"
-"57730","43.71951","-103.6317","Custer","SD","South Dakota","TRUE","","5900","4.3","46033","Custer","{""46033"": ""97.4"", ""46103"": ""2.6""}","Custer|Pennington","46033|46103","FALSE","FALSE","America/Denver"
-"57732","44.24611","-103.65397","Deadwood","SD","South Dakota","TRUE","","2189","7.3","46081","Lawrence","{""46081"": ""100""}","Lawrence","46081","FALSE","FALSE","America/Denver"
-"57735","43.30066","-103.85448","Edgemont","SD","South Dakota","TRUE","","1192","0.5","46047","Fall River","{""46047"": ""82.89"", ""46033"": ""17.11""}","Fall River|Custer","46047|46033","FALSE","FALSE","America/Denver"
-"57738","43.65073","-103.12421","Fairburn","SD","South Dakota","TRUE","","121","0.3","46033","Custer","{""46033"": ""100""}","Custer","46033","FALSE","FALSE","America/Denver"
-"57741","44.40493","-103.46671","Fort Meade","SD","South Dakota","TRUE","","71","15.6","46093","Meade","{""46093"": ""100""}","Meade","46093","FALSE","FALSE","America/Denver"
-"57744","43.77402","-103.03646","Hermosa","SD","South Dakota","TRUE","","2265","1.7","46033","Custer","{""46033"": 69.02, ""46103"": 18.63, ""46102"": 12.35}","Custer|Pennington|Oglala Lakota","46033|46103|46102","FALSE","FALSE","America/Denver"
-"57745","44.02159","-103.77986","Hill City","SD","South Dakota","TRUE","","2270","2.4","46103","Pennington","{""46103"": ""100""}","Pennington","46103","FALSE","FALSE","America/Denver"
-"57747","43.38497","-103.52898","Hot Springs","SD","South Dakota","TRUE","","5856","5.1","46047","Fall River","{""46047"": ""91.82"", ""46033"": ""8.18""}","Fall River|Custer","46047|46033","FALSE","FALSE","America/Denver"
-"57748","44.58384","-102.02291","Howes","SD","South Dakota","TRUE","","358","0.4","46137","Ziebach","{""46137"": ""73.9"", ""46093"": ""26.1""}","Ziebach|Meade","46137|46093","FALSE","FALSE","America/Denver"
-"57750","43.59156","-101.95411","Interior","SD","South Dakota","TRUE","","135","0.2","46071","Jackson","{""46071"": ""100""}","Jackson","46071","FALSE","FALSE","America/Denver"
-"57751","43.85544","-103.38659","Keystone","SD","South Dakota","TRUE","","1075","6.1","46103","Pennington","{""46103"": ""98.82"", ""46033"": ""1.18""}","Pennington|Custer","46103|46033","FALSE","FALSE","America/Denver"
-"57752","43.46467","-102.19338","Kyle","SD","South Dakota","TRUE","","1864","1.7","46102","Oglala Lakota","{""46102"": 79.08, ""46071"": 18.52, ""46007"": 2.4}","Oglala Lakota|Jackson|Bennett","46102|46071|46007","FALSE","FALSE","America/Denver"
-"57754","44.263","-103.87125","Lead","SD","South Dakota","TRUE","","3653","6.0","46081","Lawrence","{""46081"": ""100""}","Lawrence","46081","FALSE","FALSE","America/Denver"
-"57755","45.83664","-103.34919","Ludlow","SD","South Dakota","TRUE","","95","0.2","46063","Harding","{""46063"": ""100""}","Harding","46063","FALSE","FALSE","America/Denver"
-"57756","43.23568","-102.49781","Manderson","SD","South Dakota","TRUE","","568","1.7","46102","Oglala Lakota","{""46102"": 100}","Oglala Lakota","46102","FALSE","FALSE","America/Denver"
-"57758","44.97064","-102.69678","Mud Butte","SD","South Dakota","TRUE","","79","0.1","46093","Meade","{""46093"": ""89.5"", ""46105"": ""10.5""}","Meade|Perkins","46093|46105","FALSE","FALSE","America/Denver"
-"57759","44.22399","-103.55987","Nemo","SD","South Dakota","TRUE","","597","4.0","46081","Lawrence","{""46081"": ""100""}","Lawrence","46081","FALSE","FALSE","America/Denver"
-"57760","44.97606","-103.2548","Newell","SD","South Dakota","TRUE","","1439","0.5","46019","Butte","{""46019"": ""98"", ""46063"": ""2""}","Butte|Harding","46019|46063","FALSE","FALSE","America/Denver"
-"57761","44.22941","-102.73762","New Underwood","SD","South Dakota","TRUE","","1589","1.1","46103","Pennington","{""46103"": ""80.83"", ""46093"": ""19.17""}","Pennington|Meade","46103|46093","FALSE","FALSE","America/Denver"
-"57762","44.75323","-103.61064","Nisland","SD","South Dakota","TRUE","","526","1.9","46019","Butte","{""46019"": ""100""}","Butte","46019","FALSE","FALSE","America/Denver"
-"57763","43.11474","-103.25651","Oelrichs","SD","South Dakota","TRUE","","304","0.3","46047","Fall River","{""46047"": ""100""}","Fall River","46047","FALSE","FALSE","America/Denver"
-"57764","43.18657","-102.83334","Oglala","SD","South Dakota","TRUE","","2318","2.5","46102","Oglala Lakota","{""46102"": 100}","Oglala Lakota","46102","FALSE","FALSE","America/Denver"
-"57766","43.39823","-103.20234","Oral","SD","South Dakota","TRUE","","133","0.4","46047","Fall River","{""46047"": ""100""}","Fall River","46047","FALSE","FALSE","America/Denver"
-"57767","44.13481","-102.57973","Owanka","SD","South Dakota","TRUE","","122","0.3","46103","Pennington","{""46103"": ""65.77"", ""46093"": ""34.23""}","Pennington|Meade","46103|46093","FALSE","FALSE","America/Denver"
-"57769","44.24855","-103.30207","Piedmont","SD","South Dakota","TRUE","","4387","13.4","46093","Meade","{""46093"": ""100""}","Meade","46093","FALSE","FALSE","America/Denver"
-"57770","43.07025","-102.58986","Pine Ridge","SD","South Dakota","TRUE","","6248","12.1","46102","Oglala Lakota","{""46102"": 100}","Oglala Lakota","46102","FALSE","FALSE","America/Denver"
-"57772","43.50735","-102.52564","Porcupine","SD","South Dakota","TRUE","","2345","1.8","46102","Oglala Lakota","{""46102"": 100}","Oglala Lakota","46102","FALSE","FALSE","America/Denver"
-"57773","43.59211","-103.56817","Pringle","SD","South Dakota","TRUE","","188","6.5","46033","Custer","{""46033"": ""100""}","Custer","46033","FALSE","FALSE","America/Denver"
-"57775","44.10347","-102.01598","Quinn","SD","South Dakota","TRUE","","356","0.4","46103","Pennington","{""46103"": ""68.26"", ""46055"": ""21.3"", ""46071"": ""10.43""}","Pennington|Haakon|Jackson","46103|46055|46071","FALSE","FALSE","America/Denver"
-"57776","45.26374","-103.49577","Redig","SD","South Dakota","TRUE","","0","0.0","46063","Harding","{""46063"": ""100""}","Harding","46063","FALSE","FALSE","America/Denver"
-"57779","44.56278","-103.75782","Saint Onge","SD","South Dakota","TRUE","","268","2.6","46081","Lawrence","{""46081"": ""100""}","Lawrence","46081","FALSE","FALSE","America/Denver"
-"57780","43.78208","-102.5036","Scenic","SD","South Dakota","TRUE","","40","0.0","46103","Pennington","{""46103"": ""100""}","Pennington","46103","FALSE","FALSE","America/Denver"
-"57782","43.30243","-103.11207","Smithwick","SD","South Dakota","TRUE","","38","0.1","46047","Fall River","{""46047"": ""100""}","Fall River","46047","FALSE","FALSE","America/Denver"
-"57783","44.45605","-103.92832","Spearfish","SD","South Dakota","TRUE","","15598","25.6","46081","Lawrence","{""46081"": ""99.86"", ""46019"": ""0.14""}","Lawrence|Butte","46081|46019","FALSE","FALSE","America/Denver"
-"57785","44.42539","-103.22842","Sturgis","SD","South Dakota","TRUE","","9031","5.8","46093","Meade","{""46093"": ""90.73"", ""46081"": ""9.27""}","Meade|Lawrence","46093|46081","FALSE","FALSE","America/Denver"
-"57787","44.68205","-102.65549","Union Center","SD","South Dakota","TRUE","","351","0.2","46093","Meade","{""46093"": ""100""}","Meade","46093","FALSE","FALSE","America/Denver"
-"57788","44.6297","-103.19406","Vale","SD","South Dakota","TRUE","","422","0.8","46019","Butte","{""46019"": ""65.15"", ""46093"": ""34.85""}","Butte|Meade","46019|46093","FALSE","FALSE","America/Denver"
-"57790","44.08293","-102.21554","Wall","SD","South Dakota","TRUE","","1124","0.6","46103","Pennington","{""46103"": ""100""}","Pennington","46103","FALSE","FALSE","America/Denver"
-"57791","44.22501","-102.43111","Wasta","SD","South Dakota","TRUE","","257","0.5","46103","Pennington","{""46103"": ""57.89"", ""46093"": ""42.11""}","Pennington|Meade","46103|46093","FALSE","FALSE","America/Denver"
-"57792","44.53919","-102.41636","White Owl","SD","South Dakota","TRUE","","140","0.2","46093","Meade","{""46093"": ""100""}","Meade","46093","FALSE","FALSE","America/Denver"
-"57793","44.52048","-103.58514","Whitewood","SD","South Dakota","TRUE","","2401","6.3","46081","Lawrence","{""46081"": ""84.47"", ""46093"": ""13.96"", ""46019"": ""1.57""}","Lawrence|Meade|Butte","46081|46093|46019","FALSE","FALSE","America/Denver"
-"57794","43.12403","-102.39483","Wounded Knee","SD","South Dakota","TRUE","","470","3.6","46102","Oglala Lakota","{""46102"": 100}","Oglala Lakota","46102","FALSE","FALSE","America/Denver"
-"57799","44.49871","-103.87245","Spearfish","SD","South Dakota","TRUE","","688","1912.9","46081","Lawrence","{""46081"": ""100""}","Lawrence","46081","FALSE","FALSE","America/Denver"
-"58001","46.44503","-96.72069","Abercrombie","ND","North Dakota","TRUE","","35","56.0","38077","Richland","{""38077"": ""100""}","Richland","38077","FALSE","FALSE","America/Chicago"
-"58002","46.97633","-97.40689","Absaraka","ND","North Dakota","TRUE","","32","3.5","38017","Cass","{""38017"": ""100""}","Cass","38017","FALSE","FALSE","America/Chicago"
-"58004","47.02568","-97.26258","Amenia","ND","North Dakota","TRUE","","290","2.0","38017","Cass","{""38017"": ""100""}","Cass","38017","FALSE","FALSE","America/Chicago"
-"58005","47.05288","-96.95089","Argusville","ND","North Dakota","TRUE","","992","3.8","38017","Cass","{""38017"": ""100""}","Cass","38017","FALSE","FALSE","America/Chicago"
-"58006","47.10153","-97.20979","Arthur","ND","North Dakota","TRUE","","433","2.7","38017","Cass","{""38017"": ""100""}","Cass","38017","FALSE","FALSE","America/Chicago"
-"58007","47.02438","-97.46867","Ayr","ND","North Dakota","TRUE","","86","0.7","38017","Cass","{""38017"": ""100""}","Cass","38017","FALSE","FALSE","America/Chicago"
-"58008","46.30931","-97.00055","Barney","ND","North Dakota","TRUE","","219","1.5","38077","Richland","{""38077"": ""100""}","Richland","38077","FALSE","FALSE","America/Chicago"
-"58009","47.32765","-97.24662","Blanchard","ND","North Dakota","TRUE","","32","0.3","38097","Traill","{""38097"": ""100""}","Traill","38097","FALSE","FALSE","America/Chicago"
-"58011","46.91871","-97.54214","Buffalo","ND","North Dakota","TRUE","","400","1.4","38017","Cass","{""38017"": ""100""}","Cass","38017","FALSE","FALSE","America/Chicago"
-"58012","46.93887","-97.16924","Casselton","ND","North Dakota","TRUE","","2983","17.1","38017","Cass","{""38017"": ""100""}","Cass","38017","FALSE","FALSE","America/Chicago"
-"58013","46.06134","-97.36279","Cayuga","ND","North Dakota","TRUE","","157","0.8","38081","Sargent","{""38081"": ""100""}","Sargent","38081","FALSE","FALSE","America/Chicago"
-"58015","46.59527","-96.81651","Christine","ND","North Dakota","TRUE","","282","5.6","38077","Richland","{""38077"": ""100""}","Richland","38077","FALSE","FALSE","America/Chicago"
-"58016","47.36709","-97.46169","Clifford","ND","North Dakota","TRUE","","238","1.3","38097","Traill","{""38097"": ""71.35"", ""38091"": ""28.65""}","Traill|Steele","38097|38091","FALSE","FALSE","America/Chicago"
-"58017","46.0411","-97.84257","Cogswell","ND","North Dakota","TRUE","","268","0.5","38081","Sargent","{""38081"": ""100""}","Sargent","38081","FALSE","FALSE","America/Chicago"
-"58018","46.436","-96.89646","Colfax","ND","North Dakota","TRUE","","416","2.2","38077","Richland","{""38077"": ""100""}","Richland","38077","FALSE","FALSE","America/Chicago"
-"58021","46.73761","-97.08518","Davenport","ND","North Dakota","TRUE","","506","3.0","38017","Cass","{""38017"": ""100""}","Cass","38017","FALSE","FALSE","America/Chicago"
-"58027","46.63342","-97.61152","Enderlin","ND","North Dakota","TRUE","","1321","2.8","38073","Ransom","{""38073"": ""79.51"", ""38017"": ""15.89"", ""38003"": ""4.6""}","Ransom|Cass|Barnes","38073|38017|38003","FALSE","FALSE","America/Chicago"
-"58029","47.11674","-97.40006","Erie","ND","North Dakota","TRUE","","59","0.5","38017","Cass","{""38017"": ""100""}","Cass","38017","FALSE","FALSE","America/Chicago"
-"58030","46.03005","-96.67008","Fairmount","ND","North Dakota","TRUE","","604","1.8","38077","Richland","{""38077"": ""100""}","Richland","38077","FALSE","FALSE","America/Chicago"
-"58031","46.76302","-97.68077","Fingal","ND","North Dakota","TRUE","","457","1.1","38003","Barnes","{""38003"": ""54.35"", ""38017"": ""45.65""}","Barnes|Cass","38003|38017","FALSE","FALSE","America/Chicago"
-"58032","46.07633","-97.64174","Forman","ND","North Dakota","TRUE","","670","2.5","38081","Sargent","{""38081"": ""100""}","Sargent","38081","FALSE","FALSE","America/Chicago"
-"58033","46.43678","-97.92796","Fort Ransom","ND","North Dakota","TRUE","","454","1.3","38073","Ransom","{""38073"": ""100""}","Ransom","38073","FALSE","FALSE","America/Chicago"
-"58035","47.25455","-97.41995","Galesburg","ND","North Dakota","TRUE","","247","1.0","38097","Traill","{""38097"": ""76.72"", ""38017"": ""12.21"", ""38091"": ""11.07""}","Traill|Cass|Steele","38097|38017|38091","FALSE","FALSE","America/Chicago"
-"58036","47.15557","-96.94807","Gardner","ND","North Dakota","TRUE","","237","1.2","38017","Cass","{""38017"": ""100""}","Cass","38017","FALSE","FALSE","America/Chicago"
-"58038","47.24508","-96.99583","Grandin","ND","North Dakota","TRUE","","321","1.4","38017","Cass","{""38017"": ""72.59"", ""38097"": ""27.41""}","Cass|Traill","38017|38097","FALSE","FALSE","America/Chicago"
-"58040","46.21453","-97.76732","Gwinner","ND","North Dakota","TRUE","","1160","5.6","38081","Sargent","{""38081"": ""100""}","Sargent","38081","FALSE","FALSE","America/Chicago"
-"58041","46.04969","-96.9145","Hankinson","ND","North Dakota","TRUE","","1514","2.9","38077","Richland","{""38077"": ""100""}","Richland","38077","FALSE","FALSE","America/Chicago"
-"58042","46.97095","-96.95486","Harwood","ND","North Dakota","TRUE","","1366","12.3","38017","Cass","{""38017"": ""100""}","Cass","38017","FALSE","FALSE","America/Chicago"
-"58043","45.97677","-97.541","Havana","ND","North Dakota","TRUE","","159","1.1","38081","Sargent","{""38081"": ""100""}","Sargent","38081","FALSE","FALSE","America/Chicago"
-"58045","47.38296","-97.02403","Hillsboro","ND","North Dakota","TRUE","","2045","3.9","38097","Traill","{""38097"": ""100""}","Traill","38097","FALSE","FALSE","America/Chicago"
-"58046","47.32652","-97.72644","Hope","ND","North Dakota","TRUE","","499","0.8","38091","Steele","{""38091"": ""93.48"", ""38003"": ""4.63"", ""38017"": ""1.89""}","Steele|Barnes|Cass","38091|38003|38017","FALSE","FALSE","America/Chicago"
-"58047","46.71743","-96.88025","Horace","ND","North Dakota","TRUE","","4163","23.0","38017","Cass","{""38017"": ""99.66"", ""38077"": ""0.34""}","Cass|Richland","38017|38077","FALSE","FALSE","America/Chicago"
-"58048","47.19831","-97.22007","Hunter","ND","North Dakota","TRUE","","475","1.7","38017","Cass","{""38017"": ""91.87"", ""38097"": ""8.13""}","Cass|Traill","38017|38097","FALSE","FALSE","America/Chicago"
-"58049","46.65532","-97.99855","Kathryn","ND","North Dakota","TRUE","","296","0.9","38003","Barnes","{""38003"": ""71.28"", ""38073"": ""19.38"", ""38045"": ""9.34""}","Barnes|Ransom|LaMoure","38003|38073|38045","FALSE","FALSE","America/Chicago"
-"58051","46.6414","-97.03054","Kindred","ND","North Dakota","TRUE","","1875","6.6","38017","Cass","{""38017"": ""80.8"", ""38077"": ""19.2""}","Cass|Richland","38017|38077","FALSE","FALSE","America/Chicago"
-"58052","46.63502","-97.27877","Leonard","ND","North Dakota","TRUE","","571","1.5","38017","Cass","{""38017"": ""78.31"", ""38077"": ""18.76"", ""38073"": ""2.93""}","Cass|Richland|Ransom","38017|38077|38073","FALSE","FALSE","America/Chicago"
-"58053","46.06393","-97.17997","Lidgerwood","ND","North Dakota","TRUE","","1154","2.0","38077","Richland","{""38077"": ""90.86"", ""38081"": ""9.14""}","Richland|Sargent","38077|38081","FALSE","FALSE","America/Chicago"
-"58054","46.42531","-97.66952","Lisbon","ND","North Dakota","TRUE","","2938","3.9","38073","Ransom","{""38073"": ""100""}","Ransom","38073","FALSE","FALSE","America/Chicago"
-"58056","47.23187","-97.93131","Luverne","ND","North Dakota","TRUE","","140","0.6","38091","Steele","{""38091"": ""47.12"", ""38003"": ""43.98"", ""38039"": ""8.9""}","Steele|Barnes|Griggs","38091|38003|38039","FALSE","FALSE","America/Chicago"
-"58057","46.42444","-97.25723","Mcleod","ND","North Dakota","TRUE","","113","0.5","38077","Richland","{""38077"": ""56.46"", ""38073"": ""43.54""}","Richland|Ransom","38077|38073","FALSE","FALSE","America/Chicago"
-"58058","46.18256","-96.96339","Mantador","ND","North Dakota","TRUE","","96","2.0","38077","Richland","{""38077"": ""100""}","Richland","38077","FALSE","FALSE","America/Chicago"
-"58059","46.84414","-97.11661","Mapleton","ND","North Dakota","TRUE","","1471","4.6","38017","Cass","{""38017"": ""100""}","Cass","38017","FALSE","FALSE","America/Chicago"
-"58060","46.26494","-97.43421","Milnor","ND","North Dakota","TRUE","","1244","2.0","38081","Sargent","{""38081"": ""77.73"", ""38073"": ""22.27""}","Sargent|Ransom","38081|38073","FALSE","FALSE","America/Chicago"
-"58061","46.27908","-96.89756","Mooreton","ND","North Dakota","TRUE","","331","2.1","38077","Richland","{""38077"": ""100""}","Richland","38077","FALSE","FALSE","America/Chicago"
-"58062","46.63602","-97.8284","Nome","ND","North Dakota","TRUE","","160","1.1","38003","Barnes","{""38003"": ""72.99"", ""38073"": ""27.01""}","Barnes|Ransom","38003|38073","FALSE","FALSE","America/Chicago"
-"58063","46.96547","-97.80407","Oriska","ND","North Dakota","TRUE","","394","1.2","38003","Barnes","{""38003"": ""100""}","Barnes","38003","FALSE","FALSE","America/Chicago"
-"58064","47.15065","-97.61585","Page","ND","North Dakota","TRUE","","522","1.3","38017","Cass","{""38017"": ""92.22"", ""38003"": ""4.22"", ""38091"": ""3.56""}","Cass|Barnes|Steele","38017|38003|38091","FALSE","FALSE","America/Chicago"
-"58065","47.18618","-97.76043","Pillsbury","ND","North Dakota","TRUE","","45","0.8","38003","Barnes","{""38003"": ""100""}","Barnes","38003","FALSE","FALSE","America/Chicago"
-"58067","46.06474","-97.48782","Rutland","ND","North Dakota","TRUE","","217","1.5","38081","Sargent","{""38081"": ""100""}","Sargent","38081","FALSE","FALSE","America/Chicago"
-"58068","46.54299","-97.40464","Sheldon","ND","North Dakota","TRUE","","375","1.3","38073","Ransom","{""38073"": ""100""}","Ransom","38073","FALSE","FALSE","America/Chicago"
-"58069","46.25185","-97.83256","Stirum","ND","North Dakota","TRUE","","87","0.6","38081","Sargent","{""38081"": ""94.89"", ""38073"": ""5.11""}","Sargent|Ransom","38081|38073","FALSE","FALSE","America/Chicago"
-"58071","46.95518","-97.67832","Tower City","ND","North Dakota","TRUE","","460","1.7","38017","Cass","{""38017"": ""82.64"", ""38003"": ""17.36""}","Cass|Barnes","38017|38003","FALSE","FALSE","America/Chicago"
-"58072","46.92569","-98.00688","Valley City","ND","North Dakota","TRUE","","7711","9.4","38003","Barnes","{""38003"": ""100""}","Barnes","38003","FALSE","FALSE","America/Chicago"
-"58075","46.27439","-96.72615","Wahpeton","ND","North Dakota","TRUE","","9255","14.3","38077","Richland","{""38077"": ""100""}","Richland","38077","FALSE","FALSE","America/Chicago"
-"58076","46.27285","-96.60753","Wahpeton","ND","North Dakota","TRUE","","329","3406.8","38077","Richland","{""38077"": ""100""}","Richland","38077","FALSE","FALSE","America/Chicago"
-"58077","46.52482","-96.97509","Walcott","ND","North Dakota","TRUE","","814","2.2","38077","Richland","{""38077"": ""100""}","Richland","38077","FALSE","FALSE","America/Chicago"
-"58078","46.86303","-96.93126","West Fargo","ND","North Dakota","TRUE","","36020","354.2","38017","Cass","{""38017"": ""100""}","Cass","38017","FALSE","FALSE","America/Chicago"
-"58079","46.86671","-97.34533","Wheatland","ND","North Dakota","TRUE","","484","1.4","38017","Cass","{""38017"": ""100""}","Cass","38017","FALSE","FALSE","America/Chicago"
-"58081","46.31072","-97.14137","Wyndmere","ND","North Dakota","TRUE","","811","1.9","38077","Richland","{""38077"": ""100""}","Richland","38077","FALSE","FALSE","America/Chicago"
-"58102","46.9209","-96.83183","Fargo","ND","North Dakota","TRUE","","29621","366.1","38017","Cass","{""38017"": ""100""}","Cass","38017","FALSE","FALSE","America/Chicago"
-"58103","46.85617","-96.82207","Fargo","ND","North Dakota","TRUE","","48328","1652.0","38017","Cass","{""38017"": ""100""}","Cass","38017","FALSE","FALSE","America/Chicago"
-"58104","46.79325","-96.83971","Fargo","ND","North Dakota","TRUE","","43363","584.2","38017","Cass","{""38017"": ""100""}","Cass","38017","FALSE","FALSE","America/Chicago"
-"58105","46.89543","-96.80774","Fargo","ND","North Dakota","TRUE","","2264","1525.4","38017","Cass","{""38017"": ""100""}","Cass","38017","FALSE","FALSE","America/Chicago"
-"58201","47.87121","-97.14106","Grand Forks","ND","North Dakota","TRUE","","40643","222.1","38035","Grand Forks","{""38035"": ""100""}","Grand Forks","38035","FALSE","FALSE","America/Chicago"
-"58202","47.92151","-97.07356","Grand Forks","ND","North Dakota","TRUE","","1719","4035.6","38035","Grand Forks","{""38035"": ""100""}","Grand Forks","38035","FALSE","FALSE","America/Chicago"
-"58203","47.97217","-97.15496","Grand Forks","ND","North Dakota","TRUE","","16190","92.2","38035","Grand Forks","{""38035"": ""100""}","Grand Forks","38035","FALSE","FALSE","America/Chicago"
-"58204","47.95497","-97.38681","Grand Forks Afb","ND","North Dakota","TRUE","","2358","118.3","38035","Grand Forks","{""38035"": ""100""}","Grand Forks","38035","FALSE","FALSE","America/Chicago"
-"58205","47.95147","-97.37898","Grand Forks Afb","ND","North Dakota","TRUE","","325","778.4","38035","Grand Forks","{""38035"": ""100""}","Grand Forks","38035","FALSE","FALSE","America/Chicago"
-"58210","48.40897","-98.10711","Adams","ND","North Dakota","TRUE","","319","0.8","38099","Walsh","{""38099"": ""100""}","Walsh","38099","FALSE","FALSE","America/Chicago"
-"58212","47.70512","-97.99942","Aneta","ND","North Dakota","TRUE","","510","1.0","38063","Nelson","{""38063"": ""70.89"", ""38039"": ""21.52"", ""38035"": ""4.01"", ""38091"": ""3.59""}","Nelson|Griggs|Grand Forks|Steele","38063|38039|38035|38091","FALSE","FALSE","America/Chicago"
-"58214","47.92461","-97.49967","Arvilla","ND","North Dakota","TRUE","","319","1.8","38035","Grand Forks","{""38035"": ""100""}","Grand Forks","38035","FALSE","FALSE","America/Chicago"
-"58216","48.88188","-97.43451","Bathgate","ND","North Dakota","TRUE","","158","0.9","38067","Pembina","{""38067"": ""100""}","Pembina","38067","FALSE","FALSE","America/Chicago"
-"58218","47.59477","-97.04589","Buxton","ND","North Dakota","TRUE","","906","2.8","38097","Traill","{""38097"": ""100""}","Traill","38097","FALSE","FALSE","America/Chicago"
-"58219","47.47763","-96.87908","Caledonia","ND","North Dakota","TRUE","","23","1.7","38097","Traill","{""38097"": ""100""}","Traill","38097","FALSE","FALSE","America/Chicago"
-"58220","48.79354","-97.71425","Cavalier","ND","North Dakota","TRUE","","1975","4.4","38067","Pembina","{""38067"": ""100""}","Pembina","38067","FALSE","FALSE","America/Chicago"
-"58222","48.61521","-97.68156","Crystal","ND","North Dakota","TRUE","","282","1.3","38067","Pembina","{""38067"": ""100""}","Pembina","38067","FALSE","FALSE","America/Chicago"
-"58223","47.50869","-97.03444","Cummings","ND","North Dakota","TRUE","","183","1.0","38097","Traill","{""38097"": ""100""}","Traill","38097","FALSE","FALSE","America/Chicago"
-"58224","48.17233","-97.94363","Dahlen","ND","North Dakota","TRUE","","39","1.3","38063","Nelson","{""38063"": ""100""}","Nelson","38063","FALSE","FALSE","America/Chicago"
-"58225","48.61036","-97.21566","Drayton","ND","North Dakota","TRUE","","956","1.6","38067","Pembina","{""38067"": ""84.98"", ""38099"": ""8.71"", ""27069"": ""6.31""}","Pembina|Walsh|Kittson","38067|38099|27069","FALSE","FALSE","America/Chicago"
-"58227","48.54507","-97.90323","Edinburg","ND","North Dakota","TRUE","","502","1.8","38099","Walsh","{""38099"": ""72.42"", ""38067"": ""25.6"", ""38019"": ""1.98""}","Walsh|Pembina|Cavalier","38099|38067|38019","FALSE","FALSE","America/Chicago"
-"58228","47.87866","-97.35236","Emerado","ND","North Dakota","TRUE","","869","3.2","38035","Grand Forks","{""38035"": ""100""}","Grand Forks","38035","FALSE","FALSE","America/Chicago"
-"58229","48.49867","-98.24331","Fairdale","ND","North Dakota","TRUE","","79","0.4","38099","Walsh","{""38099"": ""81.58"", ""38019"": ""13.16"", ""38071"": ""5.26""}","Walsh|Cavalier|Ramsey","38099|38019|38071","FALSE","FALSE","America/Chicago"
-"58230","47.48413","-97.83358","Finley","ND","North Dakota","TRUE","","585","1.4","38091","Steele","{""38091"": ""100""}","Steele","38091","FALSE","FALSE","America/Chicago"
-"58231","48.20015","-97.82625","Fordville","ND","North Dakota","TRUE","","329","1.0","38099","Walsh","{""38099"": ""67.76"", ""38035"": ""32.24""}","Walsh|Grand Forks","38099|38035","FALSE","FALSE","America/Chicago"
-"58233","48.22616","-97.52578","Forest River","ND","North Dakota","TRUE","","262","1.4","38099","Walsh","{""38099"": ""92.93"", ""38035"": ""7.07""}","Walsh|Grand Forks","38099|38035","FALSE","FALSE","America/Chicago"
-"58235","48.09901","-97.47478","Gilby","ND","North Dakota","TRUE","","453","2.0","38035","Grand Forks","{""38035"": ""100""}","Grand Forks","38035","FALSE","FALSE","America/Chicago"
-"58237","48.41406","-97.40542","Grafton","ND","North Dakota","TRUE","","5318","8.4","38099","Walsh","{""38099"": ""100""}","Walsh","38099","FALSE","FALSE","America/Chicago"
-"58238","48.78088","-97.39878","Hamilton","ND","North Dakota","TRUE","","196","0.8","38067","Pembina","{""38067"": ""100""}","Pembina","38067","FALSE","FALSE","America/Chicago"
-"58239","48.94042","-98.70665","Hannah","ND","North Dakota","TRUE","","12","0.1","38019","Cavalier","{""38019"": ""100""}","Cavalier","38019","FALSE","FALSE","America/Chicago"
-"58240","47.63421","-97.48282","Hatton","ND","North Dakota","TRUE","","1211","3.1","38097","Traill","{""38097"": ""76.72"", ""38091"": ""14.26"", ""38035"": ""9.01""}","Traill|Steele|Grand Forks","38097|38091|38035","FALSE","FALSE","America/Chicago"
-"58241","48.69843","-97.67743","Hensel","ND","North Dakota","TRUE","","158","1.2","38067","Pembina","{""38067"": ""100""}","Pembina","38067","FALSE","FALSE","America/Chicago"
-"58243","48.51272","-97.68092","Hoople","ND","North Dakota","TRUE","","665","2.9","38099","Walsh","{""38099"": ""95.18"", ""38067"": ""4.82""}","Walsh|Pembina","38099|38067","FALSE","FALSE","America/Chicago"
-"58244","48.14307","-97.61472","Inkster","ND","North Dakota","TRUE","","101","0.7","38035","Grand Forks","{""38035"": ""100""}","Grand Forks","38035","FALSE","FALSE","America/Chicago"
-"58249","48.82348","-98.32857","Langdon","ND","North Dakota","TRUE","","2525","2.4","38019","Cavalier","{""38019"": ""100""}","Cavalier","38019","FALSE","FALSE","America/Chicago"
-"58250","48.27871","-98.0078","Lankin","ND","North Dakota","TRUE","","185","0.8","38099","Walsh","{""38099"": ""100""}","Walsh","38099","FALSE","FALSE","America/Chicago"
-"58251","47.94938","-97.69121","Larimore","ND","North Dakota","TRUE","","1972","3.9","38035","Grand Forks","{""38035"": ""100""}","Grand Forks","38035","FALSE","FALSE","America/Chicago"
-"58254","47.77265","-98.14239","Mcville","ND","North Dakota","TRUE","","535","2.0","38063","Nelson","{""38063"": ""100""}","Nelson","38063","FALSE","FALSE","America/Chicago"
-"58256","48.0905","-97.20738","Manvel","ND","North Dakota","TRUE","","817","3.5","38035","Grand Forks","{""38035"": ""100""}","Grand Forks","38035","FALSE","FALSE","America/Chicago"
-"58257","47.49739","-97.28184","Mayville","ND","North Dakota","TRUE","","2126","6.8","38097","Traill","{""38097"": ""100""}","Traill","38097","FALSE","FALSE","America/Chicago"
-"58258","48.01992","-97.34087","Mekinock","ND","North Dakota","TRUE","","335","3.0","38035","Grand Forks","{""38035"": ""100""}","Grand Forks","38035","FALSE","FALSE","America/Chicago"
-"58259","48.0237","-98.1244","Michigan","ND","North Dakota","TRUE","","361","0.8","38063","Nelson","{""38063"": ""100""}","Nelson","38063","FALSE","FALSE","America/Chicago"
-"58260","48.63512","-98.03472","Milton","ND","North Dakota","TRUE","","179","0.5","38019","Cavalier","{""38019"": ""100""}","Cavalier","38019","FALSE","FALSE","America/Chicago"
-"58261","48.23978","-97.31189","Minto","ND","North Dakota","TRUE","","1134","3.1","38099","Walsh","{""38099"": ""93.79"", ""38035"": ""6.21""}","Walsh|Grand Forks","38099|38035","FALSE","FALSE","America/Chicago"
-"58262","48.68223","-97.87632","Mountain","ND","North Dakota","TRUE","","102","2.2","38067","Pembina","{""38067"": ""100""}","Pembina","38067","FALSE","FALSE","America/Chicago"
-"58265","48.95104","-97.60765","Neche","ND","North Dakota","TRUE","","480","2.1","38067","Pembina","{""38067"": ""100""}","Pembina","38067","FALSE","FALSE","America/Chicago"
-"58266","48.00321","-97.8486","Niagara","ND","North Dakota","TRUE","","208","0.7","38035","Grand Forks","{""38035"": ""87.68"", ""38063"": ""12.32""}","Grand Forks|Nelson","38035|38063","FALSE","FALSE","America/Chicago"
-"58267","47.7539","-97.63507","Northwood","ND","North Dakota","TRUE","","1320","2.2","38035","Grand Forks","{""38035"": ""98.22"", ""38091"": ""1.78""}","Grand Forks|Steele","38035|38091","FALSE","FALSE","America/Chicago"
-"58269","48.6932","-98.16746","Osnabrock","ND","North Dakota","TRUE","","250","1.2","38019","Cavalier","{""38019"": ""100""}","Cavalier","38019","FALSE","FALSE","America/Chicago"
-"58270","48.39438","-97.7837","Park River","ND","North Dakota","TRUE","","1866","5.1","38099","Walsh","{""38099"": ""100""}","Walsh","38099","FALSE","FALSE","America/Chicago"
-"58271","48.91108","-97.29409","Pembina","ND","North Dakota","TRUE","","557","2.1","38067","Pembina","{""38067"": ""100""}","Pembina","38067","FALSE","FALSE","America/Chicago"
-"58272","48.01703","-97.98127","Petersburg","ND","North Dakota","TRUE","","276","0.9","38063","Nelson","{""38063"": ""100""}","Nelson","38063","FALSE","FALSE","America/Chicago"
-"58273","48.29608","-97.66853","Pisek","ND","North Dakota","TRUE","","229","1.4","38099","Walsh","{""38099"": ""100""}","Walsh","38099","FALSE","FALSE","America/Chicago"
-"58274","47.49304","-97.48753","Portland","ND","North Dakota","TRUE","","931","2.8","38097","Traill","{""38097"": ""86.78"", ""38091"": ""13.22""}","Traill|Steele","38097|38091","FALSE","FALSE","America/Chicago"
-"58275","47.68513","-97.11637","Reynolds","ND","North Dakota","TRUE","","748","2.8","38035","Grand Forks","{""38035"": ""56.07"", ""38097"": ""43.93""}","Grand Forks|Traill","38035|38097","FALSE","FALSE","America/Chicago"
-"58276","48.63081","-97.45133","Saint Thomas","ND","North Dakota","TRUE","","534","1.7","38067","Pembina","{""38067"": ""100""}","Pembina","38067","FALSE","FALSE","America/Chicago"
-"58277","47.60892","-97.83077","Sharon","ND","North Dakota","TRUE","","134","0.6","38091","Steele","{""38091"": ""100""}","Steele","38091","FALSE","FALSE","America/Chicago"
-"58278","47.77313","-97.12866","Thompson","ND","North Dakota","TRUE","","1982","6.2","38035","Grand Forks","{""38035"": ""100""}","Grand Forks","38035","FALSE","FALSE","America/Chicago"
-"58281","48.85821","-98.61018","Wales","ND","North Dakota","TRUE","","118","0.4","38019","Cavalier","{""38019"": ""100""}","Cavalier","38019","FALSE","FALSE","America/Chicago"
-"58282","48.90459","-97.94874","Walhalla","ND","North Dakota","TRUE","","1487","2.4","38067","Pembina","{""38067"": ""92.78"", ""38019"": ""7.22""}","Pembina|Cavalier","38067|38019","FALSE","FALSE","America/Chicago"
-"58301","48.13148","-98.87381","Devils Lake","ND","North Dakota","TRUE","","10381","16.6","38071","Ramsey","{""38071"": ""99.64"", ""38005"": ""0.36""}","Ramsey|Benson","38071|38005","FALSE","FALSE","America/Chicago"
-"58311","48.65243","-98.57949","Alsen","ND","North Dakota","TRUE","","62","0.2","38019","Cavalier","{""38019"": ""100""}","Cavalier","38019","FALSE","FALSE","America/Chicago"
-"58316","48.82808","-99.77376","Belcourt","ND","North Dakota","TRUE","","6885","22.5","38079","Rolette","{""38079"": ""100""}","Rolette","38079","FALSE","FALSE","America/Chicago"
-"58317","48.61861","-99.38178","Bisbee","ND","North Dakota","TRUE","","222","0.6","38095","Towner","{""38095"": ""100""}","Towner","38095","FALSE","FALSE","America/Chicago"
-"58318","48.85463","-100.41887","Bottineau","ND","North Dakota","TRUE","","3901","5.3","38009","Bottineau","{""38009"": ""100""}","Bottineau","38009","FALSE","FALSE","America/Chicago"
-"58321","48.20004","-98.33809","Brocket","ND","North Dakota","TRUE","","58","0.2","38071","Ramsey","{""38071"": ""65.84"", ""38099"": ""18.01"", ""38063"": ""16.15""}","Ramsey|Walsh|Nelson","38071|38099|38063","FALSE","FALSE","America/Chicago"
-"58323","48.85099","-98.88076","Calvin","ND","North Dakota","TRUE","","48","0.3","38019","Cavalier","{""38019"": ""100""}","Cavalier","38019","FALSE","FALSE","America/Chicago"
-"58324","48.48025","-99.22159","Cando","ND","North Dakota","TRUE","","1358","2.1","38095","Towner","{""38095"": ""100""}","Towner","38095","FALSE","FALSE","America/Chicago"
-"58325","48.28448","-99.15467","Churchs Ferry","ND","North Dakota","TRUE","","57","0.2","38071","Ramsey","{""38071"": ""52.17"", ""38005"": ""47.83""}","Ramsey|Benson","38071|38005","FALSE","FALSE","America/Chicago"
-"58327","48.09378","-98.58805","Crary","ND","North Dakota","TRUE","","381","0.9","38071","Ramsey","{""38071"": ""100""}","Ramsey","38071","FALSE","FALSE","America/Chicago"
-"58329","48.87323","-100.08087","Dunseith","ND","North Dakota","TRUE","","3340","5.6","38079","Rolette","{""38079"": ""97.74"", ""38009"": ""2.26""}","Rolette|Bottineau","38079|38009","FALSE","FALSE","America/Chicago"
-"58330","48.4467","-98.46952","Edmore","ND","North Dakota","TRUE","","276","0.6","38071","Ramsey","{""38071"": ""100""}","Ramsey","38071","FALSE","FALSE","America/Chicago"
-"58331","48.63737","-99.09431","Egeland","ND","North Dakota","TRUE","","92","0.3","38095","Towner","{""38095"": ""100""}","Towner","38095","FALSE","FALSE","America/Chicago"
-"58332","48.04184","-99.76173","Esmond","ND","North Dakota","TRUE","","316","0.6","38005","Benson","{""38005"": ""90.94"", ""38069"": ""9.06""}","Benson|Pierce","38005|38069","FALSE","FALSE","America/Chicago"
-"58335","47.98109","-99.02636","Fort Totten","ND","North Dakota","TRUE","","1892","24.9","38005","Benson","{""38005"": ""100""}","Benson","38005","FALSE","FALSE","America/Chicago"
-"58338","48.5344","-98.62028","Hampden","ND","North Dakota","TRUE","","58","0.3","38071","Ramsey","{""38071"": ""70.48"", ""38019"": ""29.52""}","Ramsey|Cavalier","38071|38019","FALSE","FALSE","America/Chicago"
-"58339","48.89582","-99.44561","Hansboro","ND","North Dakota","TRUE","","22","0.3","38095","Towner","{""38095"": ""100""}","Towner","38095","FALSE","FALSE","America/Chicago"
-"58341","47.77527","-99.85003","Harvey","ND","North Dakota","TRUE","","2625","2.2","38103","Wells","{""38103"": ""93.11"", ""38069"": ""6.2"", ""38005"": ""0.42"", ""38083"": ""0.27""}","Wells|Pierce|Benson|Sheridan","38103|38069|38005|38083","FALSE","FALSE","America/Chicago"
-"58343","48.29739","-99.72223","Knox","ND","North Dakota","TRUE","","60","0.4","38005","Benson","{""38005"": ""100""}","Benson","38005","FALSE","FALSE","America/Chicago"
-"58344","48.02425","-98.34367","Lakota","ND","North Dakota","TRUE","","914","1.7","38063","Nelson","{""38063"": ""97.91"", ""38071"": ""2.09""}","Nelson|Ramsey","38063|38071","FALSE","FALSE","America/Chicago"
-"58345","48.30539","-98.36947","Lawton","ND","North Dakota","TRUE","","140","0.4","38071","Ramsey","{""38071"": ""65.82"", ""38099"": ""34.18""}","Ramsey|Walsh","38071|38099","FALSE","FALSE","America/Chicago"
-"58346","48.28751","-99.42857","Leeds","ND","North Dakota","TRUE","","664","1.2","38005","Benson","{""38005"": ""97.85"", ""38095"": ""2.15""}","Benson|Towner","38005|38095","FALSE","FALSE","America/Chicago"
-"58348","47.96681","-99.52234","Maddock","ND","North Dakota","TRUE","","754","1.1","38005","Benson","{""38005"": ""96.7"", ""38103"": ""3.3""}","Benson|Wells","38005|38103","FALSE","FALSE","America/Chicago"
-"58351","48.09867","-99.27912","Minnewaukan","ND","North Dakota","TRUE","","451","1.0","38005","Benson","{""38005"": ""97.49"", ""38071"": ""2.51""}","Benson|Ramsey","38005|38071","FALSE","FALSE","America/Chicago"
-"58352","48.70751","-98.86932","Munich","ND","North Dakota","TRUE","","413","0.7","38019","Cavalier","{""38019"": ""94.02"", ""38095"": ""5.98""}","Cavalier|Towner","38019|38095","FALSE","FALSE","America/Chicago"
-"58353","48.63289","-99.59572","Mylo","ND","North Dakota","TRUE","","139","0.6","38079","Rolette","{""38079"": ""100""}","Rolette","38079","FALSE","FALSE","America/Chicago"
-"58355","48.59091","-98.36628","Nekoma","ND","North Dakota","TRUE","","79","0.7","38019","Cavalier","{""38019"": ""100""}","Cavalier","38019","FALSE","FALSE","America/Chicago"
-"58356","47.6733","-99.07125","New Rockford","ND","North Dakota","TRUE","","1695","2.3","38027","Eddy","{""38027"": ""96.4"", ""38103"": ""2.68"", ""38031"": ""0.91""}","Eddy|Wells|Foster","38027|38103|38031","FALSE","FALSE","America/Chicago"
-"58357","47.94117","-99.23268","Oberon","ND","North Dakota","TRUE","","342","1.1","38005","Benson","{""38005"": ""100""}","Benson","38005","FALSE","FALSE","America/Chicago"
-"58361","47.75733","-98.34619","Pekin","ND","North Dakota","TRUE","","239","0.7","38063","Nelson","{""38063"": ""100""}","Nelson","38063","FALSE","FALSE","America/Chicago"
-"58362","48.21439","-99.08929","Penn","ND","North Dakota","TRUE","","0","0.0","38071","Ramsey","{""38071"": ""100""}","Ramsey","38071","FALSE","FALSE","America/Chicago"
-"58363","48.75801","-99.45141","Perth","ND","North Dakota","TRUE","","125","0.8","38095","Towner","{""38095"": ""85.54"", ""38079"": ""14.46""}","Towner|Rolette","38095|38079","FALSE","FALSE","America/Chicago"
-"58365","48.85826","-99.2521","Rocklake","ND","North Dakota","TRUE","","222","0.3","38095","Towner","{""38095"": ""100""}","Towner","38095","FALSE","FALSE","America/Chicago"
-"58366","48.6587","-99.8712","Rolette","ND","North Dakota","TRUE","","1274","2.0","38079","Rolette","{""38079"": ""100""}","Rolette","38079","FALSE","FALSE","America/Chicago"
-"58367","48.86927","-99.58666","Rolla","ND","North Dakota","TRUE","","1718","5.2","38079","Rolette","{""38079"": ""99.3"", ""38095"": ""0.7""}","Rolette|Towner","38079|38095","FALSE","FALSE","America/Chicago"
-"58368","48.25641","-100.04448","Rugby","ND","North Dakota","TRUE","","3562","2.1","38069","Pierce","{""38069"": ""97.5"", ""38005"": ""1.63"", ""38049"": ""0.87""}","Pierce|Benson|McHenry","38069|38005|38049","FALSE","FALSE","America/Chicago"
-"58369","48.94814","-99.79911","Saint John","ND","North Dakota","TRUE","","1202","6.8","38079","Rolette","{""38079"": ""100""}","Rolette","38079","FALSE","FALSE","America/Chicago"
-"58370","47.98314","-98.84401","Saint Michael","ND","North Dakota","TRUE","","1372","10.3","38005","Benson","{""38005"": ""100""}","Benson","38005","FALSE","FALSE","America/Chicago"
-"58372","48.94534","-98.99627","Sarles","ND","North Dakota","TRUE","","121","0.4","38019","Cavalier","{""38019"": ""66.04"", ""38095"": ""33.96""}","Cavalier|Towner","38019|38095","FALSE","FALSE","America/Chicago"
-"58374","47.83247","-99.09495","Sheyenne","ND","North Dakota","TRUE","","640","0.9","38027","Eddy","{""38027"": ""52.66"", ""38005"": ""43.91"", ""38103"": ""3.44""}","Eddy|Benson|Wells","38027|38005|38103","FALSE","FALSE","America/Chicago"
-"58377","48.45843","-98.86283","Starkweather","ND","North Dakota","TRUE","","304","0.5","38071","Ramsey","{""38071"": ""82.93"", ""38095"": ""12.87"", ""38019"": ""4.19""}","Ramsey|Towner|Cavalier","38071|38095|38019","FALSE","FALSE","America/Chicago"
-"58379","47.90599","-98.84504","Tokio","ND","North Dakota","TRUE","","371","10.3","38005","Benson","{""38005"": ""100""}","Benson","38005","FALSE","FALSE","America/Chicago"
-"58380","47.83163","-98.51521","Tolna","ND","North Dakota","TRUE","","377","0.8","38063","Nelson","{""38063"": ""65.84"", ""38027"": ""31.22"", ""38005"": ""2.94""}","Nelson|Eddy|Benson","38063|38027|38005","FALSE","FALSE","America/Chicago"
-"58381","47.83267","-98.74062","Warwick","ND","North Dakota","TRUE","","319","0.8","38005","Benson","{""38005"": ""72.24"", ""38027"": ""27.76""}","Benson|Eddy","38005|38027","FALSE","FALSE","America/Chicago"
-"58382","48.31164","-98.78499","Webster","ND","North Dakota","TRUE","","157","0.5","38071","Ramsey","{""38071"": ""100""}","Ramsey","38071","FALSE","FALSE","America/Chicago"
-"58384","48.60286","-100.25675","Willow City","ND","North Dakota","TRUE","","394","0.4","38009","Bottineau","{""38009"": ""58.47"", ""38069"": ""17.3"", ""38049"": ""16.94"", ""38079"": ""7.29""}","Bottineau|Pierce|McHenry|Rolette","38009|38069|38049|38079","FALSE","FALSE","America/Chicago"
-"58385","48.47849","-99.66357","Wolford","ND","North Dakota","TRUE","","180","0.6","38069","Pierce","{""38069"": ""93.33"", ""38079"": ""6.67""}","Pierce|Rolette","38069|38079","FALSE","FALSE","America/Chicago"
-"58386","48.30899","-99.59652","York","ND","North Dakota","TRUE","","119","0.4","38005","Benson","{""38005"": ""81.34"", ""38069"": ""18.66""}","Benson|Pierce","38005|38069","FALSE","FALSE","America/Chicago"
-"58401","46.8825","-98.76392","Jamestown","ND","North Dakota","TRUE","","17153","15.7","38093","Stutsman","{""38093"": ""100""}","Stutsman","38093","FALSE","FALSE","America/Chicago"
-"58402","46.88035","-98.68714","Jamestown","ND","North Dakota","TRUE","","248","555.6","38093","Stutsman","{""38093"": ""100""}","Stutsman","38093","FALSE","FALSE","America/Chicago"
-"58405","46.91548","-98.69955","Jamestown","ND","North Dakota","TRUE","","436","3677.1","38093","Stutsman","{""38093"": ""100""}","Stutsman","38093","FALSE","FALSE","America/Chicago"
-"58413","46.0347","-99.30717","Ashley","ND","North Dakota","TRUE","","949","0.8","38051","McIntosh","{""38051"": ""96.7"", ""38021"": ""3.3""}","McIntosh|Dickey","38051|38021","FALSE","FALSE","America/Chicago"
-"58415","46.37119","-98.49156","Berlin","ND","North Dakota","TRUE","","201","1.3","38045","LaMoure","{""38045"": ""100""}","LaMoure","38045","FALSE","FALSE","America/Chicago"
-"58416","47.54152","-98.35019","Binford","ND","North Dakota","TRUE","","386","0.9","38039","Griggs","{""38039"": ""100""}","Griggs","38039","FALSE","FALSE","America/Chicago"
-"58418","47.42096","-99.64577","Bowdon","ND","North Dakota","TRUE","","352","0.6","38103","Wells","{""38103"": ""96.32"", ""38043"": ""3.68""}","Wells|Kidder","38103|38043","FALSE","FALSE","America/Chicago"
-"58420","47.06133","-98.86783","Buchanan","ND","North Dakota","TRUE","","311","0.7","38093","Stutsman","{""38093"": ""100""}","Stutsman","38093","FALSE","FALSE","America/Chicago"
-"58421","47.44199","-99.06885","Carrington","ND","North Dakota","TRUE","","2735","2.7","38031","Foster","{""38031"": ""98.28"", ""38093"": ""1.16"", ""38027"": ""0.32"", ""38103"": ""0.25""}","Foster|Stutsman|Eddy|Wells","38031|38093|38027|38103","FALSE","FALSE","America/Chicago"
-"58422","47.59801","-99.40331","Cathay","ND","North Dakota","TRUE","","165","0.4","38103","Wells","{""38103"": ""100""}","Wells","38103","FALSE","FALSE","America/Chicago"
-"58423","47.41106","-99.82589","Chaseley","ND","North Dakota","TRUE","","44","0.2","38103","Wells","{""38103"": ""85.9"", ""38043"": ""14.1""}","Wells|Kidder","38103|38043","FALSE","FALSE","America/Chicago"
-"58424","46.88852","-99.11094","Cleveland","ND","North Dakota","TRUE","","270","0.6","38093","Stutsman","{""38093"": ""100""}","Stutsman","38093","FALSE","FALSE","America/Chicago"
-"58425","47.45614","-98.1243","Cooperstown","ND","North Dakota","TRUE","","1426","2.6","38039","Griggs","{""38039"": ""100""}","Griggs","38039","FALSE","FALSE","America/Chicago"
-"58426","47.21919","-98.58679","Courtenay","ND","North Dakota","TRUE","","270","0.8","38093","Stutsman","{""38093"": ""100""}","Stutsman","38093","FALSE","FALSE","America/Chicago"
-"58428","46.84846","-99.7515","Dawson","ND","North Dakota","TRUE","","203","0.5","38043","Kidder","{""38043"": ""100""}","Kidder","38043","FALSE","FALSE","America/Chicago"
-"58429","47.18485","-98.16373","Dazey","ND","North Dakota","TRUE","","371","1.1","38003","Barnes","{""38003"": ""97.76"", ""38039"": ""2.24""}","Barnes|Griggs","38003|38039","FALSE","FALSE","America/Chicago"
-"58430","47.51464","-100.2612","Denhoff","ND","North Dakota","TRUE","","150","0.6","38083","Sheridan","{""38083"": ""100""}","Sheridan","38083","FALSE","FALSE","America/Chicago"
-"58431","46.50768","-98.48494","Dickey","ND","North Dakota","TRUE","","105","0.6","38045","LaMoure","{""38045"": ""100""}","LaMoure","38045","FALSE","FALSE","America/Chicago"
-"58433","46.37033","-98.71301","Edgeley","ND","North Dakota","TRUE","","1139","1.4","38045","LaMoure","{""38045"": ""94.41"", ""38021"": ""5.59""}","LaMoure|Dickey","38045|38021","FALSE","FALSE","America/Chicago"
-"58436","46.08765","-98.57873","Ellendale","ND","North Dakota","TRUE","","1676","2.0","38021","Dickey","{""38021"": ""100""}","Dickey","38021","FALSE","FALSE","America/Chicago"
-"58438","47.66349","-99.59638","Fessenden","ND","North Dakota","TRUE","","672","1.7","38103","Wells","{""38103"": ""100""}","Wells","38103","FALSE","FALSE","America/Chicago"
-"58439","45.9824","-98.83447","Forbes","ND","North Dakota","TRUE","","112","0.3","46089","McPherson","{""46089"": ""52.26"", ""38021"": ""47.74""}","McPherson|Dickey","46089|38021","FALSE","FALSE","America/Chicago"
-"58440","46.26931","-99.16721","Fredonia","ND","North Dakota","TRUE","","118","0.2","38047","Logan","{""38047"": ""70.17"", ""38051"": ""29.83""}","Logan|McIntosh","38047|38051","FALSE","FALSE","America/Chicago"
-"58441","46.17639","-98.37127","Fullerton","ND","North Dakota","TRUE","","394","1.0","38021","Dickey","{""38021"": ""100""}","Dickey","38021","FALSE","FALSE","America/Chicago"
-"58442","46.56469","-99.17914","Gackle","ND","North Dakota","TRUE","","421","0.7","38047","Logan","{""38047"": ""92.89"", ""38093"": ""7.11""}","Logan|Stutsman","38047|38093","FALSE","FALSE","America/Chicago"
-"58443","47.45539","-98.67201","Glenfield","ND","North Dakota","TRUE","","175","0.7","38031","Foster","{""38031"": ""100""}","Foster","38031","FALSE","FALSE","America/Chicago"
-"58444","47.49942","-100.12971","Goodrich","ND","North Dakota","TRUE","","194","0.4","38083","Sheridan","{""38083"": ""100""}","Sheridan","38083","FALSE","FALSE","America/Chicago"
-"58445","47.56401","-98.80248","Grace City","ND","North Dakota","TRUE","","267","1.9","38031","Foster","{""38031"": ""84.38"", ""38027"": ""15.63""}","Foster|Eddy","38031|38027","FALSE","FALSE","America/Chicago"
-"58448","47.31125","-98.22024","Hannaford","ND","North Dakota","TRUE","","311","0.8","38039","Griggs","{""38039"": ""100""}","Griggs","38039","FALSE","FALSE","America/Chicago"
-"58451","47.45155","-99.95301","Hurdsfield","ND","North Dakota","TRUE","","133","0.4","38103","Wells","{""38103"": ""100""}","Wells","38103","FALSE","FALSE","America/Chicago"
-"58452","47.54776","-98.23123","Jessie","ND","North Dakota","TRUE","","47","11.2","38039","Griggs","{""38039"": ""100""}","Griggs","38039","FALSE","FALSE","America/Chicago"
-"58454","46.59652","-98.93542","Jud","ND","North Dakota","TRUE","","324","0.5","38045","LaMoure","{""38045"": ""76.39"", ""38093"": ""23.61""}","LaMoure|Stutsman","38045|38093","FALSE","FALSE","America/Chicago"
-"58455","47.30172","-98.74302","Kensal","ND","North Dakota","TRUE","","357","1.0","38093","Stutsman","{""38093"": ""81.52"", ""38031"": ""18.48""}","Stutsman|Foster","38093|38031","FALSE","FALSE","America/Chicago"
-"58456","46.26552","-98.946","Kulm","ND","North Dakota","TRUE","","517","0.9","38045","LaMoure","{""38045"": ""87"", ""38021"": ""9.94"", ""38051"": ""3.06""}","LaMoure|Dickey|McIntosh","38045|38021|38051","FALSE","FALSE","America/Chicago"
-"58458","46.36956","-98.29869","Lamoure","ND","North Dakota","TRUE","","1253","2.5","38045","LaMoure","{""38045"": ""99.21"", ""38021"": ""0.79""}","LaMoure|Dickey","38045|38021","FALSE","FALSE","America/Chicago"
-"58460","46.30802","-99.33677","Lehr","ND","North Dakota","TRUE","","182","0.4","38051","McIntosh","{""38051"": ""55.22"", ""38047"": ""44.78""}","McIntosh|Logan","38051|38047","FALSE","FALSE","America/Chicago"
-"58461","46.65292","-98.19499","Litchville","ND","North Dakota","TRUE","","383","0.7","38003","Barnes","{""38003"": ""75.79"", ""38045"": ""24.21""}","Barnes|LaMoure","38003|38045","FALSE","FALSE","America/Chicago"
-"58463","47.49072","-100.47234","Mcclusky","ND","North Dakota","TRUE","","667","0.7","38083","Sheridan","{""38083"": ""100""}","Sheridan","38083","FALSE","FALSE","America/Chicago"
-"58464","47.60518","-98.58105","Mchenry","ND","North Dakota","TRUE","","194","0.4","38031","Foster","{""38031"": ""51.24"", ""38027"": ""41.32"", ""38039"": ""7.44""}","Foster|Eddy|Griggs","38031|38027|38039","FALSE","FALSE","America/Chicago"
-"58466","46.61786","-98.36748","Marion","ND","North Dakota","TRUE","","331","0.8","38045","LaMoure","{""38045"": ""68.45"", ""38003"": ""28.17"", ""38093"": ""3.38""}","LaMoure|Barnes|Stutsman","38045|38003|38093","FALSE","FALSE","America/Chicago"
-"58467","46.88114","-99.33368","Medina","ND","North Dakota","TRUE","","782","1.3","38093","Stutsman","{""38093"": ""96.7"", ""38043"": ""3.3""}","Stutsman|Kidder","38093|38043","FALSE","FALSE","America/Chicago"
-"58472","46.64266","-98.66533","Montpelier","ND","North Dakota","TRUE","","490","1.2","38093","Stutsman","{""38093"": ""65.63"", ""38045"": ""34.37""}","Stutsman|LaMoure","38093|38045","FALSE","FALSE","America/Chicago"
-"58474","46.09559","-98.13353","Oakes","ND","North Dakota","TRUE","","2706","2.8","38021","Dickey","{""38021"": ""97.91"", ""38081"": ""2.09""}","Dickey|Sargent","38021|38081","FALSE","FALSE","America/Chicago"
-"58475","47.16547","-99.53946","Pettibone","ND","North Dakota","TRUE","","165","0.5","38043","Kidder","{""38043"": ""97.33"", ""38093"": ""2.67""}","Kidder|Stutsman","38043|38093","FALSE","FALSE","America/Chicago"
-"58476","47.19769","-99.01677","Pingree","ND","North Dakota","TRUE","","233","0.4","38093","Stutsman","{""38093"": ""100""}","Stutsman","38093","FALSE","FALSE","America/Chicago"
-"58477","47.21577","-100.50904","Regan","ND","North Dakota","TRUE","","95","0.3","38015","Burleigh","{""38015"": ""100""}","Burleigh","38015","FALSE","FALSE","America/Chicago"
-"58478","47.17486","-99.74566","Robinson","ND","North Dakota","TRUE","","114","0.3","38043","Kidder","{""38043"": ""100""}","Kidder","38043","FALSE","FALSE","America/Chicago"
-"58479","47.0953","-98.18466","Rogers","ND","North Dakota","TRUE","","214","1.3","38003","Barnes","{""38003"": ""100""}","Barnes","38003","FALSE","FALSE","America/Chicago"
-"58480","46.95327","-98.26049","Sanborn","ND","North Dakota","TRUE","","318","1.0","38003","Barnes","{""38003"": ""100""}","Barnes","38003","FALSE","FALSE","America/Chicago"
-"58481","46.93133","-98.42113","Spiritwood","ND","North Dakota","TRUE","","231","0.7","38003","Barnes","{""38003"": ""62.87"", ""38093"": ""37.13""}","Barnes|Stutsman","38003|38093","FALSE","FALSE","America/Chicago"
-"58482","46.85515","-99.89895","Steele","ND","North Dakota","TRUE","","958","1.6","38043","Kidder","{""38043"": ""100""}","Kidder","38043","FALSE","FALSE","America/Chicago"
-"58483","46.65252","-99.40808","Streeter","ND","North Dakota","TRUE","","315","0.8","38093","Stutsman","{""38093"": ""73.24"", ""38047"": ""16.76"", ""38043"": ""10""}","Stutsman|Logan|Kidder","38093|38047|38043","FALSE","FALSE","America/Chicago"
-"58484","47.37511","-98.47812","Sutton","ND","North Dakota","TRUE","","44","0.3","38039","Griggs","{""38039"": ""83.08"", ""38031"": ""16.92""}","Griggs|Foster","38039|38031","FALSE","FALSE","America/Chicago"
-"58486","47.39046","-99.39125","Sykeston","ND","North Dakota","TRUE","","241","0.6","38103","Wells","{""38103"": ""93.51"", ""38093"": ""6.49""}","Wells|Stutsman","38103|38093","FALSE","FALSE","America/Chicago"
-"58487","46.85757","-99.59723","Tappen","ND","North Dakota","TRUE","","591","0.9","38043","Kidder","{""38043"": ""100""}","Kidder","38043","FALSE","FALSE","America/Chicago"
-"58488","47.17816","-99.99624","Tuttle","ND","North Dakota","TRUE","","146","0.2","38043","Kidder","{""38043"": ""100""}","Kidder","38043","FALSE","FALSE","America/Chicago"
-"58490","46.37966","-98.05824","Verona","ND","North Dakota","TRUE","","220","0.7","38045","LaMoure","{""38045"": ""83.75"", ""38073"": ""16.25""}","LaMoure|Ransom","38045|38073","FALSE","FALSE","America/Chicago"
-"58492","47.15447","-98.43797","Wimbledon","ND","North Dakota","TRUE","","416","1.1","38003","Barnes","{""38003"": ""82.95"", ""38093"": ""11.23"", ""38039"": ""5.82""}","Barnes|Stutsman|Griggs","38003|38093|38039","FALSE","FALSE","America/Chicago"
-"58494","47.15652","-100.28022","Wing","ND","North Dakota","TRUE","","262","0.3","38015","Burleigh","{""38015"": ""100""}","Burleigh","38015","FALSE","FALSE","America/Chicago"
-"58495","46.27701","-99.60082","Wishek","ND","North Dakota","TRUE","","1342","1.4","38051","McIntosh","{""38051"": ""93.24"", ""38047"": ""6.76""}","McIntosh|Logan","38051|38047","FALSE","FALSE","America/Chicago"
-"58496","47.14742","-99.3291","Woodworth","ND","North Dakota","TRUE","","141","0.3","38093","Stutsman","{""38093"": ""100""}","Stutsman","38093","FALSE","FALSE","America/Chicago"
-"58497","46.76718","-98.54587","Ypsilanti","ND","North Dakota","TRUE","","171","0.6","38093","Stutsman","{""38093"": ""93.87"", ""38003"": ""6.13""}","Stutsman|Barnes","38093|38003","FALSE","FALSE","America/Chicago"
-"58501","46.81868","-100.70201","Bismarck","ND","North Dakota","TRUE","","30124","479.4","38015","Burleigh","{""38015"": ""100""}","Burleigh","38015","FALSE","FALSE","America/Chicago"
-"58503","46.90432","-100.75055","Bismarck","ND","North Dakota","TRUE","","34266","99.6","38015","Burleigh","{""38015"": ""100""}","Burleigh","38015","FALSE","FALSE","America/Chicago"
-"58504","46.72307","-100.6779","Bismarck","ND","North Dakota","TRUE","","27307","102.0","38015","Burleigh","{""38015"": ""100""}","Burleigh","38015","FALSE","FALSE","America/Chicago"
-"58505","46.8202","-100.78111","Bismarck","ND","North Dakota","TRUE","","0","0.0","38015","Burleigh","{""38015"": ""100""}","Burleigh","38015","FALSE","FALSE","America/Chicago"
-"58520","46.68174","-101.54687","Almont","ND","North Dakota","TRUE","","132","0.3","38059","Morton","{""38059"": ""84.47"", ""38037"": ""15.53""}","Morton|Grant","38059|38037","FALSE","FALSE","America/North_Dakota/New_Salem"
-"58521","47.02467","-100.69204","Baldwin","ND","North Dakota","TRUE","","608","1.5","38015","Burleigh","{""38015"": ""100""}","Burleigh","38015","FALSE","FALSE","America/Chicago"
-"58523","47.25857","-101.77838","Beulah","ND","North Dakota","TRUE","","3623","5.4","38057","Mercer","{""38057"": ""97.79"", ""38065"": ""2.21""}","Mercer|Oliver","38057|38065","FALSE","FALSE","America/North_Dakota/Beulah"
-"58524","46.59187","-100.0808","Braddock","ND","North Dakota","TRUE","","81","0.3","38029","Emmons","{""38029"": ""69"", ""38043"": ""31""}","Emmons|Kidder","38029|38043","FALSE","FALSE","America/Chicago"
-"58528","46.33616","-100.63638","Cannon Ball","ND","North Dakota","TRUE","","778","4.4","38085","Sioux","{""38085"": ""100""}","Sioux","38085","FALSE","FALSE","America/Chicago"
-"58529","46.29985","-101.55514","Carson","ND","North Dakota","TRUE","","598","0.5","38037","Grant","{""38037"": ""100""}","Grant","38037","FALSE","FALSE","America/Denver"
-"58530","47.12919","-101.15012","Center","ND","North Dakota","TRUE","","1042","1.2","38065","Oliver","{""38065"": ""100""}","Oliver","38065","FALSE","FALSE","America/North_Dakota/Center"
-"58531","47.57372","-101.19518","Coleharbor","ND","North Dakota","TRUE","","418","1.4","38055","McLean","{""38055"": ""100""}","McLean","38055","FALSE","FALSE","America/Chicago"
-"58532","46.85214","-100.10998","Driscoll","ND","North Dakota","TRUE","","297","0.5","38015","Burleigh","{""38015"": ""80.13"", ""38043"": ""19.87""}","Burleigh|Kidder","38015|38043","FALSE","FALSE","America/Chicago"
-"58533","46.40191","-101.79675","Elgin","ND","North Dakota","TRUE","","1048","1.3","38037","Grant","{""38037"": ""100""}","Grant","38037","FALSE","FALSE","America/Denver"
-"58535","46.49992","-101.24527","Flasher","ND","North Dakota","TRUE","","464","0.5","38059","Morton","{""38059"": ""83.54"", ""38037"": ""16.46""}","Morton|Grant","38059|38037","FALSE","FALSE","America/North_Dakota/New_Salem"
-"58538","46.11235","-100.6928","Fort Yates","ND","North Dakota","TRUE","","2568","5.6","38085","Sioux","{""38085"": ""100""}","Sioux","38085","FALSE","FALSE","America/Chicago"
-"58540","47.62988","-101.71675","Garrison","ND","North Dakota","TRUE","","3057","3.0","38055","McLean","{""38055"": ""100""}","McLean","38055","FALSE","FALSE","America/Chicago"
-"58541","47.36516","-102.06548","Golden Valley","ND","North Dakota","TRUE","","613","1.3","38057","Mercer","{""38057"": ""100""}","Mercer","38057","FALSE","FALSE","America/North_Dakota/Beulah"
-"58542","46.05021","-100.01432","Hague","ND","North Dakota","TRUE","","239","0.5","38029","Emmons","{""38029"": ""100""}","Emmons","38029","FALSE","FALSE","America/Chicago"
-"58544","46.50851","-100.36917","Hazelton","ND","North Dakota","TRUE","","558","0.6","38029","Emmons","{""38029"": ""100""}","Emmons","38029","FALSE","FALSE","America/Chicago"
-"58545","47.35584","-101.58061","Hazen","ND","North Dakota","TRUE","","3488","4.4","38057","Mercer","{""38057"": ""97.49"", ""38065"": ""2.51""}","Mercer|Oliver","38057|38065","FALSE","FALSE","America/North_Dakota/Beulah"
-"58549","46.47464","-99.93629","Kintyre","ND","North Dakota","TRUE","","256","0.5","38029","Emmons","{""38029"": ""56.07"", ""38047"": ""39.25"", ""38043"": ""4.67""}","Emmons|Logan|Kidder","38029|38047|38043","FALSE","FALSE","America/Chicago"
-"58552","46.23896","-100.30105","Linton","ND","North Dakota","TRUE","","1639","1.2","38029","Emmons","{""38029"": ""100""}","Emmons","38029","FALSE","FALSE","America/Chicago"
-"58554","46.73801","-100.94022","Mandan","ND","North Dakota","TRUE","","26018","16.3","38059","Morton","{""38059"": ""99.63"", ""38065"": ""0.37""}","Morton|Oliver","38059|38065","FALSE","FALSE","America/North_Dakota/New_Salem"
-"58558","46.82637","-100.51066","Menoken","ND","North Dakota","TRUE","","974","2.4","38015","Burleigh","{""38015"": ""100""}","Burleigh","38015","FALSE","FALSE","America/Chicago"
-"58559","47.48816","-100.72767","Mercer","ND","North Dakota","TRUE","","244","0.6","38055","McLean","{""38055"": ""96.79"", ""38083"": ""3.21""}","McLean|Sheridan","38055|38083","FALSE","FALSE","America/Chicago"
-"58560","46.67951","-100.25937","Moffit","ND","North Dakota","TRUE","","166","0.7","38015","Burleigh","{""38015"": ""100""}","Burleigh","38015","FALSE","FALSE","America/Chicago"
-"58561","46.48704","-99.68333","Napoleon","ND","North Dakota","TRUE","","1055","1.2","38047","Logan","{""38047"": ""100""}","Logan","38047","FALSE","FALSE","America/Chicago"
-"58562","46.37488","-102.00451","New Leipzig","ND","North Dakota","TRUE","","412","0.5","38037","Grant","{""38037"": ""83.37"", ""38041"": ""14.7"", ""38001"": ""1.93""}","Grant|Hettinger|Adams","38037|38041|38001","FALSE","FALSE","America/Denver"
-"58563","46.90329","-101.43495","New Salem","ND","North Dakota","TRUE","","2388","1.7","38059","Morton","{""38059"": ""83.11"", ""38065"": ""16.89""}","Morton|Oliver","38059|38065","FALSE","FALSE","America/North_Dakota/New_Salem"
-"58564","46.26614","-101.35223","Raleigh","ND","North Dakota","TRUE","","80","0.3","38037","Grant","{""38037"": ""100""}","Grant","38037","FALSE","FALSE","America/Denver"
-"58565","47.48677","-101.38317","Riverdale","ND","North Dakota","TRUE","","210","28.2","38055","McLean","{""38055"": ""100""}","McLean","38055","FALSE","FALSE","America/Chicago"
-"58566","46.58322","-100.92538","Saint Anthony","ND","North Dakota","TRUE","","113","0.5","38059","Morton","{""38059"": ""100""}","Morton","38059","FALSE","FALSE","America/North_Dakota/New_Salem"
-"58568","46.08787","-101.04722","Selfridge","ND","North Dakota","TRUE","","697","0.6","38085","Sioux","{""38085"": ""100""}","Sioux","38085","FALSE","FALSE","America/Chicago"
-"58569","46.26226","-101.19051","Shields","ND","North Dakota","TRUE","","75","0.2","38037","Grant","{""38037"": ""100""}","Grant","38037","FALSE","FALSE","America/Denver"
-"58570","46.38367","-100.88831","Solen","ND","North Dakota","TRUE","","461","0.6","38059","Morton","{""38059"": ""54.66"", ""38085"": ""45.34""}","Morton|Sioux","38059|38085","FALSE","FALSE","America/North_Dakota/New_Salem"
-"58571","47.27584","-101.40094","Stanton","ND","North Dakota","TRUE","","527","1.7","38057","Mercer","{""38057"": ""88.72"", ""38065"": ""11.28""}","Mercer|Oliver","38057|38065","FALSE","FALSE","America/North_Dakota/Beulah"
-"58572","46.8564","-100.33648","Sterling","ND","North Dakota","TRUE","","263","0.6","38015","Burleigh","{""38015"": ""100""}","Burleigh","38015","FALSE","FALSE","America/Chicago"
-"58573","46.10009","-100.20329","Strasburg","ND","North Dakota","TRUE","","608","1.1","38029","Emmons","{""38029"": ""100""}","Emmons","38029","FALSE","FALSE","America/Chicago"
-"58575","47.56336","-100.90178","Turtle Lake","ND","North Dakota","TRUE","","823","1.3","38055","McLean","{""38055"": ""100""}","McLean","38055","FALSE","FALSE","America/Chicago"
-"58576","47.43867","-101.2165","Underwood","ND","North Dakota","TRUE","","960","2.2","38055","McLean","{""38055"": ""100""}","McLean","38055","FALSE","FALSE","America/Chicago"
-"58577","47.32196","-101.05551","Washburn","ND","North Dakota","TRUE","","1800","3.7","38055","McLean","{""38055"": ""100""}","McLean","38055","FALSE","FALSE","America/Chicago"
-"58579","47.18206","-100.74","Wilton","ND","North Dakota","TRUE","","1338","2.0","38055","McLean","{""38055"": ""58.91"", ""38015"": ""41.09""}","McLean|Burleigh","38055|38015","FALSE","FALSE","America/Chicago"
-"58580","47.25974","-101.93177","Zap","ND","North Dakota","TRUE","","366","0.9","38057","Mercer","{""38057"": ""100""}","Mercer","38057","FALSE","FALSE","America/North_Dakota/Beulah"
-"58581","46.03994","-99.78126","Zeeland","ND","North Dakota","TRUE","","254","0.7","38051","McIntosh","{""38051"": ""100""}","McIntosh","38051","FALSE","FALSE","America/Chicago"
-"58601","46.91588","-102.83434","Dickinson","ND","North Dakota","TRUE","","26865","18.1","38089","Stark","{""38089"": ""98.36"", ""38025"": ""1.64""}","Stark|Dunn","38089|38025","FALSE","FALSE","America/Denver"
-"58620","46.50431","-103.33089","Amidon","ND","North Dakota","TRUE","","132","0.2","38087","Slope","{""38087"": ""93.94"", ""38007"": ""6.06""}","Slope|Billings","38087|38007","FALSE","FALSE","America/Denver"
-"58621","47.08318","-103.92808","Beach","ND","North Dakota","TRUE","","1351","1.3","38033","Golden Valley","{""38033"": ""100""}","Golden Valley","38033","FALSE","FALSE","America/Denver"
-"58622","46.89613","-103.27062","Belfield","ND","North Dakota","TRUE","","1924","1.2","38089","Stark","{""38089"": ""76.49"", ""38007"": ""23.51""}","Stark|Billings","38089|38007","FALSE","FALSE","America/Denver"
-"58623","46.18901","-103.42567","Bowman","ND","North Dakota","TRUE","","2205","1.5","38011","Bowman","{""38011"": ""95.02"", ""38087"": ""4.68"", ""46063"": ""0.3""}","Bowman|Slope|Harding","38011|38087|46063","FALSE","FALSE","America/Denver"
-"58625","47.26784","-102.19435","Dodge","ND","North Dakota","TRUE","","262","1.0","38025","Dunn","{""38025"": ""85.95"", ""38057"": ""14.05""}","Dunn|Mercer","38025|38057","FALSE","FALSE","America/Denver"
-"58626","47.38146","-102.62034","Dunn Center","ND","North Dakota","TRUE","","430","1.0","38025","Dunn","{""38025"": ""100""}","Dunn","38025","FALSE","FALSE","America/Denver"
-"58627","47.23294","-103.30559","Fairfield","ND","North Dakota","TRUE","","172","0.2","38007","Billings","{""38007"": ""100""}","Billings","38007","FALSE","FALSE","America/Denver"
-"58630","46.94463","-102.5792","Gladstone","ND","North Dakota","TRUE","","814","1.6","38089","Stark","{""38089"": ""83.47"", ""38025"": ""16.53""}","Stark|Dunn","38089|38025","FALSE","FALSE","America/Denver"
-"58631","46.79977","-101.81892","Glen Ullin","ND","North Dakota","TRUE","","1157","1.2","38059","Morton","{""38059"": ""91.13"", ""38037"": ""5.48"", ""38057"": ""3.39""}","Morton|Grant|Mercer","38059|38037|38057","FALSE","FALSE","America/North_Dakota/New_Salem"
-"58632","46.6689","-103.95637","Golva","ND","North Dakota","TRUE","","180","0.9","38033","Golden Valley","{""38033"": ""100""}","Golden Valley","38033","FALSE","FALSE","America/Denver"
-"58634","47.4342","-103.34243","Grassy Butte","ND","North Dakota","TRUE","","315","0.3","38053","McKenzie","{""38053"": ""88.84"", ""38007"": ""11.16""}","McKenzie|Billings","38053|38007","FALSE","FALSE","America/Denver"
-"58636","47.38629","-102.36036","Halliday","ND","North Dakota","TRUE","","1015","0.9","38025","Dunn","{""38025"": ""96.03"", ""38057"": ""3.97""}","Dunn|Mercer","38025|38057","FALSE","FALSE","America/Denver"
-"58638","46.94037","-102.04409","Hebron","ND","North Dakota","TRUE","","1118","1.2","38059","Morton","{""38059"": ""89.01"", ""38057"": ""6.45"", ""38089"": ""2.72"", ""38025"": ""1.01"", ""38037"": ""0.81""}","Morton|Mercer|Stark|Dunn|Grant","38059|38057|38089|38025|38037","FALSE","FALSE","America/North_Dakota/New_Salem"
-"58639","46.09177","-102.61406","Hettinger","ND","North Dakota","TRUE","","1801","1.6","38001","Adams","{""38001"": ""100""}","Adams","38001","FALSE","FALSE","America/Denver"
-"58640","47.45234","-102.90254","Killdeer","ND","North Dakota","TRUE","","1545","1.4","38025","Dunn","{""38025"": ""100""}","Dunn","38025","FALSE","FALSE","America/Denver"
-"58641","46.66845","-102.49863","Lefor","ND","North Dakota","TRUE","","151","0.8","38089","Stark","{""38089"": ""100""}","Stark","38089","FALSE","FALSE","America/Denver"
-"58642","47.20868","-102.84273","Manning","ND","North Dakota","TRUE","","304","0.7","38025","Dunn","{""38025"": ""94.31"", ""38007"": ""5.69""}","Dunn|Billings","38025|38007","FALSE","FALSE","America/Denver"
-"58643","46.32971","-103.94448","Marmarth","ND","North Dakota","TRUE","","134","0.2","38087","Slope","{""38087"": ""88.48"", ""38011"": ""11.52""}","Slope|Bowman","38087|38011","FALSE","FALSE","America/Denver"
-"58645","46.93876","-103.56314","Medora","ND","North Dakota","TRUE","","233","0.2","38007","Billings","{""38007"": ""94.12"", ""38033"": ""5.88""}","Billings|Golden Valley","38007|38033","FALSE","FALSE","America/Denver"
-"58646","46.39388","-102.28253","Mott","ND","North Dakota","TRUE","","1126","0.8","38041","Hettinger","{""38041"": ""98.77"", ""38001"": ""1.23""}","Hettinger|Adams","38041|38001","FALSE","FALSE","America/Denver"
-"58647","46.52223","-102.93452","New England","ND","North Dakota","TRUE","","1325","1.0","38041","Hettinger","{""38041"": ""78.81"", ""38087"": ""14.36"", ""38089"": ""6.83""}","Hettinger|Slope|Stark","38041|38087|38089","FALSE","FALSE","America/Denver"
-"58649","46.12098","-102.9136","Reeder","ND","North Dakota","TRUE","","267","0.4","38001","Adams","{""38001"": ""90.34"", ""38041"": ""4.67"", ""46063"": ""4.36"", ""38011"": ""0.62""}","Adams|Hettinger|Harding|Bowman","38001|38041|46063|38011","FALSE","FALSE","America/Denver"
-"58650","46.43682","-102.58754","Regent","ND","North Dakota","TRUE","","376","0.5","38041","Hettinger","{""38041"": ""95.93"", ""38001"": ""4.07""}","Hettinger|Adams","38041|38001","FALSE","FALSE","America/Denver"
-"58651","46.25558","-103.73525","Rhame","ND","North Dakota","TRUE","","504","0.3","38011","Bowman","{""38011"": ""78.74"", ""38087"": ""21.26""}","Bowman|Slope","38011|38087","FALSE","FALSE","America/Denver"
-"58652","46.86877","-102.26784","Richardton","ND","North Dakota","TRUE","","1257","1.3","38089","Stark","{""38089"": ""92.3"", ""38025"": ""7.7""}","Stark|Dunn","38089|38025","FALSE","FALSE","America/Denver"
-"58653","46.09162","-103.13542","Scranton","ND","North Dakota","TRUE","","782","0.7","38011","Bowman","{""38011"": ""83.36"", ""38087"": ""9.15"", ""46063"": ""7.49""}","Bowman|Slope|Harding","38011|38087|46063","FALSE","FALSE","America/Denver"
-"58654","46.88083","-103.77792","Sentinel Butte","ND","North Dakota","TRUE","","325","0.3","38033","Golden Valley","{""38033"": ""98.96"", ""38087"": ""1.04""}","Golden Valley|Slope","38033|38087","FALSE","FALSE","America/Denver"
-"58655","46.77518","-103.03399","South Heart","ND","North Dakota","TRUE","","561","2.2","38089","Stark","{""38089"": ""100""}","Stark","38089","FALSE","FALSE","America/Denver"
-"58656","46.94402","-102.4583","Taylor","ND","North Dakota","TRUE","","498","1.1","38089","Stark","{""38089"": ""90.16"", ""38025"": ""9.84""}","Stark|Dunn","38089|38025","FALSE","FALSE","America/Denver"
-"58701","48.14259","-101.32131","Minot","ND","North Dakota","TRUE","","31580","55.2","38101","Ward","{""38101"": ""100""}","Ward","38101","FALSE","FALSE","America/Chicago"
-"58702","48.23214","-101.29379","Minot","ND","North Dakota","TRUE","","0","0.0","38101","Ward","{""38101"": ""0""}","Ward","38101","FALSE","FALSE","America/Chicago"
-"58703","48.33057","-101.31556","Minot","ND","North Dakota","TRUE","","23640","56.9","38101","Ward","{""38101"": ""100""}","Ward","38101","FALSE","FALSE","America/Chicago"
-"58704","48.42515","-101.32098","Minot Afb","ND","North Dakota","TRUE","","4696","1047.6","38101","Ward","{""38101"": ""100""}","Ward","38101","FALSE","FALSE","America/Chicago"
-"58705","48.42237","-101.33389","Minot Afb","ND","North Dakota","TRUE","","527","1367.3","38101","Ward","{""38101"": ""100""}","Ward","38101","FALSE","FALSE","America/Chicago"
-"58707","48.24621","-101.30075","Minot","ND","North Dakota","TRUE","","445","2683.0","38101","Ward","{""38101"": ""100""}","Ward","38101","FALSE","FALSE","America/Chicago"
-"58710","47.87229","-100.22952","Anamoose","ND","North Dakota","TRUE","","508","1.1","38049","McHenry","{""38049"": ""71.64"", ""38083"": ""16.42"", ""38069"": ""11.94""}","McHenry|Sheridan|Pierce","38049|38083|38069","FALSE","FALSE","America/Chicago"
-"58711","48.93075","-101.28461","Antler","ND","North Dakota","TRUE","","303","1.0","38009","Bottineau","{""38009"": ""100""}","Bottineau","38009","FALSE","FALSE","America/Chicago"
-"58712","47.97636","-100.53095","Balfour","ND","North Dakota","TRUE","","87","0.3","38049","McHenry","{""38049"": ""100""}","McHenry","38049","FALSE","FALSE","America/Chicago"
-"58713","48.53502","-100.59538","Bantry","ND","North Dakota","TRUE","","18","0.3","38049","McHenry","{""38049"": ""100""}","McHenry","38049","FALSE","FALSE","America/Chicago"
-"58716","47.81791","-101.07158","Benedict","ND","North Dakota","TRUE","","104","0.6","38055","McLean","{""38055"": ""87.07"", ""38101"": ""12.93""}","McLean|Ward","38055|38101","FALSE","FALSE","America/Chicago"
-"58718","48.3124","-101.8106","Berthold","ND","North Dakota","TRUE","","995","0.9","38101","Ward","{""38101"": ""86.25"", ""38061"": ""11.92"", ""38075"": ""1.83""}","Ward|Mountrail|Renville","38101|38061|38075","FALSE","FALSE","America/Chicago"
-"58721","48.80587","-102.28087","Bowbells","ND","North Dakota","TRUE","","478","0.8","38013","Burke","{""38013"": ""97.16"", ""38101"": ""2.84""}","Burke|Ward","38013|38101","FALSE","FALSE","America/Chicago"
-"58722","48.23734","-101.49498","Burlington","ND","North Dakota","TRUE","","1705","10.5","38101","Ward","{""38101"": ""100""}","Ward","38101","FALSE","FALSE","America/Chicago"
-"58723","47.75863","-100.60481","Butte","ND","North Dakota","TRUE","","202","0.4","38055","McLean","{""38055"": ""60.59"", ""38083"": ""33.05"", ""38049"": ""6.36""}","McLean|Sheridan|McHenry","38055|38083|38049","FALSE","FALSE","America/Chicago"
-"58725","48.49193","-101.68351","Carpio","ND","North Dakota","TRUE","","426","1.1","38101","Ward","{""38101"": ""73.61"", ""38075"": ""26.39""}","Ward|Renville","38101|38075","FALSE","FALSE","America/Chicago"
-"58727","48.84349","-102.798","Columbus","ND","North Dakota","TRUE","","275","0.4","38013","Burke","{""38013"": ""100""}","Burke","38013","FALSE","FALSE","America/Chicago"
-"58730","48.86469","-103.31427","Crosby","ND","North Dakota","TRUE","","1448","2.3","38023","Divide","{""38023"": ""100""}","Divide","38023","FALSE","FALSE","America/Chicago"
-"58731","48.43968","-100.97982","Deering","ND","North Dakota","TRUE","","318","1.0","38049","McHenry","{""38049"": ""96.33"", ""38101"": ""3.67""}","McHenry|Ward","38049|38101","FALSE","FALSE","America/Chicago"
-"58733","48.17475","-101.587","Des Lacs","ND","North Dakota","TRUE","","352","1.5","38101","Ward","{""38101"": ""100""}","Ward","38101","FALSE","FALSE","America/Chicago"
-"58734","48.51538","-101.94471","Donnybrook","ND","North Dakota","TRUE","","351","0.7","38101","Ward","{""38101"": ""57.26"", ""38061"": ""31.54"", ""38075"": ""11.2""}","Ward|Mountrail|Renville","38101|38061|38075","FALSE","FALSE","America/Chicago"
-"58735","47.87377","-101.48232","Douglas","ND","North Dakota","TRUE","","340","0.7","38101","Ward","{""38101"": ""70.7"", ""38055"": ""29.3""}","Ward|McLean","38101|38055","FALSE","FALSE","America/Chicago"
-"58736","47.93381","-100.3819","Drake","ND","North Dakota","TRUE","","597","1.4","38049","McHenry","{""38049"": ""90.71"", ""38083"": ""9.29""}","McHenry|Sheridan","38049|38083","FALSE","FALSE","America/Chicago"
-"58737","48.92147","-102.39152","Flaxton","ND","North Dakota","TRUE","","184","0.5","38013","Burke","{""38013"": ""100""}","Burke","38013","FALSE","FALSE","America/Chicago"
-"58740","48.47179","-101.22971","Glenburn","ND","North Dakota","TRUE","","791","1.8","38075","Renville","{""38075"": ""76.16"", ""38101"": ""22.65"", ""38009"": ""1.19""}","Renville|Ward|Bottineau","38075|38101|38009","FALSE","FALSE","America/Chicago"
-"58741","48.2775","-100.82448","Granville","ND","North Dakota","TRUE","","635","1.5","38049","McHenry","{""38049"": ""100""}","McHenry","38049","FALSE","FALSE","America/Chicago"
-"58744","48.11917","-100.6232","Karlsruhe","ND","North Dakota","TRUE","","109","0.5","38049","McHenry","{""38049"": ""100""}","McHenry","38049","FALSE","FALSE","America/Chicago"
-"58746","48.71825","-102.08515","Kenmare","ND","North Dakota","TRUE","","1344","1.2","38101","Ward","{""38101"": ""88.7"", ""38075"": ""6.17"", ""38013"": ""5.12""}","Ward|Renville|Burke","38101|38075|38013","FALSE","FALSE","America/Chicago"
-"58748","48.67955","-100.65168","Kramer","ND","North Dakota","TRUE","","128","0.4","38009","Bottineau","{""38009"": ""95.95"", ""38049"": ""4.05""}","Bottineau|McHenry","38009|38049","FALSE","FALSE","America/Chicago"
-"58750","48.61617","-101.39826","Lansford","ND","North Dakota","TRUE","","514","0.9","38009","Bottineau","{""38009"": ""84.28"", ""38075"": ""15.72""}","Bottineau|Renville","38009|38075","FALSE","FALSE","America/Chicago"
-"58752","48.83339","-102.58468","Lignite","ND","North Dakota","TRUE","","255","1.5","38013","Burke","{""38013"": ""100""}","Burke","38013","FALSE","FALSE","America/Chicago"
-"58755","48.62398","-102.94595","Mcgregor","ND","North Dakota","TRUE","","155","0.7","38105","Williams","{""38105"": ""61.24"", ""38023"": ""27.91"", ""38013"": ""10.85""}","Williams|Divide|Burke","38105|38023|38013","FALSE","FALSE","America/Chicago"
-"58756","47.9681","-101.81016","Makoti","ND","North Dakota","TRUE","","185","0.8","38101","Ward","{""38101"": ""94"", ""38061"": ""6""}","Ward|Mountrail","38101|38061","FALSE","FALSE","America/Chicago"
-"58757","47.69113","-102.55689","Mandaree","ND","North Dakota","TRUE","","878","0.9","38053","McKenzie","{""38053"": ""75.58"", ""38025"": ""24.42""}","McKenzie|Dunn","38053|38025","FALSE","FALSE","America/Chicago"
-"58758","47.77614","-100.10825","Martin","ND","North Dakota","TRUE","","211","0.7","38083","Sheridan","{""38083"": ""69.82"", ""38069"": ""15.77"", ""38103"": ""14.41""}","Sheridan|Pierce|Wells","38083|38069|38103","FALSE","FALSE","America/Chicago"
-"58759","47.85576","-101.24677","Max","ND","North Dakota","TRUE","","819","1.4","38055","McLean","{""38055"": ""62.48"", ""38101"": ""37.52""}","McLean|Ward","38055|38101","FALSE","FALSE","America/Chicago"
-"58760","48.70279","-101.14773","Maxbass","ND","North Dakota","TRUE","","302","0.8","38009","Bottineau","{""38009"": ""100""}","Bottineau","38009","FALSE","FALSE","America/Chicago"
-"58761","48.78319","-101.53294","Mohall","ND","North Dakota","TRUE","","876","1.2","38075","Renville","{""38075"": ""92.3"", ""38009"": ""7.7""}","Renville|Bottineau","38075|38009","FALSE","FALSE","America/Chicago"
-"58762","48.67302","-100.94159","Newburg","ND","North Dakota","TRUE","","198","0.7","38009","Bottineau","{""38009"": ""90.65"", ""38049"": ""9.35""}","Bottineau|McHenry","38009|38049","FALSE","FALSE","America/Chicago"
-"58763","47.9929","-102.57574","New Town","ND","North Dakota","TRUE","","4016","3.0","38061","Mountrail","{""38061"": ""77.64"", ""38053"": ""22.19"", ""38055"": ""0.17""}","Mountrail|McKenzie|McLean","38061|38053|38055","FALSE","FALSE","America/Chicago"
-"58765","48.87741","-103.0399","Noonan","ND","North Dakota","TRUE","","291","0.7","38023","Divide","{""38023"": ""100""}","Divide","38023","FALSE","FALSE","America/Chicago"
-"58768","48.23219","-101.01063","Norwich","ND","North Dakota","TRUE","","268","1.3","38049","McHenry","{""38049"": ""52.13"", ""38101"": ""47.87""}","McHenry|Ward","38049|38101","FALSE","FALSE","America/Chicago"
-"58769","48.32321","-102.22117","Palermo","ND","North Dakota","TRUE","","192","0.4","38061","Mountrail","{""38061"": ""100""}","Mountrail","38061","FALSE","FALSE","America/Chicago"
-"58770","47.8844","-102.15792","Parshall","ND","North Dakota","TRUE","","1704","2.7","38061","Mountrail","{""38061"": ""93.39"", ""38055"": ""6.61""}","Mountrail|McLean","38061|38055","FALSE","FALSE","America/Chicago"
-"58771","48.08424","-101.97553","Plaza","ND","North Dakota","TRUE","","515","0.7","38061","Mountrail","{""38061"": ""83.66"", ""38101"": ""15.01"", ""38055"": ""1.32""}","Mountrail|Ward|McLean","38061|38101|38055","FALSE","FALSE","America/Chicago"
-"58772","48.96554","-102.62408","Portal","ND","North Dakota","TRUE","","161","1.2","38013","Burke","{""38013"": ""100""}","Burke","38013","FALSE","FALSE","America/Chicago"
-"58773","48.58083","-102.65891","Powers Lake","ND","North Dakota","TRUE","","930","1.2","38013","Burke","{""38013"": ""81.37"", ""38061"": ""18.63""}","Burke|Mountrail","38013|38061","FALSE","FALSE","America/Chicago"
-"58775","47.70823","-101.87082","Roseglen","ND","North Dakota","TRUE","","129","0.6","38055","McLean","{""38055"": ""100""}","McLean","38055","FALSE","FALSE","America/Chicago"
-"58776","48.2428","-102.61391","Ross","ND","North Dakota","TRUE","","217","0.5","38061","Mountrail","{""38061"": ""100""}","Mountrail","38061","FALSE","FALSE","America/Chicago"
-"58778","47.7784","-100.92716","Ruso","ND","North Dakota","TRUE","","98","0.3","38055","McLean","{""38055"": ""93.98"", ""38049"": ""6.02""}","McLean|McHenry","38055|38049","FALSE","FALSE","America/Chicago"
-"58779","47.86324","-101.76722","Ryder","ND","North Dakota","TRUE","","458","0.6","38101","Ward","{""38101"": ""57.49"", ""38055"": ""42.51""}","Ward|McLean","38101|38055","FALSE","FALSE","America/Chicago"
-"58781","48.0211","-101.12696","Sawyer","ND","North Dakota","TRUE","","799","2.9","38101","Ward","{""38101"": ""100""}","Ward","38101","FALSE","FALSE","America/Chicago"
-"58782","48.93922","-101.70106","Sherwood","ND","North Dakota","TRUE","","444","0.9","38075","Renville","{""38075"": ""96.56"", ""38009"": ""3.44""}","Renville|Bottineau","38075|38009","FALSE","FALSE","America/Chicago"
-"58783","48.89223","-100.75674","Souris","ND","North Dakota","TRUE","","359","0.5","38009","Bottineau","{""38009"": ""100""}","Bottineau","38009","FALSE","FALSE","America/Chicago"
-"58784","48.36434","-102.42438","Stanley","ND","North Dakota","TRUE","","3528","4.2","38061","Mountrail","{""38061"": ""99.18"", ""38013"": ""0.82""}","Mountrail|Burke","38061|38013","FALSE","FALSE","America/Chicago"
-"58785","48.30898","-101.09062","Surrey","ND","North Dakota","TRUE","","1163","9.8","38101","Ward","{""38101"": ""100""}","Ward","38101","FALSE","FALSE","America/Chicago"
-"58787","48.75721","-101.80563","Tolley","ND","North Dakota","TRUE","","153","0.6","38075","Renville","{""38075"": ""100""}","Renville","38075","FALSE","FALSE","America/Chicago"
-"58788","48.3423","-100.48054","Towner","ND","North Dakota","TRUE","","1185","0.9","38049","McHenry","{""38049"": ""96.44"", ""38069"": ""3.56""}","McHenry|Pierce","38049|38069","FALSE","FALSE","America/Chicago"
-"58789","48.559","-100.8161","Upham","ND","North Dakota","TRUE","","285","0.8","38049","McHenry","{""38049"": ""96.88"", ""38009"": ""3.12""}","McHenry|Bottineau","38049|38009","FALSE","FALSE","America/Chicago"
-"58790","48.03414","-100.92968","Velva","ND","North Dakota","TRUE","","1839","3.9","38049","McHenry","{""38049"": ""96.28"", ""38101"": ""3.72""}","McHenry|Ward","38049|38101","FALSE","FALSE","America/Chicago"
-"58792","47.97114","-100.74328","Voltaire","ND","North Dakota","TRUE","","283","0.7","38049","McHenry","{""38049"": ""100""}","McHenry","38049","FALSE","FALSE","America/Chicago"
-"58793","48.86881","-101.0539","Westhope","ND","North Dakota","TRUE","","482","1.1","38009","Bottineau","{""38009"": ""100""}","Bottineau","38009","FALSE","FALSE","America/Chicago"
-"58794","48.26294","-102.77081","White Earth","ND","North Dakota","TRUE","","246","1.0","38061","Mountrail","{""38061"": ""100""}","Mountrail","38061","FALSE","FALSE","America/Chicago"
-"58795","48.64331","-103.15884","Wildrose","ND","North Dakota","TRUE","","142","0.3","38105","Williams","{""38105"": ""78.28"", ""38023"": ""21.72""}","Williams|Divide","38105|38023","FALSE","FALSE","America/Chicago"
-"58801","48.21311","-103.75325","Williston","ND","North Dakota","TRUE","","31508","14.6","38105","Williams","{""38105"": ""99.66"", ""38053"": ""0.34""}","Williams|McKenzie","38105|38053","FALSE","FALSE","America/Chicago"
-"58830","48.60606","-103.46567","Alamo","ND","North Dakota","TRUE","","278","0.4","38105","Williams","{""38105"": ""71.36"", ""38023"": ""28.64""}","Williams|Divide","38105|38023","FALSE","FALSE","America/Chicago"
-"58831","47.79474","-103.65455","Alexander","ND","North Dakota","TRUE","","698","0.8","38053","McKenzie","{""38053"": ""100""}","McKenzie","38053","FALSE","FALSE","America/Chicago"
-"58833","48.89109","-103.52301","Ambrose","ND","North Dakota","TRUE","","219","1.0","38023","Divide","{""38023"": ""100""}","Divide","38023","FALSE","FALSE","America/Chicago"
-"58835","47.77465","-103.44089","Arnegard","ND","North Dakota","TRUE","","255","0.4","38053","McKenzie","{""38053"": ""100""}","McKenzie","38053","FALSE","FALSE","America/Chicago"
-"58838","47.77632","-103.90172","Cartwright","ND","North Dakota","TRUE","","252","0.4","38053","McKenzie","{""38053"": ""100""}","McKenzie","38053","FALSE","FALSE","America/Denver"
-"58843","48.23382","-103.37928","Epping","ND","North Dakota","TRUE","","624","1.1","38105","Williams","{""38105"": ""100""}","Williams","38105","FALSE","FALSE","America/Chicago"
-"58844","48.88128","-103.74142","Fortuna","ND","North Dakota","TRUE","","83","0.1","38023","Divide","{""38023"": ""100""}","Divide","38023","FALSE","FALSE","America/Chicago"
-"58845","48.64854","-103.92544","Grenora","ND","North Dakota","TRUE","","381","0.6","38105","Williams","{""38105"": ""82.75"", ""38023"": ""17.25""}","Williams|Divide","38105|38023","FALSE","FALSE","America/Chicago"
-"58847","47.90633","-102.89825","Keene","ND","North Dakota","TRUE","","467","0.9","38053","McKenzie","{""38053"": ""100""}","McKenzie","38053","FALSE","FALSE","America/Chicago"
-"58849","48.31884","-103.1997","Ray","ND","North Dakota","TRUE","","790","1.2","38105","Williams","{""38105"": ""100""}","Williams","38105","FALSE","FALSE","America/Chicago"
-"58852","48.35672","-102.95361","Tioga","ND","North Dakota","TRUE","","1436","1.6","38105","Williams","{""38105"": ""95.6"", ""38061"": ""4.4""}","Williams|Mountrail","38105|38061","FALSE","FALSE","America/Chicago"
-"58853","48.07536","-103.83679","Trenton","ND","North Dakota","TRUE","","207","21.3","38105","Williams","{""38105"": ""100""}","Williams","38105","FALSE","FALSE","America/Chicago"
-"58854","47.81095","-103.14547","Watford City","ND","North Dakota","TRUE","","9543","6.1","38053","McKenzie","{""38053"": ""99.82"", ""38025"": ""0.18""}","McKenzie|Dunn","38053|38025","FALSE","FALSE","America/Chicago"
-"58856","48.58635","-103.71719","Zahl","ND","North Dakota","TRUE","","90","0.2","38105","Williams","{""38105"": ""63.36"", ""38023"": ""36.64""}","Williams|Divide","38105|38023","FALSE","FALSE","America/Chicago"
-"59001","45.52642","-109.5245","Absarokee","MT","Montana","TRUE","","1558","3.8","30095","Stillwater","{""30095"": ""96.53"", ""30009"": ""3.47""}","Stillwater|Carbon","30095|30009","FALSE","FALSE","America/Denver"
-"59002","45.98428","-108.67398","Acton","MT","Montana","TRUE","","127","0.8","30111","Yellowstone","{""30111"": ""100""}","Yellowstone","30111","FALSE","FALSE","America/Denver"
-"59003","45.46675","-106.19541","Ashland","MT","Montana","TRUE","","1359","0.8","30087","Rosebud","{""30087"": ""85.26"", ""30075"": ""14.74""}","Rosebud|Powder River","30087|30075","FALSE","FALSE","America/Denver"
-"59006","45.90861","-108.08042","Ballantine","MT","Montana","TRUE","","1461","8.7","30111","Yellowstone","{""30111"": ""100""}","Yellowstone","30111","FALSE","FALSE","America/Denver"
-"59007","45.13859","-109.14139","Bearcreek","MT","Montana","TRUE","","172","1.2","30009","Carbon","{""30009"": ""100""}","Carbon","30009","FALSE","FALSE","America/Denver"
-"59008","45.07284","-109.05888","Belfry","MT","Montana","TRUE","","512","1.9","30009","Carbon","{""30009"": ""100""}","Carbon","30009","FALSE","FALSE","America/Denver"
-"59010","45.99697","-107.30997","Bighorn","MT","Montana","TRUE","","167","0.2","30103","Treasure","{""30103"": ""52.94"", ""30003"": ""47.06""}","Treasure|Big Horn","30103|30003","FALSE","FALSE","America/Denver"
-"59011","45.9299","-109.97895","Big Timber","MT","Montana","TRUE","","3120","1.3","30097","Sweet Grass","{""30097"": ""100""}","Sweet Grass","30097","FALSE","FALSE","America/Denver"
-"59012","45.27317","-106.49272","Birney","MT","Montana","TRUE","","254","0.4","30087","Rosebud","{""30087"": ""100""}","Rosebud","30087","FALSE","FALSE","America/Denver"
-"59013","45.45604","-109.08717","Boyd","MT","Montana","TRUE","","128","16.4","30009","Carbon","{""30009"": ""100""}","Carbon","30009","FALSE","FALSE","America/Denver"
-"59014","45.19433","-108.76985","Bridger","MT","Montana","TRUE","","1712","1.6","30009","Carbon","{""30009"": ""100""}","Carbon","30009","FALSE","FALSE","America/Denver"
-"59015","46.07518","-108.83149","Broadview","MT","Montana","TRUE","","503","0.8","30111","Yellowstone","{""30111"": ""79.17"", ""30095"": ""12.5"", ""30065"": ""8.33""}","Yellowstone|Stillwater|Musselshell","30111|30095|30065","FALSE","FALSE","America/Denver"
-"59016","45.41077","-106.96221","Busby","MT","Montana","TRUE","","962","0.9","30003","Big Horn","{""30003"": ""100""}","Big Horn","30003","FALSE","FALSE","America/Denver"
-"59018","45.86107","-110.56342","Clyde Park","MT","Montana","TRUE","","496","0.9","30067","Park","{""30067"": ""100""}","Park","30067","FALSE","FALSE","America/Denver"
-"59019","45.65095","-109.2457","Columbus","MT","Montana","TRUE","","4380","5.0","30095","Stillwater","{""30095"": ""99.77"", ""30009"": ""0.23""}","Stillwater|Carbon","30095|30009","FALSE","FALSE","America/Denver"
-"59020","45.09558","-110.02575","Cooke City","MT","Montana","TRUE","","63","0.1","30067","Park","{""30067"": ""100""}","Park","30067","FALSE","FALSE","America/Denver"
-"59022","45.54103","-107.28431","Crow Agency","MT","Montana","TRUE","","2411","5.6","30003","Big Horn","{""30003"": ""100""}","Big Horn","30003","FALSE","FALSE","America/Denver"
-"59024","46.20104","-107.71123","Custer","MT","Montana","TRUE","","444","0.3","30111","Yellowstone","{""30111"": ""90.51"", ""30003"": ""9.49""}","Yellowstone|Big Horn","30111|30003","FALSE","FALSE","America/Denver"
-"59025","45.09485","-106.63038","Decker","MT","Montana","TRUE","","44","0.0","30003","Big Horn","{""30003"": ""100""}","Big Horn","30003","FALSE","FALSE","America/Denver"
-"59026","45.47218","-108.80055","Edgar","MT","Montana","TRUE","","200","3.8","30009","Carbon","{""30009"": ""100""}","Carbon","30009","FALSE","FALSE","America/Denver"
-"59027","45.24021","-110.9063","Emigrant","MT","Montana","TRUE","","628","1.1","30067","Park","{""30067"": ""100""}","Park","30067","FALSE","FALSE","America/Denver"
-"59028","45.34492","-109.68506","Fishtail","MT","Montana","TRUE","","512","0.9","30095","Stillwater","{""30095"": ""100""}","Stillwater","30095","FALSE","FALSE","America/Denver"
-"59029","45.40732","-108.80085","Fromberg","MT","Montana","TRUE","","847","3.2","30009","Carbon","{""30009"": ""100""}","Carbon","30009","FALSE","FALSE","America/Denver"
-"59030","45.08481","-110.57248","Gardiner","MT","Montana","TRUE","","1211","1.0","30067","Park","{""30067"": ""100""}","Park","30067","FALSE","FALSE","America/Denver"
-"59031","45.50144","-107.42008","Garryowen","MT","Montana","TRUE","","418","2.3","30003","Big Horn","{""30003"": ""100""}","Big Horn","30003","FALSE","FALSE","America/Denver"
-"59032","47.0227","-108.74436","Grass Range","MT","Montana","TRUE","","511","0.5","30027","Fergus","{""30027"": ""96.08"", ""30069"": ""3.92""}","Fergus|Petroleum","30027|30069","FALSE","FALSE","America/Denver"
-"59033","45.72862","-109.70192","Greycliff","MT","Montana","TRUE","","276","1.4","30097","Sweet Grass","{""30097"": ""100""}","Sweet Grass","30097","FALSE","FALSE","America/Denver"
-"59034","45.69788","-107.68068","Hardin","MT","Montana","TRUE","","5454","2.8","30003","Big Horn","{""30003"": ""100""}","Big Horn","30003","FALSE","FALSE","America/Denver"
-"59035","45.29237","-107.96723","Fort Smith","MT","Montana","TRUE","","204","1.0","30003","Big Horn","{""30003"": ""100""}","Big Horn","30003","FALSE","FALSE","America/Denver"
-"59036","46.48592","-109.93495","Harlowton","MT","Montana","TRUE","","1428","1.0","30107","Wheatland","{""30107"": ""100""}","Wheatland","30107","FALSE","FALSE","America/Denver"
-"59037","45.80627","-108.21282","Huntley","MT","Montana","TRUE","","1752","3.6","30111","Yellowstone","{""30111"": ""100""}","Yellowstone","30111","FALSE","FALSE","America/Denver"
-"59038","46.19039","-107.22703","Hysham","MT","Montana","TRUE","","531","0.2","30103","Treasure","{""30103"": ""96.19"", ""30003"": ""3.81""}","Treasure|Big Horn","30103|30003","FALSE","FALSE","America/Denver"
-"59039","46.69466","-107.29021","Ingomar","MT","Montana","TRUE","","43","0.0","30087","Rosebud","{""30087"": ""100""}","Rosebud","30087","FALSE","FALSE","America/Denver"
-"59041","45.49743","-108.97689","Joliet","MT","Montana","TRUE","","1748","3.4","30009","Carbon","{""30009"": ""97.44"", ""30111"": ""2.56""}","Carbon|Yellowstone","30009|30111","FALSE","FALSE","America/Denver"
-"59043","45.52619","-106.6504","Lame Deer","MT","Montana","TRUE","","2990","2.8","30087","Rosebud","{""30087"": ""77.66"", ""30003"": ""22.34""}","Rosebud|Big Horn","30087|30003","FALSE","FALSE","America/Denver"
-"59044","45.63607","-108.74525","Laurel","MT","Montana","TRUE","","12206","26.6","30111","Yellowstone","{""30111"": ""96.76"", ""30009"": ""3.24""}","Yellowstone|Carbon","30111|30009","FALSE","FALSE","America/Denver"
-"59046","46.4014","-109.00853","Lavina","MT","Montana","TRUE","","379","0.3","30037","Golden Valley","{""30037"": ""97.69"", ""30065"": ""2.31""}","Golden Valley|Musselshell","30037|30065","FALSE","FALSE","America/Denver"
-"59047","45.54805","-110.569","Livingston","MT","Montana","TRUE","","12728","5.5","30067","Park","{""30067"": ""100""}","Park","30067","FALSE","FALSE","America/Denver"
-"59050","45.24092","-107.5271","Lodge Grass","MT","Montana","TRUE","","1649","1.0","30003","Big Horn","{""30003"": ""100""}","Big Horn","30003","FALSE","FALSE","America/Denver"
-"59052","45.43122","-110.18328","McLeod","MT","Montana","TRUE","","157","0.1","30097","Sweet Grass","{""30097"": ""82.01"", ""30067"": ""17.99""}","Sweet Grass|Park","30097|30067","FALSE","FALSE","America/Denver"
-"59053","46.44501","-110.4549","Martinsdale","MT","Montana","TRUE","","363","0.2","30059","Meagher","{""30059"": ""53.11"", ""30107"": ""46.89""}","Meagher|Wheatland","30059|30107","FALSE","FALSE","America/Denver"
-"59054","46.64222","-107.73319","Melstone","MT","Montana","TRUE","","268","0.2","30065","Musselshell","{""30065"": ""75.24"", ""30087"": ""24.76""}","Musselshell|Rosebud","30065|30087","FALSE","FALSE","America/Denver"
-"59055","46.10414","-109.78086","Melville","MT","Montana","TRUE","","86","0.1","30097","Sweet Grass","{""30097"": ""100""}","Sweet Grass","30097","FALSE","FALSE","America/Denver"
-"59057","45.85203","-108.94186","Molt","MT","Montana","TRUE","","741","1.1","30111","Yellowstone","{""30111"": ""75.87"", ""30095"": ""24.13""}","Yellowstone|Stillwater","30111|30095","FALSE","FALSE","America/Denver"
-"59058","47.08099","-107.78958","Mosby","MT","Montana","TRUE","","21","0.0","30033","Garfield","{""30033"": ""100""}","Garfield","30033","FALSE","FALSE","America/Denver"
-"59059","46.40735","-108.07478","Musselshell","MT","Montana","TRUE","","179","0.3","30065","Musselshell","{""30065"": ""100""}","Musselshell","30065","FALSE","FALSE","America/Denver"
-"59061","45.34997","-109.87707","Nye","MT","Montana","TRUE","","250","0.4","30095","Stillwater","{""30095"": ""100""}","Stillwater","30095","FALSE","FALSE","America/Denver"
-"59062","45.0903","-106.14997","Otter","MT","Montana","TRUE","","16","0.0","30075","Powder River","{""30075"": ""100""}","Powder River","30075","FALSE","FALSE","America/Denver"
-"59063","45.66524","-108.96381","Park City","MT","Montana","TRUE","","1985","10.5","30095","Stillwater","{""30095"": ""100""}","Stillwater","30095","FALSE","FALSE","America/Denver"
-"59064","45.88238","-107.90781","Pompeys Pillar","MT","Montana","TRUE","","246","0.6","30111","Yellowstone","{""30111"": ""89.08"", ""30003"": ""10.92""}","Yellowstone|Big Horn","30111|30003","FALSE","FALSE","America/Denver"
-"59065","45.27875","-110.73092","Pray","MT","Montana","TRUE","","169","1.1","30067","Park","{""30067"": ""100""}","Park","30067","FALSE","FALSE","America/Denver"
-"59066","45.33741","-108.49493","Pryor","MT","Montana","TRUE","","576","0.7","30003","Big Horn","{""30003"": ""100""}","Big Horn","30003","FALSE","FALSE","America/Denver"
-"59067","45.98262","-109.2388","Rapelje","MT","Montana","TRUE","","254","0.3","30095","Stillwater","{""30095"": ""100""}","Stillwater","30095","FALSE","FALSE","America/Denver"
-"59068","45.15835","-109.44983","Red Lodge","MT","Montana","TRUE","","3355","2.5","30009","Carbon","{""30009"": ""100""}","Carbon","30009","FALSE","FALSE","America/Denver"
-"59069","45.71888","-109.60081","Reed Point","MT","Montana","TRUE","","580","0.6","30095","Stillwater","{""30095"": ""74.62"", ""30097"": ""25.38""}","Stillwater|Sweet Grass","30095|30097","FALSE","FALSE","America/Denver"
-"59070","45.36906","-109.18417","Roberts","MT","Montana","TRUE","","1033","2.5","30009","Carbon","{""30009"": ""100""}","Carbon","30009","FALSE","FALSE","America/Denver"
-"59071","45.26807","-109.56486","Roscoe","MT","Montana","TRUE","","167","0.7","30009","Carbon","{""30009"": ""100""}","Carbon","30009","FALSE","FALSE","America/Denver"
-"59072","46.4691","-108.53766","Roundup","MT","Montana","TRUE","","4328","1.7","30065","Musselshell","{""30065"": ""98.99"", ""30069"": ""1.01""}","Musselshell|Petroleum","30065|30069","FALSE","FALSE","America/Denver"
-"59074","46.36786","-109.31631","Ryegate","MT","Montana","TRUE","","331","0.2","30037","Golden Valley","{""30037"": ""100""}","Golden Valley","30037","FALSE","FALSE","America/Denver"
-"59075","45.39855","-107.88926","Saint Xavier","MT","Montana","TRUE","","229","0.3","30003","Big Horn","{""30003"": ""100""}","Big Horn","30003","FALSE","FALSE","America/Denver"
-"59076","46.27876","-107.07395","Sanders","MT","Montana","TRUE","","80","2.6","30103","Treasure","{""30103"": ""100""}","Treasure","30103","FALSE","FALSE","America/Denver"
-"59077","47.1839","-107.58782","Sand Springs","MT","Montana","TRUE","","91","0.1","30033","Garfield","{""30033"": ""100""}","Garfield","30033","FALSE","FALSE","America/Denver"
-"59078","46.34172","-109.53547","Shawmut","MT","Montana","TRUE","","168","0.3","30107","Wheatland","{""30107"": ""91.03"", ""30037"": ""8.97""}","Wheatland|Golden Valley","30107|30037","FALSE","FALSE","America/Denver"
-"59079","46.06377","-108.35367","Shepherd","MT","Montana","TRUE","","3707","4.0","30111","Yellowstone","{""30111"": ""100""}","Yellowstone","30111","FALSE","FALSE","America/Denver"
-"59081","45.00851","-109.97286","Silver Gate","MT","Montana","TRUE","","24","10.6","30067","Park","{""30067"": ""100""}","Park","30067","FALSE","FALSE","America/Denver"
-"59082","45.74188","-110.2249","Springdale","MT","Montana","TRUE","","19","25.0","30067","Park","{""30067"": ""100""}","Park","30067","FALSE","FALSE","America/Denver"
-"59085","46.36321","-110.10736","Two Dot","MT","Montana","TRUE","","130","0.2","30107","Wheatland","{""30107"": ""100""}","Wheatland","30107","FALSE","FALSE","America/Denver"
-"59086","46.06705","-110.56173","Wilsall","MT","Montana","TRUE","","914","0.7","30067","Park","{""30067"": ""89.41"", ""30031"": ""9.77"", ""30059"": ""0.83""}","Park|Gallatin|Meagher","30067|30031|30059","FALSE","FALSE","America/Denver"
-"59087","47.13236","-108.21161","Winnett","MT","Montana","TRUE","","391","0.1","30069","Petroleum","{""30069"": ""100""}","Petroleum","30069","FALSE","FALSE","America/Denver"
-"59088","46.1305","-108.04196","Worden","MT","Montana","TRUE","","1536","1.8","30111","Yellowstone","{""30111"": ""100""}","Yellowstone","30111","FALSE","FALSE","America/Denver"
-"59089","45.0772","-107.35526","Wyola","MT","Montana","TRUE","","471","0.7","30003","Big Horn","{""30003"": ""100""}","Big Horn","30003","FALSE","FALSE","America/Denver"
-"59101","45.61405","-108.38675","Billings","MT","Montana","TRUE","","41409","31.4","30111","Yellowstone","{""30111"": ""99.94"", ""30003"": ""0.06""}","Yellowstone|Big Horn","30111|30003","FALSE","FALSE","America/Denver"
-"59102","45.77569","-108.58016","Billings","MT","Montana","TRUE","","46611","1218.5","30111","Yellowstone","{""30111"": ""100""}","Yellowstone","30111","FALSE","FALSE","America/Denver"
-"59105","45.88269","-108.50585","Billings","MT","Montana","TRUE","","30943","114.9","30111","Yellowstone","{""30111"": ""100""}","Yellowstone","30111","FALSE","FALSE","America/Denver"
-"59106","45.80792","-108.6834","Billings","MT","Montana","TRUE","","18281","72.7","30111","Yellowstone","{""30111"": ""100""}","Yellowstone","30111","FALSE","FALSE","America/Denver"
-"59201","48.1729","-105.66875","Wolf Point","MT","Montana","TRUE","","5838","1.6","30085","Roosevelt","{""30085"": ""91.59"", ""30055"": ""5.16"", ""30105"": ""3.25""}","Roosevelt|McCone|Valley","30085|30055|30105","FALSE","FALSE","America/Denver"
-"59211","48.69453","-104.35835","Antelope","MT","Montana","TRUE","","129","0.5","30091","Sheridan","{""30091"": ""100""}","Sheridan","30091","FALSE","FALSE","America/Denver"
-"59212","48.18722","-104.19086","Bainville","MT","Montana","TRUE","","536","0.7","30085","Roosevelt","{""30085"": ""100""}","Roosevelt","30085","FALSE","FALSE","America/Denver"
-"59213","48.18464","-104.87858","Brockton","MT","Montana","TRUE","","814","0.7","30085","Roosevelt","{""30085"": ""90.28"", ""30083"": ""9.72""}","Roosevelt|Richland","30085|30083","FALSE","FALSE","America/Denver"
-"59214","47.30032","-106.01361","Brockway","MT","Montana","TRUE","","90","0.1","30055","McCone","{""30055"": ""100""}","McCone","30055","FALSE","FALSE","America/Denver"
-"59215","47.50394","-105.74629","Circle","MT","Montana","TRUE","","985","0.3","30055","McCone","{""30055"": ""96.12"", ""30021"": ""3.88""}","McCone|Dawson","30055|30021","FALSE","FALSE","America/Denver"
-"59217","47.5793","-104.24949","Crane","MT","Montana","TRUE","","153","17.0","30083","Richland","{""30083"": ""100""}","Richland","30083","FALSE","FALSE","America/Denver"
-"59218","48.10261","-104.55206","Culbertson","MT","Montana","TRUE","","893","1.1","30085","Roosevelt","{""30085"": ""94.39"", ""30083"": ""5.61""}","Roosevelt|Richland","30085|30083","FALSE","FALSE","America/Denver"
-"59219","48.53856","-104.17756","Dagmar","MT","Montana","TRUE","","293","0.4","30091","Sheridan","{""30091"": ""100""}","Sheridan","30091","FALSE","FALSE","America/Denver"
-"59221","47.92807","-104.19224","Fairview","MT","Montana","TRUE","","1870","2.5","30083","Richland","{""30083"": ""74.85"", ""38053"": ""25.15""}","Richland|McKenzie","30083|38053","FALSE","FALSE","America/Denver"
-"59222","48.7042","-105.14527","Flaxville","MT","Montana","TRUE","","175","0.3","30019","Daniels","{""30019"": ""100""}","Daniels","30019","FALSE","FALSE","America/Denver"
-"59223","47.89166","-106.2098","Fort Peck","MT","Montana","TRUE","","382","0.7","30105","Valley","{""30105"": ""85.16"", ""30055"": ""14.84""}","Valley|McCone","30105|30055","FALSE","FALSE","America/Denver"
-"59225","48.28847","-105.97934","Frazer","MT","Montana","TRUE","","550","0.7","30105","Valley","{""30105"": ""100""}","Valley","30105","FALSE","FALSE","America/Denver"
-"59226","48.34852","-104.58038","Froid","MT","Montana","TRUE","","492","0.6","30085","Roosevelt","{""30085"": ""100""}","Roosevelt","30085","FALSE","FALSE","America/Denver"
-"59230","48.09859","-106.83538","Glasgow","MT","Montana","TRUE","","4484","1.1","30105","Valley","{""30105"": ""100""}","Valley","30105","FALSE","FALSE","America/Denver"
-"59231","48.39802","-106.54804","Saint Marie","MT","Montana","TRUE","","470","91.0","30105","Valley","{""30105"": ""100""}","Valley","30105","FALSE","FALSE","America/Denver"
-"59240","48.84216","-106.23569","Glentana","MT","Montana","TRUE","","34","0.3","30105","Valley","{""30105"": ""100""}","Valley","30105","FALSE","FALSE","America/Denver"
-"59241","48.46975","-107.05858","Hinsdale","MT","Montana","TRUE","","375","0.1","30105","Valley","{""30105"": ""100""}","Valley","30105","FALSE","FALSE","America/Denver"
-"59242","48.43505","-104.4389","Homestead","MT","Montana","TRUE","","84","0.9","30091","Sheridan","{""30091"": ""100""}","Sheridan","30091","FALSE","FALSE","America/Denver"
-"59243","47.75213","-104.67241","Lambert","MT","Montana","TRUE","","230","0.2","30083","Richland","{""30083"": ""100""}","Richland","30083","FALSE","FALSE","America/Denver"
-"59244","48.60423","-106.31973","Larslan","MT","Montana","TRUE","","23","0.0","30105","Valley","{""30105"": ""100""}","Valley","30105","FALSE","FALSE","America/Denver"
-"59247","48.51172","-104.53503","Medicine Lake","MT","Montana","TRUE","","314","0.8","30091","Sheridan","{""30091"": ""100""}","Sheridan","30091","FALSE","FALSE","America/Denver"
-"59248","48.26666","-106.26984","Nashua","MT","Montana","TRUE","","690","0.5","30105","Valley","{""30105"": ""100""}","Valley","30105","FALSE","FALSE","America/Denver"
-"59250","48.85642","-106.57354","Opheim","MT","Montana","TRUE","","188","0.1","30105","Valley","{""30105"": ""100""}","Valley","30105","FALSE","FALSE","America/Denver"
-"59252","48.92181","-104.80926","Outlook","MT","Montana","TRUE","","88","0.2","30091","Sheridan","{""30091"": ""100""}","Sheridan","30091","FALSE","FALSE","America/Denver"
-"59253","48.71822","-105.8763","Peerless","MT","Montana","TRUE","","78","0.1","30019","Daniels","{""30019"": ""100""}","Daniels","30019","FALSE","FALSE","America/Denver"
-"59254","48.74875","-104.6076","Plentywood","MT","Montana","TRUE","","2032","2.9","30091","Sheridan","{""30091"": ""100""}","Sheridan","30091","FALSE","FALSE","America/Denver"
-"59255","48.2446","-105.16804","Poplar","MT","Montana","TRUE","","3247","1.9","30085","Roosevelt","{""30085"": ""98.37"", ""30083"": ""1.63""}","Roosevelt|Richland","30085|30083","FALSE","FALSE","America/Denver"
-"59256","48.91653","-104.55461","Raymond","MT","Montana","TRUE","","26","0.2","30091","Sheridan","{""30091"": ""100""}","Sheridan","30091","FALSE","FALSE","America/Denver"
-"59257","48.75446","-104.94202","Redstone","MT","Montana","TRUE","","50","0.1","30091","Sheridan","{""30091"": ""100""}","Sheridan","30091","FALSE","FALSE","America/Denver"
-"59258","48.57825","-104.69461","Reserve","MT","Montana","TRUE","","91","0.2","30091","Sheridan","{""30091"": ""76.36"", ""30085"": ""23.64""}","Sheridan|Roosevelt","30091|30085","FALSE","FALSE","America/Denver"
-"59259","47.68491","-105.08661","Richey","MT","Montana","TRUE","","303","0.2","30021","Dawson","{""30021"": ""87.36"", ""30083"": ""12.64""}","Dawson|Richland","30021|30083","FALSE","FALSE","America/Denver"
-"59260","48.8247","-106.07217","Richland","MT","Montana","TRUE","","139","0.2","30105","Valley","{""30105"": ""73.64"", ""30019"": ""26.36""}","Valley|Daniels","30105|30019","FALSE","FALSE","America/Denver"
-"59261","48.5825","-107.38539","Saco","MT","Montana","TRUE","","586","0.5","30071","Phillips","{""30071"": ""92.5"", ""30105"": ""7.5""}","Phillips|Valley","30071|30105","FALSE","FALSE","America/Denver"
-"59262","47.48778","-104.50347","Savage","MT","Montana","TRUE","","636","0.9","30083","Richland","{""30083"": ""94.81"", ""30021"": ""5.19""}","Richland|Dawson","30083|30021","FALSE","FALSE","America/Denver"
-"59263","48.78344","-105.52668","Scobey","MT","Montana","TRUE","","1445","0.8","30019","Daniels","{""30019"": ""100""}","Daniels","30019","FALSE","FALSE","America/Denver"
-"59270","47.57573","-104.08014","Sidney","MT","Montana","TRUE","","8771","3.5","30083","Richland","{""30083"": ""98.27"", ""38053"": ""1.73""}","Richland|McKenzie","30083|38053","FALSE","FALSE","America/Denver"
-"59274","47.82087","-105.47882","Vida","MT","Montana","TRUE","","281","0.3","30055","McCone","{""30055"": ""100""}","McCone","30055","FALSE","FALSE","America/Denver"
-"59275","48.87778","-104.20482","Westby","MT","Montana","TRUE","","439","0.4","30091","Sheridan","{""30091"": ""85.64"", ""38023"": ""14.36""}","Sheridan|Divide","30091|38023","FALSE","FALSE","America/Denver"
-"59276","48.93196","-105.18495","Whitetail","MT","Montana","TRUE","","22","0.1","30019","Daniels","{""30019"": ""100""}","Daniels","30019","FALSE","FALSE","America/Denver"
-"59301","46.29014","-105.7613","Miles City","MT","Montana","TRUE","","11408","1.4","30017","Custer","{""30017"": ""99.52"", ""30075"": ""0.19"", ""30087"": ""0.18"", ""30033"": ""0.11""}","Custer|Powder River|Rosebud|Garfield","30017|30075|30087|30033","FALSE","FALSE","America/Denver"
-"59311","45.18077","-104.43071","Alzada","MT","Montana","TRUE","","162","0.1","30011","Carter","{""30011"": ""100""}","Carter","30011","FALSE","FALSE","America/Denver"
-"59312","47.01122","-106.20525","Angela","MT","Montana","TRUE","","30","0.0","30033","Garfield","{""30033"": ""100""}","Garfield","30033","FALSE","FALSE","America/Denver"
-"59313","46.30559","-104.24971","Baker","MT","Montana","TRUE","","2322","1.0","30025","Fallon","{""30025"": ""100""}","Fallon","30025","FALSE","FALSE","America/Denver"
-"59314","45.07361","-105.36909","Biddle","MT","Montana","TRUE","","89","0.1","30075","Powder River","{""30075"": ""100""}","Powder River","30075","FALSE","FALSE","America/Denver"
-"59315","47.44087","-104.86239","Bloomfield","MT","Montana","TRUE","","79","0.1","30021","Dawson","{""30021"": ""100""}","Dawson","30021","FALSE","FALSE","America/Denver"
-"59317","45.36386","-105.49341","Broadus","MT","Montana","TRUE","","1121","0.2","30075","Powder River","{""30075"": ""100""}","Powder River","30075","FALSE","FALSE","America/Denver"
-"59318","47.49141","-107.48345","Brusett","MT","Montana","TRUE","","127","0.1","30033","Garfield","{""30033"": ""100""}","Garfield","30033","FALSE","FALSE","America/Denver"
-"59322","47.01452","-106.67992","Cohagen","MT","Montana","TRUE","","53","0.0","30033","Garfield","{""30033"": ""100""}","Garfield","30033","FALSE","FALSE","America/Denver"
-"59323","45.98499","-106.67019","Colstrip","MT","Montana","TRUE","","2510","15.7","30087","Rosebud","{""30087"": ""100""}","Rosebud","30087","FALSE","FALSE","America/Denver"
-"59324","45.78588","-104.5465","Ekalaka","MT","Montana","TRUE","","933","0.2","30011","Carter","{""30011"": ""100""}","Carter","30011","FALSE","FALSE","America/Denver"
-"59326","46.76265","-104.84331","Fallon","MT","Montana","TRUE","","226","0.2","30079","Prairie","{""30079"": ""95.09"", ""30021"": ""4.91""}","Prairie|Dawson","30079|30021","FALSE","FALSE","America/Denver"
-"59327","46.2524","-106.70624","Forsyth","MT","Montana","TRUE","","2535","0.5","30087","Rosebud","{""30087"": ""100""}","Rosebud","30087","FALSE","FALSE","America/Denver"
-"59330","47.09687","-104.75104","Glendive","MT","Montana","TRUE","","8499","2.7","30021","Dawson","{""30021"": ""99.58"", ""30079"": ""0.42""}","Dawson|Prairie","30021|30079","FALSE","FALSE","America/Denver"
-"59332","45.36711","-104.76841","Hammond","MT","Montana","TRUE","","204","0.1","30011","Carter","{""30011"": ""100""}","Carter","30011","FALSE","FALSE","America/Denver"
-"59333","46.28008","-106.21822","Hathaway","MT","Montana","TRUE","","10","0.5","30087","Rosebud","{""30087"": ""100""}","Rosebud","30087","FALSE","FALSE","America/Denver"
-"59336","46.33786","-105.01486","Ismay","MT","Montana","TRUE","","188","0.1","30017","Custer","{""30017"": ""73.44"", ""30025"": ""26.56""}","Custer|Fallon","30017|30025","FALSE","FALSE","America/Denver"
-"59337","47.3852","-106.80168","Jordan","MT","Montana","TRUE","","708","0.1","30033","Garfield","{""30033"": ""100""}","Garfield","30033","FALSE","FALSE","America/Denver"
-"59338","46.63606","-105.65565","Kinsey","MT","Montana","TRUE","","154","0.8","30017","Custer","{""30017"": ""100""}","Custer","30017","FALSE","FALSE","America/Denver"
-"59339","47.26372","-105.18592","Lindsay","MT","Montana","TRUE","","127","0.2","30021","Dawson","{""30021"": ""100""}","Dawson","30021","FALSE","FALSE","America/Denver"
-"59343","45.65675","-105.43796","Olive","MT","Montana","TRUE","","54","0.1","30075","Powder River","{""30075"": ""100""}","Powder River","30075","FALSE","FALSE","America/Denver"
-"59344","46.41199","-104.59529","Plevna","MT","Montana","TRUE","","487","0.4","30025","Fallon","{""30025"": ""100""}","Fallon","30025","FALSE","FALSE","America/Denver"
-"59347","46.43522","-106.35207","Rosebud","MT","Montana","TRUE","","301","0.1","30087","Rosebud","{""30087"": ""99.07"", ""30017"": ""0.93""}","Rosebud|Custer","30087|30017","FALSE","FALSE","America/Denver"
-"59349","46.88446","-105.5113","Terry","MT","Montana","TRUE","","1032","0.3","30079","Prairie","{""30079"": ""97.7"", ""30017"": ""2.3""}","Prairie|Custer","30079|30017","FALSE","FALSE","America/Denver"
-"59351","45.75297","-105.76015","Volborg","MT","Montana","TRUE","","176","0.1","30075","Powder River","{""30075"": ""78.5"", ""30017"": ""21.5""}","Powder River|Custer","30075|30017","FALSE","FALSE","America/Denver"
-"59353","46.96525","-104.24901","Wibaux","MT","Montana","TRUE","","1122","0.5","30109","Wibaux","{""30109"": ""100""}","Wibaux","30109","FALSE","FALSE","America/Denver"
-"59354","46.20586","-104.39787","Willard","MT","Montana","TRUE","","49","0.4","30025","Fallon","{""30025"": ""100""}","Fallon","30025","FALSE","FALSE","America/Denver"
-"59401","47.51103","-111.27552","Great Falls","MT","Montana","TRUE","","13605","1690.7","30013","Cascade","{""30013"": ""100""}","Cascade","30013","FALSE","FALSE","America/Denver"
-"59404","47.63059","-111.3471","Great Falls","MT","Montana","TRUE","","27576","29.4","30013","Cascade","{""30013"": ""99.81"", ""30015"": ""0.19""}","Cascade|Chouteau","30013|30015","FALSE","FALSE","America/Denver"
-"59405","47.30522","-111.28924","Great Falls","MT","Montana","TRUE","","31701","30.2","30013","Cascade","{""30013"": ""100""}","Cascade","30013","FALSE","FALSE","America/Denver"
-"59410","47.48417","-112.65292","Augusta","MT","Montana","TRUE","","580","0.2","30049","Lewis and Clark","{""30049"": ""96.25"", ""30099"": ""3.75""}","Lewis and Clark|Teton","30049|30099","FALSE","FALSE","America/Denver"
-"59411","48.87269","-113.40785","Babb","MT","Montana","TRUE","","721","1.2","30035","Glacier","{""30035"": ""100""}","Glacier","30035","FALSE","FALSE","America/Denver"
-"59412","47.32714","-110.89218","Belt","MT","Montana","TRUE","","1458","1.5","30013","Cascade","{""30013"": ""100""}","Cascade","30013","FALSE","FALSE","America/Denver"
-"59414","47.52734","-111.26797","Black Eagle","MT","Montana","TRUE","","923","214.4","30013","Cascade","{""30013"": ""100""}","Cascade","30013","FALSE","FALSE","America/Denver"
-"59416","48.04197","-111.49611","Brady","MT","Montana","TRUE","","280","0.3","30073","Pondera","{""30073"": ""79.53"", ""30015"": ""20.47""}","Pondera|Chouteau","30073|30015","FALSE","FALSE","America/Denver"
-"59417","48.67267","-113.191","Browning","MT","Montana","TRUE","","8007","2.2","30035","Glacier","{""30035"": ""100""}","Glacier","30035","FALSE","FALSE","America/Denver"
-"59418","46.79849","-109.91236","Buffalo","MT","Montana","TRUE","","73","0.3","30045","Judith Basin","{""30045"": ""77.89"", ""30027"": ""22.11""}","Judith Basin|Fergus","30045|30027","FALSE","FALSE","America/Denver"
-"59419","47.9863","-112.40858","Bynum","MT","Montana","TRUE","","92","0.4","30099","Teton","{""30099"": ""100""}","Teton","30099","FALSE","FALSE","America/Denver"
-"59420","47.88107","-111.03349","Carter","MT","Montana","TRUE","","202","0.3","30015","Chouteau","{""30015"": ""100""}","Chouteau","30015","FALSE","FALSE","America/Denver"
-"59421","47.19433","-111.7364","Cascade","MT","Montana","TRUE","","1727","1.0","30013","Cascade","{""30013"": ""93.12"", ""30049"": ""6.88""}","Cascade|Lewis and Clark","30013|30049","FALSE","FALSE","America/Denver"
-"59422","47.81702","-112.47353","Choteau","MT","Montana","TRUE","","2672","1.0","30099","Teton","{""30099"": ""100""}","Teton","30099","FALSE","FALSE","America/Denver"
-"59424","47.34665","-110.09078","Coffee Creek","MT","Montana","TRUE","","18","0.1","30027","Fergus","{""30027"": ""82.76"", ""30045"": ""17.24""}","Fergus|Judith Basin","30027|30045","FALSE","FALSE","America/Denver"
-"59425","48.1826","-111.8938","Conrad","MT","Montana","TRUE","","3601","2.5","30073","Pondera","{""30073"": ""98.37"", ""30099"": ""1.63""}","Pondera|Teton","30073|30099","FALSE","FALSE","America/Denver"
-"59427","48.7707","-112.54045","Cut Bank","MT","Montana","TRUE","","4504","1.6","30035","Glacier","{""30035"": ""100""}","Glacier","30035","FALSE","FALSE","America/Denver"
-"59430","47.43476","-109.84057","Denton","MT","Montana","TRUE","","403","0.3","30027","Fergus","{""30027"": ""95.59"", ""30045"": ""4.41""}","Fergus|Judith Basin","30027|30045","FALSE","FALSE","America/Denver"
-"59432","48.16843","-112.40394","Dupuyer","MT","Montana","TRUE","","135","1.1","30073","Pondera","{""30073"": ""100""}","Pondera","30073","FALSE","FALSE","America/Denver"
-"59433","47.89582","-111.70633","Dutton","MT","Montana","TRUE","","504","0.5","30099","Teton","{""30099"": ""100""}","Teton","30099","FALSE","FALSE","America/Denver"
-"59434","48.48135","-113.35533","East Glacier Park","MT","Montana","TRUE","","500","0.7","30035","Glacier","{""30035"": ""100""}","Glacier","30035","FALSE","FALSE","America/Denver"
-"59436","47.61494","-112.07166","Fairfield","MT","Montana","TRUE","","1993","2.9","30099","Teton","{""30099"": ""100""}","Teton","30099","FALSE","FALSE","America/Denver"
-"59440","47.72565","-111.15714","Floweree","MT","Montana","TRUE","","115","0.3","30015","Chouteau","{""30015"": ""60"", ""30013"": ""40""}","Chouteau|Cascade","30015|30013","FALSE","FALSE","America/Denver"
-"59441","46.85917","-108.98017","Forest Grove","MT","Montana","TRUE","","44","0.1","30027","Fergus","{""30027"": ""100""}","Fergus","30027","FALSE","FALSE","America/Denver"
-"59442","47.92931","-110.61174","Fort Benton","MT","Montana","TRUE","","1925","0.9","30015","Chouteau","{""30015"": ""100""}","Chouteau","30015","FALSE","FALSE","America/Denver"
-"59443","47.56256","-111.82913","Fort Shaw","MT","Montana","TRUE","","434","2.7","30013","Cascade","{""30013"": ""92.48"", ""30099"": ""7.52""}","Cascade|Teton","30013|30099","FALSE","FALSE","America/Denver"
-"59444","48.72526","-111.36528","Galata","MT","Montana","TRUE","","253","0.3","30051","Liberty","{""30051"": ""67.04"", ""30101"": ""32.96""}","Liberty|Toole","30051|30101","FALSE","FALSE","America/Denver"
-"59446","47.61922","-110.19282","Geraldine","MT","Montana","TRUE","","593","0.3","30015","Chouteau","{""30015"": ""100""}","Chouteau","30015","FALSE","FALSE","America/Denver"
-"59447","47.26791","-110.47452","Geyser","MT","Montana","TRUE","","329","0.3","30045","Judith Basin","{""30045"": ""100""}","Judith Basin","30045","FALSE","FALSE","America/Denver"
-"59448","48.25859","-112.81432","Heart Butte","MT","Montana","TRUE","","753","2.6","30073","Pondera","{""30073"": ""100""}","Pondera","30073","FALSE","FALSE","America/Denver"
-"59450","47.59739","-110.73125","Highwood","MT","Montana","TRUE","","555","0.6","30015","Chouteau","{""30015"": ""100""}","Chouteau","30015","FALSE","FALSE","America/Denver"
-"59451","47.38991","-109.38616","Hilger","MT","Montana","TRUE","","149","0.2","30027","Fergus","{""30027"": ""100""}","Fergus","30027","FALSE","FALSE","America/Denver"
-"59452","46.86223","-110.10977","Hobson","MT","Montana","TRUE","","529","0.5","30045","Judith Basin","{""30045"": ""100""}","Judith Basin","30045","FALSE","FALSE","America/Denver"
-"59453","46.64953","-109.63272","Judith Gap","MT","Montana","TRUE","","265","0.2","30107","Wheatland","{""30107"": ""76.52"", ""30027"": ""18.78"", ""30045"": ""4.7""}","Wheatland|Fergus|Judith Basin","30107|30027|30045","FALSE","FALSE","America/Denver"
-"59454","48.71695","-112.02463","Kevin","MT","Montana","TRUE","","192","0.6","30101","Toole","{""30101"": ""100""}","Toole","30101","FALSE","FALSE","America/Denver"
-"59456","48.26448","-111.38867","Ledger","MT","Montana","TRUE","","260","0.3","30101","Toole","{""30101"": ""75.54"", ""30051"": ""15.88"", ""30073"": ""8.58""}","Toole|Liberty|Pondera","30101|30051|30073","FALSE","FALSE","America/Denver"
-"59457","47.09217","-109.36047","Lewistown","MT","Montana","TRUE","","8887","3.2","30027","Fergus","{""30027"": ""100""}","Fergus","30027","FALSE","FALSE","America/Denver"
-"59460","48.08759","-110.50842","Loma","MT","Montana","TRUE","","174","0.2","30015","Chouteau","{""30015"": ""100""}","Chouteau","30015","FALSE","FALSE","America/Denver"
-"59461","48.48476","-111.20669","Lothair","MT","Montana","TRUE","","22","0.2","30051","Liberty","{""30051"": ""100""}","Liberty","30051","FALSE","FALSE","America/Denver"
-"59462","47.11797","-109.88733","Moccasin","MT","Montana","TRUE","","172","0.5","30045","Judith Basin","{""30045"": ""100""}","Judith Basin","30045","FALSE","FALSE","America/Denver"
-"59463","47.03563","-110.83089","Monarch","MT","Montana","TRUE","","85","0.1","30013","Cascade","{""30013"": ""100"", ""30045"": ""0""}","Cascade|Judith Basin","30013|30045","FALSE","FALSE","America/Denver"
-"59464","46.9045","-109.65198","Moore","MT","Montana","TRUE","","452","0.8","30027","Fergus","{""30027"": ""96"", ""30045"": ""4""}","Fergus|Judith Basin","30027|30045","FALSE","FALSE","America/Denver"
-"59465","46.89031","-110.72027","Neihart","MT","Montana","TRUE","","37","0.3","30013","Cascade","{""30013"": ""100""}","Cascade","30013","FALSE","FALSE","America/Denver"
-"59466","48.75838","-111.6667","Oilmont","MT","Montana","TRUE","","111","0.3","30101","Toole","{""30101"": ""100""}","Toole","30101","FALSE","FALSE","America/Denver"
-"59467","48.07972","-112.58013","Pendroy","MT","Montana","TRUE","","109","0.2","30099","Teton","{""30099"": ""100""}","Teton","30099","FALSE","FALSE","America/Denver"
-"59468","47.71024","-111.6216","Power","MT","Montana","TRUE","","647","1.0","30099","Teton","{""30099"": ""85.11"", ""30013"": ""14.89""}","Teton|Cascade","30099|30013","FALSE","FALSE","America/Denver"
-"59469","47.20156","-110.70173","Raynesford","MT","Montana","TRUE","","147","0.6","30045","Judith Basin","{""30045"": ""100""}","Judith Basin","30045","FALSE","FALSE","America/Denver"
-"59471","47.42131","-108.75945","Roy","MT","Montana","TRUE","","399","0.2","30027","Fergus","{""30027"": ""100""}","Fergus","30027","FALSE","FALSE","America/Denver"
-"59472","47.3985","-111.16353","Sand Coulee","MT","Montana","TRUE","","654","6.3","30013","Cascade","{""30013"": ""100""}","Cascade","30013","FALSE","FALSE","America/Denver"
-"59474","48.51891","-111.73779","Shelby","MT","Montana","TRUE","","3497","1.9","30101","Toole","{""30101"": ""100""}","Toole","30101","FALSE","FALSE","America/Denver"
-"59477","47.45509","-111.91955","Simms","MT","Montana","TRUE","","429","2.3","30013","Cascade","{""30013"": ""100""}","Cascade","30013","FALSE","FALSE","America/Denver"
-"59479","47.01982","-110.3311","Stanford","MT","Montana","TRUE","","691","0.4","30045","Judith Basin","{""30045"": ""100""}","Judith Basin","30045","FALSE","FALSE","America/Denver"
-"59480","47.19327","-111.17675","Stockett","MT","Montana","TRUE","","637","1.0","30013","Cascade","{""30013"": ""100""}","Cascade","30013","FALSE","FALSE","America/Denver"
-"59482","48.87288","-111.90786","Sunburst","MT","Montana","TRUE","","689","0.8","30101","Toole","{""30101"": ""100""}","Toole","30101","FALSE","FALSE","America/Denver"
-"59483","47.45534","-111.69927","Sun River","MT","Montana","TRUE","","612","2.3","30013","Cascade","{""30013"": ""100""}","Cascade","30013","FALSE","FALSE","America/Denver"
-"59484","48.96737","-111.65972","Sweet Grass","MT","Montana","TRUE","","100","0.3","30101","Toole","{""30101"": ""100""}","Toole","30101","FALSE","FALSE","America/Denver"
-"59485","47.40656","-111.54358","Ulm","MT","Montana","TRUE","","562","10.7","30013","Cascade","{""30013"": ""100""}","Cascade","30013","FALSE","FALSE","America/Denver"
-"59486","48.31576","-112.38402","Valier","MT","Montana","TRUE","","1267","0.9","30073","Pondera","{""30073"": ""100""}","Pondera","30073","FALSE","FALSE","America/Denver"
-"59487","47.58346","-111.6436","Vaughn","MT","Montana","TRUE","","1267","9.3","30013","Cascade","{""30013"": ""97.1"", ""30099"": ""2.9""}","Cascade|Teton","30013|30099","FALSE","FALSE","America/Denver"
-"59489","47.64038","-109.23598","Winifred","MT","Montana","TRUE","","341","0.2","30027","Fergus","{""30027"": ""100""}","Fergus","30027","FALSE","FALSE","America/Denver"
-"59501","48.68878","-109.79899","Havre","MT","Montana","TRUE","","12731","3.8","30041","Hill","{""30041"": ""100""}","Hill","30041","FALSE","FALSE","America/Denver"
-"59520","48.0365","-109.94551","Big Sandy","MT","Montana","TRUE","","1033","0.4","30015","Chouteau","{""30015"": ""100""}","Chouteau","30015","FALSE","FALSE","America/Denver"
-"59521","48.30096","-109.94099","Box Elder","MT","Montana","TRUE","","3784","5.0","30041","Hill","{""30041"": ""63.65"", ""30015"": ""36.35""}","Hill|Chouteau","30041|30015","FALSE","FALSE","America/Denver"
-"59522","48.54167","-111.00323","Chester","MT","Montana","TRUE","","1802","0.8","30051","Liberty","{""30051"": ""100""}","Liberty","30051","FALSE","FALSE","America/Denver"
-"59523","48.54585","-109.22978","Chinook","MT","Montana","TRUE","","2153","0.6","30005","Blaine","{""30005"": ""100""}","Blaine","30005","FALSE","FALSE","America/Denver"
-"59524","48.23564","-108.31918","Dodson","MT","Montana","TRUE","","732","0.4","30071","Phillips","{""30071"": ""50.53"", ""30005"": ""49.47""}","Phillips|Blaine","30071|30005","FALSE","FALSE","America/Denver"
-"59525","48.69459","-110.31205","Gildford","MT","Montana","TRUE","","242","0.3","30041","Hill","{""30041"": ""100""}","Hill","30041","FALSE","FALSE","America/Denver"
-"59526","48.43613","-108.71494","Harlem","MT","Montana","TRUE","","2621","1.3","30005","Blaine","{""30005"": ""100""}","Blaine","30005","FALSE","FALSE","America/Denver"
-"59527","48.04656","-108.74784","Hays","MT","Montana","TRUE","","1006","1.8","30005","Blaine","{""30005"": ""100""}","Blaine","30005","FALSE","FALSE","America/Denver"
-"59528","48.56857","-110.40091","Hingham","MT","Montana","TRUE","","279","0.7","30041","Hill","{""30041"": ""100""}","Hill","30041","FALSE","FALSE","America/Denver"
-"59529","48.82648","-108.63418","Hogeland","MT","Montana","TRUE","","216","0.2","30005","Blaine","{""30005"": ""100""}","Blaine","30005","FALSE","FALSE","America/Denver"
-"59530","48.62509","-110.69139","Inverness","MT","Montana","TRUE","","83","0.1","30041","Hill","{""30041"": ""100""}","Hill","30041","FALSE","FALSE","America/Denver"
-"59531","48.78978","-110.80521","Joplin","MT","Montana","TRUE","","319","0.5","30051","Liberty","{""30051"": ""98.34"", ""30041"": ""1.66""}","Liberty|Hill","30051|30041","FALSE","FALSE","America/Denver"
-"59532","48.5771","-110.09665","Kremlin","MT","Montana","TRUE","","135","0.2","30041","Hill","{""30041"": ""100""}","Hill","30041","FALSE","FALSE","America/Denver"
-"59535","47.96372","-109.26738","Lloyd","MT","Montana","TRUE","","86","0.0","30005","Blaine","{""30005"": ""100""}","Blaine","30005","FALSE","FALSE","America/Denver"
-"59537","48.82806","-108.04618","Loring","MT","Montana","TRUE","","49","0.0","30071","Phillips","{""30071"": ""100""}","Phillips","30071","FALSE","FALSE","America/Denver"
-"59538","48.07292","-107.8404","Malta","MT","Montana","TRUE","","2861","0.4","30071","Phillips","{""30071"": ""100""}","Phillips","30071","FALSE","FALSE","America/Denver"
-"59540","48.59871","-110.55555","Rudyard","MT","Montana","TRUE","","315","0.3","30041","Hill","{""30041"": ""100""}","Hill","30041","FALSE","FALSE","America/Denver"
-"59542","48.78746","-108.37609","Turner","MT","Montana","TRUE","","165","0.3","30005","Blaine","{""30005"": ""100""}","Blaine","30005","FALSE","FALSE","America/Denver"
-"59544","48.84308","-107.55539","Whitewater","MT","Montana","TRUE","","188","0.1","30071","Phillips","{""30071"": ""100""}","Phillips","30071","FALSE","FALSE","America/Denver"
-"59545","48.93242","-111.16864","Whitlash","MT","Montana","TRUE","","53","0.2","30051","Liberty","{""30051"": ""100""}","Liberty","30051","FALSE","FALSE","America/Denver"
-"59546","47.76973","-108.59198","Zortman","MT","Montana","TRUE","","102","0.1","30071","Phillips","{""30071"": ""100""}","Phillips","30071","FALSE","FALSE","America/Denver"
-"59547","48.65706","-109.01579","Zurich","MT","Montana","TRUE","","73","1.0","30005","Blaine","{""30005"": ""100""}","Blaine","30005","FALSE","FALSE","America/Denver"
-"59601","46.53983","-112.17642","Helena","MT","Montana","TRUE","","31901","89.2","30049","Lewis and Clark","{""30049"": ""99.94"", ""30043"": ""0.06""}","Lewis and Clark|Jefferson","30049|30043","FALSE","FALSE","America/Denver"
-"59602","46.74009","-111.91254","Helena","MT","Montana","TRUE","","27157","19.7","30049","Lewis and Clark","{""30049"": ""100""}","Lewis and Clark","30049","FALSE","FALSE","America/Denver"
-"59631","46.3121","-112.36463","Basin","MT","Montana","TRUE","","236","0.5","30043","Jefferson","{""30043"": ""100""}","Jefferson","30043","FALSE","FALSE","America/Denver"
-"59632","46.17687","-112.0216","Boulder","MT","Montana","TRUE","","1488","1.1","30043","Jefferson","{""30043"": ""100""}","Jefferson","30043","FALSE","FALSE","America/Denver"
-"59633","46.81903","-112.35917","Canyon Creek","MT","Montana","TRUE","","225","0.4","30049","Lewis and Clark","{""30049"": ""100""}","Lewis and Clark","30049","FALSE","FALSE","America/Denver"
-"59634","46.46896","-111.97465","Clancy","MT","Montana","TRUE","","5606","14.1","30043","Jefferson","{""30043"": ""100""}","Jefferson","30043","FALSE","FALSE","America/Denver"
-"59635","46.56251","-111.82796","East Helena","MT","Montana","TRUE","","6859","36.7","30049","Lewis and Clark","{""30049"": ""94.05"", ""30007"": ""3.16"", ""30043"": ""2.79""}","Lewis and Clark|Broadwater|Jefferson","30049|30007|30043","FALSE","FALSE","America/Denver"
-"59636","46.61972","-112.10993","Fort Harrison","MT","Montana","TRUE","","40","7.9","30049","Lewis and Clark","{""30049"": ""100""}","Lewis and Clark","30049","FALSE","FALSE","America/Denver"
-"59638","46.36037","-111.96815","Jefferson City","MT","Montana","TRUE","","703","2.8","30043","Jefferson","{""30043"": ""100""}","Jefferson","30043","FALSE","FALSE","America/Denver"
-"59639","47.09251","-112.69228","Lincoln","MT","Montana","TRUE","","1036","0.6","30049","Lewis and Clark","{""30049"": ""100""}","Lewis and Clark","30049","FALSE","FALSE","America/Denver"
-"59640","46.73543","-112.30527","Marysville","MT","Montana","TRUE","","43","4.8","30049","Lewis and Clark","{""30049"": ""100""}","Lewis and Clark","30049","FALSE","FALSE","America/Denver"
-"59642","46.28236","-110.72436","Ringling","MT","Montana","TRUE","","44","0.1","30059","Meagher","{""30059"": ""100""}","Meagher","30059","FALSE","FALSE","America/Denver"
-"59643","46.17096","-111.58999","Toston","MT","Montana","TRUE","","363","0.7","30007","Broadwater","{""30007"": ""100""}","Broadwater","30007","FALSE","FALSE","America/Denver"
-"59644","46.42113","-111.43103","Townsend","MT","Montana","TRUE","","4236","2.2","30007","Broadwater","{""30007"": ""100""}","Broadwater","30007","FALSE","FALSE","America/Denver"
-"59645","46.68044","-111.04716","White Sulphur Springs","MT","Montana","TRUE","","1702","0.4","30059","Meagher","{""30059"": ""100""}","Meagher","30059","FALSE","FALSE","America/Denver"
-"59647","46.48174","-111.65808","Winston","MT","Montana","TRUE","","359","1.8","30007","Broadwater","{""30007"": ""100""}","Broadwater","30007","FALSE","FALSE","America/Denver"
-"59648","47.08191","-112.1179","Wolf Creek","MT","Montana","TRUE","","490","0.3","30049","Lewis and Clark","{""30049"": ""100""}","Lewis and Clark","30049","FALSE","FALSE","America/Denver"
-"59701","46.03422","-112.46687","Butte","MT","Montana","TRUE","","33533","28.6","30093","Silver Bow","{""30093"": ""99.63"", ""30043"": ""0.37""}","Silver Bow|Jefferson","30093|30043","FALSE","FALSE","America/Denver"
-"59703","46.04559","-112.53752","Butte","MT","Montana","TRUE","","90","38.7","30093","Silver Bow","{""30093"": ""100""}","Silver Bow","30093","FALSE","FALSE","America/Denver"
-"59710","45.06984","-112.06068","Alder","MT","Montana","TRUE","","273","0.2","30057","Madison","{""30057"": ""100""}","Madison","30057","FALSE","FALSE","America/Denver"
-"59711","46.10629","-113.0659","Anaconda","MT","Montana","TRUE","","8839","5.5","30023","Deer Lodge","{""30023"": ""95.63"", ""30093"": ""2.54"", ""30039"": ""1.82""}","Deer Lodge|Silver Bow|Granite","30023|30093|30039","FALSE","FALSE","America/Denver"
-"59713","46.67999","-112.59066","Avon","MT","Montana","TRUE","","201","0.5","30077","Powell","{""30077"": ""100""}","Powell","30077","FALSE","FALSE","America/Denver"
-"59714","45.97984","-111.13976","Belgrade","MT","Montana","TRUE","","20759","18.0","30031","Gallatin","{""30031"": ""100""}","Gallatin","30031","FALSE","FALSE","America/Denver"
-"59715","45.82857","-110.90996","Bozeman","MT","Montana","TRUE","","36185","30.2","30031","Gallatin","{""30031"": ""99.82"", ""30067"": ""0.18""}","Gallatin|Park","30031|30067","FALSE","FALSE","America/Denver"
-"59716","45.10267","-111.48685","Big Sky","MT","Montana","TRUE","","2346","2.3","30031","Gallatin","{""30031"": ""75.53"", ""30057"": ""24.47""}","Gallatin|Madison","30031|30057","FALSE","FALSE","America/Denver"
-"59718","45.57816","-111.12639","Bozeman","MT","Montana","TRUE","","37882","61.1","30031","Gallatin","{""30031"": ""100""}","Gallatin","30031","FALSE","FALSE","America/Denver"
-"59720","44.87821","-111.64397","Cameron","MT","Montana","TRUE","","150","0.2","30057","Madison","{""30057"": ""100""}","Madison","30057","FALSE","FALSE","America/Denver"
-"59721","45.88027","-111.83654","Cardwell","MT","Montana","TRUE","","562","0.8","30057","Madison","{""30057"": ""53.81"", ""30043"": ""46.19""}","Madison|Jefferson","30057|30043","FALSE","FALSE","America/Denver"
-"59722","46.36252","-112.76562","Deer Lodge","MT","Montana","TRUE","","5747","6.1","30077","Powell","{""30077"": ""96.23"", ""30023"": ""3.77""}","Powell|Deer Lodge","30077|30023","FALSE","FALSE","America/Denver"
-"59724","44.70971","-112.7468","Dell","MT","Montana","TRUE","","63","0.0","30001","Beaverhead","{""30001"": ""100""}","Beaverhead","30001","FALSE","FALSE","America/Denver"
-"59725","45.08977","-112.83786","Dillon","MT","Montana","TRUE","","8037","1.4","30001","Beaverhead","{""30001"": ""99.95"", ""30057"": ""0.05""}","Beaverhead|Madison","30001|30057","FALSE","FALSE","America/Denver"
-"59727","45.80308","-112.80862","Divide","MT","Montana","TRUE","","154","0.2","30093","Silver Bow","{""30093"": ""82.35"", ""30001"": ""17.65""}","Silver Bow|Beaverhead","30093|30001","FALSE","FALSE","America/Denver"
-"59728","46.51578","-112.41988","Elliston","MT","Montana","TRUE","","271","0.5","30077","Powell","{""30077"": ""100""}","Powell","30077","FALSE","FALSE","America/Denver"
-"59729","45.29334","-111.65892","Ennis","MT","Montana","TRUE","","2319","1.7","30057","Madison","{""30057"": ""100""}","Madison","30057","FALSE","FALSE","America/Denver"
-"59730","45.22766","-111.20626","Gallatin Gateway","MT","Montana","TRUE","","2161","1.2","30031","Gallatin","{""30031"": ""100""}","Gallatin","30031","FALSE","FALSE","America/Denver"
-"59731","46.57902","-112.77361","Garrison","MT","Montana","TRUE","","118","0.3","30077","Powell","{""30077"": ""100""}","Powell","30077","FALSE","FALSE","America/Denver"
-"59732","45.48812","-112.7331","Glen","MT","Montana","TRUE","","313","0.9","30001","Beaverhead","{""30001"": ""71.09"", ""30057"": ""28.91""}","Beaverhead|Madison","30001|30057","FALSE","FALSE","America/Denver"
-"59733","46.58869","-112.88581","Gold Creek","MT","Montana","TRUE","","273","0.6","30077","Powell","{""30077"": ""100""}","Powell","30077","FALSE","FALSE","America/Denver"
-"59735","45.65028","-111.86389","Harrison","MT","Montana","TRUE","","240","0.5","30057","Madison","{""30057"": ""100""}","Madison","30057","FALSE","FALSE","America/Denver"
-"59736","45.33381","-113.39401","Jackson","MT","Montana","TRUE","","128","0.1","30001","Beaverhead","{""30001"": ""100""}","Beaverhead","30001","FALSE","FALSE","America/Denver"
-"59739","44.63692","-112.17097","Lima","MT","Montana","TRUE","","250","0.1","30001","Beaverhead","{""30001"": ""100""}","Beaverhead","30001","FALSE","FALSE","America/Denver"
-"59740","45.47646","-111.82133","McAllister","MT","Montana","TRUE","","297","1.0","30057","Madison","{""30057"": ""100""}","Madison","30057","FALSE","FALSE","America/Denver"
-"59741","45.77232","-111.36076","Manhattan","MT","Montana","TRUE","","4679","11.5","30031","Gallatin","{""30031"": ""100""}","Gallatin","30031","FALSE","FALSE","America/Denver"
-"59743","45.66872","-112.67788","Melrose","MT","Montana","TRUE","","125","0.6","30093","Silver Bow","{""30093"": ""84.33"", ""30001"": ""15.67""}","Silver Bow|Beaverhead","30093|30001","FALSE","FALSE","America/Denver"
-"59745","45.58955","-111.61387","Norris","MT","Montana","TRUE","","95","0.2","30057","Madison","{""30057"": ""100""}","Madison","30057","FALSE","FALSE","America/Denver"
-"59746","45.36589","-113.05783","Polaris","MT","Montana","TRUE","","162","0.4","30001","Beaverhead","{""30001"": ""100""}","Beaverhead","30001","FALSE","FALSE","America/Denver"
-"59747","45.71301","-111.94574","Pony","MT","Montana","TRUE","","193","1.3","30057","Madison","{""30057"": ""100""}","Madison","30057","FALSE","FALSE","America/Denver"
-"59748","46.04668","-112.69922","Ramsay","MT","Montana","TRUE","","189","3.6","30093","Silver Bow","{""30093"": ""100""}","Silver Bow","30093","FALSE","FALSE","America/Denver"
-"59749","45.44578","-112.12315","Sheridan","MT","Montana","TRUE","","1964","3.8","30057","Madison","{""30057"": ""100""}","Madison","30057","FALSE","FALSE","America/Denver"
-"59750","45.95131","-112.7184","Butte","MT","Montana","TRUE","","378","2.2","30093","Silver Bow","{""30093"": ""100""}","Silver Bow","30093","FALSE","FALSE","America/Denver"
-"59751","45.63289","-112.47829","Silver Star","MT","Montana","TRUE","","286","0.5","30057","Madison","{""30057"": ""100""}","Madison","30057","FALSE","FALSE","America/Denver"
-"59752","45.94918","-111.50639","Three Forks","MT","Montana","TRUE","","3560","3.6","30031","Gallatin","{""30031"": ""83.21"", ""30007"": ""16.76"", ""30043"": ""0.03""}","Gallatin|Broadwater|Jefferson","30031|30007|30043","FALSE","FALSE","America/Denver"
-"59754","45.46327","-112.33843","Twin Bridges","MT","Montana","TRUE","","1084","1.4","30057","Madison","{""30057"": ""100""}","Madison","30057","FALSE","FALSE","America/Denver"
-"59755","45.32848","-111.93792","Virginia City","MT","Montana","TRUE","","207","1.0","30057","Madison","{""30057"": ""100""}","Madison","30057","FALSE","FALSE","America/Denver"
-"59756","46.17993","-112.82788","Warm Springs","MT","Montana","TRUE","","457","15.3","30023","Deer Lodge","{""30023"": ""100""}","Deer Lodge","30023","FALSE","FALSE","America/Denver"
-"59758","44.7432","-111.18791","West Yellowstone","MT","Montana","TRUE","","1434","1.7","30031","Gallatin","{""30031"": ""100""}","Gallatin","30031","FALSE","FALSE","America/Denver"
-"59759","45.84574","-112.19624","Whitehall","MT","Montana","TRUE","","3819","3.2","30043","Jefferson","{""30043"": ""89.21"", ""30057"": ""9.47"", ""30093"": ""1.32""}","Jefferson|Madison|Silver Bow","30043|30057|30093","FALSE","FALSE","America/Denver"
-"59760","45.76446","-111.6359","Willow Creek","MT","Montana","TRUE","","288","1.9","30031","Gallatin","{""30031"": ""100""}","Gallatin","30031","FALSE","FALSE","America/Denver"
-"59761","45.63591","-113.55342","Wisdom","MT","Montana","TRUE","","261","0.1","30001","Beaverhead","{""30001"": ""100""}","Beaverhead","30001","FALSE","FALSE","America/Denver"
-"59762","45.78639","-113.15688","Wise River","MT","Montana","TRUE","","244","0.2","30001","Beaverhead","{""30001"": ""71.32"", ""30023"": ""28.68""}","Beaverhead|Deer Lodge","30001|30023","FALSE","FALSE","America/Denver"
-"59801","46.85627","-114.01491","Missoula","MT","Montana","TRUE","","32844","1864.0","30063","Missoula","{""30063"": ""100""}","Missoula","30063","FALSE","FALSE","America/Denver"
-"59802","46.90361","-113.91981","Missoula","MT","Montana","TRUE","","19259","161.6","30063","Missoula","{""30063"": ""100""}","Missoula","30063","FALSE","FALSE","America/Denver"
-"59803","46.79395","-113.96285","Missoula","MT","Montana","TRUE","","17775","86.1","30063","Missoula","{""30063"": ""100""}","Missoula","30063","FALSE","FALSE","America/Denver"
-"59804","46.90102","-114.25103","Missoula","MT","Montana","TRUE","","8729","26.8","30063","Missoula","{""30063"": ""100""}","Missoula","30063","FALSE","FALSE","America/Denver"
-"59808","46.98298","-114.09606","Missoula","MT","Montana","TRUE","","19651","57.9","30063","Missoula","{""30063"": ""100""}","Missoula","30063","FALSE","FALSE","America/Denver"
-"59820","46.89599","-114.63709","Alberton","MT","Montana","TRUE","","2017","2.0","30061","Mineral","{""30061"": ""51.95"", ""30063"": ""48.05""}","Mineral|Missoula","30061|30063","FALSE","FALSE","America/Denver"
-"59821","47.17258","-114.06047","Arlee","MT","Montana","TRUE","","2519","4.1","30047","Lake","{""30047"": ""74.25"", ""30063"": ""24.53"", ""30089"": ""1.22""}","Lake|Missoula|Sanders","30047|30063|30089","FALSE","FALSE","America/Denver"
-"59823","46.93538","-113.49452","Bonner","MT","Montana","TRUE","","1982","2.4","30063","Missoula","{""30063"": ""100""}","Missoula","30063","FALSE","FALSE","America/Denver"
-"59824","47.42325","-114.20355","Charlo","MT","Montana","TRUE","","1301","5.6","30047","Lake","{""30047"": ""100""}","Lake","30047","FALSE","FALSE","America/Denver"
-"59825","46.62697","-113.68306","Clinton","MT","Montana","TRUE","","2450","1.8","30063","Missoula","{""30063"": ""91.46"", ""30039"": ""8.54""}","Missoula|Granite","30063|30039","FALSE","FALSE","America/Denver"
-"59826","47.43796","-113.69484","Condon","MT","Montana","TRUE","","486","0.4","30063","Missoula","{""30063"": ""100""}","Missoula","30063","FALSE","FALSE","America/Denver"
-"59827","45.89486","-114.04548","Conner","MT","Montana","TRUE","","251","1.3","30081","Ravalli","{""30081"": ""100""}","Ravalli","30081","FALSE","FALSE","America/Denver"
-"59828","46.33331","-113.96528","Corvallis","MT","Montana","TRUE","","5718","13.2","30081","Ravalli","{""30081"": ""100""}","Ravalli","30081","FALSE","FALSE","America/Denver"
-"59829","45.78631","-114.28224","Darby","MT","Montana","TRUE","","2282","1.2","30081","Ravalli","{""30081"": ""100""}","Ravalli","30081","FALSE","FALSE","America/Denver"
-"59830","47.42448","-115.34366","De Borgia","MT","Montana","TRUE","","165","1.9","30061","Mineral","{""30061"": ""100""}","Mineral","30061","FALSE","FALSE","America/Denver"
-"59831","47.27752","-114.35275","Dixon","MT","Montana","TRUE","","458","1.6","30089","Sanders","{""30089"": ""100""}","Sanders","30089","FALSE","FALSE","America/Denver"
-"59832","46.68119","-113.23879","Drummond","MT","Montana","TRUE","","693","1.0","30039","Granite","{""30039"": ""100""}","Granite","30039","FALSE","FALSE","America/Denver"
-"59833","46.65156","-114.06221","Florence","MT","Montana","TRUE","","5608","12.5","30081","Ravalli","{""30081"": ""79.83"", ""30063"": ""20.17""}","Ravalli|Missoula","30081|30063","FALSE","FALSE","America/Denver"
-"59834","47.07465","-114.23107","Frenchtown","MT","Montana","TRUE","","2377","12.5","30063","Missoula","{""30063"": ""100""}","Missoula","30063","FALSE","FALSE","America/Denver"
-"59837","46.54511","-113.27498","Hall","MT","Montana","TRUE","","481","1.1","30039","Granite","{""30039"": ""100""}","Granite","30039","FALSE","FALSE","America/Denver"
-"59840","46.18544","-114.18925","Hamilton","MT","Montana","TRUE","","13649","11.3","30081","Ravalli","{""30081"": ""100""}","Ravalli","30081","FALSE","FALSE","America/Denver"
-"59841","46.33391","-114.22324","Pinesdale","MT","Montana","TRUE","","945","281.5","30081","Ravalli","{""30081"": ""100""}","Ravalli","30081","FALSE","FALSE","America/Denver"
-"59842","47.35383","-115.41785","Haugan","MT","Montana","TRUE","","81","0.2","30061","Mineral","{""30061"": ""100""}","Mineral","30061","FALSE","FALSE","America/Denver"
-"59843","46.8341","-112.96136","Helmville","MT","Montana","TRUE","","300","0.3","30077","Powell","{""30077"": ""100""}","Powell","30077","FALSE","FALSE","America/Denver"
-"59844","48.05714","-115.96858","Heron","MT","Montana","TRUE","","719","2.3","30089","Sanders","{""30089"": ""100""}","Sanders","30089","FALSE","FALSE","America/Denver"
-"59845","47.6584","-114.54417","Hot Springs","MT","Montana","TRUE","","1298","1.1","30089","Sanders","{""30089"": ""94.35"", ""30047"": ""3.88"", ""30029"": ""1.77""}","Sanders|Lake|Flathead","30089|30047|30029","FALSE","FALSE","America/Denver"
-"59846","47.14829","-114.51102","Huson","MT","Montana","TRUE","","1357","2.5","30063","Missoula","{""30063"": ""100""}","Missoula","30063","FALSE","FALSE","America/Denver"
-"59847","46.70575","-114.43727","Lolo","MT","Montana","TRUE","","6101","6.6","30063","Missoula","{""30063"": ""99.08"", ""16049"": ""0.92""}","Missoula|Idaho","30063|16049","FALSE","FALSE","America/Denver"
-"59848","47.70146","-114.6913","Lonepine","MT","Montana","TRUE","","124","1.4","30089","Sanders","{""30089"": ""100""}","Sanders","30089","FALSE","FALSE","America/Denver"
-"59851","46.87084","-113.87795","Milltown","MT","Montana","TRUE","","109","195.2","30063","Missoula","{""30063"": ""100""}","Missoula","30063","FALSE","FALSE","America/Denver"
-"59853","48.05713","-115.76969","Noxon","MT","Montana","TRUE","","770","1.1","30089","Sanders","{""30089"": ""100""}","Sanders","30089","FALSE","FALSE","America/Denver"
-"59854","47.03541","-113.08407","Ovando","MT","Montana","TRUE","","159","0.2","30077","Powell","{""30077"": ""100""}","Powell","30077","FALSE","FALSE","America/Denver"
-"59855","47.60547","-114.11852","Pablo","MT","Montana","TRUE","","782","415.4","30047","Lake","{""30047"": ""100""}","Lake","30047","FALSE","FALSE","America/Denver"
-"59856","47.33704","-114.79019","Paradise","MT","Montana","TRUE","","449","2.2","30089","Sanders","{""30089"": ""100""}","Sanders","30089","FALSE","FALSE","America/Denver"
-"59858","46.28846","-113.44897","Philipsburg","MT","Montana","TRUE","","1532","0.7","30039","Granite","{""30039"": ""100""}","Granite","30039","FALSE","FALSE","America/Denver"
-"59859","47.53049","-114.82135","Plains","MT","Montana","TRUE","","3300","1.8","30089","Sanders","{""30089"": ""100""}","Sanders","30089","FALSE","FALSE","America/Denver"
-"59860","47.71027","-114.16687","Polson","MT","Montana","TRUE","","10504","16.7","30047","Lake","{""30047"": ""100""}","Lake","30047","FALSE","FALSE","America/Denver"
-"59863","47.30957","-114.17891","Ravalli","MT","Montana","TRUE","","90","2.8","30047","Lake","{""30047"": ""100""}","Lake","30047","FALSE","FALSE","America/Denver"
-"59864","47.52899","-114.11019","Ronan","MT","Montana","TRUE","","7177","14.6","30047","Lake","{""30047"": ""100""}","Lake","30047","FALSE","FALSE","America/Denver"
-"59865","47.32883","-114.01011","Saint Ignatius","MT","Montana","TRUE","","3870","9.6","30047","Lake","{""30047"": ""100""}","Lake","30047","FALSE","FALSE","America/Denver"
-"59866","47.32669","-115.15643","Saint Regis","MT","Montana","TRUE","","743","1.3","30061","Mineral","{""30061"": ""100""}","Mineral","30061","FALSE","FALSE","America/Denver"
-"59867","47.42241","-115.59571","Saltese","MT","Montana","TRUE","","63","0.4","30061","Mineral","{""30061"": ""100""}","Mineral","30061","FALSE","FALSE","America/Denver"
-"59868","47.21409","-113.50499","Seeley Lake","MT","Montana","TRUE","","1827","3.9","30063","Missoula","{""30063"": ""99.9"", ""30077"": ""0.1""}","Missoula|Powell","30063|30077","FALSE","FALSE","America/Denver"
-"59870","46.51569","-114.06162","Stevensville","MT","Montana","TRUE","","11052","16.8","30081","Ravalli","{""30081"": ""100""}","Ravalli","30081","FALSE","FALSE","America/Denver"
-"59871","45.86574","-113.83209","Sula","MT","Montana","TRUE","","325","0.4","30081","Ravalli","{""30081"": ""100""}","Ravalli","30081","FALSE","FALSE","America/Denver"
-"59872","47.11284","-114.90011","Superior","MT","Montana","TRUE","","2146","1.7","30061","Mineral","{""30061"": ""100""}","Mineral","30061","FALSE","FALSE","America/Denver"
-"59873","47.70258","-115.282","Thompson Falls","MT","Montana","TRUE","","3220","1.6","30089","Sanders","{""30089"": ""100""}","Sanders","30089","FALSE","FALSE","America/Denver"
-"59874","47.80341","-115.62681","Trout Creek","MT","Montana","TRUE","","1410","1.5","30089","Sanders","{""30089"": ""100""}","Sanders","30089","FALSE","FALSE","America/Denver"
-"59875","46.40794","-114.26067","Victor","MT","Montana","TRUE","","3855","11.5","30081","Ravalli","{""30081"": ""100""}","Ravalli","30081","FALSE","FALSE","America/Denver"
-"59901","48.22816","-114.38225","Kalispell","MT","Montana","TRUE","","55529","47.4","30029","Flathead","{""30029"": ""100""}","Flathead","30029","FALSE","FALSE","America/Denver"
-"59910","47.79522","-114.30204","Big Arm","MT","Montana","TRUE","","491","3.4","30047","Lake","{""30047"": ""100""}","Lake","30047","FALSE","FALSE","America/Denver"
-"59911","47.8815","-113.86899","Bigfork","MT","Montana","TRUE","","8377","8.2","30029","Flathead","{""30029"": ""65.6"", ""30047"": ""34.4""}","Flathead|Lake","30029|30047","FALSE","FALSE","America/Denver"
-"59912","48.40467","-114.16435","Columbia Falls","MT","Montana","TRUE","","15525","42.8","30029","Flathead","{""30029"": ""100""}","Flathead","30029","FALSE","FALSE","America/Denver"
-"59913","48.41716","-113.94615","Coram","MT","Montana","TRUE","","537","3.6","30029","Flathead","{""30029"": ""100""}","Flathead","30029","FALSE","FALSE","America/Denver"
-"59914","47.85966","-114.28323","Dayton","MT","Montana","TRUE","","282","7.8","30047","Lake","{""30047"": ""100""}","Lake","30047","FALSE","FALSE","America/Denver"
-"59915","47.84314","-114.40228","Elmo","MT","Montana","TRUE","","367","4.2","30047","Lake","{""30047"": ""100""}","Lake","30047","FALSE","FALSE","America/Denver"
-"59916","48.28106","-113.52864","Essex","MT","Montana","TRUE","","156","0.6","30029","Flathead","{""30029"": ""100""}","Flathead","30029","FALSE","FALSE","America/Denver"
-"59917","48.90264","-114.92853","Eureka","MT","Montana","TRUE","","4769","7.1","30053","Lincoln","{""30053"": ""100""}","Lincoln","30053","FALSE","FALSE","America/Denver"
-"59918","48.7718","-114.85673","Fortine","MT","Montana","TRUE","","747","3.2","30053","Lincoln","{""30053"": ""100""}","Lincoln","30053","FALSE","FALSE","America/Denver"
-"59919","47.98892","-113.32507","Hungry Horse","MT","Montana","TRUE","","634","0.3","30029","Flathead","{""30029"": ""100""}","Flathead","30029","FALSE","FALSE","America/Denver"
-"59920","48.06676","-114.53269","Kila","MT","Montana","TRUE","","1652","3.5","30029","Flathead","{""30029"": ""100""}","Flathead","30029","FALSE","FALSE","America/Denver"
-"59922","47.9969","-114.18714","Lakeside","MT","Montana","TRUE","","2189","25.0","30029","Flathead","{""30029"": ""97.47"", ""30047"": ""2.53""}","Flathead|Lake","30029|30047","FALSE","FALSE","America/Denver"
-"59923","48.26411","-115.32285","Libby","MT","Montana","TRUE","","9230","2.6","30053","Lincoln","{""30053"": ""100""}","Lincoln","30053","FALSE","FALSE","America/Denver"
-"59925","48.04831","-114.83043","Marion","MT","Montana","TRUE","","1423","1.5","30029","Flathead","{""30029"": ""100""}","Flathead","30029","FALSE","FALSE","America/Denver"
-"59926","48.36303","-114.00651","Martin City","MT","Montana","TRUE","","384","15.4","30029","Flathead","{""30029"": ""100""}","Flathead","30029","FALSE","FALSE","America/Denver"
-"59927","48.5721","-114.68407","Olney","MT","Montana","TRUE","","345","0.6","30029","Flathead","{""30029"": ""100""}","Flathead","30029","FALSE","FALSE","America/Denver"
-"59928","48.78561","-114.42467","Polebridge","MT","Montana","TRUE","","186","0.1","30029","Flathead","{""30029"": ""100""}","Flathead","30029","FALSE","FALSE","America/Denver"
-"59929","47.92383","-114.36427","Proctor","MT","Montana","TRUE","","190","1.2","30047","Lake","{""30047"": ""100""}","Lake","30047","FALSE","FALSE","America/Denver"
-"59930","48.84902","-115.14309","Rexford","MT","Montana","TRUE","","658","3.1","30053","Lincoln","{""30053"": ""100""}","Lincoln","30053","FALSE","FALSE","America/Denver"
-"59931","47.91195","-114.17268","Rollins","MT","Montana","TRUE","","267","10.1","30047","Lake","{""30047"": ""100""}","Lake","30047","FALSE","FALSE","America/Denver"
-"59932","48.04657","-114.25412","Somers","MT","Montana","TRUE","","1353","19.7","30029","Flathead","{""30029"": ""100""}","Flathead","30029","FALSE","FALSE","America/Denver"
-"59933","48.68096","-114.77149","Stryker","MT","Montana","TRUE","","97","4.7","30053","Lincoln","{""30053"": ""100""}","Lincoln","30053","FALSE","FALSE","America/Denver"
-"59934","48.59837","-114.8965","Trego","MT","Montana","TRUE","","476","1.0","30053","Lincoln","{""30053"": ""100""}","Lincoln","30053","FALSE","FALSE","America/Denver"
-"59935","48.64381","-115.86032","Troy","MT","Montana","TRUE","","3560","1.5","30053","Lincoln","{""30053"": ""100""}","Lincoln","30053","FALSE","FALSE","America/Denver"
-"59936","48.60876","-113.85536","West Glacier","MT","Montana","TRUE","","431","0.2","30029","Flathead","{""30029"": ""100""}","Flathead","30029","FALSE","FALSE","America/Denver"
-"59937","48.41177","-114.53715","Whitefish","MT","Montana","TRUE","","13943","17.9","30029","Flathead","{""30029"": ""100""}","Flathead","30029","FALSE","FALSE","America/Denver"
-"60002","42.46968","-88.08721","Antioch","IL","Illinois","TRUE","","24058","285.1","17097","Lake","{""17097"": ""100""}","Lake","17097","FALSE","FALSE","America/Chicago"
-"60004","42.11196","-87.97909","Arlington Heights","IL","Illinois","TRUE","","50639","1764.1","17031","Cook","{""17031"": ""100""}","Cook","17031","FALSE","FALSE","America/Chicago"
-"60005","42.06394","-87.98567","Arlington Heights","IL","Illinois","TRUE","","30079","1770.8","17031","Cook","{""17031"": ""100""}","Cook","17031","FALSE","FALSE","America/Chicago"
-"60007","42.00757","-87.99297","Elk Grove Village","IL","Illinois","TRUE","","33161","907.8","17031","Cook","{""17031"": ""100"", ""17043"": ""0""}","Cook|DuPage","17031|17043","FALSE","FALSE","America/Chicago"
-"60008","42.07445","-88.02268","Rolling Meadows","IL","Illinois","TRUE","","21663","1616.4","17031","Cook","{""17031"": ""100""}","Cook","17031","FALSE","FALSE","America/Chicago"
-"60010","42.1523","-88.1635","Barrington","IL","Illinois","TRUE","","46455","242.9","17097","Lake","{""17097"": ""50.32"", ""17031"": ""44.29"", ""17111"": ""5.08"", ""17089"": ""0.31""}","Lake|Cook|McHenry|Kane","17097|17031|17111|17089","FALSE","FALSE","America/Chicago"
-"60012","42.27211","-88.31265","Crystal Lake","IL","Illinois","TRUE","","10647","236.9","17111","McHenry","{""17111"": ""100""}","McHenry","17111","FALSE","FALSE","America/Chicago"
-"60013","42.22031","-88.23588","Cary","IL","Illinois","TRUE","","26454","700.9","17111","McHenry","{""17111"": ""96.03"", ""17097"": ""3.97""}","McHenry|Lake","17111|17097","FALSE","FALSE","America/Chicago"
-"60014","42.23203","-88.32731","Crystal Lake","IL","Illinois","TRUE","","48063","734.9","17111","McHenry","{""17111"": ""100""}","McHenry","17111","FALSE","FALSE","America/Chicago"
-"60015","42.17251","-87.87481","Deerfield","IL","Illinois","TRUE","","27529","784.0","17097","Lake","{""17097"": ""99.36"", ""17031"": ""0.64""}","Lake|Cook","17097|17031","FALSE","FALSE","America/Chicago"
-"60016","42.0497","-87.89166","Des Plaines","IL","Illinois","TRUE","","59291","2155.2","17031","Cook","{""17031"": ""100""}","Cook","17031","FALSE","FALSE","America/Chicago"
-"60018","41.99743","-87.89695","Des Plaines","IL","Illinois","TRUE","","30037","706.4","17031","Cook","{""17031"": ""100""}","Cook","17031","FALSE","FALSE","America/Chicago"
-"60020","42.39199","-88.17751","Fox Lake","IL","Illinois","TRUE","","10422","872.2","17097","Lake","{""17097"": ""100""}","Lake","17097","FALSE","FALSE","America/Chicago"
-"60021","42.19484","-88.21823","Fox River Grove","IL","Illinois","TRUE","","5276","934.4","17111","McHenry","{""17111"": ""91.24"", ""17097"": ""8.76""}","McHenry|Lake","17111|17097","FALSE","FALSE","America/Chicago"
-"60022","42.13608","-87.7676","Glencoe","IL","Illinois","TRUE","","8471","830.4","17031","Cook","{""17031"": ""100""}","Cook","17031","FALSE","FALSE","America/Chicago"
-"60025","42.0754","-87.82044","Glenview","IL","Illinois","TRUE","","40935","1373.4","17031","Cook","{""17031"": ""100""}","Cook","17031","FALSE","FALSE","America/Chicago"
-"60026","42.09223","-87.83745","Glenview","IL","Illinois","TRUE","","14021","1328.7","17031","Cook","{""17031"": ""100""}","Cook","17031","FALSE","FALSE","America/Chicago"
-"60029","42.05926","-87.77837","Golf","IL","Illinois","TRUE","","476","219.8","17031","Cook","{""17031"": ""100""}","Cook","17031","FALSE","FALSE","America/Chicago"
-"60030","42.33666","-88.04459","Grayslake","IL","Illinois","TRUE","","36125","543.7","17097","Lake","{""17097"": ""100""}","Lake","17097","FALSE","FALSE","America/Chicago"
-"60031","42.37504","-87.94112","Gurnee","IL","Illinois","TRUE","","37545","767.6","17097","Lake","{""17097"": ""100""}","Lake","17097","FALSE","FALSE","America/Chicago"
-"60033","42.42476","-88.60757","Harvard","IL","Illinois","TRUE","","13703","43.6","17111","McHenry","{""17111"": ""99.3"", ""17007"": ""0.7""}","McHenry|Boone","17111|17007","FALSE","FALSE","America/Chicago"
-"60034","42.45624","-88.41981","Hebron","IL","Illinois","TRUE","","2088","31.0","17111","McHenry","{""17111"": ""100""}","McHenry","17111","FALSE","FALSE","America/Chicago"
-"60035","42.18367","-87.81056","Highland Park","IL","Illinois","TRUE","","29636","900.2","17097","Lake","{""17097"": ""100""}","Lake","17097","FALSE","FALSE","America/Chicago"
-"60040","42.20622","-87.81287","Highwood","IL","Illinois","TRUE","","5310","2895.7","17097","Lake","{""17097"": ""100""}","Lake","17097","FALSE","FALSE","America/Chicago"
-"60041","42.36833","-88.15541","Ingleside","IL","Illinois","TRUE","","8659","348.1","17097","Lake","{""17097"": ""100""}","Lake","17097","FALSE","FALSE","America/Chicago"
-"60042","42.27915","-88.19792","Island Lake","IL","Illinois","TRUE","","8556","730.3","17111","McHenry","{""17111"": ""55.96"", ""17097"": ""44.04""}","McHenry|Lake","17111|17097","FALSE","FALSE","America/Chicago"
-"60043","42.08886","-87.71459","Kenilworth","IL","Illinois","TRUE","","2460","1546.2","17031","Cook","{""17031"": ""100""}","Cook","17031","FALSE","FALSE","America/Chicago"
-"60044","42.28537","-87.86796","Lake Bluff","IL","Illinois","TRUE","","9990","508.9","17097","Lake","{""17097"": ""100""}","Lake","17097","FALSE","FALSE","America/Chicago"
-"60045","42.23839","-87.86978","Lake Forest","IL","Illinois","TRUE","","21134","384.7","17097","Lake","{""17097"": ""100""}","Lake","17097","FALSE","FALSE","America/Chicago"
-"60046","42.41608","-88.06042","Lake Villa","IL","Illinois","TRUE","","34596","583.0","17097","Lake","{""17097"": ""100""}","Lake","17097","FALSE","FALSE","America/Chicago"
-"60047","42.20226","-88.04546","Lake Zurich","IL","Illinois","TRUE","","42608","471.5","17097","Lake","{""17097"": ""100""}","Lake","17097","FALSE","FALSE","America/Chicago"
-"60048","42.29522","-87.94981","Libertyville","IL","Illinois","TRUE","","29033","407.9","17097","Lake","{""17097"": ""100""}","Lake","17097","FALSE","FALSE","America/Chicago"
-"60050","42.33113","-88.29553","Mchenry","IL","Illinois","TRUE","","32565","450.0","17111","McHenry","{""17111"": ""99.05"", ""17097"": ""0.95""}","McHenry|Lake","17111|17097","FALSE","FALSE","America/Chicago"
-"60051","42.35421","-88.22935","Mchenry","IL","Illinois","TRUE","","22808","274.9","17111","McHenry","{""17111"": ""83.61"", ""17097"": ""16.39""}","McHenry|Lake","17111|17097","FALSE","FALSE","America/Chicago"
-"60053","42.04234","-87.78897","Morton Grove","IL","Illinois","TRUE","","23089","1773.9","17031","Cook","{""17031"": ""100""}","Cook","17031","FALSE","FALSE","America/Chicago"
-"60056","42.06653","-87.93426","Mount Prospect","IL","Illinois","TRUE","","54524","1958.8","17031","Cook","{""17031"": ""100""}","Cook","17031","FALSE","FALSE","America/Chicago"
-"60060","42.2699","-88.03972","Mundelein","IL","Illinois","TRUE","","37544","615.6","17097","Lake","{""17097"": ""100""}","Lake","17097","FALSE","FALSE","America/Chicago"
-"60061","42.23376","-87.96074","Vernon Hills","IL","Illinois","TRUE","","26967","1307.2","17097","Lake","{""17097"": ""100""}","Lake","17097","FALSE","FALSE","America/Chicago"
-"60062","42.12656","-87.84438","Northbrook","IL","Illinois","TRUE","","40686","848.1","17031","Cook","{""17031"": ""100""}","Cook","17031","FALSE","FALSE","America/Chicago"
-"60064","42.32251","-87.86059","North Chicago","IL","Illinois","TRUE","","15490","1152.8","17097","Lake","{""17097"": ""100""}","Lake","17097","FALSE","FALSE","America/Chicago"
-"60067","42.10658","-88.06541","Palatine","IL","Illinois","TRUE","","37840","1066.7","17031","Cook","{""17031"": ""100""}","Cook","17031","FALSE","FALSE","America/Chicago"
-"60068","42.0125","-87.84355","Park Ridge","IL","Illinois","TRUE","","37433","2038.0","17031","Cook","{""17031"": ""100""}","Cook","17031","FALSE","FALSE","America/Chicago"
-"60069","42.19762","-87.92607","Lincolnshire","IL","Illinois","TRUE","","8225","470.1","17097","Lake","{""17097"": ""100""}","Lake","17097","FALSE","FALSE","America/Chicago"
-"60070","42.10343","-87.93022","Prospect Heights","IL","Illinois","TRUE","","15908","1701.0","17031","Cook","{""17031"": ""100""}","Cook","17031","FALSE","FALSE","America/Chicago"
-"60071","42.4637","-88.31305","Richmond","IL","Illinois","TRUE","","3737","55.4","17111","McHenry","{""17111"": ""100""}","McHenry","17111","FALSE","FALSE","America/Chicago"
-"60072","42.40669","-88.30596","Ringwood","IL","Illinois","TRUE","","1051","50.7","17111","McHenry","{""17111"": ""100""}","McHenry","17111","FALSE","FALSE","America/Chicago"
-"60073","42.34816","-88.10977","Round Lake","IL","Illinois","TRUE","","61592","1163.2","17097","Lake","{""17097"": ""100""}","Lake","17097","FALSE","FALSE","America/Chicago"
-"60074","42.13149","-88.02657","Palatine","IL","Illinois","TRUE","","39217","2123.5","17031","Cook","{""17031"": ""99.53"", ""17097"": ""0.47""}","Cook|Lake","17031|17097","FALSE","FALSE","America/Chicago"
-"60076","42.03525","-87.72988","Skokie","IL","Illinois","TRUE","","31788","2292.5","17031","Cook","{""17031"": ""100""}","Cook","17031","FALSE","FALSE","America/Chicago"
-"60077","42.03478","-87.75719","Skokie","IL","Illinois","TRUE","","27626","2649.2","17031","Cook","{""17031"": ""100""}","Cook","17031","FALSE","FALSE","America/Chicago"
-"60081","42.45075","-88.22623","Spring Grove","IL","Illinois","TRUE","","9379","204.9","17111","McHenry","{""17111"": ""81.41"", ""17097"": ""18.59""}","McHenry|Lake","17111|17097","FALSE","FALSE","America/Chicago"
-"60083","42.43614","-87.9459","Wadsworth","IL","Illinois","TRUE","","10094","147.5","17097","Lake","{""17097"": ""100""}","Lake","17097","FALSE","FALSE","America/Chicago"
-"60084","42.26788","-88.14094","Wauconda","IL","Illinois","TRUE","","16613","439.8","17097","Lake","{""17097"": ""100""}","Lake","17097","FALSE","FALSE","America/Chicago"
-"60085","42.35333","-87.86825","Waukegan","IL","Illinois","TRUE","","70700","1815.6","17097","Lake","{""17097"": ""100""}","Lake","17097","FALSE","FALSE","America/Chicago"
-"60087","42.40344","-87.8538","Waukegan","IL","Illinois","TRUE","","26429","761.7","17097","Lake","{""17097"": ""100""}","Lake","17097","FALSE","FALSE","America/Chicago"
-"60088","42.30639","-87.85274","Great Lakes","IL","Illinois","TRUE","","12816","2097.0","17097","Lake","{""17097"": ""100""}","Lake","17097","FALSE","FALSE","America/Chicago"
-"60089","42.16694","-87.96063","Buffalo Grove","IL","Illinois","TRUE","","41014","1625.2","17097","Lake","{""17097"": ""67.15"", ""17031"": ""32.85""}","Lake|Cook","17097|17031","FALSE","FALSE","America/Chicago"
-"60090","42.12952","-87.92194","Wheeling","IL","Illinois","TRUE","","38553","1586.4","17031","Cook","{""17031"": ""100""}","Cook","17031","FALSE","FALSE","America/Chicago"
-"60091","42.07696","-87.72801","Wilmette","IL","Illinois","TRUE","","27165","1960.9","17031","Cook","{""17031"": ""100""}","Cook","17031","FALSE","FALSE","America/Chicago"
-"60093","42.10437","-87.7587","Winnetka","IL","Illinois","TRUE","","19409","879.7","17031","Cook","{""17031"": ""100""}","Cook","17031","FALSE","FALSE","America/Chicago"
-"60096","42.48091","-87.82974","Winthrop Harbor","IL","Illinois","TRUE","","6733","538.0","17097","Lake","{""17097"": ""100""}","Lake","17097","FALSE","FALSE","America/Chicago"
-"60097","42.39605","-88.36481","Wonder Lake","IL","Illinois","TRUE","","10728","282.1","17111","McHenry","{""17111"": ""100""}","McHenry","17111","FALSE","FALSE","America/Chicago"
-"60098","42.32518","-88.45788","Woodstock","IL","Illinois","TRUE","","32972","120.8","17111","McHenry","{""17111"": ""100""}","McHenry","17111","FALSE","FALSE","America/Chicago"
-"60099","42.46127","-87.86987","Zion","IL","Illinois","TRUE","","30145","512.9","17097","Lake","{""17097"": ""100""}","Lake","17097","FALSE","FALSE","America/Chicago"
-"60101","41.93064","-88.01186","Addison","IL","Illinois","TRUE","","38856","1297.0","17043","DuPage","{""17043"": ""100""}","DuPage","17043","FALSE","FALSE","America/Chicago"
-"60102","42.16403","-88.30682","Algonquin","IL","Illinois","TRUE","","32663","868.2","17111","McHenry","{""17111"": ""72.5"", ""17089"": ""27.5""}","McHenry|Kane","17111|17089","FALSE","FALSE","America/Chicago"
-"60103","41.97941","-88.20633","Bartlett","IL","Illinois","TRUE","","41755","838.8","17043","DuPage","{""17043"": ""59.73"", ""17031"": ""40.27""}","DuPage|Cook","17043|17031","FALSE","FALSE","America/Chicago"
-"60104","41.88283","-87.87644","Bellwood","IL","Illinois","TRUE","","18904","3100.6","17031","Cook","{""17031"": ""100""}","Cook","17031","FALSE","FALSE","America/Chicago"
-"60106","41.9604","-87.94184","Bensenville","IL","Illinois","TRUE","","20341","874.6","17043","DuPage","{""17043"": ""100""}","DuPage","17043","FALSE","FALSE","America/Chicago"
-"60107","42.02214","-88.17931","Streamwood","IL","Illinois","TRUE","","39894","1931.7","17031","Cook","{""17031"": ""100""}","Cook","17031","FALSE","FALSE","America/Chicago"
-"60108","41.94927","-88.09168","Bloomingdale","IL","Illinois","TRUE","","22494","1200.8","17043","DuPage","{""17043"": ""100""}","DuPage","17043","FALSE","FALSE","America/Chicago"
-"60109","42.04982","-88.54598","Burlington","IL","Illinois","TRUE","","614","82.6","17089","Kane","{""17089"": ""100""}","Kane","17089","FALSE","FALSE","America/Chicago"
-"60110","42.12295","-88.28589","Carpentersville","IL","Illinois","TRUE","","38984","1691.5","17089","Kane","{""17089"": ""100""}","Kane","17089","FALSE","FALSE","America/Chicago"
-"60111","42.00818","-88.8281","Clare","IL","Illinois","TRUE","","163","3.1","17037","DeKalb","{""17037"": ""100""}","DeKalb","17037","FALSE","FALSE","America/Chicago"
-"60112","41.92431","-88.6908","Cortland","IL","Illinois","TRUE","","4422","461.8","17037","DeKalb","{""17037"": ""100""}","DeKalb","17037","FALSE","FALSE","America/Chicago"
-"60113","41.93221","-88.96583","Creston","IL","Illinois","TRUE","","307","762.1","17141","Ogle","{""17141"": ""100""}","Ogle","17141","FALSE","FALSE","America/Chicago"
-"60115","41.90083","-88.75481","Dekalb","IL","Illinois","TRUE","","45268","216.5","17037","DeKalb","{""17037"": ""100""}","DeKalb","17037","FALSE","FALSE","America/Chicago"
-"60118","42.1067","-88.30523","Dundee","IL","Illinois","TRUE","","16050","308.2","17089","Kane","{""17089"": ""100""}","Kane","17089","FALSE","FALSE","America/Chicago"
-"60119","41.86048","-88.47668","Elburn","IL","Illinois","TRUE","","10119","77.4","17089","Kane","{""17089"": ""100""}","Kane","17089","FALSE","FALSE","America/Chicago"
-"60120","42.03452","-88.23846","Elgin","IL","Illinois","TRUE","","50573","1174.0","17089","Kane","{""17089"": ""50.94"", ""17031"": ""49.06""}","Kane|Cook","17089|17031","FALSE","FALSE","America/Chicago"
-"60123","42.04022","-88.31131","Elgin","IL","Illinois","TRUE","","48948","1379.5","17089","Kane","{""17089"": ""100""}","Kane","17089","FALSE","FALSE","America/Chicago"
-"60124","42.02582","-88.39709","Elgin","IL","Illinois","TRUE","","22074","223.0","17089","Kane","{""17089"": ""100""}","Kane","17089","FALSE","FALSE","America/Chicago"
-"60126","41.89648","-87.94206","Elmhurst","IL","Illinois","TRUE","","49027","1704.2","17043","DuPage","{""17043"": ""99.28"", ""17031"": ""0.72""}","DuPage|Cook","17043|17031","FALSE","FALSE","America/Chicago"
-"60129","42.02643","-88.95629","Esmond","IL","Illinois","TRUE","","286","6.5","17037","DeKalb","{""17037"": ""57.44"", ""17141"": ""42.56""}","DeKalb|Ogle","17037|17141","FALSE","FALSE","America/Chicago"
-"60130","41.86642","-87.81738","Forest Park","IL","Illinois","TRUE","","13927","1941.8","17031","Cook","{""17031"": ""100""}","Cook","17031","FALSE","FALSE","America/Chicago"
-"60131","41.93884","-87.88441","Franklin Park","IL","Illinois","TRUE","","17834","1240.6","17031","Cook","{""17031"": ""100""}","Cook","17031","FALSE","FALSE","America/Chicago"
-"60133","41.97761","-88.14301","Hanover Park","IL","Illinois","TRUE","","38113","1809.8","17031","Cook","{""17031"": ""54.16"", ""17043"": ""45.84""}","Cook|DuPage","17031|17043","FALSE","FALSE","America/Chicago"
-"60134","41.87857","-88.34194","Geneva","IL","Illinois","TRUE","","29458","741.1","17089","Kane","{""17089"": ""100""}","Kane","17089","FALSE","FALSE","America/Chicago"
-"60135","42.11223","-88.67744","Genoa","IL","Illinois","TRUE","","7058","58.8","17037","DeKalb","{""17037"": ""99.75"", ""17007"": ""0.21"", ""17111"": ""0.04""}","DeKalb|Boone|McHenry","17037|17007|17111","FALSE","FALSE","America/Chicago"
-"60136","42.10469","-88.37826","Gilberts","IL","Illinois","TRUE","","7823","433.9","17089","Kane","{""17089"": ""100""}","Kane","17089","FALSE","FALSE","America/Chicago"
-"60137","41.86518","-88.06188","Glen Ellyn","IL","Illinois","TRUE","","37760","1347.1","17043","DuPage","{""17043"": ""100""}","DuPage","17043","FALSE","FALSE","America/Chicago"
-"60139","41.91932","-88.07787","Glendale Heights","IL","Illinois","TRUE","","34160","2375.4","17043","DuPage","{""17043"": ""100""}","DuPage","17043","FALSE","FALSE","America/Chicago"
-"60140","42.07838","-88.50654","Hampshire","IL","Illinois","TRUE","","18568","87.4","17089","Kane","{""17089"": ""99.57"", ""17037"": ""0.43""}","Kane|DeKalb","17089|17037","FALSE","FALSE","America/Chicago"
-"60141","41.85786","-87.838","Hines","IL","Illinois","TRUE","","302","278.2","17031","Cook","{""17031"": ""100""}","Cook","17031","FALSE","FALSE","America/Chicago"
-"60142","42.17563","-88.44252","Huntley","IL","Illinois","TRUE","","28647","276.7","17111","McHenry","{""17111"": ""76.11"", ""17089"": ""23.89""}","McHenry|Kane","17111|17089","FALSE","FALSE","America/Chicago"
-"60143","41.97306","-88.02155","Itasca","IL","Illinois","TRUE","","11222","629.7","17043","DuPage","{""17043"": ""100""}","DuPage","17043","FALSE","FALSE","America/Chicago"
-"60144","41.83593","-88.52062","Kaneville","IL","Illinois","TRUE","","56","524.5","17089","Kane","{""17089"": ""100""}","Kane","17089","FALSE","FALSE","America/Chicago"
-"60145","42.09365","-88.77655","Kingston","IL","Illinois","TRUE","","2756","29.7","17037","DeKalb","{""17037"": ""96.88"", ""17007"": ""3.12""}","DeKalb|Boone","17037|17007","FALSE","FALSE","America/Chicago"
-"60146","42.09947","-88.88133","Kirkland","IL","Illinois","TRUE","","2390","17.2","17037","DeKalb","{""17037"": ""96.79"", ""17007"": ""2.54"", ""17141"": ""0.37"", ""17201"": ""0.29""}","DeKalb|Boone|Ogle|Winnebago","17037|17007|17141|17201","FALSE","FALSE","America/Chicago"
-"60148","41.87414","-88.01817","Lombard","IL","Illinois","TRUE","","52588","1495.1","17043","DuPage","{""17043"": ""100""}","DuPage","17043","FALSE","FALSE","America/Chicago"
-"60150","41.92494","-88.88864","Malta","IL","Illinois","TRUE","","1934","13.9","17037","DeKalb","{""17037"": ""100""}","DeKalb","17037","FALSE","FALSE","America/Chicago"
-"60151","41.91612","-88.56663","Maple Park","IL","Illinois","TRUE","","4075","19.3","17089","Kane","{""17089"": ""74.86"", ""17037"": ""25.14""}","Kane|DeKalb","17089|17037","FALSE","FALSE","America/Chicago"
-"60152","42.23695","-88.62553","Marengo","IL","Illinois","TRUE","","12186","49.8","17111","McHenry","{""17111"": ""99.77"", ""17037"": ""0.23""}","McHenry|DeKalb","17111|17037","FALSE","FALSE","America/Chicago"
-"60153","41.8793","-87.84327","Maywood","IL","Illinois","TRUE","","23578","3037.4","17031","Cook","{""17031"": ""100""}","Cook","17031","FALSE","FALSE","America/Chicago"
-"60154","41.84749","-87.89167","Westchester","IL","Illinois","TRUE","","16440","1316.6","17031","Cook","{""17031"": ""100""}","Cook","17031","FALSE","FALSE","America/Chicago"
-"60155","41.85781","-87.85636","Broadview","IL","Illinois","TRUE","","7755","1611.9","17031","Cook","{""17031"": ""100""}","Cook","17031","FALSE","FALSE","America/Chicago"
-"60156","42.19139","-88.34582","Lake In The Hills","IL","Illinois","TRUE","","28809","984.7","17111","McHenry","{""17111"": ""100""}","McHenry","17111","FALSE","FALSE","America/Chicago"
-"60157","41.97462","-88.05538","Medinah","IL","Illinois","TRUE","","2970","768.7","17043","DuPage","{""17043"": ""100""}","DuPage","17043","FALSE","FALSE","America/Chicago"
-"60160","41.90416","-87.86061","Melrose Park","IL","Illinois","TRUE","","25666","2228.3","17031","Cook","{""17031"": ""100""}","Cook","17031","FALSE","FALSE","America/Chicago"
-"60162","41.86758","-87.90222","Hillside","IL","Illinois","TRUE","","8176","986.6","17031","Cook","{""17031"": ""100""}","Cook","17031","FALSE","FALSE","America/Chicago"
-"60163","41.88887","-87.90906","Berkeley","IL","Illinois","TRUE","","5103","1223.3","17031","Cook","{""17031"": ""100""}","Cook","17031","FALSE","FALSE","America/Chicago"
-"60164","41.91751","-87.90066","Melrose Park","IL","Illinois","TRUE","","21228","1728.7","17031","Cook","{""17031"": ""100""}","Cook","17031","FALSE","FALSE","America/Chicago"
-"60165","41.90325","-87.88077","Stone Park","IL","Illinois","TRUE","","4894","5559.4","17031","Cook","{""17031"": ""100""}","Cook","17031","FALSE","FALSE","America/Chicago"
-"60169","42.05039","-88.11667","Hoffman Estates","IL","Illinois","TRUE","","33373","1676.4","17031","Cook","{""17031"": ""100""}","Cook","17031","FALSE","FALSE","America/Chicago"
-"60171","41.92507","-87.83843","River Grove","IL","Illinois","TRUE","","10076","1723.1","17031","Cook","{""17031"": ""100""}","Cook","17031","FALSE","FALSE","America/Chicago"
-"60172","41.97967","-88.08963","Roselle","IL","Illinois","TRUE","","24371","1348.0","17043","DuPage","{""17043"": ""83.67"", ""17031"": ""16.33""}","DuPage|Cook","17043|17031","FALSE","FALSE","America/Chicago"
-"60173","42.05157","-88.05195","Schaumburg","IL","Illinois","TRUE","","12610","794.9","17031","Cook","{""17031"": ""100""}","Cook","17031","FALSE","FALSE","America/Chicago"
-"60174","41.92721","-88.29934","Saint Charles","IL","Illinois","TRUE","","31219","871.1","17089","Kane","{""17089"": ""98.23"", ""17043"": ""1.77""}","Kane|DuPage","17089|17043","FALSE","FALSE","America/Chicago"
-"60175","41.947","-88.39105","Saint Charles","IL","Illinois","TRUE","","26298","298.0","17089","Kane","{""17089"": ""100""}","Kane","17089","FALSE","FALSE","America/Chicago"
-"60176","41.95823","-87.86888","Schiller Park","IL","Illinois","TRUE","","11621","1693.4","17031","Cook","{""17031"": ""100""}","Cook","17031","FALSE","FALSE","America/Chicago"
-"60177","41.98991","-88.30996","South Elgin","IL","Illinois","TRUE","","23310","1053.0","17089","Kane","{""17089"": ""100""}","Kane","17089","FALSE","FALSE","America/Chicago"
-"60178","42.00638","-88.66894","Sycamore","IL","Illinois","TRUE","","22374","124.6","17037","DeKalb","{""17037"": ""99.03"", ""17089"": ""0.97""}","DeKalb|Kane","17037|17089","FALSE","FALSE","America/Chicago"
-"60180","42.22522","-88.5247","Union","IL","Illinois","TRUE","","1813","32.4","17111","McHenry","{""17111"": ""100""}","McHenry","17111","FALSE","FALSE","America/Chicago"
-"60181","41.87825","-87.97635","Villa Park","IL","Illinois","TRUE","","28755","1679.9","17043","DuPage","{""17043"": ""100""}","DuPage","17043","FALSE","FALSE","America/Chicago"
-"60184","41.95248","-88.25373","Wayne","IL","Illinois","TRUE","","2428","115.4","17043","DuPage","{""17043"": ""64.95"", ""17089"": ""35.05""}","DuPage|Kane","17043|17089","FALSE","FALSE","America/Chicago"
-"60185","41.89482","-88.21263","West Chicago","IL","Illinois","TRUE","","36100","459.1","17043","DuPage","{""17043"": ""99.59"", ""17089"": ""0.41""}","DuPage|Kane","17043|17089","FALSE","FALSE","America/Chicago"
-"60187","41.87241","-88.11229","Wheaton","IL","Illinois","TRUE","","29976","1746.7","17043","DuPage","{""17043"": ""100""}","DuPage","17043","FALSE","FALSE","America/Chicago"
-"60188","41.91589","-88.1292","Carol Stream","IL","Illinois","TRUE","","42214","1615.2","17043","DuPage","{""17043"": ""100""}","DuPage","17043","FALSE","FALSE","America/Chicago"
-"60189","41.83975","-88.11786","Wheaton","IL","Illinois","TRUE","","29999","1134.3","17043","DuPage","{""17043"": ""100""}","DuPage","17043","FALSE","FALSE","America/Chicago"
-"60190","41.8717","-88.15683","Winfield","IL","Illinois","TRUE","","11375","945.1","17043","DuPage","{""17043"": ""100""}","DuPage","17043","FALSE","FALSE","America/Chicago"
-"60191","41.96613","-87.98077","Wood Dale","IL","Illinois","TRUE","","14021","963.3","17043","DuPage","{""17043"": ""100""}","DuPage","17043","FALSE","FALSE","America/Chicago"
-"60192","42.0737","-88.18227","Hoffman Estates","IL","Illinois","TRUE","","15467","566.5","17031","Cook","{""17031"": ""100""}","Cook","17031","FALSE","FALSE","America/Chicago"
-"60193","42.01176","-88.09626","Schaumburg","IL","Illinois","TRUE","","39646","1675.1","17031","Cook","{""17031"": ""100""}","Cook","17031","FALSE","FALSE","America/Chicago"
-"60194","42.03363","-88.11148","Schaumburg","IL","Illinois","TRUE","","19525","2081.8","17031","Cook","{""17031"": ""100""}","Cook","17031","FALSE","FALSE","America/Chicago"
-"60195","42.06705","-88.09128","Schaumburg","IL","Illinois","TRUE","","5020","982.0","17031","Cook","{""17031"": ""100""}","Cook","17031","FALSE","FALSE","America/Chicago"
-"60201","42.05652","-87.6972","Evanston","IL","Illinois","TRUE","","41884","3423.0","17031","Cook","{""17031"": ""100""}","Cook","17031","FALSE","FALSE","America/Chicago"
-"60202","42.03045","-87.68954","Evanston","IL","Illinois","TRUE","","32703","4132.1","17031","Cook","{""17031"": ""100""}","Cook","17031","FALSE","FALSE","America/Chicago"
-"60203","42.04904","-87.71748","Evanston","IL","Illinois","TRUE","","4397","2489.6","17031","Cook","{""17031"": ""100""}","Cook","17031","FALSE","FALSE","America/Chicago"
-"60301","41.88876","-87.79919","Oak Park","IL","Illinois","TRUE","","2831","6981.0","17031","Cook","{""17031"": ""100""}","Cook","17031","FALSE","FALSE","America/Chicago"
-"60302","41.89463","-87.78971","Oak Park","IL","Illinois","TRUE","","31620","4054.7","17031","Cook","{""17031"": ""100""}","Cook","17031","FALSE","FALSE","America/Chicago"
-"60304","41.87243","-87.78948","Oak Park","IL","Illinois","TRUE","","17782","4480.7","17031","Cook","{""17031"": ""100""}","Cook","17031","FALSE","FALSE","America/Chicago"
-"60305","41.895","-87.81936","River Forest","IL","Illinois","TRUE","","10970","1710.9","17031","Cook","{""17031"": ""100""}","Cook","17031","FALSE","FALSE","America/Chicago"
-"60401","41.34397","-87.61375","Beecher","IL","Illinois","TRUE","","7990","54.3","17197","Will","{""17197"": ""98.68"", ""17091"": ""1.32""}","Will|Kankakee","17197|17091","FALSE","FALSE","America/Chicago"
-"60402","41.83469","-87.79139","Berwyn","IL","Illinois","TRUE","","62960","4613.5","17031","Cook","{""17031"": ""100""}","Cook","17031","FALSE","FALSE","America/Chicago"
-"60403","41.57225","-88.11385","Crest Hill","IL","Illinois","TRUE","","18653","1106.8","17197","Will","{""17197"": ""100""}","Will","17197","FALSE","FALSE","America/Chicago"
-"60404","41.50876","-88.22307","Shorewood","IL","Illinois","TRUE","","19028","470.7","17197","Will","{""17197"": ""100""}","Will","17197","FALSE","FALSE","America/Chicago"
-"60406","41.65472","-87.68184","Blue Island","IL","Illinois","TRUE","","25338","1758.6","17031","Cook","{""17031"": ""100""}","Cook","17031","FALSE","FALSE","America/Chicago"
-"60407","41.23056","-88.2693","Braceville","IL","Illinois","TRUE","","1597","51.6","17063","Grundy","{""17063"": ""65.26"", ""17197"": ""34.74""}","Grundy|Will","17063|17197","FALSE","FALSE","America/Chicago"
-"60408","41.26374","-88.21674","Braidwood","IL","Illinois","TRUE","","5528","285.6","17197","Will","{""17197"": ""100""}","Will","17197","FALSE","FALSE","America/Chicago"
-"60409","41.61324","-87.55133","Calumet City","IL","Illinois","TRUE","","36658","1902.0","17031","Cook","{""17031"": ""100""}","Cook","17031","FALSE","FALSE","America/Chicago"
-"60410","41.42205","-88.21367","Channahon","IL","Illinois","TRUE","","12965","202.0","17197","Will","{""17197"": ""74.08"", ""17063"": ""25.92""}","Will|Grundy","17197|17063","FALSE","FALSE","America/Chicago"
-"60411","41.50869","-87.59056","Chicago Heights","IL","Illinois","TRUE","","57603","702.5","17031","Cook","{""17031"": ""100""}","Cook","17031","FALSE","FALSE","America/Chicago"
-"60415","41.70292","-87.77881","Chicago Ridge","IL","Illinois","TRUE","","14123","2371.8","17031","Cook","{""17031"": ""100""}","Cook","17031","FALSE","FALSE","America/Chicago"
-"60416","41.29311","-88.2818","Coal City","IL","Illinois","TRUE","","9083","157.0","17063","Grundy","{""17063"": ""99.76"", ""17197"": ""0.24""}","Grundy|Will","17063|17197","FALSE","FALSE","America/Chicago"
-"60417","41.42888","-87.5932","Crete","IL","Illinois","TRUE","","15073","149.5","17197","Will","{""17197"": ""100""}","Will","17197","FALSE","FALSE","America/Chicago"
-"60419","41.62773","-87.59942","Dolton","IL","Illinois","TRUE","","22436","2059.0","17031","Cook","{""17031"": ""100""}","Cook","17031","FALSE","FALSE","America/Chicago"
-"60420","41.08775","-88.4172","Dwight","IL","Illinois","TRUE","","4846","18.6","17105","Livingston","{""17105"": ""95.92"", ""17063"": ""4.08""}","Livingston|Grundy","17105|17063","FALSE","FALSE","America/Chicago"
-"60421","41.43128","-88.09955","Elwood","IL","Illinois","TRUE","","3810","36.1","17197","Will","{""17197"": ""100""}","Will","17197","FALSE","FALSE","America/Chicago"
-"60422","41.53698","-87.68411","Flossmoor","IL","Illinois","TRUE","","9941","911.7","17031","Cook","{""17031"": ""100""}","Cook","17031","FALSE","FALSE","America/Chicago"
-"60423","41.47957","-87.83793","Frankfort","IL","Illinois","TRUE","","31418","332.7","17197","Will","{""17197"": ""99.92"", ""17031"": ""0.08""}","Will|Cook","17197|17031","FALSE","FALSE","America/Chicago"
-"60424","41.16823","-88.3272","Gardner","IL","Illinois","TRUE","","2326","17.4","17063","Grundy","{""17063"": ""99.67"", ""17091"": ""0.33""}","Grundy|Kankakee","17063|17091","FALSE","FALSE","America/Chicago"
-"60425","41.54551","-87.61171","Glenwood","IL","Illinois","TRUE","","8842","709.1","17031","Cook","{""17031"": ""100""}","Cook","17031","FALSE","FALSE","America/Chicago"
-"60426","41.61032","-87.65341","Harvey","IL","Illinois","TRUE","","28683","1437.3","17031","Cook","{""17031"": ""100""}","Cook","17031","FALSE","FALSE","America/Chicago"
-"60428","41.59979","-87.69055","Markham","IL","Illinois","TRUE","","12180","905.3","17031","Cook","{""17031"": ""100""}","Cook","17031","FALSE","FALSE","America/Chicago"
-"60429","41.57366","-87.68409","Hazel Crest","IL","Illinois","TRUE","","15108","1491.7","17031","Cook","{""17031"": ""100""}","Cook","17031","FALSE","FALSE","America/Chicago"
-"60430","41.55767","-87.66468","Homewood","IL","Illinois","TRUE","","19691","1116.7","17031","Cook","{""17031"": ""100""}","Cook","17031","FALSE","FALSE","America/Chicago"
-"60431","41.53266","-88.20521","Joliet","IL","Illinois","TRUE","","24202","687.7","17197","Will","{""17197"": ""80.45"", ""17093"": ""19.55""}","Will|Kendall","17197|17093","FALSE","FALSE","America/Chicago"
-"60432","41.54032","-88.04157","Joliet","IL","Illinois","TRUE","","20062","924.4","17197","Will","{""17197"": ""100""}","Will","17197","FALSE","FALSE","America/Chicago"
-"60433","41.49968","-88.04321","Joliet","IL","Illinois","TRUE","","16398","491.6","17197","Will","{""17197"": ""100""}","Will","17197","FALSE","FALSE","America/Chicago"
-"60435","41.54539","-88.1299","Joliet","IL","Illinois","TRUE","","49390","1780.9","17197","Will","{""17197"": ""100""}","Will","17197","FALSE","FALSE","America/Chicago"
-"60436","41.49232","-88.12258","Joliet","IL","Illinois","TRUE","","17903","458.7","17197","Will","{""17197"": ""100""}","Will","17197","FALSE","FALSE","America/Chicago"
-"60437","41.16307","-88.5535","Kinsman","IL","Illinois","TRUE","","164","3.3","17063","Grundy","{""17063"": ""100""}","Grundy","17063","FALSE","FALSE","America/Chicago"
-"60438","41.56661","-87.55086","Lansing","IL","Illinois","TRUE","","28633","1391.7","17031","Cook","{""17031"": ""100""}","Cook","17031","FALSE","FALSE","America/Chicago"
-"60439","41.67519","-87.98218","Lemont","IL","Illinois","TRUE","","23435","297.6","17031","Cook","{""17031"": ""91.25"", ""17043"": ""6.63"", ""17197"": ""2.12""}","Cook|DuPage|Will","17031|17043|17197","FALSE","FALSE","America/Chicago"
-"60440","41.70023","-88.07511","Bolingbrook","IL","Illinois","TRUE","","52273","1255.6","17197","Will","{""17197"": ""97.03"", ""17043"": ""2.97""}","Will|DuPage","17197|17043","FALSE","FALSE","America/Chicago"
-"60441","41.59297","-88.05077","Lockport","IL","Illinois","TRUE","","35583","489.7","17197","Will","{""17197"": ""100""}","Will","17197","FALSE","FALSE","America/Chicago"
-"60442","41.39274","-87.96353","Manhattan","IL","Illinois","TRUE","","10679","60.3","17197","Will","{""17197"": ""100""}","Will","17197","FALSE","FALSE","America/Chicago"
-"60443","41.50371","-87.74683","Matteson","IL","Illinois","TRUE","","21554","719.7","17031","Cook","{""17031"": ""100""}","Cook","17031","FALSE","FALSE","America/Chicago"
-"60444","41.24236","-88.40222","Mazon","IL","Illinois","TRUE","","1861","15.2","17063","Grundy","{""17063"": ""100""}","Grundy","17063","FALSE","FALSE","America/Chicago"
-"60445","41.63502","-87.7362","Midlothian","IL","Illinois","TRUE","","25810","1441.0","17031","Cook","{""17031"": ""100""}","Cook","17031","FALSE","FALSE","America/Chicago"
-"60446","41.63181","-88.10459","Romeoville","IL","Illinois","TRUE","","40118","926.5","17197","Will","{""17197"": ""100""}","Will","17197","FALSE","FALSE","America/Chicago"
-"60447","41.4882","-88.32419","Minooka","IL","Illinois","TRUE","","13856","78.4","17063","Grundy","{""17063"": ""68.12"", ""17197"": ""18.6"", ""17093"": ""13.28""}","Grundy|Will|Kendall","17063|17197|17093","FALSE","FALSE","America/Chicago"
-"60448","41.53771","-87.89376","Mokena","IL","Illinois","TRUE","","26220","558.1","17197","Will","{""17197"": ""100""}","Will","17197","FALSE","FALSE","America/Chicago"
-"60449","41.41569","-87.77244","Monee","IL","Illinois","TRUE","","9362","74.4","17197","Will","{""17197"": ""100""}","Will","17197","FALSE","FALSE","America/Chicago"
-"60450","41.36951","-88.43285","Morris","IL","Illinois","TRUE","","20906","51.3","17063","Grundy","{""17063"": ""99.77"", ""17093"": ""0.23""}","Grundy|Kendall","17063|17093","FALSE","FALSE","America/Chicago"
-"60451","41.50691","-87.96071","New Lenox","IL","Illinois","TRUE","","35622","536.6","17197","Will","{""17197"": ""100""}","Will","17197","FALSE","FALSE","America/Chicago"
-"60452","41.60768","-87.75529","Oak Forest","IL","Illinois","TRUE","","28008","1162.3","17031","Cook","{""17031"": ""100""}","Cook","17031","FALSE","FALSE","America/Chicago"
-"60453","41.71427","-87.75282","Oak Lawn","IL","Illinois","TRUE","","55966","2555.4","17031","Cook","{""17031"": ""100""}","Cook","17031","FALSE","FALSE","America/Chicago"
-"60455","41.74211","-87.80864","Bridgeview","IL","Illinois","TRUE","","16144","1431.3","17031","Cook","{""17031"": ""100""}","Cook","17031","FALSE","FALSE","America/Chicago"
-"60456","41.73125","-87.73105","Hometown","IL","Illinois","TRUE","","4272","3444.2","17031","Cook","{""17031"": ""100""}","Cook","17031","FALSE","FALSE","America/Chicago"
-"60457","41.72464","-87.82808","Hickory Hills","IL","Illinois","TRUE","","13816","1841.7","17031","Cook","{""17031"": ""100""}","Cook","17031","FALSE","FALSE","America/Chicago"
-"60458","41.74892","-87.83452","Justice","IL","Illinois","TRUE","","15197","2042.6","17031","Cook","{""17031"": ""100""}","Cook","17031","FALSE","FALSE","America/Chicago"
-"60459","41.74447","-87.76859","Burbank","IL","Illinois","TRUE","","28709","2641.4","17031","Cook","{""17031"": ""100""}","Cook","17031","FALSE","FALSE","America/Chicago"
-"60460","41.0012","-88.53656","Odell","IL","Illinois","TRUE","","1397","5.6","17105","Livingston","{""17105"": ""100""}","Livingston","17105","FALSE","FALSE","America/Chicago"
-"60461","41.51665","-87.69085","Olympia Fields","IL","Illinois","TRUE","","4716","655.0","17031","Cook","{""17031"": ""100""}","Cook","17031","FALSE","FALSE","America/Chicago"
-"60462","41.62487","-87.83242","Orland Park","IL","Illinois","TRUE","","39784","980.0","17031","Cook","{""17031"": ""100""}","Cook","17031","FALSE","FALSE","America/Chicago"
-"60463","41.66096","-87.78997","Palos Heights","IL","Illinois","TRUE","","14798","1062.3","17031","Cook","{""17031"": ""100""}","Cook","17031","FALSE","FALSE","America/Chicago"
-"60464","41.66249","-87.86181","Palos Park","IL","Illinois","TRUE","","9662","477.7","17031","Cook","{""17031"": ""100""}","Cook","17031","FALSE","FALSE","America/Chicago"
-"60465","41.69845","-87.82878","Palos Hills","IL","Illinois","TRUE","","17345","1410.5","17031","Cook","{""17031"": ""100""}","Cook","17031","FALSE","FALSE","America/Chicago"
-"60466","41.47904","-87.68284","Park Forest","IL","Illinois","TRUE","","21909","1320.8","17031","Cook","{""17031"": ""84.24"", ""17197"": ""15.76""}","Cook|Will","17031|17197","FALSE","FALSE","America/Chicago"
-"60467","41.6018","-87.88989","Orland Park","IL","Illinois","TRUE","","26861","713.5","17031","Cook","{""17031"": ""91.12"", ""17197"": ""8.88""}","Cook|Will","17031|17197","FALSE","FALSE","America/Chicago"
-"60468","41.33633","-87.81131","Peotone","IL","Illinois","TRUE","","6005","32.1","17197","Will","{""17197"": ""98.72"", ""17091"": ""1.28""}","Will|Kankakee","17197|17091","FALSE","FALSE","America/Chicago"
-"60469","41.62825","-87.68712","Posen","IL","Illinois","TRUE","","5795","2389.3","17031","Cook","{""17031"": ""100""}","Cook","17031","FALSE","FALSE","America/Chicago"
-"60470","41.16897","-88.64107","Ransom","IL","Illinois","TRUE","","542","5.6","17099","LaSalle","{""17099"": ""98.21"", ""17063"": ""1.79""}","LaSalle|Grundy","17099|17063","FALSE","FALSE","America/Chicago"
-"60471","41.47959","-87.73403","Richton Park","IL","Illinois","TRUE","","13917","1120.2","17031","Cook","{""17031"": ""99.54"", ""17197"": ""0.46""}","Cook|Will","17031|17197","FALSE","FALSE","America/Chicago"
-"60472","41.64375","-87.7088","Robbins","IL","Illinois","TRUE","","4904","1144.5","17031","Cook","{""17031"": ""100""}","Cook","17031","FALSE","FALSE","America/Chicago"
-"60473","41.59738","-87.59979","South Holland","IL","Illinois","TRUE","","22088","1002.5","17031","Cook","{""17031"": ""100""}","Cook","17031","FALSE","FALSE","America/Chicago"
-"60474","41.18561","-88.26622","South Wilmington","IL","Illinois","TRUE","","824","98.6","17063","Grundy","{""17063"": ""100""}","Grundy","17063","FALSE","FALSE","America/Chicago"
-"60475","41.47272","-87.62787","Steger","IL","Illinois","TRUE","","9664","774.6","17197","Will","{""17197"": ""56.79"", ""17031"": ""43.21""}","Will|Cook","17197|17031","FALSE","FALSE","America/Chicago"
-"60476","41.56864","-87.60671","Thornton","IL","Illinois","TRUE","","2550","291.5","17031","Cook","{""17031"": ""100""}","Cook","17031","FALSE","FALSE","America/Chicago"
-"60477","41.57255","-87.78869","Tinley Park","IL","Illinois","TRUE","","37542","1136.0","17031","Cook","{""17031"": ""99.99"", ""17197"": ""0.01""}","Cook|Will","17031|17197","FALSE","FALSE","America/Chicago"
-"60478","41.56381","-87.72468","Country Club Hills","IL","Illinois","TRUE","","16769","1246.0","17031","Cook","{""17031"": ""100""}","Cook","17031","FALSE","FALSE","America/Chicago"
-"60479","41.2287","-88.51791","Verona","IL","Illinois","TRUE","","925","8.8","17063","Grundy","{""17063"": ""100""}","Grundy","17063","FALSE","FALSE","America/Chicago"
-"60480","41.72896","-87.88088","Willow Springs","IL","Illinois","TRUE","","5151","340.9","17031","Cook","{""17031"": ""100""}","Cook","17031","FALSE","FALSE","America/Chicago"
-"60481","41.28399","-88.12307","Wilmington","IL","Illinois","TRUE","","11809","41.4","17197","Will","{""17197"": ""97.25"", ""17063"": ""2.08"", ""17091"": ""0.68""}","Will|Grundy|Kankakee","17197|17063|17091","FALSE","FALSE","America/Chicago"
-"60482","41.68735","-87.79106","Worth","IL","Illinois","TRUE","","10849","1715.9","17031","Cook","{""17031"": ""100""}","Cook","17031","FALSE","FALSE","America/Chicago"
-"60484","41.44208","-87.70622","University Park","IL","Illinois","TRUE","","6423","369.8","17197","Will","{""17197"": ""100""}","Will","17197","FALSE","FALSE","America/Chicago"
-"60487","41.56358","-87.83422","Tinley Park","IL","Illinois","TRUE","","26736","1197.0","17031","Cook","{""17031"": ""71.7"", ""17197"": ""28.3""}","Cook|Will","17031|17197","FALSE","FALSE","America/Chicago"
-"60490","41.67474","-88.1444","Bolingbrook","IL","Illinois","TRUE","","22158","906.3","17197","Will","{""17197"": ""100""}","Will","17197","FALSE","FALSE","America/Chicago"
-"60491","41.60277","-87.95989","Homer Glen","IL","Illinois","TRUE","","22735","344.7","17197","Will","{""17197"": ""100""}","Will","17197","FALSE","FALSE","America/Chicago"
-"60501","41.78014","-87.82394","Summit Argo","IL","Illinois","TRUE","","11874","947.5","17031","Cook","{""17031"": ""100""}","Cook","17031","FALSE","FALSE","America/Chicago"
-"60502","41.7921","-88.25909","Aurora","IL","Illinois","TRUE","","21911","814.7","17043","DuPage","{""17043"": ""82.53"", ""17089"": ""17.47""}","DuPage|Kane","17043|17089","FALSE","FALSE","America/Chicago"
-"60503","41.71277","-88.25651","Aurora","IL","Illinois","TRUE","","17207","1975.0","17197","Will","{""17197"": ""69.02"", ""17093"": ""30.98""}","Will|Kendall","17197|17093","FALSE","FALSE","America/Chicago"
-"60504","41.74635","-88.23848","Aurora","IL","Illinois","TRUE","","39070","1704.4","17043","DuPage","{""17043"": ""75.06"", ""17089"": ""22.45"", ""17093"": ""2.49""}","DuPage|Kane|Kendall","17043|17089|17093","FALSE","FALSE","America/Chicago"
-"60505","41.76429","-88.29409","Aurora","IL","Illinois","TRUE","","74726","2578.3","17089","Kane","{""17089"": ""100""}","Kane","17089","FALSE","FALSE","America/Chicago"
-"60506","41.76524","-88.36503","Aurora","IL","Illinois","TRUE","","55542","1149.5","17089","Kane","{""17089"": ""100""}","Kane","17089","FALSE","FALSE","America/Chicago"
-"60510","41.84212","-88.30552","Batavia","IL","Illinois","TRUE","","29332","436.0","17089","Kane","{""17089"": ""99.27"", ""17043"": ""0.73""}","Kane|DuPage","17089|17043","FALSE","FALSE","America/Chicago"
-"60511","41.75795","-88.55615","Big Rock","IL","Illinois","TRUE","","1805","23.4","17089","Kane","{""17089"": ""98.77"", ""17037"": ""1.23""}","Kane|DeKalb","17089|17037","FALSE","FALSE","America/Chicago"
-"60512","41.70162","-88.43968","Bristol","IL","Illinois","TRUE","","1010","48.8","17093","Kendall","{""17093"": ""100""}","Kendall","17093","FALSE","FALSE","America/Chicago"
-"60513","41.82458","-87.84691","Brookfield","IL","Illinois","TRUE","","18753","2294.7","17031","Cook","{""17031"": ""100""}","Cook","17031","FALSE","FALSE","America/Chicago"
-"60514","41.79653","-87.95693","Clarendon Hills","IL","Illinois","TRUE","","9943","1895.9","17043","DuPage","{""17043"": ""100""}","DuPage","17043","FALSE","FALSE","America/Chicago"
-"60515","41.80959","-88.02289","Downers Grove","IL","Illinois","TRUE","","28290","968.9","17043","DuPage","{""17043"": ""100""}","DuPage","17043","FALSE","FALSE","America/Chicago"
-"60516","41.76246","-88.01358","Downers Grove","IL","Illinois","TRUE","","29208","1427.7","17043","DuPage","{""17043"": ""100""}","DuPage","17043","FALSE","FALSE","America/Chicago"
-"60517","41.74207","-88.04239","Woodridge","IL","Illinois","TRUE","","32390","1440.8","17043","DuPage","{""17043"": ""100""}","DuPage","17043","FALSE","FALSE","America/Chicago"
-"60518","41.59783","-88.91873","Earlville","IL","Illinois","TRUE","","3715","10.7","17099","LaSalle","{""17099"": ""87.23"", ""17037"": ""7.79"", ""17103"": ""4.97""}","LaSalle|DeKalb|Lee","17099|17037|17103","FALSE","FALSE","America/Chicago"
-"60519","41.77789","-88.24233","Eola","IL","Illinois","TRUE","","24","160.3","17043","DuPage","{""17043"": ""100""}","DuPage","17043","FALSE","FALSE","America/Chicago"
-"60520","41.78252","-88.65816","Hinckley","IL","Illinois","TRUE","","2855","24.5","17037","DeKalb","{""17037"": ""100""}","DeKalb","17037","FALSE","FALSE","America/Chicago"
-"60521","41.79998","-87.92879","Hinsdale","IL","Illinois","TRUE","","18415","1504.6","17043","DuPage","{""17043"": ""87.34"", ""17031"": ""12.66""}","DuPage|Cook","17043|17031","FALSE","FALSE","America/Chicago"
-"60523","41.83707","-87.95404","Oak Brook","IL","Illinois","TRUE","","10081","434.7","17043","DuPage","{""17043"": ""100""}","DuPage","17043","FALSE","FALSE","America/Chicago"
-"60525","41.78424","-87.86893","La Grange","IL","Illinois","TRUE","","30474","933.5","17031","Cook","{""17031"": ""100""}","Cook","17031","FALSE","FALSE","America/Chicago"
-"60526","41.83183","-87.87395","La Grange Park","IL","Illinois","TRUE","","13451","1890.6","17031","Cook","{""17031"": ""100""}","Cook","17031","FALSE","FALSE","America/Chicago"
-"60527","41.74463","-87.93334","Willowbrook","IL","Illinois","TRUE","","28534","760.2","17043","DuPage","{""17043"": ""85.32"", ""17031"": ""14.68""}","DuPage|Cook","17043|17031","FALSE","FALSE","America/Chicago"
-"60530","41.79491","-88.96062","Lee","IL","Illinois","TRUE","","483","6.6","17103","Lee","{""17103"": ""67.18"", ""17037"": ""32.82""}","Lee|DeKalb","17103|17037","FALSE","FALSE","America/Chicago"
-"60531","41.6157","-88.78691","Leland","IL","Illinois","TRUE","","1792","11.9","17099","LaSalle","{""17099"": ""90.22"", ""17037"": ""9.78""}","LaSalle|DeKalb","17099|17037","FALSE","FALSE","America/Chicago"
-"60532","41.79242","-88.08445","Lisle","IL","Illinois","TRUE","","27956","1209.3","17043","DuPage","{""17043"": ""100""}","DuPage","17043","FALSE","FALSE","America/Chicago"
-"60534","41.81338","-87.82213","Lyons","IL","Illinois","TRUE","","10452","2377.0","17031","Cook","{""17031"": ""100""}","Cook","17031","FALSE","FALSE","America/Chicago"
-"60536","41.59726","-88.54992","Millbrook","IL","Illinois","TRUE","","139","72.9","17093","Kendall","{""17093"": ""100""}","Kendall","17093","FALSE","FALSE","America/Chicago"
-"60537","41.56208","-88.60243","Millington","IL","Illinois","TRUE","","573","336.7","17099","LaSalle","{""17099"": ""63.16"", ""17093"": ""36.84""}","LaSalle|Kendall","17099|17093","FALSE","FALSE","America/Chicago"
-"60538","41.72218","-88.35905","Montgomery","IL","Illinois","TRUE","","29343","1123.4","17093","Kendall","{""17093"": ""69.73"", ""17089"": ""30.27""}","Kendall|Kane","17093|17089","FALSE","FALSE","America/Chicago"
-"60539","41.82567","-88.33458","Mooseheart","IL","Illinois","TRUE","","223","115.0","17089","Kane","{""17089"": ""100""}","Kane","17089","FALSE","FALSE","America/Chicago"
-"60540","41.76365","-88.14515","Naperville","IL","Illinois","TRUE","","45187","1320.5","17043","DuPage","{""17043"": ""100""}","DuPage","17043","FALSE","FALSE","America/Chicago"
-"60541","41.51664","-88.52541","Newark","IL","Illinois","TRUE","","3667","16.8","17093","Kendall","{""17093"": ""94.09"", ""17063"": ""4.42"", ""17099"": ""1.49""}","Kendall|Grundy|LaSalle","17093|17063|17099","FALSE","FALSE","America/Chicago"
-"60542","41.80928","-88.35064","North Aurora","IL","Illinois","TRUE","","18191","749.0","17089","Kane","{""17089"": ""100""}","Kane","17089","FALSE","FALSE","America/Chicago"
-"60543","41.66526","-88.32321","Oswego","IL","Illinois","TRUE","","40293","364.8","17093","Kendall","{""17093"": ""99.8"", ""17089"": ""0.17"", ""17197"": ""0.03""}","Kendall|Kane|Will","17093|17089|17197","FALSE","FALSE","America/Chicago"
-"60544","41.61337","-88.21666","Plainfield","IL","Illinois","TRUE","","27426","458.3","17197","Will","{""17197"": ""99.35"", ""17093"": ""0.65""}","Will|Kendall","17197|17093","FALSE","FALSE","America/Chicago"
-"60545","41.67749","-88.53667","Plano","IL","Illinois","TRUE","","13699","139.7","17093","Kendall","{""17093"": ""100""}","Kendall","17093","FALSE","FALSE","America/Chicago"
-"60546","41.83803","-87.82144","Riverside","IL","Illinois","TRUE","","15405","1535.9","17031","Cook","{""17031"": ""100""}","Cook","17031","FALSE","FALSE","America/Chicago"
-"60548","41.64812","-88.63617","Sandwich","IL","Illinois","TRUE","","12054","115.1","17037","DeKalb","{""17037"": ""64.26"", ""17099"": ""33.12"", ""17093"": ""2.63""}","DeKalb|LaSalle|Kendall","17037|17099|17093","FALSE","FALSE","America/Chicago"
-"60549","41.49085","-88.74238","Serena","IL","Illinois","TRUE","","190","3.1","17099","LaSalle","{""17099"": ""100""}","LaSalle","17099","FALSE","FALSE","America/Chicago"
-"60550","41.77881","-88.87592","Shabbona","IL","Illinois","TRUE","","1553","13.5","17037","DeKalb","{""17037"": ""100""}","DeKalb","17037","FALSE","FALSE","America/Chicago"
-"60551","41.52537","-88.68474","Sheridan","IL","Illinois","TRUE","","5284","35.3","17099","LaSalle","{""17099"": ""100""}","LaSalle","17099","FALSE","FALSE","America/Chicago"
-"60552","41.6599","-88.70302","Somonauk","IL","Illinois","TRUE","","4348","61.9","17099","LaSalle","{""17099"": ""53.28"", ""17037"": ""46.72""}","LaSalle|DeKalb","17099|17037","FALSE","FALSE","America/Chicago"
-"60553","41.82791","-89.02682","Steward","IL","Illinois","TRUE","","688","5.2","17103","Lee","{""17103"": ""100""}","Lee","17103","FALSE","FALSE","America/Chicago"
-"60554","41.77601","-88.45653","Sugar Grove","IL","Illinois","TRUE","","12194","132.0","17089","Kane","{""17089"": ""99.87"", ""17093"": ""0.13""}","Kane|Kendall","17089|17093","FALSE","FALSE","America/Chicago"
-"60555","41.82274","-88.18135","Warrenville","IL","Illinois","TRUE","","13273","744.0","17043","DuPage","{""17043"": ""100""}","DuPage","17043","FALSE","FALSE","America/Chicago"
-"60556","41.76263","-88.77345","Waterman","IL","Illinois","TRUE","","2124","15.7","17037","DeKalb","{""17037"": ""100""}","DeKalb","17037","FALSE","FALSE","America/Chicago"
-"60557","41.44553","-88.76381","Wedron","IL","Illinois","TRUE","","280","160.9","17099","LaSalle","{""17099"": ""100""}","LaSalle","17099","FALSE","FALSE","America/Chicago"
-"60558","41.80612","-87.90159","Western Springs","IL","Illinois","TRUE","","13272","1454.0","17031","Cook","{""17031"": ""100""}","Cook","17031","FALSE","FALSE","America/Chicago"
-"60559","41.79401","-87.97484","Westmont","IL","Illinois","TRUE","","24384","1932.5","17043","DuPage","{""17043"": ""100""}","DuPage","17043","FALSE","FALSE","America/Chicago"
-"60560","41.60802","-88.42971","Yorkville","IL","Illinois","TRUE","","25140","124.9","17093","Kendall","{""17093"": ""100""}","Kendall","17093","FALSE","FALSE","America/Chicago"
-"60561","41.74536","-87.98241","Darien","IL","Illinois","TRUE","","22955","1418.4","17043","DuPage","{""17043"": ""100""}","DuPage","17043","FALSE","FALSE","America/Chicago"
-"60563","41.7997","-88.17025","Naperville","IL","Illinois","TRUE","","37705","959.8","17043","DuPage","{""17043"": ""100""}","DuPage","17043","FALSE","FALSE","America/Chicago"
-"60564","41.70819","-88.19854","Naperville","IL","Illinois","TRUE","","42425","1019.5","17197","Will","{""17197"": ""87.52"", ""17043"": ""12.48""}","Will|DuPage","17197|17043","FALSE","FALSE","America/Chicago"
-"60565","41.73006","-88.12393","Naperville","IL","Illinois","TRUE","","40560","1261.3","17043","DuPage","{""17043"": ""62.47"", ""17197"": ""37.53""}","DuPage|Will","17043|17197","FALSE","FALSE","America/Chicago"
-"60585","41.65936","-88.22417","Plainfield","IL","Illinois","TRUE","","23875","577.0","17197","Will","{""17197"": ""90.83"", ""17093"": ""9.17""}","Will|Kendall","17197|17093","FALSE","FALSE","America/Chicago"
-"60586","41.57046","-88.23342","Plainfield","IL","Illinois","TRUE","","47495","1045.3","17197","Will","{""17197"": ""88.46"", ""17093"": ""11.54""}","Will|Kendall","17197|17093","FALSE","FALSE","America/Chicago"
-"60601","41.88526","-87.62194","Chicago","IL","Illinois","TRUE","","15083","16145.0","17031","Cook","{""17031"": ""100""}","Cook","17031","FALSE","FALSE","America/Chicago"
-"60602","41.88309","-87.62912","Chicago","IL","Illinois","TRUE","","1145","5078.1","17031","Cook","{""17031"": ""100""}","Cook","17031","FALSE","FALSE","America/Chicago"
-"60603","41.88022","-87.62549","Chicago","IL","Illinois","TRUE","","1052","2803.6","17031","Cook","{""17031"": ""100""}","Cook","17031","FALSE","FALSE","America/Chicago"
-"60604","41.87814","-87.62837","Chicago","IL","Illinois","TRUE","","823","3431.7","17031","Cook","{""17031"": ""100""}","Cook","17031","FALSE","FALSE","America/Chicago"
-"60605","41.86684","-87.61983","Chicago","IL","Illinois","TRUE","","29060","9009.1","17031","Cook","{""17031"": ""100""}","Cook","17031","FALSE","FALSE","America/Chicago"
-"60606","41.88195","-87.63731","Chicago","IL","Illinois","TRUE","","3287","5769.5","17031","Cook","{""17031"": ""100""}","Cook","17031","FALSE","FALSE","America/Chicago"
-"60607","41.87503","-87.65157","Chicago","IL","Illinois","TRUE","","29293","4941.5","17031","Cook","{""17031"": ""100""}","Cook","17031","FALSE","FALSE","America/Chicago"
-"60608","41.84878","-87.67131","Chicago","IL","Illinois","TRUE","","80059","4904.8","17031","Cook","{""17031"": ""100""}","Cook","17031","FALSE","FALSE","America/Chicago"
-"60609","41.81252","-87.6556","Chicago","IL","Illinois","TRUE","","60939","3039.3","17031","Cook","{""17031"": ""100""}","Cook","17031","FALSE","FALSE","America/Chicago"
-"60610","41.90487","-87.63615","Chicago","IL","Illinois","TRUE","","40548","13527.3","17031","Cook","{""17031"": ""100""}","Cook","17031","FALSE","FALSE","America/Chicago"
-"60611","41.89472","-87.61938","Chicago","IL","Illinois","TRUE","","33224","15690.2","17031","Cook","{""17031"": ""100""}","Cook","17031","FALSE","FALSE","America/Chicago"
-"60612","41.88033","-87.68765","Chicago","IL","Illinois","TRUE","","33735","3474.4","17031","Cook","{""17031"": ""100""}","Cook","17031","FALSE","FALSE","America/Chicago"
-"60613","41.95586","-87.65781","Chicago","IL","Illinois","TRUE","","50761","9012.9","17031","Cook","{""17031"": ""100""}","Cook","17031","FALSE","FALSE","America/Chicago"
-"60614","41.92273","-87.65131","Chicago","IL","Illinois","TRUE","","71954","8905.0","17031","Cook","{""17031"": ""100""}","Cook","17031","FALSE","FALSE","America/Chicago"
-"60615","41.80223","-87.60259","Chicago","IL","Illinois","TRUE","","40590","7084.2","17031","Cook","{""17031"": ""100""}","Cook","17031","FALSE","FALSE","America/Chicago"
-"60616","41.84525","-87.62725","Chicago","IL","Illinois","TRUE","","54197","5234.1","17031","Cook","{""17031"": ""100""}","Cook","17031","FALSE","FALSE","America/Chicago"
-"60617","41.71591","-87.55432","Chicago","IL","Illinois","TRUE","","83553","2328.7","17031","Cook","{""17031"": ""100""}","Cook","17031","FALSE","FALSE","America/Chicago"
-"60618","41.947","-87.70244","Chicago","IL","Illinois","TRUE","","94907","7332.8","17031","Cook","{""17031"": ""100""}","Cook","17031","FALSE","FALSE","America/Chicago"
-"60619","41.74365","-87.60557","Chicago","IL","Illinois","TRUE","","61207","3924.6","17031","Cook","{""17031"": ""100""}","Cook","17031","FALSE","FALSE","America/Chicago"
-"60620","41.7408","-87.65252","Chicago","IL","Illinois","TRUE","","67711","3690.1","17031","Cook","{""17031"": ""100""}","Cook","17031","FALSE","FALSE","America/Chicago"
-"60621","41.77639","-87.63943","Chicago","IL","Illinois","TRUE","","28018","2901.4","17031","Cook","{""17031"": ""100""}","Cook","17031","FALSE","FALSE","America/Chicago"
-"60622","41.90275","-87.6833","Chicago","IL","Illinois","TRUE","","53294","8329.6","17031","Cook","{""17031"": ""100""}","Cook","17031","FALSE","FALSE","America/Chicago"
-"60623","41.84808","-87.71778","Chicago","IL","Illinois","TRUE","","81283","5842.9","17031","Cook","{""17031"": ""100""}","Cook","17031","FALSE","FALSE","America/Chicago"
-"60624","41.88056","-87.72335","Chicago","IL","Illinois","TRUE","","34892","3811.1","17031","Cook","{""17031"": ""100""}","Cook","17031","FALSE","FALSE","America/Chicago"
-"60625","41.97341","-87.7002","Chicago","IL","Illinois","TRUE","","79444","7916.6","17031","Cook","{""17031"": ""100""}","Cook","17031","FALSE","FALSE","America/Chicago"
-"60626","42.00903","-87.66962","Chicago","IL","Illinois","TRUE","","50544","11446.9","17031","Cook","{""17031"": ""100""}","Cook","17031","FALSE","FALSE","America/Chicago"
-"60628","41.69176","-87.61796","Chicago","IL","Illinois","TRUE","","64254","2271.9","17031","Cook","{""17031"": ""100""}","Cook","17031","FALSE","FALSE","America/Chicago"
-"60629","41.77567","-87.71176","Chicago","IL","Illinois","TRUE","","110029","6245.6","17031","Cook","{""17031"": ""100""}","Cook","17031","FALSE","FALSE","America/Chicago"
-"60630","41.97213","-87.75709","Chicago","IL","Illinois","TRUE","","56433","4563.6","17031","Cook","{""17031"": ""100""}","Cook","17031","FALSE","FALSE","America/Chicago"
-"60631","41.99474","-87.81318","Chicago","IL","Illinois","TRUE","","29529","3063.6","17031","Cook","{""17031"": ""100""}","Cook","17031","FALSE","FALSE","America/Chicago"
-"60632","41.81133","-87.71335","Chicago","IL","Illinois","TRUE","","89857","4667.8","17031","Cook","{""17031"": ""100""}","Cook","17031","FALSE","FALSE","America/Chicago"
-"60633","41.66435","-87.56136","Chicago","IL","Illinois","TRUE","","12689","476.3","17031","Cook","{""17031"": ""100""}","Cook","17031","FALSE","FALSE","America/Chicago"
-"60634","41.94634","-87.80606","Chicago","IL","Illinois","TRUE","","75082","4075.6","17031","Cook","{""17031"": ""100""}","Cook","17031","FALSE","FALSE","America/Chicago"
-"60636","41.77575","-87.66911","Chicago","IL","Illinois","TRUE","","30024","2963.2","17031","Cook","{""17031"": ""100""}","Cook","17031","FALSE","FALSE","America/Chicago"
-"60637","41.78143","-87.60318","Chicago","IL","Illinois","TRUE","","47300","4032.5","17031","Cook","{""17031"": ""100""}","Cook","17031","FALSE","FALSE","America/Chicago"
-"60638","41.78145","-87.77056","Chicago","IL","Illinois","TRUE","","58669","2039.6","17031","Cook","{""17031"": ""100""}","Cook","17031","FALSE","FALSE","America/Chicago"
-"60639","41.92058","-87.75607","Chicago","IL","Illinois","TRUE","","88204","6982.1","17031","Cook","{""17031"": ""100""}","Cook","17031","FALSE","FALSE","America/Chicago"
-"60640","41.97237","-87.66347","Chicago","IL","Illinois","TRUE","","69363","11102.5","17031","Cook","{""17031"": ""100""}","Cook","17031","FALSE","FALSE","America/Chicago"
-"60641","41.94663","-87.74669","Chicago","IL","Illinois","TRUE","","69880","6675.5","17031","Cook","{""17031"": ""100""}","Cook","17031","FALSE","FALSE","America/Chicago"
-"60642","41.90161","-87.65803","Chicago","IL","Illinois","TRUE","","19716","4605.1","17031","Cook","{""17031"": ""100""}","Cook","17031","FALSE","FALSE","America/Chicago"
-"60643","41.69955","-87.66276","Chicago","IL","Illinois","TRUE","","48887","2569.1","17031","Cook","{""17031"": ""100""}","Cook","17031","FALSE","FALSE","America/Chicago"
-"60644","41.8802","-87.75751","Chicago","IL","Illinois","TRUE","","46591","5134.2","17031","Cook","{""17031"": ""100""}","Cook","17031","FALSE","FALSE","America/Chicago"
-"60645","42.00853","-87.6948","Chicago","IL","Illinois","TRUE","","47270","8084.5","17031","Cook","{""17031"": ""100""}","Cook","17031","FALSE","FALSE","America/Chicago"
-"60646","41.99301","-87.7596","Chicago","IL","Illinois","TRUE","","28569","2412.8","17031","Cook","{""17031"": ""100""}","Cook","17031","FALSE","FALSE","America/Chicago"
-"60647","41.92065","-87.70175","Chicago","IL","Illinois","TRUE","","87633","8417.9","17031","Cook","{""17031"": ""100""}","Cook","17031","FALSE","FALSE","America/Chicago"
-"60649","41.76303","-87.57036","Chicago","IL","Illinois","TRUE","","46633","6146.6","17031","Cook","{""17031"": ""100""}","Cook","17031","FALSE","FALSE","America/Chicago"
-"60651","41.90208","-87.74089","Chicago","IL","Illinois","TRUE","","63492","7013.5","17031","Cook","{""17031"": ""100""}","Cook","17031","FALSE","FALSE","America/Chicago"
-"60652","41.74795","-87.71479","Chicago","IL","Illinois","TRUE","","43447","3345.2","17031","Cook","{""17031"": ""100""}","Cook","17031","FALSE","FALSE","America/Chicago"
-"60653","41.81924","-87.61007","Chicago","IL","Illinois","TRUE","","33154","5487.8","17031","Cook","{""17031"": ""100""}","Cook","17031","FALSE","FALSE","America/Chicago"
-"60654","41.89228","-87.63727","Chicago","IL","Illinois","TRUE","","20022","13668.7","17031","Cook","{""17031"": ""100""}","Cook","17031","FALSE","FALSE","America/Chicago"
-"60655","41.69476","-87.70379","Chicago","IL","Illinois","TRUE","","28569","2504.3","17031","Cook","{""17031"": ""100""}","Cook","17031","FALSE","FALSE","America/Chicago"
-"60656","41.97424","-87.82692","Chicago","IL","Illinois","TRUE","","28218","3333.4","17031","Cook","{""17031"": ""100""}","Cook","17031","FALSE","FALSE","America/Chicago"
-"60657","41.93991","-87.65382","Chicago","IL","Illinois","TRUE","","70958","12050.6","17031","Cook","{""17031"": ""100""}","Cook","17031","FALSE","FALSE","America/Chicago"
-"60659","41.99108","-87.70416","Chicago","IL","Illinois","TRUE","","42735","8138.3","17031","Cook","{""17031"": ""100""}","Cook","17031","FALSE","FALSE","America/Chicago"
-"60660","41.99111","-87.66605","Chicago","IL","Illinois","TRUE","","44498","13319.4","17031","Cook","{""17031"": ""100""}","Cook","17031","FALSE","FALSE","America/Chicago"
-"60661","41.88309","-87.64401","Chicago","IL","Illinois","TRUE","","10354","13448.1","17031","Cook","{""17031"": ""100""}","Cook","17031","FALSE","FALSE","America/Chicago"
-"60706","41.96425","-87.81624","Harwood Heights","IL","Illinois","TRUE","","23114","3017.4","17031","Cook","{""17031"": ""100""}","Cook","17031","FALSE","FALSE","America/Chicago"
-"60707","41.9218","-87.80724","Elmwood Park","IL","Illinois","TRUE","","43093","4611.7","17031","Cook","{""17031"": ""100""}","Cook","17031","FALSE","FALSE","America/Chicago"
-"60712","42.00545","-87.7333","Lincolnwood","IL","Illinois","TRUE","","12434","1805.0","17031","Cook","{""17031"": ""100""}","Cook","17031","FALSE","FALSE","America/Chicago"
-"60714","42.02805","-87.81098","Niles","IL","Illinois","TRUE","","29520","1791.6","17031","Cook","{""17031"": ""100""}","Cook","17031","FALSE","FALSE","America/Chicago"
-"60803","41.6721","-87.73568","Alsip","IL","Illinois","TRUE","","22405","1141.7","17031","Cook","{""17031"": ""100""}","Cook","17031","FALSE","FALSE","America/Chicago"
-"60804","41.83783","-87.76014","Cicero","IL","Illinois","TRUE","","82383","4155.8","17031","Cook","{""17031"": ""100""}","Cook","17031","FALSE","FALSE","America/Chicago"
-"60805","41.722","-87.70244","Evergreen Park","IL","Illinois","TRUE","","19479","2206.8","17031","Cook","{""17031"": ""100""}","Cook","17031","FALSE","FALSE","America/Chicago"
-"60827","41.64956","-87.63016","Riverdale","IL","Illinois","TRUE","","28483","1567.7","17031","Cook","{""17031"": ""100""}","Cook","17031","FALSE","FALSE","America/Chicago"
-"60901","41.11084","-87.89814","Kankakee","IL","Illinois","TRUE","","35407","142.8","17091","Kankakee","{""17091"": ""100""}","Kankakee","17091","FALSE","FALSE","America/Chicago"
-"60910","41.07877","-87.80859","Aroma Park","IL","Illinois","TRUE","","575","442.7","17091","Kankakee","{""17091"": ""100""}","Kankakee","17091","FALSE","FALSE","America/Chicago"
-"60911","40.87802","-87.98018","Ashkum","IL","Illinois","TRUE","","1311","7.9","17075","Iroquois","{""17075"": ""100""}","Iroquois","17075","FALSE","FALSE","America/Chicago"
-"60912","40.97003","-87.59935","Beaverville","IL","Illinois","TRUE","","502","5.5","17075","Iroquois","{""17075"": ""100""}","Iroquois","17075","FALSE","FALSE","America/Chicago"
-"60913","41.14701","-88.06177","Bonfield","IL","Illinois","TRUE","","1413","11.9","17091","Kankakee","{""17091"": ""100""}","Kankakee","17091","FALSE","FALSE","America/Chicago"
-"60914","41.18671","-87.86195","Bourbonnais","IL","Illinois","TRUE","","29797","235.8","17091","Kankakee","{""17091"": ""100""}","Kankakee","17091","FALSE","FALSE","America/Chicago"
-"60915","41.14681","-87.86108","Bradley","IL","Illinois","TRUE","","10278","1251.3","17091","Kankakee","{""17091"": ""100""}","Kankakee","17091","FALSE","FALSE","America/Chicago"
-"60917","41.04413","-88.18728","Buckingham","IL","Illinois","TRUE","","538","5.6","17091","Kankakee","{""17091"": ""93.9"", ""17105"": ""3.48"", ""17053"": ""2.61""}","Kankakee|Livingston|Ford","17091|17105|17053","FALSE","FALSE","America/Chicago"
-"60918","40.5962","-88.03048","Buckley","IL","Illinois","TRUE","","717","5.5","17075","Iroquois","{""17075"": ""100""}","Iroquois","17075","FALSE","FALSE","America/Chicago"
-"60919","40.98745","-88.23835","Cabery","IL","Illinois","TRUE","","482","5.3","17053","Ford","{""17053"": ""62.19"", ""17091"": ""19.71"", ""17105"": ""18.1""}","Ford|Kankakee|Livingston","17053|17091|17105","FALSE","FALSE","America/Chicago"
-"60920","41.02926","-88.30496","Campus","IL","Illinois","TRUE","","169","33.2","17105","Livingston","{""17105"": ""100""}","Livingston","17105","FALSE","FALSE","America/Chicago"
-"60921","40.73772","-88.28784","Chatsworth","IL","Illinois","TRUE","","1512","8.2","17105","Livingston","{""17105"": ""98.75"", ""17053"": ""1.25""}","Livingston|Ford","17105|17053","FALSE","FALSE","America/Chicago"
-"60922","41.00413","-87.91867","Chebanse","IL","Illinois","TRUE","","2576","18.7","17091","Kankakee","{""17091"": ""55.27"", ""17075"": ""44.73""}","Kankakee|Iroquois","17091|17075","FALSE","FALSE","America/Chicago"
-"60924","40.55778","-87.88532","Cissna Park","IL","Illinois","TRUE","","1515","8.1","17075","Iroquois","{""17075"": ""100""}","Iroquois","17075","FALSE","FALSE","America/Chicago"
-"60926","40.57234","-87.80962","Claytonville","IL","Illinois","TRUE","","42","5.9","17075","Iroquois","{""17075"": ""100""}","Iroquois","17075","FALSE","FALSE","America/Chicago"
-"60927","40.93931","-87.96804","Clifton","IL","Illinois","TRUE","","2053","10.8","17075","Iroquois","{""17075"": ""100""}","Iroquois","17075","FALSE","FALSE","America/Chicago"
-"60928","40.74163","-87.84902","Crescent City","IL","Illinois","TRUE","","675","23.6","17075","Iroquois","{""17075"": ""100""}","Iroquois","17075","FALSE","FALSE","America/Chicago"
-"60929","40.87497","-88.28915","Cullom","IL","Illinois","TRUE","","707","7.0","17105","Livingston","{""17105"": ""96.16"", ""17053"": ""3.84""}","Livingston|Ford","17105|17053","FALSE","FALSE","America/Chicago"
-"60930","40.82989","-88.00256","Danforth","IL","Illinois","TRUE","","985","8.6","17075","Iroquois","{""17075"": ""100""}","Iroquois","17075","FALSE","FALSE","America/Chicago"
-"60931","40.89039","-87.58523","Donovan","IL","Illinois","TRUE","","591","5.0","17075","Iroquois","{""17075"": ""100""}","Iroquois","17075","FALSE","FALSE","America/Chicago"
-"60932","40.46333","-87.80563","East Lynn","IL","Illinois","TRUE","","61","31.8","17183","Vermilion","{""17183"": ""100""}","Vermilion","17183","FALSE","FALSE","America/Chicago"
-"60933","40.4647","-88.27192","Elliott","IL","Illinois","TRUE","","272","51.9","17053","Ford","{""17053"": ""100""}","Ford","17053","FALSE","FALSE","America/Chicago"
-"60934","40.96171","-88.3512","Emington","IL","Illinois","TRUE","","233","2.8","17105","Livingston","{""17105"": ""100""}","Livingston","17105","FALSE","FALSE","America/Chicago"
-"60935","41.17297","-88.17608","Essex","IL","Illinois","TRUE","","1229","25.1","17091","Kankakee","{""17091"": ""100""}","Kankakee","17091","FALSE","FALSE","America/Chicago"
-"60936","40.46679","-88.35707","Gibson City","IL","Illinois","TRUE","","4074","15.5","17053","Ford","{""17053"": ""99.28"", ""17113"": ""0.44"", ""17019"": ""0.28""}","Ford|McLean|Champaign","17053|17113|17019","FALSE","FALSE","America/Chicago"
-"60938","40.77329","-87.98865","Gilman","IL","Illinois","TRUE","","1975","15.0","17075","Iroquois","{""17075"": ""100""}","Iroquois","17075","FALSE","FALSE","America/Chicago"
-"60940","41.2506","-87.64282","Grant Park","IL","Illinois","TRUE","","3170","16.2","17091","Kankakee","{""17091"": ""98.13"", ""17197"": ""1.87""}","Kankakee|Will","17091|17197","FALSE","FALSE","America/Chicago"
-"60941","41.04201","-88.0821","Herscher","IL","Illinois","TRUE","","2200","16.2","17091","Kankakee","{""17091"": ""97.79"", ""17075"": ""2.21""}","Kankakee|Iroquois","17091|17075","FALSE","FALSE","America/Chicago"
-"60942","40.46563","-87.66092","Hoopeston","IL","Illinois","TRUE","","5898","19.7","17183","Vermilion","{""17183"": ""96.89"", ""17075"": ""3.11""}","Vermilion|Iroquois","17183|17075","FALSE","FALSE","America/Chicago"
-"60945","40.82829","-87.58373","Iroquois","IL","Illinois","TRUE","","179","136.4","17075","Iroquois","{""17075"": ""100""}","Iroquois","17075","FALSE","FALSE","America/Chicago"
-"60946","40.91652","-88.20291","Kempton","IL","Illinois","TRUE","","404","3.6","17053","Ford","{""17053"": ""89.44"", ""17105"": ""10.56""}","Ford|Livingston","17053|17105","FALSE","FALSE","America/Chicago"
-"60948","40.52548","-88.08197","Loda","IL","Illinois","TRUE","","1570","12.9","17075","Iroquois","{""17075"": ""93.28"", ""17053"": ""6.72""}","Iroquois|Ford","17075|17053","FALSE","FALSE","America/Chicago"
-"60949","40.38216","-88.10289","Ludlow","IL","Illinois","TRUE","","488","7.5","17019","Champaign","{""17019"": ""95.28"", ""17053"": ""4.72""}","Champaign|Ford","17019|17053","FALSE","FALSE","America/Chicago"
-"60950","41.25119","-87.88445","Manteno","IL","Illinois","TRUE","","11592","58.6","17091","Kankakee","{""17091"": ""99.42"", ""17197"": ""0.58""}","Kankakee|Will","17091|17197","FALSE","FALSE","America/Chicago"
-"60951","40.92138","-87.75109","Martinton","IL","Illinois","TRUE","","803","5.8","17075","Iroquois","{""17075"": ""100""}","Iroquois","17075","FALSE","FALSE","America/Chicago"
-"60952","40.56446","-88.25279","Melvin","IL","Illinois","TRUE","","657","6.2","17053","Ford","{""17053"": ""99.27"", ""17105"": ""0.73""}","Ford|Livingston","17053|17105","FALSE","FALSE","America/Chicago"
-"60953","40.62992","-87.68812","Milford","IL","Illinois","TRUE","","2425","6.3","17075","Iroquois","{""17075"": ""100""}","Iroquois","17075","FALSE","FALSE","America/Chicago"
-"60954","41.15338","-87.62902","Momence","IL","Illinois","TRUE","","5820","33.8","17091","Kankakee","{""17091"": ""100""}","Kankakee","17091","FALSE","FALSE","America/Chicago"
-"60955","40.69739","-87.97654","Onarga","IL","Illinois","TRUE","","1655","7.3","17075","Iroquois","{""17075"": ""100""}","Iroquois","17075","FALSE","FALSE","America/Chicago"
-"60957","40.44296","-88.13624","Paxton","IL","Illinois","TRUE","","5311","20.6","17053","Ford","{""17053"": ""98.2"", ""17019"": ""1.8""}","Ford|Champaign","17053|17019","FALSE","FALSE","America/Chicago"
-"60958","41.06492","-87.59135","Pembroke Township","IL","Illinois","TRUE","","1709","12.6","17091","Kankakee","{""17091"": ""100""}","Kankakee","17091","FALSE","FALSE","America/Chicago"
-"60959","40.78971","-88.182","Piper City","IL","Illinois","TRUE","","1081","7.5","17053","Ford","{""17053"": ""98.15"", ""17105"": ""1.85""}","Ford|Livingston","17053|17105","FALSE","FALSE","America/Chicago"
-"60960","40.43873","-87.88999","Rankin","IL","Illinois","TRUE","","1036","4.8","17183","Vermilion","{""17183"": ""79.14"", ""17053"": ""16.92"", ""17075"": ""3.29"", ""17019"": ""0.66""}","Vermilion|Ford|Iroquois|Champaign","17183|17053|17075|17019","FALSE","FALSE","America/Chicago"
-"60961","41.10651","-88.23084","Reddick","IL","Illinois","TRUE","","786","8.2","17091","Kankakee","{""17091"": ""84.14"", ""17105"": ""15.29"", ""17063"": ""0.57""}","Kankakee|Livingston|Grundy","17091|17105|17063","FALSE","FALSE","America/Chicago"
-"60962","40.62283","-88.18445","Roberts","IL","Illinois","TRUE","","539","5.1","17053","Ford","{""17053"": ""100""}","Ford","17053","FALSE","FALSE","America/Chicago"
-"60963","40.36667","-87.6485","Rossville","IL","Illinois","TRUE","","1715","8.5","17183","Vermilion","{""17183"": ""100""}","Vermilion","17183","FALSE","FALSE","America/Chicago"
-"60964","41.03551","-87.73825","Saint Anne","IL","Illinois","TRUE","","4857","25.0","17091","Kankakee","{""17091"": ""93.08"", ""17075"": ""6.92""}","Kankakee|Iroquois","17091|17075","FALSE","FALSE","America/Chicago"
-"60966","40.75153","-87.58315","Sheldon","IL","Illinois","TRUE","","1541","9.9","17075","Iroquois","{""17075"": ""100""}","Iroquois","17075","FALSE","FALSE","America/Chicago"
-"60968","40.67241","-88.12066","Thawville","IL","Illinois","TRUE","","474","4.2","17075","Iroquois","{""17075"": ""82.22"", ""17053"": ""17.78""}","Iroquois|Ford","17075|17053","FALSE","FALSE","America/Chicago"
-"60969","41.11102","-88.14976","Union Hill","IL","Illinois","TRUE","","78","119.0","17091","Kankakee","{""17091"": ""100""}","Kankakee","17091","FALSE","FALSE","America/Chicago"
-"60970","40.79334","-87.73838","Watseka","IL","Illinois","TRUE","","6753","20.1","17075","Iroquois","{""17075"": ""100""}","Iroquois","17075","FALSE","FALSE","America/Chicago"
-"60973","40.54172","-87.6631","Wellington","IL","Illinois","TRUE","","345","3.8","17075","Iroquois","{""17075"": ""100""}","Iroquois","17075","FALSE","FALSE","America/Chicago"
-"60974","40.71914","-87.73422","Woodland","IL","Illinois","TRUE","","211","61.0","17075","Iroquois","{""17075"": ""100""}","Iroquois","17075","FALSE","FALSE","America/Chicago"
-"61001","42.46094","-90.12455","Apple River","IL","Illinois","TRUE","","1074","10.7","17085","Jo Daviess","{""17085"": ""100""}","Jo Daviess","17085","FALSE","FALSE","America/Chicago"
-"61006","41.86054","-89.20951","Ashton","IL","Illinois","TRUE","","1841","10.2","17103","Lee","{""17103"": ""86.36"", ""17141"": ""13.64""}","Lee|Ogle","17103|17141","FALSE","FALSE","America/Chicago"
-"61007","42.19773","-89.58953","Baileyville","IL","Illinois","TRUE","","502","7.2","17141","Ogle","{""17141"": ""64.98"", ""17177"": ""35.02""}","Ogle|Stephenson","17141|17177","FALSE","FALSE","America/Chicago"
-"61008","42.24514","-88.84072","Belvidere","IL","Illinois","TRUE","","33935","151.7","17007","Boone","{""17007"": ""99.43"", ""17201"": ""0.57""}","Boone|Winnebago","17007|17201","FALSE","FALSE","America/Chicago"
-"61010","42.13571","-89.26789","Byron","IL","Illinois","TRUE","","7650","76.0","17141","Ogle","{""17141"": ""100""}","Ogle","17141","FALSE","FALSE","America/Chicago"
-"61011","42.38959","-88.91287","Caledonia","IL","Illinois","TRUE","","2497","25.3","17007","Boone","{""17007"": ""58.27"", ""17201"": ""41.73""}","Boone|Winnebago","17007|17201","FALSE","FALSE","America/Chicago"
-"61012","42.40745","-88.75447","Capron","IL","Illinois","TRUE","","2496","26.6","17007","Boone","{""17007"": ""100""}","Boone","17007","FALSE","FALSE","America/Chicago"
-"61013","42.3745","-89.63708","Cedarville","IL","Illinois","TRUE","","456","515.4","17177","Stephenson","{""17177"": ""100""}","Stephenson","17177","FALSE","FALSE","America/Chicago"
-"61014","41.97458","-89.88449","Chadwick","IL","Illinois","TRUE","","989","5.9","17015","Carroll","{""17015"": ""88.06"", ""17195"": ""11.94""}","Carroll|Whiteside","17015|17195","FALSE","FALSE","America/Chicago"
-"61015","41.99299","-89.20198","Chana","IL","Illinois","TRUE","","1049","9.9","17141","Ogle","{""17141"": ""100""}","Ogle","17141","FALSE","FALSE","America/Chicago"
-"61016","42.19811","-88.9472","Cherry Valley","IL","Illinois","TRUE","","4627","63.4","17201","Winnebago","{""17201"": ""88.44"", ""17007"": ""11.56""}","Winnebago|Boone","17201|17007","FALSE","FALSE","America/Chicago"
-"61018","42.41528","-89.55528","Dakota","IL","Illinois","TRUE","","962","11.5","17177","Stephenson","{""17177"": ""100""}","Stephenson","17177","FALSE","FALSE","America/Chicago"
-"61019","42.44146","-89.41007","Davis","IL","Illinois","TRUE","","3309","35.3","17177","Stephenson","{""17177"": ""61.01"", ""17201"": ""38.99""}","Stephenson|Winnebago","17177|17201","FALSE","FALSE","America/Chicago"
-"61020","42.11021","-89.09822","Davis Junction","IL","Illinois","TRUE","","3040","37.2","17141","Ogle","{""17141"": ""98.17"", ""17201"": ""1.83""}","Ogle|Winnebago","17141|17201","FALSE","FALSE","America/Chicago"
-"61021","41.8297","-89.47908","Dixon","IL","Illinois","TRUE","","22848","58.9","17103","Lee","{""17103"": ""93.66"", ""17141"": ""6.34""}","Lee|Ogle","17103|17141","FALSE","FALSE","America/Chicago"
-"61024","42.43649","-89.29054","Durand","IL","Illinois","TRUE","","2465","15.2","17201","Winnebago","{""17201"": ""100""}","Winnebago","17201","FALSE","FALSE","America/Chicago"
-"61025","42.47125","-90.56025","East Dubuque","IL","Illinois","TRUE","","4654","51.6","17085","Jo Daviess","{""17085"": ""100""}","Jo Daviess","17085","FALSE","FALSE","America/Chicago"
-"61027","42.33091","-89.75728","Eleroy","IL","Illinois","TRUE","","73","109.5","17177","Stephenson","{""17177"": ""100""}","Stephenson","17177","FALSE","FALSE","America/Chicago"
-"61028","42.29173","-90.16947","Elizabeth","IL","Illinois","TRUE","","1986","7.2","17085","Jo Daviess","{""17085"": ""100""}","Jo Daviess","17085","FALSE","FALSE","America/Chicago"
-"61030","42.11513","-89.58891","Forreston","IL","Illinois","TRUE","","2249","14.6","17141","Ogle","{""17141"": ""100""}","Ogle","17141","FALSE","FALSE","America/Chicago"
-"61031","41.8308","-89.31306","Franklin Grove","IL","Illinois","TRUE","","1569","13.1","17103","Lee","{""17103"": ""97.95"", ""17141"": ""2.05""}","Lee|Ogle","17103|17141","FALSE","FALSE","America/Chicago"
-"61032","42.31634","-89.63525","Freeport","IL","Illinois","TRUE","","29702","77.5","17177","Stephenson","{""17177"": ""100""}","Stephenson","17177","FALSE","FALSE","America/Chicago"
-"61036","42.41522","-90.39117","Galena","IL","Illinois","TRUE","","6414","23.3","17085","Jo Daviess","{""17085"": ""100""}","Jo Daviess","17085","FALSE","FALSE","America/Chicago"
-"61037","41.78938","-89.76032","Galt","IL","Illinois","TRUE","","64","147.1","17195","Whiteside","{""17195"": ""100""}","Whiteside","17195","FALSE","FALSE","America/Chicago"
-"61038","42.26345","-88.73572","Garden Prairie","IL","Illinois","TRUE","","1280","11.6","17007","Boone","{""17007"": ""93.35"", ""17111"": ""6.65""}","Boone|McHenry","17007|17111","FALSE","FALSE","America/Chicago"
-"61039","42.20887","-89.46757","German Valley","IL","Illinois","TRUE","","953","13.2","17177","Stephenson","{""17177"": ""86.41"", ""17141"": ""13.59""}","Stephenson|Ogle","17177|17141","FALSE","FALSE","America/Chicago"
-"61041","42.27611","-90.30158","Hanover","IL","Illinois","TRUE","","1162","7.5","17085","Jo Daviess","{""17085"": ""100""}","Jo Daviess","17085","FALSE","FALSE","America/Chicago"
-"61042","41.68764","-89.56374","Harmon","IL","Illinois","TRUE","","625","3.6","17103","Lee","{""17103"": ""100""}","Lee","17103","FALSE","FALSE","America/Chicago"
-"61043","42.05648","-89.10527","Holcomb","IL","Illinois","TRUE","","121","24.8","17141","Ogle","{""17141"": ""100""}","Ogle","17141","FALSE","FALSE","America/Chicago"
-"61044","42.3188","-89.91502","Kent","IL","Illinois","TRUE","","272","8.4","17177","Stephenson","{""17177"": ""77.16"", ""17085"": ""22.84""}","Stephenson|Jo Daviess","17177|17085","FALSE","FALSE","America/Chicago"
-"61046","42.10445","-89.81366","Lanark","IL","Illinois","TRUE","","2330","10.9","17015","Carroll","{""17015"": ""100""}","Carroll","17015","FALSE","FALSE","America/Chicago"
-"61047","42.15313","-89.39589","Leaf River","IL","Illinois","TRUE","","1669","9.7","17141","Ogle","{""17141"": ""96.43"", ""17201"": ""2.86"", ""17177"": ""0.7""}","Ogle|Winnebago|Stephenson","17141|17201|17177","FALSE","FALSE","America/Chicago"
-"61048","42.38355","-89.83555","Lena","IL","Illinois","TRUE","","3807","17.6","17177","Stephenson","{""17177"": ""98"", ""17085"": ""2""}","Stephenson|Jo Daviess","17177|17085","FALSE","FALSE","America/Chicago"
-"61049","42.04417","-89.00754","Lindenwood","IL","Illinois","TRUE","","543","10.3","17141","Ogle","{""17141"": ""100""}","Ogle","17141","FALSE","FALSE","America/Chicago"
-"61050","42.44032","-89.73419","McConnell","IL","Illinois","TRUE","","455","18.4","17177","Stephenson","{""17177"": ""100""}","Stephenson","17177","FALSE","FALSE","America/Chicago"
-"61051","41.98272","-89.7549","Milledgeville","IL","Illinois","TRUE","","1634","11.7","17015","Carroll","{""17015"": ""97.9"", ""17141"": ""2.1""}","Carroll|Ogle","17015|17141","FALSE","FALSE","America/Chicago"
-"61052","42.11139","-88.99957","Monroe Center","IL","Illinois","TRUE","","846","11.8","17141","Ogle","{""17141"": ""100""}","Ogle","17141","FALSE","FALSE","America/Chicago"
-"61053","42.11427","-89.98211","Mount Carroll","IL","Illinois","TRUE","","2681","9.4","17015","Carroll","{""17015"": ""96.74"", ""17085"": ""3.26""}","Carroll|Jo Daviess","17015|17085","FALSE","FALSE","America/Chicago"
-"61054","42.05492","-89.44953","Mount Morris","IL","Illinois","TRUE","","3657","35.6","17141","Ogle","{""17141"": ""100""}","Ogle","17141","FALSE","FALSE","America/Chicago"
-"61057","41.82926","-89.38207","Nachusa","IL","Illinois","TRUE","","97","22.3","17103","Lee","{""17103"": ""100""}","Lee","17103","FALSE","FALSE","America/Chicago"
-"61059","42.45315","-89.94015","Nora","IL","Illinois","TRUE","","202","46.8","17085","Jo Daviess","{""17085"": ""100""}","Jo Daviess","17085","FALSE","FALSE","America/Chicago"
-"61060","42.47813","-89.62192","Orangeville","IL","Illinois","TRUE","","1357","14.5","17177","Stephenson","{""17177"": ""100""}","Stephenson","17177","FALSE","FALSE","America/Chicago"
-"61061","42.00027","-89.33983","Oregon","IL","Illinois","TRUE","","6434","23.7","17141","Ogle","{""17141"": ""100""}","Ogle","17141","FALSE","FALSE","America/Chicago"
-"61062","42.25297","-89.84139","Pearl City","IL","Illinois","TRUE","","1842","9.7","17177","Stephenson","{""17177"": ""98.29"", ""17085"": ""1.61"", ""17015"": ""0.1""}","Stephenson|Jo Daviess|Carroll","17177|17085|17015","FALSE","FALSE","America/Chicago"
-"61063","42.31213","-89.34734","Pecatonica","IL","Illinois","TRUE","","4503","22.8","17201","Winnebago","{""17201"": ""94.51"", ""17177"": ""5.49""}","Winnebago|Stephenson","17201|17177","FALSE","FALSE","America/Chicago"
-"61064","41.98783","-89.5824","Polo","IL","Illinois","TRUE","","3916","14.3","17141","Ogle","{""17141"": ""99.33"", ""17195"": ""0.49"", ""17103"": ""0.18""}","Ogle|Whiteside|Lee","17141|17195|17103","FALSE","FALSE","America/Chicago"
-"61065","42.40752","-88.82753","Poplar Grove","IL","Illinois","TRUE","","10700","80.8","17007","Boone","{""17007"": ""100""}","Boone","17007","FALSE","FALSE","America/Chicago"
-"61067","42.30446","-89.47747","Ridott","IL","Illinois","TRUE","","733","9.4","17177","Stephenson","{""17177"": ""100""}","Stephenson","17177","FALSE","FALSE","America/Chicago"
-"61068","41.94846","-89.0644","Rochelle","IL","Illinois","TRUE","","14246","46.8","17141","Ogle","{""17141"": ""99.29"", ""17103"": ""0.48"", ""17037"": ""0.22""}","Ogle|Lee|DeKalb","17141|17103|17037","FALSE","FALSE","America/Chicago"
-"61070","42.41685","-89.47312","Rock City","IL","Illinois","TRUE","","1374","15.3","17177","Stephenson","{""17177"": ""100""}","Stephenson","17177","FALSE","FALSE","America/Chicago"
-"61071","41.72705","-89.70447","Rock Falls","IL","Illinois","TRUE","","13982","75.9","17195","Whiteside","{""17195"": ""99.35"", ""17103"": ""0.65""}","Whiteside|Lee","17195|17103","FALSE","FALSE","America/Chicago"
-"61072","42.44688","-89.14108","Rockton","IL","Illinois","TRUE","","11345","83.4","17201","Winnebago","{""17201"": ""100""}","Winnebago","17201","FALSE","FALSE","America/Chicago"
-"61073","42.42469","-88.9935","Roscoe","IL","Illinois","TRUE","","19501","274.8","17201","Winnebago","{""17201"": ""99.46"", ""17007"": ""0.54""}","Winnebago|Boone","17201|17007","FALSE","FALSE","America/Chicago"
-"61074","42.12551","-90.12977","Savanna","IL","Illinois","TRUE","","4238","22.0","17015","Carroll","{""17015"": ""99.41"", ""17085"": ""0.59""}","Carroll|Jo Daviess","17015|17085","FALSE","FALSE","America/Chicago"
-"61075","42.46445","-90.25896","Scales Mound","IL","Illinois","TRUE","","976","7.5","17085","Jo Daviess","{""17085"": ""100""}","Jo Daviess","17085","FALSE","FALSE","America/Chicago"
-"61077","42.2382","-89.35787","Seward","IL","Illinois","TRUE","","33","398.3","17201","Winnebago","{""17201"": ""100""}","Winnebago","17201","FALSE","FALSE","America/Chicago"
-"61078","42.16605","-89.72918","Shannon","IL","Illinois","TRUE","","1299","8.7","17015","Carroll","{""17015"": ""85.59"", ""17141"": ""7.86"", ""17177"": ""6.55""}","Carroll|Ogle|Stephenson","17015|17141|17177","FALSE","FALSE","America/Chicago"
-"61079","42.43928","-89.2076","Shirland","IL","Illinois","TRUE","","189","41.3","17201","Winnebago","{""17201"": ""100""}","Winnebago","17201","FALSE","FALSE","America/Chicago"
-"61080","42.47973","-88.98723","South Beloit","IL","Illinois","TRUE","","10479","161.5","17201","Winnebago","{""17201"": ""97.86"", ""17007"": ""2.14""}","Winnebago|Boone","17201|17007","FALSE","FALSE","America/Chicago"
-"61081","41.84388","-89.73537","Sterling","IL","Illinois","TRUE","","21121","66.1","17195","Whiteside","{""17195"": ""97.62"", ""17103"": ""2.38""}","Whiteside|Lee","17195|17103","FALSE","FALSE","America/Chicago"
-"61084","42.11845","-89.18869","Stillman Valley","IL","Illinois","TRUE","","3061","34.0","17141","Ogle","{""17141"": ""96.28"", ""17201"": ""3.72""}","Ogle|Winnebago","17141|17201","FALSE","FALSE","America/Chicago"
-"61085","42.34186","-90.03217","Stockton","IL","Illinois","TRUE","","3352","10.0","17085","Jo Daviess","{""17085"": ""100""}","Jo Daviess","17085","FALSE","FALSE","America/Chicago"
-"61087","42.4802","-89.99264","Warren","IL","Illinois","TRUE","","1563","20.3","17085","Jo Daviess","{""17085"": ""99.52"", ""17177"": ""0.48""}","Jo Daviess|Stephenson","17085|17177","FALSE","FALSE","America/Chicago"
-"61088","42.26887","-89.25567","Winnebago","IL","Illinois","TRUE","","6216","43.6","17201","Winnebago","{""17201"": ""100""}","Winnebago","17201","FALSE","FALSE","America/Chicago"
-"61089","42.47339","-89.81932","Winslow","IL","Illinois","TRUE","","739","6.7","17177","Stephenson","{""17177"": ""100""}","Stephenson","17177","FALSE","FALSE","America/Chicago"
-"61091","41.90692","-89.52763","Woosung","IL","Illinois","TRUE","","67","31.7","17141","Ogle","{""17141"": ""100""}","Ogle","17141","FALSE","FALSE","America/Chicago"
-"61101","42.33748","-89.14851","Rockford","IL","Illinois","TRUE","","19242","178.4","17201","Winnebago","{""17201"": ""100""}","Winnebago","17201","FALSE","FALSE","America/Chicago"
-"61102","42.22955","-89.15731","Rockford","IL","Illinois","TRUE","","17721","198.8","17201","Winnebago","{""17201"": ""98.99"", ""17141"": ""1.01""}","Winnebago|Ogle","17201|17141","FALSE","FALSE","America/Chicago"
-"61103","42.3463","-89.08221","Rockford","IL","Illinois","TRUE","","23512","526.5","17201","Winnebago","{""17201"": ""100""}","Winnebago","17201","FALSE","FALSE","America/Chicago"
-"61104","42.25191","-89.07895","Rockford","IL","Illinois","TRUE","","19492","1668.6","17201","Winnebago","{""17201"": ""100""}","Winnebago","17201","FALSE","FALSE","America/Chicago"
-"61107","42.28363","-89.00326","Rockford","IL","Illinois","TRUE","","30116","784.2","17201","Winnebago","{""17201"": ""98.25"", ""17007"": ""1.75""}","Winnebago|Boone","17201|17007","FALSE","FALSE","America/Chicago"
-"61108","42.25483","-89.00393","Rockford","IL","Illinois","TRUE","","28205","1023.6","17201","Winnebago","{""17201"": ""100""}","Winnebago","17201","FALSE","FALSE","America/Chicago"
-"61109","42.19259","-89.05347","Rockford","IL","Illinois","TRUE","","26910","268.8","17201","Winnebago","{""17201"": ""99.94"", ""17141"": ""0.06""}","Winnebago|Ogle","17201|17141","FALSE","FALSE","America/Chicago"
-"61111","42.33537","-89.00366","Loves Park","IL","Illinois","TRUE","","23260","631.0","17201","Winnebago","{""17201"": ""93.19"", ""17007"": ""6.81""}","Winnebago|Boone","17201|17007","FALSE","FALSE","America/Chicago"
-"61112","42.24193","-88.97519","Rockford","IL","Illinois","TRUE","","62","30.7","17201","Winnebago","{""17201"": ""100""}","Winnebago","17201","FALSE","FALSE","America/Chicago"
-"61114","42.3084","-88.99101","Rockford","IL","Illinois","TRUE","","15958","774.6","17201","Winnebago","{""17201"": ""97.16"", ""17007"": ""2.84""}","Winnebago|Boone","17201|17007","FALSE","FALSE","America/Chicago"
-"61115","42.36373","-89.02886","Machesney Park","IL","Illinois","TRUE","","22502","820.3","17201","Winnebago","{""17201"": ""100""}","Winnebago","17201","FALSE","FALSE","America/Chicago"
-"61201","41.4778","-90.57675","Rock Island","IL","Illinois","TRUE","","38024","820.3","17161","Rock Island","{""17161"": ""100""}","Rock Island","17161","FALSE","FALSE","America/Chicago"
-"61230","41.73902","-90.21403","Albany","IL","Illinois","TRUE","","1037","21.3","17195","Whiteside","{""17195"": ""100""}","Whiteside","17195","FALSE","FALSE","America/Chicago"
-"61231","41.20972","-90.72473","Aledo","IL","Illinois","TRUE","","5216","13.4","17131","Mercer","{""17131"": ""100""}","Mercer","17131","FALSE","FALSE","America/Chicago"
-"61232","41.43071","-90.73254","Andalusia","IL","Illinois","TRUE","","1318","180.0","17161","Rock Island","{""17161"": ""100""}","Rock Island","17161","FALSE","FALSE","America/Chicago"
-"61234","41.42085","-89.91824","Annawan","IL","Illinois","TRUE","","1230","8.2","17073","Henry","{""17073"": ""100""}","Henry","17073","FALSE","FALSE","America/Chicago"
-"61235","41.39965","-90.02351","Atkinson","IL","Illinois","TRUE","","1498","11.1","17073","Henry","{""17073"": ""100""}","Henry","17073","FALSE","FALSE","America/Chicago"
-"61236","41.51379","-90.36072","Barstow","IL","Illinois","TRUE","","98","26.2","17161","Rock Island","{""17161"": ""100""}","Rock Island","17161","FALSE","FALSE","America/Chicago"
-"61238","41.28774","-90.17385","Cambridge","IL","Illinois","TRUE","","3369","12.6","17073","Henry","{""17073"": ""100""}","Henry","17073","FALSE","FALSE","America/Chicago"
-"61239","41.48605","-90.38758","Carbon Cliff","IL","Illinois","TRUE","","1122","257.7","17161","Rock Island","{""17161"": ""100""}","Rock Island","17161","FALSE","FALSE","America/Chicago"
-"61240","41.42553","-90.42977","Coal Valley","IL","Illinois","TRUE","","5842","61.2","17161","Rock Island","{""17161"": ""81.89"", ""17073"": ""18.11""}","Rock Island|Henry","17161|17073","FALSE","FALSE","America/Chicago"
-"61241","41.4885","-90.32095","Colona","IL","Illinois","TRUE","","7035","150.5","17073","Henry","{""17073"": ""100""}","Henry","17073","FALSE","FALSE","America/Chicago"
-"61242","41.70361","-90.27858","Cordova","IL","Illinois","TRUE","","1322","16.3","17161","Rock Island","{""17161"": ""100""}","Rock Island","17161","FALSE","FALSE","America/Chicago"
-"61243","41.61876","-89.68296","Deer Grove","IL","Illinois","TRUE","","241","3.4","17195","Whiteside","{""17195"": ""100""}","Whiteside","17195","FALSE","FALSE","America/Chicago"
-"61244","41.52329","-90.39479","East Moline","IL","Illinois","TRUE","","23361","344.5","17161","Rock Island","{""17161"": ""100""}","Rock Island","17161","FALSE","FALSE","America/Chicago"
-"61250","41.65891","-90.10302","Erie","IL","Illinois","TRUE","","2489","11.2","17195","Whiteside","{""17195"": ""98.87"", ""17073"": ""1.13""}","Whiteside|Henry","17195|17073","FALSE","FALSE","America/Chicago"
-"61251","41.73056","-90.07568","Fenton","IL","Illinois","TRUE","","357","7.8","17195","Whiteside","{""17195"": ""100""}","Whiteside","17195","FALSE","FALSE","America/Chicago"
-"61252","41.84318","-90.11798","Fulton","IL","Illinois","TRUE","","5293","34.6","17195","Whiteside","{""17195"": ""99.83"", ""17015"": ""0.17""}","Whiteside|Carroll","17195|17015","FALSE","FALSE","America/Chicago"
-"61254","41.46862","-90.15087","Geneseo","IL","Illinois","TRUE","","11003","24.6","17073","Henry","{""17073"": ""100""}","Henry","17073","FALSE","FALSE","America/Chicago"
-"61256","41.55914","-90.40154","Hampton","IL","Illinois","TRUE","","2088","609.9","17161","Rock Island","{""17161"": ""100""}","Rock Island","17161","FALSE","FALSE","America/Chicago"
-"61257","41.59054","-90.22275","Hillsdale","IL","Illinois","TRUE","","1112","10.5","17161","Rock Island","{""17161"": ""100""}","Rock Island","17161","FALSE","FALSE","America/Chicago"
-"61258","41.52185","-89.91396","Hooppole","IL","Illinois","TRUE","","184","192.3","17073","Henry","{""17073"": ""100""}","Henry","17073","FALSE","FALSE","America/Chicago"
-"61259","41.38819","-90.93153","Illinois City","IL","Illinois","TRUE","","1158","5.9","17161","Rock Island","{""17161"": ""100""}","Rock Island","17161","FALSE","FALSE","America/Chicago"
-"61260","41.24624","-90.88299","Joy","IL","Illinois","TRUE","","964","6.4","17131","Mercer","{""17131"": ""97.2"", ""17161"": ""2.8""}","Mercer|Rock Island","17131|17161","FALSE","FALSE","America/Chicago"
-"61261","41.7257","-89.91588","Lyndon","IL","Illinois","TRUE","","903","19.4","17195","Whiteside","{""17195"": ""100""}","Whiteside","17195","FALSE","FALSE","America/Chicago"
-"61262","41.2805","-90.35675","Lynn Center","IL","Illinois","TRUE","","1039","9.3","17073","Henry","{""17073"": ""87.79"", ""17131"": ""12.21""}","Henry|Mercer","17073|17131","FALSE","FALSE","America/Chicago"
-"61263","41.25884","-90.60477","Matherville","IL","Illinois","TRUE","","743","950.6","17131","Mercer","{""17131"": ""100""}","Mercer","17131","FALSE","FALSE","America/Chicago"
-"61264","41.3968","-90.59173","Milan","IL","Illinois","TRUE","","10485","56.4","17161","Rock Island","{""17161"": ""98.94"", ""17131"": ""1.06""}","Rock Island|Mercer","17161|17131","FALSE","FALSE","America/Chicago"
-"61265","41.48203","-90.49023","Moline","IL","Illinois","TRUE","","43472","889.7","17161","Rock Island","{""17161"": ""100""}","Rock Island","17161","FALSE","FALSE","America/Chicago"
-"61270","41.82971","-89.9664","Morrison","IL","Illinois","TRUE","","6938","17.7","17195","Whiteside","{""17195"": ""100""}","Whiteside","17195","FALSE","FALSE","America/Chicago"
-"61272","41.24652","-91.00566","New Boston","IL","Illinois","TRUE","","1170","5.0","17131","Mercer","{""17131"": ""99.73"", ""17161"": ""0.27""}","Mercer|Rock Island","17131|17161","FALSE","FALSE","America/Chicago"
-"61273","41.36288","-90.39892","Orion","IL","Illinois","TRUE","","3176","26.3","17073","Henry","{""17073"": ""94.69"", ""17161"": ""5.31""}","Henry|Rock Island","17073|17161","FALSE","FALSE","America/Chicago"
-"61274","41.36857","-90.27707","Osco","IL","Illinois","TRUE","","267","4.2","17073","Henry","{""17073"": ""100""}","Henry","17073","FALSE","FALSE","America/Chicago"
-"61275","41.5998","-90.2984","Port Byron","IL","Illinois","TRUE","","4710","54.0","17161","Rock Island","{""17161"": ""100""}","Rock Island","17161","FALSE","FALSE","America/Chicago"
-"61276","41.30405","-90.5899","Preemption","IL","Illinois","TRUE","","63","10.4","17131","Mercer","{""17131"": ""100""}","Mercer","17131","FALSE","FALSE","America/Chicago"
-"61277","41.60673","-89.93165","Prophetstown","IL","Illinois","TRUE","","3225","9.8","17195","Whiteside","{""17195"": ""88.7"", ""17073"": ""11.3""}","Whiteside|Henry","17195|17073","FALSE","FALSE","America/Chicago"
-"61278","41.58202","-90.33695","Rapids City","IL","Illinois","TRUE","","514","198.4","17161","Rock Island","{""17161"": ""100""}","Rock Island","17161","FALSE","FALSE","America/Chicago"
-"61279","41.32053","-90.72682","Reynolds","IL","Illinois","TRUE","","909","8.2","17161","Rock Island","{""17161"": ""71.63"", ""17131"": ""28.37""}","Rock Island|Mercer","17161|17131","FALSE","FALSE","America/Chicago"
-"61281","41.29689","-90.51975","Sherrard","IL","Illinois","TRUE","","2460","24.6","17131","Mercer","{""17131"": ""97.61"", ""17161"": ""2.39""}","Mercer|Rock Island","17131|17161","FALSE","FALSE","America/Chicago"
-"61282","41.4956","-90.413","Silvis","IL","Illinois","TRUE","","7732","896.3","17161","Rock Island","{""17161"": ""100""}","Rock Island","17161","FALSE","FALSE","America/Chicago"
-"61283","41.59187","-89.78655","Tampico","IL","Illinois","TRUE","","1909","8.9","17195","Whiteside","{""17195"": ""77.32"", ""17011"": ""22.68""}","Whiteside|Bureau","17195|17011","FALSE","FALSE","America/Chicago"
-"61284","41.39364","-90.74672","Taylor Ridge","IL","Illinois","TRUE","","1973","16.9","17161","Rock Island","{""17161"": ""100""}","Rock Island","17161","FALSE","FALSE","America/Chicago"
-"61285","41.97814","-90.05951","Thomson","IL","Illinois","TRUE","","1650","16.1","17015","Carroll","{""17015"": ""100""}","Carroll","17015","FALSE","FALSE","America/Chicago"
-"61301","41.39484","-89.08042","La Salle","IL","Illinois","TRUE","","9807","95.1","17099","LaSalle","{""17099"": ""100""}","LaSalle","17099","FALSE","FALSE","America/Chicago"
-"61310","41.70002","-89.34998","Amboy","IL","Illinois","TRUE","","3825","13.8","17103","Lee","{""17103"": ""100""}","Lee","17103","FALSE","FALSE","America/Chicago"
-"61311","41.03781","-88.86003","Ancona","IL","Illinois","TRUE","","226","5.6","17105","Livingston","{""17105"": ""100""}","Livingston","17105","FALSE","FALSE","America/Chicago"
-"61312","41.43577","-89.23295","Arlington","IL","Illinois","TRUE","","485","5.4","17011","Bureau","{""17011"": ""100""}","Bureau","17011","FALSE","FALSE","America/Chicago"
-"61313","41.07368","-88.66868","Blackstone","IL","Illinois","TRUE","","203","1.9","17105","Livingston","{""17105"": ""100""}","Livingston","17105","FALSE","FALSE","America/Chicago"
-"61314","41.29609","-89.67409","Buda","IL","Illinois","TRUE","","952","7.9","17011","Bureau","{""17011"": ""100""}","Bureau","17011","FALSE","FALSE","America/Chicago"
-"61315","41.28765","-89.36422","Bureau","IL","Illinois","TRUE","","240","64.5","17011","Bureau","{""17011"": ""100""}","Bureau","17011","FALSE","FALSE","America/Chicago"
-"61316","41.25904","-89.12502","Cedar Point","IL","Illinois","TRUE","","250","61.0","17099","LaSalle","{""17099"": ""100""}","LaSalle","17099","FALSE","FALSE","America/Chicago"
-"61317","41.43146","-89.2089","Cherry","IL","Illinois","TRUE","","405","47.9","17011","Bureau","{""17011"": ""100""}","Bureau","17011","FALSE","FALSE","America/Chicago"
-"61318","41.71213","-89.07967","Compton","IL","Illinois","TRUE","","774","8.6","17103","Lee","{""17103"": ""100""}","Lee","17103","FALSE","FALSE","America/Chicago"
-"61319","41.01846","-88.74352","Cornell","IL","Illinois","TRUE","","1440","11.2","17105","Livingston","{""17105"": ""100""}","Livingston","17105","FALSE","FALSE","America/Chicago"
-"61320","41.35459","-89.17042","Dalzell","IL","Illinois","TRUE","","681","280.8","17011","Bureau","{""17011"": ""100""}","Bureau","17011","FALSE","FALSE","America/Chicago"
-"61321","40.9692","-88.97316","Dana","IL","Illinois","TRUE","","312","4.3","17099","LaSalle","{""17099"": ""100""}","LaSalle","17099","FALSE","FALSE","America/Chicago"
-"61322","41.31914","-89.30746","Depue","IL","Illinois","TRUE","","1601","152.6","17011","Bureau","{""17011"": ""100""}","Bureau","17011","FALSE","FALSE","America/Chicago"
-"61323","41.43303","-89.39676","Dover","IL","Illinois","TRUE","","78","170.5","17011","Bureau","{""17011"": ""100""}","Bureau","17011","FALSE","FALSE","America/Chicago"
-"61324","41.76991","-89.41389","Eldena","IL","Illinois","TRUE","","128","254.0","17103","Lee","{""17103"": ""100""}","Lee","17103","FALSE","FALSE","America/Chicago"
-"61325","41.23694","-88.8064","Grand Ridge","IL","Illinois","TRUE","","1062","8.1","17099","LaSalle","{""17099"": ""100""}","LaSalle","17099","FALSE","FALSE","America/Chicago"
-"61326","41.25384","-89.22433","Granville","IL","Illinois","TRUE","","2314","18.1","17155","Putnam","{""17155"": ""100""}","Putnam","17155","FALSE","FALSE","America/Chicago"
-"61327","41.22685","-89.30942","Hennepin","IL","Illinois","TRUE","","1278","14.4","17155","Putnam","{""17155"": ""100""}","Putnam","17155","FALSE","FALSE","America/Chicago"
-"61328","41.49955","-89.45929","Kasbeer","IL","Illinois","TRUE","","26","20.6","17011","Bureau","{""17011"": ""100""}","Bureau","17011","FALSE","FALSE","America/Chicago"
-"61329","41.38049","-89.19878","Ladd","IL","Illinois","TRUE","","1211","258.3","17011","Bureau","{""17011"": ""100""}","Bureau","17011","FALSE","FALSE","America/Chicago"
-"61330","41.53797","-89.2748","La Moille","IL","Illinois","TRUE","","1395","7.0","17011","Bureau","{""17011"": ""96.22"", ""17103"": ""3.78""}","Bureau|Lee","17011|17103","FALSE","FALSE","America/Chicago"
-"61331","41.74745","-89.2768","Lee Center","IL","Illinois","TRUE","","18","251.6","17103","Lee","{""17103"": ""100""}","Lee","17103","FALSE","FALSE","America/Chicago"
-"61332","41.18873","-88.98881","Leonore","IL","Illinois","TRUE","","125","94.8","17099","LaSalle","{""17099"": ""100""}","LaSalle","17099","FALSE","FALSE","America/Chicago"
-"61333","40.98935","-88.8881","Long Point","IL","Illinois","TRUE","","383","8.3","17105","Livingston","{""17105"": ""100""}","Livingston","17105","FALSE","FALSE","America/Chicago"
-"61334","41.14512","-89.09846","Lostant","IL","Illinois","TRUE","","722","7.5","17099","LaSalle","{""17099"": ""96.36"", ""17155"": ""3.64""}","LaSalle|Putnam","17099|17155","FALSE","FALSE","America/Chicago"
-"61335","41.16353","-89.22467","McNabb","IL","Illinois","TRUE","","403","7.5","17155","Putnam","{""17155"": ""100""}","Putnam","17155","FALSE","FALSE","America/Chicago"
-"61336","41.10705","-89.22006","Magnolia","IL","Illinois","TRUE","","484","4.7","17155","Putnam","{""17155"": ""78.66"", ""17123"": ""21.34""}","Putnam|Marshall","17155|17123","FALSE","FALSE","America/Chicago"
-"61337","41.43639","-89.3284","Malden","IL","Illinois","TRUE","","458","26.6","17011","Bureau","{""17011"": ""100""}","Bureau","17011","FALSE","FALSE","America/Chicago"
-"61338","41.45903","-89.6762","Manlius","IL","Illinois","TRUE","","226","157.3","17011","Bureau","{""17011"": ""100""}","Bureau","17011","FALSE","FALSE","America/Chicago"
-"61340","41.2612","-89.2501","Mark","IL","Illinois","TRUE","","263","198.6","17155","Putnam","{""17155"": ""100""}","Putnam","17155","FALSE","FALSE","America/Chicago"
-"61341","41.34073","-88.69249","Marseilles","IL","Illinois","TRUE","","8053","34.2","17099","LaSalle","{""17099"": ""100""}","LaSalle","17099","FALSE","FALSE","America/Chicago"
-"61342","41.54058","-89.09057","Mendota","IL","Illinois","TRUE","","8435","31.0","17099","LaSalle","{""17099"": ""98.95"", ""17011"": ""0.53"", ""17103"": ""0.52""}","LaSalle|Bureau|Lee","17099|17011|17103","FALSE","FALSE","America/Chicago"
-"61344","41.41153","-89.83154","Mineral","IL","Illinois","TRUE","","364","5.7","17011","Bureau","{""17011"": ""97.06"", ""17073"": ""2.94""}","Bureau|Henry","17011|17073","FALSE","FALSE","America/Chicago"
-"61345","41.28007","-89.78982","Neponset","IL","Illinois","TRUE","","720","5.7","17011","Bureau","{""17011"": ""94.92"", ""17175"": ""5.08""}","Bureau|Stark","17011|17175","FALSE","FALSE","America/Chicago"
-"61346","41.51115","-89.71819","New Bedford","IL","Illinois","TRUE","","63","141.3","17011","Bureau","{""17011"": ""100""}","Bureau","17011","FALSE","FALSE","America/Chicago"
-"61348","41.28164","-89.03788","Oglesby","IL","Illinois","TRUE","","4520","45.8","17099","LaSalle","{""17099"": ""100""}","LaSalle","17099","FALSE","FALSE","America/Chicago"
-"61349","41.55047","-89.44504","Ohio","IL","Illinois","TRUE","","948","5.5","17011","Bureau","{""17011"": ""87.31"", ""17103"": ""12.69""}","Bureau|Lee","17011|17103","FALSE","FALSE","America/Chicago"
-"61350","41.37257","-88.86339","Ottawa","IL","Illinois","TRUE","","24182","60.7","17099","LaSalle","{""17099"": ""100""}","LaSalle","17099","FALSE","FALSE","America/Chicago"
-"61353","41.69654","-88.99507","Paw Paw","IL","Illinois","TRUE","","1191","14.5","17103","Lee","{""17103"": ""100""}","Lee","17103","FALSE","FALSE","America/Chicago"
-"61354","41.3279","-89.14278","Peru","IL","Illinois","TRUE","","10531","96.0","17099","LaSalle","{""17099"": ""99.46"", ""17011"": ""0.46"", ""17155"": ""0.08""}","LaSalle|Bureau|Putnam","17099|17011|17155","FALSE","FALSE","America/Chicago"
-"61356","41.39357","-89.43816","Princeton","IL","Illinois","TRUE","","10627","23.1","17011","Bureau","{""17011"": ""100""}","Bureau","17011","FALSE","FALSE","America/Chicago"
-"61358","40.97874","-89.04399","Rutland","IL","Illinois","TRUE","","293","4.5","17099","LaSalle","{""17099"": ""78.66"", ""17123"": ""21.34""}","LaSalle|Marshall","17099|17123","FALSE","FALSE","America/Chicago"
-"61359","41.36211","-89.27125","Seatonville","IL","Illinois","TRUE","","330","154.6","17011","Bureau","{""17011"": ""100""}","Bureau","17011","FALSE","FALSE","America/Chicago"
-"61360","41.3272","-88.60479","Seneca","IL","Illinois","TRUE","","3050","23.7","17099","LaSalle","{""17099"": ""96.2"", ""17063"": ""3.8""}","LaSalle|Grundy","17099|17063","FALSE","FALSE","America/Chicago"
-"61361","41.41146","-89.76379","Sheffield","IL","Illinois","TRUE","","1198","5.4","17011","Bureau","{""17011"": ""98.01"", ""17073"": ""1.99""}","Bureau|Henry","17011|17073","FALSE","FALSE","America/Chicago"
-"61362","41.35468","-89.22907","Spring Valley","IL","Illinois","TRUE","","5550","86.0","17011","Bureau","{""17011"": ""100""}","Bureau","17011","FALSE","FALSE","America/Chicago"
-"61363","41.25423","-89.18246","Standard","IL","Illinois","TRUE","","287","215.3","17155","Putnam","{""17155"": ""100""}","Putnam","17155","FALSE","FALSE","America/Chicago"
-"61364","41.1284","-88.84214","Streator","IL","Illinois","TRUE","","18908","50.3","17099","LaSalle","{""17099"": ""89.64"", ""17105"": ""10.36""}","LaSalle|Livingston","17099|17105","FALSE","FALSE","America/Chicago"
-"61367","41.62679","-89.26541","Sublette","IL","Illinois","TRUE","","759","6.3","17103","Lee","{""17103"": ""100""}","Lee","17103","FALSE","FALSE","America/Chicago"
-"61368","41.26305","-89.52289","Tiskilwa","IL","Illinois","TRUE","","1366","7.2","17011","Bureau","{""17011"": ""100""}","Bureau","17011","FALSE","FALSE","America/Chicago"
-"61369","40.98409","-89.15506","Toluca","IL","Illinois","TRUE","","1525","12.8","17123","Marshall","{""17123"": ""100""}","Marshall","17123","FALSE","FALSE","America/Chicago"
-"61370","41.20504","-89.03161","Tonica","IL","Illinois","TRUE","","1504","11.1","17099","LaSalle","{""17099"": ""100""}","LaSalle","17099","FALSE","FALSE","America/Chicago"
-"61372","41.46491","-89.07802","Troy Grove","IL","Illinois","TRUE","","151","226.1","17099","LaSalle","{""17099"": ""100""}","LaSalle","17099","FALSE","FALSE","America/Chicago"
-"61373","41.39897","-88.9984","Utica","IL","Illinois","TRUE","","2153","17.1","17099","LaSalle","{""17099"": ""100""}","LaSalle","17099","FALSE","FALSE","America/Chicago"
-"61374","41.54773","-89.35871","Van Orin","IL","Illinois","TRUE","","83","11.3","17011","Bureau","{""17011"": ""100""}","Bureau","17011","FALSE","FALSE","America/Chicago"
-"61375","41.03528","-89.25044","Varna","IL","Illinois","TRUE","","1136","9.1","17123","Marshall","{""17123"": ""100""}","Marshall","17123","FALSE","FALSE","America/Chicago"
-"61376","41.53939","-89.60912","Walnut","IL","Illinois","TRUE","","2018","8.1","17011","Bureau","{""17011"": ""95.92"", ""17103"": ""4.08""}","Bureau|Lee","17011|17103","FALSE","FALSE","America/Chicago"
-"61377","41.06002","-89.03648","Wenona","IL","Illinois","TRUE","","1393","9.8","17123","Marshall","{""17123"": ""83.87"", ""17099"": ""16.13""}","Marshall|LaSalle","17123|17099","FALSE","FALSE","America/Chicago"
-"61378","41.72443","-89.15703","West Brooklyn","IL","Illinois","TRUE","","325","2.1","17103","Lee","{""17103"": ""100""}","Lee","17103","FALSE","FALSE","America/Chicago"
-"61379","41.39198","-89.6161","Wyanet","IL","Illinois","TRUE","","1291","12.0","17011","Bureau","{""17011"": ""100""}","Bureau","17011","FALSE","FALSE","America/Chicago"
-"61401","40.94467","-90.38468","Galesburg","IL","Illinois","TRUE","","32937","111.1","17095","Knox","{""17095"": ""99.3"", ""17187"": ""0.7""}","Knox|Warren","17095|17187","FALSE","FALSE","America/Chicago"
-"61410","40.79797","-90.39559","Abingdon","IL","Illinois","TRUE","","3921","36.7","17095","Knox","{""17095"": ""96.96"", ""17187"": ""3.04""}","Knox|Warren","17095|17187","FALSE","FALSE","America/Chicago"
-"61411","40.40016","-90.50509","Adair","IL","Illinois","TRUE","","397","4.0","17109","McDonough","{""17109"": ""100""}","McDonough","17109","FALSE","FALSE","America/Chicago"
-"61412","41.06972","-90.57878","Alexis","IL","Illinois","TRUE","","1400","7.2","17187","Warren","{""17187"": ""54.96"", ""17131"": ""45.04""}","Warren|Mercer","17187|17131","FALSE","FALSE","America/Chicago"
-"61413","41.19053","-90.37352","Alpha","IL","Illinois","TRUE","","932","11.3","17073","Henry","{""17073"": ""100""}","Henry","17073","FALSE","FALSE","America/Chicago"
-"61414","41.12471","-90.15578","Altona","IL","Illinois","TRUE","","958","7.3","17095","Knox","{""17095"": ""92.39"", ""17073"": ""7.61""}","Knox|Henry","17095|17073","FALSE","FALSE","America/Chicago"
-"61415","40.65708","-90.42918","Avon","IL","Illinois","TRUE","","1954","6.7","17057","Fulton","{""17057"": ""68.12"", ""17187"": ""31.88""}","Fulton|Warren","17057|17187","FALSE","FALSE","America/Chicago"
-"61416","40.49921","-90.56299","Bardolph","IL","Illinois","TRUE","","256","110.3","17109","McDonough","{""17109"": ""100""}","McDonough","17109","FALSE","FALSE","America/Chicago"
-"61417","40.77418","-90.53832","Berwick","IL","Illinois","TRUE","","277","3.7","17187","Warren","{""17187"": ""100""}","Warren","17187","FALSE","FALSE","America/Chicago"
-"61418","40.85029","-90.86116","Biggsville","IL","Illinois","TRUE","","576","4.2","17071","Henderson","{""17071"": ""100""}","Henderson","17071","FALSE","FALSE","America/Chicago"
-"61419","41.19979","-90.11754","Bishop Hill","IL","Illinois","TRUE","","118","86.6","17073","Henry","{""17073"": ""100""}","Henry","17073","FALSE","FALSE","America/Chicago"
-"61420","40.54737","-90.86658","Blandinsville","IL","Illinois","TRUE","","1172","6.4","17109","McDonough","{""17109"": ""92.03"", ""17067"": ""7.4"", ""17071"": ""0.56""}","McDonough|Hancock|Henderson","17109|17067|17071","FALSE","FALSE","America/Chicago"
-"61421","41.18016","-89.64999","Bradford","IL","Illinois","TRUE","","1481","6.0","17175","Stark","{""17175"": ""81.18"", ""17011"": ""14.51"", ""17123"": ""4.31""}","Stark|Bureau|Marshall","17175|17011|17123","FALSE","FALSE","America/Chicago"
-"61422","40.55087","-90.53478","Bushnell","IL","Illinois","TRUE","","3175","31.0","17109","McDonough","{""17109"": ""100""}","McDonough","17109","FALSE","FALSE","America/Chicago"
-"61423","40.88629","-90.50119","Cameron","IL","Illinois","TRUE","","639","5.0","17187","Warren","{""17187"": ""100""}","Warren","17187","FALSE","FALSE","America/Chicago"
-"61424","41.07678","-89.63496","Camp Grove","IL","Illinois","TRUE","","119","63.1","17123","Marshall","{""17123"": ""100""}","Marshall","17123","FALSE","FALSE","America/Chicago"
-"61425","40.76197","-91.0342","Carman","IL","Illinois","TRUE","","435","5.4","17071","Henderson","{""17071"": ""100""}","Henderson","17071","FALSE","FALSE","America/Chicago"
-"61426","41.11998","-89.70696","Castleton","IL","Illinois","TRUE","","147","17.9","17175","Stark","{""17175"": ""100""}","Stark","17175","FALSE","FALSE","America/Chicago"
-"61427","40.50196","-90.19418","Cuba","IL","Illinois","TRUE","","2174","14.3","17057","Fulton","{""17057"": ""100""}","Fulton","17057","FALSE","FALSE","America/Chicago"
-"61428","40.93478","-90.10786","Dahinda","IL","Illinois","TRUE","","1071","12.6","17095","Knox","{""17095"": ""100""}","Knox","17095","FALSE","FALSE","America/Chicago"
-"61430","40.94023","-90.31092","East Galesburg","IL","Illinois","TRUE","","654","145.6","17095","Knox","{""17095"": ""100""}","Knox","17095","FALSE","FALSE","America/Chicago"
-"61431","40.60769","-90.27815","Ellisville","IL","Illinois","TRUE","","252","2.9","17057","Fulton","{""17057"": ""100""}","Fulton","17057","FALSE","FALSE","America/Chicago"
-"61432","40.65259","-90.15863","Fairview","IL","Illinois","TRUE","","675","7.1","17057","Fulton","{""17057"": ""100""}","Fulton","17057","FALSE","FALSE","America/Chicago"
-"61433","40.55748","-90.16865","Fiatt","IL","Illinois","TRUE","","128","46.6","17057","Fulton","{""17057"": ""100""}","Fulton","17057","FALSE","FALSE","America/Chicago"
-"61434","41.1755","-90.03896","Galva","IL","Illinois","TRUE","","2876","14.0","17073","Henry","{""17073"": ""94.6"", ""17095"": ""5.07"", ""17175"": ""0.33""}","Henry|Knox|Stark","17073|17095|17175","FALSE","FALSE","America/Chicago"
-"61435","40.99239","-90.56785","Gerlaw","IL","Illinois","TRUE","","23","0.9","17187","Warren","{""17187"": ""100""}","Warren","17187","FALSE","FALSE","America/Chicago"
-"61436","40.86223","-90.21683","Gilson","IL","Illinois","TRUE","","732","4.6","17095","Knox","{""17095"": ""100""}","Knox","17095","FALSE","FALSE","America/Chicago"
-"61437","40.84615","-90.98681","Gladstone","IL","Illinois","TRUE","","743","7.1","17071","Henderson","{""17071"": ""100""}","Henderson","17071","FALSE","FALSE","America/Chicago"
-"61438","40.58282","-90.65159","Good Hope","IL","Illinois","TRUE","","842","7.6","17109","McDonough","{""17109"": ""100""}","McDonough","17109","FALSE","FALSE","America/Chicago"
-"61439","41.02848","-90.357","Henderson","IL","Illinois","TRUE","","215","123.3","17095","Knox","{""17095"": ""100""}","Knox","17095","FALSE","FALSE","America/Chicago"
-"61440","40.3073","-90.59551","Industry","IL","Illinois","TRUE","","695","5.3","17109","McDonough","{""17109"": ""94.52"", ""17169"": ""5.48""}","McDonough|Schuyler","17109|17169","FALSE","FALSE","America/Chicago"
-"61441","40.34074","-90.29338","Ipava","IL","Illinois","TRUE","","955","6.0","17057","Fulton","{""17057"": ""100""}","Fulton","17057","FALSE","FALSE","America/Chicago"
-"61442","41.10733","-90.92267","Keithsburg","IL","Illinois","TRUE","","657","9.7","17131","Mercer","{""17131"": ""92.26"", ""17071"": ""7.74""}","Mercer|Henderson","17131|17071","FALSE","FALSE","America/Chicago"
-"61443","41.25995","-89.94172","Kewanee","IL","Illinois","TRUE","","13736","54.4","17073","Henry","{""17073"": ""99.71"", ""17175"": ""0.18"", ""17011"": ""0.11""}","Henry|Stark|Bureau","17073|17175|17011","FALSE","FALSE","America/Chicago"
-"61447","40.86724","-90.7537","Kirkwood","IL","Illinois","TRUE","","1069","11.2","17187","Warren","{""17187"": ""93.4"", ""17071"": ""6.6""}","Warren|Henderson","17187|17071","FALSE","FALSE","America/Chicago"
-"61448","40.93363","-90.24678","Knoxville","IL","Illinois","TRUE","","3814","35.0","17095","Knox","{""17095"": ""100""}","Knox","17095","FALSE","FALSE","America/Chicago"
-"61449","41.08934","-89.9747","La Fayette","IL","Illinois","TRUE","","299","3.1","17175","Stark","{""17175"": ""75"", ""17095"": ""25""}","Stark|Knox","17175|17095","FALSE","FALSE","America/Chicago"
-"61450","40.57883","-90.98165","La Harpe","IL","Illinois","TRUE","","1662","7.7","17067","Hancock","{""17067"": ""96.61"", ""17071"": ""1.89"", ""17109"": ""1.49""}","Hancock|Henderson|McDonough","17067|17071|17109","FALSE","FALSE","America/Chicago"
-"61451","40.94576","-89.93875","Laura","IL","Illinois","TRUE","","333","5.6","17143","Peoria","{""17143"": ""91.35"", ""17175"": ""8.65""}","Peoria|Stark","17143|17175","FALSE","FALSE","America/Chicago"
-"61452","40.2362","-90.66064","Littleton","IL","Illinois","TRUE","","216","2.8","17169","Schuyler","{""17169"": ""100""}","Schuyler","17169","FALSE","FALSE","America/Chicago"
-"61453","41.01218","-90.76418","Little York","IL","Illinois","TRUE","","557","3.8","17187","Warren","{""17187"": ""74.9"", ""17071"": ""25.1""}","Warren|Henderson","17187|17071","FALSE","FALSE","America/Chicago"
-"61454","40.68017","-91.04246","Lomax","IL","Illinois","TRUE","","484","6.0","17071","Henderson","{""17071"": ""100""}","Henderson","17071","FALSE","FALSE","America/Chicago"
-"61455","40.43538","-90.65452","Macomb","IL","Illinois","TRUE","","20294","45.9","17109","McDonough","{""17109"": ""100""}","McDonough","17109","FALSE","FALSE","America/Chicago"
-"61458","40.77966","-90.18143","Maquon","IL","Illinois","TRUE","","636","3.0","17095","Knox","{""17095"": ""100""}","Knox","17095","FALSE","FALSE","America/Chicago"
-"61459","40.50555","-90.41583","Marietta","IL","Illinois","TRUE","","388","4.3","17057","Fulton","{""17057"": ""81.76"", ""17109"": ""18.24""}","Fulton|McDonough","17057|17109","FALSE","FALSE","America/Chicago"
-"61460","40.71663","-90.82915","Media","IL","Illinois","TRUE","","313","3.5","17071","Henderson","{""17071"": ""100""}","Henderson","17071","FALSE","FALSE","America/Chicago"
-"61462","40.92357","-90.64788","Monmouth","IL","Illinois","TRUE","","11435","28.2","17187","Warren","{""17187"": ""99.62"", ""17071"": ""0.38""}","Warren|Henderson","17187|17071","FALSE","FALSE","America/Chicago"
-"61465","41.20784","-90.46658","New Windsor","IL","Illinois","TRUE","","1162","10.7","17131","Mercer","{""17131"": ""94.72"", ""17073"": ""5.28""}","Mercer|Henry","17131|17073","FALSE","FALSE","America/Chicago"
-"61466","41.11003","-90.47968","North Henderson","IL","Illinois","TRUE","","295","4.9","17131","Mercer","{""17131"": ""100""}","Mercer","17131","FALSE","FALSE","America/Chicago"
-"61467","41.07376","-90.23977","Oneida","IL","Illinois","TRUE","","1107","8.7","17095","Knox","{""17095"": ""100""}","Knox","17095","FALSE","FALSE","America/Chicago"
-"61468","41.25773","-90.38776","Ophiem","IL","Illinois","TRUE","","206","40.8","17073","Henry","{""17073"": ""100""}","Henry","17073","FALSE","FALSE","America/Chicago"
-"61469","40.96402","-90.90617","Oquawka","IL","Illinois","TRUE","","2213","18.8","17071","Henderson","{""17071"": ""100""}","Henderson","17071","FALSE","FALSE","America/Chicago"
-"61470","40.60379","-90.50482","Prairie City","IL","Illinois","TRUE","","499","8.7","17109","McDonough","{""17109"": ""100""}","McDonough","17109","FALSE","FALSE","America/Chicago"
-"61471","40.69753","-90.83501","Raritan","IL","Illinois","TRUE","","114","136.8","17071","Henderson","{""17071"": ""100""}","Henderson","17071","FALSE","FALSE","America/Chicago"
-"61472","41.10216","-90.38289","Rio","IL","Illinois","TRUE","","608","5.9","17095","Knox","{""17095"": ""100""}","Knox","17095","FALSE","FALSE","America/Chicago"
-"61473","40.70595","-90.65273","Roseville","IL","Illinois","TRUE","","1429","5.3","17187","Warren","{""17187"": ""100""}","Warren","17187","FALSE","FALSE","America/Chicago"
-"61474","40.73635","-90.3781","Saint Augustine","IL","Illinois","TRUE","","257","3.5","17095","Knox","{""17095"": ""95.89"", ""17187"": ""4.11""}","Knox|Warren","17095|17187","FALSE","FALSE","America/Chicago"
-"61475","40.5979","-90.75343","Sciota","IL","Illinois","TRUE","","249","3.3","17109","McDonough","{""17109"": ""92.68"", ""17187"": ""7.32""}","McDonough|Warren","17109|17187","FALSE","FALSE","America/Chicago"
-"61476","41.0981","-90.83225","Seaton","IL","Illinois","TRUE","","433","4.1","17131","Mercer","{""17131"": ""91.65"", ""17071"": ""8.35""}","Mercer|Henderson","17131|17071","FALSE","FALSE","America/Chicago"
-"61477","40.49607","-90.31545","Smithfield","IL","Illinois","TRUE","","511","3.9","17057","Fulton","{""17057"": ""100""}","Fulton","17057","FALSE","FALSE","America/Chicago"
-"61478","40.75784","-90.76058","Smithshire","IL","Illinois","TRUE","","293","3.1","17187","Warren","{""17187"": ""90.69"", ""17071"": ""9.31""}","Warren|Henderson","17187|17071","FALSE","FALSE","America/Chicago"
-"61479","41.00477","-89.64478","Speer","IL","Illinois","TRUE","","59","1.9","17175","Stark","{""17175"": ""58.79"", ""17123"": ""41.21""}","Stark|Marshall","17175|17123","FALSE","FALSE","America/Chicago"
-"61480","40.72541","-90.9218","Stronghurst","IL","Illinois","TRUE","","1171","7.1","17071","Henderson","{""17071"": ""100""}","Henderson","17071","FALSE","FALSE","America/Chicago"
-"61482","40.38838","-90.41175","Table Grove","IL","Illinois","TRUE","","598","4.2","17057","Fulton","{""17057"": ""92.92"", ""17109"": ""7.08""}","Fulton|McDonough","17057|17109","FALSE","FALSE","America/Chicago"
-"61483","41.08666","-89.87325","Toulon","IL","Illinois","TRUE","","1923","7.8","17175","Stark","{""17175"": ""100""}","Stark","17175","FALSE","FALSE","America/Chicago"
-"61484","40.29528","-90.43646","Vermont","IL","Illinois","TRUE","","880","8.9","17057","Fulton","{""17057"": ""93.58"", ""17109"": ""4.97"", ""17169"": ""1.45""}","Fulton|McDonough|Schuyler","17057|17109|17169","FALSE","FALSE","America/Chicago"
-"61485","41.02165","-90.09835","Victoria","IL","Illinois","TRUE","","433","3.9","17095","Knox","{""17095"": ""100""}","Knox","17095","FALSE","FALSE","America/Chicago"
-"61486","41.19792","-90.57609","Viola","IL","Illinois","TRUE","","1514","13.6","17131","Mercer","{""17131"": ""100""}","Mercer","17131","FALSE","FALSE","America/Chicago"
-"61488","41.03225","-90.3183","Wataga","IL","Illinois","TRUE","","1149","17.2","17095","Knox","{""17095"": ""100""}","Knox","17095","FALSE","FALSE","America/Chicago"
-"61489","40.93399","-90.02847","Williamsfield","IL","Illinois","TRUE","","767","6.5","17095","Knox","{""17095"": ""99.33"", ""17143"": ""0.67""}","Knox|Peoria","17095|17143","FALSE","FALSE","America/Chicago"
-"61490","41.18512","-90.26557","Woodhull","IL","Illinois","TRUE","","1082","10.6","17073","Henry","{""17073"": ""97.16"", ""17095"": ""2.84""}","Henry|Knox","17073|17095","FALSE","FALSE","America/Chicago"
-"61491","41.06053","-89.72935","Wyoming","IL","Illinois","TRUE","","1922","7.4","17175","Stark","{""17175"": ""96.95"", ""17123"": ""3.05""}","Stark|Marshall","17175|17123","FALSE","FALSE","America/Chicago"
-"61501","40.22935","-90.31653","Astoria","IL","Illinois","TRUE","","1545","7.7","17057","Fulton","{""17057"": ""100""}","Fulton","17057","FALSE","FALSE","America/Chicago"
-"61516","40.85808","-89.1352","Benson","IL","Illinois","TRUE","","784","9.6","17203","Woodford","{""17203"": ""100""}","Woodford","17203","FALSE","FALSE","America/Chicago"
-"61517","40.826","-89.85428","Brimfield","IL","Illinois","TRUE","","3439","19.3","17143","Peoria","{""17143"": ""100""}","Peoria","17143","FALSE","FALSE","America/Chicago"
-"61519","40.46009","-90.08897","Bryant","IL","Illinois","TRUE","","246","80.0","17057","Fulton","{""17057"": ""100""}","Fulton","17057","FALSE","FALSE","America/Chicago"
-"61520","40.54208","-90.02132","Canton","IL","Illinois","TRUE","","16703","42.0","17057","Fulton","{""17057"": ""100""}","Fulton","17057","FALSE","FALSE","America/Chicago"
-"61523","40.91725","-89.53549","Chillicothe","IL","Illinois","TRUE","","11055","79.9","17143","Peoria","{""17143"": ""99.52"", ""17123"": ""0.48""}","Peoria|Marshall","17143|17123","FALSE","FALSE","America/Chicago"
-"61524","40.49143","-90.03456","Dunfermline","IL","Illinois","TRUE","","300","486.4","17057","Fulton","{""17057"": ""100""}","Fulton","17057","FALSE","FALSE","America/Chicago"
-"61525","40.84847","-89.669","Dunlap","IL","Illinois","TRUE","","8912","109.8","17143","Peoria","{""17143"": ""100""}","Peoria","17143","FALSE","FALSE","America/Chicago"
-"61526","40.92993","-89.62434","Edelstein","IL","Illinois","TRUE","","743","9.0","17143","Peoria","{""17143"": ""93.93"", ""17123"": ""6.07""}","Peoria|Marshall","17143|17123","FALSE","FALSE","America/Chicago"
-"61528","40.77896","-89.72293","Edwards","IL","Illinois","TRUE","","2987","63.2","17143","Peoria","{""17143"": ""100""}","Peoria","17143","FALSE","FALSE","America/Chicago"
-"61529","40.78147","-89.94202","Elmwood","IL","Illinois","TRUE","","2809","16.9","17143","Peoria","{""17143"": ""98.82"", ""17095"": ""1.18""}","Peoria|Knox","17143|17095","FALSE","FALSE","America/Chicago"
-"61530","40.71406","-89.26042","Eureka","IL","Illinois","TRUE","","6931","42.9","17203","Woodford","{""17203"": ""99.87"", ""17179"": ""0.13""}","Woodford|Tazewell","17203|17179","FALSE","FALSE","America/Chicago"
-"61531","40.68308","-90.03503","Farmington","IL","Illinois","TRUE","","3285","22.5","17057","Fulton","{""17057"": ""95.86"", ""17143"": ""2.9"", ""17095"": ""1.24""}","Fulton|Peoria|Knox","17057|17143|17095","FALSE","FALSE","America/Chicago"
-"61532","40.33949","-89.81879","Forest City","IL","Illinois","TRUE","","588","6.8","17125","Mason","{""17125"": ""100""}","Mason","17125","FALSE","FALSE","America/Chicago"
-"61533","40.58651","-89.83933","Glasford","IL","Illinois","TRUE","","2360","22.2","17143","Peoria","{""17143"": ""90.52"", ""17057"": ""9.48""}","Peoria|Fulton","17143|17057","FALSE","FALSE","America/Chicago"
-"61534","40.41448","-89.6661","Green Valley","IL","Illinois","TRUE","","1835","12.9","17179","Tazewell","{""17179"": ""100""}","Tazewell","17179","FALSE","FALSE","America/Chicago"
-"61535","40.58307","-89.52333","Groveland","IL","Illinois","TRUE","","2003","89.0","17179","Tazewell","{""17179"": ""100""}","Tazewell","17179","FALSE","FALSE","America/Chicago"
-"61536","40.6899","-89.78701","Hanna City","IL","Illinois","TRUE","","2866","27.0","17143","Peoria","{""17143"": ""100""}","Peoria","17143","FALSE","FALSE","America/Chicago"
-"61537","41.11702","-89.46635","Henry","IL","Illinois","TRUE","","2904","19.0","17123","Marshall","{""17123"": ""98.99"", ""17011"": ""1.01""}","Marshall|Bureau","17123|17011","FALSE","FALSE","America/Chicago"
-"61539","40.55515","-89.76712","Kingston Mines","IL","Illinois","TRUE","","173","85.0","17143","Peoria","{""17143"": ""100""}","Peoria","17143","FALSE","FALSE","America/Chicago"
-"61540","41.01472","-89.37309","Lacon","IL","Illinois","TRUE","","2680","19.8","17123","Marshall","{""17123"": ""100""}","Marshall","17123","FALSE","FALSE","America/Chicago"
-"61541","40.98038","-89.23495","La Rose","IL","Illinois","TRUE","","76","178.8","17123","Marshall","{""17123"": ""100""}","Marshall","17123","FALSE","FALSE","America/Chicago"
-"61542","40.38632","-90.13464","Lewistown","IL","Illinois","TRUE","","3602","12.1","17057","Fulton","{""17057"": ""100""}","Fulton","17057","FALSE","FALSE","America/Chicago"
-"61543","40.42079","-89.97069","Liverpool","IL","Illinois","TRUE","","137","6.8","17057","Fulton","{""17057"": ""100""}","Fulton","17057","FALSE","FALSE","America/Chicago"
-"61544","40.69175","-90.24007","London Mills","IL","Illinois","TRUE","","724","8.5","17057","Fulton","{""17057"": ""86.96"", ""17095"": ""13.04""}","Fulton|Knox","17057|17095","FALSE","FALSE","America/Chicago"
-"61545","40.87071","-89.35355","Lowpoint","IL","Illinois","TRUE","","697","8.8","17203","Woodford","{""17203"": ""100""}","Woodford","17203","FALSE","FALSE","America/Chicago"
-"61546","40.45394","-89.79886","Manito","IL","Illinois","TRUE","","3605","14.0","17125","Mason","{""17125"": ""55.82"", ""17179"": ""44.18""}","Mason|Tazewell","17125|17179","FALSE","FALSE","America/Chicago"
-"61547","40.60634","-89.73755","Mapleton","IL","Illinois","TRUE","","4047","70.7","17143","Peoria","{""17143"": ""100""}","Peoria","17143","FALSE","FALSE","America/Chicago"
-"61548","40.80915","-89.41403","Metamora","IL","Illinois","TRUE","","12171","62.1","17203","Woodford","{""17203"": ""100""}","Woodford","17203","FALSE","FALSE","America/Chicago"
-"61550","40.61088","-89.44206","Morton","IL","Illinois","TRUE","","17805","168.4","17179","Tazewell","{""17179"": ""100""}","Tazewell","17179","FALSE","FALSE","America/Chicago"
-"61552","40.81758","-89.5657","Mossville","IL","Illinois","TRUE","","191","137.3","17143","Peoria","{""17143"": ""100""}","Peoria","17143","FALSE","FALSE","America/Chicago"
-"61553","40.62594","-90.03228","Norris","IL","Illinois","TRUE","","161","233.1","17057","Fulton","{""17057"": ""100""}","Fulton","17057","FALSE","FALSE","America/Chicago"
-"61554","40.54088","-89.61861","Pekin","IL","Illinois","TRUE","","41661","231.1","17179","Tazewell","{""17179"": ""100""}","Tazewell","17179","FALSE","FALSE","America/Chicago"
-"61559","40.92108","-89.77557","Princeville","IL","Illinois","TRUE","","3223","12.7","17143","Peoria","{""17143"": ""97.87"", ""17175"": ""2.13""}","Peoria|Stark","17143|17175","FALSE","FALSE","America/Chicago"
-"61560","41.1877","-89.40277","Putnam","IL","Illinois","TRUE","","594","6.9","17155","Putnam","{""17155"": ""98.81"", ""17011"": ""1.19""}","Putnam|Bureau","17155|17011","FALSE","FALSE","America/Chicago"
-"61561","40.80295","-89.20088","Roanoke","IL","Illinois","TRUE","","2507","17.6","17203","Woodford","{""17203"": ""100""}","Woodford","17203","FALSE","FALSE","America/Chicago"
-"61562","40.88043","-89.50143","Rome","IL","Illinois","TRUE","","45","639.9","17143","Peoria","{""17143"": ""100""}","Peoria","17143","FALSE","FALSE","America/Chicago"
-"61563","40.49203","-90.0541","Saint David","IL","Illinois","TRUE","","509","563.7","17057","Fulton","{""17057"": ""100""}","Fulton","17057","FALSE","FALSE","America/Chicago"
-"61564","40.49336","-89.65352","South Pekin","IL","Illinois","TRUE","","1082","1476.9","17179","Tazewell","{""17179"": ""100""}","Tazewell","17179","FALSE","FALSE","America/Chicago"
-"61565","41.03231","-89.50995","Sparland","IL","Illinois","TRUE","","1460","8.6","17123","Marshall","{""17123"": ""96.81"", ""17143"": ""3.19""}","Marshall|Peoria","17123|17143","FALSE","FALSE","America/Chicago"
-"61567","40.35804","-89.89659","Topeka","IL","Illinois","TRUE","","506","5.3","17125","Mason","{""17125"": ""100""}","Mason","17125","FALSE","FALSE","America/Chicago"
-"61568","40.50538","-89.47868","Tremont","IL","Illinois","TRUE","","4352","25.0","17179","Tazewell","{""17179"": ""100""}","Tazewell","17179","FALSE","FALSE","America/Chicago"
-"61569","40.68421","-89.89323","Trivoli","IL","Illinois","TRUE","","1225","12.0","17143","Peoria","{""17143"": ""99.43"", ""17057"": ""0.57""}","Peoria|Fulton","17143|17057","FALSE","FALSE","America/Chicago"
-"61570","40.92039","-89.30774","Washburn","IL","Illinois","TRUE","","1946","11.3","17203","Woodford","{""17203"": ""79.14"", ""17123"": ""20.86""}","Woodford|Marshall","17203|17123","FALSE","FALSE","America/Chicago"
-"61571","40.70331","-89.41951","Washington","IL","Illinois","TRUE","","24903","169.3","17179","Tazewell","{""17179"": ""100""}","Tazewell","17179","FALSE","FALSE","America/Chicago"
-"61572","40.80029","-90.03681","Yates City","IL","Illinois","TRUE","","1290","14.0","17095","Knox","{""17095"": ""100""}","Knox","17095","FALSE","FALSE","America/Chicago"
-"61602","40.67491","-89.60738","Peoria","IL","Illinois","TRUE","","828","224.0","17143","Peoria","{""17143"": ""100""}","Peoria","17143","FALSE","FALSE","America/Chicago"
-"61603","40.71332","-89.57724","Peoria","IL","Illinois","TRUE","","16695","1531.5","17143","Peoria","{""17143"": ""100""}","Peoria","17143","FALSE","FALSE","America/Chicago"
-"61604","40.70572","-89.65362","Peoria","IL","Illinois","TRUE","","29606","724.1","17143","Peoria","{""17143"": ""100""}","Peoria","17143","FALSE","FALSE","America/Chicago"
-"61605","40.6766","-89.63346","Peoria","IL","Illinois","TRUE","","15195","1415.8","17143","Peoria","{""17143"": ""100""}","Peoria","17143","FALSE","FALSE","America/Chicago"
-"61606","40.69979","-89.61141","Peoria","IL","Illinois","TRUE","","7919","2298.4","17143","Peoria","{""17143"": ""100""}","Peoria","17143","FALSE","FALSE","America/Chicago"
-"61607","40.63007","-89.68512","Peoria","IL","Illinois","TRUE","","10766","129.6","17143","Peoria","{""17143"": ""100""}","Peoria","17143","FALSE","FALSE","America/Chicago"
-"61610","40.6429","-89.59867","Creve Coeur","IL","Illinois","TRUE","","5213","475.8","17179","Tazewell","{""17179"": ""100""}","Tazewell","17179","FALSE","FALSE","America/Chicago"
-"61611","40.71049","-89.53566","East Peoria","IL","Illinois","TRUE","","24303","229.3","17179","Tazewell","{""17179"": ""84.55"", ""17203"": ""15.45""}","Tazewell|Woodford","17179|17203","FALSE","FALSE","America/Chicago"
-"61614","40.75899","-89.60494","Peoria","IL","Illinois","TRUE","","28207","902.4","17143","Peoria","{""17143"": ""100""}","Peoria","17143","FALSE","FALSE","America/Chicago"
-"61615","40.77427","-89.64588","Peoria","IL","Illinois","TRUE","","23219","283.5","17143","Peoria","{""17143"": ""100""}","Peoria","17143","FALSE","FALSE","America/Chicago"
-"61616","40.74672","-89.57187","Peoria Heights","IL","Illinois","TRUE","","5860","902.8","17143","Peoria","{""17143"": ""100""}","Peoria","17143","FALSE","FALSE","America/Chicago"
-"61625","40.69753","-89.61274","Peoria","IL","Illinois","TRUE","","378","10395.5","17143","Peoria","{""17143"": ""100""}","Peoria","17143","FALSE","FALSE","America/Chicago"
-"61701","40.47676","-88.99308","Bloomington","IL","Illinois","TRUE","","35669","1231.6","17113","McLean","{""17113"": ""100""}","McLean","17113","FALSE","FALSE","America/Chicago"
-"61704","40.47053","-88.94332","Bloomington","IL","Illinois","TRUE","","36612","766.2","17113","McLean","{""17113"": ""100""}","McLean","17113","FALSE","FALSE","America/Chicago"
-"61705","40.45996","-89.00228","Bloomington","IL","Illinois","TRUE","","12935","57.1","17113","McLean","{""17113"": ""100""}","McLean","17113","FALSE","FALSE","America/Chicago"
-"61720","40.55471","-88.51447","Anchor","IL","Illinois","TRUE","","215","3.0","17113","McLean","{""17113"": ""100""}","McLean","17113","FALSE","FALSE","America/Chicago"
-"61721","40.3537","-89.32324","Armington","IL","Illinois","TRUE","","574","6.2","17179","Tazewell","{""17179"": ""95.76"", ""17107"": ""4.24""}","Tazewell|Logan","17179|17107","FALSE","FALSE","America/Chicago"
-"61722","40.41906","-88.63213","Arrowsmith","IL","Illinois","TRUE","","525","4.0","17113","McLean","{""17113"": ""100""}","McLean","17113","FALSE","FALSE","America/Chicago"
-"61723","40.26082","-89.26682","Atlanta","IL","Illinois","TRUE","","2689","16.0","17107","Logan","{""17107"": ""99.05"", ""17113"": ""0.95""}","Logan|McLean","17107|17113","FALSE","FALSE","America/Chicago"
-"61724","40.33086","-88.52705","Bellflower","IL","Illinois","TRUE","","578","5.8","17113","McLean","{""17113"": ""100""}","McLean","17113","FALSE","FALSE","America/Chicago"
-"61725","40.60979","-89.11985","Carlock","IL","Illinois","TRUE","","1726","13.8","17113","McLean","{""17113"": ""62.18"", ""17203"": ""37.82""}","McLean|Woodford","17113|17203","FALSE","FALSE","America/Chicago"
-"61726","40.73661","-88.69717","Chenoa","IL","Illinois","TRUE","","2476","10.5","17113","McLean","{""17113"": ""90.96"", ""17105"": ""9.04""}","McLean|Livingston","17113|17105","FALSE","FALSE","America/Chicago"
-"61727","40.14248","-88.96083","Clinton","IL","Illinois","TRUE","","9742","30.5","17039","De Witt","{""17039"": ""100""}","De Witt","17039","FALSE","FALSE","America/Chicago"
-"61728","40.57285","-88.62632","Colfax","IL","Illinois","TRUE","","1365","8.0","17113","McLean","{""17113"": ""100""}","McLean","17113","FALSE","FALSE","America/Chicago"
-"61729","40.63068","-89.22359","Congerville","IL","Illinois","TRUE","","1149","23.6","17203","Woodford","{""17203"": ""98.79"", ""17113"": ""1.21""}","Woodford|McLean","17203|17113","FALSE","FALSE","America/Chicago"
-"61730","40.53249","-88.72938","Cooksville","IL","Illinois","TRUE","","513","6.8","17113","McLean","{""17113"": ""100""}","McLean","17113","FALSE","FALSE","America/Chicago"
-"61731","40.61393","-88.4855","Cropsey","IL","Illinois","TRUE","","183","3.2","17113","McLean","{""17113"": ""70.71"", ""17105"": ""19.64"", ""17053"": ""9.64""}","McLean|Livingston|Ford","17113|17105|17053","FALSE","FALSE","America/Chicago"
-"61732","40.53116","-89.20317","Danvers","IL","Illinois","TRUE","","2024","14.0","17113","McLean","{""17113"": ""96.28"", ""17179"": ""3.72""}","McLean|Tazewell","17113|17179","FALSE","FALSE","America/Chicago"
-"61733","40.6224","-89.33221","Deer Creek","IL","Illinois","TRUE","","793","14.3","17179","Tazewell","{""17179"": ""85.85"", ""17203"": ""14.15""}","Tazewell|Woodford","17179|17203","FALSE","FALSE","America/Chicago"
-"61734","40.37344","-89.5265","Delavan","IL","Illinois","TRUE","","2792","13.0","17179","Tazewell","{""17179"": ""100""}","Tazewell","17179","FALSE","FALSE","America/Chicago"
-"61735","40.20191","-88.81805","Dewitt","IL","Illinois","TRUE","","361","4.4","17039","De Witt","{""17039"": ""100""}","De Witt","17039","FALSE","FALSE","America/Chicago"
-"61736","40.4021","-88.83864","Downs","IL","Illinois","TRUE","","1874","19.7","17113","McLean","{""17113"": ""100""}","McLean","17113","FALSE","FALSE","America/Chicago"
-"61737","40.45846","-88.73955","Ellsworth","IL","Illinois","TRUE","","490","5.5","17113","McLean","{""17113"": ""100""}","McLean","17113","FALSE","FALSE","America/Chicago"
-"61738","40.74604","-89.03428","El Paso","IL","Illinois","TRUE","","4391","21.2","17203","Woodford","{""17203"": ""99.22"", ""17113"": ""0.78""}","Woodford|McLean","17203|17113","FALSE","FALSE","America/Chicago"
-"61739","40.73313","-88.52043","Fairbury","IL","Illinois","TRUE","","4614","18.3","17105","Livingston","{""17105"": ""99.82"", ""17113"": ""0.18""}","Livingston|McLean","17105|17113","FALSE","FALSE","America/Chicago"
-"61740","40.88428","-88.86162","Flanagan","IL","Illinois","TRUE","","1482","7.8","17105","Livingston","{""17105"": ""100""}","Livingston","17105","FALSE","FALSE","America/Chicago"
-"61741","40.75936","-88.40424","Forrest","IL","Illinois","TRUE","","1643","11.3","17105","Livingston","{""17105"": ""100""}","Livingston","17105","FALSE","FALSE","America/Chicago"
-"61742","40.63295","-89.27267","Goodfield","IL","Illinois","TRUE","","1263","77.1","17203","Woodford","{""17203"": ""83.22"", ""17179"": ""16.78""}","Woodford|Tazewell","17203|17179","FALSE","FALSE","America/Chicago"
-"61743","40.87567","-88.78168","Graymont","IL","Illinois","TRUE","","186","4.8","17105","Livingston","{""17105"": ""100""}","Livingston","17105","FALSE","FALSE","America/Chicago"
-"61744","40.73997","-88.8871","Gridley","IL","Illinois","TRUE","","1923","9.5","17113","McLean","{""17113"": ""89.22"", ""17105"": ""9.8"", ""17203"": ""0.98""}","McLean|Livingston|Woodford","17113|17105|17203","FALSE","FALSE","America/Chicago"
-"61745","40.32221","-88.97247","Heyworth","IL","Illinois","TRUE","","4658","22.9","17113","McLean","{""17113"": ""98.21"", ""17039"": ""1.79""}","McLean|De Witt","17113|17039","FALSE","FALSE","America/Chicago"
-"61747","40.42174","-89.43072","Hopedale","IL","Illinois","TRUE","","1439","20.0","17179","Tazewell","{""17179"": ""100""}","Tazewell","17179","FALSE","FALSE","America/Chicago"
-"61748","40.61675","-88.99116","Hudson","IL","Illinois","TRUE","","2652","25.9","17113","McLean","{""17113"": ""99.03"", ""17203"": ""0.97""}","McLean|Woodford","17113|17203","FALSE","FALSE","America/Chicago"
-"61749","40.09494","-89.11027","Kenney","IL","Illinois","TRUE","","535","6.4","17039","De Witt","{""17039"": ""92.09"", ""17107"": ""4.14"", ""17115"": ""3.78""}","De Witt|Logan|Macon","17039|17107|17115","FALSE","FALSE","America/Chicago"
-"61750","40.12356","-88.85957","Lane","IL","Illinois","TRUE","","135","43.7","17039","De Witt","{""17039"": ""100""}","De Witt","17039","FALSE","FALSE","America/Chicago"
-"61751","40.21455","-89.29926","Lawndale","IL","Illinois","TRUE","","93","21.6","17107","Logan","{""17107"": ""100""}","Logan","17107","FALSE","FALSE","America/Chicago"
-"61752","40.33908","-88.7548","Le Roy","IL","Illinois","TRUE","","4346","20.1","17113","McLean","{""17113"": ""99.08"", ""17039"": ""0.92""}","McLean|De Witt","17113|17039","FALSE","FALSE","America/Chicago"
-"61753","40.63645","-88.78468","Lexington","IL","Illinois","TRUE","","3083","14.0","17113","McLean","{""17113"": ""100""}","McLean","17113","FALSE","FALSE","America/Chicago"
-"61754","40.33031","-89.16916","McLean","IL","Illinois","TRUE","","1016","5.8","17113","McLean","{""17113"": ""92.62"", ""17039"": ""4.52"", ""17107"": ""2.85""}","McLean|De Witt|Logan","17113|17039|17107","FALSE","FALSE","America/Chicago"
-"61755","40.52794","-89.33596","Mackinaw","IL","Illinois","TRUE","","4783","37.6","17179","Tazewell","{""17179"": ""100""}","Tazewell","17179","FALSE","FALSE","America/Chicago"
-"61756","40.03121","-88.97344","Maroa","IL","Illinois","TRUE","","2313","10.8","17115","Macon","{""17115"": ""93.75"", ""17039"": ""6.25""}","Macon|De Witt","17115|17039","FALSE","FALSE","America/Chicago"
-"61759","40.43718","-89.32371","Minier","IL","Illinois","TRUE","","1588","18.0","17179","Tazewell","{""17179"": ""100""}","Tazewell","17179","FALSE","FALSE","America/Chicago"
-"61760","40.88106","-89.02875","Minonk","IL","Illinois","TRUE","","2306","12.2","17203","Woodford","{""17203"": ""97.8"", ""17123"": ""2.2""}","Woodford|Marshall","17203|17123","FALSE","FALSE","America/Chicago"
-"61761","40.52958","-88.95856","Normal","IL","Illinois","TRUE","","55152","501.5","17113","McLean","{""17113"": ""100""}","McLean","17113","FALSE","FALSE","America/Chicago"
-"61764","40.88227","-88.62817","Pontiac","IL","Illinois","TRUE","","13732","32.6","17105","Livingston","{""17105"": ""100""}","Livingston","17105","FALSE","FALSE","America/Chicago"
-"61769","40.88202","-88.39935","Saunemin","IL","Illinois","TRUE","","640","6.5","17105","Livingston","{""17105"": ""100""}","Livingston","17105","FALSE","FALSE","America/Chicago"
-"61770","40.44323","-88.52594","Saybrook","IL","Illinois","TRUE","","1046","6.5","17113","McLean","{""17113"": ""100""}","McLean","17113","FALSE","FALSE","America/Chicago"
-"61771","40.70928","-89.14117","Secor","IL","Illinois","TRUE","","855","14.3","17203","Woodford","{""17203"": ""100""}","Woodford","17203","FALSE","FALSE","America/Chicago"
-"61772","40.38125","-89.066","Shirley","IL","Illinois","TRUE","","239","3.3","17113","McLean","{""17113"": ""100""}","McLean","17113","FALSE","FALSE","America/Chicago"
-"61773","40.57168","-88.38326","Sibley","IL","Illinois","TRUE","","421","3.7","17053","Ford","{""17053"": ""100""}","Ford","17053","FALSE","FALSE","America/Chicago"
-"61774","40.43069","-89.20402","Stanford","IL","Illinois","TRUE","","979","8.8","17113","McLean","{""17113"": ""100""}","McLean","17113","FALSE","FALSE","America/Chicago"
-"61775","40.65076","-88.3671","Strawn","IL","Illinois","TRUE","","339","3.8","17105","Livingston","{""17105"": ""100""}","Livingston","17105","FALSE","FALSE","America/Chicago"
-"61776","40.56942","-88.86698","Towanda","IL","Illinois","TRUE","","1216","10.7","17113","McLean","{""17113"": ""100""}","McLean","17113","FALSE","FALSE","America/Chicago"
-"61777","40.24249","-88.94182","Wapella","IL","Illinois","TRUE","","780","7.5","17039","De Witt","{""17039"": ""100""}","De Witt","17039","FALSE","FALSE","America/Chicago"
-"61778","40.23288","-89.09115","Waynesville","IL","Illinois","TRUE","","649","8.3","17039","De Witt","{""17039"": ""100""}","De Witt","17039","FALSE","FALSE","America/Chicago"
-"61801","40.10902","-88.2113","Urbana","IL","Illinois","TRUE","","31312","2260.7","17019","Champaign","{""17019"": ""100""}","Champaign","17019","FALSE","FALSE","America/Chicago"
-"61802","40.12556","-88.15101","Urbana","IL","Illinois","TRUE","","19509","90.9","17019","Champaign","{""17019"": ""100""}","Champaign","17019","FALSE","FALSE","America/Chicago"
-"61810","39.91615","-87.91471","Allerton","IL","Illinois","TRUE","","285","5.3","17183","Vermilion","{""17183"": ""93.91"", ""17019"": ""3.88"", ""17045"": ""2.22""}","Vermilion|Champaign|Edgar","17183|17019|17045","FALSE","FALSE","America/Chicago"
-"61811","40.29272","-87.62283","Alvin","IL","Illinois","TRUE","","709","9.7","17183","Vermilion","{""17183"": ""100""}","Vermilion","17183","FALSE","FALSE","America/Chicago"
-"61812","40.25008","-87.88668","Armstrong","IL","Illinois","TRUE","","387","5.6","17183","Vermilion","{""17183"": ""100""}","Vermilion","17183","FALSE","FALSE","America/Chicago"
-"61813","39.91155","-88.55961","Bement","IL","Illinois","TRUE","","1598","9.5","17147","Piatt","{""17147"": ""100""}","Piatt","17147","FALSE","FALSE","America/Chicago"
-"61814","40.2306","-87.57247","Bismarck","IL","Illinois","TRUE","","1072","19.2","17183","Vermilion","{""17183"": ""100""}","Vermilion","17183","FALSE","FALSE","America/Chicago"
-"61815","40.11073","-88.37656","Bondville","IL","Illinois","TRUE","","261","345.8","17019","Champaign","{""17019"": ""100""}","Champaign","17019","FALSE","FALSE","America/Chicago"
-"61816","39.92283","-88.00121","Broadlands","IL","Illinois","TRUE","","483","6.5","17019","Champaign","{""17019"": ""100""}","Champaign","17019","FALSE","FALSE","America/Chicago"
-"61817","40.03786","-87.71674","Catlin","IL","Illinois","TRUE","","2528","35.0","17183","Vermilion","{""17183"": ""100""}","Vermilion","17183","FALSE","FALSE","America/Chicago"
-"61818","39.88033","-88.71921","Cerro Gordo","IL","Illinois","TRUE","","1814","17.0","17147","Piatt","{""17147"": ""96.34"", ""17115"": ""3.66""}","Piatt|Macon","17147|17115","FALSE","FALSE","America/Chicago"
-"61820","40.10887","-88.24348","Champaign","IL","Illinois","TRUE","","38393","2270.4","17019","Champaign","{""17019"": ""100""}","Champaign","17019","FALSE","FALSE","America/Chicago"
-"61821","40.10962","-88.27503","Champaign","IL","Illinois","TRUE","","31207","1601.8","17019","Champaign","{""17019"": ""100""}","Champaign","17019","FALSE","FALSE","America/Chicago"
-"61822","40.13578","-88.30529","Champaign","IL","Illinois","TRUE","","25530","90.7","17019","Champaign","{""17019"": ""100""}","Champaign","17019","FALSE","FALSE","America/Chicago"
-"61830","40.02752","-88.7225","Cisco","IL","Illinois","TRUE","","390","4.0","17147","Piatt","{""17147"": ""90.59"", ""17115"": ""9.41""}","Piatt|Macon","17147|17115","FALSE","FALSE","America/Chicago"
-"61831","40.2251","-87.79208","Collison","IL","Illinois","TRUE","","139","4.6","17183","Vermilion","{""17183"": ""100""}","Vermilion","17183","FALSE","FALSE","America/Chicago"
-"61832","40.13616","-87.63646","Danville","IL","Illinois","TRUE","","34421","512.7","17183","Vermilion","{""17183"": ""100""}","Vermilion","17183","FALSE","FALSE","America/Chicago"
-"61833","40.09806","-87.64427","Tilton","IL","Illinois","TRUE","","2261","560.1","17183","Vermilion","{""17183"": ""100""}","Vermilion","17183","FALSE","FALSE","America/Chicago"
-"61834","40.1643","-87.63785","Danville","IL","Illinois","TRUE","","8625","31.0","17183","Vermilion","{""17183"": ""100""}","Vermilion","17183","FALSE","FALSE","America/Chicago"
-"61839","40.1377","-88.62912","De Land","IL","Illinois","TRUE","","664","7.7","17147","Piatt","{""17147"": ""100""}","Piatt","17147","FALSE","FALSE","America/Chicago"
-"61840","40.3037","-88.29894","Dewey","IL","Illinois","TRUE","","619","7.2","17019","Champaign","{""17019"": ""100""}","Champaign","17019","FALSE","FALSE","America/Chicago"
-"61841","40.02635","-87.82427","Fairmount","IL","Illinois","TRUE","","1278","8.5","17183","Vermilion","{""17183"": ""100""}","Vermilion","17183","FALSE","FALSE","America/Chicago"
-"61842","40.23922","-88.66581","Farmer City","IL","Illinois","TRUE","","2765","10.7","17039","De Witt","{""17039"": ""93.77"", ""17147"": ""3.62"", ""17113"": ""2.61""}","De Witt|Piatt|McLean","17039|17147|17113","FALSE","FALSE","America/Chicago"
-"61843","40.31533","-88.38396","Fisher","IL","Illinois","TRUE","","2494","25.4","17019","Champaign","{""17019"": ""98.35"", ""17113"": ""1.65""}","Champaign|McLean","17019|17113","FALSE","FALSE","America/Chicago"
-"61844","40.13875","-87.87033","Fithian","IL","Illinois","TRUE","","755","5.0","17183","Vermilion","{""17183"": ""100""}","Vermilion","17183","FALSE","FALSE","America/Chicago"
-"61845","40.37417","-88.39923","Foosland","IL","Illinois","TRUE","","324","4.2","17019","Champaign","{""17019"": ""92.86"", ""17053"": ""7.14""}","Champaign|Ford","17019|17053","FALSE","FALSE","America/Chicago"
-"61846","39.97627","-87.61237","Georgetown","IL","Illinois","TRUE","","4900","43.3","17183","Vermilion","{""17183"": ""100""}","Vermilion","17183","FALSE","FALSE","America/Chicago"
-"61847","40.31312","-88.01542","Gifford","IL","Illinois","TRUE","","1365","16.9","17019","Champaign","{""17019"": ""100""}","Champaign","17019","FALSE","FALSE","America/Chicago"
-"61848","40.30806","-87.70278","Henning","IL","Illinois","TRUE","","242","120.8","17183","Vermilion","{""17183"": ""100""}","Vermilion","17183","FALSE","FALSE","America/Chicago"
-"61849","40.01116","-87.96192","Homer","IL","Illinois","TRUE","","1903","12.8","17019","Champaign","{""17019"": ""90.99"", ""17183"": ""9.01""}","Champaign|Vermilion","17019|17183","FALSE","FALSE","America/Chicago"
-"61850","39.9325","-87.73765","Indianola","IL","Illinois","TRUE","","450","5.0","17183","Vermilion","{""17183"": ""100""}","Vermilion","17183","FALSE","FALSE","America/Chicago"
-"61851","39.96081","-88.43474","Ivesdale","IL","Illinois","TRUE","","334","3.8","17019","Champaign","{""17019"": ""96.79"", ""17147"": ""3.21""}","Champaign|Piatt","17019|17147","FALSE","FALSE","America/Chicago"
-"61852","39.90315","-88.07581","Longview","IL","Illinois","TRUE","","222","4.4","17019","Champaign","{""17019"": ""93.87"", ""17041"": ""6.13""}","Champaign|Douglas","17019|17041","FALSE","FALSE","America/Chicago"
-"61853","40.22146","-88.4168","Mahomet","IL","Illinois","TRUE","","13875","110.6","17019","Champaign","{""17019"": ""99.17"", ""17147"": ""0.83""}","Champaign|Piatt","17019|17147","FALSE","FALSE","America/Chicago"
-"61854","40.20401","-88.52404","Mansfield","IL","Illinois","TRUE","","1193","8.6","17147","Piatt","{""17147"": ""100""}","Piatt","17147","FALSE","FALSE","America/Chicago"
-"61855","39.92213","-88.66087","Milmine","IL","Illinois","TRUE","","133","5.0","17147","Piatt","{""17147"": ""100""}","Piatt","17147","FALSE","FALSE","America/Chicago"
-"61856","40.02685","-88.57949","Monticello","IL","Illinois","TRUE","","7771","28.8","17147","Piatt","{""17147"": ""100""}","Piatt","17147","FALSE","FALSE","America/Chicago"
-"61857","40.11662","-87.84223","Muncie","IL","Illinois","TRUE","","144","230.2","17183","Vermilion","{""17183"": ""100""}","Vermilion","17183","FALSE","FALSE","America/Chicago"
-"61858","40.13282","-87.76799","Oakwood","IL","Illinois","TRUE","","2980","40.0","17183","Vermilion","{""17183"": ""100""}","Vermilion","17183","FALSE","FALSE","America/Chicago"
-"61859","40.15412","-87.96122","Ogden","IL","Illinois","TRUE","","1276","15.7","17019","Champaign","{""17019"": ""97.76"", ""17183"": ""2.24""}","Champaign|Vermilion","17019|17183","FALSE","FALSE","America/Chicago"
-"61862","40.30633","-87.95185","Penfield","IL","Illinois","TRUE","","564","5.4","17019","Champaign","{""17019"": ""92.75"", ""17183"": ""7.25""}","Champaign|Vermilion","17019|17183","FALSE","FALSE","America/Chicago"
-"61863","39.9058","-88.2797","Pesotum","IL","Illinois","TRUE","","872","10.4","17019","Champaign","{""17019"": ""100""}","Champaign","17019","FALSE","FALSE","America/Chicago"
-"61864","39.97954","-88.14671","Philo","IL","Illinois","TRUE","","1770","30.0","17019","Champaign","{""17019"": ""100""}","Champaign","17019","FALSE","FALSE","America/Chicago"
-"61865","40.30451","-87.80255","Potomac","IL","Illinois","TRUE","","1642","8.2","17183","Vermilion","{""17183"": ""100""}","Vermilion","17183","FALSE","FALSE","America/Chicago"
-"61866","40.31207","-88.15398","Rantoul","IL","Illinois","TRUE","","14163","68.1","17019","Champaign","{""17019"": ""100""}","Champaign","17019","FALSE","FALSE","America/Chicago"
-"61870","39.89756","-87.61838","Ridge Farm","IL","Illinois","TRUE","","1265","11.8","17183","Vermilion","{""17183"": ""96.61"", ""17045"": ""3.39""}","Vermilion|Edgar","17183|17045","FALSE","FALSE","America/Chicago"
-"61871","40.19012","-87.96791","Royal","IL","Illinois","TRUE","","314","348.9","17019","Champaign","{""17019"": ""100""}","Champaign","17019","FALSE","FALSE","America/Chicago"
-"61872","39.9387","-88.37719","Sadorus","IL","Illinois","TRUE","","589","6.9","17019","Champaign","{""17019"": ""97.24"", ""17041"": ""2.76""}","Champaign|Douglas","17019|17041","FALSE","FALSE","America/Chicago"
-"61873","40.1378","-88.03929","Saint Joseph","IL","Illinois","TRUE","","6308","36.2","17019","Champaign","{""17019"": ""100""}","Champaign","17019","FALSE","FALSE","America/Chicago"
-"61874","40.05111","-88.25694","Savoy","IL","Illinois","TRUE","","7982","742.5","17019","Champaign","{""17019"": ""100""}","Champaign","17019","FALSE","FALSE","America/Chicago"
-"61875","40.1005","-88.41951","Seymour","IL","Illinois","TRUE","","986","12.0","17019","Champaign","{""17019"": ""100""}","Champaign","17019","FALSE","FALSE","America/Chicago"
-"61876","39.90508","-87.83412","Sidell","IL","Illinois","TRUE","","636","5.6","17183","Vermilion","{""17183"": ""94"", ""17045"": ""6""}","Vermilion|Edgar","17183|17045","FALSE","FALSE","America/Chicago"
-"61877","39.99416","-88.07867","Sidney","IL","Illinois","TRUE","","1792","24.6","17019","Champaign","{""17019"": ""100""}","Champaign","17019","FALSE","FALSE","America/Chicago"
-"61878","40.23971","-88.14945","Thomasboro","IL","Illinois","TRUE","","1224","17.0","17019","Champaign","{""17019"": ""100""}","Champaign","17019","FALSE","FALSE","America/Chicago"
-"61880","39.97358","-88.24581","Tolono","IL","Illinois","TRUE","","4075","26.0","17019","Champaign","{""17019"": ""100""}","Champaign","17019","FALSE","FALSE","America/Chicago"
-"61882","40.11346","-88.75994","Weldon","IL","Illinois","TRUE","","653","6.7","17039","De Witt","{""17039"": ""97.48"", ""17115"": ""2.52""}","De Witt|Macon","17039|17115","FALSE","FALSE","America/Chicago"
-"61883","40.03743","-87.64153","Westville","IL","Illinois","TRUE","","4289","77.8","17183","Vermilion","{""17183"": ""100""}","Vermilion","17183","FALSE","FALSE","America/Chicago"
-"61884","40.09074","-88.48059","White Heath","IL","Illinois","TRUE","","1031","15.6","17147","Piatt","{""17147"": ""96.14"", ""17019"": ""3.86""}","Piatt|Champaign","17147|17019","FALSE","FALSE","America/Chicago"
-"61910","39.67439","-88.29904","Arcola","IL","Illinois","TRUE","","4477","16.7","17041","Douglas","{""17041"": ""94.71"", ""17029"": ""5.29""}","Douglas|Coles","17041|17029","FALSE","FALSE","America/Chicago"
-"61911","39.70325","-88.4698","Arthur","IL","Illinois","TRUE","","5330","32.7","17041","Douglas","{""17041"": ""61.23"", ""17139"": ""37.8"", ""17029"": ""0.97""}","Douglas|Moultrie|Coles","17041|17139|17029","FALSE","FALSE","America/Chicago"
-"61912","39.52729","-88.03511","Ashmore","IL","Illinois","TRUE","","1176","9.0","17029","Coles","{""17029"": ""100""}","Coles","17029","FALSE","FALSE","America/Chicago"
-"61913","39.82756","-88.46609","Atwood","IL","Illinois","TRUE","","1410","13.1","17041","Douglas","{""17041"": ""56.77"", ""17147"": ""43.23""}","Douglas|Piatt","17041|17147","FALSE","FALSE","America/Chicago"
-"61914","39.63542","-88.76476","Bethany","IL","Illinois","TRUE","","1817","11.8","17139","Moultrie","{""17139"": ""97.19"", ""17173"": ""2.81""}","Moultrie|Shelby","17139|17173","FALSE","FALSE","America/Chicago"
-"61917","39.7142","-87.89767","Brocton","IL","Illinois","TRUE","","632","3.8","17045","Edgar","{""17045"": ""97.63"", ""17041"": ""2.37""}","Edgar|Douglas","17045|17041","FALSE","FALSE","America/Chicago"
-"61919","39.77867","-88.13947","Camargo","IL","Illinois","TRUE","","906","16.0","17041","Douglas","{""17041"": ""100""}","Douglas","17041","FALSE","FALSE","America/Chicago"
-"61920","39.50367","-88.1641","Charleston","IL","Illinois","TRUE","","23839","61.5","17029","Coles","{""17029"": ""100""}","Coles","17029","FALSE","FALSE","America/Chicago"
-"61924","39.79141","-87.65455","Chrisman","IL","Illinois","TRUE","","2299","6.1","17045","Edgar","{""17045"": ""100""}","Edgar","17045","FALSE","FALSE","America/Chicago"
-"61925","39.7235","-88.83629","Dalton City","IL","Illinois","TRUE","","776","7.2","17139","Moultrie","{""17139"": ""65.9"", ""17115"": ""34.1""}","Moultrie|Macon","17139|17115","FALSE","FALSE","America/Chicago"
-"61928","39.451","-88.50411","Gays","IL","Illinois","TRUE","","596","6.4","17139","Moultrie","{""17139"": ""64.46"", ""17029"": ""20.74"", ""17173"": ""14.8""}","Moultrie|Coles|Shelby","17139|17029|17173","FALSE","FALSE","America/Chicago"
-"61929","39.82479","-88.62132","Hammond","IL","Illinois","TRUE","","679","6.5","17147","Piatt","{""17147"": ""100""}","Piatt","17147","FALSE","FALSE","America/Chicago"
-"61930","39.68088","-88.13049","Hindsboro","IL","Illinois","TRUE","","859","10.6","17041","Douglas","{""17041"": ""94.56"", ""17029"": ""5.44""}","Douglas|Coles","17041|17029","FALSE","FALSE","America/Chicago"
-"61931","39.58979","-88.35311","Humboldt","IL","Illinois","TRUE","","1190","14.4","17029","Coles","{""17029"": ""100""}","Coles","17029","FALSE","FALSE","America/Chicago"
-"61932","39.80355","-87.8789","Hume","IL","Illinois","TRUE","","442","7.9","17045","Edgar","{""17045"": ""100""}","Edgar","17045","FALSE","FALSE","America/Chicago"
-"61933","39.54832","-87.91706","Kansas","IL","Illinois","TRUE","","872","5.6","17045","Edgar","{""17045"": ""96.67"", ""17023"": ""2.8"", ""17029"": ""0.53""}","Edgar|Clark|Coles","17045|17023|17029","FALSE","FALSE","America/Chicago"
-"61936","39.80135","-88.73026","La Place","IL","Illinois","TRUE","","297","51.1","17147","Piatt","{""17147"": ""100""}","Piatt","17147","FALSE","FALSE","America/Chicago"
-"61937","39.74179","-88.65055","Lovington","IL","Illinois","TRUE","","1967","8.1","17139","Moultrie","{""17139"": ""97.97"", ""17115"": ""2.03""}","Moultrie|Macon","17139|17115","FALSE","FALSE","America/Chicago"
-"61938","39.48386","-88.37426","Mattoon","IL","Illinois","TRUE","","21727","67.3","17029","Coles","{""17029"": ""100""}","Coles","17029","FALSE","FALSE","America/Chicago"
-"61940","39.80773","-87.81871","Metcalf","IL","Illinois","TRUE","","253","3.5","17045","Edgar","{""17045"": ""100""}","Edgar","17045","FALSE","FALSE","America/Chicago"
-"61941","39.80403","-88.07291","Murdock","IL","Illinois","TRUE","","87","24.6","17041","Douglas","{""17041"": ""100""}","Douglas","17041","FALSE","FALSE","America/Chicago"
-"61942","39.81517","-88.00608","Newman","IL","Illinois","TRUE","","898","4.9","17041","Douglas","{""17041"": ""97.59"", ""17045"": ""2.41""}","Douglas|Edgar","17041|17045","FALSE","FALSE","America/Chicago"
-"61943","39.66494","-88.02965","Oakland","IL","Illinois","TRUE","","1630","8.1","17029","Coles","{""17029"": ""86.01"", ""17041"": ""9.84"", ""17045"": ""4.15""}","Coles|Douglas|Edgar","17029|17041|17045","FALSE","FALSE","America/Chicago"
-"61944","39.601","-87.70126","Paris","IL","Illinois","TRUE","","12311","17.9","17045","Edgar","{""17045"": ""99.92"", ""17023"": ""0.08""}","Edgar|Clark","17045|17023","FALSE","FALSE","America/Chicago"
-"61949","39.63357","-87.87362","Redmon","IL","Illinois","TRUE","","129","17.6","17045","Edgar","{""17045"": ""100""}","Edgar","17045","FALSE","FALSE","America/Chicago"
-"61951","39.59393","-88.58679","Sullivan","IL","Illinois","TRUE","","7817","22.4","17139","Moultrie","{""17139"": ""99.63"", ""17029"": ""0.37""}","Moultrie|Coles","17139|17029","FALSE","FALSE","America/Chicago"
-"61953","39.79958","-88.29125","Tuscola","IL","Illinois","TRUE","","6019","19.3","17041","Douglas","{""17041"": ""100""}","Douglas","17041","FALSE","FALSE","America/Chicago"
-"61955","39.58195","-87.59103","Vermilion","IL","Illinois","TRUE","","189","376.9","17045","Edgar","{""17045"": ""100""}","Edgar","17045","FALSE","FALSE","America/Chicago"
-"61956","39.85123","-88.14416","Villa Grove","IL","Illinois","TRUE","","2749","31.4","17041","Douglas","{""17041"": ""98.42"", ""17019"": ""1.58""}","Douglas|Champaign","17041|17019","FALSE","FALSE","America/Chicago"
-"61957","39.43961","-88.61112","Windsor","IL","Illinois","TRUE","","1789","8.4","17173","Shelby","{""17173"": ""96.2"", ""17139"": ""3.8""}","Shelby|Moultrie","17173|17139","FALSE","FALSE","America/Chicago"
-"62001","38.87851","-89.74853","Alhambra","IL","Illinois","TRUE","","1669","12.6","17119","Madison","{""17119"": ""100""}","Madison","17119","FALSE","FALSE","America/Chicago"
-"62002","38.93973","-90.12764","Alton","IL","Illinois","TRUE","","31087","285.8","17119","Madison","{""17119"": ""99.22"", ""17117"": ""0.78""}","Madison|Macoupin","17119|17117","FALSE","FALSE","America/Chicago"
-"62006","39.05582","-90.66657","Batchtown","IL","Illinois","TRUE","","442","5.8","17013","Calhoun","{""17013"": ""100""}","Calhoun","17013","FALSE","FALSE","America/Chicago"
-"62009","39.09108","-89.7984","Benld","IL","Illinois","TRUE","","1720","176.8","17117","Macoupin","{""17117"": ""100""}","Macoupin","17117","FALSE","FALSE","America/Chicago"
-"62010","38.92009","-90.04734","Bethalto","IL","Illinois","TRUE","","11409","199.1","17119","Madison","{""17119"": ""100""}","Madison","17119","FALSE","FALSE","America/Chicago"
-"62011","39.12647","-89.21593","Bingham","IL","Illinois","TRUE","","224","3.0","17051","Fayette","{""17051"": ""100""}","Fayette","17051","FALSE","FALSE","America/Chicago"
-"62012","39.04282","-90.15015","Brighton","IL","Illinois","TRUE","","6510","42.2","17117","Macoupin","{""17117"": ""53.07"", ""17083"": ""42.64"", ""17119"": ""4.3""}","Macoupin|Jersey|Madison","17117|17083|17119","FALSE","FALSE","America/Chicago"
-"62013","38.96245","-90.5695","Brussels","IL","Illinois","TRUE","","619","9.7","17013","Calhoun","{""17013"": ""100""}","Calhoun","17013","FALSE","FALSE","America/Chicago"
-"62014","39.04304","-89.95097","Bunker Hill","IL","Illinois","TRUE","","4063","26.4","17117","Macoupin","{""17117"": ""100""}","Macoupin","17117","FALSE","FALSE","America/Chicago"
-"62015","39.22173","-89.54337","Butler","IL","Illinois","TRUE","","690","8.0","17135","Montgomery","{""17135"": ""100""}","Montgomery","17135","FALSE","FALSE","America/Chicago"
-"62016","39.29412","-90.41698","Carrollton","IL","Illinois","TRUE","","3572","10.4","17061","Greene","{""17061"": ""100""}","Greene","17061","FALSE","FALSE","America/Chicago"
-"62017","39.0689","-89.36895","Coffeen","IL","Illinois","TRUE","","927","11.3","17135","Montgomery","{""17135"": ""100""}","Montgomery","17135","FALSE","FALSE","America/Chicago"
-"62018","38.9071","-90.08357","Cottage Hills","IL","Illinois","TRUE","","3017","365.4","17119","Madison","{""17119"": ""100""}","Madison","17119","FALSE","FALSE","America/Chicago"
-"62019","39.01943","-89.44927","Donnellson","IL","Illinois","TRUE","","298","4.2","17135","Montgomery","{""17135"": ""65.1"", ""17005"": ""34.9""}","Montgomery|Bond","17135|17005","FALSE","FALSE","America/Chicago"
-"62021","38.9774","-89.97931","Dorsey","IL","Illinois","TRUE","","1207","23.3","17119","Madison","{""17119"": ""100""}","Madison","17119","FALSE","FALSE","America/Chicago"
-"62022","39.00376","-90.33164","Dow","IL","Illinois","TRUE","","1103","22.7","17083","Jersey","{""17083"": ""100""}","Jersey","17083","FALSE","FALSE","America/Chicago"
-"62023","39.11074","-89.78815","Eagarville","IL","Illinois","TRUE","","124","153.2","17117","Macoupin","{""17117"": ""100""}","Macoupin","17117","FALSE","FALSE","America/Chicago"
-"62024","38.87133","-90.09568","East Alton","IL","Illinois","TRUE","","9799","605.2","17119","Madison","{""17119"": ""100""}","Madison","17119","FALSE","FALSE","America/Chicago"
-"62025","38.83056","-89.93326","Edwardsville","IL","Illinois","TRUE","","34960","123.8","17119","Madison","{""17119"": ""100""}","Madison","17119","FALSE","FALSE","America/Chicago"
-"62027","39.25606","-90.55967","Eldred","IL","Illinois","TRUE","","589","3.6","17061","Greene","{""17061"": ""100""}","Greene","17061","FALSE","FALSE","America/Chicago"
-"62028","38.95935","-90.35407","Elsah","IL","Illinois","TRUE","","1119","73.2","17083","Jersey","{""17083"": ""100""}","Jersey","17083","FALSE","FALSE","America/Chicago"
-"62030","39.15463","-90.16445","Fidelity","IL","Illinois","TRUE","","203","773.6","17083","Jersey","{""17083"": ""100""}","Jersey","17083","FALSE","FALSE","America/Chicago"
-"62031","39.11333","-90.5357","Fieldon","IL","Illinois","TRUE","","800","5.4","17083","Jersey","{""17083"": ""100""}","Jersey","17083","FALSE","FALSE","America/Chicago"
-"62032","39.11567","-89.28845","Fillmore","IL","Illinois","TRUE","","749","6.1","17135","Montgomery","{""17135"": ""97.46"", ""17051"": ""2.54""}","Montgomery|Fayette","17135|17051","FALSE","FALSE","America/Chicago"
-"62033","39.13404","-89.84424","Gillespie","IL","Illinois","TRUE","","4539","35.5","17117","Macoupin","{""17117"": ""100""}","Macoupin","17117","FALSE","FALSE","America/Chicago"
-"62034","38.75651","-89.96987","Glen Carbon","IL","Illinois","TRUE","","13487","372.8","17119","Madison","{""17119"": ""100""}","Madison","17119","FALSE","FALSE","America/Chicago"
-"62035","38.96423","-90.24075","Godfrey","IL","Illinois","TRUE","","16080","134.5","17119","Madison","{""17119"": ""93.82"", ""17083"": ""6.18""}","Madison|Jersey","17119|17083","FALSE","FALSE","America/Chicago"
-"62036","38.91666","-90.58799","Golden Eagle","IL","Illinois","TRUE","","706","9.5","17013","Calhoun","{""17013"": ""100""}","Calhoun","17013","FALSE","FALSE","America/Chicago"
-"62037","39.00931","-90.46759","Grafton","IL","Illinois","TRUE","","1990","13.1","17083","Jersey","{""17083"": ""100""}","Jersey","17083","FALSE","FALSE","America/Chicago"
-"62040","38.72613","-90.11067","Granite City","IL","Illinois","TRUE","","42149","365.5","17119","Madison","{""17119"": ""100""}","Madison","17119","FALSE","FALSE","America/Chicago"
-"62044","39.36359","-90.2127","Greenfield","IL","Illinois","TRUE","","2262","8.4","17061","Greene","{""17061"": ""94.72"", ""17117"": ""5.28""}","Greene|Macoupin","17061|17117","FALSE","FALSE","America/Chicago"
-"62045","39.26026","-90.70904","Hamburg","IL","Illinois","TRUE","","533","5.4","17013","Calhoun","{""17013"": ""100""}","Calhoun","17013","FALSE","FALSE","America/Chicago"
-"62046","38.89009","-89.84572","Hamel","IL","Illinois","TRUE","","709","344.6","17119","Madison","{""17119"": ""100""}","Madison","17119","FALSE","FALSE","America/Chicago"
-"62047","39.12107","-90.62535","Hardin","IL","Illinois","TRUE","","1691","18.1","17013","Calhoun","{""17013"": ""100""}","Calhoun","17013","FALSE","FALSE","America/Chicago"
-"62048","38.80406","-90.0966","Hartford","IL","Illinois","TRUE","","1965","99.6","17119","Madison","{""17119"": ""100""}","Madison","17119","FALSE","FALSE","America/Chicago"
-"62049","39.13013","-89.48518","Hillsboro","IL","Illinois","TRUE","","8513","38.7","17135","Montgomery","{""17135"": ""100""}","Montgomery","17135","FALSE","FALSE","America/Chicago"
-"62050","39.44468","-90.55129","Hillview","IL","Illinois","TRUE","","376","2.6","17061","Greene","{""17061"": ""100""}","Greene","17061","FALSE","FALSE","America/Chicago"
-"62051","39.20174","-89.40192","Irving","IL","Illinois","TRUE","","687","7.0","17135","Montgomery","{""17135"": ""100""}","Montgomery","17135","FALSE","FALSE","America/Chicago"
-"62052","39.11101","-90.32182","Jerseyville","IL","Illinois","TRUE","","12418","34.0","17083","Jersey","{""17083"": ""100""}","Jersey","17083","FALSE","FALSE","America/Chicago"
-"62053","39.32513","-90.66106","Kampsville","IL","Illinois","TRUE","","550","4.6","17013","Calhoun","{""17013"": ""100""}","Calhoun","17013","FALSE","FALSE","America/Chicago"
-"62054","39.20119","-90.34528","Kane","IL","Illinois","TRUE","","606","6.0","17061","Greene","{""17061"": ""86.35"", ""17083"": ""13.65""}","Greene|Jersey","17061|17083","FALSE","FALSE","America/Chicago"
-"62056","39.17871","-89.67103","Litchfield","IL","Illinois","TRUE","","8507","30.4","17135","Montgomery","{""17135"": ""96.91"", ""17117"": ""3.09""}","Montgomery|Macoupin","17135|17117","FALSE","FALSE","America/Chicago"
-"62058","38.96895","-89.76681","Livingston","IL","Illinois","TRUE","","704","226.6","17119","Madison","{""17119"": ""100""}","Madison","17119","FALSE","FALSE","America/Chicago"
-"62059","38.65639","-90.16501","Lovejoy","IL","Illinois","TRUE","","411","615.8","17163","St. Clair","{""17163"": ""100""}","St. Clair","17163","FALSE","FALSE","America/Chicago"
-"62060","38.6769","-90.14693","Madison","IL","Illinois","TRUE","","4135","452.9","17119","Madison","{""17119"": ""100"", ""17163"": ""0""}","Madison|St. Clair","17119|17163","FALSE","FALSE","America/Chicago"
-"62061","38.78975","-89.77952","Marine","IL","Illinois","TRUE","","1631","26.0","17119","Madison","{""17119"": ""100""}","Madison","17119","FALSE","FALSE","America/Chicago"
-"62062","38.7274","-89.96199","Maryville","IL","Illinois","TRUE","","8078","488.0","17119","Madison","{""17119"": ""100""}","Madison","17119","FALSE","FALSE","America/Chicago"
-"62063","39.1978","-90.14761","Medora","IL","Illinois","TRUE","","991","7.9","17117","Macoupin","{""17117"": ""66.8"", ""17083"": ""33.2""}","Macoupin|Jersey","17117|17083","FALSE","FALSE","America/Chicago"
-"62065","39.23213","-90.62893","Michael","IL","Illinois","TRUE","","127","4.5","17013","Calhoun","{""17013"": ""100""}","Calhoun","17013","FALSE","FALSE","America/Chicago"
-"62067","38.92985","-89.98516","Moro","IL","Illinois","TRUE","","2202","46.1","17119","Madison","{""17119"": ""100""}","Madison","17119","FALSE","FALSE","America/Chicago"
-"62069","39.08832","-89.7394","Mount Olive","IL","Illinois","TRUE","","3184","38.6","17117","Macoupin","{""17117"": ""99.79"", ""17135"": ""0.21""}","Macoupin|Montgomery","17117|17135","FALSE","FALSE","America/Chicago"
-"62070","39.2965","-90.73319","Mozier","IL","Illinois","TRUE","","16","3.6","17013","Calhoun","{""17013"": ""100""}","Calhoun","17013","FALSE","FALSE","America/Chicago"
-"62074","38.95803","-89.68365","New Douglas","IL","Illinois","TRUE","","1068","9.9","17119","Madison","{""17119"": ""77.64"", ""17005"": ""12.14"", ""17117"": ""8.83"", ""17135"": ""1.38""}","Madison|Bond|Macoupin|Montgomery","17119|17005|17117|17135","FALSE","FALSE","America/Chicago"
-"62075","39.30115","-89.29534","Nokomis","IL","Illinois","TRUE","","3595","12.6","17135","Montgomery","{""17135"": ""95.86"", ""17021"": ""3.96"", ""17051"": ""0.17""}","Montgomery|Christian|Fayette","17135|17021|17051","FALSE","FALSE","America/Chicago"
-"62076","39.34337","-89.2188","Ohlman","IL","Illinois","TRUE","","122","128.5","17135","Montgomery","{""17135"": ""100""}","Montgomery","17135","FALSE","FALSE","America/Chicago"
-"62077","39.02899","-89.52173","Panama","IL","Illinois","TRUE","","288","213.2","17135","Montgomery","{""17135"": ""59.37"", ""17005"": ""40.63""}","Montgomery|Bond","17135|17005","FALSE","FALSE","America/Chicago"
-"62078","39.47862","-90.48608","Patterson","IL","Illinois","TRUE","","107","92.7","17061","Greene","{""17061"": ""100""}","Greene","17061","FALSE","FALSE","America/Chicago"
-"62079","39.11219","-90.14204","Piasa","IL","Illinois","TRUE","","323","13.2","17117","Macoupin","{""17117"": ""55.47"", ""17083"": ""44.53""}","Macoupin|Jersey","17117|17083","FALSE","FALSE","America/Chicago"
-"62080","39.13697","-89.10133","Ramsey","IL","Illinois","TRUE","","2355","7.5","17051","Fayette","{""17051"": ""98.01"", ""17135"": ""1.99""}","Fayette|Montgomery","17051|17135","FALSE","FALSE","America/Chicago"
-"62081","39.26108","-90.23701","Rockbridge","IL","Illinois","TRUE","","318","5.0","17061","Greene","{""17061"": ""100""}","Greene","17061","FALSE","FALSE","America/Chicago"
-"62082","39.49462","-90.32409","Roodhouse","IL","Illinois","TRUE","","2742","9.8","17061","Greene","{""17061"": ""93.66"", ""17171"": ""6.34""}","Greene|Scott","17061|17171","FALSE","FALSE","America/Chicago"
-"62083","39.35447","-89.20144","Rosamond","IL","Illinois","TRUE","","167","3.3","17021","Christian","{""17021"": ""84.75"", ""17135"": ""15.25""}","Christian|Montgomery","17021|17135","FALSE","FALSE","America/Chicago"
-"62084","38.83665","-90.06245","Roxana","IL","Illinois","TRUE","","1511","109.8","17119","Madison","{""17119"": ""100""}","Madison","17119","FALSE","FALSE","America/Chicago"
-"62085","39.07823","-89.80244","Sawyerville","IL","Illinois","TRUE","","162","78.7","17117","Macoupin","{""17117"": ""100""}","Macoupin","17117","FALSE","FALSE","America/Chicago"
-"62086","38.9825","-89.58099","Sorento","IL","Illinois","TRUE","","1224","8.9","17005","Bond","{""17005"": ""91.93"", ""17135"": ""8.07""}","Bond|Montgomery","17005|17135","FALSE","FALSE","America/Chicago"
-"62087","38.81683","-90.06613","South Roxana","IL","Illinois","TRUE","","2073","264.3","17119","Madison","{""17119"": ""100""}","Madison","17119","FALSE","FALSE","America/Chicago"
-"62088","39.012","-89.7987","Staunton","IL","Illinois","TRUE","","6647","59.3","17117","Macoupin","{""17117"": ""89.93"", ""17119"": ""10.07""}","Macoupin|Madison","17117|17119","FALSE","FALSE","America/Chicago"
-"62089","39.1298","-89.4949","Taylor Springs","IL","Illinois","TRUE","","439","219.5","17135","Montgomery","{""17135"": ""100""}","Montgomery","17135","FALSE","FALSE","America/Chicago"
-"62090","38.66983","-90.16932","Venice","IL","Illinois","TRUE","","1417","342.9","17119","Madison","{""17119"": ""100""}","Madison","17119","FALSE","FALSE","America/Chicago"
-"62091","39.05689","-89.60916","Walshville","IL","Illinois","TRUE","","399","4.9","17135","Montgomery","{""17135"": ""100""}","Montgomery","17135","FALSE","FALSE","America/Chicago"
-"62092","39.41619","-90.41612","White Hall","IL","Illinois","TRUE","","2894","17.9","17061","Greene","{""17061"": ""100""}","Greene","17061","FALSE","FALSE","America/Chicago"
-"62093","39.06691","-89.85468","Wilsonville","IL","Illinois","TRUE","","434","263.3","17117","Macoupin","{""17117"": ""100""}","Macoupin","17117","FALSE","FALSE","America/Chicago"
-"62094","39.24473","-89.35264","Witt","IL","Illinois","TRUE","","1104","13.3","17135","Montgomery","{""17135"": ""100""}","Montgomery","17135","FALSE","FALSE","America/Chicago"
-"62095","38.86228","-90.0692","Wood River","IL","Illinois","TRUE","","10471","582.1","17119","Madison","{""17119"": ""100""}","Madison","17119","FALSE","FALSE","America/Chicago"
-"62097","38.93871","-89.85435","Worden","IL","Illinois","TRUE","","2893","28.9","17119","Madison","{""17119"": ""100""}","Madison","17119","FALSE","FALSE","America/Chicago"
-"62098","39.38606","-90.30467","Wrights","IL","Illinois","TRUE","","18","2.1","17061","Greene","{""17061"": ""100""}","Greene","17061","FALSE","FALSE","America/Chicago"
-"62201","38.64271","-90.13864","East Saint Louis","IL","Illinois","TRUE","","6853","177.1","17163","St. Clair","{""17163"": ""97.91"", ""17119"": ""2.09""}","St. Clair|Madison","17163|17119","FALSE","FALSE","America/Chicago"
-"62203","38.60024","-90.07746","East Saint Louis","IL","Illinois","TRUE","","8366","485.8","17163","St. Clair","{""17163"": ""100""}","St. Clair","17163","FALSE","FALSE","America/Chicago"
-"62204","38.6327","-90.09056","East Saint Louis","IL","Illinois","TRUE","","8133","560.9","17163","St. Clair","{""17163"": ""100""}","St. Clair","17163","FALSE","FALSE","America/Chicago"
-"62205","38.60935","-90.12227","East Saint Louis","IL","Illinois","TRUE","","7781","595.2","17163","St. Clair","{""17163"": ""100""}","St. Clair","17163","FALSE","FALSE","America/Chicago"
-"62206","38.56794","-90.16665","East Saint Louis","IL","Illinois","TRUE","","15046","414.7","17163","St. Clair","{""17163"": ""100""}","St. Clair","17163","FALSE","FALSE","America/Chicago"
-"62207","38.58286","-90.12288","East Saint Louis","IL","Illinois","TRUE","","9090","526.0","17163","St. Clair","{""17163"": ""100""}","St. Clair","17163","FALSE","FALSE","America/Chicago"
-"62208","38.59623","-90.00456","Fairview Heights","IL","Illinois","TRUE","","16544","476.5","17163","St. Clair","{""17163"": ""100""}","St. Clair","17163","FALSE","FALSE","America/Chicago"
-"62214","38.37808","-89.61173","Addieville","IL","Illinois","TRUE","","1332","8.0","17189","Washington","{""17189"": ""100""}","Washington","17189","FALSE","FALSE","America/Chicago"
-"62215","38.5094","-89.60732","Albers","IL","Illinois","TRUE","","2103","76.1","17027","Clinton","{""17027"": ""100""}","Clinton","17027","FALSE","FALSE","America/Chicago"
-"62216","38.62106","-89.60243","Aviston","IL","Illinois","TRUE","","2736","49.6","17027","Clinton","{""17027"": ""100""}","Clinton","17027","FALSE","FALSE","America/Chicago"
-"62217","38.17347","-89.84446","Baldwin","IL","Illinois","TRUE","","773","10.8","17157","Randolph","{""17157"": ""100""}","Randolph","17157","FALSE","FALSE","America/Chicago"
-"62218","38.51975","-89.47294","Bartelso","IL","Illinois","TRUE","","1713","14.3","17027","Clinton","{""17027"": ""100""}","Clinton","17027","FALSE","FALSE","America/Chicago"
-"62219","38.60586","-89.4318","Beckemeyer","IL","Illinois","TRUE","","1170","745.4","17027","Clinton","{""17027"": ""100""}","Clinton","17027","FALSE","FALSE","America/Chicago"
-"62220","38.47337","-89.98652","Belleville","IL","Illinois","TRUE","","17722","233.7","17163","St. Clair","{""17163"": ""100""}","St. Clair","17163","FALSE","FALSE","America/Chicago"
-"62221","38.51485","-89.89921","Belleville","IL","Illinois","TRUE","","30301","340.7","17163","St. Clair","{""17163"": ""100""}","St. Clair","17163","FALSE","FALSE","America/Chicago"
-"62223","38.53613","-90.05981","Belleville","IL","Illinois","TRUE","","16004","244.0","17163","St. Clair","{""17163"": ""100""}","St. Clair","17163","FALSE","FALSE","America/Chicago"
-"62225","38.54559","-89.8554","Scott Air Force Base","IL","Illinois","TRUE","","5209","283.8","17163","St. Clair","{""17163"": ""100""}","St. Clair","17163","FALSE","FALSE","America/Chicago"
-"62226","38.5352","-90.00057","Belleville","IL","Illinois","TRUE","","28914","801.0","17163","St. Clair","{""17163"": ""100""}","St. Clair","17163","FALSE","FALSE","America/Chicago"
-"62230","38.64037","-89.52681","Breese","IL","Illinois","TRUE","","6308","48.8","17027","Clinton","{""17027"": ""100""}","Clinton","17027","FALSE","FALSE","America/Chicago"
-"62231","38.64163","-89.33028","Carlyle","IL","Illinois","TRUE","","7313","14.9","17027","Clinton","{""17027"": ""100""}","Clinton","17027","FALSE","FALSE","America/Chicago"
-"62232","38.63221","-90.0027","Caseyville","IL","Illinois","TRUE","","6828","200.1","17163","St. Clair","{""17163"": ""100""}","St. Clair","17163","FALSE","FALSE","America/Chicago"
-"62233","37.9461","-89.7874","Chester","IL","Illinois","TRUE","","9521","56.3","17157","Randolph","{""17157"": ""100""}","Randolph","17157","FALSE","FALSE","America/Chicago"
-"62234","38.6834","-89.98178","Collinsville","IL","Illinois","TRUE","","32474","341.4","17119","Madison","{""17119"": ""86.81"", ""17163"": ""13.19""}","Madison|St. Clair","17119|17163","FALSE","FALSE","America/Chicago"
-"62236","38.43645","-90.21654","Columbia","IL","Illinois","TRUE","","14067","99.5","17133","Monroe","{""17133"": ""95.48"", ""17163"": ""4.52""}","Monroe|St. Clair","17133|17163","FALSE","FALSE","America/Chicago"
-"62237","38.18905","-89.56909","Coulterville","IL","Illinois","TRUE","","2398","9.6","17157","Randolph","{""17157"": ""54.34"", ""17145"": ""29.56"", ""17189"": ""16.1""}","Randolph|Perry|Washington","17157|17145|17189","FALSE","FALSE","America/Chicago"
-"62238","38.0391","-89.53263","Cutler","IL","Illinois","TRUE","","632","5.7","17145","Perry","{""17145"": ""100""}","Perry","17145","FALSE","FALSE","America/Chicago"
-"62239","38.52569","-90.18737","Dupo","IL","Illinois","TRUE","","4595","224.9","17163","St. Clair","{""17163"": ""100""}","St. Clair","17163","FALSE","FALSE","America/Chicago"
-"62240","38.52118","-90.20743","East Carondelet","IL","Illinois","TRUE","","1507","35.9","17163","St. Clair","{""17163"": ""100""}","St. Clair","17163","FALSE","FALSE","America/Chicago"
-"62241","38.01352","-89.89064","Ellis Grove","IL","Illinois","TRUE","","878","9.2","17157","Randolph","{""17157"": ""100""}","Randolph","17157","FALSE","FALSE","America/Chicago"
-"62242","38.09633","-89.94538","Evansville","IL","Illinois","TRUE","","1365","9.6","17157","Randolph","{""17157"": ""100""}","Randolph","17157","FALSE","FALSE","America/Chicago"
-"62243","38.41946","-89.89049","Freeburg","IL","Illinois","TRUE","","5757","42.2","17163","St. Clair","{""17163"": ""100""}","St. Clair","17163","FALSE","FALSE","America/Chicago"
-"62244","38.18639","-90.19815","Fults","IL","Illinois","TRUE","","1006","7.8","17133","Monroe","{""17133"": ""100""}","Monroe","17133","FALSE","FALSE","America/Chicago"
-"62245","38.54881","-89.56793","Germantown","IL","Illinois","TRUE","","1795","32.3","17027","Clinton","{""17027"": ""100""}","Clinton","17027","FALSE","FALSE","America/Chicago"
-"62246","38.8888","-89.42629","Greenville","IL","Illinois","TRUE","","9964","26.9","17005","Bond","{""17005"": ""100""}","Bond","17005","FALSE","FALSE","America/Chicago"
-"62248","38.30442","-89.99346","Hecker","IL","Illinois","TRUE","","396","859.5","17133","Monroe","{""17133"": ""100""}","Monroe","17133","FALSE","FALSE","America/Chicago"
-"62249","38.75527","-89.66451","Highland","IL","Illinois","TRUE","","15574","70.5","17119","Madison","{""17119"": ""98.53"", ""17027"": ""1.47""}","Madison|Clinton","17119|17027","FALSE","FALSE","America/Chicago"
-"62250","38.54083","-89.266","Hoffman","IL","Illinois","TRUE","","468","475.1","17027","Clinton","{""17027"": ""100""}","Clinton","17027","FALSE","FALSE","America/Chicago"
-"62253","38.77688","-89.29755","Keyesport","IL","Illinois","TRUE","","544","6.2","17005","Bond","{""17005"": ""59.77"", ""17027"": ""34.48"", ""17051"": ""5.75""}","Bond|Clinton|Fayette","17005|17027|17051","FALSE","FALSE","America/Chicago"
-"62254","38.60743","-89.82137","Lebanon","IL","Illinois","TRUE","","6189","63.1","17163","St. Clair","{""17163"": ""100""}","St. Clair","17163","FALSE","FALSE","America/Chicago"
-"62255","38.31168","-89.7819","Lenzburg","IL","Illinois","TRUE","","1332","20.4","17163","St. Clair","{""17163"": ""100""}","St. Clair","17163","FALSE","FALSE","America/Chicago"
-"62257","38.28413","-89.73128","Marissa","IL","Illinois","TRUE","","2416","12.7","17163","St. Clair","{""17163"": ""85.91"", ""17189"": ""13.19"", ""17157"": ""0.9""}","St. Clair|Washington|Randolph","17163|17189|17157","FALSE","FALSE","America/Chicago"
-"62258","38.46213","-89.77254","Mascoutah","IL","Illinois","TRUE","","9491","49.9","17163","St. Clair","{""17163"": ""100""}","St. Clair","17163","FALSE","FALSE","America/Chicago"
-"62260","38.45996","-90.10096","Millstadt","IL","Illinois","TRUE","","7537","61.3","17163","St. Clair","{""17163"": ""100""}","St. Clair","17163","FALSE","FALSE","America/Chicago"
-"62261","38.01309","-90.00282","Modoc","IL","Illinois","TRUE","","52","0.7","17157","Randolph","{""17157"": ""100""}","Randolph","17157","FALSE","FALSE","America/Chicago"
-"62262","38.94143","-89.27192","Mulberry Grove","IL","Illinois","TRUE","","1619","9.3","17005","Bond","{""17005"": ""78.67"", ""17051"": ""21.33""}","Bond|Fayette","17005|17051","FALSE","FALSE","America/Chicago"
-"62263","38.33016","-89.40006","Nashville","IL","Illinois","TRUE","","4912","13.0","17189","Washington","{""17189"": ""98.61"", ""17145"": ""1.39""}","Washington|Perry","17189|17145","FALSE","FALSE","America/Chicago"
-"62264","38.31628","-89.9072","New Athens","IL","Illinois","TRUE","","3754","22.1","17163","St. Clair","{""17163"": ""96.52"", ""17133"": ""3.48""}","St. Clair|Monroe","17163|17133","FALSE","FALSE","America/Chicago"
-"62265","38.50064","-89.67063","New Baden","IL","Illinois","TRUE","","4072","40.6","17027","Clinton","{""17027"": ""93.5"", ""17163"": ""6.5""}","Clinton|St. Clair","17027|17163","FALSE","FALSE","America/Chicago"
-"62266","38.48665","-89.6771","New Memphis","IL","Illinois","TRUE","","102","34.7","17027","Clinton","{""17027"": ""100""}","Clinton","17027","FALSE","FALSE","America/Chicago"
-"62268","38.27365","-89.528","Oakdale","IL","Illinois","TRUE","","861","6.4","17189","Washington","{""17189"": ""97.29"", ""17145"": ""2.71""}","Washington|Perry","17189|17145","FALSE","FALSE","America/Chicago"
-"62269","38.60338","-89.91604","O'Fallon","IL","Illinois","TRUE","","31567","451.0","17163","St. Clair","{""17163"": ""100""}","St. Clair","17163","FALSE","FALSE","America/Chicago"
-"62271","38.44476","-89.51576","Okawville","IL","Illinois","TRUE","","1994","13.3","17189","Washington","{""17189"": ""100""}","Washington","17189","FALSE","FALSE","America/Chicago"
-"62272","37.98834","-89.59939","Percy","IL","Illinois","TRUE","","1859","18.9","17157","Randolph","{""17157"": ""82.26"", ""17145"": ""17.74""}","Randolph|Perry","17157|17145","FALSE","FALSE","America/Chicago"
-"62273","38.78677","-89.58388","Pierron","IL","Illinois","TRUE","","147","42.2","17005","Bond","{""17005"": ""100""}","Bond","17005","FALSE","FALSE","America/Chicago"
-"62274","38.09177","-89.40828","Pinckneyville","IL","Illinois","TRUE","","7699","21.3","17145","Perry","{""17145"": ""100""}","Perry","17145","FALSE","FALSE","America/Chicago"
-"62275","38.81166","-89.54475","Pocahontas","IL","Illinois","TRUE","","3824","14.5","17005","Bond","{""17005"": ""75.84"", ""17119"": ""17.98"", ""17027"": ""6.19""}","Bond|Madison|Clinton","17005|17119|17027","FALSE","FALSE","America/Chicago"
-"62277","38.10088","-90.11549","Prairie Du Rocher","IL","Illinois","TRUE","","1197","7.2","17157","Randolph","{""17157"": ""80.67"", ""17133"": ""19.33""}","Randolph|Monroe","17157|17133","FALSE","FALSE","America/Chicago"
-"62278","38.20794","-89.99259","Red Bud","IL","Illinois","TRUE","","6426","24.2","17157","Randolph","{""17157"": ""78.31"", ""17133"": ""21.69""}","Randolph|Monroe","17157|17133","FALSE","FALSE","America/Chicago"
-"62279","38.15121","-90.13541","Renault","IL","Illinois","TRUE","","0","0.0","17133","Monroe","{""17133"": ""100""}","Monroe","17133","FALSE","FALSE","America/Chicago"
-"62280","37.83505","-89.65966","Rockwood","IL","Illinois","TRUE","","550","4.0","17157","Randolph","{""17157"": ""56.76"", ""17077"": ""43.24""}","Randolph|Jackson","17157|17077","FALSE","FALSE","America/Chicago"
-"62281","38.70442","-89.78181","Saint Jacob","IL","Illinois","TRUE","","2856","32.6","17119","Madison","{""17119"": ""100""}","Madison","17119","FALSE","FALSE","America/Chicago"
-"62282","38.36317","-89.71268","Saint Libory","IL","Illinois","TRUE","","389","147.4","17163","St. Clair","{""17163"": ""100""}","St. Clair","17163","FALSE","FALSE","America/Chicago"
-"62284","38.87655","-89.31304","Smithboro","IL","Illinois","TRUE","","574","7.9","17005","Bond","{""17005"": ""100""}","Bond","17005","FALSE","FALSE","America/Chicago"
-"62285","38.38835","-90.00773","Smithton","IL","Illinois","TRUE","","4510","106.4","17163","St. Clair","{""17163"": ""100""}","St. Clair","17163","FALSE","FALSE","America/Chicago"
-"62286","38.11832","-89.7144","Sparta","IL","Illinois","TRUE","","6230","22.2","17157","Randolph","{""17157"": ""100""}","Randolph","17157","FALSE","FALSE","America/Chicago"
-"62288","37.98825","-89.68559","Steeleville","IL","Illinois","TRUE","","2891","29.4","17157","Randolph","{""17157"": ""100""}","Randolph","17157","FALSE","FALSE","America/Chicago"
-"62289","38.59694","-89.75153","Summerfield","IL","Illinois","TRUE","","330","617.2","17163","St. Clair","{""17163"": ""100""}","St. Clair","17163","FALSE","FALSE","America/Chicago"
-"62292","38.21265","-89.6801","Tilden","IL","Illinois","TRUE","","895","235.8","17157","Randolph","{""17157"": ""100""}","Randolph","17157","FALSE","FALSE","America/Chicago"
-"62293","38.61897","-89.69751","Trenton","IL","Illinois","TRUE","","4437","28.8","17027","Clinton","{""17027"": ""81.82"", ""17163"": ""9.81"", ""17119"": ""8.36""}","Clinton|St. Clair|Madison","17027|17163|17119","FALSE","FALSE","America/Chicago"
-"62294","38.70281","-89.87117","Troy","IL","Illinois","TRUE","","14156","177.3","17119","Madison","{""17119"": ""99.31"", ""17163"": ""0.69""}","Madison|St. Clair","17119|17163","FALSE","FALSE","America/Chicago"
-"62295","38.27929","-90.31336","Valmeyer","IL","Illinois","TRUE","","1493","8.5","17133","Monroe","{""17133"": ""100""}","Monroe","17133","FALSE","FALSE","America/Chicago"
-"62297","38.04983","-89.81313","Walsh","IL","Illinois","TRUE","","452","7.3","17157","Randolph","{""17157"": ""100""}","Randolph","17157","FALSE","FALSE","America/Chicago"
-"62298","38.31087","-90.15224","Waterloo","IL","Illinois","TRUE","","16826","45.0","17133","Monroe","{""17133"": ""96.32"", ""17163"": ""3.68""}","Monroe|St. Clair","17133|17163","FALSE","FALSE","America/Chicago"
-"62301","39.93159","-91.3866","Quincy","IL","Illinois","TRUE","","32350","1103.3","17001","Adams","{""17001"": ""100""}","Adams","17001","FALSE","FALSE","America/Chicago"
-"62305","39.92982","-91.3459","Quincy","IL","Illinois","TRUE","","19081","53.2","17001","Adams","{""17001"": ""100""}","Adams","17001","FALSE","FALSE","America/Chicago"
-"62311","40.22198","-90.91774","Augusta","IL","Illinois","TRUE","","701","5.3","17067","Hancock","{""17067"": ""86.74"", ""17169"": ""9.88"", ""17001"": ""3.37""}","Hancock|Schuyler|Adams","17067|17169|17001","FALSE","FALSE","America/Chicago"
-"62312","39.70915","-91.02783","Barry","IL","Illinois","TRUE","","1951","8.2","17149","Pike","{""17149"": ""89.59"", ""17001"": ""10.41""}","Pike|Adams","17149|17001","FALSE","FALSE","America/Chicago"
-"62313","40.31958","-91.22604","Basco","IL","Illinois","TRUE","","372","3.4","17067","Hancock","{""17067"": ""100""}","Hancock","17067","FALSE","FALSE","America/Chicago"
-"62314","39.77064","-90.8903","Baylis","IL","Illinois","TRUE","","479","2.6","17149","Pike","{""17149"": ""88.22"", ""17001"": ""11.78""}","Pike|Adams","17149|17001","FALSE","FALSE","America/Chicago"
-"62316","40.23633","-91.055","Bowen","IL","Illinois","TRUE","","662","6.2","17067","Hancock","{""17067"": ""99.7"", ""17001"": ""0.3""}","Hancock|Adams","17067|17001","FALSE","FALSE","America/Chicago"
-"62319","40.15249","-90.73124","Camden","IL","Illinois","TRUE","","219","2.1","17169","Schuyler","{""17169"": ""100""}","Schuyler","17169","FALSE","FALSE","America/Chicago"
-"62320","40.02073","-91.08045","Camp Point","IL","Illinois","TRUE","","2494","11.1","17001","Adams","{""17001"": ""100""}","Adams","17001","FALSE","FALSE","America/Chicago"
-"62321","40.4085","-91.10393","Carthage","IL","Illinois","TRUE","","3806","8.8","17067","Hancock","{""17067"": ""100""}","Hancock","17067","FALSE","FALSE","America/Chicago"
-"62323","39.81233","-90.68554","Chambersburg","IL","Illinois","TRUE","","241","2.2","17149","Pike","{""17149"": ""97.24"", ""17009"": ""2.76""}","Pike|Brown","17149|17009","FALSE","FALSE","America/Chicago"
-"62324","39.99244","-90.95898","Clayton","IL","Illinois","TRUE","","1112","4.9","17001","Adams","{""17001"": ""97.87"", ""17009"": ""2.13""}","Adams|Brown","17001|17009","FALSE","FALSE","America/Chicago"
-"62325","40.05125","-91.16603","Coatsburg","IL","Illinois","TRUE","","501","12.3","17001","Adams","{""17001"": ""100""}","Adams","17001","FALSE","FALSE","America/Chicago"
-"62326","40.41725","-90.81333","Colchester","IL","Illinois","TRUE","","2510","12.8","17109","McDonough","{""17109"": ""98.87"", ""17067"": ""1.13""}","McDonough|Hancock","17109|17067","FALSE","FALSE","America/Chicago"
-"62330","40.57204","-91.12552","Dallas City","IL","Illinois","TRUE","","1786","8.5","17067","Hancock","{""17067"": ""86.83"", ""17071"": ""13.17""}","Hancock|Henderson","17067|17071","FALSE","FALSE","America/Chicago"
-"62334","40.3879","-91.24059","Elvaston","IL","Illinois","TRUE","","167","28.8","17067","Hancock","{""17067"": ""100""}","Hancock","17067","FALSE","FALSE","America/Chicago"
-"62336","40.46814","-91.17146","Ferris","IL","Illinois","TRUE","","21","137.3","17067","Hancock","{""17067"": ""100""}","Hancock","17067","FALSE","FALSE","America/Chicago"
-"62338","39.99139","-91.23959","Fowler","IL","Illinois","TRUE","","1401","14.8","17001","Adams","{""17001"": ""100""}","Adams","17001","FALSE","FALSE","America/Chicago"
-"62339","40.13164","-91.04115","Golden","IL","Illinois","TRUE","","829","9.8","17001","Adams","{""17001"": ""100""}","Adams","17001","FALSE","FALSE","America/Chicago"
-"62340","39.72895","-90.72485","Griggsville","IL","Illinois","TRUE","","1906","8.1","17149","Pike","{""17149"": ""100""}","Pike","17149","FALSE","FALSE","America/Chicago"
-"62341","40.42574","-91.3028","Hamilton","IL","Illinois","TRUE","","3425","28.5","17067","Hancock","{""17067"": ""100""}","Hancock","17067","FALSE","FALSE","America/Chicago"
-"62343","39.70301","-91.24229","Hull","IL","Illinois","TRUE","","860","4.4","17149","Pike","{""17149"": ""94.52"", ""17001"": ""5.48""}","Pike|Adams","17149|17001","FALSE","FALSE","America/Chicago"
-"62344","40.16888","-90.83103","Huntsville","IL","Illinois","TRUE","","5","0.1","17169","Schuyler","{""17169"": ""100""}","Schuyler","17169","FALSE","FALSE","America/Chicago"
-"62345","39.70498","-91.12951","Kinderhook","IL","Illinois","TRUE","","382","6.8","17149","Pike","{""17149"": ""100""}","Pike","17149","FALSE","FALSE","America/Chicago"
-"62346","40.14813","-90.94751","La Prairie","IL","Illinois","TRUE","","160","1.8","17001","Adams","{""17001"": ""78.65"", ""17169"": ""21.35""}","Adams|Schuyler","17001|17169","FALSE","FALSE","America/Chicago"
-"62347","39.86596","-91.08897","Liberty","IL","Illinois","TRUE","","1992","6.4","17001","Adams","{""17001"": ""100""}","Adams","17001","FALSE","FALSE","America/Chicago"
-"62348","40.18759","-91.36729","Lima","IL","Illinois","TRUE","","155","33.2","17001","Adams","{""17001"": ""100""}","Adams","17001","FALSE","FALSE","America/Chicago"
-"62349","40.1675","-91.2008","Loraine","IL","Illinois","TRUE","","695","6.1","17001","Adams","{""17001"": ""99.69"", ""17067"": ""0.31""}","Adams|Hancock","17001|17067","FALSE","FALSE","America/Chicago"
-"62351","40.11574","-91.26763","Mendon","IL","Illinois","TRUE","","1708","8.9","17001","Adams","{""17001"": ""94.4"", ""17067"": ""5.6""}","Adams|Hancock","17001|17067","FALSE","FALSE","America/Chicago"
-"62352","39.56461","-90.64984","Milton","IL","Illinois","TRUE","","289","289.3","17149","Pike","{""17149"": ""100""}","Pike","17149","FALSE","FALSE","America/Chicago"
-"62353","39.97253","-90.75829","Mount Sterling","IL","Illinois","TRUE","","5224","10.8","17009","Brown","{""17009"": ""99.96"", ""17169"": ""0.04""}","Brown|Schuyler","17009|17169","FALSE","FALSE","America/Chicago"
-"62354","40.52599","-91.33178","Nauvoo","IL","Illinois","TRUE","","1484","15.6","17067","Hancock","{""17067"": ""100""}","Hancock","17067","FALSE","FALSE","America/Chicago"
-"62355","39.41022","-90.77649","Nebo","IL","Illinois","TRUE","","745","3.5","17149","Pike","{""17149"": ""75.73"", ""17013"": ""24.27""}","Pike|Calhoun","17149|17013","FALSE","FALSE","America/Chicago"
-"62356","39.60143","-91.08577","New Canton","IL","Illinois","TRUE","","402","2.7","17149","Pike","{""17149"": ""100""}","Pike","17149","FALSE","FALSE","America/Chicago"
-"62357","39.68493","-90.86744","New Salem","IL","Illinois","TRUE","","462","8.9","17149","Pike","{""17149"": ""100""}","Pike","17149","FALSE","FALSE","America/Chicago"
-"62358","40.58205","-91.25716","Niota","IL","Illinois","TRUE","","779","7.0","17067","Hancock","{""17067"": ""100""}","Hancock","17067","FALSE","FALSE","America/Chicago"
-"62359","40.0327","-91.20473","Paloma","IL","Illinois","TRUE","","159","15.3","17001","Adams","{""17001"": ""100""}","Adams","17001","FALSE","FALSE","America/Chicago"
-"62360","39.8163","-91.26344","Payson","IL","Illinois","TRUE","","1651","17.8","17001","Adams","{""17001"": ""100""}","Adams","17001","FALSE","FALSE","America/Chicago"
-"62361","39.48316","-90.64629","Pearl","IL","Illinois","TRUE","","362","2.3","17149","Pike","{""17149"": ""100""}","Pike","17149","FALSE","FALSE","America/Chicago"
-"62362","39.78224","-90.7472","Perry","IL","Illinois","TRUE","","303","298.7","17149","Pike","{""17149"": ""100""}","Pike","17149","FALSE","FALSE","America/Chicago"
-"62363","39.59361","-90.77424","Pittsfield","IL","Illinois","TRUE","","5694","13.9","17149","Pike","{""17149"": ""100""}","Pike","17149","FALSE","FALSE","America/Chicago"
-"62365","39.79639","-91.1594","Plainville","IL","Illinois","TRUE","","477","6.6","17001","Adams","{""17001"": ""100""}","Adams","17001","FALSE","FALSE","America/Chicago"
-"62366","39.45999","-90.89429","Pleasant Hill","IL","Illinois","TRUE","","1637","8.9","17149","Pike","{""17149"": ""100"", ""17013"": ""0""}","Pike|Calhoun","17149|17013","FALSE","FALSE","America/Chicago"
-"62367","40.30522","-90.87607","Plymouth","IL","Illinois","TRUE","","1021","3.5","17067","Hancock","{""17067"": ""52.04"", ""17109"": ""32.79"", ""17169"": ""15.17""}","Hancock|McDonough|Schuyler","17067|17109|17169","FALSE","FALSE","America/Chicago"
-"62370","39.52086","-91.00195","Rockport","IL","Illinois","TRUE","","407","2.5","17149","Pike","{""17149"": ""100""}","Pike","17149","FALSE","FALSE","America/Chicago"
-"62373","40.24216","-91.34172","Sutter","IL","Illinois","TRUE","","203","2.2","17067","Hancock","{""17067"": ""100""}","Hancock","17067","FALSE","FALSE","America/Chicago"
-"62374","40.4089","-90.91204","Tennessee","IL","Illinois","TRUE","","337","5.7","17109","McDonough","{""17109"": ""70.81"", ""17067"": ""29.19""}","McDonough|Hancock","17109|17067","FALSE","FALSE","America/Chicago"
-"62375","40.00414","-90.87125","Timewell","IL","Illinois","TRUE","","335","2.9","17009","Brown","{""17009"": ""100""}","Brown","17009","FALSE","FALSE","America/Chicago"
-"62376","40.11507","-91.42049","Ursa","IL","Illinois","TRUE","","1110","5.7","17001","Adams","{""17001"": ""100""}","Adams","17001","FALSE","FALSE","America/Chicago"
-"62378","39.89729","-90.63512","Versailles","IL","Illinois","TRUE","","1047","6.0","17009","Brown","{""17009"": ""100""}","Brown","17009","FALSE","FALSE","America/Chicago"
-"62379","40.28676","-91.40012","Warsaw","IL","Illinois","TRUE","","1947","7.9","17067","Hancock","{""17067"": ""99.32"", ""17001"": ""0.68""}","Hancock|Adams","17067|17001","FALSE","FALSE","America/Chicago"
-"62380","40.24003","-91.19087","West Point","IL","Illinois","TRUE","","552","5.0","17067","Hancock","{""17067"": ""100""}","Hancock","17067","FALSE","FALSE","America/Chicago"
-"62401","39.11952","-88.56418","Effingham","IL","Illinois","TRUE","","18886","70.0","17049","Effingham","{""17049"": ""99.6"", ""17173"": ""0.4""}","Effingham|Shelby","17049|17173","FALSE","FALSE","America/Chicago"
-"62410","38.53253","-87.72653","Allendale","IL","Illinois","TRUE","","1377","14.2","17185","Wabash","{""17185"": ""100""}","Wabash","17185","FALSE","FALSE","America/Chicago"
-"62411","39.07062","-88.72964","Altamont","IL","Illinois","TRUE","","4145","18.6","17049","Effingham","{""17049"": ""99.35"", ""17051"": ""0.65""}","Effingham|Fayette","17049|17051","FALSE","FALSE","America/Chicago"
-"62413","39.13963","-87.83882","Annapolis","IL","Illinois","TRUE","","277","3.4","17033","Crawford","{""17033"": ""94.3"", ""17023"": ""5.7""}","Crawford|Clark","17033|17023","FALSE","FALSE","America/Chicago"
-"62414","39.17067","-88.83047","Beecher City","IL","Illinois","TRUE","","1888","9.9","17051","Fayette","{""17051"": ""44.17"", ""17049"": ""42.58"", ""17173"": ""13.26""}","Fayette|Effingham|Shelby","17051|17049|17173","FALSE","FALSE","America/Chicago"
-"62417","38.70667","-87.76565","Bridgeport","IL","Illinois","TRUE","","2920","31.2","17101","Lawrence","{""17101"": ""100""}","Lawrence","17101","FALSE","FALSE","America/Chicago"
-"62418","39.01845","-88.96952","Brownstown","IL","Illinois","TRUE","","2180","9.1","17051","Fayette","{""17051"": ""100""}","Fayette","17051","FALSE","FALSE","America/Chicago"
-"62419","38.62003","-87.98542","Calhoun","IL","Illinois","TRUE","","185","3.1","17159","Richland","{""17159"": ""100""}","Richland","17159","FALSE","FALSE","America/Chicago"
-"62420","39.29041","-88.00199","Casey","IL","Illinois","TRUE","","4675","14.7","17023","Clark","{""17023"": ""88.91"", ""17035"": ""9.39"", ""17029"": ""1.43"", ""17079"": ""0.27""}","Clark|Cumberland|Coles|Jasper","17023|17035|17029|17079","FALSE","FALSE","America/Chicago"
-"62421","38.7536","-87.94355","Claremont","IL","Illinois","TRUE","","593","4.3","17159","Richland","{""17159"": ""98.71"", ""17033"": ""1.29""}","Richland|Crawford","17159|17033","FALSE","FALSE","America/Chicago"
-"62422","39.23883","-88.88323","Cowden","IL","Illinois","TRUE","","1014","9.8","17173","Shelby","{""17173"": ""88.58"", ""17051"": ""11.42""}","Shelby|Fayette","17173|17051","FALSE","FALSE","America/Chicago"
-"62423","39.46168","-87.57963","Dennison","IL","Illinois","TRUE","","642","10.7","17023","Clark","{""17023"": ""84.94"", ""17045"": ""15.06""}","Clark|Edgar","17023|17045","FALSE","FALSE","America/Chicago"
-"62424","38.98978","-88.42215","Dieterich","IL","Illinois","TRUE","","2421","10.8","17049","Effingham","{""17049"": ""96.8"", ""17079"": ""3.2""}","Effingham|Jasper","17049|17079","FALSE","FALSE","America/Chicago"
-"62425","38.82852","-88.09214","Dundas","IL","Illinois","TRUE","","431","4.0","17159","Richland","{""17159"": ""93.99"", ""17079"": ""6.01""}","Richland|Jasper","17159|17079","FALSE","FALSE","America/Chicago"
-"62426","38.90212","-88.66452","Edgewood","IL","Illinois","TRUE","","891","7.3","17049","Effingham","{""17049"": ""56.68"", ""17025"": ""27.56"", ""17051"": ""15.76""}","Effingham|Clay|Fayette","17049|17025|17051","FALSE","FALSE","America/Chicago"
-"62427","38.8721","-87.65938","Flat Rock","IL","Illinois","TRUE","","1781","7.7","17033","Crawford","{""17033"": ""82.37"", ""17101"": ""17.63""}","Crawford|Lawrence","17033|17101","FALSE","FALSE","America/Chicago"
-"62428","39.26364","-88.13124","Greenup","IL","Illinois","TRUE","","2915","11.7","17035","Cumberland","{""17035"": ""100""}","Cumberland","17035","FALSE","FALSE","America/Chicago"
-"62431","39.22885","-88.99106","Herrick","IL","Illinois","TRUE","","1030","7.2","17173","Shelby","{""17173"": ""64.69"", ""17051"": ""35.31""}","Shelby|Fayette","17173|17051","FALSE","FALSE","America/Chicago"
-"62432","39.13551","-88.13981","Hidalgo","IL","Illinois","TRUE","","521","5.1","17079","Jasper","{""17079"": ""100""}","Jasper","17079","FALSE","FALSE","America/Chicago"
-"62433","39.11195","-87.70349","Hutsonville","IL","Illinois","TRUE","","994","11.9","17033","Crawford","{""17033"": ""100""}","Crawford","17033","FALSE","FALSE","America/Chicago"
-"62434","38.84323","-88.3251","Ingraham","IL","Illinois","TRUE","","365","5.3","17025","Clay","{""17025"": ""69.39"", ""17079"": ""30.61""}","Clay|Jasper","17025|17079","FALSE","FALSE","America/Chicago"
-"62436","39.17984","-88.2525","Jewett","IL","Illinois","TRUE","","713","12.3","17035","Cumberland","{""17035"": ""77.76"", ""17079"": ""22.24""}","Cumberland|Jasper","17035|17079","FALSE","FALSE","America/Chicago"
-"62438","39.32114","-88.86922","Lakewood","IL","Illinois","TRUE","","334","4.9","17173","Shelby","{""17173"": ""100""}","Shelby","17173","FALSE","FALSE","America/Chicago"
-"62439","38.74656","-87.63528","Lawrenceville","IL","Illinois","TRUE","","7107","19.5","17101","Lawrence","{""17101"": ""100""}","Lawrence","17101","FALSE","FALSE","America/Chicago"
-"62440","39.3955","-88.26791","Lerna","IL","Illinois","TRUE","","1288","12.9","17029","Coles","{""17029"": ""82.22"", ""17035"": ""17.78""}","Coles|Cumberland","17029|17035","FALSE","FALSE","America/Chicago"
-"62441","39.39759","-87.69759","Marshall","IL","Illinois","TRUE","","6707","14.9","17023","Clark","{""17023"": ""97.4"", ""17045"": ""2.6""}","Clark|Edgar","17023|17045","FALSE","FALSE","America/Chicago"
-"62442","39.31187","-87.85503","Martinsville","IL","Illinois","TRUE","","2643","7.2","17023","Clark","{""17023"": ""98.76"", ""17033"": ""1.24""}","Clark|Crawford","17023|17033","FALSE","FALSE","America/Chicago"
-"62443","38.9541","-88.62801","Mason","IL","Illinois","TRUE","","1538","8.1","17049","Effingham","{""17049"": ""89.71"", ""17025"": ""10.29""}","Effingham|Clay","17049|17025","FALSE","FALSE","America/Chicago"
-"62444","39.27655","-88.7393","Mode","IL","Illinois","TRUE","","370","4.9","17173","Shelby","{""17173"": ""100""}","Shelby","17173","FALSE","FALSE","America/Chicago"
-"62445","39.16802","-88.32119","Montrose","IL","Illinois","TRUE","","1278","10.5","17035","Cumberland","{""17035"": ""45.87"", ""17079"": ""28.67"", ""17049"": ""25.47""}","Cumberland|Jasper|Effingham","17035|17079|17049","FALSE","FALSE","America/Chicago"
-"62446","38.49746","-88.21792","Mount Erie","IL","Illinois","TRUE","","372","2.4","17191","Wayne","{""17191"": ""100""}","Wayne","17191","FALSE","FALSE","America/Chicago"
-"62447","39.31548","-88.44446","Neoga","IL","Illinois","TRUE","","3366","21.7","17035","Cumberland","{""17035"": ""82.29"", ""17173"": ""17.45"", ""17029"": ""0.26""}","Cumberland|Shelby|Coles","17035|17173|17029","FALSE","FALSE","America/Chicago"
-"62448","38.96893","-88.18257","Newton","IL","Illinois","TRUE","","5383","10.2","17079","Jasper","{""17079"": ""97.34"", ""17159"": ""1.8"", ""17025"": ""0.86""}","Jasper|Richland|Clay","17079|17159|17025","FALSE","FALSE","America/Chicago"
-"62449","39.00624","-87.91067","Oblong","IL","Illinois","TRUE","","2963","9.4","17033","Crawford","{""17033"": ""95.02"", ""17079"": ""4.6"", ""17023"": ""0.38""}","Crawford|Jasper|Clark","17033|17079|17023","FALSE","FALSE","America/Chicago"
-"62450","38.71236","-88.09042","Olney","IL","Illinois","TRUE","","12216","31.0","17159","Richland","{""17159"": ""99.94"", ""17191"": ""0.06""}","Richland|Wayne","17159|17191","FALSE","FALSE","America/Chicago"
-"62451","38.99256","-87.60615","Palestine","IL","Illinois","TRUE","","1958","12.1","17033","Crawford","{""17033"": ""100""}","Crawford","17033","FALSE","FALSE","America/Chicago"
-"62452","38.58621","-88.01726","Parkersburg","IL","Illinois","TRUE","","293","5.6","17159","Richland","{""17159"": ""100""}","Richland","17159","FALSE","FALSE","America/Chicago"
-"62454","38.99864","-87.75803","Robinson","IL","Illinois","TRUE","","11166","35.0","17033","Crawford","{""17033"": ""100""}","Crawford","17033","FALSE","FALSE","America/Chicago"
-"62458","39.02471","-88.85146","Saint Elmo","IL","Illinois","TRUE","","2077","14.1","17051","Fayette","{""17051"": ""96.72"", ""17049"": ""3.28""}","Fayette|Effingham","17051|17049","FALSE","FALSE","America/Chicago"
-"62459","38.93002","-88.02779","Sainte Marie","IL","Illinois","TRUE","","344","121.7","17079","Jasper","{""17079"": ""100""}","Jasper","17079","FALSE","FALSE","America/Chicago"
-"62460","38.60842","-87.69831","Saint Francisville","IL","Illinois","TRUE","","1297","10.8","17101","Lawrence","{""17101"": ""97.97"", ""17185"": ""2.03""}","Lawrence|Wabash","17101|17185","FALSE","FALSE","America/Chicago"
-"62461","39.19732","-88.67571","Shumway","IL","Illinois","TRUE","","724","7.0","17049","Effingham","{""17049"": ""89.7"", ""17173"": ""10.3""}","Effingham|Shelby","17049|17173","FALSE","FALSE","America/Chicago"
-"62462","39.23471","-88.46387","Sigel","IL","Illinois","TRUE","","942","9.0","17173","Shelby","{""17173"": ""63.01"", ""17035"": ""36.99""}","Shelby|Cumberland","17173|17035","FALSE","FALSE","America/Chicago"
-"62463","39.27666","-88.60536","Stewardson","IL","Illinois","TRUE","","1230","10.2","17173","Shelby","{""17173"": ""100""}","Shelby","17173","FALSE","FALSE","America/Chicago"
-"62465","39.34939","-88.64047","Strasburg","IL","Illinois","TRUE","","960","10.0","17173","Shelby","{""17173"": ""100""}","Shelby","17173","FALSE","FALSE","America/Chicago"
-"62466","38.72579","-87.84971","Sumner","IL","Illinois","TRUE","","4605","12.5","17101","Lawrence","{""17101"": ""97.5"", ""17033"": ""1.79"", ""17159"": ""0.7""}","Lawrence|Crawford|Richland","17101|17033|17159","FALSE","FALSE","America/Chicago"
-"62467","39.1312","-88.43499","Teutopolis","IL","Illinois","TRUE","","4259","27.9","17049","Effingham","{""17049"": ""90.56"", ""17035"": ""7.03"", ""17079"": ""2.41""}","Effingham|Cumberland|Jasper","17049|17035|17079","FALSE","FALSE","America/Chicago"
-"62468","39.27744","-88.27033","Toledo","IL","Illinois","TRUE","","2492","13.6","17035","Cumberland","{""17035"": ""100""}","Cumberland","17035","FALSE","FALSE","America/Chicago"
-"62469","39.34861","-88.34055","Trilla","IL","Illinois","TRUE","","517","8.5","17035","Cumberland","{""17035"": ""81.38"", ""17029"": ""18.62""}","Cumberland|Coles","17035|17029","FALSE","FALSE","America/Chicago"
-"62471","38.9546","-89.13061","Vandalia","IL","Illinois","TRUE","","10306","29.1","17051","Fayette","{""17051"": ""100""}","Fayette","17051","FALSE","FALSE","America/Chicago"
-"62473","39.02035","-88.56542","Watson","IL","Illinois","TRUE","","1262","22.0","17049","Effingham","{""17049"": ""100""}","Effingham","17049","FALSE","FALSE","America/Chicago"
-"62474","39.43664","-87.99652","Westfield","IL","Illinois","TRUE","","897","9.5","17023","Clark","{""17023"": ""85.61"", ""17029"": ""14.39""}","Clark|Coles","17023|17029","FALSE","FALSE","America/Chicago"
-"62475","38.88697","-88.0515","West Liberty","IL","Illinois","TRUE","","503","6.4","17079","Jasper","{""17079"": ""100""}","Jasper","17079","FALSE","FALSE","America/Chicago"
-"62476","38.534","-88.00928","West Salem","IL","Illinois","TRUE","","1533","7.9","17047","Edwards","{""17047"": ""87.77"", ""17185"": ""12.23""}","Edwards|Wabash","17047|17185","FALSE","FALSE","America/Chicago"
-"62477","39.23695","-87.66291","West Union","IL","Illinois","TRUE","","732","4.5","17023","Clark","{""17023"": ""100""}","Clark","17023","FALSE","FALSE","America/Chicago"
-"62478","39.17838","-87.74268","West York","IL","Illinois","TRUE","","409","5.4","17033","Crawford","{""17033"": ""63.57"", ""17023"": ""36.43""}","Crawford|Clark","17033|17023","FALSE","FALSE","America/Chicago"
-"62479","39.03774","-88.31092","Wheeler","IL","Illinois","TRUE","","1027","7.5","17079","Jasper","{""17079"": ""100""}","Jasper","17079","FALSE","FALSE","America/Chicago"
-"62480","38.99856","-88.00156","Willow Hill","IL","Illinois","TRUE","","485","3.3","17079","Jasper","{""17079"": ""100""}","Jasper","17079","FALSE","FALSE","America/Chicago"
-"62481","39.12718","-88.022","Yale","IL","Illinois","TRUE","","485","5.2","17079","Jasper","{""17079"": ""95.85"", ""17035"": ""4.15""}","Jasper|Cumberland","17079|17035","FALSE","FALSE","America/Chicago"
-"62501","39.93397","-88.80518","Argenta","IL","Illinois","TRUE","","2585","12.6","17115","Macon","{""17115"": ""100""}","Macon","17115","FALSE","FALSE","America/Chicago"
-"62510","39.53149","-89.02694","Assumption","IL","Illinois","TRUE","","1496","7.5","17021","Christian","{""17021"": ""86.1"", ""17173"": ""13.9""}","Christian|Shelby","17021|17173","FALSE","FALSE","America/Chicago"
-"62512","40.14496","-89.20355","Beason","IL","Illinois","TRUE","","456","3.8","17107","Logan","{""17107"": ""93.8"", ""17039"": ""6.2""}","Logan|De Witt","17107|17039","FALSE","FALSE","America/Chicago"
-"62513","39.72201","-89.15082","Blue Mound","IL","Illinois","TRUE","","1724","9.6","17115","Macon","{""17115"": ""86.41"", ""17021"": ""13.59""}","Macon|Christian","17115|17021","FALSE","FALSE","America/Chicago"
-"62514","39.7625","-89.05069","Boody","IL","Illinois","TRUE","","305","105.5","17115","Macon","{""17115"": ""100""}","Macon","17115","FALSE","FALSE","America/Chicago"
-"62515","39.85839","-89.3765","Buffalo","IL","Illinois","TRUE","","1164","7.1","17167","Sangamon","{""17167"": ""100""}","Sangamon","17167","FALSE","FALSE","America/Chicago"
-"62517","39.59127","-89.43097","Bulpitt","IL","Illinois","TRUE","","214","672.4","17021","Christian","{""17021"": ""100""}","Christian","17021","FALSE","FALSE","America/Chicago"
-"62518","40.05417","-89.19142","Chestnut","IL","Illinois","TRUE","","159","2.4","17107","Logan","{""17107"": ""100""}","Logan","17107","FALSE","FALSE","America/Chicago"
-"62519","39.92882","-89.39528","Cornland","IL","Illinois","TRUE","","90","23.1","17107","Logan","{""17107"": ""100""}","Logan","17107","FALSE","FALSE","America/Chicago"
-"62520","39.81802","-89.45598","Dawson","IL","Illinois","TRUE","","1576","27.9","17167","Sangamon","{""17167"": ""100""}","Sangamon","17167","FALSE","FALSE","America/Chicago"
-"62521","39.81509","-88.92533","Decatur","IL","Illinois","TRUE","","35261","203.4","17115","Macon","{""17115"": ""100""}","Macon","17115","FALSE","FALSE","America/Chicago"
-"62522","39.829","-89.05111","Decatur","IL","Illinois","TRUE","","15379","234.3","17115","Macon","{""17115"": ""100""}","Macon","17115","FALSE","FALSE","America/Chicago"
-"62523","39.84411","-88.9523","Decatur","IL","Illinois","TRUE","","1382","1113.0","17115","Macon","{""17115"": ""100""}","Macon","17115","FALSE","FALSE","America/Chicago"
-"62526","39.90152","-88.9879","Decatur","IL","Illinois","TRUE","","31544","197.5","17115","Macon","{""17115"": ""100""}","Macon","17115","FALSE","FALSE","America/Chicago"
-"62530","39.56174","-89.66136","Divernon","IL","Illinois","TRUE","","1356","18.5","17167","Sangamon","{""17167"": ""100""}","Sangamon","17167","FALSE","FALSE","America/Chicago"
-"62531","39.66695","-89.37662","Edinburg","IL","Illinois","TRUE","","1647","10.5","17021","Christian","{""17021"": ""100""}","Christian","17021","FALSE","FALSE","America/Chicago"
-"62532","39.76335","-88.98924","Elwin","IL","Illinois","TRUE","","70","12.9","17115","Macon","{""17115"": ""100""}","Macon","17115","FALSE","FALSE","America/Chicago"
-"62533","39.44419","-89.62231","Farmersville","IL","Illinois","TRUE","","776","6.2","17135","Montgomery","{""17135"": ""100""}","Montgomery","17135","FALSE","FALSE","America/Chicago"
-"62534","39.53445","-88.7986","Findlay","IL","Illinois","TRUE","","1307","8.5","17173","Shelby","{""17173"": ""98.67"", ""17139"": ""1.33""}","Shelby|Moultrie","17173|17139","FALSE","FALSE","America/Chicago"
-"62535","39.92473","-88.96896","Forsyth","IL","Illinois","TRUE","","3011","313.0","17115","Macon","{""17115"": ""100""}","Macon","17115","FALSE","FALSE","America/Chicago"
-"62536","39.63016","-89.65133","Glenarm","IL","Illinois","TRUE","","667","37.2","17167","Sangamon","{""17167"": ""100""}","Sangamon","17167","FALSE","FALSE","America/Chicago"
-"62537","39.85317","-89.09467","Harristown","IL","Illinois","TRUE","","80","33.2","17115","Macon","{""17115"": ""100""}","Macon","17115","FALSE","FALSE","America/Chicago"
-"62538","39.35641","-89.51993","Harvel","IL","Illinois","TRUE","","537","6.1","17135","Montgomery","{""17135"": ""74.6"", ""17021"": ""25.4""}","Montgomery|Christian","17135|17021","FALSE","FALSE","America/Chicago"
-"62539","39.86604","-89.25126","Illiopolis","IL","Illinois","TRUE","","1247","10.3","17167","Sangamon","{""17167"": ""95.8"", ""17115"": ""4.2""}","Sangamon|Macon","17167|17115","FALSE","FALSE","America/Chicago"
-"62540","39.58388","-89.41824","Kincaid","IL","Illinois","TRUE","","1549","290.1","17021","Christian","{""17021"": ""100""}","Christian","17021","FALSE","FALSE","America/Chicago"
-"62541","39.96541","-89.35509","Lake Fork","IL","Illinois","TRUE","","21","19.7","17107","Logan","{""17107"": ""100""}","Logan","17107","FALSE","FALSE","America/Chicago"
-"62543","39.97146","-89.15219","Latham","IL","Illinois","TRUE","","483","9.0","17107","Logan","{""17107"": ""93.33"", ""17115"": ""6.67""}","Logan|Macon","17107|17115","FALSE","FALSE","America/Chicago"
-"62544","39.70643","-88.9679","Macon","IL","Illinois","TRUE","","1677","9.5","17115","Macon","{""17115"": ""100""}","Macon","17115","FALSE","FALSE","America/Chicago"
-"62545","39.76184","-89.38942","Mechanicsburg","IL","Illinois","TRUE","","1158","16.1","17167","Sangamon","{""17167"": ""76.65"", ""17021"": ""23.35""}","Sangamon|Christian","17167|17021","FALSE","FALSE","America/Chicago"
-"62546","39.43185","-89.43981","Morrisonville","IL","Illinois","TRUE","","1740","5.9","17021","Christian","{""17021"": ""96.13"", ""17135"": ""3.87""}","Christian|Montgomery","17021|17135","FALSE","FALSE","America/Chicago"
-"62547","39.76896","-89.24887","Mount Auburn","IL","Illinois","TRUE","","992","9.1","17021","Christian","{""17021"": ""97.39"", ""17115"": ""2.61""}","Christian|Macon","17021|17115","FALSE","FALSE","America/Chicago"
-"62548","39.97847","-89.28227","Mount Pulaski","IL","Illinois","TRUE","","2443","10.6","17107","Logan","{""17107"": ""99.91"", ""17167"": ""0.09""}","Logan|Sangamon","17107|17167","FALSE","FALSE","America/Chicago"
-"62549","39.77049","-88.86586","Mt Zion","IL","Illinois","TRUE","","6354","309.6","17115","Macon","{""17115"": ""100""}","Macon","17115","FALSE","FALSE","America/Chicago"
-"62550","39.61145","-88.99191","Moweaqua","IL","Illinois","TRUE","","2790","12.1","17173","Shelby","{""17173"": ""84.56"", ""17021"": ""13.87"", ""17115"": ""1.57""}","Shelby|Christian|Macon","17173|17021|17115","FALSE","FALSE","America/Chicago"
-"62551","39.8532","-89.15766","Niantic","IL","Illinois","TRUE","","743","10.7","17115","Macon","{""17115"": ""100""}","Macon","17115","FALSE","FALSE","America/Chicago"
-"62553","39.26621","-89.10717","Oconee","IL","Illinois","TRUE","","528","5.7","17173","Shelby","{""17173"": ""86.73"", ""17135"": ""13.27""}","Shelby|Montgomery","17173|17135","FALSE","FALSE","America/Chicago"
-"62554","39.94902","-88.87146","Oreana","IL","Illinois","TRUE","","1290","27.0","17115","Macon","{""17115"": ""100""}","Macon","17115","FALSE","FALSE","America/Chicago"
-"62555","39.4663","-89.22067","Owaneco","IL","Illinois","TRUE","","456","5.0","17021","Christian","{""17021"": ""100""}","Christian","17021","FALSE","FALSE","America/Chicago"
-"62556","39.46992","-89.37329","Palmer","IL","Illinois","TRUE","","344","6.2","17021","Christian","{""17021"": ""100""}","Christian","17021","FALSE","FALSE","America/Chicago"
-"62557","39.39705","-89.10482","Pana","IL","Illinois","TRUE","","7127","22.1","17021","Christian","{""17021"": ""90.67"", ""17173"": ""8.57"", ""17135"": ""0.76""}","Christian|Shelby|Montgomery","17021|17173|17135","FALSE","FALSE","America/Chicago"
-"62558","39.58972","-89.54035","Pawnee","IL","Illinois","TRUE","","3341","14.0","17167","Sangamon","{""17167"": ""94.9"", ""17021"": ""4.32"", ""17135"": ""0.78""}","Sangamon|Christian|Montgomery","17167|17021|17135","FALSE","FALSE","America/Chicago"
-"62560","39.30222","-89.60112","Raymond","IL","Illinois","TRUE","","1355","8.2","17135","Montgomery","{""17135"": ""98.01"", ""17117"": ""1.99""}","Montgomery|Macoupin","17135|17117","FALSE","FALSE","America/Chicago"
-"62561","39.86626","-89.50866","Riverton","IL","Illinois","TRUE","","5405","78.6","17167","Sangamon","{""17167"": ""100""}","Sangamon","17167","FALSE","FALSE","America/Chicago"
-"62563","39.71567","-89.503","Rochester","IL","Illinois","TRUE","","5567","37.3","17167","Sangamon","{""17167"": ""99.02"", ""17021"": ""0.98""}","Sangamon|Christian","17167|17021","FALSE","FALSE","America/Chicago"
-"62565","39.4113","-88.80426","Shelbyville","IL","Illinois","TRUE","","7046","22.4","17173","Shelby","{""17173"": ""100""}","Shelby","17173","FALSE","FALSE","America/Chicago"
-"62567","39.64523","-89.18987","Stonington","IL","Illinois","TRUE","","1030","10.3","17021","Christian","{""17021"": ""100""}","Christian","17021","FALSE","FALSE","America/Chicago"
-"62568","39.56083","-89.29024","Taylorville","IL","Illinois","TRUE","","15612","47.9","17021","Christian","{""17021"": ""100""}","Christian","17021","FALSE","FALSE","America/Chicago"
-"62570","39.58849","-89.44825","Tovey","IL","Illinois","TRUE","","454","672.1","17021","Christian","{""17021"": ""100""}","Christian","17021","FALSE","FALSE","America/Chicago"
-"62571","39.38067","-88.96114","Tower Hill","IL","Illinois","TRUE","","1628","9.2","17173","Shelby","{""17173"": ""100""}","Shelby","17173","FALSE","FALSE","America/Chicago"
-"62572","39.36095","-89.70156","Waggoner","IL","Illinois","TRUE","","488","4.5","17135","Montgomery","{""17135"": ""62.46"", ""17117"": ""37.54""}","Montgomery|Macoupin","17135|17117","FALSE","FALSE","America/Chicago"
-"62573","39.94539","-89.07414","Warrensburg","IL","Illinois","TRUE","","1803","15.7","17115","Macon","{""17115"": ""100""}","Macon","17115","FALSE","FALSE","America/Chicago"
-"62601","39.74873","-90.04086","Alexander","IL","Illinois","TRUE","","293","2.5","17137","Morgan","{""17137"": ""100""}","Morgan","17137","FALSE","FALSE","America/Chicago"
-"62610","39.55883","-90.43489","Alsey","IL","Illinois","TRUE","","119","135.1","17171","Scott","{""17171"": ""100""}","Scott","17171","FALSE","FALSE","America/Chicago"
-"62611","39.8856","-90.39946","Arenzville","IL","Illinois","TRUE","","1108","5.8","17017","Cass","{""17017"": ""77.98"", ""17137"": ""22.02""}","Cass|Morgan","17017|17137","FALSE","FALSE","America/Chicago"
-"62612","39.88949","-90.06698","Ashland","IL","Illinois","TRUE","","1832","7.9","17017","Cass","{""17017"": ""81.83"", ""17137"": ""18.17""}","Cass|Morgan","17017|17137","FALSE","FALSE","America/Chicago"
-"62613","39.99177","-89.66836","Athens","IL","Illinois","TRUE","","3862","22.8","17129","Menard","{""17129"": ""98.48"", ""17167"": ""1.03"", ""17107"": ""0.49""}","Menard|Sangamon|Logan","17129|17167|17107","FALSE","FALSE","America/Chicago"
-"62615","39.58505","-89.75737","Auburn","IL","Illinois","TRUE","","5519","41.9","17167","Sangamon","{""17167"": ""100""}","Sangamon","17167","FALSE","FALSE","America/Chicago"
-"62617","40.1525","-90.17885","Bath","IL","Illinois","TRUE","","659","4.4","17125","Mason","{""17125"": ""100""}","Mason","17125","FALSE","FALSE","America/Chicago"
-"62618","39.98678","-90.40075","Beardstown","IL","Illinois","TRUE","","7238","32.6","17017","Cass","{""17017"": ""100""}","Cass","17017","FALSE","FALSE","America/Chicago"
-"62621","39.73137","-90.53018","Bluffs","IL","Illinois","TRUE","","1286","9.5","17171","Scott","{""17171"": ""98.21"", ""17137"": ""1.79""}","Scott|Morgan","17171|17137","FALSE","FALSE","America/Chicago"
-"62622","39.97814","-90.35343","Bluff Springs","IL","Illinois","TRUE","","42","8.7","17017","Cass","{""17017"": ""100""}","Cass","17017","FALSE","FALSE","America/Chicago"
-"62624","40.15442","-90.36199","Browning","IL","Illinois","TRUE","","427","4.7","17169","Schuyler","{""17169"": ""100""}","Schuyler","17169","FALSE","FALSE","America/Chicago"
-"62625","39.91029","-89.69584","Cantrall","IL","Illinois","TRUE","","759","13.0","17167","Sangamon","{""17167"": ""100""}","Sangamon","17167","FALSE","FALSE","America/Chicago"
-"62626","39.28334","-89.88404","Carlinville","IL","Illinois","TRUE","","7603","17.1","17117","Macoupin","{""17117"": ""100""}","Macoupin","17117","FALSE","FALSE","America/Chicago"
-"62627","40.05627","-90.12895","Chandlerville","IL","Illinois","TRUE","","910","3.9","17017","Cass","{""17017"": ""75.2"", ""17125"": ""24.8""}","Cass|Mason","17017|17125","FALSE","FALSE","America/Chicago"
-"62628","39.77945","-90.40324","Chapin","IL","Illinois","TRUE","","735","7.5","17137","Morgan","{""17137"": ""95.2"", ""17171"": ""4.8""}","Morgan|Scott","17137|17171","FALSE","FALSE","America/Chicago"
-"62629","39.67823","-89.71401","Chatham","IL","Illinois","TRUE","","14597","148.4","17167","Sangamon","{""17167"": ""100""}","Sangamon","17167","FALSE","FALSE","America/Chicago"
-"62630","39.26081","-90.07834","Chesterfield","IL","Illinois","TRUE","","430","4.1","17117","Macoupin","{""17117"": ""98.87"", ""17061"": ""1.13""}","Macoupin|Greene","17117|17061","FALSE","FALSE","America/Chicago"
-"62631","39.82436","-90.36127","Concord","IL","Illinois","TRUE","","261","7.2","17137","Morgan","{""17137"": ""100""}","Morgan","17137","FALSE","FALSE","America/Chicago"
-"62633","40.22644","-89.8768","Easton","IL","Illinois","TRUE","","562","3.1","17125","Mason","{""17125"": ""100""}","Mason","17125","FALSE","FALSE","America/Chicago"
-"62634","40.01313","-89.45198","Elkhart","IL","Illinois","TRUE","","843","5.8","17107","Logan","{""17107"": ""100""}","Logan","17107","FALSE","FALSE","America/Chicago"
-"62635","40.29671","-89.47141","Emden","IL","Illinois","TRUE","","666","6.6","17107","Logan","{""17107"": ""98.1"", ""17179"": ""1.9""}","Logan|Tazewell","17107|17179","FALSE","FALSE","America/Chicago"
-"62638","39.60535","-90.0818","Franklin","IL","Illinois","TRUE","","1242","7.1","17137","Morgan","{""17137"": ""98.8"", ""17117"": ""1.2""}","Morgan|Macoupin","17137|17117","FALSE","FALSE","America/Chicago"
-"62639","40.04263","-90.48803","Frederick","IL","Illinois","TRUE","","294","3.3","17169","Schuyler","{""17169"": ""100""}","Schuyler","17169","FALSE","FALSE","America/Chicago"
-"62640","39.4339","-89.80523","Girard","IL","Illinois","TRUE","","3668","18.6","17117","Macoupin","{""17117"": ""99.09"", ""17135"": ""0.91""}","Macoupin|Montgomery","17117|17135","FALSE","FALSE","America/Chicago"
-"62642","40.08905","-89.71348","Greenview","IL","Illinois","TRUE","","1334","6.9","17129","Menard","{""17129"": ""100""}","Menard","17129","FALSE","FALSE","America/Chicago"
-"62643","40.24301","-89.45169","Hartsburg","IL","Illinois","TRUE","","490","5.5","17107","Logan","{""17107"": ""100""}","Logan","17107","FALSE","FALSE","America/Chicago"
-"62644","40.28959","-90.05434","Havana","IL","Illinois","TRUE","","4921","18.4","17125","Mason","{""17125"": ""97.47"", ""17057"": ""2.53""}","Mason|Fulton","17125|17057","FALSE","FALSE","America/Chicago"
-"62649","39.36532","-90.06747","Hettick","IL","Illinois","TRUE","","603","6.2","17117","Macoupin","{""17117"": ""100""}","Macoupin","17117","FALSE","FALSE","America/Chicago"
-"62650","39.73454","-90.22336","Jacksonville","IL","Illinois","TRUE","","26524","50.2","17137","Morgan","{""17137"": ""99.7"", ""17171"": ""0.3""}","Morgan|Scott","17137|17171","FALSE","FALSE","America/Chicago"
-"62655","40.16542","-89.99408","Kilbourne","IL","Illinois","TRUE","","367","2.5","17125","Mason","{""17125"": ""100""}","Mason","17125","FALSE","FALSE","America/Chicago"
-"62656","40.13988","-89.37163","Lincoln","IL","Illinois","TRUE","","19280","51.6","17107","Logan","{""17107"": ""100""}","Logan","17107","FALSE","FALSE","America/Chicago"
-"62661","39.6657","-89.84042","Loami","IL","Illinois","TRUE","","1646","15.6","17167","Sangamon","{""17167"": ""100""}","Sangamon","17167","FALSE","FALSE","America/Chicago"
-"62663","39.54068","-90.32904","Manchester","IL","Illinois","TRUE","","258","96.7","17171","Scott","{""17171"": ""100""}","Scott","17171","FALSE","FALSE","America/Chicago"
-"62664","40.21229","-89.72526","Mason City","IL","Illinois","TRUE","","3182","11.3","17125","Mason","{""17125"": ""100""}","Mason","17125","FALSE","FALSE","America/Chicago"
-"62665","39.81714","-90.53395","Meredosia","IL","Illinois","TRUE","","1399","12.4","17137","Morgan","{""17137"": ""89.38"", ""17171"": ""10.62""}","Morgan|Scott","17137|17171","FALSE","FALSE","America/Chicago"
-"62666","40.0856","-89.54346","Middletown","IL","Illinois","TRUE","","580","7.4","17107","Logan","{""17107"": ""89.94"", ""17129"": ""10.06""}","Logan|Menard","17107|17129","FALSE","FALSE","America/Chicago"
-"62667","39.49454","-89.99268","Modesto","IL","Illinois","TRUE","","486","5.1","17117","Macoupin","{""17117"": ""97.84"", ""17137"": ""2.16""}","Macoupin|Morgan","17117|17137","FALSE","FALSE","America/Chicago"
-"62668","39.57232","-90.23793","Murrayville","IL","Illinois","TRUE","","1349","8.1","17137","Morgan","{""17137"": ""94.78"", ""17171"": ""5.22""}","Morgan|Scott","17137|17171","FALSE","FALSE","America/Chicago"
-"62670","39.74136","-89.89389","New Berlin","IL","Illinois","TRUE","","2784","12.8","17167","Sangamon","{""17167"": ""98.3"", ""17137"": ""1.7""}","Sangamon|Morgan","17167|17137","FALSE","FALSE","America/Chicago"
-"62671","40.17292","-89.55842","New Holland","IL","Illinois","TRUE","","596","4.8","17107","Logan","{""17107"": ""93.71"", ""17125"": ""6.29""}","Logan|Mason","17107|17125","FALSE","FALSE","America/Chicago"
-"62672","39.39798","-89.80446","Nilwood","IL","Illinois","TRUE","","176","92.7","17117","Macoupin","{""17117"": ""100""}","Macoupin","17117","FALSE","FALSE","America/Chicago"
-"62673","40.09471","-89.97845","Oakford","IL","Illinois","TRUE","","416","5.1","17129","Menard","{""17129"": ""87.74"", ""17017"": ""12.26""}","Menard|Cass","17129|17017","FALSE","FALSE","America/Chicago"
-"62674","39.43469","-90.02994","Palmyra","IL","Illinois","TRUE","","1393","7.2","17117","Macoupin","{""17117"": ""100""}","Macoupin","17117","FALSE","FALSE","America/Chicago"
-"62675","40.02189","-89.85914","Petersburg","IL","Illinois","TRUE","","5943","21.0","17129","Menard","{""17129"": ""100""}","Menard","17129","FALSE","FALSE","America/Chicago"
-"62677","39.84985","-89.8791","Pleasant Plains","IL","Illinois","TRUE","","2295","9.6","17167","Sangamon","{""17167"": ""99.61"", ""17129"": ""0.39""}","Sangamon|Menard","17167|17129","FALSE","FALSE","America/Chicago"
-"62681","40.13619","-90.55887","Rushville","IL","Illinois","TRUE","","5501","12.3","17169","Schuyler","{""17169"": ""100""}","Schuyler","17169","FALSE","FALSE","America/Chicago"
-"62682","40.29219","-89.63596","San Jose","IL","Illinois","TRUE","","963","8.9","17125","Mason","{""17125"": ""62.95"", ""17107"": ""35.61"", ""17179"": ""1.43""}","Mason|Logan|Tazewell","17125|17107|17179","FALSE","FALSE","America/Chicago"
-"62684","39.90928","-89.58687","Sherman","IL","Illinois","TRUE","","5840","89.8","17167","Sangamon","{""17167"": ""100""}","Sangamon","17167","FALSE","FALSE","America/Chicago"
-"62685","39.14157","-90.00355","Shipman","IL","Illinois","TRUE","","2310","10.6","17117","Macoupin","{""17117"": ""100""}","Macoupin","17117","FALSE","FALSE","America/Chicago"
-"62688","39.94601","-89.92315","Tallula","IL","Illinois","TRUE","","699","5.8","17129","Menard","{""17129"": ""100""}","Menard","17129","FALSE","FALSE","America/Chicago"
-"62689","39.53367","-89.76185","Thayer","IL","Illinois","TRUE","","567","354.6","17167","Sangamon","{""17167"": ""100""}","Sangamon","17167","FALSE","FALSE","America/Chicago"
-"62690","39.50535","-89.76316","Virden","IL","Illinois","TRUE","","3957","30.2","17117","Macoupin","{""17117"": ""91.92"", ""17167"": ""6.82"", ""17135"": ""1.26""}","Macoupin|Sangamon|Montgomery","17117|17167|17135","FALSE","FALSE","America/Chicago"
-"62691","39.95914","-90.21439","Virginia","IL","Illinois","TRUE","","2020","7.2","17017","Cass","{""17017"": ""100""}","Cass","17017","FALSE","FALSE","America/Chicago"
-"62692","39.5814","-89.9399","Waverly","IL","Illinois","TRUE","","2152","9.5","17137","Morgan","{""17137"": ""89.11"", ""17167"": ""10.89""}","Morgan|Sangamon","17137|17167","FALSE","FALSE","America/Chicago"
-"62693","39.95827","-89.51728","Williamsville","IL","Illinois","TRUE","","1565","15.3","17167","Sangamon","{""17167"": ""96.83"", ""17107"": ""3.17""}","Sangamon|Logan","17167|17107","FALSE","FALSE","America/Chicago"
-"62694","39.62159","-90.47134","Winchester","IL","Illinois","TRUE","","3018","7.5","17171","Scott","{""17171"": ""98.43"", ""17137"": ""1.57""}","Scott|Morgan","17171|17137","FALSE","FALSE","America/Chicago"
-"62695","39.62711","-90.2237","Woodson","IL","Illinois","TRUE","","200","521.4","17137","Morgan","{""17137"": ""100""}","Morgan","17137","FALSE","FALSE","America/Chicago"
-"62701","39.80082","-89.64884","Springfield","IL","Illinois","TRUE","","1147","1163.6","17167","Sangamon","{""17167"": ""100""}","Sangamon","17167","FALSE","FALSE","America/Chicago"
-"62702","39.82399","-89.64168","Springfield","IL","Illinois","TRUE","","33563","840.3","17167","Sangamon","{""17167"": ""100""}","Sangamon","17167","FALSE","FALSE","America/Chicago"
-"62703","39.7618","-89.62982","Springfield","IL","Illinois","TRUE","","29830","749.4","17167","Sangamon","{""17167"": ""100""}","Sangamon","17167","FALSE","FALSE","America/Chicago"
-"62704","39.774","-89.68515","Springfield","IL","Illinois","TRUE","","40672","1301.1","17167","Sangamon","{""17167"": ""100""}","Sangamon","17167","FALSE","FALSE","America/Chicago"
-"62707","39.85438","-89.65437","Springfield","IL","Illinois","TRUE","","7097","63.9","17167","Sangamon","{""17167"": ""100""}","Sangamon","17167","FALSE","FALSE","America/Chicago"
-"62711","39.76545","-89.72926","Springfield","IL","Illinois","TRUE","","16880","212.7","17167","Sangamon","{""17167"": ""100""}","Sangamon","17167","FALSE","FALSE","America/Chicago"
-"62712","39.75327","-89.58012","Springfield","IL","Illinois","TRUE","","10395","188.5","17167","Sangamon","{""17167"": ""100""}","Sangamon","17167","FALSE","FALSE","America/Chicago"
-"62801","38.51276","-89.14165","Centralia","IL","Illinois","TRUE","","21185","59.9","17121","Marion","{""17121"": ""70.1"", ""17027"": ""25.96"", ""17189"": ""2.07"", ""17081"": ""1.88""}","Marion|Clinton|Washington|Jefferson","17121|17027|17189|17081","FALSE","FALSE","America/Chicago"
-"62803","38.45287","-89.29656","Hoyleton","IL","Illinois","TRUE","","1142","7.6","17189","Washington","{""17189"": ""100""}","Washington","17189","FALSE","FALSE","America/Chicago"
-"62806","38.38184","-88.07486","Albion","IL","Illinois","TRUE","","3419","12.9","17047","Edwards","{""17047"": ""100""}","Edwards","17047","FALSE","FALSE","America/Chicago"
-"62807","38.74551","-88.92837","Alma","IL","Illinois","TRUE","","768","6.7","17121","Marion","{""17121"": ""100""}","Marion","17121","FALSE","FALSE","America/Chicago"
-"62808","38.30206","-89.18748","Ashley","IL","Illinois","TRUE","","1490","7.5","17189","Washington","{""17189"": ""80.44"", ""17081"": ""19.56""}","Washington|Jefferson","17189|17081","FALSE","FALSE","America/Chicago"
-"62809","38.27909","-88.33984","Barnhill","IL","Illinois","TRUE","","150","4.9","17191","Wayne","{""17191"": ""100""}","Wayne","17191","FALSE","FALSE","America/Chicago"
-"62810","38.20309","-88.74559","Belle Rive","IL","Illinois","TRUE","","908","5.7","17081","Jefferson","{""17081"": ""96.24"", ""17065"": ""3.03"", ""17191"": ""0.73""}","Jefferson|Hamilton|Wayne","17081|17065|17191","FALSE","FALSE","America/Chicago"
-"62811","38.3831","-87.90555","Bellmont","IL","Illinois","TRUE","","290","184.8","17185","Wabash","{""17185"": ""100""}","Wabash","17185","FALSE","FALSE","America/Chicago"
-"62812","37.99769","-88.91698","Benton","IL","Illinois","TRUE","","10881","44.0","17055","Franklin","{""17055"": ""100""}","Franklin","17055","FALSE","FALSE","America/Chicago"
-"62814","38.37832","-88.73183","Bluford","IL","Illinois","TRUE","","2046","11.2","17081","Jefferson","{""17081"": ""86.82"", ""17191"": ""13.18""}","Jefferson|Wayne","17081|17191","FALSE","FALSE","America/Chicago"
-"62815","38.45711","-87.98701","Bone Gap","IL","Illinois","TRUE","","284","5.2","17047","Edwards","{""17047"": ""100""}","Edwards","17047","FALSE","FALSE","America/Chicago"
-"62816","38.18585","-88.9239","Bonnie","IL","Illinois","TRUE","","1276","14.3","17081","Jefferson","{""17081"": ""100""}","Jefferson","17081","FALSE","FALSE","America/Chicago"
-"62817","37.95349","-88.47808","Broughton","IL","Illinois","TRUE","","433","2.4","17065","Hamilton","{""17065"": ""100""}","Hamilton","17065","FALSE","FALSE","America/Chicago"
-"62818","38.38328","-87.96536","Browns","IL","Illinois","TRUE","","251","3.7","17047","Edwards","{""17047"": ""78.18"", ""17185"": ""21.82""}","Edwards|Wabash","17047|17185","FALSE","FALSE","America/Chicago"
-"62819","37.97952","-89.01496","Buckner","IL","Illinois","TRUE","","382","131.9","17055","Franklin","{""17055"": ""100""}","Franklin","17055","FALSE","FALSE","America/Chicago"
-"62820","38.24345","-88.23473","Burnt Prairie","IL","Illinois","TRUE","","183","3.3","17193","White","{""17193"": ""77.16"", ""17191"": ""22.84""}","White|Wayne","17193|17191","FALSE","FALSE","America/Chicago"
-"62821","38.07341","-88.13264","Carmi","IL","Illinois","TRUE","","7145","15.7","17193","White","{""17193"": ""100""}","White","17193","FALSE","FALSE","America/Chicago"
-"62822","37.97774","-89.05655","Christopher","IL","Illinois","TRUE","","2960","424.8","17055","Franklin","{""17055"": ""100""}","Franklin","17055","FALSE","FALSE","America/Chicago"
-"62823","38.51962","-88.43942","Cisne","IL","Illinois","TRUE","","1681","8.0","17191","Wayne","{""17191"": ""100""}","Wayne","17191","FALSE","FALSE","America/Chicago"
-"62824","38.6711","-88.34651","Clay City","IL","Illinois","TRUE","","1888","6.9","17025","Clay","{""17025"": ""94.43"", ""17191"": ""5.57""}","Clay|Wayne","17025|17191","FALSE","FALSE","America/Chicago"
-"62825","37.99837","-89.06789","Coello","IL","Illinois","TRUE","","192","236.2","17055","Franklin","{""17055"": ""100""}","Franklin","17055","FALSE","FALSE","America/Chicago"
-"62827","38.16915","-88.04316","Crossville","IL","Illinois","TRUE","","1215","7.2","17193","White","{""17193"": ""100""}","White","17193","FALSE","FALSE","America/Chicago"
-"62828","38.19416","-88.60679","Dahlgren","IL","Illinois","TRUE","","1376","6.5","17065","Hamilton","{""17065"": ""100""}","Hamilton","17065","FALSE","FALSE","America/Chicago"
-"62829","37.9762","-88.48732","Dale","IL","Illinois","TRUE","","21","4.7","17065","Hamilton","{""17065"": ""100""}","Hamilton","17065","FALSE","FALSE","America/Chicago"
-"62830","38.44685","-88.96332","Dix","IL","Illinois","TRUE","","1229","16.7","17081","Jefferson","{""17081"": ""98.06"", ""17121"": ""1.94""}","Jefferson|Marion","17081|17121","FALSE","FALSE","America/Chicago"
-"62831","38.23068","-89.22128","Du Bois","IL","Illinois","TRUE","","383","3.7","17189","Washington","{""17189"": ""87.61"", ""17145"": ""12.39""}","Washington|Perry","17189|17145","FALSE","FALSE","America/Chicago"
-"62832","38.01221","-89.24995","Du Quoin","IL","Illinois","TRUE","","8785","35.0","17145","Perry","{""17145"": ""99.24"", ""17077"": ""0.76""}","Perry|Jackson","17145|17077","FALSE","FALSE","America/Chicago"
-"62833","38.36124","-88.16051","Ellery","IL","Illinois","TRUE","","420","3.5","17191","Wayne","{""17191"": ""56.66"", ""17047"": ""43.34""}","Wayne|Edwards","17191|17047","FALSE","FALSE","America/Chicago"
-"62835","38.10687","-88.32026","Enfield","IL","Illinois","TRUE","","962","5.1","17193","White","{""17193"": ""96.88"", ""17065"": ""3.13""}","White|Hamilton","17193|17065","FALSE","FALSE","America/Chicago"
-"62836","38.09034","-88.80085","Ewing","IL","Illinois","TRUE","","771","7.8","17055","Franklin","{""17055"": ""100""}","Franklin","17055","FALSE","FALSE","America/Chicago"
-"62837","38.36802","-88.35645","Fairfield","IL","Illinois","TRUE","","8826","20.9","17191","Wayne","{""17191"": ""100""}","Wayne","17191","FALSE","FALSE","America/Chicago"
-"62838","38.87289","-88.75553","Farina","IL","Illinois","TRUE","","1853","8.4","17051","Fayette","{""17051"": ""69.74"", ""17025"": ""28.66"", ""17121"": ""1"", ""17049"": ""0.6""}","Fayette|Clay|Marion|Effingham","17051|17025|17121|17049","FALSE","FALSE","America/Chicago"
-"62839","38.6651","-88.49904","Flora","IL","Illinois","TRUE","","6401","33.7","17025","Clay","{""17025"": ""100""}","Clay","17025","FALSE","FALSE","America/Chicago"
-"62841","37.85938","-89.00024","Freeman Spur","IL","Illinois","TRUE","","150","590.1","17199","Williamson","{""17199"": ""100""}","Williamson","17199","FALSE","FALSE","America/Chicago"
-"62842","38.47081","-88.37313","Geff","IL","Illinois","TRUE","","743","6.5","17191","Wayne","{""17191"": ""100""}","Wayne","17191","FALSE","FALSE","America/Chicago"
-"62843","38.38219","-88.19612","Golden Gate","IL","Illinois","TRUE","","184","11.8","17191","Wayne","{""17191"": ""100""}","Wayne","17191","FALSE","FALSE","America/Chicago"
-"62844","38.25814","-88.04625","Grayville","IL","Illinois","TRUE","","2081","18.2","17193","White","{""17193"": ""54.54"", ""17047"": ""45.46""}","White|Edwards","17193|17047","FALSE","FALSE","America/Chicago"
-"62846","38.14642","-88.87024","Ina","IL","Illinois","TRUE","","2613","47.4","17081","Jefferson","{""17081"": ""100""}","Jefferson","17081","FALSE","FALSE","America/Chicago"
-"62848","38.43659","-89.16482","Irvington","IL","Illinois","TRUE","","692","81.6","17189","Washington","{""17189"": ""100""}","Washington","17189","FALSE","FALSE","America/Chicago"
-"62849","38.58706","-88.77354","Iuka","IL","Illinois","TRUE","","2085","7.1","17121","Marion","{""17121"": ""100""}","Marion","17121","FALSE","FALSE","America/Chicago"
-"62850","38.49533","-88.59105","Johnsonville","IL","Illinois","TRUE","","348","4.7","17191","Wayne","{""17191"": ""100""}","Wayne","17191","FALSE","FALSE","America/Chicago"
-"62851","38.4207","-88.66192","Keenes","IL","Illinois","TRUE","","150","2.1","17191","Wayne","{""17191"": ""94.53"", ""17081"": ""4.26"", ""17121"": ""1.22""}","Wayne|Jefferson|Marion","17191|17081|17121","FALSE","FALSE","America/Chicago"
-"62852","38.35015","-87.86675","Keensburg","IL","Illinois","TRUE","","57","222.8","17185","Wabash","{""17185"": ""100""}","Wabash","17185","FALSE","FALSE","America/Chicago"
-"62853","38.51466","-88.91268","Kell","IL","Illinois","TRUE","","894","12.8","17121","Marion","{""17121"": ""100""}","Marion","17121","FALSE","FALSE","America/Chicago"
-"62854","38.76801","-88.80664","Kinmundy","IL","Illinois","TRUE","","1495","6.4","17121","Marion","{""17121"": ""98.7"", ""17025"": ""1.3""}","Marion|Clay","17121|17025","FALSE","FALSE","America/Chicago"
-"62856","37.95748","-88.8362","Logan","IL","Illinois","TRUE","","373","154.8","17055","Franklin","{""17055"": ""100""}","Franklin","17055","FALSE","FALSE","America/Chicago"
-"62858","38.81473","-88.49329","Louisville","IL","Illinois","TRUE","","2713","6.8","17025","Clay","{""17025"": ""98.89"", ""17049"": ""1.11""}","Clay|Effingham","17025|17049","FALSE","FALSE","America/Chicago"
-"62859","38.07612","-88.53393","McLeansboro","IL","Illinois","TRUE","","5683","10.5","17065","Hamilton","{""17065"": ""100""}","Hamilton","17065","FALSE","FALSE","America/Chicago"
-"62860","38.04086","-88.72459","Macedonia","IL","Illinois","TRUE","","561","6.5","17055","Franklin","{""17055"": ""66.03"", ""17065"": ""33.97""}","Franklin|Hamilton","17055|17065","FALSE","FALSE","America/Chicago"
-"62861","38.03196","-88.02855","Maunie","IL","Illinois","TRUE","","166","117.8","17193","White","{""17193"": ""100""}","White","17193","FALSE","FALSE","America/Chicago"
-"62862","38.21733","-88.29613","Mill Shoals","IL","Illinois","TRUE","","359","5.2","17193","White","{""17193"": ""100""}","White","17193","FALSE","FALSE","America/Chicago"
-"62863","38.41646","-87.85596","Mount Carmel","IL","Illinois","TRUE","","9611","24.8","17185","Wabash","{""17185"": ""100""}","Wabash","17185","FALSE","FALSE","America/Chicago"
-"62864","38.33121","-88.90259","Mount Vernon","IL","Illinois","TRUE","","23498","62.5","17081","Jefferson","{""17081"": ""100""}","Jefferson","17081","FALSE","FALSE","America/Chicago"
-"62865","37.97199","-89.07878","Mulkeytown","IL","Illinois","TRUE","","1977","14.0","17055","Franklin","{""17055"": ""100""}","Franklin","17055","FALSE","FALSE","America/Chicago"
-"62867","37.91634","-88.10768","New Haven","IL","Illinois","TRUE","","486","5.6","17059","Gallatin","{""17059"": ""88.29"", ""17193"": ""11.71""}","Gallatin|White","17059|17193","FALSE","FALSE","America/Chicago"
-"62868","38.68377","-88.22851","Noble","IL","Illinois","TRUE","","1986","7.6","17159","Richland","{""17159"": ""90.54"", ""17025"": ""6.36"", ""17191"": ""3.1""}","Richland|Clay|Wayne","17159|17025|17191","FALSE","FALSE","America/Chicago"
-"62869","37.96206","-88.28113","Norris City","IL","Illinois","TRUE","","2490","10.7","17193","White","{""17193"": ""98.7"", ""17065"": ""0.48"", ""17059"": ""0.41"", ""17165"": ""0.41""}","White|Hamilton|Gallatin|Saline","17193|17065|17059|17165","FALSE","FALSE","America/Chicago"
-"62870","38.63495","-89.05107","Odin","IL","Illinois","TRUE","","2211","21.9","17121","Marion","{""17121"": ""100""}","Marion","17121","FALSE","FALSE","America/Chicago"
-"62871","37.87593","-88.26828","Omaha","IL","Illinois","TRUE","","698","5.3","17059","Gallatin","{""17059"": ""100""}","Gallatin","17059","FALSE","FALSE","America/Chicago"
-"62872","38.2664","-88.80381","Opdyke","IL","Illinois","TRUE","","1077","17.6","17081","Jefferson","{""17081"": ""100""}","Jefferson","17081","FALSE","FALSE","America/Chicago"
-"62874","37.91937","-88.9757","Orient","IL","Illinois","TRUE","","426","116.0","17055","Franklin","{""17055"": ""100""}","Franklin","17055","FALSE","FALSE","America/Chicago"
-"62875","38.75915","-89.12131","Patoka","IL","Illinois","TRUE","","1110","6.3","17121","Marion","{""17121"": ""81.75"", ""17051"": ""16.37"", ""17027"": ""1.89""}","Marion|Fayette|Clinton","17121|17051|17027","FALSE","FALSE","America/Chicago"
-"62876","38.27645","-89.19576","Radom","IL","Illinois","TRUE","","184","23.1","17189","Washington","{""17189"": ""100""}","Washington","17189","FALSE","FALSE","America/Chicago"
-"62877","38.3904","-89.21308","Richview","IL","Illinois","TRUE","","516","6.1","17189","Washington","{""17189"": ""96.11"", ""17081"": ""3.89""}","Washington|Jefferson","17189|17081","FALSE","FALSE","America/Chicago"
-"62878","38.57857","-88.50854","Rinard","IL","Illinois","TRUE","","483","5.3","17191","Wayne","{""17191"": ""100""}","Wayne","17191","FALSE","FALSE","America/Chicago"
-"62879","38.76484","-88.3607","Sailor Springs","IL","Illinois","TRUE","","78","147.1","17025","Clay","{""17025"": ""100""}","Clay","17025","FALSE","FALSE","America/Chicago"
-"62880","38.86697","-88.88444","Saint Peter","IL","Illinois","TRUE","","712","6.6","17051","Fayette","{""17051"": ""100""}","Fayette","17051","FALSE","FALSE","America/Chicago"
-"62881","38.63515","-88.92854","Salem","IL","Illinois","TRUE","","10700","41.1","17121","Marion","{""17121"": ""100""}","Marion","17121","FALSE","FALSE","America/Chicago"
-"62882","38.63526","-89.12009","Sandoval","IL","Illinois","TRUE","","2437","29.8","17121","Marion","{""17121"": ""98.07"", ""17027"": ""1.93""}","Marion|Clinton","17121|17027","FALSE","FALSE","America/Chicago"
-"62883","38.16328","-89.11505","Scheller","IL","Illinois","TRUE","","828","7.9","17081","Jefferson","{""17081"": ""70.05"", ""17055"": ""17.09"", ""17145"": ""12.86""}","Jefferson|Franklin|Perry","17081|17055|17145","FALSE","FALSE","America/Chicago"
-"62884","38.08222","-89.05642","Sesser","IL","Illinois","TRUE","","2637","32.5","17055","Franklin","{""17055"": ""100""}","Franklin","17055","FALSE","FALSE","America/Chicago"
-"62885","38.85769","-89.05502","Shobonier","IL","Illinois","TRUE","","659","5.2","17051","Fayette","{""17051"": ""100""}","Fayette","17051","FALSE","FALSE","America/Chicago"
-"62886","38.37892","-88.53984","Sims","IL","Illinois","TRUE","","257","3.3","17191","Wayne","{""17191"": ""100""}","Wayne","17191","FALSE","FALSE","America/Chicago"
-"62887","38.1874","-88.35986","Springerton","IL","Illinois","TRUE","","497","8.5","17193","White","{""17193"": ""63.05"", ""17065"": ""36.95""}","White|Hamilton","17193|17065","FALSE","FALSE","America/Chicago"
-"62888","38.12848","-89.23479","Tamaroa","IL","Illinois","TRUE","","2070","10.3","17145","Perry","{""17145"": ""100""}","Perry","17145","FALSE","FALSE","America/Chicago"
-"62889","38.45813","-88.82921","Texico","IL","Illinois","TRUE","","885","11.3","17081","Jefferson","{""17081"": ""81.32"", ""17121"": ""18.68""}","Jefferson|Marion","17081|17121","FALSE","FALSE","America/Chicago"
-"62890","37.90643","-88.73756","Thompsonville","IL","Illinois","TRUE","","2737","10.1","17055","Franklin","{""17055"": ""67.07"", ""17199"": ""22"", ""17065"": ""6.7"", ""17165"": ""4.23""}","Franklin|Williamson|Hamilton|Saline","17055|17199|17065|17165","FALSE","FALSE","America/Chicago"
-"62891","38.01516","-89.04304","Valier","IL","Illinois","TRUE","","715","366.1","17055","Franklin","{""17055"": ""100""}","Franklin","17055","FALSE","FALSE","America/Chicago"
-"62892","38.80669","-89.0781","Vernon","IL","Illinois","TRUE","","377","6.5","17121","Marion","{""17121"": ""88.96"", ""17051"": ""11.04""}","Marion|Fayette","17121|17051","FALSE","FALSE","America/Chicago"
-"62893","38.46707","-89.03285","Walnut Hill","IL","Illinois","TRUE","","1054","21.9","17121","Marion","{""17121"": ""59.37"", ""17081"": ""40.63""}","Marion|Jefferson","17121|17081","FALSE","FALSE","America/Chicago"
-"62894","38.20902","-89.03689","Waltonville","IL","Illinois","TRUE","","1074","9.2","17081","Jefferson","{""17081"": ""100""}","Jefferson","17081","FALSE","FALSE","America/Chicago"
-"62895","38.31014","-88.56344","Wayne City","IL","Illinois","TRUE","","1897","7.2","17191","Wayne","{""17191"": ""95.8"", ""17065"": ""4.2""}","Wayne|Hamilton","17191|17065","FALSE","FALSE","America/Chicago"
-"62896","37.89104","-88.91632","West Frankfort","IL","Illinois","TRUE","","11971","71.8","17055","Franklin","{""17055"": ""93.88"", ""17199"": ""6.12""}","Franklin|Williamson","17055|17199","FALSE","FALSE","America/Chicago"
-"62897","38.0963","-88.90226","Whittington","IL","Illinois","TRUE","","406","12.6","17055","Franklin","{""17055"": ""100""}","Franklin","17055","FALSE","FALSE","America/Chicago"
-"62898","38.35051","-89.06473","Woodlawn","IL","Illinois","TRUE","","2184","15.6","17081","Jefferson","{""17081"": ""100""}","Jefferson","17081","FALSE","FALSE","America/Chicago"
-"62899","38.63192","-88.64568","Xenia","IL","Illinois","TRUE","","1815","6.8","17025","Clay","{""17025"": ""67.31"", ""17191"": ""32.69""}","Clay|Wayne","17025|17191","FALSE","FALSE","America/Chicago"
-"62901","37.73826","-89.20844","Carbondale","IL","Illinois","TRUE","","26255","338.9","17077","Jackson","{""17077"": ""96.5"", ""17199"": ""3.5""}","Jackson|Williamson","17077|17199","FALSE","FALSE","America/Chicago"
-"62902","37.66362","-89.11727","Carbondale","IL","Illinois","TRUE","","4358","27.4","17077","Jackson","{""17077"": ""76.45"", ""17199"": ""23.39"", ""17181"": ""0.15""}","Jackson|Williamson|Union","17077|17199|17181","FALSE","FALSE","America/Chicago"
-"62903","37.67039","-89.27782","Carbondale","IL","Illinois","TRUE","","3242","63.1","17077","Jackson","{""17077"": ""100""}","Jackson","17077","FALSE","FALSE","America/Chicago"
-"62905","37.574","-89.3652","Alto Pass","IL","Illinois","TRUE","","560","6.3","17181","Union","{""17181"": ""89.51"", ""17077"": ""10.49""}","Union|Jackson","17181|17077","FALSE","FALSE","America/Chicago"
-"62906","37.45662","-89.18699","Anna","IL","Illinois","TRUE","","6582","41.6","17181","Union","{""17181"": ""100""}","Union","17181","FALSE","FALSE","America/Chicago"
-"62907","37.86675","-89.49823","Ava","IL","Illinois","TRUE","","2007","8.4","17077","Jackson","{""17077"": ""99.63"", ""17157"": ""0.37""}","Jackson|Randolph","17077|17157","FALSE","FALSE","America/Chicago"
-"62908","37.30848","-88.86578","Belknap","IL","Illinois","TRUE","","561","4.3","17127","Massac","{""17127"": ""53.1"", ""17087"": ""46.9""}","Massac|Johnson","17127|17087","FALSE","FALSE","America/Chicago"
-"62910","37.15411","-88.53338","Brookport","IL","Illinois","TRUE","","2367","8.8","17127","Massac","{""17127"": ""90.05"", ""17151"": ""9.95""}","Massac|Pope","17127|17151","FALSE","FALSE","America/Chicago"
-"62912","37.47662","-89.03918","Buncombe","IL","Illinois","TRUE","","1307","9.4","17087","Johnson","{""17087"": ""53.27"", ""17181"": ""46.73""}","Johnson|Union","17087|17181","FALSE","FALSE","America/Chicago"
-"62914","37.06546","-89.22246","Cairo","IL","Illinois","TRUE","","2375","46.7","17003","Alexander","{""17003"": ""100""}","Alexander","17003","FALSE","FALSE","America/Chicago"
-"62915","37.78334","-89.11983","Cambria","IL","Illinois","TRUE","","431","1385.3","17199","Williamson","{""17199"": ""100""}","Williamson","17199","FALSE","FALSE","America/Chicago"
-"62916","37.92862","-89.56416","Campbell Hill","IL","Illinois","TRUE","","938","10.7","17077","Jackson","{""17077"": ""84.12"", ""17157"": ""11.16"", ""17145"": ""4.72""}","Jackson|Randolph|Perry","17077|17157|17145","FALSE","FALSE","America/Chicago"
-"62917","37.69811","-88.64883","Carrier Mills","IL","Illinois","TRUE","","2154","25.9","17165","Saline","{""17165"": ""94.75"", ""17199"": ""5.25""}","Saline|Williamson","17165|17199","FALSE","FALSE","America/Chicago"
-"62918","37.79","-89.08769","Carterville","IL","Illinois","TRUE","","10177","109.3","17199","Williamson","{""17199"": ""100""}","Williamson","17199","FALSE","FALSE","America/Chicago"
-"62919","37.52073","-88.14891","Cave In Rock","IL","Illinois","TRUE","","1060","8.4","17069","Hardin","{""17069"": ""100""}","Hardin","17069","FALSE","FALSE","America/Chicago"
-"62920","37.54896","-89.23507","Cobden","IL","Illinois","TRUE","","3219","19.0","17181","Union","{""17181"": ""100""}","Union","17181","FALSE","FALSE","America/Chicago"
-"62921","37.80158","-89.08423","Colp","IL","Illinois","TRUE","","332","169.3","17199","Williamson","{""17199"": ""100""}","Williamson","17199","FALSE","FALSE","America/Chicago"
-"62922","37.62105","-88.81596","Creal Springs","IL","Illinois","TRUE","","2764","16.5","17199","Williamson","{""17199"": ""79.26"", ""17087"": ""20.74""}","Williamson|Johnson","17199|17087","FALSE","FALSE","America/Chicago"
-"62923","37.34435","-89.01475","Cypress","IL","Illinois","TRUE","","468","6.0","17087","Johnson","{""17087"": ""88.03"", ""17153"": ""7.92"", ""17181"": ""4.05""}","Johnson|Pulaski|Union","17087|17153|17181","FALSE","FALSE","America/Chicago"
-"62924","37.82386","-89.20465","De Soto","IL","Illinois","TRUE","","2956","27.1","17077","Jackson","{""17077"": ""86.12"", ""17199"": ""13.88""}","Jackson|Williamson","17077|17199","FALSE","FALSE","America/Chicago"
-"62926","37.36734","-89.1339","Dongola","IL","Illinois","TRUE","","2373","11.4","17181","Union","{""17181"": ""89.53"", ""17153"": ""10.47""}","Union|Pulaski","17181|17153","FALSE","FALSE","America/Chicago"
-"62927","37.93521","-89.24162","Dowell","IL","Illinois","TRUE","","369","325.2","17077","Jackson","{""17077"": ""100""}","Jackson","17077","FALSE","FALSE","America/Chicago"
-"62928","37.48287","-88.57913","Eddyville","IL","Illinois","TRUE","","192","4.4","17151","Pope","{""17151"": ""100""}","Pope","17151","FALSE","FALSE","America/Chicago"
-"62930","37.83823","-88.44115","Eldorado","IL","Illinois","TRUE","","5915","32.2","17165","Saline","{""17165"": ""99.66"", ""17059"": ""0.34""}","Saline|Gallatin","17165|17059","FALSE","FALSE","America/Chicago"
-"62931","37.52851","-88.28679","Elizabethtown","IL","Illinois","TRUE","","1484","5.6","17069","Hardin","{""17069"": ""97.14"", ""17059"": ""2.86""}","Hardin|Gallatin","17069|17059","FALSE","FALSE","America/Chicago"
-"62932","37.90344","-89.21404","Elkville","IL","Illinois","TRUE","","1400","14.1","17077","Jackson","{""17077"": ""100""}","Jackson","17077","FALSE","FALSE","America/Chicago"
-"62933","37.77253","-89.02483","Energy","IL","Illinois","TRUE","","1160","308.2","17199","Williamson","{""17199"": ""100""}","Williamson","17199","FALSE","FALSE","America/Chicago"
-"62934","37.70452","-88.36433","Equality","IL","Illinois","TRUE","","720","3.6","17059","Gallatin","{""17059"": ""84.14"", ""17165"": ""15.86""}","Gallatin|Saline","17059|17165","FALSE","FALSE","America/Chicago"
-"62935","37.8412","-88.63383","Galatia","IL","Illinois","TRUE","","1994","13.8","17165","Saline","{""17165"": ""99.64"", ""17065"": ""0.36""}","Saline|Hamilton","17165|17065","FALSE","FALSE","America/Chicago"
-"62938","37.38021","-88.54268","Golconda","IL","Illinois","TRUE","","2994","6.9","17151","Pope","{""17151"": ""94.59"", ""17069"": ""5.41""}","Pope|Hardin","17151|17069","FALSE","FALSE","America/Chicago"
-"62939","37.5512","-88.98149","Goreville","IL","Illinois","TRUE","","2936","25.8","17087","Johnson","{""17087"": ""95.22"", ""17199"": ""3.11"", ""17181"": ""1.67""}","Johnson|Williamson|Union","17087|17199|17181","FALSE","FALSE","America/Chicago"
-"62940","37.73167","-89.47209","Gorham","IL","Illinois","TRUE","","308","4.6","17077","Jackson","{""17077"": ""100""}","Jackson","17077","FALSE","FALSE","America/Chicago"
-"62941","37.24446","-88.98073","Grand Chain","IL","Illinois","TRUE","","740","8.4","17153","Pulaski","{""17153"": ""72.9"", ""17127"": ""27.1""}","Pulaski|Massac","17153|17127","FALSE","FALSE","America/Chicago"
-"62942","37.64347","-89.46919","Grand Tower","IL","Illinois","TRUE","","624","7.4","17077","Jackson","{""17077"": ""100""}","Jackson","17077","FALSE","FALSE","America/Chicago"
-"62943","37.35639","-88.74774","Grantsburg","IL","Illinois","TRUE","","372","3.8","17087","Johnson","{""17087"": ""68.95"", ""17127"": ""22.38"", ""17151"": ""8.67""}","Johnson|Massac|Pope","17087|17127|17151","FALSE","FALSE","America/Chicago"
-"62946","37.70724","-88.53817","Harrisburg","IL","Illinois","TRUE","","12530","34.8","17165","Saline","{""17165"": ""99.47"", ""17151"": ""0.53""}","Saline|Pope","17165|17151","FALSE","FALSE","America/Chicago"
-"62947","37.5634","-88.44009","Herod","IL","Illinois","TRUE","","522","3.0","17069","Hardin","{""17069"": ""55.47"", ""17151"": ""31.91"", ""17165"": ""12.62""}","Hardin|Pope|Saline","17069|17151|17165","FALSE","FALSE","America/Chicago"
-"62948","37.81689","-89.02951","Herrin","IL","Illinois","TRUE","","13248","272.1","17199","Williamson","{""17199"": ""100""}","Williamson","17199","FALSE","FALSE","America/Chicago"
-"62949","37.82803","-89.14442","Hurst","IL","Illinois","TRUE","","731","183.2","17199","Williamson","{""17199"": ""100""}","Williamson","17199","FALSE","FALSE","America/Chicago"
-"62950","37.75545","-89.5604","Jacob","IL","Illinois","TRUE","","204","2.6","17077","Jackson","{""17077"": ""100""}","Jackson","17077","FALSE","FALSE","America/Chicago"
-"62951","37.82354","-88.92922","Johnston City","IL","Illinois","TRUE","","4604","71.9","17199","Williamson","{""17199"": ""100""}","Williamson","17199","FALSE","FALSE","America/Chicago"
-"62952","37.41823","-89.33724","Jonesboro","IL","Illinois","TRUE","","3144","12.4","17181","Union","{""17181"": ""99.02"", ""17003"": ""0.98""}","Union|Alexander","17181|17003","FALSE","FALSE","America/Chicago"
-"62953","37.20837","-88.84999","Joppa","IL","Illinois","TRUE","","274","122.5","17127","Massac","{""17127"": ""100""}","Massac","17127","FALSE","FALSE","America/Chicago"
-"62954","37.69118","-88.27478","Junction","IL","Illinois","TRUE","","456","3.6","17059","Gallatin","{""17059"": ""100""}","Gallatin","17059","FALSE","FALSE","America/Chicago"
-"62956","37.27993","-88.94232","Karnak","IL","Illinois","TRUE","","940","14.0","17153","Pulaski","{""17153"": ""69.04"", ""17127"": ""30.96""}","Pulaski|Massac","17153|17127","FALSE","FALSE","America/Chicago"
-"62957","37.30789","-89.42661","McClure","IL","Illinois","TRUE","","867","7.9","17003","Alexander","{""17003"": ""98.19"", ""17181"": ""1.81""}","Alexander|Union","17003|17181","FALSE","FALSE","America/Chicago"
-"62958","37.59975","-89.16582","Makanda","IL","Illinois","TRUE","","2134","18.0","17077","Jackson","{""17077"": ""82.71"", ""17199"": ""10.08"", ""17181"": ""7.21""}","Jackson|Williamson|Union","17077|17199|17181","FALSE","FALSE","America/Chicago"
-"62959","37.71804","-88.90775","Marion","IL","Illinois","TRUE","","28115","80.2","17199","Williamson","{""17199"": ""100""}","Williamson","17199","FALSE","FALSE","America/Chicago"
-"62960","37.22608","-88.71072","Metropolis","IL","Illinois","TRUE","","10755","35.7","17127","Massac","{""17127"": ""99.91"", ""17151"": ""0.09""}","Massac|Pope","17127|17151","FALSE","FALSE","America/Chicago"
-"62961","37.34028","-89.25519","Millcreek","IL","Illinois","TRUE","","31","53.4","17181","Union","{""17181"": ""100""}","Union","17181","FALSE","FALSE","America/Chicago"
-"62962","37.07376","-89.33498","Miller City","IL","Illinois","TRUE","","0","0.0","17003","Alexander","{""17003"": ""100""}","Alexander","17003","FALSE","FALSE","America/Chicago"
-"62963","37.09396","-89.16201","Mound City","IL","Illinois","TRUE","","744","62.5","17153","Pulaski","{""17153"": ""100""}","Pulaski","17153","FALSE","FALSE","America/Chicago"
-"62964","37.12854","-89.21531","Mounds","IL","Illinois","TRUE","","1168","17.2","17153","Pulaski","{""17153"": ""100""}","Pulaski","17153","FALSE","FALSE","America/Chicago"
-"62965","37.76708","-88.52022","Muddy","IL","Illinois","TRUE","","95","57.4","17165","Saline","{""17165"": ""100""}","Saline","17165","FALSE","FALSE","America/Chicago"
-"62966","37.77508","-89.35107","Murphysboro","IL","Illinois","TRUE","","15049","51.3","17077","Jackson","{""17077"": ""100""}","Jackson","17077","FALSE","FALSE","America/Chicago"
-"62967","37.58044","-88.7518","New Burnside","IL","Illinois","TRUE","","242","14.4","17087","Johnson","{""17087"": ""100""}","Johnson","17087","FALSE","FALSE","America/Chicago"
-"62969","37.15795","-89.34349","Olive Branch","IL","Illinois","TRUE","","438","8.5","17003","Alexander","{""17003"": ""100""}","Alexander","17003","FALSE","FALSE","America/Chicago"
-"62970","37.21476","-89.09964","Olmsted","IL","Illinois","TRUE","","685","9.6","17153","Pulaski","{""17153"": ""100""}","Pulaski","17153","FALSE","FALSE","America/Chicago"
-"62972","37.53702","-88.79131","Ozark","IL","Illinois","TRUE","","958","5.5","17087","Johnson","{""17087"": ""93.11"", ""17151"": ""6.89""}","Johnson|Pope","17087|17151","FALSE","FALSE","America/Chicago"
-"62974","37.77736","-88.78463","Pittsburg","IL","Illinois","TRUE","","1653","23.9","17199","Williamson","{""17199"": ""100""}","Williamson","17199","FALSE","FALSE","America/Chicago"
-"62975","37.63757","-89.37776","Pomona","IL","Illinois","TRUE","","169","2.8","17077","Jackson","{""17077"": ""100""}","Jackson","17077","FALSE","FALSE","America/Chicago"
-"62976","37.21898","-89.20552","Pulaski","IL","Illinois","TRUE","","402","5.9","17153","Pulaski","{""17153"": ""100""}","Pulaski","17153","FALSE","FALSE","America/Chicago"
-"62977","37.85397","-88.5449","Raleigh","IL","Illinois","TRUE","","754","14.8","17165","Saline","{""17165"": ""100""}","Saline","17165","FALSE","FALSE","America/Chicago"
-"62979","37.8161","-88.19181","Ridgway","IL","Illinois","TRUE","","1020","5.2","17059","Gallatin","{""17059"": ""100""}","Gallatin","17059","FALSE","FALSE","America/Chicago"
-"62982","37.42811","-88.35961","Rosiclare","IL","Illinois","TRUE","","877","43.5","17069","Hardin","{""17069"": ""100""}","Hardin","17069","FALSE","FALSE","America/Chicago"
-"62983","37.90497","-89.11721","Royalton","IL","Illinois","TRUE","","1476","28.2","17055","Franklin","{""17055"": ""100""}","Franklin","17055","FALSE","FALSE","America/Chicago"
-"62984","37.71038","-88.15479","Shawneetown","IL","Illinois","TRUE","","1673","8.2","17059","Gallatin","{""17059"": ""100""}","Gallatin","17059","FALSE","FALSE","America/Chicago"
-"62985","37.46085","-88.68961","Simpson","IL","Illinois","TRUE","","610","3.5","17087","Johnson","{""17087"": ""51.72"", ""17151"": ""48.28""}","Johnson|Pope","17087|17151","FALSE","FALSE","America/Chicago"
-"62987","37.6168","-88.6542","Stonefort","IL","Illinois","TRUE","","1494","7.0","17165","Saline","{""17165"": ""44.04"", ""17199"": ""37.31"", ""17151"": ""18.65""}","Saline|Williamson|Pope","17165|17199|17151","FALSE","FALSE","America/Chicago"
-"62988","37.24392","-89.29752","Tamms","IL","Illinois","TRUE","","1444","9.0","17003","Alexander","{""17003"": ""100""}","Alexander","17003","FALSE","FALSE","America/Chicago"
-"62990","37.23092","-89.40643","Thebes","IL","Illinois","TRUE","","1036","9.3","17003","Alexander","{""17003"": ""100""}","Alexander","17003","FALSE","FALSE","America/Chicago"
-"62992","37.27901","-89.16676","Ullin","IL","Illinois","TRUE","","751","8.3","17153","Pulaski","{""17153"": ""95.35"", ""17003"": ""4.65""}","Pulaski|Alexander","17153|17003","FALSE","FALSE","America/Chicago"
-"62994","37.90776","-89.34075","Vergennes","IL","Illinois","TRUE","","678","7.0","17077","Jackson","{""17077"": ""100""}","Jackson","17077","FALSE","FALSE","America/Chicago"
-"62995","37.42602","-88.87524","Vienna","IL","Illinois","TRUE","","6034","21.4","17087","Johnson","{""17087"": ""100""}","Johnson","17087","FALSE","FALSE","America/Chicago"
-"62996","37.16307","-89.1543","Villa Ridge","IL","Illinois","TRUE","","520","7.9","17153","Pulaski","{""17153"": ""100""}","Pulaski","17153","FALSE","FALSE","America/Chicago"
-"62997","37.98225","-89.59038","Willisville","IL","Illinois","TRUE","","617","688.9","17145","Perry","{""17145"": ""100""}","Perry","17145","FALSE","FALSE","America/Chicago"
-"62998","37.51587","-89.4474","Wolf Lake","IL","Illinois","TRUE","","316","2.6","17181","Union","{""17181"": ""100""}","Union","17181","FALSE","FALSE","America/Chicago"
-"62999","37.89171","-89.05259","Zeigler","IL","Illinois","TRUE","","1771","318.8","17055","Franklin","{""17055"": ""100""}","Franklin","17055","FALSE","FALSE","America/Chicago"
-"63005","38.64426","-90.64722","Chesterfield","MO","Missouri","TRUE","","18083","200.4","29189","St. Louis","{""29189"": ""100""}","St. Louis","29189","FALSE","FALSE","America/Chicago"
-"63010","38.42948","-90.39324","Arnold","MO","Missouri","TRUE","","35888","638.6","29099","Jefferson","{""29099"": ""100""}","Jefferson","29099","FALSE","FALSE","America/Chicago"
-"63011","38.6037","-90.55916","Ballwin","MO","Missouri","TRUE","","38348","1026.0","29189","St. Louis","{""29189"": ""100""}","St. Louis","29189","FALSE","FALSE","America/Chicago"
-"63012","38.33317","-90.44748","Barnhart","MO","Missouri","TRUE","","10358","140.3","29099","Jefferson","{""29099"": ""100""}","Jefferson","29099","FALSE","FALSE","America/Chicago"
-"63013","38.41546","-91.15207","Beaufort","MO","Missouri","TRUE","","1721","17.7","29071","Franklin","{""29071"": ""100""}","Franklin","29071","FALSE","FALSE","America/Chicago"
-"63014","38.64701","-91.31851","Berger","MO","Missouri","TRUE","","828","8.3","29071","Franklin","{""29071"": ""88.32"", ""29073"": ""11.68""}","Franklin|Gasconade","29071|29073","FALSE","FALSE","America/Chicago"
-"63015","38.40367","-90.75352","Catawissa","MO","Missouri","TRUE","","1938","44.6","29071","Franklin","{""29071"": ""78.56"", ""29099"": ""21.44""}","Franklin|Jefferson","29071|29099","FALSE","FALSE","America/Chicago"
-"63016","38.35304","-90.63997","Cedar Hill","MO","Missouri","TRUE","","7645","129.4","29099","Jefferson","{""29099"": ""100""}","Jefferson","29099","FALSE","FALSE","America/Chicago"
-"63017","38.65105","-90.53642","Chesterfield","MO","Missouri","TRUE","","41262","813.9","29189","St. Louis","{""29189"": ""100""}","St. Louis","29189","FALSE","FALSE","America/Chicago"
-"63019","38.22875","-90.37673","Crystal City","MO","Missouri","TRUE","","4338","511.4","29099","Jefferson","{""29099"": ""100""}","Jefferson","29099","FALSE","FALSE","America/Chicago"
-"63020","38.10677","-90.56195","De Soto","MO","Missouri","TRUE","","20459","55.8","29099","Jefferson","{""29099"": ""99.77"", ""29221"": ""0.23""}","Jefferson|Washington","29099|29221","FALSE","FALSE","America/Chicago"
-"63021","38.5688","-90.54644","Ballwin","MO","Missouri","TRUE","","57112","1000.3","29189","St. Louis","{""29189"": ""100""}","St. Louis","29189","FALSE","FALSE","America/Chicago"
-"63023","38.26928","-90.71317","Dittmer","MO","Missouri","TRUE","","5875","32.3","29099","Jefferson","{""29099"": ""100""}","Jefferson","29099","FALSE","FALSE","America/Chicago"
-"63025","38.49049","-90.61937","Eureka","MO","Missouri","TRUE","","14740","142.1","29189","St. Louis","{""29189"": ""80.63"", ""29099"": ""19.37""}","St. Louis|Jefferson","29189|29099","FALSE","FALSE","America/Chicago"
-"63026","38.50274","-90.4603","Fenton","MO","Missouri","TRUE","","44333","676.1","29189","St. Louis","{""29189"": ""54.45"", ""29099"": ""45.55""}","St. Louis|Jefferson","29189|29099","FALSE","FALSE","America/Chicago"
-"63028","38.14639","-90.39567","Festus","MO","Missouri","TRUE","","26874","84.8","29099","Jefferson","{""29099"": ""97.57"", ""29186"": ""2.43""}","Jefferson|Ste. Genevieve","29099|29186","FALSE","FALSE","America/Chicago"
-"63030","38.12778","-90.74521","Fletcher","MO","Missouri","TRUE","","305","6.0","29221","Washington","{""29221"": ""100""}","Washington","29221","FALSE","FALSE","America/Chicago"
-"63031","38.81194","-90.353","Florissant","MO","Missouri","TRUE","","47748","1251.6","29189","St. Louis","{""29189"": ""100""}","St. Louis","29189","FALSE","FALSE","America/Chicago"
-"63033","38.7956","-90.27717","Florissant","MO","Missouri","TRUE","","42544","1330.2","29189","St. Louis","{""29189"": ""100""}","St. Louis","29189","FALSE","FALSE","America/Chicago"
-"63034","38.84808","-90.28876","Florissant","MO","Missouri","TRUE","","18058","372.4","29189","St. Louis","{""29189"": ""100""}","St. Louis","29189","FALSE","FALSE","America/Chicago"
-"63036","37.98041","-90.37608","French Village","MO","Missouri","TRUE","","1134","16.3","29187","St. Francois","{""29187"": ""83.46"", ""29186"": ""16.54""}","St. Francois|Ste. Genevieve","29187|29186","FALSE","FALSE","America/Chicago"
-"63037","38.42751","-91.3159","Gerald","MO","Missouri","TRUE","","3050","14.4","29071","Franklin","{""29071"": ""100""}","Franklin","29071","FALSE","FALSE","America/Chicago"
-"63038","38.58139","-90.67217","Wildwood","MO","Missouri","TRUE","","6998","129.1","29189","St. Louis","{""29189"": ""100""}","St. Louis","29189","FALSE","FALSE","America/Chicago"
-"63039","38.49476","-90.83865","Gray Summit","MO","Missouri","TRUE","","624","62.9","29071","Franklin","{""29071"": ""100""}","Franklin","29071","FALSE","FALSE","America/Chicago"
-"63040","38.57299","-90.63496","Wildwood","MO","Missouri","TRUE","","8374","718.9","29189","St. Louis","{""29189"": ""100""}","St. Louis","29189","FALSE","FALSE","America/Chicago"
-"63041","38.25101","-90.79012","Grubville","MO","Missouri","TRUE","","435","12.2","29071","Franklin","{""29071"": ""82.96"", ""29099"": ""17.04""}","Franklin|Jefferson","29071|29099","FALSE","FALSE","America/Chicago"
-"63042","38.78579","-90.38627","Hazelwood","MO","Missouri","TRUE","","19067","604.9","29189","St. Louis","{""29189"": ""100""}","St. Louis","29189","FALSE","FALSE","America/Chicago"
-"63043","38.72929","-90.46207","Maryland Heights","MO","Missouri","TRUE","","22582","615.6","29189","St. Louis","{""29189"": ""100""}","St. Louis","29189","FALSE","FALSE","America/Chicago"
-"63044","38.76984","-90.42897","Bridgeton","MO","Missouri","TRUE","","10535","271.2","29189","St. Louis","{""29189"": ""100""}","St. Louis","29189","FALSE","FALSE","America/Chicago"
-"63045","38.7689","-90.46626","Earth City","MO","Missouri","TRUE","","0","0.0","29189","St. Louis","{""29189"": ""100""}","St. Louis","29189","FALSE","FALSE","America/Chicago"
-"63047","38.19566","-90.48722","Hematite","MO","Missouri","TRUE","","73","128.6","29099","Jefferson","{""29099"": ""100""}","Jefferson","29099","FALSE","FALSE","America/Chicago"
-"63048","38.25883","-90.39333","Herculaneum","MO","Missouri","TRUE","","3866","440.0","29099","Jefferson","{""29099"": ""100""}","Jefferson","29099","FALSE","FALSE","America/Chicago"
-"63049","38.47939","-90.53099","High Ridge","MO","Missouri","TRUE","","17314","264.8","29099","Jefferson","{""29099"": ""98.7"", ""29189"": ""1.3""}","Jefferson|St. Louis","29099|29189","FALSE","FALSE","America/Chicago"
-"63050","38.25975","-90.57782","Hillsboro","MO","Missouri","TRUE","","15816","67.9","29099","Jefferson","{""29099"": ""100""}","Jefferson","29099","FALSE","FALSE","America/Chicago"
-"63051","38.39957","-90.58004","House Springs","MO","Missouri","TRUE","","13670","113.9","29099","Jefferson","{""29099"": ""100""}","Jefferson","29099","FALSE","FALSE","America/Chicago"
-"63052","38.39075","-90.43558","Imperial","MO","Missouri","TRUE","","27474","325.5","29099","Jefferson","{""29099"": ""100""}","Jefferson","29099","FALSE","FALSE","America/Chicago"
-"63053","38.3666","-90.36394","Kimmswick","MO","Missouri","TRUE","","70","1067.7","29099","Jefferson","{""29099"": ""100""}","Jefferson","29099","FALSE","FALSE","America/Chicago"
-"63055","38.53293","-90.83396","Labadie","MO","Missouri","TRUE","","2872","40.3","29071","Franklin","{""29071"": ""100""}","Franklin","29071","FALSE","FALSE","America/Chicago"
-"63056","38.38981","-91.21711","Leslie","MO","Missouri","TRUE","","1857","12.3","29071","Franklin","{""29071"": ""100""}","Franklin","29071","FALSE","FALSE","America/Chicago"
-"63057","38.34327","-90.40565","Liguori","MO","Missouri","TRUE","","65","496.4","29099","Jefferson","{""29099"": ""100""}","Jefferson","29099","FALSE","FALSE","America/Chicago"
-"63060","38.25889","-90.86722","Lonedell","MO","Missouri","TRUE","","2111","17.1","29071","Franklin","{""29071"": ""100""}","Franklin","29071","FALSE","FALSE","America/Chicago"
-"63061","38.26989","-90.81533","Luebbering","MO","Missouri","TRUE","","190","35.2","29071","Franklin","{""29071"": ""100""}","Franklin","29071","FALSE","FALSE","America/Chicago"
-"63068","38.55697","-91.24177","New Haven","MO","Missouri","TRUE","","4986","21.3","29071","Franklin","{""29071"": ""98.47"", ""29073"": ""1.53""}","Franklin|Gasconade","29071|29073","FALSE","FALSE","America/Chicago"
-"63069","38.48979","-90.7304","Pacific","MO","Missouri","TRUE","","14872","83.1","29071","Franklin","{""29071"": ""66.21"", ""29189"": ""20.73"", ""29099"": ""13.06""}","Franklin|St. Louis|Jefferson","29071|29189|29099","FALSE","FALSE","America/Chicago"
-"63070","38.28374","-90.42141","Pevely","MO","Missouri","TRUE","","8169","231.7","29099","Jefferson","{""29099"": ""100""}","Jefferson","29099","FALSE","FALSE","America/Chicago"
-"63071","38.15171","-90.82487","Richwoods","MO","Missouri","TRUE","","1150","11.2","29221","Washington","{""29221"": ""100""}","Washington","29221","FALSE","FALSE","America/Chicago"
-"63072","38.36885","-90.81344","Robertsville","MO","Missouri","TRUE","","4150","38.8","29071","Franklin","{""29071"": ""95.8"", ""29099"": ""4.2""}","Franklin|Jefferson","29071|29099","FALSE","FALSE","America/Chicago"
-"63073","38.59357","-90.76811","Saint Albans","MO","Missouri","TRUE","","798","44.5","29071","Franklin","{""29071"": ""100""}","Franklin","29071","FALSE","FALSE","America/Chicago"
-"63074","38.7265","-90.3887","Saint Ann","MO","Missouri","TRUE","","15338","1541.6","29189","St. Louis","{""29189"": ""100""}","St. Louis","29189","FALSE","FALSE","America/Chicago"
-"63077","38.32711","-90.98631","Saint Clair","MO","Missouri","TRUE","","11004","49.0","29071","Franklin","{""29071"": ""100""}","Franklin","29071","FALSE","FALSE","America/Chicago"
-"63079","38.26058","-91.09978","Stanton","MO","Missouri","TRUE","","27","12.2","29071","Franklin","{""29071"": ""100""}","Franklin","29071","FALSE","FALSE","America/Chicago"
-"63080","38.20374","-91.08459","Sullivan","MO","Missouri","TRUE","","13389","19.8","29071","Franklin","{""29071"": ""76.3"", ""29055"": ""14.96"", ""29221"": ""8.74""}","Franklin|Crawford|Washington","29071|29055|29221","FALSE","FALSE","America/Chicago"
-"63084","38.41787","-91.01283","Union","MO","Missouri","TRUE","","19186","98.6","29071","Franklin","{""29071"": ""100""}","Franklin","29071","FALSE","FALSE","America/Chicago"
-"63087","38.0131","-90.45368","Valles Mines","MO","Missouri","TRUE","","789","23.0","29187","St. Francois","{""29187"": ""91.81"", ""29099"": ""8.19""}","St. Francois|Jefferson","29187|29099","FALSE","FALSE","America/Chicago"
-"63088","38.54766","-90.50325","Valley Park","MO","Missouri","TRUE","","8526","586.8","29189","St. Louis","{""29189"": ""100""}","St. Louis","29189","FALSE","FALSE","America/Chicago"
-"63089","38.45952","-90.88385","Villa Ridge","MO","Missouri","TRUE","","5506","58.6","29071","Franklin","{""29071"": ""100""}","Franklin","29071","FALSE","FALSE","America/Chicago"
-"63090","38.53098","-91.04846","Washington","MO","Missouri","TRUE","","22463","106.2","29071","Franklin","{""29071"": ""100""}","Franklin","29071","FALSE","FALSE","America/Chicago"
-"63091","38.36803","-91.39035","Rosebud","MO","Missouri","TRUE","","1472","11.8","29073","Gasconade","{""29073"": ""86.95"", ""29071"": ""13.05""}","Gasconade|Franklin","29073|29071","FALSE","FALSE","America/Chicago"
-"63101","38.63153","-90.19255","Saint Louis","MO","Missouri","TRUE","","3725","3808.7","29510","St. Louis","{""29510"": ""100""}","St. Louis","29510","FALSE","FALSE","America/Chicago"
-"63102","38.63524","-90.18643","Saint Louis","MO","Missouri","TRUE","","2193","593.6","29510","St. Louis","{""29510"": ""100""}","St. Louis","29510","FALSE","FALSE","America/Chicago"
-"63103","38.62975","-90.21682","Saint Louis","MO","Missouri","TRUE","","8893","1590.2","29510","St. Louis","{""29510"": ""100""}","St. Louis","29510","FALSE","FALSE","America/Chicago"
-"63104","38.61073","-90.21263","Saint Louis","MO","Missouri","TRUE","","19565","2186.1","29510","St. Louis","{""29510"": ""100""}","St. Louis","29510","FALSE","FALSE","America/Chicago"
-"63105","38.64432","-90.32833","Saint Louis","MO","Missouri","TRUE","","18574","2686.4","29189","St. Louis","{""29189"": ""94.03"", ""29510"": ""5.97""}","St. Louis|St. Louis","29189|29510","FALSE","FALSE","America/Chicago"
-"63106","38.64445","-90.20839","Saint Louis","MO","Missouri","TRUE","","10624","1818.5","29510","St. Louis","{""29510"": ""100""}","St. Louis","29510","FALSE","FALSE","America/Chicago"
-"63107","38.66386","-90.21208","Saint Louis","MO","Missouri","TRUE","","9252","1487.8","29510","St. Louis","{""29510"": ""100""}","St. Louis","29510","FALSE","FALSE","America/Chicago"
-"63108","38.64481","-90.25354","Saint Louis","MO","Missouri","TRUE","","20564","3544.3","29510","St. Louis","{""29510"": ""100""}","St. Louis","29510","FALSE","FALSE","America/Chicago"
-"63109","38.58455","-90.2958","Saint Louis","MO","Missouri","TRUE","","26983","2917.7","29510","St. Louis","{""29510"": ""100""}","St. Louis","29510","FALSE","FALSE","America/Chicago"
-"63110","38.62583","-90.26695","Saint Louis","MO","Missouri","TRUE","","17313","1067.4","29510","St. Louis","{""29510"": ""100""}","St. Louis","29510","FALSE","FALSE","America/Chicago"
-"63111","38.55822","-90.25004","Saint Louis","MO","Missouri","TRUE","","21389","2548.8","29510","St. Louis","{""29510"": ""100""}","St. Louis","29510","FALSE","FALSE","America/Chicago"
-"63112","38.65892","-90.28272","Saint Louis","MO","Missouri","TRUE","","17745","2071.1","29510","St. Louis","{""29510"": ""100""}","St. Louis","29510","FALSE","FALSE","America/Chicago"
-"63113","38.65798","-90.24757","Saint Louis","MO","Missouri","TRUE","","11610","1764.5","29510","St. Louis","{""29510"": ""100""}","St. Louis","29510","FALSE","FALSE","America/Chicago"
-"63114","38.70221","-90.36262","Saint Louis","MO","Missouri","TRUE","","35005","1532.2","29189","St. Louis","{""29189"": ""100""}","St. Louis","29189","FALSE","FALSE","America/Chicago"
-"63115","38.68224","-90.23993","Saint Louis","MO","Missouri","TRUE","","17710","1603.6","29510","St. Louis","{""29510"": ""100""}","St. Louis","29510","FALSE","FALSE","America/Chicago"
-"63116","38.58038","-90.26455","Saint Louis","MO","Missouri","TRUE","","43897","3078.8","29510","St. Louis","{""29510"": ""100""}","St. Louis","29510","FALSE","FALSE","America/Chicago"
-"63117","38.63085","-90.33107","Saint Louis","MO","Missouri","TRUE","","9071","1492.6","29189","St. Louis","{""29189"": ""93.52"", ""29510"": ""6.48""}","St. Louis|St. Louis","29189|29510","FALSE","FALSE","America/Chicago"
-"63118","38.59232","-90.22565","Saint Louis","MO","Missouri","TRUE","","27817","3201.9","29510","St. Louis","{""29510"": ""100""}","St. Louis","29510","FALSE","FALSE","America/Chicago"
-"63119","38.58847","-90.35134","Saint Louis","MO","Missouri","TRUE","","34141","1567.3","29189","St. Louis","{""29189"": ""99.06"", ""29510"": ""0.94""}","St. Louis|St. Louis","29189|29510","FALSE","FALSE","America/Chicago"
-"63120","38.69056","-90.26212","Saint Louis","MO","Missouri","TRUE","","8754","1401.2","29510","St. Louis","{""29510"": ""88.48"", ""29189"": ""11.52""}","St. Louis|St. Louis","29510|29189","FALSE","FALSE","America/Chicago"
-"63121","38.70721","-90.30136","Saint Louis","MO","Missouri","TRUE","","23561","1268.1","29189","St. Louis","{""29189"": ""100""}","St. Louis","29189","FALSE","FALSE","America/Chicago"
-"63122","38.57921","-90.42014","Saint Louis","MO","Missouri","TRUE","","39165","1070.8","29189","St. Louis","{""29189"": ""100""}","St. Louis","29189","FALSE","FALSE","America/Chicago"
-"63123","38.54892","-90.32756","Saint Louis","MO","Missouri","TRUE","","50783","1564.5","29189","St. Louis","{""29189"": ""95.43"", ""29510"": ""4.57""}","St. Louis|St. Louis","29189|29510","FALSE","FALSE","America/Chicago"
-"63124","38.63804","-90.38036","Saint Louis","MO","Missouri","TRUE","","10775","475.0","29189","St. Louis","{""29189"": ""100""}","St. Louis","29189","FALSE","FALSE","America/Chicago"
-"63125","38.51852","-90.29285","Saint Louis","MO","Missouri","TRUE","","32826","1276.1","29189","St. Louis","{""29189"": ""98.89"", ""29510"": ""1.11""}","St. Louis|St. Louis","29189|29510","FALSE","FALSE","America/Chicago"
-"63126","38.54966","-90.37863","Saint Louis","MO","Missouri","TRUE","","14646","1218.6","29189","St. Louis","{""29189"": ""100""}","St. Louis","29189","FALSE","FALSE","America/Chicago"
-"63127","38.53325","-90.41347","Saint Louis","MO","Missouri","TRUE","","5039","310.4","29189","St. Louis","{""29189"": ""100""}","St. Louis","29189","FALSE","FALSE","America/Chicago"
-"63128","38.49296","-90.38213","Saint Louis","MO","Missouri","TRUE","","30023","772.3","29189","St. Louis","{""29189"": ""100""}","St. Louis","29189","FALSE","FALSE","America/Chicago"
-"63129","38.45578","-90.32196","Saint Louis","MO","Missouri","TRUE","","52975","980.8","29189","St. Louis","{""29189"": ""100""}","St. Louis","29189","FALSE","FALSE","America/Chicago"
-"63130","38.665","-90.32528","Saint Louis","MO","Missouri","TRUE","","28738","2206.1","29189","St. Louis","{""29189"": ""98.79"", ""29510"": ""1.21""}","St. Louis|St. Louis","29189|29510","FALSE","FALSE","America/Chicago"
-"63131","38.61747","-90.4442","Saint Louis","MO","Missouri","TRUE","","17872","496.8","29189","St. Louis","{""29189"": ""100""}","St. Louis","29189","FALSE","FALSE","America/Chicago"
-"63132","38.676","-90.37796","Saint Louis","MO","Missouri","TRUE","","13378","981.3","29189","St. Louis","{""29189"": ""100""}","St. Louis","29189","FALSE","FALSE","America/Chicago"
-"63133","38.68092","-90.30597","Saint Louis","MO","Missouri","TRUE","","7365","951.7","29189","St. Louis","{""29189"": ""98.22"", ""29510"": ""1.78""}","St. Louis|St. Louis","29189|29510","FALSE","FALSE","America/Chicago"
-"63134","38.7434","-90.34563","Saint Louis","MO","Missouri","TRUE","","13704","643.4","29189","St. Louis","{""29189"": ""100""}","St. Louis","29189","FALSE","FALSE","America/Chicago"
-"63135","38.75007","-90.299","Saint Louis","MO","Missouri","TRUE","","22450","1382.3","29189","St. Louis","{""29189"": ""100""}","St. Louis","29189","FALSE","FALSE","America/Chicago"
-"63136","38.74332","-90.25979","Saint Louis","MO","Missouri","TRUE","","44382","1619.2","29189","St. Louis","{""29189"": ""93.01"", ""29510"": ""6.99""}","St. Louis|St. Louis","29189|29510","FALSE","FALSE","America/Chicago"
-"63137","38.75052","-90.21123","Saint Louis","MO","Missouri","TRUE","","20097","1058.8","29189","St. Louis","{""29189"": ""94.65"", ""29510"": ""5.35""}","St. Louis|St. Louis","29189|29510","FALSE","FALSE","America/Chicago"
-"63138","38.79965","-90.1823","Saint Louis","MO","Missouri","TRUE","","18226","383.4","29189","St. Louis","{""29189"": ""100""}","St. Louis","29189","FALSE","FALSE","America/Chicago"
-"63139","38.61043","-90.29174","Saint Louis","MO","Missouri","TRUE","","21874","2170.4","29510","St. Louis","{""29510"": ""100""}","St. Louis","29510","FALSE","FALSE","America/Chicago"
-"63140","38.7385","-90.32312","Saint Louis","MO","Missouri","TRUE","","327","250.9","29189","St. Louis","{""29189"": ""100""}","St. Louis","29189","FALSE","FALSE","America/Chicago"
-"63141","38.65831","-90.45818","Saint Louis","MO","Missouri","TRUE","","20411","559.5","29189","St. Louis","{""29189"": ""100""}","St. Louis","29189","FALSE","FALSE","America/Chicago"
-"63143","38.61125","-90.32018","Saint Louis","MO","Missouri","TRUE","","9536","1861.4","29189","St. Louis","{""29189"": ""82.83"", ""29510"": ""17.17""}","St. Louis|St. Louis","29189|29510","FALSE","FALSE","America/Chicago"
-"63144","38.61908","-90.34765","Saint Louis","MO","Missouri","TRUE","","8712","1436.6","29189","St. Louis","{""29189"": ""100""}","St. Louis","29189","FALSE","FALSE","America/Chicago"
-"63146","38.69842","-90.47332","Saint Louis","MO","Missouri","TRUE","","30515","845.1","29189","St. Louis","{""29189"": ""100""}","St. Louis","29189","FALSE","FALSE","America/Chicago"
-"63147","38.69547","-90.21591","Saint Louis","MO","Missouri","TRUE","","9214","608.9","29510","St. Louis","{""29510"": ""100""}","St. Louis","29510","FALSE","FALSE","America/Chicago"
-"63155","38.62788","-90.20545","Saint Louis","MO","Missouri","TRUE","","0","0.0","29510","St. Louis","{""29510"": ""0""}","St. Louis","29510","FALSE","FALSE","America/Chicago"
-"63301","38.86333","-90.46736","Saint Charles","MO","Missouri","TRUE","","51199","223.6","29183","St. Charles","{""29183"": ""100""}","St. Charles","29183","FALSE","FALSE","America/Chicago"
-"63303","38.74008","-90.54291","Saint Charles","MO","Missouri","TRUE","","48363","942.0","29183","St. Charles","{""29183"": ""100""}","St. Charles","29183","FALSE","FALSE","America/Chicago"
-"63304","38.70613","-90.66519","Saint Charles","MO","Missouri","TRUE","","41223","380.0","29183","St. Charles","{""29183"": ""100""}","St. Charles","29183","FALSE","FALSE","America/Chicago"
-"63330","39.2707","-90.80655","Annada","MO","Missouri","TRUE","","147","1.9","29163","Pike","{""29163"": ""100""}","Pike","29163","FALSE","FALSE","America/Chicago"
-"63332","38.59699","-90.89033","Augusta","MO","Missouri","TRUE","","1231","8.8","29183","St. Charles","{""29183"": ""100""}","St. Charles","29183","FALSE","FALSE","America/Chicago"
-"63333","39.03672","-91.31596","Bellflower","MO","Missouri","TRUE","","850","7.5","29139","Montgomery","{""29139"": ""98.6"", ""29113"": ""1.4""}","Montgomery|Lincoln","29139|29113","FALSE","FALSE","America/Chicago"
-"63334","39.30166","-91.18781","Bowling Green","MO","Missouri","TRUE","","8882","19.7","29163","Pike","{""29163"": ""99.04"", ""29113"": ""0.96""}","Pike|Lincoln","29163|29113","FALSE","FALSE","America/Chicago"
-"63336","39.3362","-90.94666","Clarksville","MO","Missouri","TRUE","","1242","6.6","29163","Pike","{""29163"": ""100""}","Pike","29163","FALSE","FALSE","America/Chicago"
-"63339","39.3442","-91.37329","Curryville","MO","Missouri","TRUE","","978","4.5","29163","Pike","{""29163"": ""100""}","Pike","29163","FALSE","FALSE","America/Chicago"
-"63341","38.67431","-90.81188","Defiance","MO","Missouri","TRUE","","3595","25.3","29183","St. Charles","{""29183"": ""100""}","St. Charles","29183","FALSE","FALSE","America/Chicago"
-"63343","39.15854","-90.82799","Elsberry","MO","Missouri","TRUE","","4703","16.4","29113","Lincoln","{""29113"": ""98.94"", ""29163"": ""1.06""}","Lincoln|Pike","29113|29163","FALSE","FALSE","America/Chicago"
-"63344","39.23691","-91.00429","Eolia","MO","Missouri","TRUE","","1354","6.7","29163","Pike","{""29163"": ""69.75"", ""29113"": ""30.25""}","Pike|Lincoln","29163|29113","FALSE","FALSE","America/Chicago"
-"63345","39.27807","-91.57134","Farber","MO","Missouri","TRUE","","737","13.8","29007","Audrain","{""29007"": ""100""}","Audrain","29007","FALSE","FALSE","America/Chicago"
-"63347","39.07093","-90.76701","Foley","MO","Missouri","TRUE","","2508","25.7","29113","Lincoln","{""29113"": ""100""}","Lincoln","29113","FALSE","FALSE","America/Chicago"
-"63348","38.79301","-90.9427","Foristell","MO","Missouri","TRUE","","7601","54.8","29183","St. Charles","{""29183"": ""65.69"", ""29219"": ""29.63"", ""29113"": ""4.69""}","St. Charles|Warren|Lincoln","29183|29219|29113","FALSE","FALSE","America/Chicago"
-"63349","38.97755","-91.15308","Hawk Point","MO","Missouri","TRUE","","2276","24.4","29113","Lincoln","{""29113"": ""97.67"", ""29219"": ""2.33""}","Lincoln|Warren","29113|29219","FALSE","FALSE","America/Chicago"
-"63350","38.89938","-91.36097","High Hill","MO","Missouri","TRUE","","479","7.7","29139","Montgomery","{""29139"": ""100""}","Montgomery","29139","FALSE","FALSE","America/Chicago"
-"63351","38.86243","-91.31372","Jonesburg","MO","Missouri","TRUE","","1899","13.3","29139","Montgomery","{""29139"": ""67.93"", ""29219"": ""32.07""}","Montgomery|Warren","29139|29219","FALSE","FALSE","America/Chicago"
-"63352","39.25132","-91.65402","Laddonia","MO","Missouri","TRUE","","1180","4.3","29007","Audrain","{""29007"": ""94.81"", ""29173"": ""5.19""}","Audrain|Ralls","29007|29173","FALSE","FALSE","America/Chicago"
-"63353","39.44689","-91.12198","Louisiana","MO","Missouri","TRUE","","4770","21.8","29163","Pike","{""29163"": ""100""}","Pike","29163","FALSE","FALSE","America/Chicago"
-"63357","38.65857","-91.09595","Marthasville","MO","Missouri","TRUE","","6026","18.3","29219","Warren","{""29219"": ""94.36"", ""29183"": ""5.64""}","Warren|St. Charles","29219|29183","FALSE","FALSE","America/Chicago"
-"63359","39.15548","-91.34908","Middletown","MO","Missouri","TRUE","","1423","3.9","29139","Montgomery","{""29139"": ""49"", ""29163"": ""44.29"", ""29007"": ""4.01"", ""29113"": ""2.7""}","Montgomery|Pike|Audrain|Lincoln","29139|29163|29007|29113","FALSE","FALSE","America/Chicago"
-"63361","38.96251","-91.55447","Montgomery City","MO","Missouri","TRUE","","4212","10.2","29139","Montgomery","{""29139"": ""94.12"", ""29027"": ""5.88""}","Montgomery|Callaway","29139|29027","FALSE","FALSE","America/Chicago"
-"63362","38.93213","-90.88017","Moscow Mills","MO","Missouri","TRUE","","7604","79.7","29113","Lincoln","{""29113"": ""100""}","Lincoln","29113","FALSE","FALSE","America/Chicago"
-"63363","38.88612","-91.45602","New Florence","MO","Missouri","TRUE","","1926","8.5","29139","Montgomery","{""29139"": ""93.89"", ""29219"": ""6.11""}","Montgomery|Warren","29139|29219","FALSE","FALSE","America/Chicago"
-"63366","38.85944","-90.72026","O'Fallon","MO","Missouri","TRUE","","50402","283.2","29183","St. Charles","{""29183"": ""100""}","St. Charles","29183","FALSE","FALSE","America/Chicago"
-"63367","38.77781","-90.79558","Lake Saint Louis","MO","Missouri","TRUE","","25283","729.6","29183","St. Charles","{""29183"": ""100""}","St. Charles","29183","FALSE","FALSE","America/Chicago"
-"63368","38.75126","-90.72957","O'Fallon","MO","Missouri","TRUE","","45668","1070.0","29183","St. Charles","{""29183"": ""100""}","St. Charles","29183","FALSE","FALSE","America/Chicago"
-"63369","38.93958","-90.76506","Old Monroe","MO","Missouri","TRUE","","2278","27.2","29113","Lincoln","{""29113"": ""100""}","Lincoln","29113","FALSE","FALSE","America/Chicago"
-"63370","39.09021","-91.24057","Olney","MO","Missouri","TRUE","","13","20.8","29113","Lincoln","{""29113"": ""100""}","Lincoln","29113","FALSE","FALSE","America/Chicago"
-"63373","38.92999","-90.39297","Portage Des Sioux","MO","Missouri","TRUE","","607","14.1","29183","St. Charles","{""29183"": ""100""}","St. Charles","29183","FALSE","FALSE","America/Chicago"
-"63376","38.79989","-90.61738","Saint Peters","MO","Missouri","TRUE","","75395","701.1","29183","St. Charles","{""29183"": ""100""}","St. Charles","29183","FALSE","FALSE","America/Chicago"
-"63377","39.11037","-91.1037","Silex","MO","Missouri","TRUE","","2625","7.7","29113","Lincoln","{""29113"": ""100""}","Lincoln","29113","FALSE","FALSE","America/Chicago"
-"63379","38.99816","-90.9888","Troy","MO","Missouri","TRUE","","25387","72.3","29113","Lincoln","{""29113"": ""100""}","Lincoln","29113","FALSE","FALSE","America/Chicago"
-"63381","38.98402","-91.25447","Truxton","MO","Missouri","TRUE","","566","8.1","29219","Warren","{""29219"": ""42.29"", ""29113"": ""37.97"", ""29139"": ""19.74""}","Warren|Lincoln|Montgomery","29219|29113|29139","FALSE","FALSE","America/Chicago"
-"63382","39.30535","-91.49609","Vandalia","MO","Missouri","TRUE","","4962","16.6","29007","Audrain","{""29007"": ""92.83"", ""29173"": ""5.9"", ""29163"": ""1.27""}","Audrain|Ralls|Pike","29007|29173|29163","FALSE","FALSE","America/Chicago"
-"63383","38.80634","-91.19086","Warrenton","MO","Missouri","TRUE","","15643","38.1","29219","Warren","{""29219"": ""98.9"", ""29113"": ""1.1""}","Warren|Lincoln","29219|29113","FALSE","FALSE","America/Chicago"
-"63384","39.09236","-91.56","Wellsville","MO","Missouri","TRUE","","1754","8.1","29139","Montgomery","{""29139"": ""94.53"", ""29007"": ""5.06"", ""29027"": ""0.41""}","Montgomery|Audrain|Callaway","29139|29007|29027","FALSE","FALSE","America/Chicago"
-"63385","38.79705","-90.85754","Wentzville","MO","Missouri","TRUE","","44844","258.4","29183","St. Charles","{""29183"": ""100""}","St. Charles","29183","FALSE","FALSE","America/Chicago"
-"63386","38.86962","-90.21517","West Alton","MO","Missouri","TRUE","","411","5.1","29183","St. Charles","{""29183"": ""100""}","St. Charles","29183","FALSE","FALSE","America/Chicago"
-"63387","39.18393","-91.01656","Whiteside","MO","Missouri","TRUE","","70","289.7","29113","Lincoln","{""29113"": ""100""}","Lincoln","29113","FALSE","FALSE","America/Chicago"
-"63388","38.88769","-91.74286","Williamsburg","MO","Missouri","TRUE","","540","3.4","29027","Callaway","{""29027"": ""100""}","Callaway","29027","FALSE","FALSE","America/Chicago"
-"63389","39.0052","-90.77884","Winfield","MO","Missouri","TRUE","","6987","66.5","29113","Lincoln","{""29113"": ""100""}","Lincoln","29113","FALSE","FALSE","America/Chicago"
-"63390","38.80673","-91.04079","Wright City","MO","Missouri","TRUE","","11206","56.2","29219","Warren","{""29219"": ""90.27"", ""29113"": ""9.73""}","Warren|Lincoln","29219|29113","FALSE","FALSE","America/Chicago"
-"63401","39.69234","-91.45656","Hannibal","MO","Missouri","TRUE","","22048","81.6","29127","Marion","{""29127"": ""88.84"", ""29173"": ""11.16""}","Marion|Ralls","29127|29173","FALSE","FALSE","America/Chicago"
-"63430","40.38961","-91.5404","Alexandria","MO","Missouri","TRUE","","751","5.5","29045","Clark","{""29045"": ""100""}","Clark","29045","FALSE","FALSE","America/Chicago"
-"63431","39.74409","-92.32712","Anabel","MO","Missouri","TRUE","","229","1.9","29121","Macon","{""29121"": ""100""}","Macon","29121","FALSE","FALSE","America/Chicago"
-"63432","40.50059","-91.99888","Arbela","MO","Missouri","TRUE","","532","2.3","29199","Scotland","{""29199"": ""92.2"", ""29045"": ""7.8""}","Scotland|Clark","29199|29045","FALSE","FALSE","America/Chicago"
-"63433","39.53296","-91.13169","Ashburn","MO","Missouri","TRUE","","0","0.0","29163","Pike","{""29163"": ""100""}","Pike","29163","FALSE","FALSE","America/Chicago"
-"63434","39.90679","-91.95009","Bethel","MO","Missouri","TRUE","","661","4.0","29205","Shelby","{""29205"": ""100""}","Shelby","29205","FALSE","FALSE","America/Chicago"
-"63435","40.20545","-91.58375","Canton","MO","Missouri","TRUE","","4146","11.4","29111","Lewis","{""29111"": ""90.87"", ""29045"": ""9.13""}","Lewis|Clark","29111|29045","FALSE","FALSE","America/Chicago"
-"63436","39.50658","-91.54663","Center","MO","Missouri","TRUE","","1522","7.0","29173","Ralls","{""29173"": ""100""}","Ralls","29173","FALSE","FALSE","America/Chicago"
-"63437","39.7318","-92.2372","Clarence","MO","Missouri","TRUE","","1519","4.7","29205","Shelby","{""29205"": ""95.54"", ""29137"": ""2.26"", ""29121"": ""2.2""}","Shelby|Monroe|Macon","29205|29137|29121","FALSE","FALSE","America/Chicago"
-"63438","39.96113","-91.68647","Durham","MO","Missouri","TRUE","","309","8.6","29111","Lewis","{""29111"": ""76.61"", ""29127"": ""23.39""}","Lewis|Marion","29111|29127","FALSE","FALSE","America/Chicago"
-"63439","39.80197","-91.86059","Emden","MO","Missouri","TRUE","","221","4.2","29205","Shelby","{""29205"": ""74.02"", ""29127"": ""25.98""}","Shelby|Marion","29205|29127","FALSE","FALSE","America/Chicago"
-"63440","39.97682","-91.75183","Ewing","MO","Missouri","TRUE","","968","4.2","29111","Lewis","{""29111"": ""88.42"", ""29127"": ""10.52"", ""29205"": ""1.07""}","Lewis|Marion|Shelby","29111|29127|29205","FALSE","FALSE","America/Chicago"
-"63441","39.47846","-91.30956","Frankford","MO","Missouri","TRUE","","1000","4.3","29163","Pike","{""29163"": ""94.11"", ""29173"": ""5.89""}","Pike|Ralls","29163|29173","FALSE","FALSE","America/Chicago"
-"63443","39.6686","-91.86797","Hunnewell","MO","Missouri","TRUE","","224","1.8","29205","Shelby","{""29205"": ""59.32"", ""29137"": ""26.82"", ""29127"": ""13.86""}","Shelby|Monroe|Marion","29205|29137|29127","FALSE","FALSE","America/Chicago"
-"63445","40.39883","-91.72564","Kahoka","MO","Missouri","TRUE","","3457","8.0","29045","Clark","{""29045"": ""100""}","Clark","29045","FALSE","FALSE","America/Chicago"
-"63446","40.13623","-92.00384","Knox City","MO","Missouri","TRUE","","656","2.3","29103","Knox","{""29103"": ""96.53"", ""29111"": ""3.47""}","Knox|Lewis","29103|29111","FALSE","FALSE","America/Chicago"
-"63447","40.09495","-91.90277","La Belle","MO","Missouri","TRUE","","1270","5.8","29111","Lewis","{""29111"": ""100""}","Lewis","29111","FALSE","FALSE","America/Chicago"
-"63448","40.02694","-91.55354","La Grange","MO","Missouri","TRUE","","1440","11.3","29111","Lewis","{""29111"": ""100""}","Lewis","29111","FALSE","FALSE","America/Chicago"
-"63450","39.67125","-92.14849","Lentner","MO","Missouri","TRUE","","159","2.4","29205","Shelby","{""29205"": ""84.85"", ""29137"": ""15.15""}","Shelby|Monroe","29205|29137","FALSE","FALSE","America/Chicago"
-"63451","39.90604","-92.20448","Leonard","MO","Missouri","TRUE","","199","1.3","29205","Shelby","{""29205"": ""100""}","Shelby","29205","FALSE","FALSE","America/Chicago"
-"63452","40.09119","-91.78605","Lewistown","MO","Missouri","TRUE","","1522","6.1","29111","Lewis","{""29111"": ""100""}","Lewis","29111","FALSE","FALSE","America/Chicago"
-"63453","40.50431","-91.87111","Luray","MO","Missouri","TRUE","","578","3.7","29045","Clark","{""29045"": ""100""}","Clark","29045","FALSE","FALSE","America/Chicago"
-"63454","39.92671","-91.64758","Maywood","MO","Missouri","TRUE","","1119","11.4","29127","Marion","{""29127"": ""61.1"", ""29111"": ""38.9""}","Marion|Lewis","29127|29111","FALSE","FALSE","America/Chicago"
-"63456","39.65585","-91.72648","Monroe City","MO","Missouri","TRUE","","4362","9.1","29137","Monroe","{""29137"": ""57.06"", ""29127"": ""26.72"", ""29173"": ""16.23""}","Monroe|Marion|Ralls","29137|29127|29173","FALSE","FALSE","America/Chicago"
-"63457","40.16591","-91.70263","Monticello","MO","Missouri","TRUE","","265","3.0","29111","Lewis","{""29111"": ""100""}","Lewis","29111","FALSE","FALSE","America/Chicago"
-"63458","39.99237","-92.02156","Newark","MO","Missouri","TRUE","","101","1.3","29103","Knox","{""29103"": ""100""}","Knox","29103","FALSE","FALSE","America/Chicago"
-"63459","39.58146","-91.37768","New London","MO","Missouri","TRUE","","3850","10.7","29173","Ralls","{""29173"": ""98.72"", ""29163"": ""1.28""}","Ralls|Pike","29173|29163","FALSE","FALSE","America/Chicago"
-"63460","39.99864","-92.21186","Novelty","MO","Missouri","TRUE","","323","1.5","29103","Knox","{""29103"": ""100""}","Knox","29103","FALSE","FALSE","America/Chicago"
-"63461","39.79798","-91.55773","Palmyra","MO","Missouri","TRUE","","5668","13.8","29127","Marion","{""29127"": ""100""}","Marion","29127","FALSE","FALSE","America/Chicago"
-"63462","39.42545","-91.69914","Perry","MO","Missouri","TRUE","","1512","4.8","29173","Ralls","{""29173"": ""87.11"", ""29137"": ""12.89""}","Ralls|Monroe","29173|29137","FALSE","FALSE","America/Chicago"
-"63463","39.84514","-91.76016","Philadelphia","MO","Missouri","TRUE","","726","5.9","29127","Marion","{""29127"": ""100""}","Marion","29127","FALSE","FALSE","America/Chicago"
-"63465","40.51716","-91.67529","Revere","MO","Missouri","TRUE","","242","2.1","29045","Clark","{""29045"": ""100""}","Clark","29045","FALSE","FALSE","America/Chicago"
-"63467","39.64859","-91.27085","Saverton","MO","Missouri","TRUE","","32","63.1","29173","Ralls","{""29173"": ""100""}","Ralls","29173","FALSE","FALSE","America/Chicago"
-"63468","39.68063","-92.01349","Shelbina","MO","Missouri","TRUE","","2467","6.8","29205","Shelby","{""29205"": ""88.43"", ""29137"": ""11.57""}","Shelby|Monroe","29205|29137","FALSE","FALSE","America/Chicago"
-"63469","39.83348","-92.04297","Shelbyville","MO","Missouri","TRUE","","1089","3.2","29205","Shelby","{""29205"": ""99.33"", ""29103"": ""0.67""}","Shelby|Knox","29205|29103","FALSE","FALSE","America/Chicago"
-"63471","39.92478","-91.50729","Taylor","MO","Missouri","TRUE","","642","5.1","29127","Marion","{""29127"": ""90.61"", ""29111"": ""9.39""}","Marion|Lewis","29127|29111","FALSE","FALSE","America/Chicago"
-"63472","40.40016","-91.58422","Wayland","MO","Missouri","TRUE","","629","105.2","29045","Clark","{""29045"": ""100""}","Clark","29045","FALSE","FALSE","America/Chicago"
-"63473","40.24913","-91.78521","Williamstown","MO","Missouri","TRUE","","272","1.5","29111","Lewis","{""29111"": ""63.74"", ""29045"": ""36.26""}","Lewis|Clark","29111|29045","FALSE","FALSE","America/Chicago"
-"63474","40.35129","-91.89949","Wyaconda","MO","Missouri","TRUE","","376","2.2","29045","Clark","{""29045"": ""94.99"", ""29199"": ""5.01""}","Clark|Scotland","29045|29199","FALSE","FALSE","America/Chicago"
-"63501","40.16727","-92.59033","Kirksville","MO","Missouri","TRUE","","20954","39.4","29001","Adair","{""29001"": ""100""}","Adair","29001","FALSE","FALSE","America/Chicago"
-"63530","39.90545","-92.45446","Atlanta","MO","Missouri","TRUE","","1196","4.6","29121","Macon","{""29121"": ""100""}","Macon","29121","FALSE","FALSE","America/Chicago"
-"63531","40.29939","-92.25034","Baring","MO","Missouri","TRUE","","351","1.6","29103","Knox","{""29103"": ""68.05"", ""29199"": ""31.95""}","Knox|Scotland","29103|29199","FALSE","FALSE","America/Chicago"
-"63532","39.76086","-92.57343","Bevier","MO","Missouri","TRUE","","1300","9.8","29121","Macon","{""29121"": ""100""}","Macon","29121","FALSE","FALSE","America/Chicago"
-"63533","40.20497","-92.39463","Brashear","MO","Missouri","TRUE","","682","4.0","29001","Adair","{""29001"": ""98.88"", ""29103"": ""1.12""}","Adair|Knox","29001|29103","FALSE","FALSE","America/Chicago"
-"63534","39.74492","-92.64731","Callao","MO","Missouri","TRUE","","823","4.3","29121","Macon","{""29121"": ""100""}","Macon","29121","FALSE","FALSE","America/Chicago"
-"63535","40.56892","-92.65856","Coatsville","MO","Missouri","TRUE","","101","1.5","29197","Schuyler","{""29197"": ""87.72"", ""29171"": ""12.28""}","Schuyler|Putnam","29197|29171","FALSE","FALSE","America/Chicago"
-"63536","40.49056","-92.35914","Downing","MO","Missouri","TRUE","","1090","5.6","29197","Schuyler","{""29197"": ""81.2"", ""29199"": ""18.8""}","Schuyler|Scotland","29197|29199","FALSE","FALSE","America/Chicago"
-"63537","40.14854","-92.16016","Edina","MO","Missouri","TRUE","","2042","6.0","29103","Knox","{""29103"": ""100""}","Knox","29103","FALSE","FALSE","America/Chicago"
-"63538","39.9544","-92.67004","Elmer","MO","Missouri","TRUE","","370","2.5","29121","Macon","{""29121"": ""100""}","Macon","29121","FALSE","FALSE","America/Chicago"
-"63539","39.91479","-92.75527","Ethel","MO","Missouri","TRUE","","217","1.9","29121","Macon","{""29121"": ""100""}","Macon","29121","FALSE","FALSE","America/Chicago"
-"63540","40.10398","-92.40659","Gibbs","MO","Missouri","TRUE","","111","4.9","29001","Adair","{""29001"": ""100""}","Adair","29001","FALSE","FALSE","America/Chicago"
-"63541","40.50356","-92.62973","Glenwood","MO","Missouri","TRUE","","527","5.3","29197","Schuyler","{""29197"": ""100""}","Schuyler","29197","FALSE","FALSE","America/Chicago"
-"63543","40.35696","-92.00855","Gorin","MO","Missouri","TRUE","","291","2.9","29199","Scotland","{""29199"": ""100""}","Scotland","29199","FALSE","FALSE","America/Chicago"
-"63544","40.25124","-92.84261","Green Castle","MO","Missouri","TRUE","","731","2.3","29211","Sullivan","{""29211"": ""51.96"", ""29001"": ""43.89"", ""29171"": ""4.16""}","Sullivan|Adair|Putnam","29211|29001|29171","FALSE","FALSE","America/Chicago"
-"63545","40.26899","-92.96453","Green City","MO","Missouri","TRUE","","903","3.0","29211","Sullivan","{""29211"": ""100""}","Sullivan","29211","FALSE","FALSE","America/Chicago"
-"63546","40.33071","-92.51474","Greentop","MO","Missouri","TRUE","","1775","6.0","29001","Adair","{""29001"": ""56.97"", ""29197"": ""43.03""}","Adair|Schuyler","29001|29197","FALSE","FALSE","America/Chicago"
-"63547","40.13751","-92.29973","Hurdland","MO","Missouri","TRUE","","354","2.0","29103","Knox","{""29103"": ""97.17"", ""29001"": ""2.83""}","Knox|Adair","29103|29001","FALSE","FALSE","America/Chicago"
-"63548","40.53009","-92.48521","Lancaster","MO","Missouri","TRUE","","1215","6.1","29197","Schuyler","{""29197"": ""100""}","Schuyler","29197","FALSE","FALSE","America/Chicago"
-"63549","40.01822","-92.48597","La Plata","MO","Missouri","TRUE","","2762","7.4","29121","Macon","{""29121"": ""85.34"", ""29001"": ""14.66""}","Macon|Adair","29121|29001","FALSE","FALSE","America/Chicago"
-"63551","40.50061","-92.73558","Livonia","MO","Missouri","TRUE","","354","4.0","29171","Putnam","{""29171"": ""100""}","Putnam","29171","FALSE","FALSE","America/Chicago"
-"63552","39.75978","-92.44743","Macon","MO","Missouri","TRUE","","7465","22.3","29121","Macon","{""29121"": ""100""}","Macon","29121","FALSE","FALSE","America/Chicago"
-"63555","40.48106","-92.19579","Memphis","MO","Missouri","TRUE","","3344","6.5","29199","Scotland","{""29199"": ""100""}","Scotland","29199","FALSE","FALSE","America/Chicago"
-"63556","40.18512","-93.125","Milan","MO","Missouri","TRUE","","3853","6.2","29211","Sullivan","{""29211"": ""100""}","Sullivan","29211","FALSE","FALSE","America/Chicago"
-"63557","39.97621","-92.87157","New Boston","MO","Missouri","TRUE","","235","0.9","29115","Linn","{""29115"": ""78.69"", ""29121"": ""20.62"", ""29001"": ""0.69""}","Linn|Macon|Adair","29115|29121|29001","FALSE","FALSE","America/Chicago"
-"63558","39.7425","-92.75304","New Cambria","MO","Missouri","TRUE","","730","2.5","29121","Macon","{""29121"": ""75.61"", ""29041"": ""24.39""}","Macon|Chariton","29121|29041","FALSE","FALSE","America/Chicago"
-"63559","40.22228","-92.745","Novinger","MO","Missouri","TRUE","","1684","5.9","29001","Adair","{""29001"": ""96.9"", ""29171"": ""3.1""}","Adair|Putnam","29001|29171","FALSE","FALSE","America/Chicago"
-"63560","40.35816","-93.11879","Pollock","MO","Missouri","TRUE","","185","1.7","29211","Sullivan","{""29211"": ""95.82"", ""29171"": ""4.18""}","Sullivan|Putnam","29211|29171","FALSE","FALSE","America/Chicago"
-"63561","40.41937","-92.54226","Queen City","MO","Missouri","TRUE","","1199","5.4","29197","Schuyler","{""29197"": ""100""}","Schuyler","29197","FALSE","FALSE","America/Chicago"
-"63563","40.30413","-92.07061","Rutledge","MO","Missouri","TRUE","","724","3.8","29199","Scotland","{""29199"": ""69.22"", ""29103"": ""30.78""}","Scotland|Knox","29199|29103","FALSE","FALSE","America/Chicago"
-"63565","40.48406","-92.94506","Unionville","MO","Missouri","TRUE","","3361","4.7","29171","Putnam","{""29171"": ""100""}","Putnam","29171","FALSE","FALSE","America/Chicago"
-"63566","40.0503","-92.9253","Winigan","MO","Missouri","TRUE","","95","1.2","29211","Sullivan","{""29211"": ""79.2"", ""29115"": ""20.8""}","Sullivan|Linn","29211|29115","FALSE","FALSE","America/Chicago"
-"63567","40.41882","-92.71979","Worthington","MO","Missouri","TRUE","","241","8.4","29171","Putnam","{""29171"": ""100""}","Putnam","29171","FALSE","FALSE","America/Chicago"
-"63601","37.82421","-90.54705","Park Hills","MO","Missouri","TRUE","","15624","106.7","29187","St. Francois","{""29187"": ""100""}","St. Francois","29187","FALSE","FALSE","America/Chicago"
-"63620","37.39458","-90.65368","Annapolis","MO","Missouri","TRUE","","1299","2.6","29093","Iron","{""29093"": ""84"", ""29123"": ""8.46"", ""29179"": ""7.54""}","Iron|Madison|Reynolds","29093|29123|29179","FALSE","FALSE","America/Chicago"
-"63621","37.48715","-90.60616","Arcadia","MO","Missouri","TRUE","","1295","7.6","29093","Iron","{""29093"": ""97.07"", ""29123"": ""2.93""}","Iron|Madison","29093|29123","FALSE","FALSE","America/Chicago"
-"63622","37.7887","-90.89655","Belgrade","MO","Missouri","TRUE","","777","6.7","29221","Washington","{""29221"": ""100""}","Washington","29221","FALSE","FALSE","America/Chicago"
-"63623","37.67519","-90.88897","Belleview","MO","Missouri","TRUE","","889","3.4","29093","Iron","{""29093"": ""100""}","Iron","29093","FALSE","FALSE","America/Chicago"
-"63624","37.75239","-90.64097","Bismarck","MO","Missouri","TRUE","","3678","23.0","29187","St. Francois","{""29187"": ""82.33"", ""29221"": ""14.43"", ""29093"": ""3.25""}","St. Francois|Washington|Iron","29187|29221|29093","FALSE","FALSE","America/Chicago"
-"63625","37.57042","-90.97794","Black","MO","Missouri","TRUE","","404","1.9","29179","Reynolds","{""29179"": ""90.59"", ""29093"": ""9.41""}","Reynolds|Iron","29179|29093","FALSE","FALSE","America/Chicago"
-"63626","38.06894","-90.68797","Blackwell","MO","Missouri","TRUE","","1170","28.6","29221","Washington","{""29221"": ""89.87"", ""29187"": ""10.13""}","Washington|St. Francois","29221|29187","FALSE","FALSE","America/Chicago"
-"63627","38.04471","-90.25724","Bloomsdale","MO","Missouri","TRUE","","3254","17.3","29186","Ste. Genevieve","{""29186"": ""94.65"", ""29099"": ""5.35""}","Ste. Genevieve|Jefferson","29186|29099","FALSE","FALSE","America/Chicago"
-"63628","37.94102","-90.52333","Bonne Terre","MO","Missouri","TRUE","","15268","50.5","29187","St. Francois","{""29187"": ""97.55"", ""29221"": ""1.26"", ""29186"": ""0.98"", ""29099"": ""0.21""}","St. Francois|Washington|Ste. Genevieve|Jefferson","29187|29221|29186|29099","FALSE","FALSE","America/Chicago"
-"63629","37.41515","-91.23542","Bunker","MO","Missouri","TRUE","","1300","1.9","29179","Reynolds","{""29179"": ""66.13"", ""29065"": ""20.85"", ""29203"": ""13.01""}","Reynolds|Dent|Shannon","29179|29065|29203","FALSE","FALSE","America/Chicago"
-"63630","38.01825","-90.72722","Cadet","MO","Missouri","TRUE","","4192","24.3","29221","Washington","{""29221"": ""99.43"", ""29187"": ""0.57""}","Washington|St. Francois","29221|29187","FALSE","FALSE","America/Chicago"
-"63631","37.7466","-90.78287","Caledonia","MO","Missouri","TRUE","","1092","10.1","29221","Washington","{""29221"": ""80.09"", ""29093"": ""19.91""}","Washington|Iron","29221|29093","FALSE","FALSE","America/Chicago"
-"63633","37.42851","-91.01848","Centerville","MO","Missouri","TRUE","","706","2.8","29179","Reynolds","{""29179"": ""100""}","Reynolds","29179","FALSE","FALSE","America/Chicago"
-"63636","37.29551","-90.57778","Des Arc","MO","Missouri","TRUE","","674","7.0","29093","Iron","{""29093"": ""87.66"", ""29123"": ""6.58"", ""29223"": ""5.76""}","Iron|Madison|Wayne","29093|29123|29223","FALSE","FALSE","America/Chicago"
-"63637","37.71967","-90.51407","Doe Run","MO","Missouri","TRUE","","1519","35.2","29187","St. Francois","{""29187"": ""100""}","St. Francois","29187","FALSE","FALSE","America/Chicago"
-"63638","37.21666","-91.00725","Ellington","MO","Missouri","TRUE","","2619","3.0","29179","Reynolds","{""29179"": ""98.84"", ""29203"": ""1.16""}","Reynolds|Shannon","29179|29203","FALSE","FALSE","America/Chicago"
-"63640","37.75098","-90.36963","Farmington","MO","Missouri","TRUE","","29252","54.2","29187","St. Francois","{""29187"": ""94.22"", ""29186"": ""5.78""}","St. Francois|Ste. Genevieve","29187|29186","FALSE","FALSE","America/Chicago"
-"63645","37.53669","-90.33513","Fredericktown","MO","Missouri","TRUE","","11638","11.8","29123","Madison","{""29123"": ""96.31"", ""29187"": ""2.79"", ""29186"": ""0.89""}","Madison|St. Francois|Ste. Genevieve","29123|29187|29186","FALSE","FALSE","America/Chicago"
-"63648","37.82143","-90.6949","Irondale","MO","Missouri","TRUE","","1386","18.2","29221","Washington","{""29221"": ""92.2"", ""29187"": ""7.8""}","Washington|St. Francois","29221|29187","FALSE","FALSE","America/Chicago"
-"63650","37.61629","-90.63141","Ironton","MO","Missouri","TRUE","","3963","13.9","29093","Iron","{""29093"": ""88.39"", ""29187"": ""10.72"", ""29123"": ""0.89""}","Iron|St. Francois|Madison","29093|29187|29123","FALSE","FALSE","America/Chicago"
-"63653","37.86025","-90.59161","Leadwood","MO","Missouri","TRUE","","1398","373.2","29187","St. Francois","{""29187"": ""100""}","St. Francois","29187","FALSE","FALSE","America/Chicago"
-"63654","37.45814","-90.8546","Lesterville","MO","Missouri","TRUE","","631","3.3","29179","Reynolds","{""29179"": ""97.03"", ""29093"": ""2.97""}","Reynolds|Iron","29179|29093","FALSE","FALSE","America/Chicago"
-"63655","37.39352","-90.20766","Marquand","MO","Missouri","TRUE","","1298","3.4","29123","Madison","{""29123"": ""64.02"", ""29017"": ""29.15"", ""29223"": ""6.83""}","Madison|Bollinger|Wayne","29123|29017|29223","FALSE","FALSE","America/Chicago"
-"63656","37.59292","-90.79904","Middle Brook","MO","Missouri","TRUE","","304","1.8","29093","Iron","{""29093"": ""84.75"", ""29179"": ""15.25""}","Iron|Reynolds","29093|29179","FALSE","FALSE","America/Chicago"
-"63660","37.91345","-90.69782","Mineral Point","MO","Missouri","TRUE","","4022","41.6","29221","Washington","{""29221"": ""100""}","Washington","29221","FALSE","FALSE","America/Chicago"
-"63662","37.53116","-90.05128","Patton","MO","Missouri","TRUE","","1651","9.7","29017","Bollinger","{""29017"": ""100""}","Bollinger","29017","FALSE","FALSE","America/Chicago"
-"63663","37.62499","-90.64608","Pilot Knob","MO","Missouri","TRUE","","820","455.9","29093","Iron","{""29093"": ""100""}","Iron","29093","FALSE","FALSE","America/Chicago"
-"63664","37.91251","-90.91974","Potosi","MO","Missouri","TRUE","","9176","12.0","29221","Washington","{""29221"": ""100""}","Washington","29221","FALSE","FALSE","America/Chicago"
-"63665","37.30804","-90.84559","Redford","MO","Missouri","TRUE","","199","1.1","29179","Reynolds","{""29179"": ""100""}","Reynolds","29179","FALSE","FALSE","America/Chicago"
-"63666","37.39807","-91.05979","Reynolds","MO","Missouri","TRUE","","65","8.8","29179","Reynolds","{""29179"": ""100""}","Reynolds","29179","FALSE","FALSE","America/Chicago"
-"63670","37.8958","-90.16833","Sainte Genevieve","MO","Missouri","TRUE","","11017","16.4","29186","Ste. Genevieve","{""29186"": ""100""}","Ste. Genevieve","29186","FALSE","FALSE","America/Chicago"
-"63673","37.84217","-89.99082","Saint Mary","MO","Missouri","TRUE","","1689","6.0","29186","Ste. Genevieve","{""29186"": ""69.55"", ""29157"": ""28.23"", ""17157"": ""2.22""}","Ste. Genevieve|Perry|Randolph","29186|29157|17157","FALSE","FALSE","America/Chicago"
-"63674","38.03131","-90.65785","Tiff","MO","Missouri","TRUE","","0","0.0","29221","Washington","{""29221"": ""100""}","Washington","29221","FALSE","FALSE","America/Chicago"
-"63675","37.30476","-90.68977","Vulcan","MO","Missouri","TRUE","","162","4.8","29093","Iron","{""29093"": ""100""}","Iron","29093","FALSE","FALSE","America/Chicago"
-"63701","37.33785","-89.57681","Cape Girardeau","MO","Missouri","TRUE","","38672","115.5","29031","Cape Girardeau","{""29031"": ""100""}","Cape Girardeau","29031","FALSE","FALSE","America/Chicago"
-"63703","37.27381","-89.53995","Cape Girardeau","MO","Missouri","TRUE","","8382","250.9","29031","Cape Girardeau","{""29031"": ""100""}","Cape Girardeau","29031","FALSE","FALSE","America/Chicago"
-"63730","37.09789","-89.91708","Advance","MO","Missouri","TRUE","","3616","11.6","29207","Stoddard","{""29207"": ""79.3"", ""29017"": ""13.03"", ""29031"": ""7.67""}","Stoddard|Bollinger|Cape Girardeau","29207|29017|29031","FALSE","FALSE","America/Chicago"
-"63732","37.59161","-89.58041","Altenburg","MO","Missouri","TRUE","","966","9.8","29157","Perry","{""29157"": ""53.96"", ""29031"": ""46.04""}","Perry|Cape Girardeau","29157|29031","FALSE","FALSE","America/Chicago"
-"63735","36.98628","-89.7798","Bell City","MO","Missouri","TRUE","","809","5.2","29207","Stoddard","{""29207"": ""94.81"", ""29201"": ""5.19""}","Stoddard|Scott","29207|29201","FALSE","FALSE","America/Chicago"
-"63736","37.0849","-89.50748","Benton","MO","Missouri","TRUE","","3693","21.1","29201","Scott","{""29201"": ""100""}","Scott","29201","FALSE","FALSE","America/Chicago"
-"63738","37.0893","-89.95738","Brownwood","MO","Missouri","TRUE","","0","0.0","29207","Stoddard","{""29207"": ""100""}","Stoddard","29207","FALSE","FALSE","America/Chicago"
-"63739","37.36029","-89.80045","Burfordville","MO","Missouri","TRUE","","467","12.5","29031","Cape Girardeau","{""29031"": ""100""}","Cape Girardeau","29031","FALSE","FALSE","America/Chicago"
-"63740","37.17594","-89.68507","Chaffee","MO","Missouri","TRUE","","5120","22.2","29201","Scott","{""29201"": ""81.94"", ""29031"": ""18.06""}","Scott|Cape Girardeau","29201|29031","FALSE","FALSE","America/Chicago"
-"63742","37.15866","-89.44621","Commerce","MO","Missouri","TRUE","","79","98.9","29201","Scott","{""29201"": ""100""}","Scott","29201","FALSE","FALSE","America/Chicago"
-"63743","37.51737","-89.82544","Daisy","MO","Missouri","TRUE","","61","3.8","29031","Cape Girardeau","{""29031"": ""100""}","Cape Girardeau","29031","FALSE","FALSE","America/Chicago"
-"63744","37.19582","-89.7382","Delta","MO","Missouri","TRUE","","103","326.9","29031","Cape Girardeau","{""29031"": ""100""}","Cape Girardeau","29031","FALSE","FALSE","America/Chicago"
-"63745","37.24193","-89.69407","Dutchtown","MO","Missouri","TRUE","","9","0.7","29031","Cape Girardeau","{""29031"": ""100""}","Cape Girardeau","29031","FALSE","FALSE","America/Chicago"
-"63746","37.7078","-89.69482","Farrar","MO","Missouri","TRUE","","29","8.9","29157","Perry","{""29157"": ""100""}","Perry","29157","FALSE","FALSE","America/Chicago"
-"63747","37.5597","-89.80889","Friedheim","MO","Missouri","TRUE","","458","8.8","29031","Cape Girardeau","{""29031"": ""100""}","Cape Girardeau","29031","FALSE","FALSE","America/Chicago"
-"63748","37.67265","-89.62223","Frohna","MO","Missouri","TRUE","","1064","5.6","29157","Perry","{""29157"": ""100""}","Perry","29157","FALSE","FALSE","America/Chicago"
-"63750","37.14849","-90.18596","Gipsy","MO","Missouri","TRUE","","19","0.8","29017","Bollinger","{""29017"": ""100""}","Bollinger","29017","FALSE","FALSE","America/Chicago"
-"63751","37.28122","-90.13552","Glenallen","MO","Missouri","TRUE","","1476","6.4","29017","Bollinger","{""29017"": ""100""}","Bollinger","29017","FALSE","FALSE","America/Chicago"
-"63755","37.44246","-89.63964","Jackson","MO","Missouri","TRUE","","25034","56.6","29031","Cape Girardeau","{""29031"": ""100""}","Cape Girardeau","29031","FALSE","FALSE","America/Chicago"
-"63758","37.18646","-89.55678","Kelso","MO","Missouri","TRUE","","210","197.0","29201","Scott","{""29201"": ""100""}","Scott","29201","FALSE","FALSE","America/Chicago"
-"63760","37.24007","-89.90157","Leopold","MO","Missouri","TRUE","","659","8.7","29017","Bollinger","{""29017"": ""100""}","Bollinger","29017","FALSE","FALSE","America/Chicago"
-"63763","37.05533","-90.17657","McGee","MO","Missouri","TRUE","","197","3.0","29223","Wayne","{""29223"": ""100""}","Wayne","29223","FALSE","FALSE","America/Chicago"
-"63764","37.31917","-89.99003","Marble Hill","MO","Missouri","TRUE","","5204","10.4","29017","Bollinger","{""29017"": ""96.84"", ""29031"": ""3.16""}","Bollinger|Cape Girardeau","29017|29031","FALSE","FALSE","America/Chicago"
-"63766","37.4345","-89.84406","Millersville","MO","Missouri","TRUE","","1188","9.1","29031","Cape Girardeau","{""29031"": ""83.85"", ""29017"": ""16.15""}","Cape Girardeau|Bollinger","29031|29017","FALSE","FALSE","America/Chicago"
-"63767","37.04621","-89.61122","Morley","MO","Missouri","TRUE","","731","213.1","29201","Scott","{""29201"": ""100""}","Scott","29201","FALSE","FALSE","America/Chicago"
-"63769","37.52118","-89.73896","Oak Ridge","MO","Missouri","TRUE","","1358","10.0","29031","Cape Girardeau","{""29031"": ""100""}","Cape Girardeau","29031","FALSE","FALSE","America/Chicago"
-"63770","37.5975","-89.70307","Old Appleton","MO","Missouri","TRUE","","155","31.3","29031","Cape Girardeau","{""29031"": ""50.52"", ""29157"": ""49.48""}","Cape Girardeau|Perry","29031|29157","FALSE","FALSE","America/Chicago"
-"63771","37.07344","-89.7063","Oran","MO","Missouri","TRUE","","2860","11.2","29201","Scott","{""29201"": ""93.22"", ""29207"": ""6.46"", ""29031"": ""0.31""}","Scott|Stoddard|Cape Girardeau","29201|29207|29031","FALSE","FALSE","America/Chicago"
-"63774","37.09603","-89.75993","Perkins","MO","Missouri","TRUE","","244","28.5","29201","Scott","{""29201"": ""100""}","Scott","29201","FALSE","FALSE","America/Chicago"
-"63775","37.71395","-89.88138","Perryville","MO","Missouri","TRUE","","17012","18.8","29157","Perry","{""29157"": ""99.44"", ""29031"": ""0.56""}","Perry|Cape Girardeau","29157|29031","FALSE","FALSE","America/Chicago"
-"63780","37.1894","-89.51421","Scott City","MO","Missouri","TRUE","","6343","45.4","29201","Scott","{""29201"": ""99.96"", ""29031"": ""0.04""}","Scott|Cape Girardeau","29201|29031","FALSE","FALSE","America/Chicago"
-"63781","37.53858","-89.92908","Sedgewickville","MO","Missouri","TRUE","","1301","7.8","29017","Bollinger","{""29017"": ""100""}","Bollinger","29017","FALSE","FALSE","America/Chicago"
-"63782","37.11361","-90.02781","Sturdivant","MO","Missouri","TRUE","","239","6.0","29017","Bollinger","{""29017"": ""100""}","Bollinger","29017","FALSE","FALSE","America/Chicago"
-"63783","37.60725","-89.67986","Uniontown","MO","Missouri","TRUE","","151","12.0","29157","Perry","{""29157"": ""100""}","Perry","29157","FALSE","FALSE","America/Chicago"
-"63784","36.98454","-89.69155","Vanduser","MO","Missouri","TRUE","","219","99.5","29201","Scott","{""29201"": ""100""}","Scott","29201","FALSE","FALSE","America/Chicago"
-"63785","37.26415","-89.81515","Whitewater","MO","Missouri","TRUE","","800","6.4","29031","Cape Girardeau","{""29031"": ""97.1"", ""29017"": ""2.9""}","Cape Girardeau|Bollinger","29031|29017","FALSE","FALSE","America/Chicago"
-"63787","37.12578","-90.12329","Zalma","MO","Missouri","TRUE","","728","5.0","29017","Bollinger","{""29017"": ""100""}","Bollinger","29017","FALSE","FALSE","America/Chicago"
-"63801","36.89805","-89.6053","Sikeston","MO","Missouri","TRUE","","22636","41.7","29201","Scott","{""29201"": ""87.48"", ""29143"": ""12.29"", ""29207"": ""0.23""}","Scott|New Madrid|Stoddard","29201|29143|29207","FALSE","FALSE","America/Chicago"
-"63820","36.82421","-89.32559","Anniston","MO","Missouri","TRUE","","148","118.6","29133","Mississippi","{""29133"": ""100""}","Mississippi","29133","FALSE","FALSE","America/Chicago"
-"63821","36.04869","-90.23924","Arbyrd","MO","Missouri","TRUE","","786","8.2","29069","Dunklin","{""29069"": ""100""}","Dunklin","29069","FALSE","FALSE","America/Chicago"
-"63822","36.66432","-90.00176","Bernie","MO","Missouri","TRUE","","2559","14.9","29207","Stoddard","{""29207"": ""100""}","Stoddard","29207","FALSE","FALSE","America/Chicago"
-"63823","36.89568","-89.45633","Bertrand","MO","Missouri","TRUE","","1059","10.3","29133","Mississippi","{""29133"": ""97.03"", ""29201"": ""2.97""}","Mississippi|Scott","29133|29201","FALSE","FALSE","America/Chicago"
-"63824","37.00501","-89.52662","Blodgett","MO","Missouri","TRUE","","133","573.6","29201","Scott","{""29201"": ""100""}","Scott","29201","FALSE","FALSE","America/Chicago"
-"63825","36.9271","-89.94558","Bloomfield","MO","Missouri","TRUE","","4273","16.8","29207","Stoddard","{""29207"": ""100""}","Stoddard","29207","FALSE","FALSE","America/Chicago"
-"63826","36.17481","-89.85056","Braggadocio","MO","Missouri","TRUE","","32","4.0","29155","Pemiscot","{""29155"": ""100""}","Pemiscot","29155","FALSE","FALSE","America/Chicago"
-"63827","36.26012","-89.88749","Bragg City","MO","Missouri","TRUE","","863","3.8","29155","Pemiscot","{""29155"": ""100""}","Pemiscot","29155","FALSE","FALSE","America/Chicago"
-"63828","36.75037","-89.69183","Canalou","MO","Missouri","TRUE","","217","85.5","29143","New Madrid","{""29143"": ""100""}","New Madrid","29143","FALSE","FALSE","America/Chicago"
-"63829","36.03861","-90.31333","Cardwell","MO","Missouri","TRUE","","1222","19.7","29069","Dunklin","{""29069"": ""100""}","Dunklin","29069","FALSE","FALSE","America/Chicago"
-"63830","36.13007","-89.69068","Caruthersville","MO","Missouri","TRUE","","6941","39.0","29155","Pemiscot","{""29155"": ""100""}","Pemiscot","29155","FALSE","FALSE","America/Chicago"
-"63833","36.6455","-89.72895","Catron","MO","Missouri","TRUE","","160","0.8","29143","New Madrid","{""29143"": ""75.62"", ""29207"": ""24.38""}","New Madrid|Stoddard","29143|29207","FALSE","FALSE","America/Chicago"
-"63834","36.92081","-89.27888","Charleston","MO","Missouri","TRUE","","6553","10.2","29133","Mississippi","{""29133"": ""94.6"", ""29201"": ""5.4""}","Mississippi|Scott","29133|29201","FALSE","FALSE","America/Chicago"
-"63837","36.45875","-89.99543","Clarkton","MO","Missouri","TRUE","","1683","28.6","29069","Dunklin","{""29069"": ""100""}","Dunklin","29069","FALSE","FALSE","America/Chicago"
-"63839","36.04477","-89.81363","Cooter","MO","Missouri","TRUE","","367","87.5","29155","Pemiscot","{""29155"": ""100""}","Pemiscot","29155","FALSE","FALSE","America/Chicago"
-"63841","36.77337","-89.98702","Dexter","MO","Missouri","TRUE","","13305","38.5","29207","Stoddard","{""29207"": ""100""}","Stoddard","29207","FALSE","FALSE","America/Chicago"
-"63845","36.70987","-89.32336","East Prairie","MO","Missouri","TRUE","","5804","11.0","29133","Mississippi","{""29133"": ""98.74"", ""29143"": ""1.26""}","Mississippi|New Madrid","29133|29143","FALSE","FALSE","America/Chicago"
-"63846","36.82187","-89.80301","Essex","MO","Missouri","TRUE","","1712","6.0","29207","Stoddard","{""29207"": ""100""}","Stoddard","29207","FALSE","FALSE","America/Chicago"
-"63847","36.43996","-90.03892","Gibson","MO","Missouri","TRUE","","155","33.3","29069","Dunklin","{""29069"": ""100""}","Dunklin","29069","FALSE","FALSE","America/Chicago"
-"63848","36.44766","-89.89886","Gideon","MO","Missouri","TRUE","","1352","7.2","29143","New Madrid","{""29143"": ""98.3"", ""29155"": ""1.7""}","New Madrid|Pemiscot","29143|29155","FALSE","FALSE","America/Chicago"
-"63849","36.13288","-89.98292","Gobler","MO","Missouri","TRUE","","151","3.1","29069","Dunklin","{""29069"": ""53.23"", ""29155"": ""46.77""}","Dunklin|Pemiscot","29069|29155","FALSE","FALSE","America/Chicago"
-"63851","36.25887","-89.71725","Hayti","MO","Missouri","TRUE","","3687","15.4","29155","Pemiscot","{""29155"": ""100""}","Pemiscot","29155","FALSE","FALSE","America/Chicago"
-"63852","36.37352","-90.01536","Holcomb","MO","Missouri","TRUE","","1163","8.8","29069","Dunklin","{""29069"": ""97.85"", ""29155"": ""2.15""}","Dunklin|Pemiscot","29069|29155","FALSE","FALSE","America/Chicago"
-"63853","36.06479","-89.87034","Holland","MO","Missouri","TRUE","","168","41.7","29155","Pemiscot","{""29155"": ""100""}","Pemiscot","29155","FALSE","FALSE","America/Chicago"
-"63855","36.05434","-90.07053","Hornersville","MO","Missouri","TRUE","","971","4.8","29069","Dunklin","{""29069"": ""100""}","Dunklin","29069","FALSE","FALSE","America/Chicago"
-"63857","36.22457","-90.04691","Kennett","MO","Missouri","TRUE","","12264","43.3","29069","Dunklin","{""29069"": ""100""}","Dunklin","29069","FALSE","FALSE","America/Chicago"
-"63860","36.65333","-89.58819","Kewanee","MO","Missouri","TRUE","","162","9.3","29143","New Madrid","{""29143"": ""100""}","New Madrid","29143","FALSE","FALSE","America/Chicago"
-"63862","36.57859","-89.68325","Lilbourn","MO","Missouri","TRUE","","1558","10.2","29143","New Madrid","{""29143"": ""100""}","New Madrid","29143","FALSE","FALSE","America/Chicago"
-"63863","36.56464","-89.9795","Malden","MO","Missouri","TRUE","","6147","40.0","29069","Dunklin","{""29069"": ""98.49"", ""29143"": ""1.51""}","Dunklin|New Madrid","29069|29143","FALSE","FALSE","America/Chicago"
-"63866","36.53281","-89.60421","Marston","MO","Missouri","TRUE","","459","27.8","29143","New Madrid","{""29143"": ""100""}","New Madrid","29143","FALSE","FALSE","America/Chicago"
-"63867","36.73736","-89.54805","Matthews","MO","Missouri","TRUE","","1061","4.6","29143","New Madrid","{""29143"": ""100""}","New Madrid","29143","FALSE","FALSE","America/Chicago"
-"63868","36.84916","-89.69337","Morehouse","MO","Missouri","TRUE","","790","192.0","29143","New Madrid","{""29143"": ""100""}","New Madrid","29143","FALSE","FALSE","America/Chicago"
-"63869","36.59589","-89.48586","New Madrid","MO","Missouri","TRUE","","3334","14.3","29143","New Madrid","{""29143"": ""100""}","New Madrid","29143","FALSE","FALSE","America/Chicago"
-"63870","36.62198","-89.84782","Parma","MO","Missouri","TRUE","","1012","4.7","29143","New Madrid","{""29143"": ""88.88"", ""29207"": ""11.12""}","New Madrid|Stoddard","29143|29207","FALSE","FALSE","America/Chicago"
-"63873","36.42374","-89.67057","Portageville","MO","Missouri","TRUE","","4503","8.7","29143","New Madrid","{""29143"": ""89.45"", ""29155"": ""10.55""}","New Madrid|Pemiscot","29143|29155","FALSE","FALSE","America/Chicago"
-"63874","36.54712","-89.81846","Risco","MO","Missouri","TRUE","","392","133.2","29143","New Madrid","{""29143"": ""100""}","New Madrid","29143","FALSE","FALSE","America/Chicago"
-"63876","36.13182","-90.16855","Senath","MO","Missouri","TRUE","","2236","14.8","29069","Dunklin","{""29069"": ""100""}","Dunklin","29069","FALSE","FALSE","America/Chicago"
-"63877","36.07563","-89.85708","Steele","MO","Missouri","TRUE","","3504","9.8","29155","Pemiscot","{""29155"": ""98.86"", ""29069"": ""1.14""}","Pemiscot|Dunklin","29155|29069","FALSE","FALSE","America/Chicago"
-"63878","36.50301","-89.82234","Tallapoosa","MO","Missouri","TRUE","","61","43.9","29143","New Madrid","{""29143"": ""100""}","New Madrid","29143","FALSE","FALSE","America/Chicago"
-"63879","36.35477","-89.81704","Wardell","MO","Missouri","TRUE","","664","11.2","29155","Pemiscot","{""29155"": ""100""}","Pemiscot","29155","FALSE","FALSE","America/Chicago"
-"63880","36.32723","-90.0251","Whiteoak","MO","Missouri","TRUE","","151","371.3","29069","Dunklin","{""29069"": ""100""}","Dunklin","29069","FALSE","FALSE","America/Chicago"
-"63882","36.91476","-89.22185","Wyatt","MO","Missouri","TRUE","","334","283.3","29133","Mississippi","{""29133"": ""100""}","Mississippi","29133","FALSE","FALSE","America/Chicago"
-"63901","36.76636","-90.46266","Poplar Bluff","MO","Missouri","TRUE","","35283","43.5","29023","Butler","{""29023"": ""99.9"", ""29181"": ""0.1""}","Butler|Ripley","29023|29181","FALSE","FALSE","America/Chicago"
-"63902","36.76761","-90.4271","Poplar Bluff","MO","Missouri","TRUE","","0","0.0","29023","Butler","{""29023"": ""0""}","Butler","29023","FALSE","FALSE","America/Chicago"
-"63932","36.68993","-90.25075","Broseley","MO","Missouri","TRUE","","1000","7.4","29023","Butler","{""29023"": ""100""}","Butler","29023","FALSE","FALSE","America/Chicago"
-"63933","36.52847","-90.11044","Campbell","MO","Missouri","TRUE","","3263","12.4","29069","Dunklin","{""29069"": ""100""}","Dunklin","29069","FALSE","FALSE","America/Chicago"
-"63934","37.19795","-90.38413","Clubb","MO","Missouri","TRUE","","175","5.7","29223","Wayne","{""29223"": ""100""}","Wayne","29223","FALSE","FALSE","America/Chicago"
-"63935","36.67173","-90.91571","Doniphan","MO","Missouri","TRUE","","9617","7.8","29181","Ripley","{""29181"": ""99.02"", ""29149"": ""0.69"", ""29035"": ""0.3""}","Ripley|Oregon|Carter","29181|29149|29035","FALSE","FALSE","America/Chicago"
-"63936","36.80759","-90.13448","Dudley","MO","Missouri","TRUE","","861","4.3","29207","Stoddard","{""29207"": ""100""}","Stoddard","29207","FALSE","FALSE","America/Chicago"
-"63937","36.94006","-90.76896","Ellsinore","MO","Missouri","TRUE","","2929","6.0","29035","Carter","{""29035"": ""88.84"", ""29023"": ""9.45"", ""29223"": ""1.71""}","Carter|Butler|Wayne","29035|29023|29223","FALSE","FALSE","America/Chicago"
-"63939","36.66339","-90.6821","Fairdealing","MO","Missouri","TRUE","","1462","15.4","29181","Ripley","{""29181"": ""100""}","Ripley","29181","FALSE","FALSE","America/Chicago"
-"63940","36.77101","-90.2276","Fisk","MO","Missouri","TRUE","","1430","10.0","29023","Butler","{""29023"": ""100""}","Butler","29023","FALSE","FALSE","America/Chicago"
-"63941","36.8901","-91.17029","Fremont","MO","Missouri","TRUE","","165","0.4","29035","Carter","{""29035"": ""78.44"", ""29149"": ""21.56""}","Carter|Oregon","29035|29149","FALSE","FALSE","America/Chicago"
-"63942","36.55101","-91.07906","Gatewood","MO","Missouri","TRUE","","721","3.3","29181","Ripley","{""29181"": ""86.04"", ""29149"": ""13.96""}","Ripley|Oregon","29181|29149","FALSE","FALSE","America/Chicago"
-"63943","36.82855","-90.79023","Grandin","MO","Missouri","TRUE","","677","4.6","29035","Carter","{""29035"": ""89.29"", ""29181"": ""10.71""}","Carter|Ripley","29035|29181","FALSE","FALSE","America/Chicago"
-"63944","37.10636","-90.3659","Greenville","MO","Missouri","TRUE","","1548","3.3","29223","Wayne","{""29223"": ""100""}","Wayne","29223","FALSE","FALSE","America/Chicago"
-"63945","36.63478","-90.54576","Harviell","MO","Missouri","TRUE","","1142","16.4","29023","Butler","{""29023"": ""100""}","Butler","29023","FALSE","FALSE","America/Chicago"
-"63951","37.12085","-90.26341","Lowndes","MO","Missouri","TRUE","","159","2.3","29223","Wayne","{""29223"": ""100""}","Wayne","29223","FALSE","FALSE","America/Chicago"
-"63952","37.00926","-90.65117","Mill Spring","MO","Missouri","TRUE","","459","3.2","29223","Wayne","{""29223"": ""100""}","Wayne","29223","FALSE","FALSE","America/Chicago"
-"63953","36.58187","-90.63153","Naylor","MO","Missouri","TRUE","","1763","12.1","29181","Ripley","{""29181"": ""96.21"", ""29023"": ""3.79""}","Ripley|Butler","29181|29023","FALSE","FALSE","America/Chicago"
-"63954","36.55756","-90.47373","Neelyville","MO","Missouri","TRUE","","774","3.0","29023","Butler","{""29023"": ""95.41"", ""29181"": ""4.59""}","Butler|Ripley","29023|29181","FALSE","FALSE","America/Chicago"
-"63955","36.60357","-90.68089","Oxly","MO","Missouri","TRUE","","137","6.9","29181","Ripley","{""29181"": ""100""}","Ripley","29181","FALSE","FALSE","America/Chicago"
-"63956","37.2116","-90.51818","Patterson","MO","Missouri","TRUE","","1441","7.3","29223","Wayne","{""29223"": ""100""}","Wayne","29223","FALSE","FALSE","America/Chicago"
-"63957","37.1451","-90.68288","Piedmont","MO","Missouri","TRUE","","5722","11.5","29223","Wayne","{""29223"": ""93.82"", ""29179"": ""6.18""}","Wayne|Reynolds","29223|29179","FALSE","FALSE","America/Chicago"
-"63960","36.96109","-90.12297","Puxico","MO","Missouri","TRUE","","2955","9.6","29207","Stoddard","{""29207"": ""97.47"", ""29017"": ""2.53""}","Stoddard|Bollinger","29207|29017","FALSE","FALSE","America/Chicago"
-"63961","36.57073","-90.27104","Qulin","MO","Missouri","TRUE","","1720","7.6","29023","Butler","{""29023"": ""100""}","Butler","29023","FALSE","FALSE","America/Chicago"
-"63962","36.84408","-90.28148","Rombauer","MO","Missouri","TRUE","","276","5908.8","29023","Butler","{""29023"": ""100""}","Butler","29023","FALSE","FALSE","America/Chicago"
-"63964","37.25404","-90.39999","Silva","MO","Missouri","TRUE","","530","3.2","29223","Wayne","{""29223"": ""100""}","Wayne","29223","FALSE","FALSE","America/Chicago"
-"63965","36.9678","-91.01243","Van Buren","MO","Missouri","TRUE","","2796","5.1","29035","Carter","{""29035"": ""93.85"", ""29179"": ""6.15""}","Carter|Reynolds","29035|29179","FALSE","FALSE","America/Chicago"
-"63966","36.97806","-90.26246","Wappapello","MO","Missouri","TRUE","","2244","13.1","29223","Wayne","{""29223"": ""79.05"", ""29023"": ""20.95""}","Wayne|Butler","29223|29023","FALSE","FALSE","America/Chicago"
-"63967","36.94607","-90.47916","Williamsville","MO","Missouri","TRUE","","1823","6.2","29223","Wayne","{""29223"": ""65.48"", ""29023"": ""34.52""}","Wayne|Butler","29223|29023","FALSE","FALSE","America/Chicago"
-"64001","39.10533","-93.54211","Alma","MO","Missouri","TRUE","","716","7.0","29107","Lafayette","{""29107"": ""100""}","Lafayette","29107","FALSE","FALSE","America/Chicago"
-"64011","38.96596","-94.0688","Bates City","MO","Missouri","TRUE","","3210","39.4","29107","Lafayette","{""29107"": ""86.22"", ""29101"": ""13.78""}","Lafayette|Johnson","29107|29101","FALSE","FALSE","America/Chicago"
-"64012","38.78686","-94.54993","Belton","MO","Missouri","TRUE","","27384","221.7","29037","Cass","{""29037"": ""100""}","Cass","29037","FALSE","FALSE","America/Chicago"
-"64014","39.0071","-94.25504","Blue Springs","MO","Missouri","TRUE","","25490","816.7","29095","Jackson","{""29095"": ""100""}","Jackson","29095","FALSE","FALSE","America/Chicago"
-"64015","39.01411","-94.30635","Blue Springs","MO","Missouri","TRUE","","30754","522.7","29095","Jackson","{""29095"": ""100""}","Jackson","29095","FALSE","FALSE","America/Chicago"
-"64016","39.11773","-94.21478","Buckner","MO","Missouri","TRUE","","4715","56.0","29095","Jackson","{""29095"": ""100""}","Jackson","29095","FALSE","FALSE","America/Chicago"
-"64017","39.19551","-94.02403","Camden","MO","Missouri","TRUE","","428","8.5","29177","Ray","{""29177"": ""96.77"", ""29107"": ""3.23""}","Ray|Lafayette","29177|29107","FALSE","FALSE","America/Chicago"
-"64018","39.45249","-94.72685","Camden Point","MO","Missouri","TRUE","","884","14.6","29165","Platte","{""29165"": ""100""}","Platte","29165","FALSE","FALSE","America/Chicago"
-"64019","38.77581","-93.86392","Centerview","MO","Missouri","TRUE","","2225","10.2","29101","Johnson","{""29101"": ""100""}","Johnson","29101","FALSE","FALSE","America/Chicago"
-"64020","38.96606","-93.59126","Concordia","MO","Missouri","TRUE","","3924","14.2","29107","Lafayette","{""29107"": ""93.15"", ""29101"": ""6.1"", ""29195"": ""0.75""}","Lafayette|Johnson|Saline","29107|29101|29195","FALSE","FALSE","America/Chicago"
-"64021","39.10661","-93.62755","Corder","MO","Missouri","TRUE","","739","7.9","29107","Lafayette","{""29107"": ""100""}","Lafayette","29107","FALSE","FALSE","America/Chicago"
-"64022","39.19508","-93.67277","Dover","MO","Missouri","TRUE","","134","5.1","29107","Lafayette","{""29107"": ""100""}","Lafayette","29107","FALSE","FALSE","America/Chicago"
-"64024","39.32369","-94.22796","Excelsior Springs","MO","Missouri","TRUE","","16517","90.4","29047","Clay","{""29047"": ""78.1"", ""29177"": ""21.9""}","Clay|Ray","29047|29177","FALSE","FALSE","America/Chicago"
-"64029","39.00581","-94.21514","Grain Valley","MO","Missouri","TRUE","","18307","248.6","29095","Jackson","{""29095"": ""100""}","Jackson","29095","FALSE","FALSE","America/Chicago"
-"64030","38.88014","-94.52271","Grandview","MO","Missouri","TRUE","","24983","655.3","29095","Jackson","{""29095"": ""100""}","Jackson","29095","FALSE","FALSE","America/Chicago"
-"64034","38.85237","-94.29942","Greenwood","MO","Missouri","TRUE","","9301","176.1","29095","Jackson","{""29095"": ""84.81"", ""29037"": ""15.19""}","Jackson|Cass","29095|29037","FALSE","FALSE","America/Chicago"
-"64035","39.2949","-93.80948","Hardin","MO","Missouri","TRUE","","1072","6.6","29177","Ray","{""29177"": ""99.07"", ""29033"": ""0.93""}","Ray|Carroll","29177|29033","FALSE","FALSE","America/Chicago"
-"64036","39.19827","-93.9354","Henrietta","MO","Missouri","TRUE","","340","7.0","29177","Ray","{""29177"": ""100""}","Ray","29177","FALSE","FALSE","America/Chicago"
-"64037","39.05745","-93.73279","Higginsville","MO","Missouri","TRUE","","5806","22.4","29107","Lafayette","{""29107"": ""100""}","Lafayette","29107","FALSE","FALSE","America/Chicago"
-"64040","38.72149","-93.98638","Holden","MO","Missouri","TRUE","","5955","13.4","29101","Johnson","{""29101"": ""100""}","Johnson","29101","FALSE","FALSE","America/Chicago"
-"64048","39.44387","-94.36712","Holt","MO","Missouri","TRUE","","4205","34.7","29047","Clay","{""29047"": ""59.35"", ""29049"": ""40.65""}","Clay|Clinton","29047|29049","FALSE","FALSE","America/Chicago"
-"64050","39.11515","-94.40757","Independence","MO","Missouri","TRUE","","22614","651.4","29095","Jackson","{""29095"": ""100""}","Jackson","29095","FALSE","FALSE","America/Chicago"
-"64052","39.0734","-94.45018","Independence","MO","Missouri","TRUE","","20854","1236.5","29095","Jackson","{""29095"": ""100""}","Jackson","29095","FALSE","FALSE","America/Chicago"
-"64053","39.10994","-94.46475","Independence","MO","Missouri","TRUE","","5985","718.4","29095","Jackson","{""29095"": ""100""}","Jackson","29095","FALSE","FALSE","America/Chicago"
-"64054","39.10999","-94.4401","Independence","MO","Missouri","TRUE","","3055","585.1","29095","Jackson","{""29095"": ""100""}","Jackson","29095","FALSE","FALSE","America/Chicago"
-"64055","39.05069","-94.39858","Independence","MO","Missouri","TRUE","","33350","1052.7","29095","Jackson","{""29095"": ""100""}","Jackson","29095","FALSE","FALSE","America/Chicago"
-"64056","39.1105","-94.31636","Independence","MO","Missouri","TRUE","","16718","310.4","29095","Jackson","{""29095"": ""100""}","Jackson","29095","FALSE","FALSE","America/Chicago"
-"64057","39.06923","-94.32405","Independence","MO","Missouri","TRUE","","14232","362.0","29095","Jackson","{""29095"": ""100""}","Jackson","29095","FALSE","FALSE","America/Chicago"
-"64058","39.17951","-94.30669","Independence","MO","Missouri","TRUE","","6852","75.5","29095","Jackson","{""29095"": ""100""}","Jackson","29095","FALSE","FALSE","America/Chicago"
-"64060","39.36858","-94.36458","Kearney","MO","Missouri","TRUE","","15092","102.5","29047","Clay","{""29047"": ""100""}","Clay","29047","FALSE","FALSE","America/Chicago"
-"64061","38.78085","-94.08873","Kingsville","MO","Missouri","TRUE","","2944","17.6","29101","Johnson","{""29101"": ""97.22"", ""29037"": ""2.78""}","Johnson|Cass","29101|29037","FALSE","FALSE","America/Chicago"
-"64062","39.45339","-94.16986","Lawson","MO","Missouri","TRUE","","5784","25.2","29177","Ray","{""29177"": ""81.18"", ""29049"": ""11.13"", ""29047"": ""7.69""}","Ray|Clinton|Clay","29177|29049|29047","FALSE","FALSE","America/Chicago"
-"64063","38.912","-94.35166","Lees Summit","MO","Missouri","TRUE","","20102","1239.1","29095","Jackson","{""29095"": ""100""}","Jackson","29095","FALSE","FALSE","America/Chicago"
-"64064","38.97546","-94.3466","Lees Summit","MO","Missouri","TRUE","","18771","416.1","29095","Jackson","{""29095"": ""100""}","Jackson","29095","FALSE","FALSE","America/Chicago"
-"64065","38.9529","-94.40575","Lees Summit","MO","Missouri","TRUE","","41","22.1","29095","Jackson","{""29095"": ""100""}","Jackson","29095","FALSE","FALSE","America/Chicago"
-"64066","39.1382","-94.12649","Levasy","MO","Missouri","TRUE","","25","5.8","29095","Jackson","{""29095"": ""100""}","Jackson","29095","FALSE","FALSE","America/Chicago"
-"64067","39.15592","-93.83557","Lexington","MO","Missouri","TRUE","","5404","28.5","29107","Lafayette","{""29107"": ""100""}","Lafayette","29107","FALSE","FALSE","America/Chicago"
-"64068","39.25952","-94.38881","Liberty","MO","Missouri","TRUE","","38777","173.4","29047","Clay","{""29047"": ""100""}","Clay","29047","FALSE","FALSE","America/Chicago"
-"64070","38.88836","-94.14858","Lone Jack","MO","Missouri","TRUE","","3464","34.0","29095","Jackson","{""29095"": ""91.05"", ""29101"": ""8.95""}","Jackson|Johnson","29095|29101","FALSE","FALSE","America/Chicago"
-"64071","39.02947","-93.83358","Mayview","MO","Missouri","TRUE","","589","6.2","29107","Lafayette","{""29107"": ""100""}","Lafayette","29107","FALSE","FALSE","America/Chicago"
-"64072","39.23946","-94.29343","Missouri City","MO","Missouri","TRUE","","536","232.4","29047","Clay","{""29047"": ""100""}","Clay","29047","FALSE","FALSE","America/Chicago"
-"64074","39.08675","-94.0743","Napoleon","MO","Missouri","TRUE","","657","11.3","29107","Lafayette","{""29107"": ""100""}","Lafayette","29107","FALSE","FALSE","America/Chicago"
-"64075","39.00029","-94.14525","Oak Grove","MO","Missouri","TRUE","","12638","96.4","29095","Jackson","{""29095"": ""94.68"", ""29107"": ""5.32""}","Jackson|Lafayette","29095|29107","FALSE","FALSE","America/Chicago"
-"64076","38.98052","-93.94495","Odessa","MO","Missouri","TRUE","","9134","29.1","29107","Lafayette","{""29107"": ""95.51"", ""29101"": ""4.49""}","Lafayette|Johnson","29107|29101","FALSE","FALSE","America/Chicago"
-"64077","39.22356","-94.13028","Orrick","MO","Missouri","TRUE","","1690","9.1","29177","Ray","{""29177"": ""99.18"", ""29047"": ""0.82""}","Ray|Clay","29177|29047","FALSE","FALSE","America/Chicago"
-"64078","38.70311","-94.45628","Peculiar","MO","Missouri","TRUE","","9873","68.4","29037","Cass","{""29037"": ""100""}","Cass","29037","FALSE","FALSE","America/Chicago"
-"64079","39.35777","-94.79601","Platte City","MO","Missouri","TRUE","","14616","60.1","29165","Platte","{""29165"": ""100""}","Platte","29165","FALSE","FALSE","America/Chicago"
-"64080","38.76701","-94.25449","Pleasant Hill","MO","Missouri","TRUE","","13212","41.5","29037","Cass","{""29037"": ""99.21"", ""29095"": ""0.79""}","Cass|Jackson","29037|29095","FALSE","FALSE","America/Chicago"
-"64081","38.90705","-94.40411","Lees Summit","MO","Missouri","TRUE","","24507","663.3","29095","Jackson","{""29095"": ""100""}","Jackson","29095","FALSE","FALSE","America/Chicago"
-"64082","38.86531","-94.40773","Lees Summit","MO","Missouri","TRUE","","17004","340.7","29095","Jackson","{""29095"": ""87.17"", ""29037"": ""12.83""}","Jackson|Cass","29095|29037","FALSE","FALSE","America/Chicago"
-"64083","38.79971","-94.44728","Raymore","MO","Missouri","TRUE","","23230","314.9","29037","Cass","{""29037"": ""100""}","Cass","29037","FALSE","FALSE","America/Chicago"
-"64084","39.38345","-94.06459","Rayville","MO","Missouri","TRUE","","1572","12.3","29177","Ray","{""29177"": ""100""}","Ray","29177","FALSE","FALSE","America/Chicago"
-"64085","39.33449","-93.94571","Richmond","MO","Missouri","TRUE","","8377","19.1","29177","Ray","{""29177"": ""100""}","Ray","29177","FALSE","FALSE","America/Chicago"
-"64086","38.90788","-94.28751","Lees Summit","MO","Missouri","TRUE","","22940","236.8","29095","Jackson","{""29095"": ""100""}","Jackson","29095","FALSE","FALSE","America/Chicago"
-"64088","39.15841","-94.18443","Sibley","MO","Missouri","TRUE","","1335","18.5","29095","Jackson","{""29095"": ""100""}","Jackson","29095","FALSE","FALSE","America/Chicago"
-"64089","39.39226","-94.56261","Smithville","MO","Missouri","TRUE","","13448","81.2","29047","Clay","{""29047"": ""88.81"", ""29165"": ""11.19""}","Clay|Platte","29047|29165","FALSE","FALSE","America/Chicago"
-"64090","38.75934","-94.16359","Strasburg","MO","Missouri","TRUE","","123","402.5","29037","Cass","{""29037"": ""100""}","Cass","29037","FALSE","FALSE","America/Chicago"
-"64092","39.21992","-94.80207","Waldron","MO","Missouri","TRUE","","107","7.1","29165","Platte","{""29165"": ""100""}","Platte","29165","FALSE","FALSE","America/Chicago"
-"64093","38.79479","-93.73174","Warrensburg","MO","Missouri","TRUE","","28276","58.4","29101","Johnson","{""29101"": ""99.93"", ""29107"": ""0.07""}","Johnson|Lafayette","29101|29107","FALSE","FALSE","America/Chicago"
-"64096","39.20208","-93.5624","Waverly","MO","Missouri","TRUE","","1145","10.4","29107","Lafayette","{""29107"": ""100""}","Lafayette","29107","FALSE","FALSE","America/Chicago"
-"64097","39.10855","-93.98641","Wellington","MO","Missouri","TRUE","","1350","15.3","29107","Lafayette","{""29107"": ""100""}","Lafayette","29107","FALSE","FALSE","America/Chicago"
-"64098","39.45614","-94.89399","Weston","MO","Missouri","TRUE","","3274","17.2","29165","Platte","{""29165"": ""100""}","Platte","29165","FALSE","FALSE","America/Chicago"
-"64101","39.10362","-94.6006","Kansas City","MO","Missouri","TRUE","","322","311.2","29095","Jackson","{""29095"": ""100""}","Jackson","29095","FALSE","FALSE","America/Chicago"
-"64102","39.09396","-94.60411","Kansas City","MO","Missouri","TRUE","","0","0.0","29095","Jackson","{""29095"": ""0""}","Jackson","29095","FALSE","FALSE","America/Chicago"
-"64105","39.10477","-94.59104","Kansas City","MO","Missouri","TRUE","","5003","2565.4","29095","Jackson","{""29095"": ""100""}","Jackson","29095","FALSE","FALSE","America/Chicago"
-"64106","39.10515","-94.57207","Kansas City","MO","Missouri","TRUE","","9798","2453.6","29095","Jackson","{""29095"": ""100""}","Jackson","29095","FALSE","FALSE","America/Chicago"
-"64108","39.08422","-94.58485","Kansas City","MO","Missouri","TRUE","","8450","898.4","29095","Jackson","{""29095"": ""100""}","Jackson","29095","FALSE","FALSE","America/Chicago"
-"64109","39.06647","-94.56678","Kansas City","MO","Missouri","TRUE","","9744","1816.0","29095","Jackson","{""29095"": ""100""}","Jackson","29095","FALSE","FALSE","America/Chicago"
-"64110","39.03442","-94.57283","Kansas City","MO","Missouri","TRUE","","16619","2122.5","29095","Jackson","{""29095"": ""100""}","Jackson","29095","FALSE","FALSE","America/Chicago"
-"64111","39.05752","-94.5939","Kansas City","MO","Missouri","TRUE","","17942","2544.6","29095","Jackson","{""29095"": ""100""}","Jackson","29095","FALSE","FALSE","America/Chicago"
-"64112","39.03598","-94.59529","Kansas City","MO","Missouri","TRUE","","8666","2268.7","29095","Jackson","{""29095"": ""100""}","Jackson","29095","FALSE","FALSE","America/Chicago"
-"64113","39.01415","-94.5958","Kansas City","MO","Missouri","TRUE","","12129","1877.3","29095","Jackson","{""29095"": ""100""}","Jackson","29095","FALSE","FALSE","America/Chicago"
-"64114","38.95797","-94.59722","Kansas City","MO","Missouri","TRUE","","24548","1354.3","29095","Jackson","{""29095"": ""100""}","Jackson","29095","FALSE","FALSE","America/Chicago"
-"64116","39.14879","-94.57455","Kansas City","MO","Missouri","TRUE","","15824","562.9","29047","Clay","{""29047"": ""100""}","Clay","29047","FALSE","FALSE","America/Chicago"
-"64117","39.16523","-94.5229","Kansas City","MO","Missouri","TRUE","","14244","913.5","29047","Clay","{""29047"": ""100""}","Clay","29047","FALSE","FALSE","America/Chicago"
-"64118","39.213","-94.57474","Kansas City","MO","Missouri","TRUE","","42952","1294.6","29047","Clay","{""29047"": ""99.24"", ""29165"": ""0.76""}","Clay|Platte","29047|29165","FALSE","FALSE","America/Chicago"
-"64119","39.20938","-94.51934","Kansas City","MO","Missouri","TRUE","","28513","817.3","29047","Clay","{""29047"": ""100""}","Clay","29047","FALSE","FALSE","America/Chicago"
-"64120","39.13092","-94.51526","Kansas City","MO","Missouri","TRUE","","406","19.1","29095","Jackson","{""29095"": ""100""}","Jackson","29095","FALSE","FALSE","America/Chicago"
-"64123","39.11435","-94.52323","Kansas City","MO","Missouri","TRUE","","9830","2304.1","29095","Jackson","{""29095"": ""100""}","Jackson","29095","FALSE","FALSE","America/Chicago"
-"64124","39.10721","-94.53905","Kansas City","MO","Missouri","TRUE","","11366","2577.5","29095","Jackson","{""29095"": ""100""}","Jackson","29095","FALSE","FALSE","America/Chicago"
-"64125","39.10579","-94.49381","Kansas City","MO","Missouri","TRUE","","1740","406.9","29095","Jackson","{""29095"": ""100""}","Jackson","29095","FALSE","FALSE","America/Chicago"
-"64126","39.09042","-94.49617","Kansas City","MO","Missouri","TRUE","","6606","1025.1","29095","Jackson","{""29095"": ""100""}","Jackson","29095","FALSE","FALSE","America/Chicago"
-"64127","39.08914","-94.53856","Kansas City","MO","Missouri","TRUE","","15772","1455.2","29095","Jackson","{""29095"": ""100""}","Jackson","29095","FALSE","FALSE","America/Chicago"
-"64128","39.06557","-94.53462","Kansas City","MO","Missouri","TRUE","","11844","1493.9","29095","Jackson","{""29095"": ""100""}","Jackson","29095","FALSE","FALSE","America/Chicago"
-"64129","39.04931","-94.4961","Kansas City","MO","Missouri","TRUE","","8615","320.9","29095","Jackson","{""29095"": ""100""}","Jackson","29095","FALSE","FALSE","America/Chicago"
-"64130","39.03372","-94.54077","Kansas City","MO","Missouri","TRUE","","20170","1081.2","29095","Jackson","{""29095"": ""100""}","Jackson","29095","FALSE","FALSE","America/Chicago"
-"64131","38.96168","-94.57563","Kansas City","MO","Missouri","TRUE","","22676","1177.3","29095","Jackson","{""29095"": ""100""}","Jackson","29095","FALSE","FALSE","America/Chicago"
-"64132","38.98676","-94.54164","Kansas City","MO","Missouri","TRUE","","14206","538.2","29095","Jackson","{""29095"": ""100""}","Jackson","29095","FALSE","FALSE","America/Chicago"
-"64133","39.01386","-94.45648","Kansas City","MO","Missouri","TRUE","","34958","810.5","29095","Jackson","{""29095"": ""100""}","Jackson","29095","FALSE","FALSE","America/Chicago"
-"64134","38.92948","-94.48674","Kansas City","MO","Missouri","TRUE","","23219","752.5","29095","Jackson","{""29095"": ""100""}","Jackson","29095","FALSE","FALSE","America/Chicago"
-"64136","39.01145","-94.40066","Kansas City","MO","Missouri","TRUE","","2089","170.4","29095","Jackson","{""29095"": ""100""}","Jackson","29095","FALSE","FALSE","America/Chicago"
-"64137","38.93525","-94.54269","Kansas City","MO","Missouri","TRUE","","10961","584.8","29095","Jackson","{""29095"": ""100""}","Jackson","29095","FALSE","FALSE","America/Chicago"
-"64138","38.9688","-94.47028","Kansas City","MO","Missouri","TRUE","","25417","732.4","29095","Jackson","{""29095"": ""100""}","Jackson","29095","FALSE","FALSE","America/Chicago"
-"64139","38.96676","-94.40884","Kansas City","MO","Missouri","TRUE","","2362","222.4","29095","Jackson","{""29095"": ""100""}","Jackson","29095","FALSE","FALSE","America/Chicago"
-"64145","38.8755","-94.59312","Kansas City","MO","Missouri","TRUE","","5060","296.5","29095","Jackson","{""29095"": ""100""}","Jackson","29095","FALSE","FALSE","America/Chicago"
-"64146","38.88773","-94.57334","Kansas City","MO","Missouri","TRUE","","1618","129.5","29095","Jackson","{""29095"": ""100""}","Jackson","29095","FALSE","FALSE","America/Chicago"
-"64147","38.85281","-94.54626","Kansas City","MO","Missouri","TRUE","","602","71.7","29095","Jackson","{""29095"": ""74.38"", ""29037"": ""25.62""}","Jackson|Cass","29095|29037","FALSE","FALSE","America/Chicago"
-"64149","38.86258","-94.46538","Kansas City","MO","Missouri","TRUE","","330","14.9","29095","Jackson","{""29095"": ""100""}","Jackson","29095","FALSE","FALSE","America/Chicago"
-"64150","39.17045","-94.63029","Riverside","MO","Missouri","TRUE","","3427","237.6","29165","Platte","{""29165"": ""100""}","Platte","29165","FALSE","FALSE","America/Chicago"
-"64151","39.21489","-94.6311","Kansas City","MO","Missouri","TRUE","","27061","793.5","29165","Platte","{""29165"": ""100""}","Platte","29165","FALSE","FALSE","America/Chicago"
-"64152","39.21288","-94.72042","Kansas City","MO","Missouri","TRUE","","29029","377.0","29165","Platte","{""29165"": ""100""}","Platte","29165","FALSE","FALSE","America/Chicago"
-"64153","39.2805","-94.73228","Kansas City","MO","Missouri","TRUE","","5725","60.4","29165","Platte","{""29165"": ""100""}","Platte","29165","FALSE","FALSE","America/Chicago"
-"64154","39.27837","-94.63087","Kansas City","MO","Missouri","TRUE","","11258","312.3","29165","Platte","{""29165"": ""100""}","Platte","29165","FALSE","FALSE","America/Chicago"
-"64155","39.27699","-94.57682","Kansas City","MO","Missouri","TRUE","","23905","830.3","29047","Clay","{""29047"": ""100""}","Clay","29047","FALSE","FALSE","America/Chicago"
-"64156","39.27942","-94.52417","Kansas City","MO","Missouri","TRUE","","8168","222.9","29047","Clay","{""29047"": ""100""}","Clay","29047","FALSE","FALSE","America/Chicago"
-"64157","39.27616","-94.47186","Kansas City","MO","Missouri","TRUE","","20051","703.1","29047","Clay","{""29047"": ""100""}","Clay","29047","FALSE","FALSE","America/Chicago"
-"64158","39.23531","-94.48314","Kansas City","MO","Missouri","TRUE","","5096","649.6","29047","Clay","{""29047"": ""100""}","Clay","29047","FALSE","FALSE","America/Chicago"
-"64161","39.1619","-94.44958","Kansas City","MO","Missouri","TRUE","","359","8.6","29047","Clay","{""29047"": ""100""}","Clay","29047","FALSE","FALSE","America/Chicago"
-"64163","39.33641","-94.69091","Kansas City","MO","Missouri","TRUE","","870","39.0","29165","Platte","{""29165"": ""100""}","Platte","29165","FALSE","FALSE","America/Chicago"
-"64164","39.33093","-94.63239","Kansas City","MO","Missouri","TRUE","","238","8.9","29165","Platte","{""29165"": ""100""}","Platte","29165","FALSE","FALSE","America/Chicago"
-"64165","39.32142","-94.57623","Kansas City","MO","Missouri","TRUE","","503","45.6","29047","Clay","{""29047"": ""100""}","Clay","29047","FALSE","FALSE","America/Chicago"
-"64166","39.32207","-94.52303","Kansas City","MO","Missouri","TRUE","","199","15.5","29047","Clay","{""29047"": ""100""}","Clay","29047","FALSE","FALSE","America/Chicago"
-"64167","39.3175","-94.483","Kansas City","MO","Missouri","TRUE","","572","162.3","29047","Clay","{""29047"": ""100""}","Clay","29047","FALSE","FALSE","America/Chicago"
-"64401","39.63329","-94.71731","Agency","MO","Missouri","TRUE","","1248","12.9","29021","Buchanan","{""29021"": ""100""}","Buchanan","29021","FALSE","FALSE","America/Chicago"
-"64402","40.25757","-94.32789","Albany","MO","Missouri","TRUE","","2595","7.4","29075","Gentry","{""29075"": ""100""}","Gentry","29075","FALSE","FALSE","America/Chicago"
-"64420","40.48533","-94.28869","Allendale","MO","Missouri","TRUE","","67","45.6","29227","Worth","{""29227"": ""100""}","Worth","29227","FALSE","FALSE","America/Chicago"
-"64421","39.91297","-94.93341","Amazonia","MO","Missouri","TRUE","","927","13.0","29003","Andrew","{""29003"": ""100""}","Andrew","29003","FALSE","FALSE","America/Chicago"
-"64422","39.8891","-94.49364","Amity","MO","Missouri","TRUE","","418","5.0","29063","DeKalb","{""29063"": ""100""}","DeKalb","29063","FALSE","FALSE","America/Chicago"
-"64423","40.19007","-94.85584","Barnard","MO","Missouri","TRUE","","840","4.3","29147","Nodaway","{""29147"": ""100""}","Nodaway","29147","FALSE","FALSE","America/Chicago"
-"64424","40.26243","-94.03596","Bethany","MO","Missouri","TRUE","","4302","9.4","29081","Harrison","{""29081"": ""100""}","Harrison","29081","FALSE","FALSE","America/Chicago"
-"64426","40.51885","-93.86528","Blythedale","MO","Missouri","TRUE","","389","2.9","29081","Harrison","{""29081"": ""100""}","Harrison","29081","FALSE","FALSE","America/Chicago"
-"64427","40.11029","-94.83614","Bolckow","MO","Missouri","TRUE","","604","3.8","29003","Andrew","{""29003"": ""89.11"", ""29147"": ""10.89""}","Andrew|Nodaway","29003|29147","FALSE","FALSE","America/Chicago"
-"64428","40.43684","-95.09476","Burlington Junction","MO","Missouri","TRUE","","789","3.1","29147","Nodaway","{""29147"": ""97.77"", ""29005"": ""2.23""}","Nodaway|Atchison","29147|29005","FALSE","FALSE","America/Chicago"
-"64429","39.7347","-94.22783","Cameron","MO","Missouri","TRUE","","12961","31.9","29049","Clinton","{""29049"": ""46.64"", ""29063"": ""46.28"", ""29025"": ""6.36"", ""29061"": ""0.72""}","Clinton|DeKalb|Caldwell|Daviess","29049|29063|29025|29061","FALSE","FALSE","America/Chicago"
-"64430","39.83721","-94.56632","Clarksdale","MO","Missouri","TRUE","","810","7.6","29063","DeKalb","{""29063"": ""91.36"", ""29003"": ""8.64""}","DeKalb|Andrew","29063|29003","FALSE","FALSE","America/Chicago"
-"64431","40.52885","-94.99592","Clearmont","MO","Missouri","TRUE","","292","2.3","29147","Nodaway","{""29147"": ""100""}","Nodaway","29147","FALSE","FALSE","America/Chicago"
-"64432","40.26367","-94.66858","Clyde","MO","Missouri","TRUE","","130","248.6","29147","Nodaway","{""29147"": ""100""}","Nodaway","29147","FALSE","FALSE","America/Chicago"
-"64433","40.24107","-94.68053","Conception","MO","Missouri","TRUE","","289","148.9","29147","Nodaway","{""29147"": ""100""}","Nodaway","29147","FALSE","FALSE","America/Chicago"
-"64434","40.26189","-94.73352","Conception Junction","MO","Missouri","TRUE","","478","5.3","29147","Nodaway","{""29147"": ""100""}","Nodaway","29147","FALSE","FALSE","America/Chicago"
-"64436","39.85402","-94.69018","Cosby","MO","Missouri","TRUE","","821","9.9","29003","Andrew","{""29003"": ""100""}","Andrew","29003","FALSE","FALSE","America/Chicago"
-"64437","40.12858","-95.34692","Craig","MO","Missouri","TRUE","","530","1.3","29087","Holt","{""29087"": ""100""}","Holt","29087","FALSE","FALSE","America/Chicago"
-"64438","40.15981","-94.41063","Darlington","MO","Missouri","TRUE","","144","1.2","29075","Gentry","{""29075"": ""100""}","Gentry","29075","FALSE","FALSE","America/Chicago"
-"64439","39.52363","-94.7543","Dearborn","MO","Missouri","TRUE","","1453","10.5","29165","Platte","{""29165"": ""69.49"", ""29021"": ""30.51""}","Platte|Buchanan","29165|29021","FALSE","FALSE","America/Chicago"
-"64440","39.57804","-94.91891","De Kalb","MO","Missouri","TRUE","","667","6.8","29021","Buchanan","{""29021"": ""97.29"", ""29165"": ""2.71""}","Buchanan|Platte","29021|29165","FALSE","FALSE","America/Chicago"
-"64441","40.3982","-94.26605","Denver","MO","Missouri","TRUE","","95","0.7","29227","Worth","{""29227"": ""71.91"", ""29075"": ""28.09""}","Worth|Gentry","29227|29075","FALSE","FALSE","America/Chicago"
-"64442","40.49621","-94.00942","Eagleville","MO","Missouri","TRUE","","886","4.1","29081","Harrison","{""29081"": ""100""}","Harrison","29081","FALSE","FALSE","America/Chicago"
-"64443","39.74677","-94.65231","Easton","MO","Missouri","TRUE","","1708","13.5","29021","Buchanan","{""29021"": ""100""}","Buchanan","29021","FALSE","FALSE","America/Chicago"
-"64444","39.48464","-94.63943","Edgerton","MO","Missouri","TRUE","","1355","15.0","29165","Platte","{""29165"": ""94.03"", ""29021"": ""5.97""}","Platte|Buchanan","29165|29021","FALSE","FALSE","America/Chicago"
-"64445","40.53533","-95.13881","Elmo","MO","Missouri","TRUE","","238","2.2","29147","Nodaway","{""29147"": ""100""}","Nodaway","29147","FALSE","FALSE","America/Chicago"
-"64446","40.3201","-95.42108","Fairfax","MO","Missouri","TRUE","","1010","2.7","29005","Atchison","{""29005"": ""98.93"", ""29087"": ""1.07""}","Atchison|Holt","29005|29087","FALSE","FALSE","America/Chicago"
-"64448","39.59986","-94.81899","Faucett","MO","Missouri","TRUE","","993","10.1","29021","Buchanan","{""29021"": ""100""}","Buchanan","29021","FALSE","FALSE","America/Chicago"
-"64449","40.04259","-94.97763","Fillmore","MO","Missouri","TRUE","","565","5.5","29003","Andrew","{""29003"": ""100""}","Andrew","29003","FALSE","FALSE","America/Chicago"
-"64451","39.99561","-95.19634","Forest City","MO","Missouri","TRUE","","498","4.2","29087","Holt","{""29087"": ""100""}","Holt","29087","FALSE","FALSE","America/Chicago"
-"64453","40.34502","-94.48017","Gentry","MO","Missouri","TRUE","","201","2.1","29075","Gentry","{""29075"": ""100""}","Gentry","29075","FALSE","FALSE","America/Chicago"
-"64454","39.60274","-94.59642","Gower","MO","Missouri","TRUE","","2403","14.1","29049","Clinton","{""29049"": ""79.45"", ""29021"": ""20.55""}","Clinton|Buchanan","29049|29021","FALSE","FALSE","America/Chicago"
-"64455","40.18491","-95.00978","Graham","MO","Missouri","TRUE","","367","2.7","29147","Nodaway","{""29147"": ""94.84"", ""29003"": ""5.16""}","Nodaway|Andrew","29147|29003","FALSE","FALSE","America/Chicago"
-"64456","40.48962","-94.38704","Grant City","MO","Missouri","TRUE","","1455","3.3","29227","Worth","{""29227"": ""99.04"", ""29081"": ""0.96""}","Worth|Harrison","29227|29081","FALSE","FALSE","America/Chicago"
-"64457","40.16095","-94.68555","Guilford","MO","Missouri","TRUE","","229","2.2","29147","Nodaway","{""29147"": ""92.1"", ""29003"": ""7.9""}","Nodaway|Andrew","29147|29003","FALSE","FALSE","America/Chicago"
-"64458","40.52077","-94.14305","Hatfield","MO","Missouri","TRUE","","127","0.8","29081","Harrison","{""29081"": ""100""}","Harrison","29081","FALSE","FALSE","America/Chicago"
-"64459","39.92948","-94.64646","Helena","MO","Missouri","TRUE","","397","6.2","29003","Andrew","{""29003"": ""100""}","Andrew","29003","FALSE","FALSE","America/Chicago"
-"64461","40.52234","-94.813","Hopkins","MO","Missouri","TRUE","","790","4.0","29147","Nodaway","{""29147"": ""100""}","Nodaway","29147","FALSE","FALSE","America/Chicago"
-"64463","40.06282","-94.48256","King City","MO","Missouri","TRUE","","1564","4.4","29075","Gentry","{""29075"": ""88.01"", ""29063"": ""9.25"", ""29003"": ""2.74""}","Gentry|DeKalb|Andrew","29075|29063|29003","FALSE","FALSE","America/Chicago"
-"64465","39.54904","-94.29344","Lathrop","MO","Missouri","TRUE","","4663","18.9","29049","Clinton","{""29049"": ""93.91"", ""29025"": ""6.09""}","Clinton|Caldwell","29049|29025","FALSE","FALSE","America/Chicago"
-"64466","40.16542","-95.1073","Maitland","MO","Missouri","TRUE","","398","2.6","29087","Holt","{""29087"": ""100""}","Holt","29087","FALSE","FALSE","America/Chicago"
-"64467","40.40144","-94.16093","Martinsville","MO","Missouri","TRUE","","188","1.6","29081","Harrison","{""29081"": ""100""}","Harrison","29081","FALSE","FALSE","America/Chicago"
-"64468","40.34392","-94.88079","Maryville","MO","Missouri","TRUE","","15599","41.6","29147","Nodaway","{""29147"": ""100""}","Nodaway","29147","FALSE","FALSE","America/Chicago"
-"64469","39.92672","-94.36668","Maysville","MO","Missouri","TRUE","","2212","7.0","29063","DeKalb","{""29063"": ""100""}","DeKalb","29063","FALSE","FALSE","America/Chicago"
-"64470","40.16899","-95.22393","Mound City","MO","Missouri","TRUE","","1540","7.8","29087","Holt","{""29087"": ""100""}","Holt","29087","FALSE","FALSE","America/Chicago"
-"64471","40.25602","-94.19423","New Hampton","MO","Missouri","TRUE","","434","4.0","29081","Harrison","{""29081"": ""95.03"", ""29075"": ""4.97""}","Harrison|Gentry","29081|29075","FALSE","FALSE","America/Chicago"
-"64473","39.9743","-95.08302","Oregon","MO","Missouri","TRUE","","1439","5.1","29087","Holt","{""29087"": ""100""}","Holt","29087","FALSE","FALSE","America/Chicago"
-"64474","39.75575","-94.38273","Osborn","MO","Missouri","TRUE","","803","5.2","29063","DeKalb","{""29063"": ""78.78"", ""29049"": ""21.22""}","DeKalb|Clinton","29063|29049","FALSE","FALSE","America/Chicago"
-"64475","40.43887","-94.62615","Parnell","MO","Missouri","TRUE","","351","1.9","29147","Nodaway","{""29147"": ""81.84"", ""29227"": ""18.16""}","Nodaway|Worth","29147|29227","FALSE","FALSE","America/Chicago"
-"64476","40.45082","-94.83755","Pickering","MO","Missouri","TRUE","","318","4.1","29147","Nodaway","{""29147"": ""100""}","Nodaway","29147","FALSE","FALSE","America/Chicago"
-"64477","39.57363","-94.45624","Plattsburg","MO","Missouri","TRUE","","3506","15.0","29049","Clinton","{""29049"": ""100""}","Clinton","29049","FALSE","FALSE","America/Chicago"
-"64479","40.35026","-94.66346","Ravenwood","MO","Missouri","TRUE","","901","5.1","29147","Nodaway","{""29147"": ""94.48"", ""29075"": ""5.52""}","Nodaway|Gentry","29147|29075","FALSE","FALSE","America/Chicago"
-"64480","40.05947","-94.70838","Rea","MO","Missouri","TRUE","","175","2.4","29003","Andrew","{""29003"": ""100""}","Andrew","29003","FALSE","FALSE","America/Chicago"
-"64481","40.35607","-93.8899","Ridgeway","MO","Missouri","TRUE","","888","2.7","29081","Harrison","{""29081"": ""100""}","Harrison","29081","FALSE","FALSE","America/Chicago"
-"64482","40.46298","-95.54198","Rock Port","MO","Missouri","TRUE","","2138","6.7","29005","Atchison","{""29005"": ""100""}","Atchison","29005","FALSE","FALSE","America/Chicago"
-"64483","40.04456","-94.83982","Rosendale","MO","Missouri","TRUE","","819","8.5","29003","Andrew","{""29003"": ""100""}","Andrew","29003","FALSE","FALSE","America/Chicago"
-"64484","39.55668","-95.02036","Rushville","MO","Missouri","TRUE","","1047","5.6","29021","Buchanan","{""29021"": ""84.46"", ""29165"": ""15.54""}","Buchanan|Platte","29021|29165","FALSE","FALSE","America/Chicago"
-"64485","39.95171","-94.81387","Savannah","MO","Missouri","TRUE","","7846","29.4","29003","Andrew","{""29003"": ""100""}","Andrew","29003","FALSE","FALSE","America/Chicago"
-"64486","40.52908","-94.61867","Sheridan","MO","Missouri","TRUE","","455","3.0","29227","Worth","{""29227"": ""78.9"", ""29147"": ""21.1""}","Worth|Nodaway","29227|29147","FALSE","FALSE","America/Chicago"
-"64487","40.30865","-95.10265","Skidmore","MO","Missouri","TRUE","","580","1.7","29147","Nodaway","{""29147"": ""89.83"", ""29005"": ""5.81"", ""29087"": ""4.36""}","Nodaway|Atchison|Holt","29147|29005|29087","FALSE","FALSE","America/Chicago"
-"64489","40.23307","-94.55553","Stanberry","MO","Missouri","TRUE","","2221","6.9","29075","Gentry","{""29075"": ""93.81"", ""29147"": ""6.19""}","Gentry|Nodaway","29075|29147","FALSE","FALSE","America/Chicago"
-"64490","39.73535","-94.51603","Stewartsville","MO","Missouri","TRUE","","1801","7.5","29063","DeKalb","{""29063"": ""67.32"", ""29049"": ""29.23"", ""29021"": ""3.45""}","DeKalb|Clinton|Buchanan","29063|29049|29021","FALSE","FALSE","America/Chicago"
-"64491","40.44831","-95.34493","Tarkio","MO","Missouri","TRUE","","1817","6.2","29005","Atchison","{""29005"": ""100""}","Atchison","29005","FALSE","FALSE","America/Chicago"
-"64492","39.47985","-94.53458","Trimble","MO","Missouri","TRUE","","1886","24.1","29049","Clinton","{""29049"": ""83.73"", ""29047"": ""16.27""}","Clinton|Clay","29049|29047","FALSE","FALSE","America/Chicago"
-"64493","39.63503","-94.31814","Turney","MO","Missouri","TRUE","","563","7.9","29049","Clinton","{""29049"": ""100""}","Clinton","29049","FALSE","FALSE","America/Chicago"
-"64494","39.99165","-94.61181","Union Star","MO","Missouri","TRUE","","902","5.8","29063","DeKalb","{""29063"": ""69.35"", ""29003"": ""30.65""}","DeKalb|Andrew","29063|29003","FALSE","FALSE","America/Chicago"
-"64496","40.4807","-95.63994","Watson","MO","Missouri","TRUE","","54","0.6","29005","Atchison","{""29005"": ""100""}","Atchison","29005","FALSE","FALSE","America/Chicago"
-"64497","39.92558","-94.21998","Weatherby","MO","Missouri","TRUE","","448","4.2","29063","DeKalb","{""29063"": ""71.91"", ""29061"": ""28.09""}","DeKalb|Daviess","29063|29061","FALSE","FALSE","America/Chicago"
-"64498","40.53957","-95.32196","Westboro","MO","Missouri","TRUE","","200","1.0","29005","Atchison","{""29005"": ""100""}","Atchison","29005","FALSE","FALSE","America/Chicago"
-"64499","40.39381","-94.43969","Worth","MO","Missouri","TRUE","","78","2.9","29227","Worth","{""29227"": ""84.87"", ""29075"": ""15.13""}","Worth|Gentry","29227|29075","FALSE","FALSE","America/Chicago"
-"64501","39.76563","-94.84462","Saint Joseph","MO","Missouri","TRUE","","11894","1271.8","29021","Buchanan","{""29021"": ""100""}","Buchanan","29021","FALSE","FALSE","America/Chicago"
-"64503","39.74901","-94.84367","Saint Joseph","MO","Missouri","TRUE","","12425","317.5","29021","Buchanan","{""29021"": ""100""}","Buchanan","29021","FALSE","FALSE","America/Chicago"
-"64504","39.68622","-94.91344","Saint Joseph","MO","Missouri","TRUE","","11205","94.2","29021","Buchanan","{""29021"": ""100""}","Buchanan","29021","FALSE","FALSE","America/Chicago"
-"64505","39.8443","-94.834","Saint Joseph","MO","Missouri","TRUE","","13537","115.8","29021","Buchanan","{""29021"": ""72.25"", ""29003"": ""27.75""}","Buchanan|Andrew","29021|29003","FALSE","FALSE","America/Chicago"
-"64506","39.78973","-94.80172","Saint Joseph","MO","Missouri","TRUE","","24180","848.5","29021","Buchanan","{""29021"": ""96.53"", ""29003"": ""3.47""}","Buchanan|Andrew","29021|29003","FALSE","FALSE","America/Chicago"
-"64507","39.72863","-94.75993","Saint Joseph","MO","Missouri","TRUE","","13474","91.8","29021","Buchanan","{""29021"": ""100""}","Buchanan","29021","FALSE","FALSE","America/Chicago"
-"64601","39.80692","-93.57647","Chillicothe","MO","Missouri","TRUE","","11969","19.3","29117","Livingston","{""29117"": ""100""}","Livingston","29117","FALSE","FALSE","America/Chicago"
-"64620","39.896","-94.08971","Altamont","MO","Missouri","TRUE","","464","9.8","29061","Daviess","{""29061"": ""100""}","Daviess","29061","FALSE","FALSE","America/Chicago"
-"64622","39.49516","-93.54637","Bogard","MO","Missouri","TRUE","","573","3.4","29033","Carroll","{""29033"": ""100""}","Carroll","29033","FALSE","FALSE","America/Chicago"
-"64623","39.47035","-93.33376","Bosworth","MO","Missouri","TRUE","","366","2.0","29033","Carroll","{""29033"": ""100""}","Carroll","29033","FALSE","FALSE","America/Chicago"
-"64624","39.56841","-93.77766","Braymer","MO","Missouri","TRUE","","1457","4.9","29025","Caldwell","{""29025"": ""80.26"", ""29033"": ""10.05"", ""29177"": ""7.4"", ""29117"": ""2.29""}","Caldwell|Carroll|Ray|Livingston","29025|29033|29177|29117","FALSE","FALSE","America/Chicago"
-"64625","39.73949","-93.80706","Breckenridge","MO","Missouri","TRUE","","601","3.4","29025","Caldwell","{""29025"": ""88.98"", ""29061"": ""6.68"", ""29117"": ""4.35""}","Caldwell|Daviess|Livingston","29025|29061|29117","FALSE","FALSE","America/Chicago"
-"64628","39.79719","-93.04697","Brookfield","MO","Missouri","TRUE","","5987","15.2","29115","Linn","{""29115"": ""98.21"", ""29041"": ""1.79""}","Linn|Chariton","29115|29041","FALSE","FALSE","America/Chicago"
-"64630","40.03879","-93.15518","Browning","MO","Missouri","TRUE","","535","2.0","29115","Linn","{""29115"": ""60.47"", ""29211"": ""39.53""}","Linn|Sullivan","29115|29211","FALSE","FALSE","America/Chicago"
-"64631","39.81973","-92.8743","Bucklin","MO","Missouri","TRUE","","664","3.4","29115","Linn","{""29115"": ""81.49"", ""29121"": ""18.51""}","Linn|Macon","29115|29121","FALSE","FALSE","America/Chicago"
-"64632","40.47075","-93.76667","Cainsville","MO","Missouri","TRUE","","394","1.6","29081","Harrison","{""29081"": ""68.36"", ""29129"": ""31.64""}","Harrison|Mercer","29081|29129","FALSE","FALSE","America/Chicago"
-"64633","39.35829","-93.4837","Carrollton","MO","Missouri","TRUE","","4719","7.9","29033","Carroll","{""29033"": ""100""}","Carroll","29033","FALSE","FALSE","America/Chicago"
-"64635","39.93785","-93.44438","Chula","MO","Missouri","TRUE","","548","3.6","29117","Livingston","{""29117"": ""92.82"", ""29079"": ""4.66"", ""29115"": ""2.52""}","Livingston|Grundy|Linn","29117|29079|29115","FALSE","FALSE","America/Chicago"
-"64636","40.11023","-93.98127","Coffey","MO","Missouri","TRUE","","295","4.7","29061","Daviess","{""29061"": ""96.66"", ""29081"": ""3.34""}","Daviess|Harrison","29061|29081","FALSE","FALSE","America/Chicago"
-"64637","39.5617","-93.91593","Cowgill","MO","Missouri","TRUE","","553","2.6","29025","Caldwell","{""29025"": ""80.51"", ""29177"": ""19.49""}","Caldwell|Ray","29025|29177","FALSE","FALSE","America/Chicago"
-"64638","39.61963","-93.61336","Dawn","MO","Missouri","TRUE","","733","4.3","29117","Livingston","{""29117"": ""77.93"", ""29033"": ""22.07""}","Livingston|Carroll","29117|29033","FALSE","FALSE","America/Chicago"
-"64639","39.39201","-93.22301","De Witt","MO","Missouri","TRUE","","202","1.9","29033","Carroll","{""29033"": ""100""}","Carroll","29033","FALSE","FALSE","America/Chicago"
-"64640","39.89844","-93.94498","Gallatin","MO","Missouri","TRUE","","2894","8.0","29061","Daviess","{""29061"": ""100""}","Daviess","29061","FALSE","FALSE","America/Chicago"
-"64641","40.17743","-93.39901","Galt","MO","Missouri","TRUE","","621","3.2","29079","Grundy","{""29079"": ""83.63"", ""29211"": ""16.37""}","Grundy|Sullivan","29079|29211","FALSE","FALSE","America/Chicago"
-"64642","40.17184","-93.83148","Gilman City","MO","Missouri","TRUE","","914","3.1","29081","Harrison","{""29081"": ""79.53"", ""29079"": ""14.85"", ""29061"": ""5.61""}","Harrison|Grundy|Daviess","29081|29079|29061","FALSE","FALSE","America/Chicago"
-"64643","39.61359","-93.37004","Hale","MO","Missouri","TRUE","","1221","4.3","29033","Carroll","{""29033"": ""70.62"", ""29117"": ""29.38""}","Carroll|Livingston","29033|29117","FALSE","FALSE","America/Chicago"
-"64644","39.73591","-93.97284","Hamilton","MO","Missouri","TRUE","","3552","12.5","29025","Caldwell","{""29025"": ""94.51"", ""29061"": ""5.49""}","Caldwell|Daviess","29025|29061","FALSE","FALSE","America/Chicago"
-"64645","40.29742","-93.32736","Harris","MO","Missouri","TRUE","","187","1.6","29211","Sullivan","{""29211"": ""70.26"", ""29129"": ""29.74""}","Sullivan|Mercer","29211|29129","FALSE","FALSE","America/Chicago"
-"64646","40.09789","-93.31383","Humphreys","MO","Missouri","TRUE","","160","1.1","29211","Sullivan","{""29211"": ""91.25"", ""29115"": ""8.75""}","Sullivan|Linn","29211|29115","FALSE","FALSE","America/Chicago"
-"64647","40.026","-93.97593","Jameson","MO","Missouri","TRUE","","348","2.6","29061","Daviess","{""29061"": ""100""}","Daviess","29061","FALSE","FALSE","America/Chicago"
-"64648","39.99021","-93.80216","Jamesport","MO","Missouri","TRUE","","2406","7.9","29061","Daviess","{""29061"": ""81.35"", ""29079"": ""15.03"", ""29117"": ""3.62""}","Daviess|Grundy|Livingston","29061|29079|29117","FALSE","FALSE","America/Chicago"
-"64649","39.77493","-94.08762","Kidder","MO","Missouri","TRUE","","488","5.1","29025","Caldwell","{""29025"": ""76.27"", ""29061"": ""23.73""}","Caldwell|Daviess","29025|29061","FALSE","FALSE","America/Chicago"
-"64650","39.63486","-94.05983","Kingston","MO","Missouri","TRUE","","622","5.9","29025","Caldwell","{""29025"": ""100""}","Caldwell","29025","FALSE","FALSE","America/Chicago"
-"64651","39.76933","-93.18582","Laclede","MO","Missouri","TRUE","","657","5.9","29115","Linn","{""29115"": ""100""}","Linn","29115","FALSE","FALSE","America/Chicago"
-"64652","40.02449","-93.42406","Laredo","MO","Missouri","TRUE","","379","3.2","29079","Grundy","{""29079"": ""100""}","Grundy","29079","FALSE","FALSE","America/Chicago"
-"64653","39.9003","-93.21048","Linneus","MO","Missouri","TRUE","","688","2.9","29115","Linn","{""29115"": ""100""}","Linn","29115","FALSE","FALSE","America/Chicago"
-"64654","39.83446","-93.77259","Lock Springs","MO","Missouri","TRUE","","54","7.5","29061","Daviess","{""29061"": ""100""}","Daviess","29061","FALSE","FALSE","America/Chicago"
-"64655","40.45067","-93.24657","Lucerne","MO","Missouri","TRUE","","195","1.0","29171","Putnam","{""29171"": ""100""}","Putnam","29171","FALSE","FALSE","America/Chicago"
-"64656","39.67743","-93.69268","Ludlow","MO","Missouri","TRUE","","252","4.8","29117","Livingston","{""29117"": ""100""}","Livingston","29117","FALSE","FALSE","America/Chicago"
-"64657","40.12602","-94.21992","McFall","MO","Missouri","TRUE","","440","2.6","29075","Gentry","{""29075"": ""58.51"", ""29081"": ""28.79"", ""29061"": ""12.69""}","Gentry|Harrison|Daviess","29075|29081|29061","FALSE","FALSE","America/Chicago"
-"64658","39.66687","-92.92362","Marceline","MO","Missouri","TRUE","","3374","13.8","29115","Linn","{""29115"": ""79.4"", ""29041"": ""20.6""}","Linn|Chariton","29115|29041","FALSE","FALSE","America/Chicago"
-"64659","39.78453","-93.29795","Meadville","MO","Missouri","TRUE","","990","5.2","29115","Linn","{""29115"": ""100""}","Linn","29115","FALSE","FALSE","America/Chicago"
-"64660","39.5709","-93.09382","Mendon","MO","Missouri","TRUE","","442","2.1","29041","Chariton","{""29041"": ""100""}","Chariton","29041","FALSE","FALSE","America/Chicago"
-"64661","40.53062","-93.51266","Mercer","MO","Missouri","TRUE","","825","3.1","29129","Mercer","{""29129"": ""100""}","Mercer","29129","FALSE","FALSE","America/Chicago"
-"64664","39.74432","-93.66499","Mooresville","MO","Missouri","TRUE","","374","2.8","29117","Livingston","{""29117"": ""100""}","Livingston","29117","FALSE","FALSE","America/Chicago"
-"64667","40.38502","-93.33481","Newtown","MO","Missouri","TRUE","","447","1.9","29211","Sullivan","{""29211"": ""80"", ""29129"": ""13.16"", ""29171"": ""6.84""}","Sullivan|Mercer|Putnam","29211|29129|29171","FALSE","FALSE","America/Chicago"
-"64668","39.35102","-93.70209","Norborne","MO","Missouri","TRUE","","1586","4.0","29033","Carroll","{""29033"": ""85.03"", ""29177"": ""14.97""}","Carroll|Ray","29033|29177","FALSE","FALSE","America/Chicago"
-"64670","40.04813","-94.14156","Pattonsburg","MO","Missouri","TRUE","","1011","3.1","29061","Daviess","{""29061"": ""84.95"", ""29063"": ""10.18"", ""29081"": ""2.66"", ""29075"": ""2.2""}","Daviess|DeKalb|Harrison|Gentry","29061|29063|29081|29075","FALSE","FALSE","America/Chicago"
-"64671","39.53647","-94.05858","Polo","MO","Missouri","TRUE","","1928","8.7","29025","Caldwell","{""29025"": ""79.53"", ""29177"": ""20.47""}","Caldwell|Ray","29025|29177","FALSE","FALSE","America/Chicago"
-"64672","40.54034","-93.24142","Powersville","MO","Missouri","TRUE","","227","1.3","29171","Putnam","{""29171"": ""100""}","Putnam","29171","FALSE","FALSE","America/Chicago"
-"64673","40.37745","-93.58664","Princeton","MO","Missouri","TRUE","","2496","4.0","29129","Mercer","{""29129"": ""100""}","Mercer","29129","FALSE","FALSE","America/Chicago"
-"64674","39.96709","-93.13951","Purdin","MO","Missouri","TRUE","","382","2.5","29115","Linn","{""29115"": ""100""}","Linn","29115","FALSE","FALSE","America/Chicago"
-"64676","39.64499","-93.05431","Rothville","MO","Missouri","TRUE","","186","2.6","29041","Chariton","{""29041"": ""100""}","Chariton","29041","FALSE","FALSE","America/Chicago"
-"64679","40.23547","-93.58484","Spickard","MO","Missouri","TRUE","","798","3.5","29079","Grundy","{""29079"": ""91.55"", ""29129"": ""8.45""}","Grundy|Mercer","29079|29129","FALSE","FALSE","America/Chicago"
-"64681","39.64778","-93.22159","Sumner","MO","Missouri","TRUE","","151","1.3","29041","Chariton","{""29041"": ""100""}","Chariton","29041","FALSE","FALSE","America/Chicago"
-"64682","39.55053","-93.49355","Tina","MO","Missouri","TRUE","","349","3.8","29033","Carroll","{""29033"": ""100""}","Carroll","29033","FALSE","FALSE","America/Chicago"
-"64683","40.07736","-93.60167","Trenton","MO","Missouri","TRUE","","7924","13.4","29079","Grundy","{""29079"": ""98.91"", ""29117"": ""1.09""}","Grundy|Livingston","29079|29117","FALSE","FALSE","America/Chicago"
-"64686","39.7503","-93.62435","Utica","MO","Missouri","TRUE","","164","39.0","29117","Livingston","{""29117"": ""100""}","Livingston","29117","FALSE","FALSE","America/Chicago"
-"64688","39.81567","-93.38263","Wheeling","MO","Missouri","TRUE","","630","4.1","29117","Livingston","{""29117"": ""84.85"", ""29115"": ""15.15""}","Livingston|Linn","29117|29115","FALSE","FALSE","America/Chicago"
-"64689","39.87366","-94.14815","Winston","MO","Missouri","TRUE","","671","7.5","29061","Daviess","{""29061"": ""100""}","Daviess","29061","FALSE","FALSE","America/Chicago"
-"64701","38.61854","-94.33351","Harrisonville","MO","Missouri","TRUE","","14240","46.9","29037","Cass","{""29037"": ""100""}","Cass","29037","FALSE","FALSE","America/Chicago"
-"64720","38.40491","-94.34314","Adrian","MO","Missouri","TRUE","","3452","10.2","29013","Bates","{""29013"": ""100""}","Bates","29013","FALSE","FALSE","America/Chicago"
-"64722","38.27813","-94.55032","Amoret","MO","Missouri","TRUE","","535","5.4","29013","Bates","{""29013"": ""100""}","Bates","29013","FALSE","FALSE","America/Chicago"
-"64723","38.36334","-94.55862","Amsterdam","MO","Missouri","TRUE","","825","7.1","29013","Bates","{""29013"": ""100""}","Bates","29013","FALSE","FALSE","America/Chicago"
-"64724","38.15135","-94.0112","Appleton City","MO","Missouri","TRUE","","2031","6.4","29185","St. Clair","{""29185"": ""87.04"", ""29013"": ""12.96""}","St. Clair|Bates","29185|29013","FALSE","FALSE","America/Chicago"
-"64725","38.49732","-94.36973","Archie","MO","Missouri","TRUE","","2289","15.0","29037","Cass","{""29037"": ""87.85"", ""29013"": ""12.15""}","Cass|Bates","29037|29013","FALSE","FALSE","America/Chicago"
-"64726","38.53186","-93.92214","Blairstown","MO","Missouri","TRUE","","259","2.3","29083","Henry","{""29083"": ""88.44"", ""29101"": ""11.56""}","Henry|Johnson","29083|29101","FALSE","FALSE","America/Chicago"
-"64728","37.70263","-94.52365","Bronaugh","MO","Missouri","TRUE","","569","2.9","29217","Vernon","{""29217"": ""100""}","Vernon","29217","FALSE","FALSE","America/Chicago"
-"64730","38.25758","-94.29645","Butler","MO","Missouri","TRUE","","6646","9.0","29013","Bates","{""29013"": ""100""}","Bates","29013","FALSE","FALSE","America/Chicago"
-"64733","38.58476","-93.82866","Chilhowee","MO","Missouri","TRUE","","1252","6.6","29101","Johnson","{""29101"": ""79.98"", ""29083"": ""20.02""}","Johnson|Henry","29101|29083","FALSE","FALSE","America/Chicago"
-"64734","38.65224","-94.57284","Cleveland","MO","Missouri","TRUE","","2123","19.1","29037","Cass","{""29037"": ""100""}","Cass","29037","FALSE","FALSE","America/Chicago"
-"64735","38.36745","-93.74306","Clinton","MO","Missouri","TRUE","","12954","19.0","29083","Henry","{""29083"": ""98.55"", ""29015"": ""1.45""}","Henry|Benton","29083|29015","FALSE","FALSE","America/Chicago"
-"64738","37.90138","-93.65931","Collins","MO","Missouri","TRUE","","1004","4.8","29185","St. Clair","{""29185"": ""100""}","St. Clair","29185","FALSE","FALSE","America/Chicago"
-"64739","38.51138","-94.0946","Creighton","MO","Missouri","TRUE","","939","7.1","29037","Cass","{""29037"": ""80.14"", ""29083"": ""19.86""}","Cass|Henry","29037|29083","FALSE","FALSE","America/Chicago"
-"64740","38.22554","-93.71441","Deepwater","MO","Missouri","TRUE","","1720","6.9","29083","Henry","{""29083"": ""85.83"", ""29185"": ""14.17""}","Henry|St. Clair","29083|29185","FALSE","FALSE","America/Chicago"
-"64741","37.81971","-94.56087","Deerfield","MO","Missouri","TRUE","","151","1.8","29217","Vernon","{""29217"": ""100""}","Vernon","29217","FALSE","FALSE","America/Chicago"
-"64742","38.49889","-94.54467","Drexel","MO","Missouri","TRUE","","2355","12.0","29037","Cass","{""29037"": ""71.27"", ""29013"": ""28.73""}","Cass|Bates","29037|29013","FALSE","FALSE","America/Chicago"
-"64743","38.66841","-94.23241","East Lynne","MO","Missouri","TRUE","","242","314.3","29037","Cass","{""29037"": ""100""}","Cass","29037","FALSE","FALSE","America/Chicago"
-"64744","37.85012","-93.97884","El Dorado Springs","MO","Missouri","TRUE","","8095","12.4","29039","Cedar","{""29039"": ""84.85"", ""29217"": ""8.27"", ""29185"": ""6.88""}","Cedar|Vernon|St. Clair","29039|29217|29185","FALSE","FALSE","America/Chicago"
-"64745","38.16687","-94.49647","Foster","MO","Missouri","TRUE","","156","19.2","29013","Bates","{""29013"": ""100""}","Bates","29013","FALSE","FALSE","America/Chicago"
-"64746","38.60941","-94.49337","Freeman","MO","Missouri","TRUE","","1325","16.5","29037","Cass","{""29037"": ""100""}","Cass","29037","FALSE","FALSE","America/Chicago"
-"64747","38.57308","-94.17686","Garden City","MO","Missouri","TRUE","","3606","11.6","29037","Cass","{""29037"": ""93.91"", ""29101"": ""6.09""}","Cass|Johnson","29037|29101","FALSE","FALSE","America/Chicago"
-"64748","37.35698","-94.09565","Golden City","MO","Missouri","TRUE","","1630","5.9","29011","Barton","{""29011"": ""71.6"", ""29057"": ""14.2"", ""29097"": ""11.99"", ""29109"": ""2.21""}","Barton|Dade|Jasper|Lawrence","29011|29057|29097|29109","FALSE","FALSE","America/Chicago"
-"64750","37.93546","-94.11501","Harwood","MO","Missouri","TRUE","","552","6.8","29217","Vernon","{""29217"": ""100""}","Vernon","29217","FALSE","FALSE","America/Chicago"
-"64752","38.06547","-94.56768","Hume","MO","Missouri","TRUE","","745","4.3","29013","Bates","{""29013"": ""73.2"", ""29217"": ""26.8""}","Bates|Vernon","29013|29217","FALSE","FALSE","America/Chicago"
-"64755","37.33718","-94.3094","Jasper","MO","Missouri","TRUE","","2623","6.7","29097","Jasper","{""29097"": ""82.94"", ""29011"": ""17.06""}","Jasper|Barton","29097|29011","FALSE","FALSE","America/Chicago"
-"64756","37.61824","-94.01481","Jerico Springs","MO","Missouri","TRUE","","689","4.2","29039","Cedar","{""29039"": ""84.77"", ""29057"": ""15.23""}","Cedar|Dade","29039|29057","FALSE","FALSE","America/Chicago"
-"64759","37.52501","-94.26299","Lamar","MO","Missouri","TRUE","","7859","11.5","29011","Barton","{""29011"": ""99.76"", ""29057"": ""0.24""}","Barton|Dade","29011|29057","FALSE","FALSE","America/Chicago"
-"64761","38.59201","-93.68867","Leeton","MO","Missouri","TRUE","","1271","6.8","29101","Johnson","{""29101"": ""90.69"", ""29083"": ""9.31""}","Johnson|Henry","29101|29083","FALSE","FALSE","America/Chicago"
-"64762","37.54772","-94.50037","Liberal","MO","Missouri","TRUE","","1551","4.5","29011","Barton","{""29011"": ""100""}","Barton","29011","FALSE","FALSE","America/Chicago"
-"64763","38.14468","-93.70169","Lowry City","MO","Missouri","TRUE","","1467","7.0","29185","St. Clair","{""29185"": ""100""}","St. Clair","29185","FALSE","FALSE","America/Chicago"
-"64765","37.99622","-94.44377","Metz","MO","Missouri","TRUE","","28","112.2","29217","Vernon","{""29217"": ""100""}","Vernon","29217","FALSE","FALSE","America/Chicago"
-"64767","37.75003","-94.20064","Milo","MO","Missouri","TRUE","","829","5.6","29217","Vernon","{""29217"": ""100""}","Vernon","29217","FALSE","FALSE","America/Chicago"
-"64769","37.4823","-94.56886","Mindenmines","MO","Missouri","TRUE","","690","6.8","29011","Barton","{""29011"": ""100""}","Barton","29011","FALSE","FALSE","America/Chicago"
-"64770","38.27222","-93.98536","Montrose","MO","Missouri","TRUE","","942","3.2","29083","Henry","{""29083"": ""84.19"", ""29013"": ""12.41"", ""29185"": ""3.41""}","Henry|Bates|St. Clair","29083|29013|29185","FALSE","FALSE","America/Chicago"
-"64771","37.76056","-94.45925","Moundville","MO","Missouri","TRUE","","364","3.4","29217","Vernon","{""29217"": ""100""}","Vernon","29217","FALSE","FALSE","America/Chicago"
-"64772","37.82945","-94.33172","Nevada","MO","Missouri","TRUE","","13406","37.4","29217","Vernon","{""29217"": ""100""}","Vernon","29217","FALSE","FALSE","America/Chicago"
-"64776","38.04348","-93.66572","Osceola","MO","Missouri","TRUE","","3880","6.2","29185","St. Clair","{""29185"": ""98.91"", ""29015"": ""1.09""}","St. Clair|Benton","29185|29015","FALSE","FALSE","America/Chicago"
-"64778","37.92405","-94.48263","Richards","MO","Missouri","TRUE","","713","2.4","29217","Vernon","{""29217"": ""100""}","Vernon","29217","FALSE","FALSE","America/Chicago"
-"64779","38.09377","-94.40442","Rich Hill","MO","Missouri","TRUE","","2714","5.5","29013","Bates","{""29013"": ""87.23"", ""29217"": ""12.77""}","Bates|Vernon","29013|29217","FALSE","FALSE","America/Chicago"
-"64780","38.06167","-94.0458","Rockville","MO","Missouri","TRUE","","492","1.9","29013","Bates","{""29013"": ""63.07"", ""29185"": ""36.93""}","Bates|St. Clair","29013|29185","FALSE","FALSE","America/Chicago"
-"64781","37.98077","-93.81427","Roscoe","MO","Missouri","TRUE","","81","29.4","29185","St. Clair","{""29185"": ""100""}","St. Clair","29185","FALSE","FALSE","America/Chicago"
-"64783","38.00467","-94.11222","Schell City","MO","Missouri","TRUE","","842","5.2","29217","Vernon","{""29217"": ""83.74"", ""29185"": ""16.26""}","Vernon|St. Clair","29217|29185","FALSE","FALSE","America/Chicago"
-"64784","37.66688","-94.23413","Sheldon","MO","Missouri","TRUE","","1312","4.6","29217","Vernon","{""29217"": ""87.93"", ""29011"": ""11.53"", ""29039"": ""0.53""}","Vernon|Barton|Cedar","29217|29011|29039","FALSE","FALSE","America/Chicago"
-"64788","38.42971","-94.02696","Urich","MO","Missouri","TRUE","","1706","6.3","29083","Henry","{""29083"": ""84.31"", ""29013"": ""15.69""}","Henry|Bates","29083|29013","FALSE","FALSE","America/Chicago"
-"64790","37.93016","-94.22666","Walker","MO","Missouri","TRUE","","869","4.2","29217","Vernon","{""29217"": ""100""}","Vernon","29217","FALSE","FALSE","America/Chicago"
-"64801","37.11012","-94.49639","Joplin","MO","Missouri","TRUE","","37001","243.3","29097","Jasper","{""29097"": ""100""}","Jasper","29097","FALSE","FALSE","America/Chicago"
-"64804","37.02091","-94.50993","Joplin","MO","Missouri","TRUE","","35676","151.1","29097","Jasper","{""29097"": ""56"", ""29145"": ""44""}","Jasper|Newton","29097|29145","FALSE","FALSE","America/Chicago"
-"64830","37.23137","-94.41035","Alba","MO","Missouri","TRUE","","796","216.1","29097","Jasper","{""29097"": ""100""}","Jasper","29097","FALSE","FALSE","America/Chicago"
-"64831","36.65661","-94.4565","Anderson","MO","Missouri","TRUE","","6302","20.7","29119","McDonald","{""29119"": ""100""}","McDonald","29119","FALSE","FALSE","America/Chicago"
-"64832","37.33984","-94.57194","Asbury","MO","Missouri","TRUE","","652","3.6","29097","Jasper","{""29097"": ""74.28"", ""29011"": ""25.72""}","Jasper|Barton","29097|29011","FALSE","FALSE","America/Chicago"
-"64833","37.1938","-94.12982","Avilla","MO","Missouri","TRUE","","46","90.9","29097","Jasper","{""29097"": ""100""}","Jasper","29097","FALSE","FALSE","America/Chicago"
-"64834","37.18771","-94.56871","Carl Junction","MO","Missouri","TRUE","","10144","123.7","29097","Jasper","{""29097"": ""100""}","Jasper","29097","FALSE","FALSE","America/Chicago"
-"64835","37.14841","-94.43741","Carterville","MO","Missouri","TRUE","","2338","375.7","29097","Jasper","{""29097"": ""100""}","Jasper","29097","FALSE","FALSE","America/Chicago"
-"64836","37.18743","-94.28787","Carthage","MO","Missouri","TRUE","","23882","50.6","29097","Jasper","{""29097"": ""100""}","Jasper","29097","FALSE","FALSE","America/Chicago"
-"64840","37.01818","-94.33319","Diamond","MO","Missouri","TRUE","","2984","22.6","29145","Newton","{""29145"": ""88.94"", ""29097"": ""11.06""}","Newton|Jasper","29145|29097","FALSE","FALSE","America/Chicago"
-"64841","37.07829","-94.41671","Duenweg","MO","Missouri","TRUE","","533","532.5","29097","Jasper","{""29097"": ""100""}","Jasper","29097","FALSE","FALSE","America/Chicago"
-"64842","36.79104","-94.10446","Fairview","MO","Missouri","TRUE","","894","15.5","29145","Newton","{""29145"": ""94.81"", ""29009"": ""5.19""}","Newton|Barry","29145|29009","FALSE","FALSE","America/Chicago"
-"64843","36.73389","-94.44391","Goodman","MO","Missouri","TRUE","","3847","26.1","29119","McDonald","{""29119"": ""89.29"", ""29145"": ""10.71""}","McDonald|Newton","29119|29145","FALSE","FALSE","America/Chicago"
-"64844","36.91535","-94.23901","Granby","MO","Missouri","TRUE","","4715","27.9","29145","Newton","{""29145"": ""100""}","Newton","29145","FALSE","FALSE","America/Chicago"
-"64847","36.59401","-94.44101","Lanagan","MO","Missouri","TRUE","","466","45.8","29119","McDonald","{""29119"": ""100""}","McDonald","29119","FALSE","FALSE","America/Chicago"
-"64848","37.17523","-93.99143","La Russell","MO","Missouri","TRUE","","482","4.1","29109","Lawrence","{""29109"": ""75.94"", ""29097"": ""24.06""}","Lawrence|Jasper","29109|29097","FALSE","FALSE","America/Chicago"
-"64849","37.25491","-94.44487","Neck City","MO","Missouri","TRUE","","161","158.4","29097","Jasper","{""29097"": ""100""}","Jasper","29097","FALSE","FALSE","America/Chicago"
-"64850","36.86088","-94.39835","Neosho","MO","Missouri","TRUE","","23688","44.6","29145","Newton","{""29145"": ""99.58"", ""29119"": ""0.42""}","Newton|McDonald","29145|29119","FALSE","FALSE","America/Chicago"
-"64854","36.54356","-94.45029","Noel","MO","Missouri","TRUE","","4143","23.7","29119","McDonald","{""29119"": ""100""}","McDonald","29119","FALSE","FALSE","America/Chicago"
-"64855","37.29597","-94.48582","Oronogo","MO","Missouri","TRUE","","2566","22.9","29097","Jasper","{""29097"": ""96.78"", ""29011"": ""3.22""}","Jasper|Barton","29097|29011","FALSE","FALSE","America/Chicago"
-"64856","36.56461","-94.26665","Pineville","MO","Missouri","TRUE","","3937","15.1","29119","McDonald","{""29119"": ""100""}","McDonald","29119","FALSE","FALSE","America/Chicago"
-"64857","37.24587","-94.43862","Purcell","MO","Missouri","TRUE","","419","268.7","29097","Jasper","{""29097"": ""100""}","Jasper","29097","FALSE","FALSE","America/Chicago"
-"64858","36.90012","-94.53001","Racine","MO","Missouri","TRUE","","103","98.4","29145","Newton","{""29145"": ""100""}","Newton","29145","FALSE","FALSE","America/Chicago"
-"64859","37.15956","-94.14708","Reeds","MO","Missouri","TRUE","","1391","10.4","29097","Jasper","{""29097"": ""100""}","Jasper","29097","FALSE","FALSE","America/Chicago"
-"64861","36.69772","-94.1485","Rocky Comfort","MO","Missouri","TRUE","","1112","7.6","29119","McDonald","{""29119"": ""95.25"", ""29145"": ""4.75""}","McDonald|Newton","29119|29145","FALSE","FALSE","America/Chicago"
-"64862","37.09739","-94.11431","Sarcoxie","MO","Missouri","TRUE","","3892","17.9","29097","Jasper","{""29097"": ""81.93"", ""29145"": ""12.92"", ""29109"": ""5.15""}","Jasper|Newton|Lawrence","29097|29145|29109","FALSE","FALSE","America/Chicago"
-"64863","36.55556","-94.58445","South West City","MO","Missouri","TRUE","","1787","22.2","29119","McDonald","{""29119"": ""100""}","McDonald","29119","FALSE","FALSE","America/Chicago"
-"64865","36.84081","-94.57817","Seneca","MO","Missouri","TRUE","","6256","31.1","29145","Newton","{""29145"": ""91.71"", ""29119"": ""8.29""}","Newton|McDonald","29145|29119","FALSE","FALSE","America/Chicago"
-"64866","36.86888","-94.1422","Stark City","MO","Missouri","TRUE","","1040","7.1","29145","Newton","{""29145"": ""100""}","Newton","29145","FALSE","FALSE","America/Chicago"
-"64867","36.72965","-94.23452","Stella","MO","Missouri","TRUE","","1198","8.0","29119","McDonald","{""29119"": ""57.85"", ""29145"": ""42.15""}","McDonald|Newton","29119|29145","FALSE","FALSE","America/Chicago"
-"64870","37.18523","-94.48113","Webb City","MO","Missouri","TRUE","","15278","173.5","29097","Jasper","{""29097"": ""100""}","Jasper","29097","FALSE","FALSE","America/Chicago"
-"64873","37.01766","-94.05146","Wentworth","MO","Missouri","TRUE","","843","7.6","29109","Lawrence","{""29109"": ""57.65"", ""29145"": ""42.35""}","Lawrence|Newton","29109|29145","FALSE","FALSE","America/Chicago"
-"64874","36.75832","-94.05496","Wheaton","MO","Missouri","TRUE","","629","117.7","29009","Barry","{""29009"": ""100""}","Barry","29009","FALSE","FALSE","America/Chicago"
-"65001","38.29067","-92.01086","Argyle","MO","Missouri","TRUE","","243","5.1","29151","Osage","{""29151"": ""76.81"", ""29125"": ""23.19""}","Osage|Maries","29151|29125","FALSE","FALSE","America/Chicago"
-"65010","38.79164","-92.24033","Ashland","MO","Missouri","TRUE","","6031","38.3","29019","Boone","{""29019"": ""100""}","Boone","29019","FALSE","FALSE","America/Chicago"
-"65011","38.39176","-92.71199","Barnett","MO","Missouri","TRUE","","2534","12.2","29141","Morgan","{""29141"": ""96.08"", ""29135"": ""3.92""}","Morgan|Moniteau","29141|29135","FALSE","FALSE","America/Chicago"
-"65013","38.27532","-91.74974","Belle","MO","Missouri","TRUE","","2639","8.3","29125","Maries","{""29125"": ""75.45"", ""29151"": ""24.55""}","Maries|Osage","29125|29151","FALSE","FALSE","America/Chicago"
-"65014","38.31338","-91.62565","Bland","MO","Missouri","TRUE","","2370","7.0","29073","Gasconade","{""29073"": ""79.71"", ""29151"": ""17.14"", ""29125"": ""3.15""}","Gasconade|Osage|Maries","29073|29151|29125","FALSE","FALSE","America/Chicago"
-"65016","38.56229","-91.92075","Bonnots Mill","MO","Missouri","TRUE","","1508","11.6","29151","Osage","{""29151"": ""100""}","Osage","29151","FALSE","FALSE","America/Chicago"
-"65017","38.09075","-92.49776","Brumley","MO","Missouri","TRUE","","926","6.1","29131","Miller","{""29131"": ""99.81"", ""29029"": ""0.19""}","Miller|Camden","29131|29029","FALSE","FALSE","America/Chicago"
-"65018","38.62052","-92.5632","California","MO","Missouri","TRUE","","7514","17.8","29135","Moniteau","{""29135"": ""97.91"", ""29053"": ""2.09""}","Moniteau|Cooper","29135|29053","FALSE","FALSE","America/Chicago"
-"65020","38.00441","-92.77976","Camdenton","MO","Missouri","TRUE","","16229","50.2","29029","Camden","{""29029"": ""100""}","Camden","29029","FALSE","FALSE","America/Chicago"
-"65023","38.6525","-92.39909","Centertown","MO","Missouri","TRUE","","1672","12.0","29051","Cole","{""29051"": ""83.99"", ""29135"": ""16.01""}","Cole|Moniteau","29051|29135","FALSE","FALSE","America/Chicago"
-"65024","38.62273","-91.7557","Chamois","MO","Missouri","TRUE","","1183","4.6","29151","Osage","{""29151"": ""100""}","Osage","29151","FALSE","FALSE","America/Chicago"
-"65025","38.67035","-92.6875","Clarksburg","MO","Missouri","TRUE","","672","5.5","29135","Moniteau","{""29135"": ""73.54"", ""29053"": ""26.46""}","Moniteau|Cooper","29135|29053","FALSE","FALSE","America/Chicago"
-"65026","38.32084","-92.57113","Eldon","MO","Missouri","TRUE","","11142","29.8","29131","Miller","{""29131"": ""99.59"", ""29141"": ""0.41""}","Miller|Morgan","29131|29141","FALSE","FALSE","America/Chicago"
-"65032","38.3424","-92.38235","Eugene","MO","Missouri","TRUE","","1684","11.3","29131","Miller","{""29131"": ""50.84"", ""29051"": ""49.16""}","Miller|Cole","29131|29051","FALSE","FALSE","America/Chicago"
-"65034","38.55832","-92.81969","Fortuna","MO","Missouri","TRUE","","1165","13.1","29141","Morgan","{""29141"": ""55.52"", ""29135"": ""44.48""}","Morgan|Moniteau","29141|29135","FALSE","FALSE","America/Chicago"
-"65035","38.36227","-91.93258","Freeburg","MO","Missouri","TRUE","","2049","9.9","29151","Osage","{""29151"": ""100""}","Osage","29151","FALSE","FALSE","America/Chicago"
-"65037","38.23784","-92.85696","Gravois Mills","MO","Missouri","TRUE","","4764","22.6","29141","Morgan","{""29141"": ""80.66"", ""29029"": ""19.34""}","Morgan|Camden","29141|29029","FALSE","FALSE","America/Chicago"
-"65039","38.71067","-92.28722","Hartsburg","MO","Missouri","TRUE","","2809","18.4","29019","Boone","{""29019"": ""94.76"", ""29027"": ""5.24""}","Boone|Callaway","29019|29027","FALSE","FALSE","America/Chicago"
-"65040","38.35991","-92.31102","Henley","MO","Missouri","TRUE","","1211","11.2","29051","Cole","{""29051"": ""85.51"", ""29131"": ""14.49""}","Cole|Miller","29051|29131","FALSE","FALSE","America/Chicago"
-"65041","38.64269","-91.4766","Hermann","MO","Missouri","TRUE","","5429","8.9","29073","Gasconade","{""29073"": ""86.15"", ""29139"": ""11.27"", ""29219"": ""2.59""}","Gasconade|Montgomery|Warren","29073|29139|29219","FALSE","FALSE","America/Chicago"
-"65043","38.62483","-92.10538","Holts Summit","MO","Missouri","TRUE","","10427","76.8","29027","Callaway","{""29027"": ""100""}","Callaway","29027","FALSE","FALSE","America/Chicago"
-"65046","38.77836","-92.48099","Jamestown","MO","Missouri","TRUE","","1410","7.3","29135","Moniteau","{""29135"": ""100""}","Moniteau","29135","FALSE","FALSE","America/Chicago"
-"65047","38.16157","-92.57225","Kaiser","MO","Missouri","TRUE","","1415","16.9","29131","Miller","{""29131"": ""84.83"", ""29029"": ""15.17""}","Miller|Camden","29131|29029","FALSE","FALSE","America/Chicago"
-"65048","38.3615","-92.04676","Koeltztown","MO","Missouri","TRUE","","126","2.4","29151","Osage","{""29151"": ""100""}","Osage","29151","FALSE","FALSE","America/Chicago"
-"65049","38.20032","-92.66842","Lake Ozark","MO","Missouri","TRUE","","7172","142.5","29029","Camden","{""29029"": ""70.41"", ""29131"": ""29.59""}","Camden|Miller","29029|29131","FALSE","FALSE","America/Chicago"
-"65050","38.54271","-92.6855","Latham","MO","Missouri","TRUE","","905","15.2","29135","Moniteau","{""29135"": ""100""}","Moniteau","29135","FALSE","FALSE","America/Chicago"
-"65051","38.46843","-91.79341","Linn","MO","Missouri","TRUE","","4845","15.5","29151","Osage","{""29151"": ""99.96"", ""29073"": ""0.04""}","Osage|Gasconade","29151|29073","FALSE","FALSE","America/Chicago"
-"65052","38.04943","-92.65326","Linn Creek","MO","Missouri","TRUE","","3817","28.6","29029","Camden","{""29029"": ""100""}","Camden","29029","FALSE","FALSE","America/Chicago"
-"65053","38.54132","-92.37149","Lohman","MO","Missouri","TRUE","","1682","18.5","29051","Cole","{""29051"": ""100""}","Cole","29051","FALSE","FALSE","America/Chicago"
-"65054","38.48628","-91.93837","Loose Creek","MO","Missouri","TRUE","","776","11.8","29151","Osage","{""29151"": ""100""}","Osage","29151","FALSE","FALSE","America/Chicago"
-"65058","38.25329","-92.13825","Meta","MO","Missouri","TRUE","","886","3.6","29125","Maries","{""29125"": ""47.39"", ""29151"": ""30.48"", ""29131"": ""19.27"", ""29051"": ""2.85""}","Maries|Osage|Miller|Cole","29125|29151|29131|29051","FALSE","FALSE","America/Chicago"
-"65059","38.69865","-91.87038","Mokane","MO","Missouri","TRUE","","889","9.4","29027","Callaway","{""29027"": ""100""}","Callaway","29027","FALSE","FALSE","America/Chicago"
-"65061","38.60041","-91.63667","Morrison","MO","Missouri","TRUE","","759","5.7","29073","Gasconade","{""29073"": ""77.48"", ""29151"": ""22.52""}","Gasconade|Osage","29073|29151","FALSE","FALSE","America/Chicago"
-"65062","38.49554","-91.65139","Mount Sterling","MO","Missouri","TRUE","","56","5.5","29073","Gasconade","{""29073"": ""71.43"", ""29151"": ""28.57""}","Gasconade|Osage","29073|29151","FALSE","FALSE","America/Chicago"
-"65063","38.72442","-92.08671","New Bloomfield","MO","Missouri","TRUE","","3936","17.4","29027","Callaway","{""29027"": ""100""}","Callaway","29027","FALSE","FALSE","America/Chicago"
-"65064","38.40778","-92.47683","Olean","MO","Missouri","TRUE","","593","12.6","29131","Miller","{""29131"": ""100""}","Miller","29131","FALSE","FALSE","America/Chicago"
-"65065","38.13304","-92.66885","Osage Beach","MO","Missouri","TRUE","","6728","166.0","29029","Camden","{""29029"": ""95.1"", ""29131"": ""4.9""}","Camden|Miller","29029|29131","FALSE","FALSE","America/Chicago"
-"65066","38.34963","-91.48834","Owensville","MO","Missouri","TRUE","","5942","11.5","29073","Gasconade","{""29073"": ""96.08"", ""29055"": ""3.92""}","Gasconade|Crawford","29073|29055","FALSE","FALSE","America/Chicago"
-"65067","38.76451","-91.71318","Portland","MO","Missouri","TRUE","","445","3.9","29027","Callaway","{""29027"": ""100""}","Callaway","29027","FALSE","FALSE","America/Chicago"
-"65068","38.82174","-92.61111","Prairie Home","MO","Missouri","TRUE","","786","6.8","29053","Cooper","{""29053"": ""100""}","Cooper","29053","FALSE","FALSE","America/Chicago"
-"65069","38.75374","-91.59182","Rhineland","MO","Missouri","TRUE","","590","3.0","29139","Montgomery","{""29139"": ""92.25"", ""29027"": ""7.75""}","Montgomery|Callaway","29139|29027","FALSE","FALSE","America/Chicago"
-"65072","38.26782","-92.72308","Rocky Mount","MO","Missouri","TRUE","","1568","32.0","29141","Morgan","{""29141"": ""80.62"", ""29131"": ""19.38""}","Morgan|Miller","29141|29131","FALSE","FALSE","America/Chicago"
-"65074","38.47933","-92.47518","Russellville","MO","Missouri","TRUE","","2872","12.1","29051","Cole","{""29051"": ""68.83"", ""29135"": ""31.17""}","Cole|Moniteau","29051|29135","FALSE","FALSE","America/Chicago"
-"65075","38.24999","-92.26608","Saint Elizabeth","MO","Missouri","TRUE","","895","7.6","29131","Miller","{""29131"": ""100""}","Miller","29131","FALSE","FALSE","America/Chicago"
-"65076","38.37131","-92.19443","Saint Thomas","MO","Missouri","TRUE","","780","11.6","29051","Cole","{""29051"": ""77.8"", ""29151"": ""22.2""}","Cole|Osage","29051|29151","FALSE","FALSE","America/Chicago"
-"65077","38.76606","-91.80319","Steedman","MO","Missouri","TRUE","","327","4.3","29027","Callaway","{""29027"": ""100""}","Callaway","29027","FALSE","FALSE","America/Chicago"
-"65078","38.39063","-93.00787","Stover","MO","Missouri","TRUE","","3814","9.7","29141","Morgan","{""29141"": ""99.65"", ""29015"": ""0.35""}","Morgan|Benton","29141|29015","FALSE","FALSE","America/Chicago"
-"65079","38.15232","-92.74824","Sunrise Beach","MO","Missouri","TRUE","","4043","51.6","29029","Camden","{""29029"": ""93.89"", ""29141"": ""6.05"", ""29131"": ""0.06""}","Camden|Morgan|Miller","29029|29141|29131","FALSE","FALSE","America/Chicago"
-"65080","38.63071","-91.97905","Tebbetts","MO","Missouri","TRUE","","1219","11.2","29027","Callaway","{""29027"": ""100""}","Callaway","29027","FALSE","FALSE","America/Chicago"
-"65081","38.64416","-92.78274","Tipton","MO","Missouri","TRUE","","4337","25.4","29135","Moniteau","{""29135"": ""95.26"", ""29141"": ""2.6"", ""29053"": ""2.14""}","Moniteau|Morgan|Cooper","29135|29141|29053","FALSE","FALSE","America/Chicago"
-"65082","38.22461","-92.42647","Tuscumbia","MO","Missouri","TRUE","","1179","6.8","29131","Miller","{""29131"": ""100""}","Miller","29131","FALSE","FALSE","America/Chicago"
-"65083","38.14191","-92.43972","Ulman","MO","Missouri","TRUE","","305","7.8","29131","Miller","{""29131"": ""100""}","Miller","29131","FALSE","FALSE","America/Chicago"
-"65084","38.43573","-92.8534","Versailles","MO","Missouri","TRUE","","6885","15.7","29141","Morgan","{""29141"": ""99.07"", ""29135"": ""0.93""}","Morgan|Moniteau","29141|29135","FALSE","FALSE","America/Chicago"
-"65085","38.40179","-92.07865","Westphalia","MO","Missouri","TRUE","","1252","8.6","29151","Osage","{""29151"": ""100""}","Osage","29151","FALSE","FALSE","America/Chicago"
-"65101","38.49167","-92.14999","Jefferson City","MO","Missouri","TRUE","","30120","87.6","29051","Cole","{""29051"": ""99.15"", ""29151"": ""0.8"", ""29027"": ""0.05""}","Cole|Osage|Callaway","29051|29151|29027","FALSE","FALSE","America/Chicago"
-"65109","38.57328","-92.27874","Jefferson City","MO","Missouri","TRUE","","39188","184.2","29051","Cole","{""29051"": ""100""}","Cole","29051","FALSE","FALSE","America/Chicago"
-"65201","38.8982","-92.24359","Columbia","MO","Missouri","TRUE","","47090","212.5","29019","Boone","{""29019"": ""99.84"", ""29027"": ""0.16""}","Boone|Callaway","29019|29027","FALSE","FALSE","America/Chicago"
-"65202","39.02051","-92.29823","Columbia","MO","Missouri","TRUE","","47721","123.8","29019","Boone","{""29019"": ""98.93"", ""29027"": ""1.07""}","Boone|Callaway","29019|29027","FALSE","FALSE","America/Chicago"
-"65203","38.88518","-92.397","Columbia","MO","Missouri","TRUE","","57364","286.4","29019","Boone","{""29019"": ""100""}","Boone","29019","FALSE","FALSE","America/Chicago"
-"65215","38.95317","-92.32085","Columbia","MO","Missouri","TRUE","","241","10485.1","29019","Boone","{""29019"": ""100""}","Boone","29019","FALSE","FALSE","America/Chicago"
-"65230","39.28717","-92.69501","Armstrong","MO","Missouri","TRUE","","633","3.6","29089","Howard","{""29089"": ""91.32"", ""29175"": ""8.68""}","Howard|Randolph","29089|29175","FALSE","FALSE","America/Chicago"
-"65231","39.01631","-91.89797","Auxvasse","MO","Missouri","TRUE","","3182","9.9","29027","Callaway","{""29027"": ""100""}","Callaway","29027","FALSE","FALSE","America/Chicago"
-"65232","39.16329","-91.75384","Benton City","MO","Missouri","TRUE","","222","3.5","29007","Audrain","{""29007"": ""100""}","Audrain","29007","FALSE","FALSE","America/Chicago"
-"65233","38.91429","-92.72912","Boonville","MO","Missouri","TRUE","","12070","33.3","29053","Cooper","{""29053"": ""100""}","Cooper","29053","FALSE","FALSE","America/Chicago"
-"65236","39.44205","-93.07933","Brunswick","MO","Missouri","TRUE","","1604","8.3","29041","Chariton","{""29041"": ""100""}","Chariton","29041","FALSE","FALSE","America/Chicago"
-"65237","38.7796","-92.78736","Bunceton","MO","Missouri","TRUE","","939","3.8","29053","Cooper","{""29053"": ""100""}","Cooper","29053","FALSE","FALSE","America/Chicago"
-"65239","39.53368","-92.43032","Cairo","MO","Missouri","TRUE","","1376","9.8","29175","Randolph","{""29175"": ""100""}","Randolph","29175","FALSE","FALSE","America/Chicago"
-"65240","39.22243","-92.12569","Centralia","MO","Missouri","TRUE","","8624","18.7","29019","Boone","{""29019"": ""81.67"", ""29007"": ""17.15"", ""29027"": ""0.97"", ""29137"": ""0.2""}","Boone|Audrain|Callaway|Monroe","29019|29007|29027|29137","FALSE","FALSE","America/Chicago"
-"65243","39.27542","-92.35509","Clark","MO","Missouri","TRUE","","2540","9.9","29175","Randolph","{""29175"": ""43.26"", ""29007"": ""31.47"", ""29019"": ""18.82"", ""29089"": ""3.99"", ""29137"": ""2.46""}","Randolph|Audrain|Boone|Howard|Monroe","29175|29007|29019|29089|29137","FALSE","FALSE","America/Chicago"
-"65244","39.48158","-92.66167","Clifton Hill","MO","Missouri","TRUE","","401","2.3","29175","Randolph","{""29175"": ""100""}","Randolph","29175","FALSE","FALSE","America/Chicago"
-"65246","39.37866","-92.99577","Dalton","MO","Missouri","TRUE","","50","0.6","29041","Chariton","{""29041"": ""100""}","Chariton","29041","FALSE","FALSE","America/Chicago"
-"65247","39.63625","-92.47236","Excello","MO","Missouri","TRUE","","714","5.7","29121","Macon","{""29121"": ""100""}","Macon","29121","FALSE","FALSE","America/Chicago"
-"65248","39.14088","-92.65599","Fayette","MO","Missouri","TRUE","","4459","10.2","29089","Howard","{""29089"": ""100""}","Howard","29089","FALSE","FALSE","America/Chicago"
-"65250","39.03392","-92.83648","Franklin","MO","Missouri","TRUE","","612","4.4","29089","Howard","{""29089"": ""100""}","Howard","29089","FALSE","FALSE","America/Chicago"
-"65251","38.8471","-91.97838","Fulton","MO","Missouri","TRUE","","21912","39.2","29027","Callaway","{""29027"": ""100""}","Callaway","29027","FALSE","FALSE","America/Chicago"
-"65254","39.2144","-92.85141","Glasgow","MO","Missouri","TRUE","","1917","7.0","29089","Howard","{""29089"": ""93.43"", ""29041"": ""6.57""}","Howard|Chariton","29089|29041","FALSE","FALSE","America/Chicago"
-"65255","39.09612","-92.22951","Hallsville","MO","Missouri","TRUE","","4236","30.1","29019","Boone","{""29019"": ""100""}","Boone","29019","FALSE","FALSE","America/Chicago"
-"65256","39.13062","-92.4594","Harrisburg","MO","Missouri","TRUE","","1712","13.2","29019","Boone","{""29019"": ""84.39"", ""29089"": ""15.61""}","Boone|Howard","29019|29089","FALSE","FALSE","America/Chicago"
-"65257","39.28665","-92.53204","Higbee","MO","Missouri","TRUE","","1464","6.8","29175","Randolph","{""29175"": ""80.5"", ""29089"": ""19.5""}","Randolph|Howard","29175|29089","FALSE","FALSE","America/Chicago"
-"65258","39.52302","-92.1334","Holliday","MO","Missouri","TRUE","","498","3.7","29137","Monroe","{""29137"": ""100""}","Monroe","29137","FALSE","FALSE","America/Chicago"
-"65259","39.47595","-92.56932","Huntsville","MO","Missouri","TRUE","","3257","12.1","29175","Randolph","{""29175"": ""100""}","Randolph","29175","FALSE","FALSE","America/Chicago"
-"65260","39.58659","-92.39629","Jacksonville","MO","Missouri","TRUE","","472","3.9","29175","Randolph","{""29175"": ""87.8"", ""29121"": ""8.01"", ""29137"": ""4.18""}","Randolph|Macon|Monroe","29175|29121|29137","FALSE","FALSE","America/Chicago"
-"65261","39.47343","-92.92956","Keytesville","MO","Missouri","TRUE","","845","3.8","29041","Chariton","{""29041"": ""100""}","Chariton","29041","FALSE","FALSE","America/Chicago"
-"65262","38.95338","-91.94408","Kingdom City","MO","Missouri","TRUE","","794","6.3","29027","Callaway","{""29027"": ""100""}","Callaway","29027","FALSE","FALSE","America/Chicago"
-"65263","39.45684","-92.22348","Madison","MO","Missouri","TRUE","","1586","4.5","29137","Monroe","{""29137"": ""98.05"", ""29175"": ""1.95""}","Monroe|Randolph","29137|29175","FALSE","FALSE","America/Chicago"
-"65264","39.08764","-91.69254","Martinsburg","MO","Missouri","TRUE","","692","5.0","29007","Audrain","{""29007"": ""84.44"", ""29027"": ""15.56""}","Audrain|Callaway","29007|29027","FALSE","FALSE","America/Chicago"
-"65265","39.20145","-91.88456","Mexico","MO","Missouri","TRUE","","15053","25.7","29007","Audrain","{""29007"": ""99.52"", ""29137"": ""0.48""}","Audrain|Monroe","29007|29137","FALSE","FALSE","America/Chicago"
-"65270","39.41515","-92.4028","Moberly","MO","Missouri","TRUE","","17122","57.9","29175","Randolph","{""29175"": ""99.75"", ""29137"": ""0.25""}","Randolph|Monroe","29175|29137","FALSE","FALSE","America/Chicago"
-"65274","39.01676","-92.68017","New Franklin","MO","Missouri","TRUE","","1885","14.2","29089","Howard","{""29089"": ""100""}","Howard","29089","FALSE","FALSE","America/Chicago"
-"65275","39.46276","-91.99251","Paris","MO","Missouri","TRUE","","2585","5.7","29137","Monroe","{""29137"": ""100""}","Monroe","29137","FALSE","FALSE","America/Chicago"
-"65276","38.84759","-92.95355","Pilot Grove","MO","Missouri","TRUE","","1527","6.1","29053","Cooper","{""29053"": ""100""}","Cooper","29053","FALSE","FALSE","America/Chicago"
-"65278","39.34161","-92.4107","Renick","MO","Missouri","TRUE","","124","423.7","29175","Randolph","{""29175"": ""100""}","Randolph","29175","FALSE","FALSE","America/Chicago"
-"65279","39.00961","-92.5187","Rocheport","MO","Missouri","TRUE","","1743","12.2","29019","Boone","{""29019"": ""90.43"", ""29089"": ""9.57""}","Boone|Howard","29019|29089","FALSE","FALSE","America/Chicago"
-"65280","39.23904","-91.73768","Rush Hill","MO","Missouri","TRUE","","326","6.5","29007","Audrain","{""29007"": ""100""}","Audrain","29007","FALSE","FALSE","America/Chicago"
-"65281","39.46796","-92.79502","Salisbury","MO","Missouri","TRUE","","2604","4.9","29041","Chariton","{""29041"": ""100""}","Chariton","29041","FALSE","FALSE","America/Chicago"
-"65282","39.38661","-91.83066","Santa Fe","MO","Missouri","TRUE","","98","3.1","29137","Monroe","{""29137"": ""100""}","Monroe","29137","FALSE","FALSE","America/Chicago"
-"65283","39.50838","-91.83494","Stoutsville","MO","Missouri","TRUE","","548","3.7","29137","Monroe","{""29137"": ""100""}","Monroe","29137","FALSE","FALSE","America/Chicago"
-"65284","39.20063","-92.2969","Sturgeon","MO","Missouri","TRUE","","2029","11.7","29019","Boone","{""29019"": ""95.68"", ""29007"": ""4.32""}","Boone|Audrain","29019|29007","FALSE","FALSE","America/Chicago"
-"65285","39.19964","-92.01746","Thompson","MO","Missouri","TRUE","","605","4.2","29007","Audrain","{""29007"": ""100""}","Audrain","29007","FALSE","FALSE","America/Chicago"
-"65286","39.50926","-93.21896","Triplett","MO","Missouri","TRUE","","131","1.1","29041","Chariton","{""29041"": ""100""}","Chariton","29041","FALSE","FALSE","America/Chicago"
-"65287","38.88948","-92.52653","Wooldridge","MO","Missouri","TRUE","","315","3.9","29053","Cooper","{""29053"": ""77.25"", ""29135"": ""22.75""}","Cooper|Moniteau","29053|29135","FALSE","FALSE","America/Chicago"
-"65301","38.69843","-93.22615","Sedalia","MO","Missouri","TRUE","","33881","54.4","29159","Pettis","{""29159"": ""100""}","Pettis","29159","FALSE","FALSE","America/Chicago"
-"65305","38.72939","-93.55446","Whiteman Air Force Base","MO","Missouri","TRUE","","4112","277.6","29101","Johnson","{""29101"": ""100""}","Johnson","29101","FALSE","FALSE","America/Chicago"
-"65320","39.06997","-92.94723","Arrow Rock","MO","Missouri","TRUE","","36","104.3","29195","Saline","{""29195"": ""100""}","Saline","29195","FALSE","FALSE","America/Chicago"
-"65321","39.08691","-93.45976","Blackburn","MO","Missouri","TRUE","","340","3.9","29195","Saline","{""29195"": ""90.65"", ""29107"": ""9.35""}","Saline|Lafayette","29195|29107","FALSE","FALSE","America/Chicago"
-"65322","38.9786","-92.95008","Blackwater","MO","Missouri","TRUE","","569","4.1","29053","Cooper","{""29053"": ""100""}","Cooper","29053","FALSE","FALSE","America/Chicago"
-"65323","38.44724","-93.61594","Calhoun","MO","Missouri","TRUE","","931","6.3","29083","Henry","{""29083"": ""100""}","Henry","29083","FALSE","FALSE","America/Chicago"
-"65324","38.11557","-93.00095","Climax Springs","MO","Missouri","TRUE","","1252","7.3","29029","Camden","{""29029"": ""100""}","Camden","29029","FALSE","FALSE","America/Chicago"
-"65325","38.43541","-93.18041","Cole Camp","MO","Missouri","TRUE","","3435","8.7","29015","Benton","{""29015"": ""100""}","Benton","29015","FALSE","FALSE","America/Chicago"
-"65326","38.16736","-93.14362","Edwards","MO","Missouri","TRUE","","2031","5.7","29015","Benton","{""29015"": ""73.95"", ""29029"": ""26.05""}","Benton|Camden","29015|29029","FALSE","FALSE","America/Chicago"
-"65327","38.97373","-93.49528","Emma","MO","Missouri","TRUE","","219","220.4","29195","Saline","{""29195"": ""56.83"", ""29107"": ""43.17""}","Saline|Lafayette","29195|29107","FALSE","FALSE","America/Chicago"
-"65329","38.61586","-92.95996","Florence","MO","Missouri","TRUE","","486","5.8","29141","Morgan","{""29141"": ""100""}","Morgan","29141","FALSE","FALSE","America/Chicago"
-"65330","39.21845","-92.94793","Gilliam","MO","Missouri","TRUE","","452","3.8","29195","Saline","{""29195"": ""100""}","Saline","29195","FALSE","FALSE","America/Chicago"
-"65332","38.62181","-93.41383","Green Ridge","MO","Missouri","TRUE","","1542","6.7","29159","Pettis","{""29159"": ""99.33"", ""29101"": ""0.67""}","Pettis|Johnson","29159|29101","FALSE","FALSE","America/Chicago"
-"65333","38.90712","-93.3047","Houstonia","MO","Missouri","TRUE","","530","3.3","29159","Pettis","{""29159"": ""84.85"", ""29195"": ""15.15""}","Pettis|Saline","29159|29195","FALSE","FALSE","America/Chicago"
-"65334","38.8469","-93.22748","Hughesville","MO","Missouri","TRUE","","1127","6.4","29159","Pettis","{""29159"": ""100""}","Pettis","29159","FALSE","FALSE","America/Chicago"
-"65335","38.50529","-93.34264","Ionia","MO","Missouri","TRUE","","140","4.3","29015","Benton","{""29015"": ""66.84"", ""29159"": ""33.16""}","Benton|Pettis","29015|29159","FALSE","FALSE","America/Chicago"
-"65336","38.78331","-93.56732","Knob Noster","MO","Missouri","TRUE","","6060","20.1","29101","Johnson","{""29101"": ""98.93"", ""29159"": ""1.07""}","Johnson|Pettis","29101|29159","FALSE","FALSE","America/Chicago"
-"65337","38.79111","-93.43048","La Monte","MO","Missouri","TRUE","","1885","8.8","29159","Pettis","{""29159"": ""100""}","Pettis","29159","FALSE","FALSE","America/Chicago"
-"65338","38.36078","-93.28153","Lincoln","MO","Missouri","TRUE","","2889","9.5","29015","Benton","{""29015"": ""100""}","Benton","29015","FALSE","FALSE","America/Chicago"
-"65339","39.19658","-93.38152","Malta Bend","MO","Missouri","TRUE","","493","2.0","29195","Saline","{""29195"": ""100""}","Saline","29195","FALSE","FALSE","America/Chicago"
-"65340","39.09557","-93.17882","Marshall","MO","Missouri","TRUE","","15919","23.8","29195","Saline","{""29195"": ""99.55"", ""29159"": ""0.45""}","Saline|Pettis","29195|29159","FALSE","FALSE","America/Chicago"
-"65344","39.31184","-93.19745","Miami","MO","Missouri","TRUE","","246","1.3","29195","Saline","{""29195"": ""100""}","Saline","29195","FALSE","FALSE","America/Chicago"
-"65345","38.5404","-93.13023","Mora","MO","Missouri","TRUE","","408","5.9","29159","Pettis","{""29159"": ""51.68"", ""29015"": ""29.46"", ""29141"": ""18.86""}","Pettis|Benton|Morgan","29159|29015|29141","FALSE","FALSE","America/Chicago"
-"65347","38.98765","-93.04191","Nelson","MO","Missouri","TRUE","","636","3.1","29195","Saline","{""29195"": ""82.23"", ""29159"": ""10.28"", ""29053"": ""7.49""}","Saline|Pettis|Cooper","29195|29159|29053","FALSE","FALSE","America/Chicago"
-"65348","38.71295","-92.98034","Otterville","MO","Missouri","TRUE","","1375","7.2","29053","Cooper","{""29053"": ""80.67"", ""29141"": ""19.33""}","Cooper|Morgan","29053|29141","FALSE","FALSE","America/Chicago"
-"65349","39.23206","-93.04875","Slater","MO","Missouri","TRUE","","2486","10.1","29195","Saline","{""29195"": ""100""}","Saline","29195","FALSE","FALSE","America/Chicago"
-"65350","38.64768","-93.09531","Smithton","MO","Missouri","TRUE","","2125","11.8","29159","Pettis","{""29159"": ""92.92"", ""29141"": ""7.08""}","Pettis|Morgan","29159|29141","FALSE","FALSE","America/Chicago"
-"65351","38.9868","-93.38845","Sweet Springs","MO","Missouri","TRUE","","2480","8.1","29195","Saline","{""29195"": ""92.75"", ""29159"": ""6.22"", ""29101"": ""1.03""}","Saline|Pettis|Johnson","29195|29159|29101","FALSE","FALSE","America/Chicago"
-"65354","38.64544","-92.88504","Syracuse","MO","Missouri","TRUE","","440","6.6","29141","Morgan","{""29141"": ""92.2"", ""29053"": ""7.8""}","Morgan|Cooper","29141|29053","FALSE","FALSE","America/Chicago"
-"65355","38.22005","-93.36821","Warsaw","MO","Missouri","TRUE","","10292","17.2","29015","Benton","{""29015"": ""99.49"", ""29085"": ""0.51""}","Benton|Hickory","29015|29085","FALSE","FALSE","America/Chicago"
-"65360","38.51961","-93.51416","Windsor","MO","Missouri","TRUE","","5261","13.1","29083","Henry","{""29083"": ""74.68"", ""29159"": ""10.42"", ""29015"": ""7.85"", ""29101"": ""7.05""}","Henry|Pettis|Benton|Johnson","29083|29159|29015|29101","FALSE","FALSE","America/Chicago"
-"65401","37.90464","-91.76534","Rolla","MO","Missouri","TRUE","","33162","48.4","29161","Phelps","{""29161"": ""97.63"", ""29065"": ""1.57"", ""29125"": ""0.79""}","Phelps|Dent|Maries","29161|29065|29125","FALSE","FALSE","America/Chicago"
-"65436","37.62362","-91.97145","Beulah","MO","Missouri","TRUE","","45","0.8","29161","Phelps","{""29161"": ""100""}","Phelps","29161","FALSE","FALSE","America/Chicago"
-"65438","36.92524","-91.50253","Birch Tree","MO","Missouri","TRUE","","2957","3.5","29203","Shannon","{""29203"": ""85.47"", ""29149"": ""14.53""}","Shannon|Oregon","29203|29149","FALSE","FALSE","America/Chicago"
-"65439","37.65011","-91.10159","Bixby","MO","Missouri","TRUE","","166","1.6","29093","Iron","{""29093"": ""100""}","Iron","29093","FALSE","FALSE","America/Chicago"
-"65440","37.61185","-91.17846","Boss","MO","Missouri","TRUE","","502","2.3","29065","Dent","{""29065"": ""70.02"", ""29179"": ""29.98""}","Dent|Reynolds","29065|29179","FALSE","FALSE","America/Chicago"
-"65441","38.08959","-91.1562","Bourbon","MO","Missouri","TRUE","","5613","12.4","29055","Crawford","{""29055"": ""97.4"", ""29221"": ""2.29"", ""29071"": ""0.31""}","Crawford|Washington|Franklin","29055|29221|29071","FALSE","FALSE","America/Chicago"
-"65443","38.12956","-92.09897","Brinktown","MO","Missouri","TRUE","","117","5.3","29125","Maries","{""29125"": ""100""}","Maries","29125","FALSE","FALSE","America/Chicago"
-"65444","37.38089","-92.05625","Bucyrus","MO","Missouri","TRUE","","1148","5.4","29215","Texas","{""29215"": ""100""}","Texas","29215","FALSE","FALSE","America/Chicago"
-"65446","37.78477","-91.26923","Cherryville","MO","Missouri","TRUE","","333","3.3","29055","Crawford","{""29055"": ""100""}","Crawford","29055","FALSE","FALSE","America/Chicago"
-"65449","37.84803","-91.48679","Cook Sta","MO","Missouri","TRUE","","301","2.4","29055","Crawford","{""29055"": ""78.06"", ""29161"": ""21.94""}","Crawford|Phelps","29055|29161","FALSE","FALSE","America/Chicago"
-"65452","37.96296","-92.26775","Crocker","MO","Missouri","TRUE","","2906","12.1","29169","Pulaski","{""29169"": ""97.56"", ""29131"": ""2.44""}","Pulaski|Miller","29169|29131","FALSE","FALSE","America/Chicago"
-"65453","38.09615","-91.42882","Cuba","MO","Missouri","TRUE","","8560","24.0","29055","Crawford","{""29055"": ""98.47"", ""29073"": ""1.53""}","Crawford|Gasconade","29055|29073","FALSE","FALSE","America/Chicago"
-"65456","37.78121","-91.1981","Davisville","MO","Missouri","TRUE","","958","5.7","29055","Crawford","{""29055"": ""100""}","Crawford","29055","FALSE","FALSE","America/Chicago"
-"65457","37.81156","-92.05429","Devils Elbow","MO","Missouri","TRUE","","103","2.1","29169","Pulaski","{""29169"": ""100""}","Pulaski","29169","FALSE","FALSE","America/Chicago"
-"65459","38.03001","-92.08259","Dixon","MO","Missouri","TRUE","","6727","11.1","29169","Pulaski","{""29169"": ""73.44"", ""29125"": ""21.6"", ""29131"": ""3.27"", ""29161"": ""1.7""}","Pulaski|Maries|Miller|Phelps","29169|29125|29131|29161","FALSE","FALSE","America/Chicago"
-"65461","37.67435","-92.03665","Duke","MO","Missouri","TRUE","","88","1.9","29161","Phelps","{""29161"": ""63.81"", ""29169"": ""36.19""}","Phelps|Pulaski","29161|29169","FALSE","FALSE","America/Chicago"
-"65462","37.68637","-91.85894","Edgar Springs","MO","Missouri","TRUE","","1576","6.4","29161","Phelps","{""29161"": ""91.9"", ""29065"": ""8.1""}","Phelps|Dent","29161|29065","FALSE","FALSE","America/Chicago"
-"65463","37.84624","-92.77837","Eldridge","MO","Missouri","TRUE","","1098","6.2","29105","Laclede","{""29105"": ""97.53"", ""29059"": ""1.78"", ""29029"": ""0.69""}","Laclede|Dallas|Camden","29105|29059|29029","FALSE","FALSE","America/Chicago"
-"65464","37.18395","-91.89198","Elk Creek","MO","Missouri","TRUE","","1224","8.1","29215","Texas","{""29215"": ""100""}","Texas","29215","FALSE","FALSE","America/Chicago"
-"65466","37.20588","-91.37201","Eminence","MO","Missouri","TRUE","","1854","3.8","29203","Shannon","{""29203"": ""100""}","Shannon","29203","FALSE","FALSE","America/Chicago"
-"65468","37.24989","-91.79022","Eunice","MO","Missouri","TRUE","","83","2.6","29215","Texas","{""29215"": ""100""}","Texas","29215","FALSE","FALSE","America/Chicago"
-"65470","37.54423","-92.40018","Falcon","MO","Missouri","TRUE","","1034","3.7","29105","Laclede","{""29105"": ""90.25"", ""29229"": ""9.75""}","Laclede|Wright","29105|29229","FALSE","FALSE","America/Chicago"
-"65473","37.70694","-92.15446","Fort Leonard Wood","MO","Missouri","TRUE","","16026","62.5","29169","Pulaski","{""29169"": ""100""}","Pulaski","29169","FALSE","FALSE","America/Chicago"
-"65479","37.33026","-91.62935","Hartshorn","MO","Missouri","TRUE","","152","0.7","29215","Texas","{""29215"": ""50.57"", ""29203"": ""49.43""}","Texas|Shannon","29215|29203","FALSE","FALSE","America/Chicago"
-"65483","37.30185","-91.95091","Houston","MO","Missouri","TRUE","","4449","16.3","29215","Texas","{""29215"": ""100""}","Texas","29215","FALSE","FALSE","America/Chicago"
-"65484","37.3538","-92.21525","Huggins","MO","Missouri","TRUE","","35","0.5","29215","Texas","{""29215"": ""100""}","Texas","29215","FALSE","FALSE","America/Chicago"
-"65486","38.10081","-92.31281","Iberia","MO","Missouri","TRUE","","3790","11.4","29131","Miller","{""29131"": ""100""}","Miller","29131","FALSE","FALSE","America/Chicago"
-"65501","37.45368","-91.56486","Jadwin","MO","Missouri","TRUE","","123","2.6","29065","Dent","{""29065"": ""100""}","Dent","29065","FALSE","FALSE","America/Chicago"
-"65529","37.92393","-91.98636","Jerome","MO","Missouri","TRUE","","244","158.4","29161","Phelps","{""29161"": ""100""}","Phelps","29161","FALSE","FALSE","America/Chicago"
-"65534","37.69528","-92.28079","Laquey","MO","Missouri","TRUE","","861","8.1","29169","Pulaski","{""29169"": ""95.43"", ""29105"": ""4.57""}","Pulaski|Laclede","29169|29105","FALSE","FALSE","America/Chicago"
-"65535","38.07109","-91.27778","Leasburg","MO","Missouri","TRUE","","1591","14.2","29055","Crawford","{""29055"": ""100""}","Crawford","29055","FALSE","FALSE","America/Chicago"
-"65536","37.68624","-92.64574","Lebanon","MO","Missouri","TRUE","","29238","27.8","29105","Laclede","{""29105"": ""99.09"", ""29059"": ""0.74"", ""29029"": ""0.16""}","Laclede|Dallas|Camden","29105|29059|29029","FALSE","FALSE","America/Chicago"
-"65541","37.64613","-91.76623","Lenox","MO","Missouri","TRUE","","271","6.2","29065","Dent","{""29065"": ""100""}","Dent","29065","FALSE","FALSE","America/Chicago"
-"65542","37.50412","-91.88146","Licking","MO","Missouri","TRUE","","6121","10.9","29215","Texas","{""29215"": ""97.87"", ""29065"": ""2.13""}","Texas|Dent","29215|29065","FALSE","FALSE","America/Chicago"
-"65543","37.47127","-92.30507","Lynchburg","MO","Missouri","TRUE","","167","1.0","29105","Laclede","{""29105"": ""60.79"", ""29229"": ""39.21""}","Laclede|Wright","29105|29229","FALSE","FALSE","America/Chicago"
-"65548","37.01443","-91.71492","Mountain View","MO","Missouri","TRUE","","5650","13.6","29091","Howell","{""29091"": ""91.1"", ""29203"": ""6.89"", ""29215"": ""2.01""}","Howell|Shannon|Texas","29091|29203|29215","FALSE","FALSE","America/Chicago"
-"65550","37.83231","-91.94937","Newburg","MO","Missouri","TRUE","","2788","6.0","29161","Phelps","{""29161"": ""90.25"", ""29169"": ""9.75""}","Phelps|Pulaski","29161|29169","FALSE","FALSE","America/Chicago"
-"65552","37.53328","-92.16579","Plato","MO","Missouri","TRUE","","2168","5.6","29215","Texas","{""29215"": ""87.83"", ""29169"": ""9.59"", ""29105"": ""2.58""}","Texas|Pulaski|Laclede","29215|29169|29105","FALSE","FALSE","America/Chicago"
-"65555","37.36208","-91.76672","Raymondville","MO","Missouri","TRUE","","1274","6.1","29215","Texas","{""29215"": ""100""}","Texas","29215","FALSE","FALSE","America/Chicago"
-"65556","37.83648","-92.40885","Richland","MO","Missouri","TRUE","","5883","10.0","29169","Pulaski","{""29169"": ""66.74"", ""29029"": ""17.87"", ""29105"": ""15.39""}","Pulaski|Camden|Laclede","29169|29029|29105","FALSE","FALSE","America/Chicago"
-"65557","37.50621","-92.10368","Roby","MO","Missouri","TRUE","","108","8.0","29215","Texas","{""29215"": ""100""}","Texas","29215","FALSE","FALSE","America/Chicago"
-"65559","38.02628","-91.61263","Saint James","MO","Missouri","TRUE","","8634","17.8","29161","Phelps","{""29161"": ""91.4"", ""29125"": ""7.82"", ""29073"": ""0.47"", ""29055"": ""0.31""}","Phelps|Maries|Gasconade|Crawford","29161|29125|29073|29055","FALSE","FALSE","America/Chicago"
-"65560","37.59664","-91.49928","Salem","MO","Missouri","TRUE","","14443","8.1","29065","Dent","{""29065"": ""96.11"", ""29055"": ""1.97"", ""29203"": ""1.44"", ""29161"": ""0.48""}","Dent|Crawford|Shannon|Phelps","29065|29055|29203|29161","FALSE","FALSE","America/Chicago"
-"65564","37.23564","-91.96831","Solo","MO","Missouri","TRUE","","133","4.5","29215","Texas","{""29215"": ""100""}","Texas","29215","FALSE","FALSE","America/Chicago"
-"65565","37.90612","-91.24857","Steelville","MO","Missouri","TRUE","","4947","7.0","29055","Crawford","{""29055"": ""97.76"", ""29093"": ""1.2"", ""29221"": ""1.04""}","Crawford|Iron|Washington","29055|29093|29221","FALSE","FALSE","America/Chicago"
-"65566","37.72225","-91.12823","Viburnum","MO","Missouri","TRUE","","862","65.8","29093","Iron","{""29093"": ""100""}","Iron","29093","FALSE","FALSE","America/Chicago"
-"65567","37.87255","-92.53839","Stoutland","MO","Missouri","TRUE","","1460","9.3","29029","Camden","{""29029"": ""87.79"", ""29105"": ""12.21""}","Camden|Laclede","29029|29105","FALSE","FALSE","America/Chicago"
-"65570","37.45537","-92.10184","Success","MO","Missouri","TRUE","","597","8.0","29215","Texas","{""29215"": ""100""}","Texas","29215","FALSE","FALSE","America/Chicago"
-"65571","37.1863","-91.63356","Summersville","MO","Missouri","TRUE","","1770","3.8","29215","Texas","{""29215"": ""73.1"", ""29203"": ""26.9""}","Texas|Shannon","29215|29203","FALSE","FALSE","America/Chicago"
-"65580","38.11479","-91.79612","Vichy","MO","Missouri","TRUE","","581","4.1","29125","Maries","{""29125"": ""100""}","Maries","29125","FALSE","FALSE","America/Chicago"
-"65582","38.19208","-91.92331","Vienna","MO","Missouri","TRUE","","2440","6.9","29125","Maries","{""29125"": ""100""}","Maries","29125","FALSE","FALSE","America/Chicago"
-"65583","37.82155","-92.25356","Waynesville","MO","Missouri","TRUE","","12266","74.0","29169","Pulaski","{""29169"": ""100""}","Pulaski","29169","FALSE","FALSE","America/Chicago"
-"65584","37.82835","-92.13097","Saint Robert","MO","Missouri","TRUE","","11449","188.2","29169","Pulaski","{""29169"": ""100""}","Pulaski","29169","FALSE","FALSE","America/Chicago"
-"65586","37.84953","-91.43165","Wesco","MO","Missouri","TRUE","","88","20.8","29055","Crawford","{""29055"": ""100""}","Crawford","29055","FALSE","FALSE","America/Chicago"
-"65588","36.98208","-91.28434","Winona","MO","Missouri","TRUE","","2607","5.0","29203","Shannon","{""29203"": ""98.84"", ""29149"": ""1.16""}","Shannon|Oregon","29203|29149","FALSE","FALSE","America/Chicago"
-"65589","37.24545","-91.83825","Yukon","MO","Missouri","TRUE","","72","2.5","29215","Texas","{""29215"": ""100""}","Texas","29215","FALSE","FALSE","America/Chicago"
-"65590","37.61611","-92.94628","Long Lane","MO","Missouri","TRUE","","1157","6.6","29059","Dallas","{""29059"": ""100""}","Dallas","29059","FALSE","FALSE","America/Chicago"
-"65591","37.98115","-92.59402","Montreal","MO","Missouri","TRUE","","1814","14.0","29029","Camden","{""29029"": ""100""}","Camden","29029","FALSE","FALSE","America/Chicago"
-"65601","37.53489","-93.59085","Aldrich","MO","Missouri","TRUE","","530","4.1","29167","Polk","{""29167"": ""74.01"", ""29057"": ""23.89"", ""29039"": ""2.09""}","Polk|Dade|Cedar","29167|29057|29039","FALSE","FALSE","America/Chicago"
-"65603","37.55123","-93.86185","Arcola","MO","Missouri","TRUE","","198","3.3","29057","Dade","{""29057"": ""100""}","Dade","29057","FALSE","FALSE","America/Chicago"
-"65604","37.2741","-93.60132","Ash Grove","MO","Missouri","TRUE","","3366","15.2","29077","Greene","{""29077"": ""67.19"", ""29109"": ""29.85"", ""29057"": ""2.96""}","Greene|Lawrence|Dade","29077|29109|29057","FALSE","FALSE","America/Chicago"
-"65605","36.88355","-93.69187","Aurora","MO","Missouri","TRUE","","12590","30.5","29109","Lawrence","{""29109"": ""84.81"", ""29009"": ""15.19""}","Lawrence|Barry","29109|29009","FALSE","FALSE","America/Chicago"
-"65606","36.6994","-91.3623","Alton","MO","Missouri","TRUE","","3338","6.3","29149","Oregon","{""29149"": ""100""}","Oregon","29149","FALSE","FALSE","America/Chicago"
-"65608","36.89508","-92.68156","Ava","MO","Missouri","TRUE","","8927","8.0","29067","Douglas","{""29067"": ""97.87"", ""29213"": ""1.65"", ""29153"": ""0.48""}","Douglas|Taney|Ozark","29067|29213|29153","FALSE","FALSE","America/Chicago"
-"65609","36.52738","-92.15774","Bakersfield","MO","Missouri","TRUE","","713","7.8","29153","Ozark","{""29153"": ""75.45"", ""29091"": ""24.55""}","Ozark|Howell","29153|29091","FALSE","FALSE","America/Chicago"
-"65610","37.03629","-93.52992","Billings","MO","Missouri","TRUE","","4901","21.3","29043","Christian","{""29043"": ""73.32"", ""29209"": ""13.82"", ""29077"": ""11.07"", ""29109"": ""1.79""}","Christian|Stone|Greene|Lawrence","29043|29209|29077|29109","FALSE","FALSE","America/Chicago"
-"65611","36.54174","-93.36464","Blue Eye","MO","Missouri","TRUE","","2193","28.5","29209","Stone","{""29209"": ""98.17"", ""29213"": ""1.83""}","Stone|Taney","29209|29213","FALSE","FALSE","America/Chicago"
-"65612","37.2179","-93.54747","Bois D Arc","MO","Missouri","TRUE","","1052","11.5","29077","Greene","{""29077"": ""92.1"", ""29109"": ""7.9""}","Greene|Lawrence","29077|29109","FALSE","FALSE","America/Chicago"
-"65613","37.63521","-93.39413","Bolivar","MO","Missouri","TRUE","","18120","37.1","29167","Polk","{""29167"": ""100""}","Polk","29167","FALSE","FALSE","America/Chicago"
-"65614","36.73949","-92.91607","Bradleyville","MO","Missouri","TRUE","","561","2.6","29213","Taney","{""29213"": ""84.6"", ""29043"": ""15.4""}","Taney|Christian","29213|29043","FALSE","FALSE","America/Chicago"
-"65616","36.66901","-93.2481","Branson","MO","Missouri","TRUE","","27706","144.2","29213","Taney","{""29213"": ""95.03"", ""29209"": ""4.97""}","Taney|Stone","29213|29209","FALSE","FALSE","America/Chicago"
-"65617","37.43571","-93.34404","Brighton","MO","Missouri","TRUE","","1308","17.2","29167","Polk","{""29167"": ""63.31"", ""29077"": ""36.69""}","Polk|Greene","29167|29077","FALSE","FALSE","America/Chicago"
-"65618","36.74241","-92.37585","Brixey","MO","Missouri","TRUE","","220","3.1","29153","Ozark","{""29153"": ""100""}","Ozark","29153","FALSE","FALSE","America/Chicago"
-"65619","37.12118","-93.38943","Brookline","MO","Missouri","TRUE","","7400","149.7","29077","Greene","{""29077"": ""97.19"", ""29043"": ""2.81""}","Greene|Christian","29077|29043","FALSE","FALSE","America/Chicago"
-"65620","37.01509","-92.95297","Bruner","MO","Missouri","TRUE","","194","7.1","29043","Christian","{""29043"": ""100""}","Christian","29043","FALSE","FALSE","America/Chicago"
-"65622","37.63216","-93.10314","Buffalo","MO","Missouri","TRUE","","8182","19.7","29059","Dallas","{""29059"": ""94.07"", ""29167"": ""5.93""}","Dallas|Polk","29059|29167","FALSE","FALSE","America/Chicago"
-"65623","36.74882","-93.90639","Butterfield","MO","Missouri","TRUE","","15","330.4","29009","Barry","{""29009"": ""100""}","Barry","29009","FALSE","FALSE","America/Chicago"
-"65624","36.73109","-93.56742","Cape Fair","MO","Missouri","TRUE","","1505","10.4","29209","Stone","{""29209"": ""93.02"", ""29009"": ""6.98""}","Stone|Barry","29209|29009","FALSE","FALSE","America/Chicago"
-"65625","36.67462","-93.8147","Cassville","MO","Missouri","TRUE","","8920","21.7","29009","Barry","{""29009"": ""100""}","Barry","29009","FALSE","FALSE","America/Chicago"
-"65626","36.59885","-92.12593","Caulfield","MO","Missouri","TRUE","","1716","6.4","29153","Ozark","{""29153"": ""50.7"", ""29091"": ""49.3""}","Ozark|Howell","29153|29091","FALSE","FALSE","America/Chicago"
-"65627","36.56664","-93.00048","Cedarcreek","MO","Missouri","TRUE","","434","3.1","29213","Taney","{""29213"": ""100""}","Taney","29213","FALSE","FALSE","America/Chicago"
-"65629","36.8942","-93.00871","Chadwick","MO","Missouri","TRUE","","663","3.8","29043","Christian","{""29043"": ""100""}","Christian","29043","FALSE","FALSE","America/Chicago"
-"65630","36.83208","-93.21659","Chestnutridge","MO","Missouri","TRUE","","256","10.1","29043","Christian","{""29043"": ""100""}","Christian","29043","FALSE","FALSE","America/Chicago"
-"65631","37.00778","-93.42314","Clever","MO","Missouri","TRUE","","5965","53.7","29043","Christian","{""29043"": ""86.17"", ""29209"": ""13.83""}","Christian|Stone","29043|29209","FALSE","FALSE","America/Chicago"
-"65632","37.50031","-92.81325","Conway","MO","Missouri","TRUE","","2545","9.5","29105","Laclede","{""29105"": ""60.36"", ""29225"": ""23.41"", ""29059"": ""16.23""}","Laclede|Webster|Dallas","29105|29225|29059","FALSE","FALSE","America/Chicago"
-"65633","36.89742","-93.53974","Crane","MO","Missouri","TRUE","","4096","18.6","29209","Stone","{""29209"": ""85.02"", ""29009"": ""14.98""}","Stone|Barry","29209|29009","FALSE","FALSE","America/Chicago"
-"65634","38.02347","-93.19243","Cross Timbers","MO","Missouri","TRUE","","530","2.6","29085","Hickory","{""29085"": ""98.04"", ""29015"": ""1.44"", ""29029"": ""0.52""}","Hickory|Benton|Camden","29085|29015|29029","FALSE","FALSE","America/Chicago"
-"65635","37.5375","-93.72091","Dadeville","MO","Missouri","TRUE","","550","5.6","29057","Dade","{""29057"": ""88.91"", ""29039"": ""11.09""}","Dade|Cedar","29057|29039","FALSE","FALSE","America/Chicago"
-"65637","36.76393","-92.20357","Dora","MO","Missouri","TRUE","","1296","5.5","29153","Ozark","{""29153"": ""58.77"", ""29067"": ""22.47"", ""29091"": ""18.77""}","Ozark|Douglas|Howell","29153|29067|29091","FALSE","FALSE","America/Chicago"
-"65638","36.84129","-92.32558","Drury","MO","Missouri","TRUE","","509","3.7","29067","Douglas","{""29067"": ""80.69"", ""29153"": ""19.31""}","Douglas|Ozark","29067|29153","FALSE","FALSE","America/Chicago"
-"65640","37.69915","-93.57475","Dunnegan","MO","Missouri","TRUE","","692","6.6","29167","Polk","{""29167"": ""86.7"", ""29039"": ""13.3""}","Polk|Cedar","29167|29039","FALSE","FALSE","America/Chicago"
-"65641","36.54344","-93.76438","Eagle Rock","MO","Missouri","TRUE","","932","7.6","29009","Barry","{""29009"": ""100""}","Barry","29009","FALSE","FALSE","America/Chicago"
-"65644","37.50795","-93.03609","Elkland","MO","Missouri","TRUE","","2218","10.6","29059","Dallas","{""29059"": ""61.22"", ""29225"": ""38.78""}","Dallas|Webster","29059|29225","FALSE","FALSE","America/Chicago"
-"65646","37.33678","-93.70202","Everton","MO","Missouri","TRUE","","1655","6.1","29057","Dade","{""29057"": ""74.88"", ""29109"": ""25.12""}","Dade|Lawrence","29057|29109","FALSE","FALSE","America/Chicago"
-"65647","36.69017","-94.00698","Exeter","MO","Missouri","TRUE","","2210","15.3","29009","Barry","{""29009"": ""98.51"", ""29119"": ""1.49""}","Barry|McDonald","29009|29119","FALSE","FALSE","America/Chicago"
-"65648","37.40114","-93.15627","Fair Grove","MO","Missouri","TRUE","","6419","31.7","29077","Greene","{""29077"": ""71.16"", ""29059"": ""19.49"", ""29225"": ""5.75"", ""29167"": ""3.6""}","Greene|Dallas|Webster|Polk","29077|29059|29225|29167","FALSE","FALSE","America/Chicago"
-"65649","37.61828","-93.61837","Fair Play","MO","Missouri","TRUE","","1565","9.8","29167","Polk","{""29167"": ""71.31"", ""29039"": ""28.69""}","Polk|Cedar","29167|29039","FALSE","FALSE","America/Chicago"
-"65650","37.8193","-93.4477","Flemington","MO","Missouri","TRUE","","1781","9.6","29085","Hickory","{""29085"": ""56.91"", ""29167"": ""43.09""}","Hickory|Polk","29085|29167","FALSE","FALSE","America/Chicago"
-"65652","37.14472","-92.94616","Fordland","MO","Missouri","TRUE","","4247","22.7","29225","Webster","{""29225"": ""91.53"", ""29043"": ""7.72"", ""29067"": ""0.75""}","Webster|Christian|Douglas","29225|29043|29067","FALSE","FALSE","America/Chicago"
-"65653","36.77912","-93.11433","Forsyth","MO","Missouri","TRUE","","5945","35.7","29213","Taney","{""29213"": ""96.5"", ""29043"": ""3.5""}","Taney|Christian","29213|29043","FALSE","FALSE","America/Chicago"
-"65654","37.02291","-93.90585","Freistatt","MO","Missouri","TRUE","","178","62.7","29109","Lawrence","{""29109"": ""100""}","Lawrence","29109","FALSE","FALSE","America/Chicago"
-"65655","36.59796","-92.42655","Gainesville","MO","Missouri","TRUE","","2738","5.1","29153","Ozark","{""29153"": ""100""}","Ozark","29153","FALSE","FALSE","America/Chicago"
-"65656","36.79505","-93.46672","Galena","MO","Missouri","TRUE","","4924","16.2","29209","Stone","{""29209"": ""99.09"", ""29009"": ""0.67"", ""29043"": ""0.24""}","Stone|Barry|Christian","29209|29009|29043","FALSE","FALSE","America/Chicago"
-"65657","36.83316","-93.01467","Garrison","MO","Missouri","TRUE","","111","2.4","29043","Christian","{""29043"": ""100""}","Christian","29043","FALSE","FALSE","America/Chicago"
-"65658","36.54113","-93.64116","Golden","MO","Missouri","TRUE","","1223","22.7","29009","Barry","{""29009"": ""100""}","Barry","29009","FALSE","FALSE","America/Chicago"
-"65660","37.33126","-92.27244","Graff","MO","Missouri","TRUE","","186","3.2","29229","Wright","{""29229"": ""87.36"", ""29215"": ""12.64""}","Wright|Texas","29229|29215","FALSE","FALSE","America/Chicago"
-"65661","37.46179","-93.82631","Greenfield","MO","Missouri","TRUE","","2641","11.9","29057","Dade","{""29057"": ""100""}","Dade","29057","FALSE","FALSE","America/Chicago"
-"65662","37.44022","-92.57738","Grovespring","MO","Missouri","TRUE","","1174","6.0","29229","Wright","{""29229"": ""78.88"", ""29105"": ""21.12""}","Wright|Laclede","29229|29105","FALSE","FALSE","America/Chicago"
-"65663","37.62119","-93.24482","Half Way","MO","Missouri","TRUE","","2756","9.5","29167","Polk","{""29167"": ""100""}","Polk","29167","FALSE","FALSE","America/Chicago"
-"65664","37.19733","-93.61725","Halltown","MO","Missouri","TRUE","","153","76.0","29109","Lawrence","{""29109"": ""100""}","Lawrence","29109","FALSE","FALSE","America/Chicago"
-"65667","37.30802","-92.51504","Hartville","MO","Missouri","TRUE","","3122","6.5","29229","Wright","{""29229"": ""100""}","Wright","29229","FALSE","FALSE","America/Chicago"
-"65668","37.93281","-93.28777","Hermitage","MO","Missouri","TRUE","","1784","19.6","29085","Hickory","{""29085"": ""100""}","Hickory","29085","FALSE","FALSE","America/Chicago"
-"65669","36.91222","-93.30266","Highlandville","MO","Missouri","TRUE","","2614","24.7","29043","Christian","{""29043"": ""89.27"", ""29209"": ""10.73""}","Christian|Stone","29043|29209","FALSE","FALSE","America/Chicago"
-"65672","36.56635","-93.21579","Hollister","MO","Missouri","TRUE","","9622","67.1","29213","Taney","{""29213"": ""100""}","Taney","29213","FALSE","FALSE","America/Chicago"
-"65674","37.786","-93.60684","Humansville","MO","Missouri","TRUE","","2860","11.2","29167","Polk","{""29167"": ""63.76"", ""29039"": ""30.26"", ""29085"": ""3.51"", ""29185"": ""2.47""}","Polk|Cedar|Hickory|St. Clair","29167|29039|29085|29185","FALSE","FALSE","America/Chicago"
-"65676","36.57617","-92.60996","Isabella","MO","Missouri","TRUE","","400","9.6","29153","Ozark","{""29153"": ""100""}","Ozark","29153","FALSE","FALSE","America/Chicago"
-"65679","36.57465","-93.10428","Kirbyville","MO","Missouri","TRUE","","2479","18.2","29213","Taney","{""29213"": ""100""}","Taney","29213","FALSE","FALSE","America/Chicago"
-"65680","36.65751","-93.01482","Kissee Mills","MO","Missouri","TRUE","","1063","19.1","29213","Taney","{""29213"": ""100""}","Taney","29213","FALSE","FALSE","America/Chicago"
-"65681","36.55438","-93.46377","Lampe","MO","Missouri","TRUE","","1843","21.1","29209","Stone","{""29209"": ""100""}","Stone","29209","FALSE","FALSE","America/Chicago"
-"65682","37.41611","-93.96984","Lockwood","MO","Missouri","TRUE","","2007","5.2","29057","Dade","{""29057"": ""96.36"", ""29109"": ""3.64""}","Dade|Lawrence","29057|29109","FALSE","FALSE","America/Chicago"
-"65685","37.75419","-93.1566","Louisburg","MO","Missouri","TRUE","","876","10.1","29059","Dallas","{""29059"": ""78.91"", ""29167"": ""21.09""}","Dallas|Polk","29059|29167","FALSE","FALSE","America/Chicago"
-"65686","36.62533","-93.43875","Kimberling City","MO","Missouri","TRUE","","5211","210.8","29209","Stone","{""29209"": ""100""}","Stone","29209","FALSE","FALSE","America/Chicago"
-"65689","37.14072","-92.09633","Cabool","MO","Missouri","TRUE","","5176","10.9","29215","Texas","{""29215"": ""93.78"", ""29067"": ""5.02"", ""29091"": ""1.19""}","Texas|Douglas|Howell","29215|29067|29091","FALSE","FALSE","America/Chicago"
-"65690","36.58526","-91.27236","Couch","MO","Missouri","TRUE","","188","1.7","29149","Oregon","{""29149"": ""100""}","Oregon","29149","FALSE","FALSE","America/Chicago"
-"65692","36.62758","-91.63978","Koshkonong","MO","Missouri","TRUE","","1422","4.8","29149","Oregon","{""29149"": ""73.8"", ""29091"": ""26.2""}","Oregon|Howell","29149|29091","FALSE","FALSE","America/Chicago"
-"65702","37.06736","-92.48971","Macomb","MO","Missouri","TRUE","","309","4.1","29229","Wright","{""29229"": ""75.48"", ""29067"": ""24.52""}","Wright|Douglas","29229|29067","FALSE","FALSE","America/Chicago"
-"65704","37.12329","-92.58455","Mansfield","MO","Missouri","TRUE","","3400","10.5","29229","Wright","{""29229"": ""89.03"", ""29067"": ""10.97""}","Wright|Douglas","29229|29067","FALSE","FALSE","America/Chicago"
-"65705","37.0212","-93.60889","Marionville","MO","Missouri","TRUE","","3991","38.3","29109","Lawrence","{""29109"": ""91.45"", ""29209"": ""8.55""}","Lawrence|Stone","29109|29209","FALSE","FALSE","America/Chicago"
-"65706","37.32361","-92.89561","Marshfield","MO","Missouri","TRUE","","16162","34.7","29225","Webster","{""29225"": ""100""}","Webster","29225","FALSE","FALSE","America/Chicago"
-"65707","37.22822","-93.845","Miller","MO","Missouri","TRUE","","2230","9.0","29109","Lawrence","{""29109"": ""100""}","Lawrence","29109","FALSE","FALSE","America/Chicago"
-"65708","36.9048","-93.91017","Monett","MO","Missouri","TRUE","","13773","58.1","29009","Barry","{""29009"": ""63.89"", ""29109"": ""36.11""}","Barry|Lawrence","29009|29109","FALSE","FALSE","America/Chicago"
-"65710","37.48693","-93.42288","Morrisville","MO","Missouri","TRUE","","1181","15.0","29167","Polk","{""29167"": ""100""}","Polk","29167","FALSE","FALSE","America/Chicago"
-"65711","37.17731","-92.27674","Mountain Grove","MO","Missouri","TRUE","","9888","13.1","29229","Wright","{""29229"": ""77.43"", ""29215"": ""16.92"", ""29067"": ""5.65""}","Wright|Texas|Douglas","29229|29215|29067","FALSE","FALSE","America/Chicago"
-"65712","37.10792","-93.80433","Mount Vernon","MO","Missouri","TRUE","","8675","27.5","29109","Lawrence","{""29109"": ""100""}","Lawrence","29109","FALSE","FALSE","America/Chicago"
-"65713","37.40341","-92.74622","Niangua","MO","Missouri","TRUE","","2821","10.0","29225","Webster","{""29225"": ""90.58"", ""29229"": ""9.42""}","Webster|Wright","29225|29229","FALSE","FALSE","America/Chicago"
-"65714","37.03861","-93.31839","Nixa","MO","Missouri","TRUE","","32932","244.8","29043","Christian","{""29043"": ""98.06"", ""29209"": ""1.94""}","Christian|Stone","29043|29209","FALSE","FALSE","America/Chicago"
-"65715","36.73285","-92.57293","Noble","MO","Missouri","TRUE","","38","1.1","29153","Ozark","{""29153"": ""100""}","Ozark","29153","FALSE","FALSE","America/Chicago"
-"65717","37.05958","-92.41495","Norwood","MO","Missouri","TRUE","","2750","7.7","29229","Wright","{""29229"": ""75.51"", ""29067"": ""24.49""}","Wright|Douglas","29229|29067","FALSE","FALSE","America/Chicago"
-"65720","36.94037","-92.95276","Oldfield","MO","Missouri","TRUE","","979","10.9","29043","Christian","{""29043"": ""73.83"", ""29067"": ""26.17""}","Christian|Douglas","29043|29067","FALSE","FALSE","America/Chicago"
-"65721","36.9801","-93.21018","Ozark","MO","Missouri","TRUE","","31876","126.2","29043","Christian","{""29043"": ""97.05"", ""29077"": ""2.95""}","Christian|Greene","29043|29077","FALSE","FALSE","America/Chicago"
-"65722","37.58165","-92.80848","Phillipsburg","MO","Missouri","TRUE","","1535","10.7","29105","Laclede","{""29105"": ""88.06"", ""29059"": ""11.94""}","Laclede|Dallas","29105|29059","FALSE","FALSE","America/Chicago"
-"65723","36.96002","-94.04273","Pierce City","MO","Missouri","TRUE","","3211","14.0","29109","Lawrence","{""29109"": ""75.87"", ""29145"": ""17.39"", ""29009"": ""6.74""}","Lawrence|Newton|Barry","29109|29145|29009","FALSE","FALSE","America/Chicago"
-"65724","37.84323","-93.31301","Pittsburg","MO","Missouri","TRUE","","1311","23.7","29085","Hickory","{""29085"": ""100""}","Hickory","29085","FALSE","FALSE","America/Chicago"
-"65725","37.43298","-93.27658","Pleasant Hope","MO","Missouri","TRUE","","3056","35.6","29167","Polk","{""29167"": ""70.92"", ""29077"": ""29.08""}","Polk|Greene","29167|29077","FALSE","FALSE","America/Chicago"
-"65727","37.7559","-93.29762","Polk","MO","Missouri","TRUE","","177","4.9","29167","Polk","{""29167"": ""100""}","Polk","29167","FALSE","FALSE","America/Chicago"
-"65728","36.87139","-93.34556","Ponce De Leon","MO","Missouri","TRUE","","0","0.0","29209","Stone","{""29209"": ""100""}","Stone","29209","FALSE","FALSE","America/Chicago"
-"65729","36.51716","-92.5894","Pontiac","MO","Missouri","TRUE","","279","7.2","29153","Ozark","{""29153"": ""86.36"", ""05089"": ""13.64""}","Ozark|Marion","29153|05089","FALSE","FALSE","America/Chicago"
-"65730","36.62367","-94.17715","Powell","MO","Missouri","TRUE","","0","0.0","29119","McDonald","{""29119"": ""100""}","McDonald","29119","FALSE","FALSE","America/Chicago"
-"65731","36.65455","-93.12221","Powersite","MO","Missouri","TRUE","","317","86.8","29213","Taney","{""29213"": ""100""}","Taney","29213","FALSE","FALSE","America/Chicago"
-"65732","37.94131","-93.16162","Preston","MO","Missouri","TRUE","","1073","7.9","29085","Hickory","{""29085"": ""100""}","Hickory","29085","FALSE","FALSE","America/Chicago"
-"65733","36.52859","-92.84643","Protem","MO","Missouri","TRUE","","694","4.2","29213","Taney","{""29213"": ""68.75"", ""05089"": ""29.44"", ""29153"": ""1.11"", ""05009"": ""0.69""}","Taney|Marion|Ozark|Boone","29213|05089|29153|05009","FALSE","FALSE","America/Chicago"
-"65734","36.79587","-93.94761","Purdy","MO","Missouri","TRUE","","3206","15.5","29009","Barry","{""29009"": ""100""}","Barry","29009","FALSE","FALSE","America/Chicago"
-"65735","38.04198","-93.47193","Quincy","MO","Missouri","TRUE","","76","1.4","29085","Hickory","{""29085"": ""91.82"", ""29015"": ""8.18""}","Hickory|Benton","29085|29015","FALSE","FALSE","America/Chicago"
-"65737","36.71277","-93.36017","Reeds Spring","MO","Missouri","TRUE","","8404","38.3","29209","Stone","{""29209"": ""94.77"", ""29213"": ""5.08"", ""29043"": ""0.15""}","Stone|Taney|Christian","29209|29213|29043","FALSE","FALSE","America/Chicago"
-"65738","37.13521","-93.4991","Republic","MO","Missouri","TRUE","","19253","144.0","29077","Greene","{""29077"": ""97.9"", ""29043"": ""1.95"", ""29109"": ""0.15""}","Greene|Christian|Lawrence","29077|29043|29109","FALSE","FALSE","America/Chicago"
-"65739","36.51927","-93.26876","Ridgedale","MO","Missouri","TRUE","","1010","29.9","29213","Taney","{""29213"": ""100""}","Taney","29213","FALSE","FALSE","America/Chicago"
-"65740","36.71322","-93.16393","Rockaway Beach","MO","Missouri","TRUE","","3416","294.0","29213","Taney","{""29213"": ""100""}","Taney","29213","FALSE","FALSE","America/Chicago"
-"65742","37.12553","-93.07886","Rogersville","MO","Missouri","TRUE","","13264","43.9","29225","Webster","{""29225"": ""42.44"", ""29077"": ""40.93"", ""29043"": ""16.64""}","Webster|Greene|Christian","29225|29077|29043","FALSE","FALSE","America/Chicago"
-"65744","36.6228","-92.89758","Rueter","MO","Missouri","TRUE","","77","1.4","29213","Taney","{""29213"": ""100""}","Taney","29213","FALSE","FALSE","America/Chicago"
-"65745","36.5308","-93.96784","Seligman","MO","Missouri","TRUE","","2874","15.7","29009","Barry","{""29009"": ""84.52"", ""29119"": ""15.48""}","Barry|McDonald","29009|29119","FALSE","FALSE","America/Chicago"
-"65746","37.14712","-92.77841","Seymour","MO","Missouri","TRUE","","8359","17.9","29225","Webster","{""29225"": ""91.98"", ""29067"": ""4.59"", ""29229"": ""3.43""}","Webster|Douglas|Wright","29225|29067|29229","FALSE","FALSE","America/Chicago"
-"65747","36.60226","-93.57982","Shell Knob","MO","Missouri","TRUE","","3150","15.6","29009","Barry","{""29009"": ""63.24"", ""29209"": ""36.76""}","Barry|Stone","29009|29209","FALSE","FALSE","America/Chicago"
-"65752","37.32576","-93.83229","South Greenfield","MO","Missouri","TRUE","","321","3.0","29057","Dade","{""29057"": ""88.43"", ""29109"": ""11.57""}","Dade|Lawrence","29057|29109","FALSE","FALSE","America/Chicago"
-"65753","36.99876","-93.05469","Sparta","MO","Missouri","TRUE","","4984","27.6","29043","Christian","{""29043"": ""100""}","Christian","29043","FALSE","FALSE","America/Chicago"
-"65754","36.84889","-93.2896","Spokane","MO","Missouri","TRUE","","606","11.3","29043","Christian","{""29043"": ""100""}","Christian","29043","FALSE","FALSE","America/Chicago"
-"65755","36.80505","-92.62696","Squires","MO","Missouri","TRUE","","620","5.8","29067","Douglas","{""29067"": ""73.22"", ""29153"": ""26.78""}","Douglas|Ozark","29067|29153","FALSE","FALSE","America/Chicago"
-"65756","37.10289","-93.97091","Stotts City","MO","Missouri","TRUE","","598","8.1","29109","Lawrence","{""29109"": ""100""}","Lawrence","29109","FALSE","FALSE","America/Chicago"
-"65757","37.28281","-93.09744","Strafford","MO","Missouri","TRUE","","7022","32.9","29077","Greene","{""29077"": ""78.06"", ""29225"": ""21.94""}","Greene|Webster","29077|29225","FALSE","FALSE","America/Chicago"
-"65759","36.7552","-93.03171","Taneyville","MO","Missouri","TRUE","","1407","11.2","29213","Taney","{""29213"": ""100""}","Taney","29213","FALSE","FALSE","America/Chicago"
-"65760","36.62976","-92.28099","Tecumseh","MO","Missouri","TRUE","","596","7.0","29153","Ozark","{""29153"": ""100""}","Ozark","29153","FALSE","FALSE","America/Chicago"
-"65761","36.57545","-92.72845","Theodosia","MO","Missouri","TRUE","","1168","3.7","29153","Ozark","{""29153"": ""86.88"", ""05089"": ""7.31"", ""29213"": ""5.81""}","Ozark|Marion|Taney","29153|05089|29213","FALSE","FALSE","America/Chicago"
-"65762","36.68752","-92.65337","Thornfield","MO","Missouri","TRUE","","457","2.4","29153","Ozark","{""29153"": ""100""}","Ozark","29153","FALSE","FALSE","America/Chicago"
-"65764","37.82304","-92.95438","Tunas","MO","Missouri","TRUE","","1476","6.2","29059","Dallas","{""29059"": ""100""}","Dallas","29059","FALSE","FALSE","America/Chicago"
-"65766","36.54037","-92.25955","Udall","MO","Missouri","TRUE","","88","6.2","29153","Ozark","{""29153"": ""100""}","Ozark","29153","FALSE","FALSE","America/Chicago"
-"65767","37.84382","-93.1545","Urbana","MO","Missouri","TRUE","","1675","7.5","29059","Dallas","{""29059"": ""63.72"", ""29085"": ""31.86"", ""29167"": ""4.42""}","Dallas|Hickory|Polk","29059|29085|29167","FALSE","FALSE","America/Chicago"
-"65768","36.91958","-92.2644","Vanzant","MO","Missouri","TRUE","","637","4.2","29067","Douglas","{""29067"": ""100""}","Douglas","29067","FALSE","FALSE","America/Chicago"
-"65769","36.91749","-93.79532","Verona","MO","Missouri","TRUE","","2514","11.4","29109","Lawrence","{""29109"": ""69.98"", ""29009"": ""30.02""}","Lawrence|Barry","29109|29009","FALSE","FALSE","America/Chicago"
-"65770","37.42338","-93.54707","Walnut Grove","MO","Missouri","TRUE","","3345","12.9","29077","Greene","{""29077"": ""70.59"", ""29167"": ""24.32"", ""29057"": ""5.1""}","Greene|Polk|Dade","29077|29167|29057","FALSE","FALSE","America/Chicago"
-"65771","36.7725","-93.20639","Walnut Shade","MO","Missouri","TRUE","","1455","14.3","29213","Taney","{""29213"": ""100""}","Taney","29213","FALSE","FALSE","America/Chicago"
-"65772","36.59499","-94.03764","Washburn","MO","Missouri","TRUE","","1904","9.0","29009","Barry","{""29009"": ""81.19"", ""29119"": ""18.81""}","Barry|McDonald","29009|29119","FALSE","FALSE","America/Chicago"
-"65773","36.75729","-92.50935","Wasola","MO","Missouri","TRUE","","717","4.2","29153","Ozark","{""29153"": ""100""}","Ozark","29153","FALSE","FALSE","America/Chicago"
-"65774","37.92914","-93.49222","Weaubleau","MO","Missouri","TRUE","","1265","9.6","29085","Hickory","{""29085"": ""92.03"", ""29185"": ""7.97""}","Hickory|St. Clair","29085|29185","FALSE","FALSE","America/Chicago"
-"65775","36.70128","-91.85865","West Plains","MO","Missouri","TRUE","","24860","21.1","29091","Howell","{""29091"": ""98.64"", ""29067"": ""0.73"", ""29149"": ""0.63""}","Howell|Douglas|Oregon","29091|29067|29149","FALSE","FALSE","America/Chicago"
-"65777","36.52287","-91.99016","Moody","MO","Missouri","TRUE","","356","8.6","29091","Howell","{""29091"": ""100""}","Howell","29091","FALSE","FALSE","America/Chicago"
-"65778","36.52914","-91.27615","Myrtle","MO","Missouri","TRUE","","462","4.5","29149","Oregon","{""29149"": ""100""}","Oregon","29149","FALSE","FALSE","America/Chicago"
-"65779","37.97556","-93.38123","Wheatland","MO","Missouri","TRUE","","1789","9.2","29085","Hickory","{""29085"": ""99.46"", ""29015"": ""0.54""}","Hickory|Benton","29085|29015","FALSE","FALSE","America/Chicago"
-"65781","37.34947","-93.41582","Willard","MO","Missouri","TRUE","","8745","47.5","29077","Greene","{""29077"": ""97.71"", ""29167"": ""2.29""}","Greene|Polk","29077|29167","FALSE","FALSE","America/Chicago"
-"65783","37.71731","-92.93339","Windyville","MO","Missouri","TRUE","","146","3.2","29059","Dallas","{""29059"": ""100""}","Dallas","29059","FALSE","FALSE","America/Chicago"
-"65784","36.67987","-92.31395","Zanoni","MO","Missouri","TRUE","","13","2.6","29153","Ozark","{""29153"": ""100""}","Ozark","29153","FALSE","FALSE","America/Chicago"
-"65785","37.70614","-93.82119","Stockton","MO","Missouri","TRUE","","5087","9.0","29039","Cedar","{""29039"": ""97.72"", ""29185"": ""2.11"", ""29057"": ""0.17""}","Cedar|St. Clair|Dade","29039|29185|29057","FALSE","FALSE","America/Chicago"
-"65786","37.96582","-92.96644","Macks Creek","MO","Missouri","TRUE","","2242","8.0","29029","Camden","{""29029"": ""96.44"", ""29059"": ""3.56""}","Camden|Dallas","29029|29059","FALSE","FALSE","America/Chicago"
-"65787","38.06892","-92.88945","Roach","MO","Missouri","TRUE","","1325","12.7","29029","Camden","{""29029"": ""100""}","Camden","29029","FALSE","FALSE","America/Chicago"
-"65788","36.80909","-91.69377","Peace Valley","MO","Missouri","TRUE","","355","6.3","29091","Howell","{""29091"": ""96.21"", ""29149"": ""3.79""}","Howell|Oregon","29091|29149","FALSE","FALSE","America/Chicago"
-"65789","36.86371","-91.88103","Pomona","MO","Missouri","TRUE","","2097","10.2","29091","Howell","{""29091"": ""100""}","Howell","29091","FALSE","FALSE","America/Chicago"
-"65790","36.70633","-92.11409","Pottersville","MO","Missouri","TRUE","","806","5.8","29091","Howell","{""29091"": ""87.01"", ""29153"": ""12.99""}","Howell|Ozark","29091|29153","FALSE","FALSE","America/Chicago"
-"65791","36.56171","-91.50304","Thayer","MO","Missouri","TRUE","","4735","13.9","29149","Oregon","{""29149"": ""100""}","Oregon","29149","FALSE","FALSE","America/Chicago"
-"65793","36.99249","-91.9721","Willow Springs","MO","Missouri","TRUE","","5897","8.5","29091","Howell","{""29091"": ""85.83"", ""29215"": ""10.32"", ""29067"": ""3.85""}","Howell|Texas|Douglas","29091|29215|29067","FALSE","FALSE","America/Chicago"
-"65802","37.20909","-93.35405","Springfield","MO","Missouri","TRUE","","47378","287.7","29077","Greene","{""29077"": ""100""}","Greene","29077","FALSE","FALSE","America/Chicago"
-"65803","37.28397","-93.28907","Springfield","MO","Missouri","TRUE","","41316","171.5","29077","Greene","{""29077"": ""100""}","Greene","29077","FALSE","FALSE","America/Chicago"
-"65804","37.14925","-93.25268","Springfield","MO","Missouri","TRUE","","37461","792.9","29077","Greene","{""29077"": ""100""}","Greene","29077","FALSE","FALSE","America/Chicago"
-"65806","37.20562","-93.29937","Springfield","MO","Missouri","TRUE","","12438","2316.4","29077","Greene","{""29077"": ""100""}","Greene","29077","FALSE","FALSE","America/Chicago"
-"65807","37.16563","-93.32557","Springfield","MO","Missouri","TRUE","","58103","1033.5","29077","Greene","{""29077"": ""100""}","Greene","29077","FALSE","FALSE","America/Chicago"
-"65809","37.1687","-93.19335","Springfield","MO","Missouri","TRUE","","11890","258.8","29077","Greene","{""29077"": ""100""}","Greene","29077","FALSE","FALSE","America/Chicago"
-"65810","37.11738","-93.31722","Springfield","MO","Missouri","TRUE","","22652","732.0","29077","Greene","{""29077"": ""100""}","Greene","29077","FALSE","FALSE","America/Chicago"
-"66002","39.54021","-95.13888","Atchison","KS","Kansas","TRUE","","13225","28.4","20005","Atchison","{""20005"": ""97.4"", ""20043"": ""1.13"", ""20103"": ""0.89"", ""20087"": ""0.57""}","Atchison|Doniphan|Leavenworth|Jefferson","20005|20043|20103|20087","FALSE","FALSE","America/Chicago"
-"66006","38.7959","-95.23833","Baldwin City","KS","Kansas","TRUE","","7811","28.1","20045","Douglas","{""20045"": ""99.22"", ""20059"": ""0.78""}","Douglas|Franklin","20045|20059","FALSE","FALSE","America/Chicago"
-"66007","39.15518","-94.94125","Basehor","KS","Kansas","TRUE","","6918","117.7","20103","Leavenworth","{""20103"": ""100""}","Leavenworth","20103","FALSE","FALSE","America/Chicago"
-"66008","39.7122","-95.17243","Bendena","KS","Kansas","TRUE","","205","2.3","20043","Doniphan","{""20043"": ""100""}","Doniphan","20043","FALSE","FALSE","America/Chicago"
-"66010","38.09535","-94.98614","Blue Mound","KS","Kansas","TRUE","","744","3.2","20107","Linn","{""20107"": ""96.86"", ""20011"": ""3.14""}","Linn|Bourbon","20107|20011","FALSE","FALSE","America/Chicago"
-"66012","39.0672","-94.92261","Bonner Springs","KS","Kansas","TRUE","","11919","95.4","20209","Wyandotte","{""20209"": ""65.57"", ""20103"": ""34.43""}","Wyandotte|Leavenworth","20209|20103","FALSE","FALSE","America/Chicago"
-"66013","38.7283","-94.68882","Bucyrus","KS","Kansas","TRUE","","2141","19.7","20121","Miami","{""20121"": ""56.17"", ""20091"": ""43.83""}","Miami|Johnson","20121|20091","FALSE","FALSE","America/Chicago"
-"66014","38.2222","-94.98349","Centerville","KS","Kansas","TRUE","","263","1.5","20107","Linn","{""20107"": ""97.13"", ""20003"": ""2.87""}","Linn|Anderson","20107|20003","FALSE","FALSE","America/Chicago"
-"66015","38.07404","-95.40977","Colony","KS","Kansas","TRUE","","811","3.3","20003","Anderson","{""20003"": ""91.56"", ""20001"": ""8.44""}","Anderson|Allen","20003|20001","FALSE","FALSE","America/Chicago"
-"66016","39.47351","-95.23196","Cummings","KS","Kansas","TRUE","","466","5.7","20005","Atchison","{""20005"": ""100""}","Atchison","20005","FALSE","FALSE","America/Chicago"
-"66017","39.70789","-95.27548","Denton","KS","Kansas","TRUE","","404","4.0","20043","Doniphan","{""20043"": ""100""}","Doniphan","20043","FALSE","FALSE","America/Chicago"
-"66018","38.96627","-94.96781","De Soto","KS","Kansas","TRUE","","6231","114.1","20091","Johnson","{""20091"": ""100""}","Johnson","20091","FALSE","FALSE","America/Chicago"
-"66020","39.33759","-95.11447","Easton","KS","Kansas","TRUE","","1725","10.8","20103","Leavenworth","{""20103"": ""100""}","Leavenworth","20103","FALSE","FALSE","America/Chicago"
-"66021","38.76546","-95.01247","Edgerton","KS","Kansas","TRUE","","2800","22.6","20091","Johnson","{""20091"": ""86.22"", ""20121"": ""7.7"", ""20045"": ""6.09""}","Johnson|Miami|Douglas","20091|20121|20045","FALSE","FALSE","America/Chicago"
-"66023","39.51379","-95.39903","Effingham","KS","Kansas","TRUE","","994","5.4","20005","Atchison","{""20005"": ""100""}","Atchison","20005","FALSE","FALSE","America/Chicago"
-"66024","39.74758","-94.88278","Elwood","KS","Kansas","TRUE","","556","47.9","20043","Doniphan","{""20043"": ""100""}","Doniphan","20043","FALSE","FALSE","America/Chicago"
-"66025","38.89755","-95.08854","Eudora","KS","Kansas","TRUE","","7849","46.4","20045","Douglas","{""20045"": ""97.61"", ""20091"": ""2.39""}","Douglas|Johnson","20045|20091","FALSE","FALSE","America/Chicago"
-"66026","38.39633","-94.8679","Fontana","KS","Kansas","TRUE","","543","5.1","20121","Miami","{""20121"": ""73.35"", ""20107"": ""26.65""}","Miami|Linn","20121|20107","FALSE","FALSE","America/Chicago"
-"66027","39.36566","-94.9159","Fort Leavenworth","KS","Kansas","TRUE","","6556","298.9","20103","Leavenworth","{""20103"": ""100""}","Leavenworth","20103","FALSE","FALSE","America/Chicago"
-"66030","38.81502","-94.94123","Gardner","KS","Kansas","TRUE","","23865","194.6","20091","Johnson","{""20091"": ""100""}","Johnson","20091","FALSE","FALSE","America/Chicago"
-"66031","38.83398","-94.89195","New Century","KS","Kansas","TRUE","","646","86.6","20091","Johnson","{""20091"": ""100""}","Johnson","20091","FALSE","FALSE","America/Chicago"
-"66032","38.28232","-95.27321","Garnett","KS","Kansas","TRUE","","5034","9.3","20003","Anderson","{""20003"": ""100""}","Anderson","20003","FALSE","FALSE","America/Chicago"
-"66033","38.36328","-95.12205","Greeley","KS","Kansas","TRUE","","693","4.9","20003","Anderson","{""20003"": ""84.09"", ""20059"": ""10.69"", ""20107"": ""5.22""}","Anderson|Franklin|Linn","20003|20059|20107","FALSE","FALSE","America/Chicago"
-"66035","39.87742","-95.25345","Highland","KS","Kansas","TRUE","","1340","9.6","20043","Doniphan","{""20043"": ""100""}","Doniphan","20043","FALSE","FALSE","America/Chicago"
-"66039","38.10423","-95.16816","Kincaid","KS","Kansas","TRUE","","537","2.1","20003","Anderson","{""20003"": ""99.68"", ""20001"": ""0.32""}","Anderson|Allen","20003|20001","FALSE","FALSE","America/Chicago"
-"66040","38.35272","-94.74359","La Cygne","KS","Kansas","TRUE","","3305","8.8","20107","Linn","{""20107"": ""91.6"", ""20121"": ""8.4""}","Linn|Miami","20107|20121","FALSE","FALSE","America/Chicago"
-"66041","39.59522","-95.30363","Lancaster","KS","Kansas","TRUE","","745","5.3","20005","Atchison","{""20005"": ""96.69"", ""20043"": ""3.31""}","Atchison|Doniphan","20005|20043","FALSE","FALSE","America/Chicago"
-"66042","38.43466","-95.08283","Lane","KS","Kansas","TRUE","","678","9.2","20059","Franklin","{""20059"": ""69.1"", ""20121"": ""30.9""}","Franklin|Miami","20059|20121","FALSE","FALSE","America/Chicago"
-"66043","39.25162","-94.8784","Lansing","KS","Kansas","TRUE","","10941","321.9","20103","Leavenworth","{""20103"": ""100""}","Leavenworth","20103","FALSE","FALSE","America/Chicago"
-"66044","39.02889","-95.20854","Lawrence","KS","Kansas","TRUE","","28764","179.0","20045","Douglas","{""20045"": ""96.16"", ""20103"": ""2.08"", ""20087"": ""1.75""}","Douglas|Leavenworth|Jefferson","20045|20103|20087","FALSE","FALSE","America/Chicago"
-"66045","38.95898","-95.24993","Lawrence","KS","Kansas","TRUE","","2102","2500.4","20045","Douglas","{""20045"": ""100""}","Douglas","20045","FALSE","FALSE","America/Chicago"
-"66046","38.90777","-95.21352","Lawrence","KS","Kansas","TRUE","","19835","187.6","20045","Douglas","{""20045"": ""100""}","Douglas","20045","FALSE","FALSE","America/Chicago"
-"66047","38.88006","-95.34776","Lawrence","KS","Kansas","TRUE","","20376","148.5","20045","Douglas","{""20045"": ""100""}","Douglas","20045","FALSE","FALSE","America/Chicago"
-"66048","39.28287","-94.99415","Leavenworth","KS","Kansas","TRUE","","36149","103.1","20103","Leavenworth","{""20103"": ""100""}","Leavenworth","20103","FALSE","FALSE","America/Chicago"
-"66049","38.9824","-95.34464","Lawrence","KS","Kansas","TRUE","","31459","272.8","20045","Douglas","{""20045"": ""100""}","Douglas","20045","FALSE","FALSE","America/Chicago"
-"66050","39.01539","-95.43917","Lecompton","KS","Kansas","TRUE","","2000","17.9","20045","Douglas","{""20045"": ""96.21"", ""20177"": ""3.79""}","Douglas|Shawnee","20045|20177","FALSE","FALSE","America/Chicago"
-"66052","39.01103","-95.04583","Linwood","KS","Kansas","TRUE","","2382","22.1","20103","Leavenworth","{""20103"": ""100""}","Leavenworth","20103","FALSE","FALSE","America/Chicago"
-"66053","38.57885","-94.66935","Louisburg","KS","Kansas","TRUE","","7230","28.1","20121","Miami","{""20121"": ""100""}","Miami","20121","FALSE","FALSE","America/Chicago"
-"66054","39.20367","-95.19608","McLouth","KS","Kansas","TRUE","","2894","14.7","20087","Jefferson","{""20087"": ""75.17"", ""20103"": ""24.83""}","Jefferson|Leavenworth","20087|20103","FALSE","FALSE","America/Chicago"
-"66056","38.14989","-94.8433","Mound City","KS","Kansas","TRUE","","1954","8.8","20107","Linn","{""20107"": ""100""}","Linn","20107","FALSE","FALSE","America/Chicago"
-"66058","39.53884","-95.51755","Muscotah","KS","Kansas","TRUE","","248","2.7","20005","Atchison","{""20005"": ""100""}","Atchison","20005","FALSE","FALSE","America/Chicago"
-"66060","39.41839","-95.33215","Nortonville","KS","Kansas","TRUE","","1448","9.3","20087","Jefferson","{""20087"": ""77.54"", ""20005"": ""22.46""}","Jefferson|Atchison","20087|20005","FALSE","FALSE","America/Chicago"
-"66061","38.89668","-94.87959","Olathe","KS","Kansas","TRUE","","64791","389.9","20091","Johnson","{""20091"": ""100""}","Johnson","20091","FALSE","FALSE","America/Chicago"
-"66062","38.83455","-94.77798","Olathe","KS","Kansas","TRUE","","81780","660.2","20091","Johnson","{""20091"": ""100""}","Johnson","20091","FALSE","FALSE","America/Chicago"
-"66064","38.47802","-94.98886","Osawatomie","KS","Kansas","TRUE","","5981","30.8","20121","Miami","{""20121"": ""99.26"", ""20059"": ""0.74""}","Miami|Franklin","20121|20059","FALSE","FALSE","America/Chicago"
-"66066","39.20263","-95.33169","Oskaloosa","KS","Kansas","TRUE","","2467","12.3","20087","Jefferson","{""20087"": ""100""}","Jefferson","20087","FALSE","FALSE","America/Chicago"
-"66067","38.62059","-95.27571","Ottawa","KS","Kansas","TRUE","","15291","35.6","20059","Franklin","{""20059"": ""100""}","Franklin","20059","FALSE","FALSE","America/Chicago"
-"66070","39.2054","-95.4507","Ozawkie","KS","Kansas","TRUE","","2671","33.8","20087","Jefferson","{""20087"": ""100""}","Jefferson","20087","FALSE","FALSE","America/Chicago"
-"66071","38.57328","-94.86454","Paola","KS","Kansas","TRUE","","12510","20.8","20121","Miami","{""20121"": ""100""}","Miami","20121","FALSE","FALSE","America/Chicago"
-"66072","38.31342","-94.97301","Parker","KS","Kansas","TRUE","","995","5.1","20107","Linn","{""20107"": ""98.2"", ""20121"": ""1.8""}","Linn|Miami","20107|20121","FALSE","FALSE","America/Chicago"
-"66073","39.09016","-95.3763","Perry","KS","Kansas","TRUE","","2598","15.3","20087","Jefferson","{""20087"": ""100""}","Jefferson","20087","FALSE","FALSE","America/Chicago"
-"66075","38.20085","-94.69193","Pleasanton","KS","Kansas","TRUE","","2302","8.5","20107","Linn","{""20107"": ""100""}","Linn","20107","FALSE","FALSE","America/Chicago"
-"66076","38.6327","-95.44049","Pomona","KS","Kansas","TRUE","","2595","10.3","20059","Franklin","{""20059"": ""100""}","Franklin","20059","FALSE","FALSE","America/Chicago"
-"66078","38.48312","-95.26222","Princeton","KS","Kansas","TRUE","","1143","6.8","20059","Franklin","{""20059"": ""100""}","Franklin","20059","FALSE","FALSE","America/Chicago"
-"66079","38.54516","-95.11271","Rantoul","KS","Kansas","TRUE","","727","6.7","20059","Franklin","{""20059"": ""100""}","Franklin","20059","FALSE","FALSE","America/Chicago"
-"66080","38.40442","-95.25955","Richmond","KS","Kansas","TRUE","","882","5.8","20059","Franklin","{""20059"": ""85.45"", ""20003"": ""14.55""}","Franklin|Anderson","20059|20003","FALSE","FALSE","America/Chicago"
-"66083","38.73372","-94.83491","Spring Hill","KS","Kansas","TRUE","","10352","61.9","20091","Johnson","{""20091"": ""53.11"", ""20121"": ""46.89""}","Johnson|Miami","20091|20121","FALSE","FALSE","America/Chicago"
-"66085","38.79952","-94.64959","Stilwell","KS","Kansas","TRUE","","8808","130.3","20091","Johnson","{""20091"": ""100""}","Johnson","20091","FALSE","FALSE","America/Chicago"
-"66086","39.11707","-95.07993","Tonganoxie","KS","Kansas","TRUE","","10593","42.9","20103","Leavenworth","{""20103"": ""99.72"", ""20087"": ""0.28""}","Leavenworth|Jefferson","20103|20087","FALSE","FALSE","America/Chicago"
-"66087","39.79815","-95.12419","Troy","KS","Kansas","TRUE","","1873","6.5","20043","Doniphan","{""20043"": ""100""}","Doniphan","20043","FALSE","FALSE","America/Chicago"
-"66088","39.33966","-95.46051","Valley Falls","KS","Kansas","TRUE","","2364","7.5","20087","Jefferson","{""20087"": ""98.01"", ""20005"": ""1.99""}","Jefferson|Atchison","20087|20005","FALSE","FALSE","America/Chicago"
-"66090","39.78557","-94.9732","Wathena","KS","Kansas","TRUE","","2801","13.9","20043","Doniphan","{""20043"": ""100""}","Doniphan","20043","FALSE","FALSE","America/Chicago"
-"66091","38.17397","-95.32369","Welda","KS","Kansas","TRUE","","427","2.7","20003","Anderson","{""20003"": ""100""}","Anderson","20003","FALSE","FALSE","America/Chicago"
-"66092","38.69741","-95.10247","Wellsville","KS","Kansas","TRUE","","3863","17.8","20059","Franklin","{""20059"": ""81.42"", ""20121"": ""10.24"", ""20045"": ""8.35""}","Franklin|Miami|Douglas","20059|20121|20045","FALSE","FALSE","America/Chicago"
-"66093","38.21065","-95.49836","Westphalia","KS","Kansas","TRUE","","649","2.3","20003","Anderson","{""20003"": ""74.88"", ""20031"": ""25.12""}","Anderson|Coffey","20003|20031","FALSE","FALSE","America/Chicago"
-"66094","39.95772","-95.34293","White Cloud","KS","Kansas","TRUE","","298","2.4","20043","Doniphan","{""20043"": ""57.69"", ""20013"": ""42.31""}","Doniphan|Brown","20043|20013","FALSE","FALSE","America/Chicago"
-"66095","38.44674","-95.43112","Williamsburg","KS","Kansas","TRUE","","1102","6.0","20059","Franklin","{""20059"": ""98.21"", ""20003"": ""1.79""}","Franklin|Anderson","20059|20003","FALSE","FALSE","America/Chicago"
-"66097","39.32884","-95.24444","Winchester","KS","Kansas","TRUE","","1171","9.1","20087","Jefferson","{""20087"": ""99.16"", ""20103"": ""0.84""}","Jefferson|Leavenworth","20087|20103","FALSE","FALSE","America/Chicago"
-"66101","39.11894","-94.62601","Kansas City","KS","Kansas","TRUE","","12643","1501.4","20209","Wyandotte","{""20209"": ""100""}","Wyandotte","20209","FALSE","FALSE","America/Chicago"
-"66102","39.11296","-94.68955","Kansas City","KS","Kansas","TRUE","","32046","1107.4","20209","Wyandotte","{""20209"": ""100""}","Wyandotte","20209","FALSE","FALSE","America/Chicago"
-"66103","39.06126","-94.62635","Kansas City","KS","Kansas","TRUE","","13094","1044.0","20209","Wyandotte","{""20209"": ""100""}","Wyandotte","20209","FALSE","FALSE","America/Chicago"
-"66104","39.15041","-94.68864","Kansas City","KS","Kansas","TRUE","","25791","617.4","20209","Wyandotte","{""20209"": ""100""}","Wyandotte","20209","FALSE","FALSE","America/Chicago"
-"66105","39.08692","-94.63847","Kansas City","KS","Kansas","TRUE","","2510","288.9","20209","Wyandotte","{""20209"": ""100""}","Wyandotte","20209","FALSE","FALSE","America/Chicago"
-"66106","39.06661","-94.70296","Kansas City","KS","Kansas","TRUE","","23785","493.5","20209","Wyandotte","{""20209"": ""100""}","Wyandotte","20209","FALSE","FALSE","America/Chicago"
-"66109","39.16347","-94.82818","Kansas City","KS","Kansas","TRUE","","23923","200.7","20209","Wyandotte","{""20209"": ""99.46"", ""20103"": ""0.54""}","Wyandotte|Leavenworth","20209|20103","FALSE","FALSE","America/Chicago"
-"66111","39.08383","-94.79515","Kansas City","KS","Kansas","TRUE","","10148","180.1","20209","Wyandotte","{""20209"": ""100""}","Wyandotte","20209","FALSE","FALSE","America/Chicago"
-"66112","39.11458","-94.77357","Kansas City","KS","Kansas","TRUE","","13095","810.5","20209","Wyandotte","{""20209"": ""100""}","Wyandotte","20209","FALSE","FALSE","America/Chicago"
-"66115","39.14401","-94.61098","Kansas City","KS","Kansas","TRUE","","0","0.0","20209","Wyandotte","{""20209"": ""0""}","Wyandotte","20209","FALSE","FALSE","America/Chicago"
-"66118","39.10407","-94.61368","Kansas City","KS","Kansas","TRUE","","0","0.0","20209","Wyandotte","{""20209"": ""100""}","Wyandotte","20209","FALSE","FALSE","America/Chicago"
-"66202","39.02391","-94.66913","Mission","KS","Kansas","TRUE","","16689","1226.9","20091","Johnson","{""20091"": ""100""}","Johnson","20091","FALSE","FALSE","America/Chicago"
-"66203","39.02155","-94.7055","Shawnee","KS","Kansas","TRUE","","19008","1169.0","20091","Johnson","{""20091"": ""100""}","Johnson","20091","FALSE","FALSE","America/Chicago"
-"66204","38.99286","-94.67712","Overland Park","KS","Kansas","TRUE","","19903","1553.5","20091","Johnson","{""20091"": ""100""}","Johnson","20091","FALSE","FALSE","America/Chicago"
-"66205","39.03124","-94.6307","Mission","KS","Kansas","TRUE","","13419","1383.8","20091","Johnson","{""20091"": ""100""}","Johnson","20091","FALSE","FALSE","America/Chicago"
-"66206","38.95794","-94.61937","Leawood","KS","Kansas","TRUE","","10783","1054.9","20091","Johnson","{""20091"": ""100""}","Johnson","20091","FALSE","FALSE","America/Chicago"
-"66207","38.95589","-94.6444","Overland Park","KS","Kansas","TRUE","","14792","1222.1","20091","Johnson","{""20091"": ""100""}","Johnson","20091","FALSE","FALSE","America/Chicago"
-"66208","38.99923","-94.62965","Prairie Village","KS","Kansas","TRUE","","21264","1260.6","20091","Johnson","{""20091"": ""100""}","Johnson","20091","FALSE","FALSE","America/Chicago"
-"66209","38.89909","-94.63873","Leawood","KS","Kansas","TRUE","","20130","1258.2","20091","Johnson","{""20091"": ""100""}","Johnson","20091","FALSE","FALSE","America/Chicago"
-"66210","38.92369","-94.70493","Overland Park","KS","Kansas","TRUE","","18523","1179.1","20091","Johnson","{""20091"": ""100""}","Johnson","20091","FALSE","FALSE","America/Chicago"
-"66211","38.92358","-94.63686","Leawood","KS","Kansas","TRUE","","4637","402.2","20091","Johnson","{""20091"": ""100""}","Johnson","20091","FALSE","FALSE","America/Chicago"
-"66212","38.95637","-94.68147","Overland Park","KS","Kansas","TRUE","","32252","1622.4","20091","Johnson","{""20091"": ""100""}","Johnson","20091","FALSE","FALSE","America/Chicago"
-"66213","38.89918","-94.70542","Overland Park","KS","Kansas","TRUE","","29276","1492.1","20091","Johnson","{""20091"": ""100""}","Johnson","20091","FALSE","FALSE","America/Chicago"
-"66214","38.9638","-94.71418","Overland Park","KS","Kansas","TRUE","","12224","1207.0","20091","Johnson","{""20091"": ""100""}","Johnson","20091","FALSE","FALSE","America/Chicago"
-"66215","38.95701","-94.74297","Lenexa","KS","Kansas","TRUE","","26219","1284.9","20091","Johnson","{""20091"": ""100""}","Johnson","20091","FALSE","FALSE","America/Chicago"
-"66216","39.01384","-94.74115","Shawnee","KS","Kansas","TRUE","","25108","1241.1","20091","Johnson","{""20091"": ""100""}","Johnson","20091","FALSE","FALSE","America/Chicago"
-"66217","39.00911","-94.78201","Shawnee","KS","Kansas","TRUE","","5335","219.7","20091","Johnson","{""20091"": ""99.23"", ""20209"": ""0.77""}","Johnson|Wyandotte","20091|20209","FALSE","FALSE","America/Chicago"
-"66218","39.01651","-94.81779","Shawnee","KS","Kansas","TRUE","","8760","375.7","20091","Johnson","{""20091"": ""100""}","Johnson","20091","FALSE","FALSE","America/Chicago"
-"66219","38.95223","-94.77632","Lenexa","KS","Kansas","TRUE","","12375","629.3","20091","Johnson","{""20091"": ""100""}","Johnson","20091","FALSE","FALSE","America/Chicago"
-"66220","38.96109","-94.82148","Lenexa","KS","Kansas","TRUE","","7770","444.5","20091","Johnson","{""20091"": ""100""}","Johnson","20091","FALSE","FALSE","America/Chicago"
-"66221","38.86362","-94.71023","Overland Park","KS","Kansas","TRUE","","17443","895.5","20091","Johnson","{""20091"": ""100""}","Johnson","20091","FALSE","FALSE","America/Chicago"
-"66223","38.86282","-94.6682","Overland Park","KS","Kansas","TRUE","","25912","1604.4","20091","Johnson","{""20091"": ""100""}","Johnson","20091","FALSE","FALSE","America/Chicago"
-"66224","38.86292","-94.62816","Overland Park","KS","Kansas","TRUE","","13561","759.6","20091","Johnson","{""20091"": ""100""}","Johnson","20091","FALSE","FALSE","America/Chicago"
-"66226","39.03056","-94.86005","Shawnee","KS","Kansas","TRUE","","14146","473.6","20091","Johnson","{""20091"": ""100""}","Johnson","20091","FALSE","FALSE","America/Chicago"
-"66227","38.97275","-94.8747","Lenexa","KS","Kansas","TRUE","","6635","193.1","20091","Johnson","{""20091"": ""100""}","Johnson","20091","FALSE","FALSE","America/Chicago"
-"66401","38.97012","-96.3105","Alma","KS","Kansas","TRUE","","1511","2.5","20197","Wabaunsee","{""20197"": ""100""}","Wabaunsee","20197","FALSE","FALSE","America/Chicago"
-"66402","38.91898","-95.84633","Auburn","KS","Kansas","TRUE","","2931","26.3","20177","Shawnee","{""20177"": ""100""}","Shawnee","20177","FALSE","FALSE","America/Chicago"
-"66403","39.89652","-96.27739","Axtell","KS","Kansas","TRUE","","819","3.4","20117","Marshall","{""20117"": ""95.24"", ""20131"": ""4.76""}","Marshall|Nemaha","20117|20131","FALSE","FALSE","America/Chicago"
-"66404","39.87969","-96.17713","Baileyville","KS","Kansas","TRUE","","449","2.6","20131","Nemaha","{""20131"": ""100""}","Nemaha","20131","FALSE","FALSE","America/Chicago"
-"66406","39.89355","-96.41974","Beattie","KS","Kansas","TRUE","","355","2.5","20117","Marshall","{""20117"": ""100""}","Marshall","20117","FALSE","FALSE","America/Chicago"
-"66407","39.23008","-96.19408","Belvue","KS","Kansas","TRUE","","483","3.3","20149","Pottawatomie","{""20149"": ""72.03"", ""20197"": ""27.97""}","Pottawatomie|Wabaunsee","20149|20197","FALSE","FALSE","America/Chicago"
-"66408","39.95945","-95.97163","Bern","KS","Kansas","TRUE","","419","3.6","20131","Nemaha","{""20131"": ""100""}","Nemaha","20131","FALSE","FALSE","America/Chicago"
-"66409","38.92505","-95.55883","Berryton","KS","Kansas","TRUE","","3285","19.4","20177","Shawnee","{""20177"": ""95.66"", ""20045"": ""4.34""}","Shawnee|Douglas","20177|20045","FALSE","FALSE","America/Chicago"
-"66411","39.63972","-96.63624","Blue Rapids","KS","Kansas","TRUE","","1426","4.8","20117","Marshall","{""20117"": ""95.2"", ""20161"": ""4.8""}","Marshall|Riley","20117|20161","FALSE","FALSE","America/Chicago"
-"66412","39.91195","-96.77914","Bremen","KS","Kansas","TRUE","","169","1.3","20117","Marshall","{""20117"": ""94.43"", ""20201"": ""5.57""}","Marshall|Washington","20117|20201","FALSE","FALSE","America/Chicago"
-"66413","38.77457","-95.8818","Burlingame","KS","Kansas","TRUE","","1862","7.2","20139","Osage","{""20139"": ""97.23"", ""20111"": ""2.61"", ""20197"": ""0.17""}","Osage|Lyon|Wabaunsee","20139|20111|20197","FALSE","FALSE","America/Chicago"
-"66414","38.82943","-95.68859","Carbondale","KS","Kansas","TRUE","","2973","18.8","20139","Osage","{""20139"": ""100""}","Osage","20139","FALSE","FALSE","America/Chicago"
-"66415","39.68728","-96.14561","Centralia","KS","Kansas","TRUE","","760","3.1","20131","Nemaha","{""20131"": ""100""}","Nemaha","20131","FALSE","FALSE","America/Chicago"
-"66416","39.52807","-95.86141","Circleville","KS","Kansas","TRUE","","558","6.1","20085","Jackson","{""20085"": ""97.75"", ""20131"": ""2.25""}","Jackson|Nemaha","20085|20131","FALSE","FALSE","America/Chicago"
-"66417","39.65367","-96.04327","Corning","KS","Kansas","TRUE","","401","4.3","20131","Nemaha","{""20131"": ""100""}","Nemaha","20131","FALSE","FALSE","America/Chicago"
-"66418","39.28879","-95.93752","Delia","KS","Kansas","TRUE","","428","1.9","20085","Jackson","{""20085"": ""100""}","Jackson","20085","FALSE","FALSE","America/Chicago"
-"66419","39.36379","-95.59928","Denison","KS","Kansas","TRUE","","347","7.5","20085","Jackson","{""20085"": ""89.59"", ""20087"": ""10.41""}","Jackson|Jefferson","20085|20087","FALSE","FALSE","America/Chicago"
-"66422","39.33596","-96.0853","Emmett","KS","Kansas","TRUE","","403","2.5","20149","Pottawatomie","{""20149"": ""82.34"", ""20085"": ""17.66""}","Pottawatomie|Jackson","20149|20085","FALSE","FALSE","America/Chicago"
-"66423","38.84864","-96.1365","Eskridge","KS","Kansas","TRUE","","918","2.2","20197","Wabaunsee","{""20197"": ""100""}","Wabaunsee","20197","FALSE","FALSE","America/Chicago"
-"66424","39.6811","-95.39732","Everest","KS","Kansas","TRUE","","420","2.8","20013","Brown","{""20013"": ""83.28"", ""20005"": ""16.72""}","Brown|Atchison","20013|20005","FALSE","FALSE","America/Chicago"
-"66425","39.80452","-95.73059","Fairview","KS","Kansas","TRUE","","495","4.1","20013","Brown","{""20013"": ""100""}","Brown","20013","FALSE","FALSE","America/Chicago"
-"66427","39.66516","-96.44451","Frankfort","KS","Kansas","TRUE","","1107","2.0","20117","Marshall","{""20117"": ""97.97"", ""20149"": ""2.03""}","Marshall|Pottawatomie","20117|20149","FALSE","FALSE","America/Chicago"
-"66428","39.67275","-95.93078","Goff","KS","Kansas","TRUE","","352","1.4","20131","Nemaha","{""20131"": ""100""}","Nemaha","20131","FALSE","FALSE","America/Chicago"
-"66429","39.09828","-95.53756","Grantville","KS","Kansas","TRUE","","561","16.8","20087","Jefferson","{""20087"": ""100""}","Jefferson","20087","FALSE","FALSE","America/Chicago"
-"66431","38.80471","-96.00433","Harveyville","KS","Kansas","TRUE","","651","4.0","20197","Wabaunsee","{""20197"": ""92.7"", ""20177"": ""7.3""}","Wabaunsee|Shawnee","20197|20177","FALSE","FALSE","America/Chicago"
-"66432","39.48323","-96.06651","Havensville","KS","Kansas","TRUE","","308","2.0","20149","Pottawatomie","{""20149"": ""90.91"", ""20085"": ""9.09""}","Pottawatomie|Jackson","20149|20085","FALSE","FALSE","America/Chicago"
-"66434","39.86797","-95.54648","Hiawatha","KS","Kansas","TRUE","","4785","8.6","20013","Brown","{""20013"": ""100""}","Brown","20013","FALSE","FALSE","America/Chicago"
-"66436","39.46684","-95.69883","Holton","KS","Kansas","TRUE","","6223","12.9","20085","Jackson","{""20085"": ""96.8"", ""20005"": ""2.94"", ""20087"": ""0.26""}","Jackson|Atchison|Jefferson","20085|20005|20087","FALSE","FALSE","America/Chicago"
-"66438","39.85274","-96.49527","Home","KS","Kansas","TRUE","","117","2.4","20117","Marshall","{""20117"": ""100""}","Marshall","20117","FALSE","FALSE","America/Chicago"
-"66439","39.65609","-95.54493","Horton","KS","Kansas","TRUE","","2625","11.6","20013","Brown","{""20013"": ""91.77"", ""20005"": ""7.75"", ""20085"": ""0.47""}","Brown|Atchison|Jackson","20013|20005|20085","FALSE","FALSE","America/Chicago"
-"66440","39.26436","-95.67877","Hoyt","KS","Kansas","TRUE","","1612","12.7","20085","Jackson","{""20085"": ""100""}","Jackson","20085","FALSE","FALSE","America/Chicago"
-"66441","38.9851","-96.80306","Junction City","KS","Kansas","TRUE","","25372","41.0","20061","Geary","{""20061"": ""99.45"", ""20041"": ""0.52"", ""20161"": ""0.03""}","Geary|Dickinson|Riley","20061|20041|20161","FALSE","FALSE","America/Chicago"
-"66442","39.09328","-96.78981","Fort Riley","KS","Kansas","TRUE","","16121","181.5","20161","Riley","{""20161"": ""59.13"", ""20061"": ""40.87""}","Riley|Geary","20161|20061","FALSE","FALSE","America/Chicago"
-"66449","39.3892","-96.86137","Leonardville","KS","Kansas","TRUE","","928","5.4","20161","Riley","{""20161"": ""100""}","Riley","20161","FALSE","FALSE","America/Chicago"
-"66451","38.60958","-95.67311","Lyndon","KS","Kansas","TRUE","","1697","7.9","20139","Osage","{""20139"": ""100""}","Osage","20139","FALSE","FALSE","America/Chicago"
-"66501","39.05407","-96.23742","McFarland","KS","Kansas","TRUE","","332","558.5","20197","Wabaunsee","{""20197"": ""100""}","Wabaunsee","20197","FALSE","FALSE","America/Chicago"
-"66502","39.15122","-96.53124","Manhattan","KS","Kansas","TRUE","","45390","76.4","20161","Riley","{""20161"": ""92.54"", ""20149"": ""7.25"", ""20061"": ""0.13"", ""20197"": ""0.08""}","Riley|Pottawatomie|Geary|Wabaunsee","20161|20149|20061|20197","FALSE","FALSE","America/Chicago"
-"66503","39.26363","-96.68622","Manhattan","KS","Kansas","TRUE","","16061","76.1","20161","Riley","{""20161"": ""100""}","Riley","20161","FALSE","FALSE","America/Chicago"
-"66506","39.19592","-96.58159","Manhattan","KS","Kansas","TRUE","","3403","1978.4","20161","Riley","{""20161"": ""100""}","Riley","20161","FALSE","FALSE","America/Chicago"
-"66507","39.04474","-96.03969","Maple Hill","KS","Kansas","TRUE","","1215","4.9","20197","Wabaunsee","{""20197"": ""100""}","Wabaunsee","20197","FALSE","FALSE","America/Chicago"
-"66508","39.85319","-96.63239","Marysville","KS","Kansas","TRUE","","4340","8.3","20117","Marshall","{""20117"": ""100""}","Marshall","20117","FALSE","FALSE","America/Chicago"
-"66509","39.33308","-95.78046","Mayetta","KS","Kansas","TRUE","","2996","9.1","20085","Jackson","{""20085"": ""100""}","Jackson","20085","FALSE","FALSE","America/Chicago"
-"66510","38.4926","-95.61258","Melvern","KS","Kansas","TRUE","","722","4.9","20139","Osage","{""20139"": ""100""}","Osage","20139","FALSE","FALSE","America/Chicago"
-"66512","39.1996","-95.55025","Meriden","KS","Kansas","TRUE","","2908","17.1","20087","Jefferson","{""20087"": ""93.66"", ""20085"": ""3.42"", ""20177"": ""2.92""}","Jefferson|Jackson|Shawnee","20087|20085|20177","FALSE","FALSE","America/Chicago"
-"66514","39.12468","-96.87841","Milford","KS","Kansas","TRUE","","1245","29.7","20061","Geary","{""20061"": ""100""}","Geary","20061","FALSE","FALSE","America/Chicago"
-"66515","39.94204","-95.70344","Morrill","KS","Kansas","TRUE","","417","5.0","20013","Brown","{""20013"": ""100""}","Brown","20013","FALSE","FALSE","America/Chicago"
-"66516","39.62407","-95.7236","Netawaka","KS","Kansas","TRUE","","288","2.4","20085","Jackson","{""20085"": ""80.16"", ""20013"": ""19.84""}","Jackson|Brown","20085|20013","FALSE","FALSE","America/Chicago"
-"66517","39.11263","-96.70688","Ogden","KS","Kansas","TRUE","","1600","387.3","20161","Riley","{""20161"": ""100""}","Riley","20161","FALSE","FALSE","America/Chicago"
-"66518","39.97091","-96.55284","Oketo","KS","Kansas","TRUE","","132","1.3","20117","Marshall","{""20117"": ""100""}","Marshall","20117","FALSE","FALSE","America/Chicago"
-"66520","39.41153","-96.61702","Olsburg","KS","Kansas","TRUE","","574","2.1","20149","Pottawatomie","{""20149"": ""100""}","Pottawatomie","20149","FALSE","FALSE","America/Chicago"
-"66521","39.47984","-96.21953","Onaga","KS","Kansas","TRUE","","1596","3.4","20149","Pottawatomie","{""20149"": ""96.21"", ""20131"": ""3.79""}","Pottawatomie|Nemaha","20149|20131","FALSE","FALSE","America/Chicago"
-"66522","39.8664","-95.94035","Oneida","KS","Kansas","TRUE","","135","304.1","20131","Nemaha","{""20131"": ""100""}","Nemaha","20131","FALSE","FALSE","America/Chicago"
-"66523","38.61194","-95.84033","Osage City","KS","Kansas","TRUE","","3580","9.2","20139","Osage","{""20139"": ""99.03"", ""20111"": ""0.97""}","Osage|Lyon","20139|20111","FALSE","FALSE","America/Chicago"
-"66524","38.79361","-95.50514","Overbrook","KS","Kansas","TRUE","","2364","7.2","20139","Osage","{""20139"": ""78.87"", ""20045"": ""19.81"", ""20177"": ""1.32""}","Osage|Douglas|Shawnee","20139|20045|20177","FALSE","FALSE","America/Chicago"
-"66526","39.06351","-96.15572","Paxico","KS","Kansas","TRUE","","924","5.0","20197","Wabaunsee","{""20197"": ""100""}","Wabaunsee","20197","FALSE","FALSE","America/Chicago"
-"66527","39.74775","-95.67587","Powhattan","KS","Kansas","TRUE","","276","2.6","20013","Brown","{""20013"": ""100""}","Brown","20013","FALSE","FALSE","America/Chicago"
-"66528","38.59798","-95.53602","Quenemo","KS","Kansas","TRUE","","735","4.3","20139","Osage","{""20139"": ""86.67"", ""20059"": ""13.33""}","Osage|Franklin","20139|20059","FALSE","FALSE","America/Chicago"
-"66531","39.312","-96.82996","Riley","KS","Kansas","TRUE","","2163","21.9","20161","Riley","{""20161"": ""100""}","Riley","20161","FALSE","FALSE","America/Chicago"
-"66532","39.8256","-95.37434","Robinson","KS","Kansas","TRUE","","763","3.3","20013","Brown","{""20013"": ""79.79"", ""20043"": ""20.21""}","Brown|Doniphan","20013|20043","FALSE","FALSE","America/Chicago"
-"66533","39.15935","-95.95173","Rossville","KS","Kansas","TRUE","","1929","14.3","20177","Shawnee","{""20177"": ""100""}","Shawnee","20177","FALSE","FALSE","America/Chicago"
-"66534","39.88472","-95.83668","Sabetha","KS","Kansas","TRUE","","3635","9.5","20131","Nemaha","{""20131"": ""95.62"", ""20013"": ""4.38""}","Nemaha|Brown","20131|20013","FALSE","FALSE","America/Chicago"
-"66535","39.26247","-96.43746","Saint George","KS","Kansas","TRUE","","2787","25.3","20149","Pottawatomie","{""20149"": ""100""}","Pottawatomie","20149","FALSE","FALSE","America/Chicago"
-"66536","39.22164","-96.07927","Saint Marys","KS","Kansas","TRUE","","4356","28.5","20149","Pottawatomie","{""20149"": ""95.1"", ""20177"": ""3.65"", ""20085"": ""0.82"", ""20197"": ""0.43""}","Pottawatomie|Shawnee|Jackson|Wabaunsee","20149|20177|20085|20197","FALSE","FALSE","America/Chicago"
-"66537","38.75305","-95.71917","Scranton","KS","Kansas","TRUE","","1132","7.7","20139","Osage","{""20139"": ""100""}","Osage","20139","FALSE","FALSE","America/Chicago"
-"66538","39.85248","-96.04433","Seneca","KS","Kansas","TRUE","","3482","9.2","20131","Nemaha","{""20131"": ""100""}","Nemaha","20131","FALSE","FALSE","America/Chicago"
-"66539","39.14559","-95.84829","Silver Lake","KS","Kansas","TRUE","","2377","22.3","20177","Shawnee","{""20177"": ""100""}","Shawnee","20177","FALSE","FALSE","America/Chicago"
-"66540","39.4918","-95.97673","Soldier","KS","Kansas","TRUE","","431","2.0","20085","Jackson","{""20085"": ""93.15"", ""20131"": ""6.85""}","Jackson|Nemaha","20085|20131","FALSE","FALSE","America/Chicago"
-"66541","39.97644","-96.36579","Summerfield","KS","Kansas","TRUE","","193","1.8","20117","Marshall","{""20117"": ""89.39"", ""31133"": ""10.61""}","Marshall|Pawnee","20117|31133","FALSE","FALSE","America/Chicago"
-"66542","39.01293","-95.54464","Tecumseh","KS","Kansas","TRUE","","2985","35.5","20177","Shawnee","{""20177"": ""100""}","Shawnee","20177","FALSE","FALSE","America/Chicago"
-"66543","38.64159","-95.60051","Vassar","KS","Kansas","TRUE","","1094","48.2","20139","Osage","{""20139"": ""100""}","Osage","20139","FALSE","FALSE","America/Chicago"
-"66544","39.6945","-96.27802","Vermillion","KS","Kansas","TRUE","","375","1.7","20117","Marshall","{""20117"": ""92.58"", ""20131"": ""7.42""}","Marshall|Nemaha","20117|20131","FALSE","FALSE","America/Chicago"
-"66546","38.8954","-95.7239","Wakarusa","KS","Kansas","TRUE","","1099","11.1","20177","Shawnee","{""20177"": ""97.73"", ""20139"": ""2.27""}","Shawnee|Osage","20177|20139","FALSE","FALSE","America/Chicago"
-"66547","39.22932","-96.30433","Wamego","KS","Kansas","TRUE","","9023","25.8","20149","Pottawatomie","{""20149"": ""95.19"", ""20197"": ""4.81""}","Pottawatomie|Wabaunsee","20149|20197","FALSE","FALSE","America/Chicago"
-"66548","39.67862","-96.76116","Waterville","KS","Kansas","TRUE","","809","4.0","20117","Marshall","{""20117"": ""99.69"", ""20201"": ""0.31""}","Marshall|Washington","20117|20201","FALSE","FALSE","America/Chicago"
-"66549","39.43374","-96.42498","Westmoreland","KS","Kansas","TRUE","","1664","3.7","20149","Pottawatomie","{""20149"": ""100""}","Pottawatomie","20149","FALSE","FALSE","America/Chicago"
-"66550","39.65663","-95.82022","Wetmore","KS","Kansas","TRUE","","591","3.7","20131","Nemaha","{""20131"": ""92.59"", ""20013"": ""3.79"", ""20085"": ""3.62""}","Nemaha|Brown|Jackson","20131|20013|20085","FALSE","FALSE","America/Chicago"
-"66552","39.59332","-95.62541","Whiting","KS","Kansas","TRUE","","433","3.7","20085","Jackson","{""20085"": ""100""}","Jackson","20085","FALSE","FALSE","America/Chicago"
-"66554","39.49441","-96.78557","Randolph","KS","Kansas","TRUE","","523","1.9","20161","Riley","{""20161"": ""100""}","Riley","20161","FALSE","FALSE","America/Chicago"
-"66603","39.05745","-95.67588","Topeka","KS","Kansas","TRUE","","1337","597.9","20177","Shawnee","{""20177"": ""100""}","Shawnee","20177","FALSE","FALSE","America/Chicago"
-"66604","39.03885","-95.72663","Topeka","KS","Kansas","TRUE","","22224","1297.1","20177","Shawnee","{""20177"": ""100""}","Shawnee","20177","FALSE","FALSE","America/Chicago"
-"66605","39.01174","-95.63354","Topeka","KS","Kansas","TRUE","","20229","783.2","20177","Shawnee","{""20177"": ""100""}","Shawnee","20177","FALSE","FALSE","America/Chicago"
-"66606","39.0616","-95.72116","Topeka","KS","Kansas","TRUE","","10881","734.5","20177","Shawnee","{""20177"": ""100""}","Shawnee","20177","FALSE","FALSE","America/Chicago"
-"66607","39.04235","-95.63566","Topeka","KS","Kansas","TRUE","","9567","516.9","20177","Shawnee","{""20177"": ""100""}","Shawnee","20177","FALSE","FALSE","America/Chicago"
-"66608","39.08038","-95.66445","Topeka","KS","Kansas","TRUE","","5632","467.8","20177","Shawnee","{""20177"": ""100""}","Shawnee","20177","FALSE","FALSE","America/Chicago"
-"66609","38.98186","-95.66904","Topeka","KS","Kansas","TRUE","","6960","224.3","20177","Shawnee","{""20177"": ""100""}","Shawnee","20177","FALSE","FALSE","America/Chicago"
-"66610","38.97402","-95.83751","Topeka","KS","Kansas","TRUE","","10886","109.6","20177","Shawnee","{""20177"": ""100""}","Shawnee","20177","FALSE","FALSE","America/Chicago"
-"66611","39.01545","-95.6961","Topeka","KS","Kansas","TRUE","","10278","1166.2","20177","Shawnee","{""20177"": ""100""}","Shawnee","20177","FALSE","FALSE","America/Chicago"
-"66612","39.04051","-95.68039","Topeka","KS","Kansas","TRUE","","2398","899.5","20177","Shawnee","{""20177"": ""100""}","Shawnee","20177","FALSE","FALSE","America/Chicago"
-"66614","39.01154","-95.84948","Topeka","KS","Kansas","TRUE","","31852","428.6","20177","Shawnee","{""20177"": ""99.84"", ""20197"": ""0.16""}","Shawnee|Wabaunsee","20177|20197","FALSE","FALSE","America/Chicago"
-"66615","39.05488","-95.89654","Topeka","KS","Kansas","TRUE","","3534","30.2","20177","Shawnee","{""20177"": ""93.96"", ""20197"": ""6.04""}","Shawnee|Wabaunsee","20177|20197","FALSE","FALSE","America/Chicago"
-"66616","39.06841","-95.62311","Topeka","KS","Kansas","TRUE","","5342","342.6","20177","Shawnee","{""20177"": ""100""}","Shawnee","20177","FALSE","FALSE","America/Chicago"
-"66617","39.13905","-95.62529","Topeka","KS","Kansas","TRUE","","8853","81.5","20177","Shawnee","{""20177"": ""94.98"", ""20087"": ""4.73"", ""20085"": ""0.29""}","Shawnee|Jefferson|Jackson","20177|20087|20085","FALSE","FALSE","America/Chicago"
-"66618","39.14265","-95.7479","Topeka","KS","Kansas","TRUE","","9807","52.4","20177","Shawnee","{""20177"": ""100""}","Shawnee","20177","FALSE","FALSE","America/Chicago"
-"66619","38.94778","-95.68821","Topeka","KS","Kansas","TRUE","","2987","144.9","20177","Shawnee","{""20177"": ""100""}","Shawnee","20177","FALSE","FALSE","America/Chicago"
-"66621","39.03333","-95.70154","Topeka","KS","Kansas","TRUE","","679","1050.1","20177","Shawnee","{""20177"": ""100""}","Shawnee","20177","FALSE","FALSE","America/Chicago"
-"66622","39.02593","-95.72227","Topeka","KS","Kansas","TRUE","","105","385.1","20177","Shawnee","{""20177"": ""100""}","Shawnee","20177","FALSE","FALSE","America/Chicago"
-"66701","37.82353","-94.76156","Fort Scott","KS","Kansas","TRUE","","12274","16.1","20011","Bourbon","{""20011"": ""99.85"", ""20037"": ""0.15""}","Bourbon|Crawford","20011|20037","FALSE","FALSE","America/Chicago"
-"66710","37.55598","-95.63299","Altoona","KS","Kansas","TRUE","","495","2.7","20205","Wilson","{""20205"": ""100""}","Wilson","20205","FALSE","FALSE","America/Chicago"
-"66711","37.6359","-94.6954","Arcadia","KS","Kansas","TRUE","","525","3.9","20037","Crawford","{""20037"": ""97.7"", ""20011"": ""2.3""}","Crawford|Bourbon","20037|20011","FALSE","FALSE","America/Chicago"
-"66712","37.56379","-94.7178","Arma","KS","Kansas","TRUE","","1805","32.0","20037","Crawford","{""20037"": ""100""}","Crawford","20037","FALSE","FALSE","America/Chicago"
-"66713","37.03315","-94.78587","Baxter Springs","KS","Kansas","TRUE","","5572","36.3","20021","Cherokee","{""20021"": ""100""}","Cherokee","20021","FALSE","FALSE","America/Chicago"
-"66714","37.63639","-95.70033","Benedict","KS","Kansas","TRUE","","196","2.8","20205","Wilson","{""20205"": ""100""}","Wilson","20205","FALSE","FALSE","America/Chicago"
-"66716","37.94083","-95.03788","Bronson","KS","Kansas","TRUE","","387","1.7","20011","Bourbon","{""20011"": ""89.07"", ""20001"": ""10.93""}","Bourbon|Allen","20011|20001","FALSE","FALSE","America/Chicago"
-"66717","37.6956","-95.70322","Buffalo","KS","Kansas","TRUE","","563","4.1","20205","Wilson","{""20205"": ""100""}","Wilson","20205","FALSE","FALSE","America/Chicago"
-"66720","37.64837","-95.4598","Chanute","KS","Kansas","TRUE","","11402","24.0","20133","Neosho","{""20133"": ""96.18"", ""20205"": ""2.79"", ""20001"": ""1.04""}","Neosho|Wilson|Allen","20133|20205|20001","FALSE","FALSE","America/Chicago"
-"66724","37.35102","-94.86267","Cherokee","KS","Kansas","TRUE","","1109","11.8","20037","Crawford","{""20037"": ""90.99"", ""20021"": ""9.01""}","Crawford|Cherokee","20037|20021","FALSE","FALSE","America/Chicago"
-"66725","37.16031","-94.89053","Columbus","KS","Kansas","TRUE","","5795","9.5","20021","Cherokee","{""20021"": ""100""}","Cherokee","20021","FALSE","FALSE","America/Chicago"
-"66728","37.17128","-94.70414","Crestline","KS","Kansas","TRUE","","33","9.7","20021","Cherokee","{""20021"": ""100""}","Cherokee","20021","FALSE","FALSE","America/Chicago"
-"66732","37.80029","-95.19279","Elsmore","KS","Kansas","TRUE","","318","2.7","20001","Allen","{""20001"": ""100""}","Allen","20001","FALSE","FALSE","America/Chicago"
-"66733","37.598","-95.25353","Erie","KS","Kansas","TRUE","","2308","6.3","20133","Neosho","{""20133"": ""100""}","Neosho","20133","FALSE","FALSE","America/Chicago"
-"66734","37.61833","-94.82984","Farlington","KS","Kansas","TRUE","","197","2.6","20037","Crawford","{""20037"": ""100""}","Crawford","20037","FALSE","FALSE","America/Chicago"
-"66735","37.52199","-94.7096","Franklin","KS","Kansas","TRUE","","603","61.4","20037","Crawford","{""20037"": ""100""}","Crawford","20037","FALSE","FALSE","America/Chicago"
-"66736","37.54957","-95.86047","Fredonia","KS","Kansas","TRUE","","3769","5.7","20205","Wilson","{""20205"": ""99.14"", ""20049"": ""0.73"", ""20125"": ""0.13""}","Wilson|Elk|Montgomery","20205|20049|20125","FALSE","FALSE","America/Chicago"
-"66738","38.0135","-94.71837","Fulton","KS","Kansas","TRUE","","264","2.7","20011","Bourbon","{""20011"": ""94.41"", ""20107"": ""5.59""}","Bourbon|Linn","20011|20107","FALSE","FALSE","America/Chicago"
-"66739","37.12022","-94.66557","Galena","KS","Kansas","TRUE","","5426","30.4","20021","Cherokee","{""20021"": ""100""}","Cherokee","20021","FALSE","FALSE","America/Chicago"
-"66740","37.47583","-95.36566","Galesburg","KS","Kansas","TRUE","","461","4.0","20133","Neosho","{""20133"": ""100""}","Neosho","20133","FALSE","FALSE","America/Chicago"
-"66741","37.71754","-94.66124","Garland","KS","Kansas","TRUE","","213","4.0","20011","Bourbon","{""20011"": ""100""}","Bourbon","20011","FALSE","FALSE","America/Chicago"
-"66743","37.50758","-94.88816","Girard","KS","Kansas","TRUE","","4205","11.0","20037","Crawford","{""20037"": ""100""}","Crawford","20037","FALSE","FALSE","America/Chicago"
-"66746","37.6683","-94.9595","Hepler","KS","Kansas","TRUE","","239","1.9","20037","Crawford","{""20037"": ""92.34"", ""20011"": ""7.66""}","Crawford|Bourbon","20037|20011","FALSE","FALSE","America/Chicago"
-"66748","37.79776","-95.43937","Humboldt","KS","Kansas","TRUE","","2816","9.5","20001","Allen","{""20001"": ""94.95"", ""20133"": ""2.87"", ""20207"": ""2.18""}","Allen|Neosho|Woodson","20001|20133|20207","FALSE","FALSE","America/Chicago"
-"66749","37.93755","-95.40782","Iola","KS","Kansas","TRUE","","7439","24.6","20001","Allen","{""20001"": ""100""}","Allen","20001","FALSE","FALSE","America/Chicago"
-"66751","37.93768","-95.2867","La Harpe","KS","Kansas","TRUE","","668","5.5","20001","Allen","{""20001"": ""100""}","Allen","20001","FALSE","FALSE","America/Chicago"
-"66753","37.36095","-95.01195","McCune","KS","Kansas","TRUE","","1290","3.7","20037","Crawford","{""20037"": ""77.07"", ""20021"": ""16.9"", ""20099"": ""6.04""}","Crawford|Cherokee|Labette","20037|20021|20099","FALSE","FALSE","America/Chicago"
-"66754","38.00529","-94.88538","Mapleton","KS","Kansas","TRUE","","407","3.4","20011","Bourbon","{""20011"": ""95.12"", ""20107"": ""4.88""}","Bourbon|Linn","20011|20107","FALSE","FALSE","America/Chicago"
-"66755","37.92252","-95.17279","Moran","KS","Kansas","TRUE","","837","2.4","20001","Allen","{""20001"": ""97.28"", ""20011"": ""2.72""}","Allen|Bourbon","20001|20011","FALSE","FALSE","America/Chicago"
-"66756","37.5405","-94.6496","Mulberry","KS","Kansas","TRUE","","1068","20.2","20037","Crawford","{""20037"": ""100""}","Crawford","20037","FALSE","FALSE","America/Chicago"
-"66757","37.41691","-95.6964","Neodesha","KS","Kansas","TRUE","","3140","10.6","20205","Wilson","{""20205"": ""94.35"", ""20125"": ""5.65""}","Wilson|Montgomery","20205|20125","FALSE","FALSE","America/Chicago"
-"66758","38.01363","-95.59374","Neosho Falls","KS","Kansas","TRUE","","224","2.0","20207","Woodson","{""20207"": ""91.2"", ""20003"": ""5.09"", ""20031"": ""3.7""}","Woodson|Anderson|Coffey","20207|20003|20031","FALSE","FALSE","America/Chicago"
-"66760","37.34559","-94.62459","Opolis","KS","Kansas","TRUE","","0","0.0","20037","Crawford","{""20037"": ""100""}","Crawford","20037","FALSE","FALSE","America/Chicago"
-"66761","37.91763","-95.56668","Piqua","KS","Kansas","TRUE","","242","2.2","20207","Woodson","{""20207"": ""100""}","Woodson","20207","FALSE","FALSE","America/Chicago"
-"66762","37.39511","-94.71046","Pittsburg","KS","Kansas","TRUE","","24651","71.0","20037","Crawford","{""20037"": ""98.79"", ""20021"": ""1.21""}","Crawford|Cherokee","20037|20021","FALSE","FALSE","America/Chicago"
-"66763","37.46066","-94.6982","Frontenac","KS","Kansas","TRUE","","3385","204.3","20037","Crawford","{""20037"": ""100""}","Crawford","20037","FALSE","FALSE","America/Chicago"
-"66767","38.07437","-94.70859","Prescott","KS","Kansas","TRUE","","478","4.0","20107","Linn","{""20107"": ""100""}","Linn","20107","FALSE","FALSE","America/Chicago"
-"66769","37.85605","-94.89366","Redfield","KS","Kansas","TRUE","","451","3.3","20011","Bourbon","{""20011"": ""100""}","Bourbon","20011","FALSE","FALSE","America/Chicago"
-"66770","37.081","-94.71755","Riverton","KS","Kansas","TRUE","","929","51.7","20021","Cherokee","{""20021"": ""100""}","Cherokee","20021","FALSE","FALSE","America/Chicago"
-"66771","37.48941","-95.14771","Saint Paul","KS","Kansas","TRUE","","926","5.1","20133","Neosho","{""20133"": ""100""}","Neosho","20133","FALSE","FALSE","America/Chicago"
-"66772","37.75336","-95.21394","Savonburg","KS","Kansas","TRUE","","201","2.3","20001","Allen","{""20001"": ""100""}","Allen","20001","FALSE","FALSE","America/Chicago"
-"66773","37.26685","-94.80891","Scammon","KS","Kansas","TRUE","","753","9.4","20021","Cherokee","{""20021"": ""100""}","Cherokee","20021","FALSE","FALSE","America/Chicago"
-"66775","37.7018","-95.14703","Stark","KS","Kansas","TRUE","","130","1.9","20133","Neosho","{""20133"": ""100""}","Neosho","20133","FALSE","FALSE","America/Chicago"
-"66776","37.46913","-95.4874","Thayer","KS","Kansas","TRUE","","1331","4.7","20133","Neosho","{""20133"": ""81.75"", ""20205"": ""12.11"", ""20099"": ""6.13""}","Neosho|Wilson|Labette","20133|20205|20099","FALSE","FALSE","America/Chicago"
-"66777","37.79782","-95.97048","Toronto","KS","Kansas","TRUE","","533","1.5","20207","Woodson","{""20207"": ""87.01"", ""20073"": ""8.76"", ""20205"": ""4.23""}","Woodson|Greenwood|Wilson","20207|20073|20205","FALSE","FALSE","America/Chicago"
-"66778","37.0005","-94.84085","Treece","KS","Kansas","TRUE","","0","0.0","20021","Cherokee","{""20021"": ""100""}","Cherokee","20021","FALSE","FALSE","America/Chicago"
-"66779","37.83516","-94.98167","Uniontown","KS","Kansas","TRUE","","567","3.0","20011","Bourbon","{""20011"": ""100""}","Bourbon","20011","FALSE","FALSE","America/Chicago"
-"66780","37.61659","-95.05567","Walnut","KS","Kansas","TRUE","","495","1.8","20037","Crawford","{""20037"": ""70.8"", ""20133"": ""20.88"", ""20011"": ""8.32""}","Crawford|Neosho|Bourbon","20037|20133|20011","FALSE","FALSE","America/Chicago"
-"66781","37.29124","-94.72854","Weir","KS","Kansas","TRUE","","935","7.9","20021","Cherokee","{""20021"": ""97.33"", ""20037"": ""2.67""}","Cherokee|Crawford","20021|20037","FALSE","FALSE","America/Chicago"
-"66782","37.28501","-94.92629","West Mineral","KS","Kansas","TRUE","","134","175.0","20021","Cherokee","{""20021"": ""100""}","Cherokee","20021","FALSE","FALSE","America/Chicago"
-"66783","37.87492","-95.73667","Yates Center","KS","Kansas","TRUE","","2200","2.8","20207","Woodson","{""20207"": ""100""}","Woodson","20207","FALSE","FALSE","America/Chicago"
-"66801","38.41305","-96.21801","Emporia","KS","Kansas","TRUE","","28411","37.4","20111","Lyon","{""20111"": ""99.43"", ""20017"": ""0.57""}","Lyon|Chase","20111|20017","FALSE","FALSE","America/Chicago"
-"66830","38.59844","-96.08713","Admire","KS","Kansas","TRUE","","166","2.2","20111","Lyon","{""20111"": ""100""}","Lyon","20111","FALSE","FALSE","America/Chicago"
-"66833","38.67618","-96.18451","Allen","KS","Kansas","TRUE","","460","1.4","20111","Lyon","{""20111"": ""100""}","Lyon","20111","FALSE","FALSE","America/Chicago"
-"66834","38.85763","-96.44153","Alta Vista","KS","Kansas","TRUE","","932","2.3","20197","Wabaunsee","{""20197"": ""75.71"", ""20127"": ""13.92"", ""20061"": ""10.38""}","Wabaunsee|Morris|Geary","20197|20127|20061","FALSE","FALSE","America/Chicago"
-"66835","38.53648","-96.2609","Americus","KS","Kansas","TRUE","","1252","8.0","20111","Lyon","{""20111"": ""100""}","Lyon","20111","FALSE","FALSE","America/Chicago"
-"66838","38.55856","-96.79296","Burdick","KS","Kansas","TRUE","","101","0.8","20127","Morris","{""20127"": ""94.51"", ""20017"": ""5.49""}","Morris|Chase","20127|20017","FALSE","FALSE","America/Chicago"
-"66839","38.21416","-95.75078","Burlington","KS","Kansas","TRUE","","3754","10.3","20031","Coffey","{""20031"": ""100""}","Coffey","20031","FALSE","FALSE","America/Chicago"
-"66840","38.06787","-96.87035","Burns","KS","Kansas","TRUE","","742","1.5","20015","Butler","{""20015"": ""49.42"", ""20115"": ""43.76"", ""20017"": ""6.82""}","Butler|Marion|Chase","20015|20115|20017","FALSE","FALSE","America/Chicago"
-"66842","38.02465","-96.64486","Cassoday","KS","Kansas","TRUE","","456","1.6","20015","Butler","{""20015"": ""100""}","Butler","20015","FALSE","FALSE","America/Chicago"
-"66843","38.22306","-96.73852","Cedar Point","KS","Kansas","TRUE","","149","0.4","20017","Chase","{""20017"": ""100""}","Chase","20017","FALSE","FALSE","America/Chicago"
-"66845","38.29566","-96.50629","Cottonwood Falls","KS","Kansas","TRUE","","1094","2.8","20017","Chase","{""20017"": ""100""}","Chase","20017","FALSE","FALSE","America/Chicago"
-"66846","38.65268","-96.47345","Council Grove","KS","Kansas","TRUE","","3257","4.4","20127","Morris","{""20127"": ""97.32"", ""20111"": ""2.14"", ""20017"": ""0.54""}","Morris|Lyon|Chase","20127|20111|20017","FALSE","FALSE","America/Chicago"
-"66849","38.88197","-96.59298","Dwight","KS","Kansas","TRUE","","465","2.6","20127","Morris","{""20127"": ""83.3"", ""20061"": ""16.7""}","Morris|Geary","20127|20061","FALSE","FALSE","America/Chicago"
-"66850","38.40737","-96.72147","Elmdale","KS","Kansas","TRUE","","237","0.7","20017","Chase","{""20017"": ""100""}","Chase","20017","FALSE","FALSE","America/Chicago"
-"66851","38.22847","-96.9203","Florence","KS","Kansas","TRUE","","483","2.6","20115","Marion","{""20115"": ""100""}","Marion","20115","FALSE","FALSE","America/Chicago"
-"66852","38.0667","-95.89356","Gridley","KS","Kansas","TRUE","","635","1.7","20031","Coffey","{""20031"": ""90.02"", ""20073"": ""5.55"", ""20207"": ""4.44""}","Coffey|Greenwood|Woodson","20031|20073|20207","FALSE","FALSE","America/Chicago"
-"66853","38.00135","-96.22165","Hamilton","KS","Kansas","TRUE","","451","1.3","20073","Greenwood","{""20073"": ""100""}","Greenwood","20073","FALSE","FALSE","America/Chicago"
-"66854","38.25592","-95.97851","Hartford","KS","Kansas","TRUE","","685","2.6","20111","Lyon","{""20111"": ""81.99"", ""20031"": ""18.01""}","Lyon|Coffey","20111|20031","FALSE","FALSE","America/Chicago"
-"66856","38.40244","-95.81675","Lebo","KS","Kansas","TRUE","","1839","5.1","20031","Coffey","{""20031"": ""87.66"", ""20139"": ""12.34""}","Coffey|Osage","20031|20139","FALSE","FALSE","America/Chicago"
-"66857","38.0967","-95.6332","Le Roy","KS","Kansas","TRUE","","964","4.2","20031","Coffey","{""20031"": ""100""}","Coffey","20031","FALSE","FALSE","America/Chicago"
-"66858","38.47998","-96.9324","Lincolnville","KS","Kansas","TRUE","","316","1.6","20115","Marion","{""20115"": ""100""}","Marion","20115","FALSE","FALSE","America/Chicago"
-"66859","38.5547","-96.9623","Lost Springs","KS","Kansas","TRUE","","268","2.9","20115","Marion","{""20115"": ""95.51"", ""20127"": ""4.49""}","Marion|Morris","20115|20127","FALSE","FALSE","America/Chicago"
-"66860","38.12662","-96.16078","Madison","KS","Kansas","TRUE","","1315","2.7","20073","Greenwood","{""20073"": ""89.03"", ""20111"": ""10.97""}","Greenwood|Lyon","20073|20111","FALSE","FALSE","America/Chicago"
-"66861","38.36765","-97.00676","Marion","KS","Kansas","TRUE","","3009","5.6","20115","Marion","{""20115"": ""100""}","Marion","20115","FALSE","FALSE","America/Chicago"
-"66862","38.15555","-96.55431","Matfield Green","KS","Kansas","TRUE","","87","0.4","20017","Chase","{""20017"": ""100""}","Chase","20017","FALSE","FALSE","America/Chicago"
-"66863","37.83292","-96.0818","Neal","KS","Kansas","TRUE","","39","16.8","20073","Greenwood","{""20073"": ""100""}","Greenwood","20073","FALSE","FALSE","America/Chicago"
-"66864","38.35644","-95.98371","Neosho Rapids","KS","Kansas","TRUE","","384","3.6","20111","Lyon","{""20111"": ""90.79"", ""20031"": ""9.21""}","Lyon|Coffey","20111|20031","FALSE","FALSE","America/Chicago"
-"66865","38.21778","-96.28688","Olpe","KS","Kansas","TRUE","","1222","3.1","20111","Lyon","{""20111"": ""98.58"", ""20017"": ""1.42""}","Lyon|Chase","20111|20017","FALSE","FALSE","America/Chicago"
-"66866","38.17281","-97.10714","Peabody","KS","Kansas","TRUE","","1683","4.6","20115","Marion","{""20115"": ""94.41"", ""20079"": ""5.59""}","Marion|Harvey","20115|20079","FALSE","FALSE","America/Chicago"
-"66868","38.54428","-95.98557","Reading","KS","Kansas","TRUE","","891","2.7","20111","Lyon","{""20111"": ""93.59"", ""20139"": ""5.63"", ""20031"": ""0.79""}","Lyon|Osage|Coffey","20111|20139|20031","FALSE","FALSE","America/Chicago"
-"66869","38.45772","-96.52745","Strong City","KS","Kansas","TRUE","","739","2.4","20017","Chase","{""20017"": ""100""}","Chase","20017","FALSE","FALSE","America/Chicago"
-"66870","37.9447","-96.01698","Virgil","KS","Kansas","TRUE","","139","0.7","20073","Greenwood","{""20073"": ""100""}","Greenwood","20073","FALSE","FALSE","America/Chicago"
-"66871","38.36051","-95.61706","Waverly","KS","Kansas","TRUE","","1268","3.6","20031","Coffey","{""20031"": ""97.55"", ""20139"": ""2.45""}","Coffey|Osage","20031|20139","FALSE","FALSE","America/Chicago"
-"66872","38.79575","-96.76544","White City","KS","Kansas","TRUE","","974","2.6","20127","Morris","{""20127"": ""98.41"", ""20061"": ""1.59""}","Morris|Geary","20127|20061","FALSE","FALSE","America/Chicago"
-"66873","38.61561","-96.67447","Wilsey","KS","Kansas","TRUE","","265","1.2","20127","Morris","{""20127"": ""100""}","Morris","20127","FALSE","FALSE","America/Chicago"
-"66901","39.55446","-97.6458","Concordia","KS","Kansas","TRUE","","6061","9.5","20029","Cloud","{""20029"": ""98.53"", ""20157"": ""1.47""}","Cloud|Republic","20029|20157","FALSE","FALSE","America/Chicago"
-"66930","39.70368","-97.48045","Agenda","KS","Kansas","TRUE","","248","1.3","20157","Republic","{""20157"": ""100""}","Republic","20157","FALSE","FALSE","America/Chicago"
-"66932","39.77805","-98.92957","Athol","KS","Kansas","TRUE","","96","0.5","20183","Smith","{""20183"": ""100""}","Smith","20183","FALSE","FALSE","America/Chicago"
-"66933","39.67382","-96.8666","Barnes","KS","Kansas","TRUE","","281","1.3","20201","Washington","{""20201"": ""95.64"", ""20161"": ""4.36""}","Washington|Riley","20201|20161","FALSE","FALSE","America/Chicago"
-"66935","39.8408","-97.63122","Belleville","KS","Kansas","TRUE","","2338","6.1","20157","Republic","{""20157"": ""100""}","Republic","20157","FALSE","FALSE","America/Chicago"
-"66936","39.91883","-98.30664","Burr Oak","KS","Kansas","TRUE","","365","1.0","20089","Jewell","{""20089"": ""100""}","Jewell","20089","FALSE","FALSE","America/Chicago"
-"66937","39.58904","-97.27268","Clifton","KS","Kansas","TRUE","","966","2.5","20201","Washington","{""20201"": ""56.89"", ""20027"": ""43.11""}","Washington|Clay","20201|20027","FALSE","FALSE","America/Chicago"
-"66938","39.57489","-97.40989","Clyde","KS","Kansas","TRUE","","1173","4.2","20029","Cloud","{""20029"": ""94.13"", ""20201"": ""5.87""}","Cloud|Washington","20029|20201","FALSE","FALSE","America/Chicago"
-"66939","39.85116","-97.89901","Courtland","KS","Kansas","TRUE","","548","1.9","20157","Republic","{""20157"": ""94.79"", ""20089"": ""5.21""}","Republic|Jewell","20157|20089","FALSE","FALSE","America/Chicago"
-"66940","39.80433","-97.44934","Cuba","KS","Kansas","TRUE","","335","1.9","20157","Republic","{""20157"": ""100""}","Republic","20157","FALSE","FALSE","America/Chicago"
-"66941","39.83466","-98.44781","Esbon","KS","Kansas","TRUE","","118","0.4","20089","Jewell","{""20089"": ""100""}","Jewell","20089","FALSE","FALSE","America/Chicago"
-"66942","39.79901","-98.00725","Formoso","KS","Kansas","TRUE","","306","1.2","20089","Jewell","{""20089"": ""100""}","Jewell","20089","FALSE","FALSE","America/Chicago"
-"66943","39.67216","-96.97156","Greenleaf","KS","Kansas","TRUE","","581","2.4","20201","Washington","{""20201"": ""100""}","Washington","20201","FALSE","FALSE","America/Chicago"
-"66944","39.84333","-97.29999","Haddam","KS","Kansas","TRUE","","169","0.7","20201","Washington","{""20201"": ""100""}","Washington","20201","FALSE","FALSE","America/Chicago"
-"66945","39.88637","-96.8803","Hanover","KS","Kansas","TRUE","","1057","3.9","20201","Washington","{""20201"": ""100""}","Washington","20201","FALSE","FALSE","America/Chicago"
-"66946","39.96671","-97.00688","Hollenberg","KS","Kansas","TRUE","","98","0.7","20201","Washington","{""20201"": ""100""}","Washington","20201","FALSE","FALSE","America/Chicago"
-"66948","39.59746","-97.85281","Jamestown","KS","Kansas","TRUE","","436","1.5","20029","Cloud","{""20029"": ""89.07"", ""20157"": ""10.93""}","Cloud|Republic","20029|20157","FALSE","FALSE","America/Chicago"
-"66949","39.64736","-98.18758","Jewell","KS","Kansas","TRUE","","609","2.0","20089","Jewell","{""20089"": ""100""}","Jewell","20089","FALSE","FALSE","America/Chicago"
-"66951","39.85326","-99.02508","Kensington","KS","Kansas","TRUE","","711","1.7","20183","Smith","{""20183"": ""88.61"", ""20147"": ""11.39""}","Smith|Phillips","20183|20147","FALSE","FALSE","America/Chicago"
-"66952","39.84109","-98.60013","Lebanon","KS","Kansas","TRUE","","438","0.7","20183","Smith","{""20183"": ""98.8"", ""20089"": ""1.2""}","Smith|Jewell","20183|20089","FALSE","FALSE","America/Chicago"
-"66953","39.6827","-97.12269","Linn","KS","Kansas","TRUE","","589","3.0","20201","Washington","{""20201"": ""100""}","Washington","20201","FALSE","FALSE","America/Chicago"
-"66955","39.9651","-97.29377","Mahaska","KS","Kansas","TRUE","","71","0.7","20201","Washington","{""20201"": ""100""}","Washington","20201","FALSE","FALSE","America/Chicago"
-"66956","39.79256","-98.22586","Mankato","KS","Kansas","TRUE","","1083","2.1","20089","Jewell","{""20089"": ""100""}","Jewell","20089","FALSE","FALSE","America/Chicago"
-"66958","39.88911","-97.18145","Morrowville","KS","Kansas","TRUE","","224","1.1","20201","Washington","{""20201"": ""100""}","Washington","20201","FALSE","FALSE","America/Chicago"
-"66959","39.92799","-97.53732","Munden","KS","Kansas","TRUE","","178","1.3","20157","Republic","{""20157"": ""100""}","Republic","20157","FALSE","FALSE","America/Chicago"
-"66960","39.93681","-97.42648","Narka","KS","Kansas","TRUE","","124","0.8","20157","Republic","{""20157"": ""100""}","Republic","20157","FALSE","FALSE","America/Chicago"
-"66962","39.5966","-97.12013","Palmer","KS","Kansas","TRUE","","264","2.0","20201","Washington","{""20201"": ""94.32"", ""20027"": ""5.68""}","Washington|Clay","20201|20027","FALSE","FALSE","America/Chicago"
-"66963","39.63765","-98.0043","Randall","KS","Kansas","TRUE","","182","0.9","20089","Jewell","{""20089"": ""100""}","Jewell","20089","FALSE","FALSE","America/Chicago"
-"66964","39.94197","-97.80719","Republic","KS","Kansas","TRUE","","109","0.7","20157","Republic","{""20157"": ""100""}","Republic","20157","FALSE","FALSE","America/Chicago"
-"66966","39.77505","-97.76346","Scandia","KS","Kansas","TRUE","","662","2.5","20157","Republic","{""20157"": ""100""}","Republic","20157","FALSE","FALSE","America/Chicago"
-"66967","39.82406","-98.7927","Smith Center","KS","Kansas","TRUE","","1991","3.1","20183","Smith","{""20183"": ""100""}","Smith","20183","FALSE","FALSE","America/Chicago"
-"66968","39.82742","-97.06588","Washington","KS","Kansas","TRUE","","1443","4.4","20201","Washington","{""20201"": ""100""}","Washington","20201","FALSE","FALSE","America/Chicago"
-"66970","39.93914","-98.0362","Webber","KS","Kansas","TRUE","","100","1.2","20089","Jewell","{""20089"": ""100""}","Jewell","20089","FALSE","FALSE","America/Chicago"
-"67001","37.75974","-97.62979","Andale","KS","Kansas","TRUE","","1603","26.1","20173","Sedgwick","{""20173"": ""100""}","Sedgwick","20173","FALSE","FALSE","America/Chicago"
-"67002","37.69502","-97.10766","Andover","KS","Kansas","TRUE","","14711","154.0","20015","Butler","{""20015"": ""100""}","Butler","20015","FALSE","FALSE","America/Chicago"
-"67003","37.10384","-98.07254","Anthony","KS","Kansas","TRUE","","2465","3.8","20077","Harper","{""20077"": ""100""}","Harper","20077","FALSE","FALSE","America/Chicago"
-"67004","37.28137","-97.75405","Argonia","KS","Kansas","TRUE","","714","2.7","20191","Sumner","{""20191"": ""92.99"", ""20077"": ""7.01""}","Sumner|Harper","20191|20077","FALSE","FALSE","America/Chicago"
-"67005","37.0651","-96.99179","Arkansas City","KS","Kansas","TRUE","","15537","38.8","20035","Cowley","{""20035"": ""100""}","Cowley","20035","FALSE","FALSE","America/Chicago"
-"67008","37.47776","-96.78489","Atlanta","KS","Kansas","TRUE","","653","2.0","20035","Cowley","{""20035"": ""78.96"", ""20015"": ""21.04""}","Cowley|Butler","20035|20015","FALSE","FALSE","America/Chicago"
-"67009","37.21929","-98.26673","Attica","KS","Kansas","TRUE","","916","2.7","20077","Harper","{""20077"": ""100""}","Harper","20077","FALSE","FALSE","America/Chicago"
-"67010","37.66246","-96.97278","Augusta","KS","Kansas","TRUE","","13891","51.2","20015","Butler","{""20015"": ""100""}","Butler","20015","FALSE","FALSE","America/Chicago"
-"67012","37.67653","-96.54984","Beaumont","KS","Kansas","TRUE","","18","0.7","20015","Butler","{""20015"": ""100""}","Butler","20015","FALSE","FALSE","America/Chicago"
-"67013","37.37785","-97.27503","Belle Plaine","KS","Kansas","TRUE","","2782","13.7","20191","Sumner","{""20191"": ""100""}","Sumner","20191","FALSE","FALSE","America/Chicago"
-"67016","37.88676","-97.51478","Bentley","KS","Kansas","TRUE","","487","626.2","20173","Sedgwick","{""20173"": ""100""}","Sedgwick","20173","FALSE","FALSE","America/Chicago"
-"67017","37.8263","-97.11165","Benton","KS","Kansas","TRUE","","2383","14.2","20015","Butler","{""20015"": ""91.94"", ""20173"": ""8.06""}","Butler|Sedgwick","20015|20173","FALSE","FALSE","America/Chicago"
-"67018","37.06949","-97.85843","Bluff City","KS","Kansas","TRUE","","157","0.9","20077","Harper","{""20077"": ""96.64"", ""20191"": ""3.36""}","Harper|Sumner","20077|20191","FALSE","FALSE","America/Chicago"
-"67019","37.30588","-96.77665","Burden","KS","Kansas","TRUE","","1056","4.0","20035","Cowley","{""20035"": ""100""}","Cowley","20035","FALSE","FALSE","America/Chicago"
-"67020","38.00553","-97.66875","Burrton","KS","Kansas","TRUE","","1601","4.9","20079","Harvey","{""20079"": ""77.92"", ""20155"": ""18.77"", ""20173"": ""3.32""}","Harvey|Reno|Sedgwick","20079|20155|20173","FALSE","FALSE","America/Chicago"
-"67021","37.7785","-98.91531","Byers","KS","Kansas","TRUE","","26","0.3","20151","Pratt","{""20151"": ""100""}","Pratt","20151","FALSE","FALSE","America/Chicago"
-"67022","37.07835","-97.63522","Caldwell","KS","Kansas","TRUE","","1498","3.0","20191","Sumner","{""20191"": ""100""}","Sumner","20191","FALSE","FALSE","America/Chicago"
-"67023","37.3349","-96.61424","Cambridge","KS","Kansas","TRUE","","274","0.7","20035","Cowley","{""20035"": ""100""}","Cowley","20035","FALSE","FALSE","America/Chicago"
-"67024","37.11328","-96.48699","Cedar Vale","KS","Kansas","TRUE","","963","1.7","20019","Chautauqua","{""20019"": ""93.17"", ""20035"": ""6.83""}","Chautauqua|Cowley","20019|20035","FALSE","FALSE","America/Chicago"
-"67025","37.64132","-97.78659","Cheney","KS","Kansas","TRUE","","3822","12.9","20173","Sedgwick","{""20173"": ""81.67"", ""20095"": ""16.19"", ""20155"": ""2.14""}","Sedgwick|Kingman|Reno","20173|20095|20155","FALSE","FALSE","America/Chicago"
-"67026","37.51121","-97.49331","Clearwater","KS","Kansas","TRUE","","4703","18.5","20173","Sedgwick","{""20173"": ""96.49"", ""20191"": ""3.51""}","Sedgwick|Sumner","20173|20191","FALSE","FALSE","America/Chicago"
-"67028","37.45983","-98.93647","Coats","KS","Kansas","TRUE","","294","0.6","20151","Pratt","{""20151"": ""63.56"", ""20007"": ""25.78"", ""20097"": ""10.67""}","Pratt|Barber|Kiowa","20151|20007|20097","FALSE","FALSE","America/Chicago"
-"67029","37.17086","-99.27483","Coldwater","KS","Kansas","TRUE","","1019","1.0","20033","Comanche","{""20033"": ""99.62"", ""20097"": ""0.38""}","Comanche|Kiowa","20033|20097","FALSE","FALSE","America/Chicago"
-"67030","37.78539","-97.54744","Colwich","KS","Kansas","TRUE","","2658","25.3","20173","Sedgwick","{""20173"": ""100""}","Sedgwick","20173","FALSE","FALSE","America/Chicago"
-"67031","37.40166","-97.64047","Conway Springs","KS","Kansas","TRUE","","2650","9.2","20191","Sumner","{""20191"": ""99.44"", ""20173"": ""0.56""}","Sumner|Sedgwick","20191|20173","FALSE","FALSE","America/Chicago"
-"67035","37.64861","-98.39197","Cunningham","KS","Kansas","TRUE","","881","1.5","20095","Kingman","{""20095"": ""85.88"", ""20151"": ""10.21"", ""20155"": ""3.92""}","Kingman|Pratt|Reno","20095|20151|20155","FALSE","FALSE","America/Chicago"
-"67036","37.29757","-97.87666","Danville","KS","Kansas","TRUE","","56","0.6","20077","Harper","{""20077"": ""100""}","Harper","20077","FALSE","FALSE","America/Chicago"
-"67037","37.56442","-97.21987","Derby","KS","Kansas","TRUE","","28348","194.9","20173","Sedgwick","{""20173"": ""100""}","Sedgwick","20173","FALSE","FALSE","America/Chicago"
-"67038","37.10518","-96.71875","Dexter","KS","Kansas","TRUE","","861","1.9","20035","Cowley","{""20035"": ""100""}","Cowley","20035","FALSE","FALSE","America/Chicago"
-"67039","37.52326","-96.97668","Douglass","KS","Kansas","TRUE","","3247","11.9","20015","Butler","{""20015"": ""98.35"", ""20035"": ""1.65""}","Butler|Cowley","20015|20035","FALSE","FALSE","America/Chicago"
-"67041","38.05399","-97.12999","Elbing","KS","Kansas","TRUE","","335","441.8","20015","Butler","{""20015"": ""100""}","Butler","20015","FALSE","FALSE","America/Chicago"
-"67042","37.84881","-96.7987","El Dorado","KS","Kansas","TRUE","","17798","26.8","20015","Butler","{""20015"": ""100""}","Butler","20015","FALSE","FALSE","America/Chicago"
-"67045","37.86081","-96.34466","Eureka","KS","Kansas","TRUE","","3152","2.8","20073","Greenwood","{""20073"": ""100""}","Greenwood","20073","FALSE","FALSE","America/Chicago"
-"67047","37.62477","-96.04727","Fall River","KS","Kansas","TRUE","","707","1.7","20073","Greenwood","{""20073"": ""59.23"", ""20205"": ""29"", ""20049"": ""11.76""}","Greenwood|Wilson|Elk","20073|20205|20049","FALSE","FALSE","America/Chicago"
-"67049","37.17744","-97.84637","Freeport","KS","Kansas","TRUE","","137","1.2","20077","Harper","{""20077"": ""93.67"", ""20191"": ""6.33""}","Harper|Sumner","20077|20191","FALSE","FALSE","America/Chicago"
-"67050","37.67384","-97.67834","Garden Plain","KS","Kansas","TRUE","","2125","18.2","20173","Sedgwick","{""20173"": ""100""}","Sedgwick","20173","FALSE","FALSE","America/Chicago"
-"67051","37.08663","-97.19388","Geuda Springs","KS","Kansas","TRUE","","410","2.2","20191","Sumner","{""20191"": ""90.57"", ""20035"": ""9.43""}","Sumner|Cowley","20191|20035","FALSE","FALSE","America/Chicago"
-"67052","37.6582","-97.57571","Goddard","KS","Kansas","TRUE","","9124","68.0","20173","Sedgwick","{""20173"": ""100""}","Sedgwick","20173","FALSE","FALSE","America/Chicago"
-"67053","38.24685","-97.34623","Goessel","KS","Kansas","TRUE","","639","749.4","20115","Marion","{""20115"": ""100""}","Marion","20115","FALSE","FALSE","America/Chicago"
-"67054","37.57556","-99.31558","Greensburg","KS","Kansas","TRUE","","1242","2.1","20097","Kiowa","{""20097"": ""100""}","Kiowa","20097","FALSE","FALSE","America/Chicago"
-"67055","37.78959","-97.19969","Greenwich","KS","Kansas","TRUE","","72","32.9","20173","Sedgwick","{""20173"": ""100""}","Sedgwick","20173","FALSE","FALSE","America/Chicago"
-"67056","38.022","-97.52539","Halstead","KS","Kansas","TRUE","","3292","15.7","20079","Harvey","{""20079"": ""100""}","Harvey","20079","FALSE","FALSE","America/Chicago"
-"67057","37.06475","-98.77815","Hardtner","KS","Kansas","TRUE","","262","0.6","20007","Barber","{""20007"": ""100""}","Barber","20007","FALSE","FALSE","America/Chicago"
-"67058","37.31382","-98.05662","Harper","KS","Kansas","TRUE","","1807","3.2","20077","Harper","{""20077"": ""98.14"", ""20095"": ""1.86""}","Harper|Kingman","20077|20095","FALSE","FALSE","America/Chicago"
-"67059","37.63034","-99.09261","Haviland","KS","Kansas","TRUE","","971","1.3","20097","Kiowa","{""20097"": ""88.77"", ""20047"": ""8.25"", ""20151"": ""2.98""}","Kiowa|Edwards|Pratt","20097|20047|20151","FALSE","FALSE","America/Chicago"
-"67060","37.54617","-97.35955","Haysville","KS","Kansas","TRUE","","14035","202.6","20173","Sedgwick","{""20173"": ""100""}","Sedgwick","20173","FALSE","FALSE","America/Chicago"
-"67061","37.09139","-98.37254","Hazelton","KS","Kansas","TRUE","","143","0.5","20007","Barber","{""20007"": ""82.46"", ""20077"": ""17.54""}","Barber|Harper","20007|20077","FALSE","FALSE","America/Chicago"
-"67062","38.14519","-97.43709","Hesston","KS","Kansas","TRUE","","4479","60.1","20079","Harvey","{""20079"": ""99.49"", ""20113"": ""0.51""}","Harvey|McPherson","20079|20113","FALSE","FALSE","America/Chicago"
-"67063","38.34424","-97.22651","Hillsboro","KS","Kansas","TRUE","","3579","10.3","20115","Marion","{""20115"": ""100""}","Marion","20115","FALSE","FALSE","America/Chicago"
-"67065","37.4685","-98.52693","Isabel","KS","Kansas","TRUE","","286","1.4","20007","Barber","{""20007"": ""67.11"", ""20151"": ""32.89""}","Barber|Pratt","20007|20151","FALSE","FALSE","America/Chicago"
-"67066","37.76724","-98.76112","Iuka","KS","Kansas","TRUE","","344","2.5","20151","Pratt","{""20151"": ""100""}","Pratt","20151","FALSE","FALSE","America/Chicago"
-"67067","37.79345","-97.27366","Kechi","KS","Kansas","TRUE","","1757","149.5","20173","Sedgwick","{""20173"": ""100""}","Sedgwick","20173","FALSE","FALSE","America/Chicago"
-"67068","37.61658","-98.10825","Kingman","KS","Kansas","TRUE","","4000","5.4","20095","Kingman","{""20095"": ""98.78"", ""20155"": ""1.22""}","Kingman|Reno","20095|20155","FALSE","FALSE","America/Chicago"
-"67070","37.07357","-98.53023","Kiowa","KS","Kansas","TRUE","","1002","3.5","20007","Barber","{""20007"": ""100""}","Barber","20007","FALSE","FALSE","America/Chicago"
-"67071","37.24551","-98.88136","Lake City","KS","Kansas","TRUE","","347","0.6","20007","Barber","{""20007"": ""100""}","Barber","20007","FALSE","FALSE","America/Chicago"
-"67072","37.54523","-96.61056","Latham","KS","Kansas","TRUE","","220","0.7","20015","Butler","{""20015"": ""93.44"", ""20035"": ""6.56""}","Butler|Cowley","20015|20035","FALSE","FALSE","America/Chicago"
-"67073","38.38424","-97.32946","Lehigh","KS","Kansas","TRUE","","442","5.7","20115","Marion","{""20115"": ""100""}","Marion","20115","FALSE","FALSE","America/Chicago"
-"67074","37.67221","-96.72095","Leon","KS","Kansas","TRUE","","1429","3.1","20015","Butler","{""20015"": ""100""}","Butler","20015","FALSE","FALSE","America/Chicago"
-"67101","37.78502","-97.46344","Maize","KS","Kansas","TRUE","","4906","126.3","20173","Sedgwick","{""20173"": ""100""}","Sedgwick","20173","FALSE","FALSE","America/Chicago"
-"67103","37.2663","-97.56059","Mayfield","KS","Kansas","TRUE","","206","1.5","20191","Sumner","{""20191"": ""100""}","Sumner","20191","FALSE","FALSE","America/Chicago"
-"67104","37.27084","-98.65221","Medicine Lodge","KS","Kansas","TRUE","","2136","2.8","20007","Barber","{""20007"": ""100""}","Barber","20007","FALSE","FALSE","America/Chicago"
-"67105","37.23336","-97.67581","Milan","KS","Kansas","TRUE","","145","1.1","20191","Sumner","{""20191"": ""100""}","Sumner","20191","FALSE","FALSE","America/Chicago"
-"67106","37.46711","-97.75732","Milton","KS","Kansas","TRUE","","316","2.4","20191","Sumner","{""20191"": ""84.54"", ""20173"": ""15.46""}","Sumner|Sedgwick","20191|20173","FALSE","FALSE","America/Chicago"
-"67107","38.1955","-97.53977","Moundridge","KS","Kansas","TRUE","","3109","10.5","20113","McPherson","{""20113"": ""89.93"", ""20079"": ""10.07""}","McPherson|Harvey","20113|20079","FALSE","FALSE","America/Chicago"
-"67108","37.81399","-97.68202","Mount Hope","KS","Kansas","TRUE","","1615","9.1","20173","Sedgwick","{""20173"": ""72.29"", ""20155"": ""27.71""}","Sedgwick|Reno","20173|20155","FALSE","FALSE","America/Chicago"
-"67109","37.56373","-99.4826","Mullinville","KS","Kansas","TRUE","","342","0.7","20097","Kiowa","{""20097"": ""100""}","Kiowa","20097","FALSE","FALSE","America/Chicago"
-"67110","37.46849","-97.22605","Mulvane","KS","Kansas","TRUE","","8970","65.7","20173","Sedgwick","{""20173"": ""71.16"", ""20191"": ""28.29"", ""20035"": ""0.55""}","Sedgwick|Sumner|Cowley","20173|20191|20035","FALSE","FALSE","America/Chicago"
-"67111","37.6148","-97.93379","Murdock","KS","Kansas","TRUE","","209","1.4","20095","Kingman","{""20095"": ""100""}","Kingman","20095","FALSE","FALSE","America/Chicago"
-"67112","37.46609","-98.41312","Nashville","KS","Kansas","TRUE","","240","1.5","20095","Kingman","{""20095"": ""100""}","Kingman","20095","FALSE","FALSE","America/Chicago"
-"67114","38.07349","-97.28875","Newton","KS","Kansas","TRUE","","21135","34.4","20079","Harvey","{""20079"": ""96.91"", ""20115"": ""2.05"", ""20015"": ""0.89"", ""20113"": ""0.15""}","Harvey|Marion|Butler|McPherson","20079|20115|20015|20113","FALSE","FALSE","America/Chicago"
-"67117","38.07424","-97.34734","North Newton","KS","Kansas","TRUE","","1778","676.9","20079","Harvey","{""20079"": ""100""}","Harvey","20079","FALSE","FALSE","America/Chicago"
-"67118","37.47648","-97.8552","Norwich","KS","Kansas","TRUE","","761","3.7","20095","Kingman","{""20095"": ""95.43"", ""20173"": ""2.47"", ""20191"": ""2.1""}","Kingman|Sedgwick|Sumner","20095|20173|20191","FALSE","FALSE","America/Chicago"
-"67119","37.23761","-97.18683","Oxford","KS","Kansas","TRUE","","1412","6.8","20191","Sumner","{""20191"": ""91.42"", ""20035"": ""8.58""}","Sumner|Cowley","20191|20035","FALSE","FALSE","America/Chicago"
-"67120","37.46413","-97.37749","Peck","KS","Kansas","TRUE","","885","8.4","20191","Sumner","{""20191"": ""59.72"", ""20173"": ""40.28""}","Sumner|Sedgwick","20191|20173","FALSE","FALSE","America/Chicago"
-"67122","37.62809","-96.42804","Piedmont","KS","Kansas","TRUE","","175","0.6","20073","Greenwood","{""20073"": ""71.95"", ""20049"": ""28.05""}","Greenwood|Elk","20073|20049","FALSE","FALSE","America/Chicago"
-"67123","37.94477","-96.99326","Potwin","KS","Kansas","TRUE","","589","4.4","20015","Butler","{""20015"": ""100""}","Butler","20015","FALSE","FALSE","America/Chicago"
-"67124","37.63357","-98.77254","Pratt","KS","Kansas","TRUE","","7894","11.1","20151","Pratt","{""20151"": ""100""}","Pratt","20151","FALSE","FALSE","America/Chicago"
-"67127","37.16743","-99.4884","Protection","KS","Kansas","TRUE","","538","1.1","20033","Comanche","{""20033"": ""97.15"", ""20025"": ""2.85""}","Comanche|Clark","20033|20025","FALSE","FALSE","America/Chicago"
-"67131","37.43043","-96.95302","Rock","KS","Kansas","TRUE","","349","3.8","20035","Cowley","{""20035"": ""100""}","Cowley","20035","FALSE","FALSE","America/Chicago"
-"67132","37.85389","-96.58476","Rosalia","KS","Kansas","TRUE","","425","1.9","20015","Butler","{""20015"": ""100""}","Butler","20015","FALSE","FALSE","America/Chicago"
-"67133","37.57647","-97.10355","Rose Hill","KS","Kansas","TRUE","","6482","59.3","20015","Butler","{""20015"": ""100""}","Butler","20015","FALSE","FALSE","America/Chicago"
-"67134","37.48606","-98.68293","Sawyer","KS","Kansas","TRUE","","561","2.6","20151","Pratt","{""20151"": ""89.52"", ""20007"": ""10.48""}","Pratt|Barber","20151|20007","FALSE","FALSE","America/Chicago"
-"67135","37.91728","-97.45832","Sedgwick","KS","Kansas","TRUE","","3298","12.3","20079","Harvey","{""20079"": ""60.12"", ""20173"": ""39.88""}","Harvey|Sedgwick","20079|20173","FALSE","FALSE","America/Chicago"
-"67137","37.63344","-96.22274","Severy","KS","Kansas","TRUE","","490","2.1","20073","Greenwood","{""20073"": ""92.11"", ""20049"": ""7.89""}","Greenwood|Elk","20073|20049","FALSE","FALSE","America/Chicago"
-"67138","37.27319","-98.42033","Sharon","KS","Kansas","TRUE","","342","1.3","20007","Barber","{""20007"": ""100""}","Barber","20007","FALSE","FALSE","America/Chicago"
-"67140","37.07934","-97.35645","South Haven","KS","Kansas","TRUE","","907","2.6","20191","Sumner","{""20191"": ""100""}","Sumner","20191","FALSE","FALSE","America/Chicago"
-"67142","37.45694","-98.11747","Spivey","KS","Kansas","TRUE","","321","1.0","20095","Kingman","{""20095"": ""100""}","Kingman","20095","FALSE","FALSE","America/Chicago"
-"67143","37.34987","-98.94877","Sun City","KS","Kansas","TRUE","","40","0.4","20007","Barber","{""20007"": ""100""}","Barber","20007","FALSE","FALSE","America/Chicago"
-"67144","37.81608","-97.00734","Towanda","KS","Kansas","TRUE","","2614","22.4","20015","Butler","{""20015"": ""100""}","Butler","20015","FALSE","FALSE","America/Chicago"
-"67146","37.3894","-97.10311","Udall","KS","Kansas","TRUE","","2030","9.9","20035","Cowley","{""20035"": ""92.3"", ""20191"": ""7.7""}","Cowley|Sumner","20035|20191","FALSE","FALSE","America/Chicago"
-"67147","37.85968","-97.30863","Valley Center","KS","Kansas","TRUE","","10736","39.4","20173","Sedgwick","{""20173"": ""99.17"", ""20079"": ""0.83""}","Sedgwick|Harvey","20173|20079","FALSE","FALSE","America/Chicago"
-"67149","37.53821","-97.62587","Viola","KS","Kansas","TRUE","","1092","7.6","20173","Sedgwick","{""20173"": ""100""}","Sedgwick","20173","FALSE","FALSE","America/Chicago"
-"67150","37.01191","-98.21789","Waldron","KS","Kansas","TRUE","","59","5.6","20077","Harper","{""20077"": ""100""}","Harper","20077","FALSE","FALSE","America/Chicago"
-"67151","38.14187","-97.24906","Walton","KS","Kansas","TRUE","","600","7.6","20079","Harvey","{""20079"": ""95.41"", ""20115"": ""4.59""}","Harvey|Marion","20079|20115","FALSE","FALSE","America/Chicago"
-"67152","37.26012","-97.41442","Wellington","KS","Kansas","TRUE","","9209","15.5","20191","Sumner","{""20191"": ""100""}","Sumner","20191","FALSE","FALSE","America/Chicago"
-"67154","37.97276","-97.12332","Whitewater","KS","Kansas","TRUE","","1997","9.8","20015","Butler","{""20015"": ""85.1"", ""20079"": ""14.9""}","Butler|Harvey","20015|20079","FALSE","FALSE","America/Chicago"
-"67155","37.27844","-99.13193","Wilmore","KS","Kansas","TRUE","","194","0.3","20033","Comanche","{""20033"": ""90.96"", ""20097"": ""9.04""}","Comanche|Kiowa","20033|20097","FALSE","FALSE","America/Chicago"
-"67156","37.25321","-96.96383","Winfield","KS","Kansas","TRUE","","14663","22.5","20035","Cowley","{""20035"": ""100""}","Cowley","20035","FALSE","FALSE","America/Chicago"
-"67159","37.41512","-98.30722","Zenda","KS","Kansas","TRUE","","99","0.5","20095","Kingman","{""20095"": ""82.84"", ""20077"": ""17.16""}","Kingman|Harper","20095|20077","FALSE","FALSE","America/Chicago"
-"67202","37.68676","-97.33527","Wichita","KS","Kansas","TRUE","","1751","683.7","20173","Sedgwick","{""20173"": ""100""}","Sedgwick","20173","FALSE","FALSE","America/Chicago"
-"67203","37.70408","-97.36496","Wichita","KS","Kansas","TRUE","","29710","1616.8","20173","Sedgwick","{""20173"": ""100""}","Sedgwick","20173","FALSE","FALSE","America/Chicago"
-"67204","37.77246","-97.36352","Wichita","KS","Kansas","TRUE","","22291","534.2","20173","Sedgwick","{""20173"": ""100""}","Sedgwick","20173","FALSE","FALSE","America/Chicago"
-"67205","37.74992","-97.42257","Wichita","KS","Kansas","TRUE","","20035","450.4","20173","Sedgwick","{""20173"": ""100""}","Sedgwick","20173","FALSE","FALSE","America/Chicago"
-"67206","37.70383","-97.22531","Wichita","KS","Kansas","TRUE","","16202","609.4","20173","Sedgwick","{""20173"": ""100""}","Sedgwick","20173","FALSE","FALSE","America/Chicago"
-"67207","37.66641","-97.22768","Wichita","KS","Kansas","TRUE","","28473","1092.6","20173","Sedgwick","{""20173"": ""100""}","Sedgwick","20173","FALSE","FALSE","America/Chicago"
-"67208","37.70447","-97.27924","Wichita","KS","Kansas","TRUE","","17418","1351.8","20173","Sedgwick","{""20173"": ""100""}","Sedgwick","20173","FALSE","FALSE","America/Chicago"
-"67209","37.66276","-97.43544","Wichita","KS","Kansas","TRUE","","13783","427.0","20173","Sedgwick","{""20173"": ""100""}","Sedgwick","20173","FALSE","FALSE","America/Chicago"
-"67210","37.63132","-97.24718","Wichita","KS","Kansas","TRUE","","9607","273.8","20173","Sedgwick","{""20173"": ""100""}","Sedgwick","20173","FALSE","FALSE","America/Chicago"
-"67211","37.66684","-97.31741","Wichita","KS","Kansas","TRUE","","19206","1443.6","20173","Sedgwick","{""20173"": ""100""}","Sedgwick","20173","FALSE","FALSE","America/Chicago"
-"67212","37.70198","-97.43641","Wichita","KS","Kansas","TRUE","","44231","1345.9","20173","Sedgwick","{""20173"": ""100""}","Sedgwick","20173","FALSE","FALSE","America/Chicago"
-"67213","37.66726","-97.36497","Wichita","KS","Kansas","TRUE","","22344","1330.9","20173","Sedgwick","{""20173"": ""100""}","Sedgwick","20173","FALSE","FALSE","America/Chicago"
-"67214","37.70719","-97.31785","Wichita","KS","Kansas","TRUE","","14949","1053.5","20173","Sedgwick","{""20173"": ""100""}","Sedgwick","20173","FALSE","FALSE","America/Chicago"
-"67215","37.61458","-97.42554","Wichita","KS","Kansas","TRUE","","5809","135.2","20173","Sedgwick","{""20173"": ""100""}","Sedgwick","20173","FALSE","FALSE","America/Chicago"
-"67216","37.60861","-97.31388","Wichita","KS","Kansas","TRUE","","22503","708.0","20173","Sedgwick","{""20173"": ""100""}","Sedgwick","20173","FALSE","FALSE","America/Chicago"
-"67217","37.61547","-97.36277","Wichita","KS","Kansas","TRUE","","31414","828.0","20173","Sedgwick","{""20173"": ""100""}","Sedgwick","20173","FALSE","FALSE","America/Chicago"
-"67218","37.66848","-97.28038","Wichita","KS","Kansas","TRUE","","22635","1748.9","20173","Sedgwick","{""20173"": ""100""}","Sedgwick","20173","FALSE","FALSE","America/Chicago"
-"67219","37.77181","-97.31744","Wichita","KS","Kansas","TRUE","","12588","333.4","20173","Sedgwick","{""20173"": ""100""}","Sedgwick","20173","FALSE","FALSE","America/Chicago"
-"67220","37.75153","-97.27911","Wichita","KS","Kansas","TRUE","","13969","739.2","20173","Sedgwick","{""20173"": ""100""}","Sedgwick","20173","FALSE","FALSE","America/Chicago"
-"67223","37.74254","-97.49794","Wichita","KS","Kansas","TRUE","","689","71.8","20173","Sedgwick","{""20173"": ""100""}","Sedgwick","20173","FALSE","FALSE","America/Chicago"
-"67226","37.77329","-97.21529","Wichita","KS","Kansas","TRUE","","20365","291.5","20173","Sedgwick","{""20173"": ""100""}","Sedgwick","20173","FALSE","FALSE","America/Chicago"
-"67227","37.62819","-97.49969","Wichita","KS","Kansas","TRUE","","285","20.0","20173","Sedgwick","{""20173"": ""100""}","Sedgwick","20173","FALSE","FALSE","America/Chicago"
-"67228","37.76025","-97.17189","Wichita","KS","Kansas","TRUE","","2541","123.5","20173","Sedgwick","{""20173"": ""100""}","Sedgwick","20173","FALSE","FALSE","America/Chicago"
-"67230","37.68675","-97.17129","Wichita","KS","Kansas","TRUE","","11777","460.7","20173","Sedgwick","{""20173"": ""100""}","Sedgwick","20173","FALSE","FALSE","America/Chicago"
-"67232","37.63566","-97.17008","Wichita","KS","Kansas","TRUE","","785","86.7","20173","Sedgwick","{""20173"": ""100""}","Sedgwick","20173","FALSE","FALSE","America/Chicago"
-"67235","37.68913","-97.49939","Wichita","KS","Kansas","TRUE","","13555","475.3","20173","Sedgwick","{""20173"": ""100""}","Sedgwick","20173","FALSE","FALSE","America/Chicago"
-"67260","37.71943","-97.29327","Wichita","KS","Kansas","TRUE","","0","0.0","20173","Sedgwick","{""20173"": ""0""}","Sedgwick","20173","FALSE","FALSE","America/Chicago"
-"67301","37.20891","-95.7534","Independence","KS","Kansas","TRUE","","12497","23.0","20125","Montgomery","{""20125"": ""100""}","Montgomery","20125","FALSE","FALSE","America/Chicago"
-"67330","37.16148","-95.31531","Altamont","KS","Kansas","TRUE","","1476","9.6","20099","Labette","{""20099"": ""100""}","Labette","20099","FALSE","FALSE","America/Chicago"
-"67332","37.04514","-95.23446","Bartlett","KS","Kansas","TRUE","","119","2.0","20099","Labette","{""20099"": ""100""}","Labette","20099","FALSE","FALSE","America/Chicago"
-"67333","37.04672","-95.88109","Caney","KS","Kansas","TRUE","","2728","20.6","20125","Montgomery","{""20125"": ""100""}","Montgomery","20125","FALSE","FALSE","America/Chicago"
-"67334","37.02382","-96.17735","Chautauqua","KS","Kansas","TRUE","","39","37.0","20019","Chautauqua","{""20019"": ""100""}","Chautauqua","20019","FALSE","FALSE","America/Chicago"
-"67335","37.27467","-95.53669","Cherryvale","KS","Kansas","TRUE","","3578","10.7","20125","Montgomery","{""20125"": ""88.1"", ""20099"": ""11.9""}","Montgomery|Labette","20125|20099","FALSE","FALSE","America/Chicago"
-"67336","37.05519","-95.07863","Chetopa","KS","Kansas","TRUE","","1563","6.4","20099","Labette","{""20099"": ""88.71"", ""20021"": ""11.29""}","Labette|Cherokee","20099|20021","FALSE","FALSE","America/Chicago"
-"67337","37.05527","-95.60147","Coffeyville","KS","Kansas","TRUE","","11936","32.0","20125","Montgomery","{""20125"": ""97.75"", ""20099"": ""2.25""}","Montgomery|Labette","20125|20099","FALSE","FALSE","America/Chicago"
-"67340","37.0596","-95.71323","Dearing","KS","Kansas","TRUE","","522","257.6","20125","Montgomery","{""20125"": ""100""}","Montgomery","20125","FALSE","FALSE","America/Chicago"
-"67341","37.34382","-95.4354","Dennis","KS","Kansas","TRUE","","344","6.0","20099","Labette","{""20099"": ""100""}","Labette","20099","FALSE","FALSE","America/Chicago"
-"67342","37.05927","-95.35755","Edna","KS","Kansas","TRUE","","880","4.7","20099","Labette","{""20099"": ""100""}","Labette","20099","FALSE","FALSE","America/Chicago"
-"67344","37.28806","-95.95266","Elk City","KS","Kansas","TRUE","","899","2.0","20125","Montgomery","{""20125"": ""82.9"", ""20019"": ""13.91"", ""20049"": ""3.19""}","Montgomery|Chautauqua|Elk","20125|20019|20049","FALSE","FALSE","America/Chicago"
-"67345","37.37753","-96.20238","Elk Falls","KS","Kansas","TRUE","","104","0.9","20049","Elk","{""20049"": ""100""}","Elk","20049","FALSE","FALSE","America/Chicago"
-"67346","37.32137","-96.44325","Grenola","KS","Kansas","TRUE","","344","1.2","20049","Elk","{""20049"": ""84.68"", ""20019"": ""15.32""}","Elk|Chautauqua","20049|20019","FALSE","FALSE","America/Chicago"
-"67347","37.12736","-95.95337","Havana","KS","Kansas","TRUE","","421","2.8","20125","Montgomery","{""20125"": ""82.83"", ""20019"": ""17.17""}","Montgomery|Chautauqua","20125|20019","FALSE","FALSE","America/Chicago"
-"67349","37.48858","-96.29883","Howard","KS","Kansas","TRUE","","893","1.5","20049","Elk","{""20049"": ""100""}","Elk","20049","FALSE","FALSE","America/Chicago"
-"67351","37.13773","-95.57102","Liberty","KS","Kansas","TRUE","","259","2.3","20125","Montgomery","{""20125"": ""94.37"", ""20099"": ""5.63""}","Montgomery|Labette","20125|20099","FALSE","FALSE","America/Chicago"
-"67352","37.35616","-96.08455","Longton","KS","Kansas","TRUE","","506","1.8","20049","Elk","{""20049"": ""98.48"", ""20019"": ""1.52""}","Elk|Chautauqua","20049|20019","FALSE","FALSE","America/Chicago"
-"67353","37.31356","-96.31241","Moline","KS","Kansas","TRUE","","601","2.9","20049","Elk","{""20049"": ""91.58"", ""20019"": ""8.42""}","Elk|Chautauqua","20049|20019","FALSE","FALSE","America/Chicago"
-"67354","37.20917","-95.4095","Mound Valley","KS","Kansas","TRUE","","750","5.1","20099","Labette","{""20099"": ""100""}","Labette","20099","FALSE","FALSE","America/Chicago"
-"67355","37.03394","-96.00936","Niotaze","KS","Kansas","TRUE","","122","2.0","20019","Chautauqua","{""20019"": ""100""}","Chautauqua","20019","FALSE","FALSE","America/Chicago"
-"67356","37.17778","-95.14704","Oswego","KS","Kansas","TRUE","","2767","9.2","20099","Labette","{""20099"": ""97.71"", ""20021"": ""2.29""}","Labette|Cherokee","20099|20021","FALSE","FALSE","America/Chicago"
-"67357","37.34612","-95.26184","Parsons","KS","Kansas","TRUE","","11795","25.7","20099","Labette","{""20099"": ""96.32"", ""20133"": ""3.68""}","Labette|Neosho","20099|20133","FALSE","FALSE","America/Chicago"
-"67360","37.05094","-96.1051","Peru","KS","Kansas","TRUE","","425","3.4","20019","Chautauqua","{""20019"": ""100""}","Chautauqua","20019","FALSE","FALSE","America/Chicago"
-"67361","37.13827","-96.21821","Sedan","KS","Kansas","TRUE","","1566","2.5","20019","Chautauqua","{""20019"": ""100""}","Chautauqua","20019","FALSE","FALSE","America/Chicago"
-"67363","37.33665","-95.72237","Sycamore","KS","Kansas","TRUE","","115","20.4","20125","Montgomery","{""20125"": ""100""}","Montgomery","20125","FALSE","FALSE","America/Chicago"
-"67364","37.05268","-95.81565","Tyro","KS","Kansas","TRUE","","243","19.9","20125","Montgomery","{""20125"": ""100""}","Montgomery","20125","FALSE","FALSE","America/Chicago"
-"67401","38.83401","-97.64584","Salina","KS","Kansas","TRUE","","50816","81.7","20169","Saline","{""20169"": ""99.8"", ""20143"": ""0.2""}","Saline|Ottawa","20169|20143","FALSE","FALSE","America/Chicago"
-"67410","38.9558","-97.22134","Abilene","KS","Kansas","TRUE","","10124","12.2","20041","Dickinson","{""20041"": ""99.87"", ""20027"": ""0.13""}","Dickinson|Clay","20041|20027","FALSE","FALSE","America/Chicago"
-"67416","38.67393","-97.58048","Assaria","KS","Kansas","TRUE","","1080","6.7","20169","Saline","{""20169"": ""100""}","Saline","20169","FALSE","FALSE","America/Chicago"
-"67417","39.43747","-97.5524","Aurora","KS","Kansas","TRUE","","147","0.8","20029","Cloud","{""20029"": ""100""}","Cloud","20029","FALSE","FALSE","America/Chicago"
-"67418","39.17113","-98.04251","Barnard","KS","Kansas","TRUE","","154","0.4","20105","Lincoln","{""20105"": ""89.84"", ""20123"": ""10.16""}","Lincoln|Mitchell","20105|20123","FALSE","FALSE","America/Chicago"
-"67420","39.39875","-98.08543","Beloit","KS","Kansas","TRUE","","4495","4.1","20123","Mitchell","{""20123"": ""99.51"", ""20029"": ""0.49""}","Mitchell|Cloud","20123|20029","FALSE","FALSE","America/Chicago"
-"67422","39.02357","-97.58752","Bennington","KS","Kansas","TRUE","","1383","8.1","20143","Ottawa","{""20143"": ""100""}","Ottawa","20143","FALSE","FALSE","America/Chicago"
-"67423","38.95121","-97.98209","Beverly","KS","Kansas","TRUE","","202","1.5","20105","Lincoln","{""20105"": ""100""}","Lincoln","20105","FALSE","FALSE","America/Chicago"
-"67425","38.77538","-97.92783","Brookville","KS","Kansas","TRUE","","523","0.9","20169","Saline","{""20169"": ""79.25"", ""20053"": ""20.75""}","Saline|Ellsworth","20169|20053","FALSE","FALSE","America/Chicago"
-"67427","38.49619","-98.39756","Bushton","KS","Kansas","TRUE","","450","2.9","20159","Rice","{""20159"": ""91.18"", ""20053"": ""8.82""}","Rice|Ellsworth","20159|20053","FALSE","FALSE","America/Chicago"
-"67428","38.37307","-97.41873","Canton","KS","Kansas","TRUE","","1471","5.5","20113","McPherson","{""20113"": ""96.52"", ""20115"": ""3.48""}","McPherson|Marion","20113|20115","FALSE","FALSE","America/Chicago"
-"67430","39.52877","-98.43012","Cawker City","KS","Kansas","TRUE","","710","2.1","20123","Mitchell","{""20123"": ""91.82"", ""20089"": ""8.18""}","Mitchell|Jewell","20123|20089","FALSE","FALSE","America/Chicago"
-"67431","38.9559","-97.00941","Chapman","KS","Kansas","TRUE","","1933","6.2","20041","Dickinson","{""20041"": ""100""}","Dickinson","20041","FALSE","FALSE","America/Chicago"
-"67432","39.3319","-97.18703","Clay Center","KS","Kansas","TRUE","","5553","5.8","20027","Clay","{""20027"": ""98.9"", ""20143"": ""0.96"", ""20161"": ""0.13""}","Clay|Ottawa|Riley","20027|20143|20161","FALSE","FALSE","America/Chicago"
-"67436","39.27721","-97.73254","Delphos","KS","Kansas","TRUE","","650","2.0","20143","Ottawa","{""20143"": ""88.36"", ""20029"": ""11.64""}","Ottawa|Cloud","20143|20029","FALSE","FALSE","America/Chicago"
-"67437","39.5112","-98.55543","Downs","KS","Kansas","TRUE","","962","2.7","20141","Osborne","{""20141"": ""93.88"", ""20183"": ""6.12""}","Osborne|Smith","20141|20183","FALSE","FALSE","America/Chicago"
-"67438","38.49746","-97.28224","Durham","KS","Kansas","TRUE","","233","1.2","20115","Marion","{""20115"": ""100""}","Marion","20115","FALSE","FALSE","America/Chicago"
-"67439","38.7545","-98.21984","Ellsworth","KS","Kansas","TRUE","","3419","6.2","20053","Ellsworth","{""20053"": ""99.84"", ""20105"": ""0.16""}","Ellsworth|Lincoln","20053|20105","FALSE","FALSE","America/Chicago"
-"67441","38.87631","-97.10467","Enterprise","KS","Kansas","TRUE","","1203","12.0","20041","Dickinson","{""20041"": ""100""}","Dickinson","20041","FALSE","FALSE","America/Chicago"
-"67442","38.65602","-97.77637","Falun","KS","Kansas","TRUE","","283","2.3","20169","Saline","{""20169"": ""100""}","Saline","20169","FALSE","FALSE","America/Chicago"
-"67443","38.3807","-97.52213","Galva","KS","Kansas","TRUE","","1581","7.2","20113","McPherson","{""20113"": ""100""}","McPherson","20113","FALSE","FALSE","America/Chicago"
-"67444","38.54709","-98.12774","Geneseo","KS","Kansas","TRUE","","569","1.3","20159","Rice","{""20159"": ""73.06"", ""20053"": ""26.94""}","Rice|Ellsworth","20159|20053","FALSE","FALSE","America/Chicago"
-"67445","39.37644","-97.81922","Glasco","KS","Kansas","TRUE","","589","1.9","20029","Cloud","{""20029"": ""98.68"", ""20143"": ""1.32""}","Cloud|Ottawa","20029|20143","FALSE","FALSE","America/Chicago"
-"67446","39.47594","-98.30657","Glen Elder","KS","Kansas","TRUE","","547","1.8","20123","Mitchell","{""20123"": ""94.65"", ""20089"": ""5.35""}","Mitchell|Jewell","20123|20089","FALSE","FALSE","America/Chicago"
-"67447","39.48345","-96.97114","Green","KS","Kansas","TRUE","","373","1.9","20027","Clay","{""20027"": ""75.94"", ""20161"": ""24.06""}","Clay|Riley","20027|20161","FALSE","FALSE","America/Chicago"
-"67448","38.65158","-97.41275","Gypsum","KS","Kansas","TRUE","","1246","2.2","20169","Saline","{""20169"": ""66.67"", ""20113"": ""16.96"", ""20041"": ""16.38""}","Saline|McPherson|Dickinson","20169|20113|20041","FALSE","FALSE","America/Chicago"
-"67449","38.67672","-96.89412","Herington","KS","Kansas","TRUE","","2880","7.3","20041","Dickinson","{""20041"": ""88.57"", ""20127"": ""11.22"", ""20115"": ""0.21""}","Dickinson|Morris|Marion","20041|20127|20115","FALSE","FALSE","America/Chicago"
-"67450","38.61435","-98.44685","Holyrood","KS","Kansas","TRUE","","658","5.0","20053","Ellsworth","{""20053"": ""98.38"", ""20009"": ""1.62""}","Ellsworth|Barton","20053|20009","FALSE","FALSE","America/Chicago"
-"67451","38.70252","-97.12736","Hope","KS","Kansas","TRUE","","1176","3.1","20041","Dickinson","{""20041"": ""100""}","Dickinson","20041","FALSE","FALSE","America/Chicago"
-"67452","39.23879","-98.37167","Hunter","KS","Kansas","TRUE","","140","0.4","20123","Mitchell","{""20123"": ""63.68"", ""20105"": ""36.32""}","Mitchell|Lincoln","20123|20105","FALSE","FALSE","America/Chicago"
-"67454","38.69832","-98.11145","Kanopolis","KS","Kansas","TRUE","","649","7.0","20053","Ellsworth","{""20053"": ""100""}","Ellsworth","20053","FALSE","FALSE","America/Chicago"
-"67455","39.0227","-98.16532","Lincoln","KS","Kansas","TRUE","","2061","2.7","20105","Lincoln","{""20105"": ""100""}","Lincoln","20105","FALSE","FALSE","America/Chicago"
-"67456","38.59603","-97.67428","Lindsborg","KS","Kansas","TRUE","","4374","11.7","20113","McPherson","{""20113"": ""86.51"", ""20169"": ""13.49""}","McPherson|Saline","20113|20169","FALSE","FALSE","America/Chicago"
-"67457","38.39215","-97.99348","Little River","KS","Kansas","TRUE","","725","3.0","20159","Rice","{""20159"": ""100""}","Rice","20159","FALSE","FALSE","America/Chicago"
-"67458","39.16778","-97.29706","Longford","KS","Kansas","TRUE","","258","1.6","20027","Clay","{""20027"": ""90.8"", ""20143"": ""9.2""}","Clay|Ottawa","20027|20143","FALSE","FALSE","America/Chicago"
-"67459","38.60577","-98.3344","Lorraine","KS","Kansas","TRUE","","229","1.2","20053","Ellsworth","{""20053"": ""100""}","Ellsworth","20053","FALSE","FALSE","America/Chicago"
-"67460","38.38361","-97.69807","Mcpherson","KS","Kansas","TRUE","","15160","25.5","20113","McPherson","{""20113"": ""100""}","McPherson","20113","FALSE","FALSE","America/Chicago"
-"67464","38.56462","-97.90119","Marquette","KS","Kansas","TRUE","","1032","3.5","20113","McPherson","{""20113"": ""84.86"", ""20053"": ""15.14""}","McPherson|Ellsworth","20113|20053","FALSE","FALSE","America/Chicago"
-"67466","39.33071","-97.47995","Miltonvale","KS","Kansas","TRUE","","849","2.2","20029","Cloud","{""20029"": ""89.41"", ""20143"": ""7.24"", ""20027"": ""3.36""}","Cloud|Ottawa|Clay","20029|20143|20027","FALSE","FALSE","America/Chicago"
-"67467","39.14259","-97.69271","Minneapolis","KS","Kansas","TRUE","","2575","3.7","20143","Ottawa","{""20143"": ""100""}","Ottawa","20143","FALSE","FALSE","America/Chicago"
-"67468","39.46077","-97.24666","Morganville","KS","Kansas","TRUE","","277","2.6","20027","Clay","{""20027"": ""100""}","Clay","20027","FALSE","FALSE","America/Chicago"
-"67470","38.91303","-97.48813","New Cambria","KS","Kansas","TRUE","","512","4.0","20169","Saline","{""20169"": ""96.49"", ""20143"": ""3.51""}","Saline|Ottawa","20169|20143","FALSE","FALSE","America/Chicago"
-"67473","39.37717","-98.73596","Osborne","KS","Kansas","TRUE","","1764","2.6","20141","Osborne","{""20141"": ""100""}","Osborne","20141","FALSE","FALSE","America/Chicago"
-"67474","39.57511","-98.71912","Portis","KS","Kansas","TRUE","","288","1.2","20141","Osborne","{""20141"": ""77.23"", ""20183"": ""22.77""}","Osborne|Smith","20141|20183","FALSE","FALSE","America/Chicago"
-"67475","38.59105","-97.05189","Ramona","KS","Kansas","TRUE","","143","2.0","20115","Marion","{""20115"": ""92.23"", ""20041"": ""7.77""}","Marion|Dickinson","20115|20041","FALSE","FALSE","America/Chicago"
-"67478","39.3861","-97.9388","Simpson","KS","Kansas","TRUE","","58","22.1","20123","Mitchell","{""20123"": ""100""}","Mitchell","20123","FALSE","FALSE","America/Chicago"
-"67480","38.9717","-97.40421","Solomon","KS","Kansas","TRUE","","1646","3.9","20041","Dickinson","{""20041"": ""79.22"", ""20143"": ""12.91"", ""20169"": ""7.87""}","Dickinson|Ottawa|Saline","20041|20143|20169","FALSE","FALSE","America/Chicago"
-"67481","39.01246","-98.3866","Sylvan Grove","KS","Kansas","TRUE","","545","1.1","20105","Lincoln","{""20105"": ""98.64"", ""20167"": ""1.36""}","Lincoln|Russell","20105|20167","FALSE","FALSE","America/Chicago"
-"67482","39.02685","-97.25974","Talmage","KS","Kansas","TRUE","","112","440.5","20041","Dickinson","{""20041"": ""100""}","Dickinson","20041","FALSE","FALSE","America/Chicago"
-"67483","38.56148","-97.2057","Tampa","KS","Kansas","TRUE","","464","2.2","20115","Marion","{""20115"": ""100""}","Marion","20115","FALSE","FALSE","America/Chicago"
-"67484","38.99157","-97.83187","Tescott","KS","Kansas","TRUE","","970","2.7","20143","Ottawa","{""20143"": ""85.52"", ""20169"": ""12.68"", ""20105"": ""1.8""}","Ottawa|Saline|Lincoln","20143|20169|20105","FALSE","FALSE","America/Chicago"
-"67485","39.29041","-98.50858","Tipton","KS","Kansas","TRUE","","343","1.7","20123","Mitchell","{""20123"": ""84.96"", ""20141"": ""15.04""}","Mitchell|Osborne","20123|20141","FALSE","FALSE","America/Chicago"
-"67487","39.17803","-97.07164","Wakefield","KS","Kansas","TRUE","","1266","5.1","20027","Clay","{""20027"": ""95.36"", ""20041"": ""3.09"", ""20061"": ""1.55""}","Clay|Dickinson|Geary","20027|20041|20061","FALSE","FALSE","America/Chicago"
-"67490","38.78992","-98.44222","Wilson","KS","Kansas","TRUE","","885","2.3","20053","Ellsworth","{""20053"": ""93.18"", ""20167"": ""4.45"", ""20105"": ""2.37""}","Ellsworth|Russell|Lincoln","20053|20167|20105","FALSE","FALSE","America/Chicago"
-"67491","38.38753","-97.90397","Windom","KS","Kansas","TRUE","","364","2.0","20113","McPherson","{""20113"": ""82.71"", ""20159"": ""17.29""}","McPherson|Rice","20113|20159","FALSE","FALSE","America/Chicago"
-"67492","38.81125","-96.96393","Woodbine","KS","Kansas","TRUE","","175","2.4","20041","Dickinson","{""20041"": ""100""}","Dickinson","20041","FALSE","FALSE","America/Chicago"
-"67501","37.98307","-97.92973","Hutchinson","KS","Kansas","TRUE","","26122","54.9","20155","Reno","{""20155"": ""100""}","Reno","20155","FALSE","FALSE","America/Chicago"
-"67502","38.12717","-97.9291","Hutchinson","KS","Kansas","TRUE","","23664","116.2","20155","Reno","{""20155"": ""99.92"", ""20159"": ""0.08""}","Reno|Rice","20155|20159","FALSE","FALSE","America/Chicago"
-"67505","38.0282","-97.9432","South Hutchinson","KS","Kansas","TRUE","","2499","343.2","20155","Reno","{""20155"": ""100""}","Reno","20155","FALSE","FALSE","America/Chicago"
-"67510","37.99965","-98.20665","Abbyville","KS","Kansas","TRUE","","198","1.4","20155","Reno","{""20155"": ""100""}","Reno","20155","FALSE","FALSE","America/Chicago"
-"67511","38.4325","-99.04725","Albert","KS","Kansas","TRUE","","278","1.7","20009","Barton","{""20009"": ""78.62"", ""20165"": ""21.38""}","Barton|Rush","20009|20165","FALSE","FALSE","America/Chicago"
-"67512","38.21793","-98.34025","Alden","KS","Kansas","TRUE","","208","2.3","20159","Rice","{""20159"": ""100""}","Rice","20159","FALSE","FALSE","America/Chicago"
-"67513","38.44699","-99.54501","Alexander","KS","Kansas","TRUE","","74","0.5","20165","Rush","{""20165"": ""100""}","Rush","20165","FALSE","FALSE","America/Chicago"
-"67514","37.86492","-98.20699","Arlington","KS","Kansas","TRUE","","932","4.1","20155","Reno","{""20155"": ""100""}","Reno","20155","FALSE","FALSE","America/Chicago"
-"67515","38.6247","-100.06846","Arnold","KS","Kansas","TRUE","","35","0.4","20135","Ness","{""20135"": ""100""}","Ness","20135","FALSE","FALSE","America/Chicago"
-"67516","38.37962","-99.68313","Bazine","KS","Kansas","TRUE","","386","0.9","20135","Ness","{""20135"": ""100""}","Ness","20135","FALSE","FALSE","America/Chicago"
-"67518","38.41458","-100.16733","Beeler","KS","Kansas","TRUE","","53","0.1","20135","Ness","{""20135"": ""95.65"", ""20101"": ""4.35""}","Ness|Lane","20135|20101","FALSE","FALSE","America/Chicago"
-"67519","37.93037","-99.09108","Belpre","KS","Kansas","TRUE","","176","1.0","20047","Edwards","{""20047"": ""94.82"", ""20145"": ""5.18""}","Edwards|Pawnee","20047|20145","FALSE","FALSE","America/Chicago"
-"67520","38.58583","-99.1829","Bison","KS","Kansas","TRUE","","280","0.9","20165","Rush","{""20165"": ""100""}","Rush","20165","FALSE","FALSE","America/Chicago"
-"67521","38.62312","-99.72282","Brownell","KS","Kansas","TRUE","","130","0.3","20135","Ness","{""20135"": ""93.55"", ""20195"": ""6.45""}","Ness|Trego","20135|20195","FALSE","FALSE","America/Chicago"
-"67522","38.12467","-97.74405","Buhler","KS","Kansas","TRUE","","1858","11.6","20155","Reno","{""20155"": ""95.71"", ""20079"": ""4.29""}","Reno|Harvey","20155|20079","FALSE","FALSE","America/Chicago"
-"67523","38.1975","-99.5493","Burdett","KS","Kansas","TRUE","","601","1.6","20145","Pawnee","{""20145"": ""90.35"", ""20083"": ""9.65""}","Pawnee|Hodgeman","20145|20083","FALSE","FALSE","America/Chicago"
-"67524","38.37532","-98.37878","Chase","KS","Kansas","TRUE","","532","3.8","20159","Rice","{""20159"": ""100""}","Rice","20159","FALSE","FALSE","America/Chicago"
-"67525","38.56877","-98.57077","Claflin","KS","Kansas","TRUE","","1004","2.8","20009","Barton","{""20009"": ""98.57"", ""20159"": ""1.43""}","Barton|Rice","20009|20159","FALSE","FALSE","America/Chicago"
-"67526","38.33481","-98.55291","Ellinwood","KS","Kansas","TRUE","","2669","6.1","20009","Barton","{""20009"": ""97.43"", ""20185"": ""1.3"", ""20159"": ""1.27""}","Barton|Stafford|Rice","20009|20185|20159","FALSE","FALSE","America/Chicago"
-"67529","38.07283","-99.25326","Garfield","KS","Kansas","TRUE","","193","0.7","20145","Pawnee","{""20145"": ""100""}","Pawnee","20145","FALSE","FALSE","America/Chicago"
-"67530","38.35287","-98.79363","Great Bend","KS","Kansas","TRUE","","18608","29.3","20009","Barton","{""20009"": ""99.54"", ""20185"": ""0.46""}","Barton|Stafford","20009|20185","FALSE","FALSE","America/Chicago"
-"67543","37.87758","-97.79479","Haven","KS","Kansas","TRUE","","2175","9.1","20155","Reno","{""20155"": ""100""}","Reno","20155","FALSE","FALSE","America/Chicago"
-"67544","38.58228","-98.75738","Hoisington","KS","Kansas","TRUE","","3227","6.0","20009","Barton","{""20009"": ""100""}","Barton","20009","FALSE","FALSE","America/Chicago"
-"67545","38.16404","-98.61994","Hudson","KS","Kansas","TRUE","","167","0.9","20185","Stafford","{""20185"": ""100""}","Stafford","20185","FALSE","FALSE","America/Chicago"
-"67546","38.23255","-97.81946","Inman","KS","Kansas","TRUE","","2292","6.7","20113","McPherson","{""20113"": ""95.76"", ""20159"": ""3.89"", ""20155"": ""0.35""}","McPherson|Rice|Reno","20113|20159|20155","FALSE","FALSE","America/Chicago"
-"67547","37.93351","-99.45756","Kinsley","KS","Kansas","TRUE","","1817","2.3","20047","Edwards","{""20047"": ""98.3"", ""20083"": ""1.7""}","Edwards|Hodgeman","20047|20083","FALSE","FALSE","America/Chicago"
-"67548","38.58312","-99.34515","La Crosse","KS","Kansas","TRUE","","1367","4.7","20165","Rush","{""20165"": ""100""}","Rush","20165","FALSE","FALSE","America/Chicago"
-"67550","38.18491","-99.12236","Larned","KS","Kansas","TRUE","","5642","6.9","20145","Pawnee","{""20145"": ""99.31"", ""20185"": ""0.69""}","Pawnee|Stafford","20145|20185","FALSE","FALSE","America/Chicago"
-"67552","37.86625","-99.22853","Lewis","KS","Kansas","TRUE","","579","1.2","20047","Edwards","{""20047"": ""100""}","Edwards","20047","FALSE","FALSE","America/Chicago"
-"67553","38.66079","-99.30721","Liebenthal","KS","Kansas","TRUE","","186","8.0","20165","Rush","{""20165"": ""100""}","Rush","20165","FALSE","FALSE","America/Chicago"
-"67554","38.37452","-98.1931","Lyons","KS","Kansas","TRUE","","4006","8.5","20159","Rice","{""20159"": ""100""}","Rice","20159","FALSE","FALSE","America/Chicago"
-"67556","38.6118","-99.52892","McCracken","KS","Kansas","TRUE","","229","0.5","20165","Rush","{""20165"": ""87.81"", ""20135"": ""6.88"", ""20051"": ""5.31""}","Rush|Ness|Ellis","20165|20135|20051","FALSE","FALSE","America/Chicago"
-"67557","37.92781","-98.96403","Macksville","KS","Kansas","TRUE","","551","1.6","20185","Stafford","{""20185"": ""90.32"", ""20145"": ""4.7"", ""20047"": ""2.77"", ""20151"": ""2.21""}","Stafford|Pawnee|Edwards|Pratt","20185|20145|20047|20151","FALSE","FALSE","America/Chicago"
-"67559","38.39011","-99.45502","Nekoma","KS","Kansas","TRUE","","11","0.1","20165","Rush","{""20165"": ""84.62"", ""20145"": ""15.38""}","Rush|Pawnee","20165|20145","FALSE","FALSE","America/Chicago"
-"67560","38.39492","-99.95133","Ness City","KS","Kansas","TRUE","","1750","2.0","20135","Ness","{""20135"": ""100""}","Ness","20135","FALSE","FALSE","America/Chicago"
-"67561","38.10633","-98.0948","Nickerson","KS","Kansas","TRUE","","1277","7.6","20155","Reno","{""20155"": ""100""}","Reno","20155","FALSE","FALSE","America/Chicago"
-"67563","37.8441","-99.55638","Offerle","KS","Kansas","TRUE","","348","1.3","20047","Edwards","{""20047"": ""77.9"", ""20057"": ""18.06"", ""20083"": ""4.04""}","Edwards|Ford|Hodgeman","20047|20057|20083","FALSE","FALSE","America/Chicago"
-"67564","38.53174","-98.93141","Olmitz","KS","Kansas","TRUE","","251","1.2","20009","Barton","{""20009"": ""100""}","Barton","20009","FALSE","FALSE","America/Chicago"
-"67565","38.60389","-99.04069","Otis","KS","Kansas","TRUE","","460","1.9","20165","Rush","{""20165"": ""81.12"", ""20009"": ""18.88""}","Rush|Barton","20165|20009","FALSE","FALSE","America/Chicago"
-"67566","37.93847","-98.09774","Partridge","KS","Kansas","TRUE","","652","4.2","20155","Reno","{""20155"": ""100""}","Reno","20155","FALSE","FALSE","America/Chicago"
-"67567","38.2727","-98.97772","Pawnee Rock","KS","Kansas","TRUE","","544","2.2","20009","Barton","{""20009"": ""70.91"", ""20145"": ""16.92"", ""20185"": ""7.22"", ""20165"": ""4.94""}","Barton|Pawnee|Stafford|Rush","20009|20145|20185|20165","FALSE","FALSE","America/Chicago"
-"67568","38.01233","-98.3093","Plevna","KS","Kansas","TRUE","","245","1.5","20155","Reno","{""20155"": ""100""}","Reno","20155","FALSE","FALSE","America/Chicago"
-"67570","37.78635","-97.96912","Pretty Prairie","KS","Kansas","TRUE","","1315","3.7","20155","Reno","{""20155"": ""91.11"", ""20095"": ""8.89""}","Reno|Kingman","20155|20095","FALSE","FALSE","America/Chicago"
-"67572","38.68666","-99.9088","Ransom","KS","Kansas","TRUE","","461","0.8","20135","Ness","{""20135"": ""89.69"", ""20195"": ""10.31""}","Ness|Trego","20135|20195","FALSE","FALSE","America/Chicago"
-"67573","38.26846","-98.41889","Raymond","KS","Kansas","TRUE","","202","1.2","20159","Rice","{""20159"": ""100""}","Rice","20159","FALSE","FALSE","America/Chicago"
-"67574","38.22188","-99.38504","Rozel","KS","Kansas","TRUE","","163","0.5","20145","Pawnee","{""20145"": ""100""}","Pawnee","20145","FALSE","FALSE","America/Chicago"
-"67575","38.41225","-99.26178","Rush Center","KS","Kansas","TRUE","","540","1.3","20165","Rush","{""20165"": ""96.99"", ""20145"": ""3.01""}","Rush|Pawnee","20165|20145","FALSE","FALSE","America/Chicago"
-"67576","38.03365","-98.79384","St John","KS","Kansas","TRUE","","2054","2.5","20185","Stafford","{""20185"": ""100""}","Stafford","20185","FALSE","FALSE","America/Chicago"
-"67578","37.98588","-98.58098","Stafford","KS","Kansas","TRUE","","1203","2.1","20185","Stafford","{""20185"": ""100""}","Stafford","20185","FALSE","FALSE","America/Chicago"
-"67579","38.18331","-98.21858","Sterling","KS","Kansas","TRUE","","3345","5.8","20159","Rice","{""20159"": ""91.73"", ""20155"": ""8.27""}","Rice|Reno","20159|20155","FALSE","FALSE","America/Chicago"
-"67581","37.98363","-98.41692","Sylvia","KS","Kansas","TRUE","","289","1.2","20155","Reno","{""20155"": ""100""}","Reno","20155","FALSE","FALSE","America/Chicago"
-"67583","37.80188","-98.47697","Turon","KS","Kansas","TRUE","","953","1.6","20155","Reno","{""20155"": ""61.94"", ""20151"": ""33.86"", ""20185"": ""4.21""}","Reno|Pratt|Stafford","20155|20151|20185","FALSE","FALSE","America/Chicago"
-"67584","38.68113","-100.16369","Utica","KS","Kansas","TRUE","","151","0.2","20135","Ness","{""20135"": ""79.93"", ""20195"": ""10.78"", ""20063"": ""5.2"", ""20101"": ""4.09""}","Ness|Trego|Gove|Lane","20135|20195|20063|20101","FALSE","FALSE","America/Chicago"
-"67601","38.8776","-99.34833","Hays","KS","Kansas","TRUE","","24203","24.2","20051","Ellis","{""20051"": ""100""}","Ellis","20051","FALSE","FALSE","America/Chicago"
-"67621","39.82467","-99.1256","Agra","KS","Kansas","TRUE","","333","2.1","20147","Phillips","{""20147"": ""100""}","Phillips","20147","FALSE","FALSE","America/Chicago"
-"67622","39.8947","-99.72988","Almena","KS","Kansas","TRUE","","632","1.9","20137","Norton","{""20137"": ""100""}","Norton","20137","FALSE","FALSE","America/Chicago"
-"67623","39.45273","-98.95817","Alton","KS","Kansas","TRUE","","157","0.4","20141","Osborne","{""20141"": ""100""}","Osborne","20141","FALSE","FALSE","America/Chicago"
-"67625","39.38519","-99.68379","Bogue","KS","Kansas","TRUE","","270","0.9","20065","Graham","{""20065"": ""100""}","Graham","20065","FALSE","FALSE","America/Chicago"
-"67626","38.88536","-98.70928","Bunker Hill","KS","Kansas","TRUE","","219","0.9","20167","Russell","{""20167"": ""100""}","Russell","20167","FALSE","FALSE","America/Chicago"
-"67628","39.622","-98.99409","Cedar","KS","Kansas","TRUE","","112","0.8","20183","Smith","{""20183"": ""100""}","Smith","20183","FALSE","FALSE","America/Chicago"
-"67629","39.70387","-100.18538","Clayton","KS","Kansas","TRUE","","146","0.6","20137","Norton","{""20137"": ""73.43"", ""20039"": ""26.57""}","Norton|Decatur","20137|20039","FALSE","FALSE","America/Chicago"
-"67631","39.00386","-100.08622","Collyer","KS","Kansas","TRUE","","154","0.4","20195","Trego","{""20195"": ""93.57"", ""20065"": ""6.43""}","Trego|Graham","20195|20065","FALSE","FALSE","America/Chicago"
-"67632","39.3398","-99.58165","Damar","KS","Kansas","TRUE","","201","1.5","20163","Rooks","{""20163"": ""85.02"", ""20065"": ""14.98""}","Rooks|Graham","20163|20065","FALSE","FALSE","America/Chicago"
-"67634","38.81919","-98.60734","Dorrance","KS","Kansas","TRUE","","229","0.7","20167","Russell","{""20167"": ""100""}","Russell","20167","FALSE","FALSE","America/Chicago"
-"67635","39.59486","-100.43935","Dresden","KS","Kansas","TRUE","","93","0.3","20039","Decatur","{""20039"": ""75.15"", ""20179"": ""24.85""}","Decatur|Sheridan","20039|20179","FALSE","FALSE","America/Chicago"
-"67637","38.93773","-99.59843","Ellis","KS","Kansas","TRUE","","2738","3.1","20051","Ellis","{""20051"": ""92.57"", ""20195"": ""7.43""}","Ellis|Trego","20051|20195","FALSE","FALSE","America/Chicago"
-"67638","39.63033","-98.85681","Gaylord","KS","Kansas","TRUE","","254","1.4","20183","Smith","{""20183"": ""100""}","Smith","20183","FALSE","FALSE","America/Chicago"
-"67639","39.6372","-99.30931","Glade","KS","Kansas","TRUE","","147","0.9","20147","Phillips","{""20147"": ""100""}","Phillips","20147","FALSE","FALSE","America/Chicago"
-"67640","38.90912","-99.04673","Gorham","KS","Kansas","TRUE","","514","1.9","20167","Russell","{""20167"": ""86.53"", ""20051"": ""13.47""}","Russell|Ellis","20167|20051","FALSE","FALSE","America/Chicago"
-"67642","39.35816","-99.84437","Hill City","KS","Kansas","TRUE","","1861","3.1","20065","Graham","{""20065"": ""100""}","Graham","20065","FALSE","FALSE","America/Chicago"
-"67643","39.67623","-100.30101","Jennings","KS","Kansas","TRUE","","200","0.6","20039","Decatur","{""20039"": ""100""}","Decatur","20039","FALSE","FALSE","America/Chicago"
-"67644","39.6333","-99.15781","Kirwin","KS","Kansas","TRUE","","261","1.3","20147","Phillips","{""20147"": ""100""}","Phillips","20147","FALSE","FALSE","America/Chicago"
-"67645","39.59942","-99.87089","Lenora","KS","Kansas","TRUE","","630","0.8","20137","Norton","{""20137"": ""90.11"", ""20065"": ""9.89""}","Norton|Graham","20137|20065","FALSE","FALSE","America/Chicago"
-"67646","39.63451","-99.57617","Logan","KS","Kansas","TRUE","","725","1.6","20147","Phillips","{""20147"": ""95.54"", ""20065"": ""1.81"", ""20163"": ""1.53"", ""20137"": ""1.11""}","Phillips|Graham|Rooks|Norton","20147|20065|20163|20137","FALSE","FALSE","America/Chicago"
-"67647","39.93674","-99.53872","Long Island","KS","Kansas","TRUE","","272","1.3","20147","Phillips","{""20147"": ""97.66"", ""20137"": ""2.34""}","Phillips|Norton","20147|20137","FALSE","FALSE","America/Chicago"
-"67648","39.07901","-98.5683","Lucas","KS","Kansas","TRUE","","535","1.2","20167","Russell","{""20167"": ""87.25"", ""20141"": ""8.74"", ""20105"": ""4.01""}","Russell|Osborne|Lincoln","20167|20141|20105","FALSE","FALSE","America/Chicago"
-"67649","39.12288","-98.68042","Luray","KS","Kansas","TRUE","","296","1.3","20167","Russell","{""20167"": ""88.89"", ""20141"": ""11.11""}","Russell|Osborne","20167|20141","FALSE","FALSE","America/Chicago"
-"67650","39.37345","-100.10624","Morland","KS","Kansas","TRUE","","212","0.5","20065","Graham","{""20065"": ""100""}","Graham","20065","FALSE","FALSE","America/Chicago"
-"67651","39.20742","-99.05138","Natoma","KS","Kansas","TRUE","","424","0.7","20141","Osborne","{""20141"": ""77.32"", ""20163"": ""17.16"", ""20051"": ""3.55"", ""20167"": ""1.97""}","Osborne|Rooks|Ellis|Russell","20141|20163|20051|20167","FALSE","FALSE","America/Chicago"
-"67653","39.90702","-100.21274","Norcatur","KS","Kansas","TRUE","","386","0.7","20039","Decatur","{""20039"": ""73.15"", ""20137"": ""26.85""}","Decatur|Norton","20039|20137","FALSE","FALSE","America/Chicago"
-"67654","39.8248","-99.9534","Norton","KS","Kansas","TRUE","","4176","4.7","20137","Norton","{""20137"": ""100""}","Norton","20137","FALSE","FALSE","America/Chicago"
-"67656","38.98979","-99.75605","Ogallah","KS","Kansas","TRUE","","63","0.2","20195","Trego","{""20195"": ""95.51"", ""20065"": ""4.49""}","Trego|Graham","20195|20065","FALSE","FALSE","America/Chicago"
-"67657","39.21025","-99.62001","Palco","KS","Kansas","TRUE","","251","0.7","20163","Rooks","{""20163"": ""87.88"", ""20065"": ""10.49"", ""20195"": ""1.63""}","Rooks|Graham|Trego","20163|20065|20195","FALSE","FALSE","America/Chicago"
-"67658","39.10589","-98.9312","Paradise","KS","Kansas","TRUE","","91","0.4","20167","Russell","{""20167"": ""86.67"", ""20141"": ""13.33""}","Russell|Osborne","20167|20141","FALSE","FALSE","America/Chicago"
-"67659","39.32488","-100.0036","Penokee","KS","Kansas","TRUE","","71","0.2","20065","Graham","{""20065"": ""100""}","Graham","20065","FALSE","FALSE","America/Chicago"
-"67660","38.7182","-99.15654","Pfeifer","KS","Kansas","TRUE","","77","1.6","20051","Ellis","{""20051"": ""100""}","Ellis","20051","FALSE","FALSE","America/Chicago"
-"67661","39.82823","-99.32053","Phillipsburg","KS","Kansas","TRUE","","3287","3.3","20147","Phillips","{""20147"": ""100""}","Phillips","20147","FALSE","FALSE","America/Chicago"
-"67663","39.21143","-99.3492","Plainville","KS","Kansas","TRUE","","2629","3.3","20163","Rooks","{""20163"": ""98.32"", ""20051"": ""1.68""}","Rooks|Ellis","20163|20051","FALSE","FALSE","America/Chicago"
-"67664","39.81428","-99.58638","Prairie View","KS","Kansas","TRUE","","264","1.0","20147","Phillips","{""20147"": ""93.77"", ""20137"": ""6.23""}","Phillips|Norton","20147|20137","FALSE","FALSE","America/Chicago"
-"67665","38.85039","-98.88162","Russell","KS","Kansas","TRUE","","5104","6.1","20167","Russell","{""20167"": ""99.26"", ""20009"": ""0.74""}","Russell|Barton","20167|20009","FALSE","FALSE","America/Chicago"
-"67667","38.71322","-99.33259","Schoenchen","KS","Kansas","TRUE","","167","572.2","20051","Ellis","{""20051"": ""100""}","Ellis","20051","FALSE","FALSE","America/Chicago"
-"67669","39.45329","-99.34648","Stockton","KS","Kansas","TRUE","","1890","2.2","20163","Rooks","{""20163"": ""100""}","Rooks","20163","FALSE","FALSE","America/Chicago"
-"67671","38.84682","-99.13639","Victoria","KS","Kansas","TRUE","","1484","4.4","20051","Ellis","{""20051"": ""100""}","Ellis","20051","FALSE","FALSE","America/Chicago"
-"67672","39.00388","-99.91057","Wakeeney","KS","Kansas","TRUE","","2421","3.0","20195","Trego","{""20195"": ""98.73"", ""20065"": ""1.27""}","Trego|Graham","20195|20065","FALSE","FALSE","America/Chicago"
-"67673","39.15834","-98.81535","Waldo","KS","Kansas","TRUE","","106","0.3","20141","Osborne","{""20141"": ""52.78"", ""20167"": ""47.22""}","Osborne|Russell","20141|20167","FALSE","FALSE","America/Chicago"
-"67674","38.86385","-99.06877","Walker","KS","Kansas","TRUE","","58","4.6","20051","Ellis","{""20051"": ""100""}","Ellis","20051","FALSE","FALSE","America/Chicago"
-"67675","39.44076","-99.1","Woodston","KS","Kansas","TRUE","","171","0.7","20163","Rooks","{""20163"": ""100""}","Rooks","20163","FALSE","FALSE","America/Chicago"
-"67701","39.39603","-101.05959","Colby","KS","Kansas","TRUE","","6500","5.2","20193","Thomas","{""20193"": ""99.25"", ""20153"": ""0.75""}","Thomas|Rawlins","20193|20153","FALSE","FALSE","America/Chicago"
-"67730","39.80575","-101.10589","Atwood","KS","Kansas","TRUE","","1707","1.7","20153","Rawlins","{""20153"": ""100""}","Rawlins","20153","FALSE","FALSE","America/Chicago"
-"67731","39.76268","-101.53621","Bird City","KS","Kansas","TRUE","","725","0.9","20023","Cheyenne","{""20023"": ""100""}","Cheyenne","20023","FALSE","FALSE","America/Chicago"
-"67732","39.4121","-101.36108","Brewster","KS","Kansas","TRUE","","468","0.6","20193","Thomas","{""20193"": ""83.98"", ""20181"": ""12.15"", ""20153"": ""3.87""}","Thomas|Sherman|Rawlins","20193|20181|20153","FALSE","FALSE","America/Chicago"
-"67733","39.31956","-101.51274","Edson","KS","Kansas","TRUE","","395","0.8","20181","Sherman","{""20181"": ""100""}","Sherman","20181","FALSE","FALSE","America/Denver"
-"67734","39.53258","-100.89443","Gem","KS","Kansas","TRUE","","329","1.4","20193","Thomas","{""20193"": ""85.16"", ""20153"": ""14.84""}","Thomas|Rawlins","20193|20153","FALSE","FALSE","America/Chicago"
-"67735","39.34596","-101.7586","Goodland","KS","Kansas","TRUE","","5120","3.2","20181","Sherman","{""20181"": ""100""}","Sherman","20181","FALSE","FALSE","America/Denver"
-"67736","38.84609","-100.4704","Gove","KS","Kansas","TRUE","","211","0.3","20063","Gove","{""20063"": ""100""}","Gove","20063","FALSE","FALSE","America/Chicago"
-"67737","39.12279","-100.47892","Grainfield","KS","Kansas","TRUE","","470","1.3","20063","Gove","{""20063"": ""84.01"", ""20179"": ""15.99""}","Gove|Sheridan","20063|20179","FALSE","FALSE","America/Chicago"
-"67738","38.98985","-100.64764","Grinnell","KS","Kansas","TRUE","","573","0.7","20063","Gove","{""20063"": ""75.38"", ""20179"": ""24.62""}","Gove|Sheridan","20063|20179","FALSE","FALSE","America/Chicago"
-"67739","39.88106","-100.81356","Herndon","KS","Kansas","TRUE","","186","0.5","20153","Rawlins","{""20153"": ""99.61"", ""20039"": ""0.39""}","Rawlins|Decatur","20153|20039","FALSE","FALSE","America/Chicago"
-"67740","39.37703","-100.35871","Hoxie","KS","Kansas","TRUE","","1603","1.4","20179","Sheridan","{""20179"": ""100""}","Sheridan","20179","FALSE","FALSE","America/Chicago"
-"67741","39.39495","-101.99935","Kanorado","KS","Kansas","TRUE","","382","0.8","20181","Sherman","{""20181"": ""97.85"", ""20023"": ""2.15""}","Sherman|Cheyenne","20181|20023","FALSE","FALSE","America/Denver"
-"67743","39.37301","-101.24712","Levant","KS","Kansas","TRUE","","130","0.5","20193","Thomas","{""20193"": ""83.54"", ""20153"": ""16.46""}","Thomas|Rawlins","20193|20153","FALSE","FALSE","America/Chicago"
-"67744","39.85385","-100.9352","Ludell","KS","Kansas","TRUE","","147","0.4","20153","Rawlins","{""20153"": ""100""}","Rawlins","20153","FALSE","FALSE","America/Chicago"
-"67745","39.80853","-101.34629","McDonald","KS","Kansas","TRUE","","404","0.6","20153","Rawlins","{""20153"": ""91.3"", ""20023"": ""8.7""}","Rawlins|Cheyenne","20153|20023","FALSE","FALSE","America/Chicago"
-"67747","39.04206","-101.06507","Monument","KS","Kansas","TRUE","","154","0.5","20109","Logan","{""20109"": ""100""}","Logan","20109","FALSE","FALSE","America/Chicago"
-"67748","39.04078","-100.85279","Oakley","KS","Kansas","TRUE","","2348","2.0","20109","Logan","{""20109"": ""85.97"", ""20193"": ""10.38"", ""20063"": ""3.66""}","Logan|Thomas|Gove","20109|20193|20063","FALSE","FALSE","America/Chicago"
-"67749","39.83379","-100.56487","Oberlin","KS","Kansas","TRUE","","2097","1.8","20039","Decatur","{""20039"": ""99.31"", ""20153"": ""0.69""}","Decatur|Rawlins","20039|20153","FALSE","FALSE","America/Chicago"
-"67751","39.12139","-100.35218","Park","KS","Kansas","TRUE","","239","1.0","20063","Gove","{""20063"": ""79.92"", ""20179"": ""20.08""}","Gove|Sheridan","20063|20179","FALSE","FALSE","America/Chicago"
-"67752","38.98802","-100.24408","Quinter","KS","Kansas","TRUE","","1399","1.9","20063","Gove","{""20063"": ""97.36"", ""20179"": ""2.64""}","Gove|Sheridan","20063|20179","FALSE","FALSE","America/Chicago"
-"67753","39.42672","-100.74615","Rexford","KS","Kansas","TRUE","","428","0.7","20193","Thomas","{""20193"": ""74.91"", ""20179"": ""19.06"", ""20153"": ""6.04""}","Thomas|Sheridan|Rawlins","20193|20179|20153","FALSE","FALSE","America/Chicago"
-"67756","39.79425","-101.8363","Saint Francis","KS","Kansas","TRUE","","1898","1.1","20023","Cheyenne","{""20023"": ""100""}","Cheyenne","20023","FALSE","FALSE","America/Chicago"
-"67757","39.5462","-100.6105","Selden","KS","Kansas","TRUE","","423","0.8","20179","Sheridan","{""20179"": ""83.2"", ""20039"": ""16.8""}","Sheridan|Decatur","20179|20039","FALSE","FALSE","America/Chicago"
-"67758","38.8842","-101.76404","Sharon Springs","KS","Kansas","TRUE","","1164","1.0","20199","Wallace","{""20199"": ""100""}","Wallace","20199","FALSE","FALSE","America/Denver"
-"67761","38.97082","-101.53108","Wallace","KS","Kansas","TRUE","","235","0.2","20199","Wallace","{""20199"": ""72.69"", ""20109"": ""27.31""}","Wallace|Logan","20199|20109","FALSE","FALSE","America/Denver"
-"67762","38.90425","-101.97257","Weskan","KS","Kansas","TRUE","","213","0.4","20199","Wallace","{""20199"": ""100""}","Wallace","20199","FALSE","FALSE","America/Denver"
-"67764","38.92284","-101.20644","Winona","KS","Kansas","TRUE","","429","0.3","20109","Logan","{""20109"": ""87.54"", ""20193"": ""12.46""}","Logan|Thomas","20109|20193","FALSE","FALSE","America/Chicago"
-"67801","37.72528","-100.05496","Dodge City","KS","Kansas","TRUE","","30954","31.6","20057","Ford","{""20057"": ""100""}","Ford","20057","FALSE","FALSE","America/Chicago"
-"67831","37.18657","-99.7922","Ashland","KS","Kansas","TRUE","","897","0.9","20025","Clark","{""20025"": ""100""}","Clark","20025","FALSE","FALSE","America/Chicago"
-"67834","37.5337","-99.63159","Bucklin","KS","Kansas","TRUE","","895","1.8","20057","Ford","{""20057"": ""96.58"", ""20025"": ""3.42""}","Ford|Clark","20057|20025","FALSE","FALSE","America/Chicago"
-"67835","37.97104","-100.32684","Cimarron","KS","Kansas","TRUE","","2849","2.5","20069","Gray","{""20069"": ""95.13"", ""20055"": ""4.87""}","Gray|Finney","20069|20055","FALSE","FALSE","America/Chicago"
-"67836","38.02158","-102.00699","Coolidge","KS","Kansas","TRUE","","201","1.3","20075","Hamilton","{""20075"": ""100""}","Hamilton","20075","FALSE","FALSE","America/Denver"
-"67837","37.55289","-100.66235","Copeland","KS","Kansas","TRUE","","997","1.6","20069","Gray","{""20069"": ""56.7"", ""20081"": ""38.32"", ""20119"": ""4.98""}","Gray|Haskell|Meade","20069|20081|20119","FALSE","FALSE","America/Chicago"
-"67838","38.0779","-101.13399","Deerfield","KS","Kansas","TRUE","","1121","3.8","20093","Kearny","{""20093"": ""99.08"", ""20055"": ""0.92""}","Kearny|Finney","20093|20055","FALSE","FALSE","America/Chicago"
-"67839","38.47189","-100.43143","Dighton","KS","Kansas","TRUE","","1270","0.9","20101","Lane","{""20101"": ""98.38"", ""20063"": ""1.62""}","Lane|Gove","20101|20063","FALSE","FALSE","America/Chicago"
-"67840","37.08605","-100.0261","Englewood","KS","Kansas","TRUE","","97","1.1","20025","Clark","{""20025"": ""100""}","Clark","20025","FALSE","FALSE","America/Chicago"
-"67841","37.62236","-100.24408","Ensign","KS","Kansas","TRUE","","318","1.3","20069","Gray","{""20069"": ""84.96"", ""20057"": ""15.04""}","Gray|Ford","20069|20057","FALSE","FALSE","America/Chicago"
-"67842","37.55924","-99.77454","Ford","KS","Kansas","TRUE","","401","1.0","20057","Ford","{""20057"": ""97.66"", ""20025"": ""2.34""}","Ford|Clark","20057|20025","FALSE","FALSE","America/Chicago"
-"67843","37.73029","-99.93688","Fort Dodge","KS","Kansas","TRUE","","168","375.6","20057","Ford","{""20057"": ""100""}","Ford","20057","FALSE","FALSE","America/Chicago"
-"67844","37.38547","-100.19477","Fowler","KS","Kansas","TRUE","","809","1.3","20119","Meade","{""20119"": ""91.39"", ""20057"": ""6.15"", ""20069"": ""2.46""}","Meade|Ford|Gray","20119|20057|20069","FALSE","FALSE","America/Chicago"
-"67846","38.03484","-100.76704","Garden City","KS","Kansas","TRUE","","33550","16.3","20055","Finney","{""20055"": ""99.92"", ""20069"": ""0.06"", ""20101"": ""0.02""}","Finney|Gray|Lane","20055|20069|20101","FALSE","FALSE","America/Chicago"
-"67849","38.14903","-99.71484","Hanston","KS","Kansas","TRUE","","394","1.2","20083","Hodgeman","{""20083"": ""100""}","Hodgeman","20083","FALSE","FALSE","America/Chicago"
-"67850","38.58679","-100.61417","Healy","KS","Kansas","TRUE","","337","1.0","20101","Lane","{""20101"": ""100""}","Lane","20101","FALSE","FALSE","America/Chicago"
-"67851","38.06266","-101.02606","Holcomb","KS","Kansas","TRUE","","2858","5.2","20055","Finney","{""20055"": ""100""}","Finney","20055","FALSE","FALSE","America/Chicago"
-"67853","37.88868","-100.51504","Ingalls","KS","Kansas","TRUE","","707","0.9","20069","Gray","{""20069"": ""95.35"", ""20055"": ""4.65""}","Gray|Finney","20069|20055","FALSE","FALSE","America/Chicago"
-"67854","38.09101","-100.01035","Jetmore","KS","Kansas","TRUE","","1306","0.9","20083","Hodgeman","{""20083"": ""100""}","Hodgeman","20083","FALSE","FALSE","America/Chicago"
-"67855","37.55289","-101.68846","Johnson","KS","Kansas","TRUE","","1763","1.5","20187","Stanton","{""20187"": ""98.48"", ""20129"": ""0.81"", ""20067"": ""0.71""}","Stanton|Morton|Grant","20187|20129|20067","FALSE","FALSE","America/Chicago"
-"67857","37.98697","-101.55079","Kendall","KS","Kansas","TRUE","","190","0.2","20075","Hamilton","{""20075"": ""63.79"", ""20093"": ""36.21""}","Hamilton|Kearny","20075|20093","FALSE","FALSE","America/Denver"
-"67859","37.23914","-100.77919","Kismet","KS","Kansas","TRUE","","726","1.6","20175","Seward","{""20175"": ""100""}","Seward","20175","FALSE","FALSE","America/Chicago"
-"67860","38.00295","-101.31027","Lakin","KS","Kansas","TRUE","","2598","1.7","20093","Kearny","{""20093"": ""100""}","Kearny","20093","FALSE","FALSE","America/Chicago"
-"67861","38.47221","-101.38519","Leoti","KS","Kansas","TRUE","","1966","1.3","20203","Wichita","{""20203"": ""99.39"", ""20109"": ""0.61""}","Wichita|Logan","20203|20109","FALSE","FALSE","America/Chicago"
-"67862","37.55287","-101.93978","Manter","KS","Kansas","TRUE","","311","0.5","20187","Stanton","{""20187"": ""94.37"", ""20129"": ""5.63""}","Stanton|Morton","20187|20129","FALSE","FALSE","America/Chicago"
-"67863","38.57311","-101.21651","Marienthal","KS","Kansas","TRUE","","215","0.5","20203","Wichita","{""20203"": ""87.54"", ""20171"": ""12.46""}","Wichita|Scott","20203|20171","FALSE","FALSE","America/Chicago"
-"67864","37.17639","-100.31692","Meade","KS","Kansas","TRUE","","1760","1.4","20119","Meade","{""20119"": ""100""}","Meade","20119","FALSE","FALSE","America/Chicago"
-"67865","37.43156","-99.96545","Minneola","KS","Kansas","TRUE","","1112","1.6","20025","Clark","{""20025"": ""86.22"", ""20057"": ""13.78""}","Clark|Ford","20025|20057","FALSE","FALSE","America/Chicago"
-"67867","37.5734","-100.45875","Montezuma","KS","Kansas","TRUE","","1880","3.3","20069","Gray","{""20069"": ""97.21"", ""20119"": ""2.79""}","Gray|Meade","20069|20119","FALSE","FALSE","America/Chicago"
-"67868","37.82114","-100.70879","Pierceville","KS","Kansas","TRUE","","237","1.6","20055","Finney","{""20055"": ""100""}","Finney","20055","FALSE","FALSE","America/Chicago"
-"67869","37.23871","-100.57264","Plains","KS","Kansas","TRUE","","1499","1.8","20119","Meade","{""20119"": ""96.65"", ""20175"": ""3.35""}","Meade|Seward","20119|20175","FALSE","FALSE","America/Chicago"
-"67870","37.52222","-101.00144","Satanta","KS","Kansas","TRUE","","1412","2.1","20081","Haskell","{""20081"": ""95.47"", ""20175"": ""4.53""}","Haskell|Seward","20081|20175","FALSE","FALSE","America/Chicago"
-"67871","38.51757","-100.90556","Scott City","KS","Kansas","TRUE","","4941","2.2","20171","Scott","{""20171"": ""98.49"", ""20109"": ""0.58"", ""20055"": ""0.52"", ""20203"": ""0.34"", ""20063"": ""0.06""}","Scott|Logan|Finney|Wichita|Gove","20171|20109|20055|20203|20063","FALSE","FALSE","America/Chicago"
-"67876","37.86154","-99.73664","Spearville","KS","Kansas","TRUE","","1376","2.2","20057","Ford","{""20057"": ""95.85"", ""20083"": ""4.15""}","Ford|Hodgeman","20057|20083","FALSE","FALSE","America/Chicago"
-"67877","37.54986","-100.84549","Sublette","KS","Kansas","TRUE","","2285","3.5","20081","Haskell","{""20081"": ""98.67"", ""20175"": ""1.33""}","Haskell|Seward","20081|20175","FALSE","FALSE","America/Chicago"
-"67878","38.00556","-101.82808","Syracuse","KS","Kansas","TRUE","","2311","1.2","20075","Hamilton","{""20075"": ""99.84"", ""20187"": ""0.16""}","Hamilton|Stanton","20075|20187","FALSE","FALSE","America/Denver"
-"67879","38.48065","-101.80605","Tribune","KS","Kansas","TRUE","","1185","0.6","20071","Greeley","{""20071"": ""100""}","Greeley","20071","FALSE","FALSE","America/Denver"
-"67880","37.58511","-101.31458","Ulysses","KS","Kansas","TRUE","","7534","4.6","20067","Grant","{""20067"": ""99.2"", ""20093"": ""0.8""}","Grant|Kearny","20067|20093","FALSE","FALSE","America/Chicago"
-"67882","37.80051","-99.88679","Wright","KS","Kansas","TRUE","","243","0.9","20057","Ford","{""20057"": ""100""}","Ford","20057","FALSE","FALSE","America/Chicago"
-"67901","37.10184","-100.90782","Liberal","KS","Kansas","TRUE","","21525","24.0","20175","Seward","{""20175"": ""99.71"", ""20189"": ""0.29""}","Seward|Stevens","20175|20189","FALSE","FALSE","America/Chicago"
-"67950","37.04802","-101.86802","Elkhart","KS","Kansas","TRUE","","1846","3.3","20129","Morton","{""20129"": ""94.29"", ""40139"": ""5.71""}","Morton|Texas","20129|40139","FALSE","FALSE","America/Chicago"
-"67951","37.16223","-101.35248","Hugoton","KS","Kansas","TRUE","","5083","3.8","20189","Stevens","{""20189"": ""100""}","Stevens","20189","FALSE","FALSE","America/Chicago"
-"67952","37.29674","-101.15009","Moscow","KS","Kansas","TRUE","","516","1.1","20189","Stevens","{""20189"": ""93.24"", ""20175"": ""6.76""}","Stevens|Seward","20189|20175","FALSE","FALSE","America/Chicago"
-"67953","37.25701","-101.8943","Richfield","KS","Kansas","TRUE","","115","0.2","20129","Morton","{""20129"": ""100""}","Morton","20129","FALSE","FALSE","America/Chicago"
-"67954","37.20867","-101.64224","Rolla","KS","Kansas","TRUE","","894","1.2","20129","Morton","{""20129"": ""97.43"", ""20189"": ""2.57""}","Morton|Stevens","20129|20189","FALSE","FALSE","America/Chicago"
-"68001","41.33482","-96.95891","Abie","NE","Nebraska","TRUE","","59","8.0","31023","Butler","{""31023"": ""100""}","Butler","31023","FALSE","FALSE","America/Chicago"
-"68002","41.49691","-96.33704","Arlington","NE","Nebraska","TRUE","","2527","13.5","31177","Washington","{""31177"": ""100""}","Washington","31177","FALSE","FALSE","America/Chicago"
-"68003","41.07768","-96.38545","Ashland","NE","Nebraska","TRUE","","4516","14.1","31155","Saunders","{""31155"": ""87.14"", ""31025"": ""12.86""}","Saunders|Cass","31155|31025","FALSE","FALSE","America/Chicago"
-"68004","42.01242","-96.6321","Bancroft","NE","Nebraska","TRUE","","975","4.8","31039","Cuming","{""31039"": ""100""}","Cuming","31039","FALSE","FALSE","America/Chicago"
-"68005","41.14193","-95.89228","Bellevue","NE","Nebraska","TRUE","","23157","497.5","31153","Sarpy","{""31153"": ""100""}","Sarpy","31153","FALSE","FALSE","America/Chicago"
-"68007","41.3698","-96.1914","Bennington","NE","Nebraska","TRUE","","12158","132.4","31055","Douglas","{""31055"": ""97.06"", ""31177"": ""2.94""}","Douglas|Washington","31055|31177","FALSE","FALSE","America/Chicago"
-"68008","41.54785","-96.16351","Blair","NE","Nebraska","TRUE","","12303","35.8","31177","Washington","{""31177"": ""100""}","Washington","31177","FALSE","FALSE","America/Chicago"
-"68010","41.25584","-96.13385","Boys Town","NE","Nebraska","TRUE","","864","229.9","31055","Douglas","{""31055"": ""100""}","Douglas","31055","FALSE","FALSE","America/Chicago"
-"68014","41.28226","-96.96178","Bruno","NE","Nebraska","TRUE","","246","2.5","31023","Butler","{""31023"": ""100""}","Butler","31023","FALSE","FALSE","America/Chicago"
-"68015","41.38558","-96.64342","Cedar Bluffs","NE","Nebraska","TRUE","","1124","8.0","31155","Saunders","{""31155"": ""100""}","Saunders","31155","FALSE","FALSE","America/Chicago"
-"68016","41.04333","-96.10424","Cedar Creek","NE","Nebraska","TRUE","","426","212.9","31025","Cass","{""31025"": ""100""}","Cass","31025","FALSE","FALSE","America/Chicago"
-"68017","41.05951","-96.65487","Ceresco","NE","Nebraska","TRUE","","1820","9.8","31155","Saunders","{""31155"": ""84.34"", ""31109"": ""15.66""}","Saunders|Lancaster","31155|31109","FALSE","FALSE","America/Chicago"
-"68018","41.30538","-96.61232","Colon","NE","Nebraska","TRUE","","528","4.7","31155","Saunders","{""31155"": ""100""}","Saunders","31155","FALSE","FALSE","America/Chicago"
-"68019","41.78424","-96.37371","Craig","NE","Nebraska","TRUE","","361","1.9","31021","Burt","{""31021"": ""100""}","Burt","31021","FALSE","FALSE","America/Chicago"
-"68020","41.97579","-96.25927","Decatur","NE","Nebraska","TRUE","","525","2.5","31021","Burt","{""31021"": ""96.13"", ""31173"": ""3.87""}","Burt|Thurston","31021|31173","FALSE","FALSE","America/Chicago"
-"68022","41.27845","-96.24594","Elkhorn","NE","Nebraska","TRUE","","25050","256.3","31055","Douglas","{""31055"": ""100""}","Douglas","31055","FALSE","FALSE","America/Chicago"
-"68023","41.44916","-96.0203","Fort Calhoun","NE","Nebraska","TRUE","","2316","25.4","31177","Washington","{""31177"": ""100""}","Washington","31177","FALSE","FALSE","America/Chicago"
-"68025","41.43794","-96.48933","Fremont","NE","Nebraska","TRUE","","30612","95.0","31053","Dodge","{""31053"": ""95.85"", ""31155"": ""4.15""}","Dodge|Saunders","31053|31155","FALSE","FALSE","America/Chicago"
-"68028","41.10634","-96.26083","Gretna","NE","Nebraska","TRUE","","14762","88.6","31153","Sarpy","{""31153"": ""100""}","Sarpy","31153","FALSE","FALSE","America/Chicago"
-"68029","41.6609","-96.28274","Herman","NE","Nebraska","TRUE","","788","3.6","31177","Washington","{""31177"": ""91.32"", ""31021"": ""8.68""}","Washington|Burt","31177|31021","FALSE","FALSE","America/Chicago"
-"68030","42.32178","-96.45023","Homer","NE","Nebraska","TRUE","","731","7.3","31043","Dakota","{""31043"": ""100""}","Dakota","31043","FALSE","FALSE","America/Chicago"
-"68031","41.64279","-96.53047","Hooper","NE","Nebraska","TRUE","","1569","5.0","31053","Dodge","{""31053"": ""95.24"", ""31177"": ""4.76""}","Dodge|Washington","31053|31177","FALSE","FALSE","America/Chicago"
-"68033","41.1307","-96.51674","Ithaca","NE","Nebraska","TRUE","","344","4.1","31155","Saunders","{""31155"": ""100""}","Saunders","31155","FALSE","FALSE","America/Chicago"
-"68034","41.4584","-96.21917","Kennard","NE","Nebraska","TRUE","","691","8.0","31177","Washington","{""31177"": ""100""}","Washington","31177","FALSE","FALSE","America/Chicago"
-"68036","41.39078","-96.95177","Linwood","NE","Nebraska","TRUE","","271","1.7","31023","Butler","{""31023"": ""84.83"", ""31155"": ""15.17""}","Butler|Saunders","31023|31155","FALSE","FALSE","America/Chicago"
-"68037","40.98582","-96.12729","Louisville","NE","Nebraska","TRUE","","2822","18.8","31025","Cass","{""31025"": ""100""}","Cass","31025","FALSE","FALSE","America/Chicago"
-"68038","41.95407","-96.44589","Lyons","NE","Nebraska","TRUE","","1261","4.9","31021","Burt","{""31021"": ""100""}","Burt","31021","FALSE","FALSE","America/Chicago"
-"68039","42.11408","-96.34461","Macy","NE","Nebraska","TRUE","","1389","12.3","31173","Thurston","{""31173"": ""100""}","Thurston","31173","FALSE","FALSE","America/Chicago"
-"68040","41.28446","-96.73674","Malmo","NE","Nebraska","TRUE","","431","4.7","31155","Saunders","{""31155"": ""100""}","Saunders","31155","FALSE","FALSE","America/Chicago"
-"68041","41.24826","-96.49825","Mead","NE","Nebraska","TRUE","","1144","11.7","31155","Saunders","{""31155"": ""100""}","Saunders","31155","FALSE","FALSE","America/Chicago"
-"68042","41.0967","-96.43835","Memphis","NE","Nebraska","TRUE","","74","43.7","31155","Saunders","{""31155"": ""100""}","Saunders","31155","FALSE","FALSE","America/Chicago"
-"68044","41.54914","-96.44413","Nickerson","NE","Nebraska","TRUE","","501","5.7","31053","Dodge","{""31053"": ""71.41"", ""31177"": ""28.59""}","Dodge|Washington","31053|31177","FALSE","FALSE","America/Chicago"
-"68045","41.8256","-96.49652","Oakland","NE","Nebraska","TRUE","","1982","8.1","31021","Burt","{""31021"": ""93.61"", ""31039"": ""6.39""}","Burt|Cuming","31021|31039","FALSE","FALSE","America/Chicago"
-"68046","41.12488","-96.05945","Papillion","NE","Nebraska","TRUE","","28174","402.0","31153","Sarpy","{""31153"": ""100""}","Sarpy","31153","FALSE","FALSE","America/Chicago"
-"68047","42.10665","-96.74049","Pender","NE","Nebraska","TRUE","","1785","5.5","31173","Thurston","{""31173"": ""85.32"", ""31039"": ""10.97"", ""31179"": ""3.72""}","Thurston|Cuming|Wayne","31173|31039|31179","FALSE","FALSE","America/Chicago"
-"68048","40.98141","-95.9344","Plattsmouth","NE","Nebraska","TRUE","","13015","52.2","31025","Cass","{""31025"": ""100""}","Cass","31025","FALSE","FALSE","America/Chicago"
-"68050","41.30711","-96.84113","Prague","NE","Nebraska","TRUE","","761","5.2","31155","Saunders","{""31155"": ""100""}","Saunders","31155","FALSE","FALSE","America/Chicago"
-"68055","42.05893","-96.47216","Rosalie","NE","Nebraska","TRUE","","282","2.1","31173","Thurston","{""31173"": ""100""}","Thurston","31173","FALSE","FALSE","America/Chicago"
-"68057","41.6596","-96.7192","Scribner","NE","Nebraska","TRUE","","1449","4.6","31053","Dodge","{""31053"": ""100""}","Dodge","31053","FALSE","FALSE","America/Chicago"
-"68058","41.00875","-96.24832","South Bend","NE","Nebraska","TRUE","","287","182.5","31025","Cass","{""31025"": ""100""}","Cass","31025","FALSE","FALSE","America/Chicago"
-"68059","41.06666","-96.15786","Springfield","NE","Nebraska","TRUE","","3371","26.8","31153","Sarpy","{""31153"": ""100""}","Sarpy","31153","FALSE","FALSE","America/Chicago"
-"68061","41.79941","-96.21152","Tekamah","NE","Nebraska","TRUE","","2384","6.1","31021","Burt","{""31021"": ""100""}","Burt","31021","FALSE","FALSE","America/Chicago"
-"68062","42.19429","-96.66909","Thurston","NE","Nebraska","TRUE","","309","2.8","31173","Thurston","{""31173"": ""100""}","Thurston","31173","FALSE","FALSE","America/Chicago"
-"68063","41.73059","-96.49563","Uehling","NE","Nebraska","TRUE","","271","59.7","31053","Dodge","{""31053"": ""100""}","Dodge","31053","FALSE","FALSE","America/Chicago"
-"68064","41.35106","-96.34991","Valley","NE","Nebraska","TRUE","","3501","28.3","31055","Douglas","{""31055"": ""95.97"", ""31155"": ""3.88"", ""31177"": ""0.15""}","Douglas|Saunders|Washington","31055|31155|31177","FALSE","FALSE","America/Chicago"
-"68065","41.07317","-96.83987","Valparaiso","NE","Nebraska","TRUE","","1530","6.5","31155","Saunders","{""31155"": ""74.97"", ""31109"": ""21.79"", ""31159"": ""3.25""}","Saunders|Lancaster|Seward","31155|31109|31159","FALSE","FALSE","America/Chicago"
-"68066","41.18598","-96.6243","Wahoo","NE","Nebraska","TRUE","","5537","23.6","31155","Saunders","{""31155"": ""100""}","Saunders","31155","FALSE","FALSE","America/Chicago"
-"68067","42.15289","-96.48393","Walthill","NE","Nebraska","TRUE","","1234","8.4","31173","Thurston","{""31173"": ""100""}","Thurston","31173","FALSE","FALSE","America/Chicago"
-"68068","41.39797","-96.20855","Washington","NE","Nebraska","TRUE","","85","192.0","31177","Washington","{""31177"": ""100""}","Washington","31177","FALSE","FALSE","America/Chicago"
-"68069","41.24286","-96.31621","Waterloo","NE","Nebraska","TRUE","","2831","37.4","31055","Douglas","{""31055"": ""98.98"", ""31153"": ""1.02""}","Douglas|Sarpy","31055|31153","FALSE","FALSE","America/Chicago"
-"68070","41.19219","-96.80242","Weston","NE","Nebraska","TRUE","","757","4.5","31155","Saunders","{""31155"": ""100""}","Saunders","31155","FALSE","FALSE","America/Chicago"
-"68071","42.23568","-96.47117","Winnebago","NE","Nebraska","TRUE","","2159","11.1","31173","Thurston","{""31173"": ""100""}","Thurston","31173","FALSE","FALSE","America/Chicago"
-"68072","41.60917","-96.50483","Winslow","NE","Nebraska","TRUE","","72","721.4","31053","Dodge","{""31053"": ""100""}","Dodge","31053","FALSE","FALSE","America/Chicago"
-"68073","41.25066","-96.40779","Yutan","NE","Nebraska","TRUE","","1963","17.6","31155","Saunders","{""31155"": ""100""}","Saunders","31155","FALSE","FALSE","America/Chicago"
-"68102","41.26204","-95.93306","Omaha","NE","Nebraska","TRUE","","8557","1843.1","31055","Douglas","{""31055"": ""100""}","Douglas","31055","FALSE","FALSE","America/Chicago"
-"68104","41.29498","-96.00128","Omaha","NE","Nebraska","TRUE","","36879","2161.1","31055","Douglas","{""31055"": ""100""}","Douglas","31055","FALSE","FALSE","America/Chicago"
-"68105","41.2405","-95.96416","Omaha","NE","Nebraska","TRUE","","23403","2400.8","31055","Douglas","{""31055"": ""100""}","Douglas","31055","FALSE","FALSE","America/Chicago"
-"68106","41.23893","-96.00218","Omaha","NE","Nebraska","TRUE","","20396","1562.1","31055","Douglas","{""31055"": ""100""}","Douglas","31055","FALSE","FALSE","America/Chicago"
-"68107","41.20841","-95.95167","Omaha","NE","Nebraska","TRUE","","30428","1781.3","31055","Douglas","{""31055"": ""100""}","Douglas","31055","FALSE","FALSE","America/Chicago"
-"68108","41.23741","-95.93055","Omaha","NE","Nebraska","TRUE","","14588","1746.8","31055","Douglas","{""31055"": ""100""}","Douglas","31055","FALSE","FALSE","America/Chicago"
-"68110","41.29845","-95.91168","Omaha","NE","Nebraska","TRUE","","9902","443.7","31055","Douglas","{""31055"": ""100""}","Douglas","31055","FALSE","FALSE","America/Chicago"
-"68111","41.29558","-95.96399","Omaha","NE","Nebraska","TRUE","","22724","1675.6","31055","Douglas","{""31055"": ""100""}","Douglas","31055","FALSE","FALSE","America/Chicago"
-"68112","41.37395","-95.9572","Omaha","NE","Nebraska","TRUE","","11363","289.5","31055","Douglas","{""31055"": ""99"", ""31177"": ""1""}","Douglas|Washington","31055|31177","FALSE","FALSE","America/Chicago"
-"68113","41.11759","-95.91126","Offutt Afb","NE","Nebraska","TRUE","","899","110.1","31153","Sarpy","{""31153"": ""100""}","Sarpy","31153","FALSE","FALSE","America/Chicago"
-"68114","41.26324","-96.05206","Omaha","NE","Nebraska","TRUE","","17715","1177.9","31055","Douglas","{""31055"": ""100""}","Douglas","31055","FALSE","FALSE","America/Chicago"
-"68116","41.29935","-96.16782","Omaha","NE","Nebraska","TRUE","","31318","1340.8","31055","Douglas","{""31055"": ""100""}","Douglas","31055","FALSE","FALSE","America/Chicago"
-"68117","41.20752","-96.00042","Omaha","NE","Nebraska","TRUE","","8684","736.0","31055","Douglas","{""31055"": ""100""}","Douglas","31055","FALSE","FALSE","America/Chicago"
-"68118","41.26318","-96.17743","Omaha","NE","Nebraska","TRUE","","10040","962.8","31055","Douglas","{""31055"": ""100""}","Douglas","31055","FALSE","FALSE","America/Chicago"
-"68122","41.36821","-96.05112","Omaha","NE","Nebraska","TRUE","","12111","241.8","31055","Douglas","{""31055"": ""97.2"", ""31177"": ""2.8""}","Douglas|Washington","31055|31177","FALSE","FALSE","America/Chicago"
-"68123","41.10147","-95.94331","Bellevue","NE","Nebraska","TRUE","","31646","532.9","31153","Sarpy","{""31153"": ""100""}","Sarpy","31153","FALSE","FALSE","America/Chicago"
-"68124","41.23528","-96.05163","Omaha","NE","Nebraska","TRUE","","15951","1073.6","31055","Douglas","{""31055"": ""100""}","Douglas","31055","FALSE","FALSE","America/Chicago"
-"68127","41.20544","-96.05066","Omaha","NE","Nebraska","TRUE","","22117","1283.3","31055","Douglas","{""31055"": ""100""}","Douglas","31055","FALSE","FALSE","America/Chicago"
-"68128","41.18135","-96.06582","La Vista","NE","Nebraska","TRUE","","19446","1172.2","31153","Sarpy","{""31153"": ""100""}","Sarpy","31153","FALSE","FALSE","America/Chicago"
-"68130","41.23422","-96.19586","Omaha","NE","Nebraska","TRUE","","21163","1076.3","31055","Douglas","{""31055"": ""100""}","Douglas","31055","FALSE","FALSE","America/Chicago"
-"68131","41.26452","-95.96445","Omaha","NE","Nebraska","TRUE","","13396","2540.5","31055","Douglas","{""31055"": ""100""}","Douglas","31055","FALSE","FALSE","America/Chicago"
-"68132","41.26466","-96.00236","Omaha","NE","Nebraska","TRUE","","14319","2101.6","31055","Douglas","{""31055"": ""100""}","Douglas","31055","FALSE","FALSE","America/Chicago"
-"68133","41.11357","-95.99941","Papillion","NE","Nebraska","TRUE","","11414","250.7","31153","Sarpy","{""31153"": ""100""}","Sarpy","31153","FALSE","FALSE","America/Chicago"
-"68134","41.29854","-96.05065","Omaha","NE","Nebraska","TRUE","","29660","1339.2","31055","Douglas","{""31055"": ""100""}","Douglas","31055","FALSE","FALSE","America/Chicago"
-"68135","41.20569","-96.19552","Omaha","NE","Nebraska","TRUE","","29663","1429.8","31055","Douglas","{""31055"": ""100""}","Douglas","31055","FALSE","FALSE","America/Chicago"
-"68136","41.16889","-96.18671","Omaha","NE","Nebraska","TRUE","","17967","815.5","31153","Sarpy","{""31153"": ""100""}","Sarpy","31153","FALSE","FALSE","America/Chicago"
-"68137","41.20586","-96.11886","Omaha","NE","Nebraska","TRUE","","25704","1197.3","31055","Douglas","{""31055"": ""100""}","Douglas","31055","FALSE","FALSE","America/Chicago"
-"68138","41.15606","-96.13645","Omaha","NE","Nebraska","TRUE","","12619","408.0","31153","Sarpy","{""31153"": ""100""}","Sarpy","31153","FALSE","FALSE","America/Chicago"
-"68142","41.36831","-96.10463","Omaha","NE","Nebraska","TRUE","","4590","94.5","31055","Douglas","{""31055"": ""92.48"", ""31177"": ""7.52""}","Douglas|Washington","31055|31177","FALSE","FALSE","America/Chicago"
-"68144","41.23486","-96.11919","Omaha","NE","Nebraska","TRUE","","23308","1203.1","31055","Douglas","{""31055"": ""100""}","Douglas","31055","FALSE","FALSE","America/Chicago"
-"68147","41.1761","-95.95671","Bellevue","NE","Nebraska","TRUE","","11274","862.0","31153","Sarpy","{""31153"": ""98.02"", ""31055"": ""1.98""}","Sarpy|Douglas","31153|31055","FALSE","FALSE","America/Chicago"
-"68152","41.36536","-95.99789","Omaha","NE","Nebraska","TRUE","","6629","187.8","31055","Douglas","{""31055"": ""95.03"", ""31177"": ""4.97""}","Douglas|Washington","31055|31177","FALSE","FALSE","America/Chicago"
-"68154","41.26475","-96.11565","Omaha","NE","Nebraska","TRUE","","22031","1297.4","31055","Douglas","{""31055"": ""100""}","Douglas","31055","FALSE","FALSE","America/Chicago"
-"68157","41.17845","-95.99693","Omaha","NE","Nebraska","TRUE","","6793","1044.5","31153","Sarpy","{""31153"": ""97.81"", ""31055"": ""2.19""}","Sarpy|Douglas","31153|31055","FALSE","FALSE","America/Chicago"
-"68164","41.29905","-96.10955","Omaha","NE","Nebraska","TRUE","","29285","1271.1","31055","Douglas","{""31055"": ""100""}","Douglas","31055","FALSE","FALSE","America/Chicago"
-"68178","41.26569","-95.94756","Omaha","NE","Nebraska","TRUE","","1538","5118.6","31055","Douglas","{""31055"": ""100""}","Douglas","31055","FALSE","FALSE","America/Chicago"
-"68301","40.46516","-96.52387","Adams","NE","Nebraska","TRUE","","1331","5.1","31067","Gage","{""31067"": ""81.72"", ""31109"": ""13.85"", ""31131"": ""4.43""}","Gage|Lancaster|Otoe","31067|31109|31131","FALSE","FALSE","America/Chicago"
-"68303","40.26603","-97.422","Alexandria","NE","Nebraska","TRUE","","313","2.0","31169","Thayer","{""31169"": ""100""}","Thayer","31169","FALSE","FALSE","America/Chicago"
-"68304","40.87932","-96.39239","Alvo","NE","Nebraska","TRUE","","295","5.2","31025","Cass","{""31025"": ""100""}","Cass","31025","FALSE","FALSE","America/Chicago"
-"68305","40.36566","-95.85854","Auburn","NE","Nebraska","TRUE","","4078","11.1","31127","Nemaha","{""31127"": ""100""}","Nemaha","31127","FALSE","FALSE","America/Chicago"
-"68307","40.78983","-96.1336","Avoca","NE","Nebraska","TRUE","","539","5.1","31025","Cass","{""31025"": ""80.19"", ""31131"": ""19.81""}","Cass|Otoe","31025|31131","FALSE","FALSE","America/Chicago"
-"68309","40.06006","-96.56862","Barneston","NE","Nebraska","TRUE","","107","22.6","31067","Gage","{""31067"": ""100""}","Gage","31067","FALSE","FALSE","America/Chicago"
-"68310","40.25097","-96.74955","Beatrice","NE","Nebraska","TRUE","","13593","25.2","31067","Gage","{""31067"": ""100""}","Gage","31067","FALSE","FALSE","America/Chicago"
-"68313","40.78197","-97.27235","Beaver Crossing","NE","Nebraska","TRUE","","721","3.7","31159","Seward","{""31159"": ""100""}","Seward","31159","FALSE","FALSE","America/Chicago"
-"68314","41.01276","-97.02761","Bee","NE","Nebraska","TRUE","","393","4.6","31159","Seward","{""31159"": ""100""}","Seward","31159","FALSE","FALSE","America/Chicago"
-"68315","40.24944","-97.54116","Belvidere","NE","Nebraska","TRUE","","100","1.0","31169","Thayer","{""31169"": ""100""}","Thayer","31169","FALSE","FALSE","America/Chicago"
-"68316","41.01776","-97.61813","Benedict","NE","Nebraska","TRUE","","556","3.9","31185","York","{""31185"": ""94.41"", ""31143"": ""5.59""}","York|Polk","31185|31143","FALSE","FALSE","America/Chicago"
-"68317","40.67176","-96.50733","Bennet","NE","Nebraska","TRUE","","2006","17.3","31109","Lancaster","{""31109"": ""98.86"", ""31131"": ""1.14""}","Lancaster|Otoe","31109|31131","FALSE","FALSE","America/Chicago"
-"68318","40.15391","-96.6401","Blue Springs","NE","Nebraska","TRUE","","484","3.9","31067","Gage","{""31067"": ""100""}","Gage","31067","FALSE","FALSE","America/Chicago"
-"68319","40.93082","-97.76149","Bradshaw","NE","Nebraska","TRUE","","559","3.1","31185","York","{""31185"": ""100""}","York","31185","FALSE","FALSE","America/Chicago"
-"68320","40.48626","-95.95518","Brock","NE","Nebraska","TRUE","","385","2.5","31127","Nemaha","{""31127"": ""100""}","Nemaha","31127","FALSE","FALSE","America/Chicago"
-"68321","40.3924","-95.69082","Brownville","NE","Nebraska","TRUE","","293","4.0","31127","Nemaha","{""31127"": ""100""}","Nemaha","31127","FALSE","FALSE","America/Chicago"
-"68322","40.33882","-97.55624","Bruning","NE","Nebraska","TRUE","","425","2.9","31169","Thayer","{""31169"": ""91.36"", ""31059"": ""8.64""}","Thayer|Fillmore","31169|31059","FALSE","FALSE","America/Chicago"
-"68323","40.14019","-96.38206","Burchard","NE","Nebraska","TRUE","","270","1.0","31133","Pawnee","{""31133"": ""100""}","Pawnee","31133","FALSE","FALSE","America/Chicago"
-"68324","40.56002","-96.29215","Burr","NE","Nebraska","TRUE","","141","1.9","31131","Otoe","{""31131"": ""100""}","Otoe","31131","FALSE","FALSE","America/Chicago"
-"68325","40.01683","-97.75788","Byron","NE","Nebraska","TRUE","","183","1.4","31169","Thayer","{""31169"": ""85.34"", ""20157"": ""14.66""}","Thayer|Republic","31169|20157","FALSE","FALSE","America/Chicago"
-"68326","40.28607","-97.68284","Carleton","NE","Nebraska","TRUE","","130","1.1","31169","Thayer","{""31169"": ""100""}","Thayer","31169","FALSE","FALSE","America/Chicago"
-"68327","40.0282","-97.61814","Chester","NE","Nebraska","TRUE","","312","3.8","31169","Thayer","{""31169"": ""100""}","Thayer","31169","FALSE","FALSE","America/Chicago"
-"68328","40.47743","-96.83764","Clatonia","NE","Nebraska","TRUE","","603","6.9","31067","Gage","{""31067"": ""100""}","Gage","31067","FALSE","FALSE","America/Chicago"
-"68329","40.50243","-96.16245","Cook","NE","Nebraska","TRUE","","655","3.5","31097","Johnson","{""31097"": ""80.24"", ""31131"": ""19.76""}","Johnson|Otoe","31097|31131","FALSE","FALSE","America/Chicago"
-"68331","40.472","-96.71059","Cortland","NE","Nebraska","TRUE","","1049","8.1","31067","Gage","{""31067"": ""100""}","Gage","31067","FALSE","FALSE","America/Chicago"
-"68332","40.31682","-96.40564","Crab Orchard","NE","Nebraska","TRUE","","113","1.0","31097","Johnson","{""31097"": ""100""}","Johnson","31097","FALSE","FALSE","America/Chicago"
-"68333","40.6233","-96.94775","Crete","NE","Nebraska","TRUE","","8631","28.8","31151","Saline","{""31151"": ""93.14"", ""31109"": ""6.86""}","Saline|Lancaster","31151|31109","FALSE","FALSE","America/Chicago"
-"68335","40.27698","-97.80302","Davenport","NE","Nebraska","TRUE","","610","3.1","31169","Thayer","{""31169"": ""84.17"", ""31129"": ""15.83""}","Thayer|Nuckolls","31169|31129","FALSE","FALSE","America/Chicago"
-"68336","40.96396","-96.68805","Davey","NE","Nebraska","TRUE","","745","14.7","31109","Lancaster","{""31109"": ""100""}","Lancaster","31109","FALSE","FALSE","America/Chicago"
-"68337","40.09667","-95.83811","Dawson","NE","Nebraska","TRUE","","310","1.7","31147","Richardson","{""31147"": ""100""}","Richardson","31147","FALSE","FALSE","America/Chicago"
-"68338","40.31047","-97.27153","Daykin","NE","Nebraska","TRUE","","347","2.3","31095","Jefferson","{""31095"": ""100""}","Jefferson","31095","FALSE","FALSE","America/Chicago"
-"68339","40.7337","-96.8646","Denton","NE","Nebraska","TRUE","","1104","9.8","31109","Lancaster","{""31109"": ""95.88"", ""31159"": ""4.12""}","Lancaster|Seward","31109|31159","FALSE","FALSE","America/Chicago"
-"68340","40.13255","-97.74719","Deshler","NE","Nebraska","TRUE","","982","6.0","31169","Thayer","{""31169"": ""100""}","Thayer","31169","FALSE","FALSE","America/Chicago"
-"68341","40.38379","-96.91376","De Witt","NE","Nebraska","TRUE","","1165","4.5","31151","Saline","{""31151"": ""70.12"", ""31067"": ""25.74"", ""31095"": ""4.13""}","Saline|Gage|Jefferson","31151|31067|31095","FALSE","FALSE","America/Chicago"
-"68342","40.10069","-96.94431","Diller","NE","Nebraska","TRUE","","568","3.1","31095","Jefferson","{""31095"": ""90"", ""31067"": ""10""}","Jefferson|Gage","31095|31067","FALSE","FALSE","America/Chicago"
-"68343","40.61869","-97.13424","Dorchester","NE","Nebraska","TRUE","","880","3.7","31151","Saline","{""31151"": ""97.81"", ""31159"": ""2.19""}","Saline|Seward","31151|31159","FALSE","FALSE","America/Chicago"
-"68344","40.56985","-96.40066","Douglas","NE","Nebraska","TRUE","","379","3.6","31131","Otoe","{""31131"": ""100""}","Otoe","31131","FALSE","FALSE","America/Chicago"
-"68345","40.03993","-96.028","Du Bois","NE","Nebraska","TRUE","","192","1.5","31133","Pawnee","{""31133"": ""91.45"", ""31147"": ""8.55""}","Pawnee|Richardson","31133|31147","FALSE","FALSE","America/Chicago"
-"68346","40.66383","-96.02894","Dunbar","NE","Nebraska","TRUE","","534","3.8","31131","Otoe","{""31131"": ""100""}","Otoe","31131","FALSE","FALSE","America/Chicago"
-"68347","40.80389","-96.42643","Eagle","NE","Nebraska","TRUE","","2716","30.6","31025","Cass","{""31025"": ""79.18"", ""31131"": ""17.51"", ""31109"": ""3.31""}","Cass|Otoe|Lancaster","31025|31131|31109","FALSE","FALSE","America/Chicago"
-"68348","40.30611","-96.13923","Elk Creek","NE","Nebraska","TRUE","","322","3.2","31097","Johnson","{""31097"": ""100""}","Johnson","31097","FALSE","FALSE","America/Chicago"
-"68349","40.82928","-96.29738","Elmwood","NE","Nebraska","TRUE","","1121","8.6","31025","Cass","{""31025"": ""100""}","Cass","31025","FALSE","FALSE","America/Chicago"
-"68350","40.04461","-97.0763","Endicott","NE","Nebraska","TRUE","","223","3.5","31095","Jefferson","{""31095"": ""100""}","Jefferson","31095","FALSE","FALSE","America/Chicago"
-"68351","40.65712","-97.42865","Exeter","NE","Nebraska","TRUE","","838","3.5","31059","Fillmore","{""31059"": ""91.21"", ""31185"": ""8.79""}","Fillmore|York","31059|31185","FALSE","FALSE","America/Chicago"
-"68352","40.1458","-97.22032","Fairbury","NE","Nebraska","TRUE","","4829","6.4","31095","Jefferson","{""31095"": ""100""}","Jefferson","31095","FALSE","FALSE","America/Chicago"
-"68354","40.63781","-97.57833","Fairmont","NE","Nebraska","TRUE","","954","3.7","31059","Fillmore","{""31059"": ""96.07"", ""31185"": ""3.93""}","Fillmore|York","31059|31185","FALSE","FALSE","America/Chicago"
-"68355","40.11509","-95.56406","Falls City","NE","Nebraska","TRUE","","4802","12.3","31147","Richardson","{""31147"": ""100""}","Richardson","31147","FALSE","FALSE","America/Chicago"
-"68357","40.31658","-96.55112","Filley","NE","Nebraska","TRUE","","319","2.4","31067","Gage","{""31067"": ""100""}","Gage","31067","FALSE","FALSE","America/Chicago"
-"68358","40.53148","-96.60805","Firth","NE","Nebraska","TRUE","","1891","15.2","31109","Lancaster","{""31109"": ""79.33"", ""31067"": ""20.67""}","Lancaster|Gage","31109|31067","FALSE","FALSE","America/Chicago"
-"68359","40.62958","-97.28532","Friend","NE","Nebraska","TRUE","","1630","5.1","31151","Saline","{""31151"": ""85.49"", ""31159"": ""14.51""}","Saline|Seward","31151|31159","FALSE","FALSE","America/Chicago"
-"68360","40.94549","-96.95509","Garland","NE","Nebraska","TRUE","","442","7.8","31159","Seward","{""31159"": ""100""}","Seward","31159","FALSE","FALSE","America/Chicago"
-"68361","40.50993","-97.60023","Geneva","NE","Nebraska","TRUE","","2382","9.5","31059","Fillmore","{""31059"": ""100""}","Fillmore","31059","FALSE","FALSE","America/Chicago"
-"68362","40.15667","-97.44173","Gilead","NE","Nebraska","TRUE","","38","3.0","31169","Thayer","{""31169"": ""100""}","Thayer","31169","FALSE","FALSE","America/Chicago"
-"68364","40.83266","-97.2189","Goehner","NE","Nebraska","TRUE","","108","312.3","31159","Seward","{""31159"": ""100""}","Seward","31159","FALSE","FALSE","America/Chicago"
-"68365","40.60962","-97.72883","Grafton","NE","Nebraska","TRUE","","301","2.1","31059","Fillmore","{""31059"": ""100""}","Fillmore","31059","FALSE","FALSE","America/Chicago"
-"68366","40.97385","-96.43815","Greenwood","NE","Nebraska","TRUE","","990","7.4","31025","Cass","{""31025"": ""90.93"", ""31109"": ""9.07""}","Cass|Lancaster","31025|31109","FALSE","FALSE","America/Chicago"
-"68367","41.03581","-97.39728","Gresham","NE","Nebraska","TRUE","","305","1.7","31185","York","{""31185"": ""70.07"", ""31159"": ""17.35"", ""31143"": ""12.58""}","York|Seward|Polk","31185|31159|31143","FALSE","FALSE","America/Chicago"
-"68368","40.55868","-96.82094","Hallam","NE","Nebraska","TRUE","","518","5.6","31109","Lancaster","{""31109"": ""100""}","Lancaster","31109","FALSE","FALSE","America/Chicago"
-"68370","40.13915","-97.55057","Hebron","NE","Nebraska","TRUE","","1975","4.5","31169","Thayer","{""31169"": ""100""}","Thayer","31169","FALSE","FALSE","America/Chicago"
-"68371","40.77226","-97.78919","Henderson","NE","Nebraska","TRUE","","1498","7.4","31185","York","{""31185"": ""91.89"", ""31081"": ""8.11""}","York|Hamilton","31185|31081","FALSE","FALSE","America/Chicago"
-"68372","40.60813","-96.60353","Hickman","NE","Nebraska","TRUE","","3980","42.8","31109","Lancaster","{""31109"": ""100""}","Lancaster","31109","FALSE","FALSE","America/Chicago"
-"68375","40.03551","-97.45673","Hubbell","NE","Nebraska","TRUE","","123","1.2","31169","Thayer","{""31169"": ""100""}","Thayer","31169","FALSE","FALSE","America/Chicago"
-"68376","40.17438","-95.945","Humboldt","NE","Nebraska","TRUE","","1461","3.8","31147","Richardson","{""31147"": ""93.01"", ""31127"": ""4.78"", ""31133"": ""2.21""}","Richardson|Nemaha|Pawnee","31147|31127|31133","FALSE","FALSE","America/Chicago"
-"68377","40.21421","-97.01842","Jansen","NE","Nebraska","TRUE","","397","2.9","31095","Jefferson","{""31095"": ""100""}","Jefferson","31095","FALSE","FALSE","America/Chicago"
-"68378","40.38339","-96.02534","Johnson","NE","Nebraska","TRUE","","656","3.9","31127","Nemaha","{""31127"": ""96.03"", ""31097"": ""3.97""}","Nemaha|Johnson","31127|31097","FALSE","FALSE","America/Chicago"
-"68379","40.51983","-95.86744","Julian","NE","Nebraska","TRUE","","56","246.2","31127","Nemaha","{""31127"": ""100""}","Nemaha","31127","FALSE","FALSE","America/Chicago"
-"68380","40.24083","-96.39323","Lewiston","NE","Nebraska","TRUE","","77","7.4","31133","Pawnee","{""31133"": ""100""}","Pawnee","31133","FALSE","FALSE","America/Chicago"
-"68381","40.08011","-96.48041","Liberty","NE","Nebraska","TRUE","","194","1.2","31067","Gage","{""31067"": ""84.34"", ""31133"": ""15.66""}","Gage|Pawnee","31067|31133","FALSE","FALSE","America/Chicago"
-"68382","40.5973","-96.02408","Lorton","NE","Nebraska","TRUE","","24","230.6","31131","Otoe","{""31131"": ""100""}","Otoe","31131","FALSE","FALSE","America/Chicago"
-"68401","40.73785","-97.59167","McCool Junction","NE","Nebraska","TRUE","","699","6.1","31185","York","{""31185"": ""100""}","York","31185","FALSE","FALSE","America/Chicago"
-"68402","40.90778","-96.85713","Malcolm","NE","Nebraska","TRUE","","1229","14.3","31109","Lancaster","{""31109"": ""100""}","Lancaster","31109","FALSE","FALSE","America/Chicago"
-"68403","40.92071","-96.16801","Manley","NE","Nebraska","TRUE","","181","109.1","31025","Cass","{""31025"": ""100""}","Cass","31025","FALSE","FALSE","America/Chicago"
-"68404","40.61631","-96.75073","Martell","NE","Nebraska","TRUE","","890","7.0","31109","Lancaster","{""31109"": ""100""}","Lancaster","31109","FALSE","FALSE","America/Chicago"
-"68405","40.76579","-97.07264","Milford","NE","Nebraska","TRUE","","3515","17.2","31159","Seward","{""31159"": ""100""}","Seward","31159","FALSE","FALSE","America/Chicago"
-"68406","40.49989","-97.38536","Milligan","NE","Nebraska","TRUE","","399","2.9","31059","Fillmore","{""31059"": ""88.65"", ""31151"": ""11.35""}","Fillmore|Saline","31059|31151","FALSE","FALSE","America/Chicago"
-"68407","40.91922","-96.26654","Murdock","NE","Nebraska","TRUE","","585","4.9","31025","Cass","{""31025"": ""100""}","Cass","31025","FALSE","FALSE","America/Chicago"
-"68409","40.90812","-95.95152","Murray","NE","Nebraska","TRUE","","817","10.1","31025","Cass","{""31025"": ""100""}","Cass","31025","FALSE","FALSE","America/Chicago"
-"68410","40.6375","-95.88476","Nebraska City","NE","Nebraska","TRUE","","8763","22.3","31131","Otoe","{""31131"": ""100""}","Otoe","31131","FALSE","FALSE","America/Chicago"
-"68413","40.83779","-96.01229","Nehawka","NE","Nebraska","TRUE","","627","4.8","31025","Cass","{""31025"": ""94"", ""31131"": ""6""}","Cass|Otoe","31025|31131","FALSE","FALSE","America/Chicago"
-"68414","40.30462","-95.67043","Nemaha","NE","Nebraska","TRUE","","221","1.7","31127","Nemaha","{""31127"": ""100""}","Nemaha","31127","FALSE","FALSE","America/Chicago"
-"68415","40.06372","-96.8205","Odell","NE","Nebraska","TRUE","","652","3.5","31067","Gage","{""31067"": ""100""}","Gage","31067","FALSE","FALSE","America/Chicago"
-"68416","40.41036","-97.45682","Ohiowa","NE","Nebraska","TRUE","","197","1.7","31059","Fillmore","{""31059"": ""100""}","Fillmore","31059","FALSE","FALSE","America/Chicago"
-"68417","40.73642","-96.08861","Otoe","NE","Nebraska","TRUE","","350","5.6","31131","Otoe","{""31131"": ""100""}","Otoe","31131","FALSE","FALSE","America/Chicago"
-"68418","40.69487","-96.38857","Palmyra","NE","Nebraska","TRUE","","1133","6.7","31131","Otoe","{""31131"": ""100""}","Otoe","31131","FALSE","FALSE","America/Chicago"
-"68419","40.5998","-96.51117","Panama","NE","Nebraska","TRUE","","236","321.2","31109","Lancaster","{""31109"": ""100""}","Lancaster","31109","FALSE","FALSE","America/Chicago"
-"68420","40.09409","-96.20202","Pawnee City","NE","Nebraska","TRUE","","1295","3.7","31133","Pawnee","{""31133"": ""100""}","Pawnee","31133","FALSE","FALSE","America/Chicago"
-"68421","40.49007","-95.74118","Peru","NE","Nebraska","TRUE","","1246","10.6","31127","Nemaha","{""31127"": ""100""}","Nemaha","31127","FALSE","FALSE","America/Chicago"
-"68422","40.39019","-96.69598","Pickrell","NE","Nebraska","TRUE","","510","4.2","31067","Gage","{""31067"": ""100""}","Gage","31067","FALSE","FALSE","America/Chicago"
-"68423","40.80269","-96.95214","Pleasant Dale","NE","Nebraska","TRUE","","1043","7.5","31159","Seward","{""31159"": ""100""}","Seward","31159","FALSE","FALSE","America/Chicago"
-"68424","40.29705","-97.01681","Plymouth","NE","Nebraska","TRUE","","649","3.9","31095","Jefferson","{""31095"": ""100""}","Jefferson","31095","FALSE","FALSE","America/Chicago"
-"68428","40.96968","-96.79448","Raymond","NE","Nebraska","TRUE","","1476","11.0","31109","Lancaster","{""31109"": ""93.89"", ""31159"": ""6.11""}","Lancaster|Seward","31109|31159","FALSE","FALSE","America/Chicago"
-"68430","40.66862","-96.66342","Roca","NE","Nebraska","TRUE","","1623","14.2","31109","Lancaster","{""31109"": ""100""}","Lancaster","31109","FALSE","FALSE","America/Chicago"
-"68431","40.06947","-95.43349","Rulo","NE","Nebraska","TRUE","","270","2.2","31147","Richardson","{""31147"": ""100""}","Richardson","31147","FALSE","FALSE","America/Chicago"
-"68433","40.05169","-95.73584","Salem","NE","Nebraska","TRUE","","194","1.5","31147","Richardson","{""31147"": ""100""}","Richardson","31147","FALSE","FALSE","America/Chicago"
-"68434","40.90874","-97.12035","Seward","NE","Nebraska","TRUE","","8558","20.8","31159","Seward","{""31159"": ""100""}","Seward","31159","FALSE","FALSE","America/Chicago"
-"68436","40.42383","-97.73942","Shickley","NE","Nebraska","TRUE","","453","1.9","31059","Fillmore","{""31059"": ""100""}","Fillmore","31059","FALSE","FALSE","America/Chicago"
-"68437","40.23166","-95.64577","Shubert","NE","Nebraska","TRUE","","234","3.0","31147","Richardson","{""31147"": ""100""}","Richardson","31147","FALSE","FALSE","America/Chicago"
-"68438","40.62657","-96.74448","Sprague","NE","Nebraska","TRUE","","91","361.6","31109","Lancaster","{""31109"": ""100""}","Lancaster","31109","FALSE","FALSE","America/Chicago"
-"68439","41.00107","-97.20883","Staplehurst","NE","Nebraska","TRUE","","676","7.2","31159","Seward","{""31159"": ""100""}","Seward","31159","FALSE","FALSE","America/Chicago"
-"68440","40.05687","-97.00982","Steele City","NE","Nebraska","TRUE","","93","1.7","31095","Jefferson","{""31095"": ""100""}","Jefferson","31095","FALSE","FALSE","America/Chicago"
-"68441","40.22526","-96.23816","Steinauer","NE","Nebraska","TRUE","","218","1.3","31133","Pawnee","{""31133"": ""100""}","Pawnee","31133","FALSE","FALSE","America/Chicago"
-"68442","40.23865","-95.77321","Stella","NE","Nebraska","TRUE","","344","3.5","31147","Richardson","{""31147"": ""88.82"", ""31127"": ""11.18""}","Richardson|Nemaha","31147|31127","FALSE","FALSE","America/Chicago"
-"68443","40.45213","-96.36807","Sterling","NE","Nebraska","TRUE","","875","3.3","31097","Johnson","{""31097"": ""100""}","Johnson","31097","FALSE","FALSE","America/Chicago"
-"68444","40.41138","-97.57706","Strang","NE","Nebraska","TRUE","","56","0.8","31059","Fillmore","{""31059"": ""100""}","Fillmore","31059","FALSE","FALSE","America/Chicago"
-"68445","40.38926","-97.07915","Swanton","NE","Nebraska","TRUE","","165","2.9","31151","Saline","{""31151"": ""100""}","Saline","31151","FALSE","FALSE","America/Chicago"
-"68446","40.65328","-96.17511","Syracuse","NE","Nebraska","TRUE","","2786","10.7","31131","Otoe","{""31131"": ""100""}","Otoe","31131","FALSE","FALSE","America/Chicago"
-"68447","40.20495","-96.07629","Table Rock","NE","Nebraska","TRUE","","586","4.4","31133","Pawnee","{""31133"": ""95.91"", ""31097"": ""4.09""}","Pawnee|Johnson","31133|31097","FALSE","FALSE","America/Chicago"
-"68448","40.55163","-96.02557","Talmage","NE","Nebraska","TRUE","","380","4.3","31131","Otoe","{""31131"": ""100""}","Otoe","31131","FALSE","FALSE","America/Chicago"
-"68450","40.36099","-96.22739","Tecumseh","NE","Nebraska","TRUE","","3178","9.8","31097","Johnson","{""31097"": ""100""}","Johnson","31097","FALSE","FALSE","America/Chicago"
-"68452","40.39446","-97.85229","Ong","NE","Nebraska","TRUE","","91","2.3","31035","Clay","{""31035"": ""100""}","Clay","31035","FALSE","FALSE","America/Chicago"
-"68453","40.41597","-97.3278","Tobias","NE","Nebraska","TRUE","","314","2.0","31151","Saline","{""31151"": ""91.45"", ""31059"": ""8.55""}","Saline|Fillmore","31151|31059","FALSE","FALSE","America/Chicago"
-"68454","40.69187","-96.28849","Unadilla","NE","Nebraska","TRUE","","731","5.1","31131","Otoe","{""31131"": ""100""}","Otoe","31131","FALSE","FALSE","America/Chicago"
-"68455","40.82569","-95.90087","Union","NE","Nebraska","TRUE","","398","4.4","31025","Cass","{""31025"": ""100""}","Cass","31025","FALSE","FALSE","America/Chicago"
-"68456","40.91123","-97.31435","Utica","NE","Nebraska","TRUE","","1277","9.0","31159","Seward","{""31159"": ""100""}","Seward","31159","FALSE","FALSE","America/Chicago"
-"68457","40.15328","-95.70736","Verdon","NE","Nebraska","TRUE","","422","4.1","31147","Richardson","{""31147"": ""100""}","Richardson","31147","FALSE","FALSE","America/Chicago"
-"68458","40.23004","-96.50321","Virginia","NE","Nebraska","TRUE","","169","2.8","31067","Gage","{""31067"": ""100""}","Gage","31067","FALSE","FALSE","America/Chicago"
-"68460","40.89459","-97.43027","Waco","NE","Nebraska","TRUE","","727","2.9","31185","York","{""31185"": ""100""}","York","31185","FALSE","FALSE","America/Chicago"
-"68461","40.76645","-96.51516","Walton","NE","Nebraska","TRUE","","855","13.7","31109","Lancaster","{""31109"": ""100""}","Lancaster","31109","FALSE","FALSE","America/Chicago"
-"68462","40.94907","-96.52639","Waverly","NE","Nebraska","TRUE","","4415","30.8","31109","Lancaster","{""31109"": ""99.22"", ""31025"": ""0.78""}","Lancaster|Cass","31109|31025","FALSE","FALSE","America/Chicago"
-"68463","40.87532","-96.13419","Weeping Water","NE","Nebraska","TRUE","","1242","8.4","31025","Cass","{""31025"": ""100""}","Cass","31025","FALSE","FALSE","America/Chicago"
-"68464","40.4286","-97.19869","Western","NE","Nebraska","TRUE","","509","2.4","31151","Saline","{""31151"": ""100""}","Saline","31151","FALSE","FALSE","America/Chicago"
-"68465","40.49083","-97.02078","Wilber","NE","Nebraska","TRUE","","2212","8.5","31151","Saline","{""31151"": ""98.67"", ""31067"": ""1.33""}","Saline|Gage","31151|31067","FALSE","FALSE","America/Chicago"
-"68466","40.07023","-96.64125","Wymore","NE","Nebraska","TRUE","","1873","7.4","31067","Gage","{""31067"": ""100""}","Gage","31067","FALSE","FALSE","America/Chicago"
-"68467","40.8664","-97.59544","York","NE","Nebraska","TRUE","","9400","20.1","31185","York","{""31185"": ""100""}","York","31185","FALSE","FALSE","America/Chicago"
-"68502","40.78539","-96.69847","Lincoln","NE","Nebraska","TRUE","","25894","1691.6","31109","Lancaster","{""31109"": ""100""}","Lancaster","31109","FALSE","FALSE","America/Chicago"
-"68503","40.82458","-96.67403","Lincoln","NE","Nebraska","TRUE","","15557","2027.5","31109","Lancaster","{""31109"": ""100""}","Lancaster","31109","FALSE","FALSE","America/Chicago"
-"68504","40.8543","-96.66057","Lincoln","NE","Nebraska","TRUE","","17260","996.8","31109","Lancaster","{""31109"": ""100""}","Lancaster","31109","FALSE","FALSE","America/Chicago"
-"68505","40.82486","-96.61928","Lincoln","NE","Nebraska","TRUE","","15947","1642.7","31109","Lancaster","{""31109"": ""100""}","Lancaster","31109","FALSE","FALSE","America/Chicago"
-"68506","40.78388","-96.63864","Lincoln","NE","Nebraska","TRUE","","29415","1579.3","31109","Lancaster","{""31109"": ""100""}","Lancaster","31109","FALSE","FALSE","America/Chicago"
-"68507","40.85892","-96.61486","Lincoln","NE","Nebraska","TRUE","","15302","574.2","31109","Lancaster","{""31109"": ""100""}","Lancaster","31109","FALSE","FALSE","America/Chicago"
-"68508","40.8183","-96.70587","Lincoln","NE","Nebraska","TRUE","","16638","2174.8","31109","Lancaster","{""31109"": ""100""}","Lancaster","31109","FALSE","FALSE","America/Chicago"
-"68510","40.80652","-96.63597","Lincoln","NE","Nebraska","TRUE","","21127","1402.3","31109","Lancaster","{""31109"": ""100""}","Lancaster","31109","FALSE","FALSE","America/Chicago"
-"68512","40.73876","-96.70755","Lincoln","NE","Nebraska","TRUE","","13822","587.4","31109","Lancaster","{""31109"": ""100""}","Lancaster","31109","FALSE","FALSE","America/Chicago"
-"68514","40.92554","-96.65156","Lincoln","NE","Nebraska","TRUE","","74","5.5","31109","Lancaster","{""31109"": ""100""}","Lancaster","31109","FALSE","FALSE","America/Chicago"
-"68516","40.73488","-96.64258","Lincoln","NE","Nebraska","TRUE","","45587","924.9","31109","Lancaster","{""31109"": ""100""}","Lancaster","31109","FALSE","FALSE","America/Chicago"
-"68517","40.93398","-96.60554","Lincoln","NE","Nebraska","TRUE","","545","7.9","31109","Lancaster","{""31109"": ""100""}","Lancaster","31109","FALSE","FALSE","America/Chicago"
-"68520","40.79968","-96.55148","Lincoln","NE","Nebraska","TRUE","","2411","84.0","31109","Lancaster","{""31109"": ""100""}","Lancaster","31109","FALSE","FALSE","America/Chicago"
-"68521","40.86613","-96.70947","Lincoln","NE","Nebraska","TRUE","","35592","950.6","31109","Lancaster","{""31109"": ""100""}","Lancaster","31109","FALSE","FALSE","America/Chicago"
-"68522","40.7887","-96.76209","Lincoln","NE","Nebraska","TRUE","","13329","477.4","31109","Lancaster","{""31109"": ""100""}","Lancaster","31109","FALSE","FALSE","America/Chicago"
-"68523","40.73596","-96.7584","Lincoln","NE","Nebraska","TRUE","","1531","37.0","31109","Lancaster","{""31109"": ""100""}","Lancaster","31109","FALSE","FALSE","America/Chicago"
-"68524","40.87113","-96.80537","Lincoln","NE","Nebraska","TRUE","","6305","79.5","31109","Lancaster","{""31109"": ""100""}","Lancaster","31109","FALSE","FALSE","America/Chicago"
-"68526","40.73235","-96.58367","Lincoln","NE","Nebraska","TRUE","","6953","237.9","31109","Lancaster","{""31109"": ""100""}","Lancaster","31109","FALSE","FALSE","America/Chicago"
-"68527","40.84711","-96.52423","Lincoln","NE","Nebraska","TRUE","","755","10.8","31109","Lancaster","{""31109"": ""100""}","Lancaster","31109","FALSE","FALSE","America/Chicago"
-"68528","40.82024","-96.81943","Lincoln","NE","Nebraska","TRUE","","6340","127.3","31109","Lancaster","{""31109"": ""100""}","Lancaster","31109","FALSE","FALSE","America/Chicago"
-"68531","40.90141","-96.72324","Lincoln","NE","Nebraska","TRUE","","528","50.2","31109","Lancaster","{""31109"": ""100""}","Lancaster","31109","FALSE","FALSE","America/Chicago"
-"68532","40.79201","-96.84265","Lincoln","NE","Nebraska","TRUE","","569","24.9","31109","Lancaster","{""31109"": ""100""}","Lancaster","31109","FALSE","FALSE","America/Chicago"
-"68601","41.45254","-97.40235","Columbus","NE","Nebraska","TRUE","","28642","38.3","31141","Platte","{""31141"": ""96.22"", ""31143"": ""1.52"", ""31037"": ""1.23"", ""31023"": ""1.03""}","Platte|Polk|Colfax|Butler","31141|31143|31037|31023","FALSE","FALSE","America/Chicago"
-"68620","41.73403","-98.06991","Albion","NE","Nebraska","TRUE","","2772","3.5","31011","Boone","{""31011"": ""100""}","Boone","31011","FALSE","FALSE","America/Chicago"
-"68621","41.48745","-96.6364","Ames","NE","Nebraska","TRUE","","516","6.2","31053","Dodge","{""31053"": ""100""}","Dodge","31053","FALSE","FALSE","America/Chicago"
-"68622","41.94182","-98.58052","Bartlett","NE","Nebraska","TRUE","","222","0.5","31183","Wheeler","{""31183"": ""100""}","Wheeler","31183","FALSE","FALSE","America/Chicago"
-"68623","41.44401","-98.15026","Belgrade","NE","Nebraska","TRUE","","358","1.6","31125","Nance","{""31125"": ""100""}","Nance","31125","FALSE","FALSE","America/Chicago"
-"68624","41.35174","-97.23428","Bellwood","NE","Nebraska","TRUE","","997","5.6","31023","Butler","{""31023"": ""100""}","Butler","31023","FALSE","FALSE","America/Chicago"
-"68626","41.16707","-96.99433","Brainard","NE","Nebraska","TRUE","","615","3.8","31023","Butler","{""31023"": ""100""}","Butler","31023","FALSE","FALSE","America/Chicago"
-"68627","41.5544","-98.16238","Cedar Rapids","NE","Nebraska","TRUE","","675","2.0","31011","Boone","{""31011"": ""100""}","Boone","31011","FALSE","FALSE","America/Chicago"
-"68628","41.22073","-97.83968","Clarks","NE","Nebraska","TRUE","","820","3.0","31121","Merrick","{""31121"": ""85.84"", ""31143"": ""10.77"", ""31081"": ""3.39""}","Merrick|Polk|Hamilton","31121|31143|31081","FALSE","FALSE","America/Chicago"
-"68629","41.71607","-97.12874","Clarkson","NE","Nebraska","TRUE","","1179","3.2","31037","Colfax","{""31037"": ""86.38"", ""31167"": ""13.62""}","Colfax|Stanton","31037|31167","FALSE","FALSE","America/Chicago"
-"68631","41.68978","-97.34907","Creston","NE","Nebraska","TRUE","","487","4.5","31141","Platte","{""31141"": ""95.63"", ""31167"": ""4.38""}","Platte|Stanton","31141|31167","FALSE","FALSE","America/Chicago"
-"68632","41.24724","-97.13113","David City","NE","Nebraska","TRUE","","3797","9.5","31023","Butler","{""31023"": ""100""}","Butler","31023","FALSE","FALSE","America/Chicago"
-"68633","41.70515","-96.89691","Dodge","NE","Nebraska","TRUE","","1392","5.2","31053","Dodge","{""31053"": ""76.51"", ""31039"": ""14.5"", ""31037"": ""8.99""}","Dodge|Cuming|Colfax","31053|31039|31037","FALSE","FALSE","America/Chicago"
-"68634","41.38989","-97.49306","Duncan","NE","Nebraska","TRUE","","531","499.0","31141","Platte","{""31141"": ""100""}","Platte","31141","FALSE","FALSE","America/Chicago"
-"68635","41.08247","-97.01491","Dwight","NE","Nebraska","TRUE","","507","3.6","31023","Butler","{""31023"": ""100""}","Butler","31023","FALSE","FALSE","America/Chicago"
-"68636","42.00875","-98.15375","Elgin","NE","Nebraska","TRUE","","1324","2.3","31003","Antelope","{""31003"": ""97.77"", ""31183"": ""2.23""}","Antelope|Wheeler","31003|31183","FALSE","FALSE","America/Chicago"
-"68637","41.80528","-98.65848","Ericson","NE","Nebraska","TRUE","","363","1.4","31183","Wheeler","{""31183"": ""100""}","Wheeler","31183","FALSE","FALSE","America/Chicago"
-"68638","41.37421","-97.9868","Fullerton","NE","Nebraska","TRUE","","1816","4.6","31125","Nance","{""31125"": ""100""}","Nance","31125","FALSE","FALSE","America/Chicago"
-"68640","41.46285","-97.77395","Genoa","NE","Nebraska","TRUE","","1367","4.3","31125","Nance","{""31125"": ""91.2"", ""31141"": ""8.8""}","Nance|Platte","31125|31141","FALSE","FALSE","America/Chicago"
-"68641","41.73515","-97.00818","Howells","NE","Nebraska","TRUE","","1115","4.5","31037","Colfax","{""31037"": ""76.01"", ""31167"": ""14.21"", ""31039"": ""9.78""}","Colfax|Stanton|Cuming","31037|31167|31039","FALSE","FALSE","America/Chicago"
-"68642","41.69028","-97.51506","Humphrey","NE","Nebraska","TRUE","","1992","5.9","31141","Platte","{""31141"": ""94.65"", ""31119"": ""5.35""}","Platte|Madison","31141|31119","FALSE","FALSE","America/Chicago"
-"68643","41.70459","-97.25843","Leigh","NE","Nebraska","TRUE","","1015","4.1","31037","Colfax","{""31037"": ""65.89"", ""31141"": ""21.37"", ""31167"": ""12.74""}","Colfax|Platte|Stanton","31037|31141|31167","FALSE","FALSE","America/Chicago"
-"68644","41.71033","-97.6752","Lindsay","NE","Nebraska","TRUE","","648","2.8","31141","Platte","{""31141"": ""88.21"", ""31119"": ""11.79""}","Platte|Madison","31141|31119","FALSE","FALSE","America/Chicago"
-"68647","41.52325","-97.62151","Monroe","NE","Nebraska","TRUE","","659","3.7","31141","Platte","{""31141"": ""100""}","Platte","31141","FALSE","FALSE","America/Chicago"
-"68648","41.40459","-96.79161","Morse Bluff","NE","Nebraska","TRUE","","315","2.9","31155","Saunders","{""31155"": ""100""}","Saunders","31155","FALSE","FALSE","America/Chicago"
-"68649","41.50913","-96.78774","North Bend","NE","Nebraska","TRUE","","2027","7.6","31053","Dodge","{""31053"": ""100""}","Dodge","31053","FALSE","FALSE","America/Chicago"
-"68651","41.2262","-97.57973","Osceola","NE","Nebraska","TRUE","","1464","4.5","31143","Polk","{""31143"": ""100""}","Polk","31143","FALSE","FALSE","America/Chicago"
-"68652","41.86969","-98.05189","Petersburg","NE","Nebraska","TRUE","","588","1.8","31011","Boone","{""31011"": ""100""}","Boone","31011","FALSE","FALSE","America/Chicago"
-"68653","41.55523","-97.48529","Platte Center","NE","Nebraska","TRUE","","719","4.8","31141","Platte","{""31141"": ""100""}","Platte","31141","FALSE","FALSE","America/Chicago"
-"68654","41.06673","-97.78414","Polk","NE","Nebraska","TRUE","","520","3.7","31143","Polk","{""31143"": ""80.96"", ""31185"": ""12.75"", ""31081"": ""6.28""}","Polk|York|Hamilton","31143|31185|31081","FALSE","FALSE","America/Chicago"
-"68655","41.65525","-98.25059","Primrose","NE","Nebraska","TRUE","","110","1.4","31011","Boone","{""31011"": ""100""}","Boone","31011","FALSE","FALSE","America/Chicago"
-"68658","41.19791","-97.29082","Rising City","NE","Nebraska","TRUE","","829","4.3","31023","Butler","{""31023"": ""100""}","Butler","31023","FALSE","FALSE","America/Chicago"
-"68659","41.54493","-96.94331","Rogers","NE","Nebraska","TRUE","","186","2.2","31037","Colfax","{""31037"": ""100""}","Colfax","31037","FALSE","FALSE","America/Chicago"
-"68660","41.57549","-97.86973","Saint Edward","NE","Nebraska","TRUE","","1192","3.4","31011","Boone","{""31011"": ""84.34"", ""31141"": ""12.75"", ""31125"": ""2.9""}","Boone|Platte|Nance","31011|31141|31125","FALSE","FALSE","America/Chicago"
-"68661","41.49315","-97.08361","Schuyler","NE","Nebraska","TRUE","","7394","18.7","31037","Colfax","{""31037"": ""100""}","Colfax","31037","FALSE","FALSE","America/Chicago"
-"68662","41.21054","-97.41406","Shelby","NE","Nebraska","TRUE","","1278","5.3","31143","Polk","{""31143"": ""96.1"", ""31023"": ""3.9""}","Polk|Butler","31143|31023","FALSE","FALSE","America/Chicago"
-"68663","41.31669","-97.69469","Silver Creek","NE","Nebraska","TRUE","","612","2.6","31121","Merrick","{""31121"": ""77"", ""31143"": ""13.53"", ""31125"": ""9.46""}","Merrick|Polk|Nance","31121|31143|31125","FALSE","FALSE","America/Chicago"
-"68664","41.70403","-96.78645","Snyder","NE","Nebraska","TRUE","","327","316.3","31053","Dodge","{""31053"": ""100""}","Dodge","31053","FALSE","FALSE","America/Chicago"
-"68665","41.76102","-98.40606","Spalding","NE","Nebraska","TRUE","","947","1.3","31077","Greeley","{""31077"": ""87.13"", ""31183"": ""12.87""}","Greeley|Wheeler","31077|31183","FALSE","FALSE","America/Chicago"
-"68666","41.11091","-97.61556","Stromsburg","NE","Nebraska","TRUE","","1535","6.6","31143","Polk","{""31143"": ""100""}","Polk","31143","FALSE","FALSE","America/Chicago"
-"68667","41.11012","-97.30806","Surprise","NE","Nebraska","TRUE","","71","1.9","31023","Butler","{""31023"": ""100""}","Butler","31023","FALSE","FALSE","America/Chicago"
-"68669","41.0825","-97.23467","Ulysses","NE","Nebraska","TRUE","","445","3.1","31023","Butler","{""31023"": ""100""}","Butler","31023","FALSE","FALSE","America/Chicago"
-"68701","42.02136","-97.44362","Norfolk","NE","Nebraska","TRUE","","30381","61.9","31119","Madison","{""31119"": ""90.03"", ""31167"": ""7.95"", ""31139"": ""2.02""}","Madison|Stanton|Pierce","31119|31167|31139","FALSE","FALSE","America/Chicago"
-"68710","42.43882","-96.85468","Allen","NE","Nebraska","TRUE","","768","3.5","31051","Dixon","{""31051"": ""100""}","Dixon","31051","FALSE","FALSE","America/Chicago"
-"68711","42.19266","-99.03874","Amelia","NE","Nebraska","TRUE","","311","0.5","31089","Holt","{""31089"": ""100""}","Holt","31089","FALSE","FALSE","America/Chicago"
-"68713","42.53801","-98.96907","Atkinson","NE","Nebraska","TRUE","","2252","1.5","31089","Holt","{""31089"": ""100""}","Holt","31089","FALSE","FALSE","America/Chicago"
-"68714","42.40228","-99.4864","Bassett","NE","Nebraska","TRUE","","1261","0.7","31149","Rock","{""31149"": ""100""}","Rock","31149","FALSE","FALSE","America/Chicago"
-"68715","41.96447","-97.60782","Battle Creek","NE","Nebraska","TRUE","","1608","11.0","31119","Madison","{""31119"": ""100""}","Madison","31119","FALSE","FALSE","America/Chicago"
-"68716","41.93314","-96.82297","Beemer","NE","Nebraska","TRUE","","915","5.9","31039","Cuming","{""31039"": ""100""}","Cuming","31039","FALSE","FALSE","America/Chicago"
-"68717","42.39463","-97.21934","Belden","NE","Nebraska","TRUE","","277","4.7","31027","Cedar","{""31027"": ""100""}","Cedar","31027","FALSE","FALSE","America/Chicago"
-"68718","42.65594","-97.69676","Bloomfield","NE","Nebraska","TRUE","","1685","2.9","31107","Knox","{""31107"": ""100""}","Knox","31107","FALSE","FALSE","America/Chicago"
-"68719","42.9484","-98.57211","Bristow","NE","Nebraska","TRUE","","126","0.8","31015","Boyd","{""31015"": ""86.3"", ""46053"": ""13.7""}","Boyd|Gregory","31015|46053","FALSE","FALSE","America/Chicago"
-"68720","42.34562","-98.01261","Brunswick","NE","Nebraska","TRUE","","297","1.7","31003","Antelope","{""31003"": ""100""}","Antelope","31003","FALSE","FALSE","America/Chicago"
-"68722","42.9202","-98.87406","Butte","NE","Nebraska","TRUE","","619","2.6","31015","Boyd","{""31015"": ""100""}","Boyd","31015","FALSE","FALSE","America/Chicago"
-"68723","42.286","-97.21192","Carroll","NE","Nebraska","TRUE","","547","3.0","31179","Wayne","{""31179"": ""100""}","Wayne","31179","FALSE","FALSE","America/Chicago"
-"68724","42.638","-97.894","Center","NE","Nebraska","TRUE","","147","1.7","31107","Knox","{""31107"": ""100""}","Knox","31107","FALSE","FALSE","America/Chicago"
-"68725","42.20223","-98.7771","Chambers","NE","Nebraska","TRUE","","534","1.2","31089","Holt","{""31089"": ""100""}","Holt","31089","FALSE","FALSE","America/Chicago"
-"68726","42.18195","-98.2055","Clearwater","NE","Nebraska","TRUE","","513","1.6","31003","Antelope","{""31003"": ""96.3"", ""31089"": ""3.7""}","Antelope|Holt","31003|31089","FALSE","FALSE","America/Chicago"
-"68727","42.513","-97.20348","Coleridge","NE","Nebraska","TRUE","","766","4.2","31027","Cedar","{""31027"": ""100""}","Cedar","31027","FALSE","FALSE","America/Chicago"
-"68728","42.37634","-96.95269","Concord","NE","Nebraska","TRUE","","249","4.0","31051","Dixon","{""31051"": ""100""}","Dixon","31051","FALSE","FALSE","America/Chicago"
-"68729","42.47079","-97.90434","Creighton","NE","Nebraska","TRUE","","1876","4.6","31107","Knox","{""31107"": ""92.49"", ""31003"": ""7.51""}","Knox|Antelope","31107|31003","FALSE","FALSE","America/Chicago"
-"68730","42.77006","-97.54015","Crofton","NE","Nebraska","TRUE","","1807","5.1","31107","Knox","{""31107"": ""76.02"", ""31027"": ""23.98""}","Knox|Cedar","31107|31027","FALSE","FALSE","America/Chicago"
-"68731","42.4098","-96.48106","Dakota City","NE","Nebraska","TRUE","","2908","30.8","31043","Dakota","{""31043"": ""100""}","Dakota","31043","FALSE","FALSE","America/Chicago"
-"68732","42.49187","-96.97943","Dixon","NE","Nebraska","TRUE","","207","1.7","31051","Dixon","{""31051"": ""100""}","Dixon","31051","FALSE","FALSE","America/Chicago"
-"68733","42.28484","-96.72476","Emerson","NE","Nebraska","TRUE","","1296","5.0","31051","Dixon","{""31051"": ""43"", ""31043"": ""38.41"", ""31173"": ""18.58""}","Dixon|Dakota|Thurston","31051|31043|31173","FALSE","FALSE","America/Chicago"
-"68734","42.46905","-98.79604","Emmet","NE","Nebraska","TRUE","","68","1.1","31089","Holt","{""31089"": ""100""}","Holt","31089","FALSE","FALSE","America/Chicago"
-"68735","42.14366","-98.47554","Ewing","NE","Nebraska","TRUE","","700","0.7","31089","Holt","{""31089"": ""78.09"", ""31183"": ""13.77"", ""31003"": ""8.13""}","Holt|Wheeler|Antelope","31089|31183|31003","FALSE","FALSE","America/Chicago"
-"68736","42.73543","-97.36778","Fordyce","NE","Nebraska","TRUE","","640","3.5","31027","Cedar","{""31027"": ""100""}","Cedar","31027","FALSE","FALSE","America/Chicago"
-"68739","42.62568","-97.26945","Hartington","NE","Nebraska","TRUE","","2990","5.2","31027","Cedar","{""31027"": ""100""}","Cedar","31027","FALSE","FALSE","America/Chicago"
-"68740","42.15193","-97.30034","Hoskins","NE","Nebraska","TRUE","","996","5.5","31179","Wayne","{""31179"": ""96.41"", ""31167"": ""3.59""}","Wayne|Stanton","31179|31167","FALSE","FALSE","America/Chicago"
-"68741","42.34861","-96.59047","Hubbard","NE","Nebraska","TRUE","","711","4.3","31043","Dakota","{""31043"": ""100""}","Dakota","31043","FALSE","FALSE","America/Chicago"
-"68742","42.35139","-98.51674","Inman","NE","Nebraska","TRUE","","164","1.6","31089","Holt","{""31089"": ""100""}","Holt","31089","FALSE","FALSE","America/Chicago"
-"68743","42.46556","-96.62619","Jackson","NE","Nebraska","TRUE","","555","3.4","31043","Dakota","{""31043"": ""100""}","Dakota","31043","FALSE","FALSE","America/Chicago"
-"68745","42.44767","-97.08792","Laurel","NE","Nebraska","TRUE","","1502","4.9","31027","Cedar","{""31027"": ""97.71"", ""31179"": ""2.29""}","Cedar|Wayne","31027|31179","FALSE","FALSE","America/Chicago"
-"68746","42.79222","-98.43848","Lynch","NE","Nebraska","TRUE","","392","0.6","31015","Boyd","{""31015"": ""88.54"", ""31089"": ""11.46""}","Boyd|Holt","31015|31089","FALSE","FALSE","America/Chicago"
-"68747","42.39443","-97.49721","Mclean","NE","Nebraska","TRUE","","101","1.2","31139","Pierce","{""31139"": ""100""}","Pierce","31139","FALSE","FALSE","America/Chicago"
-"68748","41.84007","-97.46471","Madison","NE","Nebraska","TRUE","","3126","7.1","31119","Madison","{""31119"": ""96.5"", ""31167"": ""3.5""}","Madison|Stanton","31119|31167","FALSE","FALSE","America/Chicago"
-"68749","42.45307","-97.47532","Magnet","NE","Nebraska","TRUE","","54","10.3","31027","Cedar","{""31027"": ""100""}","Cedar","31027","FALSE","FALSE","America/Chicago"
-"68751","42.6906","-96.98083","Maskell","NE","Nebraska","TRUE","","61","147.2","31051","Dixon","{""31051"": ""100""}","Dixon","31051","FALSE","FALSE","America/Chicago"
-"68752","42.02716","-97.72844","Meadow Grove","NE","Nebraska","TRUE","","664","1.8","31119","Madison","{""31119"": ""93.92"", ""31139"": ""6.08""}","Madison|Pierce","31119|31139","FALSE","FALSE","America/Chicago"
-"68753","42.88469","-99.44943","Mills","NE","Nebraska","TRUE","","156","0.4","31103","Keya Paha","{""31103"": ""100""}","Keya Paha","31103","FALSE","FALSE","America/Chicago"
-"68755","42.92332","-99.12905","Naper","NE","Nebraska","TRUE","","283","0.8","31015","Boyd","{""31015"": ""100""}","Boyd","31015","FALSE","FALSE","America/Chicago"
-"68756","42.19063","-97.98003","Neligh","NE","Nebraska","TRUE","","1995","5.9","31003","Antelope","{""31003"": ""100""}","Antelope","31003","FALSE","FALSE","America/Chicago"
-"68757","42.65025","-96.92136","Newcastle","NE","Nebraska","TRUE","","770","2.3","31051","Dixon","{""31051"": ""93.37"", ""31027"": ""6.63""}","Dixon|Cedar","31051|31027","FALSE","FALSE","America/Chicago"
-"68758","41.78651","-97.78843","Newman Grove","NE","Nebraska","TRUE","","1286","4.4","31119","Madison","{""31119"": ""80.84"", ""31141"": ""12.03"", ""31011"": ""7.13""}","Madison|Platte|Boone","31119|31141|31011","FALSE","FALSE","America/Chicago"
-"68759","42.70517","-99.31385","Newport","NE","Nebraska","TRUE","","170","0.3","31149","Rock","{""31149"": ""73.22"", ""31103"": ""26.78""}","Rock|Keya Paha","31149|31103","FALSE","FALSE","America/Chicago"
-"68760","42.76551","-98.03095","Niobrara","NE","Nebraska","TRUE","","1372","2.5","31107","Knox","{""31107"": ""100""}","Knox","31107","FALSE","FALSE","America/Chicago"
-"68761","42.05446","-97.96181","Oakdale","NE","Nebraska","TRUE","","372","3.7","31003","Antelope","{""31003"": ""100""}","Antelope","31003","FALSE","FALSE","America/Chicago"
-"68763","42.50871","-98.60943","Oneill","NE","Nebraska","TRUE","","4706","3.4","31089","Holt","{""31089"": ""100""}","Holt","31089","FALSE","FALSE","America/Chicago"
-"68764","42.39997","-98.23106","Orchard","NE","Nebraska","TRUE","","871","2.5","31003","Antelope","{""31003"": ""81.14"", ""31107"": ""15.27"", ""31089"": ""3.59""}","Antelope|Knox|Holt","31003|31107|31089","FALSE","FALSE","America/Chicago"
-"68765","42.34268","-97.62229","Osmond","NE","Nebraska","TRUE","","1325","4.4","31139","Pierce","{""31139"": ""100""}","Pierce","31139","FALSE","FALSE","America/Chicago"
-"68766","42.43498","-98.40574","Page","NE","Nebraska","TRUE","","478","1.5","31089","Holt","{""31089"": ""100""}","Holt","31089","FALSE","FALSE","America/Chicago"
-"68767","42.1996","-97.55184","Pierce","NE","Nebraska","TRUE","","3396","6.2","31139","Pierce","{""31139"": ""100""}","Pierce","31139","FALSE","FALSE","America/Chicago"
-"68768","41.99445","-97.06757","Pilger","NE","Nebraska","TRUE","","671","3.8","31167","Stanton","{""31167"": ""100""}","Stanton","31167","FALSE","FALSE","America/Chicago"
-"68769","42.32227","-97.81212","Plainview","NE","Nebraska","TRUE","","1693","4.6","31139","Pierce","{""31139"": ""89.81"", ""31003"": ""10.19""}","Pierce|Antelope","31139|31003","FALSE","FALSE","America/Chicago"
-"68770","42.56422","-96.76512","Ponca","NE","Nebraska","TRUE","","1319","5.6","31051","Dixon","{""31051"": ""97.74"", ""31043"": ""2.26""}","Dixon|Dakota","31051|31043","FALSE","FALSE","America/Chicago"
-"68771","42.38321","-97.35756","Randolph","NE","Nebraska","TRUE","","1532","4.0","31027","Cedar","{""31027"": ""76.97"", ""31139"": ""15.09"", ""31179"": ""7.94""}","Cedar|Pierce|Wayne","31027|31139|31179","FALSE","FALSE","America/Chicago"
-"68773","42.36476","-98.1235","Royal","NE","Nebraska","TRUE","","120","0.9","31003","Antelope","{""31003"": ""100""}","Antelope","31003","FALSE","FALSE","America/Chicago"
-"68774","42.81535","-97.28009","Saint Helena","NE","Nebraska","TRUE","","184","1.8","31027","Cedar","{""31027"": ""100""}","Cedar","31027","FALSE","FALSE","America/Chicago"
-"68776","42.46058","-96.44131","South Sioux City","NE","Nebraska","TRUE","","14678","272.8","31043","Dakota","{""31043"": ""100""}","Dakota","31043","FALSE","FALSE","America/Chicago"
-"68777","42.86576","-98.69311","Spencer","NE","Nebraska","TRUE","","571","1.2","31015","Boyd","{""31015"": ""94.83"", ""31089"": ""5.17""}","Boyd|Holt","31015|31089","FALSE","FALSE","America/Chicago"
-"68778","42.86757","-99.79082","Springview","NE","Nebraska","TRUE","","521","0.4","31103","Keya Paha","{""31103"": ""100""}","Keya Paha","31103","FALSE","FALSE","America/Chicago"
-"68779","41.95641","-97.20831","Stanton","NE","Nebraska","TRUE","","2658","6.0","31167","Stanton","{""31167"": ""100""}","Stanton","31167","FALSE","FALSE","America/Chicago"
-"68780","42.6428","-99.13364","Stuart","NE","Nebraska","TRUE","","980","1.2","31089","Holt","{""31089"": ""100""}","Holt","31089","FALSE","FALSE","America/Chicago"
-"68781","42.02383","-97.86242","Tilden","NE","Nebraska","TRUE","","1517","5.1","31119","Madison","{""31119"": ""57.85"", ""31003"": ""42.15""}","Madison|Antelope","31119|31003","FALSE","FALSE","America/Chicago"
-"68783","42.62072","-98.15211","Verdigre","NE","Nebraska","TRUE","","1017","1.8","31107","Knox","{""31107"": ""100""}","Knox","31107","FALSE","FALSE","America/Chicago"
-"68784","42.25777","-96.8929","Wakefield","NE","Nebraska","TRUE","","1952","7.2","31051","Dixon","{""31051"": ""73.91"", ""31179"": ""26.09""}","Dixon|Wayne","31051|31179","FALSE","FALSE","America/Chicago"
-"68785","42.42647","-96.72412","Waterbury","NE","Nebraska","TRUE","","271","3.4","31051","Dixon","{""31051"": ""72.63"", ""31043"": ""27.37""}","Dixon|Dakota","31051|31043","FALSE","FALSE","America/Chicago"
-"68786","42.50576","-97.55664","Wausa","NE","Nebraska","TRUE","","922","2.9","31107","Knox","{""31107"": ""95.18"", ""31027"": ""4.82""}","Knox|Cedar","31107|31027","FALSE","FALSE","America/Chicago"
-"68787","42.21441","-97.03474","Wayne","NE","Nebraska","TRUE","","6419","17.6","31179","Wayne","{""31179"": ""99.22"", ""31051"": ""0.78""}","Wayne|Dixon","31179|31051","FALSE","FALSE","America/Chicago"
-"68788","41.83971","-96.72148","West Point","NE","Nebraska","TRUE","","4471","9.0","31039","Cuming","{""31039"": ""100""}","Cuming","31039","FALSE","FALSE","America/Chicago"
-"68789","42.54725","-97.97265","Winnetoon","NE","Nebraska","TRUE","","158","1.4","31107","Knox","{""31107"": ""100""}","Knox","31107","FALSE","FALSE","America/Chicago"
-"68790","42.16242","-97.17545","Winside","NE","Nebraska","TRUE","","957","5.7","31179","Wayne","{""31179"": ""100""}","Wayne","31179","FALSE","FALSE","America/Chicago"
-"68791","41.99204","-96.93641","Wisner","NE","Nebraska","TRUE","","1783","5.2","31039","Cuming","{""31039"": ""98.78"", ""31179"": ""1.22""}","Cuming|Wayne","31039|31179","FALSE","FALSE","America/Chicago"
-"68792","42.73821","-97.12155","Wynot","NE","Nebraska","TRUE","","341","2.4","31027","Cedar","{""31027"": ""100""}","Cedar","31027","FALSE","FALSE","America/Chicago"
-"68801","40.94785","-98.29167","Grand Island","NE","Nebraska","TRUE","","29703","127.9","31079","Hall","{""31079"": ""97.42"", ""31121"": ""2.58""}","Hall|Merrick","31079|31121","FALSE","FALSE","America/Chicago"
-"68803","40.95492","-98.41522","Grand Island","NE","Nebraska","TRUE","","25208","111.4","31079","Hall","{""31079"": ""100""}","Hall","31079","FALSE","FALSE","America/Chicago"
-"68810","40.85843","-98.46696","Alda","NE","Nebraska","TRUE","","988","20.1","31079","Hall","{""31079"": ""100""}","Hall","31079","FALSE","FALSE","America/Chicago"
-"68812","40.90115","-99.27942","Amherst","NE","Nebraska","TRUE","","502","1.6","31019","Buffalo","{""31019"": ""100""}","Buffalo","31019","FALSE","FALSE","America/Chicago"
-"68813","41.68513","-99.91471","Anselmo","NE","Nebraska","TRUE","","459","0.3","31041","Custer","{""31041"": ""90.45"", ""31009"": ""9.55""}","Custer|Blaine","31041|31009","FALSE","FALSE","America/Chicago"
-"68814","41.31652","-99.41292","Ansley","NE","Nebraska","TRUE","","832","1.7","31041","Custer","{""31041"": ""100""}","Custer","31041","FALSE","FALSE","America/Chicago"
-"68815","41.41932","-99.14385","Arcadia","NE","Nebraska","TRUE","","599","1.5","31175","Valley","{""31175"": ""78.19"", ""31041"": ""11.24"", ""31163"": ""10.57""}","Valley|Custer|Sherman","31175|31041|31163","FALSE","FALSE","America/Chicago"
-"68816","41.17739","-98.13296","Archer","NE","Nebraska","TRUE","","173","1.8","31121","Merrick","{""31121"": ""100""}","Merrick","31121","FALSE","FALSE","America/Chicago"
-"68817","41.27394","-98.79087","Ashton","NE","Nebraska","TRUE","","292","1.2","31163","Sherman","{""31163"": ""92.75"", ""31093"": ""7.25""}","Sherman|Howard","31163|31093","FALSE","FALSE","America/Chicago"
-"68818","40.81762","-98.00833","Aurora","NE","Nebraska","TRUE","","5575","11.9","31081","Hamilton","{""31081"": ""99.2"", ""31035"": ""0.8""}","Hamilton|Clay","31081|31035","FALSE","FALSE","America/Chicago"
-"68820","41.10858","-98.70223","Boelus","NE","Nebraska","TRUE","","293","2.8","31093","Howard","{""31093"": ""100""}","Howard","31093","FALSE","FALSE","America/Chicago"
-"68821","42.00951","-99.85778","Brewster","NE","Nebraska","TRUE","","56","0.1","31009","Blaine","{""31009"": ""100""}","Blaine","31009","FALSE","FALSE","America/Chicago"
-"68822","41.38295","-99.63171","Broken Bow","NE","Nebraska","TRUE","","4871","4.7","31041","Custer","{""31041"": ""100""}","Custer","31041","FALSE","FALSE","America/Chicago"
-"68823","41.92648","-99.10901","Burwell","NE","Nebraska","TRUE","","2247","0.9","31071","Garfield","{""31071"": ""85.34"", ""31115"": ""8.95"", ""31175"": ""4.75"", ""31149"": ""0.96""}","Garfield|Loup|Valley|Rock","31071|31115|31175|31149","FALSE","FALSE","America/Chicago"
-"68824","40.99226","-98.60166","Cairo","NE","Nebraska","TRUE","","1588","5.7","31079","Hall","{""31079"": ""96.25"", ""31093"": ""3.75""}","Hall|Howard","31079|31093","FALSE","FALSE","America/Chicago"
-"68825","41.27175","-99.96458","Callaway","NE","Nebraska","TRUE","","1027","1.3","31041","Custer","{""31041"": ""100""}","Custer","31041","FALSE","FALSE","America/Chicago"
-"68826","41.16361","-98.01551","Central City","NE","Nebraska","TRUE","","4046","10.8","31121","Merrick","{""31121"": ""100""}","Merrick","31121","FALSE","FALSE","America/Chicago"
-"68827","41.04497","-98.1854","Chapman","NE","Nebraska","TRUE","","595","3.7","31121","Merrick","{""31121"": ""100""}","Merrick","31121","FALSE","FALSE","America/Chicago"
-"68828","41.54885","-99.2354","Comstock","NE","Nebraska","TRUE","","268","1.1","31041","Custer","{""31041"": ""74.58"", ""31175"": ""25.42""}","Custer|Valley","31041|31175","FALSE","FALSE","America/Chicago"
-"68831","41.11096","-98.55389","Dannebrog","NE","Nebraska","TRUE","","793","4.7","31093","Howard","{""31093"": ""100""}","Howard","31093","FALSE","FALSE","America/Chicago"
-"68832","40.76667","-98.36573","Doniphan","NE","Nebraska","TRUE","","2083","7.4","31079","Hall","{""31079"": ""96.66"", ""31081"": ""3.34""}","Hall|Hamilton","31079|31081","FALSE","FALSE","America/Chicago"
-"68833","41.82838","-100.15389","Dunning","NE","Nebraska","TRUE","","329","0.3","31009","Blaine","{""31009"": ""90.97"", ""31113"": ""9.03""}","Blaine|Logan","31009|31113","FALSE","FALSE","America/Chicago"
-"68834","41.03164","-99.65885","Eddyville","NE","Nebraska","TRUE","","159","0.6","31047","Dawson","{""31047"": ""82.74"", ""31041"": ""17.26""}","Dawson|Custer","31047|31041","FALSE","FALSE","America/Chicago"
-"68835","41.33176","-98.6199","Elba","NE","Nebraska","TRUE","","610","2.4","31093","Howard","{""31093"": ""100""}","Howard","31093","FALSE","FALSE","America/Chicago"
-"68836","40.70649","-99.3743","Elm Creek","NE","Nebraska","TRUE","","1816","4.7","31019","Buffalo","{""31019"": ""81.87"", ""31137"": ""14.04"", ""31047"": ""4.09""}","Buffalo|Phelps|Dawson","31019|31137|31047","FALSE","FALSE","America/Chicago"
-"68837","41.65982","-99.07658","Elyria","NE","Nebraska","TRUE","","171","2.7","31175","Valley","{""31175"": ""100""}","Valley","31175","FALSE","FALSE","America/Chicago"
-"68838","41.2152","-98.66548","Farwell","NE","Nebraska","TRUE","","209","1.6","31093","Howard","{""31093"": ""100""}","Howard","31093","FALSE","FALSE","America/Chicago"
-"68840","40.75845","-98.88117","Gibbon","NE","Nebraska","TRUE","","3241","8.6","31019","Buffalo","{""31019"": ""96.54"", ""31099"": ""3.46""}","Buffalo|Kearney","31019|31099","FALSE","FALSE","America/Chicago"
-"68841","40.75998","-98.17078","Giltner","NE","Nebraska","TRUE","","496","2.9","31081","Hamilton","{""31081"": ""100""}","Hamilton","31081","FALSE","FALSE","America/Chicago"
-"68842","41.56757","-98.50057","Greeley","NE","Nebraska","TRUE","","563","1.4","31077","Greeley","{""31077"": ""100""}","Greeley","31077","FALSE","FALSE","America/Chicago"
-"68843","40.90455","-97.8853","Hampton","NE","Nebraska","TRUE","","783","3.7","31081","Hamilton","{""31081"": ""100""}","Hamilton","31081","FALSE","FALSE","America/Chicago"
-"68844","41.05991","-99.05857","Hazard","NE","Nebraska","TRUE","","269","2.3","31163","Sherman","{""31163"": ""72.37"", ""31019"": ""27.63""}","Sherman|Buffalo","31163|31019","FALSE","FALSE","America/Chicago"
-"68845","40.72731","-99.16299","Kearney","NE","Nebraska","TRUE","","21167","73.3","31019","Buffalo","{""31019"": ""98.29"", ""31099"": ""1.71""}","Buffalo|Kearney","31019|31099","FALSE","FALSE","America/Chicago"
-"68846","41.06653","-97.88675","Hordville","NE","Nebraska","TRUE","","183","2.5","31081","Hamilton","{""31081"": ""100""}","Hamilton","31081","FALSE","FALSE","America/Chicago"
-"68847","40.75891","-99.02572","Kearney","NE","Nebraska","TRUE","","16822","69.2","31019","Buffalo","{""31019"": ""98.86"", ""31099"": ""1.14""}","Buffalo|Kearney","31019|31099","FALSE","FALSE","America/Chicago"
-"68849","40.70107","-99.104","Kearney","NE","Nebraska","TRUE","","965","2217.9","31019","Buffalo","{""31019"": ""100""}","Buffalo","31019","FALSE","FALSE","America/Chicago"
-"68850","40.82956","-99.73645","Lexington","NE","Nebraska","TRUE","","12319","18.2","31047","Dawson","{""31047"": ""99.41"", ""31073"": ""0.59""}","Dawson|Gosper","31047|31073","FALSE","FALSE","America/Chicago"
-"68852","41.16459","-99.12629","Litchfield","NE","Nebraska","TRUE","","553","2.0","31163","Sherman","{""31163"": ""100""}","Sherman","31163","FALSE","FALSE","America/Chicago"
-"68853","41.29253","-98.98826","Loup City","NE","Nebraska","TRUE","","1476","2.9","31163","Sherman","{""31163"": ""100""}","Sherman","31163","FALSE","FALSE","America/Chicago"
-"68854","41.00843","-98.00044","Marquette","NE","Nebraska","TRUE","","842","4.7","31081","Hamilton","{""31081"": ""100""}","Hamilton","31081","FALSE","FALSE","America/Chicago"
-"68855","41.1678","-99.32387","Mason City","NE","Nebraska","TRUE","","434","0.9","31041","Custer","{""31041"": ""100""}","Custer","31041","FALSE","FALSE","America/Chicago"
-"68856","41.49586","-99.82745","Merna","NE","Nebraska","TRUE","","723","2.5","31041","Custer","{""31041"": ""100""}","Custer","31041","FALSE","FALSE","America/Chicago"
-"68858","40.95947","-99.37702","Miller","NE","Nebraska","TRUE","","278","1.8","31019","Buffalo","{""31019"": ""100""}","Buffalo","31019","FALSE","FALSE","America/Chicago"
-"68859","41.47117","-98.82392","North Loup","NE","Nebraska","TRUE","","515","2.3","31175","Valley","{""31175"": ""100""}","Valley","31175","FALSE","FALSE","America/Chicago"
-"68860","41.1331","-99.79139","Oconto","NE","Nebraska","TRUE","","281","0.6","31041","Custer","{""31041"": ""100""}","Custer","31041","FALSE","FALSE","America/Chicago"
-"68861","40.70241","-99.25883","Odessa","NE","Nebraska","TRUE","","81","83.5","31019","Buffalo","{""31019"": ""100""}","Buffalo","31019","FALSE","FALSE","America/Chicago"
-"68862","41.60044","-98.93664","Ord","NE","Nebraska","TRUE","","3043","4.2","31175","Valley","{""31175"": ""100""}","Valley","31175","FALSE","FALSE","America/Chicago"
-"68863","40.76972","-99.52494","Overton","NE","Nebraska","TRUE","","1114","3.5","31047","Dawson","{""31047"": ""96"", ""31137"": ""4""}","Dawson|Phelps","31047|31137","FALSE","FALSE","America/Chicago"
-"68864","41.26306","-98.23505","Palmer","NE","Nebraska","TRUE","","1212","2.7","31121","Merrick","{""31121"": ""78.48"", ""31093"": ""12.07"", ""31125"": ""9.44""}","Merrick|Howard|Nance","31121|31093|31125","FALSE","FALSE","America/Chicago"
-"68865","40.8965","-98.18586","Phillips","NE","Nebraska","TRUE","","1051","6.5","31081","Hamilton","{""31081"": ""100""}","Hamilton","31081","FALSE","FALSE","America/Chicago"
-"68866","40.97538","-99.12858","Pleasanton","NE","Nebraska","TRUE","","1041","3.4","31019","Buffalo","{""31019"": ""97.88"", ""31041"": ""2.12""}","Buffalo|Custer","31019|31041","FALSE","FALSE","America/Chicago"
-"68869","40.99689","-98.88117","Ravenna","NE","Nebraska","TRUE","","2053","3.8","31019","Buffalo","{""31019"": ""91.28"", ""31163"": ""8.72""}","Buffalo|Sherman","31019|31163","FALSE","FALSE","America/Chicago"
-"68870","40.85249","-99.16106","Riverdale","NE","Nebraska","TRUE","","615","5.5","31019","Buffalo","{""31019"": ""100""}","Buffalo","31019","FALSE","FALSE","America/Chicago"
-"68871","41.14059","-98.85118","Rockville","NE","Nebraska","TRUE","","259","1.5","31163","Sherman","{""31163"": ""100""}","Sherman","31163","FALSE","FALSE","America/Chicago"
-"68872","41.09485","-98.33396","Saint Libory","NE","Nebraska","TRUE","","747","4.3","31093","Howard","{""31093"": ""83.35"", ""31121"": ""16.65""}","Howard|Merrick","31093|31121","FALSE","FALSE","America/Chicago"
-"68873","41.24501","-98.45046","Saint Paul","NE","Nebraska","TRUE","","3446","7.5","31093","Howard","{""31093"": ""100""}","Howard","31093","FALSE","FALSE","America/Chicago"
-"68874","41.63752","-99.41287","Sargent","NE","Nebraska","TRUE","","852","1.2","31041","Custer","{""31041"": ""100""}","Custer","31041","FALSE","FALSE","America/Chicago"
-"68875","41.56285","-98.66741","Scotia","NE","Nebraska","TRUE","","684","1.3","31077","Greeley","{""31077"": ""100""}","Greeley","31077","FALSE","FALSE","America/Chicago"
-"68876","40.81729","-98.74995","Shelton","NE","Nebraska","TRUE","","1558","6.6","31019","Buffalo","{""31019"": ""95.47"", ""31079"": ""4.53""}","Buffalo|Hall","31019|31079","FALSE","FALSE","America/Chicago"
-"68878","40.97611","-99.51705","Sumner","NE","Nebraska","TRUE","","415","1.2","31047","Dawson","{""31047"": ""94.84"", ""31041"": ""5.16""}","Dawson|Custer","31047|31041","FALSE","FALSE","America/Chicago"
-"68879","41.90208","-99.54467","Taylor","NE","Nebraska","TRUE","","409","0.5","31115","Loup","{""31115"": ""100""}","Loup","31115","FALSE","FALSE","America/Chicago"
-"68881","41.43843","-99.35188","Westerville","NE","Nebraska","TRUE","","0","0.0","31041","Custer","{""31041"": ""100""}","Custer","31041","FALSE","FALSE","America/Chicago"
-"68882","41.42785","-98.40025","Wolbach","NE","Nebraska","TRUE","","407","1.3","31077","Greeley","{""31077"": ""83.09"", ""31093"": ""16.91""}","Greeley|Howard","31077|31093","FALSE","FALSE","America/Chicago"
-"68883","40.81264","-98.59113","Wood River","NE","Nebraska","TRUE","","2468","5.6","31079","Hall","{""31079"": ""96.1"", ""31001"": ""3.9""}","Hall|Adams","31079|31001","FALSE","FALSE","America/Chicago"
-"68901","40.59293","-98.37284","Hastings","NE","Nebraska","TRUE","","26214","73.8","31001","Adams","{""31001"": ""99.9"", ""31035"": ""0.1""}","Adams|Clay","31001|31035","FALSE","FALSE","America/Chicago"
-"68920","40.15684","-99.33721","Alma","NE","Nebraska","TRUE","","1670","5.1","31083","Harlan","{""31083"": ""100""}","Harlan","31083","FALSE","FALSE","America/Chicago"
-"68922","40.33395","-99.89664","Arapahoe","NE","Nebraska","TRUE","","1496","3.5","31065","Furnas","{""31065"": ""92.74"", ""31073"": ""7.26""}","Furnas|Gosper","31065|31073","FALSE","FALSE","America/Chicago"
-"68923","40.35909","-99.46833","Atlanta","NE","Nebraska","TRUE","","70","16.9","31137","Phelps","{""31137"": ""100""}","Phelps","31137","FALSE","FALSE","America/Chicago"
-"68924","40.49565","-99.11905","Axtell","NE","Nebraska","TRUE","","1312","5.2","31099","Kearney","{""31099"": ""98.56"", ""31137"": ""1.44""}","Kearney|Phelps","31099|31137","FALSE","FALSE","America/Chicago"
-"68925","40.4254","-98.43785","Ayr","NE","Nebraska","TRUE","","493","3.1","31001","Adams","{""31001"": ""100""}","Adams","31001","FALSE","FALSE","America/Chicago"
-"68926","40.0948","-99.84767","Beaver City","NE","Nebraska","TRUE","","534","1.4","31065","Furnas","{""31065"": ""100""}","Furnas","31065","FALSE","FALSE","America/Chicago"
-"68927","40.50199","-99.62896","Bertrand","NE","Nebraska","TRUE","","1250","3.1","31137","Phelps","{""31137"": ""92.96"", ""31073"": ""7.04""}","Phelps|Gosper","31137|31073","FALSE","FALSE","America/Chicago"
-"68928","40.27938","-98.61362","Bladen","NE","Nebraska","TRUE","","306","1.0","31181","Webster","{""31181"": ""92.96"", ""31001"": ""7.04""}","Webster|Adams","31181|31001","FALSE","FALSE","America/Chicago"
-"68929","40.14998","-99.05112","Bloomington","NE","Nebraska","TRUE","","143","1.1","31061","Franklin","{""31061"": ""100""}","Franklin","31061","FALSE","FALSE","America/Chicago"
-"68930","40.28849","-98.41415","Blue Hill","NE","Nebraska","TRUE","","1532","4.2","31181","Webster","{""31181"": ""91.79"", ""31001"": ""8.21""}","Webster|Adams","31181|31001","FALSE","FALSE","America/Chicago"
-"68932","40.30849","-98.72519","Campbell","NE","Nebraska","TRUE","","441","2.3","31061","Franklin","{""31061"": ""81.74"", ""31181"": ""11.76"", ""31001"": ""6.49""}","Franklin|Webster|Adams","31061|31181|31001","FALSE","FALSE","America/Chicago"
-"68933","40.51674","-98.02741","Clay Center","NE","Nebraska","TRUE","","1009","6.5","31035","Clay","{""31035"": ""100""}","Clay","31035","FALSE","FALSE","America/Chicago"
-"68934","40.33931","-98.13834","Deweese","NE","Nebraska","TRUE","","151","2.2","31035","Clay","{""31035"": ""69.15"", ""31129"": ""30.85""}","Clay|Nuckolls","31035|31129","FALSE","FALSE","America/Chicago"
-"68935","40.3779","-97.9574","Edgar","NE","Nebraska","TRUE","","668","2.1","31035","Clay","{""31035"": ""84.67"", ""31129"": ""15.33""}","Clay|Nuckolls","31035|31129","FALSE","FALSE","America/Chicago"
-"68936","40.33137","-99.77505","Edison","NE","Nebraska","TRUE","","279","1.4","31065","Furnas","{""31065"": ""88.07"", ""31073"": ""11.93""}","Furnas|Gosper","31065|31073","FALSE","FALSE","America/Chicago"
-"68937","40.59087","-99.88136","Elwood","NE","Nebraska","TRUE","","1652","4.0","31073","Gosper","{""31073"": ""74.56"", ""31047"": ""25.44""}","Gosper|Dawson","31073|31047","FALSE","FALSE","America/Chicago"
-"68938","40.40951","-98.11835","Fairfield","NE","Nebraska","TRUE","","477","3.2","31035","Clay","{""31035"": ""100""}","Clay","31035","FALSE","FALSE","America/Chicago"
-"68939","40.10132","-98.96887","Franklin","NE","Nebraska","TRUE","","1165","3.7","31061","Franklin","{""31061"": ""100""}","Franklin","31061","FALSE","FALSE","America/Chicago"
-"68940","40.55134","-99.24279","Funk","NE","Nebraska","TRUE","","582","2.4","31137","Phelps","{""31137"": ""100""}","Phelps","31137","FALSE","FALSE","America/Chicago"
-"68941","40.45725","-98.27812","Glenvil","NE","Nebraska","TRUE","","791","3.6","31035","Clay","{""31035"": ""63.82"", ""31001"": ""36.18""}","Clay|Adams","31035|31001","FALSE","FALSE","America/Chicago"
-"68942","40.09089","-98.30035","Guide Rock","NE","Nebraska","TRUE","","315","0.8","31181","Webster","{""31181"": ""88.78"", ""31129"": ""11.22""}","Webster|Nuckolls","31181|31129","FALSE","FALSE","America/Chicago"
-"68943","40.04888","-97.89868","Hardy","NE","Nebraska","TRUE","","291","2.2","31129","Nuckolls","{""31129"": ""100""}","Nuckolls","31129","FALSE","FALSE","America/Chicago"
-"68944","40.64372","-98.09094","Harvard","NE","Nebraska","TRUE","","1241","4.6","31035","Clay","{""31035"": ""95.84"", ""31081"": ""4.16""}","Clay|Hamilton","31035|31081","FALSE","FALSE","America/Chicago"
-"68945","40.56825","-98.77782","Heartwell","NE","Nebraska","TRUE","","234","2.2","31099","Kearney","{""31099"": ""100""}","Kearney","31099","FALSE","FALSE","America/Chicago"
-"68946","40.11166","-99.98577","Hendley","NE","Nebraska","TRUE","","12","0.2","31065","Furnas","{""31065"": ""100""}","Furnas","31065","FALSE","FALSE","America/Chicago"
-"68947","40.2801","-99.04765","Hildreth","NE","Nebraska","TRUE","","569","3.2","31061","Franklin","{""31061"": ""100""}","Franklin","31061","FALSE","FALSE","America/Chicago"
-"68948","40.32004","-100.02192","Holbrook","NE","Nebraska","TRUE","","324","1.4","31065","Furnas","{""31065"": ""88.43"", ""31073"": ""11.57""}","Furnas|Gosper","31065|31073","FALSE","FALSE","America/Chicago"
-"68949","40.42911","-99.38993","Holdrege","NE","Nebraska","TRUE","","6394","11.6","31137","Phelps","{""31137"": ""98.23"", ""31083"": ""1.77""}","Phelps|Harlan","31137|31083","FALSE","FALSE","America/Chicago"
-"68950","40.46178","-98.66943","Holstein","NE","Nebraska","TRUE","","385","3.1","31001","Adams","{""31001"": ""100""}","Adams","31001","FALSE","FALSE","America/Chicago"
-"68952","40.07521","-98.66779","Inavale","NE","Nebraska","TRUE","","73","0.4","31181","Webster","{""31181"": ""100""}","Webster","31181","FALSE","FALSE","America/Chicago"
-"68954","40.62267","-98.23737","Inland","NE","Nebraska","TRUE","","18","0.6","31035","Clay","{""31035"": ""100""}","Clay","31035","FALSE","FALSE","America/Chicago"
-"68955","40.59454","-98.53927","Juniata","NE","Nebraska","TRUE","","2101","8.5","31001","Adams","{""31001"": ""100""}","Adams","31001","FALSE","FALSE","America/Chicago"
-"68956","40.63459","-98.69256","Kenesaw","NE","Nebraska","TRUE","","1541","6.1","31001","Adams","{""31001"": ""91.52"", ""31099"": ""4.28"", ""31079"": ""4.2""}","Adams|Kearney|Hall","31001|31099|31079","FALSE","FALSE","America/Chicago"
-"68957","40.2665","-98.2372","Lawrence","NE","Nebraska","TRUE","","634","2.3","31129","Nuckolls","{""31129"": ""89.22"", ""31181"": ""10.78""}","Nuckolls|Webster","31129|31181","FALSE","FALSE","America/Chicago"
-"68958","40.52237","-99.50139","Loomis","NE","Nebraska","TRUE","","751","3.9","31137","Phelps","{""31137"": ""100""}","Phelps","31137","FALSE","FALSE","America/Chicago"
-"68959","40.48589","-98.91426","Minden","NE","Nebraska","TRUE","","3719","4.7","31099","Kearney","{""31099"": ""100""}","Kearney","31099","FALSE","FALSE","America/Chicago"
-"68960","40.10088","-99.13731","Naponee","NE","Nebraska","TRUE","","163","1.2","31061","Franklin","{""31061"": ""100""}","Franklin","31061","FALSE","FALSE","America/Chicago"
-"68961","40.20518","-98.03851","Nelson","NE","Nebraska","TRUE","","686","2.1","31129","Nuckolls","{""31129"": ""100""}","Nuckolls","31129","FALSE","FALSE","America/Chicago"
-"68964","40.23679","-97.91267","Oak","NE","Nebraska","TRUE","","42","0.5","31129","Nuckolls","{""31129"": ""100""}","Nuckolls","31129","FALSE","FALSE","America/Chicago"
-"68966","40.14974","-99.46891","Orleans","NE","Nebraska","TRUE","","599","1.9","31083","Harlan","{""31083"": ""100""}","Harlan","31083","FALSE","FALSE","America/Chicago"
-"68967","40.25369","-99.62433","Oxford","NE","Nebraska","TRUE","","979","2.0","31065","Furnas","{""31065"": ""70.32"", ""31083"": ""29.68""}","Furnas|Harlan","31065|31083","FALSE","FALSE","America/Chicago"
-"68969","40.30383","-99.28345","Ragan","NE","Nebraska","TRUE","","21","5.3","31083","Harlan","{""31083"": ""100""}","Harlan","31083","FALSE","FALSE","America/Chicago"
-"68970","40.10883","-98.51522","Red Cloud","NE","Nebraska","TRUE","","1419","3.6","31181","Webster","{""31181"": ""100""}","Webster","31181","FALSE","FALSE","America/Chicago"
-"68971","40.11797","-99.24414","Republican City","NE","Nebraska","TRUE","","342","1.4","31083","Harlan","{""31083"": ""100""}","Harlan","31083","FALSE","FALSE","America/Chicago"
-"68972","40.10787","-98.80645","Riverton","NE","Nebraska","TRUE","","148","0.4","31061","Franklin","{""31061"": ""100""}","Franklin","31061","FALSE","FALSE","America/Chicago"
-"68973","40.45228","-98.56397","Roseland","NE","Nebraska","TRUE","","418","3.2","31001","Adams","{""31001"": ""100""}","Adams","31001","FALSE","FALSE","America/Chicago"
-"68974","40.1324","-97.87189","Ruskin","NE","Nebraska","TRUE","","172","2.1","31129","Nuckolls","{""31129"": ""100""}","Nuckolls","31129","FALSE","FALSE","America/Chicago"
-"68975","40.62041","-97.95379","Saronville","NE","Nebraska","TRUE","","107","1.5","31035","Clay","{""31035"": ""100""}","Clay","31035","FALSE","FALSE","America/Chicago"
-"68976","40.58319","-99.72852","Smithfield","NE","Nebraska","TRUE","","402","1.7","31073","Gosper","{""31073"": ""100""}","Gosper","31073","FALSE","FALSE","America/Chicago"
-"68977","40.0699","-99.63076","Stamford","NE","Nebraska","TRUE","","357","1.3","31083","Harlan","{""31083"": ""82.16"", ""31065"": ""17.84""}","Harlan|Furnas","31083|31065","FALSE","FALSE","America/Chicago"
-"68978","40.06335","-98.09144","Superior","NE","Nebraska","TRUE","","2276","6.1","31129","Nuckolls","{""31129"": ""97.06"", ""20089"": ""2.94""}","Nuckolls|Jewell","31129|20089","FALSE","FALSE","America/Chicago"
-"68979","40.58518","-97.85126","Sutton","NE","Nebraska","TRUE","","1785","5.4","31035","Clay","{""31035"": ""93.96"", ""31059"": ""6.04""}","Clay|Fillmore","31035|31059","FALSE","FALSE","America/Chicago"
-"68980","40.68125","-98.25261","Trumbull","NE","Nebraska","TRUE","","452","5.9","31035","Clay","{""31035"": ""72.16"", ""31001"": ""13.92"", ""31081"": ""13.92""}","Clay|Adams|Hamilton","31035|31001|31081","FALSE","FALSE","America/Chicago"
-"68981","40.281","-98.89665","Upland","NE","Nebraska","TRUE","","353","1.7","31061","Franklin","{""31061"": ""100""}","Franklin","31061","FALSE","FALSE","America/Chicago"
-"68982","40.33233","-99.18016","Wilcox","NE","Nebraska","TRUE","","612","2.3","31099","Kearney","{""31099"": ""65.02"", ""31061"": ""13.71"", ""31083"": ""10.94"", ""31137"": ""10.32""}","Kearney|Franklin|Harlan|Phelps","31099|31061|31083|31137","FALSE","FALSE","America/Chicago"
-"69001","40.24977","-100.64166","McCook","NE","Nebraska","TRUE","","8815","7.7","31145","Red Willow","{""31145"": ""98.29"", ""31063"": ""1.71""}","Red Willow|Frontier","31145|31063","FALSE","FALSE","America/Chicago"
-"69020","40.22083","-100.30358","Bartley","NE","Nebraska","TRUE","","503","2.1","31145","Red Willow","{""31145"": ""100""}","Red Willow","31145","FALSE","FALSE","America/Chicago"
-"69021","40.13758","-101.54253","Benkelman","NE","Nebraska","TRUE","","1416","1.8","31057","Dundy","{""31057"": ""100""}","Dundy","31057","FALSE","FALSE","America/Denver"
-"69022","40.35959","-100.18582","Cambridge","NE","Nebraska","TRUE","","1727","1.9","31065","Furnas","{""31065"": ""82.23"", ""31063"": ""10.38"", ""31145"": ""7.39""}","Furnas|Frontier|Red Willow","31065|31063|31145","FALSE","FALSE","America/Chicago"
-"69023","40.48119","-101.90418","Champion","NE","Nebraska","TRUE","","258","0.4","31029","Chase","{""31029"": ""100""}","Chase","31029","FALSE","FALSE","America/Denver"
-"69024","40.23235","-100.85151","Culbertson","NE","Nebraska","TRUE","","1325","1.8","31087","Hitchcock","{""31087"": ""92.22"", ""31085"": ""5.1"", ""31145"": ""2.68""}","Hitchcock|Hayes|Red Willow","31087|31085|31145","FALSE","FALSE","America/Chicago"
-"69025","40.62265","-100.51307","Curtis","NE","Nebraska","TRUE","","1087","1.8","31063","Frontier","{""31063"": ""96.8"", ""31111"": ""3.2""}","Frontier|Lincoln","31063|31111","FALSE","FALSE","America/Chicago"
-"69026","40.04677","-100.42967","Danbury","NE","Nebraska","TRUE","","216","1.7","31145","Red Willow","{""31145"": ""100""}","Red Willow","31145","FALSE","FALSE","America/Chicago"
-"69027","40.42736","-101.53668","Enders","NE","Nebraska","TRUE","","16","0.2","31029","Chase","{""31029"": ""100""}","Chase","31029","FALSE","FALSE","America/Denver"
-"69028","40.63536","-100.05634","Eustis","NE","Nebraska","TRUE","","802","1.7","31063","Frontier","{""31063"": ""82.35"", ""31047"": ""12.72"", ""31073"": ""4.92""}","Frontier|Dawson|Gosper","31063|31047|31073","FALSE","FALSE","America/Chicago"
-"69029","40.70961","-100.25091","Farnam","NE","Nebraska","TRUE","","411","0.8","31047","Dawson","{""31047"": ""68.35"", ""31063"": ""26.27"", ""31111"": ""5.38""}","Dawson|Frontier|Lincoln","31047|31063|31111","FALSE","FALSE","America/Chicago"
-"69030","40.20562","-101.92311","Haigler","NE","Nebraska","TRUE","","250","0.3","31057","Dundy","{""31057"": ""94.75"", ""31029"": ""5.25""}","Dundy|Chase","31057|31029","FALSE","FALSE","America/Denver"
-"69032","40.55803","-101.02052","Hayes Center","NE","Nebraska","TRUE","","526","0.6","31085","Hayes","{""31085"": ""100""}","Hayes","31085","FALSE","FALSE","America/Chicago"
-"69033","40.56053","-101.6785","Imperial","NE","Nebraska","TRUE","","2531","2.7","31029","Chase","{""31029"": ""100""}","Chase","31029","FALSE","FALSE","America/Denver"
-"69034","40.2486","-100.43074","Indianola","NE","Nebraska","TRUE","","1098","2.2","31145","Red Willow","{""31145"": ""96.59"", ""31063"": ""3.41""}","Red Willow|Frontier","31145|31063","FALSE","FALSE","America/Chicago"
-"69036","40.04866","-100.27437","Lebanon","NE","Nebraska","TRUE","","87","0.7","31145","Red Willow","{""31145"": ""100""}","Red Willow","31145","FALSE","FALSE","America/Chicago"
-"69037","40.19799","-101.41163","Max","NE","Nebraska","TRUE","","117","0.6","31057","Dundy","{""31057"": ""100""}","Dundy","31057","FALSE","FALSE","America/Denver"
-"69038","40.60865","-100.73986","Maywood","NE","Nebraska","TRUE","","524","1.2","31063","Frontier","{""31063"": ""87.08"", ""31085"": ""12.92""}","Frontier|Hayes","31063|31085","FALSE","FALSE","America/Chicago"
-"69039","40.69218","-100.38838","Moorefield","NE","Nebraska","TRUE","","100","0.4","31063","Frontier","{""31063"": ""76.98"", ""31111"": ""23.02""}","Frontier|Lincoln","31063|31111","FALSE","FALSE","America/Chicago"
-"69040","40.35016","-101.12728","Palisade","NE","Nebraska","TRUE","","555","1.1","31087","Hitchcock","{""31087"": ""68.14"", ""31085"": ""31.86""}","Hitchcock|Hayes","31087|31085","FALSE","FALSE","America/Chicago"
-"69041","40.17088","-101.73987","Parks","NE","Nebraska","TRUE","","67","0.2","31057","Dundy","{""31057"": ""100""}","Dundy","31057","FALSE","FALSE","America/Denver"
-"69042","40.4767","-100.40524","Stockville","NE","Nebraska","TRUE","","15","0.1","31063","Frontier","{""31063"": ""100""}","Frontier","31063","FALSE","FALSE","America/Chicago"
-"69043","40.1355","-101.2325","Stratton","NE","Nebraska","TRUE","","448","0.9","31087","Hitchcock","{""31087"": ""100""}","Hitchcock","31087","FALSE","FALSE","America/Chicago"
-"69044","40.12824","-101.02252","Trenton","NE","Nebraska","TRUE","","764","1.6","31087","Hitchcock","{""31087"": ""100""}","Hitchcock","31087","FALSE","FALSE","America/Chicago"
-"69045","40.47285","-101.37369","Wauneta","NE","Nebraska","TRUE","","1149","1.2","31029","Chase","{""31029"": ""80.1"", ""31085"": ""12.41"", ""31057"": ""7.49""}","Chase|Hayes|Dundy","31029|31085|31057","FALSE","FALSE","America/Denver"
-"69046","40.07638","-100.08654","Wilsonville","NE","Nebraska","TRUE","","113","0.4","31065","Furnas","{""31065"": ""100""}","Furnas","31065","FALSE","FALSE","America/Chicago"
-"69101","41.14266","-100.80079","North Platte","NE","Nebraska","TRUE","","29032","19.0","31111","Lincoln","{""31111"": ""99.9"", ""31117"": ""0.1""}","Lincoln|McPherson","31111|31117","FALSE","FALSE","America/Chicago"
-"69120","41.39539","-100.22699","Arnold","NE","Nebraska","TRUE","","1148","1.3","31041","Custer","{""31041"": ""87.65"", ""31111"": ""6.34"", ""31113"": ""6.02""}","Custer|Lincoln|Logan","31041|31111|31113","FALSE","FALSE","America/Chicago"
-"69121","41.5665","-101.69469","Arthur","NE","Nebraska","TRUE","","353","0.2","31005","Arthur","{""31005"": ""100""}","Arthur","31005","FALSE","FALSE","America/Denver"
-"69122","41.13007","-102.10258","Big Springs","NE","Nebraska","TRUE","","715","1.5","31049","Deuel","{""31049"": ""92.57"", ""31101"": ""7.43""}","Deuel|Keith","31049|31101","FALSE","FALSE","America/Denver"
-"69123","41.01217","-100.37252","Brady","NE","Nebraska","TRUE","","864","1.7","31111","Lincoln","{""31111"": ""100""}","Lincoln","31111","FALSE","FALSE","America/Chicago"
-"69125","41.61648","-102.83343","Broadwater","NE","Nebraska","TRUE","","316","0.5","31123","Morrill","{""31123"": ""100""}","Morrill","31123","FALSE","FALSE","America/Denver"
-"69127","41.12368","-101.91067","Brule","NE","Nebraska","TRUE","","823","1.8","31101","Keith","{""31101"": ""100""}","Keith","31101","FALSE","FALSE","America/Denver"
-"69128","41.22199","-103.92135","Bushnell","NE","Nebraska","TRUE","","139","0.1","31105","Kimball","{""31105"": ""85.1"", ""31007"": ""14.9""}","Kimball|Banner","31105|31007","FALSE","FALSE","America/Denver"
-"69129","41.11253","-102.41746","Chappell","NE","Nebraska","TRUE","","1116","1.4","31049","Deuel","{""31049"": ""100""}","Deuel","31049","FALSE","FALSE","America/Denver"
-"69130","40.88948","-99.95734","Cozad","NE","Nebraska","TRUE","","5044","8.6","31047","Dawson","{""31047"": ""100""}","Dawson","31047","FALSE","FALSE","America/Chicago"
-"69131","41.40732","-102.97355","Dalton","NE","Nebraska","TRUE","","736","1.5","31033","Cheyenne","{""31033"": ""96.43"", ""31123"": ""3.57""}","Cheyenne|Morrill","31033|31123","FALSE","FALSE","America/Denver"
-"69132","40.85684","-100.98323","Dickens","NE","Nebraska","TRUE","","109","0.3","31111","Lincoln","{""31111"": ""100""}","Lincoln","31111","FALSE","FALSE","America/Chicago"
-"69133","41.18871","-103.46028","Dix","NE","Nebraska","TRUE","","440","0.7","31105","Kimball","{""31105"": ""100""}","Kimball","31105","FALSE","FALSE","America/Denver"
-"69134","40.83787","-101.36428","Elsie","NE","Nebraska","TRUE","","444","0.8","31135","Perkins","{""31135"": ""96.7"", ""31085"": ""3.3""}","Perkins|Hayes","31135|31085","FALSE","FALSE","America/Denver"
-"69135","42.24019","-100.25949","Elsmere","NE","Nebraska","TRUE","","64","0.2","31031","Cherry","{""31031"": ""100""}","Cherry","31031","FALSE","FALSE","America/Chicago"
-"69138","40.99858","-100.17417","Gothenburg","NE","Nebraska","TRUE","","4141","4.7","31047","Dawson","{""31047"": ""93.81"", ""31041"": ""3.65"", ""31111"": ""2.54""}","Dawson|Custer|Lincoln","31047|31041|31111","FALSE","FALSE","America/Chicago"
-"69140","40.85087","-101.78039","Grant","NE","Nebraska","TRUE","","1831","2.0","31135","Perkins","{""31135"": ""100""}","Perkins","31135","FALSE","FALSE","America/Denver"
-"69141","41.30645","-102.95494","Gurley","NE","Nebraska","TRUE","","396","1.3","31033","Cheyenne","{""31033"": ""100""}","Cheyenne","31033","FALSE","FALSE","America/Denver"
-"69142","41.91574","-100.3172","Halsey","NE","Nebraska","TRUE","","128","0.4","31171","Thomas","{""31171"": ""100""}","Thomas","31171","FALSE","FALSE","America/Chicago"
-"69143","41.21012","-101.0392","Hershey","NE","Nebraska","TRUE","","1416","2.3","31111","Lincoln","{""31111"": ""100""}","Lincoln","31111","FALSE","FALSE","America/Chicago"
-"69144","41.29013","-101.58233","Keystone","NE","Nebraska","TRUE","","149","0.5","31101","Keith","{""31101"": ""100""}","Keith","31101","FALSE","FALSE","America/Denver"
-"69145","41.2465","-103.67052","Kimball","NE","Nebraska","TRUE","","3156","2.9","31105","Kimball","{""31105"": ""98.88"", ""31007"": ""1.12""}","Kimball|Banner","31105|31007","FALSE","FALSE","America/Denver"
-"69146","41.34411","-101.8176","Lemoyne","NE","Nebraska","TRUE","","289","0.7","31101","Keith","{""31101"": ""92.81"", ""31005"": ""7.19""}","Keith|Arthur","31101|31005","FALSE","FALSE","America/Denver"
-"69147","41.50657","-102.10098","Lewellen","NE","Nebraska","TRUE","","458","0.4","31069","Garden","{""31069"": ""63.64"", ""31101"": ""36.36""}","Garden|Keith","31069|31101","FALSE","FALSE","America/Denver"
-"69148","41.58567","-102.57943","Lisco","NE","Nebraska","TRUE","","119","0.1","31069","Garden","{""31069"": ""76.5"", ""31123"": ""23.5""}","Garden|Morrill","31069|31123","FALSE","FALSE","America/Denver"
-"69149","41.21545","-102.67597","Lodgepole","NE","Nebraska","TRUE","","725","0.9","31033","Cheyenne","{""31033"": ""95.14"", ""31069"": ""4.86""}","Cheyenne|Garden","31033|31069","FALSE","FALSE","America/Denver"
-"69150","40.84769","-101.54353","Madrid","NE","Nebraska","TRUE","","376","0.9","31135","Perkins","{""31135"": ""100""}","Perkins","31135","FALSE","FALSE","America/Denver"
-"69151","41.0982","-100.50409","Maxwell","NE","Nebraska","TRUE","","789","1.0","31111","Lincoln","{""31111"": ""100""}","Lincoln","31111","FALSE","FALSE","America/Chicago"
-"69152","42.10926","-101.13245","Mullen","NE","Nebraska","TRUE","","802","0.2","31091","Hooker","{""31091"": ""83.07"", ""31031"": ""16.93""}","Hooker|Cherry","31091|31031","FALSE","FALSE","America/Denver"
-"69153","41.09967","-101.67646","Ogallala","NE","Nebraska","TRUE","","5632","11.3","31101","Keith","{""31101"": ""100""}","Keith","31101","FALSE","FALSE","America/Denver"
-"69154","41.43717","-102.34768","Oshkosh","NE","Nebraska","TRUE","","1175","1.0","31069","Garden","{""31069"": ""100""}","Garden","31069","FALSE","FALSE","America/Denver"
-"69155","41.19466","-101.39565","Paxton","NE","Nebraska","TRUE","","1106","1.2","31101","Keith","{""31101"": ""100""}","Keith","31101","FALSE","FALSE","America/Denver"
-"69156","41.31093","-103.33204","Potter","NE","Nebraska","TRUE","","629","0.7","31033","Cheyenne","{""31033"": ""91.85"", ""31007"": ""8.15""}","Cheyenne|Banner","31033|31007","FALSE","FALSE","America/Denver"
-"69157","42.06169","-100.16159","Purdum","NE","Nebraska","TRUE","","73","1.0","31009","Blaine","{""31009"": ""100""}","Blaine","31009","FALSE","FALSE","America/Chicago"
-"69161","42.13836","-100.7693","Seneca","NE","Nebraska","TRUE","","76","0.2","31171","Thomas","{""31171"": ""76.54"", ""31031"": ""23.46""}","Thomas|Cherry","31171|31031","FALSE","FALSE","America/Denver"
-"69162","41.12789","-103.02521","Sidney","NE","Nebraska","TRUE","","7295","6.5","31033","Cheyenne","{""31033"": ""100""}","Cheyenne","31033","FALSE","FALSE","America/Denver"
-"69163","41.56183","-100.57078","Stapleton","NE","Nebraska","TRUE","","1048","0.6","31113","Logan","{""31113"": ""77.89"", ""31111"": ""18.9"", ""31171"": ""3.21""}","Logan|Lincoln|Thomas","31113|31111|31171","FALSE","FALSE","America/Chicago"
-"69165","41.3071","-101.22877","Sutherland","NE","Nebraska","TRUE","","1982","1.8","31111","Lincoln","{""31111"": ""96.25"", ""31117"": ""3.75""}","Lincoln|McPherson","31111|31117","FALSE","FALSE","America/Chicago"
-"69166","42.07125","-100.56855","Thedford","NE","Nebraska","TRUE","","626","0.3","31171","Thomas","{""31171"": ""70"", ""31031"": ""30""}","Thomas|Cherry","31171|31031","FALSE","FALSE","America/Chicago"
-"69167","41.59477","-101.00348","Tryon","NE","Nebraska","TRUE","","313","0.2","31117","McPherson","{""31117"": ""100""}","McPherson","31117","FALSE","FALSE","America/Chicago"
-"69168","40.79934","-101.98656","Venango","NE","Nebraska","TRUE","","221","0.5","31135","Perkins","{""31135"": ""93.36"", ""31029"": ""6.64""}","Perkins|Chase","31135|31029","FALSE","FALSE","America/Denver"
-"69169","40.81753","-101.1691","Wallace","NE","Nebraska","TRUE","","519","0.8","31111","Lincoln","{""31111"": ""87.25"", ""31135"": ""10.45"", ""31085"": ""2.3""}","Lincoln|Perkins|Hayes","31111|31135|31085","FALSE","FALSE","America/Chicago"
-"69170","40.79808","-100.7415","Wellfleet","NE","Nebraska","TRUE","","250","0.4","31111","Lincoln","{""31111"": ""100""}","Lincoln","31111","FALSE","FALSE","America/Chicago"
-"69171","40.89006","-100.07072","Willow Island","NE","Nebraska","TRUE","","9","1.2","31047","Dawson","{""31047"": ""100""}","Dawson","31047","FALSE","FALSE","America/Chicago"
-"69201","42.71527","-100.61122","Valentine","NE","Nebraska","TRUE","","4033","1.3","31031","Cherry","{""31031"": ""92.66"", ""46121"": ""6.67"", ""31103"": ""0.67""}","Cherry|Todd|Keya Paha","31031|46121|31103","FALSE","FALSE","America/Chicago"
-"69210","42.37775","-99.90853","Ainsworth","NE","Nebraska","TRUE","","2175","1.1","31017","Brown","{""31017"": ""99.52"", ""31103"": ""0.48""}","Brown|Keya Paha","31017|31103","FALSE","FALSE","America/Chicago"
-"69211","42.82499","-101.29132","Cody","NE","Nebraska","TRUE","","414","0.3","31031","Cherry","{""31031"": ""100""}","Cherry","31031","FALSE","FALSE","America/Denver"
-"69212","42.93681","-100.79259","Crookston","NE","Nebraska","TRUE","","266","0.6","31031","Cherry","{""31031"": ""64.11"", ""46121"": ""35.89""}","Cherry|Todd","31031|46121","FALSE","FALSE","America/Chicago"
-"69214","42.60814","-100.08656","Johnstown","NE","Nebraska","TRUE","","364","0.5","31017","Brown","{""31017"": ""100""}","Brown","31017","FALSE","FALSE","America/Chicago"
-"69216","42.9872","-100.98732","Kilgore","NE","Nebraska","TRUE","","118","0.2","31031","Cherry","{""31031"": ""70.69"", ""46121"": ""29.31""}","Cherry|Todd","31031|46121","FALSE","FALSE","America/Denver"
-"69217","42.38756","-99.71404","Long Pine","NE","Nebraska","TRUE","","489","1.1","31017","Brown","{""31017"": ""88.18"", ""31149"": ""11.82""}","Brown|Rock","31017|31149","FALSE","FALSE","America/Chicago"
-"69218","42.78883","-101.66748","Merriman","NE","Nebraska","TRUE","","316","0.2","31031","Cherry","{""31031"": ""100""}","Cherry","31031","FALSE","FALSE","America/Denver"
-"69219","42.70609","-101.10082","Nenzel","NE","Nebraska","TRUE","","181","0.2","31031","Cherry","{""31031"": ""100""}","Cherry","31031","FALSE","FALSE","America/Denver"
-"69220","42.90092","-100.18995","Sparks","NE","Nebraska","TRUE","","26","0.2","31031","Cherry","{""31031"": ""61.02"", ""31103"": ""38.98""}","Cherry|Keya Paha","31031|31103","FALSE","FALSE","America/Chicago"
-"69221","42.59286","-100.3109","Wood Lake","NE","Nebraska","TRUE","","147","0.1","31031","Cherry","{""31031"": ""100""}","Cherry","31031","FALSE","FALSE","America/Chicago"
-"69301","42.12051","-102.88314","Alliance","NE","Nebraska","TRUE","","9504","3.6","31013","Box Butte","{""31013"": ""98.08"", ""31161"": ""1.34"", ""31123"": ""0.57""}","Box Butte|Sheridan|Morrill","31013|31161|31123","FALSE","FALSE","America/Denver"
-"69331","41.87278","-102.98652","Angora","NE","Nebraska","TRUE","","92","0.2","31123","Morrill","{""31123"": ""100""}","Morrill","31123","FALSE","FALSE","America/Denver"
-"69333","42.05948","-101.97264","Ashby","NE","Nebraska","TRUE","","362","0.2","31075","Grant","{""31075"": ""50.63"", ""31031"": ""37.24"", ""31069"": ""12.13""}","Grant|Cherry|Garden","31075|31031|31069","FALSE","FALSE","America/Denver"
-"69334","41.82583","-103.28838","Bayard","NE","Nebraska","TRUE","","2072","2.6","31123","Morrill","{""31123"": ""86.86"", ""31157"": ""12.04"", ""31007"": ""1.11""}","Morrill|Scotts Bluff|Banner","31123|31157|31007","FALSE","FALSE","America/Denver"
-"69335","42.08291","-102.11388","Bingham","NE","Nebraska","TRUE","","20","0.1","31161","Sheridan","{""31161"": ""100""}","Sheridan","31161","FALSE","FALSE","America/Denver"
-"69336","41.60962","-103.14127","Bridgeport","NE","Nebraska","TRUE","","2451","2.1","31123","Morrill","{""31123"": ""100""}","Morrill","31123","FALSE","FALSE","America/Denver"
-"69337","42.82654","-103.01091","Chadron","NE","Nebraska","TRUE","","7009","3.9","31045","Dawes","{""31045"": ""99.66"", ""31161"": ""0.34""}","Dawes|Sheridan","31045|31161","FALSE","FALSE","America/Denver"
-"69339","42.59536","-103.40799","Crawford","NE","Nebraska","TRUE","","1473","1.5","31045","Dawes","{""31045"": ""95.42"", ""31165"": ""4.58""}","Dawes|Sioux","31045|31165","FALSE","FALSE","America/Denver"
-"69340","42.21349","-102.20804","Ellsworth","NE","Nebraska","TRUE","","75","0.1","31161","Sheridan","{""31161"": ""100""}","Sheridan","31161","FALSE","FALSE","America/Denver"
-"69341","41.73123","-103.67304","Gering","NE","Nebraska","TRUE","","10787","18.9","31157","Scotts Bluff","{""31157"": ""99.53"", ""31007"": ""0.47""}","Scotts Bluff|Banner","31157|31007","FALSE","FALSE","America/Denver"
-"69343","42.69427","-102.01462","Gordon","NE","Nebraska","TRUE","","2378","0.7","31161","Sheridan","{""31161"": ""93.7"", ""31031"": ""6.3""}","Sheridan|Cherry","31161|31031","FALSE","FALSE","America/Denver"
-"69345","41.5752","-103.74548","Harrisburg","NE","Nebraska","TRUE","","463","0.4","31007","Banner","{""31007"": ""100""}","Banner","31007","FALSE","FALSE","America/Denver"
-"69346","42.6874","-103.81099","Harrison","NE","Nebraska","TRUE","","599","0.2","31165","Sioux","{""31165"": ""100""}","Sioux","31165","FALSE","FALSE","America/Denver"
-"69347","42.60771","-102.67976","Hay Springs","NE","Nebraska","TRUE","","1398","1.2","31161","Sheridan","{""31161"": ""94.8"", ""31045"": ""5.2""}","Sheridan|Dawes","31161|31045","FALSE","FALSE","America/Denver"
-"69348","42.28163","-103.31798","Hemingford","NE","Nebraska","TRUE","","1645","0.7","31013","Box Butte","{""31013"": ""91.62"", ""31165"": ""4.26"", ""31045"": ""4.13""}","Box Butte|Sioux|Dawes","31013|31165|31045","FALSE","FALSE","America/Denver"
-"69350","41.97744","-101.73279","Hyannis","NE","Nebraska","TRUE","","384","0.3","31075","Grant","{""31075"": ""88.51"", ""31031"": ""10.18"", ""31005"": ""1.31""}","Grant|Cherry|Arthur","31075|31031|31005","FALSE","FALSE","America/Denver"
-"69351","42.03702","-102.41872","Lakeside","NE","Nebraska","TRUE","","257","0.1","31161","Sheridan","{""31161"": ""71.06"", ""31069"": ""28.94""}","Sheridan|Garden","31161|31069","FALSE","FALSE","America/Denver"
-"69352","41.80064","-103.97065","Lyman","NE","Nebraska","TRUE","","721","2.1","31157","Scotts Bluff","{""31157"": ""100""}","Scotts Bluff","31157","FALSE","FALSE","America/Denver"
-"69353","41.74715","-103.41677","Mcgrew","NE","Nebraska","TRUE","","29","377.5","31157","Scotts Bluff","{""31157"": ""100""}","Scotts Bluff","31157","FALSE","FALSE","America/Denver"
-"69354","42.43668","-103.40774","Marsland","NE","Nebraska","TRUE","","60","0.1","31045","Dawes","{""31045"": ""62.89"", ""31165"": ""37.11""}","Dawes|Sioux","31045|31165","FALSE","FALSE","America/Denver"
-"69355","41.78298","-103.50793","Melbeta","NE","Nebraska","TRUE","","176","117.8","31157","Scotts Bluff","{""31157"": ""100""}","Scotts Bluff","31157","FALSE","FALSE","America/Denver"
-"69356","41.89476","-103.45129","Minatare","NE","Nebraska","TRUE","","1919","5.8","31157","Scotts Bluff","{""31157"": ""100""}","Scotts Bluff","31157","FALSE","FALSE","America/Denver"
-"69357","42.07536","-103.81427","Mitchell","NE","Nebraska","TRUE","","3354","4.1","31157","Scotts Bluff","{""31157"": ""94.56"", ""31165"": ""5.44""}","Scotts Bluff|Sioux","31157|31165","FALSE","FALSE","America/Denver"
-"69358","42.06784","-103.96709","Morrill","NE","Nebraska","TRUE","","1932","4.0","31157","Scotts Bluff","{""31157"": ""82.96"", ""31165"": ""17.04""}","Scotts Bluff|Sioux","31157|31165","FALSE","FALSE","America/Denver"
-"69360","42.69945","-102.47171","Rushville","NE","Nebraska","TRUE","","1310","1.2","31161","Sheridan","{""31161"": ""100""}","Sheridan","31161","FALSE","FALSE","America/Denver"
-"69361","41.9246","-103.62167","Scottsbluff","NE","Nebraska","TRUE","","17397","58.8","31157","Scotts Bluff","{""31157"": ""99.82"", ""31165"": ""0.18""}","Scotts Bluff|Sioux","31157|31165","FALSE","FALSE","America/Denver"
-"69365","42.9686","-102.51041","Whiteclay","NE","Nebraska","TRUE","","36","0.8","31161","Sheridan","{""31161"": ""100""}","Sheridan","31161","FALSE","FALSE","America/Denver"
-"69366","42.15757","-101.55442","Whitman","NE","Nebraska","TRUE","","300","0.2","31075","Grant","{""31075"": ""60.87"", ""31031"": ""26.88"", ""31005"": ""12.25""}","Grant|Cherry|Arthur","31075|31031|31005","FALSE","FALSE","America/Denver"
-"69367","42.81616","-103.32848","Whitney","NE","Nebraska","TRUE","","331","0.6","31045","Dawes","{""31045"": ""100""}","Dawes","31045","FALSE","FALSE","America/Denver"
-"70001","29.98373","-90.16724","Metairie","LA","Louisiana","TRUE","","39447","2542.5","22051","Jefferson","{""22051"": ""100""}","Jefferson","22051","FALSE","FALSE","America/Chicago"
-"70002","30.01051","-90.16221","Metairie","LA","Louisiana","TRUE","","19858","2388.2","22051","Jefferson","{""22051"": ""100""}","Jefferson","22051","FALSE","FALSE","America/Chicago"
-"70003","29.99855","-90.21402","Metairie","LA","Louisiana","TRUE","","40578","2234.2","22051","Jefferson","{""22051"": ""100""}","Jefferson","22051","FALSE","FALSE","America/Chicago"
-"70005","29.99969","-90.1339","Metairie","LA","Louisiana","TRUE","","25242","2300.0","22051","Jefferson","{""22051"": ""100""}","Jefferson","22051","FALSE","FALSE","America/Chicago"
-"70006","30.01408","-90.1918","Metairie","LA","Louisiana","TRUE","","15888","2363.8","22051","Jefferson","{""22051"": ""100""}","Jefferson","22051","FALSE","FALSE","America/Chicago"
-"70030","29.81729","-90.43232","Des Allemands","LA","Louisiana","TRUE","","3509","43.0","22089","St. Charles","{""22089"": ""89.99"", ""22057"": ""10.01""}","St. Charles|Lafourche","22089|22057","FALSE","FALSE","America/Chicago"
-"70031","29.94194","-90.29591","Ama","LA","Louisiana","TRUE","","1172","129.2","22089","St. Charles","{""22089"": ""100""}","St. Charles","22089","FALSE","FALSE","America/Chicago"
-"70032","29.95808","-89.99784","Arabi","LA","Louisiana","TRUE","","4387","968.2","22087","St. Bernard","{""22087"": ""100""}","St. Bernard","22087","FALSE","FALSE","America/Chicago"
-"70036","29.70904","-90.12118","Barataria","LA","Louisiana","TRUE","","1349","118.9","22051","Jefferson","{""22051"": ""100""}","Jefferson","22051","FALSE","FALSE","America/Chicago"
-"70037","29.7482","-90.00821","Belle Chasse","LA","Louisiana","TRUE","","16465","101.7","22075","Plaquemines","{""22075"": ""100""}","Plaquemines","22075","FALSE","FALSE","America/Chicago"
-"70038","29.32522","-89.39859","Boothville","LA","Louisiana","TRUE","","167","48.5","22075","Plaquemines","{""22075"": ""100""}","Plaquemines","22075","FALSE","FALSE","America/Chicago"
-"70039","29.88144","-90.38905","Boutte","LA","Louisiana","TRUE","","2716","86.6","22089","St. Charles","{""22089"": ""100""}","St. Charles","22089","FALSE","FALSE","America/Chicago"
-"70040","29.74732","-89.94379","Braithwaite","LA","Louisiana","TRUE","","992","6.1","22075","Plaquemines","{""22075"": ""100""}","Plaquemines","22075","FALSE","FALSE","America/Chicago"
-"70041","29.37292","-89.53473","Buras","LA","Louisiana","TRUE","","2597","95.6","22075","Plaquemines","{""22075"": ""100""}","Plaquemines","22075","FALSE","FALSE","America/Chicago"
-"70043","29.94804","-89.96274","Chalmette","LA","Louisiana","TRUE","","23851","1183.6","22087","St. Bernard","{""22087"": ""100""}","St. Bernard","22087","FALSE","FALSE","America/Chicago"
-"70047","29.96954","-90.36589","Destrehan","LA","Louisiana","TRUE","","12787","458.1","22089","St. Charles","{""22089"": ""100""}","St. Charles","22089","FALSE","FALSE","America/Chicago"
-"70049","30.02889","-90.57025","Edgard","LA","Louisiana","TRUE","","1785","38.0","22095","St. John the Baptist","{""22095"": ""100""}","St. John the Baptist","22095","FALSE","FALSE","America/Chicago"
-"70050","29.38165","-89.59203","Empire","LA","Louisiana","TRUE","","85","56.7","22075","Plaquemines","{""22075"": ""100""}","Plaquemines","22075","FALSE","FALSE","America/Chicago"
-"70051","30.07286","-90.63104","Garyville","LA","Louisiana","TRUE","","2049","88.9","22095","St. John the Baptist","{""22095"": ""100""}","St. John the Baptist","22095","FALSE","FALSE","America/Chicago"
-"70052","30.08239","-90.6994","Gramercy","LA","Louisiana","TRUE","","3688","491.4","22093","St. James","{""22093"": ""100""}","St. James","22093","FALSE","FALSE","America/Chicago"
-"70053","29.9145","-90.05338","Gretna","LA","Louisiana","TRUE","","16500","1854.5","22051","Jefferson","{""22051"": ""100""}","Jefferson","22051","FALSE","FALSE","America/Chicago"
-"70056","29.88861","-90.0303","Gretna","LA","Louisiana","TRUE","","40639","2312.8","22051","Jefferson","{""22051"": ""100""}","Jefferson","22051","FALSE","FALSE","America/Chicago"
-"70057","29.96601","-90.46279","Hahnville","LA","Louisiana","TRUE","","4658","46.7","22089","St. Charles","{""22089"": ""100""}","St. Charles","22089","FALSE","FALSE","America/Chicago"
-"70058","29.87048","-90.06706","Harvey","LA","Louisiana","TRUE","","39040","1193.6","22051","Jefferson","{""22051"": ""100""}","Jefferson","22051","FALSE","FALSE","America/Chicago"
-"70062","29.98927","-90.25576","Kenner","LA","Louisiana","TRUE","","17287","943.3","22051","Jefferson","{""22051"": ""100""}","Jefferson","22051","FALSE","FALSE","America/Chicago"
-"70065","30.02764","-90.25403","Kenner","LA","Louisiana","TRUE","","50752","2436.4","22051","Jefferson","{""22051"": ""100""}","Jefferson","22051","FALSE","FALSE","America/Chicago"
-"70067","29.71427","-90.10525","Lafitte","LA","Louisiana","TRUE","","2485","91.6","22051","Jefferson","{""22051"": ""100""}","Jefferson","22051","FALSE","FALSE","America/Chicago"
-"70068","30.13454","-90.43473","La Place","LA","Louisiana","TRUE","","33855","243.9","22095","St. John the Baptist","{""22095"": ""94.32"", ""22089"": ""5.68""}","St. John the Baptist|St. Charles","22095|22089","FALSE","FALSE","America/Chicago"
-"70070","29.83446","-90.30509","Luling","LA","Louisiana","TRUE","","14363","60.1","22089","St. Charles","{""22089"": ""100""}","St. Charles","22089","FALSE","FALSE","America/Chicago"
-"70071","30.05473","-90.70644","Lutcher","LA","Louisiana","TRUE","","3304","493.2","22093","St. James","{""22093"": ""100""}","St. James","22093","FALSE","FALSE","America/Chicago"
-"70072","29.83601","-90.11042","Marrero","LA","Louisiana","TRUE","","55877","1040.0","22051","Jefferson","{""22051"": ""100""}","Jefferson","22051","FALSE","FALSE","America/Chicago"
-"70075","29.93294","-89.9213","Meraux","LA","Louisiana","TRUE","","5728","669.2","22087","St. Bernard","{""22087"": ""100""}","St. Bernard","22087","FALSE","FALSE","America/Chicago"
-"70076","30.06504","-90.64642","Mount Airy","LA","Louisiana","TRUE","","106","15.0","22095","St. John the Baptist","{""22095"": ""100""}","St. John the Baptist","22095","FALSE","FALSE","America/Chicago"
-"70079","30.004","-90.41029","Norco","LA","Louisiana","TRUE","","2850","491.2","22089","St. Charles","{""22089"": ""100""}","St. Charles","22089","FALSE","FALSE","America/Chicago"
-"70080","29.88514","-90.43404","Paradis","LA","Louisiana","TRUE","","1586","57.3","22089","St. Charles","{""22089"": ""100""}","St. Charles","22089","FALSE","FALSE","America/Chicago"
-"70082","29.5582","-89.74973","Pointe A La Hache","LA","Louisiana","TRUE","","190","5.4","22075","Plaquemines","{""22075"": ""100""}","Plaquemines","22075","FALSE","FALSE","America/Chicago"
-"70083","29.50875","-89.85111","Port Sulphur","LA","Louisiana","TRUE","","2520","7.8","22075","Plaquemines","{""22075"": ""100""}","Plaquemines","22075","FALSE","FALSE","America/Chicago"
-"70084","30.07521","-90.5679","Reserve","LA","Louisiana","TRUE","","6028","154.0","22095","St. John the Baptist","{""22095"": ""100""}","St. John the Baptist","22095","FALSE","FALSE","America/Chicago"
-"70085","29.83621","-89.73963","Saint Bernard","LA","Louisiana","TRUE","","4941","49.4","22087","St. Bernard","{""22087"": ""100""}","St. Bernard","22087","FALSE","FALSE","America/Chicago"
-"70086","30.03206","-90.87544","Saint James","LA","Louisiana","TRUE","","2197","37.4","22093","St. James","{""22093"": ""100""}","St. James","22093","FALSE","FALSE","America/Chicago"
-"70087","29.97743","-90.31484","Saint Rose","LA","Louisiana","TRUE","","7352","224.9","22089","St. Charles","{""22089"": ""100""}","St. Charles","22089","FALSE","FALSE","America/Chicago"
-"70090","29.96846","-90.70461","Vacherie","LA","Louisiana","TRUE","","7621","58.8","22093","St. James","{""22093"": ""88.05"", ""22095"": ""11.95""}","St. James|St. John the Baptist","22093|22095","FALSE","FALSE","America/Chicago"
-"70091","29.21349","-89.28346","Venice","LA","Louisiana","TRUE","","322","0.6","22075","Plaquemines","{""22075"": ""100""}","Plaquemines","22075","FALSE","FALSE","America/Chicago"
-"70092","29.89997","-89.89274","Violet","LA","Louisiana","TRUE","","7359","585.1","22087","St. Bernard","{""22087"": ""100""}","St. Bernard","22087","FALSE","FALSE","America/Chicago"
-"70094","29.91347","-90.20805","Westwego","LA","Louisiana","TRUE","","30468","331.5","22051","Jefferson","{""22051"": ""100""}","Jefferson","22051","FALSE","FALSE","America/Chicago"
-"70112","29.95705","-90.07686","New Orleans","LA","Louisiana","TRUE","","2883","1276.4","22071","Orleans","{""22071"": ""100""}","Orleans","22071","FALSE","FALSE","America/Chicago"
-"70113","29.94295","-90.08308","New Orleans","LA","Louisiana","TRUE","","7734","2937.2","22071","Orleans","{""22071"": ""100""}","Orleans","22071","FALSE","FALSE","America/Chicago"
-"70114","29.93794","-90.03267","New Orleans","LA","Louisiana","TRUE","","24128","1913.1","22071","Orleans","{""22071"": ""100""}","Orleans","22071","FALSE","FALSE","America/Chicago"
-"70115","29.92391","-90.10201","New Orleans","LA","Louisiana","TRUE","","34768","3462.0","22071","Orleans","{""22071"": ""100""}","Orleans","22071","FALSE","FALSE","America/Chicago"
-"70116","29.96725","-90.0644","New Orleans","LA","Louisiana","TRUE","","11628","3476.1","22071","Orleans","{""22071"": ""100""}","Orleans","22071","FALSE","FALSE","America/Chicago"
-"70117","29.96845","-90.03005","New Orleans","LA","Louisiana","TRUE","","27137","1911.9","22071","Orleans","{""22071"": ""100""}","Orleans","22071","FALSE","FALSE","America/Chicago"
-"70118","29.94519","-90.12557","New Orleans","LA","Louisiana","TRUE","","36090","2974.8","22071","Orleans","{""22071"": ""100""}","Orleans","22071","FALSE","FALSE","America/Chicago"
-"70119","29.97572","-90.08698","New Orleans","LA","Louisiana","TRUE","","37430","3232.6","22071","Orleans","{""22071"": ""100""}","Orleans","22071","FALSE","FALSE","America/Chicago"
-"70121","29.96184","-90.16244","New Orleans","LA","Louisiana","TRUE","","11466","1180.7","22051","Jefferson","{""22051"": ""100""}","Jefferson","22051","FALSE","FALSE","America/Chicago"
-"70122","30.01317","-90.06285","New Orleans","LA","Louisiana","TRUE","","38175","2089.4","22071","Orleans","{""22071"": ""100""}","Orleans","22071","FALSE","FALSE","America/Chicago"
-"70123","29.9509","-90.20507","New Orleans","LA","Louisiana","TRUE","","27234","1399.5","22051","Jefferson","{""22051"": ""100""}","Jefferson","22051","FALSE","FALSE","America/Chicago"
-"70124","30.00748","-90.10373","New Orleans","LA","Louisiana","TRUE","","20414","1181.9","22071","Orleans","{""22071"": ""100""}","Orleans","22071","FALSE","FALSE","America/Chicago"
-"70125","29.9521","-90.10335","New Orleans","LA","Louisiana","TRUE","","18926","3118.3","22071","Orleans","{""22071"": ""100""}","Orleans","22071","FALSE","FALSE","America/Chicago"
-"70126","30.01849","-90.02115","New Orleans","LA","Louisiana","TRUE","","28390","1084.8","22071","Orleans","{""22071"": ""100""}","Orleans","22071","FALSE","FALSE","America/Chicago"
-"70127","30.02506","-89.97673","New Orleans","LA","Louisiana","TRUE","","25839","1405.8","22071","Orleans","{""22071"": ""100""}","Orleans","22071","FALSE","FALSE","America/Chicago"
-"70128","30.05108","-89.95511","New Orleans","LA","Louisiana","TRUE","","19405","1537.1","22071","Orleans","{""22071"": ""100""}","Orleans","22071","FALSE","FALSE","America/Chicago"
-"70129","30.08249","-89.81558","New Orleans","LA","Louisiana","TRUE","","10178","43.3","22071","Orleans","{""22071"": ""100""}","Orleans","22071","FALSE","FALSE","America/Chicago"
-"70130","29.93676","-90.06934","New Orleans","LA","Louisiana","TRUE","","14510","2659.3","22071","Orleans","{""22071"": ""100""}","Orleans","22071","FALSE","FALSE","America/Chicago"
-"70131","29.90818","-89.96119","New Orleans","LA","Louisiana","TRUE","","33210","1076.9","22071","Orleans","{""22071"": ""100""}","Orleans","22071","FALSE","FALSE","America/Chicago"
-"70139","29.95023","-90.071","New Orleans","LA","Louisiana","TRUE","","0","0.0","22071","Orleans","{""22071"": ""0""}","Orleans","22071","FALSE","FALSE","America/Chicago"
-"70163","29.95006","-90.07544","New Orleans","LA","Louisiana","TRUE","","0","0.0","22071","Orleans","{""22071"": ""0""}","Orleans","22071","FALSE","FALSE","America/Chicago"
-"70301","29.81411","-90.74082","Thibodaux","LA","Louisiana","TRUE","","45993","61.6","22057","Lafourche","{""22057"": ""90.93"", ""22109"": ""7.16"", ""22007"": ""1.91""}","Lafourche|Terrebonne|Assumption","22057|22109|22007","FALSE","FALSE","America/Chicago"
-"70339","29.92366","-91.18158","Pierre Part","LA","Louisiana","TRUE","","4834","33.2","22007","Assumption","{""22007"": ""93.2"", ""22099"": ""6.8""}","Assumption|St. Martin","22007|22099","FALSE","FALSE","America/Chicago"
-"70340","29.66974","-91.1043","Amelia","LA","Louisiana","TRUE","","189","1421.1","22101","St. Mary","{""22101"": ""100""}","St. Mary","22101","FALSE","FALSE","America/Chicago"
-"70341","30.03056","-91.0679","Belle Rose","LA","Louisiana","TRUE","","4347","29.0","22007","Assumption","{""22007"": ""100""}","Assumption","22007","FALSE","FALSE","America/Chicago"
-"70342","29.69486","-91.23766","Berwick","LA","Louisiana","TRUE","","4739","246.2","22101","St. Mary","{""22101"": ""100""}","St. Mary","22101","FALSE","FALSE","America/Chicago"
-"70343","29.54813","-90.55717","Bourg","LA","Louisiana","TRUE","","5131","68.5","22109","Terrebonne","{""22109"": ""91.61"", ""22057"": ""8.39""}","Terrebonne|Lafourche","22109|22057","FALSE","FALSE","America/Chicago"
-"70344","29.31205","-90.64965","Chauvin","LA","Louisiana","TRUE","","5364","20.5","22109","Terrebonne","{""22109"": ""100""}","Terrebonne","22109","FALSE","FALSE","America/Chicago"
-"70345","29.55121","-90.26282","Cut Off","LA","Louisiana","TRUE","","9846","40.9","22057","Lafourche","{""22057"": ""100""}","Lafourche","22057","FALSE","FALSE","America/Chicago"
-"70346","30.12207","-91.02757","Donaldsonville","LA","Louisiana","TRUE","","11422","85.7","22005","Ascension","{""22005"": ""100""}","Ascension","22005","FALSE","FALSE","America/Chicago"
-"70352","29.68513","-90.94384","Donner","LA","Louisiana","TRUE","","237","24.8","22109","Terrebonne","{""22109"": ""100""}","Terrebonne","22109","FALSE","FALSE","America/Chicago"
-"70353","29.37072","-90.70531","Dulac","LA","Louisiana","TRUE","","1154","20.9","22109","Terrebonne","{""22109"": ""100""}","Terrebonne","22109","FALSE","FALSE","America/Chicago"
-"70354","29.43738","-90.28482","Galliano","LA","Louisiana","TRUE","","4077","13.5","22057","Lafourche","{""22057"": ""100""}","Lafourche","22057","FALSE","FALSE","America/Chicago"
-"70355","29.69904","-90.42925","Gheens","LA","Louisiana","TRUE","","1260","4.7","22057","Lafourche","{""22057"": ""100""}","Lafourche","22057","FALSE","FALSE","America/Chicago"
-"70356","29.64175","-90.9606","Gibson","LA","Louisiana","TRUE","","1903","11.2","22109","Terrebonne","{""22109"": ""100""}","Terrebonne","22109","FALSE","FALSE","America/Chicago"
-"70357","29.28651","-90.18315","Golden Meadow","LA","Louisiana","TRUE","","2595","4.7","22057","Lafourche","{""22057"": ""100""}","Lafourche","22057","FALSE","FALSE","America/Chicago"
-"70358","29.21577","-90.02775","Grand Isle","LA","Louisiana","TRUE","","740","44.6","22051","Jefferson","{""22051"": ""100""}","Jefferson","22051","FALSE","FALSE","America/Chicago"
-"70359","29.69401","-90.77654","Gray","LA","Louisiana","TRUE","","8465","343.1","22109","Terrebonne","{""22109"": ""68.45"", ""22057"": ""31.55""}","Terrebonne|Lafourche","22109|22057","FALSE","FALSE","America/Chicago"
-"70360","29.5882","-90.81023","Houma","LA","Louisiana","TRUE","","28899","173.5","22109","Terrebonne","{""22109"": ""100""}","Terrebonne","22109","FALSE","FALSE","America/Chicago"
-"70363","29.51679","-90.70662","Houma","LA","Louisiana","TRUE","","26849","138.3","22109","Terrebonne","{""22109"": ""100""}","Terrebonne","22109","FALSE","FALSE","America/Chicago"
-"70364","29.63437","-90.68765","Houma","LA","Louisiana","TRUE","","29979","273.3","22109","Terrebonne","{""22109"": ""81.6"", ""22057"": ""18.4""}","Terrebonne|Lafourche","22109|22057","FALSE","FALSE","America/Chicago"
-"70372","29.78302","-90.98896","Labadieville","LA","Louisiana","TRUE","","2328","30.7","22007","Assumption","{""22007"": ""100""}","Assumption","22007","FALSE","FALSE","America/Chicago"
-"70373","29.59705","-90.34243","Larose","LA","Louisiana","TRUE","","6769","36.3","22057","Lafourche","{""22057"": ""100""}","Lafourche","22057","FALSE","FALSE","America/Chicago"
-"70374","29.60197","-90.49873","Lockport","LA","Louisiana","TRUE","","7295","57.0","22057","Lafourche","{""22057"": ""100""}","Lafourche","22057","FALSE","FALSE","America/Chicago"
-"70375","29.69274","-90.53684","Mathews","LA","Louisiana","TRUE","","92","16.2","22057","Lafourche","{""22057"": ""100""}","Lafourche","22057","FALSE","FALSE","America/Chicago"
-"70377","29.38943","-90.51238","Montegut","LA","Louisiana","TRUE","","4530","13.2","22109","Terrebonne","{""22109"": ""88.46"", ""22057"": ""11.54""}","Terrebonne|Lafourche","22109|22057","FALSE","FALSE","America/Chicago"
-"70380","29.72179","-91.11651","Morgan City","LA","Louisiana","TRUE","","21055","125.3","22101","St. Mary","{""22101"": ""86.51"", ""22007"": ""9"", ""22099"": ""4.49""}","St. Mary|Assumption|St. Martin","22101|22007|22099","FALSE","FALSE","America/Chicago"
-"70390","29.8964","-91.02726","Napoleonville","LA","Louisiana","TRUE","","7728","18.5","22007","Assumption","{""22007"": ""100""}","Assumption","22007","FALSE","FALSE","America/Chicago"
-"70391","29.99096","-91.06069","Paincourtville","LA","Louisiana","TRUE","","309","154.3","22007","Assumption","{""22007"": ""100""}","Assumption","22007","FALSE","FALSE","America/Chicago"
-"70392","29.73002","-91.3167","Patterson","LA","Louisiana","TRUE","","8714","109.4","22101","St. Mary","{""22101"": ""99.96"", ""22099"": ""0.04""}","St. Mary|St. Martin","22101|22099","FALSE","FALSE","America/Chicago"
-"70393","29.99136","-91.00732","Plattenville","LA","Louisiana","TRUE","","769","41.0","22007","Assumption","{""22007"": ""100""}","Assumption","22007","FALSE","FALSE","America/Chicago"
-"70394","29.69449","-90.61115","Raceland","LA","Louisiana","TRUE","","15173","68.1","22057","Lafourche","{""22057"": ""100""}","Lafourche","22057","FALSE","FALSE","America/Chicago"
-"70395","29.69301","-90.85117","Schriever","LA","Louisiana","TRUE","","4132","32.6","22109","Terrebonne","{""22109"": ""100""}","Terrebonne","22109","FALSE","FALSE","America/Chicago"
-"70397","29.40939","-90.7859","Theriot","LA","Louisiana","TRUE","","777","6.8","22109","Terrebonne","{""22109"": ""100""}","Terrebonne","22109","FALSE","FALSE","America/Chicago"
-"70401","30.52828","-90.45675","Hammond","LA","Louisiana","TRUE","","19677","217.1","22105","Tangipahoa","{""22105"": ""100""}","Tangipahoa","22105","FALSE","FALSE","America/Chicago"
-"70402","30.51619","-90.4702","Hammond","LA","Louisiana","TRUE","","1845","8281.1","22105","Tangipahoa","{""22105"": ""100""}","Tangipahoa","22105","FALSE","FALSE","America/Chicago"
-"70403","30.48002","-90.48386","Hammond","LA","Louisiana","TRUE","","32428","291.5","22105","Tangipahoa","{""22105"": ""94.9"", ""22063"": ""5.1""}","Tangipahoa|Livingston","22105|22063","FALSE","FALSE","America/Chicago"
-"70420","30.4872","-89.96749","Abita Springs","LA","Louisiana","TRUE","","8490","64.2","22103","St. Tammany","{""22103"": ""100""}","St. Tammany","22103","FALSE","FALSE","America/Chicago"
-"70422","30.73532","-90.48247","Amite","LA","Louisiana","TRUE","","13226","30.2","22105","Tangipahoa","{""22105"": ""80.44"", ""22091"": ""19.56""}","Tangipahoa|St. Helena","22105|22091","FALSE","FALSE","America/Chicago"
-"70426","30.93355","-89.85845","Angie","LA","Louisiana","TRUE","","5902","18.8","22117","Washington","{""22117"": ""100""}","Washington","22117","FALSE","FALSE","America/Chicago"
-"70427","30.74609","-89.91074","Bogalusa","LA","Louisiana","TRUE","","19486","51.1","22117","Washington","{""22117"": ""96.65"", ""22103"": ""3.35""}","Washington|St. Tammany","22117|22103","FALSE","FALSE","America/Chicago"
-"70431","30.61318","-89.97384","Bush","LA","Louisiana","TRUE","","5846","31.4","22103","St. Tammany","{""22103"": ""99.24"", ""22117"": ""0.76""}","St. Tammany|Washington","22103|22117","FALSE","FALSE","America/Chicago"
-"70433","30.46329","-90.1384","Covington","LA","Louisiana","TRUE","","39194","310.5","22103","St. Tammany","{""22103"": ""99.8"", ""22105"": ""0.2""}","St. Tammany|Tangipahoa","22103|22105","FALSE","FALSE","America/Chicago"
-"70435","30.55782","-90.10716","Covington","LA","Louisiana","TRUE","","17288","63.7","22103","St. Tammany","{""22103"": ""99.73"", ""22105"": ""0.27""}","St. Tammany|Tangipahoa","22103|22105","FALSE","FALSE","America/Chicago"
-"70436","30.80301","-90.52175","Fluker","LA","Louisiana","TRUE","","948","93.0","22105","Tangipahoa","{""22105"": ""100""}","Tangipahoa","22105","FALSE","FALSE","America/Chicago"
-"70437","30.62026","-90.20867","Folsom","LA","Louisiana","TRUE","","7946","33.4","22103","St. Tammany","{""22103"": ""87.74"", ""22105"": ""12.26""}","St. Tammany|Tangipahoa","22103|22105","FALSE","FALSE","America/Chicago"
-"70438","30.84676","-90.10812","Franklinton","LA","Louisiana","TRUE","","19180","22.0","22117","Washington","{""22117"": ""100""}","Washington","22117","FALSE","FALSE","America/Chicago"
-"70441","30.85865","-90.75279","Greensburg","LA","Louisiana","TRUE","","4991","9.3","22091","St. Helena","{""22091"": ""100""}","St. Helena","22091","FALSE","FALSE","America/Chicago"
-"70442","30.68956","-90.32822","Husser","LA","Louisiana","TRUE","","369","21.0","22105","Tangipahoa","{""22105"": ""100""}","Tangipahoa","22105","FALSE","FALSE","America/Chicago"
-"70443","30.62961","-90.53603","Independence","LA","Louisiana","TRUE","","9631","48.2","22105","Tangipahoa","{""22105"": ""79.38"", ""22063"": ""17.6"", ""22091"": ""3.02""}","Tangipahoa|Livingston|St. Helena","22105|22063|22091","FALSE","FALSE","America/Chicago"
-"70444","30.90655","-90.48962","Kentwood","LA","Louisiana","TRUE","","9872","15.2","22105","Tangipahoa","{""22105"": ""88.01"", ""22091"": ""11.99""}","Tangipahoa|St. Helena","22105|22091","FALSE","FALSE","America/Chicago"
-"70445","30.3677","-89.9128","Lacombe","LA","Louisiana","TRUE","","10385","34.7","22103","St. Tammany","{""22103"": ""100""}","St. Tammany","22103","FALSE","FALSE","America/Chicago"
-"70446","30.62888","-90.34845","Loranger","LA","Louisiana","TRUE","","7264","33.0","22105","Tangipahoa","{""22105"": ""100""}","Tangipahoa","22105","FALSE","FALSE","America/Chicago"
-"70447","30.42117","-90.2015","Madisonville","LA","Louisiana","TRUE","","15474","190.0","22103","St. Tammany","{""22103"": ""100""}","St. Tammany","22103","FALSE","FALSE","America/Chicago"
-"70448","30.3628","-90.03942","Mandeville","LA","Louisiana","TRUE","","25661","451.6","22103","St. Tammany","{""22103"": ""100""}","St. Tammany","22103","FALSE","FALSE","America/Chicago"
-"70449","30.25594","-90.66905","Maurepas","LA","Louisiana","TRUE","","3847","21.8","22063","Livingston","{""22063"": ""100""}","Livingston","22063","FALSE","FALSE","America/Chicago"
-"70450","30.93705","-90.26969","Mount Hermon","LA","Louisiana","TRUE","","2526","13.1","22117","Washington","{""22117"": ""100""}","Washington","22117","FALSE","FALSE","America/Chicago"
-"70451","30.5484","-90.48091","Natalbany","LA","Louisiana","TRUE","","0","0.0","22105","Tangipahoa","{""22105"": ""100""}","Tangipahoa","22105","FALSE","FALSE","America/Chicago"
-"70452","30.43024","-89.78728","Pearl River","LA","Louisiana","TRUE","","14483","75.2","22103","St. Tammany","{""22103"": ""100""}","St. Tammany","22103","FALSE","FALSE","America/Chicago"
-"70453","30.6939","-90.76648","Pine Grove","LA","Louisiana","TRUE","","615","6.8","22091","St. Helena","{""22091"": ""82.78"", ""22063"": ""17.22""}","St. Helena|Livingston","22091|22063","FALSE","FALSE","America/Chicago"
-"70454","30.40094","-90.37267","Ponchatoula","LA","Louisiana","TRUE","","30088","71.8","22105","Tangipahoa","{""22105"": ""100""}","Tangipahoa","22105","FALSE","FALSE","America/Chicago"
-"70455","30.51962","-90.32459","Robert","LA","Louisiana","TRUE","","603","14.1","22105","Tangipahoa","{""22105"": ""100""}","Tangipahoa","22105","FALSE","FALSE","America/Chicago"
-"70456","30.78983","-90.50598","Roseland","LA","Louisiana","TRUE","","2482","29.9","22105","Tangipahoa","{""22105"": ""100""}","Tangipahoa","22105","FALSE","FALSE","America/Chicago"
-"70458","30.25865","-89.79441","Slidell","LA","Louisiana","TRUE","","36878","681.6","22103","St. Tammany","{""22103"": ""100""}","St. Tammany","22103","FALSE","FALSE","America/Chicago"
-"70460","30.29569","-89.83778","Slidell","LA","Louisiana","TRUE","","22766","239.8","22103","St. Tammany","{""22103"": ""100""}","St. Tammany","22103","FALSE","FALSE","America/Chicago"
-"70461","30.23554","-89.71583","Slidell","LA","Louisiana","TRUE","","28538","230.3","22103","St. Tammany","{""22103"": ""100""}","St. Tammany","22103","FALSE","FALSE","America/Chicago"
-"70462","30.36609","-90.5838","Springfield","LA","Louisiana","TRUE","","4930","23.7","22063","Livingston","{""22063"": ""97.82"", ""22105"": ""2.18""}","Livingston|Tangipahoa","22063|22105","FALSE","FALSE","America/Chicago"
-"70463","30.65861","-89.90387","Sun","LA","Louisiana","TRUE","","122","66.6","22103","St. Tammany","{""22103"": ""100""}","St. Tammany","22103","FALSE","FALSE","America/Chicago"
-"70464","30.53955","-89.91005","Talisheek","LA","Louisiana","TRUE","","606","23.6","22103","St. Tammany","{""22103"": ""100""}","St. Tammany","22103","FALSE","FALSE","America/Chicago"
-"70465","30.85157","-90.51982","Tangipahoa","LA","Louisiana","TRUE","","627","49.3","22105","Tangipahoa","{""22105"": ""100""}","Tangipahoa","22105","FALSE","FALSE","America/Chicago"
-"70466","30.56807","-90.50141","Tickfaw","LA","Louisiana","TRUE","","9416","115.2","22105","Tangipahoa","{""22105"": ""95.18"", ""22063"": ""4.82""}","Tangipahoa|Livingston","22105|22063","FALSE","FALSE","America/Chicago"
-"70471","30.4072","-90.06234","Mandeville","LA","Louisiana","TRUE","","21505","282.2","22103","St. Tammany","{""22103"": ""100""}","St. Tammany","22103","FALSE","FALSE","America/Chicago"
-"70501","30.23973","-91.99045","Lafayette","LA","Louisiana","TRUE","","31631","782.1","22055","Lafayette","{""22055"": ""100""}","Lafayette","22055","FALSE","FALSE","America/Chicago"
-"70503","30.17281","-92.06059","Lafayette","LA","Louisiana","TRUE","","31181","1018.7","22055","Lafayette","{""22055"": ""100""}","Lafayette","22055","FALSE","FALSE","America/Chicago"
-"70506","30.19548","-92.08133","Lafayette","LA","Louisiana","TRUE","","40662","757.9","22055","Lafayette","{""22055"": ""100""}","Lafayette","22055","FALSE","FALSE","America/Chicago"
-"70507","30.28173","-92.03049","Lafayette","LA","Louisiana","TRUE","","17140","311.9","22055","Lafayette","{""22055"": ""100""}","Lafayette","22055","FALSE","FALSE","America/Chicago"
-"70508","30.15553","-92.02861","Lafayette","LA","Louisiana","TRUE","","40265","620.5","22055","Lafayette","{""22055"": ""100""}","Lafayette","22055","FALSE","FALSE","America/Chicago"
-"70510","29.89809","-92.19968","Abbeville","LA","Louisiana","TRUE","","25623","43.0","22113","Vermilion","{""22113"": ""100""}","Vermilion","22113","FALSE","FALSE","America/Chicago"
-"70512","30.41407","-91.92303","Arnaudville","LA","Louisiana","TRUE","","10195","41.5","22097","St. Landry","{""22097"": ""59.81"", ""22099"": ""40.19""}","St. Landry|St. Martin","22097|22099","FALSE","FALSE","America/Chicago"
-"70513","29.90354","-91.90288","Avery Island","LA","Louisiana","TRUE","","263","52.7","22045","Iberia","{""22045"": ""100""}","Iberia","22045","FALSE","FALSE","America/Chicago"
-"70514","29.84593","-91.55177","Baldwin","LA","Louisiana","TRUE","","2330","174.6","22101","St. Mary","{""22101"": ""100""}","St. Mary","22101","FALSE","FALSE","America/Chicago"
-"70515","30.45212","-92.56949","Basile","LA","Louisiana","TRUE","","4010","21.0","22039","Evangeline","{""22039"": ""74.54"", ""22001"": ""25.46""}","Evangeline|Acadia","22039|22001","FALSE","FALSE","America/Chicago"
-"70516","30.36575","-92.30371","Branch","LA","Louisiana","TRUE","","493","4.8","22001","Acadia","{""22001"": ""100""}","Acadia","22001","FALSE","FALSE","America/Chicago"
-"70517","30.29484","-91.82954","Breaux Bridge","LA","Louisiana","TRUE","","27854","76.8","22099","St. Martin","{""22099"": ""97.77"", ""22055"": ""2.23""}","St. Martin|Lafayette","22099|22055","FALSE","FALSE","America/Chicago"
-"70518","30.1334","-91.92882","Broussard","LA","Louisiana","TRUE","","13551","124.9","22055","Lafayette","{""22055"": ""80.5"", ""22099"": ""12.34"", ""22045"": ""7.16""}","Lafayette|St. Martin|Iberia","22055|22099|22045","FALSE","FALSE","America/Chicago"
-"70519","30.08019","-91.89741","Cade","LA","Louisiana","TRUE","","185","20.3","22099","St. Martin","{""22099"": ""100""}","St. Martin","22099","FALSE","FALSE","America/Chicago"
-"70520","30.332","-92.03576","Carencro","LA","Louisiana","TRUE","","19585","192.1","22055","Lafayette","{""22055"": ""98.35"", ""22097"": ""1.65""}","Lafayette|St. Landry","22055|22097","FALSE","FALSE","America/Chicago"
-"70523","29.88904","-91.5011","Charenton","LA","Louisiana","TRUE","","722","62.1","22101","St. Mary","{""22101"": ""100""}","St. Mary","22101","FALSE","FALSE","America/Chicago"
-"70524","30.55692","-92.31134","Chataignier","LA","Louisiana","TRUE","","205","20.8","22039","Evangeline","{""22039"": ""100""}","Evangeline","22039","FALSE","FALSE","America/Chicago"
-"70525","30.41227","-92.2212","Church Point","LA","Louisiana","TRUE","","14293","50.7","22001","Acadia","{""22001"": ""76.25"", ""22097"": ""23.75""}","Acadia|St. Landry","22001|22097","FALSE","FALSE","America/Chicago"
-"70526","30.2102","-92.37984","Crowley","LA","Louisiana","TRUE","","18116","56.0","22001","Acadia","{""22001"": ""99.54"", ""22113"": ""0.46""}","Acadia|Vermilion","22001|22113","FALSE","FALSE","America/Chicago"
-"70528","29.93946","-91.985","Delcambre","LA","Louisiana","TRUE","","2388","206.0","22113","Vermilion","{""22113"": ""78.53"", ""22045"": ""21.47""}","Vermilion|Iberia","22113|22045","FALSE","FALSE","America/Chicago"
-"70529","30.19693","-92.16228","Duson","LA","Louisiana","TRUE","","13480","146.6","22055","Lafayette","{""22055"": ""97.9"", ""22001"": ""2.1""}","Lafayette|Acadia","22055|22001","FALSE","FALSE","America/Chicago"
-"70531","30.23273","-92.50828","Egan","LA","Louisiana","TRUE","","1507","20.9","22001","Acadia","{""22001"": ""100""}","Acadia","22001","FALSE","FALSE","America/Chicago"
-"70532","30.46656","-92.69758","Elton","LA","Louisiana","TRUE","","2462","9.7","22053","Jefferson Davis","{""22053"": ""70.28"", ""22003"": ""29.72""}","Jefferson Davis|Allen","22053|22003","FALSE","FALSE","America/Chicago"
-"70533","29.8972","-92.03969","Erath","LA","Louisiana","TRUE","","7344","36.1","22113","Vermilion","{""22113"": ""98.67"", ""22045"": ""1.33""}","Vermilion|Iberia","22113|22045","FALSE","FALSE","America/Chicago"
-"70534","30.19491","-92.44206","Estherwood","LA","Louisiana","TRUE","","930","37.4","22001","Acadia","{""22001"": ""100""}","Acadia","22001","FALSE","FALSE","America/Chicago"
-"70535","30.47822","-92.4264","Eunice","LA","Louisiana","TRUE","","17256","44.2","22097","St. Landry","{""22097"": ""71.58"", ""22001"": ""22.14"", ""22039"": ""6.29""}","St. Landry|Acadia|Evangeline","22097|22001|22039","FALSE","FALSE","America/Chicago"
-"70537","30.25736","-92.56671","Evangeline","LA","Louisiana","TRUE","","332","21.8","22001","Acadia","{""22001"": ""100""}","Acadia","22001","FALSE","FALSE","America/Chicago"
-"70538","29.76614","-91.58223","Franklin","LA","Louisiana","TRUE","","14125","35.2","22101","St. Mary","{""22101"": ""100""}","St. Mary","22101","FALSE","FALSE","America/Chicago"
-"70541","30.4256","-92.04582","Grand Coteau","LA","Louisiana","TRUE","","363","67.6","22097","St. Landry","{""22097"": ""100""}","St. Landry","22097","FALSE","FALSE","America/Chicago"
-"70542","30.00522","-92.58841","Gueydan","LA","Louisiana","TRUE","","3888","7.9","22113","Vermilion","{""22113"": ""94.93"", ""22023"": ""5.07""}","Vermilion|Cameron","22113|22023","FALSE","FALSE","America/Chicago"
-"70543","30.33473","-92.50079","Iota","LA","Louisiana","TRUE","","4613","24.2","22001","Acadia","{""22001"": ""100""}","Acadia","22001","FALSE","FALSE","America/Chicago"
-"70544","29.90438","-91.66229","Jeanerette","LA","Louisiana","TRUE","","10267","38.1","22045","Iberia","{""22045"": ""74.62"", ""22101"": ""25.38""}","Iberia|St. Mary","22045|22101","FALSE","FALSE","America/Chicago"
-"70546","30.2652","-92.66776","Jennings","LA","Louisiana","TRUE","","17312","44.2","22053","Jefferson Davis","{""22053"": ""93.41"", ""22001"": ""6.59""}","Jefferson Davis|Acadia","22053|22001","FALSE","FALSE","America/Chicago"
-"70548","29.80528","-92.40555","Kaplan","LA","Louisiana","TRUE","","10397","7.9","22113","Vermilion","{""22113"": ""100""}","Vermilion","22113","FALSE","FALSE","America/Chicago"
-"70549","30.07158","-92.80294","Lake Arthur","LA","Louisiana","TRUE","","3462","11.4","22053","Jefferson Davis","{""22053"": ""98.28"", ""22023"": ""1.72""}","Jefferson Davis|Cameron","22053|22023","FALSE","FALSE","America/Chicago"
-"70550","30.51867","-92.18768","Lawtell","LA","Louisiana","TRUE","","0","0.0","22097","St. Landry","{""22097"": ""100""}","St. Landry","22097","FALSE","FALSE","America/Chicago"
-"70552","30.0668","-91.69062","Loreauville","LA","Louisiana","TRUE","","1616","34.3","22045","Iberia","{""22045"": ""100""}","Iberia","22045","FALSE","FALSE","America/Chicago"
-"70554","30.62249","-92.4793","Mamou","LA","Louisiana","TRUE","","5600","18.8","22039","Evangeline","{""22039"": ""100""}","Evangeline","22039","FALSE","FALSE","America/Chicago"
-"70555","30.08119","-92.14556","Maurice","LA","Louisiana","TRUE","","8431","65.7","22113","Vermilion","{""22113"": ""96.36"", ""22055"": ""3.64""}","Vermilion|Lafayette","22113|22055","FALSE","FALSE","America/Chicago"
-"70556","30.1939","-92.55982","Mermentau","LA","Louisiana","TRUE","","309","18.7","22001","Acadia","{""22001"": ""100""}","Acadia","22001","FALSE","FALSE","America/Chicago"
-"70558","30.10044","-92.07575","Milton","LA","Louisiana","TRUE","","0","0.0","22055","Lafayette","{""22055"": ""100""}","Lafayette","22055","FALSE","FALSE","America/Chicago"
-"70559","30.12481","-92.50458","Morse","LA","Louisiana","TRUE","","3061","14.4","22001","Acadia","{""22001"": ""100""}","Acadia","22001","FALSE","FALSE","America/Chicago"
-"70560","29.92402","-91.87079","New Iberia","LA","Louisiana","TRUE","","40267","77.1","22045","Iberia","{""22045"": ""98.47"", ""22113"": ""1.53""}","Iberia|Vermilion","22045|22113","FALSE","FALSE","America/Chicago"
-"70563","30.02466","-91.72841","New Iberia","LA","Louisiana","TRUE","","19489","120.5","22045","Iberia","{""22045"": ""100""}","Iberia","22045","FALSE","FALSE","America/Chicago"
-"70570","30.53274","-92.10482","Opelousas","LA","Louisiana","TRUE","","39910","89.0","22097","St. Landry","{""22097"": ""100""}","St. Landry","22097","FALSE","FALSE","America/Chicago"
-"70575","29.94894","-92.15808","Perry","LA","Louisiana","TRUE","","45","535.7","22113","Vermilion","{""22113"": ""100""}","Vermilion","22113","FALSE","FALSE","America/Chicago"
-"70576","30.78097","-92.41826","Pine Prairie","LA","Louisiana","TRUE","","1294","444.3","22039","Evangeline","{""22039"": ""100""}","Evangeline","22039","FALSE","FALSE","America/Chicago"
-"70577","30.55119","-91.93386","Port Barre","LA","Louisiana","TRUE","","3696","23.8","22097","St. Landry","{""22097"": ""100""}","St. Landry","22097","FALSE","FALSE","America/Chicago"
-"70578","30.22932","-92.26141","Rayne","LA","Louisiana","TRUE","","18433","62.7","22001","Acadia","{""22001"": ""87.08"", ""22055"": ""7.42"", ""22113"": ""5.5""}","Acadia|Lafayette|Vermilion","22001|22055|22113","FALSE","FALSE","America/Chicago"
-"70580","30.67524","-92.42832","Reddell","LA","Louisiana","TRUE","","192","497.0","22039","Evangeline","{""22039"": ""100""}","Evangeline","22039","FALSE","FALSE","America/Chicago"
-"70581","30.25173","-92.73797","Roanoke","LA","Louisiana","TRUE","","708","11.4","22053","Jefferson Davis","{""22053"": ""100""}","Jefferson Davis","22053","FALSE","FALSE","America/Chicago"
-"70582","30.15874","-91.78739","Saint Martinville","LA","Louisiana","TRUE","","19408","52.1","22099","St. Martin","{""22099"": ""96.7"", ""22045"": ""3.3""}","St. Martin|Iberia","22099|22045","FALSE","FALSE","America/Chicago"
-"70583","30.25964","-92.12203","Scott","LA","Louisiana","TRUE","","11334","157.7","22055","Lafayette","{""22055"": ""94.42"", ""22001"": ""5.58""}","Lafayette|Acadia","22055|22001","FALSE","FALSE","America/Chicago"
-"70584","30.38841","-92.10134","Sunset","LA","Louisiana","TRUE","","7855","85.5","22097","St. Landry","{""22097"": ""100""}","St. Landry","22097","FALSE","FALSE","America/Chicago"
-"70585","30.87834","-92.40767","Turkey Creek","LA","Louisiana","TRUE","","312","202.0","22039","Evangeline","{""22039"": ""100""}","Evangeline","22039","FALSE","FALSE","America/Chicago"
-"70586","30.74143","-92.33756","Ville Platte","LA","Louisiana","TRUE","","19680","25.3","22039","Evangeline","{""22039"": ""99.35"", ""22097"": ""0.65""}","Evangeline|St. Landry","22039|22097","FALSE","FALSE","America/Chicago"
-"70589","30.68384","-92.02521","Washington","LA","Louisiana","TRUE","","3493","11.4","22097","St. Landry","{""22097"": ""100""}","St. Landry","22097","FALSE","FALSE","America/Chicago"
-"70591","30.25535","-92.83885","Welsh","LA","Louisiana","TRUE","","5350","12.1","22053","Jefferson Davis","{""22053"": ""100""}","Jefferson Davis","22053","FALSE","FALSE","America/Chicago"
-"70592","30.08065","-92.01235","Youngsville","LA","Louisiana","TRUE","","25736","238.8","22055","Lafayette","{""22055"": ""90.79"", ""22113"": ""6.2"", ""22045"": ""3""}","Lafayette|Vermilion|Iberia","22055|22113|22045","FALSE","FALSE","America/Chicago"
-"70601","30.22622","-93.21575","Lake Charles","LA","Louisiana","TRUE","","31699","759.5","22019","Calcasieu","{""22019"": ""100""}","Calcasieu","22019","FALSE","FALSE","America/Chicago"
-"70605","30.13066","-93.27365","Lake Charles","LA","Louisiana","TRUE","","37893","336.9","22019","Calcasieu","{""22019"": ""100""}","Calcasieu","22019","FALSE","FALSE","America/Chicago"
-"70607","30.04236","-93.20414","Lake Charles","LA","Louisiana","TRUE","","28687","93.4","22019","Calcasieu","{""22019"": ""87.71"", ""22023"": ""12.29""}","Calcasieu|Cameron","22019|22023","FALSE","FALSE","America/Chicago"
-"70611","30.34597","-93.20159","Lake Charles","LA","Louisiana","TRUE","","19909","94.0","22019","Calcasieu","{""22019"": ""100""}","Calcasieu","22019","FALSE","FALSE","America/Chicago"
-"70615","30.25365","-93.12276","Lake Charles","LA","Louisiana","TRUE","","14206","111.8","22019","Calcasieu","{""22019"": ""100""}","Calcasieu","22019","FALSE","FALSE","America/Chicago"
-"70630","30.02719","-93.00631","Bell City","LA","Louisiana","TRUE","","2657","5.5","22019","Calcasieu","{""22019"": ""64.72"", ""22023"": ""35.28""}","Calcasieu|Cameron","22019|22023","FALSE","FALSE","America/Chicago"
-"70631","29.86632","-93.55142","Cameron","LA","Louisiana","TRUE","","378","0.3","22023","Cameron","{""22023"": ""100""}","Cameron","22023","FALSE","FALSE","America/Chicago"
-"70632","29.84012","-93.02113","Creole","LA","Louisiana","TRUE","","414","1.6","22023","Cameron","{""22023"": ""100""}","Cameron","22023","FALSE","FALSE","America/Chicago"
-"70633","30.42202","-93.39729","Dequincy","LA","Louisiana","TRUE","","8584","21.2","22019","Calcasieu","{""22019"": ""86.47"", ""22011"": ""13.53""}","Calcasieu|Beauregard","22019|22011","FALSE","FALSE","America/Chicago"
-"70634","30.79388","-93.23973","Deridder","LA","Louisiana","TRUE","","26713","22.8","22011","Beauregard","{""22011"": ""88.62"", ""22115"": ""11.38""}","Beauregard|Vernon","22011|22115","FALSE","FALSE","America/Chicago"
-"70637","30.70431","-92.96708","Dry Creek","LA","Louisiana","TRUE","","1101","10.6","22003","Allen","{""22003"": ""72.32"", ""22011"": ""27.68""}","Allen|Beauregard","22003|22011","FALSE","FALSE","America/Chicago"
-"70638","30.8541","-92.79731","Elizabeth","LA","Louisiana","TRUE","","1248","16.8","22003","Allen","{""22003"": ""100""}","Allen","22003","FALSE","FALSE","America/Chicago"
-"70639","30.98475","-93.49102","Evans","LA","Louisiana","TRUE","","501","2.8","22115","Vernon","{""22115"": ""100""}","Vernon","22115","FALSE","FALSE","America/Chicago"
-"70640","30.37078","-92.90717","Fenton","LA","Louisiana","TRUE","","273","90.8","22053","Jefferson Davis","{""22053"": ""100""}","Jefferson Davis","22053","FALSE","FALSE","America/Chicago"
-"70643","29.7921","-92.78968","Grand Chenier","LA","Louisiana","TRUE","","327","0.4","22023","Cameron","{""22023"": ""100""}","Cameron","22023","FALSE","FALSE","America/Chicago"
-"70644","30.7916","-92.94369","Grant","LA","Louisiana","TRUE","","238","6.7","22003","Allen","{""22003"": ""100""}","Allen","22003","FALSE","FALSE","America/Chicago"
-"70645","29.96154","-93.40869","Hackberry","LA","Louisiana","TRUE","","1384","4.9","22023","Cameron","{""22023"": ""100""}","Cameron","22023","FALSE","FALSE","America/Chicago"
-"70646","30.09869","-92.92143","Hayes","LA","Louisiana","TRUE","","859","47.4","22019","Calcasieu","{""22019"": ""100""}","Calcasieu","22019","FALSE","FALSE","America/Chicago"
-"70647","30.25705","-93.01872","Iowa","LA","Louisiana","TRUE","","9097","19.5","22019","Calcasieu","{""22019"": ""66.51"", ""22053"": ""33.49""}","Calcasieu|Jefferson Davis","22019|22053","FALSE","FALSE","America/Chicago"
-"70648","30.50196","-92.8787","Kinder","LA","Louisiana","TRUE","","8710","17.1","22003","Allen","{""22003"": ""93.48"", ""22053"": ""6.52""}","Allen|Jefferson Davis","22003|22053","FALSE","FALSE","America/Chicago"
-"70650","30.23744","-92.9232","Lacassine","LA","Louisiana","TRUE","","83","17.8","22053","Jefferson Davis","{""22053"": ""100""}","Jefferson Davis","22053","FALSE","FALSE","America/Chicago"
-"70651","30.54399","-92.95089","Leblanc","LA","Louisiana","TRUE","","233","3.4","22003","Allen","{""22003"": ""100""}","Allen","22003","FALSE","FALSE","America/Chicago"
-"70652","30.60771","-93.26731","Longville","LA","Louisiana","TRUE","","1740","6.7","22011","Beauregard","{""22011"": ""100""}","Beauregard","22011","FALSE","FALSE","America/Chicago"
-"70653","30.66353","-93.56221","Merryville","LA","Louisiana","TRUE","","3285","4.6","22011","Beauregard","{""22011"": ""100""}","Beauregard","22011","FALSE","FALSE","America/Chicago"
-"70654","30.65505","-92.88407","Mittie","LA","Louisiana","TRUE","","325","5.6","22003","Allen","{""22003"": ""100""}","Allen","22003","FALSE","FALSE","America/Chicago"
-"70655","30.66444","-92.72386","Oberlin","LA","Louisiana","TRUE","","2562","5.7","22003","Allen","{""22003"": ""100""}","Allen","22003","FALSE","FALSE","America/Chicago"
-"70656","30.96017","-92.96962","Pitkin","LA","Louisiana","TRUE","","3743","3.2","22115","Vernon","{""22115"": ""69.5"", ""22003"": ""16.31"", ""22079"": ""14.19""}","Vernon|Allen|Rapides","22115|22003|22079","FALSE","FALSE","America/Chicago"
-"70657","30.50316","-93.15042","Ragley","LA","Louisiana","TRUE","","4885","13.0","22011","Beauregard","{""22011"": ""81.16"", ""22003"": ""12.93"", ""22019"": ""3.99"", ""22053"": ""1.92""}","Beauregard|Allen|Calcasieu|Jefferson Davis","22011|22003|22019|22053","FALSE","FALSE","America/Chicago"
-"70658","30.52867","-93.0476","Reeves","LA","Louisiana","TRUE","","868","3.8","22003","Allen","{""22003"": ""100""}","Allen","22003","FALSE","FALSE","America/Chicago"
-"70659","30.92143","-93.28381","Rosepine","LA","Louisiana","TRUE","","1568","277.5","22115","Vernon","{""22115"": ""100""}","Vernon","22115","FALSE","FALSE","America/Chicago"
-"70660","30.55763","-93.45028","Singer","LA","Louisiana","TRUE","","1448","3.8","22011","Beauregard","{""22011"": ""100""}","Beauregard","22011","FALSE","FALSE","America/Chicago"
-"70661","30.3599","-93.6503","Starks","LA","Louisiana","TRUE","","1745","3.9","22019","Calcasieu","{""22019"": ""85.28"", ""22011"": ""14.72""}","Calcasieu|Beauregard","22019|22011","FALSE","FALSE","America/Chicago"
-"70662","30.79888","-92.99766","Sugartown","LA","Louisiana","TRUE","","363","6.5","22011","Beauregard","{""22011"": ""100""}","Beauregard","22011","FALSE","FALSE","America/Chicago"
-"70663","30.28964","-93.37951","Sulphur","LA","Louisiana","TRUE","","27582","110.0","22019","Calcasieu","{""22019"": ""100""}","Calcasieu","22019","FALSE","FALSE","America/Chicago"
-"70665","30.12584","-93.44997","Sulphur","LA","Louisiana","TRUE","","11671","28.0","22019","Calcasieu","{""22019"": ""100""}","Calcasieu","22019","FALSE","FALSE","America/Chicago"
-"70668","30.18695","-93.59897","Vinton","LA","Louisiana","TRUE","","6958","18.7","22019","Calcasieu","{""22019"": ""100""}","Calcasieu","22019","FALSE","FALSE","America/Chicago"
-"70669","30.2434","-93.27906","Westlake","LA","Louisiana","TRUE","","9320","117.9","22019","Calcasieu","{""22019"": ""100""}","Calcasieu","22019","FALSE","FALSE","America/Chicago"
-"70706","30.61374","-90.9015","Denham Springs","LA","Louisiana","TRUE","","22586","169.5","22063","Livingston","{""22063"": ""96.72"", ""22091"": ""3.28""}","Livingston|St. Helena","22063|22091","FALSE","FALSE","America/Chicago"
-"70710","30.35311","-91.25939","Addis","LA","Louisiana","TRUE","","5274","247.0","22121","West Baton Rouge","{""22121"": ""100""}","West Baton Rouge","22121","FALSE","FALSE","America/Chicago"
-"70711","30.53164","-90.59957","Albany","LA","Louisiana","TRUE","","4985","98.8","22063","Livingston","{""22063"": ""100""}","Livingston","22063","FALSE","FALSE","America/Chicago"
-"70712","30.96944","-91.59642","Angola","LA","Louisiana","TRUE","","3780","60.9","22125","West Feliciana","{""22125"": ""100""}","West Feliciana","22125","FALSE","FALSE","America/Chicago"
-"70714","30.58646","-91.1277","Baker","LA","Louisiana","TRUE","","19420","217.7","22033","East Baton Rouge","{""22033"": ""100""}","East Baton Rouge","22033","FALSE","FALSE","America/Chicago"
-"70715","30.75799","-91.67792","Batchelor","LA","Louisiana","TRUE","","1585","3.3","22077","Pointe Coupee","{""22077"": ""100""}","Pointe Coupee","22077","FALSE","FALSE","America/Chicago"
-"70719","30.3769","-91.28986","Brusly","LA","Louisiana","TRUE","","4555","108.2","22121","West Baton Rouge","{""22121"": ""100""}","West Baton Rouge","22121","FALSE","FALSE","America/Chicago"
-"70721","30.2182","-91.08694","Carville","LA","Louisiana","TRUE","","949","72.1","22047","Iberville","{""22047"": ""100""}","Iberville","22047","FALSE","FALSE","America/Chicago"
-"70722","30.8425","-90.93158","Clinton","LA","Louisiana","TRUE","","5183","12.0","22037","East Feliciana","{""22037"": ""97.37"", ""22033"": ""2.63""}","East Feliciana|East Baton Rouge","22037|22033","FALSE","FALSE","America/Chicago"
-"70723","30.05947","-90.83847","Convent","LA","Louisiana","TRUE","","1166","17.1","22093","St. James","{""22093"": ""100""}","St. James","22093","FALSE","FALSE","America/Chicago"
-"70725","30.13057","-90.9581","Darrow","LA","Louisiana","TRUE","","1586","72.0","22005","Ascension","{""22005"": ""100""}","Ascension","22005","FALSE","FALSE","America/Chicago"
-"70726","30.42802","-90.89899","Denham Springs","LA","Louisiana","TRUE","","57487","239.2","22063","Livingston","{""22063"": ""100""}","Livingston","22063","FALSE","FALSE","America/Chicago"
-"70729","30.58591","-91.35059","Erwinville","LA","Louisiana","TRUE","","666","12.6","22121","West Baton Rouge","{""22121"": ""77.52"", ""22077"": ""22.48""}","West Baton Rouge|Pointe Coupee","22121|22077","FALSE","FALSE","America/Chicago"
-"70730","30.81633","-91.10122","Ethel","LA","Louisiana","TRUE","","3584","20.1","22037","East Feliciana","{""22037"": ""100""}","East Feliciana","22037","FALSE","FALSE","America/Chicago"
-"70732","30.61795","-91.60425","Fordoche","LA","Louisiana","TRUE","","1447","13.3","22077","Pointe Coupee","{""22077"": ""100""}","Pointe Coupee","22077","FALSE","FALSE","America/Chicago"
-"70733","30.3043","-90.79607","French Settlement","LA","Louisiana","TRUE","","1295","48.4","22063","Livingston","{""22063"": ""100""}","Livingston","22063","FALSE","FALSE","America/Chicago"
-"70734","30.2029","-91.00205","Geismar","LA","Louisiana","TRUE","","7896","108.9","22005","Ascension","{""22005"": ""100""}","Ascension","22005","FALSE","FALSE","America/Chicago"
-"70736","30.6323","-91.3383","Glynn","LA","Louisiana","TRUE","","452","46.0","22077","Pointe Coupee","{""22077"": ""100""}","Pointe Coupee","22077","FALSE","FALSE","America/Chicago"
-"70737","30.22512","-90.92222","Gonzales","LA","Louisiana","TRUE","","43333","310.6","22005","Ascension","{""22005"": ""100""}","Ascension","22005","FALSE","FALSE","America/Chicago"
-"70739","30.59843","-90.97049","Greenwell Springs","LA","Louisiana","TRUE","","13762","109.1","22033","East Baton Rouge","{""22033"": ""96.91"", ""22063"": ""3.09""}","East Baton Rouge|Livingston","22033|22063","FALSE","FALSE","America/Chicago"
-"70740","30.33983","-91.43534","Grosse Tete","LA","Louisiana","TRUE","","1604","7.1","22047","Iberville","{""22047"": ""100""}","Iberville","22047","FALSE","FALSE","America/Chicago"
-"70743","30.02741","-90.77436","Hester","LA","Louisiana","TRUE","","205","32.0","22093","St. James","{""22093"": ""100""}","St. James","22093","FALSE","FALSE","America/Chicago"
-"70744","30.55826","-90.67611","Holden","LA","Louisiana","TRUE","","5462","20.1","22063","Livingston","{""22063"": ""94.82"", ""22091"": ""5.18""}","Livingston|St. Helena","22063|22091","FALSE","FALSE","America/Chicago"
-"70747","30.8746","-91.68121","Innis","LA","Louisiana","TRUE","","179","16.5","22077","Pointe Coupee","{""22077"": ""100""}","Pointe Coupee","22077","FALSE","FALSE","America/Chicago"
-"70748","30.81405","-91.20544","Jackson","LA","Louisiana","TRUE","","7429","36.1","22037","East Feliciana","{""22037"": ""96.77"", ""22033"": ""3.23""}","East Feliciana|East Baton Rouge","22037|22033","FALSE","FALSE","America/Chicago"
-"70749","30.63868","-91.40254","Jarreau","LA","Louisiana","TRUE","","1144","17.8","22077","Pointe Coupee","{""22077"": ""100""}","Pointe Coupee","22077","FALSE","FALSE","America/Chicago"
-"70750","30.50029","-91.7661","Krotz Springs","LA","Louisiana","TRUE","","1475","4.4","22097","St. Landry","{""22097"": ""99.9"", ""22077"": ""0.1""}","St. Landry|Pointe Coupee","22097|22077","FALSE","FALSE","America/Chicago"
-"70752","30.5822","-91.40757","Lakeland","LA","Louisiana","TRUE","","695","28.4","22077","Pointe Coupee","{""22077"": ""100""}","Pointe Coupee","22077","FALSE","FALSE","America/Chicago"
-"70753","30.94499","-91.72702","Lettsworth","LA","Louisiana","TRUE","","885","5.0","22077","Pointe Coupee","{""22077"": ""100""}","Pointe Coupee","22077","FALSE","FALSE","America/Chicago"
-"70754","30.40395","-90.74289","Livingston","LA","Louisiana","TRUE","","13059","41.6","22063","Livingston","{""22063"": ""100""}","Livingston","22063","FALSE","FALSE","America/Chicago"
-"70755","30.59336","-91.53003","Livonia","LA","Louisiana","TRUE","","1801","28.7","22077","Pointe Coupee","{""22077"": ""100""}","Pointe Coupee","22077","FALSE","FALSE","America/Chicago"
-"70756","30.54682","-91.61414","Lottie","LA","Louisiana","TRUE","","384","10.5","22077","Pointe Coupee","{""22077"": ""100""}","Pointe Coupee","22077","FALSE","FALSE","America/Chicago"
-"70757","30.48852","-91.51873","Maringouin","LA","Louisiana","TRUE","","2927","23.0","22047","Iberville","{""22047"": ""60.21"", ""22077"": ""39.53"", ""22099"": ""0.25""}","Iberville|Pointe Coupee|St. Martin","22047|22077|22099","FALSE","FALSE","America/Chicago"
-"70759","30.69753","-91.57759","Morganza","LA","Louisiana","TRUE","","1756","14.9","22077","Pointe Coupee","{""22077"": ""100""}","Pointe Coupee","22077","FALSE","FALSE","America/Chicago"
-"70760","30.70662","-91.45553","New Roads","LA","Louisiana","TRUE","","6367","75.2","22077","Pointe Coupee","{""22077"": ""100""}","Pointe Coupee","22077","FALSE","FALSE","America/Chicago"
-"70761","30.97613","-91.02382","Norwood","LA","Louisiana","TRUE","","510","3.2","22037","East Feliciana","{""22037"": ""100""}","East Feliciana","22037","FALSE","FALSE","America/Chicago"
-"70762","30.57672","-91.46861","Oscar","LA","Louisiana","TRUE","","866","17.3","22077","Pointe Coupee","{""22077"": ""100""}","Pointe Coupee","22077","FALSE","FALSE","America/Chicago"
-"70763","30.04385","-90.7416","Paulina","LA","Louisiana","TRUE","","4677","150.4","22093","St. James","{""22093"": ""100""}","St. James","22093","FALSE","FALSE","America/Chicago"
-"70764","30.22614","-91.2883","Plaquemine","LA","Louisiana","TRUE","","16702","40.9","22047","Iberville","{""22047"": ""99.88"", ""22121"": ""0.12""}","Iberville|West Baton Rouge","22047|22121","FALSE","FALSE","America/Chicago"
-"70767","30.4741","-91.32295","Port Allen","LA","Louisiana","TRUE","","15683","42.1","22121","West Baton Rouge","{""22121"": ""100""}","West Baton Rouge","22121","FALSE","FALSE","America/Chicago"
-"70769","30.30735","-90.94036","Prairieville","LA","Louisiana","TRUE","","45285","360.9","22005","Ascension","{""22005"": ""100""}","Ascension","22005","FALSE","FALSE","America/Chicago"
-"70770","30.65023","-90.99732","Pride","LA","Louisiana","TRUE","","3154","59.0","22033","East Baton Rouge","{""22033"": ""100""}","East Baton Rouge","22033","FALSE","FALSE","America/Chicago"
-"70772","30.43694","-91.46872","Rosedale","LA","Louisiana","TRUE","","756","20.7","22047","Iberville","{""22047"": ""100""}","Iberville","22047","FALSE","FALSE","America/Chicago"
-"70773","30.60876","-91.36302","Rougon","LA","Louisiana","TRUE","","227","24.4","22077","Pointe Coupee","{""22077"": ""100""}","Pointe Coupee","22077","FALSE","FALSE","America/Chicago"
-"70774","30.20762","-90.77383","Saint Amant","LA","Louisiana","TRUE","","10035","51.0","22005","Ascension","{""22005"": ""98.17"", ""22063"": ""1.83""}","Ascension|Livingston","22005|22063","FALSE","FALSE","America/Chicago"
-"70775","30.86017","-91.36861","Saint Francisville","LA","Louisiana","TRUE","","11307","13.9","22125","West Feliciana","{""22125"": ""100""}","West Feliciana","22125","FALSE","FALSE","America/Chicago"
-"70776","30.26356","-91.08986","Saint Gabriel","LA","Louisiana","TRUE","","5865","67.9","22047","Iberville","{""22047"": ""100""}","Iberville","22047","FALSE","FALSE","America/Chicago"
-"70777","30.73828","-91.07011","Slaughter","LA","Louisiana","TRUE","","3154","19.4","22037","East Feliciana","{""22037"": ""68.56"", ""22033"": ""31.44""}","East Feliciana|East Baton Rouge","22037|22033","FALSE","FALSE","America/Chicago"
-"70778","30.15328","-90.86062","Sorrento","LA","Louisiana","TRUE","","3689","59.2","22005","Ascension","{""22005"": ""100""}","Ascension","22005","FALSE","FALSE","America/Chicago"
-"70780","30.29539","-91.1698","Sunshine","LA","Louisiana","TRUE","","1465","44.5","22047","Iberville","{""22047"": ""100""}","Iberville","22047","FALSE","FALSE","America/Chicago"
-"70782","30.94374","-91.51858","Tunica","LA","Louisiana","TRUE","","174","2.6","22125","West Feliciana","{""22125"": ""100""}","West Feliciana","22125","FALSE","FALSE","America/Chicago"
-"70783","30.68347","-91.40435","Ventress","LA","Louisiana","TRUE","","2965","57.4","22077","Pointe Coupee","{""22077"": ""100""}","Pointe Coupee","22077","FALSE","FALSE","America/Chicago"
-"70785","30.55892","-90.81818","Walker","LA","Louisiana","TRUE","","22596","90.7","22063","Livingston","{""22063"": ""100""}","Livingston","22063","FALSE","FALSE","America/Chicago"
-"70787","30.96309","-91.44319","Weyanoke","LA","Louisiana","TRUE","","167","13.5","22125","West Feliciana","{""22125"": ""100""}","West Feliciana","22125","FALSE","FALSE","America/Chicago"
-"70788","30.13632","-91.17351","White Castle","LA","Louisiana","TRUE","","3762","13.5","22047","Iberville","{""22047"": ""100""}","Iberville","22047","FALSE","FALSE","America/Chicago"
-"70789","30.93177","-91.08262","Wilson","LA","Louisiana","TRUE","","517","8.6","22037","East Feliciana","{""22037"": ""100""}","East Feliciana","22037","FALSE","FALSE","America/Chicago"
-"70791","30.65217","-91.15564","Zachary","LA","Louisiana","TRUE","","27046","86.6","22033","East Baton Rouge","{""22033"": ""99.24"", ""22037"": ""0.76""}","East Baton Rouge|East Feliciana","22033|22037","FALSE","FALSE","America/Chicago"
-"70801","30.44965","-91.18597","Baton Rouge","LA","Louisiana","TRUE","","166","493.9","22033","East Baton Rouge","{""22033"": ""100""}","East Baton Rouge","22033","FALSE","FALSE","America/Chicago"
-"70802","30.44383","-91.17753","Baton Rouge","LA","Louisiana","TRUE","","23550","1182.0","22033","East Baton Rouge","{""22033"": ""100""}","East Baton Rouge","22033","FALSE","FALSE","America/Chicago"
-"70803","30.41429","-91.17756","Baton Rouge","LA","Louisiana","TRUE","","755","1211.1","22033","East Baton Rouge","{""22033"": ""100""}","East Baton Rouge","22033","FALSE","FALSE","America/Chicago"
-"70805","30.48853","-91.15936","Baton Rouge","LA","Louisiana","TRUE","","27180","920.4","22033","East Baton Rouge","{""22033"": ""100""}","East Baton Rouge","22033","FALSE","FALSE","America/Chicago"
-"70806","30.44881","-91.12471","Baton Rouge","LA","Louisiana","TRUE","","28588","1243.6","22033","East Baton Rouge","{""22033"": ""100""}","East Baton Rouge","22033","FALSE","FALSE","America/Chicago"
-"70807","30.543","-91.21105","Baton Rouge","LA","Louisiana","TRUE","","17945","271.6","22033","East Baton Rouge","{""22033"": ""100""}","East Baton Rouge","22033","FALSE","FALSE","America/Chicago"
-"70808","30.40564","-91.14254","Baton Rouge","LA","Louisiana","TRUE","","33630","1075.4","22033","East Baton Rouge","{""22033"": ""100""}","East Baton Rouge","22033","FALSE","FALSE","America/Chicago"
-"70809","30.39381","-91.07114","Baton Rouge","LA","Louisiana","TRUE","","25616","666.1","22033","East Baton Rouge","{""22033"": ""100""}","East Baton Rouge","22033","FALSE","FALSE","America/Chicago"
-"70810","30.3454","-91.08307","Baton Rouge","LA","Louisiana","TRUE","","40672","580.1","22033","East Baton Rouge","{""22033"": ""100""}","East Baton Rouge","22033","FALSE","FALSE","America/Chicago"
-"70811","30.53195","-91.11677","Baton Rouge","LA","Louisiana","TRUE","","14297","473.3","22033","East Baton Rouge","{""22033"": ""100""}","East Baton Rouge","22033","FALSE","FALSE","America/Chicago"
-"70812","30.50073","-91.11044","Baton Rouge","LA","Louisiana","TRUE","","12261","1087.8","22033","East Baton Rouge","{""22033"": ""100""}","East Baton Rouge","22033","FALSE","FALSE","America/Chicago"
-"70814","30.48518","-91.068","Baton Rouge","LA","Louisiana","TRUE","","13628","678.9","22033","East Baton Rouge","{""22033"": ""100""}","East Baton Rouge","22033","FALSE","FALSE","America/Chicago"
-"70815","30.45546","-91.06629","Baton Rouge","LA","Louisiana","TRUE","","29374","1183.7","22033","East Baton Rouge","{""22033"": ""100""}","East Baton Rouge","22033","FALSE","FALSE","America/Chicago"
-"70816","30.42897","-91.0214","Baton Rouge","LA","Louisiana","TRUE","","42917","1038.6","22033","East Baton Rouge","{""22033"": ""100""}","East Baton Rouge","22033","FALSE","FALSE","America/Chicago"
-"70817","30.37601","-90.9809","Baton Rouge","LA","Louisiana","TRUE","","34438","517.3","22033","East Baton Rouge","{""22033"": ""100""}","East Baton Rouge","22033","FALSE","FALSE","America/Chicago"
-"70818","30.5425","-91.04985","Baton Rouge","LA","Louisiana","TRUE","","10183","271.8","22033","East Baton Rouge","{""22033"": ""100""}","East Baton Rouge","22033","FALSE","FALSE","America/Chicago"
-"70819","30.47395","-91.01095","Baton Rouge","LA","Louisiana","TRUE","","5074","337.5","22033","East Baton Rouge","{""22033"": ""100""}","East Baton Rouge","22033","FALSE","FALSE","America/Chicago"
-"70820","30.36901","-91.18539","Baton Rouge","LA","Louisiana","TRUE","","19218","390.3","22033","East Baton Rouge","{""22033"": ""100""}","East Baton Rouge","22033","FALSE","FALSE","America/Chicago"
-"70836","30.39079","-91.09071","Baton Rouge","LA","Louisiana","TRUE","","0","0.0","22033","East Baton Rouge","{""22033"": ""0""}","East Baton Rouge","22033","FALSE","FALSE","America/Chicago"
-"71001","32.59461","-92.89717","Arcadia","LA","Louisiana","TRUE","","4644","14.5","22013","Bienville","{""22013"": ""83.73"", ""22061"": ""8.43"", ""22027"": ""7.83""}","Bienville|Lincoln|Claiborne","22013|22061|22027","FALSE","FALSE","America/Chicago"
-"71003","32.62862","-93.02968","Athens","LA","Louisiana","TRUE","","975","5.9","22027","Claiborne","{""22027"": ""100""}","Claiborne","22027","FALSE","FALSE","America/Chicago"
-"71004","32.74841","-93.86309","Belcher","LA","Louisiana","TRUE","","657","6.3","22017","Caddo","{""22017"": ""100""}","Caddo","22017","FALSE","FALSE","America/Chicago"
-"71006","32.72761","-93.63354","Benton","LA","Louisiana","TRUE","","13135","24.8","22015","Bossier","{""22015"": ""100""}","Bossier","22015","FALSE","FALSE","America/Chicago"
-"71007","32.36916","-94.00662","Bethany","LA","Louisiana","TRUE","","975","20.4","22017","Caddo","{""22017"": ""100""}","Caddo","22017","FALSE","FALSE","America/Chicago"
-"71008","32.34041","-92.96684","Bienville","LA","Louisiana","TRUE","","722","1.8","22013","Bienville","{""22013"": ""100""}","Bienville","22013","FALSE","FALSE","America/Chicago"
-"71016","32.23252","-93.10826","Castor","LA","Louisiana","TRUE","","1972","6.1","22013","Bienville","{""22013"": ""100""}","Bienville","22013","FALSE","FALSE","America/Chicago"
-"71018","32.82253","-93.42626","Cotton Valley","LA","Louisiana","TRUE","","1625","7.4","22119","Webster","{""22119"": ""95.31"", ""22015"": ""4.69""}","Webster|Bossier","22119|22015","FALSE","FALSE","America/Chicago"
-"71019","32.0481","-93.31013","Coushatta","LA","Louisiana","TRUE","","7940","9.4","22081","Red River","{""22081"": ""93.71"", ""22069"": ""6.29""}","Red River|Natchitoches","22081|22069","FALSE","FALSE","America/Chicago"
-"71021","32.96714","-93.44614","Cullen","LA","Louisiana","TRUE","","698","390.3","22119","Webster","{""22119"": ""100""}","Webster","22119","FALSE","FALSE","America/Chicago"
-"71023","32.47804","-93.40681","Doyline","LA","Louisiana","TRUE","","3553","28.3","22119","Webster","{""22119"": ""95.15"", ""22015"": ""4.85""}","Webster|Bossier","22119|22015","FALSE","FALSE","America/Chicago"
-"71024","32.48751","-93.2046","Dubberly","LA","Louisiana","TRUE","","1608","10.2","22119","Webster","{""22119"": ""88.1"", ""22013"": ""11.9""}","Webster|Bienville","22119|22013","FALSE","FALSE","America/Chicago"
-"71027","32.24518","-93.67306","Frierson","LA","Louisiana","TRUE","","1786","11.0","22031","De Soto","{""22031"": ""100""}","De Soto","22031","FALSE","FALSE","America/Chicago"
-"71028","32.48954","-93.07607","Gibsland","LA","Louisiana","TRUE","","1095","3.3","22013","Bienville","{""22013"": ""100""}","Bienville","22013","FALSE","FALSE","America/Chicago"
-"71029","32.83985","-93.83538","Gilliam","LA","Louisiana","TRUE","","152","2.1","22017","Caddo","{""22017"": ""100""}","Caddo","22017","FALSE","FALSE","America/Chicago"
-"71030","32.19298","-93.79082","Gloster","LA","Louisiana","TRUE","","1691","18.1","22031","De Soto","{""22031"": ""100""}","De Soto","22031","FALSE","FALSE","America/Chicago"
-"71031","32.00822","-92.90586","Goldonna","LA","Louisiana","TRUE","","853","2.2","22069","Natchitoches","{""22069"": ""61.75"", ""22127"": ""38.25""}","Natchitoches|Winn","22069|22127","FALSE","FALSE","America/Chicago"
-"71032","32.09478","-93.79297","Grand Cane","LA","Louisiana","TRUE","","2198","7.0","22031","De Soto","{""22031"": ""100""}","De Soto","22031","FALSE","FALSE","America/Chicago"
-"71033","32.43693","-94.00276","Greenwood","LA","Louisiana","TRUE","","3458","52.6","22017","Caddo","{""22017"": ""100""}","Caddo","22017","FALSE","FALSE","America/Chicago"
-"71034","32.18368","-93.30692","Hall Summit","LA","Louisiana","TRUE","","415","47.8","22081","Red River","{""22081"": ""100""}","Red River","22081","FALSE","FALSE","America/Chicago"
-"71037","32.56962","-93.52321","Haughton","LA","Louisiana","TRUE","","18955","66.8","22015","Bossier","{""22015"": ""100""}","Bossier","22015","FALSE","FALSE","America/Chicago"
-"71038","32.94411","-93.06443","Haynesville","LA","Louisiana","TRUE","","4505","8.0","22027","Claiborne","{""22027"": ""99.58"", ""22119"": ""0.42""}","Claiborne|Webster","22027|22119","FALSE","FALSE","America/Chicago"
-"71039","32.4269","-93.29391","Heflin","LA","Louisiana","TRUE","","1769","14.8","22119","Webster","{""22119"": ""80.46"", ""22013"": ""19.54""}","Webster|Bienville","22119|22013","FALSE","FALSE","America/Chicago"
-"71040","32.7826","-93.01974","Homer","LA","Louisiana","TRUE","","8689","11.6","22027","Claiborne","{""22027"": ""100""}","Claiborne","22027","FALSE","FALSE","America/Chicago"
-"71043","32.88588","-93.88477","Hosston","LA","Louisiana","TRUE","","449","12.4","22017","Caddo","{""22017"": ""100""}","Caddo","22017","FALSE","FALSE","America/Chicago"
-"71044","32.968","-93.88232","Ida","LA","Louisiana","TRUE","","572","4.1","22017","Caddo","{""22017"": ""100""}","Caddo","22017","FALSE","FALSE","America/Chicago"
-"71045","32.35247","-93.1826","Jamestown","LA","Louisiana","TRUE","","638","5.2","22013","Bienville","{""22013"": ""100""}","Bienville","22013","FALSE","FALSE","America/Chicago"
-"71046","32.16403","-93.95024","Keatchie","LA","Louisiana","TRUE","","914","3.9","22031","De Soto","{""22031"": ""87.34"", ""22017"": ""12.66""}","De Soto|Caddo","22031|22017","FALSE","FALSE","America/Chicago"
-"71047","32.29784","-93.91816","Keithville","LA","Louisiana","TRUE","","12258","44.0","22017","Caddo","{""22017"": ""100""}","Caddo","22017","FALSE","FALSE","America/Chicago"
-"71048","32.83853","-92.8456","Lisbon","LA","Louisiana","TRUE","","59","1.1","22027","Claiborne","{""22027"": ""100""}","Claiborne","22027","FALSE","FALSE","America/Chicago"
-"71049","32.01289","-93.96557","Logansport","LA","Louisiana","TRUE","","3494","15.4","22031","De Soto","{""22031"": ""100""}","De Soto","22031","FALSE","FALSE","America/Chicago"
-"71051","32.34358","-93.49114","Elm Grove","LA","Louisiana","TRUE","","1894","7.8","22015","Bossier","{""22015"": ""99.67"", ""22017"": ""0.33""}","Bossier|Caddo","22015|22017","FALSE","FALSE","America/Chicago"
-"71052","32.00943","-93.66509","Mansfield","LA","Louisiana","TRUE","","9285","11.1","22031","De Soto","{""22031"": ""98.9"", ""22081"": ""1.1""}","De Soto|Red River","22031|22081","FALSE","FALSE","America/Chicago"
-"71055","32.6725","-93.29812","Minden","LA","Louisiana","TRUE","","19144","28.7","22119","Webster","{""22119"": ""97.68"", ""22027"": ""2.14"", ""22013"": ""0.18""}","Webster|Claiborne|Bienville","22119|22027|22013","FALSE","FALSE","America/Chicago"
-"71060","32.64682","-93.98422","Mooringsport","LA","Louisiana","TRUE","","2413","13.7","22017","Caddo","{""22017"": ""100""}","Caddo","22017","FALSE","FALSE","America/Chicago"
-"71061","32.76705","-93.96639","Oil City","LA","Louisiana","TRUE","","1668","35.0","22017","Caddo","{""22017"": ""100""}","Caddo","22017","FALSE","FALSE","America/Chicago"
-"71063","31.90905","-93.51129","Pelican","LA","Louisiana","TRUE","","635","2.4","22031","De Soto","{""22031"": ""100""}","De Soto","22031","FALSE","FALSE","America/Chicago"
-"71064","32.91077","-93.68579","Plain Dealing","LA","Louisiana","TRUE","","2769","5.0","22015","Bossier","{""22015"": ""100""}","Bossier","22015","FALSE","FALSE","America/Chicago"
-"71065","31.80766","-93.50564","Pleasant Hill","LA","Louisiana","TRUE","","1358","9.2","22085","Sabine","{""22085"": ""98.46"", ""22069"": ""1.54""}","Sabine|Natchitoches","22085|22069","FALSE","FALSE","America/Chicago"
-"71067","32.5968","-93.49348","Princeton","LA","Louisiana","TRUE","","3740","37.6","22015","Bossier","{""22015"": ""99.79"", ""22119"": ""0.21""}","Bossier|Webster","22015|22119","FALSE","FALSE","America/Chicago"
-"71068","32.28367","-93.32183","Ringgold","LA","Louisiana","TRUE","","3418","9.2","22013","Bienville","{""22013"": ""89.08"", ""22081"": ""10.92""}","Bienville|Red River","22013|22081","FALSE","FALSE","America/Chicago"
-"71069","32.9662","-93.98748","Rodessa","LA","Louisiana","TRUE","","575","7.1","22017","Caddo","{""22017"": ""100""}","Caddo","22017","FALSE","FALSE","America/Chicago"
-"71070","32.10241","-93.01329","Saline","LA","Louisiana","TRUE","","1558","2.9","22069","Natchitoches","{""22069"": ""51.83"", ""22013"": ""48.17""}","Natchitoches|Bienville","22069|22013","FALSE","FALSE","America/Chicago"
-"71071","32.92383","-93.45566","Sarepta","LA","Louisiana","TRUE","","2529","20.3","22119","Webster","{""22119"": ""99.22"", ""22015"": ""0.78""}","Webster|Bossier","22119|22015","FALSE","FALSE","America/Chicago"
-"71072","32.93729","-93.31261","Shongaloo","LA","Louisiana","TRUE","","1380","5.4","22119","Webster","{""22119"": ""100""}","Webster","22119","FALSE","FALSE","America/Chicago"
-"71073","32.52345","-93.30696","Sibley","LA","Louisiana","TRUE","","2012","27.1","22119","Webster","{""22119"": ""100""}","Webster","22119","FALSE","FALSE","America/Chicago"
-"71075","32.99336","-93.49922","Springhill","LA","Louisiana","TRUE","","6132","63.9","22119","Webster","{""22119"": ""98.07"", ""22015"": ""1.93""}","Webster|Bossier","22119|22015","FALSE","FALSE","America/Chicago"
-"71078","32.27196","-93.79337","Stonewall","LA","Louisiana","TRUE","","7112","59.1","22031","De Soto","{""22031"": ""100""}","De Soto","22031","FALSE","FALSE","America/Chicago"
-"71079","32.9391","-92.81477","Summerfield","LA","Louisiana","TRUE","","216","2.5","22027","Claiborne","{""22027"": ""100""}","Claiborne","22027","FALSE","FALSE","America/Chicago"
-"71082","32.8365","-93.9802","Vivian","LA","Louisiana","TRUE","","4730","24.1","22017","Caddo","{""22017"": ""100""}","Caddo","22017","FALSE","FALSE","America/Chicago"
-"71101","32.50609","-93.74683","Shreveport","LA","Louisiana","TRUE","","6531","583.2","22017","Caddo","{""22017"": ""100""}","Caddo","22017","FALSE","FALSE","America/Chicago"
-"71103","32.49194","-93.7721","Shreveport","LA","Louisiana","TRUE","","6449","656.1","22017","Caddo","{""22017"": ""100""}","Caddo","22017","FALSE","FALSE","America/Chicago"
-"71104","32.48494","-93.73252","Shreveport","LA","Louisiana","TRUE","","14744","1439.2","22017","Caddo","{""22017"": ""97.41"", ""22015"": ""2.59""}","Caddo|Bossier","22017|22015","FALSE","FALSE","America/Chicago"
-"71105","32.45673","-93.70965","Shreveport","LA","Louisiana","TRUE","","20824","868.8","22017","Caddo","{""22017"": ""89.88"", ""22015"": ""10.12""}","Caddo|Bossier","22017|22015","FALSE","FALSE","America/Chicago"
-"71106","32.38572","-93.73634","Shreveport","LA","Louisiana","TRUE","","35922","424.5","22017","Caddo","{""22017"": ""100""}","Caddo","22017","FALSE","FALSE","America/Chicago"
-"71107","32.59665","-93.85878","Shreveport","LA","Louisiana","TRUE","","34082","92.1","22017","Caddo","{""22017"": ""99.7"", ""22015"": ""0.3""}","Caddo|Bossier","22017|22015","FALSE","FALSE","America/Chicago"
-"71108","32.4426","-93.78848","Shreveport","LA","Louisiana","TRUE","","18216","822.6","22017","Caddo","{""22017"": ""100""}","Caddo","22017","FALSE","FALSE","America/Chicago"
-"71109","32.46874","-93.81377","Shreveport","LA","Louisiana","TRUE","","19581","601.8","22017","Caddo","{""22017"": ""100""}","Caddo","22017","FALSE","FALSE","America/Chicago"
-"71110","32.50008","-93.59976","Barksdale Afb","LA","Louisiana","TRUE","","4623","53.4","22015","Bossier","{""22015"": ""100""}","Bossier","22015","FALSE","FALSE","America/Chicago"
-"71111","32.58156","-93.70305","Bossier City","LA","Louisiana","TRUE","","43975","371.5","22015","Bossier","{""22015"": ""100""}","Bossier","22015","FALSE","FALSE","America/Chicago"
-"71112","32.44249","-93.63612","Bossier City","LA","Louisiana","TRUE","","34682","313.0","22015","Bossier","{""22015"": ""100""}","Bossier","22015","FALSE","FALSE","America/Chicago"
-"71115","32.26845","-93.56896","Shreveport","LA","Louisiana","TRUE","","15639","54.7","22017","Caddo","{""22017"": ""98.26"", ""22081"": ""1.74""}","Caddo|Red River","22017|22081","FALSE","FALSE","America/Chicago"
-"71118","32.39266","-93.80531","Shreveport","LA","Louisiana","TRUE","","25221","737.6","22017","Caddo","{""22017"": ""100""}","Caddo","22017","FALSE","FALSE","America/Chicago"
-"71119","32.48449","-93.92987","Shreveport","LA","Louisiana","TRUE","","11389","99.1","22017","Caddo","{""22017"": ""100""}","Caddo","22017","FALSE","FALSE","America/Chicago"
-"71129","32.38799","-93.92385","Shreveport","LA","Louisiana","TRUE","","12077","103.3","22017","Caddo","{""22017"": ""100""}","Caddo","22017","FALSE","FALSE","America/Chicago"
-"71201","32.53298","-92.10528","Monroe","LA","Louisiana","TRUE","","20571","611.9","22073","Ouachita","{""22073"": ""100""}","Ouachita","22073","FALSE","FALSE","America/Chicago"
-"71202","32.3959","-92.05625","Monroe","LA","Louisiana","TRUE","","28909","96.8","22073","Ouachita","{""22073"": ""100""}","Ouachita","22073","FALSE","FALSE","America/Chicago"
-"71203","32.5828","-92.01769","Monroe","LA","Louisiana","TRUE","","39071","127.0","22073","Ouachita","{""22073"": ""100""}","Ouachita","22073","FALSE","FALSE","America/Chicago"
-"71209","32.52915","-92.07003","Monroe","LA","Louisiana","TRUE","","179","7501.5","22073","Ouachita","{""22073"": ""100""}","Ouachita","22073","FALSE","FALSE","America/Chicago"
-"71219","32.323","-91.6843","Baskin","LA","Louisiana","TRUE","","1368","8.7","22041","Franklin","{""22041"": ""100""}","Franklin","22041","FALSE","FALSE","America/Chicago"
-"71220","32.86485","-91.9114","Bastrop","LA","Louisiana","TRUE","","21683","22.5","22067","Morehouse","{""22067"": ""100""}","Morehouse","22067","FALSE","FALSE","America/Chicago"
-"71222","32.82676","-92.65791","Bernice","LA","Louisiana","TRUE","","3342","8.8","22111","Union","{""22111"": ""89.37"", ""22027"": ""10.63""}","Union|Claiborne","22111|22027","FALSE","FALSE","America/Chicago"
-"71223","32.89241","-91.66024","Bonita","LA","Louisiana","TRUE","","362","2.5","22067","Morehouse","{""22067"": ""100""}","Morehouse","22067","FALSE","FALSE","America/Chicago"
-"71225","32.5104","-92.34419","Calhoun","LA","Louisiana","TRUE","","7435","49.2","22073","Ouachita","{""22073"": ""100""}","Ouachita","22073","FALSE","FALSE","America/Chicago"
-"71226","32.25266","-92.44554","Chatham","LA","Louisiana","TRUE","","1797","4.6","22049","Jackson","{""22049"": ""100""}","Jackson","22049","FALSE","FALSE","America/Chicago"
-"71227","32.53465","-92.48035","Choudrant","LA","Louisiana","TRUE","","4204","14.5","22061","Lincoln","{""22061"": ""80.96"", ""22049"": ""15.1"", ""22073"": ""3.93""}","Lincoln|Jackson|Ouachita","22061|22049|22073","FALSE","FALSE","America/Chicago"
-"71229","32.63897","-91.89321","Collinston","LA","Louisiana","TRUE","","1391","9.2","22067","Morehouse","{""22067"": ""77.74"", ""22073"": ""22.26""}","Morehouse|Ouachita","22067|22073","FALSE","FALSE","America/Chicago"
-"71232","32.3952","-91.47354","Delhi","LA","Louisiana","TRUE","","6731","8.7","22083","Richland","{""22083"": ""77.6"", ""22041"": ""11.49"", ""22065"": ""10.91""}","Richland|Franklin|Madison","22083|22041|22065","FALSE","FALSE","America/Chicago"
-"71233","32.32515","-90.93206","Delta","LA","Louisiana","TRUE","","285","174.9","22065","Madison","{""22065"": ""100""}","Madison","22065","FALSE","FALSE","America/Chicago"
-"71234","32.64415","-92.34166","Downsville","LA","Louisiana","TRUE","","3587","11.7","22111","Union","{""22111"": ""77.61"", ""22073"": ""17.76"", ""22061"": ""4.63""}","Union|Ouachita|Lincoln","22111|22073|22061","FALSE","FALSE","America/Chicago"
-"71235","32.69053","-92.67428","Dubach","LA","Louisiana","TRUE","","4163","9.9","22061","Lincoln","{""22061"": ""99.16"", ""22027"": ""0.84""}","Lincoln|Claiborne","22061|22027","FALSE","FALSE","America/Chicago"
-"71237","32.59249","-91.49189","Epps","LA","Louisiana","TRUE","","1747","10.4","22123","West Carroll","{""22123"": ""87.14"", ""22083"": ""6.78"", ""22035"": ""6.08""}","West Carroll|Richland|East Carroll","22123|22083|22035","FALSE","FALSE","America/Chicago"
-"71238","32.36776","-92.37881","Eros","LA","Louisiana","TRUE","","3026","10.7","22073","Ouachita","{""22073"": ""71.68"", ""22049"": ""28.32""}","Ouachita|Jackson","22073|22049","FALSE","FALSE","America/Chicago"
-"71241","32.77182","-92.36289","Farmerville","LA","Louisiana","TRUE","","9931","19.7","22111","Union","{""22111"": ""100""}","Union","22111","FALSE","FALSE","America/Chicago"
-"71243","31.95726","-91.81105","Fort Necessity","LA","Louisiana","TRUE","","219","3.3","22041","Franklin","{""22041"": ""100""}","Franklin","22041","FALSE","FALSE","America/Chicago"
-"71245","32.5297","-92.72192","Grambling","LA","Louisiana","TRUE","","4707","258.7","22061","Lincoln","{""22061"": ""100""}","Lincoln","22061","FALSE","FALSE","America/Chicago"
-"71247","32.27241","-92.72184","Hodge","LA","Louisiana","TRUE","","1143","177.5","22049","Jackson","{""22049"": ""100""}","Jackson","22049","FALSE","FALSE","America/Chicago"
-"71250","32.95894","-91.5762","Jones","LA","Louisiana","TRUE","","184","0.7","22067","Morehouse","{""22067"": ""100""}","Morehouse","22067","FALSE","FALSE","America/Chicago"
-"71251","32.21619","-92.67173","Jonesboro","LA","Louisiana","TRUE","","8957","18.9","22049","Jackson","{""22049"": ""97.13"", ""22013"": ""2.87""}","Jackson|Bienville","22049|22013","FALSE","FALSE","America/Chicago"
-"71253","32.99119","-91.30936","Kilbourne","LA","Louisiana","TRUE","","154","58.7","22123","West Carroll","{""22123"": ""100""}","West Carroll","22123","FALSE","FALSE","America/Chicago"
-"71254","32.79696","-91.25569","Lake Providence","LA","Louisiana","TRUE","","6468","9.5","22035","East Carroll","{""22035"": ""100""}","East Carroll","22035","FALSE","FALSE","America/Chicago"
-"71256","32.95098","-92.72279","Lillie","LA","Louisiana","TRUE","","1300","10.4","22111","Union","{""22111"": ""74.13"", ""22027"": ""25.87""}","Union|Claiborne","22111|22027","FALSE","FALSE","America/Chicago"
-"71259","32.27255","-91.84626","Mangham","LA","Louisiana","TRUE","","1648","6.7","22083","Richland","{""22083"": ""100""}","Richland","22083","FALSE","FALSE","America/Chicago"
-"71260","32.90786","-92.23879","Marion","LA","Louisiana","TRUE","","2679","3.7","22111","Union","{""22111"": ""100""}","Union","22111","FALSE","FALSE","America/Chicago"
-"71261","32.77214","-91.69884","Mer Rouge","LA","Louisiana","TRUE","","1148","3.5","22067","Morehouse","{""22067"": ""100""}","Morehouse","22067","FALSE","FALSE","America/Chicago"
-"71263","32.8689","-91.42567","Oak Grove","LA","Louisiana","TRUE","","7917","14.7","22123","West Carroll","{""22123"": ""100""}","West Carroll","22123","FALSE","FALSE","America/Chicago"
-"71264","32.60214","-91.77469","Oak Ridge","LA","Louisiana","TRUE","","980","3.3","22083","Richland","{""22083"": ""51.39"", ""22067"": ""48.61""}","Richland|Morehouse","22083|22067","FALSE","FALSE","America/Chicago"
-"71266","32.69816","-91.49624","Pioneer","LA","Louisiana","TRUE","","1486","5.0","22123","West Carroll","{""22123"": ""100""}","West Carroll","22123","FALSE","FALSE","America/Chicago"
-"71268","32.34702","-92.74102","Quitman","LA","Louisiana","TRUE","","2466","7.5","22049","Jackson","{""22049"": ""88.26"", ""22013"": ""11.74""}","Jackson|Bienville","22049|22013","FALSE","FALSE","America/Chicago"
-"71269","32.44574","-91.7869","Rayville","LA","Louisiana","TRUE","","12586","15.0","22083","Richland","{""22083"": ""100""}","Richland","22083","FALSE","FALSE","America/Chicago"
-"71270","32.49458","-92.63932","Ruston","LA","Louisiana","TRUE","","31326","59.1","22061","Lincoln","{""22061"": ""97.29"", ""22049"": ""2.71""}","Lincoln|Jackson","22061|22049","FALSE","FALSE","America/Chicago"
-"71272","32.5269","-92.64931","Ruston","LA","Louisiana","TRUE","","1535","3627.8","22061","Lincoln","{""22061"": ""100""}","Lincoln","22061","FALSE","FALSE","America/Chicago"
-"71275","32.5134","-92.82085","Simsboro","LA","Louisiana","TRUE","","2652","10.0","22061","Lincoln","{""22061"": ""94.62"", ""22013"": ""5.38""}","Lincoln|Bienville","22061|22013","FALSE","FALSE","America/Chicago"
-"71276","32.57571","-91.14931","Sondheimer","LA","Louisiana","TRUE","","110","0.9","22035","East Carroll","{""22035"": ""100""}","East Carroll","22035","FALSE","FALSE","America/Chicago"
-"71277","32.94939","-92.55717","Spearsville","LA","Louisiana","TRUE","","1476","5.2","22111","Union","{""22111"": ""100""}","Union","22111","FALSE","FALSE","America/Chicago"
-"71279","32.48731","-91.85714","Start","LA","Louisiana","TRUE","","51","375.7","22083","Richland","{""22083"": ""100""}","Richland","22083","FALSE","FALSE","America/Chicago"
-"71280","32.72605","-92.09706","Sterlington","LA","Louisiana","TRUE","","5125","30.8","22073","Ouachita","{""22073"": ""66.19"", ""22111"": ""20.48"", ""22067"": ""13.33""}","Ouachita|Union|Morehouse","22073|22111|22067","FALSE","FALSE","America/Chicago"
-"71282","32.36504","-91.1811","Tallulah","LA","Louisiana","TRUE","","10412","8.8","22065","Madison","{""22065"": ""100""}","Madison","22065","FALSE","FALSE","America/Chicago"
-"71286","32.66443","-91.19645","Transylvania","LA","Louisiana","TRUE","","362","1.5","22035","East Carroll","{""22035"": ""100""}","East Carroll","22035","FALSE","FALSE","America/Chicago"
-"71291","32.57001","-92.182","West Monroe","LA","Louisiana","TRUE","","32745","195.2","22073","Ouachita","{""22073"": ""100""}","Ouachita","22073","FALSE","FALSE","America/Chicago"
-"71292","32.40098","-92.2143","West Monroe","LA","Louisiana","TRUE","","19578","50.1","22073","Ouachita","{""22073"": ""100""}","Ouachita","22073","FALSE","FALSE","America/Chicago"
-"71295","32.14743","-91.70683","Winnsboro","LA","Louisiana","TRUE","","13774","16.7","22041","Franklin","{""22041"": ""100""}","Franklin","22041","FALSE","FALSE","America/Chicago"
-"71301","31.27424","-92.46876","Alexandria","LA","Louisiana","TRUE","","22446","695.1","22079","Rapides","{""22079"": ""100""}","Rapides","22079","FALSE","FALSE","America/Chicago"
-"71302","31.20429","-92.3775","Alexandria","LA","Louisiana","TRUE","","13379","77.5","22079","Rapides","{""22079"": ""100""}","Rapides","22079","FALSE","FALSE","America/Chicago"
-"71303","31.27807","-92.54371","Alexandria","LA","Louisiana","TRUE","","21817","127.5","22079","Rapides","{""22079"": ""100""}","Rapides","22079","FALSE","FALSE","America/Chicago"
-"71316","31.26253","-91.75986","Acme","LA","Louisiana","TRUE","","31","0.3","22029","Concordia","{""22029"": ""100""}","Concordia","22029","FALSE","FALSE","America/Chicago"
-"71322","30.86405","-92.14654","Bunkie","LA","Louisiana","TRUE","","6043","13.1","22009","Avoyelles","{""22009"": ""90.47"", ""22097"": ""9.53""}","Avoyelles|St. Landry","22009|22097","FALSE","FALSE","America/Chicago"
-"71323","31.26501","-92.20835","Center Point","LA","Louisiana","TRUE","","965","13.6","22009","Avoyelles","{""22009"": ""100""}","Avoyelles","22009","FALSE","FALSE","America/Chicago"
-"71325","31.00135","-92.32192","Cheneyville","LA","Louisiana","TRUE","","1128","5.1","22079","Rapides","{""22079"": ""79.94"", ""22039"": ""20.06""}","Rapides|Evangeline","22079|22039","FALSE","FALSE","America/Chicago"
-"71326","31.77049","-91.60947","Clayton","LA","Louisiana","TRUE","","752","3.6","22029","Concordia","{""22029"": ""70.36"", ""22025"": ""29.64""}","Concordia|Catahoula","22029|22025","FALSE","FALSE","America/Chicago"
-"71327","30.98262","-92.03351","Cottonport","LA","Louisiana","TRUE","","5891","54.1","22009","Avoyelles","{""22009"": ""100""}","Avoyelles","22009","FALSE","FALSE","America/Chicago"
-"71328","31.36086","-92.17548","Deville","LA","Louisiana","TRUE","","7029","22.2","22079","Rapides","{""22079"": ""93.81"", ""22009"": ""6.19"", ""22059"": ""0""}","Rapides|Avoyelles|LaSalle","22079|22009|22059","FALSE","FALSE","America/Chicago"
-"71331","31.26464","-92.0817","Effie","LA","Louisiana","TRUE","","1002","5.5","22009","Avoyelles","{""22009"": ""100""}","Avoyelles","22009","FALSE","FALSE","America/Chicago"
-"71333","30.906","-92.07384","Evergreen","LA","Louisiana","TRUE","","557","5.7","22009","Avoyelles","{""22009"": ""100""}","Avoyelles","22009","FALSE","FALSE","America/Chicago"
-"71334","31.65639","-91.56305","Ferriday","LA","Louisiana","TRUE","","10208","23.1","22029","Concordia","{""22029"": ""100""}","Concordia","22029","FALSE","FALSE","America/Chicago"
-"71336","32.02112","-91.59335","Gilbert","LA","Louisiana","TRUE","","1461","4.8","22041","Franklin","{""22041"": ""100""}","Franklin","22041","FALSE","FALSE","America/Chicago"
-"71339","31.01384","-91.93234","Hamburg","LA","Louisiana","TRUE","","234","10.6","22009","Avoyelles","{""22009"": ""100""}","Avoyelles","22009","FALSE","FALSE","America/Chicago"
-"71340","31.76918","-91.81069","Harrisonburg","LA","Louisiana","TRUE","","2144","7.2","22025","Catahoula","{""22025"": ""100""}","Catahoula","22025","FALSE","FALSE","America/Chicago"
-"71341","31.06164","-92.16497","Hessmer","LA","Louisiana","TRUE","","3727","55.9","22009","Avoyelles","{""22009"": ""100""}","Avoyelles","22009","FALSE","FALSE","America/Chicago"
-"71342","31.60484","-92.13805","Jena","LA","Louisiana","TRUE","","7203","18.3","22059","LaSalle","{""22059"": ""100""}","LaSalle","22059","FALSE","FALSE","America/Chicago"
-"71343","31.51699","-91.90443","Jonesville","LA","Louisiana","TRUE","","6672","4.9","22025","Catahoula","{""22025"": ""83.65"", ""22029"": ""12.48"", ""22059"": ""3.87""}","Catahoula|Concordia|LaSalle","22025|22029|22059","FALSE","FALSE","America/Chicago"
-"71345","30.72926","-91.97539","Lebeau","LA","Louisiana","TRUE","","177","414.2","22097","St. Landry","{""22097"": ""100""}","St. Landry","22097","FALSE","FALSE","America/Chicago"
-"71346","31.11308","-92.37618","Lecompte","LA","Louisiana","TRUE","","2497","11.7","22079","Rapides","{""22079"": ""100""}","Rapides","22079","FALSE","FALSE","America/Chicago"
-"71350","31.06814","-92.06899","Mansura","LA","Louisiana","TRUE","","3779","42.0","22009","Avoyelles","{""22009"": ""100""}","Avoyelles","22009","FALSE","FALSE","America/Chicago"
-"71351","31.17738","-91.96283","Marksville","LA","Louisiana","TRUE","","11063","20.9","22009","Avoyelles","{""22009"": ""99.02"", ""22079"": ""0.98""}","Avoyelles|Rapides","22009|22079","FALSE","FALSE","America/Chicago"
-"71353","30.75036","-91.81854","Melville","LA","Louisiana","TRUE","","1926","9.9","22097","St. Landry","{""22097"": ""100""}","St. Landry","22097","FALSE","FALSE","America/Chicago"
-"71354","31.40667","-91.76946","Monterey","LA","Louisiana","TRUE","","1857","7.6","22029","Concordia","{""22029"": ""100""}","Concordia","22029","FALSE","FALSE","America/Chicago"
-"71355","31.07853","-91.85006","Moreauville","LA","Louisiana","TRUE","","2611","7.1","22009","Avoyelles","{""22009"": ""100""}","Avoyelles","22009","FALSE","FALSE","America/Chicago"
-"71356","30.82064","-92.04833","Morrow","LA","Louisiana","TRUE","","947","10.6","22097","St. Landry","{""22097"": ""83.02"", ""22009"": ""16.98""}","St. Landry|Avoyelles","22097|22009","FALSE","FALSE","America/Chicago"
-"71357","32.11106","-91.29853","Newellton","LA","Louisiana","TRUE","","1821","2.5","22107","Tensas","{""22107"": ""100""}","Tensas","22107","FALSE","FALSE","America/Chicago"
-"71358","30.69306","-91.86611","Palmetto","LA","Louisiana","TRUE","","815","3.5","22097","St. Landry","{""22097"": ""100""}","St. Landry","22097","FALSE","FALSE","America/Chicago"
-"71360","31.32037","-92.3529","Pineville","LA","Louisiana","TRUE","","37374","73.6","22079","Rapides","{""22079"": ""97.5"", ""22043"": ""1.79"", ""22009"": ""0.71""}","Rapides|Grant|Avoyelles","22079|22043|22009","FALSE","FALSE","America/Chicago"
-"71362","30.89643","-91.96621","Plaucheville","LA","Louisiana","TRUE","","1837","13.8","22009","Avoyelles","{""22009"": ""97.05"", ""22097"": ""2.95""}","Avoyelles|St. Landry","22009|22097","FALSE","FALSE","America/Chicago"
-"71366","31.9396","-91.33846","Saint Joseph","LA","Louisiana","TRUE","","1513","3.6","22107","Tensas","{""22107"": ""100""}","Tensas","22107","FALSE","FALSE","America/Chicago"
-"71367","30.88321","-92.29376","Saint Landry","LA","Louisiana","TRUE","","1586","9.2","22039","Evangeline","{""22039"": ""98.2"", ""22079"": ""1.8""}","Evangeline|Rapides","22039|22079","FALSE","FALSE","America/Chicago"
-"71368","31.86464","-91.68802","Sicily Island","LA","Louisiana","TRUE","","1297","6.0","22025","Catahoula","{""22025"": ""100""}","Catahoula","22025","FALSE","FALSE","America/Chicago"
-"71369","30.92272","-91.86756","Simmesport","LA","Louisiana","TRUE","","2534","12.8","22009","Avoyelles","{""22009"": ""100""}","Avoyelles","22009","FALSE","FALSE","America/Chicago"
-"71371","31.67912","-92.25657","Trout","LA","Louisiana","TRUE","","2542","6.6","22059","LaSalle","{""22059"": ""100""}","LaSalle","22059","FALSE","FALSE","America/Chicago"
-"71373","31.30969","-91.60794","Vidalia","LA","Louisiana","TRUE","","6077","8.6","22029","Concordia","{""22029"": ""100""}","Concordia","22029","FALSE","FALSE","America/Chicago"
-"71375","31.84917","-91.47557","Waterproof","LA","Louisiana","TRUE","","1227","3.6","22107","Tensas","{""22107"": ""100""}","Tensas","22107","FALSE","FALSE","America/Chicago"
-"71377","31.61093","-91.78648","Wildsville","LA","Louisiana","TRUE","","168","201.8","22029","Concordia","{""22029"": ""100""}","Concordia","22029","FALSE","FALSE","America/Chicago"
-"71378","31.95539","-91.70933","Wisner","LA","Louisiana","TRUE","","2233","17.4","22041","Franklin","{""22041"": ""100""}","Franklin","22041","FALSE","FALSE","America/Chicago"
-"71401","31.79748","-91.94596","Aimwell","LA","Louisiana","TRUE","","165","2.2","22025","Catahoula","{""22025"": ""100""}","Catahoula","22025","FALSE","FALSE","America/Chicago"
-"71403","31.21481","-93.43269","Anacoco","LA","Louisiana","TRUE","","4562","12.6","22115","Vernon","{""22115"": ""99.06"", ""22085"": ""0.94""}","Vernon|Sabine","22115|22085","FALSE","FALSE","America/Chicago"
-"71404","31.74824","-92.74907","Atlanta","LA","Louisiana","TRUE","","777","2.9","22127","Winn","{""22127"": ""66.12"", ""22043"": ""33.88""}","Winn|Grant","22127|22043","FALSE","FALSE","America/Chicago"
-"71405","31.40946","-92.40096","Ball","LA","Louisiana","TRUE","","6158","161.5","22079","Rapides","{""22079"": ""100""}","Rapides","22079","FALSE","FALSE","America/Chicago"
-"71406","31.73313","-93.50458","Belmont","LA","Louisiana","TRUE","","143","6.9","22085","Sabine","{""22085"": ""100""}","Sabine","22085","FALSE","FALSE","America/Chicago"
-"71407","31.51593","-92.48601","Bentley","LA","Louisiana","TRUE","","649","18.2","22043","Grant","{""22043"": ""100""}","Grant","22043","FALSE","FALSE","America/Chicago"
-"71409","31.31964","-92.70738","Boyce","LA","Louisiana","TRUE","","5286","15.2","22079","Rapides","{""22079"": ""100""}","Rapides","22079","FALSE","FALSE","America/Chicago"
-"71410","31.9648","-92.77153","Calvin","LA","Louisiana","TRUE","","144","80.6","22127","Winn","{""22127"": ""100""}","Winn","22127","FALSE","FALSE","America/Chicago"
-"71411","31.9049","-93.08994","Campti","LA","Louisiana","TRUE","","3506","20.1","22069","Natchitoches","{""22069"": ""100""}","Natchitoches","22069","FALSE","FALSE","America/Chicago"
-"71414","31.82637","-93.02461","Clarence","LA","Louisiana","TRUE","","112","70.8","22069","Natchitoches","{""22069"": ""100""}","Natchitoches","22069","FALSE","FALSE","America/Chicago"
-"71416","31.53792","-92.9122","Cloutierville","LA","Louisiana","TRUE","","933","5.3","22069","Natchitoches","{""22069"": ""100""}","Natchitoches","22069","FALSE","FALSE","America/Chicago"
-"71417","31.51533","-92.65407","Colfax","LA","Louisiana","TRUE","","6167","17.1","22043","Grant","{""22043"": ""100""}","Grant","22043","FALSE","FALSE","America/Chicago"
-"71418","32.143","-92.05545","Columbia","LA","Louisiana","TRUE","","6371","7.2","22021","Caldwell","{""22021"": ""88.42"", ""22083"": ""7.55"", ""22073"": ""3.13"", ""22025"": ""0.91""}","Caldwell|Richland|Ouachita|Catahoula","22021|22083|22073|22025","FALSE","FALSE","America/Chicago"
-"71419","31.80197","-93.7094","Converse","LA","Louisiana","TRUE","","2096","5.7","22085","Sabine","{""22085"": ""88.13"", ""22031"": ""11.87""}","Sabine|De Soto","22085|22031","FALSE","FALSE","America/Chicago"
-"71422","32.07824","-92.66397","Dodson","LA","Louisiana","TRUE","","1565","4.2","22127","Winn","{""22127"": ""100""}","Winn","22127","FALSE","FALSE","America/Chicago"
-"71423","31.60806","-92.56735","Dry Prong","LA","Louisiana","TRUE","","4632","13.8","22043","Grant","{""22043"": ""94.38"", ""22079"": ""5.62""}","Grant|Rapides","22043|22079","FALSE","FALSE","America/Chicago"
-"71424","31.18522","-92.67216","Elmer","LA","Louisiana","TRUE","","960","6.4","22079","Rapides","{""22079"": ""100""}","Rapides","22079","FALSE","FALSE","America/Chicago"
-"71425","31.88619","-91.89889","Enterprise","LA","Louisiana","TRUE","","174","1.8","22025","Catahoula","{""22025"": ""100""}","Catahoula","22025","FALSE","FALSE","America/Chicago"
-"71426","31.4989","-93.45992","Fisher","LA","Louisiana","TRUE","","355","117.1","22085","Sabine","{""22085"": ""100""}","Sabine","22085","FALSE","FALSE","America/Chicago"
-"71427","31.39595","-92.89252","Flatwoods","LA","Louisiana","TRUE","","666","16.3","22079","Rapides","{""22079"": ""74.82"", ""22069"": ""25.18""}","Rapides|Natchitoches","22079|22069","FALSE","FALSE","America/Chicago"
-"71429","31.40627","-93.42716","Florien","LA","Louisiana","TRUE","","3066","4.9","22085","Sabine","{""22085"": ""100""}","Sabine","22085","FALSE","FALSE","America/Chicago"
-"71430","31.04033","-92.50058","Forest Hill","LA","Louisiana","TRUE","","2875","13.0","22079","Rapides","{""22079"": ""100""}","Rapides","22079","FALSE","FALSE","America/Chicago"
-"71432","31.7512","-92.47125","Georgetown","LA","Louisiana","TRUE","","1123","4.8","22043","Grant","{""22043"": ""100""}","Grant","22043","FALSE","FALSE","America/Chicago"
-"71433","31.00167","-92.64666","Glenmora","LA","Louisiana","TRUE","","4033","9.7","22079","Rapides","{""22079"": ""100""}","Rapides","22079","FALSE","FALSE","America/Chicago"
-"71435","32.03092","-92.16365","Grayson","LA","Louisiana","TRUE","","3692","7.1","22021","Caldwell","{""22021"": ""98.72"", ""22025"": ""1.28""}","Caldwell|Catahoula","22021|22025","FALSE","FALSE","America/Chicago"
-"71438","31.11376","-92.82478","Hineston","LA","Louisiana","TRUE","","1621","7.2","22079","Rapides","{""22079"": ""67.4"", ""22115"": ""32.6""}","Rapides|Vernon","22079|22115","FALSE","FALSE","America/Chicago"
-"71439","31.33692","-93.39633","Hornbeck","LA","Louisiana","TRUE","","2047","14.7","22115","Vernon","{""22115"": ""79.92"", ""22085"": ""20.08""}","Vernon|Sabine","22115|22085","FALSE","FALSE","America/Chicago"
-"71441","31.944","-92.14073","Kelly","LA","Louisiana","TRUE","","536","3.8","22021","Caldwell","{""22021"": ""87.7"", ""22059"": ""12.3""}","Caldwell|LaSalle","22021|22059","FALSE","FALSE","America/Chicago"
-"71446","31.16724","-93.18769","Leesville","LA","Louisiana","TRUE","","21276","13.8","22115","Vernon","{""22115"": ""100""}","Vernon","22115","FALSE","FALSE","America/Chicago"
-"71447","31.43689","-92.81209","Lena","LA","Louisiana","TRUE","","1391","3.6","22079","Rapides","{""22079"": ""60.18"", ""22069"": ""38.39"", ""22115"": ""1.43""}","Rapides|Natchitoches|Vernon","22079|22069|22115","FALSE","FALSE","America/Chicago"
-"71449","31.54282","-93.51993","Many","LA","Louisiana","TRUE","","8865","14.5","22085","Sabine","{""22085"": ""100""}","Sabine","22085","FALSE","FALSE","America/Chicago"
-"71450","31.77816","-93.41056","Marthaville","LA","Louisiana","TRUE","","1226","7.4","22069","Natchitoches","{""22069"": ""72.24"", ""22085"": ""27.76""}","Natchitoches|Sabine","22069|22085","FALSE","FALSE","America/Chicago"
-"71452","31.57872","-92.9418","Melrose","LA","Louisiana","TRUE","","172","5.9","22069","Natchitoches","{""22069"": ""100""}","Natchitoches","22069","FALSE","FALSE","America/Chicago"
-"71454","31.69265","-92.86119","Montgomery","LA","Louisiana","TRUE","","1846","6.7","22043","Grant","{""22043"": ""88.13"", ""22127"": ""11.87""}","Grant|Winn","22043|22127","FALSE","FALSE","America/Chicago"
-"71455","31.40504","-92.9794","Mora","LA","Louisiana","TRUE","","162","1.0","22079","Rapides","{""22079"": ""59.03"", ""22069"": ""40.97""}","Rapides|Natchitoches","22079|22069","FALSE","FALSE","America/Chicago"
-"71456","31.63656","-92.9767","Natchez","LA","Louisiana","TRUE","","1449","15.1","22069","Natchitoches","{""22069"": ""100""}","Natchitoches","22069","FALSE","FALSE","America/Chicago"
-"71457","31.74636","-93.09298","Natchitoches","LA","Louisiana","TRUE","","26821","39.2","22069","Natchitoches","{""22069"": ""98.62"", ""22127"": ""1.38""}","Natchitoches|Winn","22069|22127","FALSE","FALSE","America/Chicago"
-"71459","31.07666","-93.21793","Fort Polk","LA","Louisiana","TRUE","","11311","470.0","22115","Vernon","{""22115"": ""100""}","Vernon","22115","FALSE","FALSE","America/Chicago"
-"71461","31.11839","-93.29026","New Llano","LA","Louisiana","TRUE","","2268","469.3","22115","Vernon","{""22115"": ""100""}","Vernon","22115","FALSE","FALSE","America/Chicago"
-"71462","31.66308","-93.71395","Noble","LA","Louisiana","TRUE","","1833","17.2","22085","Sabine","{""22085"": ""100""}","Sabine","22085","FALSE","FALSE","America/Chicago"
-"71463","30.80779","-92.61253","Oakdale","LA","Louisiana","TRUE","","10461","17.0","22003","Allen","{""22003"": ""91.83"", ""22039"": ""4.08"", ""22079"": ""4.08""}","Allen|Evangeline|Rapides","22003|22039|22079","FALSE","FALSE","America/Chicago"
-"71465","31.86776","-92.1882","Olla","LA","Louisiana","TRUE","","3460","5.9","22059","LaSalle","{""22059"": ""94.71"", ""22021"": ""3.06"", ""22127"": ""1.24"", ""22025"": ""0.99""}","LaSalle|Caldwell|Winn|Catahoula","22059|22021|22127|22025","FALSE","FALSE","America/Chicago"
-"71466","31.21518","-92.74864","Otis","LA","Louisiana","TRUE","","785","35.6","22079","Rapides","{""22079"": ""100""}","Rapides","22079","FALSE","FALSE","America/Chicago"
-"71467","31.5579","-92.39543","Pollock","LA","Louisiana","TRUE","","7670","16.5","22043","Grant","{""22043"": ""99.75"", ""22079"": ""0.25""}","Grant|Rapides","22043|22079","FALSE","FALSE","America/Chicago"
-"71468","31.48116","-93.14764","Provencal","LA","Louisiana","TRUE","","743","1.6","22069","Natchitoches","{""22069"": ""100""}","Natchitoches","22069","FALSE","FALSE","America/Chicago"
-"71469","31.69029","-93.26634","Robeline","LA","Louisiana","TRUE","","2444","4.0","22069","Natchitoches","{""22069"": ""83.78"", ""22085"": ""16.22""}","Natchitoches|Sabine","22069|22085","FALSE","FALSE","America/Chicago"
-"71472","31.19834","-92.79372","Sieper","LA","Louisiana","TRUE","","320","6.3","22079","Rapides","{""22079"": ""100""}","Rapides","22079","FALSE","FALSE","America/Chicago"
-"71473","32.06641","-92.43378","Sikes","LA","Louisiana","TRUE","","403","1.2","22127","Winn","{""22127"": ""100""}","Winn","22127","FALSE","FALSE","America/Chicago"
-"71474","31.27408","-93.01389","Simpson","LA","Louisiana","TRUE","","512","8.7","22115","Vernon","{""22115"": ""100""}","Vernon","22115","FALSE","FALSE","America/Chicago"
-"71479","31.85466","-92.36356","Tullos","LA","Louisiana","TRUE","","954","3.9","22059","LaSalle","{""22059"": ""72.63"", ""22127"": ""27.37""}","LaSalle|Winn","22059|22127","FALSE","FALSE","America/Chicago"
-"71480","31.86298","-92.29177","Urania","LA","Louisiana","TRUE","","1314","99.7","22059","LaSalle","{""22059"": ""100""}","LaSalle","22059","FALSE","FALSE","America/Chicago"
-"71483","31.89381","-92.66129","Winnfield","LA","Louisiana","TRUE","","10217","10.7","22127","Winn","{""22127"": ""100""}","Winn","22127","FALSE","FALSE","America/Chicago"
-"71485","31.15498","-92.54526","Woodworth","LA","Louisiana","TRUE","","2430","15.0","22079","Rapides","{""22079"": ""100""}","Rapides","22079","FALSE","FALSE","America/Chicago"
-"71486","31.64932","-93.61818","Zwolle","LA","Louisiana","TRUE","","5304","20.2","22085","Sabine","{""22085"": ""100""}","Sabine","22085","FALSE","FALSE","America/Chicago"
-"71601","34.17716","-91.90318","Pine Bluff","AR","Arkansas","TRUE","","14258","50.2","05069","Jefferson","{""05069"": ""100""}","Jefferson","05069","FALSE","FALSE","America/Chicago"
-"71602","34.26709","-92.14304","White Hall","AR","Arkansas","TRUE","","15859","52.8","05069","Jefferson","{""05069"": ""98.64"", ""05053"": ""1.36""}","Jefferson|Grant","05069|05053","FALSE","FALSE","America/Chicago"
-"71603","34.12623","-92.08641","Pine Bluff","AR","Arkansas","TRUE","","31346","68.4","05069","Jefferson","{""05069"": ""98.9"", ""05079"": ""0.59"", ""05025"": ""0.26"", ""05053"": ""0.25""}","Jefferson|Lincoln|Cleveland|Grant","05069|05079|05025|05053","FALSE","FALSE","America/Chicago"
-"71630","33.62346","-91.20873","Arkansas City","AR","Arkansas","TRUE","","435","4.9","05041","Desha","{""05041"": ""100""}","Desha","05041","FALSE","FALSE","America/Chicago"
-"71631","33.58006","-92.26493","Banks","AR","Arkansas","TRUE","","502","1.6","05011","Bradley","{""05011"": ""100""}","Bradley","05011","FALSE","FALSE","America/Chicago"
-"71635","33.13015","-92.00055","Crossett","AR","Arkansas","TRUE","","11423","20.4","05003","Ashley","{""05003"": ""100""}","Ashley","05003","FALSE","FALSE","America/Chicago"
-"71638","33.51931","-91.48055","Dermott","AR","Arkansas","TRUE","","3863","6.4","05017","Chicot","{""05017"": ""82.92"", ""05043"": ""14.68"", ""05041"": ""2.4""}","Chicot|Drew|Desha","05017|05043|05041","FALSE","FALSE","America/Chicago"
-"71639","33.89822","-91.52662","Dumas","AR","Arkansas","TRUE","","5614","11.9","05041","Desha","{""05041"": ""89.85"", ""05079"": ""10.15""}","Desha|Lincoln","05041|05079","FALSE","FALSE","America/Chicago"
-"71640","33.10564","-91.28358","Eudora","AR","Arkansas","TRUE","","3081","6.1","05017","Chicot","{""05017"": ""100""}","Chicot","05017","FALSE","FALSE","America/Chicago"
-"71642","33.3876","-91.89074","Fountain Hill","AR","Arkansas","TRUE","","889","6.5","05003","Ashley","{""05003"": ""81.64"", ""05043"": ""18.36""}","Ashley|Drew","05003|05043","FALSE","FALSE","America/Chicago"
-"71643","34.01741","-91.57343","Gould","AR","Arkansas","TRUE","","917","3.3","05079","Lincoln","{""05079"": ""100""}","Lincoln","05079","FALSE","FALSE","America/Chicago"
-"71644","34.09406","-91.70391","Grady","AR","Arkansas","TRUE","","5503","28.4","05079","Lincoln","{""05079"": ""96.41"", ""05069"": ""3.59""}","Lincoln|Jefferson","05079|05069","FALSE","FALSE","America/Chicago"
-"71646","33.23115","-91.78382","Hamburg","AR","Arkansas","TRUE","","6172","6.1","05003","Ashley","{""05003"": ""98.53"", ""05043"": ""1.47""}","Ashley|Drew","05003|05043","FALSE","FALSE","America/Chicago"
-"71647","33.36482","-92.11938","Hermitage","AR","Arkansas","TRUE","","2099","3.2","05011","Bradley","{""05011"": ""100""}","Bradley","05011","FALSE","FALSE","America/Chicago"
-"71651","33.31764","-92.2823","Jersey","AR","Arkansas","TRUE","","80","0.4","05011","Bradley","{""05011"": ""100""}","Bradley","05011","FALSE","FALSE","America/Chicago"
-"71652","33.9307","-92.33571","Kingsland","AR","Arkansas","TRUE","","1018","2.3","05025","Cleveland","{""05025"": ""100""}","Cleveland","05025","FALSE","FALSE","America/Chicago"
-"71653","33.34113","-91.25753","Lake Village","AR","Arkansas","TRUE","","4138","5.1","05017","Chicot","{""05017"": ""100""}","Chicot","05017","FALSE","FALSE","America/Chicago"
-"71654","33.62067","-91.36945","McGehee","AR","Arkansas","TRUE","","4364","23.9","05041","Desha","{""05041"": ""100""}","Desha","05041","FALSE","FALSE","America/Chicago"
-"71655","33.63089","-91.7465","Monticello","AR","Arkansas","TRUE","","15094","16.1","05043","Drew","{""05043"": ""99.91"", ""05079"": ""0.09""}","Drew|Lincoln","05043|05079","FALSE","FALSE","America/Chicago"
-"71658","33.31536","-91.57218","Montrose","AR","Arkansas","TRUE","","732","2.5","05003","Ashley","{""05003"": ""100""}","Ashley","05003","FALSE","FALSE","America/Chicago"
-"71659","34.14357","-91.77587","Moscow","AR","Arkansas","TRUE","","79","13.7","05069","Jefferson","{""05069"": ""100""}","Jefferson","05069","FALSE","FALSE","America/Chicago"
-"71660","33.76075","-92.18747","New Edinburg","AR","Arkansas","TRUE","","764","2.5","05025","Cleveland","{""05025"": ""99.48"", ""05011"": ""0.52""}","Cleveland|Bradley","05025|05011","FALSE","FALSE","America/Chicago"
-"71661","33.14893","-91.54702","Parkdale","AR","Arkansas","TRUE","","368","1.5","05003","Ashley","{""05003"": ""96"", ""05017"": ""4""}","Ashley|Chicot","05003|05017","FALSE","FALSE","America/Chicago"
-"71662","33.84204","-91.50226","Pickens","AR","Arkansas","TRUE","","199","7.4","05041","Desha","{""05041"": ""100""}","Desha","05041","FALSE","FALSE","America/Chicago"
-"71663","33.22983","-91.43136","Portland","AR","Arkansas","TRUE","","586","2.9","05003","Ashley","{""05003"": ""66.26"", ""05017"": ""33.74""}","Ashley|Chicot","05003|05017","FALSE","FALSE","America/Chicago"
-"71665","33.93378","-92.11527","Rison","AR","Arkansas","TRUE","","5823","8.0","05025","Cleveland","{""05025"": ""100""}","Cleveland","05025","FALSE","FALSE","America/Chicago"
-"71666","33.76107","-91.2822","Rohwer","AR","Arkansas","TRUE","","44","6.7","05041","Desha","{""05041"": ""100""}","Desha","05041","FALSE","FALSE","America/Chicago"
-"71667","33.92544","-91.83073","Star City","AR","Arkansas","TRUE","","6617","8.1","05079","Lincoln","{""05079"": ""97.15"", ""05025"": ""2.85""}","Lincoln|Cleveland","05079|05025","FALSE","FALSE","America/Chicago"
-"71670","33.73689","-91.40689","Tillar","AR","Arkansas","TRUE","","1213","2.3","05041","Desha","{""05041"": ""68.07"", ""05043"": ""31.93""}","Desha|Drew","05041|05043","FALSE","FALSE","America/Chicago"
-"71671","33.60432","-92.10147","Warren","AR","Arkansas","TRUE","","8485","17.8","05011","Bradley","{""05011"": ""97.67"", ""05025"": ""2.22"", ""05043"": ""0.12""}","Bradley|Cleveland|Drew","05011|05025|05043","FALSE","FALSE","America/Chicago"
-"71674","33.84142","-91.19037","Watson","AR","Arkansas","TRUE","","585","0.9","05041","Desha","{""05041"": ""100""}","Desha","05041","FALSE","FALSE","America/Chicago"
-"71675","33.58849","-91.93911","Wilmar","AR","Arkansas","TRUE","","1940","4.4","05043","Drew","{""05043"": ""94.19"", ""05011"": ""5.81""}","Drew|Bradley","05043|05011","FALSE","FALSE","America/Chicago"
-"71676","33.05411","-91.56857","Wilmot","AR","Arkansas","TRUE","","546","2.0","05003","Ashley","{""05003"": ""98.54"", ""05017"": ""1.46""}","Ashley|Chicot","05003|05017","FALSE","FALSE","America/Chicago"
-"71677","33.76356","-91.48069","Winchester","AR","Arkansas","TRUE","","196","9.7","05043","Drew","{""05043"": ""100""}","Drew","05043","FALSE","FALSE","America/Chicago"
-"71701","33.58632","-92.81988","Camden","AR","Arkansas","TRUE","","18836","25.4","05103","Ouachita","{""05103"": ""97.54"", ""05013"": ""2.46""}","Ouachita|Calhoun","05103|05013","FALSE","FALSE","America/Chicago"
-"71711","33.63752","-92.72032","Camden","AR","Arkansas","TRUE","","88","14.6","05013","Calhoun","{""05013"": ""100""}","Calhoun","05013","FALSE","FALSE","America/Chicago"
-"71720","33.78101","-92.64823","Bearden","AR","Arkansas","TRUE","","1987","5.1","05103","Ouachita","{""05103"": ""90.91"", ""05039"": ""6.08"", ""05013"": ""3""}","Ouachita|Dallas|Calhoun","05103|05039|05013","FALSE","FALSE","America/Chicago"
-"71722","33.71539","-93.1537","Bluff City","AR","Arkansas","TRUE","","70","1.5","05099","Nevada","{""05099"": ""100""}","Nevada","05099","FALSE","FALSE","America/Chicago"
-"71724","33.32735","-92.53609","Calion","AR","Arkansas","TRUE","","453","147.7","05139","Union","{""05139"": ""100""}","Union","05139","FALSE","FALSE","America/Chicago"
-"71725","34.04513","-92.55299","Carthage","AR","Arkansas","TRUE","","393","1.1","05039","Dallas","{""05039"": ""100""}","Dallas","05039","FALSE","FALSE","America/Chicago"
-"71726","33.67894","-92.99646","Chidester","AR","Arkansas","TRUE","","1237","2.5","05103","Ouachita","{""05103"": ""100""}","Ouachita","05103","FALSE","FALSE","America/Chicago"
-"71730","33.20063","-92.62908","El Dorado","AR","Arkansas","TRUE","","30079","25.4","05139","Union","{""05139"": ""100""}","Union","05139","FALSE","FALSE","America/Chicago"
-"71740","33.08112","-93.16366","Emerson","AR","Arkansas","TRUE","","1632","3.4","05027","Columbia","{""05027"": ""100""}","Columbia","05027","FALSE","FALSE","America/Chicago"
-"71742","33.84884","-92.45282","Fordyce","AR","Arkansas","TRUE","","5437","11.5","05039","Dallas","{""05039"": ""91.14"", ""05013"": ""8.86""}","Dallas|Calhoun","05039|05013","FALSE","FALSE","America/Chicago"
-"71743","33.88688","-93.11776","Gurdon","AR","Arkansas","TRUE","","3855","7.2","05019","Clark","{""05019"": ""100""}","Clark","05019","FALSE","FALSE","America/Chicago"
-"71744","33.49277","-92.47808","Hampton","AR","Arkansas","TRUE","","2839","2.7","05013","Calhoun","{""05013"": ""100""}","Calhoun","05013","FALSE","FALSE","America/Chicago"
-"71745","33.50072","-92.39604","Harrell","AR","Arkansas","TRUE","","393","100.9","05013","Calhoun","{""05013"": ""100""}","Calhoun","05013","FALSE","FALSE","America/Chicago"
-"71747","33.05951","-92.21518","Huttig","AR","Arkansas","TRUE","","1174","5.7","05139","Union","{""05139"": ""100""}","Union","05139","FALSE","FALSE","America/Chicago"
-"71749","33.07169","-92.82023","Junction City","AR","Arkansas","TRUE","","2882","6.7","05139","Union","{""05139"": ""81.5"", ""22111"": ""13.03"", ""22027"": ""5.47""}","Union|Union|Claiborne","05139|22111|22027","FALSE","FALSE","America/Chicago"
-"71751","33.40703","-92.76693","Louann","AR","Arkansas","TRUE","","860","4.2","05103","Ouachita","{""05103"": ""100""}","Ouachita","05103","FALSE","FALSE","America/Chicago"
-"71752","33.40086","-93.19552","McNeil","AR","Arkansas","TRUE","","850","8.6","05027","Columbia","{""05027"": ""100""}","Columbia","05027","FALSE","FALSE","America/Chicago"
-"71753","33.23018","-93.18403","Magnolia","AR","Arkansas","TRUE","","16660","20.2","05027","Columbia","{""05027"": ""98.9"", ""05139"": ""1.1""}","Columbia|Union","05027|05139","FALSE","FALSE","America/Chicago"
-"71758","33.3076","-92.91426","Mount Holly","AR","Arkansas","TRUE","","287","1.6","05139","Union","{""05139"": ""100""}","Union","05139","FALSE","FALSE","America/Chicago"
-"71759","33.32098","-92.64412","Norphlet","AR","Arkansas","TRUE","","655","40.0","05139","Union","{""05139"": ""100""}","Union","05139","FALSE","FALSE","America/Chicago"
-"71762","33.33795","-92.77119","Smackover","AR","Arkansas","TRUE","","2305","15.6","05139","Union","{""05139"": ""95.6"", ""05103"": ""4.4""}","Union|Ouachita","05139|05103","FALSE","FALSE","America/Chicago"
-"71763","33.91824","-92.79802","Sparkman","AR","Arkansas","TRUE","","1694","2.9","05039","Dallas","{""05039"": ""97.72"", ""05103"": ""2.28""}","Dallas|Ouachita","05039|05103","FALSE","FALSE","America/Chicago"
-"71764","33.43172","-93.0469","Stephens","AR","Arkansas","TRUE","","1802","3.8","05103","Ouachita","{""05103"": ""81.91"", ""05027"": ""16.33"", ""05099"": ""1.76""}","Ouachita|Columbia|Nevada","05103|05027|05099","FALSE","FALSE","America/Chicago"
-"71765","33.13195","-92.33118","Strong","AR","Arkansas","TRUE","","1858","3.6","05139","Union","{""05139"": ""100""}","Union","05139","FALSE","FALSE","America/Chicago"
-"71766","33.72222","-92.50976","Thornton","AR","Arkansas","TRUE","","719","3.8","05013","Calhoun","{""05013"": ""100""}","Calhoun","05013","FALSE","FALSE","America/Chicago"
-"71770","33.38938","-93.31801","Waldo","AR","Arkansas","TRUE","","3441","9.0","05027","Columbia","{""05027"": ""91.26"", ""05099"": ""8.74""}","Columbia|Nevada","05027|05099","FALSE","FALSE","America/Chicago"
-"71772","33.83274","-93.12606","Whelen Springs","AR","Arkansas","TRUE","","22","74.2","05019","Clark","{""05019"": ""100""}","Clark","05019","FALSE","FALSE","America/Chicago"
-"71801","33.64418","-93.59444","Hope","AR","Arkansas","TRUE","","16894","21.6","05057","Hempstead","{""05057"": ""100""}","Hempstead","05057","FALSE","FALSE","America/Chicago"
-"71820","33.79444","-94.26818","Alleene","AR","Arkansas","TRUE","","26","0.5","05081","Little River","{""05081"": ""100""}","Little River","05081","FALSE","FALSE","America/Chicago"
-"71822","33.66116","-94.1564","Ashdown","AR","Arkansas","TRUE","","8407","12.8","05081","Little River","{""05081"": ""100""}","Little River","05081","FALSE","FALSE","America/Chicago"
-"71823","33.82336","-94.1255","Ben Lomond","AR","Arkansas","TRUE","","36","1.5","05133","Sevier","{""05133"": ""100""}","Sevier","05133","FALSE","FALSE","America/Chicago"
-"71825","33.87815","-93.55981","Blevins","AR","Arkansas","TRUE","","528","8.3","05057","Hempstead","{""05057"": ""100""}","Hempstead","05057","FALSE","FALSE","America/Chicago"
-"71826","33.09207","-93.72343","Bradley","AR","Arkansas","TRUE","","1134","3.4","05073","Lafayette","{""05073"": ""100""}","Lafayette","05073","FALSE","FALSE","America/Chicago"
-"71827","33.42497","-93.41143","Buckner","AR","Arkansas","TRUE","","883","5.9","05073","Lafayette","{""05073"": ""79.31"", ""05099"": ""20.69""}","Lafayette|Nevada","05073|05099","FALSE","FALSE","America/Chicago"
-"71832","34.03782","-94.35087","De Queen","AR","Arkansas","TRUE","","11362","24.8","05133","Sevier","{""05133"": ""100""}","Sevier","05133","FALSE","FALSE","America/Chicago"
-"71833","34.14469","-94.04101","Dierks","AR","Arkansas","TRUE","","2001","4.9","05061","Howard","{""05061"": ""99.47"", ""05133"": ""0.53""}","Howard|Sevier","05061|05133","FALSE","FALSE","America/Chicago"
-"71834","33.11619","-93.95382","Doddridge","AR","Arkansas","TRUE","","889","2.3","05091","Miller","{""05091"": ""100""}","Miller","05091","FALSE","FALSE","America/Chicago"
-"71835","33.6647","-93.44504","Emmet","AR","Arkansas","TRUE","","1035","4.9","05099","Nevada","{""05099"": ""81.41"", ""05057"": ""18.59""}","Nevada|Hempstead","05099|05057","FALSE","FALSE","America/Chicago"
-"71836","33.71554","-94.39701","Foreman","AR","Arkansas","TRUE","","2930","6.7","05081","Little River","{""05081"": ""100""}","Little River","05081","FALSE","FALSE","America/Chicago"
-"71837","33.25782","-93.85445","Fouke","AR","Arkansas","TRUE","","5790","14.0","05091","Miller","{""05091"": ""100""}","Miller","05091","FALSE","FALSE","America/Chicago"
-"71838","33.65149","-93.80627","Fulton","AR","Arkansas","TRUE","","887","2.7","05057","Hempstead","{""05057"": ""100""}","Hempstead","05057","FALSE","FALSE","America/Chicago"
-"71839","33.31316","-93.73563","Garland City","AR","Arkansas","TRUE","","355","3.5","05091","Miller","{""05091"": ""100""}","Miller","05091","FALSE","FALSE","America/Chicago"
-"71841","34.16038","-94.33923","Gillham","AR","Arkansas","TRUE","","1031","5.8","05133","Sevier","{""05133"": ""89.81"", ""05113"": ""10.19""}","Sevier|Polk","05133|05113","FALSE","FALSE","America/Chicago"
-"71842","33.90175","-94.28705","Horatio","AR","Arkansas","TRUE","","2227","11.1","05133","Sevier","{""05133"": ""100""}","Sevier","05133","FALSE","FALSE","America/Chicago"
-"71845","33.32436","-93.62769","Lewisville","AR","Arkansas","TRUE","","1961","3.6","05073","Lafayette","{""05073"": ""100""}","Lafayette","05073","FALSE","FALSE","America/Chicago"
-"71846","33.94123","-94.12412","Lockesburg","AR","Arkansas","TRUE","","2550","4.6","05133","Sevier","{""05133"": ""99.89"", ""05081"": ""0.11""}","Sevier|Little River","05133|05081","FALSE","FALSE","America/Chicago"
-"71847","33.92682","-93.63492","McCaskill","AR","Arkansas","TRUE","","605","4.1","05057","Hempstead","{""05057"": ""100""}","Hempstead","05057","FALSE","FALSE","America/Chicago"
-"71851","33.85655","-93.94239","Mineral Springs","AR","Arkansas","TRUE","","1966","9.0","05061","Howard","{""05061"": ""100""}","Howard","05061","FALSE","FALSE","America/Chicago"
-"71852","33.99921","-93.85535","Nashville","AR","Arkansas","TRUE","","10069","14.3","05061","Howard","{""05061"": ""82.56"", ""05057"": ""10.72"", ""05109"": ""6.72""}","Howard|Hempstead|Pike","05061|05057|05109","FALSE","FALSE","America/Chicago"
-"71853","33.59098","-93.94653","Ogden","AR","Arkansas","TRUE","","233","2.8","05081","Little River","{""05081"": ""100""}","Little River","05081","FALSE","FALSE","America/Chicago"
-"71854","33.44698","-93.9015","Texarkana","AR","Arkansas","TRUE","","36538","50.7","05091","Miller","{""05091"": ""100""}","Miller","05091","FALSE","FALSE","America/Chicago"
-"71855","33.86189","-93.74613","Ozan","AR","Arkansas","TRUE","","537","3.8","05057","Hempstead","{""05057"": ""100""}","Hempstead","05057","FALSE","FALSE","America/Chicago"
-"71857","33.80574","-93.34535","Prescott","AR","Arkansas","TRUE","","4765","6.8","05099","Nevada","{""05099"": ""94.77"", ""05057"": ""5.23""}","Nevada|Hempstead","05099|05057","FALSE","FALSE","America/Chicago"
-"71858","33.58905","-93.26618","Rosston","AR","Arkansas","TRUE","","2472","4.8","05099","Nevada","{""05099"": ""100""}","Nevada","05099","FALSE","FALSE","America/Chicago"
-"71859","33.74897","-93.90821","Saratoga","AR","Arkansas","TRUE","","510","9.1","05057","Hempstead","{""05057"": ""58.7"", ""05061"": ""41.3""}","Hempstead|Howard","05057|05061","FALSE","FALSE","America/Chicago"
-"71860","33.30174","-93.48877","Stamps","AR","Arkansas","TRUE","","2318","8.2","05073","Lafayette","{""05073"": ""92.1"", ""05027"": ""7.22"", ""05099"": ""0.68""}","Lafayette|Columbia|Nevada","05073|05027|05099","FALSE","FALSE","America/Chicago"
-"71861","33.10317","-93.49284","Taylor","AR","Arkansas","TRUE","","1900","5.2","05027","Columbia","{""05027"": ""61.47"", ""05073"": ""38.53""}","Columbia|Lafayette","05027|05073","FALSE","FALSE","America/Chicago"
-"71862","33.76964","-93.7342","Washington","AR","Arkansas","TRUE","","713","4.2","05057","Hempstead","{""05057"": ""100""}","Hempstead","05057","FALSE","FALSE","America/Chicago"
-"71865","33.74113","-94.15002","Wilton","AR","Arkansas","TRUE","","168","107.5","05081","Little River","{""05081"": ""100""}","Little River","05081","FALSE","FALSE","America/Chicago"
-"71866","33.88046","-94.40387","Winthrop","AR","Arkansas","TRUE","","583","5.1","05081","Little River","{""05081"": ""100""}","Little River","05081","FALSE","FALSE","America/Chicago"
-"71901","34.52698","-92.97157","Hot Springs National Park","AR","Arkansas","TRUE","","30181","112.8","05051","Garland","{""05051"": ""99.8"", ""05059"": ""0.2""}","Garland|Hot Spring","05051|05059","FALSE","FALSE","America/Chicago"
-"71909","34.64093","-92.9994","Hot Springs Village","AR","Arkansas","TRUE","","15872","75.8","05051","Garland","{""05051"": ""65.1"", ""05125"": ""34.9""}","Garland|Saline","05051|05125","FALSE","FALSE","America/Chicago"
-"71913","34.44813","-93.09525","Hot Springs National Park","AR","Arkansas","TRUE","","47111","143.6","05051","Garland","{""05051"": ""98.34"", ""05059"": ""1.66""}","Garland|Hot Spring","05051|05059","FALSE","FALSE","America/Chicago"
-"71921","34.24925","-93.39338","Amity","AR","Arkansas","TRUE","","3551","6.9","05019","Clark","{""05019"": ""54.68"", ""05109"": ""36.45"", ""05059"": ""8.87""}","Clark|Pike|Hot Spring","05019|05109|05059","FALSE","FALSE","America/Chicago"
-"71922","34.02443","-93.41943","Antoine","AR","Arkansas","TRUE","","153","28.2","05109","Pike","{""05109"": ""100""}","Pike","05109","FALSE","FALSE","America/Chicago"
-"71923","34.08201","-93.04608","Arkadelphia","AR","Arkansas","TRUE","","15099","14.7","05019","Clark","{""05019"": ""96.28"", ""05059"": ""3.21"", ""05039"": ""0.51""}","Clark|Hot Spring|Dallas","05019|05059|05039","FALSE","FALSE","America/Chicago"
-"71929","34.30584","-93.16262","Bismarck","AR","Arkansas","TRUE","","4341","17.6","05059","Hot Spring","{""05059"": ""100""}","Hot Spring","05059","FALSE","FALSE","America/Chicago"
-"71933","34.41033","-93.42233","Bonnerdale","AR","Arkansas","TRUE","","1447","5.9","05051","Garland","{""05051"": ""45.17"", ""05059"": ""32.05"", ""05097"": ""22.77""}","Garland|Hot Spring|Montgomery","05051|05059|05097","FALSE","FALSE","America/Chicago"
-"71935","34.39137","-93.76395","Caddo Gap","AR","Arkansas","TRUE","","499","1.6","05097","Montgomery","{""05097"": ""100""}","Montgomery","05097","FALSE","FALSE","America/Chicago"
-"71937","34.39982","-94.38939","Cove","AR","Arkansas","TRUE","","2041","11.3","05113","Polk","{""05113"": ""100""}","Polk","05113","FALSE","FALSE","America/Chicago"
-"71940","34.02053","-93.50968","Delight","AR","Arkansas","TRUE","","1734","6.2","05109","Pike","{""05109"": ""100""}","Pike","05109","FALSE","FALSE","America/Chicago"
-"71941","34.24831","-92.95188","Donaldson","AR","Arkansas","TRUE","","2070","10.7","05059","Hot Spring","{""05059"": ""100""}","Hot Spring","05059","FALSE","FALSE","America/Chicago"
-"71943","34.33941","-93.59453","Glenwood","AR","Arkansas","TRUE","","4239","14.6","05109","Pike","{""05109"": ""69.96"", ""05097"": ""27.15"", ""05059"": ""2.88""}","Pike|Montgomery|Hot Spring","05109|05097|05059","FALSE","FALSE","America/Chicago"
-"71944","34.24348","-94.33411","Grannis","AR","Arkansas","TRUE","","787","7.2","05113","Polk","{""05113"": ""100""}","Polk","05113","FALSE","FALSE","America/Chicago"
-"71945","34.48402","-94.33953","Hatfield","AR","Arkansas","TRUE","","1200","6.5","05113","Polk","{""05113"": ""100""}","Polk","05113","FALSE","FALSE","America/Chicago"
-"71949","34.69497","-93.21877","Jessieville","AR","Arkansas","TRUE","","1676","3.1","05051","Garland","{""05051"": ""100""}","Garland","05051","FALSE","FALSE","America/Chicago"
-"71950","34.24822","-93.71021","Kirby","AR","Arkansas","TRUE","","771","8.1","05109","Pike","{""05109"": ""100""}","Pike","05109","FALSE","FALSE","America/Chicago"
-"71952","34.30388","-93.85355","Langley","AR","Arkansas","TRUE","","21","0.3","05109","Pike","{""05109"": ""100""}","Pike","05109","FALSE","FALSE","America/Chicago"
-"71953","34.61426","-94.19491","Mena","AR","Arkansas","TRUE","","13996","8.5","05113","Polk","{""05113"": ""98.49"", ""05127"": ""1.51""}","Polk|Scott","05113|05127","FALSE","FALSE","America/Chicago"
-"71956","34.59761","-93.15388","Mountain Pine","AR","Arkansas","TRUE","","1525","25.4","05051","Garland","{""05051"": ""100""}","Garland","05051","FALSE","FALSE","America/Chicago"
-"71957","34.56373","-93.58006","Mount Ida","AR","Arkansas","TRUE","","2826","7.8","05097","Montgomery","{""05097"": ""100""}","Montgomery","05097","FALSE","FALSE","America/Chicago"
-"71958","34.11258","-93.66607","Murfreesboro","AR","Arkansas","TRUE","","2365","8.5","05109","Pike","{""05109"": ""100""}","Pike","05109","FALSE","FALSE","America/Chicago"
-"71959","34.24732","-93.93295","Newhope","AR","Arkansas","TRUE","","771","4.9","05109","Pike","{""05109"": ""64.32"", ""05061"": ""35.68""}","Pike|Howard","05109|05061","FALSE","FALSE","America/Chicago"
-"71960","34.47914","-93.70851","Norman","AR","Arkansas","TRUE","","1679","4.3","05097","Montgomery","{""05097"": ""100""}","Montgomery","05097","FALSE","FALSE","America/Chicago"
-"71961","34.59807","-93.84058","Oden","AR","Arkansas","TRUE","","974","4.3","05097","Montgomery","{""05097"": ""100""}","Montgomery","05097","FALSE","FALSE","America/Chicago"
-"71962","34.03345","-93.32632","Okolona","AR","Arkansas","TRUE","","666","1.6","05019","Clark","{""05019"": ""100""}","Clark","05019","FALSE","FALSE","America/Chicago"
-"71964","34.42296","-93.24347","Pearcy","AR","Arkansas","TRUE","","4098","46.0","05051","Garland","{""05051"": ""93"", ""05059"": ""7""}","Garland|Hot Spring","05051|05059","FALSE","FALSE","America/Chicago"
-"71965","34.66556","-93.74265","Pencil Bluff","AR","Arkansas","TRUE","","321","5.7","05097","Montgomery","{""05097"": ""100""}","Montgomery","05097","FALSE","FALSE","America/Chicago"
-"71968","34.52731","-93.29735","Royal","AR","Arkansas","TRUE","","4256","16.7","05051","Garland","{""05051"": ""100""}","Garland","05051","FALSE","FALSE","America/Chicago"
-"71969","34.66611","-93.63224","Sims","AR","Arkansas","TRUE","","352","4.1","05097","Montgomery","{""05097"": ""100""}","Montgomery","05097","FALSE","FALSE","America/Chicago"
-"71970","34.66455","-93.49157","Story","AR","Arkansas","TRUE","","809","4.0","05097","Montgomery","{""05097"": ""100""}","Montgomery","05097","FALSE","FALSE","America/Chicago"
-"71971","34.30388","-94.03726","Umpire","AR","Arkansas","TRUE","","608","3.5","05061","Howard","{""05061"": ""81.09"", ""05109"": ""18.91""}","Howard|Pike","05061|05109","FALSE","FALSE","America/Chicago"
-"71972","34.3867","-94.27142","Vandervoort","AR","Arkansas","TRUE","","355","4.7","05113","Polk","{""05113"": ""100""}","Polk","05113","FALSE","FALSE","America/Chicago"
-"71973","34.29961","-94.31719","Wickes","AR","Arkansas","TRUE","","1760","8.6","05113","Polk","{""05113"": ""95.93"", ""05061"": ""4.07""}","Polk|Howard","05113|05061","FALSE","FALSE","America/Chicago"
-"71998","34.12581","-93.05379","Arkadelphia","AR","Arkansas","TRUE","","586","6261.7","05019","Clark","{""05019"": ""100""}","Clark","05019","FALSE","FALSE","America/Chicago"
-"71999","34.12746","-93.05906","Arkadelphia","AR","Arkansas","TRUE","","657","4112.0","05019","Clark","{""05019"": ""100""}","Clark","05019","FALSE","FALSE","America/Chicago"
-"72001","35.06646","-92.87931","Adona","AR","Arkansas","TRUE","","777","11.8","05105","Perry","{""05105"": ""78.09"", ""05029"": ""21.91""}","Perry|Conway","05105|05029","FALSE","FALSE","America/Chicago"
-"72002","34.66298","-92.52896","Alexander","AR","Arkansas","TRUE","","18314","123.0","05125","Saline","{""05125"": ""94.23"", ""05119"": ""5.77""}","Saline|Pulaski","05125|05119","FALSE","FALSE","America/Chicago"
-"72003","34.38592","-91.39779","Almyra","AR","Arkansas","TRUE","","821","3.2","05001","Arkansas","{""05001"": ""100""}","Arkansas","05001","FALSE","FALSE","America/Chicago"
-"72004","34.28206","-91.77952","Altheimer","AR","Arkansas","TRUE","","816","2.0","05069","Jefferson","{""05069"": ""100""}","Jefferson","05069","FALSE","FALSE","America/Chicago"
-"72005","35.54","-91.07153","Amagon","AR","Arkansas","TRUE","","100","1.9","05067","Jackson","{""05067"": ""100""}","Jackson","05067","FALSE","FALSE","America/Chicago"
-"72006","35.24538","-91.35119","Augusta","AR","Arkansas","TRUE","","2442","4.9","05147","Woodruff","{""05147"": ""100""}","Woodruff","05147","FALSE","FALSE","America/Chicago"
-"72007","35.00244","-91.98189","Austin","AR","Arkansas","TRUE","","8563","75.5","05085","Lonoke","{""05085"": ""100""}","Lonoke","05085","FALSE","FALSE","America/Chicago"
-"72010","35.32021","-91.53608","Bald Knob","AR","Arkansas","TRUE","","6037","17.2","05145","White","{""05145"": ""100""}","White","05145","FALSE","FALSE","America/Chicago"
-"72011","34.51179","-92.47154","Bauxite","AR","Arkansas","TRUE","","4391","30.1","05125","Saline","{""05125"": ""100""}","Saline","05125","FALSE","FALSE","America/Chicago"
-"72012","35.09825","-91.91742","Beebe","AR","Arkansas","TRUE","","13444","56.9","05145","White","{""05145"": ""100""}","White","05145","FALSE","FALSE","America/Chicago"
-"72013","35.45671","-92.36836","Bee Branch","AR","Arkansas","TRUE","","2229","8.8","05141","Van Buren","{""05141"": ""94.86"", ""05029"": ""5.14""}","Van Buren|Conway","05141|05029","FALSE","FALSE","America/Chicago"
-"72014","35.43264","-91.11132","Beedeville","AR","Arkansas","TRUE","","58","35.6","05067","Jackson","{""05067"": ""100""}","Jackson","05067","FALSE","FALSE","America/Chicago"
-"72015","34.49333","-92.58959","Benton","AR","Arkansas","TRUE","","29671","139.9","05125","Saline","{""05125"": ""98.02"", ""05053"": ""1.98""}","Saline|Grant","05125|05053","FALSE","FALSE","America/Chicago"
-"72016","34.9708","-92.63161","Bigelow","AR","Arkansas","TRUE","","3230","15.3","05105","Perry","{""05105"": ""87.36"", ""05119"": ""12.64""}","Perry|Pulaski","05105|05119","FALSE","FALSE","America/Chicago"
-"72017","34.89727","-91.41029","Biscoe","AR","Arkansas","TRUE","","509","3.9","05117","Prairie","{""05117"": ""100""}","Prairie","05117","FALSE","FALSE","America/Chicago"
-"72019","34.63535","-92.68945","Benton","AR","Arkansas","TRUE","","26976","63.3","05125","Saline","{""05125"": ""100""}","Saline","05125","FALSE","FALSE","America/Chicago"
-"72020","35.47232","-91.47508","Bradford","AR","Arkansas","TRUE","","3605","8.1","05145","White","{""05145"": ""46.22"", ""05067"": ""43.68"", ""05063"": ""10.1""}","White|Jackson|Independence","05145|05067|05063","FALSE","FALSE","America/Chicago"
-"72021","34.84675","-91.22429","Brinkley","AR","Arkansas","TRUE","","3665","7.8","05095","Monroe","{""05095"": ""99.82"", ""05147"": ""0.18""}","Monroe|Woodruff","05095|05147","FALSE","FALSE","America/Chicago"
-"72022","34.6043","-92.48832","Bryant","AR","Arkansas","TRUE","","16810","427.0","05125","Saline","{""05125"": ""100""}","Saline","05125","FALSE","FALSE","America/Chicago"
-"72023","34.95755","-92.05649","Cabot","AR","Arkansas","TRUE","","36305","148.8","05085","Lonoke","{""05085"": ""89.88"", ""05119"": ""9.81"", ""05045"": ""0.31""}","Lonoke|Pulaski|Faulkner","05085|05119|05045","FALSE","FALSE","America/Chicago"
-"72024","34.76847","-91.75098","Carlisle","AR","Arkansas","TRUE","","3762","7.2","05085","Lonoke","{""05085"": ""93.83"", ""05117"": ""6.17""}","Lonoke|Prairie","05085|05117","FALSE","FALSE","America/Chicago"
-"72025","35.05527","-92.99815","Casa","AR","Arkansas","TRUE","","762","5.0","05105","Perry","{""05105"": ""80.4"", ""05029"": ""17"", ""05149"": ""2.6""}","Perry|Conway|Yell","05105|05029|05149","FALSE","FALSE","America/Chicago"
-"72026","34.50986","-91.30631","Casscoe","AR","Arkansas","TRUE","","288","3.8","05001","Arkansas","{""05001"": ""100""}","Arkansas","05001","FALSE","FALSE","America/Chicago"
-"72027","35.37104","-92.57652","Center Ridge","AR","Arkansas","TRUE","","1364","7.7","05029","Conway","{""05029"": ""100""}","Conway","05029","FALSE","FALSE","America/Chicago"
-"72029","34.70687","-91.23381","Clarendon","AR","Arkansas","TRUE","","1610","12.3","05095","Monroe","{""05095"": ""100""}","Monroe","05095","FALSE","FALSE","America/Chicago"
-"72030","35.43579","-92.68117","Cleveland","AR","Arkansas","TRUE","","552","4.1","05029","Conway","{""05029"": ""67.09"", ""05141"": ""32.91""}","Conway|Van Buren","05029|05141","FALSE","FALSE","America/Chicago"
-"72031","35.61345","-92.52567","Clinton","AR","Arkansas","TRUE","","7837","10.1","05141","Van Buren","{""05141"": ""96.25"", ""05137"": ""2.16"", ""05029"": ""1.59""}","Van Buren|Stone|Conway","05141|05137|05029","FALSE","FALSE","America/Chicago"
-"72032","35.07331","-92.36154","Conway","AR","Arkansas","TRUE","","34482","116.7","05045","Faulkner","{""05045"": ""100""}","Faulkner","05045","FALSE","FALSE","America/Chicago"
-"72034","35.05041","-92.48685","Conway","AR","Arkansas","TRUE","","49891","343.0","05045","Faulkner","{""05045"": ""100""}","Faulkner","05045","FALSE","FALSE","America/Chicago"
-"72035","35.07878","-92.45746","Conway","AR","Arkansas","TRUE","","1721","5308.4","05045","Faulkner","{""05045"": ""100""}","Faulkner","05045","FALSE","FALSE","America/Chicago"
-"72036","35.00634","-91.27137","Cotton Plant","AR","Arkansas","TRUE","","608","2.0","05147","Woodruff","{""05147"": ""94"", ""05095"": ""6""}","Woodruff|Monroe","05147|05095","FALSE","FALSE","America/Chicago"
-"72037","34.53896","-91.8737","Coy","AR","Arkansas","TRUE","","30","77.2","05085","Lonoke","{""05085"": ""100""}","Lonoke","05085","FALSE","FALSE","America/Chicago"
-"72038","34.44629","-91.24382","Crocketts Bluff","AR","Arkansas","TRUE","","49","0.9","05001","Arkansas","{""05001"": ""100""}","Arkansas","05001","FALSE","FALSE","America/Chicago"
-"72039","35.35547","-92.40266","Damascus","AR","Arkansas","TRUE","","2421","16.0","05045","Faulkner","{""05045"": ""57.39"", ""05141"": ""42.61""}","Faulkner|Van Buren","05045|05141","FALSE","FALSE","America/Chicago"
-"72040","34.97643","-91.54038","Des Arc","AR","Arkansas","TRUE","","2719","6.1","05117","Prairie","{""05117"": ""100""}","Prairie","05117","FALSE","FALSE","America/Chicago"
-"72041","34.72603","-91.47398","De Valls Bluff","AR","Arkansas","TRUE","","1308","5.2","05117","Prairie","{""05117"": ""100""}","Prairie","05117","FALSE","FALSE","America/Chicago"
-"72042","34.26769","-91.31609","De Witt","AR","Arkansas","TRUE","","5058","8.2","05001","Arkansas","{""05001"": ""100""}","Arkansas","05001","FALSE","FALSE","America/Chicago"
-"72044","35.6721","-92.17129","Edgemont","AR","Arkansas","TRUE","","837","5.2","05023","Cleburne","{""05023"": ""80.82"", ""05137"": ""19.18""}","Cleburne|Stone","05023|05137","FALSE","FALSE","America/Chicago"
-"72045","35.1289","-92.0484","El Paso","AR","Arkansas","TRUE","","1354","11.7","05145","White","{""05145"": ""100""}","White","05145","FALSE","FALSE","America/Chicago"
-"72046","34.55647","-91.95611","England","AR","Arkansas","TRUE","","4283","7.1","05085","Lonoke","{""05085"": ""85.82"", ""05119"": ""8.03"", ""05069"": ""6.15""}","Lonoke|Pulaski|Jefferson","05085|05119|05069","FALSE","FALSE","America/Chicago"
-"72047","35.22381","-92.21065","Enola","AR","Arkansas","TRUE","","744","9.1","05045","Faulkner","{""05045"": ""100""}","Faulkner","05045","FALSE","FALSE","America/Chicago"
-"72048","34.23175","-91.12362","Ethel","AR","Arkansas","TRUE","","97","0.4","05001","Arkansas","{""05001"": ""100""}","Arkansas","05001","FALSE","FALSE","America/Chicago"
-"72051","35.7885","-92.30834","Fox","AR","Arkansas","TRUE","","683","6.3","05137","Stone","{""05137"": ""100""}","Stone","05137","FALSE","FALSE","America/Chicago"
-"72055","34.10264","-91.36248","Gillett","AR","Arkansas","TRUE","","917","3.9","05001","Arkansas","{""05001"": ""100""}","Arkansas","05001","FALSE","FALSE","America/Chicago"
-"72057","34.14421","-92.31452","Grapevine","AR","Arkansas","TRUE","","1064","4.6","05053","Grant","{""05053"": ""100""}","Grant","05053","FALSE","FALSE","America/Chicago"
-"72058","35.24213","-92.37061","Greenbrier","AR","Arkansas","TRUE","","17242","42.7","05045","Faulkner","{""05045"": ""100""}","Faulkner","05045","FALSE","FALSE","America/Chicago"
-"72059","35.13943","-91.31499","Gregory","AR","Arkansas","TRUE","","39","1.1","05147","Woodruff","{""05147"": ""100""}","Woodruff","05147","FALSE","FALSE","America/Chicago"
-"72060","35.08408","-91.60119","Griffithville","AR","Arkansas","TRUE","","601","3.6","05145","White","{""05145"": ""75.83"", ""05117"": ""24.17""}","White|Prairie","05145|05117","FALSE","FALSE","America/Chicago"
-"72061","35.3219","-92.29905","Guy","AR","Arkansas","TRUE","","127","13.0","05045","Faulkner","{""05045"": ""100""}","Faulkner","05045","FALSE","FALSE","America/Chicago"
-"72063","35.32301","-92.77242","Hattieville","AR","Arkansas","TRUE","","2008","9.7","05029","Conway","{""05029"": ""96.97"", ""05115"": ""3.03""}","Conway|Pope","05029|05115","FALSE","FALSE","America/Chicago"
-"72064","34.79204","-91.61099","Hazen","AR","Arkansas","TRUE","","2341","6.0","05117","Prairie","{""05117"": ""100""}","Prairie","05117","FALSE","FALSE","America/Chicago"
-"72065","34.52073","-92.28885","Hensley","AR","Arkansas","TRUE","","5216","35.2","05125","Saline","{""05125"": ""80.33"", ""05119"": ""13.9"", ""05053"": ""5.76""}","Saline|Pulaski|Grant","05125|05119|05053","FALSE","FALSE","America/Chicago"
-"72067","35.5646","-92.15825","Higden","AR","Arkansas","TRUE","","2431","19.3","05023","Cleburne","{""05023"": ""90.13"", ""05141"": ""9.87""}","Cleburne|Van Buren","05023|05141","FALSE","FALSE","America/Chicago"
-"72068","35.19029","-91.71078","Higginson","AR","Arkansas","TRUE","","421","169.7","05145","White","{""05145"": ""100""}","White","05145","FALSE","FALSE","America/Chicago"
-"72069","34.53481","-91.13087","Holly Grove","AR","Arkansas","TRUE","","1290","2.1","05095","Monroe","{""05095"": ""93.28"", ""05107"": ""6.72""}","Monroe|Phillips","05095|05107","FALSE","FALSE","America/Chicago"
-"72070","35.00913","-92.70903","Houston","AR","Arkansas","TRUE","","1688","9.7","05105","Perry","{""05105"": ""100""}","Perry","05105","FALSE","FALSE","America/Chicago"
-"72072","34.52489","-91.73979","Humnoke","AR","Arkansas","TRUE","","504","5.3","05085","Lonoke","{""05085"": ""100""}","Lonoke","05085","FALSE","FALSE","America/Chicago"
-"72073","34.37223","-91.66961","Humphrey","AR","Arkansas","TRUE","","1058","3.0","05001","Arkansas","{""05001"": ""68.74"", ""05069"": ""31.26""}","Arkansas|Jefferson","05001|05069","FALSE","FALSE","America/Chicago"
-"72074","35.08172","-91.09052","Hunter","AR","Arkansas","TRUE","","151","1.7","05147","Woodruff","{""05147"": ""100""}","Woodruff","05147","FALSE","FALSE","America/Chicago"
-"72076","34.91137","-92.1435","Jacksonville","AR","Arkansas","TRUE","","38831","202.9","05119","Pulaski","{""05119"": ""93.82"", ""05085"": ""5.66"", ""05045"": ""0.53""}","Pulaski|Lonoke|Faulkner","05119|05085|05045","FALSE","FALSE","America/Chicago"
-"72079","34.39059","-92.17612","Jefferson","AR","Arkansas","TRUE","","750","12.4","05069","Jefferson","{""05069"": ""94.27"", ""05053"": ""5.73""}","Jefferson|Grant","05069|05053","FALSE","FALSE","America/Chicago"
-"72080","35.52434","-92.80503","Jerusalem","AR","Arkansas","TRUE","","315","1.3","05029","Conway","{""05029"": ""71.3"", ""05141"": ""22.66"", ""05115"": ""6.04""}","Conway|Van Buren|Pope","05029|05141|05115","FALSE","FALSE","America/Chicago"
-"72081","35.37929","-91.66979","Judsonia","AR","Arkansas","TRUE","","7727","32.0","05145","White","{""05145"": ""100""}","White","05145","FALSE","FALSE","America/Chicago"
-"72082","35.23291","-91.67364","Kensett","AR","Arkansas","TRUE","","1896","137.7","05145","White","{""05145"": ""100""}","White","05145","FALSE","FALSE","America/Chicago"
-"72083","34.594","-92.01352","Keo","AR","Arkansas","TRUE","","161","10.9","05085","Lonoke","{""05085"": ""100""}","Lonoke","05085","FALSE","FALSE","America/Chicago"
-"72084","34.14418","-92.66366","Leola","AR","Arkansas","TRUE","","1333","2.6","05053","Grant","{""05053"": ""62.16"", ""05039"": ""20.42"", ""05059"": ""17.41""}","Grant|Dallas|Hot Spring","05053|05039|05059","FALSE","FALSE","America/Chicago"
-"72085","35.36384","-91.82906","Letona","AR","Arkansas","TRUE","","240","267.3","05145","White","{""05145"": ""100""}","White","05145","FALSE","FALSE","America/Chicago"
-"72086","34.80894","-91.90941","Lonoke","AR","Arkansas","TRUE","","11049","29.3","05085","Lonoke","{""05085"": ""100""}","Lonoke","05085","FALSE","FALSE","America/Chicago"
-"72087","34.59487","-92.8311","Lonsdale","AR","Arkansas","TRUE","","1841","9.3","05125","Saline","{""05125"": ""60.31"", ""05051"": ""39.69""}","Saline|Garland","05125|05051","FALSE","FALSE","America/Chicago"
-"72088","35.59803","-92.26694","Fairfield Bay","AR","Arkansas","TRUE","","2375","62.2","05141","Van Buren","{""05141"": ""92.35"", ""05023"": ""7.65""}","Van Buren|Cleburne","05141|05023","FALSE","FALSE","America/Chicago"
-"72099","34.89923","-92.14142","Little Rock Air Force Base","AR","Arkansas","TRUE","","678","1410.2","05119","Pulaski","{""05119"": ""100""}","Pulaski","05119","FALSE","FALSE","America/Chicago"
-"72101","35.24003","-91.15672","McCrory","AR","Arkansas","TRUE","","3001","4.5","05147","Woodruff","{""05147"": ""93.87"", ""05067"": ""6.13""}","Woodruff|Jackson","05147|05067","FALSE","FALSE","America/Chicago"
-"72102","35.14596","-91.83545","McRae","AR","Arkansas","TRUE","","3141","24.0","05145","White","{""05145"": ""100""}","White","05145","FALSE","FALSE","America/Chicago"
-"72103","34.58979","-92.38373","Mabelvale","AR","Arkansas","TRUE","","12539","157.4","05125","Saline","{""05125"": ""69.12"", ""05119"": ""30.88""}","Saline|Pulaski","05125|05119","FALSE","FALSE","America/Chicago"
-"72104","34.3435","-92.82349","Malvern","AR","Arkansas","TRUE","","23835","29.0","05059","Hot Spring","{""05059"": ""99.08"", ""05125"": ""0.92""}","Hot Spring|Saline","05059|05125","FALSE","FALSE","America/Chicago"
-"72106","34.96663","-92.48207","Mayflower","AR","Arkansas","TRUE","","5510","46.3","05045","Faulkner","{""05045"": ""100""}","Faulkner","05045","FALSE","FALSE","America/Chicago"
-"72107","35.14333","-92.54178","Menifee","AR","Arkansas","TRUE","","96","3.2","05029","Conway","{""05029"": ""100""}","Conway","05029","FALSE","FALSE","America/Chicago"
-"72108","34.70578","-91.10309","Monroe","AR","Arkansas","TRUE","","64","2.5","05095","Monroe","{""05095"": ""100""}","Monroe","05095","FALSE","FALSE","America/Chicago"
-"72110","35.15466","-92.77549","Morrilton","AR","Arkansas","TRUE","","11296","35.2","05029","Conway","{""05029"": ""100""}","Conway","05029","FALSE","FALSE","America/Chicago"
-"72111","35.23583","-92.13191","Mount Vernon","AR","Arkansas","TRUE","","1302","8.6","05045","Faulkner","{""05045"": ""64.17"", ""05145"": ""35.83""}","Faulkner|White","05045|05145","FALSE","FALSE","America/Chicago"
-"72112","35.57975","-91.22613","Newport","AR","Arkansas","TRUE","","10936","12.9","05067","Jackson","{""05067"": ""98.85"", ""05063"": ""0.72"", ""05147"": ""0.44""}","Jackson|Independence|Woodruff","05067|05063|05147","FALSE","FALSE","America/Chicago"
-"72113","34.85942","-92.39892","Maumelle","AR","Arkansas","TRUE","","25641","377.9","05119","Pulaski","{""05119"": ""100""}","Pulaski","05119","FALSE","FALSE","America/Chicago"
-"72114","34.76446","-92.25848","North Little Rock","AR","Arkansas","TRUE","","10805","520.3","05119","Pulaski","{""05119"": ""100""}","Pulaski","05119","FALSE","FALSE","America/Chicago"
-"72116","34.80048","-92.24492","North Little Rock","AR","Arkansas","TRUE","","22263","1289.3","05119","Pulaski","{""05119"": ""100""}","Pulaski","05119","FALSE","FALSE","America/Chicago"
-"72117","34.7774","-92.14389","North Little Rock","AR","Arkansas","TRUE","","14769","102.9","05119","Pulaski","{""05119"": ""100""}","Pulaski","05119","FALSE","FALSE","America/Chicago"
-"72118","34.84134","-92.32981","North Little Rock","AR","Arkansas","TRUE","","21614","290.2","05119","Pulaski","{""05119"": ""100""}","Pulaski","05119","FALSE","FALSE","America/Chicago"
-"72119","34.83406","-92.29224","North Little Rock","AR","Arkansas","TRUE","","0","0.0","05119","Pulaski","{""05119"": ""100""}","Pulaski","05119","FALSE","FALSE","America/Chicago"
-"72120","34.89896","-92.24109","Sherwood","AR","Arkansas","TRUE","","32998","253.9","05119","Pulaski","{""05119"": ""97.58"", ""05045"": ""2.42""}","Pulaski|Faulkner","05119|05045","FALSE","FALSE","America/Chicago"
-"72121","35.45525","-91.78618","Pangburn","AR","Arkansas","TRUE","","2990","16.2","05145","White","{""05145"": ""79.25"", ""05023"": ""20.75""}","White|Cleburne","05145|05023","FALSE","FALSE","America/Chicago"
-"72122","34.78239","-92.77737","Paron","AR","Arkansas","TRUE","","596","2.2","05125","Saline","{""05125"": ""81.45"", ""05119"": ""18.55""}","Saline|Pulaski","05125|05119","FALSE","FALSE","America/Chicago"
-"72123","35.25867","-91.23553","Patterson","AR","Arkansas","TRUE","","437","191.2","05147","Woodruff","{""05147"": ""100""}","Woodruff","05147","FALSE","FALSE","America/Chicago"
-"72125","35.06787","-92.78675","Perry","AR","Arkansas","TRUE","","814","14.5","05105","Perry","{""05105"": ""66.74"", ""05029"": ""33.26""}","Perry|Conway","05105|05029","FALSE","FALSE","America/Chicago"
-"72126","34.93742","-92.91482","Perryville","AR","Arkansas","TRUE","","3889","7.4","05105","Perry","{""05105"": ""98.23"", ""05119"": ""1.77""}","Perry|Pulaski","05105|05119","FALSE","FALSE","America/Chicago"
-"72127","35.16663","-92.60262","Plumerville","AR","Arkansas","TRUE","","2121","15.4","05029","Conway","{""05029"": ""100""}","Conway","05029","FALSE","FALSE","America/Chicago"
-"72128","34.31945","-92.6329","Poyen","AR","Arkansas","TRUE","","889","15.3","05053","Grant","{""05053"": ""100""}","Grant","05053","FALSE","FALSE","America/Chicago"
-"72129","34.32775","-92.54194","Prattsville","AR","Arkansas","TRUE","","1064","8.6","05053","Grant","{""05053"": ""100""}","Grant","05053","FALSE","FALSE","America/Chicago"
-"72130","35.66413","-92.07054","Prim","AR","Arkansas","TRUE","","822","9.7","05023","Cleburne","{""05023"": ""100""}","Cleburne","05023","FALSE","FALSE","America/Chicago"
-"72131","35.41015","-92.19204","Quitman","AR","Arkansas","TRUE","","4974","14.7","05023","Cleburne","{""05023"": ""70.11"", ""05045"": ""26.21"", ""05141"": ""3.67""}","Cleburne|Faulkner|Van Buren","05023|05045|05141","FALSE","FALSE","America/Chicago"
-"72132","34.44933","-92.20559","Redfield","AR","Arkansas","TRUE","","3276","20.8","05069","Jefferson","{""05069"": ""81.52"", ""05053"": ""18.48""}","Jefferson|Grant","05069|05053","FALSE","FALSE","America/Chicago"
-"72134","34.62872","-91.36864","Roe","AR","Arkansas","TRUE","","332","2.6","05095","Monroe","{""05095"": ""100""}","Monroe","05095","FALSE","FALSE","America/Chicago"
-"72135","34.87549","-92.55303","Roland","AR","Arkansas","TRUE","","2718","14.8","05119","Pulaski","{""05119"": ""100""}","Pulaski","05119","FALSE","FALSE","America/Chicago"
-"72136","35.2358","-92.01631","Romance","AR","Arkansas","TRUE","","1136","8.6","05145","White","{""05145"": ""100""}","White","05145","FALSE","FALSE","America/Chicago"
-"72137","35.33693","-92.03003","Rose Bud","AR","Arkansas","TRUE","","2445","13.8","05145","White","{""05145"": ""71.43"", ""05023"": ""28.57""}","White|Cleburne","05145|05023","FALSE","FALSE","America/Chicago"
-"72139","35.36114","-91.50761","Russell","AR","Arkansas","TRUE","","257","242.7","05145","White","{""05145"": ""100""}","White","05145","FALSE","FALSE","America/Chicago"
-"72140","34.36798","-91.16059","Saint Charles","AR","Arkansas","TRUE","","370","7.5","05001","Arkansas","{""05001"": ""100""}","Arkansas","05001","FALSE","FALSE","America/Chicago"
-"72141","35.51822","-92.67973","Scotland","AR","Arkansas","TRUE","","660","3.0","05141","Van Buren","{""05141"": ""100""}","Van Buren","05141","FALSE","FALSE","America/Chicago"
-"72142","34.69513","-92.05828","Scott","AR","Arkansas","TRUE","","1988","7.4","05085","Lonoke","{""05085"": ""50.58"", ""05119"": ""49.42""}","Lonoke|Pulaski","05085|05119","FALSE","FALSE","America/Chicago"
-"72143","35.22889","-91.73564","Searcy","AR","Arkansas","TRUE","","36246","45.9","05145","White","{""05145"": ""99.92"", ""05023"": ""0.08""}","White|Cleburne","05145|05023","FALSE","FALSE","America/Chicago"
-"72149","35.24909","-91.72621","Searcy","AR","Arkansas","TRUE","","0","0.0","05145","White","{""05145"": ""0""}","White","05145","FALSE","FALSE","America/Chicago"
-"72150","34.31861","-92.39326","Sheridan","AR","Arkansas","TRUE","","12675","16.7","05053","Grant","{""05053"": ""99.01"", ""05069"": ""0.99""}","Grant|Jefferson","05053|05069","FALSE","FALSE","America/Chicago"
-"72152","34.35525","-91.97738","Sherrill","AR","Arkansas","TRUE","","405","2.1","05069","Jefferson","{""05069"": ""100""}","Jefferson","05069","FALSE","FALSE","America/Chicago"
-"72153","35.64537","-92.32604","Shirley","AR","Arkansas","TRUE","","2181","9.9","05141","Van Buren","{""05141"": ""93.16"", ""05023"": ""3.89"", ""05137"": ""2.95""}","Van Buren|Cleburne|Stone","05141|05023|05137","FALSE","FALSE","America/Chicago"
-"72156","35.27908","-92.6849","Solgohachia","AR","Arkansas","TRUE","","427","6.4","05029","Conway","{""05029"": ""100""}","Conway","05029","FALSE","FALSE","America/Chicago"
-"72157","35.27424","-92.55825","Springfield","AR","Arkansas","TRUE","","1541","11.6","05029","Conway","{""05029"": ""100""}","Conway","05029","FALSE","FALSE","America/Chicago"
-"72160","34.42235","-91.53303","Stuttgart","AR","Arkansas","TRUE","","9785","11.2","05001","Arkansas","{""05001"": ""96.26"", ""05117"": ""2.55"", ""05069"": ""0.8"", ""05085"": ""0.39""}","Arkansas|Prairie|Jefferson|Lonoke","05001|05117|05069|05085","FALSE","FALSE","America/Chicago"
-"72165","35.57544","-91.45793","Thida","AR","Arkansas","TRUE","","121","9.2","05063","Independence","{""05063"": ""100""}","Independence","05063","FALSE","FALSE","America/Chicago"
-"72166","34.05265","-91.23824","Tichnor","AR","Arkansas","TRUE","","103","0.4","05001","Arkansas","{""05001"": ""100""}","Arkansas","05001","FALSE","FALSE","America/Chicago"
-"72167","34.42143","-92.65417","Traskwood","AR","Arkansas","TRUE","","1694","14.6","05125","Saline","{""05125"": ""68.7"", ""05059"": ""25.95"", ""05053"": ""5.35""}","Saline|Hot Spring|Grant","05125|05059|05053","FALSE","FALSE","America/Chicago"
-"72168","34.43847","-91.97077","Tucker","AR","Arkansas","TRUE","","2424","20.8","05069","Jefferson","{""05069"": ""100""}","Jefferson","05069","FALSE","FALSE","America/Chicago"
-"72169","35.39651","-91.22657","Tupelo","AR","Arkansas","TRUE","","74","2.5","05067","Jackson","{""05067"": ""100""}","Jackson","05067","FALSE","FALSE","America/Chicago"
-"72170","34.5805","-91.41977","Ulm","AR","Arkansas","TRUE","","252","10.5","05117","Prairie","{""05117"": ""100""}","Prairie","05117","FALSE","FALSE","America/Chicago"
-"72173","35.09984","-92.20557","Vilonia","AR","Arkansas","TRUE","","9104","36.7","05045","Faulkner","{""05045"": ""99.59"", ""05145"": ""0.41""}","Faulkner|White","05045|05145","FALSE","FALSE","America/Chicago"
-"72175","34.34329","-91.76259","Wabbaseka","AR","Arkansas","TRUE","","261","2.2","05069","Jefferson","{""05069"": ""100""}","Jefferson","05069","FALSE","FALSE","America/Chicago"
-"72176","35.00257","-91.83211","Ward","AR","Arkansas","TRUE","","9066","44.1","05085","Lonoke","{""05085"": ""95.77"", ""05117"": ""4.23""}","Lonoke|Prairie","05085|05117","FALSE","FALSE","America/Chicago"
-"72179","35.50358","-91.85557","Wilburn","AR","Arkansas","TRUE","","305","5.0","05023","Cleburne","{""05023"": ""100""}","Cleburne","05023","FALSE","FALSE","America/Chicago"
-"72181","35.16241","-92.44517","Wooster","AR","Arkansas","TRUE","","0","0.0","05045","Faulkner","{""05045"": ""100""}","Faulkner","05045","FALSE","FALSE","America/Chicago"
-"72201","34.74728","-92.27985","Little Rock","AR","Arkansas","TRUE","","996","316.9","05119","Pulaski","{""05119"": ""100""}","Pulaski","05119","FALSE","FALSE","America/Chicago"
-"72202","34.74687","-92.26485","Little Rock","AR","Arkansas","TRUE","","9545","428.0","05119","Pulaski","{""05119"": ""100""}","Pulaski","05119","FALSE","FALSE","America/Chicago"
-"72204","34.71771","-92.35885","Little Rock","AR","Arkansas","TRUE","","31580","788.8","05119","Pulaski","{""05119"": ""100""}","Pulaski","05119","FALSE","FALSE","America/Chicago"
-"72205","34.75031","-92.3502","Little Rock","AR","Arkansas","TRUE","","22552","1113.4","05119","Pulaski","{""05119"": ""100""}","Pulaski","05119","FALSE","FALSE","America/Chicago"
-"72206","34.62843","-92.2383","Little Rock","AR","Arkansas","TRUE","","23413","79.3","05119","Pulaski","{""05119"": ""90.31"", ""05125"": ""9.69""}","Pulaski|Saline","05119|05125","FALSE","FALSE","America/Chicago"
-"72207","34.77359","-92.34565","Little Rock","AR","Arkansas","TRUE","","10325","1304.4","05119","Pulaski","{""05119"": ""100""}","Pulaski","05119","FALSE","FALSE","America/Chicago"
-"72209","34.67698","-92.34413","Little Rock","AR","Arkansas","TRUE","","31771","744.3","05119","Pulaski","{""05119"": ""100""}","Pulaski","05119","FALSE","FALSE","America/Chicago"
-"72210","34.71395","-92.50441","Little Rock","AR","Arkansas","TRUE","","17808","136.0","05119","Pulaski","{""05119"": ""94.12"", ""05125"": ""5.88""}","Pulaski|Saline","05119|05125","FALSE","FALSE","America/Chicago"
-"72211","34.75064","-92.4171","Little Rock","AR","Arkansas","TRUE","","22553","1156.1","05119","Pulaski","{""05119"": ""100""}","Pulaski","05119","FALSE","FALSE","America/Chicago"
-"72212","34.78597","-92.41522","Little Rock","AR","Arkansas","TRUE","","12279","716.9","05119","Pulaski","{""05119"": ""100""}","Pulaski","05119","FALSE","FALSE","America/Chicago"
-"72223","34.78834","-92.51095","Little Rock","AR","Arkansas","TRUE","","23376","152.4","05119","Pulaski","{""05119"": ""100""}","Pulaski","05119","FALSE","FALSE","America/Chicago"
-"72227","34.77782","-92.37509","Little Rock","AR","Arkansas","TRUE","","12164","1245.5","05119","Pulaski","{""05119"": ""100""}","Pulaski","05119","FALSE","FALSE","America/Chicago"
-"72301","35.14482","-90.18806","West Memphis","AR","Arkansas","TRUE","","24259","495.8","05035","Crittenden","{""05035"": ""100""}","Crittenden","05035","FALSE","FALSE","America/Chicago"
-"72311","34.72386","-90.89147","Aubrey","AR","Arkansas","TRUE","","97","36.7","05077","Lee","{""05077"": ""100""}","Lee","05077","FALSE","FALSE","America/Chicago"
-"72315","35.90486","-89.90132","Blytheville","AR","Arkansas","TRUE","","21609","33.1","05093","Mississippi","{""05093"": ""100""}","Mississippi","05093","FALSE","FALSE","America/Chicago"
-"72320","34.82091","-90.51772","Brickeys","AR","Arkansas","TRUE","","1546","11.2","05077","Lee","{""05077"": ""100""}","Lee","05077","FALSE","FALSE","America/Chicago"
-"72321","35.81592","-89.94464","Burdette","AR","Arkansas","TRUE","","135","37.8","05093","Mississippi","{""05093"": ""100""}","Mississippi","05093","FALSE","FALSE","America/Chicago"
-"72322","35.06487","-90.82211","Caldwell","AR","Arkansas","TRUE","","120","24.0","05123","St. Francis","{""05123"": ""100""}","St. Francis","05123","FALSE","FALSE","America/Chicago"
-"72324","35.38816","-90.78199","Cherry Valley","AR","Arkansas","TRUE","","2226","6.8","05037","Cross","{""05037"": ""98.79"", ""05111"": ""1.21""}","Cross|Poinsett","05037|05111","FALSE","FALSE","America/Chicago"
-"72325","35.32231","-90.24605","Clarkedale","AR","Arkansas","TRUE","","59","4.1","05035","Crittenden","{""05035"": ""100""}","Crittenden","05035","FALSE","FALSE","America/Chicago"
-"72326","35.11193","-90.90049","Colt","AR","Arkansas","TRUE","","1924","8.9","05123","St. Francis","{""05123"": ""93.69"", ""05037"": ""6.31""}","St. Francis|Cross","05123|05037","FALSE","FALSE","America/Chicago"
-"72327","35.23154","-90.33312","Crawfordsville","AR","Arkansas","TRUE","","1589","6.0","05035","Crittenden","{""05035"": ""100""}","Crittenden","05035","FALSE","FALSE","America/Chicago"
-"72328","34.05414","-91.02034","Crumrod","AR","Arkansas","TRUE","","46","0.3","05107","Phillips","{""05107"": ""62.5"", ""05041"": ""37.5""}","Phillips|Desha","05107|05041","FALSE","FALSE","America/Chicago"
-"72329","35.61457","-89.9881","Driver","AR","Arkansas","TRUE","","162","4.6","05093","Mississippi","{""05093"": ""100""}","Mississippi","05093","FALSE","FALSE","America/Chicago"
-"72330","35.5878","-90.21023","Dyess","AR","Arkansas","TRUE","","531","5.0","05093","Mississippi","{""05093"": ""100""}","Mississippi","05093","FALSE","FALSE","America/Chicago"
-"72331","35.28356","-90.46449","Earle","AR","Arkansas","TRUE","","3010","8.1","05035","Crittenden","{""05035"": ""96.7"", ""05037"": ""3.3""}","Crittenden|Cross","05035|05037","FALSE","FALSE","America/Chicago"
-"72332","35.10196","-90.30882","Edmondson","AR","Arkansas","TRUE","","125","726.0","05035","Crittenden","{""05035"": ""100""}","Crittenden","05035","FALSE","FALSE","America/Chicago"
-"72333","34.29949","-90.86477","Elaine","AR","Arkansas","TRUE","","550","3.4","05107","Phillips","{""05107"": ""100""}","Phillips","05107","FALSE","FALSE","America/Chicago"
-"72335","34.99129","-90.75671","Forrest City","AR","Arkansas","TRUE","","18559","45.0","05123","St. Francis","{""05123"": ""99.96"", ""05077"": ""0.04""}","St. Francis|Lee","05123|05077","FALSE","FALSE","America/Chicago"
-"72338","35.43018","-90.12754","Frenchmans Bayou","AR","Arkansas","TRUE","","7","0.1","05093","Mississippi","{""05093"": ""82.69"", ""47167"": ""17.31""}","Mississippi|Tipton","05093|47167","FALSE","FALSE","America/Chicago"
-"72339","35.422","-90.26811","Gilmore","AR","Arkansas","TRUE","","148","8.0","05035","Crittenden","{""05035"": ""100""}","Crittenden","05035","FALSE","FALSE","America/Chicago"
-"72340","34.94086","-91.02821","Goodwin","AR","Arkansas","TRUE","","170","8.1","05123","St. Francis","{""05123"": ""100""}","St. Francis","05123","FALSE","FALSE","America/Chicago"
-"72341","34.88701","-90.76103","Haynes","AR","Arkansas","TRUE","","205","3.9","05077","Lee","{""05077"": ""100""}","Lee","05077","FALSE","FALSE","America/Chicago"
-"72342","34.45804","-90.68598","Helena","AR","Arkansas","TRUE","","4706","20.4","05107","Phillips","{""05107"": ""100""}","Phillips","05107","FALSE","FALSE","America/Chicago"
-"72346","35.08333","-90.48242","Heth","AR","Arkansas","TRUE","","480","2.3","05123","St. Francis","{""05123"": ""98.85"", ""05037"": ""1.15""}","St. Francis|Cross","05123|05037","FALSE","FALSE","America/Chicago"
-"72347","35.38533","-90.99975","Hickory Ridge","AR","Arkansas","TRUE","","684","2.8","05037","Cross","{""05037"": ""91.28"", ""05067"": ""8.72""}","Cross|Jackson","05037|05067","FALSE","FALSE","America/Chicago"
-"72348","34.94144","-90.42332","Hughes","AR","Arkansas","TRUE","","2482","5.8","05123","St. Francis","{""05123"": ""70.43"", ""05035"": ""27.79"", ""05077"": ""1.77""}","St. Francis|Crittenden|Lee","05123|05035|05077","FALSE","FALSE","America/Chicago"
-"72350","35.50107","-90.12537","Joiner","AR","Arkansas","TRUE","","1063","5.3","05093","Mississippi","{""05093"": ""100""}","Mississippi","05093","FALSE","FALSE","America/Chicago"
-"72351","35.67375","-90.09639","Keiser","AR","Arkansas","TRUE","","735","43.4","05093","Mississippi","{""05093"": ""100""}","Mississippi","05093","FALSE","FALSE","America/Chicago"
-"72353","34.30138","-91.00696","Lambrook","AR","Arkansas","TRUE","","105","1.2","05107","Phillips","{""05107"": ""100""}","Phillips","05107","FALSE","FALSE","America/Chicago"
-"72354","35.61566","-90.31656","Lepanto","AR","Arkansas","TRUE","","2359","18.1","05111","Poinsett","{""05111"": ""96.68"", ""05093"": ""3.32""}","Poinsett|Mississippi","05111|05093","FALSE","FALSE","America/Chicago"
-"72355","34.55035","-90.76411","Lexa","AR","Arkansas","TRUE","","2198","8.1","05107","Phillips","{""05107"": ""88.01"", ""05077"": ""11.99""}","Phillips|Lee","05107|05077","FALSE","FALSE","America/Chicago"
-"72358","35.79125","-89.88269","Luxora","AR","Arkansas","TRUE","","1401","9.2","05093","Mississippi","{""05093"": ""100""}","Mississippi","05093","FALSE","FALSE","America/Chicago"
-"72359","35.02283","-90.72168","Madison","AR","Arkansas","TRUE","","534","97.7","05123","St. Francis","{""05123"": ""100""}","St. Francis","05123","FALSE","FALSE","America/Chicago"
-"72360","34.75473","-90.7715","Marianna","AR","Arkansas","TRUE","","5655","6.7","05077","Lee","{""05077"": ""100""}","Lee","05077","FALSE","FALSE","America/Chicago"
-"72364","35.21678","-90.18931","Marion","AR","Arkansas","TRUE","","15874","84.0","05035","Crittenden","{""05035"": ""100""}","Crittenden","05035","FALSE","FALSE","America/Chicago"
-"72365","35.51754","-90.43733","Marked Tree","AR","Arkansas","TRUE","","2679","20.2","05111","Poinsett","{""05111"": ""100""}","Poinsett","05111","FALSE","FALSE","America/Chicago"
-"72366","34.51978","-90.9578","Marvell","AR","Arkansas","TRUE","","2017","5.3","05107","Phillips","{""05107"": ""99.37"", ""05095"": ""0.63""}","Phillips|Monroe","05107|05095","FALSE","FALSE","America/Chicago"
-"72367","34.19163","-90.946","Mellwood","AR","Arkansas","TRUE","","6","0.0","05107","Phillips","{""05107"": ""100""}","Phillips","05107","FALSE","FALSE","America/Chicago"
-"72368","34.80991","-91.02053","Moro","AR","Arkansas","TRUE","","1287","3.5","05077","Lee","{""05077"": ""92.43"", ""05095"": ""7.57""}","Lee|Monroe","05077|05095","FALSE","FALSE","America/Chicago"
-"72370","35.68547","-90.10121","Osceola","AR","Arkansas","TRUE","","7510","25.6","05093","Mississippi","{""05093"": ""100""}","Mississippi","05093","FALSE","FALSE","America/Chicago"
-"72372","34.96969","-90.94658","Palestine","AR","Arkansas","TRUE","","1756","5.4","05123","St. Francis","{""05123"": ""88.02"", ""05077"": ""11.98""}","St. Francis|Lee","05123|05077","FALSE","FALSE","America/Chicago"
-"72373","35.29635","-90.59003","Parkin","AR","Arkansas","TRUE","","855","2.9","05037","Cross","{""05037"": ""100""}","Cross","05037","FALSE","FALSE","America/Chicago"
-"72374","34.56527","-90.83446","Poplar Grove","AR","Arkansas","TRUE","","848","7.8","05107","Phillips","{""05107"": ""100""}","Phillips","05107","FALSE","FALSE","America/Chicago"
-"72376","35.08681","-90.30056","Proctor","AR","Arkansas","TRUE","","1851","8.3","05035","Crittenden","{""05035"": ""100""}","Crittenden","05035","FALSE","FALSE","America/Chicago"
-"72377","35.68757","-90.33853","Rivervale","AR","Arkansas","TRUE","","22","11.0","05111","Poinsett","{""05111"": ""100""}","Poinsett","05111","FALSE","FALSE","America/Chicago"
-"72379","34.05265","-91.05485","Snow Lake","AR","Arkansas","TRUE","","15","0.1","05041","Desha","{""05041"": ""100""}","Desha","05041","FALSE","FALSE","America/Chicago"
-"72383","34.49101","-91.0396","Turner","AR","Arkansas","TRUE","","75","5.6","05107","Phillips","{""05107"": ""100""}","Phillips","05107","FALSE","FALSE","America/Chicago"
-"72384","35.37434","-90.2212","Turrell","AR","Arkansas","TRUE","","888","3.7","05035","Crittenden","{""05035"": ""100""}","Crittenden","05035","FALSE","FALSE","America/Chicago"
-"72386","35.45221","-90.36347","Tyronza","AR","Arkansas","TRUE","","2050","6.8","05111","Poinsett","{""05111"": ""74.23"", ""05093"": ""15.14"", ""05035"": ""10.64""}","Poinsett|Mississippi|Crittenden","05111|05093|05035","FALSE","FALSE","America/Chicago"
-"72389","34.37705","-90.90587","Wabash","AR","Arkansas","TRUE","","359","2.4","05107","Phillips","{""05107"": ""100""}","Phillips","05107","FALSE","FALSE","America/Chicago"
-"72390","34.55015","-90.67836","West Helena","AR","Arkansas","TRUE","","7904","83.1","05107","Phillips","{""05107"": ""100""}","Phillips","05107","FALSE","FALSE","America/Chicago"
-"72392","34.95705","-91.09854","Wheatley","AR","Arkansas","TRUE","","534","4.4","05123","St. Francis","{""05123"": ""83.37"", ""05095"": ""15.38"", ""05147"": ""1.25""}","St. Francis|Monroe|Woodruff","05123|05095|05147","FALSE","FALSE","America/Chicago"
-"72394","35.05612","-90.61746","Widener","AR","Arkansas","TRUE","","473","2.2","05123","St. Francis","{""05123"": ""100""}","St. Francis","05123","FALSE","FALSE","America/Chicago"
-"72395","35.59543","-90.08243","Wilson","AR","Arkansas","TRUE","","1082","17.4","05093","Mississippi","{""05093"": ""100""}","Mississippi","05093","FALSE","FALSE","America/Chicago"
-"72396","35.23114","-90.82297","Wynne","AR","Arkansas","TRUE","","12952","18.7","05037","Cross","{""05037"": ""99.62"", ""05123"": ""0.38""}","Cross|St. Francis","05037|05123","FALSE","FALSE","America/Chicago"
-"72401","35.87895","-90.66061","Jonesboro","AR","Arkansas","TRUE","","58725","193.4","05031","Craighead","{""05031"": ""99.01"", ""05055"": ""0.99""}","Craighead|Greene","05031|05055","FALSE","FALSE","America/Chicago"
-"72404","35.77595","-90.78171","Jonesboro","AR","Arkansas","TRUE","","27706","84.9","05031","Craighead","{""05031"": ""100""}","Craighead","05031","FALSE","FALSE","America/Chicago"
-"72410","35.93352","-91.09787","Alicia","AR","Arkansas","TRUE","","383","2.1","05075","Lawrence","{""05075"": ""100""}","Lawrence","05075","FALSE","FALSE","America/Chicago"
-"72411","35.74409","-90.57437","Bay","AR","Arkansas","TRUE","","2365","23.8","05031","Craighead","{""05031"": ""100""}","Craighead","05031","FALSE","FALSE","America/Chicago"
-"72412","36.12416","-90.69436","Beech Grove","AR","Arkansas","TRUE","","542","3.3","05055","Greene","{""05055"": ""100""}","Greene","05055","FALSE","FALSE","America/Chicago"
-"72413","36.30006","-90.82185","Biggers","AR","Arkansas","TRUE","","539","5.6","05121","Randolph","{""05121"": ""100""}","Randolph","05121","FALSE","FALSE","America/Chicago"
-"72414","35.82443","-90.37032","Black Oak","AR","Arkansas","TRUE","","365","8.2","05031","Craighead","{""05031"": ""100""}","Craighead","05031","FALSE","FALSE","America/Chicago"
-"72415","36.12819","-91.17392","Black Rock","AR","Arkansas","TRUE","","1339","13.6","05075","Lawrence","{""05075"": ""100""}","Lawrence","05075","FALSE","FALSE","America/Chicago"
-"72416","35.96188","-90.79513","Bono","AR","Arkansas","TRUE","","5414","22.5","05031","Craighead","{""05031"": ""91.63"", ""05055"": ""8.37""}","Craighead|Greene","05031|05055","FALSE","FALSE","America/Chicago"
-"72417","35.92104","-90.55005","Brookland","AR","Arkansas","TRUE","","5606","47.3","05031","Craighead","{""05031"": ""100""}","Craighead","05031","FALSE","FALSE","America/Chicago"
-"72419","35.7477","-90.35113","Caraway","AR","Arkansas","TRUE","","1497","11.4","05031","Craighead","{""05031"": ""100""}","Craighead","05031","FALSE","FALSE","America/Chicago"
-"72421","35.78764","-90.97158","Cash","AR","Arkansas","TRUE","","447","2.3","05031","Craighead","{""05031"": ""100""}","Craighead","05031","FALSE","FALSE","America/Chicago"
-"72422","36.41929","-90.54196","Corning","AR","Arkansas","TRUE","","4587","10.1","05021","Clay","{""05021"": ""100""}","Clay","05021","FALSE","FALSE","America/Chicago"
-"72424","36.39054","-90.73633","Datto","AR","Arkansas","TRUE","","92","25.9","05021","Clay","{""05021"": ""100""}","Clay","05021","FALSE","FALSE","America/Chicago"
-"72425","36.219","-90.73145","Delaplaine","AR","Arkansas","TRUE","","357","2.0","05055","Greene","{""05055"": ""97.98"", ""05121"": ""2.02""}","Greene|Randolph","05055|05121","FALSE","FALSE","America/Chicago"
-"72426","35.86974","-90.04195","Dell","AR","Arkansas","TRUE","","169","74.4","05093","Mississippi","{""05093"": ""100""}","Mississippi","05093","FALSE","FALSE","America/Chicago"
-"72427","35.86702","-90.93567","Egypt","AR","Arkansas","TRUE","","365","9.1","05031","Craighead","{""05031"": ""100""}","Craighead","05031","FALSE","FALSE","America/Chicago"
-"72428","35.7392","-90.22436","Etowah","AR","Arkansas","TRUE","","79","4.8","05093","Mississippi","{""05093"": ""100""}","Mississippi","05093","FALSE","FALSE","America/Chicago"
-"72429","35.49203","-90.9299","Fisher","AR","Arkansas","TRUE","","284","1.4","05111","Poinsett","{""05111"": ""100""}","Poinsett","05111","FALSE","FALSE","America/Chicago"
-"72430","36.33451","-90.17128","Greenway","AR","Arkansas","TRUE","","384","5.6","05021","Clay","{""05021"": ""100""}","Clay","05021","FALSE","FALSE","America/Chicago"
-"72431","35.63341","-91.08199","Grubbs","AR","Arkansas","TRUE","","374","23.7","05067","Jackson","{""05067"": ""100""}","Jackson","05067","FALSE","FALSE","America/Chicago"
-"72432","35.55641","-90.72004","Harrisburg","AR","Arkansas","TRUE","","6454","15.7","05111","Poinsett","{""05111"": ""100""}","Poinsett","05111","FALSE","FALSE","America/Chicago"
-"72433","36.02248","-91.04877","Hoxie","AR","Arkansas","TRUE","","2909","20.1","05075","Lawrence","{""05075"": ""100""}","Lawrence","05075","FALSE","FALSE","America/Chicago"
-"72434","36.21679","-91.16267","Imboden","AR","Arkansas","TRUE","","1889","8.6","05075","Lawrence","{""05075"": ""59.44"", ""05121"": ""40.56""}","Lawrence|Randolph","05075|05121","FALSE","FALSE","America/Chicago"
-"72435","36.31872","-90.57623","Knobel","AR","Arkansas","TRUE","","382","2.0","05021","Clay","{""05021"": ""100""}","Clay","05021","FALSE","FALSE","America/Chicago"
-"72436","36.23593","-90.48108","Lafe","AR","Arkansas","TRUE","","987","13.1","05055","Greene","{""05055"": ""90.13"", ""05021"": ""9.87""}","Greene|Clay","05055|05021","FALSE","FALSE","America/Chicago"
-"72437","35.83711","-90.45285","Lake City","AR","Arkansas","TRUE","","3722","13.5","05031","Craighead","{""05031"": ""100""}","Craighead","05031","FALSE","FALSE","America/Chicago"
-"72438","35.94653","-90.22113","Leachville","AR","Arkansas","TRUE","","3087","21.4","05093","Mississippi","{""05093"": ""100""}","Mississippi","05093","FALSE","FALSE","America/Chicago"
-"72440","35.99509","-91.2515","Lynn","AR","Arkansas","TRUE","","276","17.9","05075","Lawrence","{""05075"": ""100""}","Lawrence","05075","FALSE","FALSE","America/Chicago"
-"72441","36.43694","-90.38531","McDougal","AR","Arkansas","TRUE","","47","70.1","05021","Clay","{""05021"": ""100""}","Clay","05021","FALSE","FALSE","America/Chicago"
-"72442","35.81981","-90.1935","Manila","AR","Arkansas","TRUE","","4241","14.6","05093","Mississippi","{""05093"": ""100""}","Mississippi","05093","FALSE","FALSE","America/Chicago"
-"72443","36.18045","-90.41421","Marmaduke","AR","Arkansas","TRUE","","2938","19.4","05055","Greene","{""05055"": ""100""}","Greene","05055","FALSE","FALSE","America/Chicago"
-"72444","36.42779","-90.86061","Maynard","AR","Arkansas","TRUE","","1895","7.6","05121","Randolph","{""05121"": ""100""}","Randolph","05121","FALSE","FALSE","America/Chicago"
-"72445","35.97662","-91.02663","Minturn","AR","Arkansas","TRUE","","46","39.1","05075","Lawrence","{""05075"": ""100""}","Lawrence","05075","FALSE","FALSE","America/Chicago"
-"72447","35.91382","-90.33071","Monette","AR","Arkansas","TRUE","","1902","13.2","05031","Craighead","{""05031"": ""100""}","Craighead","05031","FALSE","FALSE","America/Chicago"
-"72449","36.17748","-90.81964","O'Kean","AR","Arkansas","TRUE","","332","44.7","05121","Randolph","{""05121"": ""100""}","Randolph","05121","FALSE","FALSE","America/Chicago"
-"72450","36.07935","-90.51876","Paragould","AR","Arkansas","TRUE","","39120","52.6","05055","Greene","{""05055"": ""99.79"", ""05031"": ""0.21""}","Greene|Craighead","05055|05031","FALSE","FALSE","America/Chicago"
-"72453","36.29392","-90.70816","Peach Orchard","AR","Arkansas","TRUE","","194","2.7","05021","Clay","{""05021"": ""100""}","Clay","05021","FALSE","FALSE","America/Chicago"
-"72454","36.40111","-90.20791","Piggott","AR","Arkansas","TRUE","","4842","18.4","05021","Clay","{""05021"": ""100""}","Clay","05021","FALSE","FALSE","America/Chicago"
-"72455","36.31838","-91.03612","Pocahontas","AR","Arkansas","TRUE","","12418","16.9","05121","Randolph","{""05121"": ""100""}","Randolph","05121","FALSE","FALSE","America/Chicago"
-"72456","36.45724","-90.32127","Pollard","AR","Arkansas","TRUE","","480","4.0","05021","Clay","{""05021"": ""100""}","Clay","05021","FALSE","FALSE","America/Chicago"
-"72457","36.08888","-91.06808","Portia","AR","Arkansas","TRUE","","185","357.6","05075","Lawrence","{""05075"": ""100""}","Lawrence","05075","FALSE","FALSE","America/Chicago"
-"72458","36.07257","-91.15849","Powhatan","AR","Arkansas","TRUE","","594","8.8","05075","Lawrence","{""05075"": ""100""}","Lawrence","05075","FALSE","FALSE","America/Chicago"
-"72459","36.28903","-91.2983","Ravenden","AR","Arkansas","TRUE","","1324","5.1","05075","Lawrence","{""05075"": ""65.31"", ""05135"": ""17.53"", ""05121"": ""17.16""}","Lawrence|Sharp|Randolph","05075|05135|05121","FALSE","FALSE","America/Chicago"
-"72460","36.35181","-91.17075","Ravenden Springs","AR","Arkansas","TRUE","","844","5.5","05121","Randolph","{""05121"": ""100""}","Randolph","05121","FALSE","FALSE","America/Chicago"
-"72461","36.26528","-90.28511","Rector","AR","Arkansas","TRUE","","3599","7.7","05021","Clay","{""05021"": ""94.48"", ""05055"": ""5.52""}","Clay|Greene","05021|05055","FALSE","FALSE","America/Chicago"
-"72462","36.37262","-90.77027","Reyno","AR","Arkansas","TRUE","","341","21.8","05121","Randolph","{""05121"": ""100""}","Randolph","05121","FALSE","FALSE","America/Chicago"
-"72464","36.45792","-90.14416","Saint Francis","AR","Arkansas","TRUE","","61","176.6","05021","Clay","{""05021"": ""100""}","Clay","05021","FALSE","FALSE","America/Chicago"
-"72466","36.05568","-91.32904","Smithville","AR","Arkansas","TRUE","","1500","4.7","05075","Lawrence","{""05075"": ""60.77"", ""05135"": ""39.23""}","Lawrence|Sharp","05075|05135","FALSE","FALSE","America/Chicago"
-"72467","35.84108","-90.67558","State University","AR","Arkansas","TRUE","","285","3299.8","05031","Craighead","{""05031"": ""100""}","Craighead","05031","FALSE","FALSE","America/Chicago"
-"72469","35.95439","-91.29164","Strawberry","AR","Arkansas","TRUE","","977","4.9","05075","Lawrence","{""05075"": ""88.35"", ""05135"": ""11.65""}","Lawrence|Sharp","05075|05135","FALSE","FALSE","America/Chicago"
-"72470","36.46731","-90.70641","Success","AR","Arkansas","TRUE","","160","1.8","05021","Clay","{""05021"": ""100""}","Clay","05021","FALSE","FALSE","America/Chicago"
-"72471","35.82507","-91.1178","Swifton","AR","Arkansas","TRUE","","1187","5.5","05067","Jackson","{""05067"": ""100""}","Jackson","05067","FALSE","FALSE","America/Chicago"
-"72472","35.59605","-90.53588","Trumann","AR","Arkansas","TRUE","","9167","20.1","05111","Poinsett","{""05111"": ""100""}","Poinsett","05111","FALSE","FALSE","America/Chicago"
-"72473","35.73904","-91.17553","Tuckerman","AR","Arkansas","TRUE","","2457","16.4","05067","Jackson","{""05067"": ""100""}","Jackson","05067","FALSE","FALSE","America/Chicago"
-"72476","36.05179","-90.91956","Walnut Ridge","AR","Arkansas","TRUE","","6656","12.9","05075","Lawrence","{""05075"": ""98.64"", ""05121"": ""1.36""}","Lawrence|Randolph","05075|05121","FALSE","FALSE","America/Chicago"
-"72478","36.46333","-91.05581","Warm Springs","AR","Arkansas","TRUE","","331","2.5","05121","Randolph","{""05121"": ""100""}","Randolph","05121","FALSE","FALSE","America/Chicago"
-"72479","35.63344","-90.90304","Weiner","AR","Arkansas","TRUE","","1406","2.8","05111","Poinsett","{""05111"": ""89.59"", ""05067"": ""8.13"", ""05031"": ""2.28""}","Poinsett|Jackson|Craighead","05111|05067|05031","FALSE","FALSE","America/Chicago"
-"72482","36.275","-91.36554","Williford","AR","Arkansas","TRUE","","1338","7.5","05135","Sharp","{""05135"": ""100""}","Sharp","05135","FALSE","FALSE","America/Chicago"
-"72501","35.79155","-91.65346","Batesville","AR","Arkansas","TRUE","","26150","33.3","05063","Independence","{""05063"": ""100""}","Independence","05063","FALSE","FALSE","America/Chicago"
-"72512","36.22049","-91.7465","Horseshoe Bend","AR","Arkansas","TRUE","","2615","46.2","05065","Izard","{""05065"": ""99.24"", ""05049"": ""0.76""}","Izard|Fulton","05065|05049","FALSE","FALSE","America/Chicago"
-"72513","36.22598","-91.65151","Ash Flat","AR","Arkansas","TRUE","","2397","9.8","05135","Sharp","{""05135"": ""61.17"", ""05049"": ""34.03"", ""05065"": ""4.8""}","Sharp|Fulton|Izard","05135|05049|05065","FALSE","FALSE","America/Chicago"
-"72515","36.27636","-92.05641","Bexar","AR","Arkansas","TRUE","","0","0.0","05049","Fulton","{""05049"": ""100""}","Fulton","05049","FALSE","FALSE","America/Chicago"
-"72517","36.13231","-91.9732","Brockwell","AR","Arkansas","TRUE","","224","2.5","05065","Izard","{""05065"": ""100""}","Izard","05065","FALSE","FALSE","America/Chicago"
-"72519","36.12016","-92.18673","Calico Rock","AR","Arkansas","TRUE","","3922","10.2","05065","Izard","{""05065"": ""73.14"", ""05005"": ""21.08"", ""05137"": ""5.78""}","Izard|Baxter|Stone","05065|05005|05137","FALSE","FALSE","America/Chicago"
-"72520","36.39093","-91.72023","Camp","AR","Arkansas","TRUE","","163","2.5","05049","Fulton","{""05049"": ""100""}","Fulton","05049","FALSE","FALSE","America/Chicago"
-"72521","35.9513","-91.54273","Cave City","AR","Arkansas","TRUE","","5611","17.3","05135","Sharp","{""05135"": ""73.54"", ""05063"": ""26.46""}","Sharp|Independence","05135|05063","FALSE","FALSE","America/Chicago"
-"72522","35.8109","-91.47044","Charlotte","AR","Arkansas","TRUE","","462","30.3","05063","Independence","{""05063"": ""100""}","Independence","05063","FALSE","FALSE","America/Chicago"
-"72523","35.6437","-91.83211","Concord","AR","Arkansas","TRUE","","923","8.9","05023","Cleburne","{""05023"": ""91.84"", ""05063"": ""8.16""}","Cleburne|Independence","05023|05063","FALSE","FALSE","America/Chicago"
-"72524","35.83541","-91.30434","Cord","AR","Arkansas","TRUE","","402","2.8","05063","Independence","{""05063"": ""100""}","Independence","05063","FALSE","FALSE","America/Chicago"
-"72526","35.88364","-91.77895","Cushman","AR","Arkansas","TRUE","","235","16.8","05063","Independence","{""05063"": ""100""}","Independence","05063","FALSE","FALSE","America/Chicago"
-"72527","35.73989","-91.68503","Desha","AR","Arkansas","TRUE","","449","43.7","05063","Independence","{""05063"": ""100""}","Independence","05063","FALSE","FALSE","America/Chicago"
-"72528","36.2275","-92.13827","Dolph","AR","Arkansas","TRUE","","0","0.0","05065","Izard","{""05065"": ""100""}","Izard","05065","FALSE","FALSE","America/Chicago"
-"72529","36.29573","-91.56548","Cherokee Village","AR","Arkansas","TRUE","","5006","98.9","05135","Sharp","{""05135"": ""82.44"", ""05049"": ""17.56""}","Sharp|Fulton","05135|05049","FALSE","FALSE","America/Chicago"
-"72530","35.61818","-91.95341","Drasco","AR","Arkansas","TRUE","","1267","4.4","05023","Cleburne","{""05023"": ""92.4"", ""05137"": ""7.6""}","Cleburne|Stone","05023|05137","FALSE","FALSE","America/Chicago"
-"72531","36.31939","-92.14884","Elizabeth","AR","Arkansas","TRUE","","984","6.6","05049","Fulton","{""05049"": ""51.5"", ""05005"": ""48.5""}","Fulton|Baxter","05049|05005","FALSE","FALSE","America/Chicago"
-"72532","36.09853","-91.59686","Evening Shade","AR","Arkansas","TRUE","","1104","4.1","05135","Sharp","{""05135"": ""89.14"", ""05065"": ""10.86""}","Sharp|Izard","05135|05065","FALSE","FALSE","America/Chicago"
-"72533","35.97339","-92.25037","Fifty Six","AR","Arkansas","TRUE","","342","3.1","05137","Stone","{""05137"": ""100""}","Stone","05137","FALSE","FALSE","America/Chicago"
-"72534","35.60003","-91.72594","Floral","AR","Arkansas","TRUE","","1794","11.2","05063","Independence","{""05063"": ""92.2"", ""05023"": ""7.8""}","Independence|Cleburne","05063|05023","FALSE","FALSE","America/Chicago"
-"72536","36.14713","-91.7672","Franklin","AR","Arkansas","TRUE","","522","7.9","05065","Izard","{""05065"": ""100""}","Izard","05065","FALSE","FALSE","America/Chicago"
-"72537","36.45017","-92.23374","Gamaliel","AR","Arkansas","TRUE","","742","10.0","05005","Baxter","{""05005"": ""100""}","Baxter","05005","FALSE","FALSE","America/Chicago"
-"72538","36.44011","-92.10296","Gepp","AR","Arkansas","TRUE","","417","3.5","05049","Fulton","{""05049"": ""96.99"", ""05005"": ""3.01""}","Fulton|Baxter","05049|05005","FALSE","FALSE","America/Chicago"
-"72539","36.33215","-91.71112","Glencoe","AR","Arkansas","TRUE","","126","2.9","05049","Fulton","{""05049"": ""100""}","Fulton","05049","FALSE","FALSE","America/Chicago"
-"72540","35.92724","-91.90051","Guion","AR","Arkansas","TRUE","","189","3.9","05065","Izard","{""05065"": ""100""}","Izard","05065","FALSE","FALSE","America/Chicago"
-"72542","36.30391","-91.47159","Hardy","AR","Arkansas","TRUE","","3667","8.9","05135","Sharp","{""05135"": ""85.81"", ""05049"": ""14.19""}","Sharp|Fulton","05135|05049","FALSE","FALSE","America/Chicago"
-"72543","35.45357","-91.98887","Heber Springs","AR","Arkansas","TRUE","","12636","43.1","05023","Cleburne","{""05023"": ""100""}","Cleburne","05023","FALSE","FALSE","America/Chicago"
-"72544","36.40612","-92.19054","Henderson","AR","Arkansas","TRUE","","741","10.4","05005","Baxter","{""05005"": ""100""}","Baxter","05005","FALSE","FALSE","America/Chicago"
-"72546","35.57892","-91.94104","Ida","AR","Arkansas","TRUE","","244","24.2","05023","Cleburne","{""05023"": ""100""}","Cleburne","05023","FALSE","FALSE","America/Chicago"
-"72550","35.70969","-91.78294","Locust Grove","AR","Arkansas","TRUE","","721","6.0","05063","Independence","{""05063"": ""69.24"", ""05023"": ""25.89"", ""05137"": ""4.87""}","Independence|Cleburne|Stone","05063|05023|05137","FALSE","FALSE","America/Chicago"
-"72553","35.7003","-91.48099","Magness","AR","Arkansas","TRUE","","49","50.1","05063","Independence","{""05063"": ""100""}","Independence","05063","FALSE","FALSE","America/Chicago"
-"72554","36.44015","-91.5624","Mammoth Spring","AR","Arkansas","TRUE","","2352","5.9","05049","Fulton","{""05049"": ""91.28"", ""05135"": ""8.72""}","Fulton|Sharp","05049|05135","FALSE","FALSE","America/Chicago"
-"72555","35.77484","-91.88225","Marcella","AR","Arkansas","TRUE","","139","4.0","05137","Stone","{""05137"": ""100""}","Stone","05137","FALSE","FALSE","America/Chicago"
-"72556","36.02359","-91.95913","Melbourne","AR","Arkansas","TRUE","","3343","8.4","05065","Izard","{""05065"": ""100""}","Izard","05065","FALSE","FALSE","America/Chicago"
-"72560","35.85171","-92.09184","Mountain View","AR","Arkansas","TRUE","","9075","10.7","05137","Stone","{""05137"": ""98.28"", ""05065"": ""1.72""}","Stone|Izard","05137|05065","FALSE","FALSE","America/Chicago"
-"72561","35.95107","-91.80289","Mount Pleasant","AR","Arkansas","TRUE","","848","6.4","05065","Izard","{""05065"": ""100""}","Izard","05065","FALSE","FALSE","America/Chicago"
-"72562","35.73264","-91.39823","Newark","AR","Arkansas","TRUE","","2220","10.4","05063","Independence","{""05063"": ""100""}","Independence","05063","FALSE","FALSE","America/Chicago"
-"72564","35.59934","-91.45696","Oil Trough","AR","Arkansas","TRUE","","383","5.0","05063","Independence","{""05063"": ""100""}","Independence","05063","FALSE","FALSE","America/Chicago"
-"72565","36.21624","-91.90981","Oxford","AR","Arkansas","TRUE","","726","7.3","05065","Izard","{""05065"": ""100""}","Izard","05065","FALSE","FALSE","America/Chicago"
-"72566","36.21667","-92.07814","Pineville","AR","Arkansas","TRUE","","619","5.1","05065","Izard","{""05065"": ""100""}","Izard","05065","FALSE","FALSE","America/Chicago"
-"72567","35.81461","-91.92601","Pleasant Grove","AR","Arkansas","TRUE","","264","8.8","05137","Stone","{""05137"": ""100""}","Stone","05137","FALSE","FALSE","America/Chicago"
-"72568","35.56936","-91.62503","Pleasant Plains","AR","Arkansas","TRUE","","1148","9.5","05063","Independence","{""05063"": ""100""}","Independence","05063","FALSE","FALSE","America/Chicago"
-"72569","36.10293","-91.44522","Poughkeepsie","AR","Arkansas","TRUE","","746","6.9","05135","Sharp","{""05135"": ""100""}","Sharp","05135","FALSE","FALSE","America/Chicago"
-"72571","35.6421","-91.53471","Rosie","AR","Arkansas","TRUE","","267","5.6","05063","Independence","{""05063"": ""100""}","Independence","05063","FALSE","FALSE","America/Chicago"
-"72572","35.89914","-91.29099","Saffell","AR","Arkansas","TRUE","","140","3.8","05075","Lawrence","{""05075"": ""87.28"", ""05063"": ""12.72""}","Lawrence|Independence","05075|05063","FALSE","FALSE","America/Chicago"
-"72573","36.07315","-91.7962","Sage","AR","Arkansas","TRUE","","216","5.7","05065","Izard","{""05065"": ""100""}","Izard","05065","FALSE","FALSE","America/Chicago"
-"72576","36.35157","-91.84667","Salem","AR","Arkansas","TRUE","","4059","9.8","05049","Fulton","{""05049"": ""100""}","Fulton","05049","FALSE","FALSE","America/Chicago"
-"72577","36.02715","-91.71397","Sidney","AR","Arkansas","TRUE","","694","6.4","05065","Izard","{""05065"": ""56.57"", ""05135"": ""43.43""}","Izard|Sharp","05065|05135","FALSE","FALSE","America/Chicago"
-"72578","36.45315","-91.88636","Sturkie","AR","Arkansas","TRUE","","104","1.9","05049","Fulton","{""05049"": ""100""}","Fulton","05049","FALSE","FALSE","America/Chicago"
-"72579","35.83721","-91.44507","Sulphur Rock","AR","Arkansas","TRUE","","1280","13.1","05063","Independence","{""05063"": ""95.42"", ""05135"": ""4.58""}","Independence|Sharp","05063|05135","FALSE","FALSE","America/Chicago"
-"72581","35.54504","-91.97485","Tumbling Shoals","AR","Arkansas","TRUE","","1096","38.3","05023","Cleburne","{""05023"": ""100""}","Cleburne","05023","FALSE","FALSE","America/Chicago"
-"72583","36.40244","-91.9915","Viola","AR","Arkansas","TRUE","","2360","9.2","05049","Fulton","{""05049"": ""100""}","Fulton","05049","FALSE","FALSE","America/Chicago"
-"72584","36.14103","-91.84371","Violet Hill","AR","Arkansas","TRUE","","277","3.4","05065","Izard","{""05065"": ""100""}","Izard","05065","FALSE","FALSE","America/Chicago"
-"72585","36.18321","-92.00814","Wideman","AR","Arkansas","TRUE","","306","5.3","05065","Izard","{""05065"": ""100""}","Izard","05065","FALSE","FALSE","America/Chicago"
-"72587","36.22564","-91.81683","Wiseman","AR","Arkansas","TRUE","","47","1.7","05065","Izard","{""05065"": ""100""}","Izard","05065","FALSE","FALSE","America/Chicago"
-"72601","36.23724","-93.09177","Harrison","AR","Arkansas","TRUE","","30327","31.7","05009","Boone","{""05009"": ""98.33"", ""05101"": ""1.09"", ""05089"": ""0.58""}","Boone|Newton|Marion","05009|05101|05089","FALSE","FALSE","America/Chicago"
-"72611","36.25035","-93.33028","Alpena","AR","Arkansas","TRUE","","1856","9.4","05015","Carroll","{""05015"": ""55.66"", ""05009"": ""44.34""}","Carroll|Boone","05015|05009","FALSE","FALSE","America/Chicago"
-"72616","36.34291","-93.5564","Berryville","AR","Arkansas","TRUE","","11201","20.6","05015","Carroll","{""05015"": ""100""}","Carroll","05015","FALSE","FALSE","America/Chicago"
-"72617","36.02202","-92.36464","Big Flat","AR","Arkansas","TRUE","","48","0.5","05005","Baxter","{""05005"": ""100""}","Baxter","05005","FALSE","FALSE","America/Chicago"
-"72619","36.37882","-92.58506","Bull Shoals","AR","Arkansas","TRUE","","2260","189.5","05089","Marion","{""05089"": ""100""}","Marion","05089","FALSE","FALSE","America/Chicago"
-"72623","36.46327","-92.31662","Clarkridge","AR","Arkansas","TRUE","","997","15.3","05005","Baxter","{""05005"": ""100""}","Baxter","05005","FALSE","FALSE","America/Chicago"
-"72624","36.06168","-93.37471","Compton","AR","Arkansas","TRUE","","507","2.9","05101","Newton","{""05101"": ""90.24"", ""05015"": ""9.76""}","Newton|Carroll","05101|05015","FALSE","FALSE","America/Chicago"
-"72626","36.3038","-92.53916","Cotter","AR","Arkansas","TRUE","","1379","94.3","05005","Baxter","{""05005"": ""100""}","Baxter","05005","FALSE","FALSE","America/Chicago"
-"72628","35.8346","-93.28745","Deer","AR","Arkansas","TRUE","","1006","3.4","05101","Newton","{""05101"": ""100""}","Newton","05101","FALSE","FALSE","America/Chicago"
-"72629","35.7393","-92.5584","Dennard","AR","Arkansas","TRUE","","353","3.1","05141","Van Buren","{""05141"": ""100""}","Van Buren","05141","FALSE","FALSE","America/Chicago"
-"72630","36.47425","-92.91034","Diamond City","AR","Arkansas","TRUE","","287","130.7","05009","Boone","{""05009"": ""100""}","Boone","05009","FALSE","FALSE","America/Chicago"
-"72631","36.45378","-93.79107","Eureka Springs","AR","Arkansas","TRUE","","3808","30.7","05015","Carroll","{""05015"": ""100""}","Carroll","05015","FALSE","FALSE","America/Chicago"
-"72632","36.37356","-93.74488","Eureka Springs","AR","Arkansas","TRUE","","4120","16.0","05015","Carroll","{""05015"": ""99.28"", ""05087"": ""0.72""}","Carroll|Madison","05015|05087","FALSE","FALSE","America/Chicago"
-"72633","36.13546","-92.87198","Everton","AR","Arkansas","TRUE","","1599","6.5","05009","Boone","{""05009"": ""60.01"", ""05089"": ""30.99"", ""05129"": ""9""}","Boone|Marion|Searcy","05009|05089|05129","FALSE","FALSE","America/Chicago"
-"72634","36.20349","-92.52832","Flippin","AR","Arkansas","TRUE","","4524","13.6","05089","Marion","{""05089"": ""100""}","Marion","05089","FALSE","FALSE","America/Chicago"
-"72635","36.31793","-92.48775","Gassville","AR","Arkansas","TRUE","","3913","51.8","05005","Baxter","{""05005"": ""100""}","Baxter","05005","FALSE","FALSE","America/Chicago"
-"72636","35.99012","-92.71595","Gilbert","AR","Arkansas","TRUE","","3","4.0","05129","Searcy","{""05129"": ""100""}","Searcy","05129","FALSE","FALSE","America/Chicago"
-"72638","36.31994","-93.40742","Green Forest","AR","Arkansas","TRUE","","6885","14.2","05015","Carroll","{""05015"": ""99.19"", ""05101"": ""0.81""}","Carroll|Newton","05015|05101","FALSE","FALSE","America/Chicago"
-"72639","36.01278","-92.48822","Harriet","AR","Arkansas","TRUE","","627","3.8","05129","Searcy","{""05129"": ""100""}","Searcy","05129","FALSE","FALSE","America/Chicago"
-"72640","36.01107","-93.05316","Hasty","AR","Arkansas","TRUE","","394","6.8","05101","Newton","{""05101"": ""100""}","Newton","05101","FALSE","FALSE","America/Chicago"
-"72641","35.98243","-93.23048","Jasper","AR","Arkansas","TRUE","","3164","8.9","05101","Newton","{""05101"": ""100""}","Newton","05101","FALSE","FALSE","America/Chicago"
-"72642","36.37091","-92.54407","Lakeview","AR","Arkansas","TRUE","","1841","82.9","05005","Baxter","{""05005"": ""100""}","Baxter","05005","FALSE","FALSE","America/Chicago"
-"72644","36.42477","-92.97076","Lead Hill","AR","Arkansas","TRUE","","2497","11.3","05009","Boone","{""05009"": ""94.4"", ""05089"": ""4.94"", ""29213"": ""0.66""}","Boone|Marion|Taney","05009|05089|29213","FALSE","FALSE","America/Chicago"
-"72645","35.80601","-92.56272","Leslie","AR","Arkansas","TRUE","","2072","4.6","05129","Searcy","{""05129"": ""78.95"", ""05141"": ""12.27"", ""05137"": ""8.78""}","Searcy|Van Buren|Stone","05129|05141|05137","FALSE","FALSE","America/Chicago"
-"72648","36.08044","-93.15598","Marble Falls","AR","Arkansas","TRUE","","392","3.4","05101","Newton","{""05101"": ""100""}","Newton","05101","FALSE","FALSE","America/Chicago"
-"72650","35.88004","-92.70619","Marshall","AR","Arkansas","TRUE","","3855","5.5","05129","Searcy","{""05129"": ""95.76"", ""05137"": ""4.24""}","Searcy|Stone","05129|05137","FALSE","FALSE","America/Chicago"
-"72651","36.38675","-92.48148","Midway","AR","Arkansas","TRUE","","1291","67.5","05005","Baxter","{""05005"": ""100""}","Baxter","05005","FALSE","FALSE","America/Chicago"
-"72653","36.34238","-92.38619","Mountain Home","AR","Arkansas","TRUE","","28285","49.2","05005","Baxter","{""05005"": ""99.52"", ""05089"": ""0.48""}","Baxter|Marion","05005|05089","FALSE","FALSE","America/Chicago"
-"72655","35.9011","-93.02145","Mount Judea","AR","Arkansas","TRUE","","246","1.0","05101","Newton","{""05101"": ""100""}","Newton","05101","FALSE","FALSE","America/Chicago"
-"72658","36.16637","-92.32049","Norfork","AR","Arkansas","TRUE","","1390","7.2","05005","Baxter","{""05005"": ""100""}","Baxter","05005","FALSE","FALSE","America/Chicago"
-"72660","36.48072","-93.37504","Oak Grove","AR","Arkansas","TRUE","","620","14.0","05015","Carroll","{""05015"": ""100""}","Carroll","05015","FALSE","FALSE","America/Chicago"
-"72661","36.44905","-92.58572","Oakland","AR","Arkansas","TRUE","","534","8.0","05089","Marion","{""05089"": ""100""}","Marion","05089","FALSE","FALSE","America/Chicago"
-"72662","36.43188","-93.18086","Omaha","AR","Arkansas","TRUE","","2729","9.0","05009","Boone","{""05009"": ""100""}","Boone","05009","FALSE","FALSE","America/Chicago"
-"72663","35.93775","-92.32779","Onia","AR","Arkansas","TRUE","","155","2.6","05137","Stone","{""05137"": ""100""}","Stone","05137","FALSE","FALSE","America/Chicago"
-"72666","35.93893","-93.26859","Parthenon","AR","Arkansas","TRUE","","83","1.8","05101","Newton","{""05101"": ""100""}","Newton","05101","FALSE","FALSE","America/Chicago"
-"72668","36.42446","-92.77192","Peel","AR","Arkansas","TRUE","","198","2.7","05089","Marion","{""05089"": ""100""}","Marion","05089","FALSE","FALSE","America/Chicago"
-"72669","36.06472","-92.87615","Pindall","AR","Arkansas","TRUE","","101","22.1","05129","Searcy","{""05129"": ""100""}","Searcy","05129","FALSE","FALSE","America/Chicago"
-"72670","35.97284","-93.38538","Ponca","AR","Arkansas","TRUE","","79","1.8","05101","Newton","{""05101"": ""100""}","Newton","05101","FALSE","FALSE","America/Chicago"
-"72672","36.28133","-92.83781","Pyatt","AR","Arkansas","TRUE","","301","16.5","05089","Marion","{""05089"": ""100""}","Marion","05089","FALSE","FALSE","America/Chicago"
-"72675","36.00345","-92.78999","Saint Joe","AR","Arkansas","TRUE","","1534","3.4","05129","Searcy","{""05129"": ""88.63"", ""05089"": ""11.37""}","Searcy|Marion","05129|05089","FALSE","FALSE","America/Chicago"
-"72677","36.2514","-92.68716","Summit","AR","Arkansas","TRUE","","428","200.8","05089","Marion","{""05089"": ""100""}","Marion","05089","FALSE","FALSE","America/Chicago"
-"72679","35.73421","-92.82794","Tilly","AR","Arkansas","TRUE","","7","0.4","05115","Pope","{""05115"": ""68.75"", ""05129"": ""31.25""}","Pope|Searcy","05115|05129","FALSE","FALSE","America/Chicago"
-"72680","35.88639","-92.32701","Timbo","AR","Arkansas","TRUE","","942","9.8","05137","Stone","{""05137"": ""100""}","Stone","05137","FALSE","FALSE","America/Chicago"
-"72682","36.14009","-92.73739","Valley Springs","AR","Arkansas","TRUE","","226","6.1","05089","Marion","{""05089"": ""100""}","Marion","05089","FALSE","FALSE","America/Chicago"
-"72683","35.93464","-93.10076","Vendor","AR","Arkansas","TRUE","","275","10.3","05101","Newton","{""05101"": ""100""}","Newton","05101","FALSE","FALSE","America/Chicago"
-"72685","36.05571","-92.97529","Western Grove","AR","Arkansas","TRUE","","1288","9.7","05101","Newton","{""05101"": ""86.23"", ""05129"": ""9.38"", ""05009"": ""4.4""}","Newton|Searcy|Boone","05101|05129|05009","FALSE","FALSE","America/Chicago"
-"72686","35.77804","-92.844","Witts Springs","AR","Arkansas","TRUE","","110","1.5","05129","Searcy","{""05129"": ""100""}","Searcy","05129","FALSE","FALSE","America/Chicago"
-"72687","36.26761","-92.71362","Yellville","AR","Arkansas","TRUE","","6749","9.3","05089","Marion","{""05089"": ""99.94"", ""05009"": ""0.06""}","Marion|Boone","05089|05009","FALSE","FALSE","America/Chicago"
-"72701","35.98468","-94.08076","Fayetteville","AR","Arkansas","TRUE","","45104","137.6","05143","Washington","{""05143"": ""100""}","Washington","05143","FALSE","FALSE","America/Chicago"
-"72703","36.11505","-94.04893","Fayetteville","AR","Arkansas","TRUE","","32704","282.4","05143","Washington","{""05143"": ""99.8"", ""05087"": ""0.2""}","Washington|Madison","05143|05087","FALSE","FALSE","America/Chicago"
-"72704","36.10359","-94.29664","Fayetteville","AR","Arkansas","TRUE","","26416","134.2","05143","Washington","{""05143"": ""100""}","Washington","05143","FALSE","FALSE","America/Chicago"
-"72712","36.3504","-94.25425","Bentonville","AR","Arkansas","TRUE","","57292","220.9","05007","Benton","{""05007"": ""100""}","Benton","05007","FALSE","FALSE","America/Chicago"
-"72714","36.46757","-94.21662","Bella Vista","AR","Arkansas","TRUE","","13324","271.3","05007","Benton","{""05007"": ""100""}","Benton","05007","FALSE","FALSE","America/Chicago"
-"72715","36.46538","-94.30641","Bella Vista","AR","Arkansas","TRUE","","15839","214.1","05007","Benton","{""05007"": ""100""}","Benton","05007","FALSE","FALSE","America/Chicago"
-"72717","35.84003","-94.42666","Canehill","AR","Arkansas","TRUE","","671","5.8","05143","Washington","{""05143"": ""100""}","Washington","05143","FALSE","FALSE","America/Chicago"
-"72718","36.26962","-94.22274","Cave Springs","AR","Arkansas","TRUE","","3294","195.1","05007","Benton","{""05007"": ""100""}","Benton","05007","FALSE","FALSE","America/Chicago"
-"72719","36.36759","-94.2958","Centerton","AR","Arkansas","TRUE","","12698","576.7","05007","Benton","{""05007"": ""100""}","Benton","05007","FALSE","FALSE","America/Chicago"
-"72721","35.82736","-93.78939","Combs","AR","Arkansas","TRUE","","325","2.8","05087","Madison","{""05087"": ""100""}","Madison","05087","FALSE","FALSE","America/Chicago"
-"72722","36.34181","-94.46275","Decatur","AR","Arkansas","TRUE","","3331","30.4","05007","Benton","{""05007"": ""100""}","Benton","05007","FALSE","FALSE","America/Chicago"
-"72727","35.92287","-93.92865","Elkins","AR","Arkansas","TRUE","","6069","15.1","05143","Washington","{""05143"": ""75.43"", ""05087"": ""24.57""}","Washington|Madison","05143|05087","FALSE","FALSE","America/Chicago"
-"72729","35.78229","-94.46383","Evansville","AR","Arkansas","TRUE","","166","5.2","05143","Washington","{""05143"": ""100""}","Washington","05143","FALSE","FALSE","America/Chicago"
-"72730","36.03056","-94.26597","Farmington","AR","Arkansas","TRUE","","8481","158.2","05143","Washington","{""05143"": ""100""}","Washington","05143","FALSE","FALSE","America/Chicago"
-"72732","36.43284","-93.95883","Garfield","AR","Arkansas","TRUE","","5118","23.2","05007","Benton","{""05007"": ""100""}","Benton","05007","FALSE","FALSE","America/Chicago"
-"72734","36.27286","-94.45337","Gentry","AR","Arkansas","TRUE","","8410","39.8","05007","Benton","{""05007"": ""100""}","Benton","05007","FALSE","FALSE","America/Chicago"
-"72736","36.41216","-94.46406","Gravette","AR","Arkansas","TRUE","","6850","29.8","05007","Benton","{""05007"": ""100""}","Benton","05007","FALSE","FALSE","America/Chicago"
-"72738","36.16056","-93.88661","Hindsville","AR","Arkansas","TRUE","","2471","11.2","05087","Madison","{""05087"": ""73.63"", ""05143"": ""21.21"", ""05007"": ""5.17""}","Madison|Washington|Benton","05087|05143|05007","FALSE","FALSE","America/Chicago"
-"72739","36.42598","-94.33012","Hiwasse","AR","Arkansas","TRUE","","744","55.9","05007","Benton","{""05007"": ""100""}","Benton","05007","FALSE","FALSE","America/Chicago"
-"72740","36.10253","-93.68698","Huntsville","AR","Arkansas","TRUE","","9675","10.1","05087","Madison","{""05087"": ""97.62"", ""05015"": ""2.36"", ""05101"": ""0.02""}","Madison|Carroll|Newton","05087|05015|05101","FALSE","FALSE","America/Chicago"
-"72742","35.9715","-93.4978","Kingston","AR","Arkansas","TRUE","","527","2.7","05087","Madison","{""05087"": ""88.81"", ""05101"": ""11.19""}","Madison|Newton","05087|05101","FALSE","FALSE","America/Chicago"
-"72744","35.96356","-94.43802","Lincoln","AR","Arkansas","TRUE","","5363","26.2","05143","Washington","{""05143"": ""100""}","Washington","05143","FALSE","FALSE","America/Chicago"
-"72745","36.24757","-94.10063","Lowell","AR","Arkansas","TRUE","","13941","163.1","05007","Benton","{""05007"": ""100""}","Benton","05007","FALSE","FALSE","America/Chicago"
-"72747","36.36856","-94.58277","Maysville","AR","Arkansas","TRUE","","301","20.7","05007","Benton","{""05007"": ""100""}","Benton","05007","FALSE","FALSE","America/Chicago"
-"72749","35.86739","-94.43688","Morrow","AR","Arkansas","TRUE","","245","71.8","05143","Washington","{""05143"": ""100""}","Washington","05143","FALSE","FALSE","America/Chicago"
-"72751","36.46105","-94.12033","Pea Ridge","AR","Arkansas","TRUE","","7692","119.8","05007","Benton","{""05007"": ""100""}","Benton","05007","FALSE","FALSE","America/Chicago"
-"72752","35.80409","-93.57713","Pettigrew","AR","Arkansas","TRUE","","343","1.1","05087","Madison","{""05087"": ""75.43"", ""05071"": ""16.72"", ""05101"": ""7.85""}","Madison|Johnson|Newton","05087|05071|05101","FALSE","FALSE","America/Chicago"
-"72753","35.93132","-94.32681","Prairie Grove","AR","Arkansas","TRUE","","9680","41.8","05143","Washington","{""05143"": ""100""}","Washington","05143","FALSE","FALSE","America/Chicago"
-"72756","36.32118","-93.98341","Rogers","AR","Arkansas","TRUE","","41584","115.2","05007","Benton","{""05007"": ""99.33"", ""05087"": ""0.67""}","Benton|Madison","05007|05087","FALSE","FALSE","America/Chicago"
-"72758","36.29972","-94.13837","Rogers","AR","Arkansas","TRUE","","41523","526.9","05007","Benton","{""05007"": ""100""}","Benton","05007","FALSE","FALSE","America/Chicago"
-"72760","35.83087","-93.70994","Saint Paul","AR","Arkansas","TRUE","","318","3.5","05087","Madison","{""05087"": ""100""}","Madison","05087","FALSE","FALSE","America/Chicago"
-"72761","36.17017","-94.45816","Siloam Springs","AR","Arkansas","TRUE","","22529","76.3","05007","Benton","{""05007"": ""99.19"", ""05143"": ""0.81""}","Benton|Washington","05007|05143","FALSE","FALSE","America/Chicago"
-"72762","36.18777","-94.22923","Springdale","AR","Arkansas","TRUE","","41189","265.6","05143","Washington","{""05143"": ""89.64"", ""05007"": ""10.36""}","Washington|Benton","05143|05007","FALSE","FALSE","America/Chicago"
-"72764","36.17837","-94.05257","Springdale","AR","Arkansas","TRUE","","56913","352.7","05143","Washington","{""05143"": ""89.25"", ""05007"": ""10.75""}","Washington|Benton","05143|05007","FALSE","FALSE","America/Chicago"
-"72768","36.47694","-94.50185","Sulphur Springs","AR","Arkansas","TRUE","","1243","12.7","05007","Benton","{""05007"": ""100""}","Benton","05007","FALSE","FALSE","America/Chicago"
-"72769","36.03345","-94.49866","Summers","AR","Arkansas","TRUE","","1425","13.5","05143","Washington","{""05143"": ""100""}","Washington","05143","FALSE","FALSE","America/Chicago"
-"72773","36.0165","-93.84895","Wesley","AR","Arkansas","TRUE","","1437","17.9","05087","Madison","{""05087"": ""91.71"", ""05143"": ""8.29""}","Madison|Washington","05087|05143","FALSE","FALSE","America/Chicago"
-"72774","35.87852","-94.21518","West Fork","AR","Arkansas","TRUE","","5975","19.7","05143","Washington","{""05143"": ""100""}","Washington","05143","FALSE","FALSE","America/Chicago"
-"72776","35.92133","-93.64586","Witter","AR","Arkansas","TRUE","","615","3.9","05087","Madison","{""05087"": ""100""}","Madison","05087","FALSE","FALSE","America/Chicago"
-"72801","35.2791","-93.14081","Russellville","AR","Arkansas","TRUE","","19074","905.1","05115","Pope","{""05115"": ""100""}","Pope","05115","FALSE","FALSE","America/Chicago"
-"72802","35.31282","-93.06679","Russellville","AR","Arkansas","TRUE","","22415","64.3","05115","Pope","{""05115"": ""100""}","Pope","05115","FALSE","FALSE","America/Chicago"
-"72821","35.44217","-93.72352","Altus","AR","Arkansas","TRUE","","1996","21.0","05047","Franklin","{""05047"": ""82.37"", ""05071"": ""17.63""}","Franklin|Johnson","05047|05071","FALSE","FALSE","America/Chicago"
-"72823","35.25144","-92.90652","Atkins","AR","Arkansas","TRUE","","5850","19.2","05115","Pope","{""05115"": ""96.41"", ""05029"": ""3.59""}","Pope|Conway","05115|05029","FALSE","FALSE","America/Chicago"
-"72824","35.13522","-93.41369","Belleville","AR","Arkansas","TRUE","","1821","8.7","05149","Yell","{""05149"": ""100""}","Yell","05149","FALSE","FALSE","America/Chicago"
-"72826","35.12286","-93.70927","Blue Mountain","AR","Arkansas","TRUE","","50","64.2","05083","Logan","{""05083"": ""100""}","Logan","05083","FALSE","FALSE","America/Chicago"
-"72827","34.87665","-93.61671","Bluffton","AR","Arkansas","TRUE","","213","2.1","05149","Yell","{""05149"": ""100""}","Yell","05149","FALSE","FALSE","America/Chicago"
-"72828","34.92863","-93.54754","Briggsville","AR","Arkansas","TRUE","","35","0.7","05149","Yell","{""05149"": ""100""}","Yell","05149","FALSE","FALSE","America/Chicago"
-"72830","35.51387","-93.51169","Clarksville","AR","Arkansas","TRUE","","15704","46.2","05071","Johnson","{""05071"": ""100""}","Johnson","05071","FALSE","FALSE","America/Chicago"
-"72832","35.41275","-93.66679","Coal Hill","AR","Arkansas","TRUE","","1186","55.5","05071","Johnson","{""05071"": ""100""}","Johnson","05071","FALSE","FALSE","America/Chicago"
-"72833","35.02219","-93.47503","Danville","AR","Arkansas","TRUE","","4356","9.3","05149","Yell","{""05149"": ""97.26"", ""05127"": ""2.74""}","Yell|Scott","05149|05127","FALSE","FALSE","America/Chicago"
-"72834","35.16883","-93.18246","Dardanelle","AR","Arkansas","TRUE","","10402","25.7","05149","Yell","{""05149"": ""99.4"", ""05083"": ""0.6""}","Yell|Logan","05149|05083","FALSE","FALSE","America/Chicago"
-"72835","35.2779","-93.3482","Delaware","AR","Arkansas","TRUE","","827","6.2","05083","Logan","{""05083"": ""100""}","Logan","05083","FALSE","FALSE","America/Chicago"
-"72837","35.50538","-93.10988","Dover","AR","Arkansas","TRUE","","7991","13.2","05115","Pope","{""05115"": ""100""}","Pope","05115","FALSE","FALSE","America/Chicago"
-"72838","34.90528","-93.67653","Gravelly","AR","Arkansas","TRUE","","115","2.4","05149","Yell","{""05149"": ""100""}","Yell","05149","FALSE","FALSE","America/Chicago"
-"72839","35.65409","-93.2641","Hagarville","AR","Arkansas","TRUE","","315","0.8","05071","Johnson","{""05071"": ""93.8"", ""05101"": ""4.13"", ""05115"": ""2.07""}","Johnson|Newton|Pope","05071|05101|05115","FALSE","FALSE","America/Chicago"
-"72840","35.46177","-93.61585","Hartman","AR","Arkansas","TRUE","","2121","15.6","05071","Johnson","{""05071"": ""100""}","Johnson","05071","FALSE","FALSE","America/Chicago"
-"72841","34.84201","-93.77213","Harvey","AR","Arkansas","TRUE","","230","1.7","05127","Scott","{""05127"": ""100""}","Scott","05127","FALSE","FALSE","America/Chicago"
-"72842","35.08479","-93.60295","Havana","AR","Arkansas","TRUE","","1158","4.7","05149","Yell","{""05149"": ""100""}","Yell","05149","FALSE","FALSE","America/Chicago"
-"72843","35.57628","-92.93457","Hector","AR","Arkansas","TRUE","","2600","4.7","05115","Pope","{""05115"": ""100""}","Pope","05115","FALSE","FALSE","America/Chicago"
-"72845","35.36412","-93.37526","Knoxville","AR","Arkansas","TRUE","","1006","33.6","05071","Johnson","{""05071"": ""100""}","Johnson","05071","FALSE","FALSE","America/Chicago"
-"72846","35.48454","-93.32588","Lamar","AR","Arkansas","TRUE","","4286","17.2","05071","Johnson","{""05071"": ""98.88"", ""05115"": ""1.12""}","Johnson|Pope","05071|05115","FALSE","FALSE","America/Chicago"
-"72847","35.37376","-93.27198","London","AR","Arkansas","TRUE","","2765","24.6","05115","Pope","{""05115"": ""72.63"", ""05071"": ""27.37""}","Pope|Johnson","05115|05071","FALSE","FALSE","America/Chicago"
-"72851","35.25623","-93.46203","New Blaine","AR","Arkansas","TRUE","","440","3.6","05083","Logan","{""05083"": ""100""}","Logan","05083","FALSE","FALSE","America/Chicago"
-"72852","35.68371","-93.5537","Oark","AR","Arkansas","TRUE","","82","0.4","05071","Johnson","{""05071"": ""91.11"", ""05101"": ""8.89""}","Johnson|Newton","05071|05101","FALSE","FALSE","America/Chicago"
-"72853","35.01934","-93.21305","Ola","AR","Arkansas","TRUE","","2357","15.0","05149","Yell","{""05149"": ""94.05"", ""05105"": ""5.95""}","Yell|Perry","05149|05105","FALSE","FALSE","America/Chicago"
-"72854","35.70634","-93.4243","Ozone","AR","Arkansas","TRUE","","819","2.2","05071","Johnson","{""05071"": ""79.52"", ""05101"": ""20.48""}","Johnson|Newton","05071|05101","FALSE","FALSE","America/Chicago"
-"72855","35.25293","-93.67872","Paris","AR","Arkansas","TRUE","","6263","13.4","05083","Logan","{""05083"": ""99.45"", ""05047"": ""0.55""}","Logan|Franklin","05083|05047","FALSE","FALSE","America/Chicago"
-"72856","35.77718","-93.07493","Pelsor","AR","Arkansas","TRUE","","352","1.0","05101","Newton","{""05101"": ""92.67"", ""05115"": ""7.33""}","Newton|Pope","05101|05115","FALSE","FALSE","America/Chicago"
-"72857","34.85777","-93.31513","Plainview","AR","Arkansas","TRUE","","1350","1.6","05149","Yell","{""05149"": ""78.39"", ""05105"": ""21.61""}","Yell|Perry","05149|05105","FALSE","FALSE","America/Chicago"
-"72858","35.23088","-93.0423","Pottsville","AR","Arkansas","TRUE","","3827","58.8","05115","Pope","{""05115"": ""100""}","Pope","05115","FALSE","FALSE","America/Chicago"
-"72860","34.95278","-93.42841","Rover","AR","Arkansas","TRUE","","269","2.9","05149","Yell","{""05149"": ""100""}","Yell","05149","FALSE","FALSE","America/Chicago"
-"72863","35.36513","-93.50894","Scranton","AR","Arkansas","TRUE","","1844","13.7","05083","Logan","{""05083"": ""100""}","Logan","05083","FALSE","FALSE","America/Chicago"
-"72865","35.3097","-93.5663","Subiaco","AR","Arkansas","TRUE","","1381","19.1","05083","Logan","{""05083"": ""100""}","Logan","05083","FALSE","FALSE","America/Chicago"
-"72901","35.3664","-94.41576","Fort Smith","AR","Arkansas","TRUE","","21537","949.2","05131","Sebastian","{""05131"": ""100""}","Sebastian","05131","FALSE","FALSE","America/Chicago"
-"72903","35.35107","-94.3607","Fort Smith","AR","Arkansas","TRUE","","24758","570.5","05131","Sebastian","{""05131"": ""100""}","Sebastian","05131","FALSE","FALSE","America/Chicago"
-"72904","35.41336","-94.3828","Fort Smith","AR","Arkansas","TRUE","","23411","688.9","05131","Sebastian","{""05131"": ""100""}","Sebastian","05131","FALSE","FALSE","America/Chicago"
-"72908","35.30649","-94.40909","Fort Smith","AR","Arkansas","TRUE","","13303","633.5","05131","Sebastian","{""05131"": ""100""}","Sebastian","05131","FALSE","FALSE","America/Chicago"
-"72916","35.26786","-94.3766","Fort Smith","AR","Arkansas","TRUE","","8604","95.9","05131","Sebastian","{""05131"": ""100""}","Sebastian","05131","FALSE","FALSE","America/Chicago"
-"72921","35.47554","-94.19436","Alma","AR","Arkansas","TRUE","","13729","61.6","05033","Crawford","{""05033"": ""100""}","Crawford","05033","FALSE","FALSE","America/Chicago"
-"72923","35.31597","-94.3079","Barling","AR","Arkansas","TRUE","","4999","257.6","05131","Sebastian","{""05131"": ""100""}","Sebastian","05131","FALSE","FALSE","America/Chicago"
-"72926","34.7328","-94.04704","Boles","AR","Arkansas","TRUE","","643","3.0","05127","Scott","{""05127"": ""100""}","Scott","05127","FALSE","FALSE","America/Chicago"
-"72927","35.07485","-93.93653","Booneville","AR","Arkansas","TRUE","","8366","10.4","05083","Logan","{""05083"": ""93.1"", ""05127"": ""4.77"", ""05131"": ""2.13""}","Logan|Scott|Sebastian","05083|05127|05131","FALSE","FALSE","America/Chicago"
-"72928","35.28958","-93.93365","Branch","AR","Arkansas","TRUE","","937","15.5","05047","Franklin","{""05047"": ""100""}","Franklin","05047","FALSE","FALSE","America/Chicago"
-"72930","35.43318","-93.9725","Cecil","AR","Arkansas","TRUE","","319","4.3","05047","Franklin","{""05047"": ""100""}","Franklin","05047","FALSE","FALSE","America/Chicago"
-"72932","35.60416","-94.37726","Cedarville","AR","Arkansas","TRUE","","1400","28.7","05033","Crawford","{""05033"": ""100""}","Crawford","05033","FALSE","FALSE","America/Chicago"
-"72933","35.33011","-94.02178","Charleston","AR","Arkansas","TRUE","","5293","17.9","05047","Franklin","{""05047"": ""77.32"", ""05131"": ""21.68"", ""05083"": ""1""}","Franklin|Sebastian|Logan","05047|05131|05083","FALSE","FALSE","America/Chicago"
-"72934","35.68854","-94.27204","Chester","AR","Arkansas","TRUE","","678","3.8","05033","Crawford","{""05033"": ""100""}","Crawford","05033","FALSE","FALSE","America/Chicago"
-"72935","35.49135","-94.1264","Dyer","AR","Arkansas","TRUE","","453","53.5","05033","Crawford","{""05033"": ""100""}","Crawford","05033","FALSE","FALSE","America/Chicago"
-"72936","35.18957","-94.22563","Greenwood","AR","Arkansas","TRUE","","14931","65.6","05131","Sebastian","{""05131"": ""100""}","Sebastian","05131","FALSE","FALSE","America/Chicago"
-"72937","35.13269","-94.39671","Hackett","AR","Arkansas","TRUE","","3340","19.9","05131","Sebastian","{""05131"": ""100""}","Sebastian","05131","FALSE","FALSE","America/Chicago"
-"72938","35.00592","-94.37585","Hartford","AR","Arkansas","TRUE","","1187","9.1","05131","Sebastian","{""05131"": ""100""}","Sebastian","05131","FALSE","FALSE","America/Chicago"
-"72940","35.11501","-94.26013","Huntington","AR","Arkansas","TRUE","","2830","24.8","05131","Sebastian","{""05131"": ""100""}","Sebastian","05131","FALSE","FALSE","America/Chicago"
-"72941","35.36537","-94.15397","Lavaca","AR","Arkansas","TRUE","","5189","37.2","05131","Sebastian","{""05131"": ""100""}","Sebastian","05131","FALSE","FALSE","America/Chicago"
-"72943","35.17947","-93.78658","Magazine","AR","Arkansas","TRUE","","2076","8.1","05083","Logan","{""05083"": ""98.26"", ""05149"": ""1.74""}","Logan|Yell","05083|05149","FALSE","FALSE","America/Chicago"
-"72944","35.02865","-94.23611","Mansfield","AR","Arkansas","TRUE","","3800","18.6","05131","Sebastian","{""05131"": ""59.71"", ""05127"": ""40.29""}","Sebastian|Scott","05131|05127","FALSE","FALSE","America/Chicago"
-"72945","35.08832","-94.34901","Midland","AR","Arkansas","TRUE","","245","133.8","05131","Sebastian","{""05131"": ""100""}","Sebastian","05131","FALSE","FALSE","America/Chicago"
-"72946","35.6663","-94.14176","Mountainburg","AR","Arkansas","TRUE","","3760","15.1","05033","Crawford","{""05033"": ""100""}","Crawford","05033","FALSE","FALSE","America/Chicago"
-"72947","35.57205","-94.02797","Mulberry","AR","Arkansas","TRUE","","3889","11.9","05033","Crawford","{""05033"": ""71.19"", ""05047"": ""28.81""}","Crawford|Franklin","05033|05047","FALSE","FALSE","America/Chicago"
-"72948","35.7047","-94.41304","Natural Dam","AR","Arkansas","TRUE","","223","1.4","05033","Crawford","{""05033"": ""100""}","Crawford","05033","FALSE","FALSE","America/Chicago"
-"72949","35.57712","-93.80774","Ozark","AR","Arkansas","TRUE","","9408","10.6","05047","Franklin","{""05047"": ""96.42"", ""05071"": ""2.2"", ""05083"": ""1.38""}","Franklin|Johnson|Logan","05047|05071|05083","FALSE","FALSE","America/Chicago"
-"72950","34.78363","-93.88751","Parks","AR","Arkansas","TRUE","","386","1.1","05127","Scott","{""05127"": ""100""}","Scott","05127","FALSE","FALSE","America/Chicago"
-"72951","35.32075","-93.87512","Ratcliff","AR","Arkansas","TRUE","","912","21.1","05083","Logan","{""05083"": ""63.77"", ""05047"": ""36.23""}","Logan|Franklin","05083|05047","FALSE","FALSE","America/Chicago"
-"72952","35.56879","-94.30041","Rudy","AR","Arkansas","TRUE","","2614","19.8","05033","Crawford","{""05033"": ""100""}","Crawford","05033","FALSE","FALSE","America/Chicago"
-"72955","35.61223","-94.44388","Uniontown","AR","Arkansas","TRUE","","949","29.5","05033","Crawford","{""05033"": ""100""}","Crawford","05033","FALSE","FALSE","America/Chicago"
-"72956","35.46801","-94.34945","Van Buren","AR","Arkansas","TRUE","","36187","133.5","05033","Crawford","{""05033"": ""100""}","Crawford","05033","FALSE","FALSE","America/Chicago"
-"72958","34.90487","-94.12456","Waldron","AR","Arkansas","TRUE","","6824","7.6","05127","Scott","{""05127"": ""100""}","Scott","05127","FALSE","FALSE","America/Chicago"
-"72959","35.78275","-94.06806","Winslow","AR","Arkansas","TRUE","","2701","5.8","05143","Washington","{""05143"": ""93.9"", ""05033"": ""5.56"", ""05047"": ""0.54""}","Washington|Crawford|Franklin","05143|05033|05047","FALSE","FALSE","America/Chicago"
-"73002","34.94937","-97.731","Alex","OK","Oklahoma","TRUE","","925","7.6","40051","Grady","{""40051"": ""100""}","Grady","40051","FALSE","FALSE","America/Chicago"
-"73003","35.66893","-97.49716","Edmond","OK","Oklahoma","TRUE","","24279","1241.7","40109","Oklahoma","{""40109"": ""100""}","Oklahoma","40109","FALSE","FALSE","America/Chicago"
-"73004","35.148","-97.84626","Amber","OK","Oklahoma","TRUE","","1046","8.2","40051","Grady","{""40051"": ""100""}","Grady","40051","FALSE","FALSE","America/Chicago"
-"73005","35.05783","-98.2382","Anadarko","OK","Oklahoma","TRUE","","9563","23.9","40015","Caddo","{""40015"": ""100""}","Caddo","40015","FALSE","FALSE","America/Chicago"
-"73006","34.90892","-98.40267","Apache","OK","Oklahoma","TRUE","","3158","7.0","40015","Caddo","{""40015"": ""78.48"", ""40031"": ""21.52""}","Caddo|Comanche","40015|40031","FALSE","FALSE","America/Chicago"
-"73007","35.68863","-97.31856","Arcadia","OK","Oklahoma","TRUE","","2741","25.9","40109","Oklahoma","{""40109"": ""76.35"", ""40083"": ""23.65""}","Oklahoma|Logan","40109|40083","FALSE","FALSE","America/Chicago"
-"73008","35.51408","-97.64615","Bethany","OK","Oklahoma","TRUE","","20111","993.4","40109","Oklahoma","{""40109"": ""100""}","Oklahoma","40109","FALSE","FALSE","America/Chicago"
-"73009","35.2861","-98.36362","Binger","OK","Oklahoma","TRUE","","1228","5.9","40015","Caddo","{""40015"": ""100""}","Caddo","40015","FALSE","FALSE","America/Chicago"
-"73010","35.10622","-97.67844","Blanchard","OK","Oklahoma","TRUE","","19555","41.7","40087","McClain","{""40087"": ""52.01"", ""40051"": ""47.99""}","McClain|Grady","40087|40051","FALSE","FALSE","America/Chicago"
-"73011","34.84444","-97.74985","Bradley","OK","Oklahoma","TRUE","","319","2.4","40051","Grady","{""40051"": ""100""}","Grady","40051","FALSE","FALSE","America/Chicago"
-"73012","35.66753","-97.59363","Edmond","OK","Oklahoma","TRUE","","38314","414.2","40109","Oklahoma","{""40109"": ""100""}","Oklahoma","40109","FALSE","FALSE","America/Chicago"
-"73013","35.61946","-97.4812","Edmond","OK","Oklahoma","TRUE","","54181","716.3","40109","Oklahoma","{""40109"": ""100""}","Oklahoma","40109","FALSE","FALSE","America/Chicago"
-"73014","35.58109","-98.14626","Calumet","OK","Oklahoma","TRUE","","1718","4.5","40017","Canadian","{""40017"": ""100""}","Canadian","40017","FALSE","FALSE","America/Chicago"
-"73015","35.08056","-98.59537","Carnegie","OK","Oklahoma","TRUE","","2983","5.3","40015","Caddo","{""40015"": ""92.56"", ""40075"": ""3.72"", ""40149"": ""3.72""}","Caddo|Kiowa|Washita","40015|40075|40149","FALSE","FALSE","America/Chicago"
-"73016","35.79895","-97.6871","Cashion","OK","Oklahoma","TRUE","","1848","11.2","40073","Kingfisher","{""40073"": ""64.49"", ""40083"": ""35.51""}","Kingfisher|Logan","40073|40083","FALSE","FALSE","America/Chicago"
-"73017","34.92621","-98.0938","Cement","OK","Oklahoma","TRUE","","1511","7.7","40015","Caddo","{""40015"": ""59.55"", ""40051"": ""39.55"", ""40031"": ""0.9""}","Caddo|Grady|Comanche","40015|40051|40031","FALSE","FALSE","America/Chicago"
-"73018","35.05122","-97.94094","Chickasha","OK","Oklahoma","TRUE","","20190","49.5","40051","Grady","{""40051"": ""100""}","Grady","40051","FALSE","FALSE","America/Chicago"
-"73019","35.20606","-97.44358","Norman","OK","Oklahoma","TRUE","","0","0.0","40027","Cleveland","{""40027"": ""0""}","Cleveland","40027","FALSE","FALSE","America/Chicago"
-"73020","35.45871","-97.26217","Choctaw","OK","Oklahoma","TRUE","","24407","155.9","40109","Oklahoma","{""40109"": ""98.32"", ""40027"": ""1.68""}","Oklahoma|Cleveland","40109|40027","FALSE","FALSE","America/Chicago"
-"73021","35.34249","-98.6622","Colony","OK","Oklahoma","TRUE","","223","1.3","40149","Washita","{""40149"": ""87.5"", ""40015"": ""12.5""}","Washita|Caddo","40149|40015","FALSE","FALSE","America/Chicago"
-"73024","35.35864","-98.7981","Corn","OK","Oklahoma","TRUE","","811","7.0","40149","Washita","{""40149"": ""100""}","Washita","40149","FALSE","FALSE","America/Chicago"
-"73025","35.73235","-97.57274","Edmond","OK","Oklahoma","TRUE","","13475","98.8","40109","Oklahoma","{""40109"": ""55.61"", ""40083"": ""44.39""}","Oklahoma|Logan","40109|40083","FALSE","FALSE","America/Chicago"
-"73026","35.23431","-97.27915","Norman","OK","Oklahoma","TRUE","","10551","38.0","40027","Cleveland","{""40027"": ""100""}","Cleveland","40027","FALSE","FALSE","America/Chicago"
-"73027","35.97276","-97.24019","Coyle","OK","Oklahoma","TRUE","","1446","6.9","40083","Logan","{""40083"": ""63.16"", ""40119"": ""36.84""}","Logan|Payne","40083|40119","FALSE","FALSE","America/Chicago"
-"73028","35.97493","-97.62718","Crescent","OK","Oklahoma","TRUE","","3735","9.9","40083","Logan","{""40083"": ""95.83"", ""40073"": ""4.17""}","Logan|Kingfisher","40083|40073","FALSE","FALSE","America/Chicago"
-"73029","34.90561","-98.20637","Cyril","OK","Oklahoma","TRUE","","1674","13.1","40015","Caddo","{""40015"": ""100""}","Caddo","40015","FALSE","FALSE","America/Chicago"
-"73030","34.47363","-97.17406","Davis","OK","Oklahoma","TRUE","","4333","8.8","40099","Murray","{""40099"": ""95.21"", ""40049"": ""4.79""}","Murray|Garvin","40099|40049","FALSE","FALSE","America/Chicago"
-"73032","34.39865","-97.04676","Dougherty","OK","Oklahoma","TRUE","","199","37.8","40099","Murray","{""40099"": ""100""}","Murray","40099","FALSE","FALSE","America/Chicago"
-"73033","35.31442","-98.54661","Eakly","OK","Oklahoma","TRUE","","503","29.7","40015","Caddo","{""40015"": ""100""}","Caddo","40015","FALSE","FALSE","America/Chicago"
-"73034","35.70187","-97.42552","Edmond","OK","Oklahoma","TRUE","","45185","322.1","40109","Oklahoma","{""40109"": ""80.7"", ""40083"": ""19.3""}","Oklahoma|Logan","40109|40083","FALSE","FALSE","America/Chicago"
-"73036","35.50998","-97.95958","El Reno","OK","Oklahoma","TRUE","","21416","45.1","40017","Canadian","{""40017"": ""100""}","Canadian","40017","FALSE","FALSE","America/Chicago"
-"73038","35.12205","-98.44596","Fort Cobb","OK","Oklahoma","TRUE","","1876","4.8","40015","Caddo","{""40015"": ""100""}","Caddo","40015","FALSE","FALSE","America/Chicago"
-"73040","35.64159","-98.37557","Geary","OK","Oklahoma","TRUE","","1741","2.9","40011","Blaine","{""40011"": ""73.13"", ""40017"": ""26.87""}","Blaine|Canadian","40011|40017","FALSE","FALSE","America/Chicago"
-"73041","35.04283","-98.87662","Gotebo","OK","Oklahoma","TRUE","","349","1.3","40075","Kiowa","{""40075"": ""86.34"", ""40149"": ""13.66""}","Kiowa|Washita","40075|40149","FALSE","FALSE","America/Chicago"
-"73042","35.22809","-98.25066","Gracemont","OK","Oklahoma","TRUE","","1089","4.0","40015","Caddo","{""40015"": ""100""}","Caddo","40015","FALSE","FALSE","America/Chicago"
-"73043","35.73424","-98.39719","Greenfield","OK","Oklahoma","TRUE","","181","3.6","40011","Blaine","{""40011"": ""100""}","Blaine","40011","FALSE","FALSE","America/Chicago"
-"73044","35.86321","-97.42483","Guthrie","OK","Oklahoma","TRUE","","22935","33.7","40083","Logan","{""40083"": ""100""}","Logan","40083","FALSE","FALSE","America/Chicago"
-"73045","35.51214","-97.14369","Harrah","OK","Oklahoma","TRUE","","11803","68.9","40109","Oklahoma","{""40109"": ""82.62"", ""40081"": ""15.68"", ""40125"": ""1.71""}","Oklahoma|Lincoln|Pottawatomie","40109|40081|40125","FALSE","FALSE","America/Chicago"
-"73047","35.45869","-98.31647","Hinton","OK","Oklahoma","TRUE","","5126","13.1","40015","Caddo","{""40015"": ""82.61"", ""40017"": ""17.39""}","Caddo|Canadian","40015|40017","FALSE","FALSE","America/Chicago"
-"73048","35.4877","-98.55686","Hydro","OK","Oklahoma","TRUE","","2556","5.3","40015","Caddo","{""40015"": ""68.66"", ""40011"": ""23.42"", ""40039"": ""7.92""}","Caddo|Blaine|Custer","40015|40011|40039","FALSE","FALSE","America/Chicago"
-"73049","35.58643","-97.30171","Jones","OK","Oklahoma","TRUE","","5994","37.7","40109","Oklahoma","{""40109"": ""100""}","Oklahoma","40109","FALSE","FALSE","America/Chicago"
-"73050","35.93872","-97.26385","Langston","OK","Oklahoma","TRUE","","1022","245.7","40083","Logan","{""40083"": ""100""}","Logan","40083","FALSE","FALSE","America/Chicago"
-"73051","35.03322","-97.24589","Lexington","OK","Oklahoma","TRUE","","9986","30.1","40027","Cleveland","{""40027"": ""100""}","Cleveland","40027","FALSE","FALSE","America/Chicago"
-"73052","34.83152","-97.59585","Lindsay","OK","Oklahoma","TRUE","","6669","12.5","40049","Garvin","{""40049"": ""74.24"", ""40087"": ""24.12"", ""40051"": ""1.65""}","Garvin|McClain|Grady","40049|40087|40051","FALSE","FALSE","America/Chicago"
-"73053","35.36202","-98.41424","Lookeba","OK","Oklahoma","TRUE","","706","3.6","40015","Caddo","{""40015"": ""100""}","Caddo","40015","FALSE","FALSE","America/Chicago"
-"73054","35.67307","-97.19165","Luther","OK","Oklahoma","TRUE","","4363","18.4","40109","Oklahoma","{""40109"": ""77.2"", ""40081"": ""16.35"", ""40083"": ""6.45""}","Oklahoma|Lincoln|Logan","40109|40081|40083","FALSE","FALSE","America/Chicago"
-"73055","34.6457","-97.91351","Marlow","OK","Oklahoma","TRUE","","9861","15.0","40137","Stephens","{""40137"": ""93.71"", ""40051"": ""6.21"", ""40031"": ""0.08""}","Stephens|Grady|Comanche","40137|40051|40031","FALSE","FALSE","America/Chicago"
-"73056","36.17071","-97.6241","Marshall","OK","Oklahoma","TRUE","","425","1.4","40083","Logan","{""40083"": ""79.37"", ""40047"": ""17.01"", ""40073"": ""3.63""}","Logan|Garfield|Kingfisher","40083|40047|40073","FALSE","FALSE","America/Chicago"
-"73057","34.83306","-97.43162","Maysville","OK","Oklahoma","TRUE","","2386","10.5","40049","Garvin","{""40049"": ""84.44"", ""40087"": ""15.56""}","Garvin|McClain","40049|40087","FALSE","FALSE","America/Chicago"
-"73058","35.82065","-97.21824","Meridian","OK","Oklahoma","TRUE","","168","1.6","40083","Logan","{""40083"": ""100""}","Logan","40083","FALSE","FALSE","America/Chicago"
-"73059","35.31891","-98.04738","Minco","OK","Oklahoma","TRUE","","2932","6.7","40051","Grady","{""40051"": ""80.06"", ""40015"": ""17.2"", ""40017"": ""2.74""}","Grady|Caddo|Canadian","40051|40015|40017","FALSE","FALSE","America/Chicago"
-"73061","36.3488","-97.00648","Morrison","OK","Oklahoma","TRUE","","1661","5.7","40103","Noble","{""40103"": ""91.98"", ""40117"": ""8.02""}","Noble|Pawnee","40103|40117","FALSE","FALSE","America/Chicago"
-"73062","35.04526","-98.74388","Mountain View","OK","Oklahoma","TRUE","","1256","1.9","40075","Kiowa","{""40075"": ""87.68"", ""40149"": ""12.32""}","Kiowa|Washita","40075|40149","FALSE","FALSE","America/Chicago"
-"73063","36.05348","-97.42386","Mulhall","OK","Oklahoma","TRUE","","663","2.4","40083","Logan","{""40083"": ""86.54"", ""40119"": ""13.46""}","Logan|Payne","40083|40119","FALSE","FALSE","America/Chicago"
-"73064","35.37519","-97.74554","Mustang","OK","Oklahoma","TRUE","","24442","186.7","40017","Canadian","{""40017"": ""100""}","Canadian","40017","FALSE","FALSE","America/Chicago"
-"73065","35.25211","-97.61209","Newcastle","OK","Oklahoma","TRUE","","8718","65.7","40087","McClain","{""40087"": ""100""}","McClain","40087","FALSE","FALSE","America/Chicago"
-"73066","35.50023","-97.32752","Nicoma Park","OK","Oklahoma","TRUE","","396","183.9","40109","Oklahoma","{""40109"": ""100""}","Oklahoma","40109","FALSE","FALSE","America/Chicago"
-"73067","34.90313","-97.90822","Ninnekah","OK","Oklahoma","TRUE","","2189","6.8","40051","Grady","{""40051"": ""100""}","Grady","40051","FALSE","FALSE","America/Chicago"
-"73068","35.13905","-97.28281","Noble","OK","Oklahoma","TRUE","","11876","72.8","40027","Cleveland","{""40027"": ""100""}","Cleveland","40027","FALSE","FALSE","America/Chicago"
-"73069","35.24963","-97.46292","Norman","OK","Oklahoma","TRUE","","25149","612.1","40027","Cleveland","{""40027"": ""100""}","Cleveland","40027","FALSE","FALSE","America/Chicago"
-"73071","35.23899","-97.41142","Norman","OK","Oklahoma","TRUE","","43494","688.6","40027","Cleveland","{""40027"": ""100""}","Cleveland","40027","FALSE","FALSE","America/Chicago"
-"73072","35.20826","-97.50317","Norman","OK","Oklahoma","TRUE","","47482","348.0","40027","Cleveland","{""40027"": ""95.13"", ""40087"": ""4.87""}","Cleveland|McClain","40027|40087","FALSE","FALSE","America/Chicago"
-"73073","36.15589","-97.40778","Orlando","OK","Oklahoma","TRUE","","417","1.4","40083","Logan","{""40083"": ""54.16"", ""40103"": ""28.47"", ""40119"": ""13.49"", ""40047"": ""3.88""}","Logan|Noble|Payne|Garfield","40083|40103|40119|40047","FALSE","FALSE","America/Chicago"
-"73074","34.83027","-97.27979","Paoli","OK","Oklahoma","TRUE","","1099","10.7","40049","Garvin","{""40049"": ""96.3"", ""40087"": ""3.7""}","Garvin|McClain","40049|40087","FALSE","FALSE","America/Chicago"
-"73075","34.75158","-97.23352","Pauls Valley","OK","Oklahoma","TRUE","","9674","27.2","40049","Garvin","{""40049"": ""100""}","Garvin","40049","FALSE","FALSE","America/Chicago"
-"73077","36.30486","-97.26678","Perry","OK","Oklahoma","TRUE","","6742","9.7","40103","Noble","{""40103"": ""100""}","Noble","40103","FALSE","FALSE","America/Chicago"
-"73078","35.67033","-97.75351","Piedmont","OK","Oklahoma","TRUE","","11607","68.2","40017","Canadian","{""40017"": ""99.67"", ""40109"": ""0.33""}","Canadian|Oklahoma","40017|40109","FALSE","FALSE","America/Chicago"
-"73079","35.20623","-98.01554","Pocasset","OK","Oklahoma","TRUE","","471","2.4","40051","Grady","{""40051"": ""92.53"", ""40015"": ""7.47""}","Grady|Caddo","40051|40015","FALSE","FALSE","America/Chicago"
-"73080","35.00654","-97.46238","Purcell","OK","Oklahoma","TRUE","","9523","33.9","40087","McClain","{""40087"": ""100""}","McClain","40087","FALSE","FALSE","America/Chicago"
-"73082","34.77591","-97.90323","Rush Springs","OK","Oklahoma","TRUE","","3332","8.5","40051","Grady","{""40051"": ""99.06"", ""40031"": ""0.94""}","Grady|Comanche","40051|40031","FALSE","FALSE","America/Chicago"
-"73084","35.52587","-97.34434","Spencer","OK","Oklahoma","TRUE","","6763","154.6","40109","Oklahoma","{""40109"": ""100""}","Oklahoma","40109","FALSE","FALSE","America/Chicago"
-"73086","34.4838","-96.9662","Sulphur","OK","Oklahoma","TRUE","","8695","18.9","40099","Murray","{""40099"": ""100""}","Murray","40099","FALSE","FALSE","America/Chicago"
-"73089","35.26443","-97.79434","Tuttle","OK","Oklahoma","TRUE","","13185","48.4","40051","Grady","{""40051"": ""100""}","Grady","40051","FALSE","FALSE","America/Chicago"
-"73090","35.39706","-97.94647","Union City","OK","Oklahoma","TRUE","","1223","7.8","40017","Canadian","{""40017"": ""100""}","Canadian","40017","FALSE","FALSE","America/Chicago"
-"73092","35.12694","-98.095","Verden","OK","Oklahoma","TRUE","","973","6.7","40051","Grady","{""40051"": ""80.95"", ""40015"": ""19.05""}","Grady|Caddo","40051|40015","FALSE","FALSE","America/Chicago"
-"73093","35.10349","-97.49228","Washington","OK","Oklahoma","TRUE","","3200","23.4","40087","McClain","{""40087"": ""100""}","McClain","40087","FALSE","FALSE","America/Chicago"
-"73095","34.90714","-97.29911","Wayne","OK","Oklahoma","TRUE","","2029","11.2","40087","McClain","{""40087"": ""100""}","McClain","40087","FALSE","FALSE","America/Chicago"
-"73096","35.51537","-98.73748","Weatherford","OK","Oklahoma","TRUE","","13853","26.8","40039","Custer","{""40039"": ""98.6"", ""40149"": ""1.4""}","Custer|Washita","40039|40149","FALSE","FALSE","America/Chicago"
-"73097","35.40048","-97.64483","Wheatland","OK","Oklahoma","TRUE","","137","68.2","40109","Oklahoma","{""40109"": ""100""}","Oklahoma","40109","FALSE","FALSE","America/Chicago"
-"73098","34.6286","-97.16098","Wynnewood","OK","Oklahoma","TRUE","","4553","12.9","40049","Garvin","{""40049"": ""90.3"", ""40099"": ""9.7""}","Garvin|Murray","40049|40099","FALSE","FALSE","America/Chicago"
-"73099","35.52828","-97.76237","Yukon","OK","Oklahoma","TRUE","","70417","224.2","40017","Canadian","{""40017"": ""100""}","Canadian","40017","FALSE","FALSE","America/Chicago"
-"73102","35.47077","-97.51894","Oklahoma City","OK","Oklahoma","TRUE","","4402","2144.3","40109","Oklahoma","{""40109"": ""100""}","Oklahoma","40109","FALSE","FALSE","America/Chicago"
-"73103","35.48909","-97.51892","Oklahoma City","OK","Oklahoma","TRUE","","4818","1590.4","40109","Oklahoma","{""40109"": ""100""}","Oklahoma","40109","FALSE","FALSE","America/Chicago"
-"73104","35.47528","-97.50387","Oklahoma City","OK","Oklahoma","TRUE","","2445","622.8","40109","Oklahoma","{""40109"": ""100""}","Oklahoma","40109","FALSE","FALSE","America/Chicago"
-"73105","35.51899","-97.50306","Oklahoma City","OK","Oklahoma","TRUE","","5445","472.6","40109","Oklahoma","{""40109"": ""100""}","Oklahoma","40109","FALSE","FALSE","America/Chicago"
-"73106","35.48196","-97.53683","Oklahoma City","OK","Oklahoma","TRUE","","13331","1642.1","40109","Oklahoma","{""40109"": ""100""}","Oklahoma","40109","FALSE","FALSE","America/Chicago"
-"73107","35.4816","-97.57561","Oklahoma City","OK","Oklahoma","TRUE","","24965","1230.8","40109","Oklahoma","{""40109"": ""100""}","Oklahoma","40109","FALSE","FALSE","America/Chicago"
-"73108","35.45001","-97.56768","Oklahoma City","OK","Oklahoma","TRUE","","14583","748.4","40109","Oklahoma","{""40109"": ""100""}","Oklahoma","40109","FALSE","FALSE","America/Chicago"
-"73109","35.43313","-97.52463","Oklahoma City","OK","Oklahoma","TRUE","","22731","1622.1","40109","Oklahoma","{""40109"": ""100""}","Oklahoma","40109","FALSE","FALSE","America/Chicago"
-"73110","35.46116","-97.39765","Oklahoma City","OK","Oklahoma","TRUE","","33460","1209.9","40109","Oklahoma","{""40109"": ""100""}","Oklahoma","40109","FALSE","FALSE","America/Chicago"
-"73111","35.51881","-97.47717","Oklahoma City","OK","Oklahoma","TRUE","","12149","544.4","40109","Oklahoma","{""40109"": ""100""}","Oklahoma","40109","FALSE","FALSE","America/Chicago"
-"73112","35.51843","-97.57487","Oklahoma City","OK","Oklahoma","TRUE","","33622","1684.5","40109","Oklahoma","{""40109"": ""100""}","Oklahoma","40109","FALSE","FALSE","America/Chicago"
-"73114","35.5789","-97.5177","Oklahoma City","OK","Oklahoma","TRUE","","18659","767.1","40109","Oklahoma","{""40109"": ""100""}","Oklahoma","40109","FALSE","FALSE","America/Chicago"
-"73115","35.44234","-97.44152","Oklahoma City","OK","Oklahoma","TRUE","","20971","1367.1","40109","Oklahoma","{""40109"": ""100""}","Oklahoma","40109","FALSE","FALSE","America/Chicago"
-"73116","35.54636","-97.56423","Oklahoma City","OK","Oklahoma","TRUE","","9236","656.0","40109","Oklahoma","{""40109"": ""100""}","Oklahoma","40109","FALSE","FALSE","America/Chicago"
-"73117","35.47465","-97.45973","Oklahoma City","OK","Oklahoma","TRUE","","5892","350.7","40109","Oklahoma","{""40109"": ""100""}","Oklahoma","40109","FALSE","FALSE","America/Chicago"
-"73118","35.51832","-97.5295","Oklahoma City","OK","Oklahoma","TRUE","","13820","1073.6","40109","Oklahoma","{""40109"": ""100""}","Oklahoma","40109","FALSE","FALSE","America/Chicago"
-"73119","35.422","-97.56615","Oklahoma City","OK","Oklahoma","TRUE","","32479","2064.9","40109","Oklahoma","{""40109"": ""100""}","Oklahoma","40109","FALSE","FALSE","America/Chicago"
-"73120","35.58047","-97.57223","Oklahoma City","OK","Oklahoma","TRUE","","35500","1237.8","40109","Oklahoma","{""40109"": ""100""}","Oklahoma","40109","FALSE","FALSE","America/Chicago"
-"73121","35.52108","-97.4409","Oklahoma City","OK","Oklahoma","TRUE","","3386","130.3","40109","Oklahoma","{""40109"": ""100""}","Oklahoma","40109","FALSE","FALSE","America/Chicago"
-"73122","35.51989","-97.61431","Oklahoma City","OK","Oklahoma","TRUE","","13184","1537.0","40109","Oklahoma","{""40109"": ""100""}","Oklahoma","40109","FALSE","FALSE","America/Chicago"
-"73127","35.47757","-97.65392","Oklahoma City","OK","Oklahoma","TRUE","","25545","812.8","40109","Oklahoma","{""40109"": ""89.37"", ""40017"": ""10.63""}","Oklahoma|Canadian","40109|40017","FALSE","FALSE","America/Chicago"
-"73128","35.45035","-97.6434","Oklahoma City","OK","Oklahoma","TRUE","","4669","272.6","40017","Canadian","{""40017"": ""62.17"", ""40109"": ""37.83""}","Canadian|Oklahoma","40017|40109","FALSE","FALSE","America/Chicago"
-"73129","35.43148","-97.48435","Oklahoma City","OK","Oklahoma","TRUE","","20484","628.5","40109","Oklahoma","{""40109"": ""100""}","Oklahoma","40109","FALSE","FALSE","America/Chicago"
-"73130","35.45862","-97.34556","Oklahoma City","OK","Oklahoma","TRUE","","20412","790.7","40109","Oklahoma","{""40109"": ""100""}","Oklahoma","40109","FALSE","FALSE","America/Chicago"
-"73131","35.57672","-97.46433","Oklahoma City","OK","Oklahoma","TRUE","","3578","114.9","40109","Oklahoma","{""40109"": ""100""}","Oklahoma","40109","FALSE","FALSE","America/Chicago"
-"73132","35.5509","-97.63997","Oklahoma City","OK","Oklahoma","TRUE","","28452","1471.6","40109","Oklahoma","{""40109"": ""100""}","Oklahoma","40109","FALSE","FALSE","America/Chicago"
-"73134","35.61423","-97.56827","Oklahoma City","OK","Oklahoma","TRUE","","5255","488.3","40109","Oklahoma","{""40109"": ""100""}","Oklahoma","40109","FALSE","FALSE","America/Chicago"
-"73135","35.39481","-97.42882","Oklahoma City","OK","Oklahoma","TRUE","","22282","741.6","40109","Oklahoma","{""40109"": ""94.83"", ""40027"": ""5.17""}","Oklahoma|Cleveland","40109|40027","FALSE","FALSE","America/Chicago"
-"73139","35.38477","-97.52559","Oklahoma City","OK","Oklahoma","TRUE","","17900","1579.2","40109","Oklahoma","{""40109"": ""57.73"", ""40027"": ""42.27""}","Oklahoma|Cleveland","40109|40027","FALSE","FALSE","America/Chicago"
-"73141","35.51688","-97.39771","Oklahoma City","OK","Oklahoma","TRUE","","2611","93.8","40109","Oklahoma","{""40109"": ""100""}","Oklahoma","40109","FALSE","FALSE","America/Chicago"
-"73142","35.61379","-97.64242","Oklahoma City","OK","Oklahoma","TRUE","","14874","587.3","40109","Oklahoma","{""40109"": ""100""}","Oklahoma","40109","FALSE","FALSE","America/Chicago"
-"73145","35.41912","-97.3941","Oklahoma City","OK","Oklahoma","TRUE","","3180","210.9","40109","Oklahoma","{""40109"": ""100""}","Oklahoma","40109","FALSE","FALSE","America/Chicago"
-"73149","35.38941","-97.48934","Oklahoma City","OK","Oklahoma","TRUE","","5299","389.7","40109","Oklahoma","{""40109"": ""100"", ""40027"": ""0""}","Oklahoma|Cleveland","40109|40027","FALSE","FALSE","America/Chicago"
-"73150","35.40093","-97.33277","Oklahoma City","OK","Oklahoma","TRUE","","5083","103.4","40109","Oklahoma","{""40109"": ""100"", ""40027"": ""0""}","Oklahoma|Cleveland","40109|40027","FALSE","FALSE","America/Chicago"
-"73151","35.56754","-97.41114","Oklahoma City","OK","Oklahoma","TRUE","","1850","247.4","40109","Oklahoma","{""40109"": ""100""}","Oklahoma","40109","FALSE","FALSE","America/Chicago"
-"73159","35.39008","-97.57679","Oklahoma City","OK","Oklahoma","TRUE","","33047","1041.6","40109","Oklahoma","{""40109"": ""70.32"", ""40027"": ""29.68""}","Oklahoma|Cleveland","40109|40027","FALSE","FALSE","America/Chicago"
-"73160","35.33208","-97.47543","Oklahoma City","OK","Oklahoma","TRUE","","59509","1022.7","40027","Cleveland","{""40027"": ""100""}","Cleveland","40027","FALSE","FALSE","America/Chicago"
-"73162","35.58115","-97.64143","Oklahoma City","OK","Oklahoma","TRUE","","29084","1613.0","40109","Oklahoma","{""40109"": ""100""}","Oklahoma","40109","FALSE","FALSE","America/Chicago"
-"73165","35.34382","-97.35726","Oklahoma City","OK","Oklahoma","TRUE","","6376","61.6","40027","Cleveland","{""40027"": ""100""}","Cleveland","40027","FALSE","FALSE","America/Chicago"
-"73169","35.38128","-97.64253","Oklahoma City","OK","Oklahoma","TRUE","","2502","145.3","40109","Oklahoma","{""40109"": ""77.44"", ""40027"": ""22.56""}","Oklahoma|Cleveland","40109|40027","FALSE","FALSE","America/Chicago"
-"73170","35.32738","-97.55059","Oklahoma City","OK","Oklahoma","TRUE","","38138","700.6","40027","Cleveland","{""40027"": ""100""}","Cleveland","40027","FALSE","FALSE","America/Chicago"
-"73173","35.34524","-97.62226","Oklahoma City","OK","Oklahoma","TRUE","","3292","78.3","40027","Cleveland","{""40027"": ""100""}","Cleveland","40027","FALSE","FALSE","America/Chicago"
-"73179","35.42445","-97.64447","Oklahoma City","OK","Oklahoma","TRUE","","5717","179.7","40109","Oklahoma","{""40109"": ""68.66"", ""40017"": ""31.34""}","Oklahoma|Canadian","40109|40017","FALSE","FALSE","America/Chicago"
-"73401","34.20308","-97.11484","Ardmore","OK","Oklahoma","TRUE","","35731","41.9","40019","Carter","{""40019"": ""99.56"", ""40085"": ""0.37"", ""40069"": ""0.07""}","Carter|Love|Johnston","40019|40085|40069","FALSE","FALSE","America/Chicago"
-"73425","34.45347","-97.5551","Countyline","OK","Oklahoma","TRUE","","34","9.5","40019","Carter","{""40019"": ""51.19"", ""40137"": ""48.81""}","Carter|Stephens","40019|40137","FALSE","FALSE","America/Chicago"
-"73430","33.90519","-97.36686","Burneyville","OK","Oklahoma","TRUE","","1533","6.5","40085","Love","{""40085"": ""100""}","Love","40085","FALSE","FALSE","America/Chicago"
-"73432","34.25701","-96.41945","Coleman","OK","Oklahoma","TRUE","","1143","7.5","40069","Johnston","{""40069"": ""87.58"", ""40005"": ""12.42""}","Johnston|Atoka","40069|40005","FALSE","FALSE","America/Chicago"
-"73433","34.62413","-97.40671","Elmore City","OK","Oklahoma","TRUE","","2817","6.6","40049","Garvin","{""40049"": ""100""}","Garvin","40049","FALSE","FALSE","America/Chicago"
-"73434","34.62385","-97.58555","Foster","OK","Oklahoma","TRUE","","615","2.4","40137","Stephens","{""40137"": ""57.94"", ""40049"": ""42.06""}","Stephens|Garvin","40137|40049","FALSE","FALSE","America/Chicago"
-"73437","34.36189","-97.4156","Graham","OK","Oklahoma","TRUE","","110","3.3","40019","Carter","{""40019"": ""100""}","Carter","40019","FALSE","FALSE","America/Chicago"
-"73438","34.28646","-97.49945","Healdton","OK","Oklahoma","TRUE","","3519","15.7","40019","Carter","{""40019"": ""99.24"", ""40137"": ""0.76""}","Carter|Stephens","40019|40137","FALSE","FALSE","America/Chicago"
-"73439","33.94552","-96.75692","Kingston","OK","Oklahoma","TRUE","","7460","22.5","40095","Marshall","{""40095"": ""100""}","Marshall","40095","FALSE","FALSE","America/Chicago"
-"73440","33.98071","-96.89989","Lebanon","OK","Oklahoma","TRUE","","403","13.1","40095","Marshall","{""40095"": ""100""}","Marshall","40095","FALSE","FALSE","America/Chicago"
-"73441","33.90457","-97.43061","Leon","OK","Oklahoma","TRUE","","200","20.9","40085","Love","{""40085"": ""100""}","Love","40085","FALSE","FALSE","America/Chicago"
-"73442","34.3265","-97.6718","Loco","OK","Oklahoma","TRUE","","418","2.0","40137","Stephens","{""40137"": ""88.79"", ""40067"": ""11.21""}","Stephens|Jefferson","40137|40067","FALSE","FALSE","America/Chicago"
-"73443","34.16434","-97.29621","Lone Grove","OK","Oklahoma","TRUE","","3987","29.2","40019","Carter","{""40019"": ""100""}","Carter","40019","FALSE","FALSE","America/Chicago"
-"73444","34.45673","-97.35853","Hennepin","OK","Oklahoma","TRUE","","121","1.1","40099","Murray","{""40099"": ""51.28"", ""40019"": ""48.72""}","Murray|Carter","40099|40019","FALSE","FALSE","America/Chicago"
-"73446","34.08958","-96.77804","Madill","OK","Oklahoma","TRUE","","8642","14.5","40095","Marshall","{""40095"": ""100""}","Marshall","40095","FALSE","FALSE","America/Chicago"
-"73447","34.24608","-96.85805","Mannsville","OK","Oklahoma","TRUE","","1378","5.9","40069","Johnston","{""40069"": ""100""}","Johnston","40069","FALSE","FALSE","America/Chicago"
-"73448","33.94683","-97.10753","Marietta","OK","Oklahoma","TRUE","","6206","11.2","40085","Love","{""40085"": ""100""}","Love","40085","FALSE","FALSE","America/Chicago"
-"73449","34.00002","-96.53768","Mead","OK","Oklahoma","TRUE","","3038","31.2","40013","Bryan","{""40013"": ""100""}","Bryan","40013","FALSE","FALSE","America/Chicago"
-"73450","34.26244","-96.53518","Milburn","OK","Oklahoma","TRUE","","1304","5.4","40069","Johnston","{""40069"": ""100""}","Johnston","40069","FALSE","FALSE","America/Chicago"
-"73453","34.03428","-97.26457","Overbrook","OK","Oklahoma","TRUE","","490","2.7","40085","Love","{""40085"": ""100""}","Love","40085","FALSE","FALSE","America/Chicago"
-"73455","34.23162","-96.76246","Ravia","OK","Oklahoma","TRUE","","611","26.0","40069","Johnston","{""40069"": ""100""}","Johnston","40069","FALSE","FALSE","America/Chicago"
-"73456","34.13071","-97.6346","Ringling","OK","Oklahoma","TRUE","","1981","3.0","40067","Jefferson","{""40067"": ""90.01"", ""40085"": ""6.44"", ""40019"": ""3.55""}","Jefferson|Love|Carter","40067|40085|40019","FALSE","FALSE","America/Chicago"
-"73458","34.35204","-97.25328","Springer","OK","Oklahoma","TRUE","","1032","3.8","40019","Carter","{""40019"": ""100""}","Carter","40019","FALSE","FALSE","America/Chicago"
-"73459","33.77417","-97.1331","Thackerville","OK","Oklahoma","TRUE","","1090","12.1","40085","Love","{""40085"": ""100""}","Love","40085","FALSE","FALSE","America/Chicago"
-"73460","34.28709","-96.66144","Tishomingo","OK","Oklahoma","TRUE","","4766","11.5","40069","Johnston","{""40069"": ""100""}","Johnston","40069","FALSE","FALSE","America/Chicago"
-"73461","34.35956","-96.4436","Wapanucka","OK","Oklahoma","TRUE","","755","4.8","40069","Johnston","{""40069"": ""91.07"", ""40005"": ""8.93""}","Johnston|Atoka","40069|40005","FALSE","FALSE","America/Chicago"
-"73463","34.11237","-97.43373","Wilson","OK","Oklahoma","TRUE","","3264","6.2","40019","Carter","{""40019"": ""93.06"", ""40085"": ""6.94""}","Carter|Love","40019|40085","FALSE","FALSE","America/Chicago"
-"73481","34.43636","-97.5218","Ratliff City","OK","Oklahoma","TRUE","","954","4.9","40019","Carter","{""40019"": ""79.45"", ""40137"": ""14.72"", ""40049"": ""5.83""}","Carter|Stephens|Garvin","40019|40137|40049","FALSE","FALSE","America/Chicago"
-"73487","34.47883","-97.44581","Tatums","OK","Oklahoma","TRUE","","159","5.3","40019","Carter","{""40019"": ""100""}","Carter","40019","FALSE","FALSE","America/Chicago"
-"73491","34.47659","-97.65173","Velma","OK","Oklahoma","TRUE","","657","14.6","40137","Stephens","{""40137"": ""100""}","Stephens","40137","FALSE","FALSE","America/Chicago"
-"73501","34.5607","-98.28812","Lawton","OK","Oklahoma","TRUE","","19953","65.7","40031","Comanche","{""40031"": ""100""}","Comanche","40031","FALSE","FALSE","America/Chicago"
-"73503","34.67862","-98.49712","Fort Sill","OK","Oklahoma","TRUE","","10995","50.4","40031","Comanche","{""40031"": ""100""}","Comanche","40031","FALSE","FALSE","America/Chicago"
-"73505","34.57887","-98.47856","Lawton","OK","Oklahoma","TRUE","","48585","339.4","40031","Comanche","{""40031"": ""100""}","Comanche","40031","FALSE","FALSE","America/Chicago"
-"73507","34.7608","-98.54675","Lawton","OK","Oklahoma","TRUE","","22787","43.1","40031","Comanche","{""40031"": ""100""}","Comanche","40031","FALSE","FALSE","America/Chicago"
-"73520","34.25284","-97.98123","Addington","OK","Oklahoma","TRUE","","151","5.5","40067","Jefferson","{""40067"": ""100""}","Jefferson","40067","FALSE","FALSE","America/Chicago"
-"73521","34.64009","-99.31562","Altus","OK","Oklahoma","TRUE","","20616","43.3","40065","Jackson","{""40065"": ""100""}","Jackson","40065","FALSE","FALSE","America/Chicago"
-"73526","34.79408","-99.26918","Blair","OK","Oklahoma","TRUE","","2170","10.2","40065","Jackson","{""40065"": ""98.5"", ""40055"": ""1.5""}","Jackson|Greer","40065|40055","FALSE","FALSE","America/Chicago"
-"73527","34.57106","-98.62201","Cache","OK","Oklahoma","TRUE","","4998","23.6","40031","Comanche","{""40031"": ""100""}","Comanche","40031","FALSE","FALSE","America/Chicago"
-"73528","34.40433","-98.63496","Chattanooga","OK","Oklahoma","TRUE","","600","2.7","40031","Comanche","{""40031"": ""74.56"", ""40141"": ""19.26"", ""40033"": ""6.18""}","Comanche|Tillman|Cotton","40031|40141|40033","FALSE","FALSE","America/Chicago"
-"73529","34.35642","-97.94623","Comanche","OK","Oklahoma","TRUE","","5158","9.2","40137","Stephens","{""40137"": ""99.59"", ""40067"": ""0.41""}","Stephens|Jefferson","40137|40067","FALSE","FALSE","America/Chicago"
-"73530","34.24724","-99.02039","Davidson","OK","Oklahoma","TRUE","","537","1.6","40141","Tillman","{""40141"": ""100""}","Tillman","40141","FALSE","FALSE","America/Chicago"
-"73531","34.19635","-98.53354","Devol","OK","Oklahoma","TRUE","","345","1.7","40033","Cotton","{""40033"": ""100""}","Cotton","40033","FALSE","FALSE","America/Chicago"
-"73532","34.64261","-99.58948","Duke","OK","Oklahoma","TRUE","","479","1.3","40065","Jackson","{""40065"": ""98.67"", ""40057"": ""1.33""}","Jackson|Harmon","40065|40057","FALSE","FALSE","America/Chicago"
-"73533","34.49772","-97.85431","Duncan","OK","Oklahoma","TRUE","","27748","32.3","40137","Stephens","{""40137"": ""99.89"", ""40033"": ""0.11""}","Stephens|Cotton","40137|40033","FALSE","FALSE","America/Chicago"
-"73537","34.47923","-99.66092","Eldorado","OK","Oklahoma","TRUE","","514","1.1","40065","Jackson","{""40065"": ""94.56"", ""40057"": ""5.44""}","Jackson|Harmon","40065|40057","FALSE","FALSE","America/Chicago"
-"73538","34.73298","-98.29789","Elgin","OK","Oklahoma","TRUE","","5447","26.3","40031","Comanche","{""40031"": ""100""}","Comanche","40031","FALSE","FALSE","America/Chicago"
-"73539","34.45759","-99.27991","Elmer","OK","Oklahoma","TRUE","","162","0.9","40065","Jackson","{""40065"": ""100""}","Jackson","40065","FALSE","FALSE","America/Chicago"
-"73540","34.47006","-98.56043","Faxon","OK","Oklahoma","TRUE","","612","4.3","40031","Comanche","{""40031"": ""98.86"", ""40033"": ""1.14""}","Comanche|Cotton","40031|40033","FALSE","FALSE","America/Chicago"
-"73541","34.78957","-98.1791","Fletcher","OK","Oklahoma","TRUE","","2927","13.5","40031","Comanche","{""40031"": ""100""}","Comanche","40031","FALSE","FALSE","America/Chicago"
-"73542","34.40372","-98.94177","Frederick","OK","Oklahoma","TRUE","","4377","5.1","40141","Tillman","{""40141"": ""100""}","Tillman","40141","FALSE","FALSE","America/Chicago"
-"73543","34.46585","-98.37797","Geronimo","OK","Oklahoma","TRUE","","1660","9.2","40031","Comanche","{""40031"": ""97.31"", ""40033"": ""2.69""}","Comanche|Cotton","40031|40033","FALSE","FALSE","America/Chicago"
-"73544","34.69497","-99.76502","Gould","OK","Oklahoma","TRUE","","226","0.7","40057","Harmon","{""40057"": ""100""}","Harmon","40057","FALSE","FALSE","America/Chicago"
-"73546","34.22025","-98.72435","Grandfield","OK","Oklahoma","TRUE","","1018","2.9","40141","Tillman","{""40141"": ""100""}","Tillman","40141","FALSE","FALSE","America/Chicago"
-"73547","34.9871","-99.40795","Granite","OK","Oklahoma","TRUE","","2280","7.2","40055","Greer","{""40055"": ""100""}","Greer","40055","FALSE","FALSE","America/Chicago"
-"73548","34.20843","-98.14657","Hastings","OK","Oklahoma","TRUE","","353","2.7","40137","Stephens","{""40137"": ""55.11"", ""40067"": ""38.34"", ""40033"": ""6.55""}","Stephens|Jefferson|Cotton","40137|40067|40033","FALSE","FALSE","America/Chicago"
-"73549","34.6509","-99.15542","Headrick","OK","Oklahoma","TRUE","","178","0.9","40065","Jackson","{""40065"": ""100""}","Jackson","40065","FALSE","FALSE","America/Chicago"
-"73550","34.69155","-99.90224","Hollis","OK","Oklahoma","TRUE","","2352","4.2","40057","Harmon","{""40057"": ""100""}","Harmon","40057","FALSE","FALSE","America/Chicago"
-"73551","34.35173","-98.872","Hollister","OK","Oklahoma","TRUE","","60","2.1","40141","Tillman","{""40141"": ""100""}","Tillman","40141","FALSE","FALSE","America/Chicago"
-"73552","34.63299","-98.7567","Indiahoma","OK","Oklahoma","TRUE","","1559","5.3","40031","Comanche","{""40031"": ""100""}","Comanche","40031","FALSE","FALSE","America/Chicago"
-"73553","34.3262","-98.72943","Loveland","OK","Oklahoma","TRUE","","68","0.6","40141","Tillman","{""40141"": ""100""}","Tillman","40141","FALSE","FALSE","America/Chicago"
-"73554","34.89057","-99.61999","Mangum","OK","Oklahoma","TRUE","","3244","3.1","40055","Greer","{""40055"": ""99.67"", ""40057"": ""0.33""}","Greer|Harmon","40055|40057","FALSE","FALSE","America/Chicago"
-"73555","34.50171","-98.963","Manitou","OK","Oklahoma","TRUE","","171","3.3","40141","Tillman","{""40141"": ""100""}","Tillman","40141","FALSE","FALSE","America/Chicago"
-"73556","34.73015","-99.38406","Martha","OK","Oklahoma","TRUE","","147","39.4","40065","Jackson","{""40065"": ""100""}","Jackson","40065","FALSE","FALSE","America/Chicago"
-"73557","34.72967","-98.48944","Medicine Park","OK","Oklahoma","TRUE","","401","66.4","40031","Comanche","{""40031"": ""100""}","Comanche","40031","FALSE","FALSE","America/Chicago"
-"73559","34.72772","-98.96376","Mountain Park","OK","Oklahoma","TRUE","","593","2.2","40075","Kiowa","{""40075"": ""98.7"", ""40031"": ""1.3""}","Kiowa|Comanche","40075|40031","FALSE","FALSE","America/Chicago"
-"73560","34.53737","-99.45034","Olustee","OK","Oklahoma","TRUE","","889","2.6","40065","Jackson","{""40065"": ""100""}","Jackson","40065","FALSE","FALSE","America/Chicago"
-"73562","34.18345","-98.41301","Randlett","OK","Oklahoma","TRUE","","618","2.3","40033","Cotton","{""40033"": ""100""}","Cotton","40033","FALSE","FALSE","America/Chicago"
-"73564","34.84191","-98.98818","Roosevelt","OK","Oklahoma","TRUE","","433","0.9","40075","Kiowa","{""40075"": ""97.1"", ""40031"": ""2.9""}","Kiowa|Comanche","40075|40031","FALSE","FALSE","America/Chicago"
-"73565","34.02495","-97.87875","Ryan","OK","Oklahoma","TRUE","","979","1.9","40067","Jefferson","{""40067"": ""100""}","Jefferson","40067","FALSE","FALSE","America/Chicago"
-"73566","34.62438","-98.94466","Snyder","OK","Oklahoma","TRUE","","1721","6.0","40075","Kiowa","{""40075"": ""95.52"", ""40141"": ""4.48""}","Kiowa|Tillman","40075|40141","FALSE","FALSE","America/Chicago"
-"73567","34.74323","-98.15518","Sterling","OK","Oklahoma","TRUE","","671","56.2","40031","Comanche","{""40031"": ""100""}","Comanche","40031","FALSE","FALSE","America/Chicago"
-"73568","34.24894","-98.21204","Temple","OK","Oklahoma","TRUE","","946","4.0","40033","Cotton","{""40033"": ""100""}","Cotton","40033","FALSE","FALSE","America/Chicago"
-"73569","33.93793","-97.80531","Terral","OK","Oklahoma","TRUE","","524","2.7","40067","Jefferson","{""40067"": ""100""}","Jefferson","40067","FALSE","FALSE","America/Chicago"
-"73570","34.51005","-99.10765","Tipton","OK","Oklahoma","TRUE","","1035","3.2","40141","Tillman","{""40141"": ""100""}","Tillman","40141","FALSE","FALSE","America/Chicago"
-"73571","34.91824","-99.89567","Vinson","OK","Oklahoma","TRUE","","90","0.3","40057","Harmon","{""40057"": ""100""}","Harmon","40057","FALSE","FALSE","America/Chicago"
-"73572","34.36052","-98.34471","Walters","OK","Oklahoma","TRUE","","3734","5.2","40033","Cotton","{""40033"": ""99.41"", ""40031"": ""0.59""}","Cotton|Comanche","40033|40031","FALSE","FALSE","America/Chicago"
-"73573","34.16881","-97.94315","Waurika","OK","Oklahoma","TRUE","","2608","4.7","40067","Jefferson","{""40067"": ""100""}","Jefferson","40067","FALSE","FALSE","America/Chicago"
-"73601","35.48716","-98.96587","Clinton","OK","Oklahoma","TRUE","","10092","29.1","40039","Custer","{""40039"": ""96.08"", ""40149"": ""3.92""}","Custer|Washita","40039|40149","FALSE","FALSE","America/Chicago"
-"73620","35.61363","-99.01516","Arapaho","OK","Oklahoma","TRUE","","1572","4.9","40039","Custer","{""40039"": ""100""}","Custer","40039","FALSE","FALSE","America/Chicago"
-"73622","35.38945","-98.9958","Bessie","OK","Oklahoma","TRUE","","241","1.7","40149","Washita","{""40149"": ""100""}","Washita","40149","FALSE","FALSE","America/Chicago"
-"73624","35.34103","-99.17919","Burns Flat","OK","Oklahoma","TRUE","","2410","92.0","40149","Washita","{""40149"": ""100""}","Washita","40149","FALSE","FALSE","America/Chicago"
-"73625","35.67701","-99.19056","Butler","OK","Oklahoma","TRUE","","633","1.8","40039","Custer","{""40039"": ""100""}","Custer","40039","FALSE","FALSE","America/Chicago"
-"73626","35.42136","-99.27905","Canute","OK","Oklahoma","TRUE","","1131","3.8","40149","Washita","{""40149"": ""86.44"", ""40039"": ""13.56""}","Washita|Custer","40149|40039","FALSE","FALSE","America/Chicago"
-"73627","35.20292","-99.45349","Carter","OK","Oklahoma","TRUE","","590","2.2","40009","Beckham","{""40009"": ""100""}","Beckham","40009","FALSE","FALSE","America/Chicago"
-"73628","35.62471","-99.68448","Cheyenne","OK","Oklahoma","TRUE","","1519","1.6","40129","Roger Mills","{""40129"": ""100""}","Roger Mills","40129","FALSE","FALSE","America/Chicago"
-"73632","35.27186","-98.9274","Cordell","OK","Oklahoma","TRUE","","3189","6.1","40149","Washita","{""40149"": ""100""}","Washita","40149","FALSE","FALSE","America/Chicago"
-"73638","35.8404","-99.78449","Crawford","OK","Oklahoma","TRUE","","207","0.6","40129","Roger Mills","{""40129"": ""100""}","Roger Mills","40129","FALSE","FALSE","America/Chicago"
-"73639","35.73186","-98.9561","Custer City","OK","Oklahoma","TRUE","","611","1.6","40039","Custer","{""40039"": ""100""}","Custer","40039","FALSE","FALSE","America/Chicago"
-"73641","35.27332","-99.17215","Dill City","OK","Oklahoma","TRUE","","530","4.8","40149","Washita","{""40149"": ""100""}","Washita","40149","FALSE","FALSE","America/Chicago"
-"73642","35.82109","-99.91097","Durham","OK","Oklahoma","TRUE","","144","0.6","40129","Roger Mills","{""40129"": ""100""}","Roger Mills","40129","FALSE","FALSE","America/Chicago"
-"73644","35.4185","-99.43895","Elk City","OK","Oklahoma","TRUE","","14225","28.8","40009","Beckham","{""40009"": ""98.31"", ""40149"": ""1.2"", ""40129"": ""0.31"", ""40039"": ""0.18""}","Beckham|Washita|Roger Mills|Custer","40009|40149|40129|40039","FALSE","FALSE","America/Chicago"
-"73645","35.20229","-99.8963","Erick","OK","Oklahoma","TRUE","","1408","1.9","40009","Beckham","{""40009"": ""100""}","Beckham","40009","FALSE","FALSE","America/Chicago"
-"73646","35.82975","-98.61412","Fay","OK","Oklahoma","TRUE","","390","1.3","40011","Blaine","{""40011"": ""60.94"", ""40043"": ""35.94"", ""40039"": ""3.13""}","Blaine|Dewey|Custer","40011|40043|40039","FALSE","FALSE","America/Chicago"
-"73647","35.42781","-99.15909","Foss","OK","Oklahoma","TRUE","","521","1.9","40149","Washita","{""40149"": ""79"", ""40039"": ""21""}","Washita|Custer","40149|40039","FALSE","FALSE","America/Chicago"
-"73650","35.64184","-99.40731","Hammon","OK","Oklahoma","TRUE","","1171","2.3","40129","Roger Mills","{""40129"": ""82.94"", ""40039"": ""17.06""}","Roger Mills|Custer","40129|40039","FALSE","FALSE","America/Chicago"
-"73651","35.01465","-99.07321","Hobart","OK","Oklahoma","TRUE","","3969","7.3","40075","Kiowa","{""40075"": ""100""}","Kiowa","40075","FALSE","FALSE","America/Chicago"
-"73654","35.8594","-99.37032","Leedey","OK","Oklahoma","TRUE","","872","1.0","40043","Dewey","{""40043"": ""72.63"", ""40129"": ""17.78"", ""40039"": ""9.58""}","Dewey|Roger Mills|Custer","40043|40129|40039","FALSE","FALSE","America/Chicago"
-"73655","34.98007","-99.25965","Lone Wolf","OK","Oklahoma","TRUE","","841","2.1","40075","Kiowa","{""40075"": ""100""}","Kiowa","40075","FALSE","FALSE","America/Chicago"
-"73658","35.94778","-98.73347","Oakwood","OK","Oklahoma","TRUE","","217","1.0","40043","Dewey","{""40043"": ""100""}","Dewey","40043","FALSE","FALSE","America/Chicago"
-"73659","35.86952","-98.92294","Putnam","OK","Oklahoma","TRUE","","184","0.5","40043","Dewey","{""40043"": ""100""}","Dewey","40043","FALSE","FALSE","America/Chicago"
-"73660","35.62475","-99.91541","Reydon","OK","Oklahoma","TRUE","","333","1.0","40129","Roger Mills","{""40129"": ""100""}","Roger Mills","40129","FALSE","FALSE","America/Chicago"
-"73661","35.16077","-99.01617","Rocky","OK","Oklahoma","TRUE","","421","2.4","40149","Washita","{""40149"": ""100""}","Washita","40149","FALSE","FALSE","America/Chicago"
-"73662","35.29862","-99.67524","Sayre","OK","Oklahoma","TRUE","","6411","6.4","40009","Beckham","{""40009"": ""98.62"", ""40129"": ""1.33"", ""40055"": ""0.05""}","Beckham|Roger Mills|Greer","40009|40129|40055","FALSE","FALSE","America/Chicago"
-"73663","36.10753","-98.90277","Seiling","OK","Oklahoma","TRUE","","1413","4.0","40043","Dewey","{""40043"": ""98.95"", ""40093"": ""1.05""}","Dewey|Major","40043|40093","FALSE","FALSE","America/Chicago"
-"73664","35.1859","-99.24866","Sentinel","OK","Oklahoma","TRUE","","1123","3.3","40149","Washita","{""40149"": ""100""}","Washita","40149","FALSE","FALSE","America/Chicago"
-"73666","35.47427","-99.91498","Sweetwater","OK","Oklahoma","TRUE","","256","1.3","40129","Roger Mills","{""40129"": ""100""}","Roger Mills","40129","FALSE","FALSE","America/Chicago"
-"73667","36.00235","-99.02411","Taloga","OK","Oklahoma","TRUE","","544","1.4","40043","Dewey","{""40043"": ""100""}","Dewey","40043","FALSE","FALSE","America/Chicago"
-"73669","35.7289","-98.74036","Thomas","OK","Oklahoma","TRUE","","1617","4.5","40039","Custer","{""40039"": ""98.63"", ""40011"": ""1.37""}","Custer|Blaine","40039|40011","FALSE","FALSE","America/Chicago"
-"73673","35.05295","-99.56732","Willow","OK","Oklahoma","TRUE","","287","0.9","40055","Greer","{""40055"": ""88.71"", ""40009"": ""11.29""}","Greer|Beckham","40055|40009","FALSE","FALSE","America/Chicago"
-"73701","36.42772","-97.78618","Enid","OK","Oklahoma","TRUE","","24987","66.5","40047","Garfield","{""40047"": ""100""}","Garfield","40047","FALSE","FALSE","America/Chicago"
-"73703","36.42763","-97.96221","Enid","OK","Oklahoma","TRUE","","28866","98.3","40047","Garfield","{""40047"": ""100""}","Garfield","40047","FALSE","FALSE","America/Chicago"
-"73705","36.3383","-97.90257","Enid","OK","Oklahoma","TRUE","","317","276.6","40047","Garfield","{""40047"": ""100""}","Garfield","40047","FALSE","FALSE","America/Chicago"
-"73716","36.49979","-98.51721","Aline","OK","Oklahoma","TRUE","","628","1.9","40003","Alfalfa","{""40003"": ""77.65"", ""40151"": ""14.51"", ""40093"": ""7.84""}","Alfalfa|Woods|Major","40003|40151|40093","FALSE","FALSE","America/Chicago"
-"73717","36.84324","-98.77287","Alva","OK","Oklahoma","TRUE","","7018","4.1","40151","Woods","{""40151"": ""99.56"", ""40003"": ""0.44""}","Woods|Alfalfa","40151|40003","FALSE","FALSE","America/Chicago"
-"73718","36.22232","-98.17033","Ames","OK","Oklahoma","TRUE","","527","2.8","40093","Major","{""40093"": ""93.61"", ""40047"": ""6.39""}","Major|Garfield","40093|40047","FALSE","FALSE","America/Chicago"
-"73719","36.95684","-98.28845","Amorita","OK","Oklahoma","TRUE","","97","0.9","40003","Alfalfa","{""40003"": ""100""}","Alfalfa","40003","FALSE","FALSE","America/Chicago"
-"73720","36.20078","-97.87315","Bison","OK","Oklahoma","TRUE","","123","0.8","40047","Garfield","{""40047"": ""100""}","Garfield","40047","FALSE","FALSE","America/Chicago"
-"73722","36.89878","-98.33854","Burlington","OK","Oklahoma","TRUE","","423","1.0","40003","Alfalfa","{""40003"": ""100""}","Alfalfa","40003","FALSE","FALSE","America/Chicago"
-"73724","36.04878","-98.66747","Canton","OK","Oklahoma","TRUE","","1125","2.8","40011","Blaine","{""40011"": ""83.36"", ""40043"": ""16.64""}","Blaine|Dewey","40011|40043","FALSE","FALSE","America/Chicago"
-"73726","36.58014","-98.49724","Carmen","OK","Oklahoma","TRUE","","469","1.7","40003","Alfalfa","{""40003"": ""88.14"", ""40151"": ""11.86""}","Alfalfa|Woods","40003|40151","FALSE","FALSE","America/Chicago"
-"73727","36.50569","-98.03714","Carrier","OK","Oklahoma","TRUE","","175","1.8","40047","Garfield","{""40047"": ""100""}","Garfield","40047","FALSE","FALSE","America/Chicago"
-"73728","36.74218","-98.37801","Cherokee","OK","Oklahoma","TRUE","","2048","3.5","40003","Alfalfa","{""40003"": ""100""}","Alfalfa","40003","FALSE","FALSE","America/Chicago"
-"73729","36.41926","-98.47207","Cleo Springs","OK","Oklahoma","TRUE","","512","3.5","40093","Major","{""40093"": ""96.71"", ""40151"": ""3.29""}","Major|Woods","40093|40151","FALSE","FALSE","America/Chicago"
-"73730","36.3194","-97.5443","Covington","OK","Oklahoma","TRUE","","737","5.0","40047","Garfield","{""40047"": ""100""}","Garfield","40047","FALSE","FALSE","America/Chicago"
-"73731","36.64335","-98.59791","Dacoma","OK","Oklahoma","TRUE","","102","1.0","40151","Woods","{""40151"": ""100""}","Woods","40151","FALSE","FALSE","America/Chicago"
-"73733","36.2536","-97.69072","Douglas","OK","Oklahoma","TRUE","","325","2.4","40047","Garfield","{""40047"": ""100""}","Garfield","40047","FALSE","FALSE","America/Chicago"
-"73734","35.98577","-97.86015","Dover","OK","Oklahoma","TRUE","","780","2.9","40073","Kingfisher","{""40073"": ""100""}","Kingfisher","40073","FALSE","FALSE","America/Chicago"
-"73735","36.28065","-98.05836","Drummond","OK","Oklahoma","TRUE","","717","7.8","40047","Garfield","{""40047"": ""100""}","Garfield","40047","FALSE","FALSE","America/Chicago"
-"73736","36.3449","-97.68847","Fairmont","OK","Oklahoma","TRUE","","736","5.1","40047","Garfield","{""40047"": ""100""}","Garfield","40047","FALSE","FALSE","America/Chicago"
-"73737","36.29653","-98.62319","Fairview","OK","Oklahoma","TRUE","","3549","4.2","40093","Major","{""40093"": ""100""}","Major","40093","FALSE","FALSE","America/Chicago"
-"73738","36.45196","-97.55176","Garber","OK","Oklahoma","TRUE","","1061","4.0","40047","Garfield","{""40047"": ""100""}","Garfield","40047","FALSE","FALSE","America/Chicago"
-"73739","36.51628","-98.14037","Goltry","OK","Oklahoma","TRUE","","332","2.6","40003","Alfalfa","{""40003"": ""94.31"", ""40047"": ""5.69""}","Alfalfa|Garfield","40003|40047","FALSE","FALSE","America/Chicago"
-"73741","36.55962","-98.26018","Helena","OK","Oklahoma","TRUE","","1583","5.8","40003","Alfalfa","{""40003"": ""100""}","Alfalfa","40003","FALSE","FALSE","America/Chicago"
-"73742","36.09844","-97.9331","Hennessey","OK","Oklahoma","TRUE","","4345","7.2","40073","Kingfisher","{""40073"": ""100""}","Kingfisher","40073","FALSE","FALSE","America/Chicago"
-"73743","36.57436","-98.01411","Hillsdale","OK","Oklahoma","TRUE","","104","7.2","40047","Garfield","{""40047"": ""100""}","Garfield","40047","FALSE","FALSE","America/Chicago"
-"73744","35.94349","-98.30381","Hitchcock","OK","Oklahoma","TRUE","","161","0.7","40011","Blaine","{""40011"": ""100""}","Blaine","40011","FALSE","FALSE","America/Chicago"
-"73746","36.68504","-98.65759","Hopeton","OK","Oklahoma","TRUE","","45","33.7","40151","Woods","{""40151"": ""100""}","Woods","40151","FALSE","FALSE","America/Chicago"
-"73747","36.22762","-98.33229","Isabella","OK","Oklahoma","TRUE","","334","3.1","40093","Major","{""40093"": ""100""}","Major","40093","FALSE","FALSE","America/Chicago"
-"73749","36.71274","-98.15966","Jet","OK","Oklahoma","TRUE","","461","2.2","40003","Alfalfa","{""40003"": ""100""}","Alfalfa","40003","FALSE","FALSE","America/Chicago"
-"73750","35.85545","-97.95231","Kingfisher","OK","Oklahoma","TRUE","","7416","10.8","40073","Kingfisher","{""40073"": ""100""}","Kingfisher","40073","FALSE","FALSE","America/Chicago"
-"73753","36.55168","-97.85715","Kremlin","OK","Oklahoma","TRUE","","471","2.8","40047","Garfield","{""40047"": ""100""}","Garfield","40047","FALSE","FALSE","America/Chicago"
-"73754","36.39685","-98.09097","Lahoma","OK","Oklahoma","TRUE","","1015","10.7","40047","Garfield","{""40047"": ""95.83"", ""40093"": ""4.17""}","Garfield|Major","40047|40093","FALSE","FALSE","America/Chicago"
-"73755","36.13483","-98.57157","Longdale","OK","Oklahoma","TRUE","","759","4.0","40011","Blaine","{""40011"": ""76.13"", ""40093"": ""18.34"", ""40043"": ""5.52""}","Blaine|Major|Dewey","40011|40093|40043","FALSE","FALSE","America/Chicago"
-"73756","35.98171","-98.1303","Loyal","OK","Oklahoma","TRUE","","383","1.8","40073","Kingfisher","{""40073"": ""100""}","Kingfisher","40073","FALSE","FALSE","America/Chicago"
-"73757","36.28737","-97.45643","Lucien","OK","Oklahoma","TRUE","","272","3.0","40103","Noble","{""40103"": ""86.52"", ""40047"": ""13.48""}","Noble|Garfield","40103|40047","FALSE","FALSE","America/Chicago"
-"73758","36.94521","-98.07979","Manchester","OK","Oklahoma","TRUE","","129","0.5","40053","Grant","{""40053"": ""90.36"", ""40003"": ""9.64""}","Grant|Alfalfa","40053|40003","FALSE","FALSE","America/Chicago"
-"73759","36.85891","-97.71491","Medford","OK","Oklahoma","TRUE","","1386","1.4","40053","Grant","{""40053"": ""100""}","Grant","40053","FALSE","FALSE","America/Chicago"
-"73760","36.3736","-98.16086","Meno","OK","Oklahoma","TRUE","","418","2.7","40093","Major","{""40093"": ""100""}","Major","40093","FALSE","FALSE","America/Chicago"
-"73761","36.68393","-98.03851","Nash","OK","Oklahoma","TRUE","","306","1.2","40053","Grant","{""40053"": ""95.7"", ""40047"": ""4.3""}","Grant|Garfield","40053|40047","FALSE","FALSE","America/Chicago"
-"73762","35.71322","-97.968","Okarche","OK","Oklahoma","TRUE","","2114","4.3","40073","Kingfisher","{""40073"": ""59.37"", ""40017"": ""40.63""}","Kingfisher|Canadian","40073|40017","FALSE","FALSE","America/Chicago"
-"73763","36.09967","-98.32462","Okeene","OK","Oklahoma","TRUE","","1624","3.1","40011","Blaine","{""40011"": ""94.82"", ""40093"": ""3.57"", ""40073"": ""1.6""}","Blaine|Major|Kingfisher","40011|40093|40073","FALSE","FALSE","America/Chicago"
-"73764","35.85041","-98.20502","Omega","OK","Oklahoma","TRUE","","196","1.5","40073","Kingfisher","{""40073"": ""74.31"", ""40011"": ""25.69""}","Kingfisher|Blaine","40073|40011","FALSE","FALSE","America/Chicago"
-"73766","36.65189","-97.82807","Pond Creek","OK","Oklahoma","TRUE","","1377","3.5","40053","Grant","{""40053"": ""100""}","Grant","40053","FALSE","FALSE","America/Chicago"
-"73768","36.357","-98.29586","Ringwood","OK","Oklahoma","TRUE","","1769","5.2","40093","Major","{""40093"": ""100""}","Major","40093","FALSE","FALSE","America/Chicago"
-"73771","36.87045","-97.96623","Wakita","OK","Oklahoma","TRUE","","365","1.0","40053","Grant","{""40053"": ""100""}","Grant","40053","FALSE","FALSE","America/Chicago"
-"73772","35.8602","-98.4268","Watonga","OK","Oklahoma","TRUE","","3978","6.3","40011","Blaine","{""40011"": ""100""}","Blaine","40011","FALSE","FALSE","America/Chicago"
-"73773","36.2605","-97.92453","Waukomis","OK","Oklahoma","TRUE","","1827","6.6","40047","Garfield","{""40047"": ""100""}","Garfield","40047","FALSE","FALSE","America/Chicago"
-"73801","36.47878","-99.43646","Woodward","OK","Oklahoma","TRUE","","15399","12.4","40153","Woodward","{""40153"": ""99.67"", ""40059"": ""0.33""}","Woodward|Harper","40153|40059","FALSE","FALSE","America/Chicago"
-"73832","36.03793","-99.67436","Arnett","OK","Oklahoma","TRUE","","996","0.8","40045","Ellis","{""40045"": ""100""}","Ellis","40045","FALSE","FALSE","America/Chicago"
-"73834","36.85231","-99.55374","Buffalo","OK","Oklahoma","TRUE","","1673","1.6","40059","Harper","{""40059"": ""100""}","Harper","40059","FALSE","FALSE","America/Chicago"
-"73835","35.97591","-99.21109","Camargo","OK","Oklahoma","TRUE","","249","0.7","40043","Dewey","{""40043"": ""100""}","Dewey","40043","FALSE","FALSE","America/Chicago"
-"73838","36.24593","-98.89635","Chester","OK","Oklahoma","TRUE","","420","1.1","40093","Major","{""40093"": ""88.96"", ""40153"": ""11.04""}","Major|Woodward","40093|40153","FALSE","FALSE","America/Chicago"
-"73840","36.35367","-99.61841","Fargo","OK","Oklahoma","TRUE","","708","1.6","40045","Ellis","{""40045"": ""82.2"", ""40153"": ""17.8""}","Ellis|Woodward","40045|40153","FALSE","FALSE","America/Chicago"
-"73841","36.55883","-99.62421","Fort Supply","OK","Oklahoma","TRUE","","1275","13.0","40153","Woodward","{""40153"": ""97.03"", ""40045"": ""2.97""}","Woodward|Ellis","40153|40045","FALSE","FALSE","America/Chicago"
-"73842","36.81202","-99.19633","Freedom","OK","Oklahoma","TRUE","","596","0.5","40151","Woods","{""40151"": ""89.68"", ""40153"": ""9.92"", ""40059"": ""0.4""}","Woods|Woodward|Harper","40151|40153|40059","FALSE","FALSE","America/Chicago"
-"73843","36.40146","-99.8153","Gage","OK","Oklahoma","TRUE","","889","1.1","40045","Ellis","{""40045"": ""100""}","Ellis","40045","FALSE","FALSE","America/Chicago"
-"73844","36.88695","-100.14301","Gate","OK","Oklahoma","TRUE","","241","0.3","40007","Beaver","{""40007"": ""85.13"", ""40059"": ""14.87""}","Beaver|Harper","40007|40059","FALSE","FALSE","America/Chicago"
-"73848","36.654","-100.00725","Laverne","OK","Oklahoma","TRUE","","2155","1.4","40059","Harper","{""40059"": ""82.61"", ""40007"": ""17.16"", ""40045"": ""0.23""}","Harper|Beaver|Ellis","40059|40007|40045","FALSE","FALSE","America/Chicago"
-"73851","36.59145","-99.80648","May","OK","Oklahoma","TRUE","","126","1.0","40059","Harper","{""40059"": ""77.5"", ""40045"": ""22.5""}","Harper|Ellis","40059|40045","FALSE","FALSE","America/Chicago"
-"73852","36.48158","-99.11655","Mooreland","OK","Oklahoma","TRUE","","2193","2.1","40153","Woodward","{""40153"": ""100""}","Woodward","40153","FALSE","FALSE","America/Chicago"
-"73853","36.23954","-99.14683","Mutual","OK","Oklahoma","TRUE","","554","1.6","40153","Woodward","{""40153"": ""100""}","Woodward","40153","FALSE","FALSE","America/Chicago"
-"73855","36.91681","-99.86541","Rosston","OK","Oklahoma","TRUE","","87","0.2","40059","Harper","{""40059"": ""100""}","Harper","40059","FALSE","FALSE","America/Chicago"
-"73857","36.27055","-99.32995","Sharon","OK","Oklahoma","TRUE","","821","5.0","40153","Woodward","{""40153"": ""100""}","Woodward","40153","FALSE","FALSE","America/Chicago"
-"73858","36.18299","-99.92277","Shattuck","OK","Oklahoma","TRUE","","1583","2.5","40045","Ellis","{""40045"": ""100""}","Ellis","40045","FALSE","FALSE","America/Chicago"
-"73859","36.12364","-99.29827","Vici","OK","Oklahoma","TRUE","","1356","2.8","40043","Dewey","{""40043"": ""84.37"", ""40153"": ""13.02"", ""40045"": ""2.6""}","Dewey|Woodward|Ellis","40043|40153|40045","FALSE","FALSE","America/Chicago"
-"73860","36.53018","-98.8338","Waynoka","OK","Oklahoma","TRUE","","1288","1.5","40151","Woods","{""40151"": ""94.39"", ""40093"": ""5.61""}","Woods|Major","40151|40093","FALSE","FALSE","America/Chicago"
-"73901","36.73544","-101.02069","Adams","OK","Oklahoma","TRUE","","199","6.2","40139","Texas","{""40139"": ""100""}","Texas","40139","FALSE","FALSE","America/Chicago"
-"73931","36.60438","-100.79271","Balko","OK","Oklahoma","TRUE","","437","0.7","40007","Beaver","{""40007"": ""100""}","Beaver","40007","FALSE","FALSE","America/Chicago"
-"73932","36.71612","-100.50249","Beaver","OK","Oklahoma","TRUE","","2283","1.6","40007","Beaver","{""40007"": ""100""}","Beaver","40007","FALSE","FALSE","America/Chicago"
-"73933","36.74596","-102.57362","Boise City","OK","Oklahoma","TRUE","","1548","0.6","40025","Cimarron","{""40025"": ""100""}","Cimarron","40025","FALSE","FALSE","America/Chicago"
-"73937","36.5542","-102.79119","Felt","OK","Oklahoma","TRUE","","185","0.4","40025","Cimarron","{""40025"": ""100""}","Cimarron","40025","FALSE","FALSE","America/Chicago"
-"73938","36.93497","-100.58305","Forgan","OK","Oklahoma","TRUE","","773","1.5","40007","Beaver","{""40007"": ""100""}","Beaver","40007","FALSE","FALSE","America/Chicago"
-"73939","36.77793","-101.79129","Goodwell","OK","Oklahoma","TRUE","","1638","1.9","40139","Texas","{""40139"": ""100""}","Texas","40139","FALSE","FALSE","America/Chicago"
-"73942","36.74521","-101.51134","Guymon","OK","Oklahoma","TRUE","","13127","8.1","40139","Texas","{""40139"": ""100""}","Texas","40139","FALSE","FALSE","America/Chicago"
-"73944","36.59047","-101.10788","Hardesty","OK","Oklahoma","TRUE","","443","0.8","40139","Texas","{""40139"": ""100""}","Texas","40139","FALSE","FALSE","America/Chicago"
-"73945","36.83331","-101.23303","Hooker","OK","Oklahoma","TRUE","","2935","2.9","40139","Texas","{""40139"": ""100""}","Texas","40139","FALSE","FALSE","America/Chicago"
-"73946","36.93133","-102.81268","Kenton","OK","Oklahoma","TRUE","","42","0.1","40025","Cimarron","{""40025"": ""100""}","Cimarron","40025","FALSE","FALSE","America/Chicago"
-"73947","36.81289","-102.15782","Keyes","OK","Oklahoma","TRUE","","385","0.5","40025","Cimarron","{""40025"": ""100""}","Cimarron","40025","FALSE","FALSE","America/Chicago"
-"73949","36.57949","-101.92065","Texhoma","OK","Oklahoma","TRUE","","1635","1.2","40139","Texas","{""40139"": ""70.5"", ""48421"": ""24.29"", ""40025"": ""5.21""}","Texas|Sherman|Cimarron","40139|48421|40025","FALSE","FALSE","America/Chicago"
-"73950","36.85721","-100.88374","Turpin","OK","Oklahoma","TRUE","","1444","2.6","40007","Beaver","{""40007"": ""95.28"", ""40139"": ""4.72""}","Beaver|Texas","40007|40139","FALSE","FALSE","America/Chicago"
-"73951","36.94471","-101.0575","Tyrone","OK","Oklahoma","TRUE","","1115","4.5","40139","Texas","{""40139"": ""100""}","Texas","40139","FALSE","FALSE","America/Chicago"
-"74001","36.49726","-96.0798","Avant","OK","Oklahoma","TRUE","","315","20.3","40113","Osage","{""40113"": ""100""}","Osage","40113","FALSE","FALSE","America/Chicago"
-"74002","36.55613","-96.14402","Barnsdall","OK","Oklahoma","TRUE","","1895","5.1","40113","Osage","{""40113"": ""100""}","Osage","40113","FALSE","FALSE","America/Chicago"
-"74003","36.72742","-96.06581","Bartlesville","OK","Oklahoma","TRUE","","14230","45.0","40147","Washington","{""40147"": ""87.87"", ""40113"": ""12.13""}","Washington|Osage","40147|40113","FALSE","FALSE","America/Chicago"
-"74006","36.71433","-95.89225","Bartlesville","OK","Oklahoma","TRUE","","26900","116.9","40147","Washington","{""40147"": ""100""}","Washington","40147","FALSE","FALSE","America/Chicago"
-"74008","35.92456","-95.87253","Bixby","OK","Oklahoma","TRUE","","29686","144.8","40143","Tulsa","{""40143"": ""99.15"", ""40145"": ""0.85""}","Tulsa|Wagoner","40143|40145","FALSE","FALSE","America/Chicago"
-"74010","35.81446","-96.36493","Bristow","OK","Oklahoma","TRUE","","10809","12.7","40037","Creek","{""40037"": ""99.78"", ""40107"": ""0.22""}","Creek|Okfuskee","40037|40107","FALSE","FALSE","America/Chicago"
-"74011","35.98162","-95.80942","Broken Arrow","OK","Oklahoma","TRUE","","28423","463.8","40143","Tulsa","{""40143"": ""100""}","Tulsa","40143","FALSE","FALSE","America/Chicago"
-"74012","36.05359","-95.80494","Broken Arrow","OK","Oklahoma","TRUE","","62622","976.5","40143","Tulsa","{""40143"": ""100""}","Tulsa","40143","FALSE","FALSE","America/Chicago"
-"74014","36.05998","-95.67515","Broken Arrow","OK","Oklahoma","TRUE","","41314","151.6","40145","Wagoner","{""40145"": ""96.51"", ""40143"": ""3.49""}","Wagoner|Tulsa","40145|40143","FALSE","FALSE","America/Chicago"
-"74015","36.18229","-95.70744","Catoosa","OK","Oklahoma","TRUE","","8977","60.8","40131","Rogers","{""40131"": ""73.46"", ""40145"": ""26.39"", ""40143"": ""0.15""}","Rogers|Wagoner|Tulsa","40131|40145|40143","FALSE","FALSE","America/Chicago"
-"74016","36.54513","-95.44976","Chelsea","OK","Oklahoma","TRUE","","5842","15.1","40131","Rogers","{""40131"": ""85.96"", ""40097"": ""7.58"", ""40105"": ""4.23"", ""40035"": ""2.23""}","Rogers|Mayes|Nowata|Craig","40131|40097|40105|40035","FALSE","FALSE","America/Chicago"
-"74017","36.39313","-95.58349","Claremore","OK","Oklahoma","TRUE","","28232","75.5","40131","Rogers","{""40131"": ""100""}","Rogers","40131","FALSE","FALSE","America/Chicago"
-"74019","36.28056","-95.60386","Claremore","OK","Oklahoma","TRUE","","18348","64.3","40131","Rogers","{""40131"": ""100""}","Rogers","40131","FALSE","FALSE","America/Chicago"
-"74020","36.24511","-96.41911","Cleveland","OK","Oklahoma","TRUE","","7293","41.3","40117","Pawnee","{""40117"": ""100""}","Pawnee","40117","FALSE","FALSE","America/Chicago"
-"74021","36.38241","-95.84795","Collinsville","OK","Oklahoma","TRUE","","20226","113.4","40143","Tulsa","{""40143"": ""74"", ""40131"": ""23.11"", ""40147"": ""2.89""}","Tulsa|Rogers|Washington","40143|40131|40147","FALSE","FALSE","America/Chicago"
-"74022","36.93189","-95.9794","Copan","OK","Oklahoma","TRUE","","1751","5.7","40147","Washington","{""40147"": ""97.27"", ""40113"": ""2.73""}","Washington|Osage","40147|40113","FALSE","FALSE","America/Chicago"
-"74023","35.95803","-96.7497","Cushing","OK","Oklahoma","TRUE","","11534","25.3","40119","Payne","{""40119"": ""91.49"", ""40081"": ""8.51""}","Payne|Lincoln","40119|40081","FALSE","FALSE","America/Chicago"
-"74026","35.71287","-96.76233","Davenport","OK","Oklahoma","TRUE","","947","149.5","40081","Lincoln","{""40081"": ""100""}","Lincoln","40081","FALSE","FALSE","America/Chicago"
-"74027","36.79882","-95.58707","Delaware","OK","Oklahoma","TRUE","","1103","4.6","40105","Nowata","{""40105"": ""100""}","Nowata","40105","FALSE","FALSE","America/Chicago"
-"74028","35.78653","-96.52369","Depew","OK","Oklahoma","TRUE","","1686","6.4","40037","Creek","{""40037"": ""100""}","Creek","40037","FALSE","FALSE","America/Chicago"
-"74029","36.82681","-95.88752","Dewey","OK","Oklahoma","TRUE","","4833","36.0","40147","Washington","{""40147"": ""100""}","Washington","40147","FALSE","FALSE","America/Chicago"
-"74030","35.98764","-96.56447","Drumright","OK","Oklahoma","TRUE","","3696","20.7","40037","Creek","{""40037"": ""93.53"", ""40119"": ""6.47""}","Creek|Payne","40037|40119","FALSE","FALSE","America/Chicago"
-"74032","36.20922","-96.90433","Glencoe","OK","Oklahoma","TRUE","","2308","8.6","40119","Payne","{""40119"": ""90.54"", ""40117"": ""6.26"", ""40103"": ""3.2""}","Payne|Pawnee|Noble","40119|40117|40103","FALSE","FALSE","America/Chicago"
-"74033","35.94587","-96.00757","Glenpool","OK","Oklahoma","TRUE","","12477","405.1","40143","Tulsa","{""40143"": ""100""}","Tulsa","40143","FALSE","FALSE","America/Chicago"
-"74034","36.22631","-96.57904","Hallett","OK","Oklahoma","TRUE","","117","14.0","40117","Pawnee","{""40117"": ""100""}","Pawnee","40117","FALSE","FALSE","America/Chicago"
-"74035","36.42348","-96.38873","Hominy","OK","Oklahoma","TRUE","","4252","6.8","40113","Osage","{""40113"": ""100""}","Osage","40113","FALSE","FALSE","America/Chicago"
-"74036","36.15902","-95.50724","Inola","OK","Oklahoma","TRUE","","7200","22.6","40131","Rogers","{""40131"": ""95.16"", ""40097"": ""3.37"", ""40145"": ""1.47""}","Rogers|Mayes|Wagoner","40131|40097|40145","FALSE","FALSE","America/Chicago"
-"74037","36.00187","-95.9783","Jenks","OK","Oklahoma","TRUE","","18653","498.3","40143","Tulsa","{""40143"": ""100""}","Tulsa","40143","FALSE","FALSE","America/Chicago"
-"74038","36.15819","-96.5636","Jennings","OK","Oklahoma","TRUE","","2268","9.0","40117","Pawnee","{""40117"": ""60.16"", ""40037"": ""39.84""}","Pawnee|Creek","40117|40037","FALSE","FALSE","America/Chicago"
-"74039","35.89624","-96.22923","Kellyville","OK","Oklahoma","TRUE","","3768","22.2","40037","Creek","{""40037"": ""100""}","Creek","40037","FALSE","FALSE","America/Chicago"
-"74041","35.9417","-96.05455","Kiefer","OK","Oklahoma","TRUE","","2652","137.5","40037","Creek","{""40037"": ""100""}","Creek","40037","FALSE","FALSE","America/Chicago"
-"74042","36.86882","-95.57556","Lenapah","OK","Oklahoma","TRUE","","410","2.8","40105","Nowata","{""40105"": ""100""}","Nowata","40105","FALSE","FALSE","America/Chicago"
-"74044","36.09464","-96.38256","Mannford","OK","Oklahoma","TRUE","","7332","35.0","40037","Creek","{""40037"": ""89.99"", ""40117"": ""10.01""}","Creek|Pawnee","40037|40117","FALSE","FALSE","America/Chicago"
-"74045","36.2234","-96.70733","Maramec","OK","Oklahoma","TRUE","","352","3.0","40117","Pawnee","{""40117"": ""85.85"", ""40119"": ""14.15""}","Pawnee|Payne","40117|40119","FALSE","FALSE","America/Chicago"
-"74046","35.74991","-96.56317","Milfay","OK","Oklahoma","TRUE","","133","59.5","40037","Creek","{""40037"": ""100""}","Creek","40037","FALSE","FALSE","America/Chicago"
-"74047","35.85505","-96.01407","Mounds","OK","Oklahoma","TRUE","","7607","29.6","40111","Okmulgee","{""40111"": ""45.75"", ""40037"": ""34.12"", ""40143"": ""20.13""}","Okmulgee|Creek|Tulsa","40111|40037|40143","FALSE","FALSE","America/Chicago"
-"74048","36.69188","-95.65212","Nowata","OK","Oklahoma","TRUE","","6068","11.2","40105","Nowata","{""40105"": ""100""}","Nowata","40105","FALSE","FALSE","America/Chicago"
-"74050","36.07282","-96.06463","Oakhurst","OK","Oklahoma","TRUE","","291","460.6","40037","Creek","{""40037"": ""82.04"", ""40143"": ""17.96""}","Creek|Tulsa","40037|40143","FALSE","FALSE","America/Chicago"
-"74051","36.60993","-95.96602","Ochelata","OK","Oklahoma","TRUE","","2072","23.8","40147","Washington","{""40147"": ""99.05"", ""40113"": ""0.95""}","Washington|Osage","40147|40113","FALSE","FALSE","America/Chicago"
-"74052","36.08466","-96.57993","Oilton","OK","Oklahoma","TRUE","","992","26.4","40037","Creek","{""40037"": ""100""}","Creek","40037","FALSE","FALSE","America/Chicago"
-"74053","36.43261","-95.73266","Oologah","OK","Oklahoma","TRUE","","4677","45.7","40131","Rogers","{""40131"": ""100""}","Rogers","40131","FALSE","FALSE","America/Chicago"
-"74054","36.2753","-96.3475","Osage","OK","Oklahoma","TRUE","","848","11.5","40113","Osage","{""40113"": ""100""}","Osage","40113","FALSE","FALSE","America/Chicago"
-"74055","36.27843","-95.81894","Owasso","OK","Oklahoma","TRUE","","46460","351.2","40143","Tulsa","{""40143"": ""71.18"", ""40131"": ""28.82""}","Tulsa|Rogers","40143|40131","FALSE","FALSE","America/Chicago"
-"74056","36.80028","-96.33635","Pawhuska","OK","Oklahoma","TRUE","","5189","3.1","40113","Osage","{""40113"": ""100""}","Osage","40113","FALSE","FALSE","America/Chicago"
-"74058","36.3568","-96.75986","Pawnee","OK","Oklahoma","TRUE","","3906","5.9","40117","Pawnee","{""40117"": ""100""}","Pawnee","40117","FALSE","FALSE","America/Chicago"
-"74059","35.95898","-97.05221","Perkins","OK","Oklahoma","TRUE","","5789","19.4","40119","Payne","{""40119"": ""93.96"", ""40081"": ""5.53"", ""40083"": ""0.51""}","Payne|Lincoln|Logan","40119|40081|40083","FALSE","FALSE","America/Chicago"
-"74060","36.26746","-96.24784","Prue","OK","Oklahoma","TRUE","","464","12.4","40113","Osage","{""40113"": ""100""}","Osage","40113","FALSE","FALSE","America/Chicago"
-"74061","36.53892","-95.90055","Ramona","OK","Oklahoma","TRUE","","2305","9.7","40147","Washington","{""40147"": ""100""}","Washington","40147","FALSE","FALSE","America/Chicago"
-"74062","36.04052","-96.8932","Ripley","OK","Oklahoma","TRUE","","938","11.5","40119","Payne","{""40119"": ""100""}","Payne","40119","FALSE","FALSE","America/Chicago"
-"74063","36.15043","-96.19614","Sand Springs","OK","Oklahoma","TRUE","","31608","89.9","40143","Tulsa","{""40143"": ""80.61"", ""40113"": ""17.21"", ""40037"": ""2.17""}","Tulsa|Osage|Creek","40143|40113|40037","FALSE","FALSE","America/Chicago"
-"74066","35.99282","-96.16465","Sapulpa","OK","Oklahoma","TRUE","","33432","101.8","40037","Creek","{""40037"": ""96.3"", ""40143"": ""3.7""}","Creek|Tulsa","40037|40143","FALSE","FALSE","America/Chicago"
-"74068","35.90831","-96.57505","Shamrock","OK","Oklahoma","TRUE","","2","1.0","40037","Creek","{""40037"": ""100""}","Creek","40037","FALSE","FALSE","America/Chicago"
-"74070","36.38838","-96.07447","Skiatook","OK","Oklahoma","TRUE","","15092","30.9","40113","Osage","{""40113"": ""69.03"", ""40143"": ""25.46"", ""40147"": ""5.51""}","Osage|Tulsa|Washington","40113|40143|40147","FALSE","FALSE","America/Chicago"
-"74071","35.78212","-96.28047","Slick","OK","Oklahoma","TRUE","","136","7.0","40037","Creek","{""40037"": ""100""}","Creek","40037","FALSE","FALSE","America/Chicago"
-"74072","36.94696","-95.53756","S Coffeyville","OK","Oklahoma","TRUE","","1832","6.2","40105","Nowata","{""40105"": ""99.45"", ""40035"": ""0.55""}","Nowata|Craig","40105|40035","FALSE","FALSE","America/Chicago"
-"74073","36.30147","-96.01704","Sperry","OK","Oklahoma","TRUE","","5749","47.4","40143","Tulsa","{""40143"": ""58.21"", ""40113"": ""41.79""}","Tulsa|Osage","40143|40113","FALSE","FALSE","America/Chicago"
-"74074","36.08105","-97.07624","Stillwater","OK","Oklahoma","TRUE","","32132","94.2","40119","Payne","{""40119"": ""100""}","Payne","40119","FALSE","FALSE","America/Chicago"
-"74075","36.17192","-97.07907","Stillwater","OK","Oklahoma","TRUE","","26039","108.6","40119","Payne","{""40119"": ""97.58"", ""40103"": ""2.42""}","Payne|Noble","40119|40103","FALSE","FALSE","America/Chicago"
-"74078","36.12408","-97.0705","Stillwater","OK","Oklahoma","TRUE","","2306","3667.9","40119","Payne","{""40119"": ""100""}","Payne","40119","FALSE","FALSE","America/Chicago"
-"74079","35.74673","-96.65588","Stroud","OK","Oklahoma","TRUE","","4268","9.4","40081","Lincoln","{""40081"": ""92.45"", ""40037"": ""7.55""}","Lincoln|Creek","40081|40037","FALSE","FALSE","America/Chicago"
-"74080","36.52745","-95.74124","Talala","OK","Oklahoma","TRUE","","3068","11.8","40131","Rogers","{""40131"": ""91.59"", ""40147"": ""8.41""}","Rogers|Washington","40131|40147","FALSE","FALSE","America/Chicago"
-"74081","36.17588","-96.45561","Terlton","OK","Oklahoma","TRUE","","2022","22.9","40117","Pawnee","{""40117"": ""91.29"", ""40037"": ""8.71""}","Pawnee|Creek","40117|40037","FALSE","FALSE","America/Chicago"
-"74082","36.45047","-95.88155","Vera","OK","Oklahoma","TRUE","","56","283.5","40147","Washington","{""40147"": ""100""}","Washington","40147","FALSE","FALSE","America/Chicago"
-"74083","36.91545","-95.7694","Wann","OK","Oklahoma","TRUE","","1001","3.7","40105","Nowata","{""40105"": ""73.71"", ""40147"": ""26.29""}","Nowata|Washington","40105|40147","FALSE","FALSE","America/Chicago"
-"74084","36.53814","-96.34617","Wynona","OK","Oklahoma","TRUE","","512","3.3","40113","Osage","{""40113"": ""100""}","Osage","40113","FALSE","FALSE","America/Chicago"
-"74085","36.11039","-96.71513","Yale","OK","Oklahoma","TRUE","","2016","8.4","40119","Payne","{""40119"": ""96.21"", ""40117"": ""3.59"", ""40037"": ""0.19""}","Payne|Pawnee|Creek","40119|40117|40037","FALSE","FALSE","America/Chicago"
-"74103","36.15561","-95.99453","Tulsa","OK","Oklahoma","TRUE","","2151","1455.6","40143","Tulsa","{""40143"": ""100""}","Tulsa","40143","FALSE","FALSE","America/Chicago"
-"74104","36.1465","-95.95398","Tulsa","OK","Oklahoma","TRUE","","11186","1586.5","40143","Tulsa","{""40143"": ""100""}","Tulsa","40143","FALSE","FALSE","America/Chicago"
-"74105","36.09747","-95.96404","Tulsa","OK","Oklahoma","TRUE","","25469","1350.9","40143","Tulsa","{""40143"": ""100""}","Tulsa","40143","FALSE","FALSE","America/Chicago"
-"74106","36.19194","-95.98423","Tulsa","OK","Oklahoma","TRUE","","17919","914.0","40143","Tulsa","{""40143"": ""95.91"", ""40113"": ""4.09""}","Tulsa|Osage","40143|40113","FALSE","FALSE","America/Chicago"
-"74107","36.1069","-96.04148","Tulsa","OK","Oklahoma","TRUE","","19961","299.6","40143","Tulsa","{""40143"": ""100""}","Tulsa","40143","FALSE","FALSE","America/Chicago"
-"74108","36.1476","-95.79401","Tulsa","OK","Oklahoma","TRUE","","7608","360.4","40143","Tulsa","{""40143"": ""79.72"", ""40145"": ""20.28""}","Tulsa|Wagoner","40143|40145","FALSE","FALSE","America/Chicago"
-"74110","36.18865","-95.95389","Tulsa","OK","Oklahoma","TRUE","","14546","948.9","40143","Tulsa","{""40143"": ""100""}","Tulsa","40143","FALSE","FALSE","America/Chicago"
-"74112","36.14715","-95.9043","Tulsa","OK","Oklahoma","TRUE","","20648","1181.7","40143","Tulsa","{""40143"": ""100""}","Tulsa","40143","FALSE","FALSE","America/Chicago"
-"74114","36.127","-95.94659","Tulsa","OK","Oklahoma","TRUE","","16530","1313.4","40143","Tulsa","{""40143"": ""100""}","Tulsa","40143","FALSE","FALSE","America/Chicago"
-"74115","36.1924","-95.90944","Tulsa","OK","Oklahoma","TRUE","","23413","576.7","40143","Tulsa","{""40143"": ""100""}","Tulsa","40143","FALSE","FALSE","America/Chicago"
-"74116","36.18804","-95.83619","Tulsa","OK","Oklahoma","TRUE","","3863","83.1","40143","Tulsa","{""40143"": ""67.33"", ""40131"": ""32.67""}","Tulsa|Rogers","40143|40131","FALSE","FALSE","America/Chicago"
-"74117","36.2416","-95.89623","Tulsa","OK","Oklahoma","TRUE","","45","1.4","40143","Tulsa","{""40143"": ""100""}","Tulsa","40143","FALSE","FALSE","America/Chicago"
-"74119","36.14204","-95.98919","Tulsa","OK","Oklahoma","TRUE","","3113","1529.2","40143","Tulsa","{""40143"": ""100""}","Tulsa","40143","FALSE","FALSE","America/Chicago"
-"74120","36.15041","-95.97682","Tulsa","OK","Oklahoma","TRUE","","4864","880.1","40143","Tulsa","{""40143"": ""100""}","Tulsa","40143","FALSE","FALSE","America/Chicago"
-"74126","36.24068","-96.02965","Tulsa","OK","Oklahoma","TRUE","","10665","171.8","40143","Tulsa","{""40143"": ""90.54"", ""40113"": ""9.46""}","Tulsa|Osage","40143|40113","FALSE","FALSE","America/Chicago"
-"74127","36.17895","-96.04534","Tulsa","OK","Oklahoma","TRUE","","15560","246.6","40143","Tulsa","{""40143"": ""66.29"", ""40113"": ""33.71""}","Tulsa|Osage","40143|40113","FALSE","FALSE","America/Chicago"
-"74128","36.14745","-95.85144","Tulsa","OK","Oklahoma","TRUE","","13253","1388.0","40143","Tulsa","{""40143"": ""100""}","Tulsa","40143","FALSE","FALSE","America/Chicago"
-"74129","36.12678","-95.8697","Tulsa","OK","Oklahoma","TRUE","","19679","1826.9","40143","Tulsa","{""40143"": ""100""}","Tulsa","40143","FALSE","FALSE","America/Chicago"
-"74130","36.24151","-95.95512","Tulsa","OK","Oklahoma","TRUE","","1985","188.9","40143","Tulsa","{""40143"": ""100""}","Tulsa","40143","FALSE","FALSE","America/Chicago"
-"74131","36.05242","-96.07093","Tulsa","OK","Oklahoma","TRUE","","2757","107.0","40037","Creek","{""40037"": ""99.1"", ""40143"": ""0.9""}","Creek|Tulsa","40037|40143","FALSE","FALSE","America/Chicago"
-"74132","36.04863","-96.01322","Tulsa","OK","Oklahoma","TRUE","","9200","291.7","40143","Tulsa","{""40143"": ""66.91"", ""40037"": ""33.09""}","Tulsa|Creek","40143|40037","FALSE","FALSE","America/Chicago"
-"74133","36.04146","-95.87941","Tulsa","OK","Oklahoma","TRUE","","46368","1301.2","40143","Tulsa","{""40143"": ""100""}","Tulsa","40143","FALSE","FALSE","America/Chicago"
-"74134","36.11164","-95.80388","Tulsa","OK","Oklahoma","TRUE","","15899","556.9","40143","Tulsa","{""40143"": ""100""}","Tulsa","40143","FALSE","FALSE","America/Chicago"
-"74135","36.09727","-95.92329","Tulsa","OK","Oklahoma","TRUE","","20424","1302.3","40143","Tulsa","{""40143"": ""100""}","Tulsa","40143","FALSE","FALSE","America/Chicago"
-"74136","36.06141","-95.94236","Tulsa","OK","Oklahoma","TRUE","","31183","1488.6","40143","Tulsa","{""40143"": ""100""}","Tulsa","40143","FALSE","FALSE","America/Chicago"
-"74137","36.02055","-95.92937","Tulsa","OK","Oklahoma","TRUE","","28320","1059.0","40143","Tulsa","{""40143"": ""100""}","Tulsa","40143","FALSE","FALSE","America/Chicago"
-"74145","36.09733","-95.88735","Tulsa","OK","Oklahoma","TRUE","","18541","1179.0","40143","Tulsa","{""40143"": ""100""}","Tulsa","40143","FALSE","FALSE","America/Chicago"
-"74146","36.09785","-95.85322","Tulsa","OK","Oklahoma","TRUE","","16163","1225.2","40143","Tulsa","{""40143"": ""100""}","Tulsa","40143","FALSE","FALSE","America/Chicago"
-"74301","36.67736","-95.22875","Vinita","OK","Oklahoma","TRUE","","11505","11.2","40035","Craig","{""40035"": ""87.8"", ""40097"": ""11.62"", ""40105"": ""0.58""}","Craig|Mayes|Nowata","40035|40097|40105","FALSE","FALSE","America/Chicago"
-"74330","36.43708","-95.27256","Adair","OK","Oklahoma","TRUE","","2989","11.9","40097","Mayes","{""40097"": ""100""}","Mayes","40097","FALSE","FALSE","America/Chicago"
-"74331","36.63939","-94.9423","Afton","OK","Oklahoma","TRUE","","7223","24.8","40041","Delaware","{""40041"": ""75.08"", ""40115"": ""21.15"", ""40035"": ""3.78""}","Delaware|Ottawa|Craig","40041|40115|40035","FALSE","FALSE","America/Chicago"
-"74332","36.52077","-95.23335","Big Cabin","OK","Oklahoma","TRUE","","1860","10.5","40035","Craig","{""40035"": ""44.27"", ""40097"": ""36.87"", ""40131"": ""18.86""}","Craig|Mayes|Rogers","40035|40097|40131","FALSE","FALSE","America/Chicago"
-"74333","36.79144","-95.08618","Bluejacket","OK","Oklahoma","TRUE","","1135","4.9","40035","Craig","{""40035"": ""93.94"", ""40115"": ""6.06""}","Craig|Ottawa","40035|40115","FALSE","FALSE","America/Chicago"
-"74337","36.13395","-95.34139","Chouteau","OK","Oklahoma","TRUE","","4845","20.3","40097","Mayes","{""40097"": ""90.71"", ""40145"": ""9.29""}","Mayes|Wagoner","40097|40145","FALSE","FALSE","America/Chicago"
-"74338","36.26274","-94.72952","Colcord","OK","Oklahoma","TRUE","","5547","12.9","40041","Delaware","{""40041"": ""99.31"", ""40001"": ""0.69""}","Delaware|Adair","40041|40001","FALSE","FALSE","America/Chicago"
-"74339","36.93398","-94.87974","Commerce","OK","Oklahoma","TRUE","","2550","286.4","40115","Ottawa","{""40115"": ""100""}","Ottawa","40115","FALSE","FALSE","America/Chicago"
-"74340","36.47584","-95.02402","Disney","OK","Oklahoma","TRUE","","206","44.2","40097","Mayes","{""40097"": ""100""}","Mayes","40097","FALSE","FALSE","America/Chicago"
-"74342","36.421","-94.93773","Eucha","OK","Oklahoma","TRUE","","2894","15.0","40041","Delaware","{""40041"": ""100""}","Delaware","40041","FALSE","FALSE","America/Chicago"
-"74343","36.74205","-94.82579","Fairland","OK","Oklahoma","TRUE","","3121","18.7","40115","Ottawa","{""40115"": ""100""}","Ottawa","40115","FALSE","FALSE","America/Chicago"
-"74344","36.5973","-94.73848","Grove","OK","Oklahoma","TRUE","","15437","66.6","40041","Delaware","{""40041"": ""99.65"", ""40115"": ""0.35""}","Delaware|Ottawa","40041|40115","FALSE","FALSE","America/Chicago"
-"74346","36.43793","-94.75038","Jay","OK","Oklahoma","TRUE","","7690","13.4","40041","Delaware","{""40041"": ""100""}","Delaware","40041","FALSE","FALSE","America/Chicago"
-"74347","36.17717","-94.78535","Kansas","OK","Oklahoma","TRUE","","2489","27.3","40041","Delaware","{""40041"": ""85"", ""40001"": ""11.65"", ""40021"": ""3.36""}","Delaware|Adair|Cherokee","40041|40001|40021","FALSE","FALSE","America/Chicago"
-"74349","36.51767","-95.03399","Ketchum","OK","Oklahoma","TRUE","","301","83.7","40035","Craig","{""40035"": ""91.82"", ""40097"": ""8.18""}","Craig|Mayes","40035|40097","FALSE","FALSE","America/Chicago"
-"74350","36.46625","-95.05121","Langley","OK","Oklahoma","TRUE","","698","45.5","40097","Mayes","{""40097"": ""100""}","Mayes","40097","FALSE","FALSE","America/Chicago"
-"74352","36.14175","-95.18108","Locust Grove","OK","Oklahoma","TRUE","","6515","19.2","40097","Mayes","{""40097"": ""94.28"", ""40021"": ""3.16"", ""40145"": ""2.56""}","Mayes|Cherokee|Wagoner","40097|40021|40145","FALSE","FALSE","America/Chicago"
-"74354","36.88592","-94.88271","Miami","OK","Oklahoma","TRUE","","17773","38.0","40115","Ottawa","{""40115"": ""99.44"", ""40035"": ""0.56""}","Ottawa|Craig","40115|40035","FALSE","FALSE","America/Chicago"
-"74358","36.91785","-94.8806","North Miami","OK","Oklahoma","TRUE","","225","700.6","40115","Ottawa","{""40115"": ""100""}","Ottawa","40115","FALSE","FALSE","America/Chicago"
-"74359","36.17705","-94.82626","Oaks","OK","Oklahoma","TRUE","","676","27.9","40041","Delaware","{""40041"": ""100""}","Delaware","40041","FALSE","FALSE","America/Chicago"
-"74360","36.97154","-94.83286","Picher","OK","Oklahoma","TRUE","","28","1.7","40115","Ottawa","{""40115"": ""100""}","Ottawa","40115","FALSE","FALSE","America/Chicago"
-"74361","36.30298","-95.30664","Pryor","OK","Oklahoma","TRUE","","16838","38.0","40097","Mayes","{""40097"": ""100""}","Mayes","40097","FALSE","FALSE","America/Chicago"
-"74363","36.95315","-94.71438","Quapaw","OK","Oklahoma","TRUE","","2850","16.2","40115","Ottawa","{""40115"": ""100""}","Ottawa","40115","FALSE","FALSE","America/Chicago"
-"74364","36.20215","-94.9573","Rose","OK","Oklahoma","TRUE","","1883","7.6","40041","Delaware","{""40041"": ""65.54"", ""40021"": ""17.77"", ""40097"": ""16.69""}","Delaware|Cherokee|Mayes","40041|40021|40097","FALSE","FALSE","America/Chicago"
-"74365","36.29621","-95.06754","Salina","OK","Oklahoma","TRUE","","4593","24.7","40097","Mayes","{""40097"": ""89.98"", ""40041"": ""10.02""}","Mayes|Delaware","40097|40041","FALSE","FALSE","America/Chicago"
-"74366","36.39032","-95.04647","Spavinaw","OK","Oklahoma","TRUE","","1475","15.5","40097","Mayes","{""40097"": ""95.32"", ""40041"": ""4.68""}","Mayes|Delaware","40097|40041","FALSE","FALSE","America/Chicago"
-"74367","36.41971","-95.11206","Strang","OK","Oklahoma","TRUE","","462","9.7","40097","Mayes","{""40097"": ""100""}","Mayes","40097","FALSE","FALSE","America/Chicago"
-"74368","36.20754","-94.84861","Twin Oaks","OK","Oklahoma","TRUE","","109","37.5","40041","Delaware","{""40041"": ""100""}","Delaware","40041","FALSE","FALSE","America/Chicago"
-"74369","36.91922","-95.19809","Welch","OK","Oklahoma","TRUE","","2011","3.4","40035","Craig","{""40035"": ""100""}","Craig","40035","FALSE","FALSE","America/Chicago"
-"74370","36.76577","-94.6798","Wyandotte","OK","Oklahoma","TRUE","","3486","12.4","40115","Ottawa","{""40115"": ""92.28"", ""40041"": ""7.72""}","Ottawa|Delaware","40115|40041","FALSE","FALSE","America/Chicago"
-"74401","35.72181","-95.46533","Muskogee","OK","Oklahoma","TRUE","","15950","50.9","40101","Muskogee","{""40101"": ""100""}","Muskogee","40101","FALSE","FALSE","America/Chicago"
-"74403","35.67168","-95.30678","Muskogee","OK","Oklahoma","TRUE","","30374","103.1","40101","Muskogee","{""40101"": ""99.34"", ""40145"": ""0.66""}","Muskogee|Wagoner","40101|40145","FALSE","FALSE","America/Chicago"
-"74421","35.76006","-96.04371","Beggs","OK","Oklahoma","TRUE","","4954","14.5","40111","Okmulgee","{""40111"": ""100""}","Okmulgee","40111","FALSE","FALSE","America/Chicago"
-"74422","35.63654","-95.70864","Boynton","OK","Oklahoma","TRUE","","839","5.0","40101","Muskogee","{""40101"": ""67.72"", ""40111"": ""32.28""}","Muskogee|Okmulgee","40101|40111","FALSE","FALSE","America/Chicago"
-"74423","35.67306","-95.1917","Braggs","OK","Oklahoma","TRUE","","957","6.8","40101","Muskogee","{""40101"": ""100""}","Muskogee","40101","FALSE","FALSE","America/Chicago"
-"74425","35.17235","-95.64189","Canadian","OK","Oklahoma","TRUE","","1377","32.5","40121","Pittsburg","{""40121"": ""100""}","Pittsburg","40121","FALSE","FALSE","America/Chicago"
-"74426","35.44994","-95.52887","Checotah","OK","Oklahoma","TRUE","","9369","16.3","40091","McIntosh","{""40091"": ""100""}","McIntosh","40091","FALSE","FALSE","America/Chicago"
-"74427","35.68398","-94.90704","Cookson","OK","Oklahoma","TRUE","","1156","11.3","40021","Cherokee","{""40021"": ""100""}","Cherokee","40021","FALSE","FALSE","America/Chicago"
-"74428","35.56784","-95.63752","Council Hill","OK","Oklahoma","TRUE","","1383","8.8","40091","McIntosh","{""40091"": ""50.79"", ""40101"": ""49.21""}","McIntosh|Muskogee","40091|40101","FALSE","FALSE","America/Chicago"
-"74429","35.95451","-95.62806","Coweta","OK","Oklahoma","TRUE","","15380","68.7","40145","Wagoner","{""40145"": ""100""}","Wagoner","40145","FALSE","FALSE","America/Chicago"
-"74430","35.12451","-95.66073","Crowder","OK","Oklahoma","TRUE","","477","28.7","40121","Pittsburg","{""40121"": ""100""}","Pittsburg","40121","FALSE","FALSE","America/Chicago"
-"74431","35.46684","-95.94553","Dewar","OK","Oklahoma","TRUE","","921","97.1","40111","Okmulgee","{""40111"": ""100""}","Okmulgee","40111","FALSE","FALSE","America/Chicago"
-"74432","35.28443","-95.65657","Eufaula","OK","Oklahoma","TRUE","","9647","17.3","40091","McIntosh","{""40091"": ""76.84"", ""40121"": ""23.16""}","McIntosh|Pittsburg","40091|40121","FALSE","FALSE","America/Chicago"
-"74434","35.8085","-95.21268","Fort Gibson","OK","Oklahoma","TRUE","","8662","37.1","40101","Muskogee","{""40101"": ""65.94"", ""40021"": ""25.12"", ""40145"": ""8.93""}","Muskogee|Cherokee|Wagoner","40101|40021|40145","FALSE","FALSE","America/Chicago"
-"74435","35.57733","-95.09355","Gore","OK","Oklahoma","TRUE","","3328","19.8","40135","Sequoyah","{""40135"": ""88.82"", ""40101"": ""11.18""}","Sequoyah|Muskogee","40135|40101","FALSE","FALSE","America/Chicago"
-"74436","35.79664","-95.69675","Haskell","OK","Oklahoma","TRUE","","5368","15.1","40101","Muskogee","{""40101"": ""77.87"", ""40145"": ""15.58"", ""40111"": ""6.56""}","Muskogee|Wagoner|Okmulgee","40101|40145|40111","FALSE","FALSE","America/Chicago"
-"74437","35.45456","-95.92798","Henryetta","OK","Oklahoma","TRUE","","9683","17.9","40111","Okmulgee","{""40111"": ""91.06"", ""40091"": ""8.59"", ""40107"": ""0.34""}","Okmulgee|McIntosh|Okfuskee","40111|40091|40107","FALSE","FALSE","America/Chicago"
-"74438","35.5376","-95.75539","Hitchita","OK","Oklahoma","TRUE","","130","6.4","40091","McIntosh","{""40091"": ""100""}","McIntosh","40091","FALSE","FALSE","America/Chicago"
-"74441","35.97558","-95.15073","Hulbert","OK","Oklahoma","TRUE","","6119","17.0","40021","Cherokee","{""40021"": ""100""}","Cherokee","40021","FALSE","FALSE","America/Chicago"
-"74442","35.13141","-95.81575","Indianola","OK","Oklahoma","TRUE","","876","5.6","40121","Pittsburg","{""40121"": ""100""}","Pittsburg","40121","FALSE","FALSE","America/Chicago"
-"74445","35.62809","-95.82588","Morris","OK","Oklahoma","TRUE","","2986","14.1","40111","Okmulgee","{""40111"": ""99.69"", ""40091"": ""0.31""}","Okmulgee|McIntosh","40111|40091","FALSE","FALSE","America/Chicago"
-"74446","35.84854","-95.31625","Okay","OK","Oklahoma","TRUE","","501","190.2","40145","Wagoner","{""40145"": ""100""}","Wagoner","40145","FALSE","FALSE","America/Chicago"
-"74447","35.65124","-96.00316","Okmulgee","OK","Oklahoma","TRUE","","16096","27.0","40111","Okmulgee","{""40111"": ""100""}","Okmulgee","40111","FALSE","FALSE","America/Chicago"
-"74450","35.59646","-95.48126","Oktaha","OK","Oklahoma","TRUE","","1750","9.4","40101","Muskogee","{""40101"": ""100""}","Muskogee","40101","FALSE","FALSE","America/Chicago"
-"74451","35.74314","-94.97553","Park Hill","OK","Oklahoma","TRUE","","4255","22.3","40021","Cherokee","{""40021"": ""100""}","Cherokee","40021","FALSE","FALSE","America/Chicago"
-"74452","36.12017","-95.06805","Peggs","OK","Oklahoma","TRUE","","374","5.5","40021","Cherokee","{""40021"": ""55.18"", ""40097"": ""44.82""}","Cherokee|Mayes","40021|40097","FALSE","FALSE","America/Chicago"
-"74454","35.85546","-95.51522","Porter","OK","Oklahoma","TRUE","","3300","11.7","40145","Wagoner","{""40145"": ""100""}","Wagoner","40145","FALSE","FALSE","America/Chicago"
-"74455","35.3619","-95.26371","Porum","OK","Oklahoma","TRUE","","3265","11.0","40101","Muskogee","{""40101"": ""77.87"", ""40091"": ""22.13""}","Muskogee|McIntosh","40101|40091","FALSE","FALSE","America/Chicago"
-"74456","35.71124","-95.99701","Preston","OK","Oklahoma","TRUE","","214","67.3","40111","Okmulgee","{""40111"": ""100""}","Okmulgee","40111","FALSE","FALSE","America/Chicago"
-"74457","36.03116","-94.81926","Proctor","OK","Oklahoma","TRUE","","332","1.8","40001","Adair","{""40001"": ""52.96"", ""40021"": ""47.04""}","Adair|Cherokee","40001|40021","FALSE","FALSE","America/Chicago"
-"74458","35.88357","-95.59183","Redbird","OK","Oklahoma","TRUE","","81","23.0","40145","Wagoner","{""40145"": ""100""}","Wagoner","40145","FALSE","FALSE","America/Chicago"
-"74459","35.53422","-95.49223","Rentiesville","OK","Oklahoma","TRUE","","75","18.4","40091","McIntosh","{""40091"": ""100""}","McIntosh","40091","FALSE","FALSE","America/Chicago"
-"74460","35.50796","-95.95652","Schulter","OK","Oklahoma","TRUE","","185","79.8","40111","Okmulgee","{""40111"": ""100""}","Okmulgee","40111","FALSE","FALSE","America/Chicago"
-"74462","35.2832","-95.15524","Stigler","OK","Oklahoma","TRUE","","7648","11.9","40061","Haskell","{""40061"": ""91.9"", ""40121"": ""8.1""}","Haskell|Pittsburg","40061|40121","FALSE","FALSE","America/Chicago"
-"74463","35.75977","-95.55047","Taft","OK","Oklahoma","TRUE","","2176","380.0","40101","Muskogee","{""40101"": ""100""}","Muskogee","40101","FALSE","FALSE","America/Chicago"
-"74464","35.92728","-94.98503","Tahlequah","OK","Oklahoma","TRUE","","31584","43.0","40021","Cherokee","{""40021"": ""100""}","Cherokee","40021","FALSE","FALSE","America/Chicago"
-"74467","35.96628","-95.39265","Wagoner","OK","Oklahoma","TRUE","","15285","38.1","40145","Wagoner","{""40145"": ""100""}","Wagoner","40145","FALSE","FALSE","America/Chicago"
-"74468","35.61216","-95.56808","Wainwright","OK","Oklahoma","TRUE","","282","36.2","40101","Muskogee","{""40101"": ""100""}","Muskogee","40101","FALSE","FALSE","America/Chicago"
-"74469","35.49515","-95.30809","Warner","OK","Oklahoma","TRUE","","2528","22.4","40101","Muskogee","{""40101"": ""97.19"", ""40091"": ""2.81""}","Muskogee|McIntosh","40101|40091","FALSE","FALSE","America/Chicago"
-"74470","35.48063","-95.17267","Webbers Falls","OK","Oklahoma","TRUE","","1587","7.5","40101","Muskogee","{""40101"": ""100""}","Muskogee","40101","FALSE","FALSE","America/Chicago"
-"74471","35.83005","-94.86476","Welling","OK","Oklahoma","TRUE","","1708","13.7","40021","Cherokee","{""40021"": ""100""}","Cherokee","40021","FALSE","FALSE","America/Chicago"
-"74472","35.24792","-95.26683","Whitefield","OK","Oklahoma","TRUE","","679","19.5","40061","Haskell","{""40061"": ""100""}","Haskell","40061","FALSE","FALSE","America/Chicago"
-"74477","36.00418","-95.26655","Wagoner","OK","Oklahoma","TRUE","","9","94.8","40145","Wagoner","{""40145"": ""100""}","Wagoner","40145","FALSE","FALSE","America/Chicago"
-"74501","34.9824","-95.7955","Mcalester","OK","Oklahoma","TRUE","","27747","19.4","40121","Pittsburg","{""40121"": ""100""}","Pittsburg","40121","FALSE","FALSE","America/Chicago"
-"74521","34.65767","-95.09368","Albion","OK","Oklahoma","TRUE","","226","9.1","40127","Pushmataha","{""40127"": ""100""}","Pushmataha","40127","FALSE","FALSE","America/Chicago"
-"74522","34.9035","-95.69272","Alderson","OK","Oklahoma","TRUE","","295","139.2","40121","Pittsburg","{""40121"": ""100""}","Pittsburg","40121","FALSE","FALSE","America/Chicago"
-"74523","34.22758","-95.61038","Antlers","OK","Oklahoma","TRUE","","5756","10.2","40127","Pushmataha","{""40127"": ""96.11"", ""40023"": ""3.89""}","Pushmataha|Choctaw","40127|40023","FALSE","FALSE","America/Chicago"
-"74525","34.33507","-96.06885","Atoka","OK","Oklahoma","TRUE","","9515","8.8","40005","Atoka","{""40005"": ""100""}","Atoka","40005","FALSE","FALSE","America/Chicago"
-"74528","34.72501","-95.72559","Blanco","OK","Oklahoma","TRUE","","214","2.5","40121","Pittsburg","{""40121"": ""100""}","Pittsburg","40121","FALSE","FALSE","America/Chicago"
-"74530","34.42588","-96.5012","Bromide","OK","Oklahoma","TRUE","","137","2.8","40069","Johnston","{""40069"": ""84.11"", ""40029"": ""15.89""}","Johnston|Coal","40069|40029","FALSE","FALSE","America/Chicago"
-"74531","34.88726","-96.2522","Calvin","OK","Oklahoma","TRUE","","935","2.8","40063","Hughes","{""40063"": ""100""}","Hughes","40063","FALSE","FALSE","America/Chicago"
-"74533","34.20709","-96.18856","Caney","OK","Oklahoma","TRUE","","873","8.1","40005","Atoka","{""40005"": ""100""}","Atoka","40005","FALSE","FALSE","America/Chicago"
-"74534","34.61213","-96.36845","Centrahoma","OK","Oklahoma","TRUE","","143","1.9","40029","Coal","{""40029"": ""100""}","Coal","40029","FALSE","FALSE","America/Chicago"
-"74535","34.4829","-96.43966","Clarita","OK","Oklahoma","TRUE","","63","3.9","40029","Coal","{""40029"": ""100""}","Coal","40029","FALSE","FALSE","America/Chicago"
-"74536","34.56172","-95.4519","Clayton","OK","Oklahoma","TRUE","","1586","2.1","40127","Pushmataha","{""40127"": ""97.33"", ""40121"": ""2.22"", ""40077"": ""0.45""}","Pushmataha|Pittsburg|Latimer","40127|40121|40077","FALSE","FALSE","America/Chicago"
-"74538","34.57981","-96.25755","Coalgate","OK","Oklahoma","TRUE","","4126","4.4","40029","Coal","{""40029"": ""100""}","Coal","40029","FALSE","FALSE","America/Chicago"
-"74540","34.55688","-95.70263","Daisy","OK","Oklahoma","TRUE","","184","1.8","40005","Atoka","{""40005"": ""94.19"", ""40127"": ""5.81""}","Atoka|Pushmataha","40005|40127","FALSE","FALSE","America/Chicago"
-"74543","34.36424","-95.43181","Finley","OK","Oklahoma","TRUE","","386","1.1","40127","Pushmataha","{""40127"": ""100""}","Pushmataha","40127","FALSE","FALSE","America/Chicago"
-"74546","34.85844","-95.57873","Haileyville","OK","Oklahoma","TRUE","","744","180.8","40121","Pittsburg","{""40121"": ""100""}","Pittsburg","40121","FALSE","FALSE","America/Chicago"
-"74547","34.81483","-95.59308","Hartshorne","OK","Oklahoma","TRUE","","3472","12.9","40121","Pittsburg","{""40121"": ""95.67"", ""40077"": ""4.33""}","Pittsburg|Latimer","40121|40077","FALSE","FALSE","America/Chicago"
-"74549","34.55839","-94.93264","Honobia","OK","Oklahoma","TRUE","","74","0.7","40127","Pushmataha","{""40127"": ""65.79"", ""40079"": ""34.21""}","Pushmataha|Le Flore","40127|40079","FALSE","FALSE","America/Chicago"
-"74552","35.1212","-95.24293","Kinta","OK","Oklahoma","TRUE","","1128","4.4","40061","Haskell","{""40061"": ""100""}","Haskell","40061","FALSE","FALSE","America/Chicago"
-"74553","34.71206","-95.91385","Kiowa","OK","Oklahoma","TRUE","","1274","6.8","40121","Pittsburg","{""40121"": ""91.84"", ""40005"": ""8.16""}","Pittsburg|Atoka","40121|40005","FALSE","FALSE","America/Chicago"
-"74554","34.9233","-95.71067","Krebs","OK","Oklahoma","TRUE","","1741","141.5","40121","Pittsburg","{""40121"": ""100""}","Pittsburg","40121","FALSE","FALSE","America/Chicago"
-"74555","34.25966","-95.95486","Lane","OK","Oklahoma","TRUE","","748","4.4","40005","Atoka","{""40005"": ""100""}","Atoka","40005","FALSE","FALSE","America/Chicago"
-"74556","34.46697","-96.18204","Lehigh","OK","Oklahoma","TRUE","","403","9.9","40029","Coal","{""40029"": ""100""}","Coal","40029","FALSE","FALSE","America/Chicago"
-"74557","34.40176","-95.69245","Moyers","OK","Oklahoma","TRUE","","540","1.6","40127","Pushmataha","{""40127"": ""100""}","Pushmataha","40127","FALSE","FALSE","America/Chicago"
-"74558","34.4938","-95.15183","Nashoba","OK","Oklahoma","TRUE","","434","2.0","40127","Pushmataha","{""40127"": ""100""}","Pushmataha","40127","FALSE","FALSE","America/Chicago"
-"74560","34.64691","-95.74546","Pittsburg","OK","Oklahoma","TRUE","","584","1.0","40121","Pittsburg","{""40121"": ""89.45"", ""40005"": ""10.55""}","Pittsburg|Atoka","40121|40005","FALSE","FALSE","America/Chicago"
-"74561","35.12566","-95.42926","Quinton","OK","Oklahoma","TRUE","","1984","5.7","40121","Pittsburg","{""40121"": ""75.08"", ""40061"": ""24.92""}","Pittsburg|Haskell","40121|40061","FALSE","FALSE","America/Chicago"
-"74562","34.2946","-95.28514","Rattan","OK","Oklahoma","TRUE","","926","2.2","40127","Pushmataha","{""40127"": ""100""}","Pushmataha","40127","FALSE","FALSE","America/Chicago"
-"74563","34.97376","-95.06672","Red Oak","OK","Oklahoma","TRUE","","1957","4.0","40077","Latimer","{""40077"": ""98.53"", ""40079"": ""1.47""}","Latimer|Le Flore","40077|40079","FALSE","FALSE","America/Chicago"
-"74565","34.80339","-95.84538","Savanna","OK","Oklahoma","TRUE","","615","20.3","40121","Pittsburg","{""40121"": ""100""}","Pittsburg","40121","FALSE","FALSE","America/Chicago"
-"74567","34.42481","-95.39557","Snow","OK","Oklahoma","TRUE","","122","0.9","40127","Pushmataha","{""40127"": ""100""}","Pushmataha","40127","FALSE","FALSE","America/Chicago"
-"74569","34.46562","-95.90905","Stringtown","OK","Oklahoma","TRUE","","1246","2.4","40005","Atoka","{""40005"": ""100""}","Atoka","40005","FALSE","FALSE","America/Chicago"
-"74570","34.85272","-96.10642","Stuart","OK","Oklahoma","TRUE","","994","2.5","40063","Hughes","{""40063"": ""56.01"", ""40121"": ""43.99""}","Hughes|Pittsburg","40063|40121","FALSE","FALSE","America/Chicago"
-"74571","34.71847","-94.98841","Talihina","OK","Oklahoma","TRUE","","3576","4.2","40079","Le Flore","{""40079"": ""59.58"", ""40077"": ""36.84"", ""40127"": ""3.59""}","Le Flore|Latimer|Pushmataha","40079|40077|40127","FALSE","FALSE","America/Chicago"
-"74572","34.64068","-96.42489","Tupelo","OK","Oklahoma","TRUE","","645","5.8","40029","Coal","{""40029"": ""92.13"", ""40123"": ""7.87""}","Coal|Pontotoc","40029|40123","FALSE","FALSE","America/Chicago"
-"74574","34.68415","-95.28332","Tuskahoma","OK","Oklahoma","TRUE","","1131","3.0","40127","Pushmataha","{""40127"": ""51.2"", ""40077"": ""48.8""}","Pushmataha|Latimer","40127|40077","FALSE","FALSE","America/Chicago"
-"74576","34.6602","-96.03757","Wardville","OK","Oklahoma","TRUE","","91","0.7","40005","Atoka","{""40005"": ""86.19"", ""40121"": ""13.81""}","Atoka|Pittsburg","40005|40121","FALSE","FALSE","America/Chicago"
-"74577","34.6825","-94.84376","Whitesboro","OK","Oklahoma","TRUE","","218","11.1","40079","Le Flore","{""40079"": ""100""}","Le Flore","40079","FALSE","FALSE","America/Chicago"
-"74578","34.90557","-95.34057","Wilburton","OK","Oklahoma","TRUE","","6035","7.0","40077","Latimer","{""40077"": ""100""}","Latimer","40077","FALSE","FALSE","America/Chicago"
-"74601","36.70063","-97.14621","Ponca City","OK","Oklahoma","TRUE","","18608","41.7","40071","Kay","{""40071"": ""99.49"", ""40103"": ""0.51""}","Kay|Noble","40071|40103","FALSE","FALSE","America/Chicago"
-"74604","36.69829","-96.98172","Ponca City","OK","Oklahoma","TRUE","","12612","36.2","40071","Kay","{""40071"": ""77.5"", ""40113"": ""22.5""}","Kay|Osage","40071|40113","FALSE","FALSE","America/Chicago"
-"74630","36.51156","-97.4265","Billings","OK","Oklahoma","TRUE","","739","2.7","40103","Noble","{""40103"": ""96.58"", ""40047"": ""3.42""}","Noble|Garfield","40103|40047","FALSE","FALSE","America/Chicago"
-"74631","36.79401","-97.30867","Blackwell","OK","Oklahoma","TRUE","","7484","30.4","40071","Kay","{""40071"": ""100""}","Kay","40071","FALSE","FALSE","America/Chicago"
-"74632","36.93705","-97.33692","Braman","OK","Oklahoma","TRUE","","515","1.8","40071","Kay","{""40071"": ""100""}","Kay","40071","FALSE","FALSE","America/Chicago"
-"74633","36.70322","-96.79223","Burbank","OK","Oklahoma","TRUE","","446","1.8","40113","Osage","{""40113"": ""100""}","Osage","40113","FALSE","FALSE","America/Chicago"
-"74636","36.81782","-97.52228","Deer Creek","OK","Oklahoma","TRUE","","308","2.3","40053","Grant","{""40053"": ""100""}","Grant","40053","FALSE","FALSE","America/Chicago"
-"74637","36.57167","-96.6747","Fairfax","OK","Oklahoma","TRUE","","1607","3.3","40113","Osage","{""40113"": ""100""}","Osage","40113","FALSE","FALSE","America/Chicago"
-"74640","36.55122","-97.65395","Hunter","OK","Oklahoma","TRUE","","258","1.7","40047","Garfield","{""40047"": ""100""}","Garfield","40047","FALSE","FALSE","America/Chicago"
-"74641","36.78921","-96.87904","Kaw City","OK","Oklahoma","TRUE","","648","14.4","40071","Kay","{""40071"": ""100""}","Kay","40071","FALSE","FALSE","America/Chicago"
-"74643","36.67085","-97.55561","Lamont","OK","Oklahoma","TRUE","","484","1.7","40053","Grant","{""40053"": ""100""}","Grant","40053","FALSE","FALSE","America/Chicago"
-"74644","36.55599","-97.10985","Marland","OK","Oklahoma","TRUE","","428","2.1","40103","Noble","{""40103"": ""100""}","Noble","40103","FALSE","FALSE","America/Chicago"
-"74646","36.82618","-97.44102","Nardin","OK","Oklahoma","TRUE","","159","1.1","40071","Kay","{""40071"": ""87.55"", ""40053"": ""12.45""}","Kay|Grant","40071|40053","FALSE","FALSE","America/Chicago"
-"74647","36.91233","-96.98529","Newkirk","OK","Oklahoma","TRUE","","3686","4.7","40071","Kay","{""40071"": ""100""}","Kay","40071","FALSE","FALSE","America/Chicago"
-"74650","36.47746","-96.74748","Ralston","OK","Oklahoma","TRUE","","634","1.7","40117","Pawnee","{""40117"": ""66.96"", ""40113"": ""33.04""}","Pawnee|Osage","40117|40113","FALSE","FALSE","America/Chicago"
-"74651","36.46925","-97.17474","Red Rock","OK","Oklahoma","TRUE","","751","2.0","40103","Noble","{""40103"": ""98.79"", ""40117"": ""1.21""}","Noble|Pawnee","40103|40117","FALSE","FALSE","America/Chicago"
-"74652","36.85873","-96.65036","Shidler","OK","Oklahoma","TRUE","","787","1.3","40113","Osage","{""40113"": ""97.66"", ""40071"": ""2.34""}","Osage|Kay","40113|40071","FALSE","FALSE","America/Chicago"
-"74653","36.65114","-97.3517","Tonkawa","OK","Oklahoma","TRUE","","3723","12.2","40071","Kay","{""40071"": ""99.77"", ""40103"": ""0.23""}","Kay|Noble","40071|40103","FALSE","FALSE","America/Chicago"
-"74701","34.00732","-96.37812","Durant","OK","Oklahoma","TRUE","","25612","56.1","40013","Bryan","{""40013"": ""100""}","Bryan","40013","FALSE","FALSE","America/Chicago"
-"74720","33.8259","-96.3753","Achille","OK","Oklahoma","TRUE","","479","14.3","40013","Bryan","{""40013"": ""100""}","Bryan","40013","FALSE","FALSE","America/Chicago"
-"74722","34.38784","-94.91665","Battiest","OK","Oklahoma","TRUE","","307","7.7","40089","McCurtain","{""40089"": ""100""}","McCurtain","40089","FALSE","FALSE","America/Chicago"
-"74723","33.99066","-96.01516","Bennington","OK","Oklahoma","TRUE","","1328","2.6","40013","Bryan","{""40013"": ""100""}","Bryan","40013","FALSE","FALSE","America/Chicago"
-"74724","34.34711","-94.85598","Bethel","OK","Oklahoma","TRUE","","353","4.3","40089","McCurtain","{""40089"": ""100""}","McCurtain","40089","FALSE","FALSE","America/Chicago"
-"74726","33.95266","-96.1783","Bokchito","OK","Oklahoma","TRUE","","2379","6.1","40013","Bryan","{""40013"": ""100""}","Bryan","40013","FALSE","FALSE","America/Chicago"
-"74727","34.01587","-95.85238","Boswell","OK","Oklahoma","TRUE","","1813","3.5","40023","Choctaw","{""40023"": ""91.9"", ""40005"": ""6.53"", ""40013"": ""1.57""}","Choctaw|Atoka|Bryan","40023|40005|40013","FALSE","FALSE","America/Chicago"
-"74728","34.15341","-94.8017","Broken Bow","OK","Oklahoma","TRUE","","11231","10.9","40089","McCurtain","{""40089"": ""99.52"", ""40127"": ""0.48""}","McCurtain|Pushmataha","40089|40127","FALSE","FALSE","America/Chicago"
-"74729","34.14713","-96.25429","Caddo","OK","Oklahoma","TRUE","","2869","7.2","40013","Bryan","{""40013"": ""74.43"", ""40005"": ""25.57""}","Bryan|Atoka","40013|40005","FALSE","FALSE","America/Chicago"
-"74730","33.90485","-96.43335","Calera","OK","Oklahoma","TRUE","","4926","30.0","40013","Bryan","{""40013"": ""100""}","Bryan","40013","FALSE","FALSE","America/Chicago"
-"74731","33.87802","-96.56038","Cartwright","OK","Oklahoma","TRUE","","1549","46.0","40013","Bryan","{""40013"": ""100""}","Bryan","40013","FALSE","FALSE","America/Chicago"
-"74733","33.83108","-96.48261","Colbert","OK","Oklahoma","TRUE","","3302","26.8","40013","Bryan","{""40013"": ""100""}","Bryan","40013","FALSE","FALSE","America/Chicago"
-"74734","34.10221","-94.54619","Eagletown","OK","Oklahoma","TRUE","","1169","2.8","40089","McCurtain","{""40089"": ""100""}","McCurtain","40089","FALSE","FALSE","America/Chicago"
-"74735","34.08558","-95.24951","Fort Towson","OK","Oklahoma","TRUE","","1650","4.0","40023","Choctaw","{""40023"": ""81.15"", ""40127"": ""18.85""}","Choctaw|Pushmataha","40023|40127","FALSE","FALSE","America/Chicago"
-"74736","33.92521","-94.98604","Garvin","OK","Oklahoma","TRUE","","1142","6.7","40089","McCurtain","{""40089"": ""100""}","McCurtain","40089","FALSE","FALSE","America/Chicago"
-"74738","33.90368","-95.44285","Grant","OK","Oklahoma","TRUE","","690","8.3","40023","Choctaw","{""40023"": ""100""}","Choctaw","40023","FALSE","FALSE","America/Chicago"
-"74740","33.7905","-94.59975","Haworth","OK","Oklahoma","TRUE","","2455","3.7","40089","McCurtain","{""40089"": ""100""}","McCurtain","40089","FALSE","FALSE","America/Chicago"
-"74741","33.7792","-96.29667","Hendrix","OK","Oklahoma","TRUE","","1111","5.4","40013","Bryan","{""40013"": ""100""}","Bryan","40013","FALSE","FALSE","America/Chicago"
-"74743","34.00827","-95.49416","Hugo","OK","Oklahoma","TRUE","","8108","14.3","40023","Choctaw","{""40023"": ""100""}","Choctaw","40023","FALSE","FALSE","America/Chicago"
-"74745","33.86516","-94.81143","Idabel","OK","Oklahoma","TRUE","","9564","21.7","40089","McCurtain","{""40089"": ""100""}","McCurtain","40089","FALSE","FALSE","America/Chicago"
-"74747","33.77368","-96.35609","Kemp","OK","Oklahoma","TRUE","","182","164.4","40013","Bryan","{""40013"": ""100""}","Bryan","40013","FALSE","FALSE","America/Chicago"
-"74748","34.15879","-96.44041","Kenefic","OK","Oklahoma","TRUE","","658","6.5","40069","Johnston","{""40069"": ""37.85"", ""40013"": ""34.42"", ""40005"": ""27.73""}","Johnston|Bryan|Atoka","40069|40013|40005","FALSE","FALSE","America/Chicago"
-"74750","33.96848","-95.02061","Millerton","OK","Oklahoma","TRUE","","316","23.7","40089","McCurtain","{""40089"": ""100""}","McCurtain","40089","FALSE","FALSE","America/Chicago"
-"74753","33.90794","-96.53658","Platter","OK","Oklahoma","TRUE","","30","164.6","40013","Bryan","{""40013"": ""100""}","Bryan","40013","FALSE","FALSE","America/Chicago"
-"74754","34.20372","-95.12595","Ringold","OK","Oklahoma","TRUE","","294","2.1","40089","McCurtain","{""40089"": ""62.86"", ""40127"": ""37.14""}","McCurtain|Pushmataha","40089|40127","FALSE","FALSE","America/Chicago"
-"74755","34.12945","-95.11729","Rufe","OK","Oklahoma","TRUE","","64","3.4","40089","McCurtain","{""40089"": ""100""}","McCurtain","40089","FALSE","FALSE","America/Chicago"
-"74756","34.07072","-95.36582","Sawyer","OK","Oklahoma","TRUE","","721","5.8","40023","Choctaw","{""40023"": ""100""}","Choctaw","40023","FALSE","FALSE","America/Chicago"
-"74759","34.04818","-95.70961","Soper","OK","Oklahoma","TRUE","","1553","4.3","40023","Choctaw","{""40023"": ""100""}","Choctaw","40023","FALSE","FALSE","America/Chicago"
-"74760","34.15787","-95.36326","Spencerville","OK","Oklahoma","TRUE","","369","7.2","40023","Choctaw","{""40023"": ""58.98"", ""40127"": ""41.02""}","Choctaw|Pushmataha","40023|40127","FALSE","FALSE","America/Chicago"
-"74761","34.00962","-95.20167","Swink","OK","Oklahoma","TRUE","","54","14.0","40023","Choctaw","{""40023"": ""100""}","Choctaw","40023","FALSE","FALSE","America/Chicago"
-"74764","34.04509","-95.09157","Valliant","OK","Oklahoma","TRUE","","3761","11.0","40089","McCurtain","{""40089"": ""92.2"", ""40023"": ""7.8""}","McCurtain|Choctaw","40089|40023","FALSE","FALSE","America/Chicago"
-"74766","34.1501","-94.97465","Wright City","OK","Oklahoma","TRUE","","1543","5.5","40089","McCurtain","{""40089"": ""100""}","McCurtain","40089","FALSE","FALSE","America/Chicago"
-"74801","35.31628","-96.9687","Shawnee","OK","Oklahoma","TRUE","","22367","113.5","40125","Pottawatomie","{""40125"": ""100""}","Pottawatomie","40125","FALSE","FALSE","America/Chicago"
-"74804","35.39285","-96.92029","Shawnee","OK","Oklahoma","TRUE","","20413","84.3","40125","Pottawatomie","{""40125"": ""100""}","Pottawatomie","40125","FALSE","FALSE","America/Chicago"
-"74820","34.78901","-96.71078","Ada","OK","Oklahoma","TRUE","","31342","39.4","40123","Pontotoc","{""40123"": ""99.5"", ""40069"": ""0.5""}","Pontotoc|Johnston","40123|40069","FALSE","FALSE","America/Chicago"
-"74824","35.88647","-96.87417","Agra","OK","Oklahoma","TRUE","","1439","15.1","40081","Lincoln","{""40081"": ""94.97"", ""40119"": ""5.03""}","Lincoln|Payne","40081|40119","FALSE","FALSE","America/Chicago"
-"74825","34.8079","-96.408","Allen","OK","Oklahoma","TRUE","","2019","5.6","40123","Pontotoc","{""40123"": ""74.47"", ""40063"": ""23.55"", ""40029"": ""1.98""}","Pontotoc|Hughes|Coal","40123|40063|40029","FALSE","FALSE","America/Chicago"
-"74826","35.01929","-96.90124","Asher","OK","Oklahoma","TRUE","","1153","5.5","40125","Pottawatomie","{""40125"": ""100""}","Pottawatomie","40125","FALSE","FALSE","America/Chicago"
-"74827","34.94201","-96.34218","Atwood","OK","Oklahoma","TRUE","","295","3.1","40063","Hughes","{""40063"": ""100""}","Hughes","40063","FALSE","FALSE","America/Chicago"
-"74829","35.51735","-96.47046","Boley","OK","Oklahoma","TRUE","","1510","12.3","40107","Okfuskee","{""40107"": ""100""}","Okfuskee","40107","FALSE","FALSE","America/Chicago"
-"74830","35.1439","-96.66498","Bowlegs","OK","Oklahoma","TRUE","","244","57.9","40133","Seminole","{""40133"": ""100""}","Seminole","40133","FALSE","FALSE","America/Chicago"
-"74831","34.89861","-97.06026","Byars","OK","Oklahoma","TRUE","","703","3.4","40087","McClain","{""40087"": ""90.9"", ""40123"": ""7.48"", ""40049"": ""1.63""}","McClain|Pontotoc|Garvin","40087|40123|40049","FALSE","FALSE","America/Chicago"
-"74832","35.82626","-97.01138","Carney","OK","Oklahoma","TRUE","","923","12.7","40081","Lincoln","{""40081"": ""100""}","Lincoln","40081","FALSE","FALSE","America/Chicago"
-"74833","35.57666","-96.41107","Castle","OK","Oklahoma","TRUE","","725","5.6","40107","Okfuskee","{""40107"": ""100""}","Okfuskee","40107","FALSE","FALSE","America/Chicago"
-"74834","35.70136","-96.88249","Chandler","OK","Oklahoma","TRUE","","7673","15.5","40081","Lincoln","{""40081"": ""100""}","Lincoln","40081","FALSE","FALSE","America/Chicago"
-"74836","34.45383","-96.67933","Connerville","OK","Oklahoma","TRUE","","175","1.9","40069","Johnston","{""40069"": ""100""}","Johnston","40069","FALSE","FALSE","America/Chicago"
-"74837","35.35878","-96.45122","Cromwell","OK","Oklahoma","TRUE","","321","47.5","40133","Seminole","{""40133"": ""100""}","Seminole","40133","FALSE","FALSE","America/Chicago"
-"74839","35.23981","-96.03006","Dustin","OK","Oklahoma","TRUE","","870","4.4","40063","Hughes","{""40063"": ""87.66"", ""40107"": ""10.39"", ""40091"": ""1.95""}","Hughes|Okfuskee|McIntosh","40063|40107|40091","FALSE","FALSE","America/Chicago"
-"74840","35.30844","-96.7699","Earlsboro","OK","Oklahoma","TRUE","","1833","11.9","40125","Pottawatomie","{""40125"": ""67.46"", ""40133"": ""32.54""}","Pottawatomie|Seminole","40125|40133","FALSE","FALSE","America/Chicago"
-"74842","34.62514","-96.61247","Fittstown","OK","Oklahoma","TRUE","","111","6.0","40123","Pontotoc","{""40123"": ""100""}","Pontotoc","40123","FALSE","FALSE","America/Chicago"
-"74843","34.65642","-96.72252","Fitzhugh","OK","Oklahoma","TRUE","","316","4.2","40123","Pontotoc","{""40123"": ""100""}","Pontotoc","40123","FALSE","FALSE","America/Chicago"
-"74844","34.8691","-96.57785","Francis","OK","Oklahoma","TRUE","","495","74.3","40123","Pontotoc","{""40123"": ""100""}","Pontotoc","40123","FALSE","FALSE","America/Chicago"
-"74845","35.25754","-95.8872","Hanna","OK","Oklahoma","TRUE","","456","1.7","40091","McIntosh","{""40091"": ""100""}","McIntosh","40091","FALSE","FALSE","America/Chicago"
-"74848","35.08207","-96.36396","Holdenville","OK","Oklahoma","TRUE","","8051","12.3","40063","Hughes","{""40063"": ""97.24"", ""40133"": ""2.76""}","Hughes|Seminole","40063|40133","FALSE","FALSE","America/Chicago"
-"74849","34.98447","-96.73768","Konawa","OK","Oklahoma","TRUE","","3076","9.7","40133","Seminole","{""40133"": ""87.13"", ""40125"": ""12.87""}","Seminole|Pottawatomie","40133|40125","FALSE","FALSE","America/Chicago"
-"74850","35.11314","-96.09218","Lamar","OK","Oklahoma","TRUE","","302","2.0","40063","Hughes","{""40063"": ""100""}","Hughes","40063","FALSE","FALSE","America/Chicago"
-"74851","35.42615","-97.07904","Mcloud","OK","Oklahoma","TRUE","","10723","48.6","40125","Pottawatomie","{""40125"": ""79.41"", ""40081"": ""13.74"", ""40027"": ""6.85""}","Pottawatomie|Lincoln|Cleveland","40125|40081|40027","FALSE","FALSE","America/Chicago"
-"74852","35.12579","-97.00984","Macomb","OK","Oklahoma","TRUE","","1533","8.1","40125","Pottawatomie","{""40125"": ""95.17"", ""40027"": ""4.83""}","Pottawatomie|Cleveland","40125|40027","FALSE","FALSE","America/Chicago"
-"74854","35.10615","-96.74676","Maud","OK","Oklahoma","TRUE","","1951","9.8","40125","Pottawatomie","{""40125"": ""55.82"", ""40133"": ""44.18""}","Pottawatomie|Seminole","40125|40133","FALSE","FALSE","America/Chicago"
-"74855","35.51676","-96.90011","Meeker","OK","Oklahoma","TRUE","","4917","17.7","40081","Lincoln","{""40081"": ""87.95"", ""40125"": ""12.05""}","Lincoln|Pottawatomie","40081|40125","FALSE","FALSE","America/Chicago"
-"74856","34.41254","-96.81974","Mill Creek","OK","Oklahoma","TRUE","","842","2.6","40069","Johnston","{""40069"": ""88.24"", ""40099"": ""11.76""}","Johnston|Murray","40069|40099","FALSE","FALSE","America/Chicago"
-"74857","35.34012","-97.19639","Newalla","OK","Oklahoma","TRUE","","9351","59.9","40027","Cleveland","{""40027"": ""74.29"", ""40109"": ""25.56"", ""40125"": ""0.15""}","Cleveland|Oklahoma|Pottawatomie","40027|40109|40125","FALSE","FALSE","America/Chicago"
-"74859","35.46304","-96.31757","Okemah","OK","Oklahoma","TRUE","","6204","8.0","40107","Okfuskee","{""40107"": ""94.55"", ""40133"": ""5.45""}","Okfuskee|Seminole","40107|40133","FALSE","FALSE","America/Chicago"
-"74860","35.52876","-96.56776","Paden","OK","Oklahoma","TRUE","","1750","7.0","40107","Okfuskee","{""40107"": ""100""}","Okfuskee","40107","FALSE","FALSE","America/Chicago"
-"74864","35.48955","-96.70257","Prague","OK","Oklahoma","TRUE","","4828","16.5","40081","Lincoln","{""40081"": ""79.5"", ""40125"": ""20.5""}","Lincoln|Pottawatomie","40081|40125","FALSE","FALSE","America/Chicago"
-"74865","34.60484","-96.79568","Roff","OK","Oklahoma","TRUE","","1777","4.2","40123","Pontotoc","{""40123"": ""90.47"", ""40099"": ""5.2"", ""40049"": ""4.32""}","Pontotoc|Murray|Garvin","40123|40099|40049","FALSE","FALSE","America/Chicago"
-"74867","34.96441","-96.55666","Sasakwa","OK","Oklahoma","TRUE","","723","3.3","40133","Seminole","{""40133"": ""97.7"", ""40063"": ""2.3""}","Seminole|Hughes","40133|40063","FALSE","FALSE","America/Chicago"
-"74868","35.2672","-96.64619","Seminole","OK","Oklahoma","TRUE","","13133","23.8","40133","Seminole","{""40133"": ""100""}","Seminole","40133","FALSE","FALSE","America/Chicago"
-"74869","35.60199","-96.75467","Sparks","OK","Oklahoma","TRUE","","715","5.2","40081","Lincoln","{""40081"": ""100""}","Lincoln","40081","FALSE","FALSE","America/Chicago"
-"74871","34.60391","-96.54581","Stonewall","OK","Oklahoma","TRUE","","2555","5.8","40123","Pontotoc","{""40123"": ""90.19"", ""40029"": ""8.03"", ""40069"": ""1.78""}","Pontotoc|Coal|Johnston","40123|40029|40069","FALSE","FALSE","America/Chicago"
-"74872","34.7809","-96.98194","Stratford","OK","Oklahoma","TRUE","","3384","9.0","40049","Garvin","{""40049"": ""80.66"", ""40123"": ""14.38"", ""40087"": ""4.96""}","Garvin|Pontotoc|McClain","40049|40123|40087","FALSE","FALSE","America/Chicago"
-"74873","35.21879","-96.97342","Tecumseh","OK","Oklahoma","TRUE","","12167","31.7","40125","Pottawatomie","{""40125"": ""100""}","Pottawatomie","40125","FALSE","FALSE","America/Chicago"
-"74875","35.87711","-96.97383","Tryon","OK","Oklahoma","TRUE","","1314","10.4","40081","Lincoln","{""40081"": ""100""}","Lincoln","40081","FALSE","FALSE","America/Chicago"
-"74878","35.00907","-97.07006","Wanette","OK","Oklahoma","TRUE","","1295","4.2","40125","Pottawatomie","{""40125"": ""90.86"", ""40027"": ""9.14""}","Pottawatomie|Cleveland","40125|40027","FALSE","FALSE","America/Chicago"
-"74880","35.37784","-96.11953","Weleetka","OK","Oklahoma","TRUE","","2029","7.1","40107","Okfuskee","{""40107"": ""94.06"", ""40111"": ""5.94""}","Okfuskee|Okmulgee","40107|40111","FALSE","FALSE","America/Chicago"
-"74881","35.7185","-97.08275","Wellston","OK","Oklahoma","TRUE","","5135","12.8","40081","Lincoln","{""40081"": ""97.32"", ""40083"": ""2.68""}","Lincoln|Logan","40081|40083","FALSE","FALSE","America/Chicago"
-"74883","35.22787","-96.22614","Wetumka","OK","Oklahoma","TRUE","","2365","5.2","40063","Hughes","{""40063"": ""92.6"", ""40107"": ""7.4""}","Hughes|Okfuskee","40063|40107","FALSE","FALSE","America/Chicago"
-"74884","35.19212","-96.51603","Wewoka","OK","Oklahoma","TRUE","","5705","16.5","40133","Seminole","{""40133"": ""99.73"", ""40063"": ""0.27""}","Seminole|Hughes","40133|40063","FALSE","FALSE","America/Chicago"
-"74901","35.34831","-94.45818","Arkoma","OK","Oklahoma","TRUE","","1821","59.7","40079","Le Flore","{""40079"": ""100""}","Le Flore","40079","FALSE","FALSE","America/Chicago"
-"74902","35.24463","-94.48039","Pocola","OK","Oklahoma","TRUE","","4114","52.3","40079","Le Flore","{""40079"": ""100""}","Le Flore","40079","FALSE","FALSE","America/Chicago"
-"74930","35.18553","-94.77969","Bokoshe","OK","Oklahoma","TRUE","","2201","11.6","40079","Le Flore","{""40079"": ""100""}","Le Flore","40079","FALSE","FALSE","America/Chicago"
-"74931","35.69476","-94.7575","Bunch","OK","Oklahoma","TRUE","","1242","5.9","40001","Adair","{""40001"": ""76.54"", ""40021"": ""18.57"", ""40135"": ""4.89""}","Adair|Cherokee|Sequoyah","40001|40021|40135","FALSE","FALSE","America/Chicago"
-"74932","35.14647","-94.53069","Cameron","OK","Oklahoma","TRUE","","2467","12.1","40079","Le Flore","{""40079"": ""100""}","Le Flore","40079","FALSE","FALSE","America/Chicago"
-"74935","34.94842","-94.89681","Fanshawe","OK","Oklahoma","TRUE","","190","6.4","40079","Le Flore","{""40079"": ""100""}","Le Flore","40079","FALSE","FALSE","America/Chicago"
-"74936","35.378","-94.71702","Gans","OK","Oklahoma","TRUE","","1169","18.4","40135","Sequoyah","{""40135"": ""100""}","Sequoyah","40135","FALSE","FALSE","America/Chicago"
-"74937","34.82535","-94.57625","Heavener","OK","Oklahoma","TRUE","","5463","10.2","40079","Le Flore","{""40079"": ""100""}","Le Flore","40079","FALSE","FALSE","America/Chicago"
-"74939","34.70454","-94.61531","Hodgen","OK","Oklahoma","TRUE","","1217","3.1","40079","Le Flore","{""40079"": ""100""}","Le Flore","40079","FALSE","FALSE","America/Chicago"
-"74940","34.95419","-94.62583","Howe","OK","Oklahoma","TRUE","","2953","18.5","40079","Le Flore","{""40079"": ""100""}","Le Flore","40079","FALSE","FALSE","America/Chicago"
-"74941","35.28547","-94.87577","Keota","OK","Oklahoma","TRUE","","2636","9.0","40061","Haskell","{""40061"": ""79.73"", ""40079"": ""20.27""}","Haskell|Le Flore","40061|40079","FALSE","FALSE","America/Chicago"
-"74942","34.89905","-94.97703","Leflore","OK","Oklahoma","TRUE","","150","35.4","40079","Le Flore","{""40079"": ""100""}","Le Flore","40079","FALSE","FALSE","America/Chicago"
-"74943","35.08201","-95.07576","Lequire","OK","Oklahoma","TRUE","","161","4.6","40061","Haskell","{""40061"": ""100""}","Haskell","40061","FALSE","FALSE","America/Chicago"
-"74944","35.13027","-94.99735","Mccurtain","OK","Oklahoma","TRUE","","1094","3.6","40061","Haskell","{""40061"": ""86.71"", ""40079"": ""13.29""}","Haskell|Le Flore","40061|40079","FALSE","FALSE","America/Chicago"
-"74945","35.59721","-94.80933","Marble City","OK","Oklahoma","TRUE","","435","6.9","40135","Sequoyah","{""40135"": ""100""}","Sequoyah","40135","FALSE","FALSE","America/Chicago"
-"74946","35.3917","-94.45244","Moffett","OK","Oklahoma","TRUE","","117","13.9","40135","Sequoyah","{""40135"": ""100""}","Sequoyah","40135","FALSE","FALSE","America/Chicago"
-"74948","35.46558","-94.56103","Muldrow","OK","Oklahoma","TRUE","","11437","20.2","40135","Sequoyah","{""40135"": ""99.66"", ""40001"": ""0.34""}","Sequoyah|Adair","40135|40001","FALSE","FALSE","America/Chicago"
-"74949","34.66108","-94.76836","Muse","OK","Oklahoma","TRUE","","307","4.2","40079","Le Flore","{""40079"": ""100""}","Le Flore","40079","FALSE","FALSE","America/Chicago"
-"74951","35.17041","-94.65564","Panama","OK","Oklahoma","TRUE","","1395","85.8","40079","Le Flore","{""40079"": ""100""}","Le Flore","40079","FALSE","FALSE","America/Chicago"
-"74953","35.0447","-94.60707","Poteau","OK","Oklahoma","TRUE","","12089","33.9","40079","Le Flore","{""40079"": ""100""}","Le Flore","40079","FALSE","FALSE","America/Chicago"
-"74954","35.42669","-94.49701","Roland","OK","Oklahoma","TRUE","","5256","111.9","40135","Sequoyah","{""40135"": ""100""}","Sequoyah","40135","FALSE","FALSE","America/Chicago"
-"74955","35.49389","-94.7566","Sallisaw","OK","Oklahoma","TRUE","","15713","30.5","40135","Sequoyah","{""40135"": ""100""}","Sequoyah","40135","FALSE","FALSE","America/Chicago"
-"74956","35.10959","-94.76291","Shady Point","OK","Oklahoma","TRUE","","1969","18.4","40079","Le Flore","{""40079"": ""100""}","Le Flore","40079","FALSE","FALSE","America/Chicago"
-"74957","34.52613","-94.65681","Smithville","OK","Oklahoma","TRUE","","1159","1.9","40089","McCurtain","{""40089"": ""54.44"", ""40079"": ""45.56""}","McCurtain|Le Flore","40089|40079","FALSE","FALSE","America/Chicago"
-"74959","35.26246","-94.6184","Spiro","OK","Oklahoma","TRUE","","7063","28.1","40079","Le Flore","{""40079"": ""100""}","Le Flore","40079","FALSE","FALSE","America/Chicago"
-"74960","35.81041","-94.64973","Stilwell","OK","Oklahoma","TRUE","","13455","17.2","40001","Adair","{""40001"": ""97.93"", ""40021"": ""2.07""}","Adair|Cherokee","40001|40021","FALSE","FALSE","America/Chicago"
-"74962","35.53333","-94.95251","Vian","OK","Oklahoma","TRUE","","4585","12.4","40135","Sequoyah","{""40135"": ""98.72"", ""40021"": ""1.28""}","Sequoyah|Cherokee","40135|40021","FALSE","FALSE","America/Chicago"
-"74963","34.39814","-94.57588","Watson","OK","Oklahoma","TRUE","","522","2.7","40089","McCurtain","{""40089"": ""100""}","McCurtain","40089","FALSE","FALSE","America/Chicago"
-"74964","36.11706","-94.66437","Watts","OK","Oklahoma","TRUE","","2822","14.4","40001","Adair","{""40001"": ""83.56"", ""40041"": ""16.44""}","Adair|Delaware","40001|40041","FALSE","FALSE","America/Chicago"
-"74965","35.99871","-94.62549","Westville","OK","Oklahoma","TRUE","","5263","18.1","40001","Adair","{""40001"": ""100""}","Adair","40001","FALSE","FALSE","America/Chicago"
-"74966","34.91121","-94.86892","Wister","OK","Oklahoma","TRUE","","3493","5.9","40079","Le Flore","{""40079"": ""93.33"", ""40077"": ""6.67""}","Le Flore|Latimer","40079|40077","FALSE","FALSE","America/Chicago"
-"75001","32.96","-96.83849","Addison","TX","Texas","TRUE","","14992","1510.1","48113","Dallas","{""48113"": ""100""}","Dallas","48113","FALSE","FALSE","America/Chicago"
-"75002","33.08965","-96.60752","Allen","TX","Texas","TRUE","","71253","739.6","48085","Collin","{""48085"": ""100""}","Collin","48085","FALSE","FALSE","America/Chicago"
-"75006","32.96188","-96.89701","Carrollton","TX","Texas","TRUE","","51642","1186.2","48113","Dallas","{""48113"": ""100""}","Dallas","48113","FALSE","FALSE","America/Chicago"
-"75007","33.00462","-96.89715","Carrollton","TX","Texas","TRUE","","55500","1823.7","48121","Denton","{""48121"": ""94.21"", ""48113"": ""5.79""}","Denton|Dallas","48121|48113","FALSE","FALSE","America/Chicago"
-"75009","33.34028","-96.75033","Celina","TX","Texas","TRUE","","14089","56.9","48085","Collin","{""48085"": ""94.8"", ""48121"": ""5.2""}","Collin|Denton","48085|48121","FALSE","FALSE","America/Chicago"
-"75010","33.03425","-96.89673","Carrollton","TX","Texas","TRUE","","30406","1452.9","48121","Denton","{""48121"": ""100""}","Denton","48121","FALSE","FALSE","America/Chicago"
-"75013","33.11467","-96.69411","Allen","TX","Texas","TRUE","","42629","1094.6","48085","Collin","{""48085"": ""100""}","Collin","48085","FALSE","FALSE","America/Chicago"
-"75019","32.96329","-96.98553","Coppell","TX","Texas","TRUE","","42888","1004.9","48113","Dallas","{""48113"": ""98.05"", ""48121"": ""1.95""}","Dallas|Denton","48113|48121","FALSE","FALSE","America/Chicago"
-"75020","33.77165","-96.60414","Denison","TX","Texas","TRUE","","23232","143.4","48181","Grayson","{""48181"": ""100""}","Grayson","48181","FALSE","FALSE","America/Chicago"
-"75021","33.72616","-96.47325","Denison","TX","Texas","TRUE","","8847","56.8","48181","Grayson","{""48181"": ""100""}","Grayson","48181","FALSE","FALSE","America/Chicago"
-"75022","33.02772","-97.12024","Flower Mound","TX","Texas","TRUE","","27201","546.8","48121","Denton","{""48121"": ""99.09"", ""48439"": ""0.91""}","Denton|Tarrant","48121|48439","FALSE","FALSE","America/Chicago"
-"75023","33.05706","-96.73242","Plano","TX","Texas","TRUE","","50431","2066.8","48085","Collin","{""48085"": ""100""}","Collin","48085","FALSE","FALSE","America/Chicago"
-"75024","33.07735","-96.80704","Plano","TX","Texas","TRUE","","43551","1326.6","48085","Collin","{""48085"": ""94.2"", ""48121"": ""5.8""}","Collin|Denton","48085|48121","FALSE","FALSE","America/Chicago"
-"75025","33.09095","-96.74128","Plano","TX","Texas","TRUE","","53764","2219.7","48085","Collin","{""48085"": ""100""}","Collin","48085","FALSE","FALSE","America/Chicago"
-"75028","33.0328","-97.06086","Flower Mound","TX","Texas","TRUE","","47804","1217.1","48121","Denton","{""48121"": ""99.99"", ""48439"": ""0.01""}","Denton|Tarrant","48121|48439","FALSE","FALSE","America/Chicago"
-"75032","32.85505","-96.42772","Rockwall","TX","Texas","TRUE","","33080","248.9","48397","Rockwall","{""48397"": ""100""}","Rockwall","48397","FALSE","FALSE","America/Chicago"
-"75034","33.15195","-96.86036","Frisco","TX","Texas","TRUE","","108525","837.4","48121","Denton","{""48121"": ""65.96"", ""48085"": ""34.04""}","Denton|Collin","48121|48085","FALSE","FALSE","America/Chicago"
-"75035","33.15534","-96.77271","Frisco","TX","Texas","TRUE","","75485","1234.1","48085","Collin","{""48085"": ""100""}","Collin","48085","FALSE","FALSE","America/Chicago"
-"75038","32.87457","-96.99759","Irving","TX","Texas","TRUE","","29990","865.8","48113","Dallas","{""48113"": ""100""}","Dallas","48113","FALSE","FALSE","America/Chicago"
-"75039","32.88753","-96.94224","Irving","TX","Texas","TRUE","","20108","1477.5","48113","Dallas","{""48113"": ""100""}","Dallas","48113","FALSE","FALSE","America/Chicago"
-"75040","32.92766","-96.62008","Garland","TX","Texas","TRUE","","62417","1539.7","48113","Dallas","{""48113"": ""100""}","Dallas","48113","FALSE","FALSE","America/Chicago"
-"75041","32.88091","-96.65147","Garland","TX","Texas","TRUE","","30880","1490.0","48113","Dallas","{""48113"": ""100""}","Dallas","48113","FALSE","FALSE","America/Chicago"
-"75042","32.9139","-96.67493","Garland","TX","Texas","TRUE","","39183","2021.9","48113","Dallas","{""48113"": ""100""}","Dallas","48113","FALSE","FALSE","America/Chicago"
-"75043","32.85707","-96.57941","Garland","TX","Texas","TRUE","","62601","1660.5","48113","Dallas","{""48113"": ""100""}","Dallas","48113","FALSE","FALSE","America/Chicago"
-"75044","32.96264","-96.65323","Garland","TX","Texas","TRUE","","43292","1556.5","48113","Dallas","{""48113"": ""99.36"", ""48085"": ""0.64""}","Dallas|Collin","48113|48085","FALSE","FALSE","America/Chicago"
-"75048","32.972","-96.58085","Sachse","TX","Texas","TRUE","","25598","942.2","48113","Dallas","{""48113"": ""68.91"", ""48085"": ""31.09""}","Dallas|Collin","48113|48085","FALSE","FALSE","America/Chicago"
-"75050","32.77409","-97.00532","Grand Prairie","TX","Texas","TRUE","","43174","673.5","48113","Dallas","{""48113"": ""76.1"", ""48439"": ""23.9""}","Dallas|Tarrant","48113|48439","FALSE","FALSE","America/Chicago"
-"75051","32.72758","-96.99437","Grand Prairie","TX","Texas","TRUE","","40923","1301.0","48113","Dallas","{""48113"": ""90.73"", ""48439"": ""9.27""}","Dallas|Tarrant","48113|48439","FALSE","FALSE","America/Chicago"
-"75052","32.6659","-97.02649","Grand Prairie","TX","Texas","TRUE","","95495","1409.5","48113","Dallas","{""48113"": ""62.84"", ""48439"": ""37.16""}","Dallas|Tarrant","48113|48439","FALSE","FALSE","America/Chicago"
-"75054","32.59059","-97.04051","Grand Prairie","TX","Texas","TRUE","","11927","849.6","48439","Tarrant","{""48439"": ""97.63"", ""48113"": ""2.37""}","Tarrant|Dallas","48439|48113","FALSE","FALSE","America/Chicago"
-"75056","33.07393","-96.91484","The Colony","TX","Texas","TRUE","","60554","927.2","48121","Denton","{""48121"": ""100""}","Denton","48121","FALSE","FALSE","America/Chicago"
-"75057","33.04952","-96.98383","Lewisville","TX","Texas","TRUE","","14960","567.1","48121","Denton","{""48121"": ""100""}","Denton","48121","FALSE","FALSE","America/Chicago"
-"75058","33.45012","-96.74225","Gunter","TX","Texas","TRUE","","2666","17.9","48181","Grayson","{""48181"": ""100""}","Grayson","48181","FALSE","FALSE","America/Chicago"
-"75060","32.796","-96.95446","Irving","TX","Texas","TRUE","","47764","1391.5","48113","Dallas","{""48113"": ""100""}","Dallas","48113","FALSE","FALSE","America/Chicago"
-"75061","32.82605","-96.9655","Irving","TX","Texas","TRUE","","54520","1819.7","48113","Dallas","{""48113"": ""100""}","Dallas","48113","FALSE","FALSE","America/Chicago"
-"75062","32.84702","-96.95686","Irving","TX","Texas","TRUE","","49306","1732.9","48113","Dallas","{""48113"": ""100""}","Dallas","48113","FALSE","FALSE","America/Chicago"
-"75063","32.92046","-96.98599","Irving","TX","Texas","TRUE","","40048","1020.9","48113","Dallas","{""48113"": ""100""}","Dallas","48113","FALSE","FALSE","America/Chicago"
-"75065","33.11093","-97.0119","Lake Dallas","TX","Texas","TRUE","","12640","613.8","48121","Denton","{""48121"": ""100""}","Denton","48121","FALSE","FALSE","America/Chicago"
-"75067","33.01371","-97.00025","Lewisville","TX","Texas","TRUE","","68196","1980.9","48121","Denton","{""48121"": ""98.62"", ""48113"": ""1.38""}","Denton|Dallas","48121|48113","FALSE","FALSE","America/Chicago"
-"75068","33.17647","-96.95053","Little Elm","TX","Texas","TRUE","","65991","929.5","48121","Denton","{""48121"": ""100""}","Denton","48121","FALSE","FALSE","America/Chicago"
-"75069","33.16545","-96.59468","Mckinney","TX","Texas","TRUE","","37892","457.0","48085","Collin","{""48085"": ""100""}","Collin","48085","FALSE","FALSE","America/Chicago"
-"75070","33.17311","-96.69773","Mckinney","TX","Texas","TRUE","","104415","1687.8","48085","Collin","{""48085"": ""100""}","Collin","48085","FALSE","FALSE","America/Chicago"
-"75071","33.24663","-96.62898","Mckinney","TX","Texas","TRUE","","55570","272.2","48085","Collin","{""48085"": ""100""}","Collin","48085","FALSE","FALSE","America/Chicago"
-"75074","33.03188","-96.67428","Plano","TX","Texas","TRUE","","52259","1221.7","48085","Collin","{""48085"": ""100""}","Collin","48085","FALSE","FALSE","America/Chicago"
-"75075","33.02137","-96.74103","Plano","TX","Texas","TRUE","","38283","1499.7","48085","Collin","{""48085"": ""100""}","Collin","48085","FALSE","FALSE","America/Chicago"
-"75076","33.79472","-96.72168","Pottsboro","TX","Texas","TRUE","","8156","63.3","48181","Grayson","{""48181"": ""100""}","Grayson","48181","FALSE","FALSE","America/Chicago"
-"75077","33.07886","-97.06273","Lewisville","TX","Texas","TRUE","","37102","1025.0","48121","Denton","{""48121"": ""100""}","Denton","48121","FALSE","FALSE","America/Chicago"
-"75078","33.24672","-96.80856","Prosper","TX","Texas","TRUE","","28803","339.5","48085","Collin","{""48085"": ""92.73"", ""48121"": ""7.27""}","Collin|Denton","48085|48121","FALSE","FALSE","America/Chicago"
-"75080","32.97394","-96.74202","Richardson","TX","Texas","TRUE","","52531","1775.5","48113","Dallas","{""48113"": ""77.52"", ""48085"": ""22.48""}","Dallas|Collin","48113|48085","FALSE","FALSE","America/Chicago"
-"75081","32.94882","-96.7102","Richardson","TX","Texas","TRUE","","40265","1684.8","48113","Dallas","{""48113"": ""100""}","Dallas","48113","FALSE","FALSE","America/Chicago"
-"75082","32.99157","-96.66234","Richardson","TX","Texas","TRUE","","23483","1157.4","48085","Collin","{""48085"": ""88.75"", ""48113"": ""11.25""}","Collin|Dallas","48085|48113","FALSE","FALSE","America/Chicago"
-"75087","32.94172","-96.44993","Rockwall","TX","Texas","TRUE","","35157","518.5","48397","Rockwall","{""48397"": ""99.42"", ""48085"": ""0.58""}","Rockwall|Collin","48397|48085","FALSE","FALSE","America/Chicago"
-"75088","32.89229","-96.54917","Rowlett","TX","Texas","TRUE","","26039","1101.8","48113","Dallas","{""48113"": ""82.23"", ""48397"": ""17.77""}","Dallas|Rockwall","48113|48397","FALSE","FALSE","America/Chicago"
-"75089","32.92975","-96.54975","Rowlett","TX","Texas","TRUE","","36324","1250.7","48113","Dallas","{""48113"": ""95.04"", ""48397"": ""4.96""}","Dallas|Rockwall","48113|48397","FALSE","FALSE","America/Chicago"
-"75090","33.60452","-96.54562","Sherman","TX","Texas","TRUE","","25418","127.6","48181","Grayson","{""48181"": ""100""}","Grayson","48181","FALSE","FALSE","America/Chicago"
-"75092","33.64891","-96.70005","Sherman","TX","Texas","TRUE","","24905","84.8","48181","Grayson","{""48181"": ""100""}","Grayson","48181","FALSE","FALSE","America/Chicago"
-"75093","33.0355","-96.81001","Plano","TX","Texas","TRUE","","46788","1280.3","48085","Collin","{""48085"": ""93.14"", ""48121"": ""6.86""}","Collin|Denton","48085|48121","FALSE","FALSE","America/Chicago"
-"75094","33.01909","-96.61509","Plano","TX","Texas","TRUE","","23239","1286.1","48085","Collin","{""48085"": ""100""}","Collin","48085","FALSE","FALSE","America/Chicago"
-"75098","33.0119","-96.53479","Wylie","TX","Texas","TRUE","","56376","660.8","48085","Collin","{""48085"": ""93.4"", ""48113"": ""3.76"", ""48397"": ""2.84""}","Collin|Dallas|Rockwall","48085|48113|48397","FALSE","FALSE","America/Chicago"
-"75101","32.27003","-96.70239","Bardwell","TX","Texas","TRUE","","517","242.6","48139","Ellis","{""48139"": ""100""}","Ellis","48139","FALSE","FALSE","America/Chicago"
-"75102","32.06629","-96.64223","Barry","TX","Texas","TRUE","","1358","8.6","48349","Navarro","{""48349"": ""100""}","Navarro","48349","FALSE","FALSE","America/Chicago"
-"75103","32.51192","-95.88235","Canton","TX","Texas","TRUE","","14530","28.1","48467","Van Zandt","{""48467"": ""100""}","Van Zandt","48467","FALSE","FALSE","America/Chicago"
-"75104","32.58042","-96.96613","Cedar Hill","TX","Texas","TRUE","","49171","486.2","48113","Dallas","{""48113"": ""99.1"", ""48139"": ""0.9""}","Dallas|Ellis","48113|48139","FALSE","FALSE","America/Chicago"
-"75105","32.26654","-96.37522","Chatfield","TX","Texas","TRUE","","161","1.2","48349","Navarro","{""48349"": ""100""}","Navarro","48349","FALSE","FALSE","America/Chicago"
-"75109","32.04523","-96.35405","Corsicana","TX","Texas","TRUE","","4384","14.6","48349","Navarro","{""48349"": ""100""}","Navarro","48349","FALSE","FALSE","America/Chicago"
-"75110","32.08693","-96.52879","Corsicana","TX","Texas","TRUE","","28558","73.5","48349","Navarro","{""48349"": ""100""}","Navarro","48349","FALSE","FALSE","America/Chicago"
-"75114","32.61016","-96.44553","Crandall","TX","Texas","TRUE","","6829","61.0","48257","Kaufman","{""48257"": ""100""}","Kaufman","48257","FALSE","FALSE","America/Chicago"
-"75115","32.59888","-96.86374","Desoto","TX","Texas","TRUE","","52916","931.5","48113","Dallas","{""48113"": ""100""}","Dallas","48113","FALSE","FALSE","America/Chicago"
-"75116","32.66017","-96.91393","Duncanville","TX","Texas","TRUE","","19867","1497.7","48113","Dallas","{""48113"": ""100""}","Dallas","48113","FALSE","FALSE","America/Chicago"
-"75117","32.71183","-95.85077","Edgewood","TX","Texas","TRUE","","3984","32.8","48467","Van Zandt","{""48467"": ""100""}","Van Zandt","48467","FALSE","FALSE","America/Chicago"
-"75119","32.32976","-96.59334","Ennis","TX","Texas","TRUE","","28598","41.7","48139","Ellis","{""48139"": ""99.3"", ""48349"": ""0.7""}","Ellis|Navarro","48139|48349","FALSE","FALSE","America/Chicago"
-"75124","32.32673","-95.9724","Eustace","TX","Texas","TRUE","","4255","17.7","48213","Henderson","{""48213"": ""79.19"", ""48467"": ""20.81""}","Henderson|Van Zandt","48213|48467","FALSE","FALSE","America/Chicago"
-"75125","32.53137","-96.62477","Ferris","TX","Texas","TRUE","","6326","35.1","48139","Ellis","{""48139"": ""95.13"", ""48113"": ""4.87""}","Ellis|Dallas","48139|48113","FALSE","FALSE","America/Chicago"
-"75126","32.74205","-96.45185","Forney","TX","Texas","TRUE","","48987","244.6","48257","Kaufman","{""48257"": ""100""}","Kaufman","48257","FALSE","FALSE","America/Chicago"
-"75127","32.69116","-95.79336","Fruitvale","TX","Texas","TRUE","","1705","24.8","48467","Van Zandt","{""48467"": ""100""}","Van Zandt","48467","FALSE","FALSE","America/Chicago"
-"75132","32.94537","-96.37375","Fate","TX","Texas","TRUE","","1559","405.9","48397","Rockwall","{""48397"": ""100""}","Rockwall","48397","FALSE","FALSE","America/Chicago"
-"75134","32.6201","-96.783","Lancaster","TX","Texas","TRUE","","21879","826.6","48113","Dallas","{""48113"": ""100""}","Dallas","48113","FALSE","FALSE","America/Chicago"
-"75135","33.06521","-96.22289","Caddo Mills","TX","Texas","TRUE","","7363","45.7","48231","Hunt","{""48231"": ""100""}","Hunt","48231","FALSE","FALSE","America/Chicago"
-"75137","32.634","-96.91176","Duncanville","TX","Texas","TRUE","","19548","1240.4","48113","Dallas","{""48113"": ""100""}","Dallas","48113","FALSE","FALSE","America/Chicago"
-"75140","32.64691","-95.69145","Grand Saline","TX","Texas","TRUE","","7595","26.1","48467","Van Zandt","{""48467"": ""100""}","Van Zandt","48467","FALSE","FALSE","America/Chicago"
-"75141","32.63998","-96.69464","Hutchins","TX","Texas","TRUE","","5782","195.6","48113","Dallas","{""48113"": ""100""}","Dallas","48113","FALSE","FALSE","America/Chicago"
-"75142","32.57357","-96.24717","Kaufman","TX","Texas","TRUE","","19261","42.9","48257","Kaufman","{""48257"": ""100""}","Kaufman","48257","FALSE","FALSE","America/Chicago"
-"75143","32.36358","-96.24817","Kemp","TX","Texas","TRUE","","14510","31.5","48213","Henderson","{""48213"": ""53.51"", ""48257"": ""46.49""}","Henderson|Kaufman","48213|48257","FALSE","FALSE","America/Chicago"
-"75144","32.11313","-96.20885","Kerens","TX","Texas","TRUE","","3668","8.2","48349","Navarro","{""48349"": ""100""}","Navarro","48349","FALSE","FALSE","America/Chicago"
-"75146","32.57462","-96.75068","Lancaster","TX","Texas","TRUE","","19701","229.1","48113","Dallas","{""48113"": ""99.32"", ""48139"": ""0.68""}","Dallas|Ellis","48113|48139","FALSE","FALSE","America/Chicago"
-"75147","32.43298","-96.0774","Mabank","TX","Texas","TRUE","","6636","27.3","48257","Kaufman","{""48257"": ""56.12"", ""48467"": ""34.13"", ""48213"": ""9.75""}","Kaufman|Van Zandt|Henderson","48257|48467|48213","FALSE","FALSE","America/Chicago"
-"75148","32.12461","-96.01216","Malakoff","TX","Texas","TRUE","","5961","26.3","48213","Henderson","{""48213"": ""100""}","Henderson","48213","FALSE","FALSE","America/Chicago"
-"75149","32.77003","-96.61487","Mesquite","TX","Texas","TRUE","","56473","1373.1","48113","Dallas","{""48113"": ""100""}","Dallas","48113","FALSE","FALSE","America/Chicago"
-"75150","32.81577","-96.63039","Mesquite","TX","Texas","TRUE","","60671","1835.1","48113","Dallas","{""48113"": ""100""}","Dallas","48113","FALSE","FALSE","America/Chicago"
-"75152","32.43647","-96.68038","Palmer","TX","Texas","TRUE","","5195","48.9","48139","Ellis","{""48139"": ""100""}","Ellis","48139","FALSE","FALSE","America/Chicago"
-"75153","32.15027","-96.32856","Powell","TX","Texas","TRUE","","441","7.2","48349","Navarro","{""48349"": ""100""}","Navarro","48349","FALSE","FALSE","America/Chicago"
-"75154","32.52281","-96.81015","Red Oak","TX","Texas","TRUE","","40947","336.3","48139","Ellis","{""48139"": ""75.44"", ""48113"": ""24.56""}","Ellis|Dallas","48139|48113","FALSE","FALSE","America/Chicago"
-"75155","32.22573","-96.47318","Rice","TX","Texas","TRUE","","3233","32.8","48349","Navarro","{""48349"": ""100""}","Navarro","48349","FALSE","FALSE","America/Chicago"
-"75156","32.28688","-96.09979","Mabank","TX","Texas","TRUE","","16578","204.5","48213","Henderson","{""48213"": ""100""}","Henderson","48213","FALSE","FALSE","America/Chicago"
-"75157","32.46227","-96.44684","Rosser","TX","Texas","TRUE","","261","59.3","48257","Kaufman","{""48257"": ""100""}","Kaufman","48257","FALSE","FALSE","America/Chicago"
-"75158","32.46222","-96.39662","Scurry","TX","Texas","TRUE","","4191","18.4","48257","Kaufman","{""48257"": ""100""}","Kaufman","48257","FALSE","FALSE","America/Chicago"
-"75159","32.60748","-96.54087","Seagoville","TX","Texas","TRUE","","20098","128.6","48113","Dallas","{""48113"": ""88.21"", ""48257"": ""11.79""}","Dallas|Kaufman","48113|48257","FALSE","FALSE","America/Chicago"
-"75160","32.76169","-96.30017","Terrell","TX","Texas","TRUE","","25525","82.1","48257","Kaufman","{""48257"": ""93.96"", ""48231"": ""5.89"", ""48397"": ""0.15""}","Kaufman|Hunt|Rockwall","48257|48231|48397","FALSE","FALSE","America/Chicago"
-"75161","32.73742","-96.17115","Terrell","TX","Texas","TRUE","","6529","22.1","48257","Kaufman","{""48257"": ""100""}","Kaufman","48257","FALSE","FALSE","America/Chicago"
-"75163","32.16759","-96.11031","Trinidad","TX","Texas","TRUE","","2716","31.0","48213","Henderson","{""48213"": ""100""}","Henderson","48213","FALSE","FALSE","America/Chicago"
-"75164","33.06593","-96.30793","Josephine","TX","Texas","TRUE","","633","107.2","48085","Collin","{""48085"": ""100""}","Collin","48085","FALSE","FALSE","America/Chicago"
-"75165","32.36912","-96.79744","Waxahachie","TX","Texas","TRUE","","45059","154.8","48139","Ellis","{""48139"": ""100""}","Ellis","48139","FALSE","FALSE","America/Chicago"
-"75166","33.01234","-96.45026","Lavon","TX","Texas","TRUE","","4395","128.4","48085","Collin","{""48085"": ""100""}","Collin","48085","FALSE","FALSE","America/Chicago"
-"75167","32.35888","-96.91515","Waxahachie","TX","Texas","TRUE","","12170","48.1","48139","Ellis","{""48139"": ""100""}","Ellis","48139","FALSE","FALSE","America/Chicago"
-"75169","32.70454","-95.99657","Wills Point","TX","Texas","TRUE","","14142","25.5","48467","Van Zandt","{""48467"": ""83.45"", ""48231"": ""12.26"", ""48257"": ""4.3""}","Van Zandt|Hunt|Kaufman","48467|48231|48257","FALSE","FALSE","America/Chicago"
-"75172","32.60482","-96.67515","Wilmer","TX","Texas","TRUE","","4619","153.0","48113","Dallas","{""48113"": ""100""}","Dallas","48113","FALSE","FALSE","America/Chicago"
-"75173","33.05923","-96.39106","Nevada","TX","Texas","TRUE","","4409","55.9","48085","Collin","{""48085"": ""100""}","Collin","48085","FALSE","FALSE","America/Chicago"
-"75180","32.71893","-96.61839","Balch Springs","TX","Texas","TRUE","","23941","1205.4","48113","Dallas","{""48113"": ""100""}","Dallas","48113","FALSE","FALSE","America/Chicago"
-"75181","32.72697","-96.55519","Mesquite","TX","Texas","TRUE","","28263","620.2","48113","Dallas","{""48113"": ""100""}","Dallas","48113","FALSE","FALSE","America/Chicago"
-"75182","32.80014","-96.55405","Sunnyvale","TX","Texas","TRUE","","6325","138.9","48113","Dallas","{""48113"": ""100""}","Dallas","48113","FALSE","FALSE","America/Chicago"
-"75189","32.95183","-96.31192","Royse City","TX","Texas","TRUE","","29135","101.3","48397","Rockwall","{""48397"": ""65.97"", ""48231"": ""23.9"", ""48085"": ""10.13""}","Rockwall|Hunt|Collin","48397|48231|48085","FALSE","FALSE","America/Chicago"
-"75201","32.78773","-96.79936","Dallas","TX","Texas","TRUE","","17476","4660.6","48113","Dallas","{""48113"": ""100""}","Dallas","48113","FALSE","FALSE","America/Chicago"
-"75202","32.77924","-96.80472","Dallas","TX","Texas","TRUE","","2312","1269.1","48113","Dallas","{""48113"": ""100""}","Dallas","48113","FALSE","FALSE","America/Chicago"
-"75203","32.74627","-96.803","Dallas","TX","Texas","TRUE","","17367","1417.7","48113","Dallas","{""48113"": ""100""}","Dallas","48113","FALSE","FALSE","America/Chicago"
-"75204","32.80204","-96.78881","Dallas","TX","Texas","TRUE","","30537","4609.7","48113","Dallas","{""48113"": ""100""}","Dallas","48113","FALSE","FALSE","America/Chicago"
-"75205","32.83657","-96.79619","Dallas","TX","Texas","TRUE","","24877","2207.5","48113","Dallas","{""48113"": ""100""}","Dallas","48113","FALSE","FALSE","America/Chicago"
-"75206","32.83155","-96.77027","Dallas","TX","Texas","TRUE","","39010","3542.1","48113","Dallas","{""48113"": ""100""}","Dallas","48113","FALSE","FALSE","America/Chicago"
-"75207","32.78676","-96.82139","Dallas","TX","Texas","TRUE","","7702","773.1","48113","Dallas","{""48113"": ""100""}","Dallas","48113","FALSE","FALSE","America/Chicago"
-"75208","32.75376","-96.83984","Dallas","TX","Texas","TRUE","","29706","1930.7","48113","Dallas","{""48113"": ""100""}","Dallas","48113","FALSE","FALSE","America/Chicago"
-"75209","32.84885","-96.82587","Dallas","TX","Texas","TRUE","","14308","1562.8","48113","Dallas","{""48113"": ""100""}","Dallas","48113","FALSE","FALSE","America/Chicago"
-"75210","32.77135","-96.74596","Dallas","TX","Texas","TRUE","","8673","1478.2","48113","Dallas","{""48113"": ""100""}","Dallas","48113","FALSE","FALSE","America/Chicago"
-"75211","32.73493","-96.90297","Dallas","TX","Texas","TRUE","","77570","1695.7","48113","Dallas","{""48113"": ""100""}","Dallas","48113","FALSE","FALSE","America/Chicago"
-"75212","32.78142","-96.87913","Dallas","TX","Texas","TRUE","","26720","1005.2","48113","Dallas","{""48113"": ""100""}","Dallas","48113","FALSE","FALSE","America/Chicago"
-"75214","32.82865","-96.74543","Dallas","TX","Texas","TRUE","","34824","1858.0","48113","Dallas","{""48113"": ""100""}","Dallas","48113","FALSE","FALSE","America/Chicago"
-"75215","32.75076","-96.7581","Dallas","TX","Texas","TRUE","","17818","817.6","48113","Dallas","{""48113"": ""100""}","Dallas","48113","FALSE","FALSE","America/Chicago"
-"75216","32.71165","-96.78371","Dallas","TX","Texas","TRUE","","53327","1408.8","48113","Dallas","{""48113"": ""100""}","Dallas","48113","FALSE","FALSE","America/Chicago"
-"75217","32.71217","-96.68118","Dallas","TX","Texas","TRUE","","89163","1259.9","48113","Dallas","{""48113"": ""100""}","Dallas","48113","FALSE","FALSE","America/Chicago"
-"75218","32.84154","-96.70237","Dallas","TX","Texas","TRUE","","22529","1244.8","48113","Dallas","{""48113"": ""100""}","Dallas","48113","FALSE","FALSE","America/Chicago"
-"75219","32.81179","-96.81292","Dallas","TX","Texas","TRUE","","25120","4425.3","48113","Dallas","{""48113"": ""100""}","Dallas","48113","FALSE","FALSE","America/Chicago"
-"75220","32.86664","-96.87615","Dallas","TX","Texas","TRUE","","42009","1433.0","48113","Dallas","{""48113"": ""100""}","Dallas","48113","FALSE","FALSE","America/Chicago"
-"75223","32.79223","-96.74399","Dallas","TX","Texas","TRUE","","14941","1671.0","48113","Dallas","{""48113"": ""100""}","Dallas","48113","FALSE","FALSE","America/Chicago"
-"75224","32.711","-96.83994","Dallas","TX","Texas","TRUE","","37592","2484.4","48113","Dallas","{""48113"": ""100""}","Dallas","48113","FALSE","FALSE","America/Chicago"
-"75225","32.86521","-96.79098","Dallas","TX","Texas","TRUE","","21736","1777.8","48113","Dallas","{""48113"": ""100""}","Dallas","48113","FALSE","FALSE","America/Chicago"
-"75226","32.7828","-96.77632","Dallas","TX","Texas","TRUE","","4579","1578.6","48113","Dallas","{""48113"": ""100""}","Dallas","48113","FALSE","FALSE","America/Chicago"
-"75227","32.77","-96.68728","Dallas","TX","Texas","TRUE","","59924","2030.1","48113","Dallas","{""48113"": ""100""}","Dallas","48113","FALSE","FALSE","America/Chicago"
-"75228","32.82443","-96.67996","Dallas","TX","Texas","TRUE","","73976","2503.9","48113","Dallas","{""48113"": ""100""}","Dallas","48113","FALSE","FALSE","America/Chicago"
-"75229","32.89374","-96.86441","Dallas","TX","Texas","TRUE","","32322","995.8","48113","Dallas","{""48113"": ""100""}","Dallas","48113","FALSE","FALSE","America/Chicago"
-"75230","32.90229","-96.79207","Dallas","TX","Texas","TRUE","","27489","1465.0","48113","Dallas","{""48113"": ""100""}","Dallas","48113","FALSE","FALSE","America/Chicago"
-"75231","32.87764","-96.74976","Dallas","TX","Texas","TRUE","","40371","2765.2","48113","Dallas","{""48113"": ""100""}","Dallas","48113","FALSE","FALSE","America/Chicago"
-"75232","32.66095","-96.84018","Dallas","TX","Texas","TRUE","","31453","1468.7","48113","Dallas","{""48113"": ""100""}","Dallas","48113","FALSE","FALSE","America/Chicago"
-"75233","32.70435","-96.87298","Dallas","TX","Texas","TRUE","","17280","1926.7","48113","Dallas","{""48113"": ""100""}","Dallas","48113","FALSE","FALSE","America/Chicago"
-"75234","32.92366","-96.89042","Dallas","TX","Texas","TRUE","","37160","1384.9","48113","Dallas","{""48113"": ""100""}","Dallas","48113","FALSE","FALSE","America/Chicago"
-"75235","32.8325","-96.84849","Dallas","TX","Texas","TRUE","","18429","1058.8","48113","Dallas","{""48113"": ""100""}","Dallas","48113","FALSE","FALSE","America/Chicago"
-"75236","32.68557","-96.93576","Dallas","TX","Texas","TRUE","","18137","560.7","48113","Dallas","{""48113"": ""100""}","Dallas","48113","FALSE","FALSE","America/Chicago"
-"75237","32.66564","-96.8731","Dallas","TX","Texas","TRUE","","21423","1243.8","48113","Dallas","{""48113"": ""100""}","Dallas","48113","FALSE","FALSE","America/Chicago"
-"75238","32.87853","-96.70782","Dallas","TX","Texas","TRUE","","33049","1940.2","48113","Dallas","{""48113"": ""100""}","Dallas","48113","FALSE","FALSE","America/Chicago"
-"75240","32.93174","-96.78854","Dallas","TX","Texas","TRUE","","28534","2920.8","48113","Dallas","{""48113"": ""100""}","Dallas","48113","FALSE","FALSE","America/Chicago"
-"75241","32.66571","-96.75904","Dallas","TX","Texas","TRUE","","31562","453.6","48113","Dallas","{""48113"": ""100""}","Dallas","48113","FALSE","FALSE","America/Chicago"
-"75243","32.91211","-96.73563","Dallas","TX","Texas","TRUE","","68308","3031.6","48113","Dallas","{""48113"": ""100""}","Dallas","48113","FALSE","FALSE","America/Chicago"
-"75244","32.92542","-96.83663","Dallas","TX","Texas","TRUE","","13254","1109.6","48113","Dallas","{""48113"": ""100""}","Dallas","48113","FALSE","FALSE","America/Chicago"
-"75246","32.79292","-96.7733","Dallas","TX","Texas","TRUE","","2760","2359.3","48113","Dallas","{""48113"": ""100""}","Dallas","48113","FALSE","FALSE","America/Chicago"
-"75247","32.81358","-96.87748","Dallas","TX","Texas","TRUE","","792","46.8","48113","Dallas","{""48113"": ""100""}","Dallas","48113","FALSE","FALSE","America/Chicago"
-"75248","32.96955","-96.79528","Dallas","TX","Texas","TRUE","","37373","1956.4","48113","Dallas","{""48113"": ""99.29"", ""48085"": ""0.71""}","Dallas|Collin","48113|48085","FALSE","FALSE","America/Chicago"
-"75249","32.64442","-96.9588","Dallas","TX","Texas","TRUE","","17649","1482.2","48113","Dallas","{""48113"": ""100""}","Dallas","48113","FALSE","FALSE","America/Chicago"
-"75251","32.91901","-96.77193","Dallas","TX","Texas","TRUE","","2861","2514.2","48113","Dallas","{""48113"": ""100""}","Dallas","48113","FALSE","FALSE","America/Chicago"
-"75252","32.99723","-96.79081","Dallas","TX","Texas","TRUE","","26867","2047.7","48085","Collin","{""48085"": ""97.44"", ""48113"": ""2.56""}","Collin|Dallas","48085|48113","FALSE","FALSE","America/Chicago"
-"75253","32.67499","-96.61286","Dallas","TX","Texas","TRUE","","23900","676.7","48113","Dallas","{""48113"": ""100""}","Dallas","48113","FALSE","FALSE","America/Chicago"
-"75254","32.94562","-96.80133","Dallas","TX","Texas","TRUE","","26929","3130.8","48113","Dallas","{""48113"": ""100""}","Dallas","48113","FALSE","FALSE","America/Chicago"
-"75270","32.78119","-96.80223","Dallas","TX","Texas","TRUE","","0","0.0","48113","Dallas","{""48113"": ""0""}","Dallas","48113","FALSE","FALSE","America/Chicago"
-"75287","33.00032","-96.84114","Dallas","TX","Texas","TRUE","","55673","3839.7","48121","Denton","{""48121"": ""52.75"", ""48085"": ""47.25"", ""48113"": ""0""}","Denton|Collin|Dallas","48121|48085|48113","FALSE","FALSE","America/Chicago"
-"75390","32.81419","-96.8408","Dallas","TX","Texas","TRUE","","0","0.0","48113","Dallas","{""48113"": ""0""}","Dallas","48113","FALSE","FALSE","America/Chicago"
-"75401","33.18426","-96.11952","Greenville","TX","Texas","TRUE","","19146","71.1","48231","Hunt","{""48231"": ""100""}","Hunt","48231","FALSE","FALSE","America/Chicago"
-"75402","33.06879","-96.08534","Greenville","TX","Texas","TRUE","","18087","77.3","48231","Hunt","{""48231"": ""100""}","Hunt","48231","FALSE","FALSE","America/Chicago"
-"75407","33.15089","-96.48796","Princeton","TX","Texas","TRUE","","17978","140.5","48085","Collin","{""48085"": ""100""}","Collin","48085","FALSE","FALSE","America/Chicago"
-"75409","33.35196","-96.52734","Anna","TX","Texas","TRUE","","16349","78.7","48085","Collin","{""48085"": ""100""}","Collin","48085","FALSE","FALSE","America/Chicago"
-"75410","32.79101","-95.63456","Alba","TX","Texas","TRUE","","4954","23.3","48499","Wood","{""48499"": ""82.16"", ""48379"": ""17.84""}","Wood|Rains","48499|48379","FALSE","FALSE","America/Chicago"
-"75411","33.86196","-95.64855","Arthur City","TX","Texas","TRUE","","889","4.4","48277","Lamar","{""48277"": ""100""}","Lamar","48277","FALSE","FALSE","America/Chicago"
-"75412","33.79984","-95.15232","Bagwell","TX","Texas","TRUE","","457","1.2","48387","Red River","{""48387"": ""100""}","Red River","48387","FALSE","FALSE","America/Chicago"
-"75413","33.4414","-96.17912","Bailey","TX","Texas","TRUE","","282","77.5","48147","Fannin","{""48147"": ""100""}","Fannin","48147","FALSE","FALSE","America/Chicago"
-"75414","33.62333","-96.43179","Bells","TX","Texas","TRUE","","3416","27.0","48181","Grayson","{""48181"": ""100""}","Grayson","48181","FALSE","FALSE","America/Chicago"
-"75415","33.45985","-95.75133","Ben Franklin","TX","Texas","TRUE","","240","8.8","48119","Delta","{""48119"": ""100""}","Delta","48119","FALSE","FALSE","America/Chicago"
-"75416","33.67825","-95.35442","Blossom","TX","Texas","TRUE","","3070","16.0","48277","Lamar","{""48277"": ""100""}","Lamar","48277","FALSE","FALSE","America/Chicago"
-"75417","33.43887","-95.13134","Bogata","TX","Texas","TRUE","","2688","6.3","48387","Red River","{""48387"": ""100""}","Red River","48387","FALSE","FALSE","America/Chicago"
-"75418","33.57269","-96.17766","Bonham","TX","Texas","TRUE","","14571","40.3","48147","Fannin","{""48147"": ""100""}","Fannin","48147","FALSE","FALSE","America/Chicago"
-"75420","33.053","-95.72612","Brashear","TX","Texas","TRUE","","1052","11.1","48223","Hopkins","{""48223"": ""100""}","Hopkins","48223","FALSE","FALSE","America/Chicago"
-"75421","33.64665","-95.7172","Brookston","TX","Texas","TRUE","","666","4.7","48277","Lamar","{""48277"": ""100""}","Lamar","48277","FALSE","FALSE","America/Chicago"
-"75422","33.13937","-95.93198","Campbell","TX","Texas","TRUE","","3088","16.3","48231","Hunt","{""48231"": ""100""}","Hunt","48231","FALSE","FALSE","America/Chicago"
-"75423","33.28614","-96.19999","Celeste","TX","Texas","TRUE","","3110","14.8","48231","Hunt","{""48231"": ""98.89"", ""48147"": ""1.11""}","Hunt|Fannin","48231|48147","FALSE","FALSE","America/Chicago"
-"75424","33.30659","-96.38586","Blue Ridge","TX","Texas","TRUE","","3024","17.5","48085","Collin","{""48085"": ""93.9"", ""48147"": ""6.1""}","Collin|Fannin","48085|48147","FALSE","FALSE","America/Chicago"
-"75426","33.65539","-95.00488","Clarksville","TX","Texas","TRUE","","4393","5.2","48387","Red River","{""48387"": ""100""}","Red River","48387","FALSE","FALSE","America/Chicago"
-"75428","33.26847","-95.91606","Commerce","TX","Texas","TRUE","","11371","51.1","48231","Hunt","{""48231"": ""97.27"", ""48119"": ""2.73""}","Hunt|Delta","48231|48119","FALSE","FALSE","America/Chicago"
-"75431","33.01166","-95.46369","Como","TX","Texas","TRUE","","2122","13.9","48223","Hopkins","{""48223"": ""88.45"", ""48499"": ""11.55""}","Hopkins|Wood","48223|48499","FALSE","FALSE","America/Chicago"
-"75432","33.39605","-95.67442","Cooper","TX","Texas","TRUE","","3504","12.8","48119","Delta","{""48119"": ""100""}","Delta","48119","FALSE","FALSE","America/Chicago"
-"75433","33.10767","-95.80424","Cumby","TX","Texas","TRUE","","2808","10.4","48223","Hopkins","{""48223"": ""100""}","Hopkins","48223","FALSE","FALSE","America/Chicago"
-"75435","33.48223","-95.31354","Deport","TX","Texas","TRUE","","944","5.4","48277","Lamar","{""48277"": ""84.98"", ""48387"": ""15.02""}","Lamar|Red River","48277|48387","FALSE","FALSE","America/Chicago"
-"75436","33.71282","-95.25156","Detroit","TX","Texas","TRUE","","2480","5.8","48387","Red River","{""48387"": ""95.52"", ""48277"": ""4.48""}","Red River|Lamar","48387|48277","FALSE","FALSE","America/Chicago"
-"75437","33.25841","-95.46899","Dike","TX","Texas","TRUE","","1377","8.8","48223","Hopkins","{""48223"": ""100""}","Hopkins","48223","FALSE","FALSE","America/Chicago"
-"75438","33.60829","-96.06541","Dodd City","TX","Texas","TRUE","","992","8.4","48147","Fannin","{""48147"": ""100""}","Fannin","48147","FALSE","FALSE","America/Chicago"
-"75439","33.55199","-96.27716","Ector","TX","Texas","TRUE","","1035","28.7","48147","Fannin","{""48147"": ""100""}","Fannin","48147","FALSE","FALSE","America/Chicago"
-"75440","32.87828","-95.75557","Emory","TX","Texas","TRUE","","6258","21.0","48379","Rains","{""48379"": ""97.1"", ""48499"": ""2.9""}","Rains|Wood","48379|48499","FALSE","FALSE","America/Chicago"
-"75441","33.4322","-95.65349","Enloe","TX","Texas","TRUE","","128","7.0","48119","Delta","{""48119"": ""100""}","Delta","48119","FALSE","FALSE","America/Chicago"
-"75442","33.17365","-96.35309","Farmersville","TX","Texas","TRUE","","9308","34.1","48085","Collin","{""48085"": ""89.03"", ""48231"": ""10.97""}","Collin|Hunt","48085|48231","FALSE","FALSE","America/Chicago"
-"75446","33.61208","-95.89414","Honey Grove","TX","Texas","TRUE","","3178","7.0","48147","Fannin","{""48147"": ""87.67"", ""48277"": ""12.33""}","Fannin|Lamar","48147|48277","FALSE","FALSE","America/Chicago"
-"75447","33.76513","-96.1177","Ivanhoe","TX","Texas","TRUE","","1256","9.1","48147","Fannin","{""48147"": ""100""}","Fannin","48147","FALSE","FALSE","America/Chicago"
-"75448","33.31493","-95.79329","Klondike","TX","Texas","TRUE","","643","8.8","48119","Delta","{""48119"": ""100""}","Delta","48119","FALSE","FALSE","America/Chicago"
-"75449","33.42067","-95.94604","Ladonia","TX","Texas","TRUE","","1374","6.5","48147","Fannin","{""48147"": ""83.39"", ""48231"": ""16.61""}","Fannin|Hunt","48147|48231","FALSE","FALSE","America/Chicago"
-"75450","33.4051","-95.47848","Lake Creek","TX","Texas","TRUE","","150","1.0","48119","Delta","{""48119"": ""100""}","Delta","48119","FALSE","FALSE","America/Chicago"
-"75451","32.96634","-95.1212","Leesburg","TX","Texas","TRUE","","1163","12.9","48063","Camp","{""48063"": ""95.46"", ""48499"": ""4.54""}","Camp|Wood","48063|48499","FALSE","FALSE","America/Chicago"
-"75452","33.39324","-96.24331","Leonard","TX","Texas","TRUE","","4650","23.6","48147","Fannin","{""48147"": ""93.79"", ""48231"": ""4.23"", ""48085"": ""1.98""}","Fannin|Hunt|Collin","48147|48231|48085","FALSE","FALSE","America/Chicago"
-"75453","32.99671","-95.93273","Lone Oak","TX","Texas","TRUE","","3046","15.7","48231","Hunt","{""48231"": ""82.92"", ""48379"": ""13.61"", ""48223"": ""3.47""}","Hunt|Rains|Hopkins","48231|48379|48223","FALSE","FALSE","America/Chicago"
-"75454","33.28335","-96.56323","Melissa","TX","Texas","TRUE","","10467","210.8","48085","Collin","{""48085"": ""100""}","Collin","48085","FALSE","FALSE","America/Chicago"
-"75455","33.21697","-94.97819","Mount Pleasant","TX","Texas","TRUE","","28354","37.1","48449","Titus","{""48449"": ""99.75"", ""48159"": ""0.25""}","Titus|Franklin","48449|48159","FALSE","FALSE","America/Chicago"
-"75457","33.1728","-95.21222","Mount Vernon","TX","Texas","TRUE","","6501","18.6","48159","Franklin","{""48159"": ""100""}","Franklin","48159","FALSE","FALSE","America/Chicago"
-"75459","33.53109","-96.67755","Howe","TX","Texas","TRUE","","5156","25.0","48181","Grayson","{""48181"": ""100""}","Grayson","48181","FALSE","FALSE","America/Chicago"
-"75460","33.65814","-95.6042","Paris","TX","Texas","TRUE","","23504","100.1","48277","Lamar","{""48277"": ""100""}","Lamar","48277","FALSE","FALSE","America/Chicago"
-"75462","33.62386","-95.48378","Paris","TX","Texas","TRUE","","11641","22.5","48277","Lamar","{""48277"": ""100""}","Lamar","48277","FALSE","FALSE","America/Chicago"
-"75468","33.51315","-95.40653","Pattonville","TX","Texas","TRUE","","939","7.2","48277","Lamar","{""48277"": ""100""}","Lamar","48277","FALSE","FALSE","America/Chicago"
-"75469","33.42161","-95.8146","Pecan Gap","TX","Texas","TRUE","","275","3.4","48119","Delta","{""48119"": ""97.3"", ""48147"": ""2.7""}","Delta|Fannin","48119|48147","FALSE","FALSE","America/Chicago"
-"75470","33.58231","-95.80822","Petty","TX","Texas","TRUE","","323","6.5","48277","Lamar","{""48277"": ""100""}","Lamar","48277","FALSE","FALSE","America/Chicago"
-"75471","33.03945","-95.38927","Pickton","TX","Texas","TRUE","","1531","12.3","48223","Hopkins","{""48223"": ""96.49"", ""48499"": ""3.51""}","Hopkins|Wood","48223|48499","FALSE","FALSE","America/Chicago"
-"75472","32.88593","-95.87797","Point","TX","Texas","TRUE","","4087","24.8","48379","Rains","{""48379"": ""99.55"", ""48223"": ""0.45""}","Rains|Hopkins","48379|48223","FALSE","FALSE","America/Chicago"
-"75473","33.81433","-95.48985","Powderly","TX","Texas","TRUE","","3688","17.1","48277","Lamar","{""48277"": ""100""}","Lamar","48277","FALSE","FALSE","America/Chicago"
-"75474","32.91953","-96.10899","Quinlan","TX","Texas","TRUE","","15017","54.0","48231","Hunt","{""48231"": ""98.63"", ""48257"": ""1.37""}","Hunt|Kaufman","48231|48257","FALSE","FALSE","America/Chicago"
-"75475","33.47484","-96.23822","Randolph","TX","Texas","TRUE","","148","27.7","48147","Fannin","{""48147"": ""100""}","Fannin","48147","FALSE","FALSE","America/Chicago"
-"75476","33.70586","-96.24354","Ravenna","TX","Texas","TRUE","","1056","7.9","48147","Fannin","{""48147"": ""100""}","Fannin","48147","FALSE","FALSE","America/Chicago"
-"75477","33.53286","-95.73471","Roxton","TX","Texas","TRUE","","1183","7.5","48277","Lamar","{""48277"": ""100""}","Lamar","48277","FALSE","FALSE","America/Chicago"
-"75478","33.17445","-95.35751","Saltillo","TX","Texas","TRUE","","1120","8.1","48223","Hopkins","{""48223"": ""98.5"", ""48159"": ""1.5""}","Hopkins|Franklin","48223|48159","FALSE","FALSE","America/Chicago"
-"75479","33.62159","-96.33922","Savoy","TX","Texas","TRUE","","1786","13.6","48147","Fannin","{""48147"": ""100""}","Fannin","48147","FALSE","FALSE","America/Chicago"
-"75480","33.02472","-95.19411","Scroggins","TX","Texas","TRUE","","1587","18.9","48159","Franklin","{""48159"": ""100""}","Franklin","48159","FALSE","FALSE","America/Chicago"
-"75481","33.31522","-95.37374","Sulphur Bluff","TX","Texas","TRUE","","314","1.7","48223","Hopkins","{""48223"": ""80.76"", ""48159"": ""19.24""}","Hopkins|Franklin","48223|48159","FALSE","FALSE","America/Chicago"
-"75482","33.16816","-95.60681","Sulphur Springs","TX","Texas","TRUE","","24984","30.9","48223","Hopkins","{""48223"": ""100""}","Hopkins","48223","FALSE","FALSE","America/Chicago"
-"75486","33.7583","-95.7486","Sumner","TX","Texas","TRUE","","2291","8.5","48277","Lamar","{""48277"": ""100""}","Lamar","48277","FALSE","FALSE","America/Chicago"
-"75487","33.33605","-95.16159","Talco","TX","Texas","TRUE","","2106","8.0","48449","Titus","{""48449"": ""59.05"", ""48159"": ""40.95""}","Titus|Franklin","48449|48159","FALSE","FALSE","America/Chicago"
-"75488","33.77723","-95.98748","Telephone","TX","Texas","TRUE","","645","2.1","48147","Fannin","{""48147"": ""100""}","Fannin","48147","FALSE","FALSE","America/Chicago"
-"75489","33.51926","-96.48429","Tom Bean","TX","Texas","TRUE","","1032","328.9","48181","Grayson","{""48181"": ""100""}","Grayson","48181","FALSE","FALSE","America/Chicago"
-"75490","33.43427","-96.31339","Trenton","TX","Texas","TRUE","","2493","32.9","48147","Fannin","{""48147"": ""98.51"", ""48181"": ""1.49""}","Fannin|Grayson","48147|48181","FALSE","FALSE","America/Chicago"
-"75491","33.49636","-96.39753","Whitewright","TX","Texas","TRUE","","5064","20.4","48181","Grayson","{""48181"": ""83.57"", ""48147"": ""16.14"", ""48085"": ""0.29""}","Grayson|Fannin|Collin","48181|48147|48085","FALSE","FALSE","America/Chicago"
-"75492","33.58768","-95.99551","Windom","TX","Texas","TRUE","","456","4.1","48147","Fannin","{""48147"": ""100""}","Fannin","48147","FALSE","FALSE","America/Chicago"
-"75493","33.13883","-95.10854","Winfield","TX","Texas","TRUE","","626","44.8","48449","Titus","{""48449"": ""100""}","Titus","48449","FALSE","FALSE","America/Chicago"
-"75494","32.90937","-95.26234","Winnsboro","TX","Texas","TRUE","","9940","16.9","48499","Wood","{""48499"": ""75.27"", ""48159"": ""15.15"", ""48223"": ""8.47"", ""48459"": ""1.1""}","Wood|Franklin|Hopkins|Upshur","48499|48159|48223|48459","FALSE","FALSE","America/Chicago"
-"75495","33.43311","-96.55161","Van Alstyne","TX","Texas","TRUE","","8729","50.1","48181","Grayson","{""48181"": ""95.9"", ""48085"": ""4.1""}","Grayson|Collin","48181|48085","FALSE","FALSE","America/Chicago"
-"75496","33.35984","-96.06298","Wolfe City","TX","Texas","TRUE","","3739","11.7","48231","Hunt","{""48231"": ""84.78"", ""48147"": ""15.22""}","Hunt|Fannin","48231|48147","FALSE","FALSE","America/Chicago"
-"75497","32.922","-95.572","Yantis","TX","Texas","TRUE","","3907","23.3","48499","Wood","{""48499"": ""88.84"", ""48223"": ""11.16""}","Wood|Hopkins","48499|48223","FALSE","FALSE","America/Chicago"
-"75501","33.37366","-94.13142","Texarkana","TX","Texas","TRUE","","36094","146.4","48037","Bowie","{""48037"": ""100""}","Bowie","48037","FALSE","FALSE","America/Chicago"
-"75503","33.51345","-94.13057","Texarkana","TX","Texas","TRUE","","25517","124.7","48037","Bowie","{""48037"": ""100""}","Bowie","48037","FALSE","FALSE","America/Chicago"
-"75550","33.49406","-94.88241","Annona","TX","Texas","TRUE","","681","3.0","48387","Red River","{""48387"": ""100""}","Red River","48387","FALSE","FALSE","America/Chicago"
-"75551","33.11556","-94.20197","Atlanta","TX","Texas","TRUE","","11251","26.3","48067","Cass","{""48067"": ""100""}","Cass","48067","FALSE","FALSE","America/Chicago"
-"75554","33.5549","-94.7795","Avery","TX","Texas","TRUE","","2131","5.0","48387","Red River","{""48387"": ""85.66"", ""48037"": ""14.34""}","Red River|Bowie","48387|48037","FALSE","FALSE","America/Chicago"
-"75555","32.94688","-94.13833","Bivins","TX","Texas","TRUE","","1579","5.4","48067","Cass","{""48067"": ""88.21"", ""48315"": ""11.79""}","Cass|Marion","48067|48315","FALSE","FALSE","America/Chicago"
-"75556","33.16112","-94.06127","Bloomburg","TX","Texas","TRUE","","1214","19.5","48067","Cass","{""48067"": ""97.71"", ""05091"": ""2.29""}","Cass|Miller","48067|05091","FALSE","FALSE","America/Chicago"
-"75558","33.2419","-94.85805","Cookville","TX","Texas","TRUE","","1582","12.2","48449","Titus","{""48449"": ""100""}","Titus","48449","FALSE","FALSE","America/Chicago"
-"75559","33.50992","-94.62748","De Kalb","TX","Texas","TRUE","","5122","7.5","48037","Bowie","{""48037"": ""100""}","Bowie","48037","FALSE","FALSE","America/Chicago"
-"75560","33.18696","-94.36878","Douglassville","TX","Texas","TRUE","","1002","4.9","48067","Cass","{""48067"": ""100""}","Cass","48067","FALSE","FALSE","America/Chicago"
-"75561","33.51333","-94.27781","Hooks","TX","Texas","TRUE","","4939","38.3","48037","Bowie","{""48037"": ""100""}","Bowie","48037","FALSE","FALSE","America/Chicago"
-"75562","32.92543","-94.24848","Kildare","TX","Texas","TRUE","","104","2.4","48067","Cass","{""48067"": ""100""}","Cass","48067","FALSE","FALSE","America/Chicago"
-"75563","33.00608","-94.38964","Linden","TX","Texas","TRUE","","4528","10.8","48067","Cass","{""48067"": ""100""}","Cass","48067","FALSE","FALSE","America/Chicago"
-"75565","32.93731","-94.0722","McLeod","TX","Texas","TRUE","","206","11.4","48067","Cass","{""48067"": ""100""}","Cass","48067","FALSE","FALSE","America/Chicago"
-"75566","33.14818","-94.49175","Marietta","TX","Texas","TRUE","","756","6.1","48067","Cass","{""48067"": ""100""}","Cass","48067","FALSE","FALSE","America/Chicago"
-"75567","33.31403","-94.31877","Maud","TX","Texas","TRUE","","4824","27.5","48037","Bowie","{""48037"": ""100""}","Bowie","48037","FALSE","FALSE","America/Chicago"
-"75568","33.20102","-94.59619","Naples","TX","Texas","TRUE","","2238","6.4","48343","Morris","{""48343"": ""68.78"", ""48067"": ""31.22""}","Morris|Cass","48343|48067","FALSE","FALSE","America/Chicago"
-"75569","33.44145","-94.12641","Nash","TX","Texas","TRUE","","3464","445.3","48037","Bowie","{""48037"": ""100""}","Bowie","48037","FALSE","FALSE","America/Chicago"
-"75570","33.46195","-94.43753","New Boston","TX","Texas","TRUE","","11071","31.6","48037","Bowie","{""48037"": ""100""}","Bowie","48037","FALSE","FALSE","America/Chicago"
-"75571","33.20616","-94.764","Omaha","TX","Texas","TRUE","","3134","11.7","48343","Morris","{""48343"": ""97.4"", ""48449"": ""2.6""}","Morris|Titus","48343|48449","FALSE","FALSE","America/Chicago"
-"75572","33.23154","-94.13216","Queen City","TX","Texas","TRUE","","3896","20.9","48067","Cass","{""48067"": ""100""}","Cass","48067","FALSE","FALSE","America/Chicago"
-"75573","33.3423","-94.23728","Redwater","TX","Texas","TRUE","","115","4.5","48037","Bowie","{""48037"": ""100""}","Bowie","48037","FALSE","FALSE","America/Chicago"
-"75574","33.33096","-94.55347","Simms","TX","Texas","TRUE","","1659","6.0","48037","Bowie","{""48037"": ""100""}","Bowie","48037","FALSE","FALSE","America/Chicago"
-"75601","32.50856","-94.72383","Longview","TX","Texas","TRUE","","15719","653.2","48183","Gregg","{""48183"": ""89.08"", ""48203"": ""10.92""}","Gregg|Harrison","48183|48203","FALSE","FALSE","America/Chicago"
-"75602","32.459","-94.65992","Longview","TX","Texas","TRUE","","21655","170.7","48183","Gregg","{""48183"": ""77.57"", ""48203"": ""22.43""}","Gregg|Harrison","48183|48203","FALSE","FALSE","America/Chicago"
-"75603","32.39854","-94.70911","Longview","TX","Texas","TRUE","","6100","50.9","48183","Gregg","{""48183"": ""74.69"", ""48401"": ""25.31""}","Gregg|Rusk","48183|48401","FALSE","FALSE","America/Chicago"
-"75604","32.50965","-94.82774","Longview","TX","Texas","TRUE","","31027","254.5","48183","Gregg","{""48183"": ""99.36"", ""48459"": ""0.64""}","Gregg|Upshur","48183|48459","FALSE","FALSE","America/Chicago"
-"75605","32.58257","-94.72064","Longview","TX","Texas","TRUE","","30501","148.7","48183","Gregg","{""48183"": ""85.3"", ""48203"": ""14.44"", ""48459"": ""0.26""}","Gregg|Harrison|Upshur","48183|48203|48459","FALSE","FALSE","America/Chicago"
-"75630","32.87431","-94.55271","Avinger","TX","Texas","TRUE","","2370","10.1","48315","Marion","{""48315"": ""58.69"", ""48067"": ""41.31""}","Marion|Cass","48315|48067","FALSE","FALSE","America/Chicago"
-"75631","32.24926","-94.45456","Beckville","TX","Texas","TRUE","","3248","10.7","48365","Panola","{""48365"": ""100""}","Panola","48365","FALSE","FALSE","America/Chicago"
-"75633","32.12895","-94.27705","Carthage","TX","Texas","TRUE","","13161","15.7","48365","Panola","{""48365"": ""100""}","Panola","48365","FALSE","FALSE","America/Chicago"
-"75638","33.02095","-94.73186","Daingerfield","TX","Texas","TRUE","","5505","24.0","48343","Morris","{""48343"": ""99.19"", ""48067"": ""0.81""}","Morris|Cass","48343|48067","FALSE","FALSE","America/Chicago"
-"75639","32.29033","-94.16944","De Berry","TX","Texas","TRUE","","2926","6.6","48365","Panola","{""48365"": ""100""}","Panola","48365","FALSE","FALSE","America/Chicago"
-"75640","32.71557","-94.68413","Diana","TX","Texas","TRUE","","4859","22.2","48459","Upshur","{""48459"": ""74.57"", ""48203"": ""23.8"", ""48315"": ""1.63""}","Upshur|Harrison|Marion","48459|48203|48315","FALSE","FALSE","America/Chicago"
-"75641","32.37844","-94.57574","Easton","TX","Texas","TRUE","","89","10.3","48183","Gregg","{""48183"": ""68.16"", ""48401"": ""31.84""}","Gregg|Rusk","48183|48401","FALSE","FALSE","America/Chicago"
-"75642","32.37152","-94.17658","Elysian Fields","TX","Texas","TRUE","","48","8.3","48203","Harrison","{""48203"": ""100""}","Harrison","48203","FALSE","FALSE","America/Chicago"
-"75643","32.01618","-94.36084","Gary","TX","Texas","TRUE","","2253","12.8","48365","Panola","{""48365"": ""97.06"", ""48419"": ""2.94""}","Panola|Shelby","48365|48419","FALSE","FALSE","America/Chicago"
-"75644","32.7951","-94.99553","Gilmer","TX","Texas","TRUE","","13427","27.7","48459","Upshur","{""48459"": ""100""}","Upshur","48459","FALSE","FALSE","America/Chicago"
-"75645","32.68749","-94.87405","Gilmer","TX","Texas","TRUE","","10797","28.7","48459","Upshur","{""48459"": ""99.22"", ""48183"": ""0.78""}","Upshur|Gregg","48459|48183","FALSE","FALSE","America/Chicago"
-"75647","32.5189","-94.95133","Gladewater","TX","Texas","TRUE","","13712","69.7","48183","Gregg","{""48183"": ""54.63"", ""48459"": ""36.03"", ""48423"": ""9.34""}","Gregg|Upshur|Smith","48183|48459|48423","FALSE","FALSE","America/Chicago"
-"75650","32.51394","-94.55473","Hallsville","TX","Texas","TRUE","","9837","30.6","48203","Harrison","{""48203"": ""100""}","Harrison","48203","FALSE","FALSE","America/Chicago"
-"75651","32.67157","-94.53603","Harleton","TX","Texas","TRUE","","2100","13.8","48203","Harrison","{""48203"": ""97.26"", ""48315"": ""2.74""}","Harrison|Marion","48203|48315","FALSE","FALSE","America/Chicago"
-"75652","32.22989","-94.73272","Henderson","TX","Texas","TRUE","","16223","35.6","48401","Rusk","{""48401"": ""100""}","Rusk","48401","FALSE","FALSE","America/Chicago"
-"75654","32.08099","-94.82647","Henderson","TX","Texas","TRUE","","12664","24.1","48401","Rusk","{""48401"": ""99.88"", ""48073"": ""0.12""}","Rusk|Cherokee","48401|48073","FALSE","FALSE","America/Chicago"
-"75656","33.00552","-94.59071","Hughes Springs","TX","Texas","TRUE","","4331","15.6","48067","Cass","{""48067"": ""91.34"", ""48343"": ""8.66""}","Cass|Morris","48067|48343","FALSE","FALSE","America/Chicago"
-"75657","32.7922","-94.30601","Jefferson","TX","Texas","TRUE","","7261","8.4","48315","Marion","{""48315"": ""92.29"", ""48067"": ""4.18"", ""48203"": ""3.53""}","Marion|Cass|Harrison","48315|48067|48203","FALSE","FALSE","America/Chicago"
-"75661","32.63754","-94.16153","Karnack","TX","Texas","TRUE","","3094","9.4","48203","Harrison","{""48203"": ""100""}","Harrison","48203","FALSE","FALSE","America/Chicago"
-"75662","32.38397","-94.87014","Kilgore","TX","Texas","TRUE","","24976","75.6","48183","Gregg","{""48183"": ""72.11"", ""48401"": ""26.09"", ""48423"": ""1.79""}","Gregg|Rusk|Smith","48183|48401|48423","FALSE","FALSE","America/Chicago"
-"75667","31.98544","-94.84005","Laneville","TX","Texas","TRUE","","1193","5.5","48401","Rusk","{""48401"": ""100""}","Rusk","48401","FALSE","FALSE","America/Chicago"
-"75668","32.90453","-94.68362","Lone Star","TX","Texas","TRUE","","2371","40.2","48343","Morris","{""48343"": ""86.05"", ""48315"": ""13.95""}","Morris|Marion","48343|48315","FALSE","FALSE","America/Chicago"
-"75669","32.03376","-94.56395","Long Branch","TX","Texas","TRUE","","762","4.7","48365","Panola","{""48365"": ""79.04"", ""48401"": ""20.96""}","Panola|Rusk","48365|48401","FALSE","FALSE","America/Chicago"
-"75670","32.57299","-94.42297","Marshall","TX","Texas","TRUE","","17539","55.1","48203","Harrison","{""48203"": ""100""}","Harrison","48203","FALSE","FALSE","America/Chicago"
-"75672","32.46883","-94.29489","Marshall","TX","Texas","TRUE","","16351","26.6","48203","Harrison","{""48203"": ""100""}","Harrison","48203","FALSE","FALSE","America/Chicago"
-"75681","31.92844","-94.69197","Mount Enterprise","TX","Texas","TRUE","","2128","6.4","48401","Rusk","{""48401"": ""100""}","Rusk","48401","FALSE","FALSE","America/Chicago"
-"75682","32.25033","-94.9366","New London","TX","Texas","TRUE","","578","72.6","48401","Rusk","{""48401"": ""100""}","Rusk","48401","FALSE","FALSE","America/Chicago"
-"75683","32.82301","-94.73701","Ore City","TX","Texas","TRUE","","3709","25.4","48459","Upshur","{""48459"": ""79.23"", ""48315"": ""20.77""}","Upshur|Marion","48459|48315","FALSE","FALSE","America/Chicago"
-"75684","32.27335","-94.93895","Overton","TX","Texas","TRUE","","7894","30.2","48401","Rusk","{""48401"": ""89.22"", ""48423"": ""10.78""}","Rusk|Smith","48401|48423","FALSE","FALSE","America/Chicago"
-"75686","32.96953","-94.95018","Pittsburg","TX","Texas","TRUE","","13184","21.9","48063","Camp","{""48063"": ""86.6"", ""48449"": ""6.78"", ""48459"": ""6.11"", ""48343"": ""0.51""}","Camp|Titus|Upshur|Morris","48063|48449|48459|48343","FALSE","FALSE","America/Chicago"
-"75691","32.31327","-94.55066","Tatum","TX","Texas","TRUE","","4320","17.9","48401","Rusk","{""48401"": ""93.24"", ""48365"": ""6.76""}","Rusk|Panola","48401|48365","FALSE","FALSE","America/Chicago"
-"75692","32.48038","-94.11629","Waskom","TX","Texas","TRUE","","4414","19.0","48203","Harrison","{""48203"": ""100""}","Harrison","48203","FALSE","FALSE","America/Chicago"
-"75693","32.53385","-94.85985","White Oak","TX","Texas","TRUE","","7076","248.8","48183","Gregg","{""48183"": ""100""}","Gregg","48183","FALSE","FALSE","America/Chicago"
-"75701","32.32331","-95.3009","Tyler","TX","Texas","TRUE","","35858","880.8","48423","Smith","{""48423"": ""100""}","Smith","48423","FALSE","FALSE","America/Chicago"
-"75702","32.36287","-95.31531","Tyler","TX","Texas","TRUE","","27698","782.5","48423","Smith","{""48423"": ""100""}","Smith","48423","FALSE","FALSE","America/Chicago"
-"75703","32.23855","-95.32063","Tyler","TX","Texas","TRUE","","42777","304.5","48423","Smith","{""48423"": ""100""}","Smith","48423","FALSE","FALSE","America/Chicago"
-"75704","32.40753","-95.44131","Tyler","TX","Texas","TRUE","","10199","58.7","48423","Smith","{""48423"": ""100""}","Smith","48423","FALSE","FALSE","America/Chicago"
-"75705","32.36603","-95.10274","Tyler","TX","Texas","TRUE","","2762","38.5","48423","Smith","{""48423"": ""100""}","Smith","48423","FALSE","FALSE","America/Chicago"
-"75706","32.466","-95.3076","Tyler","TX","Texas","TRUE","","10449","53.8","48423","Smith","{""48423"": ""100""}","Smith","48423","FALSE","FALSE","America/Chicago"
-"75707","32.30359","-95.17687","Tyler","TX","Texas","TRUE","","14232","106.4","48423","Smith","{""48423"": ""100""}","Smith","48423","FALSE","FALSE","America/Chicago"
-"75708","32.41635","-95.20959","Tyler","TX","Texas","TRUE","","7698","54.3","48423","Smith","{""48423"": ""100""}","Smith","48423","FALSE","FALSE","America/Chicago"
-"75709","32.31072","-95.39289","Tyler","TX","Texas","TRUE","","4731","88.1","48423","Smith","{""48423"": ""100""}","Smith","48423","FALSE","FALSE","America/Chicago"
-"75750","32.27443","-95.07493","Arp","TX","Texas","TRUE","","3766","31.1","48423","Smith","{""48423"": ""100""}","Smith","48423","FALSE","FALSE","America/Chicago"
-"75751","32.09643","-95.90829","Athens","TX","Texas","TRUE","","17084","41.0","48213","Henderson","{""48213"": ""98.47"", ""48001"": ""1.53""}","Henderson|Anderson","48213|48001","FALSE","FALSE","America/Chicago"
-"75752","32.24454","-95.80858","Athens","TX","Texas","TRUE","","6998","18.3","48213","Henderson","{""48213"": ""95.51"", ""48467"": ""4.49""}","Henderson|Van Zandt","48213|48467","FALSE","FALSE","America/Chicago"
-"75754","32.42579","-95.66519","Ben Wheeler","TX","Texas","TRUE","","6627","20.6","48467","Van Zandt","{""48467"": ""100""}","Van Zandt","48467","FALSE","FALSE","America/Chicago"
-"75755","32.63315","-95.08596","Big Sandy","TX","Texas","TRUE","","5178","19.1","48459","Upshur","{""48459"": ""98.6"", ""48499"": ""1.4""}","Upshur|Wood","48459|48499","FALSE","FALSE","America/Chicago"
-"75756","32.30402","-95.60003","Brownsboro","TX","Texas","TRUE","","4450","25.1","48213","Henderson","{""48213"": ""97.18"", ""48467"": ""2.82""}","Henderson|Van Zandt","48213|48467","FALSE","FALSE","America/Chicago"
-"75757","32.11461","-95.349","Bullard","TX","Texas","TRUE","","12802","56.6","48423","Smith","{""48423"": ""58.98"", ""48073"": ""41.02""}","Smith|Cherokee","48423|48073","FALSE","FALSE","America/Chicago"
-"75758","32.27541","-95.50733","Chandler","TX","Texas","TRUE","","8739","68.4","48213","Henderson","{""48213"": ""93.07"", ""48467"": ""6.93""}","Henderson|Van Zandt","48213|48467","FALSE","FALSE","America/Chicago"
-"75759","32.03594","-95.41876","Cuney","TX","Texas","TRUE","","54","9.3","48073","Cherokee","{""48073"": ""100""}","Cherokee","48073","FALSE","FALSE","America/Chicago"
-"75760","31.8041","-94.8556","Cushing","TX","Texas","TRUE","","2066","6.1","48347","Nacogdoches","{""48347"": ""86.15"", ""48401"": ""13.85""}","Nacogdoches|Rusk","48347|48401","FALSE","FALSE","America/Chicago"
-"75762","32.21681","-95.41378","Flint","TX","Texas","TRUE","","12412","110.0","48423","Smith","{""48423"": ""100""}","Smith","48423","FALSE","FALSE","America/Chicago"
-"75763","32.04187","-95.52214","Frankston","TX","Texas","TRUE","","6247","22.4","48001","Anderson","{""48001"": ""51.64"", ""48213"": ""48.36""}","Anderson|Henderson","48001|48213","FALSE","FALSE","America/Chicago"
-"75764","31.89544","-95.14372","Gallatin","TX","Texas","TRUE","","187","57.1","48073","Cherokee","{""48073"": ""100""}","Cherokee","48073","FALSE","FALSE","America/Chicago"
-"75765","32.64159","-95.23516","Hawkins","TX","Texas","TRUE","","7157","27.1","48499","Wood","{""48499"": ""99.74"", ""48459"": ""0.26""}","Wood|Upshur","48499|48459","FALSE","FALSE","America/Chicago"
-"75766","31.9462","-95.25702","Jacksonville","TX","Texas","TRUE","","26925","34.0","48073","Cherokee","{""48073"": ""100""}","Cherokee","48073","FALSE","FALSE","America/Chicago"
-"75770","32.13855","-95.64876","Larue","TX","Texas","TRUE","","2925","9.4","48213","Henderson","{""48213"": ""100""}","Henderson","48213","FALSE","FALSE","America/Chicago"
-"75771","32.5361","-95.43456","Lindale","TX","Texas","TRUE","","21310","57.1","48423","Smith","{""48423"": ""100""}","Smith","48423","FALSE","FALSE","America/Chicago"
-"75773","32.67876","-95.44591","Mineola","TX","Texas","TRUE","","14523","31.4","48499","Wood","{""48499"": ""92.56"", ""48423"": ""7.44""}","Wood|Smith","48499|48423","FALSE","FALSE","America/Chicago"
-"75778","32.3023","-95.71185","Murchison","TX","Texas","TRUE","","2947","20.2","48213","Henderson","{""48213"": ""66.53"", ""48467"": ""33.47""}","Henderson|Van Zandt","48213|48467","FALSE","FALSE","America/Chicago"
-"75779","31.86529","-95.48595","Neches","TX","Texas","TRUE","","128","57.4","48001","Anderson","{""48001"": ""100""}","Anderson","48001","FALSE","FALSE","America/Chicago"
-"75780","31.99099","-95.09183","New Summerfield","TX","Texas","TRUE","","216","66.4","48073","Cherokee","{""48073"": ""100""}","Cherokee","48073","FALSE","FALSE","America/Chicago"
-"75783","32.82157","-95.42365","Quitman","TX","Texas","TRUE","","7942","25.2","48499","Wood","{""48499"": ""100""}","Wood","48499","FALSE","FALSE","America/Chicago"
-"75784","31.8737","-94.97332","Reklaw","TX","Texas","TRUE","","774","7.7","48073","Cherokee","{""48073"": ""51.98"", ""48401"": ""48.02""}","Cherokee|Rusk","48073|48401","FALSE","FALSE","America/Chicago"
-"75785","31.77994","-95.17381","Rusk","TX","Texas","TRUE","","11357","16.4","48073","Cherokee","{""48073"": ""100""}","Cherokee","48073","FALSE","FALSE","America/Chicago"
-"75788","31.82598","-94.92588","Sacul","TX","Texas","TRUE","","23","2.6","48347","Nacogdoches","{""48347"": ""100""}","Nacogdoches","48347","FALSE","FALSE","America/Chicago"
-"75789","32.10909","-95.09693","Troup","TX","Texas","TRUE","","7806","16.0","48423","Smith","{""48423"": ""62.22"", ""48073"": ""37.11"", ""48401"": ""0.67""}","Smith|Cherokee|Rusk","48423|48073|48401","FALSE","FALSE","America/Chicago"
-"75790","32.53231","-95.6426","Van","TX","Texas","TRUE","","3864","40.6","48467","Van Zandt","{""48467"": ""98.24"", ""48423"": ""1.76""}","Van Zandt|Smith","48467|48423","FALSE","FALSE","America/Chicago"
-"75791","32.22164","-95.22053","Whitehouse","TX","Texas","TRUE","","13562","135.9","48423","Smith","{""48423"": ""100""}","Smith","48423","FALSE","FALSE","America/Chicago"
-"75792","32.47668","-95.10197","Winona","TX","Texas","TRUE","","3002","12.3","48423","Smith","{""48423"": ""100""}","Smith","48423","FALSE","FALSE","America/Chicago"
-"75801","31.73457","-95.53316","Palestine","TX","Texas","TRUE","","16244","29.2","48001","Anderson","{""48001"": ""100""}","Anderson","48001","FALSE","FALSE","America/Chicago"
-"75803","31.87441","-95.66916","Palestine","TX","Texas","TRUE","","21928","25.5","48001","Anderson","{""48001"": ""100""}","Anderson","48001","FALSE","FALSE","America/Chicago"
-"75831","31.46234","-96.01473","Buffalo","TX","Texas","TRUE","","5529","8.4","48289","Leon","{""48289"": ""83.51"", ""48161"": ""16.49""}","Leon|Freestone","48289|48161","FALSE","FALSE","America/Chicago"
-"75832","31.91904","-95.9946","Cayuga","TX","Texas","TRUE","","107","2.5","48001","Anderson","{""48001"": ""100""}","Anderson","48001","FALSE","FALSE","America/Chicago"
-"75833","31.26718","-95.839","Centerville","TX","Texas","TRUE","","2944","4.6","48289","Leon","{""48289"": ""100""}","Leon","48289","FALSE","FALSE","America/Chicago"
-"75835","31.29348","-95.49196","Crockett","TX","Texas","TRUE","","11086","9.5","48225","Houston","{""48225"": ""100""}","Houston","48225","FALSE","FALSE","America/Chicago"
-"75838","31.47745","-96.22824","Donie","TX","Texas","TRUE","","639","3.5","48161","Freestone","{""48161"": ""70.57"", ""48293"": ""29.43""}","Freestone|Limestone","48161|48293","FALSE","FALSE","America/Chicago"
-"75839","31.60599","-95.5779","Elkhart","TX","Texas","TRUE","","5927","15.5","48001","Anderson","{""48001"": ""99.31"", ""48225"": ""0.69""}","Anderson|Houston","48001|48225","FALSE","FALSE","America/Chicago"
-"75840","31.78236","-96.08899","Fairfield","TX","Texas","TRUE","","6340","9.0","48161","Freestone","{""48161"": ""100""}","Freestone","48161","FALSE","FALSE","America/Chicago"
-"75844","31.51376","-95.43842","Grapeland","TX","Texas","TRUE","","5968","6.4","48225","Houston","{""48225"": ""87.85"", ""48001"": ""12.15""}","Houston|Anderson","48225|48001","FALSE","FALSE","America/Chicago"
-"75845","31.10075","-95.08954","Groveton","TX","Texas","TRUE","","2926","3.6","48455","Trinity","{""48455"": ""100""}","Trinity","48455","FALSE","FALSE","America/Chicago"
-"75846","31.33865","-96.16544","Jewett","TX","Texas","TRUE","","2957","7.8","48289","Leon","{""48289"": ""83.92"", ""48293"": ""16.08""}","Leon|Limestone","48289|48293","FALSE","FALSE","America/Chicago"
-"75847","31.35383","-95.14609","Kennard","TX","Texas","TRUE","","1843","2.9","48225","Houston","{""48225"": ""85.85"", ""48455"": ""14.15""}","Houston|Trinity","48225|48455","FALSE","FALSE","America/Chicago"
-"75848","31.76525","-96.32993","Kirvin","TX","Texas","TRUE","","137","267.4","48161","Freestone","{""48161"": ""100""}","Freestone","48161","FALSE","FALSE","America/Chicago"
-"75849","31.41743","-95.48164","Latexo","TX","Texas","TRUE","","67","13.6","48225","Houston","{""48225"": ""100""}","Houston","48225","FALSE","FALSE","America/Chicago"
-"75850","31.13741","-95.9168","Leona","TX","Texas","TRUE","","796","4.3","48289","Leon","{""48289"": ""100""}","Leon","48289","FALSE","FALSE","America/Chicago"
-"75851","31.09323","-95.49712","Lovelady","TX","Texas","TRUE","","4954","7.4","48225","Houston","{""48225"": ""96.38"", ""48455"": ""3.62""}","Houston|Trinity","48225|48455","FALSE","FALSE","America/Chicago"
-"75852","30.96685","-95.71166","Midway","TX","Texas","TRUE","","4017","9.0","48313","Madison","{""48313"": ""96.62"", ""48471"": ""3.38""}","Madison|Walker","48313|48471","FALSE","FALSE","America/Chicago"
-"75853","31.93692","-95.81323","Montalba","TX","Texas","TRUE","","466","2.4","48001","Anderson","{""48001"": ""100""}","Anderson","48001","FALSE","FALSE","America/Chicago"
-"75855","31.56221","-95.85025","Oakwood","TX","Texas","TRUE","","3078","4.4","48289","Leon","{""48289"": ""54.41"", ""48161"": ""45.59""}","Leon|Freestone","48289|48161","FALSE","FALSE","America/Chicago"
-"75856","31.18891","-95.25576","Pennington","TX","Texas","TRUE","","215","3.3","48455","Trinity","{""48455"": ""58.67"", ""48225"": ""41.33""}","Trinity|Houston","48455|48225","FALSE","FALSE","America/Chicago"
-"75858","31.39074","-95.12689","Ratcliff","TX","Texas","TRUE","","0","0.0","48225","Houston","{""48225"": ""100""}","Houston","48225","FALSE","FALSE","America/Chicago"
-"75859","31.88161","-96.24023","Streetman","TX","Texas","TRUE","","2134","7.0","48161","Freestone","{""48161"": ""83"", ""48349"": ""17""}","Freestone|Navarro","48161|48349","FALSE","FALSE","America/Chicago"
-"75860","31.62091","-96.24864","Teague","TX","Texas","TRUE","","6516","14.8","48161","Freestone","{""48161"": ""100""}","Freestone","48161","FALSE","FALSE","America/Chicago"
-"75861","31.85323","-95.8924","Tennessee Colony","TX","Texas","TRUE","","9126","30.8","48001","Anderson","{""48001"": ""100""}","Anderson","48001","FALSE","FALSE","America/Chicago"
-"75862","30.95984","-95.32384","Trinity","TX","Texas","TRUE","","10176","15.9","48455","Trinity","{""48455"": ""95.92"", ""48471"": ""4.08""}","Trinity|Walker","48455|48471","FALSE","FALSE","America/Chicago"
-"75901","31.30134","-94.65552","Lufkin","TX","Texas","TRUE","","30429","72.8","48005","Angelina","{""48005"": ""100""}","Angelina","48005","FALSE","FALSE","America/Chicago"
-"75904","31.3397","-94.82173","Lufkin","TX","Texas","TRUE","","34406","93.4","48005","Angelina","{""48005"": ""99.95"", ""48455"": ""0.05""}","Angelina|Trinity","48005|48455","FALSE","FALSE","America/Chicago"
-"75925","31.61114","-95.06597","Alto","TX","Texas","TRUE","","4002","6.5","48073","Cherokee","{""48073"": ""100""}","Cherokee","48073","FALSE","FALSE","America/Chicago"
-"75926","31.25151","-94.96273","Apple Springs","TX","Texas","TRUE","","1151","3.8","48455","Trinity","{""48455"": ""100""}","Trinity","48455","FALSE","FALSE","America/Chicago"
-"75928","30.67148","-93.71173","Bon Wier","TX","Texas","TRUE","","1198","5.1","48351","Newton","{""48351"": ""100""}","Newton","48351","FALSE","FALSE","America/Chicago"
-"75929","31.24549","-94.19464","Broaddus","TX","Texas","TRUE","","1649","4.8","48405","San Augustine","{""48405"": ""100""}","San Augustine","48405","FALSE","FALSE","America/Chicago"
-"75930","31.32203","-94.03261","Bronson","TX","Texas","TRUE","","1779","5.1","48403","Sabine","{""48403"": ""60.41"", ""48405"": ""39.59""}","Sabine|San Augustine","48403|48405","FALSE","FALSE","America/Chicago"
-"75931","31.1108","-94.00384","Brookeland","TX","Texas","TRUE","","2203","15.2","48241","Jasper","{""48241"": ""84.87"", ""48403"": ""15.13""}","Jasper|Sabine","48241|48403","FALSE","FALSE","America/Chicago"
-"75932","31.05408","-93.60988","Burkeville","TX","Texas","TRUE","","1743","5.4","48351","Newton","{""48351"": ""100""}","Newton","48351","FALSE","FALSE","America/Chicago"
-"75933","30.55809","-93.81161","Call","TX","Texas","TRUE","","1158","6.0","48351","Newton","{""48351"": ""70.79"", ""48241"": ""29.21""}","Newton|Jasper","48351|48241","FALSE","FALSE","America/Chicago"
-"75934","30.89591","-94.75068","Camden","TX","Texas","TRUE","","219","11.4","48373","Polk","{""48373"": ""100""}","Polk","48373","FALSE","FALSE","America/Chicago"
-"75935","31.73269","-94.20156","Center","TX","Texas","TRUE","","13648","14.9","48419","Shelby","{""48419"": ""98.78"", ""48405"": ""1.22""}","Shelby|San Augustine","48419|48405","FALSE","FALSE","America/Chicago"
-"75936","30.95213","-94.57961","Chester","TX","Texas","TRUE","","1128","3.5","48457","Tyler","{""48457"": ""85.71"", ""48373"": ""14.29""}","Tyler|Polk","48457|48373","FALSE","FALSE","America/Chicago"
-"75937","31.45872","-94.3765","Chireno","TX","Texas","TRUE","","891","5.1","48347","Nacogdoches","{""48347"": ""100""}","Nacogdoches","48347","FALSE","FALSE","America/Chicago"
-"75938","30.93262","-94.35342","Colmesneil","TX","Texas","TRUE","","2585","5.4","48457","Tyler","{""48457"": ""100""}","Tyler","48457","FALSE","FALSE","America/Chicago"
-"75939","31.01824","-94.79403","Corrigan","TX","Texas","TRUE","","5260","8.4","48373","Polk","{""48373"": ""100""}","Polk","48373","FALSE","FALSE","America/Chicago"
-"75941","31.17992","-94.76368","Diboll","TX","Texas","TRUE","","8465","38.5","48005","Angelina","{""48005"": ""100""}","Angelina","48005","FALSE","FALSE","America/Chicago"
-"75942","30.81634","-94.43146","Doucette","TX","Texas","TRUE","","229","214.2","48457","Tyler","{""48457"": ""100""}","Tyler","48457","FALSE","FALSE","America/Chicago"
-"75943","31.65356","-94.88784","Douglass","TX","Texas","TRUE","","1442","8.7","48347","Nacogdoches","{""48347"": ""100""}","Nacogdoches","48347","FALSE","FALSE","America/Chicago"
-"75944","31.33734","-94.38859","Etoile","TX","Texas","TRUE","","1100","10.7","48347","Nacogdoches","{""48347"": ""100""}","Nacogdoches","48347","FALSE","FALSE","America/Chicago"
-"75946","31.81362","-94.52541","Garrison","TX","Texas","TRUE","","3744","10.4","48347","Nacogdoches","{""48347"": ""78.76"", ""48401"": ""21.24""}","Nacogdoches|Rusk","48347|48401","FALSE","FALSE","America/Chicago"
-"75948","31.30812","-93.77894","Hemphill","TX","Texas","TRUE","","6268","9.9","48403","Sabine","{""48403"": ""99.65"", ""48351"": ""0.35""}","Sabine|Newton","48403|48351","FALSE","FALSE","America/Chicago"
-"75949","31.23143","-94.51943","Huntington","TX","Texas","TRUE","","8225","16.1","48005","Angelina","{""48005"": ""100""}","Angelina","48005","FALSE","FALSE","America/Chicago"
-"75951","30.94151","-94.05384","Jasper","TX","Texas","TRUE","","15859","15.6","48241","Jasper","{""48241"": ""99.98"", ""48351"": ""0.02""}","Jasper|Newton","48241|48351","FALSE","FALSE","America/Chicago"
-"75954","31.92347","-94.05436","Joaquin","TX","Texas","TRUE","","2466","8.9","48419","Shelby","{""48419"": ""94.09"", ""48365"": ""5.91""}","Shelby|Panola","48419|48365","FALSE","FALSE","America/Chicago"
-"75956","30.67771","-93.97821","Kirbyville","TX","Texas","TRUE","","8937","14.2","48241","Jasper","{""48241"": ""91.89"", ""48351"": ""8.11""}","Jasper|Newton","48241|48351","FALSE","FALSE","America/Chicago"
-"75959","31.51451","-93.8493","Milam","TX","Texas","TRUE","","994","8.2","48403","Sabine","{""48403"": ""100""}","Sabine","48403","FALSE","FALSE","America/Chicago"
-"75960","30.91444","-94.86708","Moscow","TX","Texas","TRUE","","653","5.9","48373","Polk","{""48373"": ""100""}","Polk","48373","FALSE","FALSE","America/Chicago"
-"75961","31.56113","-94.5","Nacogdoches","TX","Texas","TRUE","","16004","22.3","48347","Nacogdoches","{""48347"": ""100""}","Nacogdoches","48347","FALSE","FALSE","America/Chicago"
-"75962","31.61986","-94.64708","Nacogdoches","TX","Texas","TRUE","","3242","4712.4","48347","Nacogdoches","{""48347"": ""100""}","Nacogdoches","48347","FALSE","FALSE","America/Chicago"
-"75964","31.62169","-94.74495","Nacogdoches","TX","Texas","TRUE","","19811","33.0","48347","Nacogdoches","{""48347"": ""100""}","Nacogdoches","48347","FALSE","FALSE","America/Chicago"
-"75965","31.72385","-94.62609","Nacogdoches","TX","Texas","TRUE","","17907","93.6","48347","Nacogdoches","{""48347"": ""100""}","Nacogdoches","48347","FALSE","FALSE","America/Chicago"
-"75966","30.8352","-93.72843","Newton","TX","Texas","TRUE","","4920","7.0","48351","Newton","{""48351"": ""100""}","Newton","48351","FALSE","FALSE","America/Chicago"
-"75968","31.25261","-93.95041","Pineland","TX","Texas","TRUE","","1635","8.6","48403","Sabine","{""48403"": ""99.94"", ""48405"": ""0.06""}","Sabine|San Augustine","48403|48405","FALSE","FALSE","America/Chicago"
-"75969","31.44688","-94.89891","Pollok","TX","Texas","TRUE","","3854","17.3","48005","Angelina","{""48005"": ""94.75"", ""48073"": ""5.25""}","Angelina|Cherokee","48005|48073","FALSE","FALSE","America/Chicago"
-"75972","31.49498","-94.12708","San Augustine","TX","Texas","TRUE","","6169","6.6","48405","San Augustine","{""48405"": ""95.12"", ""48403"": ""4.03"", ""48419"": ""0.85""}","San Augustine|Sabine|Shelby","48405|48403|48419","FALSE","FALSE","America/Chicago"
-"75973","31.71654","-93.93295","Shelbyville","TX","Texas","TRUE","","2828","6.1","48419","Shelby","{""48419"": ""100""}","Shelby","48419","FALSE","FALSE","America/Chicago"
-"75974","31.95671","-94.2387","Tenaha","TX","Texas","TRUE","","3410","12.6","48419","Shelby","{""48419"": ""82.69"", ""48365"": ""17.31""}","Shelby|Panola","48419|48365","FALSE","FALSE","America/Chicago"
-"75975","31.89738","-94.41302","Timpson","TX","Texas","TRUE","","4031","10.8","48419","Shelby","{""48419"": ""95.78"", ""48401"": ""2.6"", ""48365"": ""1.62""}","Shelby|Rusk|Panola","48419|48401|48365","FALSE","FALSE","America/Chicago"
-"75976","31.5206","-94.92745","Wells","TX","Texas","TRUE","","778","13.2","48073","Cherokee","{""48073"": ""100""}","Cherokee","48073","FALSE","FALSE","America/Chicago"
-"75977","31.06121","-93.78207","Wiergate","TX","Texas","TRUE","","291","0.6","48351","Newton","{""48351"": ""100""}","Newton","48351","FALSE","FALSE","America/Chicago"
-"75978","31.50905","-94.5272","Woden","TX","Texas","TRUE","","134","93.6","48347","Nacogdoches","{""48347"": ""100""}","Nacogdoches","48347","FALSE","FALSE","America/Chicago"
-"75979","30.77631","-94.40151","Woodville","TX","Texas","TRUE","","12228","16.2","48457","Tyler","{""48457"": ""100""}","Tyler","48457","FALSE","FALSE","America/Chicago"
-"75980","31.12666","-94.35255","Zavalla","TX","Texas","TRUE","","2254","5.4","48005","Angelina","{""48005"": ""97.53"", ""48241"": ""2.47""}","Angelina|Jasper","48005|48241","FALSE","FALSE","America/Chicago"
-"76001","32.6304","-97.15275","Arlington","TX","Texas","TRUE","","33748","1262.4","48439","Tarrant","{""48439"": ""100""}","Tarrant","48439","FALSE","FALSE","America/Chicago"
-"76002","32.62262","-97.09224","Arlington","TX","Texas","TRUE","","36460","1949.8","48439","Tarrant","{""48439"": ""100""}","Tarrant","48439","FALSE","FALSE","America/Chicago"
-"76006","32.78493","-97.10018","Arlington","TX","Texas","TRUE","","24684","1262.1","48439","Tarrant","{""48439"": ""100""}","Tarrant","48439","FALSE","FALSE","America/Chicago"
-"76008","32.69291","-97.62376","Aledo","TX","Texas","TRUE","","19338","100.7","48367","Parker","{""48367"": ""86.15"", ""48439"": ""13.85""}","Parker|Tarrant","48367|48439","FALSE","FALSE","America/Chicago"
-"76009","32.4158","-97.20169","Alvarado","TX","Texas","TRUE","","20417","80.2","48251","Johnson","{""48251"": ""100""}","Johnson","48251","FALSE","FALSE","America/Chicago"
-"76010","32.72283","-97.08035","Arlington","TX","Texas","TRUE","","60097","2604.0","48439","Tarrant","{""48439"": ""100""}","Tarrant","48439","FALSE","FALSE","America/Chicago"
-"76011","32.75425","-97.08253","Arlington","TX","Texas","TRUE","","22622","1088.4","48439","Tarrant","{""48439"": ""100""}","Tarrant","48439","FALSE","FALSE","America/Chicago"
-"76012","32.75461","-97.13902","Arlington","TX","Texas","TRUE","","25719","1215.4","48439","Tarrant","{""48439"": ""100""}","Tarrant","48439","FALSE","FALSE","America/Chicago"
-"76013","32.72033","-97.15647","Arlington","TX","Texas","TRUE","","34203","1473.2","48439","Tarrant","{""48439"": ""100""}","Tarrant","48439","FALSE","FALSE","America/Chicago"
-"76014","32.69202","-97.08794","Arlington","TX","Texas","TRUE","","35096","2353.4","48439","Tarrant","{""48439"": ""100""}","Tarrant","48439","FALSE","FALSE","America/Chicago"
-"76015","32.69221","-97.13341","Arlington","TX","Texas","TRUE","","16961","1528.7","48439","Tarrant","{""48439"": ""100""}","Tarrant","48439","FALSE","FALSE","America/Chicago"
-"76016","32.68906","-97.18871","Arlington","TX","Texas","TRUE","","32026","1395.3","48439","Tarrant","{""48439"": ""100""}","Tarrant","48439","FALSE","FALSE","America/Chicago"
-"76017","32.66204","-97.16261","Arlington","TX","Texas","TRUE","","47499","1763.9","48439","Tarrant","{""48439"": ""100""}","Tarrant","48439","FALSE","FALSE","America/Chicago"
-"76018","32.66077","-97.09","Arlington","TX","Texas","TRUE","","31200","1572.7","48439","Tarrant","{""48439"": ""100""}","Tarrant","48439","FALSE","FALSE","America/Chicago"
-"76020","32.90006","-97.56542","Azle","TX","Texas","TRUE","","29131","170.4","48439","Tarrant","{""48439"": ""56.76"", ""48367"": ""40.75"", ""48497"": ""2.49""}","Tarrant|Parker|Wise","48439|48367|48497","FALSE","FALSE","America/Chicago"
-"76021","32.85231","-97.13119","Bedford","TX","Texas","TRUE","","35794","1906.8","48439","Tarrant","{""48439"": ""100""}","Tarrant","48439","FALSE","FALSE","America/Chicago"
-"76022","32.83064","-97.14523","Bedford","TX","Texas","TRUE","","13495","1951.4","48439","Tarrant","{""48439"": ""100""}","Tarrant","48439","FALSE","FALSE","America/Chicago"
-"76023","33.04851","-97.60577","Boyd","TX","Texas","TRUE","","6909","47.5","48497","Wise","{""48497"": ""96.6"", ""48367"": ""3.4""}","Wise|Parker","48497|48367","FALSE","FALSE","America/Chicago"
-"76028","32.52604","-97.30318","Burleson","TX","Texas","TRUE","","70507","353.0","48251","Johnson","{""48251"": ""70.93"", ""48439"": ""29.07""}","Johnson|Tarrant","48251|48439","FALSE","FALSE","America/Chicago"
-"76031","32.34848","-97.33114","Cleburne","TX","Texas","TRUE","","17668","94.1","48251","Johnson","{""48251"": ""100""}","Johnson","48251","FALSE","FALSE","America/Chicago"
-"76033","32.28511","-97.51137","Cleburne","TX","Texas","TRUE","","26081","61.4","48251","Johnson","{""48251"": ""99.94"", ""48221"": ""0.06""}","Johnson|Hood","48251|48221","FALSE","FALSE","America/Chicago"
-"76034","32.8912","-97.14876","Colleyville","TX","Texas","TRUE","","26418","781.1","48439","Tarrant","{""48439"": ""100""}","Tarrant","48439","FALSE","FALSE","America/Chicago"
-"76035","32.56288","-97.63361","Cresson","TX","Texas","TRUE","","2211","12.7","48367","Parker","{""48367"": ""67.51"", ""48221"": ""24.41"", ""48251"": ""8.08""}","Parker|Hood|Johnson","48367|48221|48251","FALSE","FALSE","America/Chicago"
-"76036","32.57702","-97.41284","Crowley","TX","Texas","TRUE","","27056","227.1","48439","Tarrant","{""48439"": ""88.05"", ""48251"": ""11.95""}","Tarrant|Johnson","48439|48251","FALSE","FALSE","America/Chicago"
-"76039","32.85936","-97.08383","Euless","TX","Texas","TRUE","","36087","2140.3","48439","Tarrant","{""48439"": ""100""}","Tarrant","48439","FALSE","FALSE","America/Chicago"
-"76040","32.8147","-97.0968","Euless","TX","Texas","TRUE","","31519","1069.7","48439","Tarrant","{""48439"": ""100""}","Tarrant","48439","FALSE","FALSE","America/Chicago"
-"76041","32.24005","-96.84634","Forreston","TX","Texas","TRUE","","395","12.9","48139","Ellis","{""48139"": ""100""}","Ellis","48139","FALSE","FALSE","America/Chicago"
-"76043","32.20528","-97.79709","Glen Rose","TX","Texas","TRUE","","7440","20.9","48425","Somervell","{""48425"": ""99.87"", ""48035"": ""0.13""}","Somervell|Bosque","48425|48035","FALSE","FALSE","America/Chicago"
-"76044","32.4276","-97.54354","Godley","TX","Texas","TRUE","","4401","16.8","48251","Johnson","{""48251"": ""100""}","Johnson","48251","FALSE","FALSE","America/Chicago"
-"76048","32.42318","-97.80877","Granbury","TX","Texas","TRUE","","24822","88.3","48221","Hood","{""48221"": ""99.7"", ""48425"": ""0.3""}","Hood|Somervell","48221|48425","FALSE","FALSE","America/Chicago"
-"76049","32.46394","-97.70805","Granbury","TX","Texas","TRUE","","29698","113.5","48221","Hood","{""48221"": ""97.09"", ""48367"": ""1.93"", ""48251"": ""0.97""}","Hood|Parker|Johnson","48221|48367|48251","FALSE","FALSE","America/Chicago"
-"76050","32.27537","-97.16601","Grandview","TX","Texas","TRUE","","6212","19.6","48251","Johnson","{""48251"": ""90.86"", ""48217"": ""5.4"", ""48139"": ""3.74""}","Johnson|Hill|Ellis","48251|48217|48139","FALSE","FALSE","America/Chicago"
-"76051","32.92499","-97.07177","Grapevine","TX","Texas","TRUE","","53291","558.5","48439","Tarrant","{""48439"": ""100"", ""48113"": ""0""}","Tarrant|Dallas","48439|48113","FALSE","FALSE","America/Chicago"
-"76052","32.98624","-97.37655","Haslet","TX","Texas","TRUE","","22290","190.0","48439","Tarrant","{""48439"": ""92.63"", ""48121"": ""3.73"", ""48497"": ""3.64""}","Tarrant|Denton|Wise","48439|48121|48497","FALSE","FALSE","America/Chicago"
-"76053","32.8171","-97.17953","Hurst","TX","Texas","TRUE","","30765","1484.4","48439","Tarrant","{""48439"": ""100""}","Tarrant","48439","FALSE","FALSE","America/Chicago"
-"76054","32.85918","-97.17781","Hurst","TX","Texas","TRUE","","12280","1247.7","48439","Tarrant","{""48439"": ""100""}","Tarrant","48439","FALSE","FALSE","America/Chicago"
-"76055","32.16217","-97.15511","Itasca","TX","Texas","TRUE","","2811","12.2","48217","Hill","{""48217"": ""100""}","Hill","48217","FALSE","FALSE","America/Chicago"
-"76058","32.46693","-97.42394","Joshua","TX","Texas","TRUE","","19904","141.1","48251","Johnson","{""48251"": ""100""}","Johnson","48251","FALSE","FALSE","America/Chicago"
-"76059","32.39252","-97.32687","Keene","TX","Texas","TRUE","","5601","787.5","48251","Johnson","{""48251"": ""100""}","Johnson","48251","FALSE","FALSE","America/Chicago"
-"76060","32.64076","-97.21585","Kennedale","TX","Texas","TRUE","","8468","441.9","48439","Tarrant","{""48439"": ""100""}","Tarrant","48439","FALSE","FALSE","America/Chicago"
-"76061","32.50396","-97.18842","Lillian","TX","Texas","TRUE","","37","9.5","48251","Johnson","{""48251"": ""100""}","Johnson","48251","FALSE","FALSE","America/Chicago"
-"76063","32.56979","-97.14275","Mansfield","TX","Texas","TRUE","","73216","545.7","48439","Tarrant","{""48439"": ""95.24"", ""48251"": ""4.76""}","Tarrant|Johnson","48439|48251","FALSE","FALSE","America/Chicago"
-"76064","32.30136","-97.03549","Maypearl","TX","Texas","TRUE","","1818","23.5","48139","Ellis","{""48139"": ""100""}","Ellis","48139","FALSE","FALSE","America/Chicago"
-"76065","32.4705","-96.989","Midlothian","TX","Texas","TRUE","","37090","145.6","48139","Ellis","{""48139"": ""100""}","Ellis","48139","FALSE","FALSE","America/Chicago"
-"76066","32.70727","-97.99502","Millsap","TX","Texas","TRUE","","2621","11.7","48367","Parker","{""48367"": ""95.16"", ""48363"": ""4.84""}","Parker|Palo Pinto","48367|48363","FALSE","FALSE","America/Chicago"
-"76067","32.80005","-98.12756","Mineral Wells","TX","Texas","TRUE","","20309","45.0","48363","Palo Pinto","{""48363"": ""89.61"", ""48367"": ""10.39""}","Palo Pinto|Parker","48363|48367","FALSE","FALSE","America/Chicago"
-"76070","32.26241","-97.65424","Nemo","TX","Texas","TRUE","","895","9.6","48425","Somervell","{""48425"": ""96.81"", ""48251"": ""3.19""}","Somervell|Johnson","48425|48251","FALSE","FALSE","America/Chicago"
-"76071","33.00546","-97.47935","Newark","TX","Texas","TRUE","","4589","234.8","48497","Wise","{""48497"": ""89.01"", ""48439"": ""10.99""}","Wise|Tarrant","48497|48439","FALSE","FALSE","America/Chicago"
-"76073","33.10349","-97.72734","Paradise","TX","Texas","TRUE","","5656","25.9","48497","Wise","{""48497"": ""100""}","Wise","48497","FALSE","FALSE","America/Chicago"
-"76077","32.28213","-97.70548","Rainbow","TX","Texas","TRUE","","355","18.8","48425","Somervell","{""48425"": ""100""}","Somervell","48425","FALSE","FALSE","America/Chicago"
-"76078","33.08919","-97.46659","Rhome","TX","Texas","TRUE","","10247","58.9","48497","Wise","{""48497"": ""91.33"", ""48121"": ""8.67""}","Wise|Denton","48497|48121","FALSE","FALSE","America/Chicago"
-"76082","32.97051","-97.71844","Springtown","TX","Texas","TRUE","","20194","77.6","48367","Parker","{""48367"": ""87.31"", ""48497"": ""12.69""}","Parker|Wise","48367|48497","FALSE","FALSE","America/Chicago"
-"76084","32.43218","-97.08946","Venus","TX","Texas","TRUE","","9109","69.2","48251","Johnson","{""48251"": ""83.13"", ""48139"": ""16.87""}","Johnson|Ellis","48251|48139","FALSE","FALSE","America/Chicago"
-"76085","32.85029","-97.70077","Weatherford","TX","Texas","TRUE","","11014","66.6","48367","Parker","{""48367"": ""100""}","Parker","48367","FALSE","FALSE","America/Chicago"
-"76086","32.75479","-97.78995","Weatherford","TX","Texas","TRUE","","23699","622.6","48367","Parker","{""48367"": ""100""}","Parker","48367","FALSE","FALSE","America/Chicago"
-"76087","32.67075","-97.78313","Weatherford","TX","Texas","TRUE","","27760","57.5","48367","Parker","{""48367"": ""98.67"", ""48221"": ""1.33""}","Parker|Hood","48367|48221","FALSE","FALSE","America/Chicago"
-"76088","32.84576","-97.90143","Weatherford","TX","Texas","TRUE","","11907","29.0","48367","Parker","{""48367"": ""100""}","Parker","48367","FALSE","FALSE","America/Chicago"
-"76092","32.95998","-97.1486","Southlake","TX","Texas","TRUE","","31424","538.1","48439","Tarrant","{""48439"": ""97.09"", ""48121"": ""2.91""}","Tarrant|Denton","48439|48121","FALSE","FALSE","America/Chicago"
-"76093","32.21723","-97.3949","Rio Vista","TX","Texas","TRUE","","1792","18.7","48251","Johnson","{""48251"": ""93.41"", ""48217"": ""6.59""}","Johnson|Hill","48251|48217","FALSE","FALSE","America/Chicago"
-"76102","32.75923","-97.32978","Fort Worth","TX","Texas","TRUE","","9282","830.6","48439","Tarrant","{""48439"": ""100""}","Tarrant","48439","FALSE","FALSE","America/Chicago"
-"76103","32.75205","-97.26547","Fort Worth","TX","Texas","TRUE","","15486","1096.3","48439","Tarrant","{""48439"": ""100""}","Tarrant","48439","FALSE","FALSE","America/Chicago"
-"76104","32.7287","-97.31777","Fort Worth","TX","Texas","TRUE","","18344","1208.4","48439","Tarrant","{""48439"": ""100""}","Tarrant","48439","FALSE","FALSE","America/Chicago"
-"76105","32.72405","-97.26937","Fort Worth","TX","Texas","TRUE","","22179","1537.1","48439","Tarrant","{""48439"": ""100""}","Tarrant","48439","FALSE","FALSE","America/Chicago"
-"76106","32.81451","-97.35244","Fort Worth","TX","Texas","TRUE","","39900","1059.0","48439","Tarrant","{""48439"": ""100""}","Tarrant","48439","FALSE","FALSE","America/Chicago"
-"76107","32.74171","-97.38196","Fort Worth","TX","Texas","TRUE","","30168","1083.8","48439","Tarrant","{""48439"": ""100""}","Tarrant","48439","FALSE","FALSE","America/Chicago"
-"76108","32.77595","-97.52195","Fort Worth","TX","Texas","TRUE","","43169","357.0","48439","Tarrant","{""48439"": ""92.56"", ""48367"": ""7.44""}","Tarrant|Parker","48439|48367","FALSE","FALSE","America/Chicago"
-"76109","32.701","-97.38393","Fort Worth","TX","Texas","TRUE","","23220","1099.6","48439","Tarrant","{""48439"": ""100""}","Tarrant","48439","FALSE","FALSE","America/Chicago"
-"76110","32.70699","-97.33891","Fort Worth","TX","Texas","TRUE","","31926","2149.0","48439","Tarrant","{""48439"": ""100""}","Tarrant","48439","FALSE","FALSE","America/Chicago"
-"76111","32.77808","-97.29988","Fort Worth","TX","Texas","TRUE","","22531","1054.2","48439","Tarrant","{""48439"": ""100""}","Tarrant","48439","FALSE","FALSE","America/Chicago"
-"76112","32.74812","-97.21845","Fort Worth","TX","Texas","TRUE","","42572","1450.3","48439","Tarrant","{""48439"": ""100""}","Tarrant","48439","FALSE","FALSE","America/Chicago"
-"76114","32.77444","-97.40272","Fort Worth","TX","Texas","TRUE","","26563","1123.1","48439","Tarrant","{""48439"": ""100""}","Tarrant","48439","FALSE","FALSE","America/Chicago"
-"76115","32.67879","-97.33076","Fort Worth","TX","Texas","TRUE","","21319","1766.5","48439","Tarrant","{""48439"": ""100""}","Tarrant","48439","FALSE","FALSE","America/Chicago"
-"76116","32.72173","-97.44636","Fort Worth","TX","Texas","TRUE","","50506","1603.6","48439","Tarrant","{""48439"": ""100""}","Tarrant","48439","FALSE","FALSE","America/Chicago"
-"76117","32.80369","-97.26756","Haltom City","TX","Texas","TRUE","","31068","1111.8","48439","Tarrant","{""48439"": ""100""}","Tarrant","48439","FALSE","FALSE","America/Chicago"
-"76118","32.79966","-97.20773","Fort Worth","TX","Texas","TRUE","","16378","833.7","48439","Tarrant","{""48439"": ""100""}","Tarrant","48439","FALSE","FALSE","America/Chicago"
-"76119","32.69064","-97.26215","Fort Worth","TX","Texas","TRUE","","52070","1239.0","48439","Tarrant","{""48439"": ""100""}","Tarrant","48439","FALSE","FALSE","America/Chicago"
-"76120","32.77223","-97.1782","Fort Worth","TX","Texas","TRUE","","18125","716.2","48439","Tarrant","{""48439"": ""100""}","Tarrant","48439","FALSE","FALSE","America/Chicago"
-"76123","32.61898","-97.39318","Fort Worth","TX","Texas","TRUE","","36245","1726.7","48439","Tarrant","{""48439"": ""100""}","Tarrant","48439","FALSE","FALSE","America/Chicago"
-"76126","32.63382","-97.51239","Fort Worth","TX","Texas","TRUE","","23450","142.4","48439","Tarrant","{""48439"": ""96.08"", ""48367"": ""3.92""}","Tarrant|Parker","48439|48367","FALSE","FALSE","America/Chicago"
-"76127","32.77701","-97.43019","Naval Air Station Jrb","TX","Texas","TRUE","","1946","345.3","48439","Tarrant","{""48439"": ""100""}","Tarrant","48439","FALSE","FALSE","America/Chicago"
-"76129","32.7087","-97.36342","Fort Worth","TX","Texas","TRUE","","2519","8840.9","48439","Tarrant","{""48439"": ""100""}","Tarrant","48439","FALSE","FALSE","America/Chicago"
-"76131","32.88334","-97.34691","Fort Worth","TX","Texas","TRUE","","43542","1113.6","48439","Tarrant","{""48439"": ""100""}","Tarrant","48439","FALSE","FALSE","America/Chicago"
-"76132","32.66759","-97.41797","Fort Worth","TX","Texas","TRUE","","27243","1435.5","48439","Tarrant","{""48439"": ""100""}","Tarrant","48439","FALSE","FALSE","America/Chicago"
-"76133","32.65393","-97.37723","Fort Worth","TX","Texas","TRUE","","51505","2152.8","48439","Tarrant","{""48439"": ""100""}","Tarrant","48439","FALSE","FALSE","America/Chicago"
-"76134","32.64275","-97.33353","Fort Worth","TX","Texas","TRUE","","26151","1266.3","48439","Tarrant","{""48439"": ""100""}","Tarrant","48439","FALSE","FALSE","America/Chicago"
-"76135","32.83435","-97.46485","Fort Worth","TX","Texas","TRUE","","21973","326.6","48439","Tarrant","{""48439"": ""100""}","Tarrant","48439","FALSE","FALSE","America/Chicago"
-"76137","32.8588","-97.29129","Fort Worth","TX","Texas","TRUE","","60385","1722.7","48439","Tarrant","{""48439"": ""100""}","Tarrant","48439","FALSE","FALSE","America/Chicago"
-"76140","32.6206","-97.2701","Fort Worth","TX","Texas","TRUE","","30723","425.7","48439","Tarrant","{""48439"": ""100""}","Tarrant","48439","FALSE","FALSE","America/Chicago"
-"76148","32.86811","-97.25197","Fort Worth","TX","Texas","TRUE","","23993","1986.7","48439","Tarrant","{""48439"": ""100""}","Tarrant","48439","FALSE","FALSE","America/Chicago"
-"76155","32.82398","-97.04866","Fort Worth","TX","Texas","TRUE","","5813","647.8","48439","Tarrant","{""48439"": ""100""}","Tarrant","48439","FALSE","FALSE","America/Chicago"
-"76164","32.78114","-97.35461","Fort Worth","TX","Texas","TRUE","","15488","1519.1","48439","Tarrant","{""48439"": ""100""}","Tarrant","48439","FALSE","FALSE","America/Chicago"
-"76177","32.97522","-97.3112","Fort Worth","TX","Texas","TRUE","","11695","312.3","48439","Tarrant","{""48439"": ""84.85"", ""48121"": ""15.15""}","Tarrant|Denton","48439|48121","FALSE","FALSE","America/Chicago"
-"76179","32.9144","-97.43777","Fort Worth","TX","Texas","TRUE","","65496","468.7","48439","Tarrant","{""48439"": ""100""}","Tarrant","48439","FALSE","FALSE","America/Chicago"
-"76180","32.83996","-97.22499","North Richland Hills","TX","Texas","TRUE","","37524","1537.4","48439","Tarrant","{""48439"": ""100""}","Tarrant","48439","FALSE","FALSE","America/Chicago"
-"76182","32.88278","-97.20984","North Richland Hills","TX","Texas","TRUE","","31046","1364.6","48439","Tarrant","{""48439"": ""100""}","Tarrant","48439","FALSE","FALSE","America/Chicago"
-"76201","33.22112","-97.14723","Denton","TX","Texas","TRUE","","28601","1979.5","48121","Denton","{""48121"": ""100""}","Denton","48121","FALSE","FALSE","America/Chicago"
-"76205","33.19028","-97.12812","Denton","TX","Texas","TRUE","","21326","971.9","48121","Denton","{""48121"": ""100""}","Denton","48121","FALSE","FALSE","America/Chicago"
-"76207","33.22856","-97.18133","Denton","TX","Texas","TRUE","","14588","153.1","48121","Denton","{""48121"": ""100""}","Denton","48121","FALSE","FALSE","America/Chicago"
-"76208","33.20884","-97.05737","Denton","TX","Texas","TRUE","","24621","349.1","48121","Denton","{""48121"": ""100""}","Denton","48121","FALSE","FALSE","America/Chicago"
-"76209","33.2316","-97.1099","Denton","TX","Texas","TRUE","","25689","1513.8","48121","Denton","{""48121"": ""100""}","Denton","48121","FALSE","FALSE","America/Chicago"
-"76210","33.15036","-97.096","Denton","TX","Texas","TRUE","","45474","1077.3","48121","Denton","{""48121"": ""100""}","Denton","48121","FALSE","FALSE","America/Chicago"
-"76225","33.36444","-97.67314","Alvord","TX","Texas","TRUE","","2857","11.1","48497","Wise","{""48497"": ""100""}","Wise","48497","FALSE","FALSE","America/Chicago"
-"76226","33.11035","-97.16946","Argyle","TX","Texas","TRUE","","26761","216.1","48121","Denton","{""48121"": ""100""}","Denton","48121","FALSE","FALSE","America/Chicago"
-"76227","33.27393","-96.99051","Aubrey","TX","Texas","TRUE","","34036","165.5","48121","Denton","{""48121"": ""100""}","Denton","48121","FALSE","FALSE","America/Chicago"
-"76228","33.62099","-98.06028","Bellevue","TX","Texas","TRUE","","994","2.1","48077","Clay","{""48077"": ""87.04"", ""48337"": ""12.96""}","Clay|Montague","48077|48337","FALSE","FALSE","America/Chicago"
-"76230","33.51993","-97.95469","Bowie","TX","Texas","TRUE","","9896","10.1","48337","Montague","{""48337"": ""95.92"", ""48237"": ""2.62"", ""48077"": ""1.46""}","Montague|Jack|Clay","48337|48237|48077","FALSE","FALSE","America/Chicago"
-"76233","33.53625","-96.90829","Collinsville","TX","Texas","TRUE","","3294","20.2","48181","Grayson","{""48181"": ""84.14"", ""48097"": ""15.86""}","Grayson|Cooke","48181|48097","FALSE","FALSE","America/Chicago"
-"76234","33.272","-97.51417","Decatur","TX","Texas","TRUE","","16630","20.7","48497","Wise","{""48497"": ""97.79"", ""48121"": ""1.95"", ""48097"": ""0.26""}","Wise|Denton|Cooke","48497|48121|48097","FALSE","FALSE","America/Chicago"
-"76238","33.48818","-97.35069","Era","TX","Texas","TRUE","","324","4.7","48097","Cooke","{""48097"": ""100""}","Cooke","48097","FALSE","FALSE","America/Chicago"
-"76239","33.51985","-97.54515","Forestburg","TX","Texas","TRUE","","1087","3.7","48337","Montague","{""48337"": ""80.86"", ""48097"": ""19.14""}","Montague|Cooke","48337|48097","FALSE","FALSE","America/Chicago"
-"76240","33.65628","-97.17454","Gainesville","TX","Texas","TRUE","","28010","29.3","48097","Cooke","{""48097"": ""100""}","Cooke","48097","FALSE","FALSE","America/Chicago"
-"76244","32.93098","-97.28435","Keller","TX","Texas","TRUE","","77496","1737.3","48439","Tarrant","{""48439"": ""100""}","Tarrant","48439","FALSE","FALSE","America/Chicago"
-"76245","33.828","-96.84915","Gordonville","TX","Texas","TRUE","","1569","26.8","48181","Grayson","{""48181"": ""100""}","Grayson","48181","FALSE","FALSE","America/Chicago"
-"76247","33.09841","-97.32495","Justin","TX","Texas","TRUE","","13601","73.1","48121","Denton","{""48121"": ""100""}","Denton","48121","FALSE","FALSE","America/Chicago"
-"76248","32.92575","-97.22899","Keller","TX","Texas","TRUE","","39665","1060.7","48439","Tarrant","{""48439"": ""100""}","Tarrant","48439","FALSE","FALSE","America/Chicago"
-"76249","33.28282","-97.30413","Krum","TX","Texas","TRUE","","8317","47.4","48121","Denton","{""48121"": ""99.53"", ""48497"": ""0.47""}","Denton|Wise","48121|48497","FALSE","FALSE","America/Chicago"
-"76250","33.63013","-97.23578","Lindsay","TX","Texas","TRUE","","1157","50.7","48097","Cooke","{""48097"": ""100""}","Cooke","48097","FALSE","FALSE","America/Chicago"
-"76251","33.62076","-97.68976","Montague","TX","Texas","TRUE","","779","5.7","48337","Montague","{""48337"": ""100""}","Montague","48337","FALSE","FALSE","America/Chicago"
-"76252","33.68568","-97.38545","Muenster","TX","Texas","TRUE","","2624","5.5","48097","Cooke","{""48097"": ""100""}","Cooke","48097","FALSE","FALSE","America/Chicago"
-"76253","33.61587","-97.31078","Myra","TX","Texas","TRUE","","291","72.6","48097","Cooke","{""48097"": ""100""}","Cooke","48097","FALSE","FALSE","America/Chicago"
-"76255","33.82","-97.72915","Nocona","TX","Texas","TRUE","","5311","7.8","48337","Montague","{""48337"": ""100""}","Montague","48337","FALSE","FALSE","America/Chicago"
-"76258","33.37191","-96.91964","Pilot Point","TX","Texas","TRUE","","7010","30.3","48121","Denton","{""48121"": ""95.03"", ""48181"": ""4.97""}","Denton|Grayson","48121|48181","FALSE","FALSE","America/Chicago"
-"76259","33.20016","-97.30705","Ponder","TX","Texas","TRUE","","6045","41.2","48121","Denton","{""48121"": ""99.24"", ""48497"": ""0.76""}","Denton|Wise","48121|48497","FALSE","FALSE","America/Chicago"
-"76261","33.80066","-97.96327","Ringgold","TX","Texas","TRUE","","285","1.6","48337","Montague","{""48337"": ""90.56"", ""48077"": ""9.44""}","Montague|Clay","48337|48077","FALSE","FALSE","America/Chicago"
-"76262","33.00948","-97.22581","Roanoke","TX","Texas","TRUE","","39425","336.0","48121","Denton","{""48121"": ""60.77"", ""48439"": ""39.23""}","Denton|Tarrant","48121|48439","FALSE","FALSE","America/Chicago"
-"76263","33.46748","-97.45338","Rosston","TX","Texas","TRUE","","46","2.1","48097","Cooke","{""48097"": ""100""}","Cooke","48097","FALSE","FALSE","America/Chicago"
-"76264","33.73974","-96.83528","Sadler","TX","Texas","TRUE","","1513","16.4","48181","Grayson","{""48181"": ""100""}","Grayson","48181","FALSE","FALSE","America/Chicago"
-"76265","33.74828","-97.54502","Saint Jo","TX","Texas","TRUE","","1472","2.9","48337","Montague","{""48337"": ""94.24"", ""48097"": ""5.76""}","Montague|Cooke","48337|48097","FALSE","FALSE","America/Chicago"
-"76266","33.36725","-97.21414","Sanger","TX","Texas","TRUE","","16112","51.7","48121","Denton","{""48121"": ""99.93"", ""48097"": ""0.07""}","Denton|Cooke","48121|48097","FALSE","FALSE","America/Chicago"
-"76268","33.62759","-96.76741","Southmayd","TX","Texas","TRUE","","232","155.2","48181","Grayson","{""48181"": ""100""}","Grayson","48181","FALSE","FALSE","America/Chicago"
-"76270","33.45613","-97.75202","Sunset","TX","Texas","TRUE","","1958","7.5","48337","Montague","{""48337"": ""67.08"", ""48497"": ""32.92""}","Montague|Wise","48337|48497","FALSE","FALSE","America/Chicago"
-"76271","33.46699","-96.90774","Tioga","TX","Texas","TRUE","","1792","17.5","48181","Grayson","{""48181"": ""91.12"", ""48097"": ""8.88""}","Grayson|Cooke","48181|48097","FALSE","FALSE","America/Chicago"
-"76272","33.46625","-97.12889","Valley View","TX","Texas","TRUE","","4116","16.1","48097","Cooke","{""48097"": ""98.88"", ""48121"": ""1.12""}","Cooke|Denton","48097|48121","FALSE","FALSE","America/Chicago"
-"76273","33.74557","-96.93355","Whitesboro","TX","Texas","TRUE","","9806","18.6","48181","Grayson","{""48181"": ""76.79"", ""48097"": ""23.21""}","Grayson|Cooke","48181|48097","FALSE","FALSE","America/Chicago"
-"76301","33.90559","-98.47978","Wichita Falls","TX","Texas","TRUE","","14757","490.6","48485","Wichita","{""48485"": ""100""}","Wichita","48485","FALSE","FALSE","America/Chicago"
-"76302","33.86456","-98.49109","Wichita Falls","TX","Texas","TRUE","","13482","623.8","48485","Wichita","{""48485"": ""100""}","Wichita","48485","FALSE","FALSE","America/Chicago"
-"76305","33.99942","-98.3939","Wichita Falls","TX","Texas","TRUE","","4261","7.5","48485","Wichita","{""48485"": ""58.45"", ""48077"": ""41.55""}","Wichita|Clay","48485|48077","FALSE","FALSE","America/Chicago"
-"76306","33.94504","-98.52395","Wichita Falls","TX","Texas","TRUE","","14980","440.6","48485","Wichita","{""48485"": ""100""}","Wichita","48485","FALSE","FALSE","America/Chicago"
-"76308","33.85238","-98.54057","Wichita Falls","TX","Texas","TRUE","","19493","842.9","48485","Wichita","{""48485"": ""94.31"", ""48009"": ""5.69""}","Wichita|Archer","48485|48009","FALSE","FALSE","America/Chicago"
-"76309","33.89524","-98.54432","Wichita Falls","TX","Texas","TRUE","","12991","880.1","48485","Wichita","{""48485"": ""100""}","Wichita","48485","FALSE","FALSE","America/Chicago"
-"76310","33.79856","-98.5109","Wichita Falls","TX","Texas","TRUE","","19187","41.3","48485","Wichita","{""48485"": ""85.56"", ""48009"": ""8.55"", ""48077"": ""5.89""}","Wichita|Archer|Clay","48485|48009|48077","FALSE","FALSE","America/Chicago"
-"76311","33.96889","-98.50882","Sheppard Afb","TX","Texas","TRUE","","8987","2216.5","48485","Wichita","{""48485"": ""100""}","Wichita","48485","FALSE","FALSE","America/Chicago"
-"76351","33.56892","-98.67455","Archer City","TX","Texas","TRUE","","2068","4.2","48009","Archer","{""48009"": ""100""}","Archer","48009","FALSE","FALSE","America/Chicago"
-"76354","34.09738","-98.62144","Burkburnett","TX","Texas","TRUE","","12114","59.6","48485","Wichita","{""48485"": ""100""}","Wichita","48485","FALSE","FALSE","America/Chicago"
-"76357","34.08174","-98.18468","Byers","TX","Texas","TRUE","","569","3.3","48077","Clay","{""48077"": ""100""}","Clay","48077","FALSE","FALSE","America/Chicago"
-"76360","33.96894","-98.96631","Electra","TX","Texas","TRUE","","3545","4.8","48485","Wichita","{""48485"": ""95.06"", ""48487"": ""3.31"", ""48009"": ""1.63""}","Wichita|Wilbarger|Archer","48485|48487|48009","FALSE","FALSE","America/Chicago"
-"76363","33.48306","-99.54199","Goree","TX","Texas","TRUE","","534","3.4","48275","Knox","{""48275"": ""100""}","Knox","48275","FALSE","FALSE","America/Chicago"
-"76364","34.11368","-99.01676","Harrold","TX","Texas","TRUE","","174","1.0","48487","Wilbarger","{""48487"": ""100""}","Wilbarger","48487","FALSE","FALSE","America/Chicago"
-"76365","33.75814","-98.20162","Henrietta","TX","Texas","TRUE","","4688","3.4","48077","Clay","{""48077"": ""99.42"", ""48237"": ""0.58""}","Clay|Jack","48077|48237","FALSE","FALSE","America/Chicago"
-"76366","33.727","-98.78209","Holliday","TX","Texas","TRUE","","1903","3.1","48009","Archer","{""48009"": ""100""}","Archer","48009","FALSE","FALSE","America/Chicago"
-"76367","33.97433","-98.72275","Iowa Park","TX","Texas","TRUE","","14247","27.7","48485","Wichita","{""48485"": ""100""}","Wichita","48485","FALSE","FALSE","America/Chicago"
-"76370","33.53167","-98.88816","Megargel","TX","Texas","TRUE","","232","0.8","48009","Archer","{""48009"": ""100""}","Archer","48009","FALSE","FALSE","America/Chicago"
-"76371","33.48661","-99.64034","Munday","TX","Texas","TRUE","","1367","5.0","48275","Knox","{""48275"": ""100""}","Knox","48275","FALSE","FALSE","America/Chicago"
-"76372","33.25292","-98.91903","Newcastle","TX","Texas","TRUE","","1166","1.7","48503","Young","{""48503"": ""88.5"", ""48447"": ""11.5""}","Young|Throckmorton","48503|48447","FALSE","FALSE","America/Chicago"
-"76373","34.13069","-99.11397","Oklaunion","TX","Texas","TRUE","","153","2.0","48487","Wilbarger","{""48487"": ""100""}","Wilbarger","48487","FALSE","FALSE","America/Chicago"
-"76374","33.35976","-98.73819","Olney","TX","Texas","TRUE","","3858","5.3","48503","Young","{""48503"": ""97.69"", ""48009"": ""2.31""}","Young|Archer","48503|48009","FALSE","FALSE","America/Chicago"
-"76377","34.01483","-98.23963","Petrolia","TX","Texas","TRUE","","555","7.1","48077","Clay","{""48077"": ""100""}","Clay","48077","FALSE","FALSE","America/Chicago"
-"76379","33.67016","-98.47541","Scotland","TX","Texas","TRUE","","590","5.2","48009","Archer","{""48009"": ""100""}","Archer","48009","FALSE","FALSE","America/Chicago"
-"76380","33.61862","-99.24239","Seymour","TX","Texas","TRUE","","3630","1.5","48023","Baylor","{""48023"": ""97.54"", ""48275"": ""2.46""}","Baylor|Knox","48023|48275","FALSE","FALSE","America/Chicago"
-"76384","34.16773","-99.32555","Vernon","TX","Texas","TRUE","","12179","9.9","48487","Wilbarger","{""48487"": ""99.85"", ""48155"": ""0.15""}","Wilbarger|Foard","48487|48155","FALSE","FALSE","America/Chicago"
-"76388","33.32169","-99.63091","Weinert","TX","Texas","TRUE","","235","0.9","48207","Haskell","{""48207"": ""100""}","Haskell","48207","FALSE","FALSE","America/Chicago"
-"76389","33.51578","-98.4582","Windthorst","TX","Texas","TRUE","","1257","2.4","48009","Archer","{""48009"": ""75.32"", ""48077"": ""19.94"", ""48237"": ""4.74""}","Archer|Clay|Jack","48009|48077|48237","FALSE","FALSE","America/Chicago"
-"76401","32.28258","-98.19881","Stephenville","TX","Texas","TRUE","","30003","28.1","48143","Erath","{""48143"": ""100""}","Erath","48143","FALSE","FALSE","America/Chicago"
-"76402","32.21637","-98.21726","Stephenville","TX","Texas","TRUE","","953","4132.1","48143","Erath","{""48143"": ""100""}","Erath","48143","FALSE","FALSE","America/Chicago"
-"76424","32.80509","-98.89862","Breckenridge","TX","Texas","TRUE","","8721","6.5","48429","Stephens","{""48429"": ""99.86"", ""48503"": ""0.14""}","Stephens|Young","48429|48503","FALSE","FALSE","America/Chicago"
-"76426","33.16683","-97.84268","Bridgeport","TX","Texas","TRUE","","12351","36.2","48497","Wise","{""48497"": ""96.94"", ""48237"": ""3.06""}","Wise|Jack","48497|48237","FALSE","FALSE","America/Chicago"
-"76427","33.15546","-98.37755","Bryson","TX","Texas","TRUE","","859","5.9","48237","Jack","{""48237"": ""100""}","Jack","48237","FALSE","FALSE","America/Chicago"
-"76429","32.741","-98.6742","Caddo","TX","Texas","TRUE","","133","0.5","48429","Stephens","{""48429"": ""81.78"", ""48363"": ""18.22""}","Stephens|Palo Pinto","48429|48363","FALSE","FALSE","America/Chicago"
-"76430","32.785","-99.2474","Albany","TX","Texas","TRUE","","2288","2.5","48417","Shackelford","{""48417"": ""99.84"", ""48447"": ""0.16""}","Shackelford|Throckmorton","48417|48447","FALSE","FALSE","America/Chicago"
-"76431","33.31747","-97.85662","Chico","TX","Texas","TRUE","","3630","11.8","48497","Wise","{""48497"": ""98.35"", ""48237"": ""1.65""}","Wise|Jack","48497|48237","FALSE","FALSE","America/Chicago"
-"76432","31.84215","-98.79696","Blanket","TX","Texas","TRUE","","1314","5.3","48049","Brown","{""48049"": ""91.9"", ""48093"": ""8.1""}","Brown|Comanche","48049|48093","FALSE","FALSE","America/Chicago"
-"76433","32.31517","-98.01968","Bluff Dale","TX","Texas","TRUE","","1796","5.8","48143","Erath","{""48143"": ""87.92"", ""48221"": ""8.97"", ""48425"": ""3.11""}","Erath|Hood|Somervell","48143|48221|48425","FALSE","FALSE","America/Chicago"
-"76435","32.25177","-98.85661","Carbon","TX","Texas","TRUE","","512","2.7","48133","Eastland","{""48133"": ""100""}","Eastland","48133","FALSE","FALSE","America/Chicago"
-"76436","31.86715","-98.22143","Carlton","TX","Texas","TRUE","","227","1.9","48193","Hamilton","{""48193"": ""65.57"", ""48093"": ""34.43""}","Hamilton|Comanche","48193|48093","FALSE","FALSE","America/Chicago"
-"76437","32.39591","-99.02367","Cisco","TX","Texas","TRUE","","5818","5.5","48133","Eastland","{""48133"": ""95.33"", ""48429"": ""2.39"", ""48059"": ""2.27""}","Eastland|Stephens|Callahan","48133|48429|48059","FALSE","FALSE","America/Chicago"
-"76442","31.89183","-98.6149","Comanche","TX","Texas","TRUE","","7909","6.8","48093","Comanche","{""48093"": ""98.73"", ""48333"": ""1.27""}","Comanche|Mills","48093|48333","FALSE","FALSE","America/Chicago"
-"76443","32.13341","-99.21059","Cross Plains","TX","Texas","TRUE","","1914","5.2","48059","Callahan","{""48059"": ""93.04"", ""48049"": ""4.9"", ""48083"": ""2.06""}","Callahan|Brown|Coleman","48059|48049|48083","FALSE","FALSE","America/Chicago"
-"76444","32.11472","-98.56573","De Leon","TX","Texas","TRUE","","3339","8.9","48093","Comanche","{""48093"": ""100""}","Comanche","48093","FALSE","FALSE","America/Chicago"
-"76445","32.29949","-98.55077","Desdemona","TX","Texas","TRUE","","292","1.7","48133","Eastland","{""48133"": ""77.4"", ""48093"": ""20.64"", ""48143"": ""1.97""}","Eastland|Comanche|Erath","48133|48093|48143","FALSE","FALSE","America/Chicago"
-"76446","32.0752","-98.34943","Dublin","TX","Texas","TRUE","","7709","7.1","48143","Erath","{""48143"": ""88.37"", ""48093"": ""11.63""}","Erath|Comanche","48143|48093","FALSE","FALSE","America/Chicago"
-"76448","32.40015","-98.80082","Eastland","TX","Texas","TRUE","","5196","15.9","48133","Eastland","{""48133"": ""100""}","Eastland","48133","FALSE","FALSE","America/Chicago"
-"76449","32.91565","-98.32279","Graford","TX","Texas","TRUE","","2430","4.5","48363","Palo Pinto","{""48363"": ""100""}","Palo Pinto","48363","FALSE","FALSE","America/Chicago"
-"76450","33.06259","-98.62573","Graham","TX","Texas","TRUE","","13112","11.0","48503","Young","{""48503"": ""97.9"", ""48363"": ""1.53"", ""48429"": ""0.57""}","Young|Palo Pinto|Stephens","48503|48363|48429","FALSE","FALSE","America/Chicago"
-"76452","31.75506","-98.3541","Energy","TX","Texas","TRUE","","99","4.3","48093","Comanche","{""48093"": ""100""}","Comanche","48093","FALSE","FALSE","America/Chicago"
-"76453","32.5856","-98.34162","Gordon","TX","Texas","TRUE","","1295","3.8","48363","Palo Pinto","{""48363"": ""90.31"", ""48143"": ""9.69""}","Palo Pinto|Erath","48363|48143","FALSE","FALSE","America/Chicago"
-"76454","32.2081","-98.72898","Gorman","TX","Texas","TRUE","","1870","5.3","48133","Eastland","{""48133"": ""91.41"", ""48093"": ""8.59""}","Eastland|Comanche","48133|48093","FALSE","FALSE","America/Chicago"
-"76455","31.80574","-98.38354","Gustine","TX","Texas","TRUE","","1009","4.3","48093","Comanche","{""48093"": ""100""}","Comanche","48093","FALSE","FALSE","America/Chicago"
-"76457","31.95198","-98.02939","Hico","TX","Texas","TRUE","","4013","4.9","48193","Hamilton","{""48193"": ""61.04"", ""48143"": ""33.96"", ""48035"": ""5""}","Hamilton|Erath|Bosque","48193|48143|48035","FALSE","FALSE","America/Chicago"
-"76458","33.21797","-98.18771","Jacksboro","TX","Texas","TRUE","","6111","4.2","48237","Jack","{""48237"": ""100""}","Jack","48237","FALSE","FALSE","America/Chicago"
-"76459","33.27406","-98.38756","Jermyn","TX","Texas","TRUE","","270","4.6","48237","Jack","{""48237"": ""100""}","Jack","48237","FALSE","FALSE","America/Chicago"
-"76460","33.30965","-98.49838","Loving","TX","Texas","TRUE","","233","1.0","48503","Young","{""48503"": ""100""}","Young","48503","FALSE","FALSE","America/Chicago"
-"76462","32.52348","-98.0275","Lipan","TX","Texas","TRUE","","3762","8.7","48221","Hood","{""48221"": ""45.47"", ""48367"": ""26.32"", ""48363"": ""14.65"", ""48143"": ""13.55""}","Hood|Parker|Palo Pinto|Erath","48221|48367|48363|48143","FALSE","FALSE","America/Chicago"
-"76463","32.45664","-98.41487","Mingus","TX","Texas","TRUE","","412","2.1","48363","Palo Pinto","{""48363"": ""56.34"", ""48143"": ""43.66""}","Palo Pinto|Erath","48363|48143","FALSE","FALSE","America/Chicago"
-"76464","32.5559","-99.16497","Moran","TX","Texas","TRUE","","505","1.0","48417","Shackelford","{""48417"": ""87.35"", ""48059"": ""6.32"", ""48429"": ""6.32""}","Shackelford|Callahan|Stephens","48417|48059|48429","FALSE","FALSE","America/Chicago"
-"76466","32.43334","-98.73744","Olden","TX","Texas","TRUE","","149","9.5","48133","Eastland","{""48133"": ""100""}","Eastland","48133","FALSE","FALSE","America/Chicago"
-"76469","32.34528","-99.19387","Putnam","TX","Texas","TRUE","","93","2.5","48059","Callahan","{""48059"": ""100""}","Callahan","48059","FALSE","FALSE","America/Chicago"
-"76470","32.50228","-98.66152","Ranger","TX","Texas","TRUE","","3580","4.8","48133","Eastland","{""48133"": ""94.07"", ""48429"": ""5.93""}","Eastland|Stephens","48133|48429","FALSE","FALSE","America/Chicago"
-"76471","32.11605","-98.98478","Rising Star","TX","Texas","TRUE","","1785","3.9","48133","Eastland","{""48133"": ""85.57"", ""48049"": ""11.86"", ""48093"": ""2.57""}","Eastland|Brown|Comanche","48133|48049|48093","FALSE","FALSE","America/Chicago"
-"76472","32.60119","-98.17057","Santo","TX","Texas","TRUE","","1761","6.7","48363","Palo Pinto","{""48363"": ""100""}","Palo Pinto","48363","FALSE","FALSE","America/Chicago"
-"76474","31.97301","-98.79293","Sidney","TX","Texas","TRUE","","171","1.8","48093","Comanche","{""48093"": ""98.22"", ""48049"": ""1.78""}","Comanche|Brown","48093|48049","FALSE","FALSE","America/Chicago"
-"76475","32.65903","-98.49888","Strawn","TX","Texas","TRUE","","956","1.6","48363","Palo Pinto","{""48363"": ""97.34"", ""48133"": ""2.25"", ""48429"": ""0.41""}","Palo Pinto|Eastland|Stephens","48363|48133|48429","FALSE","FALSE","America/Chicago"
-"76476","32.36651","-97.91946","Tolar","TX","Texas","TRUE","","2628","9.9","48221","Hood","{""48221"": ""100""}","Hood","48221","FALSE","FALSE","America/Chicago"
-"76481","32.9956","-98.74309","South Bend","TX","Texas","TRUE","","189","1.2","48503","Young","{""48503"": ""100"", ""48429"": ""0""}","Young|Stephens","48503|48429","FALSE","FALSE","America/Chicago"
-"76483","33.18878","-99.27224","Throckmorton","TX","Texas","TRUE","","932","0.6","48447","Throckmorton","{""48447"": ""100""}","Throckmorton","48447","FALSE","FALSE","America/Chicago"
-"76484","32.75833","-98.28241","Palo Pinto","TX","Texas","TRUE","","916","3.3","48363","Palo Pinto","{""48363"": ""100""}","Palo Pinto","48363","FALSE","FALSE","America/Chicago"
-"76486","33.02291","-98.0622","Perrin","TX","Texas","TRUE","","1125","4.2","48237","Jack","{""48237"": ""69.09"", ""48367"": ""21.09"", ""48363"": ""9.82""}","Jack|Parker|Palo Pinto","48237|48367|48363","FALSE","FALSE","America/Chicago"
-"76487","32.97949","-97.88221","Poolville","TX","Texas","TRUE","","3058","13.2","48367","Parker","{""48367"": ""74.31"", ""48497"": ""20.26"", ""48237"": ""5.42""}","Parker|Wise|Jack","48367|48497|48237","FALSE","FALSE","America/Chicago"
-"76490","32.94544","-98.01889","Whitt","TX","Texas","TRUE","","90","46.8","48367","Parker","{""48367"": ""100""}","Parker","48367","FALSE","FALSE","America/Chicago"
-"76491","33.03487","-99.05052","Woodson","TX","Texas","TRUE","","347","1.1","48447","Throckmorton","{""48447"": ""100""}","Throckmorton","48447","FALSE","FALSE","America/Chicago"
-"76501","31.07505","-97.25435","Temple","TX","Texas","TRUE","","16710","55.2","48027","Bell","{""48027"": ""100""}","Bell","48027","FALSE","FALSE","America/Chicago"
-"76502","31.09624","-97.41039","Temple","TX","Texas","TRUE","","42103","258.1","48027","Bell","{""48027"": ""100""}","Bell","48027","FALSE","FALSE","America/Chicago"
-"76504","31.13805","-97.3726","Temple","TX","Texas","TRUE","","23756","339.1","48027","Bell","{""48027"": ""100""}","Bell","48027","FALSE","FALSE","America/Chicago"
-"76508","31.07758","-97.36425","Temple","TX","Texas","TRUE","","7","46.9","48027","Bell","{""48027"": ""0""}","Bell","48027","FALSE","FALSE","America/Chicago"
-"76511","30.80163","-97.42498","Bartlett","TX","Texas","TRUE","","2505","12.3","48491","Williamson","{""48491"": ""65.12"", ""48027"": ""30.03"", ""48331"": ""4.85""}","Williamson|Bell|Milam","48491|48027|48331","FALSE","FALSE","America/Chicago"
-"76513","31.05135","-97.49967","Belton","TX","Texas","TRUE","","39411","144.4","48027","Bell","{""48027"": ""100""}","Bell","48027","FALSE","FALSE","America/Chicago"
-"76518","30.84974","-97.15418","Buckholts","TX","Texas","TRUE","","1880","6.2","48331","Milam","{""48331"": ""100""}","Milam","48331","FALSE","FALSE","America/Chicago"
-"76519","30.99427","-97.04726","Burlington","TX","Texas","TRUE","","487","3.7","48027","Bell","{""48027"": ""50.48"", ""48331"": ""40.73"", ""48145"": ""8.79""}","Bell|Milam|Falls","48027|48331|48145","FALSE","FALSE","America/Chicago"
-"76520","30.87611","-96.90748","Cameron","TX","Texas","TRUE","","7722","9.9","48331","Milam","{""48331"": ""100""}","Milam","48331","FALSE","FALSE","America/Chicago"
-"76522","31.21604","-97.97338","Copperas Cove","TX","Texas","TRUE","","36560","122.9","48099","Coryell","{""48099"": ""94.69"", ""48281"": ""5.31""}","Coryell|Lampasas","48099|48281","FALSE","FALSE","America/Chicago"
-"76523","30.78956","-97.29127","Davilla","TX","Texas","TRUE","","0","0.0","48331","Milam","{""48331"": ""100""}","Milam","48331","FALSE","FALSE","America/Chicago"
-"76524","31.26693","-97.20313","Eddy","TX","Texas","TRUE","","3042","17.5","48309","McLennan","{""48309"": ""81.03"", ""48145"": ""18.97""}","McLennan|Falls","48309|48145","FALSE","FALSE","America/Chicago"
-"76525","31.48558","-98.14597","Evant","TX","Texas","TRUE","","1098","2.2","48099","Coryell","{""48099"": ""51.13"", ""48193"": ""42.47"", ""48281"": ""6.4""}","Coryell|Hamilton|Lampasas","48099|48193|48281","FALSE","FALSE","America/Chicago"
-"76527","30.84416","-97.80601","Florence","TX","Texas","TRUE","","2969","8.9","48491","Williamson","{""48491"": ""88.32"", ""48053"": ""6.75"", ""48027"": ""4.93""}","Williamson|Burnet|Bell","48491|48053|48027","FALSE","FALSE","America/Chicago"
-"76528","31.42046","-97.76152","Gatesville","TX","Texas","TRUE","","17284","13.2","48099","Coryell","{""48099"": ""98.34"", ""48027"": ""1.66""}","Coryell|Bell","48099|48027","FALSE","FALSE","America/Chicago"
-"76530","30.71583","-97.42174","Granger","TX","Texas","TRUE","","1874","7.7","48491","Williamson","{""48491"": ""100""}","Williamson","48491","FALSE","FALSE","America/Chicago"
-"76531","31.6858","-98.18812","Hamilton","TX","Texas","TRUE","","4728","4.8","48193","Hamilton","{""48193"": ""99.94"", ""48333"": ""0.06""}","Hamilton|Mills","48193|48333","FALSE","FALSE","America/Chicago"
-"76534","30.88263","-97.37359","Holland","TX","Texas","TRUE","","3046","13.3","48027","Bell","{""48027"": ""96.6"", ""48331"": ""3.4""}","Bell|Milam","48027|48331","FALSE","FALSE","America/Chicago"
-"76537","30.81749","-97.60543","Jarrell","TX","Texas","TRUE","","5782","41.5","48491","Williamson","{""48491"": ""100""}","Williamson","48491","FALSE","FALSE","America/Chicago"
-"76538","31.64149","-97.89017","Jonesboro","TX","Texas","TRUE","","1025","2.6","48099","Coryell","{""48099"": ""51.51"", ""48193"": ""48.49""}","Coryell|Hamilton","48099|48193","FALSE","FALSE","America/Chicago"
-"76539","31.08867","-98.00991","Kempner","TX","Texas","TRUE","","8608","24.2","48281","Lampasas","{""48281"": ""69.33"", ""48027"": ""17.45"", ""48099"": ""9.49"", ""48053"": ""3.74""}","Lampasas|Bell|Coryell|Burnet","48281|48027|48099|48053","FALSE","FALSE","America/Chicago"
-"76541","31.11414","-97.72885","Killeen","TX","Texas","TRUE","","17691","1444.3","48027","Bell","{""48027"": ""100""}","Bell","48027","FALSE","FALSE","America/Chicago"
-"76542","31.01061","-97.74608","Killeen","TX","Texas","TRUE","","51405","246.8","48027","Bell","{""48027"": ""100""}","Bell","48027","FALSE","FALSE","America/Chicago"
-"76543","31.13897","-97.64323","Killeen","TX","Texas","TRUE","","30268","240.8","48027","Bell","{""48027"": ""100""}","Bell","48027","FALSE","FALSE","America/Chicago"
-"76544","31.14312","-97.76165","Fort Hood","TX","Texas","TRUE","","23834","300.1","48027","Bell","{""48027"": ""51.06"", ""48099"": ""48.94""}","Bell|Coryell","48027|48099","FALSE","FALSE","America/Chicago"
-"76548","31.05081","-97.64587","Harker Heights","TX","Texas","TRUE","","30510","759.2","48027","Bell","{""48027"": ""100""}","Bell","48027","FALSE","FALSE","America/Chicago"
-"76549","31.01316","-97.82996","Killeen","TX","Texas","TRUE","","52012","261.6","48027","Bell","{""48027"": ""99.2"", ""48053"": ""0.4"", ""48099"": ""0.4""}","Bell|Burnet|Coryell","48027|48053|48099","FALSE","FALSE","America/Chicago"
-"76550","31.08755","-98.22873","Lampasas","TX","Texas","TRUE","","13412","9.7","48281","Lampasas","{""48281"": ""92.09"", ""48053"": ""7.91""}","Lampasas|Burnet","48281|48053","FALSE","FALSE","America/Chicago"
-"76554","30.97574","-97.36779","Little River Academy","TX","Texas","TRUE","","2380","115.3","48027","Bell","{""48027"": ""100""}","Bell","48027","FALSE","FALSE","America/Chicago"
-"76556","30.70295","-96.82589","Milano","TX","Texas","TRUE","","1494","5.8","48331","Milam","{""48331"": ""100""}","Milam","48331","FALSE","FALSE","America/Chicago"
-"76557","31.29554","-97.39495","Moody","TX","Texas","TRUE","","5331","15.1","48309","McLennan","{""48309"": ""60.2"", ""48027"": ""33.35"", ""48099"": ""6.45""}","McLennan|Bell|Coryell","48309|48027|48099","FALSE","FALSE","America/Chicago"
-"76559","31.07639","-97.6049","Nolanville","TX","Texas","TRUE","","6211","357.2","48027","Bell","{""48027"": ""100""}","Bell","48027","FALSE","FALSE","America/Chicago"
-"76561","31.41292","-97.53715","Oglesby","TX","Texas","TRUE","","1030","8.8","48099","Coryell","{""48099"": ""100""}","Coryell","48099","FALSE","FALSE","America/Chicago"
-"76565","31.6437","-98.35105","Pottsville","TX","Texas","TRUE","","138","1.9","48193","Hamilton","{""48193"": ""100""}","Hamilton","48193","FALSE","FALSE","America/Chicago"
-"76566","31.51052","-97.99614","Purmela","TX","Texas","TRUE","","242","1.7","48099","Coryell","{""48099"": ""89.15"", ""48193"": ""10.85""}","Coryell|Hamilton","48099|48193","FALSE","FALSE","America/Chicago"
-"76567","30.65","-97.00757","Rockdale","TX","Texas","TRUE","","9161","18.3","48331","Milam","{""48331"": ""97.75"", ""48051"": ""2.25""}","Milam|Burleson","48331|48051","FALSE","FALSE","America/Chicago"
-"76569","30.94373","-97.22878","Rogers","TX","Texas","TRUE","","2681","12.7","48027","Bell","{""48027"": ""96.4"", ""48331"": ""3.6""}","Bell|Milam","48027|48331","FALSE","FALSE","America/Chicago"
-"76570","31.08166","-96.93867","Rosebud","TX","Texas","TRUE","","2700","5.8","48145","Falls","{""48145"": ""96.23"", ""48331"": ""3.77""}","Falls|Milam","48145|48331","FALSE","FALSE","America/Chicago"
-"76571","30.9338","-97.58908","Salado","TX","Texas","TRUE","","8630","28.2","48027","Bell","{""48027"": ""100""}","Bell","48027","FALSE","FALSE","America/Chicago"
-"76573","30.81862","-97.50231","Schwertner","TX","Texas","TRUE","","29","12.5","48491","Williamson","{""48491"": ""100""}","Williamson","48491","FALSE","FALSE","America/Chicago"
-"76574","30.58423","-97.38741","Taylor","TX","Texas","TRUE","","19161","52.0","48491","Williamson","{""48491"": ""100""}","Williamson","48491","FALSE","FALSE","America/Chicago"
-"76577","30.62971","-97.16969","Thorndale","TX","Texas","TRUE","","3187","8.1","48331","Milam","{""48331"": ""98.39"", ""48491"": ""1.61""}","Milam|Williamson","48331|48491","FALSE","FALSE","America/Chicago"
-"76578","30.53615","-97.23789","Thrall","TX","Texas","TRUE","","1482","7.6","48491","Williamson","{""48491"": ""100""}","Williamson","48491","FALSE","FALSE","America/Chicago"
-"76579","31.19707","-97.26374","Troy","TX","Texas","TRUE","","5223","35.2","48027","Bell","{""48027"": ""97.63"", ""48145"": ""2.37""}","Bell|Falls","48027|48145","FALSE","FALSE","America/Chicago"
-"76596","31.47755","-97.7296","Gatesville","TX","Texas","TRUE","","1250","1598.7","48099","Coryell","{""48099"": ""100""}","Coryell","48099","FALSE","FALSE","America/Chicago"
-"76597","31.48635","-97.70694","Gatesville","TX","Texas","TRUE","","2657","2126.9","48099","Coryell","{""48099"": ""100""}","Coryell","48099","FALSE","FALSE","America/Chicago"
-"76598","31.47532","-97.73549","Gatesville","TX","Texas","TRUE","","479","4796.1","48099","Coryell","{""48099"": ""100""}","Coryell","48099","FALSE","FALSE","America/Chicago"
-"76599","31.4679","-97.73518","Gatesville","TX","Texas","TRUE","","2339","1836.3","48099","Coryell","{""48099"": ""100""}","Coryell","48099","FALSE","FALSE","America/Chicago"
-"76621","31.883","-97.08594","Abbott","TX","Texas","TRUE","","867","4.6","48217","Hill","{""48217"": ""100""}","Hill","48217","FALSE","FALSE","America/Chicago"
-"76622","31.82204","-97.24398","Aquilla","TX","Texas","TRUE","","1160","8.5","48217","Hill","{""48217"": ""100""}","Hill","48217","FALSE","FALSE","America/Chicago"
-"76623","32.21038","-96.75659","Avalon","TX","Texas","TRUE","","259","19.7","48139","Ellis","{""48139"": ""100""}","Ellis","48139","FALSE","FALSE","America/Chicago"
-"76624","31.6566","-96.9596","Axtell","TX","Texas","TRUE","","2015","12.1","48309","McLennan","{""48309"": ""100""}","McLennan","48309","FALSE","FALSE","America/Chicago"
-"76626","32.10623","-96.71536","Blooming Grove","TX","Texas","TRUE","","1386","13.1","48349","Navarro","{""48349"": ""100""}","Navarro","48349","FALSE","FALSE","America/Chicago"
-"76627","32.10741","-97.39448","Blum","TX","Texas","TRUE","","1511","6.6","48217","Hill","{""48217"": ""100""}","Hill","48217","FALSE","FALSE","America/Chicago"
-"76628","32.03143","-96.95221","Brandon","TX","Texas","TRUE","","54","2.2","48217","Hill","{""48217"": ""100""}","Hill","48217","FALSE","FALSE","America/Chicago"
-"76629","31.15494","-96.6554","Bremond","TX","Texas","TRUE","","1668","4.5","48395","Robertson","{""48395"": ""90.5"", ""48145"": ""9.5""}","Robertson|Falls","48395|48145","FALSE","FALSE","America/Chicago"
-"76630","31.3405","-97.22091","Bruceville","TX","Texas","TRUE","","1359","36.4","48309","McLennan","{""48309"": ""99.4"", ""48145"": ""0.6""}","McLennan|Falls","48309|48145","FALSE","FALSE","America/Chicago"
-"76631","31.97453","-96.96749","Bynum","TX","Texas","TRUE","","692","6.5","48217","Hill","{""48217"": ""100""}","Hill","48217","FALSE","FALSE","America/Chicago"
-"76632","31.29871","-97.06006","Chilton","TX","Texas","TRUE","","1613","10.4","48145","Falls","{""48145"": ""100""}","Falls","48145","FALSE","FALSE","America/Chicago"
-"76633","31.6781","-97.31732","China Spring","TX","Texas","TRUE","","5290","42.3","48309","McLennan","{""48309"": ""90.25"", ""48035"": ""9.75""}","McLennan|Bosque","48309|48035","FALSE","FALSE","America/Chicago"
-"76634","31.80782","-97.56146","Clifton","TX","Texas","TRUE","","7431","10.1","48035","Bosque","{""48035"": ""99.38"", ""48099"": ""0.62""}","Bosque|Coryell","48035|48099","FALSE","FALSE","America/Chicago"
-"76635","31.7284","-96.66386","Coolidge","TX","Texas","TRUE","","1290","4.7","48293","Limestone","{""48293"": ""100""}","Limestone","48293","FALSE","FALSE","America/Chicago"
-"76636","32.17157","-97.28593","Covington","TX","Texas","TRUE","","1525","13.6","48217","Hill","{""48217"": ""100""}","Hill","48217","FALSE","FALSE","America/Chicago"
-"76637","31.76614","-97.81681","Cranfills Gap","TX","Texas","TRUE","","540","5.3","48035","Bosque","{""48035"": ""91.04"", ""48193"": ""8.96""}","Bosque|Hamilton","48035|48193","FALSE","FALSE","America/Chicago"
-"76638","31.5498","-97.44461","Crawford","TX","Texas","TRUE","","2910","13.6","48309","McLennan","{""48309"": ""100""}","McLennan","48309","FALSE","FALSE","America/Chicago"
-"76639","31.87245","-96.65574","Dawson","TX","Texas","TRUE","","1318","5.5","48349","Navarro","{""48349"": ""100""}","Navarro","48349","FALSE","FALSE","America/Chicago"
-"76640","31.68989","-97.07076","Elm Mott","TX","Texas","TRUE","","3567","48.4","48309","McLennan","{""48309"": ""100""}","McLennan","48309","FALSE","FALSE","America/Chicago"
-"76641","32.0345","-96.79489","Frost","TX","Texas","TRUE","","1575","8.1","48349","Navarro","{""48349"": ""100""}","Navarro","48349","FALSE","FALSE","America/Chicago"
-"76642","31.50128","-96.51757","Groesbeck","TX","Texas","TRUE","","6949","10.5","48293","Limestone","{""48293"": ""100""}","Limestone","48293","FALSE","FALSE","America/Chicago"
-"76643","31.45383","-97.19364","Hewitt","TX","Texas","TRUE","","14523","697.0","48309","McLennan","{""48309"": ""100""}","McLennan","48309","FALSE","FALSE","America/Chicago"
-"76645","32.02173","-97.1336","Hillsboro","TX","Texas","TRUE","","10568","24.4","48217","Hill","{""48217"": ""100""}","Hill","48217","FALSE","FALSE","America/Chicago"
-"76648","31.8472","-96.80272","Hubbard","TX","Texas","TRUE","","2887","10.8","48217","Hill","{""48217"": ""88.62"", ""48349"": ""9.08"", ""48293"": ""2.3""}","Hill|Navarro|Limestone","48217|48349|48293","FALSE","FALSE","America/Chicago"
-"76649","32.00079","-97.87752","Iredell","TX","Texas","TRUE","","596","1.7","48035","Bosque","{""48035"": ""91.52"", ""48143"": ""8.48""}","Bosque|Erath","48035|48143","FALSE","FALSE","America/Chicago"
-"76650","31.98357","-96.8604","Irene","TX","Texas","TRUE","","186","6.9","48217","Hill","{""48217"": ""100""}","Hill","48217","FALSE","FALSE","America/Chicago"
-"76651","32.1807","-96.86697","Italy","TX","Texas","TRUE","","3250","12.1","48139","Ellis","{""48139"": ""100""}","Ellis","48139","FALSE","FALSE","America/Chicago"
-"76652","32.11575","-97.57043","Kopperl","TX","Texas","TRUE","","1349","6.0","48035","Bosque","{""48035"": ""100""}","Bosque","48035","FALSE","FALSE","America/Chicago"
-"76653","31.29812","-96.60817","Kosse","TX","Texas","TRUE","","1279","3.3","48293","Limestone","{""48293"": ""79.76"", ""48145"": ""18.58"", ""48395"": ""1.66""}","Limestone|Falls|Robertson","48293|48145|48395","FALSE","FALSE","America/Chicago"
-"76654","31.73054","-97.01427","Leroy","TX","Texas","TRUE","","139","83.6","48309","McLennan","{""48309"": ""100""}","McLennan","48309","FALSE","FALSE","America/Chicago"
-"76655","31.39609","-97.17738","Lorena","TX","Texas","TRUE","","8312","42.0","48309","McLennan","{""48309"": ""92.5"", ""48145"": ""7.5""}","McLennan|Falls","48309|48145","FALSE","FALSE","America/Chicago"
-"76656","31.18465","-97.0586","Lott","TX","Texas","TRUE","","2446","8.2","48145","Falls","{""48145"": ""100""}","Falls","48145","FALSE","FALSE","America/Chicago"
-"76657","31.4458","-97.39449","McGregor","TX","Texas","TRUE","","10108","36.7","48309","McLennan","{""48309"": ""98.36"", ""48099"": ""1.64""}","McLennan|Coryell","48309|48099","FALSE","FALSE","America/Chicago"
-"76660","31.9243","-96.90239","Malone","TX","Texas","TRUE","","561","6.1","48217","Hill","{""48217"": ""100""}","Hill","48217","FALSE","FALSE","America/Chicago"
-"76661","31.31864","-96.84932","Marlin","TX","Texas","TRUE","","7755","18.7","48145","Falls","{""48145"": ""100""}","Falls","48145","FALSE","FALSE","America/Chicago"
-"76664","31.55793","-96.79573","Mart","TX","Texas","TRUE","","3688","10.5","48309","McLennan","{""48309"": ""88.22"", ""48293"": ""10.39"", ""48145"": ""1.39""}","McLennan|Limestone|Falls","48309|48293|48145","FALSE","FALSE","America/Chicago"
-"76665","31.91349","-97.71634","Meridian","TX","Texas","TRUE","","2417","5.9","48035","Bosque","{""48035"": ""100""}","Bosque","48035","FALSE","FALSE","America/Chicago"
-"76666","32.04403","-96.91737","Mertens","TX","Texas","TRUE","","268","6.3","48217","Hill","{""48217"": ""100""}","Hill","48217","FALSE","FALSE","America/Chicago"
-"76667","31.65529","-96.46854","Mexia","TX","Texas","TRUE","","11098","29.8","48293","Limestone","{""48293"": ""96.93"", ""48161"": ""3.07""}","Limestone|Freestone","48293|48161","FALSE","FALSE","America/Chicago"
-"76670","32.13146","-96.98936","Milford","TX","Texas","TRUE","","1517","8.4","48139","Ellis","{""48139"": ""71.46"", ""48217"": ""28.54""}","Ellis|Hill","48139|48217","FALSE","FALSE","America/Chicago"
-"76671","31.99489","-97.53199","Morgan","TX","Texas","TRUE","","1621","7.9","48035","Bosque","{""48035"": ""100""}","Bosque","48035","FALSE","FALSE","America/Chicago"
-"76673","31.74944","-96.89139","Mount Calm","TX","Texas","TRUE","","1706","7.1","48217","Hill","{""48217"": ""70.35"", ""48293"": ""29.15"", ""48309"": ""0.51""}","Hill|Limestone|McLennan","48217|48293|48309","FALSE","FALSE","America/Chicago"
-"76676","31.86551","-96.95103","Penelope","TX","Texas","TRUE","","281","5.1","48217","Hill","{""48217"": ""100""}","Hill","48217","FALSE","FALSE","America/Chicago"
-"76678","31.65548","-96.75883","Prairie Hill","TX","Texas","TRUE","","260","2.7","48293","Limestone","{""48293"": ""100""}","Limestone","48293","FALSE","FALSE","America/Chicago"
-"76679","31.92428","-96.58566","Purdon","TX","Texas","TRUE","","1435","7.3","48349","Navarro","{""48349"": ""100""}","Navarro","48349","FALSE","FALSE","America/Chicago"
-"76680","31.19335","-96.81791","Reagan","TX","Texas","TRUE","","279","1.9","48145","Falls","{""48145"": ""100""}","Falls","48145","FALSE","FALSE","America/Chicago"
-"76681","31.8933","-96.43508","Richland","TX","Texas","TRUE","","801","4.2","48349","Navarro","{""48349"": ""100""}","Navarro","48349","FALSE","FALSE","America/Chicago"
-"76682","31.45363","-96.9059","Riesel","TX","Texas","TRUE","","2846","9.7","48309","McLennan","{""48309"": ""78.57"", ""48145"": ""21.43""}","McLennan|Falls","48309|48145","FALSE","FALSE","America/Chicago"
-"76685","31.35326","-97.01115","Satin","TX","Texas","TRUE","","40","1.1","48145","Falls","{""48145"": ""100""}","Falls","48145","FALSE","FALSE","America/Chicago"
-"76686","31.76592","-96.558","Tehuacana","TX","Texas","TRUE","","195","6.7","48293","Limestone","{""48293"": ""100""}","Limestone","48293","FALSE","FALSE","America/Chicago"
-"76687","31.37171","-96.49934","Thornton","TX","Texas","TRUE","","1879","5.5","48293","Limestone","{""48293"": ""80.76"", ""48395"": ""18.35"", ""48145"": ""0.89""}","Limestone|Robertson|Falls","48293|48395|48145","FALSE","FALSE","America/Chicago"
-"76689","31.66663","-97.50415","Valley Mills","TX","Texas","TRUE","","3565","6.0","48035","Bosque","{""48035"": ""66.89"", ""48309"": ""28.53"", ""48099"": ""4.58""}","Bosque|McLennan|Coryell","48035|48309|48099","FALSE","FALSE","America/Chicago"
-"76690","32.08226","-97.73325","Walnut Springs","TX","Texas","TRUE","","1101","5.2","48035","Bosque","{""48035"": ""100""}","Bosque","48035","FALSE","FALSE","America/Chicago"
-"76691","31.77818","-97.09625","West","TX","Texas","TRUE","","6333","24.5","48309","McLennan","{""48309"": ""98.79"", ""48217"": ""1.21""}","McLennan|Hill","48309|48217","FALSE","FALSE","America/Chicago"
-"76692","31.95806","-97.32888","Whitney","TX","Texas","TRUE","","10252","32.3","48217","Hill","{""48217"": ""100""}","Hill","48217","FALSE","FALSE","America/Chicago"
-"76693","31.78599","-96.40641","Wortham","TX","Texas","TRUE","","1492","7.5","48161","Freestone","{""48161"": ""98.3"", ""48293"": ""1.7""}","Freestone|Limestone","48161|48293","FALSE","FALSE","America/Chicago"
-"76701","31.55202","-97.13858","Waco","TX","Texas","TRUE","","1895","642.4","48309","McLennan","{""48309"": ""100""}","McLennan","48309","FALSE","FALSE","America/Chicago"
-"76704","31.57676","-97.127","Waco","TX","Texas","TRUE","","7956","595.5","48309","McLennan","{""48309"": ""100""}","McLennan","48309","FALSE","FALSE","America/Chicago"
-"76705","31.62655","-97.09605","Waco","TX","Texas","TRUE","","31734","107.2","48309","McLennan","{""48309"": ""100""}","McLennan","48309","FALSE","FALSE","America/Chicago"
-"76706","31.46653","-97.09121","Waco","TX","Texas","TRUE","","39221","213.7","48309","McLennan","{""48309"": ""99.97"", ""48145"": ""0.03""}","McLennan|Falls","48309|48145","FALSE","FALSE","America/Chicago"
-"76707","31.55371","-97.15818","Waco","TX","Texas","TRUE","","15688","1856.2","48309","McLennan","{""48309"": ""100""}","McLennan","48309","FALSE","FALSE","America/Chicago"
-"76708","31.62687","-97.21135","Waco","TX","Texas","TRUE","","27964","232.0","48309","McLennan","{""48309"": ""100""}","McLennan","48309","FALSE","FALSE","America/Chicago"
-"76710","31.53876","-97.19525","Waco","TX","Texas","TRUE","","24837","1008.1","48309","McLennan","{""48309"": ""100""}","McLennan","48309","FALSE","FALSE","America/Chicago"
-"76711","31.51442","-97.15332","Waco","TX","Texas","TRUE","","9988","976.9","48309","McLennan","{""48309"": ""100""}","McLennan","48309","FALSE","FALSE","America/Chicago"
-"76712","31.52403","-97.25566","Woodway","TX","Texas","TRUE","","25525","195.8","48309","McLennan","{""48309"": ""100""}","McLennan","48309","FALSE","FALSE","America/Chicago"
-"76798","31.5484","-97.11901","Waco","TX","Texas","TRUE","","1591","17599.8","48309","McLennan","{""48309"": ""100""}","McLennan","48309","FALSE","FALSE","America/Chicago"
-"76801","31.74249","-99.03991","Brownwood","TX","Texas","TRUE","","25011","25.3","48049","Brown","{""48049"": ""99.75"", ""48333"": ""0.23"", ""48083"": ""0.02""}","Brown|Mills|Coleman","48049|48333|48083","FALSE","FALSE","America/Chicago"
-"76802","31.75328","-98.90283","Early","TX","Texas","TRUE","","5251","28.0","48049","Brown","{""48049"": ""100""}","Brown","48049","FALSE","FALSE","America/Chicago"
-"76820","30.76719","-99.04869","Art","TX","Texas","TRUE","","88","0.5","48319","Mason","{""48319"": ""100""}","Mason","48319","FALSE","FALSE","America/Chicago"
-"76821","31.73869","-99.93625","Ballinger","TX","Texas","TRUE","","4561","5.8","48399","Runnels","{""48399"": ""100""}","Runnels","48399","FALSE","FALSE","America/Chicago"
-"76823","31.70119","-99.15991","Bangs","TX","Texas","TRUE","","3024","10.4","48049","Brown","{""48049"": ""98.74"", ""48083"": ""1.26""}","Brown|Coleman","48049|48083","FALSE","FALSE","America/Chicago"
-"76824","31.0036","-98.47069","Bend","TX","Texas","TRUE","","9","0.1","48411","San Saba","{""48411"": ""100""}","San Saba","48411","FALSE","FALSE","America/Chicago"
-"76825","31.10471","-99.39545","Brady","TX","Texas","TRUE","","6908","5.1","48307","McCulloch","{""48307"": ""99.56"", ""48319"": ""0.44""}","McCulloch|Mason","48307|48319","FALSE","FALSE","America/Chicago"
-"76827","31.52636","-99.12819","Brookesmith","TX","Texas","TRUE","","418","2.2","48049","Brown","{""48049"": ""100""}","Brown","48049","FALSE","FALSE","America/Chicago"
-"76828","32.00902","-99.29396","Burkett","TX","Texas","TRUE","","240","1.0","48083","Coleman","{""48083"": ""100""}","Coleman","48083","FALSE","FALSE","America/Chicago"
-"76831","30.63979","-98.91958","Castell","TX","Texas","TRUE","","0","0.0","48299","Llano","{""48299"": ""100""}","Llano","48299","FALSE","FALSE","America/Chicago"
-"76832","30.98538","-98.73031","Cherokee","TX","Texas","TRUE","","728","1.4","48411","San Saba","{""48411"": ""100""}","San Saba","48411","FALSE","FALSE","America/Chicago"
-"76834","31.87436","-99.47039","Coleman","TX","Texas","TRUE","","5310","5.0","48083","Coleman","{""48083"": ""100""}","Coleman","48083","FALSE","FALSE","America/Chicago"
-"76836","31.42607","-99.55601","Doole","TX","Texas","TRUE","","0","0.0","48307","McCulloch","{""48307"": ""100""}","McCulloch","48307","FALSE","FALSE","America/Chicago"
-"76837","31.2208","-99.89593","Eden","TX","Texas","TRUE","","2440","2.2","48095","Concho","{""48095"": ""100""}","Concho","48095","FALSE","FALSE","America/Chicago"
-"76841","30.8936","-100.09665","Fort McKavett","TX","Texas","TRUE","","19","0.1","48327","Menard","{""48327"": ""90.16"", ""48413"": ""9.84""}","Menard|Schleicher","48327|48413","FALSE","FALSE","America/Chicago"
-"76842","30.95434","-99.07295","Fredonia","TX","Texas","TRUE","","242","1.0","48319","Mason","{""48319"": ""58.64"", ""48411"": ""31.94"", ""48307"": ""9.42""}","Mason|San Saba|McCulloch","48319|48411|48307","FALSE","FALSE","America/Chicago"
-"76844","31.43788","-98.50904","Goldthwaite","TX","Texas","TRUE","","3534","3.3","48333","Mills","{""48333"": ""99.13"", ""48193"": ""0.45"", ""48281"": ""0.42""}","Mills|Hamilton|Lampasas","48333|48193|48281","FALSE","FALSE","America/Chicago"
-"76845","31.54733","-99.48707","Gouldbusk","TX","Texas","TRUE","","288","1.0","48083","Coleman","{""48083"": ""100""}","Coleman","48083","FALSE","FALSE","America/Chicago"
-"76848","30.84316","-99.56995","Hext","TX","Texas","TRUE","","48","0.3","48327","Menard","{""48327"": ""100""}","Menard","48327","FALSE","FALSE","America/Chicago"
-"76849","30.48896","-99.79705","Junction","TX","Texas","TRUE","","3785","1.5","48267","Kimble","{""48267"": ""100""}","Kimble","48267","FALSE","FALSE","America/Chicago"
-"76852","31.35939","-99.4509","Lohn","TX","Texas","TRUE","","268","0.7","48307","McCulloch","{""48307"": ""100""}","McCulloch","48307","FALSE","FALSE","America/Chicago"
-"76853","31.24577","-98.3872","Lometa","TX","Texas","TRUE","","1456","2.2","48281","Lampasas","{""48281"": ""98.71"", ""48333"": ""1.29""}","Lampasas|Mills","48281|48333","FALSE","FALSE","America/Chicago"
-"76854","30.68565","-99.57564","London","TX","Texas","TRUE","","220","0.6","48267","Kimble","{""48267"": ""68.33"", ""48327"": ""31.67""}","Kimble|Menard","48267|48327","FALSE","FALSE","America/Chicago"
-"76856","30.70618","-99.26619","Mason","TX","Texas","TRUE","","3735","2.0","48319","Mason","{""48319"": ""100""}","Mason","48319","FALSE","FALSE","America/Chicago"
-"76857","31.93191","-98.93511","May","TX","Texas","TRUE","","1761","5.1","48049","Brown","{""48049"": ""99.44"", ""48093"": ""0.56""}","Brown|Comanche","48049|48093","FALSE","FALSE","America/Chicago"
-"76858","31.19743","-99.62049","Melvin","TX","Texas","TRUE","","292","0.9","48307","McCulloch","{""48307"": ""86.61"", ""48095"": ""13.39""}","McCulloch|Concho","48307|48095","FALSE","FALSE","America/Chicago"
-"76859","30.90801","-99.8326","Menard","TX","Texas","TRUE","","2015","1.1","48327","Menard","{""48327"": ""100""}","Menard","48327","FALSE","FALSE","America/Chicago"
-"76861","31.59099","-100.19534","Miles","TX","Texas","TRUE","","1945","4.4","48399","Runnels","{""48399"": ""57.49"", ""48451"": ""42.51""}","Runnels|Tom Green","48399|48451","FALSE","FALSE","America/Chicago"
-"76862","31.41518","-99.68744","Millersview","TX","Texas","TRUE","","207","0.6","48095","Concho","{""48095"": ""100""}","Concho","48095","FALSE","FALSE","America/Chicago"
-"76864","31.5541","-98.73378","Mullin","TX","Texas","TRUE","","821","1.3","48333","Mills","{""48333"": ""100""}","Mills","48333","FALSE","FALSE","America/Chicago"
-"76865","31.85815","-100.1663","Norton","TX","Texas","TRUE","","151","1.8","48399","Runnels","{""48399"": ""100""}","Runnels","48399","FALSE","FALSE","America/Chicago"
-"76866","31.46085","-99.92785","Paint Rock","TX","Texas","TRUE","","537","0.7","48095","Concho","{""48095"": ""100""}","Concho","48095","FALSE","FALSE","America/Chicago"
-"76869","30.91282","-98.99787","Pontotoc","TX","Texas","TRUE","","64","0.3","48319","Mason","{""48319"": ""82.4"", ""48411"": ""17.6""}","Mason|San Saba","48319|48411","FALSE","FALSE","America/Chicago"
-"76870","31.63824","-98.52981","Priddy","TX","Texas","TRUE","","270","3.8","48333","Mills","{""48333"": ""100""}","Mills","48333","FALSE","FALSE","America/Chicago"
-"76871","31.29056","-98.98708","Richland Springs","TX","Texas","TRUE","","657","1.1","48411","San Saba","{""48411"": ""99.36"", ""48307"": ""0.64""}","San Saba|McCulloch","48411|48307","FALSE","FALSE","America/Chicago"
-"76872","31.32321","-99.16715","Rochelle","TX","Texas","TRUE","","770","1.0","48307","McCulloch","{""48307"": ""83.82"", ""48411"": ""16.18""}","McCulloch|San Saba","48307|48411","FALSE","FALSE","America/Chicago"
-"76873","31.51108","-99.37924","Rockwood","TX","Texas","TRUE","","60","0.5","48083","Coleman","{""48083"": ""100""}","Coleman","48083","FALSE","FALSE","America/Chicago"
-"76874","30.45873","-100.06913","Roosevelt","TX","Texas","TRUE","","0","0.0","48267","Kimble","{""48267"": ""100""}","Kimble","48267","FALSE","FALSE","America/Chicago"
-"76875","31.60275","-100.00576","Rowena","TX","Texas","TRUE","","525","1.9","48399","Runnels","{""48399"": ""93.41"", ""48095"": ""6.59""}","Runnels|Concho","48399|48095","FALSE","FALSE","America/Chicago"
-"76877","31.17243","-98.75696","San Saba","TX","Texas","TRUE","","4371","3.0","48411","San Saba","{""48411"": ""100""}","San Saba","48411","FALSE","FALSE","America/Chicago"
-"76878","31.65761","-99.29342","Santa Anna","TX","Texas","TRUE","","1688","2.5","48083","Coleman","{""48083"": ""100""}","Coleman","48083","FALSE","FALSE","America/Chicago"
-"76882","31.81965","-99.70241","Talpa","TX","Texas","TRUE","","214","0.6","48083","Coleman","{""48083"": ""78.57"", ""48399"": ""21.43""}","Coleman|Runnels","48083|48399","FALSE","FALSE","America/Chicago"
-"76884","31.73031","-99.55324","Valera","TX","Texas","TRUE","","115","1.3","48083","Coleman","{""48083"": ""100""}","Coleman","48083","FALSE","FALSE","America/Chicago"
-"76885","30.87708","-98.86324","Valley Spring","TX","Texas","TRUE","","216","1.1","48299","Llano","{""48299"": ""100""}","Llano","48299","FALSE","FALSE","America/Chicago"
-"76887","31.01265","-99.16057","Voca","TX","Texas","TRUE","","82","0.5","48307","McCulloch","{""48307"": ""100""}","McCulloch","48307","FALSE","FALSE","America/Chicago"
-"76888","31.60827","-99.63989","Voss","TX","Texas","TRUE","","151","0.5","48083","Coleman","{""48083"": ""100""}","Coleman","48083","FALSE","FALSE","America/Chicago"
-"76890","31.69146","-98.7756","Zephyr","TX","Texas","TRUE","","982","4.0","48049","Brown","{""48049"": ""89.15"", ""48333"": ""10.21"", ""48093"": ""0.64""}","Brown|Mills|Comanche","48049|48333|48093","FALSE","FALSE","America/Chicago"
-"76901","31.54094","-100.62877","San Angelo","TX","Texas","TRUE","","31667","44.3","48451","Tom Green","{""48451"": ""99.9"", ""48235"": ""0.1""}","Tom Green|Irion","48451|48235","FALSE","FALSE","America/Chicago"
-"76903","31.48482","-100.43722","San Angelo","TX","Texas","TRUE","","31248","453.2","48451","Tom Green","{""48451"": ""100""}","Tom Green","48451","FALSE","FALSE","America/Chicago"
-"76904","31.2836","-100.39452","San Angelo","TX","Texas","TRUE","","36178","34.6","48451","Tom Green","{""48451"": ""99.8"", ""48235"": ""0.2""}","Tom Green|Irion","48451|48235","FALSE","FALSE","America/Chicago"
-"76905","31.50981","-100.32217","San Angelo","TX","Texas","TRUE","","12206","22.7","48451","Tom Green","{""48451"": ""100""}","Tom Green","48451","FALSE","FALSE","America/Chicago"
-"76908","31.43208","-100.40222","Goodfellow Afb","TX","Texas","TRUE","","2554","706.2","48451","Tom Green","{""48451"": ""100""}","Tom Green","48451","FALSE","FALSE","America/Chicago"
-"76930","31.27278","-101.17275","Barnhart","TX","Texas","TRUE","","107","0.2","48235","Irion","{""48235"": ""100""}","Irion","48235","FALSE","FALSE","America/Chicago"
-"76932","31.26949","-101.54094","Big Lake","TX","Texas","TRUE","","3819","1.5","48383","Reagan","{""48383"": ""98.88"", ""48105"": ""1.12""}","Reagan|Crockett","48383|48105","FALSE","FALSE","America/Chicago"
-"76933","31.86341","-100.28783","Bronte","TX","Texas","TRUE","","1209","1.8","48081","Coke","{""48081"": ""92.31"", ""48399"": ""7.69""}","Coke|Runnels","48081|48399","FALSE","FALSE","America/Chicago"
-"76934","31.60305","-100.66898","Carlsbad","TX","Texas","TRUE","","1084","26.9","48451","Tom Green","{""48451"": ""100""}","Tom Green","48451","FALSE","FALSE","America/Chicago"
-"76935","31.08046","-100.41658","Christoval","TX","Texas","TRUE","","1791","2.4","48451","Tom Green","{""48451"": ""95.33"", ""48413"": ""4.67""}","Tom Green|Schleicher","48451|48413","FALSE","FALSE","America/Chicago"
-"76936","30.88566","-100.58752","Eldorado","TX","Texas","TRUE","","2983","1.1","48413","Schleicher","{""48413"": ""100""}","Schleicher","48413","FALSE","FALSE","America/Chicago"
-"76937","31.38854","-100.15138","Eola","TX","Texas","TRUE","","15","0.6","48451","Tom Green","{""48451"": ""100""}","Tom Green","48451","FALSE","FALSE","America/Chicago"
-"76939","31.27778","-100.5574","Knickerbocker","TX","Texas","TRUE","","0","0.0","48451","Tom Green","{""48451"": ""100""}","Tom Green","48451","FALSE","FALSE","America/Chicago"
-"76940","31.43903","-100.14294","Mereta","TX","Texas","TRUE","","113","2.9","48451","Tom Green","{""48451"": ""100""}","Tom Green","48451","FALSE","FALSE","America/Chicago"
-"76941","31.26808","-100.91169","Mertzon","TX","Texas","TRUE","","1455","1.0","48235","Irion","{""48235"": ""100""}","Irion","48235","FALSE","FALSE","America/Chicago"
-"76943","30.53101","-101.30067","Ozona","TX","Texas","TRUE","","3420","0.5","48105","Crockett","{""48105"": ""98.54"", ""48465"": ""1.46""}","Crockett|Val Verde","48105|48465","FALSE","FALSE","America/Chicago"
-"76945","31.88096","-100.61152","Robert Lee","TX","Texas","TRUE","","1798","1.2","48081","Coke","{""48081"": ""100"", ""48431"": ""0""}","Coke|Sterling","48081|48431","FALSE","FALSE","America/Chicago"
-"76949","32.04184","-100.69272","Silver","TX","Texas","TRUE","","12","0.5","48081","Coke","{""48081"": ""100""}","Coke","48081","FALSE","FALSE","America/Chicago"
-"76950","30.43734","-100.56036","Sonora","TX","Texas","TRUE","","3867","0.8","48435","Sutton","{""48435"": ""98.76"", ""48137"": ""1.05"", ""48465"": ""0.19""}","Sutton|Edwards|Val Verde","48435|48137|48465","FALSE","FALSE","America/Chicago"
-"76951","31.81488","-101.04641","Sterling City","TX","Texas","TRUE","","1231","0.6","48431","Sterling","{""48431"": ""100""}","Sterling","48431","FALSE","FALSE","America/Chicago"
-"76953","31.72301","-100.32766","Tennyson","TX","Texas","TRUE","","101","0.9","48081","Coke","{""48081"": ""100""}","Coke","48081","FALSE","FALSE","America/Chicago"
-"76955","31.28953","-100.15274","Vancourt","TX","Texas","TRUE","","192","1.5","48451","Tom Green","{""48451"": ""100""}","Tom Green","48451","FALSE","FALSE","America/Chicago"
-"76957","31.3722","-100.30507","Wall","TX","Texas","TRUE","","134","185.1","48451","Tom Green","{""48451"": ""100""}","Tom Green","48451","FALSE","FALSE","America/Chicago"
-"76958","31.59512","-100.79924","Water Valley","TX","Texas","TRUE","","183","0.7","48451","Tom Green","{""48451"": ""100""}","Tom Green","48451","FALSE","FALSE","America/Chicago"
-"77002","29.75641","-95.3653","Houston","TX","Texas","TRUE","","15613","2995.6","48201","Harris","{""48201"": ""100""}","Harris","48201","FALSE","FALSE","America/Chicago"
-"77003","29.74932","-95.34582","Houston","TX","Texas","TRUE","","9707","1476.3","48201","Harris","{""48201"": ""100""}","Harris","48201","FALSE","FALSE","America/Chicago"
-"77004","29.72463","-95.36309","Houston","TX","Texas","TRUE","","37294","2491.4","48201","Harris","{""48201"": ""100""}","Harris","48201","FALSE","FALSE","America/Chicago"
-"77005","29.71816","-95.42419","Houston","TX","Texas","TRUE","","28572","2869.1","48201","Harris","{""48201"": ""100""}","Harris","48201","FALSE","FALSE","America/Chicago"
-"77006","29.74088","-95.39132","Houston","TX","Texas","TRUE","","22580","3865.9","48201","Harris","{""48201"": ""100""}","Harris","48201","FALSE","FALSE","America/Chicago"
-"77007","29.77128","-95.41144","Houston","TX","Texas","TRUE","","40080","1981.7","48201","Harris","{""48201"": ""100""}","Harris","48201","FALSE","FALSE","America/Chicago"
-"77008","29.7986","-95.41754","Houston","TX","Texas","TRUE","","34895","2062.5","48201","Harris","{""48201"": ""100""}","Harris","48201","FALSE","FALSE","America/Chicago"
-"77009","29.79504","-95.36747","Houston","TX","Texas","TRUE","","36147","2257.1","48201","Harris","{""48201"": ""100""}","Harris","48201","FALSE","FALSE","America/Chicago"
-"77010","29.75365","-95.35982","Houston","TX","Texas","TRUE","","890","2783.3","48201","Harris","{""48201"": ""100""}","Harris","48201","FALSE","FALSE","America/Chicago"
-"77011","29.7433","-95.30849","Houston","TX","Texas","TRUE","","17447","1887.2","48201","Harris","{""48201"": ""100""}","Harris","48201","FALSE","FALSE","America/Chicago"
-"77012","29.71896","-95.27431","Houston","TX","Texas","TRUE","","19597","1926.4","48201","Harris","{""48201"": ""100""}","Harris","48201","FALSE","FALSE","America/Chicago"
-"77013","29.79548","-95.2382","Houston","TX","Texas","TRUE","","19198","845.3","48201","Harris","{""48201"": ""100""}","Harris","48201","FALSE","FALSE","America/Chicago"
-"77014","29.9805","-95.4636","Houston","TX","Texas","TRUE","","37488","2017.1","48201","Harris","{""48201"": ""100""}","Harris","48201","FALSE","FALSE","America/Chicago"
-"77015","29.76437","-95.17347","Houston","TX","Texas","TRUE","","56477","1032.5","48201","Harris","{""48201"": ""100""}","Harris","48201","FALSE","FALSE","America/Chicago"
-"77016","29.86163","-95.29997","Houston","TX","Texas","TRUE","","30741","1226.3","48201","Harris","{""48201"": ""100""}","Harris","48201","FALSE","FALSE","America/Chicago"
-"77017","29.68995","-95.25224","Houston","TX","Texas","TRUE","","32985","1464.6","48201","Harris","{""48201"": ""100""}","Harris","48201","FALSE","FALSE","America/Chicago"
-"77018","29.82694","-95.42589","Houston","TX","Texas","TRUE","","28229","1646.3","48201","Harris","{""48201"": ""100""}","Harris","48201","FALSE","FALSE","America/Chicago"
-"77019","29.7532","-95.41008","Houston","TX","Texas","TRUE","","22057","2419.7","48201","Harris","{""48201"": ""100""}","Harris","48201","FALSE","FALSE","America/Chicago"
-"77020","29.77305","-95.31379","Houston","TX","Texas","TRUE","","26357","1474.5","48201","Harris","{""48201"": ""100""}","Harris","48201","FALSE","FALSE","America/Chicago"
-"77021","29.69713","-95.35743","Houston","TX","Texas","TRUE","","26214","1664.9","48201","Harris","{""48201"": ""100""}","Harris","48201","FALSE","FALSE","America/Chicago"
-"77022","29.83057","-95.37697","Houston","TX","Texas","TRUE","","27924","1846.2","48201","Harris","{""48201"": ""100""}","Harris","48201","FALSE","FALSE","America/Chicago"
-"77023","29.72163","-95.31846","Houston","TX","Texas","TRUE","","29138","2064.7","48201","Harris","{""48201"": ""100""}","Harris","48201","FALSE","FALSE","America/Chicago"
-"77024","29.77084","-95.51161","Houston","TX","Texas","TRUE","","38190","1149.4","48201","Harris","{""48201"": ""100""}","Harris","48201","FALSE","FALSE","America/Chicago"
-"77025","29.68661","-95.43499","Houston","TX","Texas","TRUE","","28540","2570.0","48201","Harris","{""48201"": ""100""}","Harris","48201","FALSE","FALSE","America/Chicago"
-"77026","29.8001","-95.32947","Houston","TX","Texas","TRUE","","21300","1268.7","48201","Harris","{""48201"": ""100""}","Harris","48201","FALSE","FALSE","America/Chicago"
-"77027","29.74023","-95.44589","Houston","TX","Texas","TRUE","","18323","2471.9","48201","Harris","{""48201"": ""100""}","Harris","48201","FALSE","FALSE","America/Chicago"
-"77028","29.82466","-95.28678","Houston","TX","Texas","TRUE","","17425","733.6","48201","Harris","{""48201"": ""100""}","Harris","48201","FALSE","FALSE","America/Chicago"
-"77029","29.76278","-95.26243","Houston","TX","Texas","TRUE","","17781","528.9","48201","Harris","{""48201"": ""100""}","Harris","48201","FALSE","FALSE","America/Chicago"
-"77030","29.70628","-95.40258","Houston","TX","Texas","TRUE","","11229","1721.2","48201","Harris","{""48201"": ""100""}","Harris","48201","FALSE","FALSE","America/Chicago"
-"77031","29.65448","-95.54639","Houston","TX","Texas","TRUE","","18058","2186.3","48201","Harris","{""48201"": ""100""}","Harris","48201","FALSE","FALSE","America/Chicago"
-"77032","29.96497","-95.34163","Houston","TX","Texas","TRUE","","14535","253.3","48201","Harris","{""48201"": ""100""}","Harris","48201","FALSE","FALSE","America/Chicago"
-"77033","29.66724","-95.33703","Houston","TX","Texas","TRUE","","30558","1974.5","48201","Harris","{""48201"": ""100""}","Harris","48201","FALSE","FALSE","America/Chicago"
-"77034","29.61755","-95.19245","Houston","TX","Texas","TRUE","","40635","1141.7","48201","Harris","{""48201"": ""100""}","Harris","48201","FALSE","FALSE","America/Chicago"
-"77035","29.65246","-95.47699","Houston","TX","Texas","TRUE","","36931","2497.4","48201","Harris","{""48201"": ""100""}","Harris","48201","FALSE","FALSE","America/Chicago"
-"77036","29.70165","-95.53595","Houston","TX","Texas","TRUE","","74472","4016.8","48201","Harris","{""48201"": ""100""}","Harris","48201","FALSE","FALSE","America/Chicago"
-"77037","29.89114","-95.39441","Houston","TX","Texas","TRUE","","18966","1174.4","48201","Harris","{""48201"": ""100""}","Harris","48201","FALSE","FALSE","America/Chicago"
-"77038","29.9186","-95.44169","Houston","TX","Texas","TRUE","","31912","1307.8","48201","Harris","{""48201"": ""100""}","Harris","48201","FALSE","FALSE","America/Chicago"
-"77039","29.90926","-95.34118","Houston","TX","Texas","TRUE","","28877","1103.3","48201","Harris","{""48201"": ""100""}","Harris","48201","FALSE","FALSE","America/Chicago"
-"77040","29.8744","-95.52787","Houston","TX","Texas","TRUE","","47823","1313.1","48201","Harris","{""48201"": ""100""}","Harris","48201","FALSE","FALSE","America/Chicago"
-"77041","29.86048","-95.58085","Houston","TX","Texas","TRUE","","33941","707.8","48201","Harris","{""48201"": ""100""}","Harris","48201","FALSE","FALSE","America/Chicago"
-"77042","29.74115","-95.5606","Houston","TX","Texas","TRUE","","41734","2587.7","48201","Harris","{""48201"": ""100""}","Harris","48201","FALSE","FALSE","America/Chicago"
-"77043","29.81187","-95.58126","Houston","TX","Texas","TRUE","","24803","645.2","48201","Harris","{""48201"": ""100""}","Harris","48201","FALSE","FALSE","America/Chicago"
-"77044","29.8979","-95.17696","Houston","TX","Texas","TRUE","","48783","481.8","48201","Harris","{""48201"": ""100""}","Harris","48201","FALSE","FALSE","America/Chicago"
-"77045","29.63572","-95.43304","Houston","TX","Texas","TRUE","","36532","1217.4","48201","Harris","{""48201"": ""100""}","Harris","48201","FALSE","FALSE","America/Chicago"
-"77046","29.73376","-95.4334","Houston","TX","Texas","TRUE","","1207","3989.6","48201","Harris","{""48201"": ""100""}","Harris","48201","FALSE","FALSE","America/Chicago"
-"77047","29.60844","-95.38665","Houston","TX","Texas","TRUE","","32616","911.0","48201","Harris","{""48201"": ""100""}","Harris","48201","FALSE","FALSE","America/Chicago"
-"77048","29.62042","-95.3303","Houston","TX","Texas","TRUE","","18383","640.4","48201","Harris","{""48201"": ""100""}","Harris","48201","FALSE","FALSE","America/Chicago"
-"77049","29.83413","-95.14734","Houston","TX","Texas","TRUE","","36434","570.7","48201","Harris","{""48201"": ""100""}","Harris","48201","FALSE","FALSE","America/Chicago"
-"77050","29.90307","-95.27004","Houston","TX","Texas","TRUE","","4741","271.1","48201","Harris","{""48201"": ""100""}","Harris","48201","FALSE","FALSE","America/Chicago"
-"77051","29.6562","-95.38015","Houston","TX","Texas","TRUE","","17221","908.8","48201","Harris","{""48201"": ""100""}","Harris","48201","FALSE","FALSE","America/Chicago"
-"77053","29.58305","-95.46032","Houston","TX","Texas","TRUE","","31650","984.5","48157","Fort Bend","{""48157"": ""59.62"", ""48201"": ""40.38""}","Fort Bend|Harris","48157|48201","FALSE","FALSE","America/Chicago"
-"77054","29.68088","-95.40494","Houston","TX","Texas","TRUE","","23267","1604.3","48201","Harris","{""48201"": ""100""}","Harris","48201","FALSE","FALSE","America/Chicago"
-"77055","29.79765","-95.49173","Houston","TX","Texas","TRUE","","44671","2087.0","48201","Harris","{""48201"": ""100""}","Harris","48201","FALSE","FALSE","America/Chicago"
-"77056","29.74832","-95.46803","Houston","TX","Texas","TRUE","","22056","2461.9","48201","Harris","{""48201"": ""100""}","Harris","48201","FALSE","FALSE","America/Chicago"
-"77057","29.74546","-95.48868","Houston","TX","Texas","TRUE","","41690","3784.4","48201","Harris","{""48201"": ""100""}","Harris","48201","FALSE","FALSE","America/Chicago"
-"77058","29.56284","-95.09287","Houston","TX","Texas","TRUE","","16120","756.0","48201","Harris","{""48201"": ""100""}","Harris","48201","FALSE","FALSE","America/Chicago"
-"77059","29.60764","-95.12483","Houston","TX","Texas","TRUE","","17254","676.9","48201","Harris","{""48201"": ""100""}","Harris","48201","FALSE","FALSE","America/Chicago"
-"77060","29.93513","-95.3969","Houston","TX","Texas","TRUE","","45642","2144.2","48201","Harris","{""48201"": ""100""}","Harris","48201","FALSE","FALSE","America/Chicago"
-"77061","29.65377","-95.28423","Houston","TX","Texas","TRUE","","26253","1277.8","48201","Harris","{""48201"": ""100""}","Harris","48201","FALSE","FALSE","America/Chicago"
-"77062","29.57485","-95.13148","Houston","TX","Texas","TRUE","","26477","1884.8","48201","Harris","{""48201"": ""100""}","Harris","48201","FALSE","FALSE","America/Chicago"
-"77063","29.73554","-95.5216","Houston","TX","Texas","TRUE","","39249","3307.6","48201","Harris","{""48201"": ""100""}","Harris","48201","FALSE","FALSE","America/Chicago"
-"77064","29.92218","-95.54706","Houston","TX","Texas","TRUE","","48637","1275.2","48201","Harris","{""48201"": ""100""}","Harris","48201","FALSE","FALSE","America/Chicago"
-"77065","29.92696","-95.60376","Houston","TX","Texas","TRUE","","37793","1777.3","48201","Harris","{""48201"": ""100""}","Harris","48201","FALSE","FALSE","America/Chicago"
-"77066","29.95659","-95.50204","Houston","TX","Texas","TRUE","","35676","1599.1","48201","Harris","{""48201"": ""100""}","Harris","48201","FALSE","FALSE","America/Chicago"
-"77067","29.95272","-95.44687","Houston","TX","Texas","TRUE","","35227","2269.0","48201","Harris","{""48201"": ""100""}","Harris","48201","FALSE","FALSE","America/Chicago"
-"77068","30.00596","-95.48692","Houston","TX","Texas","TRUE","","11011","1116.5","48201","Harris","{""48201"": ""100""}","Harris","48201","FALSE","FALSE","America/Chicago"
-"77069","29.98568","-95.52439","Houston","TX","Texas","TRUE","","19345","1559.6","48201","Harris","{""48201"": ""100""}","Harris","48201","FALSE","FALSE","America/Chicago"
-"77070","29.97775","-95.57315","Houston","TX","Texas","TRUE","","53057","1571.6","48201","Harris","{""48201"": ""100""}","Harris","48201","FALSE","FALSE","America/Chicago"
-"77071","29.65295","-95.52025","Houston","TX","Texas","TRUE","","28888","2495.7","48201","Harris","{""48201"": ""100""}","Harris","48201","FALSE","FALSE","America/Chicago"
-"77072","29.69965","-95.585","Houston","TX","Texas","TRUE","","61122","3213.4","48201","Harris","{""48201"": ""100""}","Harris","48201","FALSE","FALSE","America/Chicago"
-"77073","29.99986","-95.39958","Houston","TX","Texas","TRUE","","39939","1113.5","48201","Harris","{""48201"": ""100""}","Harris","48201","FALSE","FALSE","America/Chicago"
-"77074","29.68803","-95.51626","Houston","TX","Texas","TRUE","","40978","2906.7","48201","Harris","{""48201"": ""100""}","Harris","48201","FALSE","FALSE","America/Chicago"
-"77075","29.6209","-95.26714","Houston","TX","Texas","TRUE","","44517","1559.5","48201","Harris","{""48201"": ""100""}","Harris","48201","FALSE","FALSE","America/Chicago"
-"77076","29.85962","-95.38351","Houston","TX","Texas","TRUE","","36009","2912.5","48201","Harris","{""48201"": ""100""}","Harris","48201","FALSE","FALSE","America/Chicago"
-"77077","29.75009","-95.61546","Houston","TX","Texas","TRUE","","59588","2630.8","48201","Harris","{""48201"": ""100""}","Harris","48201","FALSE","FALSE","America/Chicago"
-"77078","29.853","-95.2516","Houston","TX","Texas","TRUE","","15663","564.3","48201","Harris","{""48201"": ""100""}","Harris","48201","FALSE","FALSE","America/Chicago"
-"77079","29.77627","-95.60462","Houston","TX","Texas","TRUE","","34122","1785.1","48201","Harris","{""48201"": ""100""}","Harris","48201","FALSE","FALSE","America/Chicago"
-"77080","29.8159","-95.52401","Houston","TX","Texas","TRUE","","45586","2757.6","48201","Harris","{""48201"": ""100""}","Harris","48201","FALSE","FALSE","America/Chicago"
-"77081","29.71203","-95.48118","Houston","TX","Texas","TRUE","","53031","6597.4","48201","Harris","{""48201"": ""100""}","Harris","48201","FALSE","FALSE","America/Chicago"
-"77082","29.72358","-95.64179","Houston","TX","Texas","TRUE","","55056","1699.6","48201","Harris","{""48201"": ""100""}","Harris","48201","FALSE","FALSE","America/Chicago"
-"77083","29.69327","-95.6489","Houston","TX","Texas","TRUE","","78298","2929.7","48201","Harris","{""48201"": ""56"", ""48157"": ""44""}","Harris|Fort Bend","48201|48157","FALSE","FALSE","America/Chicago"
-"77084","29.82642","-95.66213","Houston","TX","Texas","TRUE","","107673","1356.1","48201","Harris","{""48201"": ""100""}","Harris","48201","FALSE","FALSE","America/Chicago"
-"77085","29.62431","-95.48427","Houston","TX","Texas","TRUE","","17991","1315.8","48201","Harris","{""48201"": ""97.31"", ""48157"": ""2.69""}","Harris|Fort Bend","48201|48157","FALSE","FALSE","America/Chicago"
-"77086","29.91819","-95.49109","Houston","TX","Texas","TRUE","","28636","1629.4","48201","Harris","{""48201"": ""100""}","Harris","48201","FALSE","FALSE","America/Chicago"
-"77087","29.68613","-95.30343","Houston","TX","Texas","TRUE","","37886","2202.8","48201","Harris","{""48201"": ""100""}","Harris","48201","FALSE","FALSE","America/Chicago"
-"77088","29.88181","-95.45352","Houston","TX","Texas","TRUE","","55734","1923.6","48201","Harris","{""48201"": ""100""}","Harris","48201","FALSE","FALSE","America/Chicago"
-"77089","29.58673","-95.22523","Houston","TX","Texas","TRUE","","54751","1598.3","48201","Harris","{""48201"": ""100""}","Harris","48201","FALSE","FALSE","America/Chicago"
-"77090","30.00866","-95.44393","Houston","TX","Texas","TRUE","","40761","1914.0","48201","Harris","{""48201"": ""100""}","Harris","48201","FALSE","FALSE","America/Chicago"
-"77091","29.85378","-95.44065","Houston","TX","Texas","TRUE","","27750","1491.3","48201","Harris","{""48201"": ""100""}","Harris","48201","FALSE","FALSE","America/Chicago"
-"77092","29.82968","-95.47383","Houston","TX","Texas","TRUE","","38458","1952.7","48201","Harris","{""48201"": ""100""}","Harris","48201","FALSE","FALSE","America/Chicago"
-"77093","29.86227","-95.341","Houston","TX","Texas","TRUE","","47135","1513.1","48201","Harris","{""48201"": ""100""}","Harris","48201","FALSE","FALSE","America/Chicago"
-"77094","29.7621","-95.67824","Houston","TX","Texas","TRUE","","10271","349.7","48201","Harris","{""48201"": ""100""}","Harris","48201","FALSE","FALSE","America/Chicago"
-"77095","29.9082","-95.65322","Houston","TX","Texas","TRUE","","70692","1771.7","48201","Harris","{""48201"": ""100""}","Harris","48201","FALSE","FALSE","America/Chicago"
-"77096","29.67475","-95.47951","Houston","TX","Texas","TRUE","","32682","2102.9","48201","Harris","{""48201"": ""100""}","Harris","48201","FALSE","FALSE","America/Chicago"
-"77098","29.73487","-95.41529","Houston","TX","Texas","TRUE","","13818","3005.2","48201","Harris","{""48201"": ""100""}","Harris","48201","FALSE","FALSE","America/Chicago"
-"77099","29.67079","-95.58519","Houston","TX","Texas","TRUE","","52294","3248.7","48201","Harris","{""48201"": ""95.59"", ""48157"": ""4.41""}","Harris|Fort Bend","48201|48157","FALSE","FALSE","America/Chicago"
-"77201","29.76601","-95.36456","Houston","TX","Texas","TRUE","","0","0.0","48201","Harris","{""48201"": ""0""}","Harris","48201","FALSE","FALSE","America/Chicago"
-"77301","30.30793","-95.43427","Conroe","TX","Texas","TRUE","","34169","697.9","48339","Montgomery","{""48339"": ""100""}","Montgomery","48339","FALSE","FALSE","America/Chicago"
-"77302","30.22236","-95.359","Conroe","TX","Texas","TRUE","","18658","124.3","48339","Montgomery","{""48339"": ""100""}","Montgomery","48339","FALSE","FALSE","America/Chicago"
-"77303","30.37665","-95.38136","Conroe","TX","Texas","TRUE","","20655","129.0","48339","Montgomery","{""48339"": ""100""}","Montgomery","48339","FALSE","FALSE","America/Chicago"
-"77304","30.32956","-95.5141","Conroe","TX","Texas","TRUE","","33364","339.9","48339","Montgomery","{""48339"": ""100""}","Montgomery","48339","FALSE","FALSE","America/Chicago"
-"77306","30.27974","-95.31255","Conroe","TX","Texas","TRUE","","13569","126.8","48339","Montgomery","{""48339"": ""100""}","Montgomery","48339","FALSE","FALSE","America/Chicago"
-"77316","30.31022","-95.67997","Montgomery","TX","Texas","TRUE","","26119","79.9","48339","Montgomery","{""48339"": ""100""}","Montgomery","48339","FALSE","FALSE","America/Chicago"
-"77318","30.44571","-95.54319","Willis","TX","Texas","TRUE","","16303","164.1","48339","Montgomery","{""48339"": ""100""}","Montgomery","48339","FALSE","FALSE","America/Chicago"
-"77320","30.80399","-95.55092","Huntsville","TX","Texas","TRUE","","36122","43.9","48471","Walker","{""48471"": ""97.06"", ""48407"": ""2.94""}","Walker|San Jacinto","48471|48407","FALSE","FALSE","America/Chicago"
-"77326","30.50488","-94.81705","Ace","TX","Texas","TRUE","","37","6.0","48373","Polk","{""48373"": ""100""}","Polk","48373","FALSE","FALSE","America/Chicago"
-"77327","30.32155","-94.9263","Cleveland","TX","Texas","TRUE","","23274","28.3","48291","Liberty","{""48291"": ""100""}","Liberty","48291","FALSE","FALSE","America/Chicago"
-"77328","30.39628","-95.19391","Cleveland","TX","Texas","TRUE","","14438","34.3","48407","San Jacinto","{""48407"": ""42.09"", ""48339"": ""42.02"", ""48291"": ""15.89""}","San Jacinto|Montgomery|Liberty","48407|48339|48291","FALSE","FALSE","America/Chicago"
-"77331","30.61649","-95.16596","Coldspring","TX","Texas","TRUE","","7971","20.1","48407","San Jacinto","{""48407"": ""100""}","San Jacinto","48407","FALSE","FALSE","America/Chicago"
-"77334","30.77998","-95.36464","Dodge","TX","Texas","TRUE","","358","9.6","48471","Walker","{""48471"": ""100""}","Walker","48471","FALSE","FALSE","America/Chicago"
-"77335","30.58762","-94.92472","Goodrich","TX","Texas","TRUE","","2972","31.4","48373","Polk","{""48373"": ""100""}","Polk","48373","FALSE","FALSE","America/Chicago"
-"77336","30.06429","-95.09884","Huffman","TX","Texas","TRUE","","13156","130.1","48201","Harris","{""48201"": ""100""}","Harris","48201","FALSE","FALSE","America/Chicago"
-"77338","30.00678","-95.29019","Humble","TX","Texas","TRUE","","43558","633.9","48201","Harris","{""48201"": ""100""}","Harris","48201","FALSE","FALSE","America/Chicago"
-"77339","30.04931","-95.22132","Kingwood","TX","Texas","TRUE","","40133","909.8","48201","Harris","{""48201"": ""80.06"", ""48339"": ""19.94""}","Harris|Montgomery","48201|48339","FALSE","FALSE","America/Chicago"
-"77340","30.64369","-95.53981","Huntsville","TX","Texas","TRUE","","31352","55.6","48471","Walker","{""48471"": ""100""}","Walker","48471","FALSE","FALSE","America/Chicago"
-"77342","30.74017","-95.55393","Huntsville","TX","Texas","TRUE","","0","0.0","48471","Walker","{""48471"": ""100""}","Walker","48471","FALSE","FALSE","America/Chicago"
-"77345","30.05416","-95.15899","Kingwood","TX","Texas","TRUE","","27993","1273.8","48201","Harris","{""48201"": ""100""}","Harris","48201","FALSE","FALSE","America/Chicago"
-"77346","29.99497","-95.17718","Humble","TX","Texas","TRUE","","66805","1484.7","48201","Harris","{""48201"": ""100""}","Harris","48201","FALSE","FALSE","America/Chicago"
-"77350","30.82867","-94.84797","Leggett","TX","Texas","TRUE","","135","19.8","48373","Polk","{""48373"": ""100""}","Polk","48373","FALSE","FALSE","America/Chicago"
-"77351","30.7127","-94.82192","Livingston","TX","Texas","TRUE","","34366","19.8","48373","Polk","{""48373"": ""100""}","Polk","48373","FALSE","FALSE","America/Chicago"
-"77354","30.21107","-95.64787","Magnolia","TX","Texas","TRUE","","37058","189.2","48339","Montgomery","{""48339"": ""100""}","Montgomery","48339","FALSE","FALSE","America/Chicago"
-"77355","30.15769","-95.74805","Magnolia","TX","Texas","TRUE","","29281","198.0","48339","Montgomery","{""48339"": ""95.84"", ""48473"": ""4.16""}","Montgomery|Waller","48339|48473","FALSE","FALSE","America/Chicago"
-"77356","30.45055","-95.70183","Montgomery","TX","Texas","TRUE","","26987","80.0","48339","Montgomery","{""48339"": ""99.54"", ""48185"": ""0.46""}","Montgomery|Grimes","48339|48185","FALSE","FALSE","America/Chicago"
-"77357","30.15846","-95.19112","New Caney","TX","Texas","TRUE","","27721","170.8","48339","Montgomery","{""48339"": ""97.58"", ""48201"": ""2.42""}","Montgomery|Harris","48339|48201","FALSE","FALSE","America/Chicago"
-"77358","30.55776","-95.43502","New Waverly","TX","Texas","TRUE","","5565","17.4","48471","Walker","{""48471"": ""77.23"", ""48407"": ""15.46"", ""48339"": ""7.31""}","Walker|San Jacinto|Montgomery","48471|48407|48339","FALSE","FALSE","America/Chicago"
-"77359","30.75385","-95.29988","Oakhurst","TX","Texas","TRUE","","425","3.1","48407","San Jacinto","{""48407"": ""100""}","San Jacinto","48407","FALSE","FALSE","America/Chicago"
-"77360","30.84704","-95.11402","Onalaska","TX","Texas","TRUE","","5115","60.1","48373","Polk","{""48373"": ""100""}","Polk","48373","FALSE","FALSE","America/Chicago"
-"77362","30.15825","-95.66832","Pinehurst","TX","Texas","TRUE","","6435","301.0","48339","Montgomery","{""48339"": ""100""}","Montgomery","48339","FALSE","FALSE","America/Chicago"
-"77363","30.32935","-95.85388","Plantersville","TX","Texas","TRUE","","2853","15.9","48185","Grimes","{""48185"": ""93.7"", ""48473"": ""6.3""}","Grimes|Waller","48185|48473","FALSE","FALSE","America/Chicago"
-"77364","30.76591","-95.22091","Pointblank","TX","Texas","TRUE","","1828","23.3","48407","San Jacinto","{""48407"": ""100""}","San Jacinto","48407","FALSE","FALSE","America/Chicago"
-"77365","30.1111","-95.2675","Porter","TX","Texas","TRUE","","36755","402.0","48339","Montgomery","{""48339"": ""99.45"", ""48201"": ""0.55""}","Montgomery|Harris","48339|48201","FALSE","FALSE","America/Chicago"
-"77367","30.85587","-95.39831","Riverside","TX","Texas","TRUE","","80","38.2","48471","Walker","{""48471"": ""100""}","Walker","48471","FALSE","FALSE","America/Chicago"
-"77368","30.45857","-94.82625","Romayor","TX","Texas","TRUE","","223","11.4","48291","Liberty","{""48291"": ""100""}","Liberty","48291","FALSE","FALSE","America/Chicago"
-"77369","30.42364","-94.7452","Rye","TX","Texas","TRUE","","555","5.8","48291","Liberty","{""48291"": ""94.5"", ""48199"": ""5.5""}","Liberty|Hardin","48291|48199","FALSE","FALSE","America/Chicago"
-"77371","30.49363","-94.99091","Shepherd","TX","Texas","TRUE","","8036","24.4","48407","San Jacinto","{""48407"": ""99.83"", ""48291"": ""0.17""}","San Jacinto|Liberty","48407|48291","FALSE","FALSE","America/Chicago"
-"77372","30.2408","-95.16108","Splendora","TX","Texas","TRUE","","14116","105.1","48339","Montgomery","{""48339"": ""76.82"", ""48291"": ""23.18""}","Montgomery|Liberty","48339|48291","FALSE","FALSE","America/Chicago"
-"77373","30.06145","-95.38415","Spring","TX","Texas","TRUE","","61501","1000.0","48201","Harris","{""48201"": ""100""}","Harris","48201","FALSE","FALSE","America/Chicago"
-"77374","30.39595","-94.62253","Thicket","TX","Texas","TRUE","","536","4.0","48199","Hardin","{""48199"": ""100""}","Hardin","48199","FALSE","FALSE","America/Chicago"
-"77375","30.09544","-95.5894","Tomball","TX","Texas","TRUE","","55759","627.7","48201","Harris","{""48201"": ""100""}","Harris","48201","FALSE","FALSE","America/Chicago"
-"77376","30.44803","-94.67384","Votaw","TX","Texas","TRUE","","569","7.1","48199","Hardin","{""48199"": ""100""}","Hardin","48199","FALSE","FALSE","America/Chicago"
-"77377","30.06135","-95.68201","Tomball","TX","Texas","TRUE","","38469","379.7","48201","Harris","{""48201"": ""100""}","Harris","48201","FALSE","FALSE","America/Chicago"
-"77378","30.4574","-95.36867","Willis","TX","Texas","TRUE","","17616","69.9","48339","Montgomery","{""48339"": ""91.07"", ""48407"": ""8.93""}","Montgomery|San Jacinto","48339|48407","FALSE","FALSE","America/Chicago"
-"77379","30.03912","-95.53382","Spring","TX","Texas","TRUE","","81368","1234.0","48201","Harris","{""48201"": ""100""}","Harris","48201","FALSE","FALSE","America/Chicago"
-"77380","30.13645","-95.46866","Spring","TX","Texas","TRUE","","25761","801.2","48339","Montgomery","{""48339"": ""100""}","Montgomery","48339","FALSE","FALSE","America/Chicago"
-"77381","30.17818","-95.50144","Spring","TX","Texas","TRUE","","36160","1071.8","48339","Montgomery","{""48339"": ""100""}","Montgomery","48339","FALSE","FALSE","America/Chicago"
-"77382","30.19804","-95.54606","Spring","TX","Texas","TRUE","","41581","1418.8","48339","Montgomery","{""48339"": ""100""}","Montgomery","48339","FALSE","FALSE","America/Chicago"
-"77384","30.23494","-95.49526","Conroe","TX","Texas","TRUE","","19467","430.4","48339","Montgomery","{""48339"": ""100""}","Montgomery","48339","FALSE","FALSE","America/Chicago"
-"77385","30.18888","-95.42223","Conroe","TX","Texas","TRUE","","25160","441.6","48339","Montgomery","{""48339"": ""100""}","Montgomery","48339","FALSE","FALSE","America/Chicago"
-"77386","30.10125","-95.35584","Spring","TX","Texas","TRUE","","57421","547.6","48339","Montgomery","{""48339"": ""100""}","Montgomery","48339","FALSE","FALSE","America/Chicago"
-"77388","30.05984","-95.46851","Spring","TX","Texas","TRUE","","50701","1412.2","48201","Harris","{""48201"": ""100""}","Harris","48201","FALSE","FALSE","America/Chicago"
-"77389","30.11516","-95.5075","Spring","TX","Texas","TRUE","","38222","702.8","48201","Harris","{""48201"": ""100""}","Harris","48201","FALSE","FALSE","America/Chicago"
-"77396","29.94822","-95.25991","Humble","TX","Texas","TRUE","","58396","840.2","48201","Harris","{""48201"": ""100""}","Harris","48201","FALSE","FALSE","America/Chicago"
-"77401","29.70443","-95.46175","Bellaire","TX","Texas","TRUE","","19372","2002.8","48201","Harris","{""48201"": ""100""}","Harris","48201","FALSE","FALSE","America/Chicago"
-"77406","29.64359","-95.79799","Richmond","TX","Texas","TRUE","","49261","293.2","48157","Fort Bend","{""48157"": ""100""}","Fort Bend","48157","FALSE","FALSE","America/Chicago"
-"77407","29.67651","-95.71253","Richmond","TX","Texas","TRUE","","60000","1224.0","48157","Fort Bend","{""48157"": ""100""}","Fort Bend","48157","FALSE","FALSE","America/Chicago"
-"77412","29.555","-96.42816","Altair","TX","Texas","TRUE","","44","2.0","48089","Colorado","{""48089"": ""100""}","Colorado","48089","FALSE","FALSE","America/Chicago"
-"77414","28.89958","-95.88091","Bay City","TX","Texas","TRUE","","23982","17.9","48321","Matagorda","{""48321"": ""100""}","Matagorda","48321","FALSE","FALSE","America/Chicago"
-"77415","28.93254","-95.73575","Cedar Lane","TX","Texas","TRUE","","88","19.6","48321","Matagorda","{""48321"": ""100""}","Matagorda","48321","FALSE","FALSE","America/Chicago"
-"77417","29.46457","-95.96703","Beasley","TX","Texas","TRUE","","2550","16.4","48157","Fort Bend","{""48157"": ""100""}","Fort Bend","48157","FALSE","FALSE","America/Chicago"
-"77418","29.97879","-96.25055","Bellville","TX","Texas","TRUE","","10537","21.4","48015","Austin","{""48015"": ""100""}","Austin","48015","FALSE","FALSE","America/Chicago"
-"77419","28.85073","-96.2561","Blessing","TX","Texas","TRUE","","1253","7.7","48321","Matagorda","{""48321"": ""100""}","Matagorda","48321","FALSE","FALSE","America/Chicago"
-"77420","29.2581","-95.93008","Boling","TX","Texas","TRUE","","2695","19.5","48481","Wharton","{""48481"": ""100""}","Wharton","48481","FALSE","FALSE","America/Chicago"
-"77422","28.96092","-95.56105","Brazoria","TX","Texas","TRUE","","13194","29.8","48039","Brazoria","{""48039"": ""100""}","Brazoria","48039","FALSE","FALSE","America/Chicago"
-"77423","29.83893","-95.98251","Brookshire","TX","Texas","TRUE","","12377","33.1","48473","Waller","{""48473"": ""97.09"", ""48157"": ""2.91""}","Waller|Fort Bend","48473|48157","FALSE","FALSE","America/Chicago"
-"77426","30.11817","-96.24904","Chappell Hill","TX","Texas","TRUE","","2524","11.0","48477","Washington","{""48477"": ""93.33"", ""48015"": ""6.67""}","Washington|Austin","48477|48015","FALSE","FALSE","America/Chicago"
-"77428","28.62311","-96.18975","Collegeport","TX","Texas","TRUE","","0","0.0","48321","Matagorda","{""48321"": ""100""}","Matagorda","48321","FALSE","FALSE","America/Chicago"
-"77429","29.99104","-95.6588","Cypress","TX","Texas","TRUE","","88628","893.3","48201","Harris","{""48201"": ""100""}","Harris","48201","FALSE","FALSE","America/Chicago"
-"77430","29.26718","-95.65366","Damon","TX","Texas","TRUE","","2078","7.2","48039","Brazoria","{""48039"": ""64.96"", ""48157"": ""35.04""}","Brazoria|Fort Bend","48039|48157","FALSE","FALSE","America/Chicago"
-"77432","29.06993","-96.19387","Danevang","TX","Texas","TRUE","","47","0.7","48481","Wharton","{""48481"": ""100""}","Wharton","48481","FALSE","FALSE","America/Chicago"
-"77433","29.94911","-95.73923","Cypress","TX","Texas","TRUE","","90657","599.2","48201","Harris","{""48201"": ""100""}","Harris","48201","FALSE","FALSE","America/Chicago"
-"77434","29.52568","-96.30214","Eagle Lake","TX","Texas","TRUE","","4740","9.6","48089","Colorado","{""48089"": ""89.66"", ""48481"": ""10.34""}","Colorado|Wharton","48089|48481","FALSE","FALSE","America/Chicago"
-"77435","29.51733","-96.11114","East Bernard","TX","Texas","TRUE","","4031","11.1","48481","Wharton","{""48481"": ""90.5"", ""48157"": ""9.03"", ""48089"": ""0.46""}","Wharton|Fort Bend|Colorado","48481|48157|48089","FALSE","FALSE","America/Chicago"
-"77436","29.42393","-96.23226","Egypt","TX","Texas","TRUE","","54","3.2","48481","Wharton","{""48481"": ""100""}","Wharton","48481","FALSE","FALSE","America/Chicago"
-"77437","29.21304","-96.28036","El Campo","TX","Texas","TRUE","","16913","20.3","48481","Wharton","{""48481"": ""100""}","Wharton","48481","FALSE","FALSE","America/Chicago"
-"77440","28.89492","-96.15082","Elmaton","TX","Texas","TRUE","","27","2.0","48321","Matagorda","{""48321"": ""100""}","Matagorda","48321","FALSE","FALSE","America/Chicago"
-"77441","29.66824","-95.92279","Fulshear","TX","Texas","TRUE","","12559","110.9","48157","Fort Bend","{""48157"": ""100""}","Fort Bend","48157","FALSE","FALSE","America/Chicago"
-"77442","29.42428","-96.50681","Garwood","TX","Texas","TRUE","","996","2.0","48089","Colorado","{""48089"": ""100""}","Colorado","48089","FALSE","FALSE","America/Chicago"
-"77443","29.34828","-96.19267","Glen Flora","TX","Texas","TRUE","","300","380.5","48481","Wharton","{""48481"": ""100""}","Wharton","48481","FALSE","FALSE","America/Chicago"
-"77444","29.28815","-95.77719","Guy","TX","Texas","TRUE","","534","5.5","48157","Fort Bend","{""48157"": ""67.98"", ""48039"": ""32.02""}","Fort Bend|Brazoria","48157|48039","FALSE","FALSE","America/Chicago"
-"77445","30.09968","-96.06494","Hempstead","TX","Texas","TRUE","","14200","31.0","48473","Waller","{""48473"": ""100""}","Waller","48473","FALSE","FALSE","America/Chicago"
-"77446","30.08681","-95.99051","Prairie View","TX","Texas","TRUE","","6520","383.8","48473","Waller","{""48473"": ""100""}","Waller","48473","FALSE","FALSE","America/Chicago"
-"77447","30.05124","-95.83044","Hockley","TX","Texas","TRUE","","16246","62.5","48201","Harris","{""48201"": ""58.2"", ""48473"": ""31.78"", ""48339"": ""10.02""}","Harris|Waller|Montgomery","48201|48473|48339","FALSE","FALSE","America/Chicago"
-"77448","29.41534","-96.08656","Hungerford","TX","Texas","TRUE","","131","8.0","48481","Wharton","{""48481"": ""100""}","Wharton","48481","FALSE","FALSE","America/Chicago"
-"77449","29.83556","-95.73813","Katy","TX","Texas","TRUE","","128294","1658.0","48201","Harris","{""48201"": ""100""}","Harris","48201","FALSE","FALSE","America/Chicago"
-"77450","29.74629","-95.73832","Katy","TX","Texas","TRUE","","73692","1391.6","48201","Harris","{""48201"": ""66.63"", ""48157"": ""33.37""}","Harris|Fort Bend","48201|48157","FALSE","FALSE","America/Chicago"
-"77451","29.4379","-96.00165","Kendleton","TX","Texas","TRUE","","53","17.7","48157","Fort Bend","{""48157"": ""100""}","Fort Bend","48157","FALSE","FALSE","America/Chicago"
-"77453","29.21196","-95.99945","Lane City","TX","Texas","TRUE","","393","13.1","48481","Wharton","{""48481"": ""100""}","Wharton","48481","FALSE","FALSE","America/Chicago"
-"77454","29.52037","-96.21862","Lissie","TX","Texas","TRUE","","0","0.0","48481","Wharton","{""48481"": ""100""}","Wharton","48481","FALSE","FALSE","America/Chicago"
-"77455","29.13955","-96.43031","Louise","TX","Texas","TRUE","","2194","4.0","48481","Wharton","{""48481"": ""98.53"", ""48239"": ""1.47""}","Wharton|Jackson","48481|48239","FALSE","FALSE","America/Chicago"
-"77456","29.00035","-96.09033","Markham","TX","Texas","TRUE","","1384","10.2","48321","Matagorda","{""48321"": ""100""}","Matagorda","48321","FALSE","FALSE","America/Chicago"
-"77457","28.70908","-95.92228","Matagorda","TX","Texas","TRUE","","488","18.6","48321","Matagorda","{""48321"": ""100""}","Matagorda","48321","FALSE","FALSE","America/Chicago"
-"77458","28.95289","-96.24036","Midfield","TX","Texas","TRUE","","210","2.2","48321","Matagorda","{""48321"": ""100""}","Matagorda","48321","FALSE","FALSE","America/Chicago"
-"77459","29.52565","-95.53298","Missouri City","TX","Texas","TRUE","","72788","858.2","48157","Fort Bend","{""48157"": ""100""}","Fort Bend","48157","FALSE","FALSE","America/Chicago"
-"77460","29.39744","-96.38451","Nada","TX","Texas","TRUE","","39","21.7","48089","Colorado","{""48089"": ""100""}","Colorado","48089","FALSE","FALSE","America/Chicago"
-"77461","29.38013","-95.80672","Needville","TX","Texas","TRUE","","11447","29.9","48157","Fort Bend","{""48157"": ""100""}","Fort Bend","48157","FALSE","FALSE","America/Chicago"
-"77464","29.59337","-95.96175","Orchard","TX","Texas","TRUE","","99","20.7","48157","Fort Bend","{""48157"": ""100""}","Fort Bend","48157","FALSE","FALSE","America/Chicago"
-"77465","28.76248","-96.22968","Palacios","TX","Texas","TRUE","","7151","14.2","48321","Matagorda","{""48321"": ""90.48"", ""48239"": ""8.18"", ""48057"": ""1.34""}","Matagorda|Jackson|Calhoun","48321|48239|48057","FALSE","FALSE","America/Chicago"
-"77466","29.80562","-96.01287","Pattison","TX","Texas","TRUE","","511","17.1","48473","Waller","{""48473"": ""100""}","Waller","48473","FALSE","FALSE","America/Chicago"
-"77467","29.21068","-96.12324","Pierce","TX","Texas","TRUE","","17","0.3","48481","Wharton","{""48481"": ""100""}","Wharton","48481","FALSE","FALSE","America/Chicago"
-"77468","29.14259","-95.93111","Pledger","TX","Texas","TRUE","","39","0.8","48321","Matagorda","{""48321"": ""100""}","Matagorda","48321","FALSE","FALSE","America/Chicago"
-"77469","29.48","-95.68313","Richmond","TX","Texas","TRUE","","53992","159.5","48157","Fort Bend","{""48157"": ""100""}","Fort Bend","48157","FALSE","FALSE","America/Chicago"
-"77470","29.53214","-96.55145","Rock Island","TX","Texas","TRUE","","374","5.1","48089","Colorado","{""48089"": ""100""}","Colorado","48089","FALSE","FALSE","America/Chicago"
-"77471","29.54596","-95.86815","Rosenberg","TX","Texas","TRUE","","41212","184.3","48157","Fort Bend","{""48157"": ""100""}","Fort Bend","48157","FALSE","FALSE","America/Chicago"
-"77473","29.79516","-96.1077","San Felipe","TX","Texas","TRUE","","77","253.6","48015","Austin","{""48015"": ""100""}","Austin","48015","FALSE","FALSE","America/Chicago"
-"77474","29.77377","-96.17926","Sealy","TX","Texas","TRUE","","12487","23.2","48015","Austin","{""48015"": ""100""}","Austin","48015","FALSE","FALSE","America/Chicago"
-"77475","29.49304","-96.65871","Sheridan","TX","Texas","TRUE","","790","12.8","48089","Colorado","{""48089"": ""100""}","Colorado","48089","FALSE","FALSE","America/Chicago"
-"77476","29.67246","-95.98329","Simonton","TX","Texas","TRUE","","204","15.3","48157","Fort Bend","{""48157"": ""100""}","Fort Bend","48157","FALSE","FALSE","America/Chicago"
-"77477","29.62571","-95.56673","Stafford","TX","Texas","TRUE","","35830","1319.1","48157","Fort Bend","{""48157"": ""89.44"", ""48201"": ""10.56""}","Fort Bend|Harris","48157|48201","FALSE","FALSE","America/Chicago"
-"77478","29.61964","-95.607","Sugar Land","TX","Texas","TRUE","","25721","1022.6","48157","Fort Bend","{""48157"": ""100""}","Fort Bend","48157","FALSE","FALSE","America/Chicago"
-"77479","29.56646","-95.63557","Sugar Land","TX","Texas","TRUE","","93848","1100.0","48157","Fort Bend","{""48157"": ""100""}","Fort Bend","48157","FALSE","FALSE","America/Chicago"
-"77480","29.09233","-95.766","Sweeny","TX","Texas","TRUE","","8055","21.8","48039","Brazoria","{""48039"": ""95.69"", ""48321"": ""4.31""}","Brazoria|Matagorda","48039|48321","FALSE","FALSE","America/Chicago"
-"77481","29.47038","-95.56","Thompsons","TX","Texas","TRUE","","35","1.7","48157","Fort Bend","{""48157"": ""100""}","Fort Bend","48157","FALSE","FALSE","America/Chicago"
-"77482","29.1021","-95.8802","Van Vleck","TX","Texas","TRUE","","1779","11.6","48321","Matagorda","{""48321"": ""100""}","Matagorda","48321","FALSE","FALSE","America/Chicago"
-"77483","28.78761","-95.83652","Wadsworth","TX","Texas","TRUE","","309","3.3","48321","Matagorda","{""48321"": ""100""}","Matagorda","48321","FALSE","FALSE","America/Chicago"
-"77484","30.07526","-95.93087","Waller","TX","Texas","TRUE","","10875","27.1","48473","Waller","{""48473"": ""78.28"", ""48201"": ""19.73"", ""48185"": ""1.99""}","Waller|Harris|Grimes","48473|48201|48185","FALSE","FALSE","America/Chicago"
-"77485","29.63418","-96.05612","Wallis","TX","Texas","TRUE","","4627","21.4","48015","Austin","{""48015"": ""54.76"", ""48157"": ""45.09"", ""48481"": ""0.15""}","Austin|Fort Bend|Wharton","48015|48157|48481","FALSE","FALSE","America/Chicago"
-"77486","29.15812","-95.68094","West Columbia","TX","Texas","TRUE","","7491","60.9","48039","Brazoria","{""48039"": ""100""}","Brazoria","48039","FALSE","FALSE","America/Chicago"
-"77488","29.30684","-96.09126","Wharton","TX","Texas","TRUE","","14525","25.8","48481","Wharton","{""48481"": ""100""}","Wharton","48481","FALSE","FALSE","America/Chicago"
-"77489","29.6006","-95.5163","Missouri City","TX","Texas","TRUE","","38242","1315.7","48157","Fort Bend","{""48157"": ""96.7"", ""48201"": ""3.3""}","Fort Bend|Harris","48157|48201","FALSE","FALSE","America/Chicago"
-"77493","29.85208","-95.83094","Katy","TX","Texas","TRUE","","36334","243.1","48201","Harris","{""48201"": ""89.18"", ""48473"": ""10.08"", ""48157"": ""0.73""}","Harris|Waller|Fort Bend","48201|48473|48157","FALSE","FALSE","America/Chicago"
-"77494","29.7433","-95.82862","Katy","TX","Texas","TRUE","","118291","1117.8","48157","Fort Bend","{""48157"": ""91.69"", ""48201"": ""8.13"", ""48473"": ""0.18""}","Fort Bend|Harris|Waller","48157|48201|48473","FALSE","FALSE","America/Chicago"
-"77498","29.64338","-95.65236","Sugar Land","TX","Texas","TRUE","","51293","1276.7","48157","Fort Bend","{""48157"": ""100""}","Fort Bend","48157","FALSE","FALSE","America/Chicago"
-"77502","29.67951","-95.19976","Pasadena","TX","Texas","TRUE","","38199","2626.8","48201","Harris","{""48201"": ""100""}","Harris","48201","FALSE","FALSE","America/Chicago"
-"77503","29.70218","-95.15943","Pasadena","TX","Texas","TRUE","","24808","1109.6","48201","Harris","{""48201"": ""100""}","Harris","48201","FALSE","FALSE","America/Chicago"
-"77504","29.64802","-95.18997","Pasadena","TX","Texas","TRUE","","24954","1742.6","48201","Harris","{""48201"": ""100""}","Harris","48201","FALSE","FALSE","America/Chicago"
-"77505","29.64607","-95.13825","Pasadena","TX","Texas","TRUE","","24223","1022.2","48201","Harris","{""48201"": ""100""}","Harris","48201","FALSE","FALSE","America/Chicago"
-"77506","29.7149","-95.20013","Pasadena","TX","Texas","TRUE","","38765","1634.3","48201","Harris","{""48201"": ""100""}","Harris","48201","FALSE","FALSE","America/Chicago"
-"77507","29.62601","-95.06443","Pasadena","TX","Texas","TRUE","","312","8.6","48201","Harris","{""48201"": ""0""}","Harris","48201","FALSE","FALSE","America/Chicago"
-"77510","29.36107","-95.08555","Santa Fe","TX","Texas","TRUE","","14485","190.8","48167","Galveston","{""48167"": ""100""}","Galveston","48167","FALSE","FALSE","America/Chicago"
-"77511","29.38147","-95.24204","Alvin","TX","Texas","TRUE","","47556","115.8","48039","Brazoria","{""48039"": ""93.88"", ""48167"": ""6.12""}","Brazoria|Galveston","48039|48167","FALSE","FALSE","America/Chicago"
-"77514","29.68073","-94.59949","Anahuac","TX","Texas","TRUE","","5127","9.1","48071","Chambers","{""48071"": ""100""}","Chambers","48071","FALSE","FALSE","America/Chicago"
-"77515","29.17436","-95.44993","Angleton","TX","Texas","TRUE","","32469","61.1","48039","Brazoria","{""48039"": ""100""}","Brazoria","48039","FALSE","FALSE","America/Chicago"
-"77517","29.36962","-95.13221","Santa Fe","TX","Texas","TRUE","","5677","108.7","48167","Galveston","{""48167"": ""100""}","Galveston","48167","FALSE","FALSE","America/Chicago"
-"77518","29.50703","-94.98696","Bacliff","TX","Texas","TRUE","","10856","1445.6","48167","Galveston","{""48167"": ""100""}","Galveston","48167","FALSE","FALSE","America/Chicago"
-"77519","30.23425","-94.60224","Batson","TX","Texas","TRUE","","1066","9.9","48199","Hardin","{""48199"": ""100""}","Hardin","48199","FALSE","FALSE","America/Chicago"
-"77520","29.73895","-94.99829","Baytown","TX","Texas","TRUE","","35350","570.7","48201","Harris","{""48201"": ""100""}","Harris","48201","FALSE","FALSE","America/Chicago"
-"77521","29.79848","-94.96591","Baytown","TX","Texas","TRUE","","60164","559.8","48201","Harris","{""48201"": ""94.09"", ""48071"": ""5.91""}","Harris|Chambers","48201|48071","FALSE","FALSE","America/Chicago"
-"77523","29.78789","-94.86717","Baytown","TX","Texas","TRUE","","23501","100.8","48071","Chambers","{""48071"": ""100""}","Chambers","48071","FALSE","FALSE","America/Chicago"
-"77530","29.78836","-95.11149","Channelview","TX","Texas","TRUE","","33437","977.9","48201","Harris","{""48201"": ""100""}","Harris","48201","FALSE","FALSE","America/Chicago"
-"77531","29.04935","-95.39242","Clute","TX","Texas","TRUE","","16228","317.3","48039","Brazoria","{""48039"": ""100""}","Brazoria","48039","FALSE","FALSE","America/Chicago"
-"77532","29.93018","-95.05654","Crosby","TX","Texas","TRUE","","29963","147.5","48201","Harris","{""48201"": ""100""}","Harris","48201","FALSE","FALSE","America/Chicago"
-"77533","30.09162","-94.59604","Daisetta","TX","Texas","TRUE","","938","14.1","48291","Liberty","{""48291"": ""100""}","Liberty","48291","FALSE","FALSE","America/Chicago"
-"77534","29.22632","-95.30893","Danbury","TX","Texas","TRUE","","2256","24.2","48039","Brazoria","{""48039"": ""100""}","Brazoria","48039","FALSE","FALSE","America/Chicago"
-"77535","30.05703","-94.91786","Dayton","TX","Texas","TRUE","","34537","42.5","48291","Liberty","{""48291"": ""94.35"", ""48071"": ""5.65""}","Liberty|Chambers","48291|48071","FALSE","FALSE","America/Chicago"
-"77536","29.69839","-95.12128","Deer Park","TX","Texas","TRUE","","32146","988.7","48201","Harris","{""48201"": ""100""}","Harris","48201","FALSE","FALSE","America/Chicago"
-"77538","29.99154","-94.53111","Devers","TX","Texas","TRUE","","1042","2.8","48291","Liberty","{""48291"": ""100""}","Liberty","48291","FALSE","FALSE","America/Chicago"
-"77539","29.456","-95.03172","Dickinson","TX","Texas","TRUE","","46032","352.8","48167","Galveston","{""48167"": ""100""}","Galveston","48167","FALSE","FALSE","America/Chicago"
-"77541","29.02696","-95.3112","Freeport","TX","Texas","TRUE","","18609","59.1","48039","Brazoria","{""48039"": ""100""}","Brazoria","48039","FALSE","FALSE","America/Chicago"
-"77545","29.53635","-95.47456","Fresno","TX","Texas","TRUE","","25226","796.5","48157","Fort Bend","{""48157"": ""100""}","Fort Bend","48157","FALSE","FALSE","America/Chicago"
-"77546","29.51493","-95.19218","Friendswood","TX","Texas","TRUE","","53623","785.6","48167","Galveston","{""48167"": ""53.56"", ""48201"": ""46.44""}","Galveston|Harris","48167|48201","FALSE","FALSE","America/Chicago"
-"77547","29.73604","-95.23785","Galena Park","TX","Texas","TRUE","","9925","1436.9","48201","Harris","{""48201"": ""100""}","Harris","48201","FALSE","FALSE","America/Chicago"
-"77550","29.3098","-94.77746","Galveston","TX","Texas","TRUE","","21863","1124.4","48167","Galveston","{""48167"": ""100""}","Galveston","48167","FALSE","FALSE","America/Chicago"
-"77551","29.27872","-94.83323","Galveston","TX","Texas","TRUE","","21929","2222.3","48167","Galveston","{""48167"": ""100""}","Galveston","48167","FALSE","FALSE","America/Chicago"
-"77554","29.2456","-94.92348","Galveston","TX","Texas","TRUE","","8556","93.6","48167","Galveston","{""48167"": ""100""}","Galveston","48167","FALSE","FALSE","America/Chicago"
-"77560","29.87662","-94.59323","Hankamer","TX","Texas","TRUE","","337","4.2","48071","Chambers","{""48071"": ""98.81"", ""48291"": ""1.19""}","Chambers|Liberty","48071|48291","FALSE","FALSE","America/Chicago"
-"77561","30.16651","-94.73547","Hardin","TX","Texas","TRUE","","103","73.2","48291","Liberty","{""48291"": ""100""}","Liberty","48291","FALSE","FALSE","America/Chicago"
-"77562","29.83106","-95.05353","Highlands","TX","Texas","TRUE","","10680","277.9","48201","Harris","{""48201"": ""100""}","Harris","48201","FALSE","FALSE","America/Chicago"
-"77563","29.29417","-95.03031","Hitchcock","TX","Texas","TRUE","","11027","81.0","48167","Galveston","{""48167"": ""100""}","Galveston","48167","FALSE","FALSE","America/Chicago"
-"77564","30.20361","-94.66743","Hull","TX","Texas","TRUE","","1888","13.9","48291","Liberty","{""48291"": ""93.46"", ""48199"": ""6.54""}","Liberty|Hardin","48291|48199","FALSE","FALSE","America/Chicago"
-"77565","29.53619","-95.03021","Kemah","TX","Texas","TRUE","","8650","876.4","48167","Galveston","{""48167"": ""100""}","Galveston","48167","FALSE","FALSE","America/Chicago"
-"77566","29.05026","-95.47542","Lake Jackson","TX","Texas","TRUE","","29436","480.2","48039","Brazoria","{""48039"": ""100""}","Brazoria","48039","FALSE","FALSE","America/Chicago"
-"77568","29.36383","-94.97975","La Marque","TX","Texas","TRUE","","15680","480.9","48167","Galveston","{""48167"": ""100""}","Galveston","48167","FALSE","FALSE","America/Chicago"
-"77571","29.69052","-95.05359","La Porte","TX","Texas","TRUE","","37427","413.4","48201","Harris","{""48201"": ""100""}","Harris","48201","FALSE","FALSE","America/Chicago"
-"77573","29.50205","-95.08652","League City","TX","Texas","TRUE","","88131","1128.9","48167","Galveston","{""48167"": ""100""}","Galveston","48167","FALSE","FALSE","America/Chicago"
-"77575","30.07534","-94.73395","Liberty","TX","Texas","TRUE","","16884","27.2","48291","Liberty","{""48291"": ""99.74"", ""48071"": ""0.26""}","Liberty|Chambers","48291|48071","FALSE","FALSE","America/Chicago"
-"77577","29.27976","-95.27872","Liverpool","TX","Texas","TRUE","","1481","28.7","48039","Brazoria","{""48039"": ""100""}","Brazoria","48039","FALSE","FALSE","America/Chicago"
-"77578","29.48132","-95.36559","Manvel","TX","Texas","TRUE","","22527","232.9","48039","Brazoria","{""48039"": ""100""}","Brazoria","48039","FALSE","FALSE","America/Chicago"
-"77580","29.8676","-94.86923","Mont Belvieu","TX","Texas","TRUE","","1099","137.1","48071","Chambers","{""48071"": ""100""}","Chambers","48071","FALSE","FALSE","America/Chicago"
-"77581","29.56048","-95.27753","Pearland","TX","Texas","TRUE","","48438","725.5","48039","Brazoria","{""48039"": ""90.93"", ""48201"": ""9.07""}","Brazoria|Harris","48039|48201","FALSE","FALSE","America/Chicago"
-"77583","29.38137","-95.46219","Rosharon","TX","Texas","TRUE","","40514","93.7","48039","Brazoria","{""48039"": ""77.39"", ""48157"": ""22.61""}","Brazoria|Fort Bend","48039|48157","FALSE","FALSE","America/Chicago"
-"77584","29.546","-95.35081","Pearland","TX","Texas","TRUE","","90372","1087.2","48039","Brazoria","{""48039"": ""98.97"", ""48157"": ""1.03""}","Brazoria|Fort Bend","48039|48157","FALSE","FALSE","America/Chicago"
-"77585","30.29552","-94.52242","Saratoga","TX","Texas","TRUE","","986","3.6","48199","Hardin","{""48199"": ""100""}","Hardin","48199","FALSE","FALSE","America/Chicago"
-"77586","29.58428","-95.03611","Seabrook","TX","Texas","TRUE","","22548","670.2","48201","Harris","{""48201"": ""100""}","Harris","48201","FALSE","FALSE","America/Chicago"
-"77587","29.66108","-95.22955","South Houston","TX","Texas","TRUE","","16928","2207.8","48201","Harris","{""48201"": ""100""}","Harris","48201","FALSE","FALSE","America/Chicago"
-"77590","29.39095","-94.91973","Texas City","TX","Texas","TRUE","","31604","691.5","48167","Galveston","{""48167"": ""100""}","Galveston","48167","FALSE","FALSE","America/Chicago"
-"77591","29.39941","-94.99751","Texas City","TX","Texas","TRUE","","14936","534.0","48167","Galveston","{""48167"": ""100""}","Galveston","48167","FALSE","FALSE","America/Chicago"
-"77597","29.83708","-94.70221","Wallisville","TX","Texas","TRUE","","986","17.5","48071","Chambers","{""48071"": ""100""}","Chambers","48071","FALSE","FALSE","America/Chicago"
-"77598","29.53784","-95.13685","Webster","TX","Texas","TRUE","","26460","843.7","48201","Harris","{""48201"": ""100""}","Harris","48201","FALSE","FALSE","America/Chicago"
-"77611","30.0132","-93.82257","Bridge City","TX","Texas","TRUE","","8578","137.4","48361","Orange","{""48361"": ""100""}","Orange","48361","FALSE","FALSE","America/Chicago"
-"77612","30.40615","-93.92573","Buna","TX","Texas","TRUE","","9408","10.5","48241","Jasper","{""48241"": ""91.81"", ""48351"": ""8.19""}","Jasper|Newton","48241|48351","FALSE","FALSE","America/Chicago"
-"77613","30.04723","-94.35561","China","TX","Texas","TRUE","","1097","11.1","48245","Jefferson","{""48245"": ""100""}","Jefferson","48245","FALSE","FALSE","America/Chicago"
-"77614","30.30478","-93.76105","Deweyville","TX","Texas","TRUE","","265","10.0","48351","Newton","{""48351"": ""100""}","Newton","48351","FALSE","FALSE","America/Chicago"
-"77615","30.32407","-94.05969","Evadale","TX","Texas","TRUE","","1084","27.6","48241","Jasper","{""48241"": ""100""}","Jasper","48241","FALSE","FALSE","America/Chicago"
-"77616","30.56777","-94.17998","Fred","TX","Texas","TRUE","","511","3.8","48457","Tyler","{""48457"": ""100""}","Tyler","48457","FALSE","FALSE","America/Chicago"
-"77617","29.50649","-94.52151","Gilchrist","TX","Texas","TRUE","","66","4.4","48167","Galveston","{""48167"": ""100""}","Galveston","48167","FALSE","FALSE","America/Chicago"
-"77619","29.94724","-93.91851","Groves","TX","Texas","TRUE","","15662","1012.7","48245","Jefferson","{""48245"": ""100""}","Jefferson","48245","FALSE","FALSE","America/Chicago"
-"77622","29.85997","-94.29897","Hamshire","TX","Texas","TRUE","","1439","24.8","48245","Jefferson","{""48245"": ""100""}","Jefferson","48245","FALSE","FALSE","America/Chicago"
-"77623","29.55988","-94.41714","High Island","TX","Texas","TRUE","","648","15.9","48167","Galveston","{""48167"": ""100""}","Galveston","48167","FALSE","FALSE","America/Chicago"
-"77624","30.68372","-94.29168","Hillister","TX","Texas","TRUE","","609","3.9","48457","Tyler","{""48457"": ""100""}","Tyler","48457","FALSE","FALSE","America/Chicago"
-"77625","30.37575","-94.37899","Kountze","TX","Texas","TRUE","","9761","12.2","48199","Hardin","{""48199"": ""100""}","Hardin","48199","FALSE","FALSE","America/Chicago"
-"77627","29.98742","-94.00907","Nederland","TX","Texas","TRUE","","21698","792.1","48245","Jefferson","{""48245"": ""100""}","Jefferson","48245","FALSE","FALSE","America/Chicago"
-"77629","29.97774","-94.40228","Nome","TX","Texas","TRUE","","786","4.8","48245","Jefferson","{""48245"": ""100""}","Jefferson","48245","FALSE","FALSE","America/Chicago"
-"77630","30.0711","-93.86461","Orange","TX","Texas","TRUE","","28925","123.3","48361","Orange","{""48361"": ""100""}","Orange","48361","FALSE","FALSE","America/Chicago"
-"77632","30.20328","-93.80512","Orange","TX","Texas","TRUE","","22903","66.9","48361","Orange","{""48361"": ""89.6"", ""48351"": ""10.4""}","Orange|Newton","48361|48351","FALSE","FALSE","America/Chicago"
-"77640","29.88111","-93.94105","Port Arthur","TX","Texas","TRUE","","15706","157.3","48245","Jefferson","{""48245"": ""100""}","Jefferson","48245","FALSE","FALSE","America/Chicago"
-"77642","29.93921","-93.91601","Port Arthur","TX","Texas","TRUE","","39202","768.8","48245","Jefferson","{""48245"": ""100""}","Jefferson","48245","FALSE","FALSE","America/Chicago"
-"77650","29.4276","-94.68586","Port Bolivar","TX","Texas","TRUE","","1835","33.7","48167","Galveston","{""48167"": ""100""}","Galveston","48167","FALSE","FALSE","America/Chicago"
-"77651","29.98507","-93.95605","Port Neches","TX","Texas","TRUE","","12782","398.6","48245","Jefferson","{""48245"": ""100""}","Jefferson","48245","FALSE","FALSE","America/Chicago"
-"77655","29.71322","-93.95371","Sabine Pass","TX","Texas","TRUE","","213","1.7","48245","Jefferson","{""48245"": ""100""}","Jefferson","48245","FALSE","FALSE","America/Chicago"
-"77656","30.41587","-94.17206","Silsbee","TX","Texas","TRUE","","16524","40.6","48199","Hardin","{""48199"": ""98.69"", ""48457"": ""1.31""}","Hardin|Tyler","48199|48457","FALSE","FALSE","America/Chicago"
-"77657","30.2256","-94.19614","Lumberton","TX","Texas","TRUE","","21345","128.6","48199","Hardin","{""48199"": ""100""}","Hardin","48199","FALSE","FALSE","America/Chicago"
-"77659","30.15814","-94.43521","Sour Lake","TX","Texas","TRUE","","5326","17.6","48199","Hardin","{""48199"": ""100""}","Hardin","48199","FALSE","FALSE","America/Chicago"
-"77660","30.64628","-94.14546","Spurger","TX","Texas","TRUE","","1057","7.3","48457","Tyler","{""48457"": ""100""}","Tyler","48457","FALSE","FALSE","America/Chicago"
-"77661","29.73465","-94.41377","Stowell","TX","Texas","TRUE","","671","6.4","48071","Chambers","{""48071"": ""100""}","Chambers","48071","FALSE","FALSE","America/Chicago"
-"77662","30.17843","-94.01841","Vidor","TX","Texas","TRUE","","26277","72.9","48361","Orange","{""48361"": ""97.71"", ""48241"": ""2.29""}","Orange|Jasper","48361|48241","FALSE","FALSE","America/Chicago"
-"77663","30.51239","-94.39544","Village Mills","TX","Texas","TRUE","","1014","18.1","48199","Hardin","{""48199"": ""61.27"", ""48457"": ""38.73""}","Hardin|Tyler","48199|48457","FALSE","FALSE","America/Chicago"
-"77664","30.59999","-94.41637","Warren","TX","Texas","TRUE","","2939","7.0","48457","Tyler","{""48457"": ""100""}","Tyler","48457","FALSE","FALSE","America/Chicago"
-"77665","29.81685","-94.41658","Winnie","TX","Texas","TRUE","","6152","17.6","48071","Chambers","{""48071"": ""82.78"", ""48245"": ""17.22""}","Chambers|Jefferson","48071|48245","FALSE","FALSE","America/Chicago"
-"77701","30.07314","-94.106","Beaumont","TX","Texas","TRUE","","13480","753.8","48245","Jefferson","{""48245"": ""100""}","Jefferson","48245","FALSE","FALSE","America/Chicago"
-"77702","30.08626","-94.12829","Beaumont","TX","Texas","TRUE","","3225","1005.3","48245","Jefferson","{""48245"": ""100""}","Jefferson","48245","FALSE","FALSE","America/Chicago"
-"77703","30.12828","-94.1174","Beaumont","TX","Texas","TRUE","","13823","401.0","48245","Jefferson","{""48245"": ""100""}","Jefferson","48245","FALSE","FALSE","America/Chicago"
-"77705","29.9046","-94.16146","Beaumont","TX","Texas","TRUE","","39236","63.9","48245","Jefferson","{""48245"": ""100""}","Jefferson","48245","FALSE","FALSE","America/Chicago"
-"77706","30.09973","-94.17074","Beaumont","TX","Texas","TRUE","","29474","1008.4","48245","Jefferson","{""48245"": ""100""}","Jefferson","48245","FALSE","FALSE","America/Chicago"
-"77707","30.05295","-94.17654","Beaumont","TX","Texas","TRUE","","18335","479.0","48245","Jefferson","{""48245"": ""100""}","Jefferson","48245","FALSE","FALSE","America/Chicago"
-"77708","30.14475","-94.16484","Beaumont","TX","Texas","TRUE","","12536","683.9","48245","Jefferson","{""48245"": ""100""}","Jefferson","48245","FALSE","FALSE","America/Chicago"
-"77713","30.06086","-94.25397","Beaumont","TX","Texas","TRUE","","14238","55.2","48245","Jefferson","{""48245"": ""100""}","Jefferson","48245","FALSE","FALSE","America/Chicago"
-"77801","30.63888","-96.36343","Bryan","TX","Texas","TRUE","","15068","1810.6","48041","Brazos","{""48041"": ""100""}","Brazos","48041","FALSE","FALSE","America/Chicago"
-"77802","30.66126","-96.32265","Bryan","TX","Texas","TRUE","","25621","842.3","48041","Brazos","{""48041"": ""100""}","Brazos","48041","FALSE","FALSE","America/Chicago"
-"77803","30.68077","-96.38545","Bryan","TX","Texas","TRUE","","32946","989.8","48041","Brazos","{""48041"": ""100""}","Brazos","48041","FALSE","FALSE","America/Chicago"
-"77807","30.67879","-96.48006","Bryan","TX","Texas","TRUE","","11564","46.4","48041","Brazos","{""48041"": ""93.5"", ""48395"": ""6.5""}","Brazos|Robertson","48041|48395","FALSE","FALSE","America/Chicago"
-"77808","30.78934","-96.31434","Bryan","TX","Texas","TRUE","","12013","18.5","48041","Brazos","{""48041"": ""94.48"", ""48395"": ""5.52""}","Brazos|Robertson","48041|48395","FALSE","FALSE","America/Chicago"
-"77830","30.52414","-96.01185","Anderson","TX","Texas","TRUE","","3101","6.3","48185","Grimes","{""48185"": ""100""}","Grimes","48185","FALSE","FALSE","America/Chicago"
-"77831","30.72848","-95.90476","Bedias","TX","Texas","TRUE","","3179","5.6","48185","Grimes","{""48185"": ""87.62"", ""48471"": ""12.38""}","Grimes|Walker","48185|48471","FALSE","FALSE","America/Chicago"
-"77833","30.21068","-96.40705","Brenham","TX","Texas","TRUE","","29345","36.1","48477","Washington","{""48477"": ""98.75"", ""48015"": ""1.25""}","Washington|Austin","48477|48015","FALSE","FALSE","America/Chicago"
-"77835","30.1917","-96.595","Burton","TX","Texas","TRUE","","2330","8.0","48477","Washington","{""48477"": ""96.85"", ""48015"": ""3.15""}","Washington|Austin","48477|48015","FALSE","FALSE","America/Chicago"
-"77836","30.5375","-96.68003","Caldwell","TX","Texas","TRUE","","12077","10.6","48051","Burleson","{""48051"": ""99.53"", ""48331"": ""0.47""}","Burleson|Milam","48051|48331","FALSE","FALSE","America/Chicago"
-"77837","31.00731","-96.68717","Calvert","TX","Texas","TRUE","","1922","7.1","48395","Robertson","{""48395"": ""100""}","Robertson","48395","FALSE","FALSE","America/Chicago"
-"77840","30.60908","-96.32601","College Station","TX","Texas","TRUE","","59371","2046.4","48041","Brazos","{""48041"": ""100""}","Brazos","48041","FALSE","FALSE","America/Chicago"
-"77845","30.56253","-96.27564","College Station","TX","Texas","TRUE","","66649","173.6","48041","Brazos","{""48041"": ""100""}","Brazos","48041","FALSE","FALSE","America/Chicago"
-"77853","30.36444","-96.84281","Dime Box","TX","Texas","TRUE","","1059","8.1","48287","Lee","{""48287"": ""100""}","Lee","48287","FALSE","FALSE","America/Chicago"
-"77855","31.1455","-96.14068","Flynn","TX","Texas","TRUE","","224","3.4","48289","Leon","{""48289"": ""100""}","Leon","48289","FALSE","FALSE","America/Chicago"
-"77856","31.07333","-96.42385","Franklin","TX","Texas","TRUE","","5246","5.2","48395","Robertson","{""48395"": ""100""}","Robertson","48395","FALSE","FALSE","America/Chicago"
-"77857","30.78439","-96.70859","Gause","TX","Texas","TRUE","","792","5.0","48331","Milam","{""48331"": ""100""}","Milam","48331","FALSE","FALSE","America/Chicago"
-"77859","30.86932","-96.51734","Hearne","TX","Texas","TRUE","","6750","15.4","48395","Robertson","{""48395"": ""93.54"", ""48041"": ""6.46""}","Robertson|Brazos","48395|48041","FALSE","FALSE","America/Chicago"
-"77861","30.72741","-96.09598","Iola","TX","Texas","TRUE","","2203","6.7","48185","Grimes","{""48185"": ""100""}","Grimes","48185","FALSE","FALSE","America/Chicago"
-"77864","30.95416","-95.90558","Madisonville","TX","Texas","TRUE","","7562","14.6","48313","Madison","{""48313"": ""100""}","Madison","48313","FALSE","FALSE","America/Chicago"
-"77865","31.23034","-96.2281","Marquez","TX","Texas","TRUE","","2440","6.7","48289","Leon","{""48289"": ""100""}","Leon","48289","FALSE","FALSE","America/Chicago"
-"77867","30.74124","-96.5444","Mumford","TX","Texas","TRUE","","106","3.2","48395","Robertson","{""48395"": ""100""}","Robertson","48395","FALSE","FALSE","America/Chicago"
-"77868","30.36859","-96.0616","Navasota","TX","Texas","TRUE","","17142","24.4","48185","Grimes","{""48185"": ""91.98"", ""48041"": ""7.65"", ""48473"": ""0.2"", ""48477"": ""0.17""}","Grimes|Brazos|Waller|Washington","48185|48041|48473|48477","FALSE","FALSE","America/Chicago"
-"77871","31.05102","-96.11752","Normangee","TX","Texas","TRUE","","2738","5.3","48289","Leon","{""48289"": ""80.23"", ""48313"": ""19.77""}","Leon|Madison","48289|48313","FALSE","FALSE","America/Chicago"
-"77872","30.88687","-96.11025","North Zulch","TX","Texas","TRUE","","1879","9.6","48313","Madison","{""48313"": ""100""}","Madison","48313","FALSE","FALSE","America/Chicago"
-"77873","30.57425","-95.81288","Richards","TX","Texas","TRUE","","1200","5.7","48185","Grimes","{""48185"": ""54.33"", ""48339"": ""27.17"", ""48471"": ""18.5""}","Grimes|Montgomery|Walker","48185|48339|48471","FALSE","FALSE","America/Chicago"
-"77876","30.59729","-95.87444","Shiro","TX","Texas","TRUE","","123","4.6","48185","Grimes","{""48185"": ""100""}","Grimes","48185","FALSE","FALSE","America/Chicago"
-"77878","30.47152","-96.43601","Snook","TX","Texas","TRUE","","317","4.9","48051","Burleson","{""48051"": ""100""}","Burleson","48051","FALSE","FALSE","America/Chicago"
-"77879","30.39927","-96.49695","Somerville","TX","Texas","TRUE","","5621","11.6","48051","Burleson","{""48051"": ""100""}","Burleson","48051","FALSE","FALSE","America/Chicago"
-"77880","30.28141","-96.18401","Washington","TX","Texas","TRUE","","1438","5.8","48477","Washington","{""48477"": ""100""}","Washington","48477","FALSE","FALSE","America/Chicago"
-"77901","28.80495","-96.98474","Victoria","TX","Texas","TRUE","","43052","840.0","48469","Victoria","{""48469"": ""100""}","Victoria","48469","FALSE","FALSE","America/Chicago"
-"77904","28.92334","-97.01818","Victoria","TX","Texas","TRUE","","28202","90.3","48469","Victoria","{""48469"": ""100""}","Victoria","48469","FALSE","FALSE","America/Chicago"
-"77905","28.73132","-97.04241","Victoria","TX","Texas","TRUE","","14834","13.6","48469","Victoria","{""48469"": ""93.23"", ""48175"": ""6.77""}","Victoria|Goliad","48469|48175","FALSE","FALSE","America/Chicago"
-"77950","28.30141","-96.87481","Austwell","TX","Texas","TRUE","","170","0.8","48391","Refugio","{""48391"": ""96.45"", ""48007"": ""3.55""}","Refugio|Aransas","48391|48007","FALSE","FALSE","America/Chicago"
-"77951","28.63416","-96.91088","Bloomington","TX","Texas","TRUE","","1809","29.6","48469","Victoria","{""48469"": ""100""}","Victoria","48469","FALSE","FALSE","America/Chicago"
-"77954","29.09675","-97.28269","Cuero","TX","Texas","TRUE","","11478","12.0","48123","DeWitt","{""48123"": ""99.86"", ""48177"": ""0.14""}","DeWitt|Gonzales","48123|48177","FALSE","FALSE","America/Chicago"
-"77957","29.03767","-96.70041","Edna","TX","Texas","TRUE","","8735","8.9","48239","Jackson","{""48239"": ""100""}","Jackson","48239","FALSE","FALSE","America/Chicago"
-"77960","28.6691","-97.20818","Fannin","TX","Texas","TRUE","","65","1.5","48175","Goliad","{""48175"": ""100""}","Goliad","48175","FALSE","FALSE","America/Chicago"
-"77961","28.85739","-96.36151","Francitas","TX","Texas","TRUE","","178","1.7","48239","Jackson","{""48239"": ""100""}","Jackson","48239","FALSE","FALSE","America/Chicago"
-"77962","29.02264","-96.48946","Ganado","TX","Texas","TRUE","","3654","8.6","48239","Jackson","{""48239"": ""100""}","Jackson","48239","FALSE","FALSE","America/Chicago"
-"77963","28.65701","-97.41547","Goliad","TX","Texas","TRUE","","5855","3.5","48175","Goliad","{""48175"": ""100""}","Goliad","48175","FALSE","FALSE","America/Chicago"
-"77964","29.37701","-96.84377","Hallettsville","TX","Texas","TRUE","","8395","5.6","48285","Lavaca","{""48285"": ""99.31"", ""48089"": ""0.69""}","Lavaca|Colorado","48285|48089","FALSE","FALSE","America/Chicago"
-"77968","28.90923","-96.84712","Inez","TX","Texas","TRUE","","3214","6.9","48469","Victoria","{""48469"": ""100""}","Victoria","48469","FALSE","FALSE","America/Chicago"
-"77969","28.77244","-96.65117","La Salle","TX","Texas","TRUE","","246","3.3","48239","Jackson","{""48239"": ""100""}","Jackson","48239","FALSE","FALSE","America/Chicago"
-"77970","28.8447","-96.43443","La Ward","TX","Texas","TRUE","","429","3.7","48239","Jackson","{""48239"": ""100""}","Jackson","48239","FALSE","FALSE","America/Chicago"
-"77971","28.83222","-96.52192","Lolita","TX","Texas","TRUE","","792","5.0","48239","Jackson","{""48239"": ""100""}","Jackson","48239","FALSE","FALSE","America/Chicago"
-"77973","28.54326","-96.96374","Mcfaddin","TX","Texas","TRUE","","27","0.2","48469","Victoria","{""48469"": ""100""}","Victoria","48469","FALSE","FALSE","America/Chicago"
-"77974","28.89163","-97.29484","Meyersville","TX","Texas","TRUE","","314","4.7","48469","Victoria","{""48469"": ""57.14"", ""48123"": ""42.86""}","Victoria|DeWitt","48469|48123","FALSE","FALSE","America/Chicago"
-"77975","29.56787","-97.08485","Moulton","TX","Texas","TRUE","","1609","7.8","48285","Lavaca","{""48285"": ""100""}","Lavaca","48285","FALSE","FALSE","America/Chicago"
-"77976","28.95449","-97.12272","Nursery","TX","Texas","TRUE","","96","1.7","48469","Victoria","{""48469"": ""100""}","Victoria","48469","FALSE","FALSE","America/Chicago"
-"77977","28.69558","-96.79413","Placedo","TX","Texas","TRUE","","544","24.4","48469","Victoria","{""48469"": ""100""}","Victoria","48469","FALSE","FALSE","America/Chicago"
-"77978","28.66665","-96.57237","Point Comfort","TX","Texas","TRUE","","696","25.8","48057","Calhoun","{""48057"": ""100""}","Calhoun","48057","FALSE","FALSE","America/Chicago"
-"77979","28.60229","-96.60787","Port Lavaca","TX","Texas","TRUE","","17916","20.3","48057","Calhoun","{""48057"": ""99.13"", ""48239"": ""0.5"", ""48469"": ""0.37""}","Calhoun|Jackson|Victoria","48057|48239|48469","FALSE","FALSE","America/Chicago"
-"77982","28.44603","-96.46007","Port O'Connor","TX","Texas","TRUE","","884","26.6","48057","Calhoun","{""48057"": ""100""}","Calhoun","48057","FALSE","FALSE","America/Chicago"
-"77983","28.42886","-96.57441","Seadrift","TX","Texas","TRUE","","2045","7.0","48057","Calhoun","{""48057"": ""100""}","Calhoun","48057","FALSE","FALSE","America/Chicago"
-"77984","29.45351","-97.18787","Shiner","TX","Texas","TRUE","","3972","9.8","48285","Lavaca","{""48285"": ""90.17"", ""48177"": ""9.83""}","Lavaca|Gonzales","48285|48177","FALSE","FALSE","America/Chicago"
-"77987","29.34254","-97.07564","Sweet Home","TX","Texas","TRUE","","206","16.9","48285","Lavaca","{""48285"": ""100""}","Lavaca","48285","FALSE","FALSE","America/Chicago"
-"77988","28.83903","-96.88962","Telferner","TX","Texas","TRUE","","559","150.7","48469","Victoria","{""48469"": ""100""}","Victoria","48469","FALSE","FALSE","America/Chicago"
-"77990","28.46992","-96.91719","Tivoli","TX","Texas","TRUE","","811","2.9","48391","Refugio","{""48391"": ""87.84"", ""48057"": ""12.16""}","Refugio|Calhoun","48391|48057","FALSE","FALSE","America/Chicago"
-"77991","28.79624","-96.61312","Vanderbilt","TX","Texas","TRUE","","397","7.1","48239","Jackson","{""48239"": ""100""}","Jackson","48239","FALSE","FALSE","America/Chicago"
-"77993","28.85774","-97.42858","Weesatche","TX","Texas","TRUE","","95","2.5","48175","Goliad","{""48175"": ""100""}","Goliad","48175","FALSE","FALSE","America/Chicago"
-"77994","29.17819","-97.46017","Westhoff","TX","Texas","TRUE","","354","2.6","48123","DeWitt","{""48123"": ""100""}","DeWitt","48123","FALSE","FALSE","America/Chicago"
-"77995","29.21179","-97.08341","Yoakum","TX","Texas","TRUE","","10724","11.6","48285","Lavaca","{""48285"": ""56.86"", ""48123"": ""40.25"", ""48469"": ""2.88""}","Lavaca|DeWitt|Victoria","48285|48123|48469","FALSE","FALSE","America/Chicago"
-"78001","28.29493","-99.21954","Artesia Wells","TX","Texas","TRUE","","0","0.0","48283","La Salle","{""48283"": ""100""}","La Salle","48283","FALSE","FALSE","America/Chicago"
-"78002","29.28295","-98.73826","Atascosa","TX","Texas","TRUE","","6833","63.5","48029","Bexar","{""48029"": ""100""}","Bexar","48029","FALSE","FALSE","America/Chicago"
-"78003","29.70959","-99.09413","Bandera","TX","Texas","TRUE","","9743","16.7","48019","Bandera","{""48019"": ""97.54"", ""48325"": ""2.46""}","Bandera|Medina","48019|48325","FALSE","FALSE","America/Chicago"
-"78004","29.90066","-98.55579","Bergheim","TX","Texas","TRUE","","1118","16.4","48259","Kendall","{""48259"": ""100""}","Kendall","48259","FALSE","FALSE","America/Chicago"
-"78005","28.94844","-98.85243","Bigfoot","TX","Texas","TRUE","","870","1.9","48163","Frio","{""48163"": ""70.5"", ""48013"": ""29.5""}","Frio|Atascosa","48163|48013","FALSE","FALSE","America/Chicago"
-"78006","29.85533","-98.72266","Boerne","TX","Texas","TRUE","","36056","44.6","48259","Kendall","{""48259"": ""86.81"", ""48029"": ""11.2"", ""48091"": ""1.99""}","Kendall|Bexar|Comal","48259|48029|48091","FALSE","FALSE","America/Chicago"
-"78007","28.49506","-98.37836","Calliham","TX","Texas","TRUE","","169","2.6","48311","McMullen","{""48311"": ""100""}","McMullen","48311","FALSE","FALSE","America/Chicago"
-"78008","28.72411","-98.27925","Campbellton","TX","Texas","TRUE","","461","0.9","48013","Atascosa","{""48013"": ""93.62"", ""48297"": ""6.38""}","Atascosa|Live Oak","48013|48297","FALSE","FALSE","America/Chicago"
-"78009","29.35732","-98.88667","Castroville","TX","Texas","TRUE","","8466","45.7","48325","Medina","{""48325"": ""100""}","Medina","48325","FALSE","FALSE","America/Chicago"
-"78010","29.9123","-99.04482","Center Point","TX","Texas","TRUE","","3493","18.4","48265","Kerr","{""48265"": ""100""}","Kerr","48265","FALSE","FALSE","America/Chicago"
-"78011","28.79237","-98.72129","Charlotte","TX","Texas","TRUE","","1688","3.4","48013","Atascosa","{""48013"": ""100""}","Atascosa","48013","FALSE","FALSE","America/Chicago"
-"78012","28.75991","-98.47914","Christine","TX","Texas","TRUE","","267","3.1","48013","Atascosa","{""48013"": ""100""}","Atascosa","48013","FALSE","FALSE","America/Chicago"
-"78013","29.9706","-98.90518","Comfort","TX","Texas","TRUE","","7312","12.3","48259","Kendall","{""48259"": ""72.48"", ""48265"": ""27.52""}","Kendall|Kerr","48259|48265","FALSE","FALSE","America/Chicago"
-"78014","28.36134","-99.14498","Cotulla","TX","Texas","TRUE","","5999","2.2","48283","La Salle","{""48283"": ""99.58"", ""48127"": ""0.42""}","La Salle|Dimmit","48283|48127","FALSE","FALSE","America/Chicago"
-"78015","29.747","-98.6555","Boerne","TX","Texas","TRUE","","15811","291.8","48029","Bexar","{""48029"": ""68.77"", ""48259"": ""31.23""}","Bexar|Kendall","48029|48259","FALSE","FALSE","America/Chicago"
-"78016","29.18359","-98.96602","Devine","TX","Texas","TRUE","","11632","28.3","48325","Medina","{""48325"": ""100""}","Medina","48325","FALSE","FALSE","America/Chicago"
-"78017","28.70688","-99.1938","Dilley","TX","Texas","TRUE","","6074","6.3","48163","Frio","{""48163"": ""99.1"", ""48283"": ""0.9""}","Frio|La Salle","48163|48283","FALSE","FALSE","America/Chicago"
-"78019","28.04207","-99.39643","Encinal","TX","Texas","TRUE","","1253","0.5","48283","La Salle","{""48283"": ""93.32"", ""48479"": ""6.68""}","La Salle|Webb","48283|48479","FALSE","FALSE","America/Chicago"
-"78021","28.50102","-98.82637","Fowlerton","TX","Texas","TRUE","","273","0.4","48283","La Salle","{""48283"": ""84.92"", ""48311"": ""15.08""}","La Salle|McMullen","48283|48311","FALSE","FALSE","America/Chicago"
-"78022","28.25927","-98.14445","George West","TX","Texas","TRUE","","4033","3.5","48297","Live Oak","{""48297"": ""100""}","Live Oak","48297","FALSE","FALSE","America/Chicago"
-"78023","29.61087","-98.74532","Helotes","TX","Texas","TRUE","","31357","162.4","48029","Bexar","{""48029"": ""97.08"", ""48325"": ""2.58"", ""48019"": ""0.34""}","Bexar|Medina|Bandera","48029|48325|48019","FALSE","FALSE","America/Chicago"
-"78024","30.00114","-99.48089","Hunt","TX","Texas","TRUE","","1370","2.0","48265","Kerr","{""48265"": ""99.65"", ""48385"": ""0.35""}","Kerr|Real","48265|48385","FALSE","FALSE","America/Chicago"
-"78025","30.08367","-99.28317","Ingram","TX","Texas","TRUE","","4918","43.2","48265","Kerr","{""48265"": ""100""}","Kerr","48265","FALSE","FALSE","America/Chicago"
-"78026","28.83751","-98.59733","Jourdanton","TX","Texas","TRUE","","6452","11.5","48013","Atascosa","{""48013"": ""100""}","Atascosa","48013","FALSE","FALSE","America/Chicago"
-"78027","29.97556","-98.54274","Kendalia","TX","Texas","TRUE","","381","1.9","48259","Kendall","{""48259"": ""100""}","Kendall","48259","FALSE","FALSE","America/Chicago"
-"78028","30.03421","-99.1582","Kerrville","TX","Texas","TRUE","","39944","61.5","48265","Kerr","{""48265"": ""98.04"", ""48171"": ""1.96""}","Kerr|Gillespie","48265|48171","FALSE","FALSE","America/Chicago"
-"78029","30.1591","-99.34498","Kerrville","TX","Texas","TRUE","","0","0.0","48265","Kerr","{""48265"": ""0""}","Kerr","48265","FALSE","FALSE","America/Chicago"
-"78039","29.31371","-98.82963","La Coste","TX","Texas","TRUE","","1924","40.5","48325","Medina","{""48325"": ""92.4"", ""48029"": ""7.6""}","Medina|Bexar","48325|48029","FALSE","FALSE","America/Chicago"
-"78040","27.51345","-99.50228","Laredo","TX","Texas","TRUE","","40939","2508.8","48479","Webb","{""48479"": ""100""}","Webb","48479","FALSE","FALSE","America/Chicago"
-"78041","27.55417","-99.46337","Laredo","TX","Texas","TRUE","","47753","1006.4","48479","Webb","{""48479"": ""100""}","Webb","48479","FALSE","FALSE","America/Chicago"
-"78043","27.54915","-99.26173","Laredo","TX","Texas","TRUE","","45532","101.1","48479","Webb","{""48479"": ""100""}","Webb","48479","FALSE","FALSE","America/Chicago"
-"78044","27.75007","-99.13106","Laredo","TX","Texas","TRUE","","519","1.0","48479","Webb","{""48479"": ""100""}","Webb","48479","FALSE","FALSE","America/Chicago"
-"78045","27.85007","-99.66888","Laredo","TX","Texas","TRUE","","66685","35.6","48479","Webb","{""48479"": ""100""}","Webb","48479","FALSE","FALSE","America/Chicago"
-"78046","27.37485","-99.34941","Laredo","TX","Texas","TRUE","","70989","111.4","48479","Webb","{""48479"": ""100""}","Webb","48479","FALSE","FALSE","America/Chicago"
-"78050","29.07059","-98.48192","Leming","TX","Texas","TRUE","","584","42.1","48013","Atascosa","{""48013"": ""100""}","Atascosa","48013","FALSE","FALSE","America/Chicago"
-"78052","29.20449","-98.77534","Lytle","TX","Texas","TRUE","","6769","68.9","48013","Atascosa","{""48013"": ""71.15"", ""48325"": ""26.06"", ""48029"": ""2.79""}","Atascosa|Medina|Bexar","48013|48325|48029","FALSE","FALSE","America/Chicago"
-"78055","29.82094","-99.31944","Medina","TX","Texas","TRUE","","1867","3.0","48019","Bandera","{""48019"": ""97.35"", ""48265"": ""2.65""}","Bandera|Kerr","48019|48265","FALSE","FALSE","America/Chicago"
-"78056","29.53765","-98.93486","Mico","TX","Texas","TRUE","","2138","8.2","48325","Medina","{""48325"": ""100""}","Medina","48325","FALSE","FALSE","America/Chicago"
-"78057","29.03929","-98.99952","Moore","TX","Texas","TRUE","","378","1.5","48163","Frio","{""48163"": ""97.24"", ""48325"": ""2.76""}","Frio|Medina","48163|48325","FALSE","FALSE","America/Chicago"
-"78058","30.0957","-99.63952","Mountain Home","TX","Texas","TRUE","","976","0.7","48265","Kerr","{""48265"": ""82.64"", ""48171"": ""9.55"", ""48385"": ""7.8""}","Kerr|Gillespie|Real","48265|48171|48385","FALSE","FALSE","America/Chicago"
-"78059","29.19189","-98.84177","Natalia","TX","Texas","TRUE","","5545","52.3","48325","Medina","{""48325"": ""100""}","Medina","48325","FALSE","FALSE","America/Chicago"
-"78060","28.44686","-98.10699","Oakville","TX","Texas","TRUE","","0","0.0","48297","Live Oak","{""48297"": ""100""}","Live Oak","48297","FALSE","FALSE","America/Chicago"
-"78061","28.90171","-99.14689","Pearsall","TX","Texas","TRUE","","12858","9.0","48163","Frio","{""48163"": ""100""}","Frio","48163","FALSE","FALSE","America/Chicago"
-"78063","29.68785","-98.91422","Pipe Creek","TX","Texas","TRUE","","9484","30.1","48019","Bandera","{""48019"": ""100""}","Bandera","48019","FALSE","FALSE","America/Chicago"
-"78064","28.93613","-98.42571","Pleasanton","TX","Texas","TRUE","","16186","26.6","48013","Atascosa","{""48013"": ""99.45"", ""48493"": ""0.55""}","Atascosa|Wilson","48013|48493","FALSE","FALSE","America/Chicago"
-"78065","29.07762","-98.63983","Poteet","TX","Texas","TRUE","","11130","25.8","48013","Atascosa","{""48013"": ""100""}","Atascosa","48013","FALSE","FALSE","America/Chicago"
-"78066","29.4794","-98.8956","Rio Medina","TX","Texas","TRUE","","521","7.9","48325","Medina","{""48325"": ""100""}","Medina","48325","FALSE","FALSE","America/Chicago"
-"78067","27.13267","-99.33646","San Ygnacio","TX","Texas","TRUE","","772","2.1","48505","Zapata","{""48505"": ""100""}","Zapata","48505","FALSE","FALSE","America/Chicago"
-"78069","29.18606","-98.68109","Somerset","TX","Texas","TRUE","","6115","72.5","48013","Atascosa","{""48013"": ""59.37"", ""48029"": ""40.63""}","Atascosa|Bexar","48013|48029","FALSE","FALSE","America/Chicago"
-"78070","29.89826","-98.4063","Spring Branch","TX","Texas","TRUE","","15457","43.3","48091","Comal","{""48091"": ""95.72"", ""48031"": ""4.1"", ""48259"": ""0.18""}","Comal|Blanco|Kendall","48091|48031|48259","FALSE","FALSE","America/Chicago"
-"78071","28.46948","-98.22431","Three Rivers","TX","Texas","TRUE","","4372","4.7","48297","Live Oak","{""48297"": ""99.81"", ""48311"": ""0.19""}","Live Oak|McMullen","48297|48311","FALSE","FALSE","America/Chicago"
-"78072","28.30174","-98.58516","Tilden","TX","Texas","TRUE","","582","0.3","48311","McMullen","{""48311"": ""100""}","McMullen","48311","FALSE","FALSE","America/Chicago"
-"78073","29.24487","-98.61955","Von Ormy","TX","Texas","TRUE","","8580","63.8","48029","Bexar","{""48029"": ""86.22"", ""48013"": ""13.78""}","Bexar|Atascosa","48029|48013","FALSE","FALSE","America/Chicago"
-"78075","28.60116","-98.35311","Whitsett","TX","Texas","TRUE","","248","0.7","48297","Live Oak","{""48297"": ""80.49"", ""48311"": ""19.51""}","Live Oak|McMullen","48297|48311","FALSE","FALSE","America/Chicago"
-"78076","26.93099","-99.15506","Zapata","TX","Texas","TRUE","","13029","10.5","48505","Zapata","{""48505"": ""100""}","Zapata","48505","FALSE","FALSE","America/Chicago"
-"78101","29.34402","-98.23884","Adkins","TX","Texas","TRUE","","6465","48.7","48029","Bexar","{""48029"": ""51.91"", ""48493"": ""48.09""}","Bexar|Wilson","48029|48493","FALSE","FALSE","America/Chicago"
-"78102","28.40248","-97.71084","Beeville","TX","Texas","TRUE","","28323","23.3","48025","Bee","{""48025"": ""99.85"", ""48297"": ""0.15""}","Bee|Live Oak","48025|48297","FALSE","FALSE","America/Chicago"
-"78104","28.51876","-97.76461","Beeville","TX","Texas","TRUE","","136","2.3","48025","Bee","{""48025"": ""100""}","Bee","48025","FALSE","FALSE","America/Chicago"
-"78107","28.5493","-97.57399","Berclair","TX","Texas","TRUE","","269","0.9","48175","Goliad","{""48175"": ""100""}","Goliad","48175","FALSE","FALSE","America/Chicago"
-"78108","29.57435","-98.21878","Cibolo","TX","Texas","TRUE","","39999","500.1","48187","Guadalupe","{""48187"": ""95.83"", ""48091"": ""2.28"", ""48029"": ""1.89""}","Guadalupe|Comal|Bexar","48187|48091|48029","FALSE","FALSE","America/Chicago"
-"78109","29.48788","-98.29148","Converse","TX","Texas","TRUE","","39769","732.6","48029","Bexar","{""48029"": ""100""}","Bexar","48029","FALSE","FALSE","America/Chicago"
-"78112","29.21277","-98.37165","Elmendorf","TX","Texas","TRUE","","8617","65.9","48029","Bexar","{""48029"": ""98.5"", ""48493"": ""1.5""}","Bexar|Wilson","48029|48493","FALSE","FALSE","America/Chicago"
-"78113","28.95336","-98.12689","Falls City","TX","Texas","TRUE","","3558","4.9","48255","Karnes","{""48255"": ""49.08"", ""48493"": ""40.12"", ""48013"": ""10.8""}","Karnes|Wilson|Atascosa","48255|48493|48013","FALSE","FALSE","America/Chicago"
-"78114","29.11822","-98.20179","Floresville","TX","Texas","TRUE","","24009","25.3","48493","Wilson","{""48493"": ""99.31"", ""48013"": ""0.69""}","Wilson|Atascosa","48493|48013","FALSE","FALSE","America/Chicago"
-"78116","29.11262","-97.75699","Gillett","TX","Texas","TRUE","","313","1.0","48255","Karnes","{""48255"": ""100""}","Karnes","48255","FALSE","FALSE","America/Chicago"
-"78117","28.94398","-97.95448","Hobson","TX","Texas","TRUE","","401","2.9","48255","Karnes","{""48255"": ""100""}","Karnes","48255","FALSE","FALSE","America/Chicago"
-"78118","28.88645","-97.95035","Karnes City","TX","Texas","TRUE","","4264","9.1","48255","Karnes","{""48255"": ""99.77"", ""48297"": ""0.23""}","Karnes|Live Oak","48255|48297","FALSE","FALSE","America/Chicago"
-"78119","28.73025","-97.89597","Kenedy","TX","Texas","TRUE","","7160","8.5","48255","Karnes","{""48255"": ""95.44"", ""48025"": ""4.13"", ""48297"": ""0.43""}","Karnes|Bee|Live Oak","48255|48025|48297","FALSE","FALSE","America/Chicago"
-"78121","29.35147","-98.10722","La Vernia","TX","Texas","TRUE","","13276","49.8","48493","Wilson","{""48493"": ""90.84"", ""48187"": ""9.16""}","Wilson|Guadalupe","48493|48187","FALSE","FALSE","America/Chicago"
-"78122","29.4366","-97.73588","Leesville","TX","Texas","TRUE","","274","2.1","48177","Gonzales","{""48177"": ""100""}","Gonzales","48177","FALSE","FALSE","America/Chicago"
-"78123","29.6024","-98.04405","McQueeney","TX","Texas","TRUE","","2177","214.7","48187","Guadalupe","{""48187"": ""100""}","Guadalupe","48187","FALSE","FALSE","America/Chicago"
-"78124","29.55515","-98.14732","Marion","TX","Texas","TRUE","","6913","46.9","48187","Guadalupe","{""48187"": ""92.24"", ""48029"": ""7.76""}","Guadalupe|Bexar","48187|48029","FALSE","FALSE","America/Chicago"
-"78125","28.53824","-97.96328","Mineral","TX","Texas","TRUE","","45","0.6","48025","Bee","{""48025"": ""100""}","Bee","48025","FALSE","FALSE","America/Chicago"
-"78130","29.69772","-98.07021","New Braunfels","TX","Texas","TRUE","","77400","323.7","48091","Comal","{""48091"": ""71.41"", ""48187"": ""28.59""}","Comal|Guadalupe","48091|48187","FALSE","FALSE","America/Chicago"
-"78132","29.76312","-98.1911","New Braunfels","TX","Texas","TRUE","","30987","64.5","48091","Comal","{""48091"": ""100""}","Comal","48091","FALSE","FALSE","America/Chicago"
-"78133","29.88674","-98.24214","Canyon Lake","TX","Texas","TRUE","","18483","85.3","48091","Comal","{""48091"": ""100""}","Comal","48091","FALSE","FALSE","America/Chicago"
-"78140","29.30696","-97.76913","Nixon","TX","Texas","TRUE","","3486","9.3","48177","Gonzales","{""48177"": ""90.18"", ""48493"": ""7.04"", ""48187"": ""2.78""}","Gonzales|Wilson|Guadalupe","48177|48493|48187","FALSE","FALSE","America/Chicago"
-"78141","28.91743","-97.627","Nordheim","TX","Texas","TRUE","","524","3.4","48123","DeWitt","{""48123"": ""99.16"", ""48255"": ""0.84""}","DeWitt|Karnes","48123|48255","FALSE","FALSE","America/Chicago"
-"78142","28.53664","-97.81055","Normanna","TX","Texas","TRUE","","166","11.4","48025","Bee","{""48025"": ""100""}","Bee","48025","FALSE","FALSE","America/Chicago"
-"78143","29.26244","-97.86053","Pandora","TX","Texas","TRUE","","226","49.9","48493","Wilson","{""48493"": ""100""}","Wilson","48493","FALSE","FALSE","America/Chicago"
-"78144","28.95506","-97.88795","Panna Maria","TX","Texas","TRUE","","29","5.0","48255","Karnes","{""48255"": ""100""}","Karnes","48255","FALSE","FALSE","America/Chicago"
-"78145","28.64519","-97.9941","Pawnee","TX","Texas","TRUE","","116","12.2","48025","Bee","{""48025"": ""100""}","Bee","48025","FALSE","FALSE","America/Chicago"
-"78146","28.60318","-97.83849","Pettus","TX","Texas","TRUE","","637","6.4","48025","Bee","{""48025"": ""100""}","Bee","48025","FALSE","FALSE","America/Chicago"
-"78147","29.07384","-98.0802","Poth","TX","Texas","TRUE","","2035","226.9","48493","Wilson","{""48493"": ""100""}","Wilson","48493","FALSE","FALSE","America/Chicago"
-"78148","29.54349","-98.29565","Universal City","TX","Texas","TRUE","","22364","916.3","48029","Bexar","{""48029"": ""100""}","Bexar","48029","FALSE","FALSE","America/Chicago"
-"78150","29.53078","-98.279","Jbsa Randolph","TX","Texas","TRUE","","37","90.2","48029","Bexar","{""48029"": ""100""}","Bexar","48029","FALSE","FALSE","America/Chicago"
-"78151","28.86506","-97.70391","Runge","TX","Texas","TRUE","","1662","6.1","48255","Karnes","{""48255"": ""100""}","Karnes","48255","FALSE","FALSE","America/Chicago"
-"78152","29.43411","-98.20648","Saint Hedwig","TX","Texas","TRUE","","2171","22.9","48029","Bexar","{""48029"": ""100""}","Bexar","48029","FALSE","FALSE","America/Chicago"
-"78154","29.54622","-98.26627","Schertz","TX","Texas","TRUE","","41272","484.6","48187","Guadalupe","{""48187"": ""80.89"", ""48029"": ""18.74"", ""48091"": ""0.37""}","Guadalupe|Bexar|Comal","48187|48029|48091","FALSE","FALSE","America/Chicago"
-"78155","29.53341","-97.93886","Seguin","TX","Texas","TRUE","","48909","53.3","48187","Guadalupe","{""48187"": ""100""}","Guadalupe","48187","FALSE","FALSE","America/Chicago"
-"78159","29.23632","-97.58721","Smiley","TX","Texas","TRUE","","1196","3.0","48177","Gonzales","{""48177"": ""100""}","Gonzales","48177","FALSE","FALSE","America/Chicago"
-"78160","29.24306","-97.92958","Stockdale","TX","Texas","TRUE","","4918","10.4","48493","Wilson","{""48493"": ""100""}","Wilson","48493","FALSE","FALSE","America/Chicago"
-"78161","29.28697","-98.05743","Sutherland Springs","TX","Texas","TRUE","","651","19.6","48493","Wilson","{""48493"": ""100""}","Wilson","48493","FALSE","FALSE","America/Chicago"
-"78162","28.58997","-97.77347","Tuleta","TX","Texas","TRUE","","301","3.7","48025","Bee","{""48025"": ""100""}","Bee","48025","FALSE","FALSE","America/Chicago"
-"78163","29.76677","-98.45476","Bulverde","TX","Texas","TRUE","","12874","64.4","48091","Comal","{""48091"": ""100""}","Comal","48091","FALSE","FALSE","America/Chicago"
-"78164","28.98216","-97.52254","Yorktown","TX","Texas","TRUE","","3706","5.1","48123","DeWitt","{""48123"": ""95.39"", ""48175"": ""4.61""}","DeWitt|Goliad","48123|48175","FALSE","FALSE","America/Chicago"
-"78201","29.46879","-98.52828","San Antonio","TX","Texas","TRUE","","48334","2623.7","48029","Bexar","{""48029"": ""100""}","Bexar","48029","FALSE","FALSE","America/Chicago"
-"78202","29.42814","-98.46082","San Antonio","TX","Texas","TRUE","","11453","1902.3","48029","Bexar","{""48029"": ""100""}","Bexar","48029","FALSE","FALSE","America/Chicago"
-"78203","29.41507","-98.45918","San Antonio","TX","Texas","TRUE","","6180","1855.8","48029","Bexar","{""48029"": ""100""}","Bexar","48029","FALSE","FALSE","America/Chicago"
-"78204","29.4032","-98.50372","San Antonio","TX","Texas","TRUE","","12231","1789.4","48029","Bexar","{""48029"": ""100""}","Bexar","48029","FALSE","FALSE","America/Chicago"
-"78205","29.42347","-98.48593","San Antonio","TX","Texas","TRUE","","1441","466.9","48029","Bexar","{""48029"": ""100""}","Bexar","48029","FALSE","FALSE","America/Chicago"
-"78207","29.42214","-98.52545","San Antonio","TX","Texas","TRUE","","55484","2923.7","48029","Bexar","{""48029"": ""100""}","Bexar","48029","FALSE","FALSE","America/Chicago"
-"78208","29.43982","-98.45855","San Antonio","TX","Texas","TRUE","","4913","1924.7","48029","Bexar","{""48029"": ""100""}","Bexar","48029","FALSE","FALSE","America/Chicago"
-"78209","29.48907","-98.4567","San Antonio","TX","Texas","TRUE","","42653","1616.7","48029","Bexar","{""48029"": ""100""}","Bexar","48029","FALSE","FALSE","America/Chicago"
-"78210","29.39601","-98.46437","San Antonio","TX","Texas","TRUE","","37683","1956.3","48029","Bexar","{""48029"": ""100""}","Bexar","48029","FALSE","FALSE","America/Chicago"
-"78211","29.34641","-98.56315","San Antonio","TX","Texas","TRUE","","32769","1231.0","48029","Bexar","{""48029"": ""100""}","Bexar","48029","FALSE","FALSE","America/Chicago"
-"78212","29.46463","-98.49266","San Antonio","TX","Texas","TRUE","","28865","1648.5","48029","Bexar","{""48029"": ""100""}","Bexar","48029","FALSE","FALSE","America/Chicago"
-"78213","29.51693","-98.52359","San Antonio","TX","Texas","TRUE","","44813","2162.0","48029","Bexar","{""48029"": ""100""}","Bexar","48029","FALSE","FALSE","America/Chicago"
-"78214","29.32654","-98.46939","San Antonio","TX","Texas","TRUE","","27558","793.5","48029","Bexar","{""48029"": ""100""}","Bexar","48029","FALSE","FALSE","America/Chicago"
-"78215","29.44117","-98.48056","San Antonio","TX","Texas","TRUE","","2915","1002.6","48029","Bexar","{""48029"": ""100""}","Bexar","48029","FALSE","FALSE","America/Chicago"
-"78216","29.53648","-98.48922","San Antonio","TX","Texas","TRUE","","43554","1176.2","48029","Bexar","{""48029"": ""100""}","Bexar","48029","FALSE","FALSE","America/Chicago"
-"78217","29.54045","-98.42007","San Antonio","TX","Texas","TRUE","","34159","1253.4","48029","Bexar","{""48029"": ""100""}","Bexar","48029","FALSE","FALSE","America/Chicago"
-"78218","29.49152","-98.40114","San Antonio","TX","Texas","TRUE","","37281","1217.4","48029","Bexar","{""48029"": ""100""}","Bexar","48029","FALSE","FALSE","America/Chicago"
-"78219","29.44208","-98.38754","San Antonio","TX","Texas","TRUE","","17239","483.6","48029","Bexar","{""48029"": ""100""}","Bexar","48029","FALSE","FALSE","America/Chicago"
-"78220","29.41674","-98.39321","San Antonio","TX","Texas","TRUE","","16700","694.7","48029","Bexar","{""48029"": ""100""}","Bexar","48029","FALSE","FALSE","America/Chicago"
-"78221","29.28016","-98.47826","San Antonio","TX","Texas","TRUE","","41185","522.6","48029","Bexar","{""48029"": ""100""}","Bexar","48029","FALSE","FALSE","America/Chicago"
-"78222","29.36614","-98.37783","San Antonio","TX","Texas","TRUE","","25227","444.6","48029","Bexar","{""48029"": ""100""}","Bexar","48029","FALSE","FALSE","America/Chicago"
-"78223","29.3122","-98.39091","San Antonio","TX","Texas","TRUE","","56055","522.7","48029","Bexar","{""48029"": ""99.48"", ""48493"": ""0.52""}","Bexar|Wilson","48029|48493","FALSE","FALSE","America/Chicago"
-"78224","29.29429","-98.53944","San Antonio","TX","Texas","TRUE","","22851","398.5","48029","Bexar","{""48029"": ""100""}","Bexar","48029","FALSE","FALSE","America/Chicago"
-"78225","29.38799","-98.52602","San Antonio","TX","Texas","TRUE","","14472","2849.4","48029","Bexar","{""48029"": ""100""}","Bexar","48029","FALSE","FALSE","America/Chicago"
-"78226","29.38373","-98.56909","San Antonio","TX","Texas","TRUE","","7906","427.4","48029","Bexar","{""48029"": ""100""}","Bexar","48029","FALSE","FALSE","America/Chicago"
-"78227","29.40625","-98.62942","San Antonio","TX","Texas","TRUE","","51394","1436.6","48029","Bexar","{""48029"": ""100""}","Bexar","48029","FALSE","FALSE","America/Chicago"
-"78228","29.46095","-98.57202","San Antonio","TX","Texas","TRUE","","62359","2197.8","48029","Bexar","{""48029"": ""100""}","Bexar","48029","FALSE","FALSE","America/Chicago"
-"78229","29.50555","-98.57221","San Antonio","TX","Texas","TRUE","","34125","2298.9","48029","Bexar","{""48029"": ""100""}","Bexar","48029","FALSE","FALSE","America/Chicago"
-"78230","29.54613","-98.55552","San Antonio","TX","Texas","TRUE","","45021","1668.1","48029","Bexar","{""48029"": ""100""}","Bexar","48029","FALSE","FALSE","America/Chicago"
-"78231","29.57806","-98.5427","San Antonio","TX","Texas","TRUE","","9001","899.4","48029","Bexar","{""48029"": ""100""}","Bexar","48029","FALSE","FALSE","America/Chicago"
-"78232","29.58813","-98.47482","San Antonio","TX","Texas","TRUE","","39072","1253.2","48029","Bexar","{""48029"": ""100""}","Bexar","48029","FALSE","FALSE","America/Chicago"
-"78233","29.55554","-98.36173","San Antonio","TX","Texas","TRUE","","50103","1472.0","48029","Bexar","{""48029"": ""100""}","Bexar","48029","FALSE","FALSE","America/Chicago"
-"78234","29.46038","-98.43926","Jbsa Ft Sam Houston","TX","Texas","TRUE","","4965","421.5","48029","Bexar","{""48029"": ""100""}","Bexar","48029","FALSE","FALSE","America/Chicago"
-"78235","29.34611","-98.44374","San Antonio","TX","Texas","TRUE","","1476","543.6","48029","Bexar","{""48029"": ""100""}","Bexar","48029","FALSE","FALSE","America/Chicago"
-"78236","29.3781","-98.64431","Jbsa Lackland","TX","Texas","TRUE","","6896","281.0","48029","Bexar","{""48029"": ""100""}","Bexar","48029","FALSE","FALSE","America/Chicago"
-"78237","29.42111","-98.56936","San Antonio","TX","Texas","TRUE","","39105","2047.4","48029","Bexar","{""48029"": ""100""}","Bexar","48029","FALSE","FALSE","America/Chicago"
-"78238","29.47143","-98.61824","San Antonio","TX","Texas","TRUE","","25660","1031.1","48029","Bexar","{""48029"": ""100""}","Bexar","48029","FALSE","FALSE","America/Chicago"
-"78239","29.51681","-98.36304","San Antonio","TX","Texas","TRUE","","27431","1594.9","48029","Bexar","{""48029"": ""100""}","Bexar","48029","FALSE","FALSE","America/Chicago"
-"78240","29.52464","-98.60748","San Antonio","TX","Texas","TRUE","","60927","2076.1","48029","Bexar","{""48029"": ""100""}","Bexar","48029","FALSE","FALSE","America/Chicago"
-"78242","29.35066","-98.60748","San Antonio","TX","Texas","TRUE","","34893","1713.2","48029","Bexar","{""48029"": ""100""}","Bexar","48029","FALSE","FALSE","America/Chicago"
-"78243","29.37177","-98.59514","San Antonio","TX","Texas","TRUE","","408","338.1","48029","Bexar","{""48029"": ""100""}","Bexar","48029","FALSE","FALSE","America/Chicago"
-"78244","29.47379","-98.35006","San Antonio","TX","Texas","TRUE","","30981","1288.1","48029","Bexar","{""48029"": ""100""}","Bexar","48029","FALSE","FALSE","America/Chicago"
-"78245","29.40397","-98.73081","San Antonio","TX","Texas","TRUE","","76518","889.2","48029","Bexar","{""48029"": ""100""}","Bexar","48029","FALSE","FALSE","America/Chicago"
-"78247","29.58549","-98.40705","San Antonio","TX","Texas","TRUE","","53892","1267.2","48029","Bexar","{""48029"": ""100""}","Bexar","48029","FALSE","FALSE","America/Chicago"
-"78248","29.59047","-98.52525","San Antonio","TX","Texas","TRUE","","14345","1412.9","48029","Bexar","{""48029"": ""100""}","Bexar","48029","FALSE","FALSE","America/Chicago"
-"78249","29.56794","-98.61346","San Antonio","TX","Texas","TRUE","","61639","1599.3","48029","Bexar","{""48029"": ""100""}","Bexar","48029","FALSE","FALSE","America/Chicago"
-"78250","29.50316","-98.66626","San Antonio","TX","Texas","TRUE","","61669","2479.5","48029","Bexar","{""48029"": ""100""}","Bexar","48029","FALSE","FALSE","America/Chicago"
-"78251","29.46216","-98.67599","San Antonio","TX","Texas","TRUE","","62186","1582.9","48029","Bexar","{""48029"": ""100""}","Bexar","48029","FALSE","FALSE","America/Chicago"
-"78252","29.34097","-98.70532","San Antonio","TX","Texas","TRUE","","12009","134.1","48029","Bexar","{""48029"": ""100""}","Bexar","48029","FALSE","FALSE","America/Chicago"
-"78253","29.46744","-98.7906","San Antonio","TX","Texas","TRUE","","43770","311.1","48029","Bexar","{""48029"": ""94.23"", ""48325"": ""5.77""}","Bexar|Medina","48029|48325","FALSE","FALSE","America/Chicago"
-"78254","29.5369","-98.73775","San Antonio","TX","Texas","TRUE","","59107","843.5","48029","Bexar","{""48029"": ""100""}","Bexar","48029","FALSE","FALSE","America/Chicago"
-"78255","29.65429","-98.66554","San Antonio","TX","Texas","TRUE","","14825","313.5","48029","Bexar","{""48029"": ""100""}","Bexar","48029","FALSE","FALSE","America/Chicago"
-"78256","29.62304","-98.62635","San Antonio","TX","Texas","TRUE","","11238","499.2","48029","Bexar","{""48029"": ""100""}","Bexar","48029","FALSE","FALSE","America/Chicago"
-"78257","29.66124","-98.58356","San Antonio","TX","Texas","TRUE","","7538","74.8","48029","Bexar","{""48029"": ""100""}","Bexar","48029","FALSE","FALSE","America/Chicago"
-"78258","29.63372","-98.49603","San Antonio","TX","Texas","TRUE","","44747","1088.2","48029","Bexar","{""48029"": ""100""}","Bexar","48029","FALSE","FALSE","America/Chicago"
-"78259","29.6263","-98.42781","San Antonio","TX","Texas","TRUE","","26338","737.3","48029","Bexar","{""48029"": ""100""}","Bexar","48029","FALSE","FALSE","America/Chicago"
-"78260","29.69664","-98.48743","San Antonio","TX","Texas","TRUE","","26301","458.2","48029","Bexar","{""48029"": ""100""}","Bexar","48029","FALSE","FALSE","America/Chicago"
-"78261","29.69179","-98.40192","San Antonio","TX","Texas","TRUE","","16749","216.5","48029","Bexar","{""48029"": ""100""}","Bexar","48029","FALSE","FALSE","America/Chicago"
-"78263","29.35946","-98.30931","San Antonio","TX","Texas","TRUE","","4440","46.8","48029","Bexar","{""48029"": ""100""}","Bexar","48029","FALSE","FALSE","America/Chicago"
-"78264","29.18831","-98.50117","San Antonio","TX","Texas","TRUE","","10623","62.2","48029","Bexar","{""48029"": ""90.09"", ""48013"": ""9.91""}","Bexar|Atascosa","48029|48013","FALSE","FALSE","America/Chicago"
-"78266","29.65385","-98.33055","San Antonio","TX","Texas","TRUE","","6913","71.0","48091","Comal","{""48091"": ""80.22"", ""48029"": ""19.78""}","Comal|Bexar","48091|48029","FALSE","FALSE","America/Chicago"
-"78330","27.74268","-97.91564","Agua Dulce","TX","Texas","TRUE","","934","20.7","48355","Nueces","{""48355"": ""100""}","Nueces","48355","FALSE","FALSE","America/Chicago"
-"78332","27.71843","-98.14285","Alice","TX","Texas","TRUE","","28941","22.4","48249","Jim Wells","{""48249"": ""99.29"", ""48131"": ""0.71""}","Jim Wells|Duval","48249|48131","FALSE","FALSE","America/Chicago"
-"78335","27.87319","-97.09231","Aransas Pass","TX","Texas","TRUE","","0","0.0","48355","Nueces","{""48355"": ""100""}","Nueces","48355","FALSE","FALSE","America/Chicago"
-"78336","27.94281","-97.18347","Aransas Pass","TX","Texas","TRUE","","11214","88.4","48409","San Patricio","{""48409"": ""74.6"", ""48007"": ""25.32"", ""48355"": ""0.08""}","San Patricio|Aransas|Nueces","48409|48007|48355","FALSE","FALSE","America/Chicago"
-"78338","26.89255","-97.76255","Armstrong","TX","Texas","TRUE","","18","0.3","48261","Kenedy","{""48261"": ""100""}","Kenedy","48261","FALSE","FALSE","America/Chicago"
-"78339","27.80511","-97.79226","Banquete","TX","Texas","TRUE","","317","123.1","48355","Nueces","{""48355"": ""100""}","Nueces","48355","FALSE","FALSE","America/Chicago"
-"78340","28.12487","-97.21093","Bayside","TX","Texas","TRUE","","356","6.3","48391","Refugio","{""48391"": ""100""}","Refugio","48391","FALSE","FALSE","America/Chicago"
-"78341","27.62992","-98.48907","Benavides","TX","Texas","TRUE","","1844","2.9","48131","Duval","{""48131"": ""100""}","Duval","48131","FALSE","FALSE","America/Chicago"
-"78342","27.65989","-98.07573","Ben Bolt","TX","Texas","TRUE","","330","71.2","48249","Jim Wells","{""48249"": ""100""}","Jim Wells","48249","FALSE","FALSE","America/Chicago"
-"78343","27.6194","-97.74459","Bishop","TX","Texas","TRUE","","4526","10.6","48355","Nueces","{""48355"": ""100""}","Nueces","48355","FALSE","FALSE","America/Chicago"
-"78344","27.48001","-98.86472","Bruni","TX","Texas","TRUE","","436","1.4","48479","Webb","{""48479"": ""100""}","Webb","48479","FALSE","FALSE","America/Chicago"
-"78349","27.37535","-98.29991","Concepcion","TX","Texas","TRUE","","617","1.9","48131","Duval","{""48131"": ""100""}","Duval","48131","FALSE","FALSE","America/Chicago"
-"78351","27.67313","-97.75971","Driscoll","TX","Texas","TRUE","","421","75.8","48355","Nueces","{""48355"": ""100""}","Nueces","48355","FALSE","FALSE","America/Chicago"
-"78352","27.96291","-97.67901","Edroy","TX","Texas","TRUE","","485","119.1","48409","San Patricio","{""48409"": ""100""}","San Patricio","48409","FALSE","FALSE","America/Chicago"
-"78353","26.88252","-98.22368","Encino","TX","Texas","TRUE","","241","0.5","48047","Brooks","{""48047"": ""100""}","Brooks","48047","FALSE","FALSE","America/Chicago"
-"78355","27.19012","-98.20251","Falfurrias","TX","Texas","TRUE","","7168","8.1","48047","Brooks","{""48047"": ""95.74"", ""48249"": ""4.17"", ""48273"": ""0.1""}","Brooks|Jim Wells|Kleberg","48047|48249|48273","FALSE","FALSE","America/Chicago"
-"78357","27.84382","-98.6217","Freer","TX","Texas","TRUE","","2886","3.7","48131","Duval","{""48131"": ""100""}","Duval","48131","FALSE","FALSE","America/Chicago"
-"78358","28.06824","-97.04427","Fulton","TX","Texas","TRUE","","653","480.6","48007","Aransas","{""48007"": ""100""}","Aransas","48007","FALSE","FALSE","America/Chicago"
-"78359","27.92357","-97.28712","Gregory","TX","Texas","TRUE","","1977","283.7","48409","San Patricio","{""48409"": ""100""}","San Patricio","48409","FALSE","FALSE","America/Chicago"
-"78361","27.10434","-98.78675","Hebbronville","TX","Texas","TRUE","","5320","1.8","48247","Jim Hogg","{""48247"": ""99.07"", ""48131"": ""0.52"", ""48505"": ""0.41""}","Jim Hogg|Duval|Zapata","48247|48131|48505","FALSE","FALSE","America/Chicago"
-"78362","27.86644","-97.20199","Ingleside","TX","Texas","TRUE","","10218","207.7","48409","San Patricio","{""48409"": ""100""}","San Patricio","48409","FALSE","FALSE","America/Chicago"
-"78363","27.44953","-97.86267","Kingsville","TX","Texas","TRUE","","29544","74.6","48273","Kleberg","{""48273"": ""100""}","Kleberg","48273","FALSE","FALSE","America/Chicago"
-"78368","28.10546","-97.8103","Mathis","TX","Texas","TRUE","","9460","16.9","48409","San Patricio","{""48409"": ""88.58"", ""48297"": ""11.42""}","San Patricio|Live Oak","48409|48297","FALSE","FALSE","America/Chicago"
-"78369","27.36791","-98.99745","Mirando City","TX","Texas","TRUE","","416","1.5","48479","Webb","{""48479"": ""100""}","Webb","48479","FALSE","FALSE","America/Chicago"
-"78370","27.94872","-97.60099","Odem","TX","Texas","TRUE","","4952","20.6","48409","San Patricio","{""48409"": ""100""}","San Patricio","48409","FALSE","FALSE","America/Chicago"
-"78371","27.62829","-98.95939","Oilton","TX","Texas","TRUE","","153","0.3","48479","Webb","{""48479"": ""100""}","Webb","48479","FALSE","FALSE","America/Chicago"
-"78372","27.98728","-98.0559","Orange Grove","TX","Texas","TRUE","","5971","10.8","48249","Jim Wells","{""48249"": ""99.23"", ""48297"": ""0.77""}","Jim Wells|Live Oak","48249|48297","FALSE","FALSE","America/Chicago"
-"78373","27.77081","-97.12146","Port Aransas","TX","Texas","TRUE","","4393","101.8","48355","Nueces","{""48355"": ""100""}","Nueces","48355","FALSE","FALSE","America/Chicago"
-"78374","27.89799","-97.37808","Portland","TX","Texas","TRUE","","18369","149.2","48409","San Patricio","{""48409"": ""100""}","San Patricio","48409","FALSE","FALSE","America/Chicago"
-"78375","27.39448","-98.14463","Premont","TX","Texas","TRUE","","2951","11.1","48249","Jim Wells","{""48249"": ""100""}","Jim Wells","48249","FALSE","FALSE","America/Chicago"
-"78376","27.41844","-98.51401","Realitos","TX","Texas","TRUE","","544","0.9","48131","Duval","{""48131"": ""100""}","Duval","48131","FALSE","FALSE","America/Chicago"
-"78377","28.35557","-97.15776","Refugio","TX","Texas","TRUE","","3745","3.2","48391","Refugio","{""48391"": ""100""}","Refugio","48391","FALSE","FALSE","America/Chicago"
-"78379","27.30223","-97.79593","Riviera","TX","Texas","TRUE","","1413","6.7","48273","Kleberg","{""48273"": ""100""}","Kleberg","48273","FALSE","FALSE","America/Chicago"
-"78380","27.78905","-97.74623","Robstown","TX","Texas","TRUE","","24300","27.9","48355","Nueces","{""48355"": ""99.71"", ""48249"": ""0.29""}","Nueces|Jim Wells","48355|48249","FALSE","FALSE","America/Chicago"
-"78382","28.14388","-97.05082","Rockport","TX","Texas","TRUE","","21123","81.0","48007","Aransas","{""48007"": ""100""}","Aransas","48007","FALSE","FALSE","America/Chicago"
-"78383","28.09164","-97.96378","Sandia","TX","Texas","TRUE","","4296","10.8","48249","Jim Wells","{""48249"": ""49.48"", ""48297"": ""37.5"", ""48355"": ""13.03""}","Jim Wells|Live Oak|Nueces","48249|48297|48355","FALSE","FALSE","America/Chicago"
-"78384","27.85315","-98.37031","San Diego","TX","Texas","TRUE","","5739","4.9","48131","Duval","{""48131"": ""83.86"", ""48249"": ""16.14""}","Duval|Jim Wells","48131|48249","FALSE","FALSE","America/Chicago"
-"78385","27.17648","-97.82556","Sarita","TX","Texas","TRUE","","525","1.0","48261","Kenedy","{""48261"": ""100""}","Kenedy","48261","FALSE","FALSE","America/Chicago"
-"78387","28.0917","-97.54469","Sinton","TX","Texas","TRUE","","9660","17.4","48409","San Patricio","{""48409"": ""94.91"", ""48025"": ""5.09""}","San Patricio|Bee","48409|48025","FALSE","FALSE","America/Chicago"
-"78389","28.24898","-97.66068","Skidmore","TX","Texas","TRUE","","1874","5.7","48025","Bee","{""48025"": ""100""}","Bee","48025","FALSE","FALSE","America/Chicago"
-"78390","27.9989","-97.32981","Taft","TX","Texas","TRUE","","5059","11.4","48409","San Patricio","{""48409"": ""99.06"", ""48007"": ""0.94""}","San Patricio|Aransas","48409|48007","FALSE","FALSE","America/Chicago"
-"78391","28.18201","-97.73277","Tynan","TX","Texas","TRUE","","283","6.3","48025","Bee","{""48025"": ""100""}","Bee","48025","FALSE","FALSE","America/Chicago"
-"78393","28.19994","-97.36805","Woodsboro","TX","Texas","TRUE","","2161","5.0","48391","Refugio","{""48391"": ""100""}","Refugio","48391","FALSE","FALSE","America/Chicago"
-"78401","27.79816","-97.40097","Corpus Christi","TX","Texas","TRUE","","5265","943.5","48355","Nueces","{""48355"": ""100""}","Nueces","48355","FALSE","FALSE","America/Chicago"
-"78402","27.82253","-97.3967","Corpus Christi","TX","Texas","TRUE","","236","84.2","48355","Nueces","{""48355"": ""100""}","Nueces","48355","FALSE","FALSE","America/Chicago"
-"78404","27.76805","-97.39901","Corpus Christi","TX","Texas","TRUE","","17761","2207.2","48355","Nueces","{""48355"": ""100""}","Nueces","48355","FALSE","FALSE","America/Chicago"
-"78405","27.77425","-97.43876","Corpus Christi","TX","Texas","TRUE","","15059","1145.0","48355","Nueces","{""48355"": ""100""}","Nueces","48355","FALSE","FALSE","America/Chicago"
-"78406","27.77125","-97.51879","Corpus Christi","TX","Texas","TRUE","","2027","60.8","48355","Nueces","{""48355"": ""100""}","Nueces","48355","FALSE","FALSE","America/Chicago"
-"78407","27.81081","-97.43899","Corpus Christi","TX","Texas","TRUE","","2704","258.1","48355","Nueces","{""48355"": ""100""}","Nueces","48355","FALSE","FALSE","America/Chicago"
-"78408","27.795","-97.44693","Corpus Christi","TX","Texas","TRUE","","11583","1006.7","48355","Nueces","{""48355"": ""100""}","Nueces","48355","FALSE","FALSE","America/Chicago"
-"78409","27.80942","-97.52284","Corpus Christi","TX","Texas","TRUE","","2725","88.8","48355","Nueces","{""48355"": ""100""}","Nueces","48355","FALSE","FALSE","America/Chicago"
-"78410","27.83848","-97.59655","Corpus Christi","TX","Texas","TRUE","","28396","479.8","48355","Nueces","{""48355"": ""100""}","Nueces","48355","FALSE","FALSE","America/Chicago"
-"78411","27.72946","-97.38567","Corpus Christi","TX","Texas","TRUE","","25987","1673.7","48355","Nueces","{""48355"": ""100""}","Nueces","48355","FALSE","FALSE","America/Chicago"
-"78412","27.70386","-97.34302","Corpus Christi","TX","Texas","TRUE","","41977","1842.2","48355","Nueces","{""48355"": ""100""}","Nueces","48355","FALSE","FALSE","America/Chicago"
-"78413","27.68352","-97.40538","Corpus Christi","TX","Texas","TRUE","","40644","1955.3","48355","Nueces","{""48355"": ""100""}","Nueces","48355","FALSE","FALSE","America/Chicago"
-"78414","27.6603","-97.36893","Corpus Christi","TX","Texas","TRUE","","40657","1094.2","48355","Nueces","{""48355"": ""100""}","Nueces","48355","FALSE","FALSE","America/Chicago"
-"78415","27.6566","-97.48182","Corpus Christi","TX","Texas","TRUE","","40377","150.4","48355","Nueces","{""48355"": ""100""}","Nueces","48355","FALSE","FALSE","America/Chicago"
-"78416","27.75202","-97.43651","Corpus Christi","TX","Texas","TRUE","","15973","2103.3","48355","Nueces","{""48355"": ""100""}","Nueces","48355","FALSE","FALSE","America/Chicago"
-"78417","27.73965","-97.46681","Corpus Christi","TX","Texas","TRUE","","4095","173.5","48355","Nueces","{""48355"": ""100""}","Nueces","48355","FALSE","FALSE","America/Chicago"
-"78418","27.6155","-97.26563","Corpus Christi","TX","Texas","TRUE","","30312","269.4","48355","Nueces","{""48355"": ""99.98"", ""48273"": ""0.02""}","Nueces|Kleberg","48355|48273","FALSE","FALSE","America/Chicago"
-"78419","27.69491","-97.26889","Corpus Christi","TX","Texas","TRUE","","778","233.9","48355","Nueces","{""48355"": ""100""}","Nueces","48355","FALSE","FALSE","America/Chicago"
-"78501","26.21583","-98.23917","Mcallen","TX","Texas","TRUE","","63066","1587.5","48215","Hidalgo","{""48215"": ""100""}","Hidalgo","48215","FALSE","FALSE","America/Chicago"
-"78503","26.16531","-98.24764","Mcallen","TX","Texas","TRUE","","21644","492.7","48215","Hidalgo","{""48215"": ""100""}","Hidalgo","48215","FALSE","FALSE","America/Chicago"
-"78504","26.27199","-98.23657","Mcallen","TX","Texas","TRUE","","57410","1253.7","48215","Hidalgo","{""48215"": ""100""}","Hidalgo","48215","FALSE","FALSE","America/Chicago"
-"78516","26.14583","-98.11938","Alamo","TX","Texas","TRUE","","34990","355.2","48215","Hidalgo","{""48215"": ""100""}","Hidalgo","48215","FALSE","FALSE","America/Chicago"
-"78520","25.96396","-97.5501","Brownsville","TX","Texas","TRUE","","62490","653.4","48061","Cameron","{""48061"": ""100""}","Cameron","48061","FALSE","FALSE","America/Chicago"
-"78521","25.95038","-97.32168","Brownsville","TX","Texas","TRUE","","90687","375.8","48061","Cameron","{""48061"": ""100""}","Cameron","48061","FALSE","FALSE","America/Chicago"
-"78526","25.99101","-97.43946","Brownsville","TX","Texas","TRUE","","48995","428.8","48061","Cameron","{""48061"": ""100""}","Cameron","48061","FALSE","FALSE","America/Chicago"
-"78535","26.25421","-97.74282","Combes","TX","Texas","TRUE","","601","190.0","48061","Cameron","{""48061"": ""100""}","Cameron","48061","FALSE","FALSE","America/Chicago"
-"78536","26.64926","-98.4511","Delmita","TX","Texas","TRUE","","363","2.4","48427","Starr","{""48427"": ""100""}","Starr","48427","FALSE","FALSE","America/Chicago"
-"78537","26.16192","-98.05669","Donna","TX","Texas","TRUE","","48072","297.1","48215","Hidalgo","{""48215"": ""100""}","Hidalgo","48215","FALSE","FALSE","America/Chicago"
-"78538","26.37275","-97.97821","Edcouch","TX","Texas","TRUE","","11137","60.6","48215","Hidalgo","{""48215"": ""100""}","Hidalgo","48215","FALSE","FALSE","America/Chicago"
-"78539","26.27915","-98.18321","Edinburg","TX","Texas","TRUE","","37380","1098.3","48215","Hidalgo","{""48215"": ""100""}","Hidalgo","48215","FALSE","FALSE","America/Chicago"
-"78541","26.44809","-98.2842","Edinburg","TX","Texas","TRUE","","44860","59.9","48215","Hidalgo","{""48215"": ""100""}","Hidalgo","48215","FALSE","FALSE","America/Chicago"
-"78542","26.452","-98.08433","Edinburg","TX","Texas","TRUE","","77336","175.7","48215","Hidalgo","{""48215"": ""100""}","Hidalgo","48215","FALSE","FALSE","America/Chicago"
-"78543","26.29737","-97.99997","Elsa","TX","Texas","TRUE","","8689","563.8","48215","Hidalgo","{""48215"": ""100""}","Hidalgo","48215","FALSE","FALSE","America/Chicago"
-"78545","26.59041","-99.11813","Falcon Heights","TX","Texas","TRUE","","402","11.7","48427","Starr","{""48427"": ""64.32"", ""48505"": ""35.68""}","Starr|Zapata","48427|48505","FALSE","FALSE","America/Chicago"
-"78548","26.2708","-98.65456","Grulla","TX","Texas","TRUE","","627","61.9","48427","Starr","{""48427"": ""100""}","Starr","48427","FALSE","FALSE","America/Chicago"
-"78549","26.46089","-98.03372","Hargill","TX","Texas","TRUE","","1010","14.1","48215","Hidalgo","{""48215"": ""100""}","Hidalgo","48215","FALSE","FALSE","America/Chicago"
-"78550","26.25668","-97.66671","Harlingen","TX","Texas","TRUE","","52644","212.6","48061","Cameron","{""48061"": ""100""}","Cameron","48061","FALSE","FALSE","America/Chicago"
-"78552","26.19515","-97.75025","Harlingen","TX","Texas","TRUE","","37948","297.9","48061","Cameron","{""48061"": ""100""}","Cameron","48061","FALSE","FALSE","America/Chicago"
-"78557","26.10688","-98.24342","Hidalgo","TX","Texas","TRUE","","13970","459.8","48215","Hidalgo","{""48215"": ""100""}","Hidalgo","48215","FALSE","FALSE","America/Chicago"
-"78558","26.29962","-98.03525","La Blanca","TX","Texas","TRUE","","1021","290.5","48215","Hidalgo","{""48215"": ""100""}","Hidalgo","48215","FALSE","FALSE","America/Chicago"
-"78559","26.14827","-97.83136","La Feria","TX","Texas","TRUE","","13255","145.1","48061","Cameron","{""48061"": ""100""}","Cameron","48061","FALSE","FALSE","America/Chicago"
-"78560","26.24615","-98.49434","La Joya","TX","Texas","TRUE","","4847","138.5","48215","Hidalgo","{""48215"": ""100""}","Hidalgo","48215","FALSE","FALSE","America/Chicago"
-"78561","26.47803","-97.91813","Lasara","TX","Texas","TRUE","","669","141.5","48489","Willacy","{""48489"": ""100""}","Willacy","48489","FALSE","FALSE","America/Chicago"
-"78562","26.29361","-97.89885","La Villa","TX","Texas","TRUE","","4341","66.4","48215","Hidalgo","{""48215"": ""100""}","Hidalgo","48215","FALSE","FALSE","America/Chicago"
-"78563","26.65735","-98.25679","Linn","TX","Texas","TRUE","","269","0.4","48215","Hidalgo","{""48215"": ""100""}","Hidalgo","48215","FALSE","FALSE","America/Chicago"
-"78564","26.67347","-99.10303","Lopeno","TX","Texas","TRUE","","202","1.3","48505","Zapata","{""48505"": ""100""}","Zapata","48505","FALSE","FALSE","America/Chicago"
-"78565","26.24351","-98.55199","Los Ebanos","TX","Texas","TRUE","","84","6.1","48215","Hidalgo","{""48215"": ""100""}","Hidalgo","48215","FALSE","FALSE","America/Chicago"
-"78566","26.14669","-97.40332","Los Fresnos","TX","Texas","TRUE","","17398","58.4","48061","Cameron","{""48061"": ""100""}","Cameron","48061","FALSE","FALSE","America/Chicago"
-"78567","26.05192","-97.73932","Los Indios","TX","Texas","TRUE","","443","92.7","48061","Cameron","{""48061"": ""100""}","Cameron","48061","FALSE","FALSE","America/Chicago"
-"78569","26.37181","-97.74315","Lyford","TX","Texas","TRUE","","4101","11.9","48489","Willacy","{""48489"": ""96.43"", ""48215"": ""2.13"", ""48061"": ""1.44""}","Willacy|Hidalgo|Cameron","48489|48215|48061","FALSE","FALSE","America/Chicago"
-"78570","26.17478","-97.91093","Mercedes","TX","Texas","TRUE","","33949","175.8","48215","Hidalgo","{""48215"": ""100""}","Hidalgo","48215","FALSE","FALSE","America/Chicago"
-"78572","26.2281","-98.37666","Mission","TX","Texas","TRUE","","80601","401.4","48215","Hidalgo","{""48215"": ""100""}","Hidalgo","48215","FALSE","FALSE","America/Chicago"
-"78573","26.29368","-98.30077","Mission","TX","Texas","TRUE","","38826","439.2","48215","Hidalgo","{""48215"": ""100""}","Hidalgo","48215","FALSE","FALSE","America/Chicago"
-"78574","26.31893","-98.37005","Mission","TX","Texas","TRUE","","62616","411.0","48215","Hidalgo","{""48215"": ""100""}","Hidalgo","48215","FALSE","FALSE","America/Chicago"
-"78575","26.02476","-97.52767","Olmito","TX","Texas","TRUE","","12215","382.3","48061","Cameron","{""48061"": ""100""}","Cameron","48061","FALSE","FALSE","America/Chicago"
-"78576","26.30716","-98.47604","Penitas","TX","Texas","TRUE","","10600","106.5","48215","Hidalgo","{""48215"": ""100""}","Hidalgo","48215","FALSE","FALSE","America/Chicago"
-"78577","26.15047","-98.19104","Pharr","TX","Texas","TRUE","","78103","949.5","48215","Hidalgo","{""48215"": ""100""}","Hidalgo","48215","FALSE","FALSE","America/Chicago"
-"78578","26.05308","-97.31838","Port Isabel","TX","Texas","TRUE","","11772","75.9","48061","Cameron","{""48061"": ""100""}","Cameron","48061","FALSE","FALSE","America/Chicago"
-"78579","26.08664","-97.95966","Progreso","TX","Texas","TRUE","","5836","269.0","48215","Hidalgo","{""48215"": ""100""}","Hidalgo","48215","FALSE","FALSE","America/Chicago"
-"78580","26.48667","-97.73791","Raymondville","TX","Texas","TRUE","","14839","23.7","48489","Willacy","{""48489"": ""99.68"", ""48261"": ""0.32""}","Willacy|Kenedy","48489|48261","FALSE","FALSE","America/Chicago"
-"78582","26.55556","-98.73564","Rio Grande City","TX","Texas","TRUE","","43074","25.5","48427","Starr","{""48427"": ""100""}","Starr","48427","FALSE","FALSE","America/Chicago"
-"78583","26.26419","-97.48614","Rio Hondo","TX","Texas","TRUE","","7137","31.2","48061","Cameron","{""48061"": ""100""}","Cameron","48061","FALSE","FALSE","America/Chicago"
-"78584","26.57855","-98.98754","Roma","TX","Texas","TRUE","","19175","31.1","48427","Starr","{""48427"": ""100""}","Starr","48427","FALSE","FALSE","America/Chicago"
-"78585","26.52603","-99.12133","Salineno","TX","Texas","TRUE","","356","13.6","48427","Starr","{""48427"": ""100""}","Starr","48427","FALSE","FALSE","America/Chicago"
-"78586","26.10508","-97.63108","San Benito","TX","Texas","TRUE","","56692","124.1","48061","Cameron","{""48061"": ""100""}","Cameron","48061","FALSE","FALSE","America/Chicago"
-"78588","26.73785","-98.39723","San Isidro","TX","Texas","TRUE","","133","1.3","48427","Starr","{""48427"": ""100""}","Starr","48427","FALSE","FALSE","America/Chicago"
-"78589","26.16789","-98.15483","San Juan","TX","Texas","TRUE","","41291","767.0","48215","Hidalgo","{""48215"": ""100""}","Hidalgo","48215","FALSE","FALSE","America/Chicago"
-"78590","26.50603","-97.6523","San Perlita","TX","Texas","TRUE","","354","49.6","48489","Willacy","{""48489"": ""100""}","Willacy","48489","FALSE","FALSE","America/Chicago"
-"78591","26.58074","-98.51372","Santa Elena","TX","Texas","TRUE","","249","0.8","48427","Starr","{""48427"": ""100""}","Starr","48427","FALSE","FALSE","America/Chicago"
-"78592","26.06523","-97.84603","Santa Maria","TX","Texas","TRUE","","676","74.7","48061","Cameron","{""48061"": ""100""}","Cameron","48061","FALSE","FALSE","America/Chicago"
-"78593","26.27385","-97.82225","Santa Rosa","TX","Texas","TRUE","","5895","58.4","48061","Cameron","{""48061"": ""100""}","Cameron","48061","FALSE","FALSE","America/Chicago"
-"78594","26.34519","-97.79489","Sebastian","TX","Texas","TRUE","","1555","324.6","48489","Willacy","{""48489"": ""100""}","Willacy","48489","FALSE","FALSE","America/Chicago"
-"78595","26.29144","-98.54548","Sullivan City","TX","Texas","TRUE","","5959","153.6","48215","Hidalgo","{""48215"": ""100""}","Hidalgo","48215","FALSE","FALSE","America/Chicago"
-"78596","26.15806","-97.98925","Weslaco","TX","Texas","TRUE","","67269","437.5","48215","Hidalgo","{""48215"": ""100""}","Hidalgo","48215","FALSE","FALSE","America/Chicago"
-"78597","26.2491","-97.19744","South Padre Island","TX","Texas","TRUE","","2818","120.8","48061","Cameron","{""48061"": ""100""}","Cameron","48061","FALSE","FALSE","America/Chicago"
-"78598","26.55778","-97.4368","Port Mansfield","TX","Texas","TRUE","","87","5.9","48489","Willacy","{""48489"": ""100""}","Willacy","48489","FALSE","FALSE","America/Chicago"
-"78602","30.12383","-97.32841","Bastrop","TX","Texas","TRUE","","29795","59.4","48021","Bastrop","{""48021"": ""100""}","Bastrop","48021","FALSE","FALSE","America/Chicago"
-"78605","30.7822","-98.04563","Bertram","TX","Texas","TRUE","","6275","14.8","48053","Burnet","{""48053"": ""100""}","Burnet","48053","FALSE","FALSE","America/Chicago"
-"78606","30.0926","-98.46682","Blanco","TX","Texas","TRUE","","5547","8.8","48031","Blanco","{""48031"": ""95.81"", ""48091"": ""2.71"", ""48259"": ""1.48""}","Blanco|Comal|Kendall","48031|48091|48259","FALSE","FALSE","America/Chicago"
-"78607","30.82439","-98.47564","Bluffton","TX","Texas","TRUE","","170","5.4","48299","Llano","{""48299"": ""100""}","Llano","48299","FALSE","FALSE","America/Chicago"
-"78608","30.93527","-97.93381","Briggs","TX","Texas","TRUE","","470","4.7","48053","Burnet","{""48053"": ""100""}","Burnet","48053","FALSE","FALSE","America/Chicago"
-"78609","30.76314","-98.44875","Buchanan Dam","TX","Texas","TRUE","","1991","32.8","48299","Llano","{""48299"": ""100""}","Llano","48299","FALSE","FALSE","America/Chicago"
-"78610","30.07722","-97.83741","Buda","TX","Texas","TRUE","","38525","161.0","48209","Hays","{""48209"": ""90.61"", ""48453"": ""8.81"", ""48055"": ""0.58""}","Hays|Travis|Caldwell","48209|48453|48055","FALSE","FALSE","America/Chicago"
-"78611","30.79177","-98.26018","Burnet","TX","Texas","TRUE","","12921","18.0","48053","Burnet","{""48053"": ""100""}","Burnet","48053","FALSE","FALSE","America/Chicago"
-"78612","30.0942","-97.48686","Cedar Creek","TX","Texas","TRUE","","13802","56.8","48021","Bastrop","{""48021"": ""94.8"", ""48453"": ""5.2""}","Bastrop|Travis","48021|48453","FALSE","FALSE","America/Chicago"
-"78613","30.50395","-97.82462","Cedar Park","TX","Texas","TRUE","","81943","1123.8","48491","Williamson","{""48491"": ""87.1"", ""48453"": ""12.9""}","Williamson|Travis","48491|48453","FALSE","FALSE","America/Chicago"
-"78614","29.41742","-97.59347","Cost","TX","Texas","TRUE","","599","4.6","48177","Gonzales","{""48177"": ""100""}","Gonzales","48177","FALSE","FALSE","America/Chicago"
-"78615","30.46862","-97.38362","Coupland","TX","Texas","TRUE","","971","7.1","48491","Williamson","{""48491"": ""60.23"", ""48453"": ""39.77""}","Williamson|Travis","48491|48453","FALSE","FALSE","America/Chicago"
-"78616","29.94016","-97.56199","Dale","TX","Texas","TRUE","","8918","31.3","48055","Caldwell","{""48055"": ""64.41"", ""48021"": ""35.59""}","Caldwell|Bastrop","48055|48021","FALSE","FALSE","America/Chicago"
-"78617","30.14719","-97.59614","Del Valle","TX","Texas","TRUE","","28930","160.8","48453","Travis","{""48453"": ""79.65"", ""48021"": ""20.35""}","Travis|Bastrop","48453|48021","FALSE","FALSE","America/Chicago"
-"78618","30.47773","-99.16514","Doss","TX","Texas","TRUE","","338","0.8","48171","Gillespie","{""48171"": ""81.79"", ""48319"": ""18.21""}","Gillespie|Mason","48171|48319","FALSE","FALSE","America/Chicago"
-"78619","30.11222","-98.03327","Driftwood","TX","Texas","TRUE","","4505","45.1","48209","Hays","{""48209"": ""100""}","Hays","48209","FALSE","FALSE","America/Chicago"
-"78620","30.21895","-98.12894","Dripping Springs","TX","Texas","TRUE","","17590","39.4","48209","Hays","{""48209"": ""91.15"", ""48453"": ""8.44"", ""48031"": ""0.41""}","Hays|Travis|Blanco","48209|48453|48031","FALSE","FALSE","America/Chicago"
-"78621","30.3385","-97.36145","Elgin","TX","Texas","TRUE","","23936","49.5","48021","Bastrop","{""48021"": ""71.45"", ""48453"": ""23.69"", ""48287"": ""2.65"", ""48491"": ""2.21""}","Bastrop|Travis|Lee|Williamson","48021|48453|48287|48491","FALSE","FALSE","America/Chicago"
-"78622","29.75402","-97.77606","Fentress","TX","Texas","TRUE","","237","110.8","48055","Caldwell","{""48055"": ""100""}","Caldwell","48055","FALSE","FALSE","America/Chicago"
-"78623","29.97297","-98.23303","Fischer","TX","Texas","TRUE","","1113","20.9","48091","Comal","{""48091"": ""95.82"", ""48209"": ""4.18""}","Comal|Hays","48091|48209","FALSE","FALSE","America/Chicago"
-"78624","30.28151","-98.87712","Fredericksburg","TX","Texas","TRUE","","22444","12.2","48171","Gillespie","{""48171"": ""97.94"", ""48259"": ""2.06""}","Gillespie|Kendall","48171|48259","FALSE","FALSE","America/Chicago"
-"78626","30.66539","-97.59735","Georgetown","TX","Texas","TRUE","","36556","151.6","48491","Williamson","{""48491"": ""100""}","Williamson","48491","FALSE","FALSE","America/Chicago"
-"78628","30.64104","-97.75111","Georgetown","TX","Texas","TRUE","","35601","187.4","48491","Williamson","{""48491"": ""100""}","Williamson","48491","FALSE","FALSE","America/Chicago"
-"78629","29.47723","-97.4517","Gonzales","TX","Texas","TRUE","","12393","11.2","48177","Gonzales","{""48177"": ""99.76"", ""48123"": ""0.24""}","Gonzales|DeWitt","48177|48123","FALSE","FALSE","America/Chicago"
-"78631","30.33775","-99.3053","Harper","TX","Texas","TRUE","","2964","3.5","48171","Gillespie","{""48171"": ""76.08"", ""48267"": ""13.4"", ""48265"": ""10.52""}","Gillespie|Kimble|Kerr","48171|48267|48265","FALSE","FALSE","America/Chicago"
-"78632","29.69632","-97.47048","Harwood","TX","Texas","TRUE","","1003","4.0","48177","Gonzales","{""48177"": ""62.31"", ""48055"": ""37.69""}","Gonzales|Caldwell","48177|48055","FALSE","FALSE","America/Chicago"
-"78633","30.74198","-97.75432","Georgetown","TX","Texas","TRUE","","25853","121.3","48491","Williamson","{""48491"": ""100""}","Williamson","48491","FALSE","FALSE","America/Chicago"
-"78634","30.55906","-97.54471","Hutto","TX","Texas","TRUE","","34447","208.9","48491","Williamson","{""48491"": ""98.32"", ""48453"": ""1.68""}","Williamson|Travis","48491|48453","FALSE","FALSE","America/Chicago"
-"78635","30.21089","-98.55961","Hye","TX","Texas","TRUE","","564","13.7","48031","Blanco","{""48031"": ""100""}","Blanco","48031","FALSE","FALSE","America/Chicago"
-"78636","30.30503","-98.41888","Johnson City","TX","Texas","TRUE","","3555","3.9","48031","Blanco","{""48031"": ""100""}","Blanco","48031","FALSE","FALSE","America/Chicago"
-"78638","29.65691","-97.79496","Kingsbury","TX","Texas","TRUE","","2133","7.2","48187","Guadalupe","{""48187"": ""100""}","Guadalupe","48187","FALSE","FALSE","America/Chicago"
-"78639","30.66283","-98.44051","Kingsland","TX","Texas","TRUE","","8792","77.2","48299","Llano","{""48299"": ""87.35"", ""48053"": ""12.65""}","Llano|Burnet","48299|48053","FALSE","FALSE","America/Chicago"
-"78640","29.99495","-97.82813","Kyle","TX","Texas","TRUE","","58790","247.6","48209","Hays","{""48209"": ""97.32"", ""48055"": ""2.68""}","Hays|Caldwell","48209|48055","FALSE","FALSE","America/Chicago"
-"78641","30.56175","-97.91516","Leander","TX","Texas","TRUE","","72078","220.2","48491","Williamson","{""48491"": ""83.79"", ""48453"": ""16.21""}","Williamson|Travis","48491|48453","FALSE","FALSE","America/Chicago"
-"78642","30.69726","-97.94692","Liberty Hill","TX","Texas","TRUE","","12363","47.7","48491","Williamson","{""48491"": ""97.69"", ""48053"": ""2.31""}","Williamson|Burnet","48491|48053","FALSE","FALSE","America/Chicago"
-"78643","30.69024","-98.69483","Llano","TX","Texas","TRUE","","6298","3.5","48299","Llano","{""48299"": ""99.72"", ""48031"": ""0.28""}","Llano|Blanco","48299|48031","FALSE","FALSE","America/Chicago"
-"78644","29.87049","-97.67527","Lockhart","TX","Texas","TRUE","","18390","38.0","48055","Caldwell","{""48055"": ""100""}","Caldwell","48055","FALSE","FALSE","America/Chicago"
-"78645","30.44902","-97.96999","Leander","TX","Texas","TRUE","","11579","140.7","48453","Travis","{""48453"": ""100""}","Travis","48453","FALSE","FALSE","America/Chicago"
-"78648","29.69106","-97.6345","Luling","TX","Texas","TRUE","","8148","21.6","48055","Caldwell","{""48055"": ""93.58"", ""48187"": ""4.36"", ""48177"": ""2.06""}","Caldwell|Guadalupe|Gonzales","48055|48187|48177","FALSE","FALSE","America/Chicago"
-"78650","30.29937","-97.2184","McDade","TX","Texas","TRUE","","1632","9.4","48021","Bastrop","{""48021"": ""90.06"", ""48287"": ""9.94""}","Bastrop|Lee","48021|48287","FALSE","FALSE","America/Chicago"
-"78652","30.13281","-97.87467","Manchaca","TX","Texas","TRUE","","5374","119.9","48453","Travis","{""48453"": ""77.7"", ""48209"": ""22.3""}","Travis|Hays","48453|48209","FALSE","FALSE","America/Chicago"
-"78653","30.33941","-97.52363","Manor","TX","Texas","TRUE","","24313","89.5","48453","Travis","{""48453"": ""100""}","Travis","48453","FALSE","FALSE","America/Chicago"
-"78654","30.57233","-98.20735","Marble Falls","TX","Texas","TRUE","","18250","35.1","48053","Burnet","{""48053"": ""96.73"", ""48453"": ""3.27""}","Burnet|Travis","48053|48453","FALSE","FALSE","America/Chicago"
-"78655","29.81446","-97.84018","Martindale","TX","Texas","TRUE","","2845","30.8","48055","Caldwell","{""48055"": ""75.1"", ""48187"": ""24.9""}","Caldwell|Guadalupe","48055|48187","FALSE","FALSE","America/Chicago"
-"78656","29.90047","-97.80868","Maxwell","TX","Texas","TRUE","","2416","43.6","48055","Caldwell","{""48055"": ""98.28"", ""48209"": ""1.72""}","Caldwell|Hays","48055|48209","FALSE","FALSE","America/Chicago"
-"78657","30.53098","-98.37775","Horseshoe Bay","TX","Texas","TRUE","","6277","61.5","48299","Llano","{""48299"": ""62.57"", ""48053"": ""37.43""}","Llano|Burnet","48299|48053","FALSE","FALSE","America/Chicago"
-"78659","30.20888","-97.12359","Paige","TX","Texas","TRUE","","2616","8.9","48021","Bastrop","{""48021"": ""89.18"", ""48287"": ""10.82""}","Bastrop|Lee","48021|48287","FALSE","FALSE","America/Chicago"
-"78660","30.44304","-97.59548","Pflugerville","TX","Texas","TRUE","","91300","776.0","48453","Travis","{""48453"": ""100""}","Travis","48453","FALSE","FALSE","America/Chicago"
-"78661","29.72559","-97.75364","Prairie Lea","TX","Texas","TRUE","","329","50.3","48055","Caldwell","{""48055"": ""100""}","Caldwell","48055","FALSE","FALSE","America/Chicago"
-"78662","29.93523","-97.43421","Red Rock","TX","Texas","TRUE","","2201","10.6","48021","Bastrop","{""48021"": ""85.36"", ""48055"": ""14.64""}","Bastrop|Caldwell","48021|48055","FALSE","FALSE","America/Chicago"
-"78663","30.42067","-98.33532","Round Mountain","TX","Texas","TRUE","","873","2.7","48031","Blanco","{""48031"": ""91.55"", ""48453"": ""4.83"", ""48209"": ""3.62""}","Blanco|Travis|Hays","48031|48453|48209","FALSE","FALSE","America/Chicago"
-"78664","30.50479","-97.64577","Round Rock","TX","Texas","TRUE","","64686","1506.6","48491","Williamson","{""48491"": ""88.5"", ""48453"": ""11.5""}","Williamson|Travis","48491|48453","FALSE","FALSE","America/Chicago"
-"78665","30.54488","-97.64378","Round Rock","TX","Texas","TRUE","","49074","1010.1","48491","Williamson","{""48491"": ""100""}","Williamson","48491","FALSE","FALSE","America/Chicago"
-"78666","29.87958","-97.96642","San Marcos","TX","Texas","TRUE","","82923","181.3","48209","Hays","{""48209"": ""87.17"", ""48187"": ""9.58"", ""48055"": ""3.24"", ""48091"": ""0.02""}","Hays|Guadalupe|Caldwell|Comal","48209|48187|48055|48091","FALSE","FALSE","America/Chicago"
-"78669","30.42264","-98.12244","Spicewood","TX","Texas","TRUE","","12901","35.5","48453","Travis","{""48453"": ""68.61"", ""48053"": ""29.03"", ""48031"": ""2.36""}","Travis|Burnet|Blanco","48453|48053|48031","FALSE","FALSE","America/Chicago"
-"78670","29.77133","-97.82003","Staples","TX","Texas","TRUE","","112","15.2","48187","Guadalupe","{""48187"": ""100""}","Guadalupe","48187","FALSE","FALSE","America/Chicago"
-"78671","30.21635","-98.62376","Stonewall","TX","Texas","TRUE","","706","5.9","48171","Gillespie","{""48171"": ""97.25"", ""48031"": ""2.75""}","Gillespie|Blanco","48171|48031","FALSE","FALSE","America/Chicago"
-"78672","30.85966","-98.4711","Tow","TX","Texas","TRUE","","1283","37.4","48299","Llano","{""48299"": ""100""}","Llano","48299","FALSE","FALSE","America/Chicago"
-"78675","30.44589","-98.68497","Willow City","TX","Texas","TRUE","","314","1.6","48171","Gillespie","{""48171"": ""100""}","Gillespie","48171","FALSE","FALSE","America/Chicago"
-"78676","30.03286","-98.14588","Wimberley","TX","Texas","TRUE","","13124","30.2","48209","Hays","{""48209"": ""99.76"", ""48031"": ""0.24""}","Hays|Blanco","48209|48031","FALSE","FALSE","America/Chicago"
-"78677","29.34997","-97.58021","Wrightsboro","TX","Texas","TRUE","","39","0.6","48177","Gonzales","{""48177"": ""100""}","Gonzales","48177","FALSE","FALSE","America/Chicago"
-"78681","30.53328","-97.7247","Round Rock","TX","Texas","TRUE","","58155","1030.7","48491","Williamson","{""48491"": ""100""}","Williamson","48491","FALSE","FALSE","America/Chicago"
-"78701","30.27049","-97.74235","Austin","TX","Texas","TRUE","","10848","2571.8","48453","Travis","{""48453"": ""100""}","Travis","48453","FALSE","FALSE","America/Chicago"
-"78702","30.26327","-97.71432","Austin","TX","Texas","TRUE","","23671","1828.6","48453","Travis","{""48453"": ""100""}","Travis","48453","FALSE","FALSE","America/Chicago"
-"78703","30.29409","-97.76571","Austin","TX","Texas","TRUE","","20407","1413.5","48453","Travis","{""48453"": ""100""}","Travis","48453","FALSE","FALSE","America/Chicago"
-"78704","30.24316","-97.76536","Austin","TX","Texas","TRUE","","48746","2165.0","48453","Travis","{""48453"": ""100""}","Travis","48453","FALSE","FALSE","America/Chicago"
-"78705","30.29437","-97.73855","Austin","TX","Texas","TRUE","","34549","6075.5","48453","Travis","{""48453"": ""100""}","Travis","48453","FALSE","FALSE","America/Chicago"
-"78712","30.28502","-97.73477","Austin","TX","Texas","TRUE","","880","1067.2","48453","Travis","{""48453"": ""100""}","Travis","48453","FALSE","FALSE","America/Chicago"
-"78717","30.4899","-97.75398","Austin","TX","Texas","TRUE","","30657","921.6","48491","Williamson","{""48491"": ""100""}","Williamson","48491","FALSE","FALSE","America/Chicago"
-"78719","30.14483","-97.67083","Austin","TX","Texas","TRUE","","1709","35.5","48453","Travis","{""48453"": ""100""}","Travis","48453","FALSE","FALSE","America/Chicago"
-"78721","30.27005","-97.68365","Austin","TX","Texas","TRUE","","12110","1263.0","48453","Travis","{""48453"": ""100""}","Travis","48453","FALSE","FALSE","America/Chicago"
-"78722","30.28997","-97.71465","Austin","TX","Texas","TRUE","","7180","1831.9","48453","Travis","{""48453"": ""100""}","Travis","48453","FALSE","FALSE","America/Chicago"
-"78723","30.30427","-97.6857","Austin","TX","Texas","TRUE","","35725","1987.0","48453","Travis","{""48453"": ""100""}","Travis","48453","FALSE","FALSE","America/Chicago"
-"78724","30.2944","-97.61415","Austin","TX","Texas","TRUE","","25723","401.9","48453","Travis","{""48453"": ""100""}","Travis","48453","FALSE","FALSE","America/Chicago"
-"78725","30.23581","-97.60837","Austin","TX","Texas","TRUE","","8469","185.3","48453","Travis","{""48453"": ""100""}","Travis","48453","FALSE","FALSE","America/Chicago"
-"78726","30.42949","-97.84206","Austin","TX","Texas","TRUE","","14040","497.8","48453","Travis","{""48453"": ""100"", ""48491"": ""0""}","Travis|Williamson","48453|48491","FALSE","FALSE","America/Chicago"
-"78727","30.4295","-97.71743","Austin","TX","Texas","TRUE","","30561","1377.2","48453","Travis","{""48453"": ""99.93"", ""48491"": ""0.07""}","Travis|Williamson","48453|48491","FALSE","FALSE","America/Chicago"
-"78728","30.45654","-97.68986","Austin","TX","Texas","TRUE","","21125","1005.7","48453","Travis","{""48453"": ""91.38"", ""48491"": ""8.62""}","Travis|Williamson","48453|48491","FALSE","FALSE","America/Chicago"
-"78729","30.45842","-97.75595","Austin","TX","Texas","TRUE","","28644","1204.2","48491","Williamson","{""48491"": ""91.62"", ""48453"": ""8.38""}","Williamson|Travis","48491|48453","FALSE","FALSE","America/Chicago"
-"78730","30.36489","-97.83731","Austin","TX","Texas","TRUE","","9803","259.7","48453","Travis","{""48453"": ""100""}","Travis","48453","FALSE","FALSE","America/Chicago"
-"78731","30.34736","-97.76847","Austin","TX","Texas","TRUE","","27298","1216.6","48453","Travis","{""48453"": ""100""}","Travis","48453","FALSE","FALSE","America/Chicago"
-"78732","30.37913","-97.89309","Austin","TX","Texas","TRUE","","17780","514.8","48453","Travis","{""48453"": ""100""}","Travis","48453","FALSE","FALSE","America/Chicago"
-"78733","30.32323","-97.87609","Austin","TX","Texas","TRUE","","8927","301.0","48453","Travis","{""48453"": ""100""}","Travis","48453","FALSE","FALSE","America/Chicago"
-"78734","30.37853","-97.94961","Austin","TX","Texas","TRUE","","19452","373.2","48453","Travis","{""48453"": ""100""}","Travis","48453","FALSE","FALSE","America/Chicago"
-"78735","30.26591","-97.86659","Austin","TX","Texas","TRUE","","18122","340.5","48453","Travis","{""48453"": ""100""}","Travis","48453","FALSE","FALSE","America/Chicago"
-"78736","30.26109","-97.95944","Austin","TX","Texas","TRUE","","10163","135.4","48453","Travis","{""48453"": ""100""}","Travis","48453","FALSE","FALSE","America/Chicago"
-"78737","30.1878","-97.95965","Austin","TX","Texas","TRUE","","17173","174.7","48209","Hays","{""48209"": ""70.98"", ""48453"": ""29.02""}","Hays|Travis","48209|48453","FALSE","FALSE","America/Chicago"
-"78738","30.31942","-97.95838","Austin","TX","Texas","TRUE","","15986","363.2","48453","Travis","{""48453"": ""100""}","Travis","48453","FALSE","FALSE","America/Chicago"
-"78739","30.17844","-97.88868","Austin","TX","Texas","TRUE","","21040","711.3","48453","Travis","{""48453"": ""100""}","Travis","48453","FALSE","FALSE","America/Chicago"
-"78741","30.23049","-97.71401","Austin","TX","Texas","TRUE","","52114","2651.4","48453","Travis","{""48453"": ""100""}","Travis","48453","FALSE","FALSE","America/Chicago"
-"78742","30.24413","-97.6583","Austin","TX","Texas","TRUE","","887","59.4","48453","Travis","{""48453"": ""100""}","Travis","48453","FALSE","FALSE","America/Chicago"
-"78744","30.18276","-97.7292","Austin","TX","Texas","TRUE","","50123","903.1","48453","Travis","{""48453"": ""100""}","Travis","48453","FALSE","FALSE","America/Chicago"
-"78745","30.20686","-97.79738","Austin","TX","Texas","TRUE","","61907","1789.3","48453","Travis","{""48453"": ""100""}","Travis","48453","FALSE","FALSE","America/Chicago"
-"78746","30.29729","-97.81054","Austin","TX","Texas","TRUE","","28608","489.9","48453","Travis","{""48453"": ""100""}","Travis","48453","FALSE","FALSE","America/Chicago"
-"78747","30.12652","-97.74017","Austin","TX","Texas","TRUE","","21021","341.5","48453","Travis","{""48453"": ""100""}","Travis","48453","FALSE","FALSE","America/Chicago"
-"78748","30.16538","-97.82343","Austin","TX","Texas","TRUE","","51653","1573.1","48453","Travis","{""48453"": ""100""}","Travis","48453","FALSE","FALSE","America/Chicago"
-"78749","30.21378","-97.85819","Austin","TX","Texas","TRUE","","38041","1458.6","48453","Travis","{""48453"": ""100""}","Travis","48453","FALSE","FALSE","America/Chicago"
-"78750","30.41827","-97.80246","Austin","TX","Texas","TRUE","","31734","913.6","48453","Travis","{""48453"": ""54.01"", ""48491"": ""45.99""}","Travis|Williamson","48453|48491","FALSE","FALSE","America/Chicago"
-"78751","30.31082","-97.72275","Austin","TX","Texas","TRUE","","16197","2607.4","48453","Travis","{""48453"": ""100""}","Travis","48453","FALSE","FALSE","America/Chicago"
-"78752","30.33181","-97.70425","Austin","TX","Texas","TRUE","","20881","2410.9","48453","Travis","{""48453"": ""100""}","Travis","48453","FALSE","FALSE","America/Chicago"
-"78753","30.38205","-97.67361","Austin","TX","Texas","TRUE","","60426","2146.9","48453","Travis","{""48453"": ""100""}","Travis","48453","FALSE","FALSE","America/Chicago"
-"78754","30.35574","-97.64483","Austin","TX","Texas","TRUE","","26433","770.1","48453","Travis","{""48453"": ""100""}","Travis","48453","FALSE","FALSE","America/Chicago"
-"78756","30.32227","-97.74017","Austin","TX","Texas","TRUE","","8694","2008.2","48453","Travis","{""48453"": ""100""}","Travis","48453","FALSE","FALSE","America/Chicago"
-"78757","30.35158","-97.73252","Austin","TX","Texas","TRUE","","25706","2018.9","48453","Travis","{""48453"": ""100""}","Travis","48453","FALSE","FALSE","America/Chicago"
-"78758","30.388","-97.70682","Austin","TX","Texas","TRUE","","48993","2036.9","48453","Travis","{""48453"": ""100""}","Travis","48453","FALSE","FALSE","America/Chicago"
-"78759","30.40266","-97.76104","Austin","TX","Texas","TRUE","","43298","1201.3","48453","Travis","{""48453"": ""99.22"", ""48491"": ""0.78""}","Travis|Williamson","48453|48491","FALSE","FALSE","America/Chicago"
-"78801","29.35664","-99.87148","Uvalde","TX","Texas","TRUE","","22518","10.7","48463","Uvalde","{""48463"": ""100""}","Uvalde","48463","FALSE","FALSE","America/Chicago"
-"78802","29.15506","-99.88181","Uvalde","TX","Texas","TRUE","","21","0.7","48463","Uvalde","{""48463"": ""100""}","Uvalde","48463","FALSE","FALSE","America/Chicago"
-"78827","28.42466","-99.73537","Asherton","TX","Texas","TRUE","","1173","4.4","48127","Dimmit","{""48127"": ""100""}","Dimmit","48127","FALSE","FALSE","America/Chicago"
-"78828","29.86442","-100.01737","Barksdale","TX","Texas","TRUE","","117","0.3","48137","Edwards","{""48137"": ""74.42"", ""48385"": ""25.58""}","Edwards|Real","48137|48385","FALSE","FALSE","America/Chicago"
-"78829","28.88992","-99.5591","Batesville","TX","Texas","TRUE","","1448","1.1","48507","Zavala","{""48507"": ""100""}","Zavala","48507","FALSE","FALSE","America/Chicago"
-"78830","28.52537","-99.50854","Big Wells","TX","Texas","TRUE","","966","1.8","48127","Dimmit","{""48127"": ""100""}","Dimmit","48127","FALSE","FALSE","America/Chicago"
-"78832","29.39072","-100.41624","Brackettville","TX","Texas","TRUE","","3659","1.3","48271","Kinney","{""48271"": ""100""}","Kinney","48271","FALSE","FALSE","America/Chicago"
-"78833","29.69362","-100.05887","Camp Wood","TX","Texas","TRUE","","1463","2.3","48385","Real","{""48385"": ""84.6"", ""48137"": ""9.16"", ""48463"": ""6.24""}","Real|Edwards|Uvalde","48385|48137|48463","FALSE","FALSE","America/Chicago"
-"78834","28.4643","-99.92141","Carrizo Springs","TX","Texas","TRUE","","8059","5.6","48127","Dimmit","{""48127"": ""100""}","Dimmit","48127","FALSE","FALSE","America/Chicago"
-"78836","28.29633","-99.70453","Catarina","TX","Texas","TRUE","","228","0.4","48127","Dimmit","{""48127"": ""100""}","Dimmit","48127","FALSE","FALSE","America/Chicago"
-"78837","29.83396","-101.21496","Comstock","TX","Texas","TRUE","","230","0.1","48465","Val Verde","{""48465"": ""100""}","Val Verde","48465","FALSE","FALSE","America/Chicago"
-"78838","29.5291","-99.74382","Concan","TX","Texas","TRUE","","202","1.7","48463","Uvalde","{""48463"": ""100""}","Uvalde","48463","FALSE","FALSE","America/Chicago"
-"78839","28.71396","-99.8165","Crystal City","TX","Texas","TRUE","","8995","9.7","48507","Zavala","{""48507"": ""99.85"", ""48127"": ""0.15""}","Zavala|Dimmit","48507|48127","FALSE","FALSE","America/Chicago"
-"78840","29.74209","-100.88273","Del Rio","TX","Texas","TRUE","","47937","19.5","48465","Val Verde","{""48465"": ""100""}","Val Verde","48465","FALSE","FALSE","America/Chicago"
-"78843","29.35687","-100.77863","Laughlin Afb","TX","Texas","TRUE","","689","55.4","48465","Val Verde","{""48465"": ""100""}","Val Verde","48465","FALSE","FALSE","America/Chicago"
-"78850","29.28023","-99.32761","D Hanis","TX","Texas","TRUE","","1109","1.6","48325","Medina","{""48325"": ""100""}","Medina","48325","FALSE","FALSE","America/Chicago"
-"78851","30.00451","-101.93072","Dryden","TX","Texas","TRUE","","37","0.0","48443","Terrell","{""48443"": ""100""}","Terrell","48443","FALSE","FALSE","America/Chicago"
-"78852","28.75206","-100.31076","Eagle Pass","TX","Texas","TRUE","","57159","38.5","48323","Maverick","{""48323"": ""100""}","Maverick","48323","FALSE","FALSE","America/Chicago"
-"78860","28.48238","-100.29501","El Indio","TX","Texas","TRUE","","21","0.2","48323","Maverick","{""48323"": ""100""}","Maverick","48323","FALSE","FALSE","America/Chicago"
-"78861","29.42672","-99.15448","Hondo","TX","Texas","TRUE","","13663","11.5","48325","Medina","{""48325"": ""100""}","Medina","48325","FALSE","FALSE","America/Chicago"
-"78870","29.29912","-99.62906","Knippa","TX","Texas","TRUE","","1099","3.6","48463","Uvalde","{""48463"": ""100""}","Uvalde","48463","FALSE","FALSE","America/Chicago"
-"78871","29.99927","-101.64943","Langtry","TX","Texas","TRUE","","13","0.0","48465","Val Verde","{""48465"": ""100""}","Val Verde","48465","FALSE","FALSE","America/Chicago"
-"78872","28.92588","-99.88007","La Pryor","TX","Texas","TRUE","","1608","3.4","48507","Zavala","{""48507"": ""100""}","Zavala","48507","FALSE","FALSE","America/Chicago"
-"78873","29.76655","-99.73616","Leakey","TX","Texas","TRUE","","2053","3.5","48385","Real","{""48385"": ""100""}","Real","48385","FALSE","FALSE","America/Chicago"
-"78877","28.94734","-100.59231","Quemado","TX","Texas","TRUE","","724","4.7","48323","Maverick","{""48323"": ""100""}","Maverick","48323","FALSE","FALSE","America/Chicago"
-"78879","29.64778","-99.67588","Rio Frio","TX","Texas","TRUE","","89","0.8","48385","Real","{""48385"": ""79.17"", ""48463"": ""20.83""}","Real|Uvalde","48385|48463","FALSE","FALSE","America/Chicago"
-"78880","29.97978","-100.28849","Rocksprings","TX","Texas","TRUE","","1626","0.4","48137","Edwards","{""48137"": ""97.92"", ""48385"": ""2.08""}","Edwards|Real","48137|48385","FALSE","FALSE","America/Chicago"
-"78881","29.38695","-99.52964","Sabinal","TX","Texas","TRUE","","2184","3.4","48463","Uvalde","{""48463"": ""100""}","Uvalde","48463","FALSE","FALSE","America/Chicago"
-"78883","29.68094","-99.31614","Tarpley","TX","Texas","TRUE","","395","2.0","48019","Bandera","{""48019"": ""100""}","Bandera","48019","FALSE","FALSE","America/Chicago"
-"78884","29.61298","-99.49587","Utopia","TX","Texas","TRUE","","1134","1.8","48463","Uvalde","{""48463"": ""54.49"", ""48019"": ""43.96"", ""48325"": ""1.55""}","Uvalde|Bandera|Medina","48463|48019|48325","FALSE","FALSE","America/Chicago"
-"78885","29.82233","-99.54779","Vanderpool","TX","Texas","TRUE","","115","0.6","48019","Bandera","{""48019"": ""92.5"", ""48385"": ""7.5""}","Bandera|Real","48019|48385","FALSE","FALSE","America/Chicago"
-"78886","29.13466","-99.16073","Yancey","TX","Texas","TRUE","","469","1.8","48325","Medina","{""48325"": ""97.06"", ""48163"": ""2.94""}","Medina|Frio","48325|48163","FALSE","FALSE","America/Chicago"
-"78931","30.02924","-96.44481","Bleiblerville","TX","Texas","TRUE","","368","8.3","48015","Austin","{""48015"": ""100""}","Austin","48015","FALSE","FALSE","America/Chicago"
-"78932","30.16569","-96.70634","Carmine","TX","Texas","TRUE","","565","4.0","48149","Fayette","{""48149"": ""67.77"", ""48477"": ""32.23""}","Fayette|Washington","48149|48477","FALSE","FALSE","America/Chicago"
-"78933","29.7954","-96.35761","Cat Spring","TX","Texas","TRUE","","1308","4.7","48089","Colorado","{""48089"": ""50.66"", ""48015"": ""49.34""}","Colorado|Austin","48089|48015","FALSE","FALSE","America/Chicago"
-"78934","29.69373","-96.56014","Columbus","TX","Texas","TRUE","","6816","13.7","48089","Colorado","{""48089"": ""100""}","Colorado","48089","FALSE","FALSE","America/Chicago"
-"78935","29.69036","-96.43035","Alleyton","TX","Texas","TRUE","","1234","7.0","48089","Colorado","{""48089"": ""100""}","Colorado","48089","FALSE","FALSE","America/Chicago"
-"78938","29.80211","-96.69061","Ellinger","TX","Texas","TRUE","","303","5.3","48149","Fayette","{""48149"": ""80.68"", ""48089"": ""19.32""}","Fayette|Colorado","48149|48089","FALSE","FALSE","America/Chicago"
-"78940","29.93147","-96.66018","Fayetteville","TX","Texas","TRUE","","2521","7.2","48149","Fayette","{""48149"": ""78.93"", ""48089"": ""12.68"", ""48015"": ""8.39""}","Fayette|Colorado|Austin","48149|48089|48015","FALSE","FALSE","America/Chicago"
-"78941","29.74274","-97.15231","Flatonia","TX","Texas","TRUE","","2709","6.7","48149","Fayette","{""48149"": ""94.26"", ""48021"": ""2.9"", ""48177"": ""2.84""}","Fayette|Bastrop|Gonzales","48149|48021|48177","FALSE","FALSE","America/Chicago"
-"78942","30.16901","-96.92221","Giddings","TX","Texas","TRUE","","9033","17.0","48287","Lee","{""48287"": ""97.99"", ""48149"": ""1.65"", ""48021"": ""0.37""}","Lee|Fayette|Bastrop","48287|48149|48021","FALSE","FALSE","America/Chicago"
-"78943","29.71058","-96.61182","Glidden","TX","Texas","TRUE","","311","20.7","48089","Colorado","{""48089"": ""100""}","Colorado","48089","FALSE","FALSE","America/Chicago"
-"78944","30.00044","-96.498","Industry","TX","Texas","TRUE","","524","12.7","48015","Austin","{""48015"": ""100""}","Austin","48015","FALSE","FALSE","America/Chicago"
-"78945","29.91566","-96.88949","La Grange","TX","Texas","TRUE","","10767","16.5","48149","Fayette","{""48149"": ""99.76"", ""48021"": ""0.24""}","Fayette|Bastrop","48149|48021","FALSE","FALSE","America/Chicago"
-"78946","30.19124","-96.7709","Ledbetter","TX","Texas","TRUE","","1270","5.1","48287","Lee","{""48287"": ""49.9"", ""48149"": ""31.15"", ""48477"": ""18.96""}","Lee|Fayette|Washington","48287|48149|48477","FALSE","FALSE","America/Chicago"
-"78947","30.42088","-97.03765","Lexington","TX","Texas","TRUE","","4634","8.4","48287","Lee","{""48287"": ""100""}","Lee","48287","FALSE","FALSE","America/Chicago"
-"78948","30.303","-96.962","Lincoln","TX","Texas","TRUE","","636","3.8","48287","Lee","{""48287"": ""100""}","Lee","48287","FALSE","FALSE","America/Chicago"
-"78949","29.84134","-97.08594","Muldoon","TX","Texas","TRUE","","590","2.9","48149","Fayette","{""48149"": ""100""}","Fayette","48149","FALSE","FALSE","America/Chicago"
-"78950","29.90255","-96.48194","New Ulm","TX","Texas","TRUE","","1810","6.3","48015","Austin","{""48015"": ""66.98"", ""48089"": ""33.02""}","Austin|Colorado","48015|48089","FALSE","FALSE","America/Chicago"
-"78951","29.58727","-96.82436","Oakland","TX","Texas","TRUE","","0","0.0","48089","Colorado","{""48089"": ""100""}","Colorado","48089","FALSE","FALSE","America/Chicago"
-"78953","29.8522","-97.3483","Rosanky","TX","Texas","TRUE","","701","3.0","48021","Bastrop","{""48021"": ""75.05"", ""48055"": ""24.95""}","Bastrop|Caldwell","48021|48055","FALSE","FALSE","America/Chicago"
-"78954","30.04587","-96.69959","Round Top","TX","Texas","TRUE","","1110","5.7","48149","Fayette","{""48149"": ""95.99"", ""48015"": ""4.01""}","Fayette|Austin","48149|48015","FALSE","FALSE","America/Chicago"
-"78956","29.68793","-96.93416","Schulenburg","TX","Texas","TRUE","","5685","13.0","48149","Fayette","{""48149"": ""92.34"", ""48285"": ""7.66""}","Fayette|Lavaca","48149|48285","FALSE","FALSE","America/Chicago"
-"78957","30.01287","-97.17578","Smithville","TX","Texas","TRUE","","9699","20.0","48021","Bastrop","{""48021"": ""97.3"", ""48149"": ""2.7""}","Bastrop|Fayette","48021|48149","FALSE","FALSE","America/Chicago"
-"78959","29.69777","-97.30285","Waelder","TX","Texas","TRUE","","2097","5.2","48177","Gonzales","{""48177"": ""90.58"", ""48149"": ""6.97"", ""48055"": ""2.45""}","Gonzales|Fayette|Caldwell","48177|48149|48055","FALSE","FALSE","America/Chicago"
-"78962","29.65419","-96.73556","Weimar","TX","Texas","TRUE","","5138","10.2","48089","Colorado","{""48089"": ""89.41"", ""48149"": ""10.59""}","Colorado|Fayette","48089|48149","FALSE","FALSE","America/Chicago"
-"78963","29.92619","-97.02796","West Point","TX","Texas","TRUE","","1202","11.2","48149","Fayette","{""48149"": ""100""}","Fayette","48149","FALSE","FALSE","America/Chicago"
-"79001","35.32995","-102.78511","Adrian","TX","Texas","TRUE","","178","0.2","48359","Oldham","{""48359"": ""89.56"", ""48117"": ""10.44""}","Oldham|Deaf Smith","48359|48117","FALSE","FALSE","America/Chicago"
-"79003","35.58007","-100.09466","Allison","TX","Texas","TRUE","","185","1.8","48483","Wheeler","{""48483"": ""100""}","Wheeler","48483","FALSE","FALSE","America/Chicago"
-"79005","36.38545","-100.50397","Booker","TX","Texas","TRUE","","1714","3.3","48295","Lipscomb","{""48295"": ""95.56"", ""48357"": ""4.44""}","Lipscomb|Ochiltree","48295|48357","FALSE","FALSE","America/Chicago"
-"79007","35.69978","-101.39791","Borger","TX","Texas","TRUE","","14290","123.9","48233","Hutchinson","{""48233"": ""100""}","Hutchinson","48233","FALSE","FALSE","America/Chicago"
-"79009","34.53322","-102.88568","Bovina","TX","Texas","TRUE","","1754","5.8","48369","Parmer","{""48369"": ""100""}","Parmer","48369","FALSE","FALSE","America/Chicago"
-"79010","35.44484","-102.12361","Boys Ranch","TX","Texas","TRUE","","910","2.0","48359","Oldham","{""48359"": ""63.72"", ""48375"": ""36.28""}","Oldham|Potter","48359|48375","FALSE","FALSE","America/Chicago"
-"79011","35.63469","-100.22942","Briscoe","TX","Texas","TRUE","","206","0.7","48483","Wheeler","{""48483"": ""63.56"", ""48211"": ""36.44""}","Wheeler|Hemphill","48483|48211","FALSE","FALSE","America/Chicago"
-"79012","35.26652","-102.10915","Bushland","TX","Texas","TRUE","","1427","8.3","48375","Potter","{""48375"": ""92.42"", ""48381"": ""7.58""}","Potter|Randall","48375|48381","FALSE","FALSE","America/Chicago"
-"79013","36.03841","-102.00344","Cactus","TX","Texas","TRUE","","3618","298.0","48341","Moore","{""48341"": ""100""}","Moore","48341","FALSE","FALSE","America/Chicago"
-"79014","35.91222","-100.29813","Canadian","TX","Texas","TRUE","","3964","1.6","48211","Hemphill","{""48211"": ""98.67"", ""48295"": ""1.33""}","Hemphill|Lipscomb","48211|48295","FALSE","FALSE","America/Chicago"
-"79015","34.94032","-101.91647","Canyon","TX","Texas","TRUE","","21925","22.1","48381","Randall","{""48381"": ""100""}","Randall","48381","FALSE","FALSE","America/Chicago"
-"79016","34.98342","-101.91867","Canyon","TX","Texas","TRUE","","147","4310.1","48381","Randall","{""48381"": ""100""}","Randall","48381","FALSE","FALSE","America/Chicago"
-"79018","35.69549","-102.38629","Channing","TX","Texas","TRUE","","307","0.3","48205","Hartley","{""48205"": ""87.23"", ""48341"": ""8.21"", ""48359"": ""4.56""}","Hartley|Moore|Oldham","48205|48341|48359","FALSE","FALSE","America/Chicago"
-"79019","35.00736","-101.39696","Claude","TX","Texas","TRUE","","1871","1.3","48011","Armstrong","{""48011"": ""100""}","Armstrong","48011","FALSE","FALSE","America/Chicago"
-"79021","33.98484","-102.02773","Cotton Center","TX","Texas","TRUE","","183","4.1","48189","Hale","{""48189"": ""100""}","Hale","48189","FALSE","FALSE","America/Chicago"
-"79022","36.10661","-102.61107","Dalhart","TX","Texas","TRUE","","11400","2.3","48111","Dallam","{""48111"": ""55.14"", ""48205"": ""44.86""}","Dallam|Hartley","48111|48205","FALSE","FALSE","America/Chicago"
-"79024","36.43867","-100.34722","Darrouzett","TX","Texas","TRUE","","380","2.5","48295","Lipscomb","{""48295"": ""100""}","Lipscomb","48295","FALSE","FALSE","America/Chicago"
-"79025","34.94098","-102.2059","Dawn","TX","Texas","TRUE","","20","0.6","48117","Deaf Smith","{""48117"": ""100""}","Deaf Smith","48117","FALSE","FALSE","America/Chicago"
-"79027","34.48691","-102.33088","Dimmitt","TX","Texas","TRUE","","4794","6.1","48069","Castro","{""48069"": ""100""}","Castro","48069","FALSE","FALSE","America/Chicago"
-"79029","35.89512","-102.02431","Dumas","TX","Texas","TRUE","","15584","20.0","48341","Moore","{""48341"": ""100""}","Moore","48341","FALSE","FALSE","America/Chicago"
-"79031","34.26917","-102.45283","Earth","TX","Texas","TRUE","","1377","4.6","48279","Lamb","{""48279"": ""96.77"", ""48069"": ""3.23""}","Lamb|Castro","48279|48069","FALSE","FALSE","America/Chicago"
-"79032","34.28289","-101.94141","Edmonson","TX","Texas","TRUE","","98","2.0","48189","Hale","{""48189"": ""100""}","Hale","48189","FALSE","FALSE","America/Chicago"
-"79033","36.33008","-100.98394","Farnsworth","TX","Texas","TRUE","","47","1.5","48357","Ochiltree","{""48357"": ""100""}","Ochiltree","48357","FALSE","FALSE","America/Chicago"
-"79034","36.37348","-100.16502","Follett","TX","Texas","TRUE","","535","0.7","48295","Lipscomb","{""48295"": ""100""}","Lipscomb","48295","FALSE","FALSE","America/Chicago"
-"79035","34.68446","-102.78723","Friona","TX","Texas","TRUE","","5307","3.1","48369","Parmer","{""48369"": ""98.74"", ""48117"": ""1.26""}","Parmer|Deaf Smith","48369|48117","FALSE","FALSE","America/Chicago"
-"79036","35.61317","-101.54855","Fritch","TX","Texas","TRUE","","5184","31.2","48233","Hutchinson","{""48233"": ""85.8"", ""48065"": ""11.41"", ""48341"": ""2.69"", ""48375"": ""0.1""}","Hutchinson|Carson|Moore|Potter","48233|48065|48341|48375","FALSE","FALSE","America/Chicago"
-"79039","35.26038","-101.09519","Groom","TX","Texas","TRUE","","965","1.7","48065","Carson","{""48065"": ""88.45"", ""48179"": ""10.91"", ""48129"": ""0.64""}","Carson|Gray|Donley","48065|48179|48129","FALSE","FALSE","America/Chicago"
-"79040","36.29869","-101.5571","Gruver","TX","Texas","TRUE","","1962","1.4","48195","Hansford","{""48195"": ""89.56"", ""48421"": ""10.44""}","Hansford|Sherman","48195|48421","FALSE","FALSE","America/Chicago"
-"79041","34.0477","-101.9313","Hale Center","TX","Texas","TRUE","","2754","4.0","48189","Hale","{""48189"": ""99.41"", ""48279"": ""0.59""}","Hale|Lamb","48189|48279","FALSE","FALSE","America/Chicago"
-"79042","34.74685","-101.90313","Happy","TX","Texas","TRUE","","1200","1.1","48437","Swisher","{""48437"": ""62.96"", ""48381"": ""30.97"", ""48069"": ""3.76"", ""48011"": ""2.31""}","Swisher|Randall|Castro|Armstrong","48437|48381|48069|48011","FALSE","FALSE","America/Chicago"
-"79043","34.37049","-102.13485","Hart","TX","Texas","TRUE","","1514","4.0","48069","Castro","{""48069"": ""98.45"", ""48279"": ""1.55""}","Castro|Lamb","48069|48279","FALSE","FALSE","America/Chicago"
-"79044","35.87299","-102.36703","Hartley","TX","Texas","TRUE","","646","1.3","48205","Hartley","{""48205"": ""100""}","Hartley","48205","FALSE","FALSE","America/Chicago"
-"79045","34.91238","-102.55902","Hereford","TX","Texas","TRUE","","18847","6.0","48117","Deaf Smith","{""48117"": ""97.51"", ""48069"": ""2.49""}","Deaf Smith|Castro","48117|48069","FALSE","FALSE","America/Chicago"
-"79046","36.16345","-100.1216","Higgins","TX","Texas","TRUE","","712","1.7","48295","Lipscomb","{""48295"": ""100""}","Lipscomb","48295","FALSE","FALSE","America/Chicago"
-"79051","36.47743","-102.26","Kerrick","TX","Texas","TRUE","","0","0.0","48111","Dallam","{""48111"": ""100""}","Dallam","48111","FALSE","FALSE","America/Chicago"
-"79052","34.36101","-101.74252","Kress","TX","Texas","TRUE","","1318","2.8","48437","Swisher","{""48437"": ""97.14"", ""48189"": ""2.46"", ""48069"": ""0.4""}","Swisher|Hale|Castro","48437|48189|48069","FALSE","FALSE","America/Chicago"
-"79053","34.40739","-102.58601","Lazbuddie","TX","Texas","TRUE","","97","1.9","48369","Parmer","{""48369"": ""100""}","Parmer","48369","FALSE","FALSE","America/Chicago"
-"79054","35.42585","-100.7875","Lefors","TX","Texas","TRUE","","676","6.5","48179","Gray","{""48179"": ""100""}","Gray","48179","FALSE","FALSE","America/Chicago"
-"79056","36.21717","-100.22121","Lipscomb","TX","Texas","TRUE","","56","0.5","48295","Lipscomb","{""48295"": ""100""}","Lipscomb","48295","FALSE","FALSE","America/Chicago"
-"79057","35.24303","-100.6426","Mclean","TX","Texas","TRUE","","1254","1.3","48179","Gray","{""48179"": ""91.79"", ""48483"": ""4.56"", ""48129"": ""3.65""}","Gray|Wheeler|Donley","48179|48483|48129","FALSE","FALSE","America/Chicago"
-"79058","35.6164","-101.9076","Masterson","TX","Texas","TRUE","","0","0.0","48375","Potter","{""48375"": ""100"", ""48341"": ""0""}","Potter|Moore","48375|48341","FALSE","FALSE","America/Chicago"
-"79059","35.83018","-100.76789","Miami","TX","Texas","TRUE","","671","0.5","48393","Roberts","{""48393"": ""96.65"", ""48179"": ""3.35""}","Roberts|Gray","48393|48179","FALSE","FALSE","America/Chicago"
-"79061","35.52039","-100.44182","Mobeetie","TX","Texas","TRUE","","375","0.9","48483","Wheeler","{""48483"": ""100""}","Wheeler","48483","FALSE","FALSE","America/Chicago"
-"79062","36.03137","-101.52535","Morse","TX","Texas","TRUE","","180","0.8","48195","Hansford","{""48195"": ""69.72"", ""48233"": ""30.28""}","Hansford|Hutchinson","48195|48233","FALSE","FALSE","America/Chicago"
-"79063","34.52584","-102.10042","Nazareth","TX","Texas","TRUE","","768","3.1","48069","Castro","{""48069"": ""100""}","Castro","48069","FALSE","FALSE","America/Chicago"
-"79064","34.19816","-102.12113","Olton","TX","Texas","TRUE","","2495","6.6","48279","Lamb","{""48279"": ""96.6"", ""48189"": ""3.4""}","Lamb|Hale","48279|48189","FALSE","FALSE","America/Chicago"
-"79065","35.54207","-100.8998","Pampa","TX","Texas","TRUE","","20606","16.2","48179","Gray","{""48179"": ""99.43"", ""48393"": ""0.57""}","Gray|Roberts","48179|48393","FALSE","FALSE","America/Chicago"
-"79068","35.34375","-101.43649","Panhandle","TX","Texas","TRUE","","3489","3.4","48065","Carson","{""48065"": ""100""}","Carson","48065","FALSE","FALSE","America/Chicago"
-"79070","36.27683","-100.79875","Perryton","TX","Texas","TRUE","","9851","5.0","48357","Ochiltree","{""48357"": ""100""}","Ochiltree","48357","FALSE","FALSE","America/Chicago"
-"79072","34.17158","-101.73863","Plainview","TX","Texas","TRUE","","26629","26.9","48189","Hale","{""48189"": ""99.99"", ""48437"": ""0.01""}","Hale|Swisher","48189|48437","FALSE","FALSE","America/Chicago"
-"79078","35.70051","-101.55828","Sanford","TX","Texas","TRUE","","217","3.7","48233","Hutchinson","{""48233"": ""100""}","Hutchinson","48233","FALSE","FALSE","America/Chicago"
-"79079","35.20904","-100.24313","Shamrock","TX","Texas","TRUE","","2617","1.9","48483","Wheeler","{""48483"": ""94.41"", ""48087"": ""5.59""}","Wheeler|Collingsworth","48483|48087","FALSE","FALSE","America/Chicago"
-"79080","35.7348","-101.21075","Skellytown","TX","Texas","TRUE","","461","1.0","48065","Carson","{""48065"": ""79.34"", ""48233"": ""20.66""}","Carson|Hutchinson","48065|48233","FALSE","FALSE","America/Chicago"
-"79081","36.2301","-101.21809","Spearman","TX","Texas","TRUE","","3918","2.3","48195","Hansford","{""48195"": ""97.49"", ""48233"": ""1.25"", ""48357"": ""1.25""}","Hansford|Hutchinson|Ochiltree","48195|48233|48357","FALSE","FALSE","America/Chicago"
-"79082","34.22431","-102.28774","Springlake","TX","Texas","TRUE","","218","1.0","48279","Lamb","{""48279"": ""100""}","Lamb","48279","FALSE","FALSE","America/Chicago"
-"79083","35.88431","-101.52804","Stinnett","TX","Texas","TRUE","","1923","2.3","48233","Hutchinson","{""48233"": ""97.37"", ""48341"": ""2.63""}","Hutchinson|Moore","48233|48341","FALSE","FALSE","America/Chicago"
-"79084","36.2801","-102.00052","Stratford","TX","Texas","TRUE","","2123","1.5","48421","Sherman","{""48421"": ""100""}","Sherman","48421","FALSE","FALSE","America/Chicago"
-"79085","34.74073","-102.51441","Summerfield","TX","Texas","TRUE","","18","6.0","48069","Castro","{""48069"": ""100""}","Castro","48069","FALSE","FALSE","America/Chicago"
-"79086","36.03844","-101.7741","Sunray","TX","Texas","TRUE","","2228","4.2","48341","Moore","{""48341"": ""96.86"", ""48421"": ""3.14""}","Moore|Sherman","48341|48421","FALSE","FALSE","America/Chicago"
-"79087","36.30895","-102.93592","Texline","TX","Texas","TRUE","","629","1.0","48111","Dallam","{""48111"": ""100""}","Dallam","48111","FALSE","FALSE","America/Chicago"
-"79088","34.57853","-101.69537","Tulia","TX","Texas","TRUE","","5394","3.6","48437","Swisher","{""48437"": ""99.09"", ""48045"": ""0.61"", ""48069"": ""0.3""}","Swisher|Briscoe|Castro","48437|48045|48069","FALSE","FALSE","America/Chicago"
-"79091","34.90633","-102.11251","Umbarger","TX","Texas","TRUE","","77","1.5","48381","Randall","{""48381"": ""100""}","Randall","48381","FALSE","FALSE","America/Chicago"
-"79092","35.2815","-102.46868","Vega","TX","Texas","TRUE","","1148","1.5","48359","Oldham","{""48359"": ""94.21"", ""48117"": ""5.79""}","Oldham|Deaf Smith","48359|48117","FALSE","FALSE","America/Chicago"
-"79093","36.28992","-101.03396","Waka","TX","Texas","TRUE","","102","1.3","48357","Ochiltree","{""48357"": ""100""}","Ochiltree","48357","FALSE","FALSE","America/Chicago"
-"79094","34.85075","-101.52674","Wayside","TX","Texas","TRUE","","14","0.1","48011","Armstrong","{""48011"": ""100""}","Armstrong","48011","FALSE","FALSE","America/Chicago"
-"79095","34.89616","-100.2061","Wellington","TX","Texas","TRUE","","2657","2.8","48087","Collingsworth","{""48087"": ""100""}","Collingsworth","48087","FALSE","FALSE","America/Chicago"
-"79096","35.4381","-100.19611","Wheeler","TX","Texas","TRUE","","2071","3.3","48483","Wheeler","{""48483"": ""100""}","Wheeler","48483","FALSE","FALSE","America/Chicago"
-"79097","35.43582","-101.17852","White Deer","TX","Texas","TRUE","","863","2.8","48065","Carson","{""48065"": ""100""}","Carson","48065","FALSE","FALSE","America/Chicago"
-"79098","35.15532","-102.22841","Wildorado","TX","Texas","TRUE","","484","0.9","48359","Oldham","{""48359"": ""45.65"", ""48117"": ""30.56"", ""48375"": ""12.57"", ""48381"": ""11.22""}","Oldham|Deaf Smith|Potter|Randall","48359|48117|48375|48381","FALSE","FALSE","America/Chicago"
-"79101","35.20599","-101.8395","Amarillo","TX","Texas","TRUE","","1851","448.3","48375","Potter","{""48375"": ""100""}","Potter","48375","FALSE","FALSE","America/Chicago"
-"79102","35.19953","-101.84676","Amarillo","TX","Texas","TRUE","","9878","1431.0","48375","Potter","{""48375"": ""100""}","Potter","48375","FALSE","FALSE","America/Chicago"
-"79103","35.17735","-101.79438","Amarillo","TX","Texas","TRUE","","10869","816.3","48375","Potter","{""48375"": ""60.58"", ""48381"": ""39.42""}","Potter|Randall","48375|48381","FALSE","FALSE","America/Chicago"
-"79104","35.20276","-101.78859","Amarillo","TX","Texas","TRUE","","7019","707.0","48375","Potter","{""48375"": ""100""}","Potter","48375","FALSE","FALSE","America/Chicago"
-"79105","35.6883","-101.81163","Amarillo","TX","Texas","TRUE","","0","0.0","48341","Moore","{""48341"": ""100""}","Moore","48341","FALSE","FALSE","America/Chicago"
-"79106","35.20317","-101.89517","Amarillo","TX","Texas","TRUE","","27268","1123.6","48375","Potter","{""48375"": ""87.85"", ""48381"": ""12.15""}","Potter|Randall","48375|48381","FALSE","FALSE","America/Chicago"
-"79107","35.22939","-101.80227","Amarillo","TX","Texas","TRUE","","34935","804.7","48375","Potter","{""48375"": ""100""}","Potter","48375","FALSE","FALSE","America/Chicago"
-"79108","35.35066","-101.80584","Amarillo","TX","Texas","TRUE","","16112","37.6","48375","Potter","{""48375"": ""99.57"", ""48065"": ""0.43""}","Potter|Carson","48375|48065","FALSE","FALSE","America/Chicago"
-"79109","35.16631","-101.88646","Amarillo","TX","Texas","TRUE","","44600","1647.9","48381","Randall","{""48381"": ""84.29"", ""48375"": ""15.71""}","Randall|Potter","48381|48375","FALSE","FALSE","America/Chicago"
-"79110","35.14901","-101.87111","Amarillo","TX","Texas","TRUE","","19158","1321.9","48381","Randall","{""48381"": ""100""}","Randall","48381","FALSE","FALSE","America/Chicago"
-"79111","35.21967","-101.6893","Amarillo","TX","Texas","TRUE","","2108","74.4","48375","Potter","{""48375"": ""100""}","Potter","48375","FALSE","FALSE","America/Chicago"
-"79118","35.09861","-101.73879","Amarillo","TX","Texas","TRUE","","23381","53.1","48381","Randall","{""48381"": ""99.48"", ""48375"": ""0.52""}","Randall|Potter","48381|48375","FALSE","FALSE","America/Chicago"
-"79119","35.11029","-102.01663","Amarillo","TX","Texas","TRUE","","17524","66.6","48381","Randall","{""48381"": ""100""}","Randall","48381","FALSE","FALSE","America/Chicago"
-"79121","35.17471","-101.92969","Amarillo","TX","Texas","TRUE","","6002","1260.4","48381","Randall","{""48381"": ""97.34"", ""48375"": ""2.66""}","Randall|Potter","48381|48375","FALSE","FALSE","America/Chicago"
-"79124","35.26275","-101.9691","Amarillo","TX","Texas","TRUE","","8800","37.7","48375","Potter","{""48375"": ""98.86"", ""48381"": ""1.14""}","Potter|Randall","48375|48381","FALSE","FALSE","America/Chicago"
-"79201","34.43715","-100.28085","Childress","TX","Texas","TRUE","","7288","3.3","48075","Childress","{""48075"": ""99.18"", ""48345"": ""0.47"", ""48101"": ""0.36""}","Childress|Motley|Cottle","48075|48345|48101","FALSE","FALSE","America/Chicago"
-"79220","33.75776","-100.78642","Afton","TX","Texas","TRUE","","208","0.4","48125","Dickens","{""48125"": ""100""}","Dickens","48125","FALSE","FALSE","America/Chicago"
-"79225","34.2563","-99.51496","Chillicothe","TX","Texas","TRUE","","1069","2.8","48197","Hardeman","{""48197"": ""97.13"", ""48487"": ""2.87""}","Hardeman|Wilbarger","48197|48487","FALSE","FALSE","America/Chicago"
-"79226","34.90323","-100.99525","Clarendon","TX","Texas","TRUE","","2861","1.3","48129","Donley","{""48129"": ""96.19"", ""48011"": ""2.92"", ""48045"": ""0.51"", ""48191"": ""0.38""}","Donley|Armstrong|Briscoe|Hall","48129|48011|48045|48191","FALSE","FALSE","America/Chicago"
-"79227","33.89957","-99.77068","Crowell","TX","Texas","TRUE","","1302","0.6","48155","Foard","{""48155"": ""93.67"", ""48275"": ""6.33""}","Foard|Knox","48155|48275","FALSE","FALSE","America/Chicago"
-"79229","33.66676","-100.67825","Dickens","TX","Texas","TRUE","","411","0.7","48125","Dickens","{""48125"": ""100""}","Dickens","48125","FALSE","FALSE","America/Chicago"
-"79230","34.72708","-100.05157","Dodson","TX","Texas","TRUE","","179","1.1","48087","Collingsworth","{""48087"": ""82.91"", ""48075"": ""17.09""}","Collingsworth|Childress","48087|48075","FALSE","FALSE","America/Chicago"
-"79231","33.90634","-101.07003","Dougherty","TX","Texas","TRUE","","117","3.4","48153","Floyd","{""48153"": ""100""}","Floyd","48153","FALSE","FALSE","America/Chicago"
-"79233","34.52345","-100.52865","Estelline","TX","Texas","TRUE","","145","0.7","48191","Hall","{""48191"": ""100""}","Hall","48191","FALSE","FALSE","America/Chicago"
-"79234","34.22681","-100.92952","Flomot","TX","Texas","TRUE","","26","0.1","48345","Motley","{""48345"": ""100""}","Motley","48345","FALSE","FALSE","America/Chicago"
-"79235","33.96355","-101.25214","Floydada","TX","Texas","TRUE","","3298","2.2","48153","Floyd","{""48153"": ""98.57"", ""48107"": ""1.23"", ""48345"": ""0.21""}","Floyd|Crosby|Motley","48153|48107|48345","FALSE","FALSE","America/Chicago"
-"79236","33.64183","-100.22815","Guthrie","TX","Texas","TRUE","","218","0.2","48269","King","{""48269"": ""100""}","King","48269","FALSE","FALSE","America/Chicago"
-"79237","34.91339","-100.63784","Hedley","TX","Texas","TRUE","","417","0.8","48129","Donley","{""48129"": ""100""}","Donley","48129","FALSE","FALSE","America/Chicago"
-"79239","34.65106","-100.75781","Lakeview","TX","Texas","TRUE","","181","0.4","48191","Hall","{""48191"": ""100""}","Hall","48191","FALSE","FALSE","America/Chicago"
-"79240","34.88123","-100.77111","Lelia Lake","TX","Texas","TRUE","","81","4.3","48129","Donley","{""48129"": ""100""}","Donley","48129","FALSE","FALSE","America/Chicago"
-"79241","34.1848","-101.38676","Lockney","TX","Texas","TRUE","","2270","2.6","48153","Floyd","{""48153"": ""100""}","Floyd","48153","FALSE","FALSE","America/Chicago"
-"79243","33.7595","-100.99107","Mcadoo","TX","Texas","TRUE","","53","0.4","48125","Dickens","{""48125"": ""100""}","Dickens","48125","FALSE","FALSE","America/Chicago"
-"79244","34.03174","-100.84615","Matador","TX","Texas","TRUE","","870","1.7","48345","Motley","{""48345"": ""100""}","Motley","48345","FALSE","FALSE","America/Chicago"
-"79245","34.84545","-100.50845","Memphis","TX","Texas","TRUE","","2346","3.5","48191","Hall","{""48191"": ""97.21"", ""48087"": ""1.9"", ""48129"": ""0.89""}","Hall|Collingsworth|Donley","48191|48087|48129","FALSE","FALSE","America/Chicago"
-"79247","34.32983","-99.40904","Odell","TX","Texas","TRUE","","64","3.2","48487","Wilbarger","{""48487"": ""100""}","Wilbarger","48487","FALSE","FALSE","America/Chicago"
-"79248","34.00045","-100.29274","Paducah","TX","Texas","TRUE","","1621","1.0","48101","Cottle","{""48101"": ""98.39"", ""48269"": ""1.61""}","Cottle|King","48101|48269","FALSE","FALSE","America/Chicago"
-"79250","33.87872","-101.59391","Petersburg","TX","Texas","TRUE","","1401","3.0","48189","Hale","{""48189"": ""91.38"", ""48303"": ""3.18"", ""48153"": ""2.85"", ""48107"": ""2.59""}","Hale|Lubbock|Floyd|Crosby","48189|48303|48153|48107","FALSE","FALSE","America/Chicago"
-"79251","34.92884","-100.4389","Quail","TX","Texas","TRUE","","13","0.1","48087","Collingsworth","{""48087"": ""100""}","Collingsworth","48087","FALSE","FALSE","America/Chicago"
-"79252","34.30503","-99.81699","Quanah","TX","Texas","TRUE","","2954","2.1","48197","Hardeman","{""48197"": ""99.66"", ""48101"": ""0.34""}","Hardeman|Cottle","48197|48101","FALSE","FALSE","America/Chicago"
-"79255","34.34612","-101.05839","Quitaque","TX","Texas","TRUE","","664","1.3","48045","Briscoe","{""48045"": ""90.72"", ""48153"": ""5.78"", ""48345"": ""3.5""}","Briscoe|Floyd|Motley","48045|48153|48345","FALSE","FALSE","America/Chicago"
-"79256","33.89496","-100.7464","Roaring Springs","TX","Texas","TRUE","","290","0.6","48345","Motley","{""48345"": ""100""}","Motley","48345","FALSE","FALSE","America/Chicago"
-"79257","34.46105","-101.28703","Silverton","TX","Texas","TRUE","","822","0.8","48045","Briscoe","{""48045"": ""100""}","Briscoe","48045","FALSE","FALSE","America/Chicago"
-"79258","34.22723","-101.28847","South Plains","TX","Texas","TRUE","","49","0.6","48153","Floyd","{""48153"": ""100""}","Floyd","48153","FALSE","FALSE","America/Chicago"
-"79259","34.40293","-100.46298","Tell","TX","Texas","TRUE","","35","0.2","48075","Childress","{""48075"": ""66.67"", ""48191"": ""33.33""}","Childress|Hall","48075|48191","FALSE","FALSE","America/Chicago"
-"79261","34.45015","-100.81109","Turkey","TX","Texas","TRUE","","370","0.6","48191","Hall","{""48191"": ""100""}","Hall","48191","FALSE","FALSE","America/Chicago"
-"79311","33.86075","-101.883","Abernathy","TX","Texas","TRUE","","3415","7.6","48189","Hale","{""48189"": ""71.18"", ""48303"": ""28.82""}","Hale|Lubbock","48189|48303","FALSE","FALSE","America/Chicago"
-"79312","34.05163","-102.36315","Amherst","TX","Texas","TRUE","","978","4.3","48279","Lamb","{""48279"": ""100""}","Lamb","48279","FALSE","FALSE","America/Chicago"
-"79313","33.8049","-102.16223","Anton","TX","Texas","TRUE","","1528","4.5","48219","Hockley","{""48219"": ""94.65"", ""48279"": ""5.35""}","Hockley|Lamb","48219|48279","FALSE","FALSE","America/Chicago"
-"79314","33.58498","-103.01455","Bledsoe","TX","Texas","TRUE","","40","1.0","48079","Cochran","{""48079"": ""100""}","Cochran","48079","FALSE","FALSE","America/Chicago"
-"79316","33.14437","-102.31614","Brownfield","TX","Texas","TRUE","","11310","9.3","48445","Terry","{""48445"": ""100""}","Terry","48445","FALSE","FALSE","America/Chicago"
-"79322","33.65766","-101.18732","Crosbyton","TX","Texas","TRUE","","2022","2.6","48107","Crosby","{""48107"": ""100""}","Crosby","48107","FALSE","FALSE","America/Chicago"
-"79323","32.94698","-102.87231","Denver City","TX","Texas","TRUE","","7252","12.2","48501","Yoakum","{""48501"": ""87.99"", ""48165"": ""12.01""}","Yoakum|Gaines","48501|48165","FALSE","FALSE","America/Chicago"
-"79324","33.89794","-102.68244","Enochs","TX","Texas","TRUE","","42","0.2","48017","Bailey","{""48017"": ""100""}","Bailey","48017","FALSE","FALSE","America/Chicago"
-"79325","34.41493","-102.93999","Farwell","TX","Texas","TRUE","","2184","4.7","48369","Parmer","{""48369"": ""99.01"", ""48017"": ""0.99""}","Parmer|Bailey","48369|48017","FALSE","FALSE","America/Chicago"
-"79326","34.07796","-102.21612","Fieldton","TX","Texas","TRUE","","59","0.6","48279","Lamb","{""48279"": ""100""}","Lamb","48279","FALSE","FALSE","America/Chicago"
-"79329","33.7248","-101.68202","Idalou","TX","Texas","TRUE","","3112","12.8","48303","Lubbock","{""48303"": ""100""}","Lubbock","48303","FALSE","FALSE","America/Chicago"
-"79330","33.03669","-101.20991","Justiceburg","TX","Texas","TRUE","","139","0.3","48169","Garza","{""48169"": ""100""}","Garza","48169","FALSE","FALSE","America/Chicago"
-"79331","32.69327","-102.01054","Lamesa","TX","Texas","TRUE","","12426","6.4","48115","Dawson","{""48115"": ""98.97"", ""48317"": ""0.59"", ""48165"": ""0.44""}","Dawson|Martin|Gaines","48115|48317|48165","FALSE","FALSE","America/Chicago"
-"79336","33.60537","-102.40277","Levelland","TX","Texas","TRUE","","17270","15.4","48219","Hockley","{""48219"": ""100""}","Hockley","48219","FALSE","FALSE","America/Chicago"
-"79339","33.88987","-102.33543","Littlefield","TX","Texas","TRUE","","6617","9.2","48279","Lamb","{""48279"": ""98.22"", ""48219"": ""1.78""}","Lamb|Hockley","48279|48219","FALSE","FALSE","America/Chicago"
-"79342","32.9082","-102.33661","Loop","TX","Texas","TRUE","","516","2.1","48165","Gaines","{""48165"": ""100""}","Gaines","48165","FALSE","FALSE","America/Chicago"
-"79343","33.65565","-101.53011","Lorenzo","TX","Texas","TRUE","","1700","4.8","48107","Crosby","{""48107"": ""91.22"", ""48303"": ""8.78""}","Crosby|Lubbock","48107|48303","FALSE","FALSE","America/Chicago"
-"79344","33.84496","-102.93043","Maple","TX","Texas","TRUE","","161","4.1","48017","Bailey","{""48017"": ""100""}","Bailey","48017","FALSE","FALSE","America/Chicago"
-"79345","33.3342","-102.32962","Meadow","TX","Texas","TRUE","","990","2.0","48445","Terry","{""48445"": ""96.74"", ""48305"": ""3.26""}","Terry|Lynn","48445|48305","FALSE","FALSE","America/Chicago"
-"79346","33.64815","-102.82498","Morton","TX","Texas","TRUE","","2225","2.2","48079","Cochran","{""48079"": ""99.09"", ""48017"": ""0.91""}","Cochran|Bailey","48079|48017","FALSE","FALSE","America/Chicago"
-"79347","34.17747","-102.78205","Muleshoe","TX","Texas","TRUE","","7202","3.9","48017","Bailey","{""48017"": ""92.62"", ""48369"": ""5.74"", ""48279"": ""1.14"", ""48069"": ""0.51""}","Bailey|Parmer|Lamb|Castro","48017|48369|48279|48069","FALSE","FALSE","America/Chicago"
-"79350","33.73175","-101.83121","New Deal","TX","Texas","TRUE","","401","108.0","48303","Lubbock","{""48303"": ""100""}","Lubbock","48303","FALSE","FALSE","America/Chicago"
-"79351","32.92343","-101.76915","Odonnell","TX","Texas","TRUE","","1414","1.7","48305","Lynn","{""48305"": ""76.77"", ""48115"": ""15.16"", ""48033"": ""8.07""}","Lynn|Dawson|Borden","48305|48115|48033","FALSE","FALSE","America/Chicago"
-"79353","33.78403","-102.58383","Pep","TX","Texas","TRUE","","10","0.3","48219","Hockley","{""48219"": ""100""}","Hockley","48219","FALSE","FALSE","America/Chicago"
-"79355","33.18172","-102.87664","Plains","TX","Texas","TRUE","","1877","1.7","48501","Yoakum","{""48501"": ""100""}","Yoakum","48501","FALSE","FALSE","America/Chicago"
-"79356","33.25907","-101.33041","Post","TX","Texas","TRUE","","5893","3.1","48169","Garza","{""48169"": ""98.13"", ""48305"": ""1.37"", ""48107"": ""0.5""}","Garza|Lynn|Crosby","48169|48305|48107","FALSE","FALSE","America/Chicago"
-"79357","33.61648","-101.40248","Ralls","TX","Texas","TRUE","","2123","3.8","48107","Crosby","{""48107"": ""100""}","Crosby","48107","FALSE","FALSE","America/Chicago"
-"79358","33.43884","-102.19135","Ropesville","TX","Texas","TRUE","","1109","3.9","48219","Hockley","{""48219"": ""95.07"", ""48303"": ""4.93""}","Hockley|Lubbock","48219|48303","FALSE","FALSE","America/Chicago"
-"79359","32.96704","-102.58926","Seagraves","TX","Texas","TRUE","","3025","5.5","48165","Gaines","{""48165"": ""95"", ""48445"": ""2.55"", ""48501"": ""2.45""}","Gaines|Terry|Yoakum","48165|48445|48501","FALSE","FALSE","America/Chicago"
-"79360","32.68905","-102.74145","Seminole","TX","Texas","TRUE","","16666","7.6","48165","Gaines","{""48165"": ""100""}","Gaines","48165","FALSE","FALSE","America/Chicago"
-"79363","33.70901","-102.04105","Shallowater","TX","Texas","TRUE","","5678","18.9","48303","Lubbock","{""48303"": ""99.11"", ""48219"": ""0.89""}","Lubbock|Hockley","48303|48219","FALSE","FALSE","America/Chicago"
-"79364","33.45204","-101.64304","Slaton","TX","Texas","TRUE","","7630","14.9","48303","Lubbock","{""48303"": ""97.38"", ""48305"": ""1.36"", ""48169"": ""1.26""}","Lubbock|Lynn|Garza","48303|48305|48169","FALSE","FALSE","America/Chicago"
-"79366","33.53015","-101.68366","Ransom Canyon","TX","Texas","TRUE","","1056","504.4","48303","Lubbock","{""48303"": ""100""}","Lubbock","48303","FALSE","FALSE","America/Chicago"
-"79367","33.62146","-102.19081","Smyer","TX","Texas","TRUE","","777","9.5","48219","Hockley","{""48219"": ""100""}","Hockley","48219","FALSE","FALSE","America/Chicago"
-"79369","33.95575","-102.14515","Spade","TX","Texas","TRUE","","93","2.8","48279","Lamb","{""48279"": ""100""}","Lamb","48279","FALSE","FALSE","America/Chicago"
-"79370","33.50304","-100.90344","Spur","TX","Texas","TRUE","","1594","1.5","48125","Dickens","{""48125"": ""91.74"", ""48107"": ""8.26""}","Dickens|Crosby","48125|48107","FALSE","FALSE","America/Chicago"
-"79371","33.97457","-102.75404","Sudan","TX","Texas","TRUE","","1399","1.9","48279","Lamb","{""48279"": ""93.01"", ""48017"": ""6.99""}","Lamb|Bailey","48279|48017","FALSE","FALSE","America/Chicago"
-"79372","33.43423","-102.4884","Sundown","TX","Texas","TRUE","","1229","35.9","48219","Hockley","{""48219"": ""100""}","Hockley","48219","FALSE","FALSE","America/Chicago"
-"79373","33.1708","-101.8355","Tahoka","TX","Texas","TRUE","","2924","2.6","48305","Lynn","{""48305"": ""100""}","Lynn","48305","FALSE","FALSE","America/Chicago"
-"79376","33.2339","-102.67314","Tokio","TX","Texas","TRUE","","14","0.0","48501","Yoakum","{""48501"": ""100""}","Yoakum","48501","FALSE","FALSE","America/Chicago"
-"79377","32.9321","-102.13166","Welch","TX","Texas","TRUE","","269","3.9","48115","Dawson","{""48115"": ""100""}","Dawson","48115","FALSE","FALSE","America/Chicago"
-"79378","33.05323","-102.48596","Wellman","TX","Texas","TRUE","","196","3.7","48445","Terry","{""48445"": ""100""}","Terry","48445","FALSE","FALSE","America/Chicago"
-"79379","33.51066","-102.64637","Whiteface","TX","Texas","TRUE","","622","3.3","48079","Cochran","{""48079"": ""100""}","Cochran","48079","FALSE","FALSE","America/Chicago"
-"79380","33.74713","-102.35928","Whitharral","TX","Texas","TRUE","","80","3.0","48219","Hockley","{""48219"": ""100""}","Hockley","48219","FALSE","FALSE","America/Chicago"
-"79381","33.32286","-101.7652","Wilson","TX","Texas","TRUE","","1548","4.6","48305","Lynn","{""48305"": ""100""}","Lynn","48305","FALSE","FALSE","America/Chicago"
-"79382","33.45859","-102.02106","Wolfforth","TX","Texas","TRUE","","8149","66.0","48303","Lubbock","{""48303"": ""100""}","Lubbock","48303","FALSE","FALSE","America/Chicago"
-"79401","33.58785","-101.85142","Lubbock","TX","Texas","TRUE","","7912","1110.5","48303","Lubbock","{""48303"": ""100""}","Lubbock","48303","FALSE","FALSE","America/Chicago"
-"79403","33.6446","-101.76828","Lubbock","TX","Texas","TRUE","","17926","52.4","48303","Lubbock","{""48303"": ""100""}","Lubbock","48303","FALSE","FALSE","America/Chicago"
-"79404","33.52535","-101.7963","Lubbock","TX","Texas","TRUE","","10094","135.2","48303","Lubbock","{""48303"": ""100""}","Lubbock","48303","FALSE","FALSE","America/Chicago"
-"79406","33.58349","-101.88125","Lubbock","TX","Texas","TRUE","","7017","2684.7","48303","Lubbock","{""48303"": ""100""}","Lubbock","48303","FALSE","FALSE","America/Chicago"
-"79407","33.56317","-102.07929","Lubbock","TX","Texas","TRUE","","22807","124.5","48303","Lubbock","{""48303"": ""95.05"", ""48219"": ""4.95""}","Lubbock|Hockley","48303|48219","FALSE","FALSE","America/Chicago"
-"79410","33.56969","-101.89127","Lubbock","TX","Texas","TRUE","","10166","1623.2","48303","Lubbock","{""48303"": ""100""}","Lubbock","48303","FALSE","FALSE","America/Chicago"
-"79411","33.57002","-101.85779","Lubbock","TX","Texas","TRUE","","7012","1819.9","48303","Lubbock","{""48303"": ""100""}","Lubbock","48303","FALSE","FALSE","America/Chicago"
-"79412","33.54539","-101.85744","Lubbock","TX","Texas","TRUE","","16554","2050.3","48303","Lubbock","{""48303"": ""100""}","Lubbock","48303","FALSE","FALSE","America/Chicago"
-"79413","33.54623","-101.88729","Lubbock","TX","Texas","TRUE","","21821","1763.1","48303","Lubbock","{""48303"": ""100""}","Lubbock","48303","FALSE","FALSE","America/Chicago"
-"79414","33.54875","-101.91944","Lubbock","TX","Texas","TRUE","","18731","2280.1","48303","Lubbock","{""48303"": ""100""}","Lubbock","48303","FALSE","FALSE","America/Chicago"
-"79415","33.69755","-101.90483","Lubbock","TX","Texas","TRUE","","17939","104.6","48303","Lubbock","{""48303"": ""100""}","Lubbock","48303","FALSE","FALSE","America/Chicago"
-"79416","33.60429","-101.97648","Lubbock","TX","Texas","TRUE","","34124","410.1","48303","Lubbock","{""48303"": ""100""}","Lubbock","48303","FALSE","FALSE","America/Chicago"
-"79423","33.44038","-101.85079","Lubbock","TX","Texas","TRUE","","40303","257.2","48303","Lubbock","{""48303"": ""99.69"", ""48305"": ""0.31""}","Lubbock|Lynn","48303|48305","FALSE","FALSE","America/Chicago"
-"79424","33.46993","-101.94095","Lubbock","TX","Texas","TRUE","","46933","434.1","48303","Lubbock","{""48303"": ""100""}","Lubbock","48303","FALSE","FALSE","America/Chicago"
-"79501","32.74483","-99.90507","Anson","TX","Texas","TRUE","","2659","5.2","48253","Jones","{""48253"": ""100""}","Jones","48253","FALSE","FALSE","America/Chicago"
-"79502","33.17852","-100.24898","Aspermont","TX","Texas","TRUE","","1305","0.8","48433","Stonewall","{""48433"": ""100""}","Stonewall","48433","FALSE","FALSE","America/Chicago"
-"79503","32.87114","-99.69599","Avoca","TX","Texas","TRUE","","85","0.4","48253","Jones","{""48253"": ""100""}","Jones","48253","FALSE","FALSE","America/Chicago"
-"79504","32.32058","-99.35233","Baird","TX","Texas","TRUE","","3366","3.5","48059","Callahan","{""48059"": ""99.57"", ""48417"": ""0.43""}","Callahan|Shackelford","48059|48417","FALSE","FALSE","America/Chicago"
-"79505","33.57582","-99.81601","Benjamin","TX","Texas","TRUE","","244","0.5","48275","Knox","{""48275"": ""100""}","Knox","48275","FALSE","FALSE","America/Chicago"
-"79506","32.11798","-100.32345","Blackwell","TX","Texas","TRUE","","626","1.3","48353","Nolan","{""48353"": ""56.99"", ""48081"": ""43.01""}","Nolan|Coke","48353|48081","FALSE","FALSE","America/Chicago"
-"79508","32.27409","-99.82606","Buffalo Gap","TX","Texas","TRUE","","1470","47.7","48441","Taylor","{""48441"": ""100""}","Taylor","48441","FALSE","FALSE","America/Chicago"
-"79510","32.27507","-99.52899","Clyde","TX","Texas","TRUE","","7573","10.7","48059","Callahan","{""48059"": ""99.55"", ""48083"": ""0.45""}","Callahan|Coleman","48059|48083","FALSE","FALSE","America/Chicago"
-"79511","32.41453","-101.25956","Coahoma","TX","Texas","TRUE","","1183","2.5","48227","Howard","{""48227"": ""93.95"", ""48033"": ""6.05""}","Howard|Borden","48227|48033","FALSE","FALSE","America/Chicago"
-"79512","32.31554","-100.91776","Colorado City","TX","Texas","TRUE","","7456","5.0","48335","Mitchell","{""48335"": ""99.91"", ""48415"": ""0.09""}","Mitchell|Scurry","48335|48415","FALSE","FALSE","America/Chicago"
-"79517","32.87671","-101.24268","Fluvanna","TX","Texas","TRUE","","164","0.3","48415","Scurry","{""48415"": ""65.5"", ""48033"": ""34.5""}","Scurry|Borden","48415|48033","FALSE","FALSE","America/Chicago"
-"79518","33.33064","-100.72207","Girard","TX","Texas","TRUE","","48","0.1","48263","Kent","{""48263"": ""100""}","Kent","48263","FALSE","FALSE","America/Chicago"
-"79519","32.04877","-99.69704","Goldsboro","TX","Texas","TRUE","","41","0.5","48083","Coleman","{""48083"": ""62.16"", ""48399"": ""37.84""}","Coleman|Runnels","48083|48399","FALSE","FALSE","America/Chicago"
-"79520","32.86489","-100.13233","Hamlin","TX","Texas","TRUE","","2121","4.2","48253","Jones","{""48253"": ""96.82"", ""48151"": ""3.18""}","Jones|Fisher","48253|48151","FALSE","FALSE","America/Chicago"
-"79521","33.12235","-99.65414","Haskell","TX","Texas","TRUE","","3611","4.5","48207","Haskell","{""48207"": ""100""}","Haskell","48207","FALSE","FALSE","America/Chicago"
-"79525","32.63114","-99.83178","Hawley","TX","Texas","TRUE","","2498","10.3","48253","Jones","{""48253"": ""100""}","Jones","48253","FALSE","FALSE","America/Chicago"
-"79526","32.63739","-100.72015","Hermleigh","TX","Texas","TRUE","","837","1.5","48415","Scurry","{""48415"": ""98.16"", ""48151"": ""1.84""}","Scurry|Fisher","48415|48151","FALSE","FALSE","America/Chicago"
-"79527","32.64376","-101.15094","Ira","TX","Texas","TRUE","","263","1.1","48415","Scurry","{""48415"": ""81.67"", ""48033"": ""18.33""}","Scurry|Borden","48415|48033","FALSE","FALSE","America/Chicago"
-"79528","33.26207","-100.79076","Jayton","TX","Texas","TRUE","","587","0.6","48263","Kent","{""48263"": ""98.38"", ""48433"": ""1.62""}","Kent|Stonewall","48263|48433","FALSE","FALSE","America/Chicago"
-"79529","33.43853","-99.84731","Knox City","TX","Texas","TRUE","","1480","6.4","48275","Knox","{""48275"": ""99.64"", ""48207"": ""0.36""}","Knox|Haskell","48275|48207","FALSE","FALSE","America/Chicago"
-"79530","32.11907","-99.75931","Lawn","TX","Texas","TRUE","","538","6.0","48441","Taylor","{""48441"": ""100""}","Taylor","48441","FALSE","FALSE","America/Chicago"
-"79532","32.40496","-100.71227","Loraine","TX","Texas","TRUE","","826","2.6","48335","Mitchell","{""48335"": ""97.66"", ""48353"": ""1.17"", ""48415"": ""1.17""}","Mitchell|Nolan|Scurry","48335|48353|48415","FALSE","FALSE","America/Chicago"
-"79533","32.85549","-99.55488","Lueders","TX","Texas","TRUE","","385","1.0","48253","Jones","{""48253"": ""87.92"", ""48417"": ""10.17"", ""48207"": ""1.27"", ""48447"": ""0.64""}","Jones|Shackelford|Haskell|Throckmorton","48253|48417|48207|48447","FALSE","FALSE","America/Chicago"
-"79534","32.75673","-100.21828","McCaulley","TX","Texas","TRUE","","125","0.8","48151","Fisher","{""48151"": ""100""}","Fisher","48151","FALSE","FALSE","America/Chicago"
-"79535","32.2257","-100.47631","Maryneal","TX","Texas","TRUE","","179","0.5","48353","Nolan","{""48353"": ""100""}","Nolan","48353","FALSE","FALSE","America/Chicago"
-"79536","32.47378","-100.03345","Merkel","TX","Texas","TRUE","","5258","6.4","48441","Taylor","{""48441"": ""84.04"", ""48253"": ""15.64"", ""48353"": ""0.32""}","Taylor|Jones|Nolan","48441|48253|48353","FALSE","FALSE","America/Chicago"
-"79537","32.29187","-100.21074","Nolan","TX","Texas","TRUE","","35","0.2","48353","Nolan","{""48353"": ""100""}","Nolan","48353","FALSE","FALSE","America/Chicago"
-"79538","31.97814","-99.68094","Novice","TX","Texas","TRUE","","325","1.8","48083","Coleman","{""48083"": ""84.13"", ""48399"": ""15.87""}","Coleman|Runnels","48083|48399","FALSE","FALSE","America/Chicago"
-"79539","33.36843","-99.88223","O'Brien","TX","Texas","TRUE","","223","2.3","48207","Haskell","{""48207"": ""100""}","Haskell","48207","FALSE","FALSE","America/Chicago"
-"79540","33.16876","-100.03773","Old Glory","TX","Texas","TRUE","","121","0.9","48433","Stonewall","{""48433"": ""100""}","Stonewall","48433","FALSE","FALSE","America/Chicago"
-"79541","32.15305","-99.81497","Ovalo","TX","Texas","TRUE","","973","2.4","48441","Taylor","{""48441"": ""96.08"", ""48059"": ""3.92""}","Taylor|Callahan","48441|48059","FALSE","FALSE","America/Chicago"
-"79543","32.7218","-100.40076","Roby","TX","Texas","TRUE","","1298","3.1","48151","Fisher","{""48151"": ""100""}","Fisher","48151","FALSE","FALSE","America/Chicago"
-"79544","33.30151","-99.85288","Rochester","TX","Texas","TRUE","","676","3.2","48207","Haskell","{""48207"": ""100""}","Haskell","48207","FALSE","FALSE","America/Chicago"
-"79545","32.41144","-100.58009","Roscoe","TX","Texas","TRUE","","1774","3.0","48353","Nolan","{""48353"": ""97.43"", ""48415"": ""1.4"", ""48151"": ""1.17""}","Nolan|Scurry|Fisher","48353|48415|48151","FALSE","FALSE","America/Chicago"
-"79546","32.89242","-100.49804","Rotan","TX","Texas","TRUE","","1794","1.9","48151","Fisher","{""48151"": ""97.76"", ""48433"": ""2.04"", ""48415"": ""0.2""}","Fisher|Stonewall|Scurry","48151|48433|48415","FALSE","FALSE","America/Chicago"
-"79547","33.19923","-99.91193","Rule","TX","Texas","TRUE","","642","3.2","48207","Haskell","{""48207"": ""100""}","Haskell","48207","FALSE","FALSE","America/Chicago"
-"79548","33.05573","-99.92295","Rule","TX","Texas","TRUE","","203","0.9","48207","Haskell","{""48207"": ""100""}","Haskell","48207","FALSE","FALSE","America/Chicago"
-"79549","32.91367","-100.84506","Snyder","TX","Texas","TRUE","","15943","6.4","48415","Scurry","{""48415"": ""99.52"", ""48263"": ""0.48""}","Scurry|Kent","48415|48263","FALSE","FALSE","America/Chicago"
-"79553","32.93882","-99.84265","Stamford","TX","Texas","TRUE","","3270","7.6","48253","Jones","{""48253"": ""97.61"", ""48207"": ""2.39""}","Jones|Haskell","48253|48207","FALSE","FALSE","America/Chicago"
-"79556","32.45431","-100.36401","Sweetwater","TX","Texas","TRUE","","12833","16.3","48353","Nolan","{""48353"": ""97.24"", ""48151"": ""2.76""}","Nolan|Fisher","48353|48151","FALSE","FALSE","America/Chicago"
-"79560","32.67887","-100.20891","Sylvester","TX","Texas","TRUE","","172","0.9","48151","Fisher","{""48151"": ""87.59"", ""48253"": ""12.41""}","Fisher|Jones","48151|48253","FALSE","FALSE","America/Chicago"
-"79561","32.52133","-100.2004","Trent","TX","Texas","TRUE","","615","1.9","48441","Taylor","{""48441"": ""77.19"", ""48353"": ""15.26"", ""48151"": ""7.55""}","Taylor|Nolan|Fisher","48441|48353|48151","FALSE","FALSE","America/Chicago"
-"79562","32.24437","-99.86596","Tuscola","TX","Texas","TRUE","","3371","11.2","48441","Taylor","{""48441"": ""100""}","Taylor","48441","FALSE","FALSE","America/Chicago"
-"79563","32.42317","-99.90769","Tye","TX","Texas","TRUE","","1074","25.3","48441","Taylor","{""48441"": ""100""}","Taylor","48441","FALSE","FALSE","America/Chicago"
-"79565","32.39463","-101.09316","Westbrook","TX","Texas","TRUE","","292","1.2","48335","Mitchell","{""48335"": ""100""}","Mitchell","48335","FALSE","FALSE","America/Chicago"
-"79566","32.11347","-100.12203","Wingate","TX","Texas","TRUE","","247","0.6","48441","Taylor","{""48441"": ""51.05"", ""48399"": ""48.95""}","Taylor|Runnels","48441|48399","FALSE","FALSE","America/Chicago"
-"79567","31.97769","-99.95308","Winters","TX","Texas","TRUE","","3432","4.2","48399","Runnels","{""48399"": ""98.07"", ""48441"": ""1.93""}","Runnels|Taylor","48399|48441","FALSE","FALSE","America/Chicago"
-"79601","32.57964","-99.66351","Abilene","TX","Texas","TRUE","","27507","42.7","48441","Taylor","{""48441"": ""70.54"", ""48253"": ""26.66"", ""48059"": ""1.41"", ""48417"": ""1.39""}","Taylor|Jones|Callahan|Shackelford","48441|48253|48059|48417","FALSE","FALSE","America/Chicago"
-"79602","32.33948","-99.66982","Abilene","TX","Texas","TRUE","","24876","83.7","48441","Taylor","{""48441"": ""98.07"", ""48059"": ""1.93""}","Taylor|Callahan","48441|48059","FALSE","FALSE","America/Chicago"
-"79603","32.40157","-99.88468","Abilene","TX","Texas","TRUE","","23454","155.0","48441","Taylor","{""48441"": ""100""}","Taylor","48441","FALSE","FALSE","America/Chicago"
-"79605","32.43398","-99.78205","Abilene","TX","Texas","TRUE","","29732","1047.5","48441","Taylor","{""48441"": ""100""}","Taylor","48441","FALSE","FALSE","America/Chicago"
-"79606","32.36093","-99.82698","Abilene","TX","Texas","TRUE","","25053","154.8","48441","Taylor","{""48441"": ""100""}","Taylor","48441","FALSE","FALSE","America/Chicago"
-"79607","32.42853","-99.82546","Dyess Afb","TX","Texas","TRUE","","3308","336.7","48441","Taylor","{""48441"": ""100""}","Taylor","48441","FALSE","FALSE","America/Chicago"
-"79699","32.46227","-99.71586","Abilene","TX","Texas","TRUE","","115","466.2","48441","Taylor","{""48441"": ""100""}","Taylor","48441","FALSE","FALSE","America/Chicago"
-"79701","31.99237","-102.08147","Midland","TX","Texas","TRUE","","32219","1046.3","48329","Midland","{""48329"": ""100""}","Midland","48329","FALSE","FALSE","America/Chicago"
-"79703","31.97945","-102.13231","Midland","TX","Texas","TRUE","","23834","1374.5","48329","Midland","{""48329"": ""100""}","Midland","48329","FALSE","FALSE","America/Chicago"
-"79705","32.05114","-102.05954","Midland","TX","Texas","TRUE","","41933","456.3","48329","Midland","{""48329"": ""100""}","Midland","48329","FALSE","FALSE","America/Chicago"
-"79706","31.84553","-102.00236","Midland","TX","Texas","TRUE","","25657","13.3","48329","Midland","{""48329"": ""100""}","Midland","48329","FALSE","FALSE","America/Chicago"
-"79707","32.03347","-102.21158","Midland","TX","Texas","TRUE","","39921","217.6","48329","Midland","{""48329"": ""100""}","Midland","48329","FALSE","FALSE","America/Chicago"
-"79713","32.49638","-101.7556","Ackerly","TX","Texas","TRUE","","493","1.2","48317","Martin","{""48317"": ""50.17"", ""48115"": ""39.36"", ""48227"": ""7.94"", ""48033"": ""2.53""}","Martin|Dawson|Howard|Borden","48317|48115|48227|48033","FALSE","FALSE","America/Chicago"
-"79714","32.32943","-102.69918","Andrews","TX","Texas","TRUE","","18036","9.1","48003","Andrews","{""48003"": ""100""}","Andrews","48003","FALSE","FALSE","America/Chicago"
-"79718","31.00535","-103.76186","Balmorhea","TX","Texas","TRUE","","1169","1.5","48389","Reeves","{""48389"": ""100""}","Reeves","48389","FALSE","FALSE","America/Chicago"
-"79719","31.46011","-103.40559","Barstow","TX","Texas","TRUE","","589","11.9","48475","Ward","{""48475"": ""100""}","Ward","48475","FALSE","FALSE","America/Chicago"
-"79720","32.25363","-101.47291","Big Spring","TX","Texas","TRUE","","35025","14.8","48227","Howard","{""48227"": ""99.15"", ""48173"": ""0.72"", ""48033"": ""0.14""}","Howard|Glasscock|Borden","48227|48173|48033","FALSE","FALSE","America/Chicago"
-"79730","31.16955","-103.0851","Coyanosa","TX","Texas","TRUE","","157","0.5","48371","Pecos","{""48371"": ""100""}","Pecos","48371","FALSE","FALSE","America/Chicago"
-"79731","31.41808","-102.48336","Crane","TX","Texas","TRUE","","4772","5.6","48103","Crane","{""48103"": ""99.95"", ""48461"": ""0.05""}","Crane|Upton","48103|48461","FALSE","FALSE","America/Chicago"
-"79733","32.10287","-101.36544","Forsan","TX","Texas","TRUE","","169","35.6","48227","Howard","{""48227"": ""100""}","Howard","48227","FALSE","FALSE","America/Chicago"
-"79734","30.68395","-103.95565","Fort Davis","TX","Texas","TRUE","","2145","0.6","48243","Jeff Davis","{""48243"": ""100""}","Jeff Davis","48243","FALSE","FALSE","America/Chicago"
-"79735","30.74291","-102.78314","Fort Stockton","TX","Texas","TRUE","","13915","3.1","48371","Pecos","{""48371"": ""99.98"", ""48043"": ""0.02""}","Pecos|Brewster","48371|48043","FALSE","FALSE","America/Chicago"
-"79738","32.75712","-101.47555","Gail","TX","Texas","TRUE","","234","0.3","48033","Borden","{""48033"": ""100""}","Borden","48033","FALSE","FALSE","America/Chicago"
-"79739","31.76367","-101.51601","Garden City","TX","Texas","TRUE","","1322","1.0","48173","Glasscock","{""48173"": ""98.44"", ""48383"": ""1.56""}","Glasscock|Reagan","48173|48383","FALSE","FALSE","America/Chicago"
-"79741","31.97","-102.62753","Goldsmith","TX","Texas","TRUE","","222","0.4","48135","Ector","{""48135"": ""100""}","Ector","48135","FALSE","FALSE","America/Chicago"
-"79742","31.34203","-102.86846","Grandfalls","TX","Texas","TRUE","","526","3.5","48475","Ward","{""48475"": ""100""}","Ward","48475","FALSE","FALSE","America/Chicago"
-"79743","31.17762","-102.59435","Imperial","TX","Texas","TRUE","","328","0.5","48371","Pecos","{""48371"": ""100""}","Pecos","48371","FALSE","FALSE","America/Chicago"
-"79744","30.92196","-101.97036","Iraan","TX","Texas","TRUE","","1255","0.9","48371","Pecos","{""48371"": ""97.65"", ""48105"": ""2.35""}","Pecos|Crockett","48371|48105","FALSE","FALSE","America/Chicago"
-"79745","31.82638","-103.05179","Kermit","TX","Texas","TRUE","","6984","6.9","48495","Winkler","{""48495"": ""100""}","Winkler","48495","FALSE","FALSE","America/Chicago"
-"79748","32.41116","-101.65046","Knott","TX","Texas","TRUE","","298","2.1","48227","Howard","{""48227"": ""83.82"", ""48317"": ""16.18""}","Howard|Martin","48227|48317","FALSE","FALSE","America/Chicago"
-"79749","32.28903","-101.87178","Lenorah","TX","Texas","TRUE","","366","2.2","48317","Martin","{""48317"": ""100""}","Martin","48317","FALSE","FALSE","America/Chicago"
-"79752","31.21544","-102.15319","McCamey","TX","Texas","TRUE","","2467","4.3","48461","Upton","{""48461"": ""100""}","Upton","48461","FALSE","FALSE","America/Chicago"
-"79754","31.80166","-103.59994","Mentone","TX","Texas","TRUE","","98","0.2","48301","Loving","{""48301"": ""100""}","Loving","48301","FALSE","FALSE","America/Chicago"
-"79755","31.50464","-101.93778","Midkiff","TX","Texas","TRUE","","124","0.2","48461","Upton","{""48461"": ""100""}","Upton","48461","FALSE","FALSE","America/Chicago"
-"79756","31.5458","-102.85809","Monahans","TX","Texas","TRUE","","9565","21.3","48475","Ward","{""48475"": ""99.92"", ""48103"": ""0.08"", ""48495"": ""0""}","Ward|Crane|Winkler","48475|48103|48495","FALSE","FALSE","America/Chicago"
-"79758","32.00814","-102.33409","Gardendale","TX","Texas","TRUE","","2403","17.5","48135","Ector","{""48135"": ""100""}","Ector","48135","FALSE","FALSE","America/Chicago"
-"79759","31.79647","-102.70154","Notrees","TX","Texas","TRUE","","0","0.0","48135","Ector","{""48135"": ""100""}","Ector","48135","FALSE","FALSE","America/Chicago"
-"79761","31.85574","-102.34958","Odessa","TX","Texas","TRUE","","33602","1273.2","48135","Ector","{""48135"": ""100""}","Ector","48135","FALSE","FALSE","America/Chicago"
-"79762","31.92647","-102.35444","Odessa","TX","Texas","TRUE","","43812","533.7","48135","Ector","{""48135"": ""100""}","Ector","48135","FALSE","FALSE","America/Chicago"
-"79763","31.79918","-102.46788","Odessa","TX","Texas","TRUE","","38833","276.1","48135","Ector","{""48135"": ""100""}","Ector","48135","FALSE","FALSE","America/Chicago"
-"79764","31.89053","-102.47105","Odessa","TX","Texas","TRUE","","22172","147.0","48135","Ector","{""48135"": ""100""}","Ector","48135","FALSE","FALSE","America/Chicago"
-"79765","31.92346","-102.29242","Odessa","TX","Texas","TRUE","","16486","308.2","48135","Ector","{""48135"": ""63.29"", ""48329"": ""36.71""}","Ector|Midland","48135|48329","FALSE","FALSE","America/Chicago"
-"79766","31.7033","-102.41204","Odessa","TX","Texas","TRUE","","7694","12.5","48135","Ector","{""48135"": ""96.32"", ""48103"": ""2.89"", ""48329"": ""0.78""}","Ector|Crane|Midland","48135|48103|48329","FALSE","FALSE","America/Chicago"
-"79770","31.86396","-103.92971","Orla","TX","Texas","TRUE","","0","0.0","48389","Reeves","{""48389"": ""100""}","Reeves","48389","FALSE","FALSE","America/Chicago"
-"79772","31.42541","-103.62296","Pecos","TX","Texas","TRUE","","14029","4.7","48389","Reeves","{""48389"": ""99.72"", ""48475"": ""0.28"", ""48109"": ""0""}","Reeves|Ward|Culberson","48389|48475|48109","FALSE","FALSE","America/Chicago"
-"79777","31.49787","-103.12979","Pyote","TX","Texas","TRUE","","293","1.1","48475","Ward","{""48475"": ""100""}","Ward","48475","FALSE","FALSE","America/Chicago"
-"79778","31.17611","-101.92385","Rankin","TX","Texas","TRUE","","1056","3.9","48461","Upton","{""48461"": ""100""}","Upton","48461","FALSE","FALSE","America/Chicago"
-"79780","31.06197","-103.59216","Saragosa","TX","Texas","TRUE","","173","0.6","48389","Reeves","{""48389"": ""100""}","Reeves","48389","FALSE","FALSE","America/Chicago"
-"79781","30.59596","-101.77778","Sheffield","TX","Texas","TRUE","","263","0.2","48371","Pecos","{""48371"": ""85.48"", ""48443"": ""11.88"", ""48105"": ""2.64""}","Pecos|Terrell|Crockett","48371|48443|48105","FALSE","FALSE","America/Chicago"
-"79782","32.15842","-101.84321","Stanton","TX","Texas","TRUE","","4497","3.8","48317","Martin","{""48317"": ""99.07"", ""48173"": ""0.93""}","Martin|Glasscock","48317|48173","FALSE","FALSE","America/Chicago"
-"79783","32.3217","-102.04229","Tarzan","TX","Texas","TRUE","","321","0.7","48317","Martin","{""48317"": ""100""}","Martin","48317","FALSE","FALSE","America/Chicago"
-"79785","31.32749","-103.9069","Toyah","TX","Texas","TRUE","","121","0.3","48389","Reeves","{""48389"": ""100""}","Reeves","48389","FALSE","FALSE","America/Chicago"
-"79788","31.5729","-102.98358","Wickett","TX","Texas","TRUE","","685","57.2","48475","Ward","{""48475"": ""100""}","Ward","48475","FALSE","FALSE","America/Chicago"
-"79789","31.76026","-103.18576","Wink","TX","Texas","TRUE","","824","8.0","48495","Winkler","{""48495"": ""100""}","Winkler","48495","FALSE","FALSE","America/Chicago"
-"79821","31.97696","-106.59781","Anthony","TX","Texas","TRUE","","7136","241.6","48141","El Paso","{""48141"": ""100""}","El Paso","48141","FALSE","FALSE","America/Denver"
-"79830","29.80008","-103.22468","Alpine","TX","Texas","TRUE","","7860","1.5","48043","Brewster","{""48043"": ""100""}","Brewster","48043","FALSE","FALSE","America/Chicago"
-"79831","30.4295","-103.32553","Alpine","TX","Texas","TRUE","","4","0.0","48043","Brewster","{""48043"": ""100""}","Brewster","48043","FALSE","FALSE","America/Chicago"
-"79834","29.29122","-103.26531","Big Bend National Park","TX","Texas","TRUE","","233","0.1","48043","Brewster","{""48043"": ""100""}","Brewster","48043","FALSE","FALSE","America/Chicago"
-"79835","31.9352","-106.58693","Canutillo","TX","Texas","TRUE","","11184","365.0","48141","El Paso","{""48141"": ""100""}","El Paso","48141","FALSE","FALSE","America/Denver"
-"79836","31.57127","-106.2019","Clint","TX","Texas","TRUE","","5891","118.6","48141","El Paso","{""48141"": ""100""}","El Paso","48141","FALSE","FALSE","America/Denver"
-"79837","32.19026","-105.26698","Dell City","TX","Texas","TRUE","","322","0.1","48229","Hudspeth","{""48229"": ""89.64"", ""35035"": ""10.36""}","Hudspeth|Otero","48229|35035","FALSE","FALSE","America/Denver"
-"79838","31.49182","-106.17357","Fabens","TX","Texas","TRUE","","6171","81.0","48141","El Paso","{""48141"": ""100""}","El Paso","48141","FALSE","FALSE","America/Ojinaga"
-"79839","31.21317","-105.60772","Fort Hancock","TX","Texas","TRUE","","2141","1.7","48229","Hudspeth","{""48229"": ""100""}","Hudspeth","48229","FALSE","FALSE","America/Denver"
-"79842","30.09108","-103.11657","Marathon","TX","Texas","TRUE","","425","0.3","48043","Brewster","{""48043"": ""100""}","Brewster","48043","FALSE","FALSE","America/Chicago"
-"79843","30.12696","-104.22342","Marfa","TX","Texas","TRUE","","2456","0.6","48377","Presidio","{""48377"": ""100""}","Presidio","48377","FALSE","FALSE","America/Chicago"
-"79845","29.88855","-104.51961","Presidio","TX","Texas","TRUE","","4384","3.6","48377","Presidio","{""48377"": ""100""}","Presidio","48377","FALSE","FALSE","America/Chicago"
-"79846","29.45217","-103.99027","Redford","TX","Texas","TRUE","","121","0.1","48377","Presidio","{""48377"": ""100""}","Presidio","48377","FALSE","FALSE","America/Chicago"
-"79847","31.80678","-104.97247","Salt Flat","TX","Texas","TRUE","","153","0.1","48229","Hudspeth","{""48229"": ""62.28"", ""48109"": ""37.72""}","Hudspeth|Culberson","48229|48109","FALSE","FALSE","America/Denver"
-"79848","30.24901","-102.30544","Sanderson","TX","Texas","TRUE","","823","0.4","48443","Terrell","{""48443"": ""99.78"", ""48371"": ""0.22""}","Terrell|Pecos","48443|48371","FALSE","FALSE","America/Chicago"
-"79849","31.56126","-106.25047","San Elizario","TX","Texas","TRUE","","12157","334.9","48141","El Paso","{""48141"": ""100""}","El Paso","48141","FALSE","FALSE","America/Denver"
-"79851","31.28841","-105.31975","Sierra Blanca","TX","Texas","TRUE","","1576","0.9","48229","Hudspeth","{""48229"": ""100""}","Hudspeth","48229","FALSE","FALSE","America/Denver"
-"79852","29.40324","-103.62417","Terlingua","TX","Texas","TRUE","","709","0.5","48043","Brewster","{""48043"": ""100""}","Brewster","48043","FALSE","FALSE","America/Chicago"
-"79853","31.42987","-106.06371","Tornillo","TX","Texas","TRUE","","2621","32.5","48141","El Paso","{""48141"": ""100""}","El Paso","48141","FALSE","FALSE","America/Denver"
-"79854","30.57932","-104.65911","Valentine","TX","Texas","TRUE","","90","0.0","48243","Jeff Davis","{""48243"": ""91.08"", ""48377"": ""8.92""}","Jeff Davis|Presidio","48243|48377","FALSE","FALSE","America/Chicago"
-"79855","31.09237","-104.63688","Van Horn","TX","Texas","TRUE","","2108","0.4","48109","Culberson","{""48109"": ""99.49"", ""48229"": ""0.26"", ""48243"": ""0.26""}","Culberson|Hudspeth|Jeff Davis","48109|48229|48243","FALSE","FALSE","America/Chicago"
-"79901","31.76003","-106.4798","El Paso","TX","Texas","TRUE","","9590","1683.6","48141","El Paso","{""48141"": ""100""}","El Paso","48141","FALSE","FALSE","America/Denver"
-"79902","31.78414","-106.49791","El Paso","TX","Texas","TRUE","","20496","1206.8","48141","El Paso","{""48141"": ""100""}","El Paso","48141","FALSE","FALSE","America/Denver"
-"79903","31.78623","-106.44188","El Paso","TX","Texas","TRUE","","15995","2024.2","48141","El Paso","{""48141"": ""100""}","El Paso","48141","FALSE","FALSE","America/Denver"
-"79904","31.85287","-106.44647","El Paso","TX","Texas","TRUE","","33428","1472.6","48141","El Paso","{""48141"": ""100""}","El Paso","48141","FALSE","FALSE","America/Denver"
-"79905","31.7666","-106.42488","El Paso","TX","Texas","TRUE","","21599","1281.8","48141","El Paso","{""48141"": ""100""}","El Paso","48141","FALSE","FALSE","America/Denver"
-"79906","31.80924","-106.41651","El Paso","TX","Texas","TRUE","","5295","492.5","48141","El Paso","{""48141"": ""100""}","El Paso","48141","FALSE","FALSE","America/Denver"
-"79907","31.7075","-106.32683","El Paso","TX","Texas","TRUE","","53174","1508.1","48141","El Paso","{""48141"": ""100""}","El Paso","48141","FALSE","FALSE","America/Denver"
-"79908","31.85719","-106.38038","El Paso","TX","Texas","TRUE","","6422","127.1","48141","El Paso","{""48141"": ""100""}","El Paso","48141","FALSE","FALSE","America/Denver"
-"79911","31.89246","-106.54251","El Paso","TX","Texas","TRUE","","5794","358.6","48141","El Paso","{""48141"": ""100""}","El Paso","48141","FALSE","FALSE","America/Denver"
-"79912","31.84821","-106.53264","El Paso","TX","Texas","TRUE","","78267","1275.9","48141","El Paso","{""48141"": ""100""}","El Paso","48141","FALSE","FALSE","America/Denver"
-"79915","31.74586","-106.37237","El Paso","TX","Texas","TRUE","","36412","1572.3","48141","El Paso","{""48141"": ""100""}","El Paso","48141","FALSE","FALSE","America/Denver"
-"79916","31.81397","-106.41816","Fort Bliss","TX","Texas","TRUE","","2979","687.0","48141","El Paso","{""48141"": ""100""}","El Paso","48141","FALSE","FALSE","America/Denver"
-"79920","31.82482","-106.4517","El Paso","TX","Texas","TRUE","","8","626.7","48141","El Paso","{""48141"": ""100""}","El Paso","48141","FALSE","FALSE","America/Denver"
-"79922","31.81507","-106.56101","El Paso","TX","Texas","TRUE","","7932","468.4","48141","El Paso","{""48141"": ""100""}","El Paso","48141","FALSE","FALSE","America/Denver"
-"79924","31.90245","-106.41325","El Paso","TX","Texas","TRUE","","59648","1881.3","48141","El Paso","{""48141"": ""100""}","El Paso","48141","FALSE","FALSE","America/Denver"
-"79925","31.79772","-106.36331","El Paso","TX","Texas","TRUE","","39616","897.8","48141","El Paso","{""48141"": ""100""}","El Paso","48141","FALSE","FALSE","America/Denver"
-"79927","31.64458","-106.27373","El Paso","TX","Texas","TRUE","","40747","555.5","48141","El Paso","{""48141"": ""100""}","El Paso","48141","FALSE","FALSE","America/Denver"
-"79928","31.62862","-106.15597","El Paso","TX","Texas","TRUE","","57219","212.2","48141","El Paso","{""48141"": ""100""}","El Paso","48141","FALSE","FALSE","America/Denver"
-"79930","31.82028","-106.46994","El Paso","TX","Texas","TRUE","","28277","995.2","48141","El Paso","{""48141"": ""100""}","El Paso","48141","FALSE","FALSE","America/Denver"
-"79932","31.87816","-106.60643","El Paso","TX","Texas","TRUE","","28243","764.0","48141","El Paso","{""48141"": ""100""}","El Paso","48141","FALSE","FALSE","America/Denver"
-"79934","31.95191","-106.434","El Paso","TX","Texas","TRUE","","26445","172.4","48141","El Paso","{""48141"": ""100""}","El Paso","48141","FALSE","FALSE","America/Denver"
-"79935","31.76795","-106.33019","El Paso","TX","Texas","TRUE","","17850","1965.9","48141","El Paso","{""48141"": ""100""}","El Paso","48141","FALSE","FALSE","America/Denver"
-"79936","31.77618","-106.29786","El Paso","TX","Texas","TRUE","","111620","1618.4","48141","El Paso","{""48141"": ""100""}","El Paso","48141","FALSE","FALSE","America/Denver"
-"79938","31.83091","-105.97012","El Paso","TX","Texas","TRUE","","84237","89.3","48141","El Paso","{""48141"": ""99.51"", ""48229"": ""0.49""}","El Paso|Hudspeth","48141|48229","FALSE","FALSE","America/Denver"
-"79942","30.57792","-101.34274","El Paso","TX","Texas","TRUE","","30","0.3","48105","Crockett","{""48105"": ""100""}","Crockett","48105","FALSE","FALSE","America/Chicago"
-"80002","39.79503","-105.10586","Arvada","CO","Colorado","TRUE","","18877","1183.7","08059","Jefferson","{""08059"": ""94"", ""08001"": ""6""}","Jefferson|Adams","08059|08001","FALSE","FALSE","America/Denver"
-"80003","39.82648","-105.06329","Arvada","CO","Colorado","TRUE","","36480","2073.0","08059","Jefferson","{""08059"": ""83.78"", ""08001"": ""16.22""}","Jefferson|Adams","08059|08001","FALSE","FALSE","America/Denver"
-"80004","39.81473","-105.12355","Arvada","CO","Colorado","TRUE","","36595","1918.0","08059","Jefferson","{""08059"": ""100""}","Jefferson","08059","FALSE","FALSE","America/Denver"
-"80005","39.85094","-105.13034","Arvada","CO","Colorado","TRUE","","28737","973.4","08059","Jefferson","{""08059"": ""100""}","Jefferson","08059","FALSE","FALSE","America/Denver"
-"80007","39.86605","-105.19937","Arvada","CO","Colorado","TRUE","","13783","207.0","08059","Jefferson","{""08059"": ""100""}","Jefferson","08059","FALSE","FALSE","America/Denver"
-"80010","39.73868","-104.86256","Aurora","CO","Colorado","TRUE","","42807","3009.4","08005","Arapahoe","{""08005"": ""50.66"", ""08001"": ""49.34""}","Arapahoe|Adams","08005|08001","FALSE","FALSE","America/Denver"
-"80011","39.73895","-104.78318","Aurora","CO","Colorado","TRUE","","52172","817.2","08005","Arapahoe","{""08005"": ""61.41"", ""08001"": ""38.59""}","Arapahoe|Adams","08005|08001","FALSE","FALSE","America/Denver"
-"80012","39.69975","-104.83759","Aurora","CO","Colorado","TRUE","","52588","2610.7","08005","Arapahoe","{""08005"": ""99.02"", ""08031"": ""0.98""}","Arapahoe|Denver","08005|08031","FALSE","FALSE","America/Denver"
-"80013","39.66138","-104.7657","Aurora","CO","Colorado","TRUE","","74105","2046.5","08005","Arapahoe","{""08005"": ""100""}","Arapahoe","08005","FALSE","FALSE","America/Denver"
-"80014","39.66354","-104.83815","Aurora","CO","Colorado","TRUE","","39333","2151.6","08005","Arapahoe","{""08005"": ""87.84"", ""08031"": ""12.16""}","Arapahoe|Denver","08005|08031","FALSE","FALSE","America/Denver"
-"80015","39.62598","-104.77999","Aurora","CO","Colorado","TRUE","","69487","1870.0","08005","Arapahoe","{""08005"": ""100""}","Arapahoe","08005","FALSE","FALSE","America/Denver"
-"80016","39.59971","-104.70728","Aurora","CO","Colorado","TRUE","","56841","471.6","08005","Arapahoe","{""08005"": ""99.72"", ""08035"": ""0.28""}","Arapahoe|Douglas","08005|08035","FALSE","FALSE","America/Denver"
-"80017","39.69762","-104.78588","Aurora","CO","Colorado","TRUE","","37668","2490.5","08005","Arapahoe","{""08005"": ""100""}","Arapahoe","08005","FALSE","FALSE","America/Denver"
-"80018","39.69289","-104.69551","Aurora","CO","Colorado","TRUE","","13397","194.9","08005","Arapahoe","{""08005"": ""100""}","Arapahoe","08005","FALSE","FALSE","America/Denver"
-"80019","39.78515","-104.70191","Aurora","CO","Colorado","TRUE","","2771","43.6","08001","Adams","{""08001"": ""100""}","Adams","08001","FALSE","FALSE","America/Denver"
-"80020","39.93182","-105.07453","Broomfield","CO","Colorado","TRUE","","50491","984.2","08014","Broomfield","{""08014"": ""82.26"", ""08059"": ""17.43"", ""08013"": ""0.31"", ""08001"": ""0""}","Broomfield|Jefferson|Boulder|Adams","08014|08059|08013|08001","FALSE","FALSE","America/Denver"
-"80021","39.89096","-105.11448","Broomfield","CO","Colorado","TRUE","","34097","797.0","08059","Jefferson","{""08059"": ""91.33"", ""08014"": ""8.67""}","Jefferson|Broomfield","08059|08014","FALSE","FALSE","America/Denver"
-"80022","39.87949","-104.79787","Commerce City","CO","Colorado","TRUE","","51863","435.5","08001","Adams","{""08001"": ""100""}","Adams","08001","FALSE","FALSE","America/Denver"
-"80023","39.97242","-105.01092","Broomfield","CO","Colorado","TRUE","","22659","497.0","08014","Broomfield","{""08014"": ""86.51"", ""08001"": ""13.49""}","Broomfield|Adams","08014|08001","FALSE","FALSE","America/Denver"
-"80024","39.84378","-104.91798","Dupont","CO","Colorado","TRUE","","216","2040.0","08001","Adams","{""08001"": ""100""}","Adams","08001","FALSE","FALSE","America/Denver"
-"80025","39.94509","-105.29066","Eldorado Springs","CO","Colorado","TRUE","","293","9.7","08013","Boulder","{""08013"": ""100""}","Boulder","08013","FALSE","FALSE","America/Denver"
-"80026","40.01317","-105.09805","Lafayette","CO","Colorado","TRUE","","30714","533.8","08013","Boulder","{""08013"": ""100""}","Boulder","08013","FALSE","FALSE","America/Denver"
-"80027","39.95067","-105.16391","Louisville","CO","Colorado","TRUE","","34030","675.1","08013","Boulder","{""08013"": ""100"", ""08014"": ""0""}","Boulder|Broomfield","08013|08014","FALSE","FALSE","America/Denver"
-"80030","39.83012","-105.0369","Westminster","CO","Colorado","TRUE","","15861","2321.3","08001","Adams","{""08001"": ""100""}","Adams","08001","FALSE","FALSE","America/Denver"
-"80031","39.8758","-105.04066","Westminster","CO","Colorado","TRUE","","35741","1635.3","08001","Adams","{""08001"": ""94.39"", ""08059"": ""5.61""}","Adams|Jefferson","08001|08059","FALSE","FALSE","America/Denver"
-"80033","39.77309","-105.1022","Wheat Ridge","CO","Colorado","TRUE","","25755","1200.5","08059","Jefferson","{""08059"": ""100""}","Jefferson","08059","FALSE","FALSE","America/Denver"
-"80045","39.74752","-104.83861","Aurora","CO","Colorado","TRUE","","901","519.1","08001","Adams","{""08001"": ""100""}","Adams","08001","FALSE","FALSE","America/Denver"
-"80101","39.39269","-104.02852","Agate","CO","Colorado","TRUE","","495","0.8","08039","Elbert","{""08039"": ""100""}","Elbert","08039","FALSE","FALSE","America/Denver"
-"80102","39.74095","-104.44391","Bennett","CO","Colorado","TRUE","","5692","7.4","08001","Adams","{""08001"": ""60.92"", ""08005"": ""37.18"", ""08039"": ""1.9""}","Adams|Arapahoe|Elbert","08001|08005|08039","FALSE","FALSE","America/Denver"
-"80103","39.78128","-104.13663","Byers","CO","Colorado","TRUE","","2949","4.1","08005","Arapahoe","{""08005"": ""80.68"", ""08001"": ""19.32""}","Arapahoe|Adams","08005|08001","FALSE","FALSE","America/Denver"
-"80104","39.30195","-104.81809","Castle Rock","CO","Colorado","TRUE","","31522","156.8","08035","Douglas","{""08035"": ""100""}","Douglas","08035","FALSE","FALSE","America/Denver"
-"80105","39.66096","-103.96166","Deer Trail","CO","Colorado","TRUE","","1198","0.9","08005","Arapahoe","{""08005"": ""64.3"", ""08039"": ""32.71"", ""08001"": ""2.99""}","Arapahoe|Elbert|Adams","08005|08039|08001","FALSE","FALSE","America/Denver"
-"80106","39.17265","-104.52902","Elbert","CO","Colorado","TRUE","","5847","12.8","08041","El Paso","{""08041"": ""65.81"", ""08039"": ""32.3"", ""08035"": ""1.89""}","El Paso|Elbert|Douglas","08041|08039|08035","FALSE","FALSE","America/Denver"
-"80107","39.40961","-104.57244","Elizabeth","CO","Colorado","TRUE","","13474","33.4","08039","Elbert","{""08039"": ""100""}","Elbert","08039","FALSE","FALSE","America/Denver"
-"80108","39.44551","-104.85303","Castle Rock","CO","Colorado","TRUE","","27719","300.9","08035","Douglas","{""08035"": ""100""}","Douglas","08035","FALSE","FALSE","America/Denver"
-"80109","39.36426","-104.90136","Castle Rock","CO","Colorado","TRUE","","23665","346.4","08035","Douglas","{""08035"": ""100""}","Douglas","08035","FALSE","FALSE","America/Denver"
-"80110","39.64629","-105.00921","Englewood","CO","Colorado","TRUE","","22756","1384.2","08005","Arapahoe","{""08005"": ""94.94"", ""08031"": ""5.06""}","Arapahoe|Denver","08005|08031","FALSE","FALSE","America/Denver"
-"80111","39.61228","-104.8798","Englewood","CO","Colorado","TRUE","","33256","1193.0","08005","Arapahoe","{""08005"": ""100"", ""08031"": ""0""}","Arapahoe|Denver","08005|08031","FALSE","FALSE","America/Denver"
-"80112","39.57258","-104.8574","Englewood","CO","Colorado","TRUE","","34092","712.4","08005","Arapahoe","{""08005"": ""92.98"", ""08035"": ""7.02""}","Arapahoe|Douglas","08005|08035","FALSE","FALSE","America/Denver"
-"80113","39.64216","-104.96251","Englewood","CO","Colorado","TRUE","","23336","1193.2","08005","Arapahoe","{""08005"": ""100""}","Arapahoe","08005","FALSE","FALSE","America/Denver"
-"80116","39.30721","-104.71756","Franktown","CO","Colorado","TRUE","","4370","19.5","08035","Douglas","{""08035"": ""100""}","Douglas","08035","FALSE","FALSE","America/Denver"
-"80117","39.36468","-104.36143","Kiowa","CO","Colorado","TRUE","","2794","4.4","08039","Elbert","{""08039"": ""100""}","Elbert","08039","FALSE","FALSE","America/Denver"
-"80118","39.19239","-104.89199","Larkspur","CO","Colorado","TRUE","","6476","18.3","08035","Douglas","{""08035"": ""100""}","Douglas","08035","FALSE","FALSE","America/Denver"
-"80120","39.5933","-105.00956","Littleton","CO","Colorado","TRUE","","31891","1483.5","08005","Arapahoe","{""08005"": ""99.93"", ""08035"": ""0.07""}","Arapahoe|Douglas","08005|08035","FALSE","FALSE","America/Denver"
-"80121","39.61115","-104.9532","Littleton","CO","Colorado","TRUE","","19217","990.7","08005","Arapahoe","{""08005"": ""100""}","Arapahoe","08005","FALSE","FALSE","America/Denver"
-"80122","39.58062","-104.95591","Littleton","CO","Colorado","TRUE","","33117","1811.8","08005","Arapahoe","{""08005"": ""100""}","Arapahoe","08005","FALSE","FALSE","America/Denver"
-"80123","39.61583","-105.06888","Littleton","CO","Colorado","TRUE","","47821","1556.8","08059","Jefferson","{""08059"": ""48.92"", ""08031"": ""26.72"", ""08005"": ""24.36""}","Jefferson|Denver|Arapahoe","08059|08031|08005","FALSE","FALSE","America/Denver"
-"80124","39.53184","-104.89207","Lone Tree","CO","Colorado","TRUE","","21273","865.5","08035","Douglas","{""08035"": ""100""}","Douglas","08035","FALSE","FALSE","America/Denver"
-"80125","39.48598","-105.05018","Littleton","CO","Colorado","TRUE","","10548","96.7","08035","Douglas","{""08035"": ""100""}","Douglas","08035","FALSE","FALSE","America/Denver"
-"80126","39.54073","-104.96083","Littleton","CO","Colorado","TRUE","","43356","1560.6","08035","Douglas","{""08035"": ""100""}","Douglas","08035","FALSE","FALSE","America/Denver"
-"80127","39.54044","-105.15135","Littleton","CO","Colorado","TRUE","","45304","337.2","08059","Jefferson","{""08059"": ""100""}","Jefferson","08059","FALSE","FALSE","America/Denver"
-"80128","39.5641","-105.07865","Littleton","CO","Colorado","TRUE","","36435","1159.2","08059","Jefferson","{""08059"": ""94.79"", ""08005"": ""5.21""}","Jefferson|Arapahoe","08059|08005","FALSE","FALSE","America/Denver"
-"80129","39.54463","-105.01081","Littleton","CO","Colorado","TRUE","","31302","1620.3","08035","Douglas","{""08035"": ""100"", ""08005"": ""0""}","Douglas|Arapahoe","08035|08005","FALSE","FALSE","America/Denver"
-"80130","39.53062","-104.92323","Littleton","CO","Colorado","TRUE","","28992","1752.4","08035","Douglas","{""08035"": ""100""}","Douglas","08035","FALSE","FALSE","America/Denver"
-"80131","39.4764","-105.00751","Louviers","CO","Colorado","TRUE","","378","193.4","08035","Douglas","{""08035"": ""100""}","Douglas","08035","FALSE","FALSE","America/Denver"
-"80132","39.09814","-104.8472","Monument","CO","Colorado","TRUE","","21286","268.8","08041","El Paso","{""08041"": ""100""}","El Paso","08041","FALSE","FALSE","America/Denver"
-"80133","39.09972","-104.96952","Palmer Lake","CO","Colorado","TRUE","","2539","31.8","08041","El Paso","{""08041"": ""99.12"", ""08035"": ""0.88""}","El Paso|Douglas","08041|08035","FALSE","FALSE","America/Denver"
-"80134","39.48221","-104.77886","Parker","CO","Colorado","TRUE","","69163","474.3","08035","Douglas","{""08035"": ""100""}","Douglas","08035","FALSE","FALSE","America/Denver"
-"80135","39.2793","-105.11819","Sedalia","CO","Colorado","TRUE","","4038","4.7","08035","Douglas","{""08035"": ""98.49"", ""08059"": ""1.51""}","Douglas|Jefferson","08035|08059","FALSE","FALSE","America/Denver"
-"80136","39.79068","-104.29748","Strasburg","CO","Colorado","TRUE","","5469","10.4","08001","Adams","{""08001"": ""67.73"", ""08005"": ""32.27""}","Adams|Arapahoe","08001|08005","FALSE","FALSE","America/Denver"
-"80137","39.75788","-104.59287","Watkins","CO","Colorado","TRUE","","1914","7.1","08005","Arapahoe","{""08005"": ""66.67"", ""08001"": ""33.33""}","Arapahoe|Adams","08005|08001","FALSE","FALSE","America/Denver"
-"80138","39.51759","-104.67107","Parker","CO","Colorado","TRUE","","33571","205.0","08035","Douglas","{""08035"": ""85.45"", ""08039"": ""14.55""}","Douglas|Elbert","08035|08039","FALSE","FALSE","America/Denver"
-"80202","39.75193","-104.99776","Denver","CO","Colorado","TRUE","","15287","5270.5","08031","Denver","{""08031"": ""100""}","Denver","08031","FALSE","FALSE","America/Denver"
-"80203","39.73174","-104.98265","Denver","CO","Colorado","TRUE","","21392","7697.2","08031","Denver","{""08031"": ""100""}","Denver","08031","FALSE","FALSE","America/Denver"
-"80204","39.73489","-105.02035","Denver","CO","Colorado","TRUE","","34030","2363.2","08031","Denver","{""08031"": ""100""}","Denver","08031","FALSE","FALSE","America/Denver"
-"80205","39.75866","-104.96339","Denver","CO","Colorado","TRUE","","35054","2965.0","08031","Denver","{""08031"": ""100""}","Denver","08031","FALSE","FALSE","America/Denver"
-"80206","39.7303","-104.95259","Denver","CO","Colorado","TRUE","","25066","3929.2","08031","Denver","{""08031"": ""100""}","Denver","08031","FALSE","FALSE","America/Denver"
-"80207","39.76227","-104.91662","Denver","CO","Colorado","TRUE","","26706","2258.0","08031","Denver","{""08031"": ""100""}","Denver","08031","FALSE","FALSE","America/Denver"
-"80209","39.70599","-104.96594","Denver","CO","Colorado","TRUE","","25367","2808.3","08031","Denver","{""08031"": ""100""}","Denver","08031","FALSE","FALSE","America/Denver"
-"80210","39.67802","-104.96256","Denver","CO","Colorado","TRUE","","37087","2359.4","08031","Denver","{""08031"": ""100""}","Denver","08031","FALSE","FALSE","America/Denver"
-"80211","39.76706","-105.02009","Denver","CO","Colorado","TRUE","","35627","3057.8","08031","Denver","{""08031"": ""100""}","Denver","08031","FALSE","FALSE","America/Denver"
-"80212","39.77167","-105.04831","Denver","CO","Colorado","TRUE","","19552","2113.7","08031","Denver","{""08031"": ""78.94"", ""08059"": ""14.91"", ""08001"": ""6.14""}","Denver|Jefferson|Adams","08031|08059|08001","FALSE","FALSE","America/Denver"
-"80214","39.74214","-105.0712","Denver","CO","Colorado","TRUE","","26711","2240.2","08059","Jefferson","{""08059"": ""99.5"", ""08031"": ""0.5""}","Jefferson|Denver","08059|08031","FALSE","FALSE","America/Denver"
-"80215","39.74409","-105.11592","Denver","CO","Colorado","TRUE","","19487","1353.2","08059","Jefferson","{""08059"": ""100""}","Jefferson","08059","FALSE","FALSE","America/Denver"
-"80216","39.78839","-104.95672","Denver","CO","Colorado","TRUE","","13662","500.7","08031","Denver","{""08031"": ""97.44"", ""08001"": ""2.56""}","Denver|Adams","08031|08001","FALSE","FALSE","America/Denver"
-"80218","39.73096","-104.97065","Denver","CO","Colorado","TRUE","","19385","4686.3","08031","Denver","{""08031"": ""100""}","Denver","08031","FALSE","FALSE","America/Denver"
-"80219","39.69538","-105.03438","Denver","CO","Colorado","TRUE","","70638","3633.3","08031","Denver","{""08031"": ""100""}","Denver","08031","FALSE","FALSE","America/Denver"
-"80220","39.7338","-104.91659","Denver","CO","Colorado","TRUE","","36483","2690.0","08031","Denver","{""08031"": ""99.28"", ""08005"": ""0.72""}","Denver|Arapahoe","08031|08005","FALSE","FALSE","America/Denver"
-"80221","39.81542","-105.00955","Denver","CO","Colorado","TRUE","","42103","1789.5","08001","Adams","{""08001"": ""84.83"", ""08031"": ""15.17""}","Adams|Denver","08001|08031","FALSE","FALSE","America/Denver"
-"80222","39.67104","-104.92791","Denver","CO","Colorado","TRUE","","23287","2268.0","08031","Denver","{""08031"": ""87.44"", ""08005"": ""12.56""}","Denver|Arapahoe","08031|08005","FALSE","FALSE","America/Denver"
-"80223","39.69617","-105.00186","Denver","CO","Colorado","TRUE","","19972","1473.1","08031","Denver","{""08031"": ""100""}","Denver","08031","FALSE","FALSE","America/Denver"
-"80224","39.68768","-104.91133","Denver","CO","Colorado","TRUE","","18941","2322.4","08031","Denver","{""08031"": ""99.32"", ""08005"": ""0.68""}","Denver|Arapahoe","08031|08005","FALSE","FALSE","America/Denver"
-"80226","39.71106","-105.09138","Denver","CO","Colorado","TRUE","","33597","1612.3","08059","Jefferson","{""08059"": ""99.22"", ""08031"": ""0.78""}","Jefferson|Denver","08059|08031","FALSE","FALSE","America/Denver"
-"80227","39.66717","-105.08962","Denver","CO","Colorado","TRUE","","34878","1813.3","08059","Jefferson","{""08059"": ""70.93"", ""08031"": ""29.07""}","Jefferson|Denver","08059|08031","FALSE","FALSE","America/Denver"
-"80228","39.69002","-105.15677","Denver","CO","Colorado","TRUE","","34111","1198.2","08059","Jefferson","{""08059"": ""100""}","Jefferson","08059","FALSE","FALSE","America/Denver"
-"80229","39.85545","-104.9574","Denver","CO","Colorado","TRUE","","55532","1681.5","08001","Adams","{""08001"": ""100""}","Adams","08001","FALSE","FALSE","America/Denver"
-"80230","39.71946","-104.89031","Denver","CO","Colorado","TRUE","","9545","1481.5","08031","Denver","{""08031"": ""100""}","Denver","08031","FALSE","FALSE","America/Denver"
-"80231","39.67151","-104.88785","Denver","CO","Colorado","TRUE","","36861","3012.8","08031","Denver","{""08031"": ""57.84"", ""08005"": ""42.16""}","Denver|Arapahoe","08031|08005","FALSE","FALSE","America/Denver"
-"80232","39.68853","-105.09048","Denver","CO","Colorado","TRUE","","22705","2119.6","08059","Jefferson","{""08059"": ""99.74"", ""08031"": ""0.26""}","Jefferson|Denver","08059|08031","FALSE","FALSE","America/Denver"
-"80233","39.89971","-104.9469","Denver","CO","Colorado","TRUE","","49875","2116.0","08001","Adams","{""08001"": ""100""}","Adams","08001","FALSE","FALSE","America/Denver"
-"80234","39.91226","-105.00553","Denver","CO","Colorado","TRUE","","28133","1527.0","08001","Adams","{""08001"": ""94.89"", ""08014"": ""5.11""}","Adams|Broomfield","08001|08014","FALSE","FALSE","America/Denver"
-"80235","39.6461","-105.08993","Denver","CO","Colorado","TRUE","","8804","932.1","08059","Jefferson","{""08059"": ""56.27"", ""08031"": ""43.73""}","Jefferson|Denver","08059|08031","FALSE","FALSE","America/Denver"
-"80236","39.65165","-105.03962","Denver","CO","Colorado","TRUE","","19230","2310.5","08031","Denver","{""08031"": ""91.96"", ""08005"": ""8.04""}","Denver|Arapahoe","08031|08005","FALSE","FALSE","America/Denver"
-"80237","39.64007","-104.90117","Denver","CO","Colorado","TRUE","","21890","2349.9","08031","Denver","{""08031"": ""100"", ""08005"": ""0""}","Denver|Arapahoe","08031|08005","FALSE","FALSE","America/Denver"
-"80238","39.77159","-104.88236","Denver","CO","Colorado","TRUE","","21632","1718.1","08031","Denver","{""08031"": ""100""}","Denver","08031","FALSE","FALSE","America/Denver"
-"80239","39.7868","-104.83803","Denver","CO","Colorado","TRUE","","47829","1848.7","08031","Denver","{""08031"": ""100"", ""08001"": ""0""}","Denver|Adams","08031|08001","FALSE","FALSE","America/Denver"
-"80241","39.92873","-104.95508","Thornton","CO","Colorado","TRUE","","33638","1966.1","08001","Adams","{""08001"": ""100""}","Adams","08001","FALSE","FALSE","America/Denver"
-"80246","39.70435","-104.93093","Denver","CO","Colorado","TRUE","","13433","3003.3","08031","Denver","{""08031"": ""67.5"", ""08005"": ""32.5""}","Denver|Arapahoe","08031|08005","FALSE","FALSE","America/Denver"
-"80247","39.69715","-104.88179","Denver","CO","Colorado","TRUE","","29264","3852.3","08005","Arapahoe","{""08005"": ""52.13"", ""08031"": ""47.87""}","Arapahoe|Denver","08005|08031","FALSE","FALSE","America/Denver"
-"80249","39.84982","-104.69651","Denver","CO","Colorado","TRUE","","32537","263.2","08031","Denver","{""08031"": ""100""}","Denver","08031","FALSE","FALSE","America/Denver"
-"80260","39.86679","-105.00605","Denver","CO","Colorado","TRUE","","34837","2779.6","08001","Adams","{""08001"": ""100""}","Adams","08001","FALSE","FALSE","America/Denver"
-"80264","39.74248","-104.98548","Denver","CO","Colorado","TRUE","","0","0.0","08031","Denver","{""08031"": ""0""}","Denver","08031","FALSE","FALSE","America/Denver"
-"80290","39.74409","-104.98675","Denver","CO","Colorado","TRUE","","0","0.0","08031","Denver","{""08031"": ""0""}","Denver","08031","FALSE","FALSE","America/Denver"
-"80293","39.74625","-104.98994","Denver","CO","Colorado","TRUE","","0","0.0","08031","Denver","{""08031"": ""0""}","Denver","08031","FALSE","FALSE","America/Denver"
-"80294","39.74945","-104.98927","Denver","CO","Colorado","TRUE","","0","0.0","08031","Denver","{""08031"": ""0""}","Denver","08031","FALSE","FALSE","America/Denver"
-"80301","40.04859","-105.20013","Boulder","CO","Colorado","TRUE","","25581","340.4","08013","Boulder","{""08013"": ""100""}","Boulder","08013","FALSE","FALSE","America/Denver"
-"80302","40.03893","-105.3691","Boulder","CO","Colorado","TRUE","","29154","136.2","08013","Boulder","{""08013"": ""100""}","Boulder","08013","FALSE","FALSE","America/Denver"
-"80303","39.9741","-105.21275","Boulder","CO","Colorado","TRUE","","25081","440.0","08013","Boulder","{""08013"": ""100""}","Boulder","08013","FALSE","FALSE","America/Denver"
-"80304","40.04547","-105.29048","Boulder","CO","Colorado","TRUE","","26360","1115.7","08013","Boulder","{""08013"": ""100""}","Boulder","08013","FALSE","FALSE","America/Denver"
-"80305","39.97469","-105.2492","Boulder","CO","Colorado","TRUE","","17126","918.8","08013","Boulder","{""08013"": ""100""}","Boulder","08013","FALSE","FALSE","America/Denver"
-"80310","40.00378","-105.26138","Boulder","CO","Colorado","TRUE","","7305","6500.6","08013","Boulder","{""08013"": ""100""}","Boulder","08013","FALSE","FALSE","America/Denver"
-"80401","39.71642","-105.2351","Golden","CO","Colorado","TRUE","","42665","315.8","08059","Jefferson","{""08059"": ""100""}","Jefferson","08059","FALSE","FALSE","America/Denver"
-"80403","39.83088","-105.31503","Golden","CO","Colorado","TRUE","","20499","59.2","08059","Jefferson","{""08059"": ""93.03"", ""08013"": ""4.77"", ""08047"": ""2.2""}","Jefferson|Boulder|Gilpin","08059|08013|08047","FALSE","FALSE","America/Denver"
-"80419","39.72844","-105.20284","Golden","CO","Colorado","TRUE","","0","0.0","08059","Jefferson","{""08059"": ""0""}","Jefferson","08059","FALSE","FALSE","America/Denver"
-"80420","39.31679","-106.10381","Alma","CO","Colorado","TRUE","","802","7.8","08093","Park","{""08093"": ""100""}","Park","08093","FALSE","FALSE","America/Denver"
-"80421","39.47872","-105.52618","Bailey","CO","Colorado","TRUE","","9740","27.3","08093","Park","{""08093"": ""99.81"", ""08059"": ""0.19""}","Park|Jefferson","08093|08059","FALSE","FALSE","America/Denver"
-"80422","39.86909","-105.53237","Black Hawk","CO","Colorado","TRUE","","4744","14.2","08047","Gilpin","{""08047"": ""97.5"", ""08013"": ""2.5""}","Gilpin|Boulder","08047|08013","FALSE","FALSE","America/Denver"
-"80423","39.89446","-106.59512","Bond","CO","Colorado","TRUE","","251","0.6","08037","Eagle","{""08037"": ""85.21"", ""08049"": ""14.79""}","Eagle|Grand","08037|08049","FALSE","FALSE","America/Denver"
-"80424","39.47099","-106.0169","Breckenridge","CO","Colorado","TRUE","","10169","31.2","08117","Summit","{""08117"": ""100""}","Summit","08117","FALSE","FALSE","America/Denver"
-"80425","39.34482","-105.22334","Buffalo Creek","CO","Colorado","TRUE","","157","1.3","08059","Jefferson","{""08059"": ""100""}","Jefferson","08059","FALSE","FALSE","America/Denver"
-"80426","39.90844","-106.99145","Burns","CO","Colorado","TRUE","","38","0.1","08037","Eagle","{""08037"": ""100"", ""08107"": ""0""}","Eagle|Routt","08037|08107","FALSE","FALSE","America/Denver"
-"80427","39.78026","-105.49498","Central City","CO","Colorado","TRUE","","720","19.1","08047","Gilpin","{""08047"": ""100""}","Gilpin","08047","FALSE","FALSE","America/Denver"
-"80428","40.86096","-106.96086","Clark","CO","Colorado","TRUE","","670","0.8","08107","Routt","{""08107"": ""100""}","Routt","08107","FALSE","FALSE","America/Denver"
-"80432","39.22871","-105.81904","Como","CO","Colorado","TRUE","","187","0.7","08093","Park","{""08093"": ""100""}","Park","08093","FALSE","FALSE","America/Denver"
-"80433","39.48949","-105.27378","Conifer","CO","Colorado","TRUE","","8706","41.0","08059","Jefferson","{""08059"": ""100""}","Jefferson","08059","FALSE","FALSE","America/Denver"
-"80434","40.85618","-106.29425","Cowdrey","CO","Colorado","TRUE","","42","0.6","08057","Jackson","{""08057"": ""100""}","Jackson","08057","FALSE","FALSE","America/Denver"
-"80435","39.60145","-105.92428","Dillon","CO","Colorado","TRUE","","7665","28.5","08117","Summit","{""08117"": ""100""}","Summit","08117","FALSE","FALSE","America/Denver"
-"80436","39.78748","-105.64738","Dumont","CO","Colorado","TRUE","","605","19.0","08019","Clear Creek","{""08019"": ""100""}","Clear Creek","08019","FALSE","FALSE","America/Denver"
-"80438","39.76029","-105.78335","Empire","CO","Colorado","TRUE","","488","3.4","08019","Clear Creek","{""08019"": ""100""}","Clear Creek","08019","FALSE","FALSE","America/Denver"
-"80439","39.6376","-105.43301","Evergreen","CO","Colorado","TRUE","","24959","54.5","08059","Jefferson","{""08059"": ""84.58"", ""08019"": ""15.42""}","Jefferson|Clear Creek","08059|08019","FALSE","FALSE","America/Denver"
-"80440","39.22625","-105.97815","Fairplay","CO","Colorado","TRUE","","2537","3.7","08093","Park","{""08093"": ""100""}","Park","08093","FALSE","FALSE","America/Denver"
-"80442","39.9348","-105.88144","Fraser","CO","Colorado","TRUE","","2229","12.2","08049","Grand","{""08049"": ""100""}","Grand","08049","FALSE","FALSE","America/Denver"
-"80443","39.50537","-106.16294","Frisco","CO","Colorado","TRUE","","4483","16.6","08117","Summit","{""08117"": ""100""}","Summit","08117","FALSE","FALSE","America/Denver"
-"80444","39.63095","-105.73747","Georgetown","CO","Colorado","TRUE","","1151","13.9","08019","Clear Creek","{""08019"": ""100""}","Clear Creek","08019","FALSE","FALSE","America/Denver"
-"80446","40.17423","-105.95253","Granby","CO","Colorado","TRUE","","4257","5.5","08049","Grand","{""08049"": ""100""}","Grand","08049","FALSE","FALSE","America/Denver"
-"80447","40.27251","-105.79681","Grand Lake","CO","Colorado","TRUE","","2328","3.8","08049","Grand","{""08049"": ""100""}","Grand","08049","FALSE","FALSE","America/Denver"
-"80448","39.408","-105.63004","Grant","CO","Colorado","TRUE","","0","0.0","08093","Park","{""08093"": ""100""}","Park","08093","FALSE","FALSE","America/Denver"
-"80449","38.98134","-105.85574","Hartsel","CO","Colorado","TRUE","","816","0.5","08093","Park","{""08093"": ""99.56"", ""08015"": ""0.44""}","Park|Chaffee","08093|08015","FALSE","FALSE","America/Denver"
-"80451","40.09845","-106.07319","Hot Sulphur Springs","CO","Colorado","TRUE","","1031","5.8","08049","Grand","{""08049"": ""100""}","Grand","08049","FALSE","FALSE","America/Denver"
-"80452","39.70716","-105.61389","Idaho Springs","CO","Colorado","TRUE","","3158","9.4","08019","Clear Creek","{""08019"": ""100""}","Clear Creek","08019","FALSE","FALSE","America/Denver"
-"80453","39.66271","-105.24262","Idledale","CO","Colorado","TRUE","","104","99.2","08059","Jefferson","{""08059"": ""100""}","Jefferson","08059","FALSE","FALSE","America/Denver"
-"80454","39.6295","-105.25135","Indian Hills","CO","Colorado","TRUE","","1361","123.1","08059","Jefferson","{""08059"": ""100""}","Jefferson","08059","FALSE","FALSE","America/Denver"
-"80455","40.11342","-105.39226","Jamestown","CO","Colorado","TRUE","","391","4.3","08013","Boulder","{""08013"": ""100""}","Boulder","08013","FALSE","FALSE","America/Denver"
-"80456","39.28408","-105.64459","Jefferson","CO","Colorado","TRUE","","640","1.1","08093","Park","{""08093"": ""100""}","Park","08093","FALSE","FALSE","America/Denver"
-"80457","39.64839","-105.29099","Kittredge","CO","Colorado","TRUE","","192","48.2","08059","Jefferson","{""08059"": ""100""}","Jefferson","08059","FALSE","FALSE","America/Denver"
-"80459","40.17599","-106.43491","Kremmling","CO","Colorado","TRUE","","2801","1.9","08049","Grand","{""08049"": ""100""}","Grand","08049","FALSE","FALSE","America/Denver"
-"80461","39.23391","-106.31467","Leadville","CO","Colorado","TRUE","","7578","10.1","08065","Lake","{""08065"": ""100""}","Lake","08065","FALSE","FALSE","America/Denver"
-"80463","39.97325","-106.73027","McCoy","CO","Colorado","TRUE","","158","0.5","08107","Routt","{""08107"": ""52.21"", ""08037"": ""47.79""}","Routt|Eagle","08107|08037","FALSE","FALSE","America/Denver"
-"80465","39.60853","-105.20891","Morrison","CO","Colorado","TRUE","","16192","138.7","08059","Jefferson","{""08059"": ""100""}","Jefferson","08059","FALSE","FALSE","America/Denver"
-"80466","39.97599","-105.53851","Nederland","CO","Colorado","TRUE","","3557","15.3","08013","Boulder","{""08013"": ""100""}","Boulder","08013","FALSE","FALSE","America/Denver"
-"80467","40.25316","-106.86992","Oak Creek","CO","Colorado","TRUE","","2186","3.7","08107","Routt","{""08107"": ""100""}","Routt","08107","FALSE","FALSE","America/Denver"
-"80468","39.94766","-106.11892","Parshall","CO","Colorado","TRUE","","397","0.4","08049","Grand","{""08049"": ""100""}","Grand","08049","FALSE","FALSE","America/Denver"
-"80469","40.205","-106.96463","Phippsburg","CO","Colorado","TRUE","","380","2.9","08107","Routt","{""08107"": ""100""}","Routt","08107","FALSE","FALSE","America/Denver"
-"80470","39.36775","-105.34356","Pine","CO","Colorado","TRUE","","3531","10.2","08059","Jefferson","{""08059"": ""70.46"", ""08093"": ""29.54""}","Jefferson|Park","08059|08093","FALSE","FALSE","America/Denver"
-"80471","39.93527","-105.42114","Pinecliffe","CO","Colorado","TRUE","","0","0.0","08013","Boulder","{""08013"": ""100""}","Boulder","08013","FALSE","FALSE","America/Denver"
-"80473","40.42501","-106.13465","Rand","CO","Colorado","TRUE","","6","0.0","08057","Jackson","{""08057"": ""100""}","Jackson","08057","FALSE","FALSE","America/Denver"
-"80475","39.45201","-105.56006","Shawnee","CO","Colorado","TRUE","","0","0.0","08093","Park","{""08093"": ""100""}","Park","08093","FALSE","FALSE","America/Denver"
-"80476","39.68542","-105.81121","Silver Plume","CO","Colorado","TRUE","","169","1.1","08019","Clear Creek","{""08019"": ""100""}","Clear Creek","08019","FALSE","FALSE","America/Denver"
-"80477","40.48635","-106.82938","Steamboat Springs","CO","Colorado","TRUE","","78","1122.0","08107","Routt","{""08107"": ""100""}","Routt","08107","FALSE","FALSE","America/Denver"
-"80478","40.02791","-105.84699","Tabernash","CO","Colorado","TRUE","","1329","12.3","08049","Grand","{""08049"": ""100""}","Grand","08049","FALSE","FALSE","America/Denver"
-"80479","40.03184","-106.83314","Toponas","CO","Colorado","TRUE","","4","0.0","08107","Routt","{""08107"": ""100""}","Routt","08107","FALSE","FALSE","America/Denver"
-"80480","40.67294","-106.35241","Walden","CO","Colorado","TRUE","","1213","0.3","08057","Jackson","{""08057"": ""100""}","Jackson","08057","FALSE","FALSE","America/Denver"
-"80481","40.0896","-105.54587","Ward","CO","Colorado","TRUE","","426","2.3","08013","Boulder","{""08013"": ""100""}","Boulder","08013","FALSE","FALSE","America/Denver"
-"80482","39.89395","-105.78447","Winter Park","CO","Colorado","TRUE","","831","2.5","08049","Grand","{""08049"": ""100""}","Grand","08049","FALSE","FALSE","America/Denver"
-"80483","40.11979","-106.91774","Yampa","CO","Colorado","TRUE","","719","3.2","08107","Routt","{""08107"": ""100""}","Routt","08107","FALSE","FALSE","America/Denver"
-"80487","40.548","-106.86711","Steamboat Springs","CO","Colorado","TRUE","","17971","9.5","08107","Routt","{""08107"": ""100""}","Routt","08107","FALSE","FALSE","America/Denver"
-"80488","40.44905","-106.81812","Steamboat Springs","CO","Colorado","TRUE","","311","10798.6","08107","Routt","{""08107"": ""100""}","Routt","08107","FALSE","FALSE","America/Denver"
-"80497","39.67079","-105.99996","Silverthorne","CO","Colorado","TRUE","","333","9.7","08117","Summit","{""08117"": ""100""}","Summit","08117","FALSE","FALSE","America/Denver"
-"80498","39.77488","-106.22716","Silverthorne","CO","Colorado","TRUE","","7999","11.8","08117","Summit","{""08117"": ""100""}","Summit","08117","FALSE","FALSE","America/Denver"
-"80501","40.16475","-105.10293","Longmont","CO","Colorado","TRUE","","42077","1312.2","08013","Boulder","{""08013"": ""100""}","Boulder","08013","FALSE","FALSE","America/Denver"
-"80503","40.17005","-105.20362","Longmont","CO","Colorado","TRUE","","35453","150.3","08013","Boulder","{""08013"": ""99.94"", ""08069"": ""0.06""}","Boulder|Larimer","08013|08069","FALSE","FALSE","America/Denver"
-"80504","40.16391","-105.0289","Longmont","CO","Colorado","TRUE","","55479","218.7","08013","Boulder","{""08013"": ""59.68"", ""08123"": ""39.95"", ""08069"": ""0.37""}","Boulder|Weld|Larimer","08013|08123|08069","FALSE","FALSE","America/Denver"
-"80510","40.20871","-105.57862","Allenspark","CO","Colorado","TRUE","","288","1.7","08013","Boulder","{""08013"": ""100""}","Boulder","08013","FALSE","FALSE","America/Denver"
-"80511","40.34002","-105.57227","Estes Park","CO","Colorado","TRUE","","154","557.5","08069","Larimer","{""08069"": ""100""}","Larimer","08069","FALSE","FALSE","America/Denver"
-"80512","40.63401","-105.57322","Bellvue","CO","Colorado","TRUE","","1583","1.2","08069","Larimer","{""08069"": ""100""}","Larimer","08069","FALSE","FALSE","America/Denver"
-"80513","40.29802","-105.10365","Berthoud","CO","Colorado","TRUE","","12924","75.9","08069","Larimer","{""08069"": ""92.79"", ""08123"": ""7.21""}","Larimer|Weld","08069|08123","FALSE","FALSE","America/Denver"
-"80514","40.06592","-104.95832","Dacono","CO","Colorado","TRUE","","5488","314.4","08123","Weld","{""08123"": ""100""}","Weld","08123","FALSE","FALSE","America/Denver"
-"80515","40.44443","-105.37528","Drake","CO","Colorado","TRUE","","957","6.1","08069","Larimer","{""08069"": ""100""}","Larimer","08069","FALSE","FALSE","America/Denver"
-"80516","40.05124","-105.01837","Erie","CO","Colorado","TRUE","","28254","273.1","08123","Weld","{""08123"": ""58.13"", ""08013"": ""41.54"", ""08014"": ""0.33""}","Weld|Boulder|Broomfield","08123|08013|08014","FALSE","FALSE","America/Denver"
-"80517","40.40027","-105.61164","Estes Park","CO","Colorado","TRUE","","10452","13.6","08069","Larimer","{""08069"": ""100""}","Larimer","08069","FALSE","FALSE","America/Denver"
-"80520","40.11313","-104.93148","Firestone","CO","Colorado","TRUE","","1636","1567.4","08123","Weld","{""08123"": ""100""}","Weld","08123","FALSE","FALSE","America/Denver"
-"80521","40.59325","-105.12777","Fort Collins","CO","Colorado","TRUE","","36729","999.1","08069","Larimer","{""08069"": ""100""}","Larimer","08069","FALSE","FALSE","America/Denver"
-"80524","40.65295","-105.02629","Fort Collins","CO","Colorado","TRUE","","36497","111.4","08069","Larimer","{""08069"": ""98.14"", ""08123"": ""1.86""}","Larimer|Weld","08069|08123","FALSE","FALSE","America/Denver"
-"80525","40.52921","-105.03706","Fort Collins","CO","Colorado","TRUE","","56425","896.3","08069","Larimer","{""08069"": ""100""}","Larimer","08069","FALSE","FALSE","America/Denver"
-"80526","40.52425","-105.14003","Fort Collins","CO","Colorado","TRUE","","46271","468.1","08069","Larimer","{""08069"": ""100""}","Larimer","08069","FALSE","FALSE","America/Denver"
-"80528","40.49615","-105.00023","Fort Collins","CO","Colorado","TRUE","","22641","460.9","08069","Larimer","{""08069"": ""100""}","Larimer","08069","FALSE","FALSE","America/Denver"
-"80530","40.09779","-104.92927","Frederick","CO","Colorado","TRUE","","4718","959.3","08123","Weld","{""08123"": ""100""}","Weld","08123","FALSE","FALSE","America/Denver"
-"80532","40.49323","-105.46868","Glen Haven","CO","Colorado","TRUE","","120","1.8","08069","Larimer","{""08069"": ""100""}","Larimer","08069","FALSE","FALSE","America/Denver"
-"80534","40.332","-104.9354","Johnstown","CO","Colorado","TRUE","","17118","136.4","08123","Weld","{""08123"": ""92.89"", ""08069"": ""7.11""}","Weld|Larimer","08123|08069","FALSE","FALSE","America/Denver"
-"80535","40.7334","-105.18355","Laporte","CO","Colorado","TRUE","","2596","22.6","08069","Larimer","{""08069"": ""100""}","Larimer","08069","FALSE","FALSE","America/Denver"
-"80536","40.87003","-105.37666","Livermore","CO","Colorado","TRUE","","1894","2.0","08069","Larimer","{""08069"": ""100""}","Larimer","08069","FALSE","FALSE","America/Denver"
-"80537","40.37543","-105.1829","Loveland","CO","Colorado","TRUE","","43583","158.8","08069","Larimer","{""08069"": ""99.66"", ""08123"": ""0.34""}","Larimer|Weld","08069|08123","FALSE","FALSE","America/Denver"
-"80538","40.47885","-105.17397","Loveland","CO","Colorado","TRUE","","49258","176.1","08069","Larimer","{""08069"": ""100""}","Larimer","08069","FALSE","FALSE","America/Denver"
-"80540","40.24191","-105.38334","Lyons","CO","Colorado","TRUE","","4576","11.2","08013","Boulder","{""08013"": ""65.68"", ""08069"": ""34.32""}","Boulder|Larimer","08013|08069","FALSE","FALSE","America/Denver"
-"80542","40.23473","-104.99937","Mead","CO","Colorado","TRUE","","4918","211.8","08123","Weld","{""08123"": ""100""}","Weld","08123","FALSE","FALSE","America/Denver"
-"80543","40.34565","-104.85143","Milliken","CO","Colorado","TRUE","","7344","89.9","08123","Weld","{""08123"": ""100""}","Weld","08123","FALSE","FALSE","America/Denver"
-"80544","40.10345","-105.17108","Niwot","CO","Colorado","TRUE","","117","920.3","08013","Boulder","{""08013"": ""100""}","Boulder","08013","FALSE","FALSE","America/Denver"
-"80545","40.86593","-105.68927","Red Feather Lakes","CO","Colorado","TRUE","","938","1.3","08069","Larimer","{""08069"": ""100""}","Larimer","08069","FALSE","FALSE","America/Denver"
-"80546","40.52522","-104.8497","Severance","CO","Colorado","TRUE","","232","1170.1","08123","Weld","{""08123"": ""100""}","Weld","08123","FALSE","FALSE","America/Denver"
-"80547","40.52499","-104.96359","Timnath","CO","Colorado","TRUE","","2574","325.5","08069","Larimer","{""08069"": ""100""}","Larimer","08069","FALSE","FALSE","America/Denver"
-"80549","40.85312","-105.04552","Wellington","CO","Colorado","TRUE","","12135","22.9","08069","Larimer","{""08069"": ""97.34"", ""08123"": ""2.66""}","Larimer|Weld","08069|08123","FALSE","FALSE","America/Denver"
-"80550","40.48095","-104.90024","Windsor","CO","Colorado","TRUE","","30519","221.0","08123","Weld","{""08123"": ""86.83"", ""08069"": ""13.17""}","Weld|Larimer","08123|08069","FALSE","FALSE","America/Denver"
-"80601","39.96254","-104.80879","Brighton","CO","Colorado","TRUE","","40766","587.3","08001","Adams","{""08001"": ""100""}","Adams","08001","FALSE","FALSE","America/Denver"
-"80602","39.96364","-104.90721","Brighton","CO","Colorado","TRUE","","36262","465.5","08001","Adams","{""08001"": ""100""}","Adams","08001","FALSE","FALSE","America/Denver"
-"80603","39.98259","-104.73715","Brighton","CO","Colorado","TRUE","","13935","67.0","08123","Weld","{""08123"": ""59.52"", ""08001"": ""40.48""}","Weld|Adams","08123|08001","FALSE","FALSE","America/Denver"
-"80610","40.66737","-104.59555","Ault","CO","Colorado","TRUE","","3410","7.8","08123","Weld","{""08123"": ""100""}","Weld","08123","FALSE","FALSE","America/Denver"
-"80611","40.62306","-104.28168","Briggsdale","CO","Colorado","TRUE","","1181","1.2","08123","Weld","{""08123"": ""100""}","Weld","08123","FALSE","FALSE","America/Denver"
-"80612","40.8798","-104.86665","Carr","CO","Colorado","TRUE","","315","0.7","08123","Weld","{""08123"": ""74.19"", ""08069"": ""25.81""}","Weld|Larimer","08123|08069","FALSE","FALSE","America/Denver"
-"80615","40.54556","-104.64418","Eaton","CO","Colorado","TRUE","","8291","30.4","08123","Weld","{""08123"": ""100""}","Weld","08123","FALSE","FALSE","America/Denver"
-"80620","40.37451","-104.71701","Evans","CO","Colorado","TRUE","","19622","1147.5","08123","Weld","{""08123"": ""100""}","Weld","08123","FALSE","FALSE","America/Denver"
-"80621","40.10796","-104.80121","Fort Lupton","CO","Colorado","TRUE","","12762","38.7","08123","Weld","{""08123"": ""100""}","Weld","08123","FALSE","FALSE","America/Denver"
-"80622","40.53776","-104.4585","Galeton","CO","Colorado","TRUE","","170","5.0","08123","Weld","{""08123"": ""100""}","Weld","08123","FALSE","FALSE","America/Denver"
-"80623","40.28536","-104.78252","Gilcrest","CO","Colorado","TRUE","","938","544.7","08123","Weld","{""08123"": ""100""}","Weld","08123","FALSE","FALSE","America/Denver"
-"80624","40.48537","-104.49928","Gill","CO","Colorado","TRUE","","1132","13.9","08123","Weld","{""08123"": ""100""}","Weld","08123","FALSE","FALSE","America/Denver"
-"80631","40.44141","-104.6763","Greeley","CO","Colorado","TRUE","","55872","210.6","08123","Weld","{""08123"": ""100""}","Weld","08123","FALSE","FALSE","America/Denver"
-"80634","40.40277","-104.7925","Greeley","CO","Colorado","TRUE","","59702","618.7","08123","Weld","{""08123"": ""100""}","Weld","08123","FALSE","FALSE","America/Denver"
-"80640","39.88544","-104.88215","Henderson","CO","Colorado","TRUE","","12991","395.1","08001","Adams","{""08001"": ""100""}","Adams","08001","FALSE","FALSE","America/Denver"
-"80642","40.04671","-104.61521","Hudson","CO","Colorado","TRUE","","5468","22.2","08123","Weld","{""08123"": ""79.04"", ""08001"": ""20.96""}","Weld|Adams","08123|08001","FALSE","FALSE","America/Denver"
-"80643","40.11396","-104.47712","Keenesburg","CO","Colorado","TRUE","","3947","7.3","08123","Weld","{""08123"": ""87.51"", ""08001"": ""12.49""}","Weld|Adams","08123|08001","FALSE","FALSE","America/Denver"
-"80644","40.37751","-104.43846","Kersey","CO","Colorado","TRUE","","3121","7.6","08123","Weld","{""08123"": ""100""}","Weld","08123","FALSE","FALSE","America/Denver"
-"80645","40.28354","-104.58073","La Salle","CO","Colorado","TRUE","","4996","14.3","08123","Weld","{""08123"": ""100""}","Weld","08123","FALSE","FALSE","America/Denver"
-"80648","40.75506","-104.7396","Nunn","CO","Colorado","TRUE","","1495","3.8","08123","Weld","{""08123"": ""100""}","Weld","08123","FALSE","FALSE","America/Denver"
-"80649","40.37925","-104.17672","Orchard","CO","Colorado","TRUE","","358","0.8","08087","Morgan","{""08087"": ""58.86"", ""08123"": ""41.14""}","Morgan|Weld","08087|08123","FALSE","FALSE","America/Denver"
-"80650","40.64655","-104.7798","Pierce","CO","Colorado","TRUE","","1508","11.5","08123","Weld","{""08123"": ""100""}","Weld","08123","FALSE","FALSE","America/Denver"
-"80651","40.23685","-104.81557","Platteville","CO","Colorado","TRUE","","4284","17.4","08123","Weld","{""08123"": ""100""}","Weld","08123","FALSE","FALSE","America/Denver"
-"80652","40.11123","-104.28012","Roggen","CO","Colorado","TRUE","","584","1.2","08123","Weld","{""08123"": ""100""}","Weld","08123","FALSE","FALSE","America/Denver"
-"80653","40.38844","-103.97814","Weldona","CO","Colorado","TRUE","","774","2.4","08087","Morgan","{""08087"": ""100""}","Morgan","08087","FALSE","FALSE","America/Denver"
-"80654","40.13618","-104.07484","Wiggins","CO","Colorado","TRUE","","2668","4.5","08087","Morgan","{""08087"": ""98.13"", ""08001"": ""1.27"", ""08123"": ""0.59""}","Morgan|Adams|Weld","08087|08001|08123","FALSE","FALSE","America/Denver"
-"80701","40.16995","-103.82645","Fort Morgan","CO","Colorado","TRUE","","15858","10.1","08087","Morgan","{""08087"": ""99.67"", ""08001"": ""0.33""}","Morgan|Adams","08087|08001","FALSE","FALSE","America/Denver"
-"80705","40.27024","-103.82927","Log Lane Village","CO","Colorado","TRUE","","1276","1812.1","08087","Morgan","{""08087"": ""100""}","Morgan","08087","FALSE","FALSE","America/Denver"
-"80720","40.0821","-103.21274","Akron","CO","Colorado","TRUE","","2725","1.1","08121","Washington","{""08121"": ""100""}","Washington","08121","FALSE","FALSE","America/Denver"
-"80721","40.68965","-102.15394","Amherst","CO","Colorado","TRUE","","264","1.2","08095","Phillips","{""08095"": ""100""}","Phillips","08095","FALSE","FALSE","America/Denver"
-"80722","40.5082","-103.27497","Atwood","CO","Colorado","TRUE","","419","4.7","08075","Logan","{""08075"": ""100""}","Logan","08075","FALSE","FALSE","America/Denver"
-"80723","40.15002","-103.57075","Brush","CO","Colorado","TRUE","","7180","9.5","08087","Morgan","{""08087"": ""99.85"", ""08121"": ""0.15""}","Morgan|Washington","08087|08121","FALSE","FALSE","America/Denver"
-"80726","40.90626","-102.79085","Crook","CO","Colorado","TRUE","","541","1.3","08075","Logan","{""08075"": ""100""}","Logan","08075","FALSE","FALSE","America/Denver"
-"80727","40.06044","-102.5039","Eckley","CO","Colorado","TRUE","","552","1.0","08125","Yuma","{""08125"": ""100""}","Yuma","08125","FALSE","FALSE","America/Denver"
-"80728","40.64497","-102.87388","Fleming","CO","Colorado","TRUE","","1060","1.1","08075","Logan","{""08075"": ""100""}","Logan","08075","FALSE","FALSE","America/Denver"
-"80729","40.87932","-104.26502","Grover","CO","Colorado","TRUE","","682","0.4","08123","Weld","{""08123"": ""100""}","Weld","08123","FALSE","FALSE","America/Denver"
-"80731","40.59618","-102.60413","Haxtun","CO","Colorado","TRUE","","1233","1.3","08095","Phillips","{""08095"": ""88.35"", ""08075"": ""9.37"", ""08125"": ""1.41"", ""08115"": ""0.87""}","Phillips|Logan|Yuma|Sedgwick","08095|08075|08125|08115","FALSE","FALSE","America/Denver"
-"80733","40.3707","-103.45197","Hillrose","CO","Colorado","TRUE","","496","6.1","08087","Morgan","{""08087"": ""75.61"", ""08121"": ""24.39""}","Morgan|Washington","08087|08121","FALSE","FALSE","America/Denver"
-"80734","40.51933","-102.29363","Holyoke","CO","Colorado","TRUE","","3044","2.4","08095","Phillips","{""08095"": ""96.52"", ""08125"": ""3.48""}","Phillips|Yuma","08095|08125","FALSE","FALSE","America/Denver"
-"80735","39.71567","-102.27253","Idalia","CO","Colorado","TRUE","","421","0.6","08125","Yuma","{""08125"": ""100""}","Yuma","08125","FALSE","FALSE","America/Denver"
-"80736","40.81135","-103.03547","Iliff","CO","Colorado","TRUE","","524","1.8","08075","Logan","{""08075"": ""100""}","Logan","08075","FALSE","FALSE","America/Denver"
-"80737","40.87971","-102.18508","Julesburg","CO","Colorado","TRUE","","1679","2.7","08115","Sedgwick","{""08115"": ""100""}","Sedgwick","08115","FALSE","FALSE","America/Denver"
-"80740","39.73604","-103.38471","Lindon","CO","Colorado","TRUE","","103","0.2","08121","Washington","{""08121"": ""100""}","Washington","08121","FALSE","FALSE","America/Denver"
-"80741","40.57082","-103.4719","Merino","CO","Colorado","TRUE","","897","1.5","08075","Logan","{""08075"": ""89.63"", ""08121"": ""7.81"", ""08087"": ""2.57""}","Logan|Washington|Morgan","08075|08121|08087","FALSE","FALSE","America/Denver"
-"80742","40.74922","-103.82828","New Raymer","CO","Colorado","TRUE","","207","0.2","08123","Weld","{""08123"": ""100""}","Weld","08123","FALSE","FALSE","America/Denver"
-"80743","40.20086","-102.95113","Otis","CO","Colorado","TRUE","","1137","0.9","08121","Washington","{""08121"": ""100""}","Washington","08121","FALSE","FALSE","America/Denver"
-"80744","40.87797","-102.39011","Ovid","CO","Colorado","TRUE","","410","1.2","08115","Sedgwick","{""08115"": ""100""}","Sedgwick","08115","FALSE","FALSE","America/Denver"
-"80745","40.90155","-103.39715","Padroni","CO","Colorado","TRUE","","243","0.4","08075","Logan","{""08075"": ""100""}","Logan","08075","FALSE","FALSE","America/Denver"
-"80746","40.60957","-102.46604","Paoli","CO","Colorado","TRUE","","75","112.0","08095","Phillips","{""08095"": ""100""}","Phillips","08095","FALSE","FALSE","America/Denver"
-"80747","40.94168","-103.09136","Peetz","CO","Colorado","TRUE","","357","0.8","08075","Logan","{""08075"": ""100""}","Logan","08075","FALSE","FALSE","America/Denver"
-"80749","40.87489","-102.55734","Sedgwick","CO","Colorado","TRUE","","233","0.5","08115","Sedgwick","{""08115"": ""100""}","Sedgwick","08115","FALSE","FALSE","America/Denver"
-"80750","40.41084","-103.60404","Snyder","CO","Colorado","TRUE","","261","0.8","08087","Morgan","{""08087"": ""100""}","Morgan","08087","FALSE","FALSE","America/Denver"
-"80751","40.6371","-103.23146","Sterling","CO","Colorado","TRUE","","18318","15.1","08075","Logan","{""08075"": ""100""}","Logan","08075","FALSE","FALSE","America/Denver"
-"80754","40.72065","-103.66402","Stoneham","CO","Colorado","TRUE","","189","0.3","08123","Weld","{""08123"": ""100""}","Weld","08123","FALSE","FALSE","America/Denver"
-"80755","39.90933","-102.35404","Vernon","CO","Colorado","TRUE","","101","0.4","08125","Yuma","{""08125"": ""100""}","Yuma","08125","FALSE","FALSE","America/Denver"
-"80757","39.79174","-103.58259","Woodrow","CO","Colorado","TRUE","","194","0.2","08121","Washington","{""08121"": ""100""}","Washington","08121","FALSE","FALSE","America/Denver"
-"80758","40.11401","-102.20089","Wray","CO","Colorado","TRUE","","3657","2.0","08125","Yuma","{""08125"": ""99.89"", ""31057"": ""0.11""}","Yuma|Dundy","08125|31057","FALSE","FALSE","America/Denver"
-"80759","40.13526","-102.68387","Yuma","CO","Colorado","TRUE","","4638","2.8","08125","Yuma","{""08125"": ""98.51"", ""08121"": ""1.49""}","Yuma|Washington","08125|08121","FALSE","FALSE","America/Denver"
-"80801","39.73261","-103.10732","Anton","CO","Colorado","TRUE","","140","0.3","08121","Washington","{""08121"": ""100""}","Washington","08121","FALSE","FALSE","America/Denver"
-"80802","38.8422","-102.17357","Arapahoe","CO","Colorado","TRUE","","268","0.3","08017","Cheyenne","{""08017"": ""100""}","Cheyenne","08017","FALSE","FALSE","America/Denver"
-"80804","39.35189","-103.26141","Arriba","CO","Colorado","TRUE","","287","0.3","08073","Lincoln","{""08073"": ""100""}","Lincoln","08073","FALSE","FALSE","America/Denver"
-"80805","39.31229","-102.44174","Bethune","CO","Colorado","TRUE","","437","1.0","08063","Kit Carson","{""08063"": ""100""}","Kit Carson","08063","FALSE","FALSE","America/Denver"
-"80807","39.31882","-102.22605","Burlington","CO","Colorado","TRUE","","4576","2.4","08063","Kit Carson","{""08063"": ""99.3"", ""08125"": ""0.7""}","Kit Carson|Yuma","08063|08125","FALSE","FALSE","America/Denver"
-"80808","38.99193","-104.30271","Calhan","CO","Colorado","TRUE","","5873","6.4","08041","El Paso","{""08041"": ""96.65"", ""08039"": ""3.35""}","El Paso|Elbert","08041|08039","FALSE","FALSE","America/Denver"
-"80809","38.86842","-104.99695","Cascade","CO","Colorado","TRUE","","1102","8.4","08041","El Paso","{""08041"": ""100""}","El Paso","08041","FALSE","FALSE","America/Denver"
-"80810","38.82309","-102.45986","Cheyenne Wells","CO","Colorado","TRUE","","1241","0.9","08017","Cheyenne","{""08017"": ""100""}","Cheyenne","08017","FALSE","FALSE","America/Denver"
-"80812","39.68252","-102.89282","Cope","CO","Colorado","TRUE","","251","0.7","08121","Washington","{""08121"": ""100""}","Washington","08121","FALSE","FALSE","America/Denver"
-"80813","38.76765","-105.0998","Cripple Creek","CO","Colorado","TRUE","","1411","4.9","08119","Teller","{""08119"": ""100""}","Teller","08119","FALSE","FALSE","America/Denver"
-"80814","38.95729","-105.18037","Divide","CO","Colorado","TRUE","","3570","14.0","08119","Teller","{""08119"": ""100""}","Teller","08119","FALSE","FALSE","America/Denver"
-"80815","39.39199","-103.0784","Flagler","CO","Colorado","TRUE","","784","0.6","08063","Kit Carson","{""08063"": ""90.01"", ""08121"": ""9.99""}","Kit Carson|Washington","08063|08121","FALSE","FALSE","America/Denver"
-"80816","38.85459","-105.31204","Florissant","CO","Colorado","TRUE","","6371","13.3","08119","Teller","{""08119"": ""91.24"", ""08093"": ""8.76""}","Teller|Park","08119|08093","FALSE","FALSE","America/Denver"
-"80817","38.63281","-104.68173","Fountain","CO","Colorado","TRUE","","30635","187.4","08041","El Paso","{""08041"": ""100""}","El Paso","08041","FALSE","FALSE","America/Denver"
-"80818","39.3962","-103.47462","Genoa","CO","Colorado","TRUE","","412","0.6","08073","Lincoln","{""08073"": ""95.34"", ""08121"": ""4.66""}","Lincoln|Washington","08073|08121","FALSE","FALSE","America/Denver"
-"80819","38.96088","-105.01371","Green Mountain Falls","CO","Colorado","TRUE","","784","36.6","08041","El Paso","{""08041"": ""96.96"", ""08119"": ""3.04""}","El Paso|Teller","08041|08119","FALSE","FALSE","America/Denver"
-"80820","38.78833","-105.57777","Guffey","CO","Colorado","TRUE","","882","1.2","08093","Park","{""08093"": ""100""}","Park","08093","FALSE","FALSE","America/Denver"
-"80821","38.96192","-103.40969","Hugo","CO","Colorado","TRUE","","1101","0.5","08073","Lincoln","{""08073"": ""98.35"", ""08017"": ""1.65""}","Lincoln|Cheyenne","08073|08017","FALSE","FALSE","America/Denver"
-"80822","39.70975","-102.67257","Joes","CO","Colorado","TRUE","","243","0.4","08125","Yuma","{""08125"": ""100""}","Yuma","08125","FALSE","FALSE","America/Denver"
-"80823","38.65557","-103.41512","Karval","CO","Colorado","TRUE","","198","0.2","08073","Lincoln","{""08073"": ""100""}","Lincoln","08073","FALSE","FALSE","America/Denver"
-"80824","39.64665","-102.51712","Kirk","CO","Colorado","TRUE","","203","0.7","08125","Yuma","{""08125"": ""100""}","Yuma","08125","FALSE","FALSE","America/Denver"
-"80825","38.80022","-102.84916","Kit Carson","CO","Colorado","TRUE","","461","0.3","08017","Cheyenne","{""08017"": ""100""}","Cheyenne","08017","FALSE","FALSE","America/Denver"
-"80827","39.06015","-105.46815","Lake George","CO","Colorado","TRUE","","696","1.1","08093","Park","{""08093"": ""69.03"", ""08119"": ""30.97""}","Park|Teller","08093|08119","FALSE","FALSE","America/Denver"
-"80828","39.34789","-103.72898","Limon","CO","Colorado","TRUE","","3605","2.6","08073","Lincoln","{""08073"": ""94.46"", ""08039"": ""5.54""}","Lincoln|Elbert","08073|08039","FALSE","FALSE","America/Denver"
-"80829","38.82807","-104.9358","Manitou Springs","CO","Colorado","TRUE","","6138","109.9","08041","El Paso","{""08041"": ""100""}","El Paso","08041","FALSE","FALSE","America/Denver"
-"80830","39.12083","-103.89061","Matheson","CO","Colorado","TRUE","","189","0.3","08039","Elbert","{""08039"": ""100""}","Elbert","08039","FALSE","FALSE","America/Denver"
-"80831","38.99667","-104.50606","Peyton","CO","Colorado","TRUE","","25525","51.9","08041","El Paso","{""08041"": ""99.53"", ""08039"": ""0.47""}","El Paso|Elbert","08041|08039","FALSE","FALSE","America/Denver"
-"80832","39.01344","-104.00738","Ramah","CO","Colorado","TRUE","","732","1.2","08041","El Paso","{""08041"": ""71.32"", ""08039"": ""27.78"", ""08073"": ""0.9""}","El Paso|Elbert|Lincoln","08041|08039|08073","FALSE","FALSE","America/Denver"
-"80833","38.74026","-103.93414","Rush","CO","Colorado","TRUE","","686","0.6","08041","El Paso","{""08041"": ""53.18"", ""08073"": ""43.5"", ""08039"": ""3.32""}","El Paso|Lincoln|Elbert","08041|08073|08039","FALSE","FALSE","America/Denver"
-"80834","39.28407","-102.88035","Seibert","CO","Colorado","TRUE","","284","0.4","08063","Kit Carson","{""08063"": ""100""}","Kit Carson","08063","FALSE","FALSE","America/Denver"
-"80835","39.20787","-104.07995","Simla","CO","Colorado","TRUE","","971","2.6","08039","Elbert","{""08039"": ""100""}","Elbert","08039","FALSE","FALSE","America/Denver"
-"80836","39.29659","-102.58246","Stratton","CO","Colorado","TRUE","","1157","1.2","08063","Kit Carson","{""08063"": ""100""}","Kit Carson","08063","FALSE","FALSE","America/Denver"
-"80840","38.99467","-104.85708","Usaf Academy","CO","Colorado","TRUE","","6512","87.0","08041","El Paso","{""08041"": ""100""}","El Paso","08041","FALSE","FALSE","America/Denver"
-"80860","38.6911","-105.08655","Victor","CO","Colorado","TRUE","","566","2.9","08119","Teller","{""08119"": ""100""}","Teller","08119","FALSE","FALSE","America/Denver"
-"80861","39.34267","-102.7407","Vona","CO","Colorado","TRUE","","288","0.4","08063","Kit Carson","{""08063"": ""100""}","Kit Carson","08063","FALSE","FALSE","America/Denver"
-"80862","38.88625","-103.06084","Wild Horse","CO","Colorado","TRUE","","48","0.1","08017","Cheyenne","{""08017"": ""100""}","Cheyenne","08017","FALSE","FALSE","America/Denver"
-"80863","39.02833","-105.10805","Woodland Park","CO","Colorado","TRUE","","13034","40.6","08119","Teller","{""08119"": ""100""}","Teller","08119","FALSE","FALSE","America/Denver"
-"80864","38.69775","-104.18675","Yoder","CO","Colorado","TRUE","","1489","2.3","08041","El Paso","{""08041"": ""100""}","El Paso","08041","FALSE","FALSE","America/Denver"
-"80902","38.68317","-104.80786","Colorado Springs","CO","Colorado","TRUE","","12443","335.0","08041","El Paso","{""08041"": ""100""}","El Paso","08041","FALSE","FALSE","America/Denver"
-"80903","38.83137","-104.81523","Colorado Springs","CO","Colorado","TRUE","","16248","1296.9","08041","El Paso","{""08041"": ""100""}","El Paso","08041","FALSE","FALSE","America/Denver"
-"80904","38.86059","-104.87195","Colorado Springs","CO","Colorado","TRUE","","20168","816.9","08041","El Paso","{""08041"": ""100""}","El Paso","08041","FALSE","FALSE","America/Denver"
-"80905","38.81785","-104.83682","Colorado Springs","CO","Colorado","TRUE","","16237","1263.9","08041","El Paso","{""08041"": ""100""}","El Paso","08041","FALSE","FALSE","America/Denver"
-"80906","38.76566","-104.8716","Colorado Springs","CO","Colorado","TRUE","","37608","311.2","08041","El Paso","{""08041"": ""100""}","El Paso","08041","FALSE","FALSE","America/Denver"
-"80907","38.87828","-104.82742","Colorado Springs","CO","Colorado","TRUE","","29247","1142.0","08041","El Paso","{""08041"": ""100""}","El Paso","08041","FALSE","FALSE","America/Denver"
-"80908","39.04771","-104.68949","Colorado Springs","CO","Colorado","TRUE","","18505","74.9","08041","El Paso","{""08041"": ""100""}","El Paso","08041","FALSE","FALSE","America/Denver"
-"80909","38.85269","-104.77573","Colorado Springs","CO","Colorado","TRUE","","38382","1769.0","08041","El Paso","{""08041"": ""100""}","El Paso","08041","FALSE","FALSE","America/Denver"
-"80910","38.81252","-104.77433","Colorado Springs","CO","Colorado","TRUE","","31445","2098.3","08041","El Paso","{""08041"": ""100""}","El Paso","08041","FALSE","FALSE","America/Denver"
-"80911","38.75329","-104.72211","Colorado Springs","CO","Colorado","TRUE","","36255","1159.1","08041","El Paso","{""08041"": ""100""}","El Paso","08041","FALSE","FALSE","America/Denver"
-"80913","38.70279","-104.77236","Colorado Springs","CO","Colorado","TRUE","","3728","54.6","08041","El Paso","{""08041"": ""100""}","El Paso","08041","FALSE","FALSE","America/Denver"
-"80914","38.82397","-104.70425","Colorado Springs","CO","Colorado","TRUE","","455","250.8","08041","El Paso","{""08041"": ""100""}","El Paso","08041","FALSE","FALSE","America/Denver"
-"80915","38.85232","-104.7158","Colorado Springs","CO","Colorado","TRUE","","21548","1069.0","08041","El Paso","{""08041"": ""100""}","El Paso","08041","FALSE","FALSE","America/Denver"
-"80916","38.8052","-104.71311","Colorado Springs","CO","Colorado","TRUE","","41018","921.7","08041","El Paso","{""08041"": ""100""}","El Paso","08041","FALSE","FALSE","America/Denver"
-"80917","38.88606","-104.74543","Colorado Springs","CO","Colorado","TRUE","","31056","1839.1","08041","El Paso","{""08041"": ""100""}","El Paso","08041","FALSE","FALSE","America/Denver"
-"80918","38.91153","-104.78022","Colorado Springs","CO","Colorado","TRUE","","48965","1578.2","08041","El Paso","{""08041"": ""100""}","El Paso","08041","FALSE","FALSE","America/Denver"
-"80919","38.92713","-104.85417","Colorado Springs","CO","Colorado","TRUE","","28039","753.6","08041","El Paso","{""08041"": ""100""}","El Paso","08041","FALSE","FALSE","America/Denver"
-"80920","38.95757","-104.77078","Colorado Springs","CO","Colorado","TRUE","","40016","1222.7","08041","El Paso","{""08041"": ""100""}","El Paso","08041","FALSE","FALSE","America/Denver"
-"80921","39.0056","-104.91017","Colorado Springs","CO","Colorado","TRUE","","24087","106.9","08041","El Paso","{""08041"": ""100""}","El Paso","08041","FALSE","FALSE","America/Denver"
-"80922","38.89066","-104.70059","Colorado Springs","CO","Colorado","TRUE","","29417","1898.1","08041","El Paso","{""08041"": ""100""}","El Paso","08041","FALSE","FALSE","America/Denver"
-"80923","38.92694","-104.71472","Colorado Springs","CO","Colorado","TRUE","","30283","1710.3","08041","El Paso","{""08041"": ""100""}","El Paso","08041","FALSE","FALSE","America/Denver"
-"80924","38.96751","-104.7211","Colorado Springs","CO","Colorado","TRUE","","10138","717.8","08041","El Paso","{""08041"": ""100""}","El Paso","08041","FALSE","FALSE","America/Denver"
-"80925","38.7507","-104.65042","Colorado Springs","CO","Colorado","TRUE","","12342","201.7","08041","El Paso","{""08041"": ""100""}","El Paso","08041","FALSE","FALSE","America/Denver"
-"80926","38.64579","-104.91865","Colorado Springs","CO","Colorado","TRUE","","1628","9.7","08041","El Paso","{""08041"": ""94.73"", ""08043"": ""5.27""}","El Paso|Fremont","08041|08043","FALSE","FALSE","America/Denver"
-"80927","38.92862","-104.65804","Colorado Springs","CO","Colorado","TRUE","","4905","432.6","08041","El Paso","{""08041"": ""100""}","El Paso","08041","FALSE","FALSE","America/Denver"
-"80928","38.64912","-104.452","Colorado Springs","CO","Colorado","TRUE","","1268","1.5","08041","El Paso","{""08041"": ""100""}","El Paso","08041","FALSE","FALSE","America/Denver"
-"80929","38.82464","-104.62694","Colorado Springs","CO","Colorado","TRUE","","97","1.7","08041","El Paso","{""08041"": ""100""}","El Paso","08041","FALSE","FALSE","America/Denver"
-"80930","38.81433","-104.50237","Colorado Springs","CO","Colorado","TRUE","","1928","20.5","08041","El Paso","{""08041"": ""100""}","El Paso","08041","FALSE","FALSE","America/Denver"
-"80938","38.90481","-104.66327","Colorado Springs","CO","Colorado","TRUE","","100","11.6","08041","El Paso","{""08041"": ""100""}","El Paso","08041","FALSE","FALSE","America/Denver"
-"80939","38.87791","-104.67732","Colorado Springs","CO","Colorado","TRUE","","0","0.0","08041","El Paso","{""08041"": ""0""}","El Paso","08041","FALSE","FALSE","America/Denver"
-"80951","38.8881","-104.65566","Colorado Springs","CO","Colorado","TRUE","","4456","369.6","08041","El Paso","{""08041"": ""100""}","El Paso","08041","FALSE","FALSE","America/Denver"
-"81001","38.29452","-104.53378","Pueblo","CO","Colorado","TRUE","","30169","334.3","08101","Pueblo","{""08101"": ""100""}","Pueblo","08101","FALSE","FALSE","America/Denver"
-"81003","38.27927","-104.63144","Pueblo","CO","Colorado","TRUE","","14797","711.1","08101","Pueblo","{""08101"": ""100""}","Pueblo","08101","FALSE","FALSE","America/Denver"
-"81004","38.04123","-104.71645","Pueblo","CO","Colorado","TRUE","","26581","63.0","08101","Pueblo","{""08101"": ""100""}","Pueblo","08101","FALSE","FALSE","America/Denver"
-"81005","38.19777","-104.84172","Pueblo","CO","Colorado","TRUE","","31963","53.6","08101","Pueblo","{""08101"": ""100""}","Pueblo","08101","FALSE","FALSE","America/Denver"
-"81006","38.23049","-104.50446","Pueblo","CO","Colorado","TRUE","","12081","82.2","08101","Pueblo","{""08101"": ""100""}","Pueblo","08101","FALSE","FALSE","America/Denver"
-"81007","38.3551","-104.77787","Pueblo","CO","Colorado","TRUE","","31849","83.1","08101","Pueblo","{""08101"": ""100""}","Pueblo","08101","FALSE","FALSE","America/Denver"
-"81008","38.43687","-104.61754","Pueblo","CO","Colorado","TRUE","","11632","33.5","08101","Pueblo","{""08101"": ""99.28"", ""08041"": ""0.72""}","Pueblo|El Paso","08101|08041","FALSE","FALSE","America/Denver"
-"81019","37.94406","-104.84116","Colorado City","CO","Colorado","TRUE","","1674","65.1","08101","Pueblo","{""08101"": ""100""}","Pueblo","08101","FALSE","FALSE","America/Denver"
-"81020","37.53092","-104.52319","Aguilar","CO","Colorado","TRUE","","902","0.6","08071","Las Animas","{""08071"": ""100""}","Las Animas","08071","FALSE","FALSE","America/Denver"
-"81021","38.37715","-103.37273","Arlington","CO","Colorado","TRUE","","44","0.1","08061","Kiowa","{""08061"": ""100""}","Kiowa","08061","FALSE","FALSE","America/Denver"
-"81022","38.04424","-104.4323","Avondale","CO","Colorado","TRUE","","1624","1.5","08101","Pueblo","{""08101"": ""100""}","Pueblo","08101","FALSE","FALSE","America/Denver"
-"81023","38.06292","-104.95109","Beulah","CO","Colorado","TRUE","","1345","4.1","08101","Pueblo","{""08101"": ""100""}","Pueblo","08101","FALSE","FALSE","America/Denver"
-"81024","37.24935","-104.73478","Boncarbo","CO","Colorado","TRUE","","231","2.1","08071","Las Animas","{""08071"": ""100""}","Las Animas","08071","FALSE","FALSE","America/Denver"
-"81025","38.35828","-104.26799","Boone","CO","Colorado","TRUE","","741","0.5","08101","Pueblo","{""08101"": ""100""}","Pueblo","08101","FALSE","FALSE","America/Denver"
-"81027","37.18946","-103.79991","Branson","CO","Colorado","TRUE","","169","0.1","08071","Las Animas","{""08071"": ""100""}","Las Animas","08071","FALSE","FALSE","America/Denver"
-"81029","37.08496","-102.48255","Campo","CO","Colorado","TRUE","","314","0.2","08009","Baca","{""08009"": ""100""}","Baca","08009","FALSE","FALSE","America/Denver"
-"81030","38.10257","-103.51925","Cheraw","CO","Colorado","TRUE","","161","164.9","08089","Otero","{""08089"": ""100""}","Otero","08089","FALSE","FALSE","America/Denver"
-"81033","38.19488","-103.86133","Crowley","CO","Colorado","TRUE","","195","232.7","08025","Crowley","{""08025"": ""100""}","Crowley","08025","FALSE","FALSE","America/Denver"
-"81036","38.42386","-102.78361","Eads","CO","Colorado","TRUE","","1081","0.6","08061","Kiowa","{""08061"": ""100""}","Kiowa","08061","FALSE","FALSE","America/Denver"
-"81038","38.07927","-103.14042","Fort Lyon","CO","Colorado","TRUE","","0","0.0","08011","Bent","{""08011"": ""100""}","Bent","08011","FALSE","FALSE","America/Denver"
-"81039","37.94067","-104.08167","Fowler","CO","Colorado","TRUE","","1642","1.1","08089","Otero","{""08089"": ""87.34"", ""08101"": ""10.13"", ""08025"": ""2.53""}","Otero|Pueblo|Crowley","08089|08101|08025","FALSE","FALSE","America/Denver"
-"81040","37.78545","-105.2308","Gardner","CO","Colorado","TRUE","","295","0.2","08055","Huerfano","{""08055"": ""100""}","Huerfano","08055","FALSE","FALSE","America/Denver"
-"81041","37.875","-102.38286","Granada","CO","Colorado","TRUE","","811","0.7","08099","Prowers","{""08099"": ""100""}","Prowers","08099","FALSE","FALSE","America/Denver"
-"81043","38.13096","-102.22089","Hartman","CO","Colorado","TRUE","","49","13.1","08099","Prowers","{""08099"": ""100""}","Prowers","08099","FALSE","FALSE","America/Denver"
-"81044","37.90138","-102.93284","Hasty","CO","Colorado","TRUE","","311","0.4","08011","Bent","{""08011"": ""100""}","Bent","08011","FALSE","FALSE","America/Denver"
-"81045","38.47641","-103.16212","Haswell","CO","Colorado","TRUE","","51","0.1","08061","Kiowa","{""08061"": ""100""}","Kiowa","08061","FALSE","FALSE","America/Denver"
-"81047","38.01784","-102.19576","Holly","CO","Colorado","TRUE","","1473","1.0","08099","Prowers","{""08099"": ""100""}","Prowers","08099","FALSE","FALSE","America/Denver"
-"81049","37.33993","-103.37719","Kim","CO","Colorado","TRUE","","240","0.1","08071","Las Animas","{""08071"": ""100""}","Las Animas","08071","FALSE","FALSE","America/Denver"
-"81050","37.94029","-103.50553","La Junta","CO","Colorado","TRUE","","9310","6.7","08089","Otero","{""08089"": ""99.84"", ""08011"": ""0.16""}","Otero|Bent","08089|08011","FALSE","FALSE","America/Denver"
-"81052","37.92617","-102.65974","Lamar","CO","Colorado","TRUE","","9028","5.3","08099","Prowers","{""08099"": ""99.35"", ""08011"": ""0.65""}","Prowers|Bent","08099|08011","FALSE","FALSE","America/Denver"
-"81054","37.93472","-103.16646","Las Animas","CO","Colorado","TRUE","","4904","2.0","08011","Bent","{""08011"": ""99.67"", ""08009"": ""0.33""}","Bent|Baca","08011|08009","FALSE","FALSE","America/Denver"
-"81055","37.488","-105.07237","La Veta","CO","Colorado","TRUE","","1602","2.4","08055","Huerfano","{""08055"": ""100""}","Huerfano","08055","FALSE","FALSE","America/Denver"
-"81057","38.12827","-102.88066","McClave","CO","Colorado","TRUE","","391","2.9","08011","Bent","{""08011"": ""100""}","Bent","08011","FALSE","FALSE","America/Denver"
-"81058","38.09876","-103.87967","Manzanola","CO","Colorado","TRUE","","999","7.4","08089","Otero","{""08089"": ""91.62"", ""08025"": ""8.38""}","Otero|Crowley","08089|08025","FALSE","FALSE","America/Denver"
-"81059","37.51074","-104.01643","Model","CO","Colorado","TRUE","","584","0.2","08071","Las Animas","{""08071"": ""95.39"", ""08089"": ""4.61""}","Las Animas|Otero","08071|08089","FALSE","FALSE","America/Denver"
-"81062","38.29272","-103.94951","Olney Springs","CO","Colorado","TRUE","","1618","2.6","08025","Crowley","{""08025"": ""100""}","Crowley","08025","FALSE","FALSE","America/Denver"
-"81063","38.44559","-103.78268","Ordway","CO","Colorado","TRUE","","3151","3.0","08025","Crowley","{""08025"": ""98.35"", ""08073"": ""1.65""}","Crowley|Lincoln","08025|08073","FALSE","FALSE","America/Denver"
-"81064","37.23913","-102.98884","Pritchett","CO","Colorado","TRUE","","279","0.2","08009","Baca","{""08009"": ""92.2"", ""08071"": ""7.8""}","Baca|Las Animas","08009|08071","FALSE","FALSE","America/Denver"
-"81067","37.93801","-103.7839","Rocky Ford","CO","Colorado","TRUE","","5566","7.4","08089","Otero","{""08089"": ""100""}","Otero","08089","FALSE","FALSE","America/Denver"
-"81069","37.89709","-104.89695","Rye","CO","Colorado","TRUE","","2139","3.0","08101","Pueblo","{""08101"": ""83.26"", ""08055"": ""12.39"", ""08027"": ""4.34""}","Pueblo|Huerfano|Custer","08101|08055|08027","FALSE","FALSE","America/Denver"
-"81071","38.44836","-102.26642","Sheridan Lake","CO","Colorado","TRUE","","313","0.2","08061","Kiowa","{""08061"": ""100""}","Kiowa","08061","FALSE","FALSE","America/Denver"
-"81073","37.42388","-102.70954","Springfield","CO","Colorado","TRUE","","1818","1.1","08009","Baca","{""08009"": ""100""}","Baca","08009","FALSE","FALSE","America/Denver"
-"81076","38.32403","-103.60951","Sugar City","CO","Colorado","TRUE","","721","1.0","08025","Crowley","{""08025"": ""100""}","Crowley","08025","FALSE","FALSE","America/Denver"
-"81077","38.01785","-103.63067","Swink","CO","Colorado","TRUE","","781","662.7","08089","Otero","{""08089"": ""100""}","Otero","08089","FALSE","FALSE","America/Denver"
-"81081","37.06734","-104.19479","Trinchera","CO","Colorado","TRUE","","77","0.1","08071","Las Animas","{""08071"": ""100""}","Las Animas","08071","FALSE","FALSE","America/Denver"
-"81082","37.17862","-104.51613","Trinidad","CO","Colorado","TRUE","","11369","7.3","08071","Las Animas","{""08071"": ""100""}","Las Animas","08071","FALSE","FALSE","America/Denver"
-"81084","37.57727","-102.41709","Two Buttes","CO","Colorado","TRUE","","101","0.2","08009","Baca","{""08009"": ""92.7"", ""08099"": ""7.3""}","Baca|Prowers","08009|08099","FALSE","FALSE","America/Denver"
-"81087","37.36591","-102.40896","Vilas","CO","Colorado","TRUE","","136","1.3","08009","Baca","{""08009"": ""100""}","Baca","08009","FALSE","FALSE","America/Denver"
-"81089","37.65595","-104.73158","Walsenburg","CO","Colorado","TRUE","","4467","2.5","08055","Huerfano","{""08055"": ""100""}","Huerfano","08055","FALSE","FALSE","America/Denver"
-"81090","37.35668","-102.22135","Walsh","CO","Colorado","TRUE","","928","0.6","08009","Baca","{""08009"": ""100""}","Baca","08009","FALSE","FALSE","America/Denver"
-"81091","37.15008","-104.97091","Weston","CO","Colorado","TRUE","","693","0.6","08071","Las Animas","{""08071"": ""100""}","Las Animas","08071","FALSE","FALSE","America/Denver"
-"81092","38.19797","-102.74772","Wiley","CO","Colorado","TRUE","","847","3.9","08099","Prowers","{""08099"": ""79.65"", ""08011"": ""20.35""}","Prowers|Bent","08099|08011","FALSE","FALSE","America/Denver"
-"81101","37.48372","-105.82998","Alamosa","CO","Colorado","TRUE","","15153","14.3","08003","Alamosa","{""08003"": ""99.25"", ""08021"": ""0.75""}","Alamosa|Conejos","08003|08021","FALSE","FALSE","America/Denver"
-"81120","37.16424","-106.27833","Antonito","CO","Colorado","TRUE","","2271","1.0","08021","Conejos","{""08021"": ""100""}","Conejos","08021","FALSE","FALSE","America/Denver"
-"81121","37.10982","-107.43911","Arboles","CO","Colorado","TRUE","","323","2.7","08007","Archuleta","{""08007"": ""100""}","Archuleta","08007","FALSE","FALSE","America/Denver"
-"81122","37.33995","-107.47857","Bayfield","CO","Colorado","TRUE","","8798","6.7","08067","La Plata","{""08067"": ""98.3"", ""08007"": ""1.7""}","La Plata|Archuleta","08067|08007","FALSE","FALSE","America/Denver"
-"81123","37.39859","-105.56977","Blanca","CO","Colorado","TRUE","","1026","1.5","08023","Costilla","{""08023"": ""100""}","Costilla","08023","FALSE","FALSE","America/Denver"
-"81124","37.30632","-106.16065","Capulin","CO","Colorado","TRUE","","166","4.1","08021","Conejos","{""08021"": ""100""}","Conejos","08021","FALSE","FALSE","America/Denver"
-"81125","37.81704","-106.06909","Center","CO","Colorado","TRUE","","3469","5.0","08109","Saguache","{""08109"": ""80.56"", ""08105"": ""18.1"", ""08003"": ""1.33""}","Saguache|Rio Grande|Alamosa","08109|08105|08003","FALSE","FALSE","America/Denver"
-"81126","37.15556","-105.33459","Chama","CO","Colorado","TRUE","","152","3.0","08023","Costilla","{""08023"": ""100""}","Costilla","08023","FALSE","FALSE","America/Denver"
-"81128","37.06812","-106.67242","Chromo","CO","Colorado","TRUE","","109","0.2","08007","Archuleta","{""08007"": ""100""}","Archuleta","08007","FALSE","FALSE","America/Denver"
-"81129","37.10336","-106.02909","Conejos","CO","Colorado","TRUE","","65","5.9","08021","Conejos","{""08021"": ""100""}","Conejos","08021","FALSE","FALSE","America/Denver"
-"81130","37.70747","-107.01535","Creede","CO","Colorado","TRUE","","769","0.3","08079","Mineral","{""08079"": ""98.36"", ""08053"": ""1.64""}","Mineral|Hinsdale","08079|08053","FALSE","FALSE","America/Denver"
-"81131","37.87296","-105.63763","Crestone","CO","Colorado","TRUE","","1344","1.7","08109","Saguache","{""08109"": ""100""}","Saguache","08109","FALSE","FALSE","America/Denver"
-"81132","37.70747","-106.42885","Del Norte","CO","Colorado","TRUE","","3253","1.9","08105","Rio Grande","{""08105"": ""92.76"", ""08109"": ""7.24""}","Rio Grande|Saguache","08105|08109","FALSE","FALSE","America/Denver"
-"81133","37.42918","-105.31028","Fort Garland","CO","Colorado","TRUE","","1035","1.1","08023","Costilla","{""08023"": ""100""}","Costilla","08023","FALSE","FALSE","America/Denver"
-"81136","37.72493","-105.82787","Hooper","CO","Colorado","TRUE","","211","0.9","08003","Alamosa","{""08003"": ""85.06"", ""08109"": ""14.94""}","Alamosa|Saguache","08003|08109","FALSE","FALSE","America/Denver"
-"81137","37.05906","-107.61339","Ignacio","CO","Colorado","TRUE","","5891","8.9","08067","La Plata","{""08067"": ""94.24"", ""35045"": ""2.99"", ""08007"": ""2.78""}","La Plata|San Juan|Archuleta","08067|35045|08007","FALSE","FALSE","America/Denver"
-"81138","37.02646","-105.62276","Jaroso","CO","Colorado","TRUE","","45","0.8","08023","Costilla","{""08023"": ""100""}","Costilla","08023","FALSE","FALSE","America/Denver"
-"81140","37.30576","-106.12889","La Jara","CO","Colorado","TRUE","","2223","3.9","08021","Conejos","{""08021"": ""100""}","Conejos","08021","FALSE","FALSE","America/Denver"
-"81141","37.15686","-105.86358","Manassa","CO","Colorado","TRUE","","1280","11.5","08021","Conejos","{""08021"": ""100""}","Conejos","08021","FALSE","FALSE","America/Denver"
-"81143","38.04872","-105.8515","Moffat","CO","Colorado","TRUE","","782","0.9","08109","Saguache","{""08109"": ""100""}","Saguache","08109","FALSE","FALSE","America/Denver"
-"81144","37.54984","-106.15119","Monte Vista","CO","Colorado","TRUE","","7047","9.6","08105","Rio Grande","{""08105"": ""98.9"", ""08003"": ""1.1""}","Rio Grande|Alamosa","08105|08003","FALSE","FALSE","America/Denver"
-"81146","37.65746","-105.68689","Mosca","CO","Colorado","TRUE","","791","1.4","08003","Alamosa","{""08003"": ""100""}","Alamosa","08003","FALSE","FALSE","America/Denver"
-"81147","37.31914","-107.09655","Pagosa Springs","CO","Colorado","TRUE","","12587","3.6","08007","Archuleta","{""08007"": ""99.72"", ""08053"": ""0.26"", ""08079"": ""0.02""}","Archuleta|Hinsdale|Mineral","08007|08053|08079","FALSE","FALSE","America/Denver"
-"81148","37.17183","-105.98542","Romeo","CO","Colorado","TRUE","","305","504.6","08021","Conejos","{""08021"": ""100""}","Conejos","08021","FALSE","FALSE","America/Denver"
-"81149","38.08398","-106.34014","Saguache","CO","Colorado","TRUE","","815","0.4","08109","Saguache","{""08109"": ""100""}","Saguache","08109","FALSE","FALSE","America/Denver"
-"81151","37.23324","-105.70861","Sanford","CO","Colorado","TRUE","","1902","3.3","08021","Conejos","{""08021"": ""92.31"", ""08023"": ""7.69""}","Conejos|Costilla","08021|08023","FALSE","FALSE","America/Denver"
-"81152","37.1152","-105.39898","San Luis","CO","Colorado","TRUE","","1310","1.1","08023","Costilla","{""08023"": ""100""}","Costilla","08023","FALSE","FALSE","America/Denver"
-"81154","37.59503","-106.64858","South Fork","CO","Colorado","TRUE","","1022","1.5","08105","Rio Grande","{""08105"": ""95.64"", ""08079"": ""4.36""}","Rio Grande|Mineral","08105|08079","FALSE","FALSE","America/Denver"
-"81155","38.29743","-106.03192","Villa Grove","CO","Colorado","TRUE","","230","0.3","08109","Saguache","{""08109"": ""100""}","Saguache","08109","FALSE","FALSE","America/Denver"
-"81201","38.56049","-106.06482","Salida","CO","Colorado","TRUE","","9543","8.3","08015","Chaffee","{""08015"": ""98.89"", ""08043"": ""1.11""}","Chaffee|Fremont","08015|08043","FALSE","FALSE","America/Denver"
-"81210","38.82131","-106.63113","Almont","CO","Colorado","TRUE","","310","0.2","08051","Gunnison","{""08051"": ""100""}","Gunnison","08051","FALSE","FALSE","America/Denver"
-"81211","38.90712","-106.23921","Buena Vista","CO","Colorado","TRUE","","8281","6.9","08015","Chaffee","{""08015"": ""100""}","Chaffee","08015","FALSE","FALSE","America/Denver"
-"81212","38.53864","-105.38622","Canon City","CO","Colorado","TRUE","","30986","19.4","08043","Fremont","{""08043"": ""100""}","Fremont","08043","FALSE","FALSE","America/Denver"
-"81220","38.30912","-107.48984","Cimarron","CO","Colorado","TRUE","","155","0.2","08051","Gunnison","{""08051"": ""68.79"", ""08085"": ""31.21""}","Gunnison|Montrose","08051|08085","FALSE","FALSE","America/Denver"
-"81221","38.36242","-105.14438","Coal Creek","CO","Colorado","TRUE","","306","81.2","08043","Fremont","{""08043"": ""100""}","Fremont","08043","FALSE","FALSE","America/Denver"
-"81222","38.35571","-105.81844","Coaldale","CO","Colorado","TRUE","","387","4.8","08043","Fremont","{""08043"": ""100""}","Fremont","08043","FALSE","FALSE","America/Denver"
-"81223","38.40535","-105.60648","Cotopaxi","CO","Colorado","TRUE","","1244","1.2","08043","Fremont","{""08043"": ""100""}","Fremont","08043","FALSE","FALSE","America/Denver"
-"81224","38.8734","-106.93722","Crested Butte","CO","Colorado","TRUE","","3207","7.9","08051","Gunnison","{""08051"": ""100""}","Gunnison","08051","FALSE","FALSE","America/Denver"
-"81225","38.95884","-106.95467","Crested Butte","CO","Colorado","TRUE","","1452","6.8","08051","Gunnison","{""08051"": ""100""}","Gunnison","08051","FALSE","FALSE","America/Denver"
-"81226","38.33377","-105.12436","Florence","CO","Colorado","TRUE","","9295","43.7","08043","Fremont","{""08043"": ""100""}","Fremont","08043","FALSE","FALSE","America/Denver"
-"81227","38.5493","-106.29004","Monarch","CO","Colorado","TRUE","","0","0.0","08015","Chaffee","{""08015"": ""100""}","Chaffee","08015","FALSE","FALSE","America/Denver"
-"81230","38.42496","-106.95639","Gunnison","CO","Colorado","TRUE","","10041","2.2","08051","Gunnison","{""08051"": ""99.03"", ""08109"": ""0.97""}","Gunnison|Saguache","08051|08109","FALSE","FALSE","America/Denver"
-"81231","38.54999","-106.91965","Gunnison","CO","Colorado","TRUE","","640","3937.5","08051","Gunnison","{""08051"": ""100""}","Gunnison","08051","FALSE","FALSE","America/Denver"
-"81232","38.28509","-105.61045","Hillside","CO","Colorado","TRUE","","17","3.4","08043","Fremont","{""08043"": ""100""}","Fremont","08043","FALSE","FALSE","America/Denver"
-"81233","38.42522","-105.82738","Howard","CO","Colorado","TRUE","","1005","4.4","08043","Fremont","{""08043"": ""100""}","Fremont","08043","FALSE","FALSE","America/Denver"
-"81235","38.01367","-107.29516","Lake City","CO","Colorado","TRUE","","795","0.6","08053","Hinsdale","{""08053"": ""100""}","Hinsdale","08053","FALSE","FALSE","America/Denver"
-"81236","38.70612","-106.2436","Nathrop","CO","Colorado","TRUE","","1271","2.5","08015","Chaffee","{""08015"": ""100""}","Chaffee","08015","FALSE","FALSE","America/Denver"
-"81237","38.60303","-106.61407","Ohio City","CO","Colorado","TRUE","","26","0.3","08051","Gunnison","{""08051"": ""100""}","Gunnison","08051","FALSE","FALSE","America/Denver"
-"81239","38.50884","-106.66357","Parlin","CO","Colorado","TRUE","","83","0.6","08051","Gunnison","{""08051"": ""100""}","Gunnison","08051","FALSE","FALSE","America/Denver"
-"81240","38.50393","-105.0322","Penrose","CO","Colorado","TRUE","","3547","9.2","08043","Fremont","{""08043"": ""100""}","Fremont","08043","FALSE","FALSE","America/Denver"
-"81241","38.61792","-106.51462","Pitkin","CO","Colorado","TRUE","","107","2.0","08051","Gunnison","{""08051"": ""100""}","Gunnison","08051","FALSE","FALSE","America/Denver"
-"81242","38.50811","-106.07546","Poncha Springs","CO","Colorado","TRUE","","465","81.2","08015","Chaffee","{""08015"": ""100""}","Chaffee","08015","FALSE","FALSE","America/Denver"
-"81243","38.26344","-107.18964","Powderhorn","CO","Colorado","TRUE","","74","0.1","08051","Gunnison","{""08051"": ""100""}","Gunnison","08051","FALSE","FALSE","America/Denver"
-"81244","38.36297","-105.17768","Rockvale","CO","Colorado","TRUE","","388","40.6","08043","Fremont","{""08043"": ""100""}","Fremont","08043","FALSE","FALSE","America/Denver"
-"81248","38.45215","-106.39655","Sargents","CO","Colorado","TRUE","","95","0.1","08109","Saguache","{""08109"": ""95.83"", ""08051"": ""4.17""}","Saguache|Gunnison","08109|08051","FALSE","FALSE","America/Denver"
-"81251","39.10127","-106.44176","Twin Lakes","CO","Colorado","TRUE","","173","0.8","08065","Lake","{""08065"": ""100""}","Lake","08065","FALSE","FALSE","America/Denver"
-"81252","38.10886","-105.42017","Westcliffe","CO","Colorado","TRUE","","3962","2.5","08027","Custer","{""08027"": ""100""}","Custer","08027","FALSE","FALSE","America/Denver"
-"81253","38.21921","-105.06861","Wetmore","CO","Colorado","TRUE","","611","1.8","08027","Custer","{""08027"": ""83.66"", ""08043"": ""16.34""}","Custer|Fremont","08027|08043","FALSE","FALSE","America/Denver"
-"81301","37.4449","-107.85159","Durango","CO","Colorado","TRUE","","30887","16.0","08067","La Plata","{""08067"": ""99.86"", ""08111"": ""0.14""}","La Plata|San Juan","08067|08111","FALSE","FALSE","America/Denver"
-"81303","37.11638","-107.89112","Durango","CO","Colorado","TRUE","","8157","14.6","08067","La Plata","{""08067"": ""100""}","La Plata","08067","FALSE","FALSE","America/Denver"
-"81320","37.72182","-108.73343","Cahone","CO","Colorado","TRUE","","262","0.5","08033","Dolores","{""08033"": ""100""}","Dolores","08033","FALSE","FALSE","America/Denver"
-"81321","37.3184","-108.76218","Cortez","CO","Colorado","TRUE","","14863","13.6","08083","Montezuma","{""08083"": ""100""}","Montezuma","08083","FALSE","FALSE","America/Denver"
-"81323","37.63986","-108.2847","Dolores","CO","Colorado","TRUE","","4542","2.5","08083","Montezuma","{""08083"": ""98.89"", ""08033"": ""1.11""}","Montezuma|Dolores","08083|08033","FALSE","FALSE","America/Denver"
-"81324","37.6641","-109.0334","Dove Creek","CO","Colorado","TRUE","","1295","1.2","08033","Dolores","{""08033"": ""96.61"", ""49037"": ""3.39""}","Dolores|San Juan","08033|49037","FALSE","FALSE","America/Denver"
-"81325","37.91688","-108.72802","Egnar","CO","Colorado","TRUE","","145","0.1","08113","San Miguel","{""08113"": ""95.87"", ""08033"": ""4.13""}","San Miguel|Dolores","08113|08033","FALSE","FALSE","America/Denver"
-"81326","37.16195","-108.16839","Hesperus","CO","Colorado","TRUE","","2306","3.6","08067","La Plata","{""08067"": ""100""}","La Plata","08067","FALSE","FALSE","America/Denver"
-"81327","37.51772","-108.6546","Lewis","CO","Colorado","TRUE","","416","4.7","08083","Montezuma","{""08083"": ""100""}","Montezuma","08083","FALSE","FALSE","America/Denver"
-"81328","37.36326","-108.2586","Mancos","CO","Colorado","TRUE","","4410","4.7","08083","Montezuma","{""08083"": ""97.1"", ""08067"": ""2.9""}","Montezuma|La Plata","08083|08067","FALSE","FALSE","America/Denver"
-"81330","37.23128","-108.48246","Mesa Verde National Park","CO","Colorado","TRUE","","65","0.4","08083","Montezuma","{""08083"": ""100""}","Montezuma","08083","FALSE","FALSE","America/Denver"
-"81331","37.51641","-108.87147","Pleasant View","CO","Colorado","TRUE","","322","0.5","08083","Montezuma","{""08083"": ""100""}","Montezuma","08083","FALSE","FALSE","America/Denver"
-"81332","37.72685","-107.9577","Rico","CO","Colorado","TRUE","","207","1.3","08033","Dolores","{""08033"": ""100""}","Dolores","08033","FALSE","FALSE","America/Denver"
-"81334","37.11243","-108.54656","Towaoc","CO","Colorado","TRUE","","1525","1.7","08083","Montezuma","{""08083"": ""100""}","Montezuma","08083","FALSE","FALSE","America/Denver"
-"81335","37.49643","-108.75704","Yellow Jacket","CO","Colorado","TRUE","","45","0.6","08083","Montezuma","{""08083"": ""100""}","Montezuma","08083","FALSE","FALSE","America/Denver"
-"81401","38.48717","-107.75847","Montrose","CO","Colorado","TRUE","","22534","37.3","08085","Montrose","{""08085"": ""100""}","Montrose","08085","FALSE","FALSE","America/Denver"
-"81403","38.33438","-107.96918","Montrose","CO","Colorado","TRUE","","11412","8.0","08085","Montrose","{""08085"": ""93.96"", ""08091"": ""6.04""}","Montrose|Ouray","08085|08091","FALSE","FALSE","America/Denver"
-"81410","38.80135","-107.96759","Austin","CO","Colorado","TRUE","","1506","25.4","08029","Delta","{""08029"": ""100""}","Delta","08029","FALSE","FALSE","America/Denver"
-"81411","38.25076","-108.97993","Bedrock","CO","Colorado","TRUE","","41","0.2","08085","Montrose","{""08085"": ""100""}","Montrose","08085","FALSE","FALSE","America/Denver"
-"81413","38.9572","-107.95495","Cedaredge","CO","Colorado","TRUE","","5426","10.0","08029","Delta","{""08029"": ""100""}","Delta","08029","FALSE","FALSE","America/Denver"
-"81415","38.6405","-107.63676","Crawford","CO","Colorado","TRUE","","1237","1.7","08029","Delta","{""08029"": ""86.17"", ""08085"": ""13.83""}","Delta|Montrose","08029|08085","FALSE","FALSE","America/Denver"
-"81416","38.75096","-108.1376","Delta","CO","Colorado","TRUE","","14218","16.3","08029","Delta","{""08029"": ""96.35"", ""08085"": ""3.65""}","Delta|Montrose","08029|08085","FALSE","FALSE","America/Denver"
-"81418","38.84869","-107.98719","Eckert","CO","Colorado","TRUE","","1793","33.6","08029","Delta","{""08029"": ""100""}","Delta","08029","FALSE","FALSE","America/Denver"
-"81419","38.86945","-107.75853","Hotchkiss","CO","Colorado","TRUE","","3666","7.0","08029","Delta","{""08029"": ""100""}","Delta","08029","FALSE","FALSE","America/Denver"
-"81422","38.34672","-108.71155","Naturita","CO","Colorado","TRUE","","664","1.0","08085","Montrose","{""08085"": ""100""}","Montrose","08085","FALSE","FALSE","America/Denver"
-"81423","38.0247","-108.36906","Norwood","CO","Colorado","TRUE","","1764","1.4","08113","San Miguel","{""08113"": ""90.88"", ""08085"": ""9.12""}","San Miguel|Montrose","08113|08085","FALSE","FALSE","America/Denver"
-"81424","38.3344","-108.45797","Nucla","CO","Colorado","TRUE","","1034","1.3","08085","Montrose","{""08085"": ""100""}","Montrose","08085","FALSE","FALSE","America/Denver"
-"81425","38.53574","-108.22151","Olathe","CO","Colorado","TRUE","","5660","5.7","08085","Montrose","{""08085"": ""100""}","Montrose","08085","FALSE","FALSE","America/Denver"
-"81426","37.86821","-107.89132","Ophir","CO","Colorado","TRUE","","163","3.7","08113","San Miguel","{""08113"": ""100""}","San Miguel","08113","FALSE","FALSE","America/Denver"
-"81427","38.02011","-107.63167","Ouray","CO","Colorado","TRUE","","1117","4.2","08091","Ouray","{""08091"": ""100""}","Ouray","08091","FALSE","FALSE","America/Denver"
-"81428","38.95808","-107.59525","Paonia","CO","Colorado","TRUE","","3214","5.7","08029","Delta","{""08029"": ""100""}","Delta","08029","FALSE","FALSE","America/Denver"
-"81429","38.31735","-108.87793","Paradox","CO","Colorado","TRUE","","47","0.1","08085","Montrose","{""08085"": ""100""}","Montrose","08085","FALSE","FALSE","America/Denver"
-"81430","38.01869","-108.05374","Placerville","CO","Colorado","TRUE","","825","1.3","08113","San Miguel","{""08113"": ""100""}","San Miguel","08113","FALSE","FALSE","America/Denver"
-"81431","38.10429","-108.58295","Redvale","CO","Colorado","TRUE","","362","0.8","08085","Montrose","{""08085"": ""95.87"", ""08113"": ""4.13""}","Montrose|San Miguel","08085|08113","FALSE","FALSE","America/Denver"
-"81432","38.12814","-107.75691","Ridgway","CO","Colorado","TRUE","","2977","4.2","08091","Ouray","{""08091"": ""99.78"", ""08113"": ""0.22""}","Ouray|San Miguel","08091|08113","FALSE","FALSE","America/Denver"
-"81433","37.78202","-107.63083","Silverton","CO","Colorado","TRUE","","558","0.7","08111","San Juan","{""08111"": ""100""}","San Juan","08111","FALSE","FALSE","America/Denver"
-"81434","38.95024","-107.35451","Somerset","CO","Colorado","TRUE","","274","0.2","08051","Gunnison","{""08051"": ""100"", ""08029"": ""0""}","Gunnison|Delta","08051|08029","FALSE","FALSE","America/Denver"
-"81435","37.9038","-107.86951","Telluride","CO","Colorado","TRUE","","5252","15.2","08113","San Miguel","{""08113"": ""100""}","San Miguel","08113","FALSE","FALSE","America/Denver"
-"81501","39.07211","-108.54759","Grand Junction","CO","Colorado","TRUE","","24002","1162.1","08077","Mesa","{""08077"": ""100""}","Mesa","08077","FALSE","FALSE","America/Denver"
-"81503","39.03071","-108.43609","Grand Junction","CO","Colorado","TRUE","","15518","170.8","08077","Mesa","{""08077"": ""100""}","Mesa","08077","FALSE","FALSE","America/Denver"
-"81504","39.07913","-108.49158","Grand Junction","CO","Colorado","TRUE","","29358","1001.7","08077","Mesa","{""08077"": ""100""}","Mesa","08077","FALSE","FALSE","America/Denver"
-"81505","39.18187","-108.57772","Grand Junction","CO","Colorado","TRUE","","10454","40.1","08077","Mesa","{""08077"": ""100""}","Mesa","08077","FALSE","FALSE","America/Denver"
-"81506","39.11586","-108.53246","Grand Junction","CO","Colorado","TRUE","","12298","368.8","08077","Mesa","{""08077"": ""100""}","Mesa","08077","FALSE","FALSE","America/Denver"
-"81507","39.00931","-108.62608","Grand Junction","CO","Colorado","TRUE","","14953","52.4","08077","Mesa","{""08077"": ""100""}","Mesa","08077","FALSE","FALSE","America/Denver"
-"81520","39.10989","-108.43381","Clifton","CO","Colorado","TRUE","","14080","263.2","08077","Mesa","{""08077"": ""100""}","Mesa","08077","FALSE","FALSE","America/Denver"
-"81521","39.14589","-108.81647","Fruita","CO","Colorado","TRUE","","16299","42.6","08077","Mesa","{""08077"": ""100""}","Mesa","08077","FALSE","FALSE","America/Denver"
-"81522","38.65091","-108.91455","Gateway","CO","Colorado","TRUE","","123","0.2","08077","Mesa","{""08077"": ""100""}","Mesa","08077","FALSE","FALSE","America/Denver"
-"81523","38.95268","-108.88256","Glade Park","CO","Colorado","TRUE","","912","1.1","08077","Mesa","{""08077"": ""100""}","Mesa","08077","FALSE","FALSE","America/Denver"
-"81524","39.26884","-108.78127","Loma","CO","Colorado","TRUE","","1714","3.9","08077","Mesa","{""08077"": ""100""}","Mesa","08077","FALSE","FALSE","America/Denver"
-"81525","39.28857","-108.95157","Mack","CO","Colorado","TRUE","","1301","4.2","08077","Mesa","{""08077"": ""100""}","Mesa","08077","FALSE","FALSE","America/Denver"
-"81526","39.09613","-108.33698","Palisade","CO","Colorado","TRUE","","5439","40.5","08077","Mesa","{""08077"": ""100""}","Mesa","08077","FALSE","FALSE","America/Denver"
-"81527","38.74877","-108.55132","Whitewater","CO","Colorado","TRUE","","1785","0.9","08077","Mesa","{""08077"": ""100""}","Mesa","08077","FALSE","FALSE","America/Denver"
-"81601","39.5839","-107.31363","Glenwood Springs","CO","Colorado","TRUE","","15325","17.1","08045","Garfield","{""08045"": ""100""}","Garfield","08045","FALSE","FALSE","America/Denver"
-"81610","40.3027","-108.76948","Dinosaur","CO","Colorado","TRUE","","268","0.3","08081","Moffat","{""08081"": ""100""}","Moffat","08081","FALSE","FALSE","America/Denver"
-"81611","39.15162","-106.77138","Aspen","CO","Colorado","TRUE","","11154","10.1","08097","Pitkin","{""08097"": ""100""}","Pitkin","08097","FALSE","FALSE","America/Denver"
-"81612","39.13396","-106.83727","Aspen","CO","Colorado","TRUE","","0","0.0","08097","Pitkin","{""08097"": ""100""}","Pitkin","08097","FALSE","FALSE","America/Denver"
-"81615","39.22115","-106.93198","Snowmass Village","CO","Colorado","TRUE","","2783","42.0","08097","Pitkin","{""08097"": ""100""}","Pitkin","08097","FALSE","FALSE","America/Denver"
-"81620","39.5966","-106.51437","Avon","CO","Colorado","TRUE","","11113","114.4","08037","Eagle","{""08037"": ""100""}","Eagle","08037","FALSE","FALSE","America/Denver"
-"81621","39.38608","-106.88558","Basalt","CO","Colorado","TRUE","","5652","9.8","08037","Eagle","{""08037"": ""70.36"", ""08097"": ""29.64""}","Eagle|Pitkin","08037|08097","FALSE","FALSE","America/Denver"
-"81623","39.25109","-107.20443","Carbondale","CO","Colorado","TRUE","","17173","14.9","08045","Garfield","{""08045"": ""64.8"", ""08037"": ""26.79"", ""08097"": ""6.05"", ""08051"": ""2.36""}","Garfield|Eagle|Pitkin|Gunnison","08045|08037|08097|08051","FALSE","FALSE","America/Denver"
-"81624","39.24808","-107.7775","Collbran","CO","Colorado","TRUE","","1361","0.9","08077","Mesa","{""08077"": ""100""}","Mesa","08077","FALSE","FALSE","America/Denver"
-"81625","40.73385","-107.68711","Craig","CO","Colorado","TRUE","","12601","3.2","08081","Moffat","{""08081"": ""99.97"", ""08107"": ""0.03""}","Moffat|Routt","08081|08107","FALSE","FALSE","America/Denver"
-"81630","39.46257","-108.54199","De Beque","CO","Colorado","TRUE","","1054","0.3","08077","Mesa","{""08077"": ""89.99"", ""08045"": ""10.01""}","Mesa|Garfield","08077|08045","FALSE","FALSE","America/Denver"
-"81631","39.63852","-106.76545","Eagle","CO","Colorado","TRUE","","8903","14.0","08037","Eagle","{""08037"": ""100""}","Eagle","08037","FALSE","FALSE","America/Denver"
-"81632","39.63335","-106.60468","Edwards","CO","Colorado","TRUE","","9299","29.4","08037","Eagle","{""08037"": ""100""}","Eagle","08037","FALSE","FALSE","America/Denver"
-"81633","40.33837","-108.42922","Dinosaur","CO","Colorado","TRUE","","0","0.0","08081","Moffat","{""08081"": ""100""}","Moffat","08081","FALSE","FALSE","America/Denver"
-"81635","39.51987","-108.04806","Parachute","CO","Colorado","TRUE","","6735","8.9","08045","Garfield","{""08045"": ""100""}","Garfield","08045","FALSE","FALSE","America/Denver"
-"81637","39.77665","-107.10154","Gypsum","CO","Colorado","TRUE","","8500","4.3","08037","Eagle","{""08037"": ""99.17"", ""08045"": ""0.83""}","Eagle|Garfield","08037|08045","FALSE","FALSE","America/Denver"
-"81638","40.32099","-107.55452","Hamilton","CO","Colorado","TRUE","","72","0.2","08081","Moffat","{""08081"": ""100""}","Moffat","08081","FALSE","FALSE","America/Denver"
-"81639","40.50569","-107.25302","Hayden","CO","Colorado","TRUE","","2695","1.7","08107","Routt","{""08107"": ""100""}","Routt","08107","FALSE","FALSE","America/Denver"
-"81640","40.65844","-108.51905","Maybell","CO","Colorado","TRUE","","129","0.0","08081","Moffat","{""08081"": ""100""}","Moffat","08081","FALSE","FALSE","America/Denver"
-"81641","40.0804","-107.76297","Meeker","CO","Colorado","TRUE","","3668","0.8","08103","Rio Blanco","{""08103"": ""99.09"", ""08081"": ""0.91""}","Rio Blanco|Moffat","08103|08081","FALSE","FALSE","America/Denver"
-"81642","39.31983","-106.65933","Meredith","CO","Colorado","TRUE","","10","0.0","08097","Pitkin","{""08097"": ""100""}","Pitkin","08097","FALSE","FALSE","America/Denver"
-"81643","39.07824","-108.15794","Mesa","CO","Colorado","TRUE","","412","0.7","08077","Mesa","{""08077"": ""100""}","Mesa","08077","FALSE","FALSE","America/Denver"
-"81645","39.45072","-106.41702","Minturn","CO","Colorado","TRUE","","1101","2.5","08037","Eagle","{""08037"": ""100""}","Eagle","08037","FALSE","FALSE","America/Denver"
-"81646","39.10254","-107.99628","Molina","CO","Colorado","TRUE","","234","1.2","08077","Mesa","{""08077"": ""100""}","Mesa","08077","FALSE","FALSE","America/Denver"
-"81647","39.62108","-107.5542","New Castle","CO","Colorado","TRUE","","7304","7.7","08045","Garfield","{""08045"": ""100""}","Garfield","08045","FALSE","FALSE","America/Denver"
-"81648","39.97213","-108.73354","Rangely","CO","Colorado","TRUE","","2688","0.8","08103","Rio Blanco","{""08103"": ""100""}","Rio Blanco","08103","FALSE","FALSE","America/Denver"
-"81649","39.51832","-106.31039","Red Cliff","CO","Colorado","TRUE","","345","1.7","08037","Eagle","{""08037"": ""100""}","Eagle","08037","FALSE","FALSE","America/Denver"
-"81650","39.73873","-108.11824","Rifle","CO","Colorado","TRUE","","13843","5.8","08045","Garfield","{""08045"": ""99.55"", ""08103"": ""0.45""}","Garfield|Rio Blanco","08045|08103","FALSE","FALSE","America/Denver"
-"81652","39.48535","-107.65622","Silt","CO","Colorado","TRUE","","4958","21.5","08045","Garfield","{""08045"": ""100""}","Garfield","08045","FALSE","FALSE","America/Denver"
-"81653","40.96556","-107.2706","Slater","CO","Colorado","TRUE","","9","0.1","08081","Moffat","{""08081"": ""54.84"", ""08107"": ""45.16""}","Moffat|Routt","08081|08107","FALSE","FALSE","America/Denver"
-"81654","39.22581","-107.03027","Snowmass","CO","Colorado","TRUE","","1487","6.5","08097","Pitkin","{""08097"": ""100""}","Pitkin","08097","FALSE","FALSE","America/Denver"
-"81655","39.75114","-106.53373","Wolcott","CO","Colorado","TRUE","","77","0.2","08037","Eagle","{""08037"": ""100""}","Eagle","08037","FALSE","FALSE","America/Denver"
-"81656","39.28383","-106.89719","Woody Creek","CO","Colorado","TRUE","","223","82.1","08097","Pitkin","{""08097"": ""100""}","Pitkin","08097","FALSE","FALSE","America/Denver"
-"81657","39.6512","-106.32342","Vail","CO","Colorado","TRUE","","5847","20.3","08037","Eagle","{""08037"": ""100""}","Eagle","08037","FALSE","FALSE","America/Denver"
-"82001","41.09143","-104.93442","Cheyenne","WY","Wyoming","TRUE","","36214","238.0","56021","Laramie","{""56021"": ""100""}","Laramie","56021","FALSE","FALSE","America/Denver"
-"82005","41.14781","-104.8645","Fe Warren Afb","WY","Wyoming","TRUE","","623","81.7","56021","Laramie","{""56021"": ""100""}","Laramie","56021","FALSE","FALSE","America/Denver"
-"82007","41.06472","-104.74951","Cheyenne","WY","Wyoming","TRUE","","22326","43.9","56021","Laramie","{""56021"": ""100""}","Laramie","56021","FALSE","FALSE","America/Denver"
-"82009","41.3782","-104.84869","Cheyenne","WY","Wyoming","TRUE","","34061","10.6","56021","Laramie","{""56021"": ""100""}","Laramie","56021","FALSE","FALSE","America/Denver"
-"82050","41.45315","-104.1898","Albin","WY","Wyoming","TRUE","","256","0.6","56021","Laramie","{""56021"": ""100""}","Laramie","56021","FALSE","FALSE","America/Denver"
-"82051","41.57352","-105.6112","Bosler","WY","Wyoming","TRUE","","61","0.1","56001","Albany","{""56001"": ""100""}","Albany","56001","FALSE","FALSE","America/Denver"
-"82052","41.11856","-105.30861","Buford","WY","Wyoming","TRUE","","0","0.0","56001","Albany","{""56001"": ""100""}","Albany","56001","FALSE","FALSE","America/Denver"
-"82053","41.25087","-104.35077","Burns","WY","Wyoming","TRUE","","1077","1.8","56021","Laramie","{""56021"": ""100""}","Laramie","56021","FALSE","FALSE","America/Denver"
-"82054","41.06376","-104.36061","Carpenter","WY","Wyoming","TRUE","","1510","3.2","56021","Laramie","{""56021"": ""100""}","Laramie","56021","FALSE","FALSE","America/Denver"
-"82055","41.33767","-106.16839","Centennial","WY","Wyoming","TRUE","","308","1.0","56001","Albany","{""56001"": ""100""}","Albany","56001","FALSE","FALSE","America/Denver"
-"82058","42.09055","-105.59802","Garrett","WY","Wyoming","TRUE","","7","0.0","56001","Albany","{""56001"": ""100""}","Albany","56001","FALSE","FALSE","America/Denver"
-"82059","41.05729","-105.17729","Granite Canon","WY","Wyoming","TRUE","","181","0.8","56021","Laramie","{""56021"": ""100""}","Laramie","56021","FALSE","FALSE","America/Denver"
-"82060","41.23547","-104.50147","Hillsdale","WY","Wyoming","TRUE","","443","5.9","56021","Laramie","{""56021"": ""100""}","Laramie","56021","FALSE","FALSE","America/Denver"
-"82061","41.44497","-105.14912","Horse Creek","WY","Wyoming","TRUE","","0","0.0","56021","Laramie","{""56021"": ""100""}","Laramie","56021","FALSE","FALSE","America/Denver"
-"82063","40.88767","-105.9845","Jelm","WY","Wyoming","TRUE","","192","0.2","56001","Albany","{""56001"": ""71"", ""08069"": ""29""}","Albany|Larimer","56001|08069","FALSE","FALSE","America/Denver"
-"82070","41.20539","-105.83205","Laramie","WY","Wyoming","TRUE","","20630","7.3","56001","Albany","{""56001"": ""100""}","Albany","56001","FALSE","FALSE","America/Denver"
-"82072","41.42474","-105.47812","Laramie","WY","Wyoming","TRUE","","16922","30.3","56001","Albany","{""56001"": ""100""}","Albany","56001","FALSE","FALSE","America/Denver"
-"82073","41.35677","-105.58757","Laramie","WY","Wyoming","TRUE","","48","9422.9","56001","Albany","{""56001"": ""100""}","Albany","56001","FALSE","FALSE","America/Denver"
-"82081","41.52211","-104.41725","Meriden","WY","Wyoming","TRUE","","151","0.6","56021","Laramie","{""56021"": ""100""}","Laramie","56021","FALSE","FALSE","America/Denver"
-"82082","41.23335","-104.12182","Pine Bluffs","WY","Wyoming","TRUE","","1494","2.6","56021","Laramie","{""56021"": ""98.82"", ""31007"": ""1.18""}","Laramie|Banner","56021|31007","FALSE","FALSE","America/Denver"
-"82083","41.65941","-106.08568","Rock River","WY","Wyoming","TRUE","","259","0.2","56001","Albany","{""56001"": ""79.09"", ""56007"": ""20.91""}","Albany|Carbon","56001|56007","FALSE","FALSE","America/Denver"
-"82084","41.0361","-105.54661","Tie Siding","WY","Wyoming","TRUE","","7","0.0","56001","Albany","{""56001"": ""100""}","Albany","56001","FALSE","FALSE","America/Denver"
-"82190","44.5744","-110.51808","Yellowstone National Park","WY","Wyoming","TRUE","","1103","0.1","56029","Park","{""56029"": ""78.05"", ""56039"": ""21.95""}","Park|Teton","56029|56039","FALSE","FALSE","America/Denver"
-"82201","42.01851","-105.14688","Wheatland","WY","Wyoming","TRUE","","6858","1.5","56031","Platte","{""56031"": ""98.45"", ""56001"": ""1.55""}","Platte|Albany","56031|56001","FALSE","FALSE","America/Denver"
-"82210","41.74661","-104.83081","Chugwater","WY","Wyoming","TRUE","","345","0.3","56031","Platte","{""56031"": ""88.47"", ""56015"": ""11.53""}","Platte|Goshen","56031|56015","FALSE","FALSE","America/Denver"
-"82212","42.28847","-104.52488","Fort Laramie","WY","Wyoming","TRUE","","636","0.7","56015","Goshen","{""56015"": ""100""}","Goshen","56015","FALSE","FALSE","America/Denver"
-"82213","42.49127","-104.99113","Glendo","WY","Wyoming","TRUE","","386","0.3","56031","Platte","{""56031"": ""100""}","Platte","56031","FALSE","FALSE","America/Denver"
-"82214","42.26072","-104.75951","Guernsey","WY","Wyoming","TRUE","","1078","4.0","56031","Platte","{""56031"": ""100""}","Platte","56031","FALSE","FALSE","America/Denver"
-"82215","42.38176","-104.76064","Hartville","WY","Wyoming","TRUE","","80","0.4","56031","Platte","{""56031"": ""100""}","Platte","56031","FALSE","FALSE","America/Denver"
-"82217","41.76566","-104.1701","Hawk Springs","WY","Wyoming","TRUE","","20","0.1","56015","Goshen","{""56015"": ""100""}","Goshen","56015","FALSE","FALSE","America/Denver"
-"82219","42.49875","-104.51339","Jay Em","WY","Wyoming","TRUE","","28","0.1","56015","Goshen","{""56015"": ""100""}","Goshen","56015","FALSE","FALSE","America/Denver"
-"82221","41.63837","-104.34292","Lagrange","WY","Wyoming","TRUE","","379","0.5","56015","Goshen","{""56015"": ""100""}","Goshen","56015","FALSE","FALSE","America/Denver"
-"82222","43.20147","-104.67087","Lance Creek","WY","Wyoming","TRUE","","37","0.0","56027","Niobrara","{""56027"": ""100""}","Niobrara","56027","FALSE","FALSE","America/Denver"
-"82223","42.12846","-104.39494","Lingle","WY","Wyoming","TRUE","","968","2.5","56015","Goshen","{""56015"": ""100""}","Goshen","56015","FALSE","FALSE","America/Denver"
-"82224","43.04212","-104.79743","Lost Springs","WY","Wyoming","TRUE","","13","0.0","56027","Niobrara","{""56027"": ""100""}","Niobrara","56027","FALSE","FALSE","America/Denver"
-"82225","42.98523","-104.31652","Lusk","WY","Wyoming","TRUE","","1957","0.6","56027","Niobrara","{""56027"": ""97.92"", ""56015"": ""2.08""}","Niobrara|Goshen","56027|56015","FALSE","FALSE","America/Denver"
-"82227","42.76168","-104.72261","Manville","WY","Wyoming","TRUE","","294","0.3","56027","Niobrara","{""56027"": ""100""}","Niobrara","56027","FALSE","FALSE","America/Denver"
-"82229","42.87669","-104.96792","Shawnee","WY","Wyoming","TRUE","","1","0.0","56009","Converse","{""56009"": ""100""}","Converse","56009","FALSE","FALSE","America/Denver"
-"82240","42.24072","-104.17919","Torrington","WY","Wyoming","TRUE","","10563","6.2","56015","Goshen","{""56015"": ""100""}","Goshen","56015","FALSE","FALSE","America/Denver"
-"82242","42.69459","-104.1093","Van Tassell","WY","Wyoming","TRUE","","29","0.2","56027","Niobrara","{""56027"": ""100""}","Niobrara","56027","FALSE","FALSE","America/Denver"
-"82243","41.9945","-104.4275","Veteran","WY","Wyoming","TRUE","","126","0.9","56015","Goshen","{""56015"": ""100""}","Goshen","56015","FALSE","FALSE","America/Denver"
-"82244","41.88119","-104.43974","Yoder","WY","Wyoming","TRUE","","565","0.7","56015","Goshen","{""56015"": ""100""}","Goshen","56015","FALSE","FALSE","America/Denver"
-"82301","41.88846","-107.49508","Rawlins","WY","Wyoming","TRUE","","8964","2.8","56007","Carbon","{""56007"": ""99.74"", ""56037"": ""0.18"", ""56013"": ""0.08""}","Carbon|Sweetwater|Fremont","56007|56037|56013","FALSE","FALSE","America/Denver"
-"82321","41.17809","-107.76322","Baggs","WY","Wyoming","TRUE","","738","1.1","56007","Carbon","{""56007"": ""100""}","Carbon","56007","FALSE","FALSE","America/Denver"
-"82322","42.23771","-107.56103","Bairoil","WY","Wyoming","TRUE","","178","45.6","56037","Sweetwater","{""56037"": ""100""}","Sweetwater","56037","FALSE","FALSE","America/Denver"
-"82323","41.04457","-107.49892","Dixon","WY","Wyoming","TRUE","","148","2.0","56007","Carbon","{""56007"": ""100""}","Carbon","56007","FALSE","FALSE","America/Denver"
-"82324","41.66703","-106.41037","Elk Mountain","WY","Wyoming","TRUE","","232","0.4","56007","Carbon","{""56007"": ""100""}","Carbon","56007","FALSE","FALSE","America/Denver"
-"82325","41.16527","-107.07331","Encampment","WY","Wyoming","TRUE","","930","0.5","56007","Carbon","{""56007"": ""100""}","Carbon","56007","FALSE","FALSE","America/Denver"
-"82327","42.16538","-106.68553","Hanna","WY","Wyoming","TRUE","","916","0.7","56007","Carbon","{""56007"": ""100""}","Carbon","56007","FALSE","FALSE","America/Denver"
-"82329","42.08873","-106.07531","Medicine Bow","WY","Wyoming","TRUE","","347","0.2","56007","Carbon","{""56007"": ""92.76"", ""56001"": ""7.24""}","Carbon|Albany","56007|56001","FALSE","FALSE","America/Denver"
-"82331","41.3839","-106.80053","Saratoga","WY","Wyoming","TRUE","","2112","1.4","56007","Carbon","{""56007"": ""100""}","Carbon","56007","FALSE","FALSE","America/Denver"
-"82332","41.05674","-107.29439","Savery","WY","Wyoming","TRUE","","214","0.6","56007","Carbon","{""56007"": ""100""}","Carbon","56007","FALSE","FALSE","America/Denver"
-"82334","41.8812","-106.99553","Sinclair","WY","Wyoming","TRUE","","492","0.8","56007","Carbon","{""56007"": ""100""}","Carbon","56007","FALSE","FALSE","America/Denver"
-"82335","41.81001","-106.85236","Walcott","WY","Wyoming","TRUE","","52","0.2","56007","Carbon","{""56007"": ""100""}","Carbon","56007","FALSE","FALSE","America/Denver"
-"82336","41.73137","-108.19015","Wamsutter","WY","Wyoming","TRUE","","171","0.1","56037","Sweetwater","{""56037"": ""100""}","Sweetwater","56037","FALSE","FALSE","America/Denver"
-"82401","43.98603","-108.14599","Worland","WY","Wyoming","TRUE","","7336","4.8","56043","Washakie","{""56043"": ""99.17"", ""56003"": ""0.64"", ""56017"": ""0.19""}","Washakie|Big Horn|Hot Springs","56043|56003|56017","FALSE","FALSE","America/Denver"
-"82410","44.36572","-108.12363","Basin","WY","Wyoming","TRUE","","2122","4.7","56003","Big Horn","{""56003"": ""100""}","Big Horn","56003","FALSE","FALSE","America/Denver"
-"82411","44.41452","-108.45816","Burlington","WY","Wyoming","TRUE","","571","2.4","56003","Big Horn","{""56003"": ""100""}","Big Horn","56003","FALSE","FALSE","America/Denver"
-"82412","44.79598","-108.55221","Byron","WY","Wyoming","TRUE","","519","9.8","56003","Big Horn","{""56003"": ""100""}","Big Horn","56003","FALSE","FALSE","America/Denver"
-"82414","44.47308","-109.58734","Cody","WY","Wyoming","TRUE","","15212","2.1","56029","Park","{""56029"": ""100""}","Park","56029","FALSE","FALSE","America/Denver"
-"82420","44.92284","-108.45493","Cowley","WY","Wyoming","TRUE","","757","5.3","56003","Big Horn","{""56003"": ""100""}","Big Horn","56003","FALSE","FALSE","America/Denver"
-"82421","44.90754","-108.59834","Deaver","WY","Wyoming","TRUE","","293","2.4","56003","Big Horn","{""56003"": ""78.35"", ""56029"": ""21.65""}","Big Horn|Park","56003|56029","FALSE","FALSE","America/Denver"
-"82422","44.49766","-108.38215","Emblem","WY","Wyoming","TRUE","","17","0.5","56003","Big Horn","{""56003"": ""100""}","Big Horn","56003","FALSE","FALSE","America/Denver"
-"82423","44.97006","-108.58398","Frannie","WY","Wyoming","TRUE","","171","3.5","56003","Big Horn","{""56003"": ""90.13"", ""56029"": ""9.87""}","Big Horn|Park","56003|56029","FALSE","FALSE","America/Denver"
-"82426","44.52252","-107.76196","Greybull","WY","Wyoming","TRUE","","3083","2.1","56003","Big Horn","{""56003"": ""100""}","Big Horn","56003","FALSE","FALSE","America/Denver"
-"82428","44.3084","-107.52607","Hyattville","WY","Wyoming","TRUE","","163","0.3","56003","Big Horn","{""56003"": ""100""}","Big Horn","56003","FALSE","FALSE","America/Denver"
-"82430","43.82019","-108.18855","Kirby","WY","Wyoming","TRUE","","69","10.9","56017","Hot Springs","{""56017"": ""100""}","Hot Springs","56017","FALSE","FALSE","America/Denver"
-"82431","44.84238","-108.16573","Lovell","WY","Wyoming","TRUE","","3478","2.4","56003","Big Horn","{""56003"": ""100""}","Big Horn","56003","FALSE","FALSE","America/Denver"
-"82432","44.22676","-107.89134","Manderson","WY","Wyoming","TRUE","","272","0.9","56003","Big Horn","{""56003"": ""100""}","Big Horn","56003","FALSE","FALSE","America/Denver"
-"82433","44.06316","-109.10138","Meeteetse","WY","Wyoming","TRUE","","1214","0.6","56029","Park","{""56029"": ""100""}","Park","56029","FALSE","FALSE","America/Denver"
-"82434","44.38717","-108.30866","Otto","WY","Wyoming","TRUE","","158","1.7","56003","Big Horn","{""56003"": ""100""}","Big Horn","56003","FALSE","FALSE","America/Denver"
-"82435","44.82008","-108.93824","Powell","WY","Wyoming","TRUE","","12147","5.5","56029","Park","{""56029"": ""99.46"", ""56003"": ""0.54""}","Park|Big Horn","56029|56003","FALSE","FALSE","America/Denver"
-"82440","44.71995","-108.86413","Ralston","WY","Wyoming","TRUE","","218","247.3","56029","Park","{""56029"": ""100""}","Park","56029","FALSE","FALSE","America/Denver"
-"82441","44.6435","-107.77168","Shell","WY","Wyoming","TRUE","","163","0.5","56003","Big Horn","{""56003"": ""100""}","Big Horn","56003","FALSE","FALSE","America/Denver"
-"82442","43.87936","-107.31477","Ten Sleep","WY","Wyoming","TRUE","","796","0.5","56043","Washakie","{""56043"": ""100""}","Washakie","56043","FALSE","FALSE","America/Denver"
-"82443","43.72509","-108.47146","Thermopolis","WY","Wyoming","TRUE","","4518","1.4","56017","Hot Springs","{""56017"": ""100""}","Hot Springs","56017","FALSE","FALSE","America/Denver"
-"82450","44.50527","-109.43548","Wapiti","WY","Wyoming","TRUE","","141","1.7","56029","Park","{""56029"": ""100""}","Park","56029","FALSE","FALSE","America/Denver"
-"82501","43.03512","-108.20235","Riverton","WY","Wyoming","TRUE","","19493","8.0","56013","Fremont","{""56013"": ""100""}","Fremont","56013","FALSE","FALSE","America/Denver"
-"82510","42.99405","-108.59798","Arapahoe","WY","Wyoming","TRUE","","388","6.8","56013","Fremont","{""56013"": ""100""}","Fremont","56013","FALSE","FALSE","America/Denver"
-"82512","43.30055","-109.25649","Crowheart","WY","Wyoming","TRUE","","206","0.2","56013","Fremont","{""56013"": ""100""}","Fremont","56013","FALSE","FALSE","America/Denver"
-"82513","43.59307","-109.64271","Dubois","WY","Wyoming","TRUE","","1757","0.4","56013","Fremont","{""56013"": ""100""}","Fremont","56013","FALSE","FALSE","America/Denver"
-"82514","43.04967","-108.95359","Fort Washakie","WY","Wyoming","TRUE","","1592","2.8","56013","Fremont","{""56013"": ""100""}","Fremont","56013","FALSE","FALSE","America/Denver"
-"82515","42.90373","-108.54265","Hudson","WY","Wyoming","TRUE","","463","21.5","56013","Fremont","{""56013"": ""100""}","Fremont","56013","FALSE","FALSE","America/Denver"
-"82516","43.20144","-108.86383","Kinnear","WY","Wyoming","TRUE","","429","0.7","56013","Fremont","{""56013"": ""100""}","Fremont","56013","FALSE","FALSE","America/Denver"
-"82520","42.6905","-108.62851","Lander","WY","Wyoming","TRUE","","13444","2.4","56013","Fremont","{""56013"": ""100""}","Fremont","56013","FALSE","FALSE","America/Denver"
-"82523","43.44312","-108.81411","Pavillion","WY","Wyoming","TRUE","","934","0.5","56013","Fremont","{""56013"": ""100""}","Fremont","56013","FALSE","FALSE","America/Denver"
-"82601","43.09718","-106.38744","Casper","WY","Wyoming","TRUE","","28121","19.0","56025","Natrona","{""56025"": ""100""}","Natrona","56025","FALSE","FALSE","America/Denver"
-"82604","42.85792","-106.76934","Casper","WY","Wyoming","TRUE","","28064","5.9","56025","Natrona","{""56025"": ""99.94"", ""56007"": ""0.06""}","Natrona|Carbon","56025|56007","FALSE","FALSE","America/Denver"
-"82609","42.80683","-106.18906","Casper","WY","Wyoming","TRUE","","17850","117.8","56025","Natrona","{""56025"": ""100""}","Natrona","56025","FALSE","FALSE","America/Denver"
-"82620","42.46957","-107.10001","Alcova","WY","Wyoming","TRUE","","278","0.1","56025","Natrona","{""56025"": ""92.38"", ""56007"": ""7.62""}","Natrona|Carbon","56025|56007","FALSE","FALSE","America/Denver"
-"82630","43.15275","-107.30617","Arminto","WY","Wyoming","TRUE","","0","0.0","56025","Natrona","{""56025"": ""100""}","Natrona","56025","FALSE","FALSE","America/Denver"
-"82633","43.02562","-105.42225","Douglas","WY","Wyoming","TRUE","","9858","1.2","56009","Converse","{""56009"": ""99.94"", ""56027"": ""0.06""}","Converse|Niobrara","56009|56027","FALSE","FALSE","America/Denver"
-"82635","43.39814","-106.22238","Edgerton","WY","Wyoming","TRUE","","153","3.7","56025","Natrona","{""56025"": ""100""}","Natrona","56025","FALSE","FALSE","America/Denver"
-"82636","42.90923","-106.16892","Evansville","WY","Wyoming","TRUE","","4080","17.1","56025","Natrona","{""56025"": ""99.07"", ""56009"": ""0.93""}","Natrona|Converse","56025|56009","FALSE","FALSE","America/Denver"
-"82637","42.81448","-105.88636","Glenrock","WY","Wyoming","TRUE","","4076","1.6","56009","Converse","{""56009"": ""100"", ""56001"": ""0""}","Converse|Albany","56009|56001","FALSE","FALSE","America/Denver"
-"82638","43.11535","-107.34356","Hiland","WY","Wyoming","TRUE","","0","0.0","56025","Natrona","{""56025"": ""100""}","Natrona","56025","FALSE","FALSE","America/Denver"
-"82639","43.71545","-106.60918","Kaycee","WY","Wyoming","TRUE","","757","0.2","56019","Johnson","{""56019"": ""94.29"", ""56025"": ""5.71""}","Johnson|Natrona","56019|56025","FALSE","FALSE","America/Denver"
-"82640","43.56598","-106.1957","Linch","WY","Wyoming","TRUE","","45","0.1","56019","Johnson","{""56019"": ""100""}","Johnson","56019","FALSE","FALSE","America/Denver"
-"82642","43.26261","-107.61967","Lysite","WY","Wyoming","TRUE","","63","0.0","56013","Fremont","{""56013"": ""90.43"", ""56025"": ""9.57""}","Fremont|Natrona","56013|56025","FALSE","FALSE","America/Denver"
-"82643","43.44577","-106.26892","Midwest","WY","Wyoming","TRUE","","256","3.3","56025","Natrona","{""56025"": ""100""}","Natrona","56025","FALSE","FALSE","America/Denver"
-"82644","42.84306","-106.37618","Mills","WY","Wyoming","TRUE","","1589","728.5","56025","Natrona","{""56025"": ""100""}","Natrona","56025","FALSE","FALSE","America/Denver"
-"82646","42.99606","-106.826","Natrona","WY","Wyoming","TRUE","","0","0.0","56025","Natrona","{""56025"": ""100""}","Natrona","56025","FALSE","FALSE","America/Denver"
-"82648","43.29487","-107.13995","Powder River","WY","Wyoming","TRUE","","27","0.0","56025","Natrona","{""56025"": ""100""}","Natrona","56025","FALSE","FALSE","America/Denver"
-"82649","43.29935","-108.05634","Shoshoni","WY","Wyoming","TRUE","","1043","0.7","56013","Fremont","{""56013"": ""100""}","Fremont","56013","FALSE","FALSE","America/Denver"
-"82701","43.7037","-104.43779","Newcastle","WY","Wyoming","TRUE","","5338","1.0","56045","Weston","{""56045"": ""98.64"", ""56027"": ""0.81"", ""46033"": ""0.55"", ""46103"": ""0""}","Weston|Niobrara|Custer|Pennington","56045|56027|46033|46103","FALSE","FALSE","America/Denver"
-"82710","44.70768","-104.27047","Aladdin","WY","Wyoming","TRUE","","212","0.3","56011","Crook","{""56011"": ""100""}","Crook","56011","FALSE","FALSE","America/Denver"
-"82711","44.70937","-104.45863","Alva","WY","Wyoming","TRUE","","127","0.4","56011","Crook","{""56011"": ""100""}","Crook","56011","FALSE","FALSE","America/Denver"
-"82712","44.45337","-104.1216","Beulah","WY","Wyoming","TRUE","","375","1.2","56011","Crook","{""56011"": ""100""}","Crook","56011","FALSE","FALSE","America/Denver"
-"82714","44.57159","-104.69965","Devils Tower","WY","Wyoming","TRUE","","68","0.5","56011","Crook","{""56011"": ""100""}","Crook","56011","FALSE","FALSE","America/Denver"
-"82715","44.11912","-104.13329","Four Corners","WY","Wyoming","TRUE","","0","0.0","56045","Weston","{""56045"": ""0""}","Weston","56045","FALSE","FALSE","America/Denver"
-"82716","44.48073","-105.68543","Gillette","WY","Wyoming","TRUE","","17245","6.1","56005","Campbell","{""56005"": ""100""}","Campbell","56005","FALSE","FALSE","America/Denver"
-"82718","43.88124","-105.61309","Gillette","WY","Wyoming","TRUE","","26691","5.5","56005","Campbell","{""56005"": ""100""}","Campbell","56005","FALSE","FALSE","America/Denver"
-"82720","44.79764","-104.67587","Hulett","WY","Wyoming","TRUE","","759","0.4","56011","Crook","{""56011"": ""100""}","Crook","56011","FALSE","FALSE","America/Denver"
-"82721","44.49175","-104.9126","Moorcroft","WY","Wyoming","TRUE","","3053","1.5","56011","Crook","{""56011"": ""100""}","Crook","56011","FALSE","FALSE","America/Denver"
-"82723","43.99627","-104.41398","Osage","WY","Wyoming","TRUE","","289","1.1","56045","Weston","{""56045"": ""100""}","Weston","56045","FALSE","FALSE","America/Denver"
-"82725","44.87763","-105.7088","Recluse","WY","Wyoming","TRUE","","607","0.8","56005","Campbell","{""56005"": ""100""}","Campbell","56005","FALSE","FALSE","America/Denver"
-"82727","44.32797","-105.19841","Rozet","WY","Wyoming","TRUE","","1224","1.0","56005","Campbell","{""56005"": ""100""}","Campbell","56005","FALSE","FALSE","America/Denver"
-"82729","44.35171","-104.36139","Sundance","WY","Wyoming","TRUE","","2752","1.7","56011","Crook","{""56011"": ""98.84"", ""56045"": ""1.16""}","Crook|Weston","56011|56045","FALSE","FALSE","America/Denver"
-"82730","44.04329","-104.69889","Upton","WY","Wyoming","TRUE","","1607","1.0","56045","Weston","{""56045"": ""97.25"", ""56011"": ""2.75""}","Weston|Crook","56045|56011","FALSE","FALSE","America/Denver"
-"82731","44.82086","-105.28786","Weston","WY","Wyoming","TRUE","","230","0.2","56005","Campbell","{""56005"": ""100""}","Campbell","56005","FALSE","FALSE","America/Denver"
-"82732","43.70242","-105.62088","Wright","WY","Wyoming","TRUE","","1412","5.1","56005","Campbell","{""56005"": ""100""}","Campbell","56005","FALSE","FALSE","America/Denver"
-"82801","44.8445","-106.83968","Sheridan","WY","Wyoming","TRUE","","25656","15.2","56033","Sheridan","{""56033"": ""99.95"", ""30003"": ""0.05""}","Sheridan|Big Horn","56033|30003","FALSE","FALSE","America/Denver"
-"82831","44.62376","-106.06917","Arvada","WY","Wyoming","TRUE","","313","0.2","56033","Sheridan","{""56033"": ""49.07"", ""56019"": ""28.24"", ""56005"": ""22.69""}","Sheridan|Johnson|Campbell","56033|56019|56005","FALSE","FALSE","America/Denver"
-"82832","44.60032","-106.79543","Banner","WY","Wyoming","TRUE","","750","1.8","56033","Sheridan","{""56033"": ""78.16"", ""56019"": ""21.84""}","Sheridan|Johnson","56033|56019","FALSE","FALSE","America/Denver"
-"82833","44.61987","-107.12312","Big Horn","WY","Wyoming","TRUE","","96","0.4","56033","Sheridan","{""56033"": ""100""}","Sheridan","56033","FALSE","FALSE","America/Denver"
-"82834","44.23696","-106.65641","Buffalo","WY","Wyoming","TRUE","","7422","1.3","56019","Johnson","{""56019"": ""100""}","Johnson","56019","FALSE","FALSE","America/Denver"
-"82835","44.77749","-106.35873","Clearmont","WY","Wyoming","TRUE","","295","0.2","56033","Sheridan","{""56033"": ""100""}","Sheridan","56033","FALSE","FALSE","America/Denver"
-"82836","44.78181","-107.50268","Dayton","WY","Wyoming","TRUE","","933","0.7","56033","Sheridan","{""56033"": ""100""}","Sheridan","56033","FALSE","FALSE","America/Denver"
-"82837","44.78402","-106.26489","Leiter","WY","Wyoming","TRUE","","38","0.3","56033","Sheridan","{""56033"": ""100""}","Sheridan","56033","FALSE","FALSE","America/Denver"
-"82838","44.94529","-107.55832","Parkman","WY","Wyoming","TRUE","","294","0.6","56033","Sheridan","{""56033"": ""100""}","Sheridan","56033","FALSE","FALSE","America/Denver"
-"82839","44.92366","-107.15493","Ranchester","WY","Wyoming","TRUE","","1320","4.4","56033","Sheridan","{""56033"": ""100""}","Sheridan","56033","FALSE","FALSE","America/Denver"
-"82842","44.57674","-106.9288","Story","WY","Wyoming","TRUE","","660","17.3","56033","Sheridan","{""56033"": ""100""}","Sheridan","56033","FALSE","FALSE","America/Denver"
-"82844","44.78645","-107.22022","Wolf","WY","Wyoming","TRUE","","20","0.4","56033","Sheridan","{""56033"": ""100""}","Sheridan","56033","FALSE","FALSE","America/Denver"
-"82845","44.75848","-106.6739","Wyarno","WY","Wyoming","TRUE","","28","0.2","56033","Sheridan","{""56033"": ""100""}","Sheridan","56033","FALSE","FALSE","America/Denver"
-"82901","41.36487","-109.00246","Rock Springs","WY","Wyoming","TRUE","","29114","8.1","56037","Sweetwater","{""56037"": ""100""}","Sweetwater","56037","FALSE","FALSE","America/Denver"
-"82922","43.13997","-110.38958","Bondurant","WY","Wyoming","TRUE","","249","0.3","56035","Sublette","{""56035"": ""100""}","Sublette","56035","FALSE","FALSE","America/Denver"
-"82923","42.65397","-109.46208","Boulder","WY","Wyoming","TRUE","","484","0.2","56035","Sublette","{""56035"": ""100""}","Sublette","56035","FALSE","FALSE","America/Denver"
-"82925","43.23145","-109.89264","Cora","WY","Wyoming","TRUE","","213","0.1","56035","Sublette","{""56035"": ""95.39"", ""56039"": ""4.61""}","Sublette|Teton","56035|56039","FALSE","FALSE","America/Denver"
-"82929","41.55995","-109.84999","Little America","WY","Wyoming","TRUE","","87","2.9","56037","Sweetwater","{""56037"": ""100""}","Sweetwater","56037","FALSE","FALSE","America/Denver"
-"82930","41.00812","-110.63715","Evanston","WY","Wyoming","TRUE","","14105","4.8","56041","Uinta","{""56041"": ""99.76"", ""49043"": ""0.24""}","Uinta|Summit","56041|49043","FALSE","FALSE","America/Denver"
-"82932","42.25268","-109.35569","Farson","WY","Wyoming","TRUE","","347","0.3","56037","Sweetwater","{""56037"": ""100"", ""56035"": ""0""}","Sweetwater|Sublette","56037|56035","FALSE","FALSE","America/Denver"
-"82933","41.2798","-110.45747","Fort Bridger","WY","Wyoming","TRUE","","523","2.9","56041","Uinta","{""56041"": ""100""}","Uinta","56041","FALSE","FALSE","America/Denver"
-"82934","41.60405","-110.01286","Granger","WY","Wyoming","TRUE","","40","0.7","56037","Sweetwater","{""56037"": ""100""}","Sweetwater","56037","FALSE","FALSE","America/Denver"
-"82935","41.69097","-109.67217","Green River","WY","Wyoming","TRUE","","12771","30.2","56037","Sweetwater","{""56037"": ""100""}","Sweetwater","56037","FALSE","FALSE","America/Denver"
-"82936","41.06521","-110.18397","Lonetree","WY","Wyoming","TRUE","","0","0.0","56041","Uinta","{""56041"": ""100""}","Uinta","56041","FALSE","FALSE","America/Denver"
-"82937","41.35587","-110.26616","Lyman","WY","Wyoming","TRUE","","4215","13.5","56041","Uinta","{""56041"": ""100""}","Uinta","56041","FALSE","FALSE","America/Denver"
-"82938","41.14441","-109.7202","McKinnon","WY","Wyoming","TRUE","","310","0.7","56037","Sweetwater","{""56037"": ""100""}","Sweetwater","56037","FALSE","FALSE","America/Denver"
-"82939","41.20709","-110.33112","Mountain View","WY","Wyoming","TRUE","","1527","7.5","56041","Uinta","{""56041"": ""100""}","Uinta","56041","FALSE","FALSE","America/Denver"
-"82941","43.04005","-109.95411","Pinedale","WY","Wyoming","TRUE","","5262","4.7","56035","Sublette","{""56035"": ""100""}","Sublette","56035","FALSE","FALSE","America/Denver"
-"82942","41.71746","-108.85283","Point Of Rocks","WY","Wyoming","TRUE","","56","0.5","56037","Sweetwater","{""56037"": ""100""}","Sweetwater","56037","FALSE","FALSE","America/Denver"
-"82943","41.75462","-109.20805","Reliance","WY","Wyoming","TRUE","","192","1.0","56037","Sweetwater","{""56037"": ""100""}","Sweetwater","56037","FALSE","FALSE","America/Denver"
-"82944","41.10152","-110.50675","Robertson","WY","Wyoming","TRUE","","118","0.2","56041","Uinta","{""56041"": ""100""}","Uinta","56041","FALSE","FALSE","America/Denver"
-"82945","41.7372","-109.05174","Superior","WY","Wyoming","TRUE","","255","0.8","56037","Sweetwater","{""56037"": ""100""}","Sweetwater","56037","FALSE","FALSE","America/Denver"
-"83001","43.51048","-110.46116","Jackson","WY","Wyoming","TRUE","","17448","8.3","56039","Teton","{""56039"": ""99.96"", ""56035"": ""0.04""}","Teton|Sublette","56039|56035","FALSE","FALSE","America/Denver"
-"83011","43.56136","-110.43683","Kelly","WY","Wyoming","TRUE","","133","0.2","56039","Teton","{""56039"": ""100""}","Teton","56039","FALSE","FALSE","America/Denver"
-"83012","43.71497","-110.74201","Moose","WY","Wyoming","TRUE","","208","0.5","56039","Teton","{""56039"": ""100""}","Teton","56039","FALSE","FALSE","America/Denver"
-"83013","43.95445","-110.43579","Moran","WY","Wyoming","TRUE","","315","0.1","56039","Teton","{""56039"": ""100""}","Teton","56039","FALSE","FALSE","America/Denver"
-"83014","43.45859","-110.93681","Wilson","WY","Wyoming","TRUE","","2931","5.3","56039","Teton","{""56039"": ""100""}","Teton","56039","FALSE","FALSE","America/Denver"
-"83025","43.59237","-110.83137","Teton Village","WY","Wyoming","TRUE","","903","25.9","56039","Teton","{""56039"": ""100""}","Teton","56039","FALSE","FALSE","America/Denver"
-"83101","41.96375","-110.54814","Kemmerer","WY","Wyoming","TRUE","","3095","1.6","56023","Lincoln","{""56023"": ""100""}","Lincoln","56023","FALSE","FALSE","America/Denver"
-"83110","42.72276","-110.9014","Afton","WY","Wyoming","TRUE","","4871","12.7","56023","Lincoln","{""56023"": ""100""}","Lincoln","56023","FALSE","FALSE","America/Denver"
-"83111","42.76815","-111.12375","Auburn","WY","Wyoming","TRUE","","696","2.3","56023","Lincoln","{""56023"": ""89.6"", ""16029"": ""10.4""}","Lincoln|Caribou","56023|16029","FALSE","FALSE","America/Boise"
-"83112","42.91946","-110.8309","Bedford","WY","Wyoming","TRUE","","489","1.4","56023","Lincoln","{""56023"": ""100""}","Lincoln","56023","FALSE","FALSE","America/Denver"
-"83113","42.53213","-110.2569","Big Piney","WY","Wyoming","TRUE","","2609","1.0","56035","Sublette","{""56035"": ""100""}","Sublette","56035","FALSE","FALSE","America/Denver"
-"83114","42.17611","-110.94517","Cokeville","WY","Wyoming","TRUE","","1102","1.1","56023","Lincoln","{""56023"": ""100""}","Lincoln","56023","FALSE","FALSE","America/Denver"
-"83115","42.89738","-110.2995","Daniel","WY","Wyoming","TRUE","","1028","0.7","56035","Sublette","{""56035"": ""100""}","Sublette","56035","FALSE","FALSE","America/Denver"
-"83116","41.77257","-110.53577","Diamondville","WY","Wyoming","TRUE","","636","158.2","56023","Lincoln","{""56023"": ""100""}","Lincoln","56023","FALSE","FALSE","America/Denver"
-"83118","43.04943","-111.00229","Etna","WY","Wyoming","TRUE","","770","15.1","56023","Lincoln","{""56023"": ""100""}","Lincoln","56023","FALSE","FALSE","America/Denver"
-"83119","42.64397","-110.98825","Fairview","WY","Wyoming","TRUE","","298","8.7","56023","Lincoln","{""56023"": ""100""}","Lincoln","56023","FALSE","FALSE","America/Denver"
-"83120","42.93376","-111.13785","Freedom","WY","Wyoming","TRUE","","748","1.9","56023","Lincoln","{""56023"": ""76.22"", ""16029"": ""23.78""}","Lincoln|Caribou","56023|16029","FALSE","FALSE","America/Boise"
-"83121","41.82019","-110.53387","Frontier","WY","Wyoming","TRUE","","0","0.0","56023","Lincoln","{""56023"": ""100""}","Lincoln","56023","FALSE","FALSE","America/Denver"
-"83122","42.82027","-110.94651","Grover","WY","Wyoming","TRUE","","980","29.3","56023","Lincoln","{""56023"": ""100""}","Lincoln","56023","FALSE","FALSE","America/Denver"
-"83123","42.22391","-110.26321","La Barge","WY","Wyoming","TRUE","","470","2.0","56023","Lincoln","{""56023"": ""100""}","Lincoln","56023","FALSE","FALSE","America/Denver"
-"83124","41.77054","-110.23093","Opal","WY","Wyoming","TRUE","","164","0.7","56023","Lincoln","{""56023"": ""100""}","Lincoln","56023","FALSE","FALSE","America/Denver"
-"83126","42.57962","-110.84472","Smoot","WY","Wyoming","TRUE","","329","2.1","56023","Lincoln","{""56023"": ""100""}","Lincoln","56023","FALSE","FALSE","America/Denver"
-"83127","42.95547","-110.96513","Thayne","WY","Wyoming","TRUE","","3597","18.4","56023","Lincoln","{""56023"": ""100""}","Lincoln","56023","FALSE","FALSE","America/Denver"
-"83128","43.12143","-110.7886","Alpine","WY","Wyoming","TRUE","","1194","1.0","56023","Lincoln","{""56023"": ""100""}","Lincoln","56023","FALSE","FALSE","America/Denver"
-"83201","42.88941","-112.38464","Pocatello","ID","Idaho","TRUE","","38506","420.0","16005","Bannock","{""16005"": ""100""}","Bannock","16005","FALSE","FALSE","America/Boise"
-"83202","42.96804","-112.3421","Pocatello","ID","Idaho","TRUE","","22714","62.1","16005","Bannock","{""16005"": ""94.27"", ""16011"": ""5.73""}","Bannock|Bingham","16005|16011","FALSE","FALSE","America/Boise"
-"83203","43.04244","-112.49594","Fort Hall","ID","Idaho","TRUE","","278","7.9","16011","Bingham","{""16011"": ""100""}","Bingham","16011","FALSE","FALSE","America/Boise"
-"83204","42.79655","-112.52767","Pocatello","ID","Idaho","TRUE","","18761","31.5","16005","Bannock","{""16005"": ""95.17"", ""16077"": ""4.83""}","Bannock|Power","16005|16077","FALSE","FALSE","America/Boise"
-"83209","42.85778","-112.4263","Pocatello","ID","Idaho","TRUE","","1105","643.5","16005","Bannock","{""16005"": ""100""}","Bannock","16005","FALSE","FALSE","America/Boise"
-"83210","43.01934","-112.86186","Aberdeen","ID","Idaho","TRUE","","3576","5.1","16011","Bingham","{""16011"": ""100""}","Bingham","16011","FALSE","FALSE","America/Boise"
-"83211","42.7067","-113.01386","American Falls","ID","Idaho","TRUE","","5600","3.7","16077","Power","{""16077"": ""98.6"", ""16031"": ""1.4""}","Power|Cassia","16077|16031","FALSE","FALSE","America/Boise"
-"83212","42.53357","-112.54199","Arbon","ID","Idaho","TRUE","","182","0.3","16077","Power","{""16077"": ""95.62"", ""16071"": ""4.38""}","Power|Oneida","16077|16071","FALSE","FALSE","America/Boise"
-"83213","43.55476","-113.30086","Arco","ID","Idaho","TRUE","","1340","0.8","16023","Butte","{""16023"": ""100""}","Butte","16023","FALSE","FALSE","America/Boise"
-"83214","42.5452","-112.29039","Arimo","ID","Idaho","TRUE","","678","2.3","16005","Bannock","{""16005"": ""100""}","Bannock","16005","FALSE","FALSE","America/Boise"
-"83215","43.443","-112.81224","Atomic City","ID","Idaho","TRUE","","43","213.0","16011","Bingham","{""16011"": ""100""}","Bingham","16011","FALSE","FALSE","America/Boise"
-"83217","42.77531","-111.93732","Bancroft","ID","Idaho","TRUE","","813","1.1","16029","Caribou","{""16029"": ""100""}","Caribou","16029","FALSE","FALSE","America/Boise"
-"83218","43.31765","-112.16541","Basalt","ID","Idaho","TRUE","","313","299.0","16011","Bingham","{""16011"": ""100""}","Bingham","16011","FALSE","FALSE","America/Boise"
-"83220","42.36303","-111.3908","Bern","ID","Idaho","TRUE","","137","2.1","16007","Bear Lake","{""16007"": ""100""}","Bear Lake","16007","FALSE","FALSE","America/Boise"
-"83221","43.33607","-112.5451","Blackfoot","ID","Idaho","TRUE","","26950","12.9","16011","Bingham","{""16011"": ""100""}","Bingham","16011","FALSE","FALSE","America/Boise"
-"83223","42.18399","-111.40858","Bloomington","ID","Idaho","TRUE","","119","25.1","16007","Bear Lake","{""16007"": ""100""}","Bear Lake","16007","FALSE","FALSE","America/Boise"
-"83226","44.66892","-114.36489","Challis","ID","Idaho","TRUE","","2072","0.4","16037","Custer","{""16037"": ""99.72"", ""16059"": ""0.28""}","Custer|Lemhi","16037|16059","FALSE","FALSE","America/Boise"
-"83227","44.24934","-114.50171","Clayton","ID","Idaho","TRUE","","16","0.0","16037","Custer","{""16037"": ""100""}","Custer","16037","FALSE","FALSE","America/Boise"
-"83228","42.19562","-112.04029","Clifton","ID","Idaho","TRUE","","643","3.7","16041","Franklin","{""16041"": ""100""}","Franklin","16041","FALSE","FALSE","America/Boise"
-"83232","42.13868","-111.97167","Dayton","ID","Idaho","TRUE","","603","23.7","16041","Franklin","{""16041"": ""100""}","Franklin","16041","FALSE","FALSE","America/Boise"
-"83233","42.15796","-111.23508","Dingle","ID","Idaho","TRUE","","47","0.6","16007","Bear Lake","{""16007"": ""100""}","Bear Lake","16007","FALSE","FALSE","America/Boise"
-"83234","42.41859","-112.09383","Downey","ID","Idaho","TRUE","","1475","2.1","16005","Bannock","{""16005"": ""100""}","Bannock","16005","FALSE","FALSE","America/Boise"
-"83235","44.60826","-113.8033","Ellis","ID","Idaho","TRUE","","230","0.3","16037","Custer","{""16037"": ""55.56"", ""16059"": ""44.44""}","Custer|Lemhi","16037|16059","FALSE","FALSE","America/Boise"
-"83236","43.24319","-111.90323","Firth","ID","Idaho","TRUE","","2422","4.0","16011","Bingham","{""16011"": ""99.03"", ""16019"": ""0.97""}","Bingham|Bonneville","16011|16019","FALSE","FALSE","America/Boise"
-"83237","42.02704","-111.77523","Franklin","ID","Idaho","TRUE","","916","15.8","16041","Franklin","{""16041"": ""100""}","Franklin","16041","FALSE","FALSE","America/Boise"
-"83238","42.33102","-111.1083","Geneva","ID","Idaho","TRUE","","86","0.4","16007","Bear Lake","{""16007"": ""100""}","Bear Lake","16007","FALSE","FALSE","America/Boise"
-"83239","42.5063","-111.32836","Georgetown","ID","Idaho","TRUE","","620","7.3","16007","Bear Lake","{""16007"": ""100""}","Bear Lake","16007","FALSE","FALSE","America/Boise"
-"83241","42.52145","-111.7597","Grace","ID","Idaho","TRUE","","2357","4.3","16029","Caribou","{""16029"": ""99.75"", ""16041"": ""0.25""}","Caribou|Franklin","16029|16041","FALSE","FALSE","America/Boise"
-"83243","42.24143","-112.66531","Holbrook","ID","Idaho","TRUE","","42","0.2","16071","Oneida","{""16071"": ""100""}","Oneida","16071","FALSE","FALSE","America/Boise"
-"83244","43.95954","-113.11644","Howe","ID","Idaho","TRUE","","300","0.1","16023","Butte","{""16023"": ""100""}","Butte","16023","FALSE","FALSE","America/Boise"
-"83245","42.81814","-112.22036","Inkom","ID","Idaho","TRUE","","2269","8.3","16005","Bannock","{""16005"": ""100""}","Bannock","16005","FALSE","FALSE","America/Boise"
-"83246","42.6111","-112.02926","Lava Hot Springs","ID","Idaho","TRUE","","1009","3.0","16005","Bannock","{""16005"": ""100""}","Bannock","16005","FALSE","FALSE","America/Boise"
-"83250","42.66732","-112.20433","Mccammon","ID","Idaho","TRUE","","1733","8.7","16005","Bannock","{""16005"": ""100""}","Bannock","16005","FALSE","FALSE","America/Boise"
-"83251","43.93757","-113.89617","Mackay","ID","Idaho","TRUE","","1193","0.5","16037","Custer","{""16037"": ""100""}","Custer","16037","FALSE","FALSE","America/Boise"
-"83252","42.19026","-112.45832","Malad City","ID","Idaho","TRUE","","4343","1.8","16071","Oneida","{""16071"": ""100""}","Oneida","16071","FALSE","FALSE","America/Boise"
-"83253","44.31889","-113.69032","May","ID","Idaho","TRUE","","83","0.0","16059","Lemhi","{""16059"": ""59.39"", ""16037"": ""40.61""}","Lemhi|Custer","16059|16037","FALSE","FALSE","America/Boise"
-"83254","42.32833","-111.26807","Montpelier","ID","Idaho","TRUE","","3651","2.9","16007","Bear Lake","{""16007"": ""100"", ""16029"": ""0""}","Bear Lake|Caribou","16007|16029","FALSE","FALSE","America/Boise"
-"83255","43.69686","-113.57177","Moore","ID","Idaho","TRUE","","1274","1.1","16023","Butte","{""16023"": ""73.29"", ""16037"": ""26.71""}","Butte|Custer","16023|16037","FALSE","FALSE","America/Boise"
-"83261","42.21611","-111.42069","Paris","ID","Idaho","TRUE","","644","11.9","16007","Bear Lake","{""16007"": ""100""}","Bear Lake","16007","FALSE","FALSE","America/Boise"
-"83262","43.18415","-112.76837","Pingree","ID","Idaho","TRUE","","1212","2.3","16011","Bingham","{""16011"": ""100""}","Bingham","16011","FALSE","FALSE","America/Boise"
-"83263","42.16883","-111.75706","Preston","ID","Idaho","TRUE","","9638","9.3","16041","Franklin","{""16041"": ""100""}","Franklin","16041","FALSE","FALSE","America/Boise"
-"83271","42.45794","-112.84559","Rockland","ID","Idaho","TRUE","","526","0.8","16077","Power","{""16077"": ""100""}","Power","16077","FALSE","FALSE","America/Boise"
-"83272","42.10496","-111.36387","Saint Charles","ID","Idaho","TRUE","","304","0.9","16007","Bear Lake","{""16007"": ""100""}","Bear Lake","16007","FALSE","FALSE","America/Boise"
-"83274","43.35385","-112.09882","Shelley","ID","Idaho","TRUE","","9627","40.8","16011","Bingham","{""16011"": ""99.91"", ""16019"": ""0.09""}","Bingham|Bonneville","16011|16019","FALSE","FALSE","America/Boise"
-"83276","42.76928","-111.52781","Soda Springs","ID","Idaho","TRUE","","3733","3.4","16029","Caribou","{""16029"": ""96.22"", ""16007"": ""3.78""}","Caribou|Bear Lake","16029|16007","FALSE","FALSE","America/Boise"
-"83277","43.07036","-112.67626","Springfield","ID","Idaho","TRUE","","219","8.2","16011","Bingham","{""16011"": ""100""}","Bingham","16011","FALSE","FALSE","America/Boise"
-"83278","44.37034","-114.89595","Stanley","ID","Idaho","TRUE","","379","0.1","16037","Custer","{""16037"": ""100""}","Custer","16037","FALSE","FALSE","America/Boise"
-"83281","42.31041","-111.95988","Swanlake","ID","Idaho","TRUE","","77","0.7","16005","Bannock","{""16005"": ""100""}","Bannock","16005","FALSE","FALSE","America/Boise"
-"83283","42.35941","-111.6705","Thatcher","ID","Idaho","TRUE","","276","1.9","16041","Franklin","{""16041"": ""100""}","Franklin","16041","FALSE","FALSE","America/Boise"
-"83285","43.09836","-111.28729","Wayan","ID","Idaho","TRUE","","107","0.1","16019","Bonneville","{""16019"": ""71.76"", ""16029"": ""28.24""}","Bonneville|Caribou","16019|16029","FALSE","FALSE","America/Boise"
-"83286","42.05319","-112.01483","Weston","ID","Idaho","TRUE","","1388","7.4","16041","Franklin","{""16041"": ""100""}","Franklin","16041","FALSE","FALSE","America/Boise"
-"83287","42.04658","-111.39806","Fish Haven","ID","Idaho","TRUE","","237","3.2","16007","Bear Lake","{""16007"": ""100""}","Bear Lake","16007","FALSE","FALSE","America/Boise"
-"83301","42.39319","-114.52218","Twin Falls","ID","Idaho","TRUE","","57340","78.6","16083","Twin Falls","{""16083"": ""99.94"", ""16053"": ""0.06""}","Twin Falls|Jerome","16083|16053","FALSE","FALSE","America/Boise"
-"83302","42.12882","-115.00173","Rogerson","ID","Idaho","TRUE","","282","0.2","16083","Twin Falls","{""16083"": ""73.47"", ""16073"": ""26.53""}","Twin Falls|Owyhee","16083|16073","FALSE","FALSE","America/Boise"
-"83311","42.3896","-113.55677","Albion","ID","Idaho","TRUE","","981","3.6","16031","Cassia","{""16031"": ""100""}","Cassia","16031","FALSE","FALSE","America/Boise"
-"83312","41.97587","-113.65429","Almo","ID","Idaho","TRUE","","114","0.3","16031","Cassia","{""16031"": ""85.12"", ""49003"": ""14.88""}","Cassia|Box Elder","16031|49003","FALSE","FALSE","America/Denver"
-"83313","43.35825","-114.25221","Bellevue","ID","Idaho","TRUE","","4026","6.7","16013","Blaine","{""16013"": ""100""}","Blaine","16013","FALSE","FALSE","America/Boise"
-"83314","42.97655","-114.93933","Bliss","ID","Idaho","TRUE","","1011","3.5","16047","Gooding","{""16047"": ""98.89"", ""16083"": ""1.11""}","Gooding|Twin Falls","16047|16083","FALSE","FALSE","America/Boise"
-"83316","42.61389","-114.87212","Buhl","ID","Idaho","TRUE","","9780","14.5","16083","Twin Falls","{""16083"": ""99.48"", ""16047"": ""0.49"", ""16073"": ""0.03""}","Twin Falls|Gooding|Owyhee","16083|16047|16073","FALSE","FALSE","America/Boise"
-"83318","42.43678","-113.82129","Burley","ID","Idaho","TRUE","","17014","25.6","16031","Cassia","{""16031"": ""98.04"", ""16067"": ""1.96""}","Cassia|Minidoka","16031|16067","FALSE","FALSE","America/Boise"
-"83320","43.45232","-113.88364","Carey","ID","Idaho","TRUE","","1218","0.8","16013","Blaine","{""16013"": ""100""}","Blaine","16013","FALSE","FALSE","America/Boise"
-"83321","42.46494","-114.91335","Castleford","ID","Idaho","TRUE","","474","2.1","16083","Twin Falls","{""16083"": ""100""}","Twin Falls","16083","FALSE","FALSE","America/Boise"
-"83322","43.35579","-114.97494","Corral","ID","Idaho","TRUE","","28","0.5","16025","Camas","{""16025"": ""100""}","Camas","16025","FALSE","FALSE","America/Boise"
-"83323","42.49418","-113.39076","Declo","ID","Idaho","TRUE","","1847","2.6","16031","Cassia","{""16031"": ""100""}","Cassia","16031","FALSE","FALSE","America/Boise"
-"83324","42.87836","-114.26586","Dietrich","ID","Idaho","TRUE","","785","3.4","16063","Lincoln","{""16063"": ""100""}","Lincoln","16063","FALSE","FALSE","America/Boise"
-"83325","42.58782","-114.24207","Eden","ID","Idaho","TRUE","","844","8.6","16053","Jerome","{""16053"": ""100""}","Jerome","16053","FALSE","FALSE","America/Boise"
-"83327","43.48907","-114.80402","Fairfield","ID","Idaho","TRUE","","950","0.4","16025","Camas","{""16025"": ""100""}","Camas","16025","FALSE","FALSE","America/Boise"
-"83328","42.57027","-114.61382","Filer","ID","Idaho","TRUE","","5871","33.9","16083","Twin Falls","{""16083"": ""100""}","Twin Falls","16083","FALSE","FALSE","America/Boise"
-"83330","42.95287","-114.70822","Gooding","ID","Idaho","TRUE","","6469","21.3","16047","Gooding","{""16047"": ""100""}","Gooding","16047","FALSE","FALSE","America/Boise"
-"83332","42.80193","-114.9205","Hagerman","ID","Idaho","TRUE","","2604","12.4","16047","Gooding","{""16047"": ""92.8"", ""16083"": ""7.2""}","Gooding|Twin Falls","16047|16083","FALSE","FALSE","America/Boise"
-"83333","43.56677","-114.3155","Hailey","ID","Idaho","TRUE","","10109","11.4","16013","Blaine","{""16013"": ""100""}","Blaine","16013","FALSE","FALSE","America/Boise"
-"83334","42.43782","-114.28489","Hansen","ID","Idaho","TRUE","","2139","10.4","16083","Twin Falls","{""16083"": ""100""}","Twin Falls","16083","FALSE","FALSE","America/Boise"
-"83335","42.58125","-114.06715","Hazelton","ID","Idaho","TRUE","","1655","6.3","16053","Jerome","{""16053"": ""100""}","Jerome","16053","FALSE","FALSE","America/Boise"
-"83336","42.56346","-113.81929","Heyburn","ID","Idaho","TRUE","","5526","57.2","16067","Minidoka","{""16067"": ""100""}","Minidoka","16067","FALSE","FALSE","America/Boise"
-"83337","43.22691","-115.14703","Hill City","ID","Idaho","TRUE","","29","0.0","16025","Camas","{""16025"": ""84.85"", ""16039"": ""15.15""}","Camas|Elmore","16025|16039","FALSE","FALSE","America/Boise"
-"83338","42.72257","-114.43288","Jerome","ID","Idaho","TRUE","","21286","29.8","16053","Jerome","{""16053"": ""98.21"", ""16047"": ""1.69"", ""16063"": ""0.11""}","Jerome|Gooding|Lincoln","16053|16047|16063","FALSE","FALSE","America/Boise"
-"83340","43.77184","-114.58323","Ketchum","ID","Idaho","TRUE","","5052","3.5","16013","Blaine","{""16013"": ""100""}","Blaine","16013","FALSE","FALSE","America/Boise"
-"83341","42.41952","-114.36962","Kimberly","ID","Idaho","TRUE","","7992","30.7","16083","Twin Falls","{""16083"": ""100""}","Twin Falls","16083","FALSE","FALSE","America/Boise"
-"83342","42.17776","-113.25127","Malta","ID","Idaho","TRUE","","1181","0.4","16031","Cassia","{""16031"": ""91.32"", ""49003"": ""5.32"", ""16071"": ""3.36""}","Cassia|Box Elder|Oneida","16031|49003|16071","FALSE","FALSE","America/Boise"
-"83344","42.44596","-114.13045","Murtaugh","ID","Idaho","TRUE","","1381","4.6","16083","Twin Falls","{""16083"": ""79.96"", ""16031"": ""20.04""}","Twin Falls|Cassia","16083|16031","FALSE","FALSE","America/Boise"
-"83346","42.2098","-113.93485","Oakley","ID","Idaho","TRUE","","2024","2.5","16031","Cassia","{""16031"": ""100""}","Cassia","16031","FALSE","FALSE","America/Boise"
-"83347","42.73394","-113.88079","Paul","ID","Idaho","TRUE","","3163","5.8","16067","Minidoka","{""16067"": ""90.76"", ""16053"": ""4.82"", ""16063"": ""4.42""}","Minidoka|Jerome|Lincoln","16067|16053|16063","FALSE","FALSE","America/Boise"
-"83348","43.25697","-114.10781","Picabo","ID","Idaho","TRUE","","357","2.1","16013","Blaine","{""16013"": ""100""}","Blaine","16013","FALSE","FALSE","America/Boise"
-"83349","43.09488","-114.18157","Richfield","ID","Idaho","TRUE","","1336","7.1","16063","Lincoln","{""16063"": ""100""}","Lincoln","16063","FALSE","FALSE","America/Boise"
-"83350","42.69505","-113.58021","Rupert","ID","Idaho","TRUE","","12948","16.7","16067","Minidoka","{""16067"": ""96.37"", ""16031"": ""3.25"", ""16013"": ""0.37""}","Minidoka|Cassia|Blaine","16067|16031|16013","FALSE","FALSE","America/Boise"
-"83352","43.07068","-114.41161","Shoshone","ID","Idaho","TRUE","","3227","5.7","16063","Lincoln","{""16063"": ""95.89"", ""16025"": ""2.31"", ""16013"": ""1.8""}","Lincoln|Camas|Blaine","16063|16025|16013","FALSE","FALSE","America/Boise"
-"83353","43.6856","-114.33225","Sun Valley","ID","Idaho","TRUE","","1295","57.4","16013","Blaine","{""16013"": ""100""}","Blaine","16013","FALSE","FALSE","America/Boise"
-"83354","43.66994","-114.32244","Sun Valley","ID","Idaho","TRUE","","0","0.0","16013","Blaine","{""16013"": ""100""}","Blaine","16013","FALSE","FALSE","America/Boise"
-"83355","42.75421","-114.72742","Wendell","ID","Idaho","TRUE","","4875","16.4","16047","Gooding","{""16047"": ""100""}","Gooding","16047","FALSE","FALSE","America/Boise"
-"83401","43.55177","-111.89191","Idaho Falls","ID","Idaho","TRUE","","43718","108.0","16019","Bonneville","{""16019"": ""99.97"", ""16051"": ""0.03""}","Bonneville|Jefferson","16019|16051","FALSE","FALSE","America/Boise"
-"83402","43.53154","-112.15453","Idaho Falls","ID","Idaho","TRUE","","24676","62.8","16019","Bonneville","{""16019"": ""98.05"", ""16051"": ""1.04"", ""16011"": ""0.91""}","Bonneville|Jefferson|Bingham","16019|16051|16011","FALSE","FALSE","America/Boise"
-"83404","43.42448","-112.01199","Idaho Falls","ID","Idaho","TRUE","","23821","344.0","16019","Bonneville","{""16019"": ""100""}","Bonneville","16019","FALSE","FALSE","America/Boise"
-"83406","43.43887","-111.81734","Idaho Falls","ID","Idaho","TRUE","","18742","72.0","16019","Bonneville","{""16019"": ""100""}","Bonneville","16019","FALSE","FALSE","America/Boise"
-"83414","43.88851","-110.94924","Alta","WY","Wyoming","TRUE","","465","0.5","56039","Teton","{""56039"": ""100""}","Teton","56039","FALSE","FALSE","America/Denver"
-"83420","44.07283","-111.35131","Ashton","ID","Idaho","TRUE","","2260","1.9","16043","Fremont","{""16043"": ""100""}","Fremont","16043","FALSE","FALSE","America/Boise"
-"83421","44.00502","-111.53798","Chester","ID","Idaho","TRUE","","356","9.6","16043","Fremont","{""16043"": ""100""}","Fremont","16043","FALSE","FALSE","America/Boise"
-"83422","43.73315","-111.23111","Driggs","ID","Idaho","TRUE","","3444","9.9","16081","Teton","{""16081"": ""100""}","Teton","16081","FALSE","FALSE","America/Boise"
-"83423","44.30001","-112.27026","Dubois","ID","Idaho","TRUE","","834","0.8","16033","Clark","{""16033"": ""100""}","Clark","16033","FALSE","FALSE","America/Boise"
-"83424","43.91288","-111.16588","Felt","ID","Idaho","TRUE","","501","3.3","16081","Teton","{""16081"": ""100""}","Teton","16081","FALSE","FALSE","America/Boise"
-"83425","43.91648","-112.24277","Hamer","ID","Idaho","TRUE","","536","2.1","16051","Jefferson","{""16051"": ""100""}","Jefferson","16051","FALSE","FALSE","America/Boise"
-"83427","43.52517","-111.93253","Iona","ID","Idaho","TRUE","","2125","1138.1","16019","Bonneville","{""16019"": ""100""}","Bonneville","16019","FALSE","FALSE","America/Boise"
-"83428","43.41869","-111.16481","Irwin","ID","Idaho","TRUE","","412","0.7","16019","Bonneville","{""16019"": ""100""}","Bonneville","16019","FALSE","FALSE","America/Boise"
-"83429","44.46774","-111.40232","Island Park","ID","Idaho","TRUE","","519","0.4","16043","Fremont","{""16043"": ""100""}","Fremont","16043","FALSE","FALSE","America/Boise"
-"83431","43.68885","-112.02963","Lewisville","ID","Idaho","TRUE","","650","19.9","16051","Jefferson","{""16051"": ""100""}","Jefferson","16051","FALSE","FALSE","America/Boise"
-"83433","44.48443","-111.333","Macks Inn","ID","Idaho","TRUE","","6","2.2","16043","Fremont","{""16043"": ""100""}","Fremont","16043","FALSE","FALSE","America/Boise"
-"83434","43.75389","-112.00956","Menan","ID","Idaho","TRUE","","1718","15.9","16051","Jefferson","{""16051"": ""86.39"", ""16065"": ""13.61""}","Jefferson|Madison","16051|16065","FALSE","FALSE","America/Boise"
-"83435","43.98786","-112.56826","Monteview","ID","Idaho","TRUE","","662","1.8","16051","Jefferson","{""16051"": ""89.59"", ""16033"": ""10.41""}","Jefferson|Clark","16051|16033","FALSE","FALSE","America/Boise"
-"83436","43.85687","-111.47662","Newdale","ID","Idaho","TRUE","","557","2.3","16043","Fremont","{""16043"": ""70.88"", ""16065"": ""22.2"", ""16081"": ""6.92""}","Fremont|Madison|Teton","16043|16065|16081","FALSE","FALSE","America/Boise"
-"83440","43.81596","-111.82301","Rexburg","ID","Idaho","TRUE","","36635","83.0","16065","Madison","{""16065"": ""97.82"", ""16043"": ""2.18""}","Madison|Fremont","16065|16043","FALSE","FALSE","America/Boise"
-"83442","43.67201","-111.89301","Rigby","ID","Idaho","TRUE","","22372","93.4","16051","Jefferson","{""16051"": ""100""}","Jefferson","16051","FALSE","FALSE","America/Boise"
-"83443","43.51974","-111.52662","Ririe","ID","Idaho","TRUE","","914","1.1","16051","Jefferson","{""16051"": ""51.49"", ""16019"": ""47.06"", ""16065"": ""1.45""}","Jefferson|Bonneville|Madison","16051|16019|16065","FALSE","FALSE","America/Boise"
-"83444","43.69575","-112.24932","Roberts","ID","Idaho","TRUE","","981","2.5","16051","Jefferson","{""16051"": ""100""}","Jefferson","16051","FALSE","FALSE","America/Boise"
-"83445","43.97871","-111.76879","Saint Anthony","ID","Idaho","TRUE","","8005","16.3","16043","Fremont","{""16043"": ""99.55"", ""16065"": ""0.45""}","Fremont|Madison","16043|16065","FALSE","FALSE","America/Boise"
-"83446","44.47296","-112.19268","Spencer","ID","Idaho","TRUE","","24","0.1","16033","Clark","{""16033"": ""100""}","Clark","16033","FALSE","FALSE","America/Boise"
-"83448","43.84663","-111.69692","Sugar City","ID","Idaho","TRUE","","2648","34.5","16065","Madison","{""16065"": ""95.68"", ""16043"": ""4.32""}","Madison|Fremont","16065|16043","FALSE","FALSE","America/Boise"
-"83449","43.28223","-111.40768","Swan Valley","ID","Idaho","TRUE","","177","0.2","16019","Bonneville","{""16019"": ""100""}","Bonneville","16019","FALSE","FALSE","America/Boise"
-"83450","43.83217","-112.41525","Terreton","ID","Idaho","TRUE","","942","3.8","16051","Jefferson","{""16051"": ""100""}","Jefferson","16051","FALSE","FALSE","America/Boise"
-"83451","43.86877","-111.63641","Teton","ID","Idaho","TRUE","","748","20.9","16043","Fremont","{""16043"": ""89.89"", ""16065"": ""10.11""}","Fremont|Madison","16043|16065","FALSE","FALSE","America/Boise"
-"83452","43.83666","-111.21961","Tetonia","ID","Idaho","TRUE","","2148","6.3","16081","Teton","{""16081"": ""100""}","Teton","16081","FALSE","FALSE","America/Boise"
-"83454","43.59353","-111.9575","Ucon","ID","Idaho","TRUE","","658","726.3","16019","Bonneville","{""16019"": ""100""}","Bonneville","16019","FALSE","FALSE","America/Boise"
-"83455","43.61481","-111.17997","Victor","ID","Idaho","TRUE","","5333","17.8","16081","Teton","{""16081"": ""100""}","Teton","16081","FALSE","FALSE","America/Boise"
-"83460","43.81695","-111.78219","Rexburg","ID","Idaho","TRUE","","163","258.5","16065","Madison","{""16065"": ""100""}","Madison","16065","FALSE","FALSE","America/Boise"
-"83462","45.30433","-113.81072","Carmen","ID","Idaho","TRUE","","509","1.8","16059","Lemhi","{""16059"": ""100""}","Lemhi","16059","FALSE","FALSE","America/Boise"
-"83463","45.57031","-113.99128","Gibbonsville","ID","Idaho","TRUE","","68","0.2","16059","Lemhi","{""16059"": ""100""}","Lemhi","16059","FALSE","FALSE","America/Boise"
-"83464","44.50735","-113.23657","Leadore","ID","Idaho","TRUE","","396","0.1","16059","Lemhi","{""16059"": ""98.26"", ""16033"": ""1.74""}","Lemhi|Clark","16059|16033","FALSE","FALSE","America/Boise"
-"83465","44.77716","-113.70003","Lemhi","ID","Idaho","TRUE","","128","0.3","16059","Lemhi","{""16059"": ""100""}","Lemhi","16059","FALSE","FALSE","America/Boise"
-"83466","45.4242","-114.04185","North Fork","ID","Idaho","TRUE","","200","0.3","16059","Lemhi","{""16059"": ""100""}","Lemhi","16059","FALSE","FALSE","America/Boise"
-"83467","45.00975","-113.89909","Salmon","ID","Idaho","TRUE","","6245","3.2","16059","Lemhi","{""16059"": ""100""}","Lemhi","16059","FALSE","FALSE","America/Boise"
-"83468","44.93464","-113.60926","Tendoy","ID","Idaho","TRUE","","144","0.3","16059","Lemhi","{""16059"": ""100""}","Lemhi","16059","FALSE","FALSE","America/Boise"
-"83469","45.36347","-114.4059","Shoup","ID","Idaho","TRUE","","25","0.0","16059","Lemhi","{""16059"": ""100""}","Lemhi","16059","FALSE","FALSE","America/Boise"
-"83501","46.20692","-116.8963","Lewiston","ID","Idaho","TRUE","","34948","50.0","16069","Nez Perce","{""16069"": ""100""}","Nez Perce","16069","FALSE","FALSE","America/Los_Angeles"
-"83520","46.53944","-116.32337","Ahsahka","ID","Idaho","TRUE","","279","9.3","16035","Clearwater","{""16035"": ""100""}","Clearwater","16035","FALSE","FALSE","America/Los_Angeles"
-"83522","45.92288","-116.50575","Cottonwood","ID","Idaho","TRUE","","2291","2.1","16049","Idaho","{""16049"": ""100""}","Idaho","16049","FALSE","FALSE","America/Boise"
-"83523","46.24476","-116.45208","Craigmont","ID","Idaho","TRUE","","823","1.7","16061","Lewis","{""16061"": ""100""}","Lewis","16061","FALSE","FALSE","America/Los_Angeles"
-"83524","46.3688","-116.65715","Culdesac","ID","Idaho","TRUE","","954","2.9","16069","Nez Perce","{""16069"": ""96.26"", ""16061"": ""3.74""}","Nez Perce|Lewis","16069|16061","FALSE","FALSE","America/Los_Angeles"
-"83525","45.78963","-115.5024","Elk City","ID","Idaho","TRUE","","331","0.1","16049","Idaho","{""16049"": ""100""}","Idaho","16049","FALSE","FALSE","America/Los_Angeles"
-"83526","46.15138","-116.40947","Ferdinand","ID","Idaho","TRUE","","379","4.0","16049","Idaho","{""16049"": ""100""}","Idaho","16049","FALSE","FALSE","America/Los_Angeles"
-"83530","45.92139","-116.08486","Grangeville","ID","Idaho","TRUE","","5515","5.9","16049","Idaho","{""16049"": ""100""}","Idaho","16049","FALSE","FALSE","America/Los_Angeles"
-"83533","46.10805","-116.23189","Greencreek","ID","Idaho","TRUE","","301","4.6","16049","Idaho","{""16049"": ""100""}","Idaho","16049","FALSE","FALSE","America/Los_Angeles"
-"83535","46.53773","-116.72263","Juliaetta","ID","Idaho","TRUE","","1201","8.7","16057","Latah","{""16057"": ""62.26"", ""16069"": ""37.74""}","Latah|Nez Perce","16057|16069","FALSE","FALSE","America/Los_Angeles"
-"83536","46.22095","-116.00325","Kamiah","ID","Idaho","TRUE","","4517","7.9","16049","Idaho","{""16049"": ""59.98"", ""16061"": ""40.02""}","Idaho|Lewis","16049|16061","FALSE","FALSE","America/Los_Angeles"
-"83537","46.63146","-116.54506","Kendrick","ID","Idaho","TRUE","","1098","2.6","16057","Latah","{""16057"": ""69.73"", ""16069"": ""22.51"", ""16035"": ""7.76""}","Latah|Nez Perce|Clearwater","16057|16069|16035","FALSE","FALSE","America/Los_Angeles"
-"83539","46.22378","-115.03002","Kooskia","ID","Idaho","TRUE","","2177","0.3","16049","Idaho","{""16049"": ""100""}","Idaho","16049","FALSE","FALSE","America/Los_Angeles"
-"83540","46.3539","-116.78869","Lapwai","ID","Idaho","TRUE","","2386","10.1","16069","Nez Perce","{""16069"": ""100""}","Nez Perce","16069","FALSE","FALSE","America/Los_Angeles"
-"83541","46.51488","-116.46566","Lenore","ID","Idaho","TRUE","","985","3.8","16035","Clearwater","{""16035"": ""52.97"", ""16069"": ""47.03""}","Clearwater|Nez Perce","16035|16069","FALSE","FALSE","America/Los_Angeles"
-"83542","45.56271","-116.36246","Lucile","ID","Idaho","TRUE","","111","0.6","16049","Idaho","{""16049"": ""100""}","Idaho","16049","FALSE","FALSE","America/Boise"
-"83543","46.27486","-116.23675","Nezperce","ID","Idaho","TRUE","","788","2.2","16061","Lewis","{""16061"": ""100""}","Lewis","16061","FALSE","FALSE","America/Los_Angeles"
-"83544","46.49535","-116.15521","Orofino","ID","Idaho","TRUE","","6183","10.1","16035","Clearwater","{""16035"": ""99.9"", ""16061"": ""0.1""}","Clearwater|Lewis","16035|16061","FALSE","FALSE","America/Los_Angeles"
-"83545","46.42889","-116.42458","Peck","ID","Idaho","TRUE","","387","3.3","16069","Nez Perce","{""16069"": ""100""}","Nez Perce","16069","FALSE","FALSE","America/Los_Angeles"
-"83546","46.56739","-115.81731","Pierce","ID","Idaho","TRUE","","575","5.3","16035","Clearwater","{""16035"": ""100""}","Clearwater","16035","FALSE","FALSE","America/Los_Angeles"
-"83547","45.19088","-116.18702","Pollock","ID","Idaho","TRUE","","375","1.5","16049","Idaho","{""16049"": ""100""}","Idaho","16049","FALSE","FALSE","America/Boise"
-"83548","46.36133","-116.51442","Reubens","ID","Idaho","TRUE","","129","1.8","16061","Lewis","{""16061"": ""68.38"", ""16069"": ""31.62""}","Lewis|Nez Perce","16061|16069","FALSE","FALSE","America/Los_Angeles"
-"83549","45.38294","-116.21912","Riggins","ID","Idaho","TRUE","","685","0.4","16049","Idaho","{""16049"": ""100""}","Idaho","16049","FALSE","FALSE","America/Boise"
-"83552","46.00202","-115.92693","Stites","ID","Idaho","TRUE","","834","3.7","16049","Idaho","{""16049"": ""100""}","Idaho","16049","FALSE","FALSE","America/Los_Angeles"
-"83553","46.38353","-115.90473","Weippe","ID","Idaho","TRUE","","970","3.5","16035","Clearwater","{""16035"": ""100""}","Clearwater","16035","FALSE","FALSE","America/Los_Angeles"
-"83554","45.70362","-116.28773","White Bird","ID","Idaho","TRUE","","359","0.6","16049","Idaho","{""16049"": ""100""}","Idaho","16049","FALSE","FALSE","America/Los_Angeles"
-"83555","46.1236","-116.69547","Winchester","ID","Idaho","TRUE","","508","1.0","16061","Lewis","{""16061"": ""93.79"", ""16069"": ""6.21""}","Lewis|Nez Perce","16061|16069","FALSE","FALSE","America/Los_Angeles"
-"83602","44.07219","-116.11461","Banks","ID","Idaho","TRUE","","6","0.1","16015","Boise","{""16015"": ""100""}","Boise","16015","FALSE","FALSE","America/Boise"
-"83604","42.50828","-115.8056","Bruneau","ID","Idaho","TRUE","","522","0.2","16073","Owyhee","{""16073"": ""100""}","Owyhee","16073","FALSE","FALSE","America/Boise"
-"83605","43.66239","-116.65642","Caldwell","ID","Idaho","TRUE","","46763","650.1","16027","Canyon","{""16027"": ""100""}","Canyon","16027","FALSE","FALSE","America/Boise"
-"83607","43.70796","-116.75079","Caldwell","ID","Idaho","TRUE","","26344","45.8","16027","Canyon","{""16027"": ""96.05"", ""16075"": ""2.44"", ""16045"": ""1.51""}","Canyon|Payette|Gem","16027|16075|16045","FALSE","FALSE","America/Boise"
-"83610","44.67501","-116.7727","Cambridge","ID","Idaho","TRUE","","880","0.9","16087","Washington","{""16087"": ""100""}","Washington","16087","FALSE","FALSE","America/Boise"
-"83611","44.71396","-115.39592","Cascade","ID","Idaho","TRUE","","2004","0.3","16085","Valley","{""16085"": ""100""}","Valley","16085","FALSE","FALSE","America/Boise"
-"83612","44.9144","-116.56458","Council","ID","Idaho","TRUE","","1927","1.1","16003","Adams","{""16003"": ""100""}","Adams","16003","FALSE","FALSE","America/Boise"
-"83615","44.71688","-116.05193","Donnelly","ID","Idaho","TRUE","","1576","7.8","16085","Valley","{""16085"": ""100""}","Valley","16085","FALSE","FALSE","America/Boise"
-"83616","43.77416","-116.39255","Eagle","ID","Idaho","TRUE","","27982","101.6","16001","Ada","{""16001"": ""99.88"", ""16045"": ""0.12""}","Ada|Gem","16001|16045","FALSE","FALSE","America/Boise"
-"83617","43.92995","-116.50566","Emmett","ID","Idaho","TRUE","","15268","25.2","16045","Gem","{""16045"": ""100""}","Gem","16045","FALSE","FALSE","America/Boise"
-"83619","43.9673","-116.91218","Fruitland","ID","Idaho","TRUE","","7796","92.7","16075","Payette","{""16075"": ""100""}","Payette","16075","FALSE","FALSE","America/Boise"
-"83622","44.1059","-115.87728","Garden Valley","ID","Idaho","TRUE","","2324","3.4","16015","Boise","{""16015"": ""100""}","Boise","16015","FALSE","FALSE","America/Boise"
-"83623","43.08031","-115.39116","Glenns Ferry","ID","Idaho","TRUE","","1359","2.5","16039","Elmore","{""16039"": ""100""}","Elmore","16039","FALSE","FALSE","America/Boise"
-"83624","42.91336","-116.14386","Grand View","ID","Idaho","TRUE","","1398","2.1","16073","Owyhee","{""16073"": ""79.33"", ""16039"": ""20.67""}","Owyhee|Elmore","16073|16039","FALSE","FALSE","America/Boise"
-"83626","43.66901","-116.83156","Greenleaf","ID","Idaho","TRUE","","1315","78.8","16027","Canyon","{""16027"": ""100""}","Canyon","16027","FALSE","FALSE","America/Boise"
-"83627","42.92064","-115.53638","Hammett","ID","Idaho","TRUE","","599","2.4","16039","Elmore","{""16039"": ""81.45"", ""16073"": ""18.55""}","Elmore|Owyhee","16039|16073","FALSE","FALSE","America/Boise"
-"83628","43.5406","-116.9814","Homedale","ID","Idaho","TRUE","","4403","21.2","16073","Owyhee","{""16073"": ""100""}","Owyhee","16073","FALSE","FALSE","America/Boise"
-"83629","43.91939","-116.16258","Horseshoe Bend","ID","Idaho","TRUE","","2106","4.4","16015","Boise","{""16015"": ""94.6"", ""16045"": ""5.4""}","Boise|Gem","16015|16045","FALSE","FALSE","America/Boise"
-"83631","43.86726","-115.76427","Idaho City","ID","Idaho","TRUE","","873","2.1","16015","Boise","{""16015"": ""100""}","Boise","16015","FALSE","FALSE","America/Boise"
-"83632","44.53617","-116.4055","Indian Valley","ID","Idaho","TRUE","","384","1.2","16003","Adams","{""16003"": ""100""}","Adams","16003","FALSE","FALSE","America/Boise"
-"83633","43.01816","-115.21422","King Hill","ID","Idaho","TRUE","","728","1.7","16039","Elmore","{""16039"": ""100""}","Elmore","16039","FALSE","FALSE","America/Boise"
-"83634","43.45202","-116.3279","Kuna","ID","Idaho","TRUE","","28678","74.0","16001","Ada","{""16001"": ""97.68"", ""16027"": ""2.32""}","Ada|Canyon","16001|16027","FALSE","FALSE","America/Boise"
-"83636","43.90863","-116.66114","Letha","ID","Idaho","TRUE","","333","50.1","16045","Gem","{""16045"": ""100""}","Gem","16045","FALSE","FALSE","America/Boise"
-"83637","44.13535","-115.28899","Lowman","ID","Idaho","TRUE","","185","0.2","16015","Boise","{""16015"": ""100""}","Boise","16015","FALSE","FALSE","America/Boise"
-"83638","45.09889","-115.93486","Mccall","ID","Idaho","TRUE","","7025","6.7","16085","Valley","{""16085"": ""98.14"", ""16003"": ""1.69"", ""16049"": ""0.17""}","Valley|Adams|Idaho","16085|16003|16049","FALSE","FALSE","America/Boise"
-"83639","43.39703","-116.87117","Marsing","ID","Idaho","TRUE","","3435","5.6","16073","Owyhee","{""16073"": ""100""}","Owyhee","16073","FALSE","FALSE","America/Boise"
-"83641","43.35129","-116.58623","Melba","ID","Idaho","TRUE","","3098","7.4","16027","Canyon","{""16027"": ""63.35"", ""16073"": ""30.28"", ""16001"": ""6.37""}","Canyon|Owyhee|Ada","16027|16073|16001","FALSE","FALSE","America/Boise"
-"83642","43.57345","-116.40133","Meridian","ID","Idaho","TRUE","","46193","434.6","16001","Ada","{""16001"": ""100""}","Ada","16001","FALSE","FALSE","America/Boise"
-"83643","44.63046","-116.44398","Mesa","ID","Idaho","TRUE","","140","2.4","16003","Adams","{""16003"": ""100""}","Adams","16003","FALSE","FALSE","America/Boise"
-"83644","43.75012","-116.58225","Middleton","ID","Idaho","TRUE","","12582","95.9","16027","Canyon","{""16027"": ""100""}","Canyon","16027","FALSE","FALSE","America/Boise"
-"83645","44.37087","-116.58087","Midvale","ID","Idaho","TRUE","","811","0.7","16087","Washington","{""16087"": ""100""}","Washington","16087","FALSE","FALSE","America/Boise"
-"83646","43.6498","-116.43063","Meridian","ID","Idaho","TRUE","","63945","896.1","16001","Ada","{""16001"": ""100""}","Ada","16001","FALSE","FALSE","America/Boise"
-"83647","43.43419","-115.50267","Mountain Home","ID","Idaho","TRUE","","20860","5.5","16039","Elmore","{""16039"": ""100""}","Elmore","16039","FALSE","FALSE","America/Boise"
-"83648","43.04963","-115.86557","Mountain Home Afb","ID","Idaho","TRUE","","3009","116.3","16039","Elmore","{""16039"": ""100""}","Elmore","16039","FALSE","FALSE","America/Boise"
-"83650","42.848","-116.63716","Murphy","ID","Idaho","TRUE","","608","0.1","16073","Owyhee","{""16073"": ""100""}","Owyhee","16073","FALSE","FALSE","America/Boise"
-"83651","43.58806","-116.62003","Nampa","ID","Idaho","TRUE","","34548","898.0","16027","Canyon","{""16027"": ""100""}","Canyon","16027","FALSE","FALSE","America/Boise"
-"83654","45.09725","-116.35667","New Meadows","ID","Idaho","TRUE","","1572","2.4","16003","Adams","{""16003"": ""96.17"", ""16049"": ""3.83""}","Adams|Idaho","16003|16049","FALSE","FALSE","America/Boise"
-"83655","43.95156","-116.79085","New Plymouth","ID","Idaho","TRUE","","4486","29.7","16075","Payette","{""16075"": ""100""}","Payette","16075","FALSE","FALSE","America/Boise"
-"83656","43.7265","-116.79869","Notus","ID","Idaho","TRUE","","705","617.2","16027","Canyon","{""16027"": ""100""}","Canyon","16027","FALSE","FALSE","America/Boise"
-"83657","44.2245","-116.30178","Ola","ID","Idaho","TRUE","","444","1.1","16045","Gem","{""16045"": ""100"", ""16085"": ""0""}","Gem|Valley","16045|16085","FALSE","FALSE","America/Boise"
-"83660","43.79911","-116.93136","Parma","ID","Idaho","TRUE","","5987","19.3","16027","Canyon","{""16027"": ""89.08"", ""16075"": ""10.92""}","Canyon|Payette","16027|16075","FALSE","FALSE","America/Boise"
-"83661","44.07776","-116.70438","Payette","ID","Idaho","TRUE","","9941","16.4","16075","Payette","{""16075"": ""99.67"", ""16087"": ""0.33""}","Payette|Washington","16075|16087","FALSE","FALSE","America/Boise"
-"83666","43.9633","-115.97588","Placerville","ID","Idaho","TRUE","","41","1.6","16015","Boise","{""16015"": ""100""}","Boise","16015","FALSE","FALSE","America/Boise"
-"83669","43.71786","-116.49755","Star","ID","Idaho","TRUE","","11066","215.8","16001","Ada","{""16001"": ""95.67"", ""16027"": ""4.33""}","Ada|Canyon","16001|16027","FALSE","FALSE","America/Boise"
-"83670","44.01727","-116.30688","Sweet","ID","Idaho","TRUE","","520","2.7","16045","Gem","{""16045"": ""94.39"", ""16015"": ""5.61""}","Gem|Boise","16045|16015","FALSE","FALSE","America/Boise"
-"83671","45.35624","-115.20866","Warren","ID","Idaho","TRUE","","5","0.0","16049","Idaho","{""16049"": ""100""}","Idaho","16049","FALSE","FALSE","America/Boise"
-"83672","44.36698","-116.9424","Weiser","ID","Idaho","TRUE","","8328","5.3","16087","Washington","{""16087"": ""100""}","Washington","16087","FALSE","FALSE","America/Boise"
-"83676","43.65717","-116.91158","Wilder","ID","Idaho","TRUE","","5132","48.7","16027","Canyon","{""16027"": ""100""}","Canyon","16027","FALSE","FALSE","America/Boise"
-"83677","45.08023","-115.53308","Yellow Pine","ID","Idaho","TRUE","","246","0.3","16085","Valley","{""16085"": ""100""}","Valley","16085","FALSE","FALSE","America/Boise"
-"83686","43.49526","-116.6114","Nampa","ID","Idaho","TRUE","","48971","212.9","16027","Canyon","{""16027"": ""100""}","Canyon","16027","FALSE","FALSE","America/Boise"
-"83687","43.60956","-116.5295","Nampa","ID","Idaho","TRUE","","35172","273.1","16027","Canyon","{""16027"": ""98.17"", ""16001"": ""1.83""}","Canyon|Ada","16027|16001","FALSE","FALSE","America/Boise"
-"83702","43.67575","-116.16934","Boise","ID","Idaho","TRUE","","22775","216.4","16001","Ada","{""16001"": ""99.99"", ""16015"": ""0.01""}","Ada|Boise","16001|16015","FALSE","FALSE","America/Boise"
-"83703","43.66443","-116.24044","Boise","ID","Idaho","TRUE","","16967","767.6","16001","Ada","{""16001"": ""100""}","Ada","16001","FALSE","FALSE","America/Boise"
-"83704","43.62766","-116.28722","Boise","ID","Idaho","TRUE","","40234","1774.4","16001","Ada","{""16001"": ""100""}","Ada","16001","FALSE","FALSE","America/Boise"
-"83705","43.56624","-116.22274","Boise","ID","Idaho","TRUE","","28969","784.0","16001","Ada","{""16001"": ""100""}","Ada","16001","FALSE","FALSE","America/Boise"
-"83706","43.59141","-116.19488","Boise","ID","Idaho","TRUE","","32904","1704.6","16001","Ada","{""16001"": ""100""}","Ada","16001","FALSE","FALSE","America/Boise"
-"83709","43.54974","-116.28929","Boise","ID","Idaho","TRUE","","58391","651.8","16001","Ada","{""16001"": ""100""}","Ada","16001","FALSE","FALSE","America/Boise"
-"83712","43.6134","-116.11493","Boise","ID","Idaho","TRUE","","9746","163.9","16001","Ada","{""16001"": ""100""}","Ada","16001","FALSE","FALSE","America/Boise"
-"83713","43.63893","-116.33394","Boise","ID","Idaho","TRUE","","30121","1722.2","16001","Ada","{""16001"": ""100""}","Ada","16001","FALSE","FALSE","America/Boise"
-"83714","43.73201","-116.27972","Garden City","ID","Idaho","TRUE","","23109","182.7","16001","Ada","{""16001"": ""100""}","Ada","16001","FALSE","FALSE","America/Boise"
-"83716","43.53453","-115.97112","Boise","ID","Idaho","TRUE","","17494","13.1","16001","Ada","{""16001"": ""85.06"", ""16015"": ""13.87"", ""16039"": ""1.07""}","Ada|Boise|Elmore","16001|16015|16039","FALSE","FALSE","America/Boise"
-"83801","47.93827","-116.65887","Athol","ID","Idaho","TRUE","","7616","19.8","16055","Kootenai","{""16055"": ""84.07"", ""16017"": ""15.93""}","Kootenai|Bonner","16055|16017","FALSE","FALSE","America/Los_Angeles"
-"83802","47.08007","-115.52848","Avery","ID","Idaho","TRUE","","201","0.1","16079","Shoshone","{""16079"": ""100""}","Shoshone","16079","FALSE","FALSE","America/Los_Angeles"
-"83803","48.03638","-116.44403","Bayview","ID","Idaho","TRUE","","942","5.7","16055","Kootenai","{""16055"": ""85.89"", ""16017"": ""14.11""}","Kootenai|Bonner","16055|16017","FALSE","FALSE","America/Los_Angeles"
-"83804","48.03617","-116.97368","Blanchard","ID","Idaho","TRUE","","1867","13.8","16017","Bonner","{""16017"": ""100""}","Bonner","16017","FALSE","FALSE","America/Los_Angeles"
-"83805","48.84391","-116.49055","Bonners Ferry","ID","Idaho","TRUE","","8700","4.2","16021","Boundary","{""16021"": ""100""}","Boundary","16021","FALSE","FALSE","America/Los_Angeles"
-"83806","46.89361","-116.36232","Bovill","ID","Idaho","TRUE","","274","5.3","16057","Latah","{""16057"": ""100""}","Latah","16057","FALSE","FALSE","America/Los_Angeles"
-"83808","47.32187","-116.0703","Calder","ID","Idaho","TRUE","","139","0.3","16079","Shoshone","{""16079"": ""100""}","Shoshone","16079","FALSE","FALSE","America/Los_Angeles"
-"83809","48.06362","-116.57348","Careywood","ID","Idaho","TRUE","","388","10.7","16017","Bonner","{""16017"": ""100""}","Bonner","16017","FALSE","FALSE","America/Los_Angeles"
-"83810","47.54765","-116.45897","Cataldo","ID","Idaho","TRUE","","1228","3.4","16055","Kootenai","{""16055"": ""93.86"", ""16079"": ""6.14""}","Kootenai|Shoshone","16055|16079","FALSE","FALSE","America/Los_Angeles"
-"83811","48.06151","-116.23739","Clark Fork","ID","Idaho","TRUE","","1304","2.8","16017","Bonner","{""16017"": ""100""}","Bonner","16017","FALSE","FALSE","America/Los_Angeles"
-"83812","47.01611","-116.22867","Clarkia","ID","Idaho","TRUE","","38","0.3","16079","Shoshone","{""16079"": ""100""}","Shoshone","16079","FALSE","FALSE","America/Los_Angeles"
-"83813","48.09743","-116.63516","Cocolalla","ID","Idaho","TRUE","","1297","11.0","16017","Bonner","{""16017"": ""100""}","Bonner","16017","FALSE","FALSE","America/Los_Angeles"
-"83814","47.63961","-116.75209","Coeur D Alene","ID","Idaho","TRUE","","26448","51.5","16055","Kootenai","{""16055"": ""100""}","Kootenai","16055","FALSE","FALSE","America/Los_Angeles"
-"83815","47.72484","-116.78902","Coeur D Alene","ID","Idaho","TRUE","","35142","837.8","16055","Kootenai","{""16055"": ""100""}","Kootenai","16055","FALSE","FALSE","America/Los_Angeles"
-"83821","48.58113","-116.85642","Coolin","ID","Idaho","TRUE","","252","3.5","16017","Bonner","{""16017"": ""100""}","Bonner","16017","FALSE","FALSE","America/Los_Angeles"
-"83822","48.1666","-117.0021","Oldtown","ID","Idaho","TRUE","","1954","22.8","16017","Bonner","{""16017"": ""100""}","Bonner","16017","FALSE","FALSE","America/Los_Angeles"
-"83823","46.8062","-116.51549","Deary","ID","Idaho","TRUE","","1588","3.9","16057","Latah","{""16057"": ""100"", ""16035"": ""0""}","Latah|Clearwater","16057|16035","FALSE","FALSE","America/Los_Angeles"
-"83824","47.1136","-116.91012","Desmet","ID","Idaho","TRUE","","303","2.2","16009","Benewah","{""16009"": ""100""}","Benewah","16009","FALSE","FALSE","America/Los_Angeles"
-"83825","48.24752","-116.60071","Dover","ID","Idaho","TRUE","","214","187.3","16017","Bonner","{""16017"": ""100""}","Bonner","16017","FALSE","FALSE","America/Los_Angeles"
-"83826","48.97617","-116.1889","Eastport","ID","Idaho","TRUE","","0","0.0","16021","Boundary","{""16021"": ""100""}","Boundary","16021","FALSE","FALSE","America/Los_Angeles"
-"83827","46.78","-116.17472","Elk River","ID","Idaho","TRUE","","154","6.3","16035","Clearwater","{""16035"": ""100""}","Clearwater","16035","FALSE","FALSE","America/Los_Angeles"
-"83830","47.07836","-116.36531","Fernwood","ID","Idaho","TRUE","","368","2.5","16009","Benewah","{""16009"": ""96.86"", ""16079"": ""3.14""}","Benewah|Shoshone","16009|16079","FALSE","FALSE","America/Los_Angeles"
-"83832","46.55355","-116.90686","Genesee","ID","Idaho","TRUE","","1622","4.3","16057","Latah","{""16057"": ""87.86"", ""16069"": ""12.14""}","Latah|Nez Perce","16057|16069","FALSE","FALSE","America/Los_Angeles"
-"83833","47.51559","-116.72228","Harrison","ID","Idaho","TRUE","","1373","5.0","16055","Kootenai","{""16055"": ""99.66"", ""16009"": ""0.34""}","Kootenai|Benewah","16055|16009","FALSE","FALSE","America/Los_Angeles"
-"83834","46.97497","-116.66264","Harvard","ID","Idaho","TRUE","","159","0.6","16057","Latah","{""16057"": ""100""}","Latah","16057","FALSE","FALSE","America/Los_Angeles"
-"83835","47.79612","-116.65828","Hayden","ID","Idaho","TRUE","","21683","78.5","16055","Kootenai","{""16055"": ""100""}","Kootenai","16055","FALSE","FALSE","America/Los_Angeles"
-"83836","48.26372","-116.25139","Hope","ID","Idaho","TRUE","","902","3.7","16017","Bonner","{""16017"": ""100""}","Bonner","16017","FALSE","FALSE","America/Los_Angeles"
-"83837","47.5096","-116.08104","Kellogg","ID","Idaho","TRUE","","3161","17.7","16079","Shoshone","{""16079"": ""100""}","Shoshone","16079","FALSE","FALSE","America/Los_Angeles"
-"83839","47.61005","-116.16992","Kingston","ID","Idaho","TRUE","","1282","4.5","16079","Shoshone","{""16079"": ""100""}","Shoshone","16079","FALSE","FALSE","America/Los_Angeles"
-"83840","48.31058","-116.51522","Kootenai","ID","Idaho","TRUE","","287","1317.2","16017","Bonner","{""16017"": ""100""}","Bonner","16017","FALSE","FALSE","America/Los_Angeles"
-"83841","48.20154","-116.75116","Laclede","ID","Idaho","TRUE","","398","30.9","16017","Bonner","{""16017"": ""100""}","Bonner","16017","FALSE","FALSE","America/Los_Angeles"
-"83842","47.4407","-116.55056","Medimont","ID","Idaho","TRUE","","183","3.6","16055","Kootenai","{""16055"": ""100""}","Kootenai","16055","FALSE","FALSE","America/Los_Angeles"
-"83843","46.72268","-116.94172","Moscow","ID","Idaho","TRUE","","26986","86.3","16057","Latah","{""16057"": ""100""}","Latah","16057","FALSE","FALSE","America/Los_Angeles"
-"83844","46.72945","-117.01313","Moscow","ID","Idaho","TRUE","","1886","20722.8","16057","Latah","{""16057"": ""100""}","Latah","16057","FALSE","FALSE","America/Los_Angeles"
-"83845","48.77845","-116.11779","Moyie Springs","ID","Idaho","TRUE","","1592","6.5","16021","Boundary","{""16021"": ""100""}","Boundary","16021","FALSE","FALSE","America/Los_Angeles"
-"83846","47.47484","-115.76675","Mullan","ID","Idaho","TRUE","","884","7.2","16079","Shoshone","{""16079"": ""100""}","Shoshone","16079","FALSE","FALSE","America/Los_Angeles"
-"83847","48.57771","-116.44375","Naples","ID","Idaho","TRUE","","1553","5.3","16021","Boundary","{""16021"": ""100""}","Boundary","16021","FALSE","FALSE","America/Los_Angeles"
-"83848","48.7159","-116.91592","Nordman","ID","Idaho","TRUE","","160","2.0","16017","Bonner","{""16017"": ""100""}","Bonner","16017","FALSE","FALSE","America/Los_Angeles"
-"83849","47.5166","-116.00053","Osburn","ID","Idaho","TRUE","","2065","40.9","16079","Shoshone","{""16079"": ""100""}","Shoshone","16079","FALSE","FALSE","America/Los_Angeles"
-"83850","47.45457","-116.23091","Pinehurst","ID","Idaho","TRUE","","1838","10.2","16079","Shoshone","{""16079"": ""100""}","Shoshone","16079","FALSE","FALSE","America/Los_Angeles"
-"83851","47.29939","-116.91039","Plummer","ID","Idaho","TRUE","","1913","6.1","16009","Benewah","{""16009"": ""100""}","Benewah","16009","FALSE","FALSE","America/Los_Angeles"
-"83852","48.30895","-116.54198","Ponderay","ID","Idaho","TRUE","","869","215.8","16017","Bonner","{""16017"": ""100""}","Bonner","16017","FALSE","FALSE","America/Los_Angeles"
-"83854","47.71876","-116.97291","Post Falls","ID","Idaho","TRUE","","42643","219.5","16055","Kootenai","{""16055"": ""100""}","Kootenai","16055","FALSE","FALSE","America/Los_Angeles"
-"83855","46.9708","-116.92186","Potlatch","ID","Idaho","TRUE","","1934","6.7","16057","Latah","{""16057"": ""100""}","Latah","16057","FALSE","FALSE","America/Los_Angeles"
-"83856","48.31053","-116.90064","Priest River","ID","Idaho","TRUE","","6185","6.8","16017","Bonner","{""16017"": ""100""}","Bonner","16017","FALSE","FALSE","America/Los_Angeles"
-"83857","46.89205","-116.79401","Princeton","ID","Idaho","TRUE","","1140","6.9","16057","Latah","{""16057"": ""100""}","Latah","16057","FALSE","FALSE","America/Los_Angeles"
-"83858","47.85308","-116.90777","Rathdrum","ID","Idaho","TRUE","","15714","51.3","16055","Kootenai","{""16055"": ""100""}","Kootenai","16055","FALSE","FALSE","America/Los_Angeles"
-"83860","48.18925","-116.53217","Sagle","ID","Idaho","TRUE","","6088","19.7","16017","Bonner","{""16017"": ""100""}","Bonner","16017","FALSE","FALSE","America/Los_Angeles"
-"83861","47.26322","-116.55112","Saint Maries","ID","Idaho","TRUE","","6618","5.0","16009","Benewah","{""16009"": ""92.77"", ""16055"": ""6.57"", ""16079"": ""0.66""}","Benewah|Kootenai|Shoshone","16009|16055|16079","FALSE","FALSE","America/Los_Angeles"
-"83864","48.46778","-116.52874","Sandpoint","ID","Idaho","TRUE","","18523","15.6","16017","Bonner","{""16017"": ""99.83"", ""16021"": ""0.17""}","Bonner|Boundary","16017|16021","FALSE","FALSE","America/Los_Angeles"
-"83866","47.15511","-116.42466","Santa","ID","Idaho","TRUE","","58","0.3","16009","Benewah","{""16009"": ""100""}","Benewah","16009","FALSE","FALSE","America/Los_Angeles"
-"83867","47.50572","-115.9488","Silverton","ID","Idaho","TRUE","","457","39.1","16079","Shoshone","{""16079"": ""100""}","Shoshone","16079","FALSE","FALSE","America/Los_Angeles"
-"83868","47.53432","-116.18142","Smelterville","ID","Idaho","TRUE","","790","31.8","16079","Shoshone","{""16079"": ""100""}","Shoshone","16079","FALSE","FALSE","America/Los_Angeles"
-"83869","47.97904","-116.89147","Spirit Lake","ID","Idaho","TRUE","","5116","32.8","16055","Kootenai","{""16055"": ""75.08"", ""16017"": ""24.92""}","Kootenai|Bonner","16055|16017","FALSE","FALSE","America/Los_Angeles"
-"83870","47.12587","-116.83168","Tensed","ID","Idaho","TRUE","","262","1.4","16009","Benewah","{""16009"": ""100""}","Benewah","16009","FALSE","FALSE","America/Los_Angeles"
-"83871","46.74623","-116.73931","Troy","ID","Idaho","TRUE","","1867","6.5","16057","Latah","{""16057"": ""100""}","Latah","16057","FALSE","FALSE","America/Los_Angeles"
-"83872","46.86214","-116.97011","Viola","ID","Idaho","TRUE","","709","6.6","16057","Latah","{""16057"": ""100""}","Latah","16057","FALSE","FALSE","America/Los_Angeles"
-"83873","47.61267","-115.88752","Wallace","ID","Idaho","TRUE","","1671","3.1","16079","Shoshone","{""16079"": ""100""}","Shoshone","16079","FALSE","FALSE","America/Los_Angeles"
-"83874","47.63915","-115.78438","Murray","ID","Idaho","TRUE","","27","0.2","16079","Shoshone","{""16079"": ""100""}","Shoshone","16079","FALSE","FALSE","America/Los_Angeles"
-"83876","47.4489","-116.92867","Worley","ID","Idaho","TRUE","","1829","5.9","16055","Kootenai","{""16055"": ""100""}","Kootenai","16055","FALSE","FALSE","America/Los_Angeles"
-"84001","40.3514","-110.27544","Altamont","UT","Utah","TRUE","","568","9.7","49013","Duchesne","{""49013"": ""100""}","Duchesne","49013","FALSE","FALSE","America/Denver"
-"84002","40.45199","-110.30781","Altonah","UT","Utah","TRUE","","335","2.4","49013","Duchesne","{""49013"": ""100""}","Duchesne","49013","FALSE","FALSE","America/Denver"
-"84003","40.46017","-111.71916","American Fork","UT","Utah","TRUE","","50222","335.4","49049","Utah","{""49049"": ""100""}","Utah","49049","FALSE","FALSE","America/Denver"
-"84004","40.48814","-111.74906","Alpine","UT","Utah","TRUE","","10553","139.0","49049","Utah","{""49049"": ""100""}","Utah","49049","FALSE","FALSE","America/Denver"
-"84005","40.32513","-111.99656","Eagle Mountain","UT","Utah","TRUE","","31383","392.9","49049","Utah","{""49049"": ""100""}","Utah","49049","FALSE","FALSE","America/Denver"
-"84006","40.60131","-112.11715","Bingham Canyon","UT","Utah","TRUE","","894","16.5","49035","Salt Lake","{""49035"": ""100""}","Salt Lake","49035","FALSE","FALSE","America/Denver"
-"84007","40.32134","-110.20174","Bluebell","UT","Utah","TRUE","","639","5.4","49013","Duchesne","{""49013"": ""100""}","Duchesne","49013","FALSE","FALSE","America/Denver"
-"84010","40.86775","-111.86726","Bountiful","UT","Utah","TRUE","","46218","1186.5","49011","Davis","{""49011"": ""100""}","Davis","49011","FALSE","FALSE","America/Denver"
-"84013","40.29589","-112.09228","Cedar Valley","UT","Utah","TRUE","","1163","11.2","49049","Utah","{""49049"": ""100""}","Utah","49049","FALSE","FALSE","America/Denver"
-"84014","40.93212","-111.88505","Centerville","UT","Utah","TRUE","","17343","1215.9","49011","Davis","{""49011"": ""100""}","Davis","49011","FALSE","FALSE","America/Denver"
-"84015","41.12088","-112.06121","Clearfield","UT","Utah","TRUE","","66410","1212.0","49011","Davis","{""49011"": ""100""}","Davis","49011","FALSE","FALSE","America/Denver"
-"84017","40.93355","-111.20387","Coalville","UT","Utah","TRUE","","4366","3.6","49043","Summit","{""49043"": ""100""}","Summit","49043","FALSE","FALSE","America/Denver"
-"84018","41.21539","-111.44543","Croydon","UT","Utah","TRUE","","244","0.6","49029","Morgan","{""49029"": ""100""}","Morgan","49029","FALSE","FALSE","America/Denver"
-"84020","40.50025","-111.86742","Draper","UT","Utah","TRUE","","48000","736.0","49035","Salt Lake","{""49035"": ""95.63"", ""49049"": ""4.37""}","Salt Lake|Utah","49035|49049","FALSE","FALSE","America/Denver"
-"84021","40.13019","-110.52755","Duchesne","UT","Utah","TRUE","","3825","2.2","49013","Duchesne","{""49013"": ""100""}","Duchesne","49013","FALSE","FALSE","America/Denver"
-"84022","40.27878","-112.76586","Dugway","UT","Utah","TRUE","","701","0.8","49045","Tooele","{""49045"": ""99.78"", ""49023"": ""0.22""}","Tooele|Juab","49045|49023","FALSE","FALSE","America/Denver"
-"84023","40.845","-109.20404","Dutch John","UT","Utah","TRUE","","215","0.5","49009","Daggett","{""49009"": ""100""}","Daggett","49009","FALSE","FALSE","America/Denver"
-"84024","41.00765","-111.44734","Echo","UT","Utah","TRUE","","49","2.4","49043","Summit","{""49043"": ""100""}","Summit","49043","FALSE","FALSE","America/Denver"
-"84025","40.98035","-111.90359","Farmington","UT","Utah","TRUE","","23871","755.3","49011","Davis","{""49011"": ""100""}","Davis","49011","FALSE","FALSE","America/Denver"
-"84026","40.28101","-109.83949","Fort Duchesne","UT","Utah","TRUE","","1407","12.9","49047","Uintah","{""49047"": ""100""}","Uintah","49047","FALSE","FALSE","America/Denver"
-"84027","40.15755","-110.82253","Fruitland","UT","Utah","TRUE","","519","1.0","49013","Duchesne","{""49013"": ""100""}","Duchesne","49013","FALSE","FALSE","America/Denver"
-"84028","41.93362","-111.4055","Garden City","UT","Utah","TRUE","","693","5.5","49033","Rich","{""49033"": ""100""}","Rich","49033","FALSE","FALSE","America/Denver"
-"84029","40.62653","-112.72171","Grantsville","UT","Utah","TRUE","","11100","12.6","49045","Tooele","{""49045"": ""100""}","Tooele","49045","FALSE","FALSE","America/Denver"
-"84031","40.53283","-110.76874","Hanna","UT","Utah","TRUE","","221","0.3","49013","Duchesne","{""49013"": ""100""}","Duchesne","49013","FALSE","FALSE","America/Denver"
-"84032","40.36183","-111.2011","Heber City","UT","Utah","TRUE","","23184","28.6","49051","Wasatch","{""49051"": ""100""}","Wasatch","49051","FALSE","FALSE","America/Denver"
-"84033","40.98567","-111.50109","Henefer","UT","Utah","TRUE","","1233","9.1","49043","Summit","{""49043"": ""100""}","Summit","49043","FALSE","FALSE","America/Denver"
-"84034","40.06029","-113.89529","Ibapah","UT","Utah","TRUE","","182","0.1","49045","Tooele","{""49045"": ""49.76"", ""49023"": ""40.19"", ""32033"": ""10.05""}","Tooele|Juab|White Pine","49045|49023|32033","FALSE","FALSE","America/Denver"
-"84035","40.20701","-109.26359","Jensen","UT","Utah","TRUE","","281","0.2","49047","Uintah","{""49047"": ""100""}","Uintah","49047","FALSE","FALSE","America/Denver"
-"84036","40.64134","-111.14475","Kamas","UT","Utah","TRUE","","7439","9.0","49043","Summit","{""49043"": ""82.35"", ""49051"": ""17.65""}","Summit|Wasatch","49043|49051","FALSE","FALSE","America/Denver"
-"84037","41.02504","-111.95054","Kaysville","UT","Utah","TRUE","","38823","802.7","49011","Davis","{""49011"": ""100""}","Davis","49011","FALSE","FALSE","America/Denver"
-"84038","41.87582","-111.31773","Laketown","UT","Utah","TRUE","","330","2.9","49033","Rich","{""49033"": ""100""}","Rich","49033","FALSE","FALSE","America/Denver"
-"84039","40.48557","-109.80848","Lapoint","UT","Utah","TRUE","","863","3.1","49047","Uintah","{""49047"": ""100""}","Uintah","49047","FALSE","FALSE","America/Denver"
-"84040","41.09148","-111.92696","Layton","UT","Utah","TRUE","","23865","864.1","49011","Davis","{""49011"": ""100""}","Davis","49011","FALSE","FALSE","America/Denver"
-"84041","41.07146","-111.98377","Layton","UT","Utah","TRUE","","52350","1363.0","49011","Davis","{""49011"": ""100""}","Davis","49011","FALSE","FALSE","America/Denver"
-"84042","40.34079","-111.72449","Lindon","UT","Utah","TRUE","","10898","523.5","49049","Utah","{""49049"": ""100""}","Utah","49049","FALSE","FALSE","America/Denver"
-"84043","40.41087","-111.8733","Lehi","UT","Utah","TRUE","","64478","799.1","49049","Utah","{""49049"": ""100""}","Utah","49049","FALSE","FALSE","America/Denver"
-"84044","40.71968","-112.1559","Magna","UT","Utah","TRUE","","27145","220.2","49035","Salt Lake","{""49035"": ""100""}","Salt Lake","49035","FALSE","FALSE","America/Denver"
-"84045","40.33847","-111.91176","Saratoga Springs","UT","Utah","TRUE","","28934","548.2","49049","Utah","{""49049"": ""100""}","Utah","49049","FALSE","FALSE","America/Denver"
-"84046","40.94375","-109.8228","Manila","UT","Utah","TRUE","","387","1.2","49009","Daggett","{""49009"": ""100""}","Daggett","49009","FALSE","FALSE","America/Denver"
-"84047","40.61519","-111.89079","Midvale","UT","Utah","TRUE","","33453","2068.5","49035","Salt Lake","{""49035"": ""100""}","Salt Lake","49035","FALSE","FALSE","America/Denver"
-"84049","40.52481","-111.50985","Midway","UT","Utah","TRUE","","5803","26.9","49051","Wasatch","{""49051"": ""100""}","Wasatch","49051","FALSE","FALSE","America/Denver"
-"84050","41.01959","-111.67577","Morgan","UT","Utah","TRUE","","11420","11.7","49029","Morgan","{""49029"": ""100""}","Morgan","49029","FALSE","FALSE","America/Denver"
-"84051","40.39216","-110.42923","Mountain Home","UT","Utah","TRUE","","509","3.8","49013","Duchesne","{""49013"": ""100""}","Duchesne","49013","FALSE","FALSE","America/Denver"
-"84052","40.17198","-109.99552","Myton","UT","Utah","TRUE","","1565","4.1","49013","Duchesne","{""49013"": ""87.1"", ""49047"": ""12.9""}","Duchesne|Uintah","49013|49047","FALSE","FALSE","America/Denver"
-"84053","40.44996","-110.0181","Neola","UT","Utah","TRUE","","1200","8.2","49013","Duchesne","{""49013"": ""94.26"", ""49047"": ""5.74""}","Duchesne|Uintah","49013|49047","FALSE","FALSE","America/Denver"
-"84054","40.84113","-111.91693","North Salt Lake","UT","Utah","TRUE","","20328","935.9","49011","Davis","{""49011"": ""100""}","Davis","49011","FALSE","FALSE","America/Denver"
-"84055","40.77872","-111.08246","Oakley","UT","Utah","TRUE","","1459","3.6","49043","Summit","{""49043"": ""100""}","Summit","49043","FALSE","FALSE","America/Denver"
-"84056","41.12649","-111.99017","Hill Afb","UT","Utah","TRUE","","3458","141.6","49011","Davis","{""49011"": ""100""}","Davis","49011","FALSE","FALSE","America/Denver"
-"84057","40.31425","-111.7104","Orem","UT","Utah","TRUE","","40605","2484.0","49049","Utah","{""49049"": ""100""}","Utah","49049","FALSE","FALSE","America/Denver"
-"84058","40.28728","-111.7278","Orem","UT","Utah","TRUE","","40832","1279.6","49049","Utah","{""49049"": ""100""}","Utah","49049","FALSE","FALSE","America/Denver"
-"84060","40.65236","-111.50183","Park City","UT","Utah","TRUE","","8516","117.2","49043","Summit","{""49043"": ""99.8"", ""49051"": ""0.2""}","Summit|Wasatch","49043|49051","FALSE","FALSE","America/Denver"
-"84061","40.75259","-111.34282","Peoa","UT","Utah","TRUE","","283","3.6","49043","Summit","{""49043"": ""100""}","Summit","49043","FALSE","FALSE","America/Denver"
-"84062","40.43484","-111.67779","Pleasant Grove","UT","Utah","TRUE","","47928","454.7","49049","Utah","{""49049"": ""100""}","Utah","49049","FALSE","FALSE","America/Denver"
-"84063","39.98758","-109.70237","Randlett","UT","Utah","TRUE","","184","0.2","49047","Uintah","{""49047"": ""100""}","Uintah","49047","FALSE","FALSE","America/Denver"
-"84064","41.68381","-111.12536","Randolph","UT","Utah","TRUE","","969","2.4","49033","Rich","{""49033"": ""100""}","Rich","49033","FALSE","FALSE","America/Denver"
-"84065","40.4954","-111.94443","Riverton","UT","Utah","TRUE","","43040","797.6","49035","Salt Lake","{""49035"": ""100""}","Salt Lake","49035","FALSE","FALSE","America/Denver"
-"84066","40.32926","-110.02869","Roosevelt","UT","Utah","TRUE","","12351","28.4","49013","Duchesne","{""49013"": ""84.78"", ""49047"": ""15.22""}","Duchesne|Uintah","49013|49047","FALSE","FALSE","America/Denver"
-"84067","41.17183","-112.04814","Roy","UT","Utah","TRUE","","39314","1856.3","49057","Weber","{""49057"": ""100""}","Weber","49057","FALSE","FALSE","America/Denver"
-"84069","40.3814","-112.49747","Rush Valley","UT","Utah","TRUE","","537","3.2","49045","Tooele","{""49045"": ""100""}","Tooele","49045","FALSE","FALSE","America/Denver"
-"84070","40.577","-111.88907","Sandy","UT","Utah","TRUE","","28534","1531.3","49035","Salt Lake","{""49035"": ""100""}","Salt Lake","49035","FALSE","FALSE","America/Denver"
-"84071","40.41818","-112.31834","Stockton","UT","Utah","TRUE","","1486","5.4","49045","Tooele","{""49045"": ""100""}","Tooele","49045","FALSE","FALSE","America/Denver"
-"84072","40.35538","-110.66026","Tabiona","UT","Utah","TRUE","","383","1.2","49013","Duchesne","{""49013"": ""100""}","Duchesne","49013","FALSE","FALSE","America/Denver"
-"84073","40.35652","-110.435","Talmage","UT","Utah","TRUE","","296","6.7","49013","Duchesne","{""49013"": ""100""}","Duchesne","49013","FALSE","FALSE","America/Denver"
-"84074","40.55929","-112.27335","Tooele","UT","Utah","TRUE","","52153","184.4","49045","Tooele","{""49045"": ""100""}","Tooele","49045","FALSE","FALSE","America/Denver"
-"84075","41.08139","-112.07974","Syracuse","UT","Utah","TRUE","","29411","801.6","49011","Davis","{""49011"": ""100""}","Davis","49011","FALSE","FALSE","America/Denver"
-"84076","40.46648","-109.84551","Tridell","UT","Utah","TRUE","","412","8.9","49047","Uintah","{""49047"": ""100""}","Uintah","49047","FALSE","FALSE","America/Denver"
-"84078","40.62968","-109.48291","Vernal","UT","Utah","TRUE","","30207","12.6","49047","Uintah","{""49047"": ""100"", ""49009"": ""0""}","Uintah|Daggett","49047|49009","FALSE","FALSE","America/Denver"
-"84080","40.09995","-112.4301","Vernon","UT","Utah","TRUE","","329","3.6","49045","Tooele","{""49045"": ""100""}","Tooele","49045","FALSE","FALSE","America/Denver"
-"84081","40.60284","-112.03764","West Jordan","UT","Utah","TRUE","","49933","1317.4","49035","Salt Lake","{""49035"": ""100""}","Salt Lake","49035","FALSE","FALSE","America/Denver"
-"84082","40.36581","-111.39533","Wallsburg","UT","Utah","TRUE","","1026","3.7","49051","Wasatch","{""49051"": ""100""}","Wasatch","49051","FALSE","FALSE","America/Denver"
-"84083","40.86034","-113.67265","Wendover","UT","Utah","TRUE","","1202","0.2","49045","Tooele","{""49045"": ""92.35"", ""49023"": ""6.46"", ""49003"": ""1.19""}","Tooele|Juab|Box Elder","49045|49023|49003","FALSE","FALSE","America/Denver"
-"84084","40.62288","-111.96464","West Jordan","UT","Utah","TRUE","","38151","1908.7","49035","Salt Lake","{""49035"": ""100""}","Salt Lake","49035","FALSE","FALSE","America/Denver"
-"84085","40.58696","-109.92909","Whiterocks","UT","Utah","TRUE","","457","1.8","49047","Uintah","{""49047"": ""100""}","Uintah","49047","FALSE","FALSE","America/Denver"
-"84086","41.47983","-111.22871","Woodruff","UT","Utah","TRUE","","356","1.4","49033","Rich","{""49033"": ""100""}","Rich","49033","FALSE","FALSE","America/Denver"
-"84087","40.88573","-111.93128","Woods Cross","UT","Utah","TRUE","","15839","471.7","49011","Davis","{""49011"": ""100""}","Davis","49011","FALSE","FALSE","America/Denver"
-"84088","40.59515","-111.96092","West Jordan","UT","Utah","TRUE","","37014","1518.3","49035","Salt Lake","{""49035"": ""100""}","Salt Lake","49035","FALSE","FALSE","America/Denver"
-"84092","40.55778","-111.74311","Sandy","UT","Utah","TRUE","","29379","207.7","49035","Salt Lake","{""49035"": ""100""}","Salt Lake","49035","FALSE","FALSE","America/Denver"
-"84093","40.59475","-111.82855","Sandy","UT","Utah","TRUE","","23971","1703.8","49035","Salt Lake","{""49035"": ""100""}","Salt Lake","49035","FALSE","FALSE","America/Denver"
-"84094","40.57188","-111.86214","Sandy","UT","Utah","TRUE","","30427","2300.7","49035","Salt Lake","{""49035"": ""100""}","Salt Lake","49035","FALSE","FALSE","America/Denver"
-"84095","40.55724","-111.9789","South Jordan","UT","Utah","TRUE","","71427","1217.1","49035","Salt Lake","{""49035"": ""100""}","Salt Lake","49035","FALSE","FALSE","America/Denver"
-"84096","40.51368","-112.09853","Herriman","UT","Utah","TRUE","","51852","285.1","49035","Salt Lake","{""49035"": ""100""}","Salt Lake","49035","FALSE","FALSE","America/Denver"
-"84097","40.30481","-111.67313","Orem","UT","Utah","TRUE","","22405","1439.8","49049","Utah","{""49049"": ""100""}","Utah","49049","FALSE","FALSE","America/Denver"
-"84098","40.73472","-111.53432","Park City","UT","Utah","TRUE","","19396","91.2","49043","Summit","{""49043"": ""100""}","Summit","49043","FALSE","FALSE","America/Denver"
-"84101","40.75643","-111.90012","Salt Lake City","UT","Utah","TRUE","","4606","977.0","49035","Salt Lake","{""49035"": ""100""}","Salt Lake","49035","FALSE","FALSE","America/Denver"
-"84102","40.76021","-111.86439","Salt Lake City","UT","Utah","TRUE","","18643","4058.2","49035","Salt Lake","{""49035"": ""100""}","Salt Lake","49035","FALSE","FALSE","America/Denver"
-"84103","40.79519","-111.84247","Salt Lake City","UT","Utah","TRUE","","22198","567.4","49035","Salt Lake","{""49035"": ""100""}","Salt Lake","49035","FALSE","FALSE","America/Denver"
-"84104","40.74865","-111.98221","Salt Lake City","UT","Utah","TRUE","","27209","494.8","49035","Salt Lake","{""49035"": ""100""}","Salt Lake","49035","FALSE","FALSE","America/Denver"
-"84105","40.73826","-111.85954","Salt Lake City","UT","Utah","TRUE","","22352","2836.2","49035","Salt Lake","{""49035"": ""100""}","Salt Lake","49035","FALSE","FALSE","America/Denver"
-"84106","40.70674","-111.85571","Salt Lake City","UT","Utah","TRUE","","35106","2245.2","49035","Salt Lake","{""49035"": ""100""}","Salt Lake","49035","FALSE","FALSE","America/Denver"
-"84107","40.65805","-111.88444","Salt Lake City","UT","Utah","TRUE","","33806","1740.7","49035","Salt Lake","{""49035"": ""100""}","Salt Lake","49035","FALSE","FALSE","America/Denver"
-"84108","40.7899","-111.73783","Salt Lake City","UT","Utah","TRUE","","22347","125.6","49035","Salt Lake","{""49035"": ""100""}","Salt Lake","49035","FALSE","FALSE","America/Denver"
-"84109","40.70266","-111.70607","Salt Lake City","UT","Utah","TRUE","","24758","155.0","49035","Salt Lake","{""49035"": ""100""}","Salt Lake","49035","FALSE","FALSE","America/Denver"
-"84111","40.75591","-111.88397","Salt Lake City","UT","Utah","TRUE","","12795","3445.3","49035","Salt Lake","{""49035"": ""100""}","Salt Lake","49035","FALSE","FALSE","America/Denver"
-"84112","40.76504","-111.84139","Salt Lake City","UT","Utah","TRUE","","2190","980.7","49035","Salt Lake","{""49035"": ""100""}","Salt Lake","49035","FALSE","FALSE","America/Denver"
-"84113","40.7603","-111.83585","Salt Lake City","UT","Utah","TRUE","","194","320.1","49035","Salt Lake","{""49035"": ""100""}","Salt Lake","49035","FALSE","FALSE","America/Denver"
-"84115","40.71451","-111.89271","Salt Lake City","UT","Utah","TRUE","","27224","1707.1","49035","Salt Lake","{""49035"": ""100""}","Salt Lake","49035","FALSE","FALSE","America/Denver"
-"84116","40.79988","-111.9573","Salt Lake City","UT","Utah","TRUE","","34326","354.2","49035","Salt Lake","{""49035"": ""100""}","Salt Lake","49035","FALSE","FALSE","America/Denver"
-"84117","40.66104","-111.83464","Salt Lake City","UT","Utah","TRUE","","24939","1684.8","49035","Salt Lake","{""49035"": ""100""}","Salt Lake","49035","FALSE","FALSE","America/Denver"
-"84118","40.6535","-112.01342","Salt Lake City","UT","Utah","TRUE","","71309","1606.3","49035","Salt Lake","{""49035"": ""100""}","Salt Lake","49035","FALSE","FALSE","America/Denver"
-"84119","40.70158","-111.94607","West Valley City","UT","Utah","TRUE","","54862","1756.4","49035","Salt Lake","{""49035"": ""100""}","Salt Lake","49035","FALSE","FALSE","America/Denver"
-"84120","40.69747","-112.00121","West Valley City","UT","Utah","TRUE","","52676","1999.0","49035","Salt Lake","{""49035"": ""100""}","Salt Lake","49035","FALSE","FALSE","America/Denver"
-"84121","40.62561","-111.69818","Salt Lake City","UT","Utah","TRUE","","40857","245.1","49035","Salt Lake","{""49035"": ""100""}","Salt Lake","49035","FALSE","FALSE","America/Denver"
-"84123","40.65882","-111.92161","Salt Lake City","UT","Utah","TRUE","","39295","1845.9","49035","Salt Lake","{""49035"": ""100""}","Salt Lake","49035","FALSE","FALSE","America/Denver"
-"84124","40.67722","-111.81329","Salt Lake City","UT","Utah","TRUE","","22644","1505.5","49035","Salt Lake","{""49035"": ""100""}","Salt Lake","49035","FALSE","FALSE","America/Denver"
-"84128","40.70043","-112.04676","West Valley City","UT","Utah","TRUE","","25888","977.3","49035","Salt Lake","{""49035"": ""100""}","Salt Lake","49035","FALSE","FALSE","America/Denver"
-"84180","40.77044","-111.9011","Salt Lake City","UT","Utah","TRUE","","0","0.0","49035","Salt Lake","{""49035"": ""0""}","Salt Lake","49035","FALSE","FALSE","America/Denver"
-"84301","41.6082","-112.13016","Bear River City","UT","Utah","TRUE","","753","66.2","49003","Box Elder","{""49003"": ""100""}","Box Elder","49003","FALSE","FALSE","America/Denver"
-"84302","41.54808","-112.04562","Brigham City","UT","Utah","TRUE","","26098","175.1","49003","Box Elder","{""49003"": ""100""}","Box Elder","49003","FALSE","FALSE","America/Denver"
-"84304","41.81658","-111.99687","Cache Junction","UT","Utah","TRUE","","115","3.6","49005","Cache","{""49005"": ""100""}","Cache","49005","FALSE","FALSE","America/Denver"
-"84305","41.94419","-112.07563","Clarkston","UT","Utah","TRUE","","666","6.2","49005","Cache","{""49005"": ""100""}","Cache","49005","FALSE","FALSE","America/Denver"
-"84306","41.79265","-112.06399","Collinston","UT","Utah","TRUE","","276","6.0","49003","Box Elder","{""49003"": ""100""}","Box Elder","49003","FALSE","FALSE","America/Denver"
-"84307","41.51548","-112.49332","Corinne","UT","Utah","TRUE","","1025","0.9","49003","Box Elder","{""49003"": ""100""}","Box Elder","49003","FALSE","FALSE","America/Denver"
-"84308","41.96115","-111.98642","Cornish","UT","Utah","TRUE","","283","4.4","49005","Cache","{""49005"": ""100""}","Cache","49005","FALSE","FALSE","America/Denver"
-"84309","41.71408","-112.09835","Deweyville","UT","Utah","TRUE","","383","17.2","49003","Box Elder","{""49003"": ""100""}","Box Elder","49003","FALSE","FALSE","America/Denver"
-"84310","41.33537","-111.84949","Eden","UT","Utah","TRUE","","4139","14.2","49057","Weber","{""49057"": ""100""}","Weber","49057","FALSE","FALSE","America/Denver"
-"84311","41.8237","-112.11604","Fielding","UT","Utah","TRUE","","534","29.3","49003","Box Elder","{""49003"": ""100""}","Box Elder","49003","FALSE","FALSE","America/Denver"
-"84312","41.77904","-112.15365","Garland","UT","Utah","TRUE","","4901","80.8","49003","Box Elder","{""49003"": ""100""}","Box Elder","49003","FALSE","FALSE","America/Denver"
-"84313","41.65759","-113.96194","Grouse Creek","UT","Utah","TRUE","","91","0.1","49003","Box Elder","{""49003"": ""100""}","Box Elder","49003","FALSE","FALSE","America/Denver"
-"84314","41.64845","-112.09289","Honeyville","UT","Utah","TRUE","","1206","57.9","49003","Box Elder","{""49003"": ""100""}","Box Elder","49003","FALSE","FALSE","America/Denver"
-"84315","41.16686","-112.13653","Hooper","UT","Utah","TRUE","","8993","195.6","49057","Weber","{""49057"": ""95.77"", ""49011"": ""4.23""}","Weber|Davis","49057|49011","FALSE","FALSE","America/Denver"
-"84316","41.76767","-112.4778","Howell","UT","Utah","TRUE","","216","0.5","49003","Box Elder","{""49003"": ""100""}","Box Elder","49003","FALSE","FALSE","America/Denver"
-"84317","41.30437","-111.61868","Huntsville","UT","Utah","TRUE","","2194","3.9","49057","Weber","{""49057"": ""100""}","Weber","49057","FALSE","FALSE","America/Denver"
-"84318","41.80258","-111.81368","Hyde Park","UT","Utah","TRUE","","4745","402.8","49005","Cache","{""49005"": ""100""}","Cache","49005","FALSE","FALSE","America/Denver"
-"84319","41.61013","-111.6665","Hyrum","UT","Utah","TRUE","","8474","33.6","49005","Cache","{""49005"": ""100""}","Cache","49005","FALSE","FALSE","America/Denver"
-"84320","41.96481","-111.84864","Lewiston","UT","Utah","TRUE","","2487","21.6","49005","Cache","{""49005"": ""100""}","Cache","49005","FALSE","FALSE","America/Denver"
-"84321","41.80001","-111.68546","Logan","UT","Utah","TRUE","","46299","92.8","49005","Cache","{""49005"": ""100""}","Cache","49005","FALSE","FALSE","America/Denver"
-"84324","41.48788","-111.9526","Mantua","UT","Utah","TRUE","","700","22.6","49003","Box Elder","{""49003"": ""100""}","Box Elder","49003","FALSE","FALSE","America/Denver"
-"84325","41.72579","-111.99278","Mendon","UT","Utah","TRUE","","2275","23.8","49005","Cache","{""49005"": ""100""}","Cache","49005","FALSE","FALSE","America/Denver"
-"84326","41.67062","-111.81782","Millville","UT","Utah","TRUE","","1908","245.8","49005","Cache","{""49005"": ""100""}","Cache","49005","FALSE","FALSE","America/Denver"
-"84327","41.87166","-111.99469","Newton","UT","Utah","TRUE","","880","19.7","49005","Cache","{""49005"": ""100""}","Cache","49005","FALSE","FALSE","America/Denver"
-"84328","41.54584","-111.83476","Paradise","UT","Utah","TRUE","","1612","10.7","49005","Cache","{""49005"": ""100""}","Cache","49005","FALSE","FALSE","America/Denver"
-"84329","41.76545","-113.41927","Park Valley","UT","Utah","TRUE","","138","0.1","49003","Box Elder","{""49003"": ""100""}","Box Elder","49003","FALSE","FALSE","America/Denver"
-"84330","41.92693","-112.16341","Plymouth","UT","Utah","TRUE","","361","4.8","49003","Box Elder","{""49003"": ""100""}","Box Elder","49003","FALSE","FALSE","America/Denver"
-"84331","41.94851","-112.27356","Portage","UT","Utah","TRUE","","267","1.8","49003","Box Elder","{""49003"": ""100""}","Box Elder","49003","FALSE","FALSE","America/Denver"
-"84332","41.69996","-111.81217","Providence","UT","Utah","TRUE","","7714","712.5","49005","Cache","{""49005"": ""100""}","Cache","49005","FALSE","FALSE","America/Denver"
-"84333","41.90907","-111.81106","Richmond","UT","Utah","TRUE","","2849","43.9","49005","Cache","{""49005"": ""100""}","Cache","49005","FALSE","FALSE","America/Denver"
-"84334","41.78256","-112.14763","Riverside","UT","Utah","TRUE","","180","76.5","49003","Box Elder","{""49003"": ""100""}","Box Elder","49003","FALSE","FALSE","America/Denver"
-"84335","41.83119","-111.8788","Smithfield","UT","Utah","TRUE","","13233","78.1","49005","Cache","{""49005"": ""100""}","Cache","49005","FALSE","FALSE","America/Denver"
-"84336","41.90957","-112.77871","Snowville","UT","Utah","TRUE","","151","0.2","49003","Box Elder","{""49003"": ""100""}","Box Elder","49003","FALSE","FALSE","America/Denver"
-"84337","41.76588","-112.31807","Tremonton","UT","Utah","TRUE","","12857","28.5","49003","Box Elder","{""49003"": ""100""}","Box Elder","49003","FALSE","FALSE","America/Denver"
-"84338","41.91124","-111.93872","Trenton","UT","Utah","TRUE","","498","17.5","49005","Cache","{""49005"": ""100""}","Cache","49005","FALSE","FALSE","America/Denver"
-"84339","41.62534","-111.94442","Wellsville","UT","Utah","TRUE","","5729","39.3","49005","Cache","{""49005"": ""100""}","Cache","49005","FALSE","FALSE","America/Denver"
-"84340","41.37974","-112.04637","Willard","UT","Utah","TRUE","","3471","110.9","49003","Box Elder","{""49003"": ""100""}","Box Elder","49003","FALSE","FALSE","America/Denver"
-"84341","41.77584","-111.80695","Logan","UT","Utah","TRUE","","24398","769.2","49005","Cache","{""49005"": ""100""}","Cache","49005","FALSE","FALSE","America/Denver"
-"84401","41.21865","-112.03814","Ogden","UT","Utah","TRUE","","40250","526.8","49057","Weber","{""49057"": ""100""}","Weber","49057","FALSE","FALSE","America/Denver"
-"84403","41.19446","-111.90253","Ogden","UT","Utah","TRUE","","37207","399.1","49057","Weber","{""49057"": ""100""}","Weber","49057","FALSE","FALSE","America/Denver"
-"84404","41.27066","-112.11644","Ogden","UT","Utah","TRUE","","64093","265.6","49057","Weber","{""49057"": ""100""}","Weber","49057","FALSE","FALSE","America/Denver"
-"84405","41.15797","-111.96657","Ogden","UT","Utah","TRUE","","32516","697.0","49057","Weber","{""49057"": ""79.89"", ""49011"": ""20.11""}","Weber|Davis","49057|49011","FALSE","FALSE","America/Denver"
-"84414","41.32192","-111.9762","Ogden","UT","Utah","TRUE","","30608","726.7","49057","Weber","{""49057"": ""100""}","Weber","49057","FALSE","FALSE","America/Denver"
-"84501","39.547","-110.76031","Price","UT","Utah","TRUE","","13066","35.0","49007","Carbon","{""49007"": ""100""}","Carbon","49007","FALSE","FALSE","America/Denver"
-"84511","37.56298","-109.41441","Blanding","UT","Utah","TRUE","","4546","4.1","49037","San Juan","{""49037"": ""100""}","San Juan","49037","FALSE","FALSE","America/Denver"
-"84512","37.13715","-109.57122","Bluff","UT","Utah","TRUE","","696","1.0","49037","San Juan","{""49037"": ""100""}","San Juan","49037","FALSE","FALSE","America/Denver"
-"84513","39.24423","-111.00988","Castle Dale","UT","Utah","TRUE","","1413","48.3","49015","Emery","{""49015"": ""100""}","Emery","49015","FALSE","FALSE","America/Denver"
-"84515","38.9426","-109.17929","Cisco","UT","Utah","TRUE","","0","0.0","49019","Grand","{""49019"": ""100""}","Grand","49019","FALSE","FALSE","America/Denver"
-"84516","39.143","-111.06883","Clawson","UT","Utah","TRUE","","122","2.0","49015","Emery","{""49015"": ""100""}","Emery","49015","FALSE","FALSE","America/Denver"
-"84518","39.39247","-110.89036","Cleveland","UT","Utah","TRUE","","912","5.3","49015","Emery","{""49015"": ""100""}","Emery","49015","FALSE","FALSE","America/Denver"
-"84520","39.52915","-110.42051","East Carbon","UT","Utah","TRUE","","1202","82.0","49007","Carbon","{""49007"": ""100""}","Carbon","49007","FALSE","FALSE","America/Denver"
-"84521","39.42156","-110.78186","Elmo","UT","Utah","TRUE","","739","5.0","49015","Emery","{""49015"": ""100""}","Emery","49015","FALSE","FALSE","America/Denver"
-"84522","38.92041","-111.19993","Emery","UT","Utah","TRUE","","390","2.7","49015","Emery","{""49015"": ""100""}","Emery","49015","FALSE","FALSE","America/Denver"
-"84523","39.09447","-111.19997","Ferron","UT","Utah","TRUE","","1679","5.7","49015","Emery","{""49015"": ""100""}","Emery","49015","FALSE","FALSE","America/Denver"
-"84525","38.94652","-110.25453","Green River","UT","Utah","TRUE","","958","0.3","49015","Emery","{""49015"": ""95.69"", ""49019"": ""4.31""}","Emery|Grand","49015|49019","FALSE","FALSE","America/Denver"
-"84526","39.74541","-110.94615","Helper","UT","Utah","TRUE","","3924","4.7","49007","Carbon","{""49007"": ""99.76"", ""49049"": ""0.19"", ""49013"": ""0.05""}","Carbon|Utah|Duchesne","49007|49049|49013","FALSE","FALSE","America/Denver"
-"84528","39.40956","-111.07856","Huntington","UT","Utah","TRUE","","2621","5.8","49015","Emery","{""49015"": ""100""}","Emery","49015","FALSE","FALSE","America/Denver"
-"84529","39.67943","-110.82074","Kenilworth","UT","Utah","TRUE","","204","62.1","49007","Carbon","{""49007"": ""100""}","Carbon","49007","FALSE","FALSE","America/Denver"
-"84530","38.2889","-109.16129","La Sal","UT","Utah","TRUE","","291","0.4","49037","San Juan","{""49037"": ""100""}","San Juan","49037","FALSE","FALSE","America/Denver"
-"84531","37.15828","-109.88439","Mexican Hat","UT","Utah","TRUE","","946","0.6","49037","San Juan","{""49037"": ""96.88"", ""04001"": ""3.12""}","San Juan|Apache","49037|04001","FALSE","FALSE","America/Denver"
-"84532","38.50073","-109.53381","Moab","UT","Utah","TRUE","","10118","2.7","49019","Grand","{""49019"": ""93.28"", ""49037"": ""6.72""}","Grand|San Juan","49019|49037","FALSE","FALSE","America/Denver"
-"84533","37.56105","-110.43123","Lake Powell","UT","Utah","TRUE","","167","0.0","49025","Kane","{""49025"": ""53.93"", ""49017"": ""33.33"", ""49037"": ""12.73""}","Kane|Garfield|San Juan","49025|49017|49037","FALSE","FALSE","America/Denver"
-"84534","37.25309","-109.23317","Montezuma Creek","UT","Utah","TRUE","","2757","2.4","49037","San Juan","{""49037"": ""100""}","San Juan","49037","FALSE","FALSE","America/Denver"
-"84535","37.99929","-109.56779","Monticello","UT","Utah","TRUE","","3404","0.7","49037","San Juan","{""49037"": ""100""}","San Juan","49037","FALSE","FALSE","America/Denver"
-"84536","37.12298","-110.3505","Monument Valley","UT","Utah","TRUE","","1679","1.1","49037","San Juan","{""49037"": ""80.74"", ""04017"": ""19.26""}","San Juan|Navajo","49037|04017","FALSE","FALSE","America/Denver"
-"84537","39.32972","-111.19802","Orangeville","UT","Utah","TRUE","","1283","5.3","49015","Emery","{""49015"": ""100""}","Emery","49015","FALSE","FALSE","America/Denver"
-"84539","39.69371","-110.27228","Sunnyside","UT","Utah","TRUE","","295","2.8","49007","Carbon","{""49007"": ""100""}","Carbon","49007","FALSE","FALSE","America/Denver"
-"84540","39.24348","-109.43536","Thompson","UT","Utah","TRUE","","99","0.0","49019","Grand","{""49019"": ""95.65"", ""49047"": ""4.35""}","Grand|Uintah","49019|49047","FALSE","FALSE","America/Denver"
-"84542","39.54221","-110.73512","Wellington","UT","Utah","TRUE","","1617","93.2","49007","Carbon","{""49007"": ""100""}","Carbon","49007","FALSE","FALSE","America/Denver"
-"84601","40.22724","-111.69697","Provo","UT","Utah","TRUE","","34206","944.8","49049","Utah","{""49049"": ""100""}","Utah","49049","FALSE","FALSE","America/Denver"
-"84604","40.34321","-111.5913","Provo","UT","Utah","TRUE","","45514","140.3","49049","Utah","{""49049"": ""99.83"", ""49051"": ""0.17""}","Utah|Wasatch","49049|49051","FALSE","FALSE","America/Denver"
-"84606","40.21444","-111.62555","Provo","UT","Utah","TRUE","","37080","1264.7","49049","Utah","{""49049"": ""100""}","Utah","49049","FALSE","FALSE","America/Denver"
-"84620","38.91484","-111.92771","Aurora","UT","Utah","TRUE","","831","19.9","49041","Sevier","{""49041"": ""100""}","Sevier","49041","FALSE","FALSE","America/Denver"
-"84621","39.05132","-111.82568","Axtell","UT","Utah","TRUE","","91","4.8","49039","Sanpete","{""49039"": ""100""}","Sanpete","49039","FALSE","FALSE","America/Denver"
-"84622","39.10383","-111.82172","Centerfield","UT","Utah","TRUE","","1918","38.2","49039","Sanpete","{""49039"": ""100""}","Sanpete","49039","FALSE","FALSE","America/Denver"
-"84623","39.45609","-111.58605","Chester","UT","Utah","TRUE","","492","9.1","49039","Sanpete","{""49039"": ""100""}","Sanpete","49039","FALSE","FALSE","America/Denver"
-"84624","39.40755","-112.83985","Delta","UT","Utah","TRUE","","5869","4.6","49027","Millard","{""49027"": ""100""}","Millard","49027","FALSE","FALSE","America/Denver"
-"84626","39.90261","-112.00195","Elberta","UT","Utah","TRUE","","454","2.0","49049","Utah","{""49049"": ""100""}","Utah","49049","FALSE","FALSE","America/Denver"
-"84627","39.35416","-111.56517","Ephraim","UT","Utah","TRUE","","7434","86.2","49039","Sanpete","{""49039"": ""100""}","Sanpete","49039","FALSE","FALSE","America/Denver"
-"84628","39.97343","-112.20579","Eureka","UT","Utah","TRUE","","643","12.1","49023","Juab","{""49023"": ""95.98"", ""49045"": ""4.02""}","Juab|Tooele","49023|49045","FALSE","FALSE","America/Denver"
-"84629","39.80007","-111.47028","Fairview","UT","Utah","TRUE","","2921","4.3","49039","Sanpete","{""49039"": ""94.03"", ""49049"": ""5.97""}","Sanpete|Utah","49039|49049","FALSE","FALSE","America/Denver"
-"84630","39.29518","-111.81731","Fayette","UT","Utah","TRUE","","651","2.5","49039","Sanpete","{""49039"": ""100""}","Sanpete","49039","FALSE","FALSE","America/Denver"
-"84631","38.95992","-112.38345","Fillmore","UT","Utah","TRUE","","3024","7.1","49027","Millard","{""49027"": ""100""}","Millard","49027","FALSE","FALSE","America/Denver"
-"84632","39.62017","-111.65825","Fountain Green","UT","Utah","TRUE","","965","14.1","49039","Sanpete","{""49039"": ""100""}","Sanpete","49039","FALSE","FALSE","America/Denver"
-"84633","39.97","-111.90429","Goshen","UT","Utah","TRUE","","1003","9.1","49049","Utah","{""49049"": ""100""}","Utah","49049","FALSE","FALSE","America/Denver"
-"84634","39.1584","-111.81108","Gunnison","UT","Utah","TRUE","","3434","31.5","49039","Sanpete","{""49039"": ""100""}","Sanpete","49039","FALSE","FALSE","America/Denver"
-"84635","39.40218","-112.72509","Hinckley","UT","Utah","TRUE","","699","7.1","49027","Millard","{""49027"": ""100""}","Millard","49027","FALSE","FALSE","America/Denver"
-"84636","39.14063","-112.33894","Holden","UT","Utah","TRUE","","550","3.2","49027","Millard","{""49027"": ""100""}","Millard","49027","FALSE","FALSE","America/Denver"
-"84637","38.72278","-112.49285","Kanosh","UT","Utah","TRUE","","865","2.5","49027","Millard","{""49027"": ""100""}","Millard","49027","FALSE","FALSE","America/Denver"
-"84638","39.49963","-112.26359","Leamington","UT","Utah","TRUE","","363","3.0","49027","Millard","{""49027"": ""100""}","Millard","49027","FALSE","FALSE","America/Denver"
-"84639","39.50438","-111.88128","Levan","UT","Utah","TRUE","","904","1.7","49023","Juab","{""49023"": ""100""}","Juab","49023","FALSE","FALSE","America/Denver"
-"84640","39.49824","-112.38168","Lynndyl","UT","Utah","TRUE","","150","1.6","49027","Millard","{""49027"": ""100""}","Millard","49027","FALSE","FALSE","America/Denver"
-"84642","39.28853","-111.61537","Manti","UT","Utah","TRUE","","3735","28.8","49039","Sanpete","{""49039"": ""100""}","Sanpete","49039","FALSE","FALSE","America/Denver"
-"84643","39.11518","-111.71294","Mayfield","UT","Utah","TRUE","","501","7.5","49039","Sanpete","{""49039"": ""100""}","Sanpete","49039","FALSE","FALSE","America/Denver"
-"84645","39.84447","-111.8442","Mona","UT","Utah","TRUE","","3021","13.8","49023","Juab","{""49023"": ""100""}","Juab","49023","FALSE","FALSE","America/Denver"
-"84646","39.54217","-111.61378","Moroni","UT","Utah","TRUE","","1634","16.2","49039","Sanpete","{""49039"": ""100""}","Sanpete","49039","FALSE","FALSE","America/Denver"
-"84647","39.54111","-111.41587","Mount Pleasant","UT","Utah","TRUE","","4096","14.4","49039","Sanpete","{""49039"": ""100""}","Sanpete","49039","FALSE","FALSE","America/Denver"
-"84648","39.68585","-111.86448","Nephi","UT","Utah","TRUE","","6484","16.1","49023","Juab","{""49023"": ""100""}","Juab","49023","FALSE","FALSE","America/Denver"
-"84649","39.33902","-112.33759","Oak City","UT","Utah","TRUE","","826","1.4","49027","Millard","{""49027"": ""100""}","Millard","49027","FALSE","FALSE","America/Denver"
-"84651","39.95422","-111.71464","Payson","UT","Utah","TRUE","","26710","94.7","49049","Utah","{""49049"": ""100""}","Utah","49049","FALSE","FALSE","America/Denver"
-"84652","39.01694","-111.86822","Redmond","UT","Utah","TRUE","","802","26.3","49041","Sevier","{""49041"": ""100""}","Sevier","49041","FALSE","FALSE","America/Denver"
-"84653","40.02761","-111.64407","Salem","UT","Utah","TRUE","","9313","162.1","49049","Utah","{""49049"": ""100""}","Utah","49049","FALSE","FALSE","America/Denver"
-"84654","38.87875","-111.62476","Salina","UT","Utah","TRUE","","2686","4.2","49041","Sevier","{""49041"": ""100""}","Sevier","49041","FALSE","FALSE","America/Denver"
-"84655","39.97373","-111.80373","Santaquin","UT","Utah","TRUE","","13106","111.1","49049","Utah","{""49049"": ""100""}","Utah","49049","FALSE","FALSE","America/Denver"
-"84656","39.13949","-112.07459","Scipio","UT","Utah","TRUE","","308","6.3","49027","Millard","{""49027"": ""97.68"", ""49023"": ""2.32""}","Millard|Juab","49027|49023","FALSE","FALSE","America/Denver"
-"84657","38.81494","-111.9393","Sigurd","UT","Utah","TRUE","","526","9.8","49041","Sevier","{""49041"": ""100""}","Sevier","49041","FALSE","FALSE","America/Denver"
-"84660","40.06445","-111.56862","Spanish Fork","UT","Utah","TRUE","","42027","116.4","49049","Utah","{""49049"": ""100""}","Utah","49049","FALSE","FALSE","America/Denver"
-"84662","39.43194","-111.47365","Spring City","UT","Utah","TRUE","","1437","7.0","49039","Sanpete","{""49039"": ""100""}","Sanpete","49039","FALSE","FALSE","America/Denver"
-"84663","40.16568","-111.49505","Springville","UT","Utah","TRUE","","34063","96.1","49049","Utah","{""49049"": ""100""}","Utah","49049","FALSE","FALSE","America/Denver"
-"84664","40.11509","-111.56511","Mapleton","UT","Utah","TRUE","","9586","216.7","49049","Utah","{""49049"": ""100""}","Utah","49049","FALSE","FALSE","America/Denver"
-"84665","39.19799","-111.66517","Sterling","UT","Utah","TRUE","","551","9.4","49039","Sanpete","{""49039"": ""100""}","Sanpete","49039","FALSE","FALSE","America/Denver"
-"84667","39.49209","-111.65333","Wales","UT","Utah","TRUE","","392","9.3","49039","Sanpete","{""49039"": ""100""}","Sanpete","49039","FALSE","FALSE","America/Denver"
-"84701","38.67463","-111.83313","Richfield","UT","Utah","TRUE","","9005","13.0","49041","Sevier","{""49041"": ""100""}","Sevier","49041","FALSE","FALSE","America/Denver"
-"84710","37.4756","-112.49915","Alton","UT","Utah","TRUE","","218","2.7","49025","Kane","{""49025"": ""100""}","Kane","49025","FALSE","FALSE","America/Denver"
-"84711","38.67624","-112.00587","Annabella","UT","Utah","TRUE","","843","9.0","49041","Sevier","{""49041"": ""100""}","Sevier","49041","FALSE","FALSE","America/Denver"
-"84712","37.99958","-111.94426","Antimony","UT","Utah","TRUE","","115","0.2","49017","Garfield","{""49017"": ""73.13"", ""49031"": ""26.87""}","Garfield|Piute","49017|49031","FALSE","FALSE","America/Denver"
-"84713","38.32633","-112.54937","Beaver","UT","Utah","TRUE","","3484","13.2","49001","Beaver","{""49001"": ""99.26"", ""49027"": ""0.74""}","Beaver|Millard","49001|49027","FALSE","FALSE","America/Denver"
-"84714","37.8477","-113.72807","Beryl","UT","Utah","TRUE","","703","0.7","49021","Iron","{""49021"": ""100""}","Iron","49021","FALSE","FALSE","America/Denver"
-"84715","38.28997","-111.54894","Bicknell","UT","Utah","TRUE","","328","4.4","49055","Wayne","{""49055"": ""100""}","Wayne","49055","FALSE","FALSE","America/Denver"
-"84716","37.96476","-111.44665","Boulder","UT","Utah","TRUE","","338","0.5","49017","Garfield","{""49017"": ""100""}","Garfield","49017","FALSE","FALSE","America/Denver"
-"84718","37.53954","-112.04512","Cannonville","UT","Utah","TRUE","","322","4.2","49017","Garfield","{""49017"": ""93.65"", ""49025"": ""6.35""}","Garfield|Kane","49017|49025","FALSE","FALSE","America/Denver"
-"84719","37.67542","-112.80149","Brian Head","UT","Utah","TRUE","","69","0.4","49021","Iron","{""49021"": ""100""}","Iron","49021","FALSE","FALSE","America/Denver"
-"84720","37.58866","-113.16826","Cedar City","UT","Utah","TRUE","","21883","27.2","49021","Iron","{""49021"": ""100""}","Iron","49021","FALSE","FALSE","America/Denver"
-"84721","37.87876","-113.20454","Cedar City","UT","Utah","TRUE","","23797","36.3","49021","Iron","{""49021"": ""100""}","Iron","49021","FALSE","FALSE","America/Denver"
-"84722","37.44017","-113.61312","Central","UT","Utah","TRUE","","883","24.5","49053","Washington","{""49053"": ""100""}","Washington","49053","FALSE","FALSE","America/Denver"
-"84723","38.17953","-112.25043","Circleville","UT","Utah","TRUE","","760","18.7","49031","Piute","{""49031"": ""100""}","Piute","49031","FALSE","FALSE","America/Denver"
-"84724","38.67525","-112.14893","Elsinore","UT","Utah","TRUE","","1188","118.8","49041","Sevier","{""49041"": ""100""}","Sevier","49041","FALSE","FALSE","America/Denver"
-"84725","37.53615","-113.76936","Enterprise","UT","Utah","TRUE","","1535","3.5","49053","Washington","{""49053"": ""100""}","Washington","49053","FALSE","FALSE","America/Denver"
-"84726","37.73904","-111.59129","Escalante","UT","Utah","TRUE","","773","0.8","49017","Garfield","{""49017"": ""100""}","Garfield","49017","FALSE","FALSE","America/Denver"
-"84728","39.25789","-113.92729","Garrison","UT","Utah","TRUE","","35","0.0","49027","Millard","{""49027"": ""100""}","Millard","49027","FALSE","FALSE","America/Denver"
-"84729","37.36657","-112.60246","Glendale","UT","Utah","TRUE","","268","1.0","49025","Kane","{""49025"": ""100""}","Kane","49025","FALSE","FALSE","America/Denver"
-"84730","38.73619","-112.00509","Glenwood","UT","Utah","TRUE","","313","10.9","49041","Sevier","{""49041"": ""100""}","Sevier","49041","FALSE","FALSE","America/Denver"
-"84731","38.27526","-112.85381","Greenville","UT","Utah","TRUE","","201","1.0","49001","Beaver","{""49001"": ""100""}","Beaver","49001","FALSE","FALSE","America/Denver"
-"84732","38.4454","-111.9023","Greenwich","UT","Utah","TRUE","","51","2.1","49031","Piute","{""49031"": ""100""}","Piute","49031","FALSE","FALSE","America/Denver"
-"84733","37.33081","-113.8966","Gunlock","UT","Utah","TRUE","","100","0.4","49053","Washington","{""49053"": ""100""}","Washington","49053","FALSE","FALSE","America/Denver"
-"84734","38.30074","-110.64158","Hanksville","UT","Utah","TRUE","","310","0.1","49055","Wayne","{""49055"": ""100""}","Wayne","49055","FALSE","FALSE","America/Denver"
-"84735","37.64061","-112.43069","Hatch","UT","Utah","TRUE","","234","0.7","49017","Garfield","{""49017"": ""100""}","Garfield","49017","FALSE","FALSE","America/Denver"
-"84736","37.55015","-111.99608","Henrieville","UT","Utah","TRUE","","265","11.7","49017","Garfield","{""49017"": ""100""}","Garfield","49017","FALSE","FALSE","America/Denver"
-"84737","37.09795","-113.23307","Hurricane","UT","Utah","TRUE","","18226","35.7","49053","Washington","{""49053"": ""100""}","Washington","49053","FALSE","FALSE","America/Denver"
-"84738","37.17879","-113.70683","Ivins","UT","Utah","TRUE","","8736","152.9","49053","Washington","{""49053"": ""100""}","Washington","49053","FALSE","FALSE","America/Denver"
-"84739","38.63428","-112.31568","Joseph","UT","Utah","TRUE","","462","6.4","49041","Sevier","{""49041"": ""100""}","Sevier","49041","FALSE","FALSE","America/Denver"
-"84740","38.27519","-112.25306","Junction","UT","Utah","TRUE","","253","2.0","49031","Piute","{""49031"": ""100""}","Piute","49031","FALSE","FALSE","America/Denver"
-"84741","37.18055","-112.30607","Kanab","UT","Utah","TRUE","","6021","1.7","49025","Kane","{""49025"": ""100""}","Kane","49025","FALSE","FALSE","America/Denver"
-"84742","37.54024","-113.2051","Kanarraville","UT","Utah","TRUE","","246","3.4","49021","Iron","{""49021"": ""100""}","Iron","49021","FALSE","FALSE","America/Denver"
-"84743","38.17418","-112.13845","Kingston","UT","Utah","TRUE","","17","0.2","49031","Piute","{""49031"": ""100""}","Piute","49031","FALSE","FALSE","America/Denver"
-"84744","38.58047","-111.89864","Koosharem","UT","Utah","TRUE","","323","3.2","49041","Sevier","{""49041"": ""89.29"", ""49031"": ""10.71""}","Sevier|Piute","49041|49031","FALSE","FALSE","America/Denver"
-"84745","37.23152","-113.24466","La Verkin","UT","Utah","TRUE","","4376","97.8","49053","Washington","{""49053"": ""100""}","Washington","49053","FALSE","FALSE","America/Denver"
-"84746","37.24275","-113.35624","Leeds","UT","Utah","TRUE","","1103","45.9","49053","Washington","{""49053"": ""100""}","Washington","49053","FALSE","FALSE","America/Denver"
-"84747","38.40658","-111.64383","Loa","UT","Utah","TRUE","","1093","6.3","49055","Wayne","{""49055"": ""100""}","Wayne","49055","FALSE","FALSE","America/Denver"
-"84749","38.41847","-111.53617","Lyman","UT","Utah","TRUE","","248","2.4","49055","Wayne","{""49055"": ""100""}","Wayne","49055","FALSE","FALSE","America/Denver"
-"84750","38.44529","-112.19569","Marysvale","UT","Utah","TRUE","","708","2.2","49031","Piute","{""49031"": ""100""}","Piute","49031","FALSE","FALSE","America/Denver"
-"84751","38.48633","-113.0578","Milford","UT","Utah","TRUE","","2064","2.7","49001","Beaver","{""49001"": ""99.76"", ""49027"": ""0.24""}","Beaver|Millard","49001|49027","FALSE","FALSE","America/Denver"
-"84752","38.20899","-112.89068","Minersville","UT","Utah","TRUE","","933","10.9","49001","Beaver","{""49001"": ""100""}","Beaver","49001","FALSE","FALSE","America/Denver"
-"84753","37.98971","-113.88556","Modena","UT","Utah","TRUE","","13","0.0","49021","Iron","{""49021"": ""96.15"", ""49001"": ""3.85""}","Iron|Beaver","49021|49001","FALSE","FALSE","America/Denver"
-"84754","38.62331","-112.10996","Monroe","UT","Utah","TRUE","","4022","24.5","49041","Sevier","{""49041"": ""100""}","Sevier","49041","FALSE","FALSE","America/Denver"
-"84755","37.23671","-112.78611","Mount Carmel","UT","Utah","TRUE","","72","0.3","49025","Kane","{""49025"": ""100""}","Kane","49025","FALSE","FALSE","America/Denver"
-"84756","37.59004","-113.54194","Newcastle","UT","Utah","TRUE","","291","0.8","49021","Iron","{""49021"": ""97.81"", ""49053"": ""2.19""}","Iron|Washington","49021|49053","FALSE","FALSE","America/Denver"
-"84757","37.45599","-113.25131","New Harmony","UT","Utah","TRUE","","1275","9.6","49053","Washington","{""49053"": ""94.17"", ""49021"": ""5.83""}","Washington|Iron","49053|49021","FALSE","FALSE","America/Denver"
-"84758","37.30207","-112.76235","Orderville","UT","Utah","TRUE","","685","3.4","49025","Kane","{""49025"": ""100""}","Kane","49025","FALSE","FALSE","America/Denver"
-"84759","37.90784","-112.39486","Panguitch","UT","Utah","TRUE","","2150","1.7","49017","Garfield","{""49017"": ""100""}","Garfield","49017","FALSE","FALSE","America/Denver"
-"84760","37.93734","-112.67608","Paragonah","UT","Utah","TRUE","","531","1.4","49021","Iron","{""49021"": ""100""}","Iron","49021","FALSE","FALSE","America/Denver"
-"84761","37.87441","-112.84236","Parowan","UT","Utah","TRUE","","3350","8.5","49021","Iron","{""49021"": ""100""}","Iron","49021","FALSE","FALSE","America/Denver"
-"84762","37.47132","-112.74162","Duck Creek Village","UT","Utah","TRUE","","78","0.1","49025","Kane","{""49025"": ""97.18"", ""49017"": ""2.82""}","Kane|Garfield","49025|49017","FALSE","FALSE","America/Denver"
-"84763","37.14232","-113.07054","Rockville","UT","Utah","TRUE","","223","5.1","49053","Washington","{""49053"": ""100""}","Washington","49053","FALSE","FALSE","America/Denver"
-"84764","37.61843","-112.17352","Bryce","UT","Utah","TRUE","","299","2.2","49017","Garfield","{""49017"": ""100""}","Garfield","49017","FALSE","FALSE","America/Denver"
-"84765","37.12813","-113.67604","Santa Clara","UT","Utah","TRUE","","7168","290.3","49053","Washington","{""49053"": ""100""}","Washington","49053","FALSE","FALSE","America/Denver"
-"84766","38.57636","-112.31712","Sevier","UT","Utah","TRUE","","327","2.4","49041","Sevier","{""49041"": ""100""}","Sevier","49041","FALSE","FALSE","America/Denver"
-"84767","37.237","-112.98642","Springdale","UT","Utah","TRUE","","499","0.7","49053","Washington","{""49053"": ""100""}","Washington","49053","FALSE","FALSE","America/Denver"
-"84770","37.17567","-113.60824","Saint George","UT","Utah","TRUE","","42578","313.8","49053","Washington","{""49053"": ""100""}","Washington","49053","FALSE","FALSE","America/Denver"
-"84772","37.78078","-112.93863","Summit","UT","Utah","TRUE","","228","12.9","49021","Iron","{""49021"": ""100""}","Iron","49021","FALSE","FALSE","America/Denver"
-"84773","38.2265","-111.34215","Teasdale","UT","Utah","TRUE","","339","1.3","49055","Wayne","{""49055"": ""100""}","Wayne","49055","FALSE","FALSE","America/Denver"
-"84774","37.29052","-113.2812","Toquerville","UT","Utah","TRUE","","1779","16.5","49053","Washington","{""49053"": ""100""}","Washington","49053","FALSE","FALSE","America/Denver"
-"84775","38.07","-111.00525","Torrey","UT","Utah","TRUE","","371","0.3","49055","Wayne","{""49055"": ""97.91"", ""49017"": ""2.09""}","Wayne|Garfield","49055|49017","FALSE","FALSE","America/Denver"
-"84776","37.63061","-112.08028","Tropic","UT","Utah","TRUE","","506","19.5","49017","Garfield","{""49017"": ""100""}","Garfield","49017","FALSE","FALSE","America/Denver"
-"84779","37.33956","-113.12071","Virgin","UT","Utah","TRUE","","662","1.2","49053","Washington","{""49053"": ""100""}","Washington","49053","FALSE","FALSE","America/Denver"
-"84780","37.12645","-113.49026","Washington","UT","Utah","TRUE","","26087","273.8","49053","Washington","{""49053"": ""100""}","Washington","49053","FALSE","FALSE","America/Denver"
-"84781","37.41281","-113.46609","Pine Valley","UT","Utah","TRUE","","168","0.9","49053","Washington","{""49053"": ""100""}","Washington","49053","FALSE","FALSE","America/Denver"
-"84782","37.34955","-113.66483","Veyo","UT","Utah","TRUE","","1110","17.4","49053","Washington","{""49053"": ""100""}","Washington","49053","FALSE","FALSE","America/Denver"
-"84783","37.24641","-113.69304","Dammeron Valley","UT","Utah","TRUE","","786","6.4","49053","Washington","{""49053"": ""100""}","Washington","49053","FALSE","FALSE","America/Denver"
-"84784","37.03294","-112.99447","Hildale","UT","Utah","TRUE","","2910","79.5","49053","Washington","{""49053"": ""100""}","Washington","49053","FALSE","FALSE","America/Denver"
-"84790","37.04637","-113.55812","Saint George","UT","Utah","TRUE","","45709","394.4","49053","Washington","{""49053"": ""100""}","Washington","49053","FALSE","FALSE","America/Denver"
-"85003","33.45076","-112.07836","Phoenix","AZ","Arizona","TRUE","","8499","1772.5","04013","Maricopa","{""04013"": ""100""}","Maricopa","04013","FALSE","FALSE","America/Phoenix"
-"85004","33.45155","-112.06986","Phoenix","AZ","Arizona","TRUE","","7164","1356.0","04013","Maricopa","{""04013"": ""100""}","Maricopa","04013","FALSE","FALSE","America/Phoenix"
-"85006","33.46513","-112.04788","Phoenix","AZ","Arizona","TRUE","","27206","2690.9","04013","Maricopa","{""04013"": ""100""}","Maricopa","04013","FALSE","FALSE","America/Phoenix"
-"85007","33.44713","-112.0912","Phoenix","AZ","Arizona","TRUE","","14428","1219.9","04013","Maricopa","{""04013"": ""100""}","Maricopa","04013","FALSE","FALSE","America/Phoenix"
-"85008","33.46331","-111.98676","Phoenix","AZ","Arizona","TRUE","","62340","2297.8","04013","Maricopa","{""04013"": ""100""}","Maricopa","04013","FALSE","FALSE","America/Phoenix"
-"85009","33.44281","-112.12823","Phoenix","AZ","Arizona","TRUE","","51711","1278.1","04013","Maricopa","{""04013"": ""100""}","Maricopa","04013","FALSE","FALSE","America/Phoenix"
-"85012","33.50731","-112.07035","Phoenix","AZ","Arizona","TRUE","","7492","1318.4","04013","Maricopa","{""04013"": ""100""}","Maricopa","04013","FALSE","FALSE","America/Phoenix"
-"85013","33.51007","-112.08287","Phoenix","AZ","Arizona","TRUE","","21028","2183.9","04013","Maricopa","{""04013"": ""100""}","Maricopa","04013","FALSE","FALSE","America/Phoenix"
-"85014","33.5085","-112.05674","Phoenix","AZ","Arizona","TRUE","","27623","2551.8","04013","Maricopa","{""04013"": ""100""}","Maricopa","04013","FALSE","FALSE","America/Phoenix"
-"85015","33.50918","-112.10179","Phoenix","AZ","Arizona","TRUE","","41895","3312.7","04013","Maricopa","{""04013"": ""100""}","Maricopa","04013","FALSE","FALSE","America/Phoenix"
-"85016","33.51359","-112.02967","Phoenix","AZ","Arizona","TRUE","","35930","1535.9","04013","Maricopa","{""04013"": ""100""}","Maricopa","04013","FALSE","FALSE","America/Phoenix"
-"85017","33.50909","-112.1237","Phoenix","AZ","Arizona","TRUE","","42656","3141.6","04013","Maricopa","{""04013"": ""100""}","Maricopa","04013","FALSE","FALSE","America/Phoenix"
-"85018","33.50537","-111.98579","Phoenix","AZ","Arizona","TRUE","","38473","1336.0","04013","Maricopa","{""04013"": ""100""}","Maricopa","04013","FALSE","FALSE","America/Phoenix"
-"85019","33.50918","-112.14299","Phoenix","AZ","Arizona","TRUE","","27813","2863.6","04013","Maricopa","{""04013"": ""100""}","Maricopa","04013","FALSE","FALSE","America/Phoenix"
-"85020","33.56733","-112.05461","Phoenix","AZ","Arizona","TRUE","","35361","1535.6","04013","Maricopa","{""04013"": ""100""}","Maricopa","04013","FALSE","FALSE","America/Phoenix"
-"85021","33.56004","-112.09398","Phoenix","AZ","Arizona","TRUE","","43378","2490.2","04013","Maricopa","{""04013"": ""100""}","Maricopa","04013","FALSE","FALSE","America/Phoenix"
-"85022","33.62716","-112.05177","Phoenix","AZ","Arizona","TRUE","","51920","2145.4","04013","Maricopa","{""04013"": ""100""}","Maricopa","04013","FALSE","FALSE","America/Phoenix"
-"85023","33.63155","-112.09466","Phoenix","AZ","Arizona","TRUE","","34268","1811.5","04013","Maricopa","{""04013"": ""100""}","Maricopa","04013","FALSE","FALSE","America/Phoenix"
-"85024","33.73548","-112.03347","Phoenix","AZ","Arizona","TRUE","","24834","340.4","04013","Maricopa","{""04013"": ""100""}","Maricopa","04013","FALSE","FALSE","America/Phoenix"
-"85027","33.6819","-112.0996","Phoenix","AZ","Arizona","TRUE","","37873","1040.1","04013","Maricopa","{""04013"": ""100""}","Maricopa","04013","FALSE","FALSE","America/Phoenix"
-"85028","33.57555","-112.00911","Phoenix","AZ","Arizona","TRUE","","19334","744.8","04013","Maricopa","{""04013"": ""100""}","Maricopa","04013","FALSE","FALSE","America/Phoenix"
-"85029","33.59504","-112.11027","Phoenix","AZ","Arizona","TRUE","","47080","1902.1","04013","Maricopa","{""04013"": ""100""}","Maricopa","04013","FALSE","FALSE","America/Phoenix"
-"85031","33.49492","-112.16833","Phoenix","AZ","Arizona","TRUE","","33886","3228.9","04013","Maricopa","{""04013"": ""100""}","Maricopa","04013","FALSE","FALSE","America/Phoenix"
-"85032","33.6263","-112.00381","Phoenix","AZ","Arizona","TRUE","","73203","2275.0","04013","Maricopa","{""04013"": ""100""}","Maricopa","04013","FALSE","FALSE","America/Phoenix"
-"85033","33.49438","-112.21164","Phoenix","AZ","Arizona","TRUE","","64832","4106.0","04013","Maricopa","{""04013"": ""100""}","Maricopa","04013","FALSE","FALSE","America/Phoenix"
-"85034","33.43489","-112.02005","Phoenix","AZ","Arizona","TRUE","","5045","170.5","04013","Maricopa","{""04013"": ""100""}","Maricopa","04013","FALSE","FALSE","America/Phoenix"
-"85035","33.47144","-112.19466","Phoenix","AZ","Arizona","TRUE","","59660","4030.3","04013","Maricopa","{""04013"": ""100""}","Maricopa","04013","FALSE","FALSE","America/Phoenix"
-"85037","33.49056","-112.26468","Phoenix","AZ","Arizona","TRUE","","54817","2585.4","04013","Maricopa","{""04013"": ""100""}","Maricopa","04013","FALSE","FALSE","America/Phoenix"
-"85040","33.40613","-112.02657","Phoenix","AZ","Arizona","TRUE","","35204","1335.9","04013","Maricopa","{""04013"": ""100""}","Maricopa","04013","FALSE","FALSE","America/Phoenix"
-"85041","33.38586","-112.10884","Phoenix","AZ","Arizona","TRUE","","62152","1511.9","04013","Maricopa","{""04013"": ""100""}","Maricopa","04013","FALSE","FALSE","America/Phoenix"
-"85042","33.36882","-112.04246","Phoenix","AZ","Arizona","TRUE","","47957","1231.8","04013","Maricopa","{""04013"": ""100""}","Maricopa","04013","FALSE","FALSE","America/Phoenix"
-"85043","33.43242","-112.19646","Phoenix","AZ","Arizona","TRUE","","38704","790.5","04013","Maricopa","{""04013"": ""100""}","Maricopa","04013","FALSE","FALSE","America/Phoenix"
-"85044","33.34239","-112.00177","Phoenix","AZ","Arizona","TRUE","","41746","1118.5","04013","Maricopa","{""04013"": ""100""}","Maricopa","04013","FALSE","FALSE","America/Phoenix"
-"85045","33.29917","-112.10853","Phoenix","AZ","Arizona","TRUE","","7008","747.9","04013","Maricopa","{""04013"": ""100""}","Maricopa","04013","FALSE","FALSE","America/Phoenix"
-"85048","33.3126","-112.05578","Phoenix","AZ","Arizona","TRUE","","35765","700.3","04013","Maricopa","{""04013"": ""100""}","Maricopa","04013","FALSE","FALSE","America/Phoenix"
-"85050","33.68633","-111.99631","Phoenix","AZ","Arizona","TRUE","","32039","847.9","04013","Maricopa","{""04013"": ""100""}","Maricopa","04013","FALSE","FALSE","America/Phoenix"
-"85051","33.55908","-112.1332","Phoenix","AZ","Arizona","TRUE","","45313","2769.8","04013","Maricopa","{""04013"": ""100""}","Maricopa","04013","FALSE","FALSE","America/Phoenix"
-"85053","33.62994","-112.1316","Phoenix","AZ","Arizona","TRUE","","30608","2268.7","04013","Maricopa","{""04013"": ""100""}","Maricopa","04013","FALSE","FALSE","America/Phoenix"
-"85054","33.67311","-111.94612","Phoenix","AZ","Arizona","TRUE","","7785","334.0","04013","Maricopa","{""04013"": ""100""}","Maricopa","04013","FALSE","FALSE","America/Phoenix"
-"85083","33.72456","-112.15854","Phoenix","AZ","Arizona","TRUE","","19923","781.4","04013","Maricopa","{""04013"": ""100""}","Maricopa","04013","FALSE","FALSE","America/Phoenix"
-"85085","33.75295","-112.08931","Phoenix","AZ","Arizona","TRUE","","23700","357.3","04013","Maricopa","{""04013"": ""100""}","Maricopa","04013","FALSE","FALSE","America/Phoenix"
-"85086","33.81546","-112.12019","Phoenix","AZ","Arizona","TRUE","","42179","279.2","04013","Maricopa","{""04013"": ""100""}","Maricopa","04013","FALSE","FALSE","America/Phoenix"
-"85087","33.92352","-112.12793","New River","AZ","Arizona","TRUE","","7991","41.2","04013","Maricopa","{""04013"": ""100""}","Maricopa","04013","FALSE","FALSE","America/Phoenix"
-"85118","33.3534","-111.35045","Gold Canyon","AZ","Arizona","TRUE","","13091","31.7","04021","Pinal","{""04021"": ""100""}","Pinal","04021","FALSE","FALSE","America/Phoenix"
-"85119","33.40972","-111.50197","Apache Junction","AZ","Arizona","TRUE","","24255","212.5","04021","Pinal","{""04021"": ""100""}","Pinal","04021","FALSE","FALSE","America/Phoenix"
-"85120","33.40301","-111.56787","Apache Junction","AZ","Arizona","TRUE","","31842","688.8","04021","Pinal","{""04021"": ""83.77"", ""04013"": ""16.23""}","Pinal|Maricopa","04021|04013","FALSE","FALSE","America/Phoenix"
-"85121","33.14345","-111.92129","Bapchule","AZ","Arizona","TRUE","","1499","7.9","04021","Pinal","{""04021"": ""100""}","Pinal","04021","FALSE","FALSE","America/Phoenix"
-"85122","32.91719","-111.74422","Casa Grande","AZ","Arizona","TRUE","","58724","453.3","04021","Pinal","{""04021"": ""100""}","Pinal","04021","FALSE","FALSE","America/Phoenix"
-"85123","32.71578","-111.69557","Arizona City","AZ","Arizona","TRUE","","11265","163.5","04021","Pinal","{""04021"": ""100""}","Pinal","04021","FALSE","FALSE","America/Phoenix"
-"85128","32.99049","-111.53802","Coolidge","AZ","Arizona","TRUE","","17053","40.3","04021","Pinal","{""04021"": ""100""}","Pinal","04021","FALSE","FALSE","America/Phoenix"
-"85131","32.6739","-111.55013","Eloy","AZ","Arizona","TRUE","","20055","28.7","04021","Pinal","{""04021"": ""100""}","Pinal","04021","FALSE","FALSE","America/Phoenix"
-"85132","32.93339","-111.20446","Florence","AZ","Arizona","TRUE","","39903","25.5","04021","Pinal","{""04021"": ""100""}","Pinal","04021","FALSE","FALSE","America/Phoenix"
-"85135","33.00418","-110.786","Hayden","AZ","Arizona","TRUE","","490","429.2","04007","Gila","{""04007"": ""100""}","Gila","04007","FALSE","FALSE","America/Phoenix"
-"85137","33.13733","-111.00194","Kearny","AZ","Arizona","TRUE","","2535","4.7","04021","Pinal","{""04021"": ""100""}","Pinal","04021","FALSE","FALSE","America/Phoenix"
-"85138","33.00685","-111.98908","Maricopa","AZ","Arizona","TRUE","","38446","200.4","04021","Pinal","{""04021"": ""100""}","Pinal","04021","FALSE","FALSE","America/Phoenix"
-"85139","32.97591","-112.14611","Maricopa","AZ","Arizona","TRUE","","17939","35.8","04021","Pinal","{""04021"": ""99.31"", ""04013"": ""0.69""}","Pinal|Maricopa","04021|04013","FALSE","FALSE","America/Phoenix"
-"85140","33.24451","-111.54379","San Tan Valley","AZ","Arizona","TRUE","","47244","544.1","04021","Pinal","{""04021"": ""100""}","Pinal","04021","FALSE","FALSE","America/Phoenix"
-"85141","32.67333","-111.45436","Picacho","AZ","Arizona","TRUE","","430","4.0","04021","Pinal","{""04021"": ""100""}","Pinal","04021","FALSE","FALSE","America/Phoenix"
-"85142","33.19866","-111.63814","Queen Creek","AZ","Arizona","TRUE","","71423","388.2","04013","Maricopa","{""04013"": ""66.26"", ""04021"": ""33.74""}","Maricopa|Pinal","04013|04021","FALSE","FALSE","America/Phoenix"
-"85143","33.15864","-111.51902","San Tan Valley","AZ","Arizona","TRUE","","39153","420.4","04021","Pinal","{""04021"": ""100""}","Pinal","04021","FALSE","FALSE","America/Phoenix"
-"85145","32.55751","-111.36787","Red Rock","AZ","Arizona","TRUE","","4203","73.0","04021","Pinal","{""04021"": ""100""}","Pinal","04021","FALSE","FALSE","America/Phoenix"
-"85147","33.12587","-111.73723","Sacaton","AZ","Arizona","TRUE","","3644","19.7","04021","Pinal","{""04021"": ""100""}","Pinal","04021","FALSE","FALSE","America/Phoenix"
-"85172","32.88608","-111.95379","Stanfield","AZ","Arizona","TRUE","","1991","11.7","04021","Pinal","{""04021"": ""100""}","Pinal","04021","FALSE","FALSE","America/Phoenix"
-"85173","33.27017","-111.12336","Superior","AZ","Arizona","TRUE","","3098","32.1","04021","Pinal","{""04021"": ""100""}","Pinal","04021","FALSE","FALSE","America/Phoenix"
-"85192","32.96052","-110.68867","Winkelman","AZ","Arizona","TRUE","","2616","2.8","04021","Pinal","{""04021"": ""67.26"", ""04007"": ""32.74""}","Pinal|Gila","04021|04007","FALSE","FALSE","America/Phoenix"
-"85193","32.79406","-111.82023","Casa Grande","AZ","Arizona","TRUE","","6142","9.2","04021","Pinal","{""04021"": ""100""}","Pinal","04021","FALSE","FALSE","America/Phoenix"
-"85194","32.89835","-111.62605","Casa Grande","AZ","Arizona","TRUE","","7948","40.4","04021","Pinal","{""04021"": ""100""}","Pinal","04021","FALSE","FALSE","America/Phoenix"
-"85201","33.43387","-111.85023","Mesa","AZ","Arizona","TRUE","","54110","2237.6","04013","Maricopa","{""04013"": ""100""}","Maricopa","04013","FALSE","FALSE","America/Phoenix"
-"85202","33.38249","-111.87447","Mesa","AZ","Arizona","TRUE","","40364","2478.1","04013","Maricopa","{""04013"": ""100""}","Maricopa","04013","FALSE","FALSE","America/Phoenix"
-"85203","33.45005","-111.804","Mesa","AZ","Arizona","TRUE","","39797","1677.1","04013","Maricopa","{""04013"": ""100""}","Maricopa","04013","FALSE","FALSE","America/Phoenix"
-"85204","33.39679","-111.7881","Mesa","AZ","Arizona","TRUE","","67924","2647.4","04013","Maricopa","{""04013"": ""100""}","Maricopa","04013","FALSE","FALSE","America/Phoenix"
-"85205","33.43232","-111.7187","Mesa","AZ","Arizona","TRUE","","43135","1701.5","04013","Maricopa","{""04013"": ""100""}","Maricopa","04013","FALSE","FALSE","America/Phoenix"
-"85206","33.39667","-111.71772","Mesa","AZ","Arizona","TRUE","","37230","1506.9","04013","Maricopa","{""04013"": ""100""}","Maricopa","04013","FALSE","FALSE","America/Phoenix"
-"85207","33.4535","-111.63683","Mesa","AZ","Arizona","TRUE","","49863","644.9","04013","Maricopa","{""04013"": ""100""}","Maricopa","04013","FALSE","FALSE","America/Phoenix"
-"85208","33.40161","-111.62826","Mesa","AZ","Arizona","TRUE","","37109","1595.2","04013","Maricopa","{""04013"": ""100""}","Maricopa","04013","FALSE","FALSE","America/Phoenix"
-"85209","33.37832","-111.63763","Mesa","AZ","Arizona","TRUE","","41407","1442.1","04013","Maricopa","{""04013"": ""100""}","Maricopa","04013","FALSE","FALSE","America/Phoenix"
-"85210","33.38986","-111.84321","Mesa","AZ","Arizona","TRUE","","41073","2408.8","04013","Maricopa","{""04013"": ""100""}","Maricopa","04013","FALSE","FALSE","America/Phoenix"
-"85212","33.32214","-111.63542","Mesa","AZ","Arizona","TRUE","","37204","405.4","04013","Maricopa","{""04013"": ""100""}","Maricopa","04013","FALSE","FALSE","America/Phoenix"
-"85213","33.44847","-111.77","Mesa","AZ","Arizona","TRUE","","36916","1505.0","04013","Maricopa","{""04013"": ""100""}","Maricopa","04013","FALSE","FALSE","America/Phoenix"
-"85215","33.51106","-111.57882","Mesa","AZ","Arizona","TRUE","","16471","76.8","04013","Maricopa","{""04013"": ""100""}","Maricopa","04013","FALSE","FALSE","America/Phoenix"
-"85224","33.32365","-111.87643","Chandler","AZ","Arizona","TRUE","","43834","1813.8","04013","Maricopa","{""04013"": ""100""}","Maricopa","04013","FALSE","FALSE","America/Phoenix"
-"85225","33.3174","-111.83218","Chandler","AZ","Arizona","TRUE","","70356","2120.0","04013","Maricopa","{""04013"": ""100""}","Maricopa","04013","FALSE","FALSE","America/Phoenix"
-"85226","33.259","-112.00763","Chandler","AZ","Arizona","TRUE","","39157","188.8","04013","Maricopa","{""04013"": ""100""}","Maricopa","04013","FALSE","FALSE","America/Phoenix"
-"85233","33.35211","-111.81134","Gilbert","AZ","Arizona","TRUE","","35640","1414.2","04013","Maricopa","{""04013"": ""100""}","Maricopa","04013","FALSE","FALSE","America/Phoenix"
-"85234","33.36455","-111.73943","Gilbert","AZ","Arizona","TRUE","","49056","1594.5","04013","Maricopa","{""04013"": ""100""}","Maricopa","04013","FALSE","FALSE","America/Phoenix"
-"85248","33.21797","-111.86962","Chandler","AZ","Arizona","TRUE","","35040","447.1","04013","Maricopa","{""04013"": ""97.55"", ""04021"": ""2.45""}","Maricopa|Pinal","04013|04021","FALSE","FALSE","America/Phoenix"
-"85249","33.22551","-111.79707","Chandler","AZ","Arizona","TRUE","","39618","1107.4","04013","Maricopa","{""04013"": ""100""}","Maricopa","04013","FALSE","FALSE","America/Phoenix"
-"85250","33.53583","-111.88853","Scottsdale","AZ","Arizona","TRUE","","17688","725.2","04013","Maricopa","{""04013"": ""100""}","Maricopa","04013","FALSE","FALSE","America/Phoenix"
-"85251","33.49393","-111.91954","Scottsdale","AZ","Arizona","TRUE","","41102","2153.5","04013","Maricopa","{""04013"": ""100""}","Maricopa","04013","FALSE","FALSE","America/Phoenix"
-"85253","33.54501","-111.95854","Paradise Valley","AZ","Arizona","TRUE","","18811","403.9","04013","Maricopa","{""04013"": ""100""}","Maricopa","04013","FALSE","FALSE","America/Phoenix"
-"85254","33.61504","-111.95198","Scottsdale","AZ","Arizona","TRUE","","47185","1335.7","04013","Maricopa","{""04013"": ""100""}","Maricopa","04013","FALSE","FALSE","America/Phoenix"
-"85255","33.68316","-111.82109","Scottsdale","AZ","Arizona","TRUE","","43956","193.8","04013","Maricopa","{""04013"": ""100""}","Maricopa","04013","FALSE","FALSE","America/Phoenix"
-"85256","33.50196","-111.84066","Scottsdale","AZ","Arizona","TRUE","","6173","72.2","04013","Maricopa","{""04013"": ""100""}","Maricopa","04013","FALSE","FALSE","America/Phoenix"
-"85257","33.46417","-111.91592","Scottsdale","AZ","Arizona","TRUE","","33392","1966.8","04013","Maricopa","{""04013"": ""100""}","Maricopa","04013","FALSE","FALSE","America/Phoenix"
-"85258","33.56466","-111.89566","Scottsdale","AZ","Arizona","TRUE","","25755","1159.6","04013","Maricopa","{""04013"": ""100""}","Maricopa","04013","FALSE","FALSE","America/Phoenix"
-"85259","33.60112","-111.80949","Scottsdale","AZ","Arizona","TRUE","","23364","440.4","04013","Maricopa","{""04013"": ""100""}","Maricopa","04013","FALSE","FALSE","America/Phoenix"
-"85260","33.60959","-111.89159","Scottsdale","AZ","Arizona","TRUE","","39861","1060.6","04013","Maricopa","{""04013"": ""100""}","Maricopa","04013","FALSE","FALSE","America/Phoenix"
-"85262","33.83185","-111.81058","Scottsdale","AZ","Arizona","TRUE","","11872","36.2","04013","Maricopa","{""04013"": ""100""}","Maricopa","04013","FALSE","FALSE","America/Phoenix"
-"85263","33.82693","-111.51454","Rio Verde","AZ","Arizona","TRUE","","2907","3.3","04013","Maricopa","{""04013"": ""100""}","Maricopa","04013","FALSE","FALSE","America/Phoenix"
-"85264","33.63083","-111.5326","Fort Mcdowell","AZ","Arizona","TRUE","","1345","2.4","04013","Maricopa","{""04013"": ""100""}","Maricopa","04013","FALSE","FALSE","America/Phoenix"
-"85266","33.76695","-111.91825","Scottsdale","AZ","Arizona","TRUE","","13253","298.7","04013","Maricopa","{""04013"": ""100""}","Maricopa","04013","FALSE","FALSE","America/Phoenix"
-"85268","33.60699","-111.74005","Fountain Hills","AZ","Arizona","TRUE","","25022","469.1","04013","Maricopa","{""04013"": ""100""}","Maricopa","04013","FALSE","FALSE","America/Phoenix"
-"85281","33.42815","-111.93115","Tempe","AZ","Arizona","TRUE","","66833","1931.8","04013","Maricopa","{""04013"": ""100""}","Maricopa","04013","FALSE","FALSE","America/Phoenix"
-"85282","33.39414","-111.93184","Tempe","AZ","Arizona","TRUE","","55664","1923.6","04013","Maricopa","{""04013"": ""100""}","Maricopa","04013","FALSE","FALSE","America/Phoenix"
-"85283","33.36461","-111.93212","Tempe","AZ","Arizona","TRUE","","51495","2260.4","04013","Maricopa","{""04013"": ""100""}","Maricopa","04013","FALSE","FALSE","America/Phoenix"
-"85284","33.33717","-111.93424","Tempe","AZ","Arizona","TRUE","","19909","989.5","04013","Maricopa","{""04013"": ""100""}","Maricopa","04013","FALSE","FALSE","America/Phoenix"
-"85286","33.27106","-111.83122","Chandler","AZ","Arizona","TRUE","","44885","1066.6","04013","Maricopa","{""04013"": ""100""}","Maricopa","04013","FALSE","FALSE","America/Phoenix"
-"85295","33.30544","-111.74085","Gilbert","AZ","Arizona","TRUE","","47791","1459.8","04013","Maricopa","{""04013"": ""100""}","Maricopa","04013","FALSE","FALSE","America/Phoenix"
-"85296","33.33539","-111.74059","Gilbert","AZ","Arizona","TRUE","","44564","1519.7","04013","Maricopa","{""04013"": ""100""}","Maricopa","04013","FALSE","FALSE","America/Phoenix"
-"85297","33.2778","-111.7335","Gilbert","AZ","Arizona","TRUE","","33868","1239.0","04013","Maricopa","{""04013"": ""100""}","Maricopa","04013","FALSE","FALSE","America/Phoenix"
-"85298","33.24188","-111.72573","Gilbert","AZ","Arizona","TRUE","","31593","852.4","04013","Maricopa","{""04013"": ""100""}","Maricopa","04013","FALSE","FALSE","America/Phoenix"
-"85301","33.53177","-112.17799","Glendale","AZ","Arizona","TRUE","","68579","2856.1","04013","Maricopa","{""04013"": ""100""}","Maricopa","04013","FALSE","FALSE","America/Phoenix"
-"85302","33.56796","-112.17795","Glendale","AZ","Arizona","TRUE","","40186","2542.7","04013","Maricopa","{""04013"": ""100""}","Maricopa","04013","FALSE","FALSE","America/Phoenix"
-"85303","33.5327","-112.22112","Glendale","AZ","Arizona","TRUE","","35142","2142.8","04013","Maricopa","{""04013"": ""100""}","Maricopa","04013","FALSE","FALSE","America/Phoenix"
-"85304","33.59646","-112.17698","Glendale","AZ","Arizona","TRUE","","28113","1949.5","04013","Maricopa","{""04013"": ""100""}","Maricopa","04013","FALSE","FALSE","America/Phoenix"
-"85305","33.53079","-112.25636","Glendale","AZ","Arizona","TRUE","","13370","814.7","04013","Maricopa","{""04013"": ""100""}","Maricopa","04013","FALSE","FALSE","America/Phoenix"
-"85306","33.62394","-112.17639","Glendale","AZ","Arizona","TRUE","","25520","1757.9","04013","Maricopa","{""04013"": ""100""}","Maricopa","04013","FALSE","FALSE","America/Phoenix"
-"85307","33.53756","-112.31365","Glendale","AZ","Arizona","TRUE","","11108","344.6","04013","Maricopa","{""04013"": ""100""}","Maricopa","04013","FALSE","FALSE","America/Phoenix"
-"85308","33.66051","-112.18462","Glendale","AZ","Arizona","TRUE","","66706","1507.9","04013","Maricopa","{""04013"": ""100""}","Maricopa","04013","FALSE","FALSE","America/Phoenix"
-"85309","33.53551","-112.37668","Luke Air Force Base","AZ","Arizona","TRUE","","678","76.3","04013","Maricopa","{""04013"": ""100""}","Maricopa","04013","FALSE","FALSE","America/Phoenix"
-"85310","33.69578","-112.1719","Glendale","AZ","Arizona","TRUE","","20267","858.5","04013","Maricopa","{""04013"": ""100""}","Maricopa","04013","FALSE","FALSE","America/Phoenix"
-"85320","33.91846","-113.21363","Aguila","AZ","Arizona","TRUE","","1207","0.9","04013","Maricopa","{""04013"": ""98.66"", ""04025"": ""1.34""}","Maricopa|Yavapai","04013|04025","FALSE","FALSE","America/Phoenix"
-"85321","32.22945","-112.65431","Ajo","AZ","Arizona","TRUE","","4009","1.0","04019","Pima","{""04019"": ""96.6"", ""04013"": ""3.4""}","Pima|Maricopa","04019|04013","FALSE","FALSE","America/Phoenix"
-"85322","33.1741","-112.85102","Arlington","AZ","Arizona","TRUE","","670","0.8","04013","Maricopa","{""04013"": ""100""}","Maricopa","04013","FALSE","FALSE","America/Phoenix"
-"85323","33.41939","-112.32606","Avondale","AZ","Arizona","TRUE","","43968","913.3","04013","Maricopa","{""04013"": ""100""}","Maricopa","04013","FALSE","FALSE","America/Phoenix"
-"85324","34.11916","-112.04426","Black Canyon City","AZ","Arizona","TRUE","","2825","3.7","04025","Yavapai","{""04025"": ""100""}","Yavapai","04025","FALSE","FALSE","America/Phoenix"
-"85325","33.99884","-113.90161","Bouse","AZ","Arizona","TRUE","","1288","0.6","04012","La Paz","{""04012"": ""100""}","La Paz","04012","FALSE","FALSE","America/Phoenix"
-"85326","33.28904","-112.57796","Buckeye","AZ","Arizona","TRUE","","63317","66.3","04013","Maricopa","{""04013"": ""100""}","Maricopa","04013","FALSE","FALSE","America/Phoenix"
-"85328","33.22631","-114.63446","Cibola","AZ","Arizona","TRUE","","367","0.8","04012","La Paz","{""04012"": ""100""}","La Paz","04012","FALSE","FALSE","America/Phoenix"
-"85331","33.88506","-111.93494","Cave Creek","AZ","Arizona","TRUE","","30727","105.6","04013","Maricopa","{""04013"": ""100""}","Maricopa","04013","FALSE","FALSE","America/Phoenix"
-"85332","34.19082","-112.90464","Congress","AZ","Arizona","TRUE","","1747","1.6","04025","Yavapai","{""04025"": ""100""}","Yavapai","04025","FALSE","FALSE","America/Phoenix"
-"85333","33.02343","-113.28105","Dateland","AZ","Arizona","TRUE","","565","0.3","04027","Yuma","{""04027"": ""90.25"", ""04013"": ""9.75""}","Yuma|Maricopa","04027|04013","FALSE","FALSE","America/Phoenix"
-"85334","33.52216","-114.53383","Ehrenberg","AZ","Arizona","TRUE","","1160","6.9","04012","La Paz","{""04012"": ""100""}","La Paz","04012","FALSE","FALSE","America/Phoenix"
-"85335","33.59191","-112.32664","El Mirage","AZ","Arizona","TRUE","","35333","1367.4","04013","Maricopa","{""04013"": ""100""}","Maricopa","04013","FALSE","FALSE","America/Phoenix"
-"85336","32.54533","-114.78951","San Luis","AZ","Arizona","TRUE","","510","51.6","04027","Yuma","{""04027"": ""100""}","Yuma","04027","FALSE","FALSE","America/Phoenix"
-"85337","32.95961","-112.7033","Gila Bend","AZ","Arizona","TRUE","","2626","1.8","04013","Maricopa","{""04013"": ""100""}","Maricopa","04013","FALSE","FALSE","America/Phoenix"
-"85338","33.3735","-112.40794","Goodyear","AZ","Arizona","TRUE","","50122","262.1","04013","Maricopa","{""04013"": ""100""}","Maricopa","04013","FALSE","FALSE","America/Phoenix"
-"85339","33.23775","-112.16077","Laveen","AZ","Arizona","TRUE","","47958","87.1","04013","Maricopa","{""04013"": ""99.85"", ""04021"": ""0.15""}","Maricopa|Pinal","04013|04021","FALSE","FALSE","America/Phoenix"
-"85340","33.50984","-112.41317","Litchfield Park","AZ","Arizona","TRUE","","35316","452.6","04013","Maricopa","{""04013"": ""100""}","Maricopa","04013","FALSE","FALSE","America/Phoenix"
-"85341","31.87377","-112.78476","Lukeville","AZ","Arizona","TRUE","","0","0.0","04019","Pima","{""04019"": ""100""}","Pima","04019","FALSE","FALSE","America/Phoenix"
-"85342","33.94479","-112.45305","Morristown","AZ","Arizona","TRUE","","1637","1.4","04013","Maricopa","{""04013"": ""97.21"", ""04025"": ""2.79""}","Maricopa|Yavapai","04013|04025","FALSE","FALSE","America/Phoenix"
-"85343","33.33909","-112.6891","Palo Verde","AZ","Arizona","TRUE","","205","9.9","04013","Maricopa","{""04013"": ""100""}","Maricopa","04013","FALSE","FALSE","America/Phoenix"
-"85344","34.07552","-114.22197","Parker","AZ","Arizona","TRUE","","10495","9.5","04012","La Paz","{""04012"": ""100""}","La Paz","04012","FALSE","FALSE","America/Phoenix"
-"85345","33.57196","-112.24617","Peoria","AZ","Arizona","TRUE","","57351","1696.4","04013","Maricopa","{""04013"": ""100""}","Maricopa","04013","FALSE","FALSE","America/Phoenix"
-"85346","33.63625","-114.14619","Quartzsite","AZ","Arizona","TRUE","","4248","2.6","04012","La Paz","{""04012"": ""100""}","La Paz","04012","FALSE","FALSE","America/Phoenix"
-"85347","32.79743","-113.78962","Roll","AZ","Arizona","TRUE","","608","1.1","04027","Yuma","{""04027"": ""100""}","Yuma","04027","FALSE","FALSE","America/Phoenix"
-"85348","33.70873","-113.71442","Salome","AZ","Arizona","TRUE","","2537","2.2","04012","La Paz","{""04012"": ""100""}","La Paz","04012","FALSE","FALSE","America/Phoenix"
-"85349","32.49738","-114.7524","San Luis","AZ","Arizona","TRUE","","31488","677.5","04027","Yuma","{""04027"": ""100""}","Yuma","04027","FALSE","FALSE","America/Phoenix"
-"85350","32.55352","-114.6974","Somerton","AZ","Arizona","TRUE","","22593","88.6","04027","Yuma","{""04027"": ""100""}","Yuma","04027","FALSE","FALSE","America/Phoenix"
-"85351","33.60645","-112.2821","Sun City","AZ","Arizona","TRUE","","28528","1014.3","04013","Maricopa","{""04013"": ""100""}","Maricopa","04013","FALSE","FALSE","America/Phoenix"
-"85352","32.71939","-113.83951","Tacna","AZ","Arizona","TRUE","","500","3.1","04027","Yuma","{""04027"": ""100""}","Yuma","04027","FALSE","FALSE","America/Phoenix"
-"85353","33.41824","-112.27288","Tolleson","AZ","Arizona","TRUE","","42801","762.1","04013","Maricopa","{""04013"": ""100""}","Maricopa","04013","FALSE","FALSE","America/Phoenix"
-"85354","33.43316","-113.04897","Tonopah","AZ","Arizona","TRUE","","7719","5.0","04013","Maricopa","{""04013"": ""100""}","Maricopa","04013","FALSE","FALSE","America/Phoenix"
-"85355","33.57623","-112.45385","Waddell","AZ","Arizona","TRUE","","12998","142.7","04013","Maricopa","{""04013"": ""100""}","Maricopa","04013","FALSE","FALSE","America/Phoenix"
-"85356","32.68901","-114.16228","Wellton","AZ","Arizona","TRUE","","5191","12.1","04027","Yuma","{""04027"": ""100""}","Yuma","04027","FALSE","FALSE","America/Phoenix"
-"85357","33.97768","-113.50324","Wenden","AZ","Arizona","TRUE","","408","0.3","04012","La Paz","{""04012"": ""100""}","La Paz","04012","FALSE","FALSE","America/Phoenix"
-"85360","34.70927","-113.56826","Wikieup","AZ","Arizona","TRUE","","128","0.1","04015","Mohave","{""04015"": ""100""}","Mohave","04015","FALSE","FALSE","America/Phoenix"
-"85361","33.76398","-112.61468","Wittmann","AZ","Arizona","TRUE","","6368","20.7","04013","Maricopa","{""04013"": ""100""}","Maricopa","04013","FALSE","FALSE","America/Phoenix"
-"85362","34.27995","-112.83475","Yarnell","AZ","Arizona","TRUE","","739","4.0","04025","Yavapai","{""04025"": ""100""}","Yavapai","04025","FALSE","FALSE","America/Phoenix"
-"85363","33.58446","-112.30505","Youngtown","AZ","Arizona","TRUE","","6802","1652.7","04013","Maricopa","{""04013"": ""100""}","Maricopa","04013","FALSE","FALSE","America/Phoenix"
-"85364","32.70312","-114.65882","Yuma","AZ","Arizona","TRUE","","74333","727.4","04027","Yuma","{""04027"": ""100""}","Yuma","04027","FALSE","FALSE","America/Phoenix"
-"85365","33.07894","-114.15047","Yuma","AZ","Arizona","TRUE","","50865","14.3","04027","Yuma","{""04027"": ""100""}","Yuma","04027","FALSE","FALSE","America/Phoenix"
-"85367","32.67173","-114.39553","Yuma","AZ","Arizona","TRUE","","22897","194.9","04027","Yuma","{""04027"": ""100""}","Yuma","04027","FALSE","FALSE","America/Phoenix"
-"85371","33.82863","-114.37582","Poston","AZ","Arizona","TRUE","","290","0.6","04012","La Paz","{""04012"": ""100""}","La Paz","04012","FALSE","FALSE","America/Phoenix"
-"85373","33.67381","-112.29959","Sun City","AZ","Arizona","TRUE","","19360","656.0","04013","Maricopa","{""04013"": ""100""}","Maricopa","04013","FALSE","FALSE","America/Phoenix"
-"85374","33.64402","-112.37672","Surprise","AZ","Arizona","TRUE","","48430","1151.2","04013","Maricopa","{""04013"": ""100""}","Maricopa","04013","FALSE","FALSE","America/Phoenix"
-"85375","33.68563","-112.36604","Sun City West","AZ","Arizona","TRUE","","29452","617.8","04013","Maricopa","{""04013"": ""100""}","Maricopa","04013","FALSE","FALSE","America/Phoenix"
-"85377","33.82433","-111.91526","Carefree","AZ","Arizona","TRUE","","3333","152.0","04013","Maricopa","{""04013"": ""100""}","Maricopa","04013","FALSE","FALSE","America/Phoenix"
-"85379","33.6021","-112.37355","Surprise","AZ","Arizona","TRUE","","47663","1710.3","04013","Maricopa","{""04013"": ""100""}","Maricopa","04013","FALSE","FALSE","America/Phoenix"
-"85381","33.60956","-112.23168","Peoria","AZ","Arizona","TRUE","","24997","1451.5","04013","Maricopa","{""04013"": ""100""}","Maricopa","04013","FALSE","FALSE","America/Phoenix"
-"85382","33.65509","-112.24747","Peoria","AZ","Arizona","TRUE","","38890","1517.2","04013","Maricopa","{""04013"": ""100""}","Maricopa","04013","FALSE","FALSE","America/Phoenix"
-"85383","33.80236","-112.247","Peoria","AZ","Arizona","TRUE","","55327","223.2","04013","Maricopa","{""04013"": ""100""}","Maricopa","04013","FALSE","FALSE","America/Phoenix"
-"85387","33.7128","-112.43806","Surprise","AZ","Arizona","TRUE","","10512","74.3","04013","Maricopa","{""04013"": ""100""}","Maricopa","04013","FALSE","FALSE","America/Phoenix"
-"85388","33.6079","-112.43383","Surprise","AZ","Arizona","TRUE","","30817","907.0","04013","Maricopa","{""04013"": ""100""}","Maricopa","04013","FALSE","FALSE","America/Phoenix"
-"85390","33.89445","-112.86018","Wickenburg","AZ","Arizona","TRUE","","9314","6.1","04013","Maricopa","{""04013"": ""91.66"", ""04025"": ""8.34""}","Maricopa|Yavapai","04013|04025","FALSE","FALSE","America/Phoenix"
-"85392","33.4778","-112.30938","Avondale","AZ","Arizona","TRUE","","39054","1593.2","04013","Maricopa","{""04013"": ""100""}","Maricopa","04013","FALSE","FALSE","America/Phoenix"
-"85395","33.47907","-112.39452","Goodyear","AZ","Arizona","TRUE","","30491","824.6","04013","Maricopa","{""04013"": ""100""}","Maricopa","04013","FALSE","FALSE","America/Phoenix"
-"85396","33.52694","-112.65073","Buckeye","AZ","Arizona","TRUE","","20905","97.6","04013","Maricopa","{""04013"": ""100""}","Maricopa","04013","FALSE","FALSE","America/Phoenix"
-"85501","33.5391","-110.75344","Globe","AZ","Arizona","TRUE","","12805","8.8","04007","Gila","{""04007"": ""100""}","Gila","04007","FALSE","FALSE","America/Phoenix"
-"85530","33.1062","-110.23732","Bylas","AZ","Arizona","TRUE","","1771","1.6","04009","Graham","{""04009"": ""100""}","Graham","04009","FALSE","FALSE","America/Phoenix"
-"85531","32.87715","-109.78936","Central","AZ","Arizona","TRUE","","323","29.9","04009","Graham","{""04009"": ""100""}","Graham","04009","FALSE","FALSE","America/Phoenix"
-"85533","33.32098","-109.38563","Clifton","AZ","Arizona","TRUE","","3361","1.1","04011","Greenlee","{""04011"": ""99.69"", ""04009"": ""0.31""}","Greenlee|Graham","04011|04009","FALSE","FALSE","America/Phoenix"
-"85534","32.75427","-109.14059","Duncan","AZ","Arizona","TRUE","","2753","2.4","04011","Greenlee","{""04011"": ""100""}","Greenlee","04011","FALSE","FALSE","America/Phoenix"
-"85535","32.98992","-109.91384","Eden","AZ","Arizona","TRUE","","0","0.0","04009","Graham","{""04009"": ""100""}","Graham","04009","FALSE","FALSE","America/Phoenix"
-"85536","33.13902","-110.00261","Fort Thomas","AZ","Arizona","TRUE","","440","1.2","04009","Graham","{""04009"": ""100""}","Graham","04009","FALSE","FALSE","America/Phoenix"
-"85539","33.36098","-110.913","Miami","AZ","Arizona","TRUE","","4424","30.4","04007","Gila","{""04007"": ""94.89"", ""04021"": ""5.11""}","Gila|Pinal","04007|04021","FALSE","FALSE","America/Phoenix"
-"85540","32.97739","-109.35748","Morenci","AZ","Arizona","TRUE","","3380","13.0","04011","Greenlee","{""04011"": ""100""}","Greenlee","04011","FALSE","FALSE","America/Phoenix"
-"85541","34.19483","-111.3052","Payson","AZ","Arizona","TRUE","","21661","10.7","04007","Gila","{""04007"": ""100""}","Gila","04007","FALSE","FALSE","America/Phoenix"
-"85542","33.29655","-110.30316","Peridot","AZ","Arizona","TRUE","","3700","6.5","04009","Graham","{""04009"": ""84.42"", ""04007"": ""15.58""}","Graham|Gila","04009|04007","FALSE","FALSE","America/Phoenix"
-"85543","32.98253","-109.96759","Pima","AZ","Arizona","TRUE","","3552","2.3","04009","Graham","{""04009"": ""100""}","Graham","04009","FALSE","FALSE","America/Phoenix"
-"85544","34.34353","-111.53529","Pine","AZ","Arizona","TRUE","","2763","6.4","04007","Gila","{""04007"": ""100""}","Gila","04007","FALSE","FALSE","America/Phoenix"
-"85545","33.54555","-111.12486","Roosevelt","AZ","Arizona","TRUE","","540","0.5","04007","Gila","{""04007"": ""97.43"", ""04013"": ""2.57""}","Gila|Maricopa","04007|04013","FALSE","FALSE","America/Phoenix"
-"85546","32.7113","-109.58411","Safford","AZ","Arizona","TRUE","","20610","11.8","04009","Graham","{""04009"": ""100""}","Graham","04009","FALSE","FALSE","America/Phoenix"
-"85550","33.5311","-110.48326","San Carlos","AZ","Arizona","TRUE","","5239","3.6","04007","Gila","{""04007"": ""100""}","Gila","04007","FALSE","FALSE","America/Phoenix"
-"85551","32.72087","-109.58365","Solomon","AZ","Arizona","TRUE","","447","3.2","04009","Graham","{""04009"": ""100""}","Graham","04009","FALSE","FALSE","America/Phoenix"
-"85552","32.82182","-109.76941","Thatcher","AZ","Arizona","TRUE","","6671","107.5","04009","Graham","{""04009"": ""100""}","Graham","04009","FALSE","FALSE","America/Phoenix"
-"85553","33.81552","-111.22885","Tonto Basin","AZ","Arizona","TRUE","","1791","2.3","04007","Gila","{""04007"": ""100""}","Gila","04007","FALSE","FALSE","America/Phoenix"
-"85554","33.98597","-110.95425","Young","AZ","Arizona","TRUE","","581","0.3","04007","Gila","{""04007"": ""100""}","Gila","04007","FALSE","FALSE","America/Phoenix"
-"85601","31.5884","-111.31589","Arivaca","AZ","Arizona","TRUE","","723","2.3","04019","Pima","{""04019"": ""100""}","Pima","04019","FALSE","FALSE","America/Phoenix"
-"85602","32.17427","-110.37703","Benson","AZ","Arizona","TRUE","","9051","4.7","04003","Cochise","{""04003"": ""90.16"", ""04019"": ""9.84""}","Cochise|Pima","04003|04019","FALSE","FALSE","America/Phoenix"
-"85603","31.43388","-109.91053","Bisbee","AZ","Arizona","TRUE","","6887","11.8","04003","Cochise","{""04003"": ""100""}","Cochise","04003","FALSE","FALSE","America/Phoenix"
-"85605","32.29938","-109.47785","Bowie","AZ","Arizona","TRUE","","540","0.6","04003","Cochise","{""04003"": ""100""}","Cochise","04003","FALSE","FALSE","America/Phoenix"
-"85606","32.03953","-109.91029","Cochise","AZ","Arizona","TRUE","","1067","2.9","04003","Cochise","{""04003"": ""100""}","Cochise","04003","FALSE","FALSE","America/Phoenix"
-"85607","31.5212","-109.35165","Douglas","AZ","Arizona","TRUE","","15419","7.1","04003","Cochise","{""04003"": ""100""}","Cochise","04003","FALSE","FALSE","America/Phoenix"
-"85608","31.45586","-109.58611","Douglas","AZ","Arizona","TRUE","","4671","974.9","04003","Cochise","{""04003"": ""100""}","Cochise","04003","FALSE","FALSE","America/Phoenix"
-"85609","32.06586","-110.10558","Dragoon","AZ","Arizona","TRUE","","340","1.0","04003","Cochise","{""04003"": ""100""}","Cochise","04003","FALSE","FALSE","America/Phoenix"
-"85610","31.74107","-109.71769","Elfrida","AZ","Arizona","TRUE","","1071","0.9","04003","Cochise","{""04003"": ""100""}","Cochise","04003","FALSE","FALSE","America/Phoenix"
-"85611","31.66145","-110.51209","Elgin","AZ","Arizona","TRUE","","1032","1.3","04023","Santa Cruz","{""04023"": ""80"", ""04019"": ""17.93"", ""04003"": ""2.07""}","Santa Cruz|Pima|Cochise","04023|04019|04003","FALSE","FALSE","America/Phoenix"
-"85613","31.56689","-110.38512","Fort Huachuca","AZ","Arizona","TRUE","","5309","43.8","04003","Cochise","{""04003"": ""100""}","Cochise","04003","FALSE","FALSE","America/Phoenix"
-"85614","31.82284","-110.92578","Green Valley","AZ","Arizona","TRUE","","23777","67.6","04019","Pima","{""04019"": ""100""}","Pima","04019","FALSE","FALSE","America/Phoenix"
-"85615","31.40188","-110.21974","Hereford","AZ","Arizona","TRUE","","9391","17.5","04003","Cochise","{""04003"": ""100""}","Cochise","04003","FALSE","FALSE","America/Phoenix"
-"85616","31.69327","-110.3331","Huachuca City","AZ","Arizona","TRUE","","5341","15.4","04003","Cochise","{""04003"": ""100""}","Cochise","04003","FALSE","FALSE","America/Phoenix"
-"85617","31.54834","-109.72294","McNeal","AZ","Arizona","TRUE","","1128","2.0","04003","Cochise","{""04003"": ""100""}","Cochise","04003","FALSE","FALSE","America/Phoenix"
-"85618","32.71316","-110.55581","Mammoth","AZ","Arizona","TRUE","","1787","6.1","04021","Pinal","{""04021"": ""100""}","Pinal","04021","FALSE","FALSE","America/Phoenix"
-"85619","32.4076","-110.7332","Mount Lemmon","AZ","Arizona","TRUE","","41","0.1","04019","Pima","{""04019"": ""100""}","Pima","04019","FALSE","FALSE","America/Phoenix"
-"85620","31.33718","-109.94117","Naco","AZ","Arizona","TRUE","","751","290.5","04003","Cochise","{""04003"": ""100""}","Cochise","04003","FALSE","FALSE","America/Phoenix"
-"85621","31.42285","-111.04007","Nogales","AZ","Arizona","TRUE","","22074","30.2","04023","Santa Cruz","{""04023"": ""100""}","Santa Cruz","04023","FALSE","FALSE","America/Phoenix"
-"85622","31.82686","-111.07552","Green Valley","AZ","Arizona","TRUE","","6142","48.6","04019","Pima","{""04019"": ""100""}","Pima","04019","FALSE","FALSE","America/Phoenix"
-"85623","32.70641","-110.8053","Oracle","AZ","Arizona","TRUE","","5190","5.8","04021","Pinal","{""04021"": ""100""}","Pinal","04021","FALSE","FALSE","America/Phoenix"
-"85624","31.51531","-110.69853","Patagonia","AZ","Arizona","TRUE","","1289","1.3","04023","Santa Cruz","{""04023"": ""100""}","Santa Cruz","04023","FALSE","FALSE","America/Phoenix"
-"85625","31.8885","-109.61185","Pearce","AZ","Arizona","TRUE","","2141","3.3","04003","Cochise","{""04003"": ""100""}","Cochise","04003","FALSE","FALSE","America/Phoenix"
-"85626","31.35779","-109.56665","Pirtleville","AZ","Arizona","TRUE","","1077","564.5","04003","Cochise","{""04003"": ""100""}","Cochise","04003","FALSE","FALSE","America/Phoenix"
-"85627","32.00499","-110.24118","Pomerene","AZ","Arizona","TRUE","","1350","30.2","04003","Cochise","{""04003"": ""100""}","Cochise","04003","FALSE","FALSE","America/Phoenix"
-"85629","31.91783","-111.01908","Sahuarita","AZ","Arizona","TRUE","","25770","43.2","04019","Pima","{""04019"": ""100""}","Pima","04019","FALSE","FALSE","America/Phoenix"
-"85630","31.88882","-110.169","Saint David","AZ","Arizona","TRUE","","1757","3.7","04003","Cochise","{""04003"": ""100""}","Cochise","04003","FALSE","FALSE","America/Phoenix"
-"85631","32.59138","-110.55257","San Manuel","AZ","Arizona","TRUE","","3718","12.3","04021","Pinal","{""04021"": ""100""}","Pinal","04021","FALSE","FALSE","America/Phoenix"
-"85632","32.0424","-109.17478","San Simon","AZ","Arizona","TRUE","","788","0.4","04003","Cochise","{""04003"": ""100""}","Cochise","04003","FALSE","FALSE","America/Phoenix"
-"85633","31.62281","-111.49567","Sasabe","AZ","Arizona","TRUE","","41","0.1","04019","Pima","{""04019"": ""100""}","Pima","04019","FALSE","FALSE","America/Phoenix"
-"85634","32.03149","-112.00653","Sells","AZ","Arizona","TRUE","","6569","0.9","04019","Pima","{""04019"": ""98.32"", ""04021"": ""1.68""}","Pima|Pinal","04019|04021","FALSE","FALSE","America/Phoenix"
-"85635","31.57036","-110.17705","Sierra Vista","AZ","Arizona","TRUE","","33947","183.6","04003","Cochise","{""04003"": ""100""}","Cochise","04003","FALSE","FALSE","America/Phoenix"
-"85637","31.72823","-110.68969","Sonoita","AZ","Arizona","TRUE","","1250","4.0","04023","Santa Cruz","{""04023"": ""83.12"", ""04019"": ""16.88""}","Santa Cruz|Pima","04023|04019","FALSE","FALSE","America/Phoenix"
-"85638","31.71507","-110.0509","Tombstone","AZ","Arizona","TRUE","","1783","2.1","04003","Cochise","{""04003"": ""100""}","Cochise","04003","FALSE","FALSE","America/Phoenix"
-"85640","31.5619","-111.04936","Tumacacori","AZ","Arizona","TRUE","","174","9.1","04023","Santa Cruz","{""04023"": ""100""}","Santa Cruz","04023","FALSE","FALSE","America/Phoenix"
-"85641","32.04903","-110.6229","Vail","AZ","Arizona","TRUE","","27078","22.6","04019","Pima","{""04019"": ""100""}","Pima","04019","FALSE","FALSE","America/Phoenix"
-"85643","32.40377","-109.96368","Willcox","AZ","Arizona","TRUE","","8913","1.7","04003","Cochise","{""04003"": ""87.08"", ""04009"": ""12.92""}","Cochise|Graham","04003|04009","FALSE","FALSE","America/Phoenix"
-"85645","31.70306","-111.15952","Amado","AZ","Arizona","TRUE","","2480","4.7","04019","Pima","{""04019"": ""87.36"", ""04023"": ""12.64""}","Pima|Santa Cruz","04019|04023","FALSE","FALSE","America/Phoenix"
-"85646","31.60614","-110.99021","Tubac","AZ","Arizona","TRUE","","1404","4.2","04023","Santa Cruz","{""04023"": ""100""}","Santa Cruz","04023","FALSE","FALSE","America/Phoenix"
-"85648","31.48733","-111.04117","Rio Rico","AZ","Arizona","TRUE","","19681","48.3","04023","Santa Cruz","{""04023"": ""100""}","Santa Cruz","04023","FALSE","FALSE","America/Phoenix"
-"85650","31.50007","-110.20214","Sierra Vista","AZ","Arizona","TRUE","","15515","143.5","04003","Cochise","{""04003"": ""100""}","Cochise","04003","FALSE","FALSE","America/Phoenix"
-"85653","32.38976","-111.377","Marana","AZ","Arizona","TRUE","","19244","21.3","04019","Pima","{""04019"": ""99.95"", ""04021"": ""0.05""}","Pima|Pinal","04019|04021","FALSE","FALSE","America/Phoenix"
-"85654","32.41526","-111.1544","Rillito","AZ","Arizona","TRUE","","0","0.0","04019","Pima","{""04019"": ""100""}","Pima","04019","FALSE","FALSE","America/Phoenix"
-"85658","32.5492","-111.14839","Marana","AZ","Arizona","TRUE","","11482","19.8","04019","Pima","{""04019"": ""84.36"", ""04021"": ""15.64""}","Pima|Pinal","04019|04021","FALSE","FALSE","America/Phoenix"
-"85701","32.2169","-110.97095","Tucson","AZ","Arizona","TRUE","","5234","1397.4","04019","Pima","{""04019"": ""100""}","Pima","04019","FALSE","FALSE","America/Phoenix"
-"85704","32.33788","-110.98553","Tucson","AZ","Arizona","TRUE","","33065","714.3","04019","Pima","{""04019"": ""100""}","Pima","04019","FALSE","FALSE","America/Phoenix"
-"85705","32.2713","-110.99214","Tucson","AZ","Arizona","TRUE","","56314","1597.2","04019","Pima","{""04019"": ""100""}","Pima","04019","FALSE","FALSE","America/Phoenix"
-"85706","32.14763","-110.9334","Tucson","AZ","Arizona","TRUE","","55755","1718.0","04019","Pima","{""04019"": ""100""}","Pima","04019","FALSE","FALSE","America/Phoenix"
-"85707","32.17921","-110.887","Tucson","AZ","Arizona","TRUE","","678","57.7","04019","Pima","{""04019"": ""100""}","Pima","04019","FALSE","FALSE","America/Phoenix"
-"85708","32.18189","-110.8665","Tucson","AZ","Arizona","TRUE","","3836","1030.2","04019","Pima","{""04019"": ""100""}","Pima","04019","FALSE","FALSE","America/Phoenix"
-"85710","32.21414","-110.82375","Tucson","AZ","Arizona","TRUE","","54489","1741.7","04019","Pima","{""04019"": ""100""}","Pima","04019","FALSE","FALSE","America/Phoenix"
-"85711","32.21523","-110.8834","Tucson","AZ","Arizona","TRUE","","40403","1824.3","04019","Pima","{""04019"": ""100""}","Pima","04019","FALSE","FALSE","America/Phoenix"
-"85712","32.25233","-110.88648","Tucson","AZ","Arizona","TRUE","","32708","1854.8","04019","Pima","{""04019"": ""100""}","Pima","04019","FALSE","FALSE","America/Phoenix"
-"85713","32.19525","-111.01537","Tucson","AZ","Arizona","TRUE","","47272","770.1","04019","Pima","{""04019"": ""100""}","Pima","04019","FALSE","FALSE","America/Phoenix"
-"85714","32.1674","-110.95082","Tucson","AZ","Arizona","TRUE","","15084","884.9","04019","Pima","{""04019"": ""100""}","Pima","04019","FALSE","FALSE","America/Phoenix"
-"85715","32.24887","-110.83081","Tucson","AZ","Arizona","TRUE","","17550","1014.4","04019","Pima","{""04019"": ""100""}","Pima","04019","FALSE","FALSE","America/Phoenix"
-"85716","32.24151","-110.92322","Tucson","AZ","Arizona","TRUE","","30192","1652.5","04019","Pima","{""04019"": ""100""}","Pima","04019","FALSE","FALSE","America/Phoenix"
-"85718","32.33335","-110.91662","Tucson","AZ","Arizona","TRUE","","26346","266.9","04019","Pima","{""04019"": ""100""}","Pima","04019","FALSE","FALSE","America/Phoenix"
-"85719","32.24671","-110.9487","Tucson","AZ","Arizona","TRUE","","48854","2304.4","04019","Pima","{""04019"": ""100""}","Pima","04019","FALSE","FALSE","America/Phoenix"
-"85723","32.18023","-110.96516","Tucson","AZ","Arizona","TRUE","","0","0.0","04019","Pima","{""04019"": ""0""}","Pima","04019","FALSE","FALSE","America/Phoenix"
-"85724","32.24087","-110.94555","Tucson","AZ","Arizona","TRUE","","0","0.0","04019","Pima","{""04019"": ""0""}","Pima","04019","FALSE","FALSE","America/Phoenix"
-"85726","32.20478","-110.94563","Tucson","AZ","Arizona","TRUE","","0","0.0","04019","Pima","{""04019"": ""0""}","Pima","04019","FALSE","FALSE","America/Phoenix"
-"85730","32.18278","-110.74699","Tucson","AZ","Arizona","TRUE","","38343","318.9","04019","Pima","{""04019"": ""100""}","Pima","04019","FALSE","FALSE","America/Phoenix"
-"85735","32.09306","-111.34722","Tucson","AZ","Arizona","TRUE","","10978","22.2","04019","Pima","{""04019"": ""100""}","Pima","04019","FALSE","FALSE","America/Phoenix"
-"85736","31.90108","-111.37022","Tucson","AZ","Arizona","TRUE","","4445","4.9","04019","Pima","{""04019"": ""100""}","Pima","04019","FALSE","FALSE","America/Phoenix"
-"85737","32.41418","-110.94661","Tucson","AZ","Arizona","TRUE","","21743","348.5","04019","Pima","{""04019"": ""100""}","Pima","04019","FALSE","FALSE","America/Phoenix"
-"85739","32.61654","-110.9858","Tucson","AZ","Arizona","TRUE","","19303","40.0","04021","Pinal","{""04021"": ""57.05"", ""04019"": ""42.95""}","Pinal|Pima","04021|04019","FALSE","FALSE","America/Phoenix"
-"85741","32.33737","-111.03945","Tucson","AZ","Arizona","TRUE","","34813","1338.2","04019","Pima","{""04019"": ""100""}","Pima","04019","FALSE","FALSE","America/Phoenix"
-"85742","32.39472","-111.06572","Tucson","AZ","Arizona","TRUE","","28442","382.2","04019","Pima","{""04019"": ""100""}","Pima","04019","FALSE","FALSE","America/Phoenix"
-"85743","32.3108","-111.18817","Tucson","AZ","Arizona","TRUE","","31148","124.7","04019","Pima","{""04019"": ""100""}","Pima","04019","FALSE","FALSE","America/Phoenix"
-"85745","32.25879","-111.08972","Tucson","AZ","Arizona","TRUE","","38777","222.4","04019","Pima","{""04019"": ""100""}","Pima","04019","FALSE","FALSE","America/Phoenix"
-"85746","32.09161","-111.04443","Tucson","AZ","Arizona","TRUE","","45521","230.3","04019","Pima","{""04019"": ""100""}","Pima","04019","FALSE","FALSE","America/Phoenix"
-"85747","32.09498","-110.76538","Tucson","AZ","Arizona","TRUE","","26714","174.8","04019","Pima","{""04019"": ""100""}","Pima","04019","FALSE","FALSE","America/Phoenix"
-"85748","32.21898","-110.75197","Tucson","AZ","Arizona","TRUE","","19234","627.9","04019","Pima","{""04019"": ""100""}","Pima","04019","FALSE","FALSE","America/Phoenix"
-"85749","32.28951","-110.73178","Tucson","AZ","Arizona","TRUE","","18768","120.5","04019","Pima","{""04019"": ""100""}","Pima","04019","FALSE","FALSE","America/Phoenix"
-"85750","32.30199","-110.84021","Tucson","AZ","Arizona","TRUE","","24502","475.9","04019","Pima","{""04019"": ""100""}","Pima","04019","FALSE","FALSE","America/Phoenix"
-"85755","32.46842","-110.98153","Tucson","AZ","Arizona","TRUE","","17087","195.4","04019","Pima","{""04019"": ""100""}","Pima","04019","FALSE","FALSE","America/Phoenix"
-"85756","32.07926","-110.89889","Tucson","AZ","Arizona","TRUE","","42749","243.1","04019","Pima","{""04019"": ""100""}","Pima","04019","FALSE","FALSE","America/Phoenix"
-"85757","32.1285","-111.12212","Tucson","AZ","Arizona","TRUE","","20350","305.8","04019","Pima","{""04019"": ""100""}","Pima","04019","FALSE","FALSE","America/Phoenix"
-"85901","34.29987","-109.99994","Show Low","AZ","Arizona","TRUE","","18096","26.8","04017","Navajo","{""04017"": ""96.74"", ""04001"": ""3.26""}","Navajo|Apache","04017|04001","FALSE","FALSE","America/Phoenix"
-"85911","34.1355","-110.36938","Cibecue","AZ","Arizona","TRUE","","2209","1.3","04017","Navajo","{""04017"": ""100""}","Navajo","04017","FALSE","FALSE","America/Phoenix"
-"85912","34.42676","-109.92745","White Mountain Lake","AZ","Arizona","TRUE","","350","3.2","04017","Navajo","{""04017"": ""100""}","Navajo","04017","FALSE","FALSE","America/Phoenix"
-"85920","33.8602","-109.17652","Alpine","AZ","Arizona","TRUE","","448","1.6","04001","Apache","{""04001"": ""100""}","Apache","04001","FALSE","FALSE","America/Phoenix"
-"85922","33.50837","-109.13674","Blue","AZ","Arizona","TRUE","","28","0.0","04011","Greenlee","{""04011"": ""100""}","Greenlee","04011","FALSE","FALSE","America/Phoenix"
-"85923","34.32497","-110.34054","Clay Springs","AZ","Arizona","TRUE","","620","3.8","04017","Navajo","{""04017"": ""100""}","Navajo","04017","FALSE","FALSE","America/Phoenix"
-"85924","34.57457","-109.66171","Concho","AZ","Arizona","TRUE","","2660","1.3","04001","Apache","{""04001"": ""100""}","Apache","04001","FALSE","FALSE","America/Phoenix"
-"85925","34.088","-109.3232","Eagar","AZ","Arizona","TRUE","","4988","65.4","04001","Apache","{""04001"": ""100""}","Apache","04001","FALSE","FALSE","America/Phoenix"
-"85926","33.77421","-109.97933","Fort Apache","AZ","Arizona","TRUE","","421","23.7","04017","Navajo","{""04017"": ""100""}","Navajo","04017","FALSE","FALSE","America/Phoenix"
-"85927","34.00517","-109.46645","Greer","AZ","Arizona","TRUE","","115","0.3","04001","Apache","{""04001"": ""100""}","Apache","04001","FALSE","FALSE","America/Phoenix"
-"85928","34.53343","-110.55814","Heber","AZ","Arizona","TRUE","","1295","1.8","04017","Navajo","{""04017"": ""100""}","Navajo","04017","FALSE","FALSE","America/Phoenix"
-"85929","34.18582","-109.93655","Lakeside","AZ","Arizona","TRUE","","7416","47.4","04017","Navajo","{""04017"": ""100""}","Navajo","04017","FALSE","FALSE","America/Phoenix"
-"85930","34.04314","-109.7226","Mcnary","AZ","Arizona","TRUE","","1319","2.7","04017","Navajo","{""04017"": ""51.2"", ""04001"": ""48.8""}","Navajo|Apache","04017|04001","FALSE","FALSE","America/Phoenix"
-"85931","34.45127","-110.86441","Forest Lakes","AZ","Arizona","TRUE","","186","0.2","04005","Coconino","{""04005"": ""100""}","Coconino","04005","FALSE","FALSE","America/Phoenix"
-"85932","33.9525","-109.21465","Nutrioso","AZ","Arizona","TRUE","","367","1.1","04001","Apache","{""04001"": ""100""}","Apache","04001","FALSE","FALSE","America/Phoenix"
-"85933","34.35622","-110.50677","Overgaard","AZ","Arizona","TRUE","","2697","11.3","04017","Navajo","{""04017"": ""100""}","Navajo","04017","FALSE","FALSE","America/Phoenix"
-"85934","34.30029","-110.24571","Pinedale","AZ","Arizona","TRUE","","246","1.6","04017","Navajo","{""04017"": ""100""}","Navajo","04017","FALSE","FALSE","America/Phoenix"
-"85935","34.11527","-109.89579","Pinetop","AZ","Arizona","TRUE","","4665","37.3","04017","Navajo","{""04017"": ""100""}","Navajo","04017","FALSE","FALSE","America/Phoenix"
-"85936","34.64541","-109.27648","Saint Johns","AZ","Arizona","TRUE","","4373","1.7","04001","Apache","{""04001"": ""100""}","Apache","04001","FALSE","FALSE","America/Phoenix"
-"85937","34.55936","-110.06067","Snowflake","AZ","Arizona","TRUE","","8201","10.3","04017","Navajo","{""04017"": ""100""}","Navajo","04017","FALSE","FALSE","America/Phoenix"
-"85938","34.17017","-109.33153","Springerville","AZ","Arizona","TRUE","","2322","2.4","04001","Apache","{""04001"": ""100""}","Apache","04001","FALSE","FALSE","America/Phoenix"
-"85939","34.43896","-110.08576","Taylor","AZ","Arizona","TRUE","","4319","29.9","04017","Navajo","{""04017"": ""100""}","Navajo","04017","FALSE","FALSE","America/Phoenix"
-"85940","34.25247","-109.68806","Vernon","AZ","Arizona","TRUE","","1430","6.7","04001","Apache","{""04001"": ""100""}","Apache","04001","FALSE","FALSE","America/Phoenix"
-"85941","33.82048","-109.97094","Whiteriver","AZ","Arizona","TRUE","","11251","5.2","04017","Navajo","{""04017"": ""82.87"", ""04007"": ""16.88"", ""04001"": ""0.25""}","Navajo|Gila|Apache","04017|04007|04001","FALSE","FALSE","America/Phoenix"
-"85942","34.74311","-109.97073","Woodruff","AZ","Arizona","TRUE","","56","0.4","04017","Navajo","{""04017"": ""100""}","Navajo","04017","FALSE","FALSE","America/Phoenix"
-"86001","35.28948","-111.63773","Flagstaff","AZ","Arizona","TRUE","","45695","20.0","04005","Coconino","{""04005"": ""100""}","Coconino","04005","FALSE","FALSE","America/Phoenix"
-"86003","35.21976","-111.21412","Flagstaff","AZ","Arizona","TRUE","","26","0.5","04005","Coconino","{""04005"": ""100""}","Coconino","04005","FALSE","FALSE","America/Denver"
-"86004","35.38763","-111.3848","Flagstaff","AZ","Arizona","TRUE","","36260","18.4","04005","Coconino","{""04005"": ""100""}","Coconino","04005","FALSE","FALSE","America/Phoenix"
-"86011","35.18005","-111.65511","Flagstaff","AZ","Arizona","TRUE","","9772","5567.3","04005","Coconino","{""04005"": ""100""}","Coconino","04005","FALSE","FALSE","America/Phoenix"
-"86015","35.23244","-111.83768","Bellemont","AZ","Arizona","TRUE","","312","22.2","04005","Coconino","{""04005"": ""100""}","Coconino","04005","FALSE","FALSE","America/Phoenix"
-"86016","35.75045","-111.61879","Gray Mountain","AZ","Arizona","TRUE","","42","0.2","04005","Coconino","{""04005"": ""100""}","Coconino","04005","FALSE","FALSE","America/Denver"
-"86017","34.89815","-111.63621","Munds Park","AZ","Arizona","TRUE","","880","2.5","04005","Coconino","{""04005"": ""100""}","Coconino","04005","FALSE","FALSE","America/Phoenix"
-"86018","35.27148","-111.96429","Parks","AZ","Arizona","TRUE","","903","3.5","04005","Coconino","{""04005"": ""100""}","Coconino","04005","FALSE","FALSE","America/Phoenix"
-"86020","35.99215","-111.50372","Cameron","AZ","Arizona","TRUE","","1955","0.7","04005","Coconino","{""04005"": ""100""}","Coconino","04005","FALSE","FALSE","America/Denver"
-"86021","36.97182","-113.01701","Colorado City","AZ","Arizona","TRUE","","6160","89.3","04015","Mohave","{""04015"": ""100""}","Mohave","04015","FALSE","FALSE","America/Phoenix"
-"86022","36.84139","-112.57617","Fredonia","AZ","Arizona","TRUE","","1855","1.3","04005","Coconino","{""04005"": ""62.31"", ""04015"": ""37.69""}","Coconino|Mohave","04005|04015","FALSE","FALSE","America/Phoenix"
-"86023","36.05726","-112.07676","Grand Canyon","AZ","Arizona","TRUE","","2538","3.6","04005","Coconino","{""04005"": ""100""}","Coconino","04005","FALSE","FALSE","America/Phoenix"
-"86024","34.66152","-111.34045","Happy Jack","AZ","Arizona","TRUE","","737","0.5","04005","Coconino","{""04005"": ""100""}","Coconino","04005","FALSE","FALSE","America/Phoenix"
-"86025","34.93784","-110.09962","Holbrook","AZ","Arizona","TRUE","","5565","3.0","04017","Navajo","{""04017"": ""100""}","Navajo","04017","FALSE","FALSE","America/Phoenix"
-"86028","34.96732","-109.74023","Petrified Forest Natl Pk","AZ","Arizona","TRUE","","0","0.0","04001","Apache","{""04001"": ""100""}","Apache","04001","FALSE","FALSE","America/Phoenix"
-"86029","35.00327","-109.99538","Sun Valley","AZ","Arizona","TRUE","","77","0.5","04017","Navajo","{""04017"": ""100""}","Navajo","04017","FALSE","FALSE","America/Phoenix"
-"86030","35.9762","-110.71337","Hotevilla","AZ","Arizona","TRUE","","1519","2.5","04017","Navajo","{""04017"": ""99.78"", ""04005"": ""0.22""}","Navajo|Coconino","04017|04005","FALSE","FALSE","America/Phoenix"
-"86031","35.38652","-110.05272","Indian Wells","AZ","Arizona","TRUE","","1751","1.5","04017","Navajo","{""04017"": ""100""}","Navajo","04017","FALSE","FALSE","America/Denver"
-"86032","35.04269","-110.32513","Joseph City","AZ","Arizona","TRUE","","1818","3.5","04017","Navajo","{""04017"": ""100""}","Navajo","04017","FALSE","FALSE","America/Phoenix"
-"86033","36.67265","-110.22883","Kayenta","AZ","Arizona","TRUE","","8195","2.7","04017","Navajo","{""04017"": ""97.57"", ""04001"": ""2.43""}","Navajo|Apache","04017|04001","FALSE","FALSE","America/Denver"
-"86034","35.79022","-110.12806","Keams Canyon","AZ","Arizona","TRUE","","1902","1.5","04017","Navajo","{""04017"": ""83.84"", ""04001"": ""16.16""}","Navajo|Apache","04017|04001","FALSE","FALSE","America/Denver"
-"86035","35.44614","-110.96226","Leupp","AZ","Arizona","TRUE","","2125","1.1","04005","Coconino","{""04005"": ""100""}","Coconino","04005","FALSE","FALSE","America/Denver"
-"86036","36.73704","-111.82288","Marble Canyon","AZ","Arizona","TRUE","","400","0.2","04005","Coconino","{""04005"": ""100""}","Coconino","04005","FALSE","FALSE","America/Phoenix"
-"86038","34.94196","-111.43059","Mormon Lake","AZ","Arizona","TRUE","","57","0.5","04005","Coconino","{""04005"": ""100""}","Coconino","04005","FALSE","FALSE","America/Phoenix"
-"86039","36.06276","-110.53209","Kykotsmovi Village","AZ","Arizona","TRUE","","1179","1.5","04017","Navajo","{""04017"": ""100""}","Navajo","04017","FALSE","FALSE","America/Denver"
-"86040","36.69614","-111.41906","Page","AZ","Arizona","TRUE","","10662","5.5","04005","Coconino","{""04005"": ""100""}","Coconino","04005","FALSE","FALSE","America/Denver"
-"86042","35.86169","-110.38752","Polacca","AZ","Arizona","TRUE","","2142","11.7","04017","Navajo","{""04017"": ""100""}","Navajo","04017","FALSE","FALSE","America/Phoenix"
-"86043","35.80718","-110.53305","Second Mesa","AZ","Arizona","TRUE","","2840","10.5","04017","Navajo","{""04017"": ""100""}","Navajo","04017","FALSE","FALSE","America/Phoenix"
-"86044","36.70907","-110.84106","Tonalea","AZ","Arizona","TRUE","","3165","1.2","04005","Coconino","{""04005"": ""77.51"", ""04017"": ""12.47"", ""49037"": ""10.02""}","Coconino|Navajo|San Juan","04005|04017|49037","FALSE","FALSE","America/Denver"
-"86045","36.05915","-111.12132","Tuba City","AZ","Arizona","TRUE","","11670","3.3","04005","Coconino","{""04005"": ""100""}","Coconino","04005","FALSE","FALSE","America/Phoenix"
-"86046","35.43002","-112.1549","Williams","AZ","Arizona","TRUE","","5695","1.5","04005","Coconino","{""04005"": ""100""}","Coconino","04005","FALSE","FALSE","America/Phoenix"
-"86047","35.15126","-110.65321","Winslow","AZ","Arizona","TRUE","","15330","3.4","04017","Navajo","{""04017"": ""94.16"", ""04005"": ""5.84""}","Navajo|Coconino","04017|04005","FALSE","FALSE","America/Phoenix"
-"86052","36.34732","-112.11898","North Rim","AZ","Arizona","TRUE","","313","0.1","04005","Coconino","{""04005"": ""100""}","Coconino","04005","FALSE","FALSE","America/Phoenix"
-"86053","36.72417","-111.07331","Kaibeto","AZ","Arizona","TRUE","","2547","1.4","04005","Coconino","{""04005"": ""100""}","Coconino","04005","FALSE","FALSE","America/Denver"
-"86054","36.72366","-110.60998","Shonto","AZ","Arizona","TRUE","","1473","1.4","04017","Navajo","{""04017"": ""94.37"", ""04005"": ""5.63""}","Navajo|Coconino","04017|04005","FALSE","FALSE","America/Denver"
-"86301","34.59172","-112.42642","Prescott","AZ","Arizona","TRUE","","23087","288.1","04025","Yavapai","{""04025"": ""100""}","Yavapai","04025","FALSE","FALSE","America/Phoenix"
-"86303","34.48259","-112.44795","Prescott","AZ","Arizona","TRUE","","17719","51.2","04025","Yavapai","{""04025"": ""100""}","Yavapai","04025","FALSE","FALSE","America/Phoenix"
-"86305","34.81852","-112.95842","Prescott","AZ","Arizona","TRUE","","18876","5.8","04025","Yavapai","{""04025"": ""100""}","Yavapai","04025","FALSE","FALSE","America/Phoenix"
-"86313","34.55361","-112.45239","Prescott","AZ","Arizona","TRUE","","249","856.9","04025","Yavapai","{""04025"": ""100""}","Yavapai","04025","FALSE","FALSE","America/Phoenix"
-"86314","34.62598","-112.30617","Prescott Valley","AZ","Arizona","TRUE","","39703","212.2","04025","Yavapai","{""04025"": ""100""}","Yavapai","04025","FALSE","FALSE","America/Phoenix"
-"86315","34.70344","-112.27007","Prescott Valley","AZ","Arizona","TRUE","","7626","48.4","04025","Yavapai","{""04025"": ""100""}","Yavapai","04025","FALSE","FALSE","America/Phoenix"
-"86320","35.35372","-112.63608","Ash Fork","AZ","Arizona","TRUE","","2024","0.8","04025","Yavapai","{""04025"": ""53.05"", ""04005"": ""46.95""}","Yavapai|Coconino","04025|04005","FALSE","FALSE","America/Phoenix"
-"86321","34.49282","-113.10311","Bagdad","AZ","Arizona","TRUE","","2128","2.8","04025","Yavapai","{""04025"": ""100""}","Yavapai","04025","FALSE","FALSE","America/Phoenix"
-"86322","34.49827","-111.79602","Camp Verde","AZ","Arizona","TRUE","","12107","12.1","04025","Yavapai","{""04025"": ""100""}","Yavapai","04025","FALSE","FALSE","America/Phoenix"
-"86323","34.77472","-112.40792","Chino Valley","AZ","Arizona","TRUE","","16454","44.8","04025","Yavapai","{""04025"": ""100""}","Yavapai","04025","FALSE","FALSE","America/Phoenix"
-"86324","34.85458","-112.1248","Clarkdale","AZ","Arizona","TRUE","","4271","9.9","04025","Yavapai","{""04025"": ""100""}","Yavapai","04025","FALSE","FALSE","America/Phoenix"
-"86325","34.73459","-111.89791","Cornville","AZ","Arizona","TRUE","","5554","35.8","04025","Yavapai","{""04025"": ""100""}","Yavapai","04025","FALSE","FALSE","America/Phoenix"
-"86326","34.70001","-112.02364","Cottonwood","AZ","Arizona","TRUE","","25294","180.5","04025","Yavapai","{""04025"": ""100""}","Yavapai","04025","FALSE","FALSE","America/Phoenix"
-"86327","34.57131","-112.10498","Dewey","AZ","Arizona","TRUE","","9762","18.8","04025","Yavapai","{""04025"": ""100""}","Yavapai","04025","FALSE","FALSE","America/Phoenix"
-"86329","34.47164","-112.22499","Humboldt","AZ","Arizona","TRUE","","1037","10.8","04025","Yavapai","{""04025"": ""100""}","Yavapai","04025","FALSE","FALSE","America/Phoenix"
-"86331","34.72685","-112.14388","Jerome","AZ","Arizona","TRUE","","474","4.2","04025","Yavapai","{""04025"": ""100""}","Yavapai","04025","FALSE","FALSE","America/Phoenix"
-"86332","34.32055","-112.63311","Kirkland","AZ","Arizona","TRUE","","1808","1.4","04025","Yavapai","{""04025"": ""100""}","Yavapai","04025","FALSE","FALSE","America/Phoenix"
-"86333","34.32832","-112.08152","Mayer","AZ","Arizona","TRUE","","7651","6.0","04025","Yavapai","{""04025"": ""100""}","Yavapai","04025","FALSE","FALSE","America/Phoenix"
-"86334","34.95114","-112.54529","Paulden","AZ","Arizona","TRUE","","4913","8.3","04025","Yavapai","{""04025"": ""100""}","Yavapai","04025","FALSE","FALSE","America/Phoenix"
-"86335","34.69436","-111.68283","Rimrock","AZ","Arizona","TRUE","","4624","9.6","04025","Yavapai","{""04025"": ""100""}","Yavapai","04025","FALSE","FALSE","America/Phoenix"
-"86336","34.894","-111.87408","Sedona","AZ","Arizona","TRUE","","11595","19.9","04025","Yavapai","{""04025"": ""72.17"", ""04005"": ""27.83""}","Yavapai|Coconino","04025|04005","FALSE","FALSE","America/Phoenix"
-"86337","35.35562","-113.0216","Seligman","AZ","Arizona","TRUE","","1609","0.5","04025","Yavapai","{""04025"": ""95.58"", ""04005"": ""4.42""}","Yavapai|Coconino","04025|04005","FALSE","FALSE","America/Phoenix"
-"86338","34.58179","-112.7539","Skull Valley","AZ","Arizona","TRUE","","377","0.5","04025","Yavapai","{""04025"": ""100""}","Yavapai","04025","FALSE","FALSE","America/Phoenix"
-"86343","34.19336","-112.29585","Crown King","AZ","Arizona","TRUE","","51","0.2","04025","Yavapai","{""04025"": ""100""}","Yavapai","04025","FALSE","FALSE","America/Phoenix"
-"86351","34.77854","-111.78502","Sedona","AZ","Arizona","TRUE","","6552","63.1","04025","Yavapai","{""04025"": ""100""}","Yavapai","04025","FALSE","FALSE","America/Phoenix"
-"86401","35.13283","-113.70328","Kingman","AZ","Arizona","TRUE","","25799","9.0","04015","Mohave","{""04015"": ""100""}","Mohave","04015","FALSE","FALSE","America/Phoenix"
-"86403","34.48144","-114.34829","Lake Havasu City","AZ","Arizona","TRUE","","18104","697.6","04015","Mohave","{""04015"": ""100""}","Mohave","04015","FALSE","FALSE","America/Los_Angeles"
-"86404","34.61883","-114.30651","Lake Havasu City","AZ","Arizona","TRUE","","17280","38.5","04015","Mohave","{""04015"": ""100""}","Mohave","04015","FALSE","FALSE","America/Phoenix"
-"86406","34.42283","-114.12499","Lake Havasu City","AZ","Arizona","TRUE","","22802","35.9","04015","Mohave","{""04015"": ""100""}","Mohave","04015","FALSE","FALSE","America/Phoenix"
-"86409","35.46103","-114.02852","Kingman","AZ","Arizona","TRUE","","28675","31.2","04015","Mohave","{""04015"": ""100""}","Mohave","04015","FALSE","FALSE","America/Phoenix"
-"86411","35.42674","-113.64092","Hackberry","AZ","Arizona","TRUE","","151","0.1","04015","Mohave","{""04015"": ""100""}","Mohave","04015","FALSE","FALSE","America/Phoenix"
-"86413","35.20499","-114.33208","Golden Valley","AZ","Arizona","TRUE","","13173","7.2","04015","Mohave","{""04015"": ""100""}","Mohave","04015","FALSE","FALSE","America/Phoenix"
-"86426","35.00521","-114.56859","Fort Mohave","AZ","Arizona","TRUE","","14928","159.1","04015","Mohave","{""04015"": ""100""}","Mohave","04015","FALSE","FALSE","America/Phoenix"
-"86429","35.16265","-114.48865","Bullhead City","AZ","Arizona","TRUE","","7616","35.1","04015","Mohave","{""04015"": ""100""}","Mohave","04015","FALSE","FALSE","America/Phoenix"
-"86431","35.41556","-114.21983","Chloride","AZ","Arizona","TRUE","","476","3.2","04015","Mohave","{""04015"": ""100""}","Mohave","04015","FALSE","FALSE","America/Phoenix"
-"86432","36.46122","-113.58931","Littlefield","AZ","Arizona","TRUE","","3444","0.4","04015","Mohave","{""04015"": ""100""}","Mohave","04015","FALSE","FALSE","America/Phoenix"
-"86433","34.91763","-114.34877","Oatman","AZ","Arizona","TRUE","","43","0.1","04015","Mohave","{""04015"": ""100""}","Mohave","04015","FALSE","FALSE","America/Phoenix"
-"86434","35.69302","-113.61062","Peach Springs","AZ","Arizona","TRUE","","1609","0.8","04015","Mohave","{""04015"": ""93.83"", ""04025"": ""6.17""}","Mohave|Yavapai","04015|04025","FALSE","FALSE","America/Phoenix"
-"86435","36.05405","-112.90194","Supai","AZ","Arizona","TRUE","","0","0.0","04005","Coconino","{""04005"": ""100""}","Coconino","04005","FALSE","FALSE","America/Phoenix"
-"86436","34.75703","-114.38609","Topock","AZ","Arizona","TRUE","","945","3.3","04015","Mohave","{""04015"": ""100""}","Mohave","04015","FALSE","FALSE","America/Phoenix"
-"86437","35.37886","-113.6141","Valentine","AZ","Arizona","TRUE","","119","0.7","04015","Mohave","{""04015"": ""100""}","Mohave","04015","FALSE","FALSE","America/Phoenix"
-"86438","34.57122","-113.84304","Yucca","AZ","Arizona","TRUE","","752","0.2","04015","Mohave","{""04015"": ""100""}","Mohave","04015","FALSE","FALSE","America/Phoenix"
-"86440","34.88758","-114.53228","Mohave Valley","AZ","Arizona","TRUE","","7028","23.8","04015","Mohave","{""04015"": ""100""}","Mohave","04015","FALSE","FALSE","America/Phoenix"
-"86441","35.56922","-114.37781","Dolan Springs","AZ","Arizona","TRUE","","2354","1.8","04015","Mohave","{""04015"": ""100""}","Mohave","04015","FALSE","FALSE","America/Phoenix"
-"86442","35.08682","-114.56705","Bullhead City","AZ","Arizona","TRUE","","33895","343.7","04015","Mohave","{""04015"": ""100""}","Mohave","04015","FALSE","FALSE","America/Phoenix"
-"86443","35.98358","-114.45731","Temple Bar Marina","AZ","Arizona","TRUE","","0","0.0","04015","Mohave","{""04015"": ""100""}","Mohave","04015","FALSE","FALSE","America/Phoenix"
-"86444","35.90037","-114.04865","Meadview","AZ","Arizona","TRUE","","1254","1.0","04015","Mohave","{""04015"": ""100""}","Mohave","04015","FALSE","FALSE","America/Phoenix"
-"86445","35.77599","-114.50011","Willow Beach","AZ","Arizona","TRUE","","254","0.3","04015","Mohave","{""04015"": ""100""}","Mohave","04015","FALSE","FALSE","America/Phoenix"
-"86502","35.222","-109.58173","Chambers","AZ","Arizona","TRUE","","1095","0.6","04001","Apache","{""04001"": ""100""}","Apache","04001","FALSE","FALSE","America/Denver"
-"86503","36.17065","-109.64211","Chinle","AZ","Arizona","TRUE","","10818","5.0","04001","Apache","{""04001"": ""100""}","Apache","04001","FALSE","FALSE","America/Denver"
-"86504","35.93147","-109.13646","Fort Defiance","AZ","Arizona","TRUE","","7201","8.6","04001","Apache","{""04001"": ""88.56"", ""35031"": ""11.44""}","Apache|McKinley","04001|35031","FALSE","FALSE","America/Denver"
-"86505","35.62446","-109.71432","Ganado","AZ","Arizona","TRUE","","8036","3.0","04001","Apache","{""04001"": ""84.3"", ""04017"": ""15.7""}","Apache|Navajo","04001|04017","FALSE","FALSE","America/Denver"
-"86506","35.35243","-109.22936","Houck","AZ","Arizona","TRUE","","1266","2.9","04001","Apache","{""04001"": ""100""}","Apache","04001","FALSE","FALSE","America/Denver"
-"86507","36.41058","-109.26345","Lukachukai","AZ","Arizona","TRUE","","2323","4.0","04001","Apache","{""04001"": ""100""}","Apache","04001","FALSE","FALSE","America/Denver"
-"86508","35.32971","-109.08954","Lupton","AZ","Arizona","TRUE","","668","3.7","04001","Apache","{""04001"": ""100""}","Apache","04001","FALSE","FALSE","America/Denver"
-"86510","36.23729","-110.23069","Pinon","AZ","Arizona","TRUE","","4617","2.4","04017","Navajo","{""04017"": ""99.7"", ""04001"": ""0.3""}","Navajo|Apache","04017|04001","FALSE","FALSE","America/Denver"
-"86511","35.64746","-109.24552","Saint Michaels","AZ","Arizona","TRUE","","3680","3.9","04001","Apache","{""04001"": ""100""}","Apache","04001","FALSE","FALSE","America/Denver"
-"86512","35.09844","-109.26938","Sanders","AZ","Arizona","TRUE","","2787","1.9","04001","Apache","{""04001"": ""100""}","Apache","04001","FALSE","FALSE","America/Phoenix"
-"86514","36.88505","-109.33032","Teec Nos Pos","AZ","Arizona","TRUE","","3258","1.5","04001","Apache","{""04001"": ""90.77"", ""49037"": ""9.23""}","Apache|San Juan","04001|49037","FALSE","FALSE","America/Denver"
-"86515","35.6828","-108.9485","Window Rock","AZ","Arizona","TRUE","","4251","14.9","04001","Apache","{""04001"": ""64.61"", ""35031"": ""35.39""}","Apache|McKinley","04001|35031","FALSE","FALSE","America/Denver"
-"86520","36.11052","-109.93602","Blue Gap","AZ","Arizona","TRUE","","1540","2.4","04001","Apache","{""04001"": ""64.19"", ""04017"": ""35.81""}","Apache|Navajo","04001|04017","FALSE","FALSE","America/Denver"
-"86535","36.78066","-109.85989","Dennehotso","AZ","Arizona","TRUE","","1391","2.0","04001","Apache","{""04001"": ""100""}","Apache","04001","FALSE","FALSE","America/Denver"
-"86538","36.40507","-109.59933","Many Farms","AZ","Arizona","TRUE","","1825","3.5","04001","Apache","{""04001"": ""100""}","Apache","04001","FALSE","FALSE","America/Denver"
-"86540","35.93448","-109.46249","Nazlini","AZ","Arizona","TRUE","","1120","1.8","04001","Apache","{""04001"": ""100""}","Apache","04001","FALSE","FALSE","America/Denver"
-"86544","36.62586","-109.14637","Red Valley","AZ","Arizona","TRUE","","1307","2.0","04001","Apache","{""04001"": ""100""}","Apache","04001","FALSE","FALSE","America/Denver"
-"86545","36.70591","-109.60744","Rock Point","AZ","Arizona","TRUE","","1469","1.7","04001","Apache","{""04001"": ""100""}","Apache","04001","FALSE","FALSE","America/Denver"
-"86547","36.50412","-109.49668","Round Rock","AZ","Arizona","TRUE","","1175","3.5","04001","Apache","{""04001"": ""100""}","Apache","04001","FALSE","FALSE","America/Denver"
-"86556","36.26902","-109.21012","Tsaile","AZ","Arizona","TRUE","","2324","3.7","04001","Apache","{""04001"": ""100""}","Apache","04001","FALSE","FALSE","America/Denver"
-"87001","35.38884","-106.3516","Algodones","NM","New Mexico","TRUE","","3639","11.7","35043","Sandoval","{""35043"": ""100""}","Sandoval","35043","FALSE","FALSE","America/Denver"
-"87002","34.60272","-106.6599","Belen","NM","New Mexico","TRUE","","21993","24.6","35061","Valencia","{""35061"": ""100""}","Valencia","35061","FALSE","FALSE","America/Denver"
-"87004","35.35824","-106.58333","Bernalillo","NM","New Mexico","TRUE","","11673","79.0","35043","Sandoval","{""35043"": ""100""}","Sandoval","35043","FALSE","FALSE","America/Denver"
-"87005","35.26424","-107.97682","Bluewater","NM","New Mexico","TRUE","","219","2.8","35006","Cibola","{""35006"": ""100""}","Cibola","35006","FALSE","FALSE","America/Denver"
-"87006","34.49195","-106.84311","Bosque","NM","New Mexico","TRUE","","1549","10.4","35053","Socorro","{""35053"": ""59.6"", ""35061"": ""40.4""}","Socorro|Valencia","35053|35061","FALSE","FALSE","America/Denver"
-"87007","35.03773","-107.50292","Casa Blanca","NM","New Mexico","TRUE","","1020","16.5","35006","Cibola","{""35006"": ""100""}","Cibola","35006","FALSE","FALSE","America/Denver"
-"87008","35.14572","-106.3918","Cedar Crest","NM","New Mexico","TRUE","","2464","33.6","35001","Bernalillo","{""35001"": ""100""}","Bernalillo","35001","FALSE","FALSE","America/Denver"
-"87010","35.39865","-106.12888","Cerrillos","NM","New Mexico","TRUE","","1059","2.5","35049","Santa Fe","{""35049"": ""100""}","Santa Fe","35049","FALSE","FALSE","America/Denver"
-"87011","34.06453","-105.94955","Claunch","NM","New Mexico","TRUE","","48","0.0","35027","Lincoln","{""35027"": ""57.14"", ""35053"": ""42.86""}","Lincoln|Socorro","35027|35053","FALSE","FALSE","America/Denver"
-"87012","36.1018","-106.66923","Coyote","NM","New Mexico","TRUE","","226","0.9","35039","Rio Arriba","{""35039"": ""100""}","Rio Arriba","35039","FALSE","FALSE","America/Denver"
-"87013","35.90924","-107.39226","Cuba","NM","New Mexico","TRUE","","5556","1.2","35043","Sandoval","{""35043"": ""67.73"", ""35031"": ""26.56"", ""35039"": ""3.73"", ""35045"": ""1.98""}","Sandoval|McKinley|Rio Arriba|San Juan","35043|35031|35039|35045","FALSE","FALSE","America/Denver"
-"87014","35.21926","-107.38687","Cubero","NM","New Mexico","TRUE","","613","1.1","35006","Cibola","{""35006"": ""99.69"", ""35043"": ""0.31""}","Cibola|Sandoval","35006|35043","FALSE","FALSE","America/Denver"
-"87015","35.07419","-106.18002","Edgewood","NM","New Mexico","TRUE","","13399","34.4","35049","Santa Fe","{""35049"": ""67.66"", ""35057"": ""17.99"", ""35001"": ""14.35""}","Santa Fe|Torrance|Bernalillo","35049|35057|35001","FALSE","FALSE","America/Denver"
-"87016","34.77803","-105.92203","Estancia","NM","New Mexico","TRUE","","3184","1.6","35057","Torrance","{""35057"": ""100""}","Torrance","35057","FALSE","FALSE","America/Denver"
-"87017","36.32022","-106.76865","Gallina","NM","New Mexico","TRUE","","322","0.7","35039","Rio Arriba","{""35039"": ""100""}","Rio Arriba","35039","FALSE","FALSE","America/Denver"
-"87018","36.13061","-107.5115","Counselor","NM","New Mexico","TRUE","","589","1.9","35043","Sandoval","{""35043"": ""100""}","Sandoval","35043","FALSE","FALSE","America/Denver"
-"87020","34.93005","-107.93988","Grants","NM","New Mexico","TRUE","","11069","4.1","35006","Cibola","{""35006"": ""100""}","Cibola","35006","FALSE","FALSE","America/Denver"
-"87021","35.19137","-107.88389","Milan","NM","New Mexico","TRUE","","3421","171.1","35006","Cibola","{""35006"": ""100""}","Cibola","35006","FALSE","FALSE","America/Denver"
-"87022","34.89774","-106.70539","Isleta","NM","New Mexico","TRUE","","778","146.2","35001","Bernalillo","{""35001"": ""100""}","Bernalillo","35001","FALSE","FALSE","America/Denver"
-"87023","34.59821","-106.76059","Jarales","NM","New Mexico","TRUE","","529","65.4","35061","Valencia","{""35061"": ""100""}","Valencia","35061","FALSE","FALSE","America/Denver"
-"87024","35.68399","-106.73","Jemez Pueblo","NM","New Mexico","TRUE","","2334","10.4","35043","Sandoval","{""35043"": ""100""}","Sandoval","35043","FALSE","FALSE","America/Denver"
-"87025","35.83959","-106.63483","Jemez Springs","NM","New Mexico","TRUE","","1242","1.4","35043","Sandoval","{""35043"": ""100""}","Sandoval","35043","FALSE","FALSE","America/Denver"
-"87026","34.96242","-107.23255","Laguna","NM","New Mexico","TRUE","","4090","3.1","35006","Cibola","{""35006"": ""46.54"", ""35001"": ""37.98"", ""35061"": ""15.48""}","Cibola|Bernalillo|Valencia","35006|35001|35061","FALSE","FALSE","America/Denver"
-"87027","36.12632","-106.94777","La Jara","NM","New Mexico","TRUE","","341","3.7","35043","Sandoval","{""35043"": ""100""}","Sandoval","35043","FALSE","FALSE","America/Denver"
-"87028","34.3621","-106.77283","La Joya","NM","New Mexico","TRUE","","612","3.4","35053","Socorro","{""35053"": ""100""}","Socorro","35053","FALSE","FALSE","America/Denver"
-"87029","36.39636","-106.99763","Lindrith","NM","New Mexico","TRUE","","276","0.3","35039","Rio Arriba","{""35039"": ""100""}","Rio Arriba","35039","FALSE","FALSE","America/Denver"
-"87031","34.73181","-106.88782","Los Lunas","NM","New Mexico","TRUE","","44364","33.7","35061","Valencia","{""35061"": ""100""}","Valencia","35061","FALSE","FALSE","America/Denver"
-"87032","34.85126","-106.01138","Mcintosh","NM","New Mexico","TRUE","","253","6.1","35057","Torrance","{""35057"": ""100""}","Torrance","35057","FALSE","FALSE","America/Denver"
-"87034","34.78174","-107.5614","Pueblo Of Acoma","NM","New Mexico","TRUE","","1821","0.8","35006","Cibola","{""35006"": ""100""}","Cibola","35006","FALSE","FALSE","America/Denver"
-"87035","34.95997","-105.98054","Moriarty","NM","New Mexico","TRUE","","7512","13.2","35057","Torrance","{""35057"": ""98.6"", ""35049"": ""1.4""}","Torrance|Santa Fe","35057|35049","FALSE","FALSE","America/Denver"
-"87036","34.37816","-106.25927","Mountainair","NM","New Mexico","TRUE","","1548","0.6","35057","Torrance","{""35057"": ""98.82"", ""35053"": ""1.18""}","Torrance|Socorro","35057|35053","FALSE","FALSE","America/Denver"
-"87037","36.15984","-107.76644","Nageezi","NM","New Mexico","TRUE","","537","0.7","35045","San Juan","{""35045"": ""100""}","San Juan","35045","FALSE","FALSE","America/Denver"
-"87038","35.08945","-107.4352","New Laguna","NM","New Mexico","TRUE","","710","10.7","35006","Cibola","{""35006"": ""100""}","Cibola","35006","FALSE","FALSE","America/Denver"
-"87040","35.12356","-107.39163","Paguate","NM","New Mexico","TRUE","","432","9.3","35006","Cibola","{""35006"": ""100""}","Cibola","35006","FALSE","FALSE","America/Denver"
-"87041","35.68785","-106.32989","Pena Blanca","NM","New Mexico","TRUE","","874","2.4","35043","Sandoval","{""35043"": ""100""}","Sandoval","35043","FALSE","FALSE","America/Denver"
-"87042","34.82798","-106.68653","Peralta","NM","New Mexico","TRUE","","3576","305.0","35061","Valencia","{""35061"": ""100""}","Valencia","35061","FALSE","FALSE","America/Denver"
-"87043","35.28806","-106.46606","Placitas","NM","New Mexico","TRUE","","4686","21.1","35043","Sandoval","{""35043"": ""100""}","Sandoval","35043","FALSE","FALSE","America/Denver"
-"87044","35.66552","-106.64425","Ponderosa","NM","New Mexico","TRUE","","255","7.0","35043","Sandoval","{""35043"": ""100""}","Sandoval","35043","FALSE","FALSE","America/Denver"
-"87045","35.39241","-108.02154","Prewitt","NM","New Mexico","TRUE","","1572","3.8","35031","McKinley","{""35031"": ""97.54"", ""35006"": ""2.46""}","McKinley|Cibola","35031|35006","FALSE","FALSE","America/Denver"
-"87046","36.24694","-106.91609","Regina","NM","New Mexico","TRUE","","230","1.5","35043","Sandoval","{""35043"": ""74.19"", ""35039"": ""25.81""}","Sandoval|Rio Arriba","35043|35039","FALSE","FALSE","America/Denver"
-"87047","35.24327","-106.28953","Sandia Park","NM","New Mexico","TRUE","","4665","13.6","35001","Bernalillo","{""35001"": ""82.75"", ""35043"": ""12.85"", ""35049"": ""4.39""}","Bernalillo|Sandoval|Santa Fe","35001|35043|35049","FALSE","FALSE","America/Denver"
-"87048","35.23602","-106.62004","Corrales","NM","New Mexico","TRUE","","9072","317.2","35043","Sandoval","{""35043"": ""95.76"", ""35001"": ""4.24""}","Sandoval|Bernalillo","35043|35001","FALSE","FALSE","America/Denver"
-"87049","35.12405","-107.59336","San Fidel","NM","New Mexico","TRUE","","1600","9.7","35006","Cibola","{""35006"": ""100""}","Cibola","35006","FALSE","FALSE","America/Denver"
-"87051","35.04865","-107.83409","San Rafael","NM","New Mexico","TRUE","","1413","8.7","35006","Cibola","{""35006"": ""100""}","Cibola","35006","FALSE","FALSE","America/Denver"
-"87052","35.50479","-106.30689","Santo Domingo Pueblo","NM","New Mexico","TRUE","","2858","28.2","35043","Sandoval","{""35043"": ""100""}","Sandoval","35043","FALSE","FALSE","America/Denver"
-"87053","35.65124","-107.03361","San Ysidro","NM","New Mexico","TRUE","","1405","1.9","35043","Sandoval","{""35043"": ""100""}","Sandoval","35043","FALSE","FALSE","America/Denver"
-"87056","35.18882","-105.88649","Stanley","NM","New Mexico","TRUE","","1063","0.8","35049","Santa Fe","{""35049"": ""98.53"", ""35047"": ""1.47""}","Santa Fe|San Miguel","35049|35047","FALSE","FALSE","America/Denver"
-"87059","34.99401","-106.29716","Tijeras","NM","New Mexico","TRUE","","10488","28.4","35001","Bernalillo","{""35001"": ""100""}","Bernalillo","35001","FALSE","FALSE","America/Denver"
-"87061","34.73119","-106.37961","Torreon","NM","New Mexico","TRUE","","320","0.9","35057","Torrance","{""35057"": ""100""}","Torrance","35057","FALSE","FALSE","America/Denver"
-"87062","34.43995","-106.65882","Veguita","NM","New Mexico","TRUE","","1621","4.8","35053","Socorro","{""35053"": ""100""}","Socorro","35053","FALSE","FALSE","America/Denver"
-"87063","34.5011","-105.85749","Willard","NM","New Mexico","TRUE","","252","0.3","35057","Torrance","{""35057"": ""100""}","Torrance","35057","FALSE","FALSE","America/Denver"
-"87064","36.1862","-106.57686","Youngsville","NM","New Mexico","TRUE","","73","0.2","35039","Rio Arriba","{""35039"": ""100""}","Rio Arriba","35039","FALSE","FALSE","America/Denver"
-"87068","34.86111","-106.57306","Bosque Farms","NM","New Mexico","TRUE","","4897","20.4","35061","Valencia","{""35061"": ""100""}","Valencia","35061","FALSE","FALSE","America/Denver"
-"87070","35.0219","-105.77764","Clines Corners","NM","New Mexico","TRUE","","180","2.6","35057","Torrance","{""35057"": ""100""}","Torrance","35057","FALSE","FALSE","America/Denver"
-"87072","35.61197","-106.38808","Cochiti Pueblo","NM","New Mexico","TRUE","","669","11.7","35043","Sandoval","{""35043"": ""100""}","Sandoval","35043","FALSE","FALSE","America/Denver"
-"87083","35.64844","-106.34271","Cochiti Lake","NM","New Mexico","TRUE","","487","141.7","35043","Sandoval","{""35043"": ""100""}","Sandoval","35043","FALSE","FALSE","America/Denver"
-"87102","35.08098","-106.64664","Albuquerque","NM","New Mexico","TRUE","","19191","1139.3","35001","Bernalillo","{""35001"": ""100""}","Bernalillo","35001","FALSE","FALSE","America/Denver"
-"87104","35.10338","-106.67537","Albuquerque","NM","New Mexico","TRUE","","13534","1229.1","35001","Bernalillo","{""35001"": ""100""}","Bernalillo","35001","FALSE","FALSE","America/Denver"
-"87105","34.96917","-106.63094","Albuquerque","NM","New Mexico","TRUE","","58119","239.4","35001","Bernalillo","{""35001"": ""100""}","Bernalillo","35001","FALSE","FALSE","America/Denver"
-"87106","35.0582","-106.6216","Albuquerque","NM","New Mexico","TRUE","","26025","951.0","35001","Bernalillo","{""35001"": ""100""}","Bernalillo","35001","FALSE","FALSE","America/Denver"
-"87107","35.1374","-106.64303","Albuquerque","NM","New Mexico","TRUE","","30831","805.2","35001","Bernalillo","{""35001"": ""100""}","Bernalillo","35001","FALSE","FALSE","America/Denver"
-"87108","35.07254","-106.5784","Albuquerque","NM","New Mexico","TRUE","","37438","2460.4","35001","Bernalillo","{""35001"": ""100""}","Bernalillo","35001","FALSE","FALSE","America/Denver"
-"87109","35.15297","-106.57541","Albuquerque","NM","New Mexico","TRUE","","38967","1482.8","35001","Bernalillo","{""35001"": ""100""}","Bernalillo","35001","FALSE","FALSE","America/Denver"
-"87110","35.10811","-106.5781","Albuquerque","NM","New Mexico","TRUE","","38495","1720.8","35001","Bernalillo","{""35001"": ""100""}","Bernalillo","35001","FALSE","FALSE","America/Denver"
-"87111","35.14382","-106.4862","Albuquerque","NM","New Mexico","TRUE","","57108","1015.6","35001","Bernalillo","{""35001"": ""100""}","Bernalillo","35001","FALSE","FALSE","America/Denver"
-"87112","35.10108","-106.51629","Albuquerque","NM","New Mexico","TRUE","","42256","2019.2","35001","Bernalillo","{""35001"": ""100""}","Bernalillo","35001","FALSE","FALSE","America/Denver"
-"87113","35.18356","-106.59231","Albuquerque","NM","New Mexico","TRUE","","15712","674.1","35001","Bernalillo","{""35001"": ""100""}","Bernalillo","35001","FALSE","FALSE","America/Denver"
-"87114","35.19711","-106.68401","Albuquerque","NM","New Mexico","TRUE","","68789","1252.4","35001","Bernalillo","{""35001"": ""100""}","Bernalillo","35001","FALSE","FALSE","America/Denver"
-"87116","35.052","-106.57174","Albuquerque","NM","New Mexico","TRUE","","3919","460.6","35001","Bernalillo","{""35001"": ""100""}","Bernalillo","35001","FALSE","FALSE","America/Denver"
-"87117","35.02011","-106.55005","Kirtland Afb","NM","New Mexico","TRUE","","370","7.3","35001","Bernalillo","{""35001"": ""100""}","Bernalillo","35001","FALSE","FALSE","America/Denver"
-"87120","35.13508","-106.73708","Albuquerque","NM","New Mexico","TRUE","","63884","641.3","35001","Bernalillo","{""35001"": ""100""}","Bernalillo","35001","FALSE","FALSE","America/Denver"
-"87121","35.05852","-106.87791","Albuquerque","NM","New Mexico","TRUE","","78276","118.0","35001","Bernalillo","{""35001"": ""100""}","Bernalillo","35001","FALSE","FALSE","America/Denver"
-"87122","35.19069","-106.49886","Albuquerque","NM","New Mexico","TRUE","","18546","268.6","35001","Bernalillo","{""35001"": ""100""}","Bernalillo","35001","FALSE","FALSE","America/Denver"
-"87123","35.07105","-106.46794","Albuquerque","NM","New Mexico","TRUE","","44367","495.3","35001","Bernalillo","{""35001"": ""100""}","Bernalillo","35001","FALSE","FALSE","America/Denver"
-"87124","35.26775","-106.78288","Rio Rancho","NM","New Mexico","TRUE","","55173","302.3","35043","Sandoval","{""35043"": ""100""}","Sandoval","35043","FALSE","FALSE","America/Denver"
-"87144","35.32392","-106.70973","Rio Rancho","NM","New Mexico","TRUE","","43651","189.0","35043","Sandoval","{""35043"": ""100""}","Sandoval","35043","FALSE","FALSE","America/Denver"
-"87301","35.47483","-108.83461","Gallup","NM","New Mexico","TRUE","","24592","115.1","35031","McKinley","{""35031"": ""100""}","McKinley","35031","FALSE","FALSE","America/Denver"
-"87305","35.3839","-108.80091","Gallup","NM","New Mexico","TRUE","","3209","5.4","35031","McKinley","{""35031"": ""100""}","McKinley","35031","FALSE","FALSE","America/Denver"
-"87310","35.79415","-108.53908","Brimhall","NM","New Mexico","TRUE","","1081","2.3","35031","McKinley","{""35031"": ""100""}","McKinley","35031","FALSE","FALSE","America/Denver"
-"87311","35.6101","-108.51293","Church Rock","NM","New Mexico","TRUE","","4084","8.1","35031","McKinley","{""35031"": ""100""}","McKinley","35031","FALSE","FALSE","America/Denver"
-"87312","35.42263","-108.32303","Continental Divide","NM","New Mexico","TRUE","","439","3.4","35031","McKinley","{""35031"": ""100""}","McKinley","35031","FALSE","FALSE","America/Denver"
-"87313","35.8141","-108.07867","Crownpoint","NM","New Mexico","TRUE","","5967","2.4","35031","McKinley","{""35031"": ""94.44"", ""35045"": ""5.56""}","McKinley|San Juan","35031|35045","FALSE","FALSE","America/Denver"
-"87315","34.74291","-108.68277","Fence Lake","NM","New Mexico","TRUE","","190","0.1","35006","Cibola","{""35006"": ""100""}","Cibola","35006","FALSE","FALSE","America/Denver"
-"87316","35.4396","-108.45318","Fort Wingate","NM","New Mexico","TRUE","","1086","3.4","35031","McKinley","{""35031"": ""100""}","McKinley","35031","FALSE","FALSE","America/Denver"
-"87317","35.58757","-108.76101","Gamerco","NM","New Mexico","TRUE","","1778","29.4","35031","McKinley","{""35031"": ""100""}","McKinley","35031","FALSE","FALSE","America/Denver"
-"87319","35.47231","-108.9505","Mentmore","NM","New Mexico","TRUE","","2014","4.6","35031","McKinley","{""35031"": ""100""}","McKinley","35031","FALSE","FALSE","America/Denver"
-"87320","35.80791","-108.87611","Mexican Springs","NM","New Mexico","TRUE","","519","2.4","35031","McKinley","{""35031"": ""100""}","McKinley","35031","FALSE","FALSE","America/Denver"
-"87321","35.00127","-108.37074","Ramah","NM","New Mexico","TRUE","","2431","1.5","35006","Cibola","{""35006"": ""72.87"", ""35031"": ""27.13""}","Cibola|McKinley","35006|35031","FALSE","FALSE","America/Denver"
-"87322","35.52603","-108.65311","Rehoboth","NM","New Mexico","TRUE","","276","57.5","35031","McKinley","{""35031"": ""100""}","McKinley","35031","FALSE","FALSE","America/Denver"
-"87323","35.455","-108.1991","Thoreau","NM","New Mexico","TRUE","","4015","5.3","35031","McKinley","{""35031"": ""94.32"", ""35006"": ""5.68""}","McKinley|Cibola","35031|35006","FALSE","FALSE","America/Denver"
-"87325","36.00208","-108.62286","Tohatchi","NM","New Mexico","TRUE","","3110","2.1","35031","McKinley","{""35031"": ""56.49"", ""35045"": ""43.51""}","McKinley|San Juan","35031|35045","FALSE","FALSE","America/Denver"
-"87326","35.26584","-108.83133","Vanderwagen","NM","New Mexico","TRUE","","1690","3.8","35031","McKinley","{""35031"": ""100""}","McKinley","35031","FALSE","FALSE","America/Denver"
-"87327","34.98022","-108.78819","Zuni","NM","New Mexico","TRUE","","9002","6.0","35031","McKinley","{""35031"": ""99.92"", ""35006"": ""0.08""}","McKinley|Cibola","35031|35006","FALSE","FALSE","America/Denver"
-"87328","35.97473","-108.98609","Navajo","NM","New Mexico","TRUE","","2372","4.9","35031","McKinley","{""35031"": ""77.47"", ""35045"": ""15.59"", ""04001"": ""6.93""}","McKinley|San Juan|Apache","35031|35045|04001","FALSE","FALSE","America/Denver"
-"87347","35.42727","-108.44644","Jamestown","NM","New Mexico","TRUE","","160","1.8","35031","McKinley","{""35031"": ""100""}","McKinley","35031","FALSE","FALSE","America/Denver"
-"87357","34.94704","-108.3587","Pinehill","NM","New Mexico","TRUE","","769","4.4","35006","Cibola","{""35006"": ""100""}","Cibola","35006","FALSE","FALSE","America/Denver"
-"87364","36.14192","-108.70648","Sheep Springs","NM","New Mexico","TRUE","","1026","2.6","35045","San Juan","{""35045"": ""100""}","San Juan","35045","FALSE","FALSE","America/Denver"
-"87375","35.67201","-108.75616","Yatahey","NM","New Mexico","TRUE","","3390","13.7","35031","McKinley","{""35031"": ""100""}","McKinley","35031","FALSE","FALSE","America/Denver"
-"87401","36.74121","-108.17992","Farmington","NM","New Mexico","TRUE","","46614","137.8","35045","San Juan","{""35045"": ""100""}","San Juan","35045","FALSE","FALSE","America/Denver"
-"87402","36.78065","-108.14402","Farmington","NM","New Mexico","TRUE","","10089","339.6","35045","San Juan","{""35045"": ""100""}","San Juan","35045","FALSE","FALSE","America/Denver"
-"87410","36.86691","-107.87985","Aztec","NM","New Mexico","TRUE","","16766","24.1","35045","San Juan","{""35045"": ""100""}","San Juan","35045","FALSE","FALSE","America/Denver"
-"87412","36.69881","-107.47851","Blanco","NM","New Mexico","TRUE","","1384","1.1","35045","San Juan","{""35045"": ""93.89"", ""35039"": ""6.11""}","San Juan|Rio Arriba","35045|35039","FALSE","FALSE","America/Denver"
-"87413","36.41515","-107.97672","Bloomfield","NM","New Mexico","TRUE","","16917","10.1","35045","San Juan","{""35045"": ""100""}","San Juan","35045","FALSE","FALSE","America/Denver"
-"87415","36.81831","-108.09743","Flora Vista","NM","New Mexico","TRUE","","1715","60.3","35045","San Juan","{""35045"": ""100""}","San Juan","35045","FALSE","FALSE","America/Denver"
-"87416","36.69316","-108.4212","Fruitland","NM","New Mexico","TRUE","","5111","20.1","35045","San Juan","{""35045"": ""100""}","San Juan","35045","FALSE","FALSE","America/Denver"
-"87417","36.74406","-108.345","Kirtland","NM","New Mexico","TRUE","","5704","185.0","35045","San Juan","{""35045"": ""100""}","San Juan","35045","FALSE","FALSE","America/Denver"
-"87418","36.95199","-108.15521","La Plata","NM","New Mexico","TRUE","","986","6.2","35045","San Juan","{""35045"": ""100""}","San Juan","35045","FALSE","FALSE","America/Denver"
-"87419","36.88504","-107.50236","Navajo Dam","NM","New Mexico","TRUE","","359","0.5","35045","San Juan","{""35045"": ""96.12"", ""35039"": ""3.88""}","San Juan|Rio Arriba","35045|35039","FALSE","FALSE","America/Denver"
-"87420","36.69066","-108.84928","Shiprock","NM","New Mexico","TRUE","","12179","8.7","35045","San Juan","{""35045"": ""100""}","San Juan","35045","FALSE","FALSE","America/Denver"
-"87421","36.76368","-108.51858","Waterflow","NM","New Mexico","TRUE","","1626","15.6","35045","San Juan","{""35045"": ""100""}","San Juan","35045","FALSE","FALSE","America/Denver"
-"87455","36.3244","-108.64179","Newcomb","NM","New Mexico","TRUE","","1714","1.9","35045","San Juan","{""35045"": ""100""}","San Juan","35045","FALSE","FALSE","America/Denver"
-"87461","36.33533","-108.92874","Sanostee","NM","New Mexico","TRUE","","1384","1.8","35045","San Juan","{""35045"": ""100""}","San Juan","35045","FALSE","FALSE","America/Denver"
-"87499","36.34902","-108.21084","Farmington","NM","New Mexico","TRUE","","482","0.7","35045","San Juan","{""35045"": ""100""}","San Juan","35045","FALSE","FALSE","America/Denver"
-"87501","35.74235","-105.84143","Santa Fe","NM","New Mexico","TRUE","","15308","74.1","35049","Santa Fe","{""35049"": ""100""}","Santa Fe","35049","FALSE","FALSE","America/Denver"
-"87505","35.62193","-105.86873","Santa Fe","NM","New Mexico","TRUE","","30502","170.1","35049","Santa Fe","{""35049"": ""100""}","Santa Fe","35049","FALSE","FALSE","America/Denver"
-"87506","35.81952","-105.98861","Santa Fe","NM","New Mexico","TRUE","","13784","26.9","35049","Santa Fe","{""35049"": ""100""}","Santa Fe","35049","FALSE","FALSE","America/Denver"
-"87507","35.59345","-106.10777","Santa Fe","NM","New Mexico","TRUE","","49451","229.5","35049","Santa Fe","{""35049"": ""100""}","Santa Fe","35049","FALSE","FALSE","America/Denver"
-"87508","35.52744","-105.96873","Santa Fe","NM","New Mexico","TRUE","","19447","50.8","35049","Santa Fe","{""35049"": ""100""}","Santa Fe","35049","FALSE","FALSE","America/Denver"
-"87510","36.29328","-106.41423","Abiquiu","NM","New Mexico","TRUE","","987","0.9","35039","Rio Arriba","{""35039"": ""100""}","Rio Arriba","35039","FALSE","FALSE","America/Denver"
-"87511","36.10226","-105.92584","Alcalde","NM","New Mexico","TRUE","","2328","16.3","35039","Rio Arriba","{""35039"": ""100""}","Rio Arriba","35039","FALSE","FALSE","America/Denver"
-"87512","36.90902","-105.37427","Amalia","NM","New Mexico","TRUE","","66","0.1","35055","Taos","{""35055"": ""100""}","Taos","35055","FALSE","FALSE","America/Denver"
-"87513","36.57957","-105.68733","Arroyo Hondo","NM","New Mexico","TRUE","","884","10.3","35055","Taos","{""35055"": ""100""}","Taos","35055","FALSE","FALSE","America/Denver"
-"87514","36.54126","-105.52521","Arroyo Seco","NM","New Mexico","TRUE","","894","19.7","35055","Taos","{""35055"": ""100""}","Taos","35055","FALSE","FALSE","America/Denver"
-"87515","36.50231","-106.37718","Canjilon","NM","New Mexico","TRUE","","337","1.0","35039","Rio Arriba","{""35039"": ""100""}","Rio Arriba","35039","FALSE","FALSE","America/Denver"
-"87516","36.16236","-106.46572","Canones","NM","New Mexico","TRUE","","149","1.1","35039","Rio Arriba","{""35039"": ""100""}","Rio Arriba","35039","FALSE","FALSE","America/Denver"
-"87517","36.3949","-105.78756","Carson","NM","New Mexico","TRUE","","340","1.7","35055","Taos","{""35055"": ""100""}","Taos","35055","FALSE","FALSE","America/Denver"
-"87518","36.50733","-106.56265","Cebolla","NM","New Mexico","TRUE","","0","0.0","35039","Rio Arriba","{""35039"": ""100""}","Rio Arriba","35039","FALSE","FALSE","America/Denver"
-"87519","36.76989","-105.62796","Cerro","NM","New Mexico","TRUE","","467","7.9","35055","Taos","{""35055"": ""100""}","Taos","35055","FALSE","FALSE","America/Denver"
-"87520","36.88271","-106.62705","Chama","NM","New Mexico","TRUE","","1376","2.0","35039","Rio Arriba","{""35039"": ""100""}","Rio Arriba","35039","FALSE","FALSE","America/Denver"
-"87521","36.07629","-105.69802","Chamisal","NM","New Mexico","TRUE","","723","2.8","35055","Taos","{""35055"": ""76.37"", ""35039"": ""23.63""}","Taos|Rio Arriba","35055|35039","FALSE","FALSE","America/Denver"
-"87522","35.93801","-105.83647","Chimayo","NM","New Mexico","TRUE","","2715","6.7","35039","Rio Arriba","{""35039"": ""75.3"", ""35049"": ""24.7""}","Rio Arriba|Santa Fe","35039|35049","FALSE","FALSE","America/Denver"
-"87523","36.01364","-105.84268","Cordova","NM","New Mexico","TRUE","","704","37.7","35039","Rio Arriba","{""35039"": ""100""}","Rio Arriba","35039","FALSE","FALSE","America/Denver"
-"87524","36.93242","-105.67231","Costilla","NM","New Mexico","TRUE","","92","0.3","35055","Taos","{""35055"": ""100""}","Taos","35055","FALSE","FALSE","America/Denver"
-"87525","36.58686","-105.46136","Taos Ski Valley","NM","New Mexico","TRUE","","56","1.0","35055","Taos","{""35055"": ""100""}","Taos","35055","FALSE","FALSE","America/Denver"
-"87527","36.16447","-105.8627","Dixon","NM","New Mexico","TRUE","","356","3.8","35039","Rio Arriba","{""35039"": ""100""}","Rio Arriba","35039","FALSE","FALSE","America/Denver"
-"87528","36.66881","-106.98213","Dulce","NM","New Mexico","TRUE","","3546","1.8","35039","Rio Arriba","{""35039"": ""100""}","Rio Arriba","35039","FALSE","FALSE","America/Denver"
-"87529","36.47006","-105.62274","El Prado","NM","New Mexico","TRUE","","5116","77.8","35055","Taos","{""35055"": ""100""}","Taos","35055","FALSE","FALSE","America/Denver"
-"87530","36.34928","-106.19133","El Rito","NM","New Mexico","TRUE","","808","2.2","35039","Rio Arriba","{""35039"": ""100""}","Rio Arriba","35039","FALSE","FALSE","America/Denver"
-"87531","36.24753","-105.8509","Embudo","NM","New Mexico","TRUE","","478","5.2","35039","Rio Arriba","{""35039"": ""66.58"", ""35055"": ""33.42""}","Rio Arriba|Taos","35039|35055","FALSE","FALSE","America/Denver"
-"87532","35.99328","-106.08987","Espanola","NM","New Mexico","TRUE","","18641","63.2","35039","Rio Arriba","{""35039"": ""69.69"", ""35049"": ""30.31""}","Rio Arriba|Santa Fe","35039|35049","FALSE","FALSE","America/Denver"
-"87533","36.02388","-106.06493","Espanola","NM","New Mexico","TRUE","","154","2870.8","35039","Rio Arriba","{""35039"": ""100""}","Rio Arriba","35039","FALSE","FALSE","America/Denver"
-"87535","35.52874","-105.74774","Glorieta","NM","New Mexico","TRUE","","1258","7.6","35049","Santa Fe","{""35049"": ""77.64"", ""35047"": ""22.36""}","Santa Fe|San Miguel","35049|35047","FALSE","FALSE","America/Denver"
-"87537","36.04961","-106.18535","Hernandez","NM","New Mexico","TRUE","","2698","17.5","35039","Rio Arriba","{""35039"": ""100""}","Rio Arriba","35039","FALSE","FALSE","America/Denver"
-"87538","35.49455","-105.57126","Ilfeld","NM","New Mexico","TRUE","","425","2.1","35047","San Miguel","{""35047"": ""100""}","San Miguel","35047","FALSE","FALSE","America/Denver"
-"87539","36.38171","-106.03924","La Madera","NM","New Mexico","TRUE","","25","0.1","35039","Rio Arriba","{""35039"": ""100""}","Rio Arriba","35039","FALSE","FALSE","America/Denver"
-"87540","35.44515","-105.90366","Lamy","NM","New Mexico","TRUE","","792","3.6","35049","Santa Fe","{""35049"": ""100""}","Santa Fe","35049","FALSE","FALSE","America/Denver"
-"87543","36.107","-105.6612","Llano","NM","New Mexico","TRUE","","97","1.9","35055","Taos","{""35055"": ""100""}","Taos","35055","FALSE","FALSE","America/Denver"
-"87544","35.84233","-106.29079","Los Alamos","NM","New Mexico","TRUE","","18625","128.9","35028","Los Alamos","{""35028"": ""100""}","Los Alamos","35028","FALSE","FALSE","America/Denver"
-"87548","36.18298","-106.15596","Medanales","NM","New Mexico","TRUE","","1295","14.9","35039","Rio Arriba","{""35039"": ""100""}","Rio Arriba","35039","FALSE","FALSE","America/Denver"
-"87549","36.2414","-106.01215","Ojo Caliente","NM","New Mexico","TRUE","","662","2.7","35039","Rio Arriba","{""35039"": ""87.66"", ""35055"": ""12.34""}","Rio Arriba|Taos","35039|35055","FALSE","FALSE","America/Denver"
-"87551","36.69507","-106.66806","Los Ojos","NM","New Mexico","TRUE","","295","3.7","35039","Rio Arriba","{""35039"": ""100""}","Rio Arriba","35039","FALSE","FALSE","America/Denver"
-"87552","35.64618","-105.60163","Pecos","NM","New Mexico","TRUE","","3459","9.0","35047","San Miguel","{""35047"": ""100""}","San Miguel","35047","FALSE","FALSE","America/Denver"
-"87553","36.20595","-105.70695","Penasco","NM","New Mexico","TRUE","","1386","26.1","35055","Taos","{""35055"": ""100""}","Taos","35055","FALSE","FALSE","America/Denver"
-"87554","36.48752","-106.02537","Petaca","NM","New Mexico","TRUE","","0","0.0","35039","Rio Arriba","{""35039"": ""100""}","Rio Arriba","35039","FALSE","FALSE","America/Denver"
-"87556","36.76309","-105.53864","Questa","NM","New Mexico","TRUE","","2370","4.5","35055","Taos","{""35055"": ""100""}","Taos","35055","FALSE","FALSE","America/Denver"
-"87557","36.28667","-105.6835","Ranchos De Taos","NM","New Mexico","TRUE","","5980","22.8","35055","Taos","{""35055"": ""100""}","Taos","35055","FALSE","FALSE","America/Denver"
-"87558","36.68695","-105.39021","Red River","NM","New Mexico","TRUE","","465","1.4","35055","Taos","{""35055"": ""100""}","Taos","35055","FALSE","FALSE","America/Denver"
-"87560","35.22435","-105.50236","Ribera","NM","New Mexico","TRUE","","1427","1.2","35047","San Miguel","{""35047"": ""100""}","San Miguel","35047","FALSE","FALSE","America/Denver"
-"87562","35.41692","-105.68447","Rowe","NM","New Mexico","TRUE","","361","2.4","35047","San Miguel","{""35047"": ""100""}","San Miguel","35047","FALSE","FALSE","America/Denver"
-"87564","36.60798","-105.62786","San Cristobal","NM","New Mexico","TRUE","","203","3.2","35055","Taos","{""35055"": ""100""}","Taos","35055","FALSE","FALSE","America/Denver"
-"87565","35.45598","-105.49284","San Jose","NM","New Mexico","TRUE","","368","2.9","35047","San Miguel","{""35047"": ""100""}","San Miguel","35047","FALSE","FALSE","America/Denver"
-"87566","36.07121","-106.07011","Ohkay Owingeh","NM","New Mexico","TRUE","","3128","58.0","35039","Rio Arriba","{""35039"": ""100""}","Rio Arriba","35039","FALSE","FALSE","America/Denver"
-"87567","35.9939","-106.02023","Santa Cruz","NM","New Mexico","TRUE","","1157","137.5","35049","Santa Fe","{""35049"": ""100""}","Santa Fe","35049","FALSE","FALSE","America/Denver"
-"87569","35.3464","-105.30068","Serafina","NM","New Mexico","TRUE","","438","2.1","35047","San Miguel","{""35047"": ""100""}","San Miguel","35047","FALSE","FALSE","America/Denver"
-"87571","36.39918","-105.53627","Taos","NM","New Mexico","TRUE","","12197","31.0","35055","Taos","{""35055"": ""100""}","Taos","35055","FALSE","FALSE","America/Denver"
-"87573","35.77291","-105.67126","Tererro","NM","New Mexico","TRUE","","32","0.1","35047","San Miguel","{""35047"": ""88.89"", ""35049"": ""11.11""}","San Miguel|Santa Fe","35047|35049","FALSE","FALSE","America/Denver"
-"87574","35.81671","-105.88857","Tesuque","NM","New Mexico","TRUE","","123","15.8","35049","Santa Fe","{""35049"": ""100""}","Santa Fe","35049","FALSE","FALSE","America/Denver"
-"87575","36.74607","-106.38491","Tierra Amarilla","NM","New Mexico","TRUE","","899","0.6","35039","Rio Arriba","{""35039"": ""100""}","Rio Arriba","35039","FALSE","FALSE","America/Denver"
-"87577","36.67246","-105.98125","Tres Piedras","NM","New Mexico","TRUE","","363","0.4","35055","Taos","{""35055"": ""86.34"", ""35039"": ""13.66""}","Taos|Rio Arriba","35055|35039","FALSE","FALSE","America/Denver"
-"87578","36.03903","-105.7653","Truchas","NM","New Mexico","TRUE","","185","1.6","35039","Rio Arriba","{""35039"": ""100""}","Rio Arriba","35039","FALSE","FALSE","America/Denver"
-"87579","36.12477","-105.55659","Vadito","NM","New Mexico","TRUE","","930","2.9","35055","Taos","{""35055"": ""100""}","Taos","35055","FALSE","FALSE","America/Denver"
-"87580","36.57008","-105.56577","Valdez","NM","New Mexico","TRUE","","432","7.1","35055","Taos","{""35055"": ""100""}","Taos","35055","FALSE","FALSE","America/Denver"
-"87581","36.52862","-106.14479","Vallecitos","NM","New Mexico","TRUE","","33","0.1","35039","Rio Arriba","{""35039"": ""100""}","Rio Arriba","35039","FALSE","FALSE","America/Denver"
-"87582","36.15503","-106.01298","Velarde","NM","New Mexico","TRUE","","717","14.8","35039","Rio Arriba","{""35039"": ""100""}","Rio Arriba","35039","FALSE","FALSE","America/Denver"
-"87583","35.2313","-105.33623","Villanueva","NM","New Mexico","TRUE","","204","2.7","35047","San Miguel","{""35047"": ""100""}","San Miguel","35047","FALSE","FALSE","America/Denver"
-"87701","35.53869","-104.92699","Las Vegas","NM","New Mexico","TRUE","","19020","4.5","35047","San Miguel","{""35047"": ""100""}","San Miguel","35047","FALSE","FALSE","America/Denver"
-"87710","36.3847","-105.24389","Angel Fire","NM","New Mexico","TRUE","","1454","3.6","35007","Colfax","{""35007"": ""100""}","Colfax","35007","FALSE","FALSE","America/Denver"
-"87711","35.22451","-105.10452","Anton Chico","NM","New Mexico","TRUE","","567","0.9","35019","Guadalupe","{""35019"": ""64.94"", ""35047"": ""35.06""}","Guadalupe|San Miguel","35019|35047","FALSE","FALSE","America/Denver"
-"87712","35.86843","-105.17042","Buena Vista","NM","New Mexico","TRUE","","296","1.7","35033","Mora","{""35033"": ""100""}","Mora","35033","FALSE","FALSE","America/Denver"
-"87713","36.16713","-105.36485","Chacon","NM","New Mexico","TRUE","","249","1.4","35033","Mora","{""35033"": ""100""}","Mora","35033","FALSE","FALSE","America/Denver"
-"87714","36.51452","-105.03183","Cimarron","NM","New Mexico","TRUE","","1099","1.0","35007","Colfax","{""35007"": ""100""}","Colfax","35007","FALSE","FALSE","America/Denver"
-"87715","36.01816","-105.42581","Cleveland","NM","New Mexico","TRUE","","394","3.6","35033","Mora","{""35033"": ""100""}","Mora","35033","FALSE","FALSE","America/Denver"
-"87718","36.59004","-105.29664","Eagle Nest","NM","New Mexico","TRUE","","381","1.6","35007","Colfax","{""35007"": ""100""}","Colfax","35007","FALSE","FALSE","America/Denver"
-"87722","36.15243","-105.24648","Guadalupita","NM","New Mexico","TRUE","","925","4.1","35033","Mora","{""35033"": ""100""}","Mora","35033","FALSE","FALSE","America/Denver"
-"87723","36.05875","-105.37558","Holman","NM","New Mexico","TRUE","","344","6.7","35033","Mora","{""35033"": ""100""}","Mora","35033","FALSE","FALSE","America/Denver"
-"87724","35.17355","-105.07814","La Loma","NM","New Mexico","TRUE","","27","1.8","35019","Guadalupe","{""35019"": ""100""}","Guadalupe","35019","FALSE","FALSE","America/Denver"
-"87728","36.59629","-104.61989","Maxwell","NM","New Mexico","TRUE","","439","1.3","35007","Colfax","{""35007"": ""100""}","Colfax","35007","FALSE","FALSE","America/Denver"
-"87729","36.33255","-104.8006","Miami","NM","New Mexico","TRUE","","43","0.2","35007","Colfax","{""35007"": ""100""}","Colfax","35007","FALSE","FALSE","America/Denver"
-"87730","36.14842","-104.21107","Mills","NM","New Mexico","TRUE","","22","0.0","35021","Harding","{""35021"": ""100""}","Harding","35021","FALSE","FALSE","America/Denver"
-"87731","35.73196","-105.41386","Montezuma","NM","New Mexico","TRUE","","250","1.1","35047","San Miguel","{""35047"": ""100""}","San Miguel","35047","FALSE","FALSE","America/Denver"
-"87732","35.9634","-105.3675","Mora","NM","New Mexico","TRUE","","1251","3.1","35033","Mora","{""35033"": ""100""}","Mora","35033","FALSE","FALSE","America/Denver"
-"87733","35.80997","-103.82487","Mosquero","NM","New Mexico","TRUE","","108","0.1","35021","Harding","{""35021"": ""100""}","Harding","35021","FALSE","FALSE","America/Denver"
-"87734","36.16938","-105.07791","Ocate","NM","New Mexico","TRUE","","316","0.8","35033","Mora","{""35033"": ""98.9"", ""35007"": ""1.1""}","Mora|Colfax","35033|35007","FALSE","FALSE","America/Denver"
-"87735","36.07344","-105.1471","Ojo Feliz","NM","New Mexico","TRUE","","77","0.9","35033","Mora","{""35033"": ""100""}","Mora","35033","FALSE","FALSE","America/Denver"
-"87736","35.98112","-105.19545","Rainsville","NM","New Mexico","TRUE","","118","1.8","35033","Mora","{""35033"": ""100""}","Mora","35033","FALSE","FALSE","America/Denver"
-"87740","36.75538","-104.41045","Raton","NM","New Mexico","TRUE","","7007","2.2","35007","Colfax","{""35007"": ""100""}","Colfax","35007","FALSE","FALSE","America/Denver"
-"87742","35.8884","-105.51851","Rociada","NM","New Mexico","TRUE","","494","1.5","35047","San Miguel","{""35047"": ""83.25"", ""35033"": ""16.75""}","San Miguel|Mora","35047|35033","FALSE","FALSE","America/Denver"
-"87743","35.98141","-104.08691","Roy","NM","New Mexico","TRUE","","257","0.2","35021","Harding","{""35021"": ""100""}","Harding","35021","FALSE","FALSE","America/Denver"
-"87745","35.78161","-105.24435","Sapello","NM","New Mexico","TRUE","","877","2.6","35047","San Miguel","{""35047"": ""95.87"", ""35033"": ""4.13""}","San Miguel|Mora","35047|35033","FALSE","FALSE","America/Denver"
-"87746","35.64111","-104.23613","Solano","NM","New Mexico","TRUE","","55","0.0","35047","San Miguel","{""35047"": ""85.83"", ""35021"": ""14.17""}","San Miguel|Harding","35047|35021","FALSE","FALSE","America/Denver"
-"87747","36.36658","-104.46312","Springer","NM","New Mexico","TRUE","","1518","0.8","35007","Colfax","{""35007"": ""100""}","Colfax","35007","FALSE","FALSE","America/Denver"
-"87749","36.54831","-105.08379","Ute Park","NM","New Mexico","TRUE","","205","1.6","35007","Colfax","{""35007"": ""100""}","Colfax","35007","FALSE","FALSE","America/Denver"
-"87750","35.82539","-104.92706","Valmora","NM","New Mexico","TRUE","","0","0.0","35033","Mora","{""35033"": ""100""}","Mora","35033","FALSE","FALSE","America/Denver"
-"87752","36.01907","-104.64816","Wagon Mound","NM","New Mexico","TRUE","","374","0.2","35033","Mora","{""35033"": ""100""}","Mora","35033","FALSE","FALSE","America/Denver"
-"87753","35.85806","-104.96389","Watrous","NM","New Mexico","TRUE","","130","0.3","35033","Mora","{""35033"": ""100""}","Mora","35033","FALSE","FALSE","America/Denver"
-"87801","34.13037","-106.84601","Socorro","NM","New Mexico","TRUE","","9373","25.3","35053","Socorro","{""35053"": ""100""}","Socorro","35053","FALSE","FALSE","America/Denver"
-"87820","33.89521","-108.54735","Aragon","NM","New Mexico","TRUE","","93","0.2","35003","Catron","{""35003"": ""100""}","Catron","35003","FALSE","FALSE","America/Denver"
-"87821","33.97948","-108.05949","Datil","NM","New Mexico","TRUE","","586","0.1","35003","Catron","{""35003"": ""100""}","Catron","35003","FALSE","FALSE","America/Denver"
-"87823","34.19268","-106.9488","Lemitar","NM","New Mexico","TRUE","","878","5.7","35053","Socorro","{""35053"": ""100""}","Socorro","35053","FALSE","FALSE","America/Denver"
-"87824","33.82744","-108.97822","Luna","NM","New Mexico","TRUE","","61","0.2","35003","Catron","{""35003"": ""100""}","Catron","35003","FALSE","FALSE","America/Denver"
-"87825","33.8756","-107.63263","Magdalena","NM","New Mexico","TRUE","","2260","0.3","35053","Socorro","{""35053"": ""98.73"", ""35003"": ""1.27""}","Socorro|Catron","35053|35003","FALSE","FALSE","America/Denver"
-"87827","34.40185","-108.10286","Pie Town","NM","New Mexico","TRUE","","146","0.1","35003","Catron","{""35003"": ""100""}","Catron","35003","FALSE","FALSE","America/Denver"
-"87828","34.20595","-106.91672","Polvadera","NM","New Mexico","TRUE","","338","65.8","35053","Socorro","{""35053"": ""100""}","Socorro","35053","FALSE","FALSE","America/Denver"
-"87829","34.32592","-108.65876","Quemado","NM","New Mexico","TRUE","","778","0.2","35003","Catron","{""35003"": ""98.05"", ""35006"": ""1.95""}","Catron|Cibola","35003|35006","FALSE","FALSE","America/Denver"
-"87830","33.7196","-108.73952","Reserve","NM","New Mexico","TRUE","","1268","0.6","35003","Catron","{""35003"": ""100""}","Catron","35003","FALSE","FALSE","America/Denver"
-"87831","34.26503","-106.93317","San Acacia","NM","New Mexico","TRUE","","221","6.5","35053","Socorro","{""35053"": ""100""}","Socorro","35053","FALSE","FALSE","America/Denver"
-"87832","33.8189","-106.8284","San Antonio","NM","New Mexico","TRUE","","199","0.1","35053","Socorro","{""35053"": ""100""}","Socorro","35053","FALSE","FALSE","America/Denver"
-"87901","33.19995","-107.14359","Truth Or Consequences","NM","New Mexico","TRUE","","6224","3.0","35051","Sierra","{""35051"": ""100""}","Sierra","35051","FALSE","FALSE","America/Denver"
-"87930","32.83387","-107.43342","Arrey","NM","New Mexico","TRUE","","759","2.0","35051","Sierra","{""35051"": ""100""}","Sierra","35051","FALSE","FALSE","America/Denver"
-"87931","32.96411","-107.41022","Caballo","NM","New Mexico","TRUE","","889","3.1","35051","Sierra","{""35051"": ""100""}","Sierra","35051","FALSE","FALSE","America/Denver"
-"87933","32.79024","-107.27793","Derry","NM","New Mexico","TRUE","","149","47.1","35051","Sierra","{""35051"": ""100""}","Sierra","35051","FALSE","FALSE","America/Denver"
-"87935","33.25398","-107.22754","Elephant Butte","NM","New Mexico","TRUE","","1422","15.1","35051","Sierra","{""35051"": ""100""}","Sierra","35051","FALSE","FALSE","America/Denver"
-"87936","32.7532","-107.26365","Garfield","NM","New Mexico","TRUE","","191","6.1","35013","Doña Ana","{""35013"": ""88.54"", ""35051"": ""11.46""}","Doña Ana|Sierra","35013|35051","FALSE","FALSE","America/Denver"
-"87937","32.5998","-107.19131","Hatch","NM","New Mexico","TRUE","","3404","7.3","35013","Doña Ana","{""35013"": ""100""}","Doña Ana","35013","FALSE","FALSE","America/Denver"
-"87939","33.41286","-107.48874","Monticello","NM","New Mexico","TRUE","","100","0.3","35051","Sierra","{""35051"": ""100""}","Sierra","35051","FALSE","FALSE","America/Denver"
-"87940","32.61067","-106.99736","Rincon","NM","New Mexico","TRUE","","759","4.6","35013","Doña Ana","{""35013"": ""100""}","Doña Ana","35013","FALSE","FALSE","America/Denver"
-"87941","32.71095","-107.22014","Salem","NM","New Mexico","TRUE","","832","40.7","35013","Doña Ana","{""35013"": ""100""}","Doña Ana","35013","FALSE","FALSE","America/Denver"
-"87942","33.09827","-107.43514","Williamsburg","NM","New Mexico","TRUE","","1008","2.6","35051","Sierra","{""35051"": ""100""}","Sierra","35051","FALSE","FALSE","America/Denver"
-"87943","33.39161","-107.73215","Winston","NM","New Mexico","TRUE","","172","0.1","35051","Sierra","{""35051"": ""77.19"", ""35053"": ""15.79"", ""35003"": ""7.02""}","Sierra|Socorro|Catron","35051|35053|35003","FALSE","FALSE","America/Denver"
-"88001","32.2901","-106.75394","Las Cruces","NM","New Mexico","TRUE","","36050","1225.0","35013","Doña Ana","{""35013"": ""100""}","Doña Ana","35013","FALSE","FALSE","America/Denver"
-"88002","32.46284","-106.48007","White Sands Missile Range","NM","New Mexico","TRUE","","1277","2.7","35013","Doña Ana","{""35013"": ""100""}","Doña Ana","35013","FALSE","FALSE","America/Denver"
-"88003","32.28103","-106.74589","Las Cruces","NM","New Mexico","TRUE","","581","677.9","35013","Doña Ana","{""35013"": ""100""}","Doña Ana","35013","FALSE","FALSE","America/Denver"
-"88004","32.2231","-106.98744","Las Cruces","NM","New Mexico","TRUE","","857","8.5","35013","Doña Ana","{""35013"": ""100""}","Doña Ana","35013","FALSE","FALSE","America/Denver"
-"88005","32.2581","-106.82185","Las Cruces","NM","New Mexico","TRUE","","26940","211.3","35013","Doña Ana","{""35013"": ""100""}","Doña Ana","35013","FALSE","FALSE","America/Denver"
-"88007","32.31084","-107.02653","Las Cruces","NM","New Mexico","TRUE","","23410","24.3","35013","Doña Ana","{""35013"": ""100""}","Doña Ana","35013","FALSE","FALSE","America/Denver"
-"88008","31.83928","-106.68173","Santa Teresa","NM","New Mexico","TRUE","","8552","66.8","35013","Doña Ana","{""35013"": ""100""}","Doña Ana","35013","FALSE","FALSE","America/Denver"
-"88009","32.01011","-108.59661","Playas","NM","New Mexico","TRUE","","60","0.1","35023","Hidalgo","{""35023"": ""100""}","Hidalgo","35023","FALSE","FALSE","America/Denver"
-"88011","32.31585","-106.6437","Las Cruces","NM","New Mexico","TRUE","","30308","79.9","35013","Doña Ana","{""35013"": ""100""}","Doña Ana","35013","FALSE","FALSE","America/Denver"
-"88012","32.58346","-106.77146","Las Cruces","NM","New Mexico","TRUE","","30500","32.3","35013","Doña Ana","{""35013"": ""100""}","Doña Ana","35013","FALSE","FALSE","America/Denver"
-"88020","31.77074","-108.82822","Animas","NM","New Mexico","TRUE","","683","0.2","35023","Hidalgo","{""35023"": ""100""}","Hidalgo","35023","FALSE","FALSE","America/Denver"
-"88021","31.95488","-107.01802","Anthony","NM","New Mexico","TRUE","","19623","9.5","35013","Doña Ana","{""35013"": ""100""}","Doña Ana","35013","FALSE","FALSE","America/Denver"
-"88022","32.79981","-108.17998","Arenas Valley","NM","New Mexico","TRUE","","1241","40.9","35017","Grant","{""35017"": ""100""}","Grant","35017","FALSE","FALSE","America/Denver"
-"88023","32.75127","-108.1324","Bayard","NM","New Mexico","TRUE","","2465","135.2","35017","Grant","{""35017"": ""100""}","Grant","35017","FALSE","FALSE","America/Denver"
-"88024","32.0706","-106.63951","Berino","NM","New Mexico","TRUE","","162","84.3","35013","Doña Ana","{""35013"": ""100""}","Doña Ana","35013","FALSE","FALSE","America/Denver"
-"88025","33.04515","-108.75149","Buckhorn","NM","New Mexico","TRUE","","191","0.3","35017","Grant","{""35017"": ""100""}","Grant","35017","FALSE","FALSE","America/Denver"
-"88026","32.7596","-108.15742","Santa Clara","NM","New Mexico","TRUE","","1384","105.0","35017","Grant","{""35017"": ""100""}","Grant","35017","FALSE","FALSE","America/Denver"
-"88027","32.04414","-106.78959","Chamberino","NM","New Mexico","TRUE","","271","1.4","35013","Doña Ana","{""35013"": ""100""}","Doña Ana","35013","FALSE","FALSE","America/Denver"
-"88028","32.93289","-108.63592","Cliff","NM","New Mexico","TRUE","","253","0.7","35017","Grant","{""35017"": ""100""}","Grant","35017","FALSE","FALSE","America/Denver"
-"88029","31.8459","-107.69127","Columbus","NM","New Mexico","TRUE","","1201","2.6","35029","Luna","{""35029"": ""100""}","Luna","35029","FALSE","FALSE","America/Denver"
-"88030","32.18773","-107.72945","Deming","NM","New Mexico","TRUE","","22882","3.4","35029","Luna","{""35029"": ""100""}","Luna","35029","FALSE","FALSE","America/Denver"
-"88032","32.39614","-106.81614","Dona Ana","NM","New Mexico","TRUE","","271","612.2","35013","Doña Ana","{""35013"": ""100""}","Doña Ana","35013","FALSE","FALSE","America/Denver"
-"88033","32.31953","-107.02885","Fairacres","NM","New Mexico","TRUE","","0","0.0","35013","Doña Ana","{""35013"": ""100""}","Doña Ana","35013","FALSE","FALSE","America/Denver"
-"88034","32.60966","-107.93929","Faywood","NM","New Mexico","TRUE","","46","0.2","35017","Grant","{""35017"": ""100""}","Grant","35017","FALSE","FALSE","America/Denver"
-"88038","33.07212","-108.42651","Gila","NM","New Mexico","TRUE","","226","0.2","35017","Grant","{""35017"": ""100""}","Grant","35017","FALSE","FALSE","America/Denver"
-"88039","33.34884","-108.72204","Glenwood","NM","New Mexico","TRUE","","584","0.3","35003","Catron","{""35003"": ""100""}","Catron","35003","FALSE","FALSE","America/Denver"
-"88040","31.61683","-108.43763","Hachita","NM","New Mexico","TRUE","","114","0.0","35017","Grant","{""35017"": ""63.79"", ""35023"": ""36.21""}","Grant|Hidalgo","35017|35023","FALSE","FALSE","America/Denver"
-"88041","32.7907","-107.91398","Hanover","NM","New Mexico","TRUE","","1186","1.0","35017","Grant","{""35017"": ""100""}","Grant","35017","FALSE","FALSE","America/Denver"
-"88042","32.80696","-107.58906","Hillsboro","NM","New Mexico","TRUE","","253","0.2","35051","Sierra","{""35051"": ""100""}","Sierra","35051","FALSE","FALSE","America/Denver"
-"88043","32.62091","-108.11154","Hurley","NM","New Mexico","TRUE","","1482","9.0","35017","Grant","{""35017"": ""100""}","Grant","35017","FALSE","FALSE","America/Denver"
-"88044","32.13825","-106.79987","La Mesa","NM","New Mexico","TRUE","","3299","10.8","35013","Doña Ana","{""35013"": ""100""}","Doña Ana","35013","FALSE","FALSE","America/Denver"
-"88045","32.3796","-108.77269","Lordsburg","NM","New Mexico","TRUE","","3350","1.2","35023","Hidalgo","{""35023"": ""99.65"", ""35017"": ""0.35""}","Hidalgo|Grant","35023|35017","FALSE","FALSE","America/Denver"
-"88046","32.25","-106.8023","Mesilla","NM","New Mexico","TRUE","","765","123.8","35013","Doña Ana","{""35013"": ""100""}","Doña Ana","35013","FALSE","FALSE","America/Denver"
-"88047","32.21003","-106.71473","Mesilla Park","NM","New Mexico","TRUE","","2132","112.9","35013","Doña Ana","{""35013"": ""100""}","Doña Ana","35013","FALSE","FALSE","America/Denver"
-"88048","32.16352","-106.65918","Mesquite","NM","New Mexico","TRUE","","2402","47.4","35013","Doña Ana","{""35013"": ""100""}","Doña Ana","35013","FALSE","FALSE","America/Denver"
-"88049","33.05048","-107.96276","Mimbres","NM","New Mexico","TRUE","","325","0.7","35017","Grant","{""35017"": ""100""}","Grant","35017","FALSE","FALSE","America/Denver"
-"88051","33.01613","-108.94876","Mule Creek","NM","New Mexico","TRUE","","113","0.1","35017","Grant","{""35017"": ""100""}","Grant","35017","FALSE","FALSE","America/Denver"
-"88052","32.42536","-106.59941","Organ","NM","New Mexico","TRUE","","185","70.1","35013","Doña Ana","{""35013"": ""100""}","Doña Ana","35013","FALSE","FALSE","America/Denver"
-"88053","32.9025","-108.20595","Pinos Altos","NM","New Mexico","TRUE","","208","7.4","35017","Grant","{""35017"": ""100""}","Grant","35017","FALSE","FALSE","America/Denver"
-"88055","32.73817","-108.73398","Redrock","NM","New Mexico","TRUE","","48","0.1","35017","Grant","{""35017"": ""100""}","Grant","35017","FALSE","FALSE","America/Denver"
-"88056","31.84421","-108.98254","Rodeo","NM","New Mexico","TRUE","","194","0.6","35023","Hidalgo","{""35023"": ""100""}","Hidalgo","35023","FALSE","FALSE","America/Denver"
-"88061","32.64983","-108.33017","Silver City","NM","New Mexico","TRUE","","17736","4.8","35017","Grant","{""35017"": ""100""}","Grant","35017","FALSE","FALSE","America/Denver"
-"88063","31.81825","-106.5994","Sunland Park","NM","New Mexico","TRUE","","14044","476.4","35013","Doña Ana","{""35013"": ""99.79"", ""48141"": ""0.21""}","Doña Ana|El Paso","35013|48141","FALSE","FALSE","America/Denver"
-"88065","32.685","-108.32017","Tyrone","NM","New Mexico","TRUE","","661","180.2","35017","Grant","{""35017"": ""100""}","Grant","35017","FALSE","FALSE","America/Denver"
-"88072","32.14052","-106.61286","Vado","NM","New Mexico","TRUE","","2572","40.7","35013","Doña Ana","{""35013"": ""100""}","Doña Ana","35013","FALSE","FALSE","America/Denver"
-"88081","32.22412","-106.26298","Chaparral","NM","New Mexico","TRUE","","16829","16.4","35035","Otero","{""35035"": ""55.66"", ""35013"": ""44.34""}","Otero|Doña Ana","35035|35013","FALSE","FALSE","America/Denver"
-"88101","34.4987","-103.2838","Clovis","NM","New Mexico","TRUE","","46510","33.7","35009","Curry","{""35009"": ""100""}","Curry","35009","FALSE","FALSE","America/Denver"
-"88103","34.38412","-103.31544","Cannon Afb","NM","New Mexico","TRUE","","298","25.9","35009","Curry","{""35009"": ""100""}","Curry","35009","FALSE","FALSE","America/Denver"
-"88112","34.86451","-103.17105","Broadview","NM","New Mexico","TRUE","","231","0.5","35009","Curry","{""35009"": ""100""}","Curry","35009","FALSE","FALSE","America/Denver"
-"88113","33.77807","-103.08654","Causey","NM","New Mexico","TRUE","","124","0.6","35041","Roosevelt","{""35041"": ""100""}","Roosevelt","35041","FALSE","FALSE","America/Denver"
-"88114","33.51844","-103.28904","Crossroads","NM","New Mexico","TRUE","","34","0.1","35025","Lea","{""35025"": ""100""}","Lea","35025","FALSE","FALSE","America/Denver"
-"88115","33.92314","-103.34251","Dora","NM","New Mexico","TRUE","","81","19.4","35041","Roosevelt","{""35041"": ""100""}","Roosevelt","35041","FALSE","FALSE","America/Denver"
-"88116","33.91829","-103.87993","Elida","NM","New Mexico","TRUE","","438","0.1","35041","Roosevelt","{""35041"": ""94.29"", ""35005"": ""5.71""}","Roosevelt|Chaves","35041|35005","FALSE","FALSE","America/Denver"
-"88118","34.21924","-103.67162","Floyd","NM","New Mexico","TRUE","","317","0.7","35041","Roosevelt","{""35041"": ""100""}","Roosevelt","35041","FALSE","FALSE","America/Denver"
-"88119","34.32303","-104.40797","Fort Sumner","NM","New Mexico","TRUE","","1964","0.4","35011","De Baca","{""35011"": ""100""}","De Baca","35011","FALSE","FALSE","America/Denver"
-"88120","34.87865","-103.4542","Grady","NM","New Mexico","TRUE","","277","0.3","35009","Curry","{""35009"": ""80.33"", ""35037"": ""19.67""}","Curry|Quay","35009|35037","FALSE","FALSE","America/Denver"
-"88121","34.71464","-103.98069","House","NM","New Mexico","TRUE","","126","0.2","35037","Quay","{""35037"": ""100""}","Quay","35037","FALSE","FALSE","America/Denver"
-"88124","34.54625","-103.65358","Melrose","NM","New Mexico","TRUE","","1178","0.5","35009","Curry","{""35009"": ""88.5"", ""35037"": ""6.18"", ""35041"": ""5.32""}","Curry|Quay|Roosevelt","35009|35037|35041","FALSE","FALSE","America/Denver"
-"88125","33.68518","-103.28026","Milnesand","NM","New Mexico","TRUE","","58","0.1","35041","Roosevelt","{""35041"": ""100""}","Roosevelt","35041","FALSE","FALSE","America/Denver"
-"88126","33.83096","-103.37685","Pep","NM","New Mexico","TRUE","","44","0.3","35041","Roosevelt","{""35041"": ""100""}","Roosevelt","35041","FALSE","FALSE","America/Denver"
-"88130","34.13556","-103.31049","Portales","NM","New Mexico","TRUE","","17476","10.8","35041","Roosevelt","{""35041"": ""100""}","Roosevelt","35041","FALSE","FALSE","America/Denver"
-"88132","33.92431","-103.19459","Rogers","NM","New Mexico","TRUE","","244","0.5","35041","Roosevelt","{""35041"": ""100""}","Roosevelt","35041","FALSE","FALSE","America/Denver"
-"88134","34.32702","-104.01581","Taiban","NM","New Mexico","TRUE","","50","0.1","35011","De Baca","{""35011"": ""100""}","De Baca","35011","FALSE","FALSE","America/Denver"
-"88135","34.5867","-103.09334","Texico","NM","New Mexico","TRUE","","1369","3.1","35009","Curry","{""35009"": ""96.78"", ""35041"": ""3.22""}","Curry|Roosevelt","35009|35041","FALSE","FALSE","America/Denver"
-"88136","34.45503","-104.74524","Yeso","NM","New Mexico","TRUE","","26","0.0","35011","De Baca","{""35011"": ""100""}","De Baca","35011","FALSE","FALSE","America/Denver"
-"88201","33.63974","-104.37492","Roswell","NM","New Mexico","TRUE","","26485","4.5","35005","Chaves","{""35005"": ""100""}","Chaves","35005","FALSE","FALSE","America/Denver"
-"88203","33.18609","-104.34426","Roswell","NM","New Mexico","TRUE","","30463","8.0","35005","Chaves","{""35005"": ""100""}","Chaves","35005","FALSE","FALSE","America/Denver"
-"88210","32.77172","-104.21957","Artesia","NM","New Mexico","TRUE","","18097","5.5","35015","Eddy","{""35015"": ""100""}","Eddy","35015","FALSE","FALSE","America/Denver"
-"88220","32.29635","-104.41326","Carlsbad","NM","New Mexico","TRUE","","37329","7.0","35015","Eddy","{""35015"": ""99.99"", ""48109"": ""0.01""}","Eddy|Culberson","35015|48109","FALSE","FALSE","America/Denver"
-"88230","33.21777","-104.39873","Dexter","NM","New Mexico","TRUE","","4972","7.8","35005","Chaves","{""35005"": ""100""}","Chaves","35005","FALSE","FALSE","America/Denver"
-"88231","32.44904","-103.25497","Eunice","NM","New Mexico","TRUE","","3584","3.8","35025","Lea","{""35025"": ""100""}","Lea","35025","FALSE","FALSE","America/Denver"
-"88232","33.07947","-104.45942","Hagerman","NM","New Mexico","TRUE","","2161","4.4","35005","Chaves","{""35005"": ""100""}","Chaves","35005","FALSE","FALSE","America/Denver"
-"88240","32.70781","-103.47152","Hobbs","NM","New Mexico","TRUE","","40944","25.3","35025","Lea","{""35025"": ""100""}","Lea","35025","FALSE","FALSE","America/Denver"
-"88242","32.81047","-103.15864","Hobbs","NM","New Mexico","TRUE","","7439","51.9","35025","Lea","{""35025"": ""100""}","Lea","35025","FALSE","FALSE","America/Denver"
-"88250","32.72828","-104.91836","Hope","NM","New Mexico","TRUE","","272","0.2","35015","Eddy","{""35015"": ""81.85"", ""35005"": ""18.15""}","Eddy|Chaves","35015|35005","FALSE","FALSE","America/Denver"
-"88252","32.1693","-103.38987","Jal","NM","New Mexico","TRUE","","2039","0.9","35025","Lea","{""35025"": ""100""}","Lea","35025","FALSE","FALSE","America/Denver"
-"88253","32.98609","-104.45485","Lake Arthur","NM","New Mexico","TRUE","","985","2.0","35005","Chaves","{""35005"": ""73.9"", ""35015"": ""26.1""}","Chaves|Eddy","35005|35015","FALSE","FALSE","America/Denver"
-"88254","32.60872","-104.4489","Lakewood","NM","New Mexico","TRUE","","57","0.4","35015","Eddy","{""35015"": ""100""}","Eddy","35015","FALSE","FALSE","America/Denver"
-"88255","32.81422","-103.99645","Loco Hills","NM","New Mexico","TRUE","","24","1.4","35015","Eddy","{""35015"": ""100""}","Eddy","35015","FALSE","FALSE","America/Denver"
-"88256","32.19587","-103.89273","Loving","NM","New Mexico","TRUE","","1696","1.3","35015","Eddy","{""35015"": ""100""}","Eddy","35015","FALSE","FALSE","America/Denver"
-"88260","32.99151","-103.39911","Lovington","NM","New Mexico","TRUE","","14869","7.6","35025","Lea","{""35025"": ""100""}","Lea","35025","FALSE","FALSE","America/Denver"
-"88262","33.13287","-103.42588","Mcdonald","NM","New Mexico","TRUE","","11","0.1","35025","Lea","{""35025"": ""100""}","Lea","35025","FALSE","FALSE","America/Denver"
-"88263","32.09407","-104.07823","Malaga","NM","New Mexico","TRUE","","136","0.5","35015","Eddy","{""35015"": ""100""}","Eddy","35015","FALSE","FALSE","America/Denver"
-"88264","32.89768","-103.70224","Maljamar","NM","New Mexico","TRUE","","32","0.1","35025","Lea","{""35025"": ""100""}","Lea","35025","FALSE","FALSE","America/Denver"
-"88265","32.62045","-103.3029","Monument","NM","New Mexico","TRUE","","187","0.9","35025","Lea","{""35025"": ""100""}","Lea","35025","FALSE","FALSE","America/Denver"
-"88267","33.33191","-103.42182","Tatum","NM","New Mexico","TRUE","","1138","0.5","35025","Lea","{""35025"": ""100""}","Lea","35025","FALSE","FALSE","America/Denver"
-"88268","32.17619","-104.37953","Whites City","NM","New Mexico","TRUE","","85","220.4","35015","Eddy","{""35015"": ""100""}","Eddy","35015","FALSE","FALSE","America/Denver"
-"88301","33.79263","-105.78565","Carrizozo","NM","New Mexico","TRUE","","982","0.4","35027","Lincoln","{""35027"": ""97.19"", ""35057"": ""2.81""}","Lincoln|Torrance","35027|35057","FALSE","FALSE","America/Denver"
-"88310","32.70076","-106.00576","Alamogordo","NM","New Mexico","TRUE","","36707","33.2","35035","Otero","{""35035"": ""100""}","Otero","35035","FALSE","FALSE","America/Denver"
-"88311","32.80751","-105.98864","Alamogordo","NM","New Mexico","TRUE","","1384","227.1","35035","Otero","{""35035"": ""100""}","Otero","35035","FALSE","FALSE","America/Denver"
-"88312","33.43147","-105.67741","Alto","NM","New Mexico","TRUE","","2919","11.7","35027","Lincoln","{""35027"": ""100""}","Lincoln","35027","FALSE","FALSE","America/Denver"
-"88314","33.10073","-105.86726","Bent","NM","New Mexico","TRUE","","62","0.5","35035","Otero","{""35035"": ""100""}","Otero","35035","FALSE","FALSE","America/Denver"
-"88316","33.79595","-105.31892","Capitan","NM","New Mexico","TRUE","","2195","0.8","35027","Lincoln","{""35027"": ""100""}","Lincoln","35027","FALSE","FALSE","America/Denver"
-"88317","32.9157","-105.63923","Cloudcroft","NM","New Mexico","TRUE","","1656","2.7","35035","Otero","{""35035"": ""100""}","Otero","35035","FALSE","FALSE","America/Denver"
-"88318","34.20837","-105.3855","Corona","NM","New Mexico","TRUE","","358","0.1","35027","Lincoln","{""35027"": ""84.78"", ""35057"": ""15.22""}","Lincoln|Torrance","35027|35057","FALSE","FALSE","America/Denver"
-"88321","34.76222","-105.44878","Encino","NM","New Mexico","TRUE","","117","0.1","35057","Torrance","{""35057"": ""85.56"", ""35019"": ""14.44""}","Torrance|Guadalupe","35057|35019","FALSE","FALSE","America/Denver"
-"88323","33.49479","-105.52745","Fort Stanton","NM","New Mexico","TRUE","","0","0.0","35027","Lincoln","{""35027"": ""100""}","Lincoln","35027","FALSE","FALSE","America/Denver"
-"88324","33.38988","-105.43913","Glencoe","NM","New Mexico","TRUE","","198","2.0","35027","Lincoln","{""35027"": ""100""}","Lincoln","35027","FALSE","FALSE","America/Denver"
-"88325","32.85121","-105.8626","High Rolls Mountain Park","NM","New Mexico","TRUE","","954","3.6","35035","Otero","{""35035"": ""100""}","Otero","35035","FALSE","FALSE","America/Denver"
-"88330","32.83659","-106.07738","Holloman Air Force Base","NM","New Mexico","TRUE","","4096","1145.0","35035","Otero","{""35035"": ""100""}","Otero","35035","FALSE","FALSE","America/Denver"
-"88336","33.3182","-105.29484","Hondo","NM","New Mexico","TRUE","","323","1.0","35027","Lincoln","{""35027"": ""100""}","Lincoln","35027","FALSE","FALSE","America/Denver"
-"88337","32.99129","-105.89153","La Luz","NM","New Mexico","TRUE","","1706","16.4","35035","Otero","{""35035"": ""100""}","Otero","35035","FALSE","FALSE","America/Denver"
-"88338","33.4869","-105.38177","Lincoln","NM","New Mexico","TRUE","","57","0.2","35027","Lincoln","{""35027"": ""100""}","Lincoln","35027","FALSE","FALSE","America/Denver"
-"88339","32.93508","-105.25424","Mayhill","NM","New Mexico","TRUE","","632","0.5","35035","Otero","{""35035"": ""92.39"", ""35005"": ""7.61""}","Otero|Chaves","35035|35005","FALSE","FALSE","America/Denver"
-"88340","33.17829","-105.6119","Mescalero","NM","New Mexico","TRUE","","3834","2.1","35035","Otero","{""35035"": ""100""}","Otero","35035","FALSE","FALSE","America/Denver"
-"88341","33.49517","-105.78799","Nogal","NM","New Mexico","TRUE","","735","2.9","35027","Lincoln","{""35027"": ""100""}","Lincoln","35027","FALSE","FALSE","America/Denver"
-"88342","32.38792","-106.10153","Orogrande","NM","New Mexico","TRUE","","41","2.7","35035","Otero","{""35035"": ""100""}","Otero","35035","FALSE","FALSE","America/Denver"
-"88343","33.2258","-105.07714","Picacho","NM","New Mexico","TRUE","","4","0.0","35027","Lincoln","{""35027"": ""100""}","Lincoln","35027","FALSE","FALSE","America/Denver"
-"88344","32.5699","-105.31133","Pinon","NM","New Mexico","TRUE","","23","0.0","35035","Otero","{""35035"": ""51.57"", ""35005"": ""48.43""}","Otero|Chaves","35035|35005","FALSE","FALSE","America/Denver"
-"88345","33.34798","-105.68001","Ruidoso","NM","New Mexico","TRUE","","8546","100.0","35027","Lincoln","{""35027"": ""100""}","Lincoln","35027","FALSE","FALSE","America/Denver"
-"88346","33.35376","-105.54007","Ruidoso Downs","NM","New Mexico","TRUE","","2728","17.6","35027","Lincoln","{""35027"": ""100""}","Lincoln","35027","FALSE","FALSE","America/Denver"
-"88347","32.76768","-105.65711","Sacramento","NM","New Mexico","TRUE","","86","0.9","35035","Otero","{""35035"": ""100""}","Otero","35035","FALSE","FALSE","America/Denver"
-"88348","33.39619","-105.35842","San Patricio","NM","New Mexico","TRUE","","318","12.0","35027","Lincoln","{""35027"": ""100""}","Lincoln","35027","FALSE","FALSE","America/Denver"
-"88349","32.76434","-105.78603","Sunspot","NM","New Mexico","TRUE","","12","0.2","35035","Otero","{""35035"": ""100""}","Otero","35035","FALSE","FALSE","America/Denver"
-"88350","32.64305","-105.67741","Timberon","NM","New Mexico","TRUE","","275","0.7","35035","Otero","{""35035"": ""100""}","Otero","35035","FALSE","FALSE","America/Denver"
-"88351","33.54952","-105.08763","Tinnie","NM","New Mexico","TRUE","","159","0.1","35027","Lincoln","{""35027"": ""100""}","Lincoln","35027","FALSE","FALSE","America/Denver"
-"88352","33.03756","-106.10175","Tularosa","NM","New Mexico","TRUE","","4605","3.6","35035","Otero","{""35035"": ""100""}","Otero","35035","FALSE","FALSE","America/Denver"
-"88353","34.57144","-105.11609","Vaughn","NM","New Mexico","TRUE","","306","0.2","35019","Guadalupe","{""35019"": ""100""}","Guadalupe","35019","FALSE","FALSE","America/Denver"
-"88354","32.74362","-105.51458","Weed","NM","New Mexico","TRUE","","31","0.1","35035","Otero","{""35035"": ""100""}","Otero","35035","FALSE","FALSE","America/Denver"
-"88355","33.36303","-105.66826","Ruidoso","NM","New Mexico","TRUE","","0","0.0","35027","Lincoln","{""35027"": ""100""}","Lincoln","35027","FALSE","FALSE","America/Denver"
-"88401","35.11258","-103.83173","Tucumcari","NM","New Mexico","TRUE","","6611","2.4","35037","Quay","{""35037"": ""99.76"", ""35047"": ""0.24""}","Quay|San Miguel","35037|35047","FALSE","FALSE","America/Denver"
-"88410","35.87396","-103.29185","Amistad","NM","New Mexico","TRUE","","145","0.1","35059","Union","{""35059"": ""89.15"", ""35021"": ""10.85""}","Union|Harding","35059|35021","FALSE","FALSE","America/Denver"
-"88411","35.13678","-103.16049","Bard","NM","New Mexico","TRUE","","48","0.1","35037","Quay","{""35037"": ""100""}","Quay","35037","FALSE","FALSE","America/Denver"
-"88414","36.77852","-103.99843","Capulin","NM","New Mexico","TRUE","","34","3.0","35059","Union","{""35059"": ""100""}","Union","35059","FALSE","FALSE","America/Denver"
-"88415","36.31373","-103.32582","Clayton","NM","New Mexico","TRUE","","3468","1.1","35059","Union","{""35059"": ""99.27"", ""35021"": ""0.73""}","Union|Harding","35059|35021","FALSE","FALSE","America/Denver"
-"88416","35.31347","-104.20726","Conchas Dam","NM","New Mexico","TRUE","","33","0.2","35047","San Miguel","{""35047"": ""100""}","San Miguel","35047","FALSE","FALSE","America/Denver"
-"88417","35.05147","-104.39122","Cuervo","NM","New Mexico","TRUE","","0","0.0","35019","Guadalupe","{""35019"": ""100""}","Guadalupe","35019","FALSE","FALSE","America/Denver"
-"88418","36.72511","-103.68341","Des Moines","NM","New Mexico","TRUE","","238","0.2","35059","Union","{""35059"": ""100""}","Union","35059","FALSE","FALSE","America/Denver"
-"88419","36.88276","-103.53903","Folsom","NM","New Mexico","TRUE","","98","0.0","35059","Union","{""35059"": ""91.27"", ""35007"": ""8.73""}","Union|Colfax","35059|35007","FALSE","FALSE","America/Denver"
-"88421","35.29834","-104.48127","Garita","NM","New Mexico","TRUE","","0","0.0","35047","San Miguel","{""35047"": ""100""}","San Miguel","35047","FALSE","FALSE","America/Denver"
-"88422","36.34694","-103.99939","Gladstone","NM","New Mexico","TRUE","","80","0.1","35059","Union","{""35059"": ""52.94"", ""35007"": ""47.06""}","Union|Colfax","35059|35007","FALSE","FALSE","America/Denver"
-"88424","36.40931","-103.661","Grenville","NM","New Mexico","TRUE","","33","0.0","35059","Union","{""35059"": ""100""}","Union","35059","FALSE","FALSE","America/Denver"
-"88426","35.53808","-103.51084","Logan","NM","New Mexico","TRUE","","735","0.4","35037","Quay","{""35037"": ""92.41"", ""35021"": ""7.59""}","Quay|Harding","35037|35021","FALSE","FALSE","America/Denver"
-"88427","34.77048","-103.77441","Mcalister","NM","New Mexico","TRUE","","239","0.4","35037","Quay","{""35037"": ""100""}","Quay","35037","FALSE","FALSE","America/Denver"
-"88430","35.59028","-103.18118","Nara Visa","NM","New Mexico","TRUE","","98","0.1","35037","Quay","{""35037"": ""94.44"", ""48359"": ""5.56""}","Quay|Oldham","35037|48359","FALSE","FALSE","America/Denver"
-"88431","35.17599","-104.27799","Newkirk","NM","New Mexico","TRUE","","55","0.1","35019","Guadalupe","{""35019"": ""53.06"", ""35047"": ""46.94""}","Guadalupe|San Miguel","35019|35047","FALSE","FALSE","America/Denver"
-"88434","35.18597","-103.30237","San Jon","NM","New Mexico","TRUE","","469","0.5","35037","Quay","{""35037"": ""100""}","Quay","35037","FALSE","FALSE","America/Denver"
-"88435","34.91298","-104.69767","Santa Rosa","NM","New Mexico","TRUE","","3707","0.8","35019","Guadalupe","{""35019"": ""100""}","Guadalupe","35019","FALSE","FALSE","America/Denver"
-"88436","36.13154","-103.12165","Sedan","NM","New Mexico","TRUE","","66","0.2","35059","Union","{""35059"": ""100""}","Union","35059","FALSE","FALSE","America/Denver"
-"89001","37.27386","-115.39051","Alamo","NV","Nevada","TRUE","","1363","0.3","32017","Lincoln","{""32017"": ""99.84"", ""32023"": ""0.16""}","Lincoln|Nye","32017|32023","FALSE","FALSE","America/Los_Angeles"
-"89002","35.99857","-114.96171","Henderson","NV","Nevada","TRUE","","35881","1556.7","32003","Clark","{""32003"": ""100""}","Clark","32003","FALSE","FALSE","America/Los_Angeles"
-"89003","36.95743","-116.7262","Beatty","NV","Nevada","TRUE","","820","1.0","32023","Nye","{""32023"": ""100""}","Nye","32023","FALSE","FALSE","America/Los_Angeles"
-"89004","36.08529","-115.47079","Blue Diamond","NV","Nevada","TRUE","","326","2.9","32003","Clark","{""32003"": ""100""}","Clark","32003","FALSE","FALSE","America/Los_Angeles"
-"89005","35.98675","-114.82466","Boulder City","NV","Nevada","TRUE","","15840","49.8","32003","Clark","{""32003"": ""100""}","Clark","32003","FALSE","FALSE","America/Los_Angeles"
-"89007","36.63481","-114.18809","Bunkerville","NV","Nevada","TRUE","","1479","1.7","32003","Clark","{""32003"": ""100""}","Clark","32003","FALSE","FALSE","America/Los_Angeles"
-"89008","37.27637","-114.54633","Caliente","NV","Nevada","TRUE","","1009","0.2","32017","Lincoln","{""32017"": ""100""}","Lincoln","32017","FALSE","FALSE","America/Los_Angeles"
-"89010","37.77764","-118.08391","Dyer","NV","Nevada","TRUE","","514","0.5","32009","Esmeralda","{""32009"": ""88.67"", ""06051"": ""7.47"", ""32021"": ""3.86""}","Esmeralda|Mono|Mineral","32009|06051|32021","FALSE","FALSE","America/Los_Angeles"
-"89011","36.0828","-114.96848","Henderson","NV","Nevada","TRUE","","28229","660.3","32003","Clark","{""32003"": ""100""}","Clark","32003","FALSE","FALSE","America/Los_Angeles"
-"89012","36.01194","-115.04397","Henderson","NV","Nevada","TRUE","","36512","1305.4","32003","Clark","{""32003"": ""100""}","Clark","32003","FALSE","FALSE","America/Los_Angeles"
-"89013","37.3979","-117.403","Goldfield","NV","Nevada","TRUE","","305","0.1","32009","Esmeralda","{""32009"": ""100""}","Esmeralda","32009","FALSE","FALSE","America/Los_Angeles"
-"89014","36.06172","-115.05811","Henderson","NV","Nevada","TRUE","","39430","2009.5","32003","Clark","{""32003"": ""100""}","Clark","32003","FALSE","FALSE","America/Los_Angeles"
-"89015","36.03921","-114.92817","Henderson","NV","Nevada","TRUE","","42387","436.8","32003","Clark","{""32003"": ""100""}","Clark","32003","FALSE","FALSE","America/Los_Angeles"
-"89017","37.73096","-115.24786","Hiko","NV","Nevada","TRUE","","83","0.1","32017","Lincoln","{""32017"": ""100""}","Lincoln","32017","FALSE","FALSE","America/Los_Angeles"
-"89018","36.54161","-115.66863","Indian Springs","NV","Nevada","TRUE","","4847","33.3","32003","Clark","{""32003"": ""100""}","Clark","32003","FALSE","FALSE","America/Los_Angeles"
-"89019","35.76621","-115.73453","Jean","NV","Nevada","TRUE","","2158","1.7","32003","Clark","{""32003"": ""97.42"", ""06071"": ""2.58"", ""06027"": ""0""}","Clark|San Bernardino|Inyo","32003|06071|06027","FALSE","FALSE","America/Los_Angeles"
-"89020","36.53671","-116.4348","Amargosa Valley","NV","Nevada","TRUE","","1435","1.6","32023","Nye","{""32023"": ""100""}","Nye","32023","FALSE","FALSE","America/Los_Angeles"
-"89021","36.63094","-114.46701","Logandale","NV","Nevada","TRUE","","3534","33.4","32003","Clark","{""32003"": ""100""}","Clark","32003","FALSE","FALSE","America/Los_Angeles"
-"89022","38.541","-117.02063","Manhattan","NV","Nevada","TRUE","","0","0.0","32023","Nye","{""32023"": ""100""}","Nye","32023","FALSE","FALSE","America/Los_Angeles"
-"89025","36.61511","-114.9107","Moapa","NV","Nevada","TRUE","","1203","0.7","32003","Clark","{""32003"": ""100""}","Clark","32003","FALSE","FALSE","America/Los_Angeles"
-"89026","35.75522","-115.28964","Jean","NV","Nevada","TRUE","","0","0.0","32003","Clark","{""32003"": ""100""}","Clark","32003","FALSE","FALSE","America/Los_Angeles"
-"89027","36.81122","-114.12363","Mesquite","NV","Nevada","TRUE","","18446","241.5","32003","Clark","{""32003"": ""100""}","Clark","32003","FALSE","FALSE","America/Los_Angeles"
-"89029","35.12559","-114.68628","Laughlin","NV","Nevada","TRUE","","8167","33.5","32003","Clark","{""32003"": ""100""}","Clark","32003","FALSE","FALSE","America/Los_Angeles"
-"89030","36.2115","-115.12414","North Las Vegas","NV","Nevada","TRUE","","50417","2076.4","32003","Clark","{""32003"": ""100""}","Clark","32003","FALSE","FALSE","America/Los_Angeles"
-"89031","36.25893","-115.17175","North Las Vegas","NV","Nevada","TRUE","","67750","2753.1","32003","Clark","{""32003"": ""100""}","Clark","32003","FALSE","FALSE","America/Los_Angeles"
-"89032","36.22321","-115.17272","North Las Vegas","NV","Nevada","TRUE","","44200","1660.5","32003","Clark","{""32003"": ""100""}","Clark","32003","FALSE","FALSE","America/Los_Angeles"
-"89039","35.28794","-114.8799","Cal Nev Ari","NV","Nevada","TRUE","","149","0.7","32003","Clark","{""32003"": ""100""}","Clark","32003","FALSE","FALSE","America/Los_Angeles"
-"89040","36.35808","-114.5386","Overton","NV","Nevada","TRUE","","3886","2.9","32003","Clark","{""32003"": ""100""}","Clark","32003","FALSE","FALSE","America/Los_Angeles"
-"89042","37.74396","-114.32223","Panaca","NV","Nevada","TRUE","","1247","3.4","32017","Lincoln","{""32017"": ""100""}","Lincoln","32017","FALSE","FALSE","America/Los_Angeles"
-"89043","38.25741","-114.47219","Pioche","NV","Nevada","TRUE","","1478","0.3","32017","Lincoln","{""32017"": ""100""}","Lincoln","32017","FALSE","FALSE","America/Los_Angeles"
-"89044","35.90247","-115.17885","Henderson","NV","Nevada","TRUE","","22558","277.9","32003","Clark","{""32003"": ""100""}","Clark","32003","FALSE","FALSE","America/Los_Angeles"
-"89045","38.87842","-116.95211","Round Mountain","NV","Nevada","TRUE","","1951","0.6","32023","Nye","{""32023"": ""100""}","Nye","32023","FALSE","FALSE","America/Los_Angeles"
-"89046","35.51337","-114.88657","Searchlight","NV","Nevada","TRUE","","357","0.2","32003","Clark","{""32003"": ""100""}","Clark","32003","FALSE","FALSE","America/Los_Angeles"
-"89047","37.7659","-117.64791","Silverpeak","NV","Nevada","TRUE","","142","10.1","32009","Esmeralda","{""32009"": ""100""}","Esmeralda","32009","FALSE","FALSE","America/Los_Angeles"
-"89048","36.16602","-116.00381","Pahrump","NV","Nevada","TRUE","","21784","109.8","32023","Nye","{""32023"": ""100""}","Nye","32023","FALSE","FALSE","America/Los_Angeles"
-"89049","38.36445","-116.26157","Tonopah","NV","Nevada","TRUE","","2286","0.5","32023","Nye","{""32023"": ""99.19"", ""32009"": ""0.81""}","Nye|Esmeralda","32023|32009","FALSE","FALSE","America/Los_Angeles"
-"89052","35.9551","-115.05673","Henderson","NV","Nevada","TRUE","","55096","409.4","32003","Clark","{""32003"": ""100""}","Clark","32003","FALSE","FALSE","America/Los_Angeles"
-"89054","35.92722","-115.20828","Sloan","NV","Nevada","TRUE","","57","4.4","32003","Clark","{""32003"": ""100""}","Clark","32003","FALSE","FALSE","America/Los_Angeles"
-"89060","36.39425","-116.06352","Pahrump","NV","Nevada","TRUE","","9473","7.9","32023","Nye","{""32023"": ""99.71"", ""06027"": ""0.29""}","Nye|Inyo","32023|06027","FALSE","FALSE","America/Los_Angeles"
-"89061","36.08762","-115.89658","Pahrump","NV","Nevada","TRUE","","6160","32.7","32023","Nye","{""32023"": ""99.03"", ""06027"": ""0.97""}","Nye|Inyo","32023|06027","FALSE","FALSE","America/Los_Angeles"
-"89074","36.03659","-115.08087","Henderson","NV","Nevada","TRUE","","50353","2166.7","32003","Clark","{""32003"": ""100""}","Clark","32003","FALSE","FALSE","America/Los_Angeles"
-"89081","36.25833","-115.10677","North Las Vegas","NV","Nevada","TRUE","","37480","1943.6","32003","Clark","{""32003"": ""100""}","Clark","32003","FALSE","FALSE","America/Los_Angeles"
-"89084","36.2969","-115.17408","North Las Vegas","NV","Nevada","TRUE","","27773","979.1","32003","Clark","{""32003"": ""100""}","Clark","32003","FALSE","FALSE","America/Los_Angeles"
-"89085","36.30958","-115.19819","North Las Vegas","NV","Nevada","TRUE","","4156","3148.4","32003","Clark","{""32003"": ""100""}","Clark","32003","FALSE","FALSE","America/Los_Angeles"
-"89086","36.29227","-115.10844","North Las Vegas","NV","Nevada","TRUE","","6404","365.4","32003","Clark","{""32003"": ""100""}","Clark","32003","FALSE","FALSE","America/Los_Angeles"
-"89101","36.17251","-115.12228","Las Vegas","NV","Nevada","TRUE","","42592","3074.4","32003","Clark","{""32003"": ""100""}","Clark","32003","FALSE","FALSE","America/Los_Angeles"
-"89102","36.14535","-115.18684","Las Vegas","NV","Nevada","TRUE","","39449","2840.9","32003","Clark","{""32003"": ""100""}","Clark","32003","FALSE","FALSE","America/Los_Angeles"
-"89103","36.11179","-115.21172","Las Vegas","NV","Nevada","TRUE","","53732","3096.2","32003","Clark","{""32003"": ""100""}","Clark","32003","FALSE","FALSE","America/Los_Angeles"
-"89104","36.15136","-115.10856","Las Vegas","NV","Nevada","TRUE","","39443","2686.0","32003","Clark","{""32003"": ""100""}","Clark","32003","FALSE","FALSE","America/Los_Angeles"
-"89106","36.1817","-115.16325","Las Vegas","NV","Nevada","TRUE","","26480","1931.6","32003","Clark","{""32003"": ""100""}","Clark","32003","FALSE","FALSE","America/Los_Angeles"
-"89107","36.17066","-115.21028","Las Vegas","NV","Nevada","TRUE","","38936","2750.6","32003","Clark","{""32003"": ""100""}","Clark","32003","FALSE","FALSE","America/Los_Angeles"
-"89108","36.20531","-115.22367","Las Vegas","NV","Nevada","TRUE","","73991","3185.4","32003","Clark","{""32003"": ""100""}","Clark","32003","FALSE","FALSE","America/Los_Angeles"
-"89109","36.12535","-115.16372","Las Vegas","NV","Nevada","TRUE","","7859","681.4","32003","Clark","{""32003"": ""100""}","Clark","32003","FALSE","FALSE","America/Los_Angeles"
-"89110","36.17138","-115.04771","Las Vegas","NV","Nevada","TRUE","","71489","2485.5","32003","Clark","{""32003"": ""100""}","Clark","32003","FALSE","FALSE","America/Los_Angeles"
-"89113","36.06123","-115.2635","Las Vegas","NV","Nevada","TRUE","","32308","1119.2","32003","Clark","{""32003"": ""100""}","Clark","32003","FALSE","FALSE","America/Los_Angeles"
-"89115","36.25367","-115.041","Las Vegas","NV","Nevada","TRUE","","63084","975.0","32003","Clark","{""32003"": ""100""}","Clark","32003","FALSE","FALSE","America/Los_Angeles"
-"89117","36.14257","-115.28003","Las Vegas","NV","Nevada","TRUE","","54590","2308.8","32003","Clark","{""32003"": ""100""}","Clark","32003","FALSE","FALSE","America/Los_Angeles"
-"89118","36.07725","-115.21396","Las Vegas","NV","Nevada","TRUE","","21826","796.5","32003","Clark","{""32003"": ""100""}","Clark","32003","FALSE","FALSE","America/Los_Angeles"
-"89119","36.08476","-115.14614","Las Vegas","NV","Nevada","TRUE","","52378","1564.2","32003","Clark","{""32003"": ""100""}","Clark","32003","FALSE","FALSE","America/Los_Angeles"
-"89120","36.08132","-115.09546","Las Vegas","NV","Nevada","TRUE","","24813","1375.3","32003","Clark","{""32003"": ""100""}","Clark","32003","FALSE","FALSE","America/Los_Angeles"
-"89121","36.12152","-115.09127","Las Vegas","NV","Nevada","TRUE","","63190","2646.7","32003","Clark","{""32003"": ""100""}","Clark","32003","FALSE","FALSE","America/Los_Angeles"
-"89122","36.10639","-115.04028","Las Vegas","NV","Nevada","TRUE","","49600","2115.9","32003","Clark","{""32003"": ""100""}","Clark","32003","FALSE","FALSE","America/Los_Angeles"
-"89123","36.03525","-115.14874","Las Vegas","NV","Nevada","TRUE","","60679","2198.8","32003","Clark","{""32003"": ""100""}","Clark","32003","FALSE","FALSE","America/Los_Angeles"
-"89124","36.42582","-115.48089","Las Vegas","NV","Nevada","TRUE","","1362","0.4","32003","Clark","{""32003"": ""98.3"", ""32023"": ""1.7""}","Clark|Nye","32003|32023","FALSE","FALSE","America/Los_Angeles"
-"89128","36.19682","-115.26436","Las Vegas","NV","Nevada","TRUE","","35666","2294.9","32003","Clark","{""32003"": ""100""}","Clark","32003","FALSE","FALSE","America/Los_Angeles"
-"89129","36.23331","-115.29016","Las Vegas","NV","Nevada","TRUE","","57116","2203.9","32003","Clark","{""32003"": ""100""}","Clark","32003","FALSE","FALSE","America/Los_Angeles"
-"89130","36.25405","-115.22708","Las Vegas","NV","Nevada","TRUE","","34697","1750.8","32003","Clark","{""32003"": ""100""}","Clark","32003","FALSE","FALSE","America/Los_Angeles"
-"89131","36.30619","-115.24268","Las Vegas","NV","Nevada","TRUE","","50564","1217.6","32003","Clark","{""32003"": ""100""}","Clark","32003","FALSE","FALSE","America/Los_Angeles"
-"89134","36.20274","-115.30777","Las Vegas","NV","Nevada","TRUE","","24363","1419.8","32003","Clark","{""32003"": ""100""}","Clark","32003","FALSE","FALSE","America/Los_Angeles"
-"89135","36.10099","-115.37588","Las Vegas","NV","Nevada","TRUE","","28192","238.7","32003","Clark","{""32003"": ""100""}","Clark","32003","FALSE","FALSE","America/Los_Angeles"
-"89138","36.16665","-115.36122","Las Vegas","NV","Nevada","TRUE","","17952","1647.4","32003","Clark","{""32003"": ""100""}","Clark","32003","FALSE","FALSE","America/Los_Angeles"
-"89139","36.03449","-115.21164","Las Vegas","NV","Nevada","TRUE","","40612","1478.0","32003","Clark","{""32003"": ""100""}","Clark","32003","FALSE","FALSE","America/Los_Angeles"
-"89141","35.98838","-115.20704","Las Vegas","NV","Nevada","TRUE","","35169","1271.9","32003","Clark","{""32003"": ""100""}","Clark","32003","FALSE","FALSE","America/Los_Angeles"
-"89142","36.1479","-115.03637","Las Vegas","NV","Nevada","TRUE","","34671","2811.5","32003","Clark","{""32003"": ""100""}","Clark","32003","FALSE","FALSE","America/Los_Angeles"
-"89143","36.32231","-115.29318","Las Vegas","NV","Nevada","TRUE","","13265","1497.0","32003","Clark","{""32003"": ""100""}","Clark","32003","FALSE","FALSE","America/Los_Angeles"
-"89144","36.1789","-115.32074","Las Vegas","NV","Nevada","TRUE","","19881","1955.3","32003","Clark","{""32003"": ""100""}","Clark","32003","FALSE","FALSE","America/Los_Angeles"
-"89145","36.1677","-115.27787","Las Vegas","NV","Nevada","TRUE","","25071","2107.7","32003","Clark","{""32003"": ""100""}","Clark","32003","FALSE","FALSE","America/Los_Angeles"
-"89146","36.14325","-115.22693","Las Vegas","NV","Nevada","TRUE","","18695","1504.7","32003","Clark","{""32003"": ""100""}","Clark","32003","FALSE","FALSE","America/Los_Angeles"
-"89147","36.1128","-115.28016","Las Vegas","NV","Nevada","TRUE","","55865","2911.2","32003","Clark","{""32003"": ""100""}","Clark","32003","FALSE","FALSE","America/Los_Angeles"
-"89148","36.0588","-115.31039","Las Vegas","NV","Nevada","TRUE","","55553","1740.8","32003","Clark","{""32003"": ""100""}","Clark","32003","FALSE","FALSE","America/Los_Angeles"
-"89149","36.27223","-115.29254","Las Vegas","NV","Nevada","TRUE","","39613","1273.3","32003","Clark","{""32003"": ""100""}","Clark","32003","FALSE","FALSE","America/Los_Angeles"
-"89156","36.16345","-114.98822","Las Vegas","NV","Nevada","TRUE","","29764","353.8","32003","Clark","{""32003"": ""100""}","Clark","32003","FALSE","FALSE","America/Los_Angeles"
-"89161","36.00035","-115.36387","Las Vegas","NV","Nevada","TRUE","","136","2.7","32003","Clark","{""32003"": ""100""}","Clark","32003","FALSE","FALSE","America/Los_Angeles"
-"89166","36.38065","-115.50689","Las Vegas","NV","Nevada","TRUE","","25245","50.5","32003","Clark","{""32003"": ""100""}","Clark","32003","FALSE","FALSE","America/Los_Angeles"
-"89169","36.12415","-115.14128","Las Vegas","NV","Nevada","TRUE","","21822","2482.9","32003","Clark","{""32003"": ""100""}","Clark","32003","FALSE","FALSE","America/Los_Angeles"
-"89178","35.99768","-115.28607","Las Vegas","NV","Nevada","TRUE","","40808","824.6","32003","Clark","{""32003"": ""100""}","Clark","32003","FALSE","FALSE","America/Los_Angeles"
-"89179","35.8946","-115.33187","Las Vegas","NV","Nevada","TRUE","","7449","24.2","32003","Clark","{""32003"": ""100""}","Clark","32003","FALSE","FALSE","America/Los_Angeles"
-"89183","35.99588","-115.15762","Las Vegas","NV","Nevada","TRUE","","42480","2340.1","32003","Clark","{""32003"": ""100""}","Clark","32003","FALSE","FALSE","America/Los_Angeles"
-"89191","36.23961","-115.02563","Nellis Afb","NV","Nevada","TRUE","","581","33.2","32003","Clark","{""32003"": ""100""}","Clark","32003","FALSE","FALSE","America/Los_Angeles"
-"89301","39.54452","-114.77305","Ely","NV","Nevada","TRUE","","8141","1.6","32033","White Pine","{""32033"": ""100""}","White Pine","32033","FALSE","FALSE","America/Los_Angeles"
-"89310","39.41354","-117.16463","Austin","NV","Nevada","TRUE","","292","0.0","32015","Lander","{""32015"": ""76.18"", ""32023"": ""23.82""}","Lander|Nye","32015|32023","FALSE","FALSE","America/Los_Angeles"
-"89311","38.98711","-114.19431","Baker","NV","Nevada","TRUE","","124","0.2","32033","White Pine","{""32033"": ""100""}","White Pine","32033","FALSE","FALSE","America/Los_Angeles"
-"89314","38.85481","-115.76709","Duckwater","NV","Nevada","TRUE","","313","0.7","32023","Nye","{""32023"": ""100""}","Nye","32023","FALSE","FALSE","America/Los_Angeles"
-"89316","39.63087","-116.17716","Eureka","NV","Nevada","TRUE","","1218","0.3","32011","Eureka","{""32011"": ""96.59"", ""32033"": ""2.91"", ""32023"": ""0.5""}","Eureka|White Pine|Nye","32011|32033|32023","FALSE","FALSE","America/Los_Angeles"
-"89317","38.65835","-115.09913","Lund","NV","Nevada","TRUE","","268","1.1","32033","White Pine","{""32033"": ""96.02"", ""32023"": ""3.98""}","White Pine|Nye","32033|32023","FALSE","FALSE","America/Los_Angeles"
-"89318","39.43856","-114.80356","McGill","NV","Nevada","TRUE","","990","13.6","32033","White Pine","{""32033"": ""100""}","White Pine","32033","FALSE","FALSE","America/Los_Angeles"
-"89319","39.29631","-114.97601","Ruth","NV","Nevada","TRUE","","132","4.8","32033","White Pine","{""32033"": ""100""}","White Pine","32033","FALSE","FALSE","America/Los_Angeles"
-"89402","39.22549","-120.00295","Crystal Bay","NV","Nevada","TRUE","","16","59.4","32031","Washoe","{""32031"": ""100""}","Washoe","32031","FALSE","FALSE","America/Los_Angeles"
-"89403","39.19832","-119.47024","Dayton","NV","Nevada","TRUE","","15531","29.7","32019","Lyon","{""32019"": ""95.19"", ""32029"": ""4.81""}","Lyon|Storey","32019|32029","FALSE","FALSE","America/Los_Angeles"
-"89404","41.88683","-118.70584","Denio","NV","Nevada","TRUE","","0","0.0","32013","Humboldt","{""32013"": ""100""}","Humboldt","32013","FALSE","FALSE","America/Los_Angeles"
-"89405","40.48051","-119.42448","Empire","NV","Nevada","TRUE","","134","0.1","32031","Washoe","{""32031"": ""99.58"", ""32027"": ""0.42""}","Washoe|Pershing","32031|32027","FALSE","FALSE","America/Los_Angeles"
-"89406","39.52221","-118.31663","Fallon","NV","Nevada","TRUE","","24213","6.0","32001","Churchill","{""32001"": ""99.99"", ""32019"": ""0.01""}","Churchill|Lyon","32001|32019","FALSE","FALSE","America/Los_Angeles"
-"89408","39.5641","-119.17158","Fernley","NV","Nevada","TRUE","","20439","53.2","32019","Lyon","{""32019"": ""99.45"", ""32001"": ""0.55""}","Lyon|Churchill","32019|32001","FALSE","FALSE","America/Los_Angeles"
-"89409","38.78468","-118.10324","Gabbs","NV","Nevada","TRUE","","109","0.1","32023","Nye","{""32023"": ""98.59"", ""32021"": ""1.41""}","Nye|Mineral","32023|32021","FALSE","FALSE","America/Los_Angeles"
-"89410","38.87028","-119.61147","Gardnerville","NV","Nevada","TRUE","","11191","24.8","32005","Douglas","{""32005"": ""100""}","Douglas","32005","FALSE","FALSE","America/Los_Angeles"
-"89411","39.01902","-119.85021","Genoa","NV","Nevada","TRUE","","643","10.9","32005","Douglas","{""32005"": ""100""}","Douglas","32005","FALSE","FALSE","America/Los_Angeles"
-"89412","41.10776","-119.69948","Gerlach","NV","Nevada","TRUE","","114","0.0","32031","Washoe","{""32031"": ""97.22"", ""32013"": ""2.78""}","Washoe|Humboldt","32031|32013","FALSE","FALSE","America/Los_Angeles"
-"89413","39.07389","-119.92096","Glenbrook","NV","Nevada","TRUE","","725","17.7","32005","Douglas","{""32005"": ""100""}","Douglas","32005","FALSE","FALSE","America/Los_Angeles"
-"89414","41.04623","-117.17819","Golconda","NV","Nevada","TRUE","","154","0.1","32013","Humboldt","{""32013"": ""86.82"", ""32007"": ""13.18""}","Humboldt|Elko","32013|32007","FALSE","FALSE","America/Los_Angeles"
-"89415","38.48546","-118.6415","Hawthorne","NV","Nevada","TRUE","","3043","3.9","32021","Mineral","{""32021"": ""100""}","Mineral","32021","FALSE","FALSE","America/Los_Angeles"
-"89418","40.54841","-118.03436","Imlay","NV","Nevada","TRUE","","306","0.4","32027","Pershing","{""32027"": ""100""}","Pershing","32027","FALSE","FALSE","America/Los_Angeles"
-"89419","40.2717","-118.179","Lovelock","NV","Nevada","TRUE","","5549","4.6","32027","Pershing","{""32027"": ""100""}","Pershing","32027","FALSE","FALSE","America/Los_Angeles"
-"89420","38.54458","-118.22671","Luning","NV","Nevada","TRUE","","55","0.7","32021","Mineral","{""32021"": ""100""}","Mineral","32021","FALSE","FALSE","America/Los_Angeles"
-"89421","42.05134","-117.90083","McDermitt","NV","Nevada","TRUE","","496","0.2","32013","Humboldt","{""32013"": ""85.33"", ""41045"": ""14.67""}","Humboldt|Malheur","32013|41045","FALSE","FALSE","America/Los_Angeles"
-"89422","38.17367","-118.41484","Mina","NV","Nevada","TRUE","","182","0.2","32021","Mineral","{""32021"": ""100""}","Mineral","32021","FALSE","FALSE","America/Los_Angeles"
-"89423","39.01761","-119.74877","Minden","NV","Nevada","TRUE","","10283","57.3","32005","Douglas","{""32005"": ""100""}","Douglas","32005","FALSE","FALSE","America/Los_Angeles"
-"89424","39.851","-119.32368","Nixon","NV","Nevada","TRUE","","209","0.3","32031","Washoe","{""32031"": ""100""}","Washoe","32031","FALSE","FALSE","America/Los_Angeles"
-"89425","41.66538","-117.90827","Orovada","NV","Nevada","TRUE","","312","0.2","32013","Humboldt","{""32013"": ""100""}","Humboldt","32013","FALSE","FALSE","America/Los_Angeles"
-"89426","41.48814","-117.43099","Paradise Valley","NV","Nevada","TRUE","","174","0.2","32013","Humboldt","{""32013"": ""100""}","Humboldt","32013","FALSE","FALSE","America/Los_Angeles"
-"89427","38.92055","-118.70037","Schurz","NV","Nevada","TRUE","","1162","1.8","32021","Mineral","{""32021"": ""100""}","Mineral","32021","FALSE","FALSE","America/Los_Angeles"
-"89428","39.26102","-119.63457","Silver City","NV","Nevada","TRUE","","158","49.7","32019","Lyon","{""32019"": ""100""}","Lyon","32019","FALSE","FALSE","America/Los_Angeles"
-"89429","39.36397","-119.30531","Silver Springs","NV","Nevada","TRUE","","7715","17.7","32019","Lyon","{""32019"": ""100""}","Lyon","32019","FALSE","FALSE","America/Los_Angeles"
-"89430","38.7751","-119.30508","Smith","NV","Nevada","TRUE","","308","3.0","32019","Lyon","{""32019"": ""100""}","Lyon","32019","FALSE","FALSE","America/Los_Angeles"
-"89431","39.54046","-119.7495","Sparks","NV","Nevada","TRUE","","39042","1557.1","32031","Washoe","{""32031"": ""100""}","Washoe","32031","FALSE","FALSE","America/Los_Angeles"
-"89433","39.60898","-119.77665","Sun Valley","NV","Nevada","TRUE","","21875","543.8","32031","Washoe","{""32031"": ""100""}","Washoe","32031","FALSE","FALSE","America/Los_Angeles"
-"89434","39.53209","-119.64042","Sparks","NV","Nevada","TRUE","","25575","330.3","32031","Washoe","{""32031"": ""95.62"", ""32029"": ""4.38""}","Washoe|Storey","32031|32029","FALSE","FALSE","America/Los_Angeles"
-"89436","39.60434","-119.68778","Sparks","NV","Nevada","TRUE","","43826","414.6","32031","Washoe","{""32031"": ""100""}","Washoe","32031","FALSE","FALSE","America/Los_Angeles"
-"89438","40.77331","-117.1078","Valmy","NV","Nevada","TRUE","","91","0.8","32013","Humboldt","{""32013"": ""100""}","Humboldt","32013","FALSE","FALSE","America/Los_Angeles"
-"89439","39.52955","-120.00394","Verdi","NV","Nevada","TRUE","","1284","34.0","32031","Washoe","{""32031"": ""94.35"", ""06091"": ""5.65""}","Washoe|Sierra","32031|06091","FALSE","FALSE","America/Los_Angeles"
-"89440","39.29648","-119.65873","Virginia City","NV","Nevada","TRUE","","864","23.1","32029","Storey","{""32029"": ""100""}","Storey","32029","FALSE","FALSE","America/Los_Angeles"
-"89441","39.67635","-119.6758","Sparks","NV","Nevada","TRUE","","12435","115.7","32031","Washoe","{""32031"": ""100""}","Washoe","32031","FALSE","FALSE","America/Los_Angeles"
-"89442","39.65978","-119.42121","Wadsworth","NV","Nevada","TRUE","","1076","2.6","32031","Washoe","{""32031"": ""99.11"", ""32029"": ""0.89""}","Washoe|Storey","32031|32029","FALSE","FALSE","America/Los_Angeles"
-"89444","38.70709","-119.37194","Wellington","NV","Nevada","TRUE","","2949","3.8","32005","Douglas","{""32005"": ""56.4"", ""32019"": ""43.6""}","Douglas|Lyon","32005|32019","FALSE","FALSE","America/Los_Angeles"
-"89445","41.16908","-118.27422","Winnemucca","NV","Nevada","TRUE","","16387","1.6","32013","Humboldt","{""32013"": ""92.47"", ""32027"": ""7.53""}","Humboldt|Pershing","32013|32027","FALSE","FALSE","America/Los_Angeles"
-"89446","41.21713","-117.87034","Winnemucca","NV","Nevada","TRUE","","0","0.0","32013","Humboldt","{""32013"": ""100""}","Humboldt","32013","FALSE","FALSE","America/Los_Angeles"
-"89447","38.8122","-119.13121","Yerington","NV","Nevada","TRUE","","7834","4.0","32019","Lyon","{""32019"": ""100""}","Lyon","32019","FALSE","FALSE","America/Los_Angeles"
-"89448","39.00784","-119.92412","Zephyr Cove","NV","Nevada","TRUE","","1712","53.8","32005","Douglas","{""32005"": ""100""}","Douglas","32005","FALSE","FALSE","America/Los_Angeles"
-"89449","38.96431","-119.90684","Stateline","NV","Nevada","TRUE","","3094","119.1","32005","Douglas","{""32005"": ""100""}","Douglas","32005","FALSE","FALSE","America/Los_Angeles"
-"89450","39.24043","-119.93903","Incline Village","NV","Nevada","TRUE","","60","816.7","32031","Washoe","{""32031"": ""100""}","Washoe","32031","FALSE","FALSE","America/Los_Angeles"
-"89451","39.24152","-119.93386","Incline Village","NV","Nevada","TRUE","","8777","133.9","32031","Washoe","{""32031"": ""100""}","Washoe","32031","FALSE","FALSE","America/Los_Angeles"
-"89460","38.90108","-119.79057","Gardnerville","NV","Nevada","TRUE","","13570","96.7","32005","Douglas","{""32005"": ""100""}","Douglas","32005","FALSE","FALSE","America/Los_Angeles"
-"89501","39.52566","-119.81303","Reno","NV","Nevada","TRUE","","3961","2413.3","32031","Washoe","{""32031"": ""100""}","Washoe","32031","FALSE","FALSE","America/Los_Angeles"
-"89502","39.49206","-119.74507","Reno","NV","Nevada","TRUE","","45294","787.8","32031","Washoe","{""32031"": ""100""}","Washoe","32031","FALSE","FALSE","America/Los_Angeles"
-"89503","39.54076","-119.83983","Reno","NV","Nevada","TRUE","","28867","1717.3","32031","Washoe","{""32031"": ""100""}","Washoe","32031","FALSE","FALSE","America/Los_Angeles"
-"89506","39.70138","-119.82276","Reno","NV","Nevada","TRUE","","43566","178.0","32031","Washoe","{""32031"": ""100""}","Washoe","32031","FALSE","FALSE","America/Los_Angeles"
-"89508","39.79286","-119.91954","Reno","NV","Nevada","TRUE","","13206","31.9","32031","Washoe","{""32031"": ""100""}","Washoe","32031","FALSE","FALSE","America/Los_Angeles"
-"89509","39.49663","-119.82726","Reno","NV","Nevada","TRUE","","35793","1543.6","32031","Washoe","{""32031"": ""100""}","Washoe","32031","FALSE","FALSE","America/Los_Angeles"
-"89510","40.05586","-119.66305","Reno","NV","Nevada","TRUE","","1454","0.5","32031","Washoe","{""32031"": ""100""}","Washoe","32031","FALSE","FALSE","America/Los_Angeles"
-"89511","39.3953","-119.89494","Reno","NV","Nevada","TRUE","","26443","68.5","32031","Washoe","{""32031"": ""100""}","Washoe","32031","FALSE","FALSE","America/Los_Angeles"
-"89512","39.55284","-119.80072","Reno","NV","Nevada","TRUE","","26222","1605.1","32031","Washoe","{""32031"": ""100""}","Washoe","32031","FALSE","FALSE","America/Los_Angeles"
-"89519","39.48135","-119.85904","Reno","NV","Nevada","TRUE","","8766","434.5","32031","Washoe","{""32031"": ""100""}","Washoe","32031","FALSE","FALSE","America/Los_Angeles"
-"89521","39.38099","-119.68598","Reno","NV","Nevada","TRUE","","33381","168.0","32031","Washoe","{""32031"": ""95.1"", ""32029"": ""4.9""}","Washoe|Storey","32031|32029","FALSE","FALSE","America/Los_Angeles"
-"89523","39.524","-119.91376","Reno","NV","Nevada","TRUE","","34363","704.1","32031","Washoe","{""32031"": ""100""}","Washoe","32031","FALSE","FALSE","America/Los_Angeles"
-"89701","39.13966","-119.71837","Carson City","NV","Nevada","TRUE","","27193","315.3","32510","Carson City","{""32510"": ""100""}","Carson City","32510","FALSE","FALSE","America/Los_Angeles"
-"89702","39.15921","-119.73599","Carson City","NV","Nevada","TRUE","","0","0.0","32510","Carson City","{""32510"": ""0""}","Carson City","32510","FALSE","FALSE","America/Los_Angeles"
-"89703","39.1639","-119.81277","Carson City","NV","Nevada","TRUE","","9955","151.5","32510","Carson City","{""32510"": ""100""}","Carson City","32510","FALSE","FALSE","America/Los_Angeles"
-"89704","39.26682","-119.8174","Washoe Valley","NV","Nevada","TRUE","","3828","19.3","32031","Washoe","{""32031"": ""100""}","Washoe","32031","FALSE","FALSE","America/Los_Angeles"
-"89705","39.11057","-119.86226","Carson City","NV","Nevada","TRUE","","5307","47.5","32005","Douglas","{""32005"": ""99.09"", ""32510"": ""0.91""}","Douglas|Carson City","32005|32510","FALSE","FALSE","America/Los_Angeles"
-"89706","39.21975","-119.70611","Carson City","NV","Nevada","TRUE","","19318","235.3","32510","Carson City","{""32510"": ""91.7"", ""32019"": ""8.3""}","Carson City|Lyon","32510|32019","FALSE","FALSE","America/Los_Angeles"
-"89801","41.24905","-115.7589","Elko","NV","Nevada","TRUE","","26669","5.9","32007","Elko","{""32007"": ""100""}","Elko","32007","FALSE","FALSE","America/Los_Angeles"
-"89815","40.6171","-115.59563","Spring Creek","NV","Nevada","TRUE","","14177","8.7","32007","Elko","{""32007"": ""100""}","Elko","32007","FALSE","FALSE","America/Los_Angeles"
-"89820","40.42657","-116.97366","Battle Mountain","NV","Nevada","TRUE","","5436","1.0","32015","Lander","{""32015"": ""99.96"", ""32011"": ""0.04""}","Lander|Eureka","32015|32011","FALSE","FALSE","America/Los_Angeles"
-"89821","40.49241","-116.46224","Crescent Valley","NV","Nevada","TRUE","","462","0.5","32011","Eureka","{""32011"": ""100""}","Eureka","32011","FALSE","FALSE","America/Los_Angeles"
-"89822","40.53131","-116.19417","Carlin","NV","Nevada","TRUE","","2160","1.4","32007","Elko","{""32007"": ""94.31"", ""32011"": ""5.69""}","Elko|Eureka","32007|32011","FALSE","FALSE","America/Los_Angeles"
-"89823","41.00476","-115.27447","Deeth","NV","Nevada","TRUE","","124","0.1","32007","Elko","{""32007"": ""100""}","Elko","32007","FALSE","FALSE","America/Los_Angeles"
-"89825","41.88816","-114.72328","Jackpot","NV","Nevada","TRUE","","1289","11.8","32007","Elko","{""32007"": ""100""}","Elko","32007","FALSE","FALSE","America/Los_Angeles"
-"89826","41.8873","-115.38128","Jarbidge","NV","Nevada","TRUE","","0","0.0","32007","Elko","{""32007"": ""100""}","Elko","32007","FALSE","FALSE","America/Los_Angeles"
-"89828","40.75053","-115.36309","Lamoille","NV","Nevada","TRUE","","363","1.1","32007","Elko","{""32007"": ""100""}","Elko","32007","FALSE","FALSE","America/Los_Angeles"
-"89830","41.27533","-114.28821","Montello","NV","Nevada","TRUE","","208","0.1","32007","Elko","{""32007"": ""100""}","Elko","32007","FALSE","FALSE","America/Los_Angeles"
-"89831","41.73253","-116.11224","Mountain City","NV","Nevada","TRUE","","11","0.0","32007","Elko","{""32007"": ""100""}","Elko","32007","FALSE","FALSE","America/Los_Angeles"
-"89832","41.98653","-116.16574","Owyhee","NV","Nevada","TRUE","","1312","3.8","32007","Elko","{""32007"": ""72.7"", ""16073"": ""27.3""}","Elko|Owyhee","32007|16073","FALSE","FALSE","America/Los_Angeles"
-"89833","40.47107","-115.31693","Ruby Valley","NV","Nevada","TRUE","","137","0.1","32007","Elko","{""32007"": ""100""}","Elko","32007","FALSE","FALSE","America/Los_Angeles"
-"89834","41.37383","-116.2641","Tuscarora","NV","Nevada","TRUE","","152","0.1","32007","Elko","{""32007"": ""100""}","Elko","32007","FALSE","FALSE","America/Los_Angeles"
-"89835","41.1147","-114.85451","Wells","NV","Nevada","TRUE","","1626","0.2","32007","Elko","{""32007"": ""100""}","Elko","32007","FALSE","FALSE","America/Los_Angeles"
-"89883","40.72545","-114.24179","West Wendover","NV","Nevada","TRUE","","4381","5.6","32007","Elko","{""32007"": ""100""}","Elko","32007","FALSE","FALSE","America/Los_Angeles"
-"90001","33.97398","-118.24955","Los Angeles","CA","California","TRUE","","59832","6595.9","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"90002","33.94901","-118.24674","Los Angeles","CA","California","TRUE","","53302","6721.1","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"90003","33.96411","-118.2737","Los Angeles","CA","California","TRUE","","73730","8016.2","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"90004","34.07621","-118.31084","Los Angeles","CA","California","TRUE","","60541","7668.7","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"90005","34.05912","-118.30654","Los Angeles","CA","California","TRUE","","39732","14151.8","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"90006","34.04801","-118.29418","Los Angeles","CA","California","TRUE","","59576","11981.7","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"90007","34.02809","-118.28489","Los Angeles","CA","California","TRUE","","42433","6640.7","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"90008","34.00956","-118.34706","Los Angeles","CA","California","TRUE","","31754","3337.9","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"90010","34.06211","-118.31577","Los Angeles","CA","California","TRUE","","3822","3226.8","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"90011","34.00714","-118.25874","Los Angeles","CA","California","TRUE","","111165","10014.5","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"90012","34.06599","-118.23821","Los Angeles","CA","California","TRUE","","36552","4361.8","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"90013","34.04481","-118.24033","Los Angeles","CA","California","TRUE","","12559","7227.4","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"90014","34.04308","-118.25169","Los Angeles","CA","California","TRUE","","8688","11845.8","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"90015","34.03939","-118.26645","Los Angeles","CA","California","TRUE","","22651","5112.6","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"90016","34.02872","-118.3546","Los Angeles","CA","California","TRUE","","45899","4886.0","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"90017","34.05291","-118.2643","Los Angeles","CA","California","TRUE","","27723","14737.8","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"90018","34.02887","-118.3172","Los Angeles","CA","California","TRUE","","53490","7131.7","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"90019","34.04864","-118.33868","Los Angeles","CA","California","TRUE","","64534","6408.5","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"90020","34.06639","-118.3099","Los Angeles","CA","California","TRUE","","39189","13386.6","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"90021","34.02931","-118.23873","Los Angeles","CA","California","TRUE","","2945","549.2","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"90022","34.02453","-118.15609","Los Angeles","CA","California","TRUE","","67014","5905.2","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"90023","34.02276","-118.19989","Los Angeles","CA","California","TRUE","","46680","4266.7","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"90024","34.06568","-118.43502","Los Angeles","CA","California","TRUE","","51627","6788.2","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"90025","34.04544","-118.44586","Los Angeles","CA","California","TRUE","","46883","7045.4","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"90026","34.07928","-118.263","Los Angeles","CA","California","TRUE","","68906","6298.5","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"90027","34.12521","-118.29057","Los Angeles","CA","California","TRUE","","44770","2125.2","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"90028","34.09989","-118.32691","Los Angeles","CA","California","TRUE","","29774","7541.8","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"90029","34.08984","-118.29471","Los Angeles","CA","California","TRUE","","36668","10396.7","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"90031","34.08022","-118.21073","Los Angeles","CA","California","TRUE","","39916","4462.7","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"90032","34.07956","-118.17807","Los Angeles","CA","California","TRUE","","48031","3890.0","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"90033","34.05105","-118.21163","Los Angeles","CA","California","TRUE","","49155","5808.6","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"90034","34.03068","-118.39953","Los Angeles","CA","California","TRUE","","53861","6682.9","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"90035","34.05182","-118.38351","Los Angeles","CA","California","TRUE","","27272","5141.5","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"90036","34.07016","-118.34987","Los Angeles","CA","California","TRUE","","37965","5933.8","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"90037","34.00268","-118.28748","Los Angeles","CA","California","TRUE","","67640","9205.0","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"90038","34.08876","-118.32652","Los Angeles","CA","California","TRUE","","28580","7044.2","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"90039","34.1118","-118.26001","Los Angeles","CA","California","TRUE","","29510","3022.0","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"90040","33.99353","-118.14907","Los Angeles","CA","California","TRUE","","12328","852.8","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"90041","34.13765","-118.20762","Los Angeles","CA","California","TRUE","","29090","3113.3","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"90042","34.11462","-118.19202","Los Angeles","CA","California","TRUE","","63193","5250.0","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"90043","33.98886","-118.33517","Los Angeles","CA","California","TRUE","","45873","4284.9","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"90044","33.95278","-118.29188","Los Angeles","CA","California","TRUE","","99443","7474.9","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"90045","33.95297","-118.40014","Los Angeles","CA","California","TRUE","","40567","1459.6","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"90046","34.10746","-118.36525","Los Angeles","CA","California","TRUE","","50900","3397.6","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"90047","33.9545","-118.309","Los Angeles","CA","California","TRUE","","51411","4196.1","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"90048","34.07297","-118.37265","Los Angeles","CA","California","TRUE","","21489","4399.8","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"90049","34.08718","-118.48925","Los Angeles","CA","California","TRUE","","36418","936.2","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"90056","33.98809","-118.37033","Los Angeles","CA","California","TRUE","","7649","1869.7","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"90057","34.06224","-118.27716","Los Angeles","CA","California","TRUE","","50152","21865.0","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"90058","34.00244","-118.21392","Los Angeles","CA","California","TRUE","","2718","180.7","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"90059","33.92621","-118.24964","Los Angeles","CA","California","TRUE","","46185","5381.7","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"90061","33.92045","-118.27403","Los Angeles","CA","California","TRUE","","27873","4043.1","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"90062","34.00376","-118.30875","Los Angeles","CA","California","TRUE","","35916","7171.2","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"90063","34.0451","-118.18597","Los Angeles","CA","California","TRUE","","53980","6368.9","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"90064","34.03702","-118.42492","Los Angeles","CA","California","TRUE","","25925","2495.5","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"90065","34.10889","-118.22759","Los Angeles","CA","California","TRUE","","46461","3398.2","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"90066","34.00127","-118.43065","Los Angeles","CA","California","TRUE","","59167","4642.0","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"90067","34.0577","-118.41402","Los Angeles","CA","California","TRUE","","2428","2856.8","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"90068","34.12837","-118.32828","Los Angeles","CA","California","TRUE","","21092","1051.1","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"90069","34.09386","-118.38171","West Hollywood","CA","California","TRUE","","20230","3694.5","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"90071","34.05278","-118.25482","Los Angeles","CA","California","TRUE","","126","394.8","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"90073","34.05453","-118.45696","Los Angeles","CA","California","TRUE","","953","1085.1","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"90077","34.10546","-118.45615","Los Angeles","CA","California","TRUE","","8382","441.4","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"90079","34.04059","-118.2554","Los Angeles","CA","California","TRUE","","0","0.0","06037","Los Angeles","{""06037"": ""0""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"90089","34.02442","-118.28033","Los Angeles","CA","California","TRUE","","3786","5097.2","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"90090","34.07282","-118.24099","Dodgertown","CA","California","TRUE","","0","0.0","06037","Los Angeles","{""06037"": ""0""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"90094","33.97539","-118.417","Playa Vista","CA","California","TRUE","","9827","6223.7","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"90095","34.07119","-118.44335","Los Angeles","CA","California","TRUE","","0","0.0","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"90201","33.97072","-118.17079","Bell Gardens","CA","California","TRUE","","101965","6630.7","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"90210","34.10103","-118.41475","Beverly Hills","CA","California","TRUE","","19314","736.5","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"90211","34.06502","-118.38304","Beverly Hills","CA","California","TRUE","","8019","4420.7","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"90212","34.06217","-118.40194","Beverly Hills","CA","California","TRUE","","13314","5381.0","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"90220","33.88078","-118.23607","Compton","CA","California","TRUE","","52817","2950.9","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"90221","33.88614","-118.20595","Compton","CA","California","TRUE","","51688","3743.0","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"90222","33.91238","-118.2365","Compton","CA","California","TRUE","","33200","4981.8","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"90230","33.9972","-118.39458","Culver City","CA","California","TRUE","","32687","2798.8","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"90232","34.01879","-118.39182","Culver City","CA","California","TRUE","","14780","2709.5","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"90240","33.9568","-118.11869","Downey","CA","California","TRUE","","26413","3464.1","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"90241","33.94084","-118.12924","Downey","CA","California","TRUE","","43215","3388.6","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"90242","33.92213","-118.14148","Downey","CA","California","TRUE","","42694","3621.8","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"90245","33.91695","-118.40206","El Segundo","CA","California","TRUE","","16731","1182.5","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"90247","33.8914","-118.29737","Gardena","CA","California","TRUE","","48293","4966.6","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"90248","33.87669","-118.2835","Gardena","CA","California","TRUE","","11607","954.7","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"90249","33.9015","-118.31708","Gardena","CA","California","TRUE","","26429","3426.7","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"90250","33.91436","-118.34931","Hawthorne","CA","California","TRUE","","97072","5598.4","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"90254","33.86546","-118.39665","Hermosa Beach","CA","California","TRUE","","19539","5287.7","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"90255","33.97695","-118.21718","Huntington Park","CA","California","TRUE","","75019","7789.9","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"90260","33.88828","-118.35122","Lawndale","CA","California","TRUE","","34827","5017.3","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"90262","33.92365","-118.20053","Lynwood","CA","California","TRUE","","70536","5635.0","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"90263","34.03892","-118.70792","Malibu","CA","California","TRUE","","1838","3141.2","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"90265","34.07191","-118.84989","Malibu","CA","California","TRUE","","17954","64.3","06037","Los Angeles","{""06037"": ""96.68"", ""06111"": ""3.32""}","Los Angeles|Ventura","06037|06111","FALSE","FALSE","America/Los_Angeles"
-"90266","33.8895","-118.39718","Manhattan Beach","CA","California","TRUE","","35500","3482.1","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"90270","33.98797","-118.18592","Maywood","CA","California","TRUE","","27287","8350.2","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"90272","34.07991","-118.54219","Pacific Palisades","CA","California","TRUE","","21629","365.8","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"90274","33.77734","-118.36893","Palos Verdes Peninsula","CA","California","TRUE","","25061","807.8","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"90275","33.75545","-118.36393","Rancho Palos Verdes","CA","California","TRUE","","42146","1203.4","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"90277","33.83073","-118.3846","Redondo Beach","CA","California","TRUE","","34827","3754.1","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"90278","33.87325","-118.37037","Redondo Beach","CA","California","TRUE","","40252","4312.9","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"90280","33.9446","-118.19262","South Gate","CA","California","TRUE","","94642","5002.2","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"90290","34.09588","-118.60707","Topanga","CA","California","TRUE","","5681","109.4","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"90291","33.99437","-118.46344","Venice","CA","California","TRUE","","26950","4164.8","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"90292","33.97831","-118.44761","Marina Del Rey","CA","California","TRUE","","23549","4466.1","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"90293","33.95033","-118.43721","Playa Del Rey","CA","California","TRUE","","12728","1719.1","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"90301","33.95652","-118.35864","Inglewood","CA","California","TRUE","","38234","5958.4","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"90302","33.97472","-118.35551","Inglewood","CA","California","TRUE","","30017","6121.4","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"90303","33.93809","-118.33232","Inglewood","CA","California","TRUE","","24374","4226.1","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"90304","33.93799","-118.35857","Inglewood","CA","California","TRUE","","25946","6394.5","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"90305","33.95959","-118.33015","Inglewood","CA","California","TRUE","","15042","2512.7","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"90401","34.01545","-118.49248","Santa Monica","CA","California","TRUE","","7111","3235.2","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"90402","34.03561","-118.50364","Santa Monica","CA","California","TRUE","","11882","2289.4","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"90403","34.03106","-118.4901","Santa Monica","CA","California","TRUE","","23902","6464.7","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"90404","34.02662","-118.47364","Santa Monica","CA","California","TRUE","","22929","4442.7","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"90405","34.01179","-118.46821","Santa Monica","CA","California","TRUE","","28156","4108.6","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"90501","33.8334","-118.31426","Torrance","CA","California","TRUE","","41975","2863.3","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"90502","33.83499","-118.29292","Torrance","CA","California","TRUE","","17778","3070.9","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"90503","33.84074","-118.35361","Torrance","CA","California","TRUE","","44605","3246.3","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"90504","33.86682","-118.33115","Torrance","CA","California","TRUE","","33410","2898.2","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"90505","33.80887","-118.34802","Torrance","CA","California","TRUE","","37220","2480.4","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"90506","33.88491","-118.33033","Torrance","CA","California","TRUE","","0","0.0","06037","Los Angeles","{""06037"": ""0""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"90601","34.00833","-118.03135","Whittier","CA","California","TRUE","","32053","1090.7","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"90602","33.972","-118.02227","Whittier","CA","California","TRUE","","25581","2661.7","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"90603","33.94541","-117.99253","Whittier","CA","California","TRUE","","21584","2549.0","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"90604","33.93012","-118.01225","Whittier","CA","California","TRUE","","42911","3888.1","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"90605","33.94984","-118.02328","Whittier","CA","California","TRUE","","40192","2745.7","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"90606","33.97766","-118.06579","Whittier","CA","California","TRUE","","32987","3366.8","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"90620","33.84612","-118.01169","Buena Park","CA","California","TRUE","","46414","2802.5","06059","Orange","{""06059"": ""100""}","Orange","06059","FALSE","FALSE","America/Los_Angeles"
-"90621","33.87428","-117.99351","Buena Park","CA","California","TRUE","","35598","3311.4","06059","Orange","{""06059"": ""100""}","Orange","06059","FALSE","FALSE","America/Los_Angeles"
-"90623","33.85045","-118.04072","La Palma","CA","California","TRUE","","15662","3332.0","06059","Orange","{""06059"": ""99.23"", ""06037"": ""0.77""}","Orange|Los Angeles","06059|06037","FALSE","FALSE","America/Los_Angeles"
-"90630","33.81814","-118.03816","Cypress","CA","California","TRUE","","49205","3100.9","06059","Orange","{""06059"": ""99.61"", ""06037"": ""0.39""}","Orange|Los Angeles","06059|06037","FALSE","FALSE","America/Los_Angeles"
-"90631","33.94248","-117.95134","La Habra","CA","California","TRUE","","69064","1918.8","06059","Orange","{""06059"": ""91.08"", ""06037"": ""8.92""}","Orange|Los Angeles","06059|06037","FALSE","FALSE","America/Los_Angeles"
-"90638","33.90241","-118.0092","La Mirada","CA","California","TRUE","","49227","2415.3","06037","Los Angeles","{""06037"": ""99.02"", ""06059"": ""0.98""}","Los Angeles|Orange","06037|06059","FALSE","FALSE","America/Los_Angeles"
-"90640","34.01507","-118.11073","Montebello","CA","California","TRUE","","62730","2852.6","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"90650","33.90685","-118.08263","Norwalk","CA","California","TRUE","","105304","4144.5","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"90660","33.98882","-118.09063","Pico Rivera","CA","California","TRUE","","63001","3138.8","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"90670","33.93301","-118.06264","Santa Fe Springs","CA","California","TRUE","","16700","761.9","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"90680","33.80118","-117.99495","Stanton","CA","California","TRUE","","30531","4365.0","06059","Orange","{""06059"": ""100""}","Orange","06059","FALSE","FALSE","America/Los_Angeles"
-"90701","33.86763","-118.08062","Artesia","CA","California","TRUE","","16801","3979.5","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"90703","33.86785","-118.06871","Cerritos","CA","California","TRUE","","50589","2225.4","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"90704","33.38251","-118.43439","Avalon","CA","California","TRUE","","3979","20.5","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"90706","33.88802","-118.12706","Bellflower","CA","California","TRUE","","77195","4878.4","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"90710","33.79809","-118.29907","Harbor City","CA","California","TRUE","","28045","4599.8","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"90712","33.84901","-118.14672","Lakewood","CA","California","TRUE","","31217","2814.2","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"90713","33.84798","-118.11265","Lakewood","CA","California","TRUE","","28202","3208.4","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"90715","33.84035","-118.07886","Lakewood","CA","California","TRUE","","20256","4599.3","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"90716","33.83049","-118.07302","Hawaiian Gardens","CA","California","TRUE","","14285","5922.9","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"90717","33.79383","-118.3172","Lomita","CA","California","TRUE","","21508","4191.7","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"90720","33.79557","-118.0636","Los Alamitos","CA","California","TRUE","","22261","1403.3","06059","Orange","{""06059"": ""100""}","Orange","06059","FALSE","FALSE","America/Los_Angeles"
-"90723","33.89743","-118.16482","Paramount","CA","California","TRUE","","54513","4492.9","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"90731","33.73334","-118.27433","San Pedro","CA","California","TRUE","","60659","2557.2","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"90732","33.74507","-118.31012","San Pedro","CA","California","TRUE","","22780","2566.9","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"90740","33.75962","-118.07346","Seal Beach","CA","California","TRUE","","24307","1068.8","06059","Orange","{""06059"": ""99.94"", ""06037"": ""0.06""}","Orange|Los Angeles","06059|06037","FALSE","FALSE","America/Los_Angeles"
-"90742","33.71792","-118.07155","Sunset Beach","CA","California","TRUE","","692","1449.7","06059","Orange","{""06059"": ""100""}","Orange","06059","FALSE","FALSE","America/Los_Angeles"
-"90743","33.72709","-118.08284","Surfside","CA","California","TRUE","","236","1099.7","06059","Orange","{""06059"": ""100""}","Orange","06059","FALSE","FALSE","America/Los_Angeles"
-"90744","33.77865","-118.26167","Wilmington","CA","California","TRUE","","56880","2616.0","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"90745","33.82124","-118.26441","Carson","CA","California","TRUE","","56930","2646.0","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"90746","33.85888","-118.25526","Carson","CA","California","TRUE","","27075","1792.2","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"90747","33.86298","-118.25131","Carson","CA","California","TRUE","","0","0.0","06037","Los Angeles","{""06037"": ""0""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"90755","33.80289","-118.16772","Signal Hill","CA","California","TRUE","","11545","2045.7","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"90802","33.75021","-118.2114","Long Beach","CA","California","TRUE","","38962","2319.2","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"90803","33.76162","-118.12219","Long Beach","CA","California","TRUE","","32126","3075.7","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"90804","33.78185","-118.14863","Long Beach","CA","California","TRUE","","39239","7165.8","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"90805","33.86493","-118.18055","Long Beach","CA","California","TRUE","","95995","5030.7","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"90806","33.8045","-118.18762","Long Beach","CA","California","TRUE","","41990","4710.2","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"90807","33.82795","-118.1746","Long Beach","CA","California","TRUE","","32202","2129.8","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"90808","33.82406","-118.11239","Long Beach","CA","California","TRUE","","39330","2210.0","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"90810","33.81894","-118.2211","Long Beach","CA","California","TRUE","","37251","2147.9","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"90813","33.78237","-118.19686","Long Beach","CA","California","TRUE","","58380","7023.3","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"90814","33.77163","-118.14362","Long Beach","CA","California","TRUE","","19685","5611.3","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"90815","33.79581","-118.11626","Long Beach","CA","California","TRUE","","41312","2240.2","06037","Los Angeles","{""06037"": ""99.77"", ""06059"": ""0.23""}","Los Angeles|Orange","06037|06059","FALSE","FALSE","America/Los_Angeles"
-"90822","33.77844","-118.11863","Long Beach","CA","California","TRUE","","133","316.0","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"90831","33.76829","-118.2017","Long Beach","CA","California","TRUE","","0","0.0","06037","Los Angeles","{""06037"": ""0""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"91001","34.19544","-118.13796","Altadena","CA","California","TRUE","","37818","1768.6","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"91006","34.13603","-118.02679","Arcadia","CA","California","TRUE","","32958","2014.1","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"91007","34.1286","-118.04825","Arcadia","CA","California","TRUE","","34116","2369.6","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"91008","34.15344","-117.96821","Duarte","CA","California","TRUE","","1084","206.5","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"91010","34.14073","-117.9567","Duarte","CA","California","TRUE","","26380","1446.8","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"91011","34.22161","-118.20516","La Canada Flintridge","CA","California","TRUE","","20301","661.3","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"91016","34.15209","-118.0007","Monrovia","CA","California","TRUE","","41105","1869.5","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"91020","34.21129","-118.23072","Montrose","CA","California","TRUE","","8633","4432.3","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"91024","34.16871","-118.05036","Sierra Madre","CA","California","TRUE","","10932","1429.6","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"91030","34.1102","-118.15735","South Pasadena","CA","California","TRUE","","25637","2901.9","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"91040","34.26177","-118.33715","Sunland","CA","California","TRUE","","20049","943.7","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"91042","34.31653","-118.24912","Tujunga","CA","California","TRUE","","26966","208.7","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"91046","34.21145","-118.24104","Verdugo City","CA","California","TRUE","","158","6097.1","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"91101","34.14657","-118.13942","Pasadena","CA","California","TRUE","","21395","6210.9","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"91103","34.16898","-118.16597","Pasadena","CA","California","TRUE","","27659","1982.2","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"91104","34.16784","-118.12348","Pasadena","CA","California","TRUE","","37874","3842.6","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"91105","34.13821","-118.16677","Pasadena","CA","California","TRUE","","12617","1319.5","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"91106","34.13867","-118.1282","Pasadena","CA","California","TRUE","","25543","3348.4","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"91107","34.15833","-118.08716","Pasadena","CA","California","TRUE","","32503","1525.1","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"91108","34.12234","-118.11341","San Marino","CA","California","TRUE","","13375","1355.0","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"91201","34.17031","-118.28913","Glendale","CA","California","TRUE","","23281","3818.0","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"91202","34.16785","-118.26846","Glendale","CA","California","TRUE","","23345","4397.7","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"91203","34.15298","-118.26419","Glendale","CA","California","TRUE","","15410","7268.9","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"91204","34.13629","-118.26093","Glendale","CA","California","TRUE","","18723","6431.6","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"91205","34.13666","-118.24332","Glendale","CA","California","TRUE","","37638","7685.2","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"91206","34.16068","-118.21352","Glendale","CA","California","TRUE","","34739","2280.2","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"91207","34.18361","-118.25864","Glendale","CA","California","TRUE","","11031","936.9","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"91208","34.1925","-118.23656","Glendale","CA","California","TRUE","","15860","887.2","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"91210","34.14452","-118.25645","Glendale","CA","California","TRUE","","529","4640.1","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"91214","34.23671","-118.24925","La Crescenta","CA","California","TRUE","","30787","1575.2","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"91301","34.12274","-118.7572","Agoura Hills","CA","California","TRUE","","26334","298.4","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"91302","34.12426","-118.6701","Calabasas","CA","California","TRUE","","26712","386.1","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"91303","34.19794","-118.60156","Canoga Park","CA","California","TRUE","","31586","5637.2","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"91304","34.22465","-118.63249","Canoga Park","CA","California","TRUE","","54361","2231.6","06037","Los Angeles","{""06037"": ""99.52"", ""06111"": ""0.48""}","Los Angeles|Ventura","06037|06111","FALSE","FALSE","America/Los_Angeles"
-"91306","34.20927","-118.5754","Winnetka","CA","California","TRUE","","49678","4634.9","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"91307","34.20164","-118.66216","West Hills","CA","California","TRUE","","26341","1262.0","06037","Los Angeles","{""06037"": ""91.63"", ""06111"": ""8.37""}","Los Angeles|Ventura","06037|06111","FALSE","FALSE","America/Los_Angeles"
-"91311","34.28937","-118.60742","Chatsworth","CA","California","TRUE","","40839","491.5","06037","Los Angeles","{""06037"": ""99.27"", ""06111"": ""0.73""}","Los Angeles|Ventura","06037|06111","FALSE","FALSE","America/Los_Angeles"
-"91316","34.16039","-118.51669","Encino","CA","California","TRUE","","30499","2351.8","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"91320","34.17596","-118.94506","Newbury Park","CA","California","TRUE","","44968","952.0","06111","Ventura","{""06111"": ""100""}","Ventura","06111","FALSE","FALSE","America/Los_Angeles"
-"91321","34.36909","-118.486","Newhall","CA","California","TRUE","","34014","507.5","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"91324","34.23901","-118.54958","Northridge","CA","California","TRUE","","29670","2609.8","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"91325","34.23602","-118.51759","Northridge","CA","California","TRUE","","34575","2766.7","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"91326","34.28048","-118.55758","Porter Ranch","CA","California","TRUE","","36339","1719.6","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"91330","34.24765","-118.52607","Northridge","CA","California","TRUE","","3257","3732.8","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"91331","34.25562","-118.42076","Pacoima","CA","California","TRUE","","105458","4599.4","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"91335","34.20105","-118.54067","Reseda","CA","California","TRUE","","81824","4812.6","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"91340","34.28679","-118.43513","San Fernando","CA","California","TRUE","","36156","4128.7","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"91342","34.31515","-118.38506","Sylmar","CA","California","TRUE","","94595","660.4","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"91343","34.23827","-118.48067","North Hills","CA","California","TRUE","","66743","4359.4","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"91344","34.29392","-118.5075","Granada Hills","CA","California","TRUE","","53613","1261.4","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"91345","34.26594","-118.45945","Mission Hills","CA","California","TRUE","","19145","2280.8","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"91350","34.43357","-118.50074","Santa Clarita","CA","California","TRUE","","36173","823.8","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"91351","34.43321","-118.46295","Canyon Country","CA","California","TRUE","","32711","1319.6","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"91352","34.23194","-118.36642","Sun Valley","CA","California","TRUE","","47076","1552.1","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"91354","34.46493","-118.55428","Valencia","CA","California","TRUE","","32544","1440.1","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"91355","34.42467","-118.58925","Valencia","CA","California","TRUE","","30526","760.6","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"91356","34.15508","-118.54751","Tarzana","CA","California","TRUE","","29822","1569.9","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"91360","34.21271","-118.88215","Thousand Oaks","CA","California","TRUE","","43121","1151.7","06111","Ventura","{""06111"": ""100""}","Ventura","06111","FALSE","FALSE","America/Los_Angeles"
-"91361","34.13649","-118.889","Westlake Village","CA","California","TRUE","","20258","233.4","06111","Ventura","{""06111"": ""65.07"", ""06037"": ""34.93""}","Ventura|Los Angeles","06111|06037","FALSE","FALSE","America/Los_Angeles"
-"91362","34.19336","-118.81868","Thousand Oaks","CA","California","TRUE","","36604","720.0","06111","Ventura","{""06111"": ""96.63"", ""06037"": ""3.37""}","Ventura|Los Angeles","06111|06037","FALSE","FALSE","America/Los_Angeles"
-"91364","34.15477","-118.59509","Woodland Hills","CA","California","TRUE","","27971","1422.3","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"91367","34.17705","-118.61531","Woodland Hills","CA","California","TRUE","","45970","2388.6","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"91371","34.18459","-118.57636","Woodland Hills","CA","California","TRUE","","0","0.0","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"91377","34.18496","-118.76687","Oak Park","CA","California","TRUE","","13853","1010.6","06111","Ventura","{""06111"": ""100""}","Ventura","06111","FALSE","FALSE","America/Los_Angeles"
-"91381","34.37747","-118.61311","Stevenson Ranch","CA","California","TRUE","","19390","199.0","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"91384","34.53072","-118.68639","Castaic","CA","California","TRUE","","29212","103.9","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"91387","34.39878","-118.37319","Canyon Country","CA","California","TRUE","","42034","327.7","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"91390","34.52287","-118.39215","Santa Clarita","CA","California","TRUE","","19168","51.7","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"91401","34.17812","-118.43146","Van Nuys","CA","California","TRUE","","39755","4445.1","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"91402","34.22411","-118.44481","Panorama City","CA","California","TRUE","","72059","7465.1","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"91403","34.14659","-118.46286","Sherman Oaks","CA","California","TRUE","","25156","2675.0","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"91405","34.20109","-118.44816","Van Nuys","CA","California","TRUE","","55506","6476.8","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"91406","34.19818","-118.48975","Van Nuys","CA","California","TRUE","","54890","2606.2","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"91411","34.17838","-118.4593","Van Nuys","CA","California","TRUE","","26111","4936.1","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"91423","34.14852","-118.43272","Sherman Oaks","CA","California","TRUE","","33172","2935.5","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"91436","34.15087","-118.49229","Encino","CA","California","TRUE","","15292","1036.8","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"91501","34.20052","-118.29583","Burbank","CA","California","TRUE","","20511","1996.1","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"91502","34.17676","-118.30922","Burbank","CA","California","TRUE","","10708","3080.0","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"91504","34.20449","-118.327","Burbank","CA","California","TRUE","","26749","2092.5","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"91505","34.17478","-118.34681","Burbank","CA","California","TRUE","","30902","2367.2","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"91506","34.17117","-118.32384","Burbank","CA","California","TRUE","","18591","2932.3","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"91601","34.16859","-118.37254","North Hollywood","CA","California","TRUE","","36841","5367.0","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"91602","34.15106","-118.36634","North Hollywood","CA","California","TRUE","","19672","3708.1","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"91604","34.13881","-118.39352","Studio City","CA","California","TRUE","","32910","2467.0","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"91605","34.20721","-118.40025","North Hollywood","CA","California","TRUE","","53113","3753.0","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"91606","34.18659","-118.38871","North Hollywood","CA","California","TRUE","","44295","5132.0","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"91607","34.16619","-118.40011","Valley Village","CA","California","TRUE","","30611","4844.8","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"91608","34.13826","-118.35285","Universal City","CA","California","TRUE","","21","13.6","06037","Los Angeles","{""06037"": ""0""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"91701","34.13762","-117.59998","Rancho Cucamonga","CA","California","TRUE","","39461","2090.8","06071","San Bernardino","{""06071"": ""100""}","San Bernardino","06071","FALSE","FALSE","America/Los_Angeles"
-"91702","34.26557","-117.86721","Azusa","CA","California","TRUE","","62066","141.5","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"91706","34.09641","-117.96816","Baldwin Park","CA","California","TRUE","","76930","2211.1","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"91708","33.95397","-117.64045","Chino","CA","California","TRUE","","4009","163.1","06071","San Bernardino","{""06071"": ""100""}","San Bernardino","06071","FALSE","FALSE","America/Los_Angeles"
-"91709","33.96432","-117.73599","Chino Hills","CA","California","TRUE","","80701","911.5","06071","San Bernardino","{""06071"": ""100""}","San Bernardino","06071","FALSE","FALSE","America/Los_Angeles"
-"91710","34.00447","-117.68468","Chino","CA","California","TRUE","","91773","1645.7","06071","San Bernardino","{""06071"": ""100""}","San Bernardino","06071","FALSE","FALSE","America/Los_Angeles"
-"91711","34.12853","-117.71561","Claremont","CA","California","TRUE","","36777","945.9","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"91722","34.09726","-117.90616","Covina","CA","California","TRUE","","34631","3236.8","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"91723","34.08476","-117.88643","Covina","CA","California","TRUE","","18521","3078.8","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"91724","34.08071","-117.85502","Covina","CA","California","TRUE","","26717","1654.5","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"91730","34.09955","-117.57847","Rancho Cucamonga","CA","California","TRUE","","72407","1930.1","06071","San Bernardino","{""06071"": ""100""}","San Bernardino","06071","FALSE","FALSE","America/Los_Angeles"
-"91731","34.07878","-118.04062","El Monte","CA","California","TRUE","","30222","3058.5","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"91732","34.07343","-118.01445","El Monte","CA","California","TRUE","","62905","5261.0","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"91733","34.04553","-118.05318","South El Monte","CA","California","TRUE","","45365","2622.6","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"91737","34.15259","-117.57772","Rancho Cucamonga","CA","California","TRUE","","25154","1159.2","06071","San Bernardino","{""06071"": ""100""}","San Bernardino","06071","FALSE","FALSE","America/Los_Angeles"
-"91739","34.17054","-117.51815","Rancho Cucamonga","CA","California","TRUE","","39875","523.7","06071","San Bernardino","{""06071"": ""100""}","San Bernardino","06071","FALSE","FALSE","America/Los_Angeles"
-"91740","34.11878","-117.8539","Glendora","CA","California","TRUE","","25877","2006.9","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"91741","34.15372","-117.84368","Glendora","CA","California","TRUE","","26794","697.7","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"91744","34.0289","-117.93731","La Puente","CA","California","TRUE","","85421","3752.3","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"91745","33.99931","-117.97325","Hacienda Heights","CA","California","TRUE","","55202","1664.1","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"91746","34.04426","-117.98629","La Puente","CA","California","TRUE","","29709","2059.5","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"91748","33.97661","-117.8997","Rowland Heights","CA","California","TRUE","","47079","1256.5","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"91750","34.16086","-117.77278","La Verne","CA","California","TRUE","","34129","522.1","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"91752","33.99576","-117.534","Mira Loma","CA","California","TRUE","","35694","913.3","06065","Riverside","{""06065"": ""100""}","Riverside","06065","FALSE","FALSE","America/Los_Angeles"
-"91754","34.05096","-118.1446","Monterey Park","CA","California","TRUE","","33636","2863.9","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"91755","34.048","-118.11499","Monterey Park","CA","California","TRUE","","26803","3331.1","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"91759","34.25405","-117.69148","Mt Baldy","CA","California","TRUE","","307","1.4","06071","San Bernardino","{""06071"": ""86.13"", ""06037"": ""13.87""}","San Bernardino|Los Angeles","06071|06037","FALSE","FALSE","America/Los_Angeles"
-"91761","34.03458","-117.59211","Ontario","CA","California","TRUE","","61425","813.8","06071","San Bernardino","{""06071"": ""100""}","San Bernardino","06071","FALSE","FALSE","America/Los_Angeles"
-"91762","34.02905","-117.64478","Ontario","CA","California","TRUE","","61718","1745.8","06071","San Bernardino","{""06071"": ""100""}","San Bernardino","06071","FALSE","FALSE","America/Los_Angeles"
-"91763","34.07234","-117.6983","Montclair","CA","California","TRUE","","38863","2902.7","06071","San Bernardino","{""06071"": ""100""}","San Bernardino","06071","FALSE","FALSE","America/Los_Angeles"
-"91764","34.07525","-117.60224","Ontario","CA","California","TRUE","","56677","2725.3","06071","San Bernardino","{""06071"": ""100""}","San Bernardino","06071","FALSE","FALSE","America/Los_Angeles"
-"91765","33.98822","-117.81446","Diamond Bar","CA","California","TRUE","","46593","950.8","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"91766","34.04179","-117.75691","Pomona","CA","California","TRUE","","72348","2747.2","06037","Los Angeles","{""06037"": ""93.44"", ""06071"": ""6.56""}","Los Angeles|San Bernardino","06037|06071","FALSE","FALSE","America/Los_Angeles"
-"91767","34.08145","-117.73845","Pomona","CA","California","TRUE","","50606","3475.4","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"91768","34.06389","-117.79064","Pomona","CA","California","TRUE","","35191","1570.1","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"91770","34.06441","-118.08364","Rosemead","CA","California","TRUE","","62703","3769.3","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"91773","34.11004","-117.80981","San Dimas","CA","California","TRUE","","34007","918.0","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"91775","34.1143","-118.08958","San Gabriel","CA","California","TRUE","","25004","3146.8","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"91776","34.08988","-118.09492","San Gabriel","CA","California","TRUE","","38664","4384.3","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"91780","34.10146","-118.05547","Temple City","CA","California","TRUE","","35133","3545.0","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"91784","34.141","-117.65814","Upland","CA","California","TRUE","","26090","1105.6","06071","San Bernardino","{""06071"": ""100""}","San Bernardino","06071","FALSE","FALSE","America/Los_Angeles"
-"91786","34.1053","-117.66204","Upland","CA","California","TRUE","","53697","2316.1","06071","San Bernardino","{""06071"": ""100""}","San Bernardino","06071","FALSE","FALSE","America/Los_Angeles"
-"91789","34.01831","-117.85463","Walnut","CA","California","TRUE","","44440","1097.6","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"91790","34.06735","-117.93771","West Covina","CA","California","TRUE","","45444","3039.6","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"91791","34.06107","-117.89403","West Covina","CA","California","TRUE","","33397","1943.5","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"91792","34.02584","-117.89993","West Covina","CA","California","TRUE","","29619","2976.5","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"91801","34.09073","-118.12757","Alhambra","CA","California","TRUE","","54768","4852.4","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"91803","34.07494","-118.14621","Alhambra","CA","California","TRUE","","29567","3495.2","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"91901","32.80639","-116.7123","Alpine","CA","California","TRUE","","18162","78.5","06073","San Diego","{""06073"": ""100""}","San Diego","06073","FALSE","FALSE","America/Los_Angeles"
-"91902","32.66704","-117.01825","Bonita","CA","California","TRUE","","18896","836.2","06073","San Diego","{""06073"": ""100""}","San Diego","06073","FALSE","FALSE","America/Los_Angeles"
-"91905","32.67995","-116.31605","Boulevard","CA","California","TRUE","","1472","8.6","06073","San Diego","{""06073"": ""100""}","San Diego","06073","FALSE","FALSE","America/Los_Angeles"
-"91906","32.65946","-116.46057","Campo","CA","California","TRUE","","4428","16.2","06073","San Diego","{""06073"": ""100""}","San Diego","06073","FALSE","FALSE","America/Los_Angeles"
-"91910","32.63826","-117.05706","Chula Vista","CA","California","TRUE","","74855","2362.3","06073","San Diego","{""06073"": ""100""}","San Diego","06073","FALSE","FALSE","America/Los_Angeles"
-"91911","32.60736","-117.05404","Chula Vista","CA","California","TRUE","","84026","2757.3","06073","San Diego","{""06073"": ""100""}","San Diego","06073","FALSE","FALSE","America/Los_Angeles"
-"91913","32.62005","-116.98705","Chula Vista","CA","California","TRUE","","54114","2048.3","06073","San Diego","{""06073"": ""100""}","San Diego","06073","FALSE","FALSE","America/Los_Angeles"
-"91914","32.66544","-116.9524","Chula Vista","CA","California","TRUE","","17379","1066.2","06073","San Diego","{""06073"": ""100""}","San Diego","06073","FALSE","FALSE","America/Los_Angeles"
-"91915","32.62231","-116.94953","Chula Vista","CA","California","TRUE","","33485","1698.9","06073","San Diego","{""06073"": ""100""}","San Diego","06073","FALSE","FALSE","America/Los_Angeles"
-"91916","32.88799","-116.62135","Descanso","CA","California","TRUE","","1939","18.8","06073","San Diego","{""06073"": ""100""}","San Diego","06073","FALSE","FALSE","America/Los_Angeles"
-"91917","32.60876","-116.71979","Dulzura","CA","California","TRUE","","986","10.5","06073","San Diego","{""06073"": ""100""}","San Diego","06073","FALSE","FALSE","America/Los_Angeles"
-"91931","32.84637","-116.55771","Guatay","CA","California","TRUE","","613","16.4","06073","San Diego","{""06073"": ""100""}","San Diego","06073","FALSE","FALSE","America/Los_Angeles"
-"91932","32.57609","-117.1194","Imperial Beach","CA","California","TRUE","","26492","3866.6","06073","San Diego","{""06073"": ""100""}","San Diego","06073","FALSE","FALSE","America/Los_Angeles"
-"91934","32.65855","-116.17246","Jacumba","CA","California","TRUE","","323","2.7","06073","San Diego","{""06073"": ""100""}","San Diego","06073","FALSE","FALSE","America/Los_Angeles"
-"91935","32.70882","-116.79053","Jamul","CA","California","TRUE","","8550","34.2","06073","San Diego","{""06073"": ""100""}","San Diego","06073","FALSE","FALSE","America/Los_Angeles"
-"91941","32.75989","-116.99341","La Mesa","CA","California","TRUE","","31918","1527.5","06073","San Diego","{""06073"": ""100""}","San Diego","06073","FALSE","FALSE","America/Los_Angeles"
-"91942","32.77747","-117.0217","La Mesa","CA","California","TRUE","","40151","2645.8","06073","San Diego","{""06073"": ""100""}","San Diego","06073","FALSE","FALSE","America/Los_Angeles"
-"91945","32.73317","-117.03416","Lemon Grove","CA","California","TRUE","","27236","2680.0","06073","San Diego","{""06073"": ""100""}","San Diego","06073","FALSE","FALSE","America/Los_Angeles"
-"91948","32.86941","-116.45317","Mount Laguna","CA","California","TRUE","","130","2.5","06073","San Diego","{""06073"": ""100""}","San Diego","06073","FALSE","FALSE","America/Los_Angeles"
-"91950","32.67002","-117.09419","National City","CA","California","TRUE","","62859","3188.1","06073","San Diego","{""06073"": ""100""}","San Diego","06073","FALSE","FALSE","America/Los_Angeles"
-"91962","32.7776","-116.47423","Pine Valley","CA","California","TRUE","","2106","15.8","06073","San Diego","{""06073"": ""100""}","San Diego","06073","FALSE","FALSE","America/Los_Angeles"
-"91963","32.62627","-116.61007","Potrero","CA","California","TRUE","","1182","13.6","06073","San Diego","{""06073"": ""100""}","San Diego","06073","FALSE","FALSE","America/Los_Angeles"
-"91977","32.72593","-116.99655","Spring Valley","CA","California","TRUE","","64750","2586.3","06073","San Diego","{""06073"": ""100""}","San Diego","06073","FALSE","FALSE","America/Los_Angeles"
-"91978","32.72416","-116.9424","Spring Valley","CA","California","TRUE","","10506","602.2","06073","San Diego","{""06073"": ""100""}","San Diego","06073","FALSE","FALSE","America/Los_Angeles"
-"91980","32.58882","-116.61917","Tecate","CA","California","TRUE","","0","0.0","06073","San Diego","{""06073"": ""100""}","San Diego","06073","FALSE","FALSE","America/Los_Angeles"
-"92003","33.28568","-117.19872","Bonsall","CA","California","TRUE","","5160","114.8","06073","San Diego","{""06073"": ""100""}","San Diego","06073","FALSE","FALSE","America/Los_Angeles"
-"92004","33.13941","-116.10357","Borrego Springs","CA","California","TRUE","","2299","1.3","06073","San Diego","{""06073"": ""99.87"", ""06025"": ""0.13""}","San Diego|Imperial","06073|06025","FALSE","FALSE","America/Los_Angeles"
-"92007","33.0219","-117.2735","Cardiff By The Sea","CA","California","TRUE","","11417","1797.5","06073","San Diego","{""06073"": ""100""}","San Diego","06073","FALSE","FALSE","America/Los_Angeles"
-"92008","33.14594","-117.31785","Carlsbad","CA","California","TRUE","","27151","1017.2","06073","San Diego","{""06073"": ""100""}","San Diego","06073","FALSE","FALSE","America/Los_Angeles"
-"92009","33.0943","-117.24577","Carlsbad","CA","California","TRUE","","46612","1414.1","06073","San Diego","{""06073"": ""100""}","San Diego","06073","FALSE","FALSE","America/Los_Angeles"
-"92010","33.15687","-117.28474","Carlsbad","CA","California","TRUE","","16346","775.7","06073","San Diego","{""06073"": ""100""}","San Diego","06073","FALSE","FALSE","America/Los_Angeles"
-"92011","33.10721","-117.29429","Carlsbad","CA","California","TRUE","","24144","1370.9","06073","San Diego","{""06073"": ""100""}","San Diego","06073","FALSE","FALSE","America/Los_Angeles"
-"92014","32.96686","-117.24799","Del Mar","CA","California","TRUE","","13568","866.7","06073","San Diego","{""06073"": ""100""}","San Diego","06073","FALSE","FALSE","America/Los_Angeles"
-"92019","32.77909","-116.87892","El Cajon","CA","California","TRUE","","43272","602.5","06073","San Diego","{""06073"": ""100""}","San Diego","06073","FALSE","FALSE","America/Los_Angeles"
-"92020","32.79555","-116.96978","El Cajon","CA","California","TRUE","","59743","2069.9","06073","San Diego","{""06073"": ""100""}","San Diego","06073","FALSE","FALSE","America/Los_Angeles"
-"92021","32.83548","-116.8708","El Cajon","CA","California","TRUE","","70148","911.0","06073","San Diego","{""06073"": ""100""}","San Diego","06073","FALSE","FALSE","America/Los_Angeles"
-"92024","33.05615","-117.25735","Encinitas","CA","California","TRUE","","51381","1171.2","06073","San Diego","{""06073"": ""100""}","San Diego","06073","FALSE","FALSE","America/Los_Angeles"
-"92025","33.0853","-117.0294","Escondido","CA","California","TRUE","","52985","925.2","06073","San Diego","{""06073"": ""100""}","San Diego","06073","FALSE","FALSE","America/Los_Angeles"
-"92026","33.21246","-117.11609","Escondido","CA","California","TRUE","","50321","522.0","06073","San Diego","{""06073"": ""100""}","San Diego","06073","FALSE","FALSE","America/Los_Angeles"
-"92027","33.13446","-116.98428","Escondido","CA","California","TRUE","","56788","347.6","06073","San Diego","{""06073"": ""100""}","San Diego","06073","FALSE","FALSE","America/Los_Angeles"
-"92028","33.38809","-117.21247","Fallbrook","CA","California","TRUE","","48173","197.1","06073","San Diego","{""06073"": ""99.89"", ""06065"": ""0.11""}","San Diego|Riverside","06073|06065","FALSE","FALSE","America/Los_Angeles"
-"92029","33.08511","-117.12994","Escondido","CA","California","TRUE","","19382","316.6","06073","San Diego","{""06073"": ""100""}","San Diego","06073","FALSE","FALSE","America/Los_Angeles"
-"92036","33.02136","-116.49121","Julian","CA","California","TRUE","","2593","5.6","06073","San Diego","{""06073"": ""100""}","San Diego","06073","FALSE","FALSE","America/Los_Angeles"
-"92037","32.85505","-117.25012","La Jolla","CA","California","TRUE","","38168","1127.8","06073","San Diego","{""06073"": ""100""}","San Diego","06073","FALSE","FALSE","America/Los_Angeles"
-"92040","32.90753","-116.88472","Lakeside","CA","California","TRUE","","46306","278.1","06073","San Diego","{""06073"": ""100""}","San Diego","06073","FALSE","FALSE","America/Los_Angeles"
-"92054","33.2738","-117.431","Oceanside","CA","California","TRUE","","41807","1349.5","06073","San Diego","{""06073"": ""100""}","San Diego","06073","FALSE","FALSE","America/Los_Angeles"
-"92055","33.38774","-117.44483","Camp Pendleton","CA","California","TRUE","","11765","46.2","06073","San Diego","{""06073"": ""100""}","San Diego","06073","FALSE","FALSE","America/Los_Angeles"
-"92056","33.20149","-117.28908","Oceanside","CA","California","TRUE","","52337","1623.3","06073","San Diego","{""06073"": ""100""}","San Diego","06073","FALSE","FALSE","America/Los_Angeles"
-"92057","33.25403","-117.28732","Oceanside","CA","California","TRUE","","60414","1546.3","06073","San Diego","{""06073"": ""100""}","San Diego","06073","FALSE","FALSE","America/Los_Angeles"
-"92058","33.27081","-117.33968","Oceanside","CA","California","TRUE","","46029","632.6","06073","San Diego","{""06073"": ""100""}","San Diego","06073","FALSE","FALSE","America/Los_Angeles"
-"92059","33.37649","-117.06618","Pala","CA","California","TRUE","","1464","20.3","06073","San Diego","{""06073"": ""100""}","San Diego","06073","FALSE","FALSE","America/Los_Angeles"
-"92060","33.34078","-116.8486","Palomar Mountain","CA","California","TRUE","","166","0.9","06073","San Diego","{""06073"": ""100""}","San Diego","06073","FALSE","FALSE","America/Los_Angeles"
-"92061","33.29851","-116.92484","Pauma Valley","CA","California","TRUE","","2660","25.9","06073","San Diego","{""06073"": ""100""}","San Diego","06073","FALSE","FALSE","America/Los_Angeles"
-"92064","32.98408","-117.01932","Poway","CA","California","TRUE","","49805","469.7","06073","San Diego","{""06073"": ""100""}","San Diego","06073","FALSE","FALSE","America/Los_Angeles"
-"92065","33.05146","-116.84562","Ramona","CA","California","TRUE","","37505","87.7","06073","San Diego","{""06073"": ""100""}","San Diego","06073","FALSE","FALSE","America/Los_Angeles"
-"92066","33.21937","-116.53526","Ranchita","CA","California","TRUE","","693","13.5","06073","San Diego","{""06073"": ""100""}","San Diego","06073","FALSE","FALSE","America/Los_Angeles"
-"92067","33.02141","-117.19383","Rancho Santa Fe","CA","California","TRUE","","7724","132.4","06073","San Diego","{""06073"": ""100""}","San Diego","06073","FALSE","FALSE","America/Los_Angeles"
-"92069","33.17078","-117.15867","San Marcos","CA","California","TRUE","","50376","1182.2","06073","San Diego","{""06073"": ""100""}","San Diego","06073","FALSE","FALSE","America/Los_Angeles"
-"92070","33.1594","-116.72662","Santa Ysabel","CA","California","TRUE","","786","2.3","06073","San Diego","{""06073"": ""100""}","San Diego","06073","FALSE","FALSE","America/Los_Angeles"
-"92071","32.85129","-116.99146","Santee","CA","California","TRUE","","57710","1267.3","06073","San Diego","{""06073"": ""100""}","San Diego","06073","FALSE","FALSE","America/Los_Angeles"
-"92075","32.99738","-117.25844","Solana Beach","CA","California","TRUE","","12752","1390.2","06073","San Diego","{""06073"": ""100""}","San Diego","06073","FALSE","FALSE","America/Los_Angeles"
-"92078","33.11927","-117.18505","San Marcos","CA","California","TRUE","","50510","1169.3","06073","San Diego","{""06073"": ""100""}","San Diego","06073","FALSE","FALSE","America/Los_Angeles"
-"92081","33.16431","-117.24028","Vista","CA","California","TRUE","","29596","1287.3","06073","San Diego","{""06073"": ""100""}","San Diego","06073","FALSE","FALSE","America/Los_Angeles"
-"92082","33.25079","-117.00049","Valley Center","CA","California","TRUE","","18705","58.8","06073","San Diego","{""06073"": ""100""}","San Diego","06073","FALSE","FALSE","America/Los_Angeles"
-"92083","33.19787","-117.24825","Vista","CA","California","TRUE","","39509","2741.1","06073","San Diego","{""06073"": ""100""}","San Diego","06073","FALSE","FALSE","America/Los_Angeles"
-"92084","33.22218","-117.20537","Vista","CA","California","TRUE","","51619","761.7","06073","San Diego","{""06073"": ""100""}","San Diego","06073","FALSE","FALSE","America/Los_Angeles"
-"92086","33.30957","-116.65268","Warner Springs","CA","California","TRUE","","1543","2.7","06073","San Diego","{""06073"": ""100""}","San Diego","06073","FALSE","FALSE","America/Los_Angeles"
-"92091","33.01093","-117.21135","Rancho Santa Fe","CA","California","TRUE","","1313","776.9","06073","San Diego","{""06073"": ""100""}","San Diego","06073","FALSE","FALSE","America/Los_Angeles"
-"92101","32.72396","-117.17072","San Diego","CA","California","TRUE","","41159","3368.7","06073","San Diego","{""06073"": ""100""}","San Diego","06073","FALSE","FALSE","America/Los_Angeles"
-"92102","32.71621","-117.11704","San Diego","CA","California","TRUE","","44010","3664.9","06073","San Diego","{""06073"": ""100""}","San Diego","06073","FALSE","FALSE","America/Los_Angeles"
-"92103","32.74742","-117.16688","San Diego","CA","California","TRUE","","34700","3557.0","06073","San Diego","{""06073"": ""100""}","San Diego","06073","FALSE","FALSE","America/Los_Angeles"
-"92104","32.74158","-117.12814","San Diego","CA","California","TRUE","","45435","4632.3","06073","San Diego","{""06073"": ""100""}","San Diego","06073","FALSE","FALSE","America/Los_Angeles"
-"92105","32.73785","-117.09268","San Diego","CA","California","TRUE","","73623","5104.4","06073","San Diego","{""06073"": ""100""}","San Diego","06073","FALSE","FALSE","America/Los_Angeles"
-"92106","32.71272","-117.23605","San Diego","CA","California","TRUE","","20155","1376.2","06073","San Diego","{""06073"": ""100""}","San Diego","06073","FALSE","FALSE","America/Los_Angeles"
-"92107","32.73981","-117.24372","San Diego","CA","California","TRUE","","31223","3843.3","06073","San Diego","{""06073"": ""100""}","San Diego","06073","FALSE","FALSE","America/Los_Angeles"
-"92108","32.77389","-117.14247","San Diego","CA","California","TRUE","","22280","1953.6","06073","San Diego","{""06073"": ""100""}","San Diego","06073","FALSE","FALSE","America/Los_Angeles"
-"92109","32.78699","-117.23324","San Diego","CA","California","TRUE","","47111","2394.1","06073","San Diego","{""06073"": ""100""}","San Diego","06073","FALSE","FALSE","America/Los_Angeles"
-"92110","32.76519","-117.1999","San Diego","CA","California","TRUE","","30108","2391.1","06073","San Diego","{""06073"": ""100""}","San Diego","06073","FALSE","FALSE","America/Los_Angeles"
-"92111","32.80648","-117.16887","San Diego","CA","California","TRUE","","50693","2313.3","06073","San Diego","{""06073"": ""100""}","San Diego","06073","FALSE","FALSE","America/Los_Angeles"
-"92113","32.69602","-117.11817","San Diego","CA","California","TRUE","","58408","4282.1","06073","San Diego","{""06073"": ""100""}","San Diego","06073","FALSE","FALSE","America/Los_Angeles"
-"92114","32.70776","-117.0551","San Diego","CA","California","TRUE","","68851","3226.9","06073","San Diego","{""06073"": ""100""}","San Diego","06073","FALSE","FALSE","America/Los_Angeles"
-"92115","32.76139","-117.07173","San Diego","CA","California","TRUE","","64343","3819.6","06073","San Diego","{""06073"": ""100""}","San Diego","06073","FALSE","FALSE","America/Los_Angeles"
-"92116","32.76496","-117.12281","San Diego","CA","California","TRUE","","33408","3755.8","06073","San Diego","{""06073"": ""100""}","San Diego","06073","FALSE","FALSE","America/Los_Angeles"
-"92117","32.82461","-117.19954","San Diego","CA","California","TRUE","","56983","2504.0","06073","San Diego","{""06073"": ""100""}","San Diego","06073","FALSE","FALSE","America/Los_Angeles"
-"92118","32.67487","-117.17866","Coronado","CA","California","TRUE","","22548","1116.5","06073","San Diego","{""06073"": ""100""}","San Diego","06073","FALSE","FALSE","America/Los_Angeles"
-"92119","32.8101","-117.03279","San Diego","CA","California","TRUE","","24831","1400.9","06073","San Diego","{""06073"": ""100""}","San Diego","06073","FALSE","FALSE","America/Los_Angeles"
-"92120","32.79468","-117.07114","San Diego","CA","California","TRUE","","30550","1743.3","06073","San Diego","{""06073"": ""100""}","San Diego","06073","FALSE","FALSE","America/Los_Angeles"
-"92121","32.89918","-117.20233","San Diego","CA","California","TRUE","","4729","149.0","06073","San Diego","{""06073"": ""100""}","San Diego","06073","FALSE","FALSE","America/Los_Angeles"
-"92122","32.85926","-117.17007","San Diego","CA","California","TRUE","","48071","1164.0","06073","San Diego","{""06073"": ""100""}","San Diego","06073","FALSE","FALSE","America/Los_Angeles"
-"92123","32.80675","-117.13495","San Diego","CA","California","TRUE","","32473","1531.8","06073","San Diego","{""06073"": ""100""}","San Diego","06073","FALSE","FALSE","America/Los_Angeles"
-"92124","32.82654","-117.08602","San Diego","CA","California","TRUE","","32600","1188.9","06073","San Diego","{""06073"": ""100""}","San Diego","06073","FALSE","FALSE","America/Los_Angeles"
-"92126","32.90847","-117.1414","San Diego","CA","California","TRUE","","82658","2529.1","06073","San Diego","{""06073"": ""100""}","San Diego","06073","FALSE","FALSE","America/Los_Angeles"
-"92127","33.0198","-117.12385","San Diego","CA","California","TRUE","","49935","873.8","06073","San Diego","{""06073"": ""100""}","San Diego","06073","FALSE","FALSE","America/Los_Angeles"
-"92128","32.99937","-117.07178","San Diego","CA","California","TRUE","","51357","1772.9","06073","San Diego","{""06073"": ""100""}","San Diego","06073","FALSE","FALSE","America/Los_Angeles"
-"92129","32.96486","-117.12604","San Diego","CA","California","TRUE","","54762","1504.2","06073","San Diego","{""06073"": ""100""}","San Diego","06073","FALSE","FALSE","America/Los_Angeles"
-"92130","32.94759","-117.20741","San Diego","CA","California","TRUE","","56134","1174.0","06073","San Diego","{""06073"": ""100""}","San Diego","06073","FALSE","FALSE","America/Los_Angeles"
-"92131","32.89435","-117.08011","San Diego","CA","California","TRUE","","34727","532.3","06073","San Diego","{""06073"": ""100""}","San Diego","06073","FALSE","FALSE","America/Los_Angeles"
-"92132","32.71368","-117.17201","San Diego","CA","California","TRUE","","0","0.0","06073","San Diego","{""06073"": ""0""}","San Diego","06073","FALSE","FALSE","America/Los_Angeles"
-"92134","32.72425","-117.14671","San Diego","CA","California","TRUE","","285","611.6","06073","San Diego","{""06073"": ""100""}","San Diego","06073","FALSE","FALSE","America/Los_Angeles"
-"92135","32.69673","-117.19328","San Diego","CA","California","TRUE","","635","518.3","06073","San Diego","{""06073"": ""100""}","San Diego","06073","FALSE","FALSE","America/Los_Angeles"
-"92139","32.67991","-117.04891","San Diego","CA","California","TRUE","","36105","3853.2","06073","San Diego","{""06073"": ""100""}","San Diego","06073","FALSE","FALSE","America/Los_Angeles"
-"92140","32.7401","-117.19796","San Diego","CA","California","TRUE","","3737","2222.4","06073","San Diego","{""06073"": ""100""}","San Diego","06073","FALSE","FALSE","America/Los_Angeles"
-"92145","32.9306","-117.00801","San Diego","CA","California","TRUE","","1883","217.1","06073","San Diego","{""06073"": ""100""}","San Diego","06073","FALSE","FALSE","America/Los_Angeles"
-"92147","32.72458","-117.2193","San Diego","CA","California","TRUE","","518","2112.6","06073","San Diego","{""06073"": ""100""}","San Diego","06073","FALSE","FALSE","America/Los_Angeles"
-"92154","32.56762","-117.00305","San Diego","CA","California","TRUE","","88979","924.3","06073","San Diego","{""06073"": ""100""}","San Diego","06073","FALSE","FALSE","America/Los_Angeles"
-"92155","32.67492","-117.16175","San Diego","CA","California","TRUE","","456","783.9","06073","San Diego","{""06073"": ""100""}","San Diego","06073","FALSE","FALSE","America/Los_Angeles"
-"92173","32.55403","-117.04239","San Ysidro","CA","California","TRUE","","31000","2372.0","06073","San Diego","{""06073"": ""100""}","San Diego","06073","FALSE","FALSE","America/Los_Angeles"
-"92201","33.69743","-116.10328","Indio","CA","California","TRUE","","65726","1120.3","06065","Riverside","{""06065"": ""100""}","Riverside","06065","FALSE","FALSE","America/Los_Angeles"
-"92203","33.75395","-116.24649","Indio","CA","California","TRUE","","31140","686.7","06065","Riverside","{""06065"": ""100""}","Riverside","06065","FALSE","FALSE","America/Los_Angeles"
-"92210","33.70043","-116.34019","Indian Wells","CA","California","TRUE","","5138","152.0","06065","Riverside","{""06065"": ""100""}","Riverside","06065","FALSE","FALSE","America/Los_Angeles"
-"92211","33.76218","-116.33102","Palm Desert","CA","California","TRUE","","25056","642.6","06065","Riverside","{""06065"": ""100""}","Riverside","06065","FALSE","FALSE","America/Los_Angeles"
-"92220","33.94892","-116.8324","Banning","CA","California","TRUE","","33525","104.2","06065","Riverside","{""06065"": ""100""}","Riverside","06065","FALSE","FALSE","America/Los_Angeles"
-"92222","32.78577","-114.54552","Bard","CA","California","TRUE","","0","0.0","06025","Imperial","{""06025"": ""100""}","Imperial","06025","FALSE","FALSE","America/Phoenix"
-"92223","33.94833","-116.98802","Beaumont","CA","California","TRUE","","55580","494.1","06065","Riverside","{""06065"": ""100""}","Riverside","06065","FALSE","FALSE","America/Los_Angeles"
-"92225","33.74646","-114.66793","Blythe","CA","California","TRUE","","22460","14.5","06065","Riverside","{""06065"": ""99.91"", ""06025"": ""0.09""}","Riverside|Imperial","06065|06025","FALSE","FALSE","America/Los_Angeles"
-"92227","32.99027","-115.34876","Brawley","CA","California","TRUE","","27189","19.4","06025","Imperial","{""06025"": ""100""}","Imperial","06025","FALSE","FALSE","America/Los_Angeles"
-"92230","33.91058","-116.76598","Cabazon","CA","California","TRUE","","2705","68.3","06065","Riverside","{""06065"": ""100""}","Riverside","06065","FALSE","FALSE","America/Los_Angeles"
-"92231","32.68754","-115.54115","Calexico","CA","California","TRUE","","40064","271.9","06025","Imperial","{""06025"": ""100""}","Imperial","06025","FALSE","FALSE","America/Los_Angeles"
-"92233","33.17378","-115.55954","Calipatria","CA","California","TRUE","","7509","19.2","06025","Imperial","{""06025"": ""100""}","Imperial","06025","FALSE","FALSE","America/Los_Angeles"
-"92234","33.81825","-116.46644","Cathedral City","CA","California","TRUE","","54357","1334.0","06065","Riverside","{""06065"": ""100""}","Riverside","06065","FALSE","FALSE","America/Los_Angeles"
-"92236","33.68615","-116.17291","Coachella","CA","California","TRUE","","45477","802.4","06065","Riverside","{""06065"": ""100""}","Riverside","06065","FALSE","FALSE","America/Los_Angeles"
-"92239","33.76482","-115.47023","Desert Center","CA","California","TRUE","","227","0.6","06065","Riverside","{""06065"": ""100""}","Riverside","06065","FALSE","FALSE","America/Los_Angeles"
-"92240","33.95314","-116.5219","Desert Hot Springs","CA","California","TRUE","","35278","372.3","06065","Riverside","{""06065"": ""100""}","Riverside","06065","FALSE","FALSE","America/Los_Angeles"
-"92241","33.85305","-116.30055","Desert Hot Springs","CA","California","TRUE","","7699","21.5","06065","Riverside","{""06065"": ""100""}","Riverside","06065","FALSE","FALSE","America/Los_Angeles"
-"92242","34.1652","-114.31961","Earp","CA","California","TRUE","","1312","16.1","06071","San Bernardino","{""06071"": ""100""}","San Bernardino","06071","FALSE","FALSE","America/Los_Angeles"
-"92243","32.77255","-115.59931","El Centro","CA","California","TRUE","","50402","176.5","06025","Imperial","{""06025"": ""100""}","Imperial","06025","FALSE","FALSE","America/Los_Angeles"
-"92249","32.72559","-115.47265","Heber","CA","California","TRUE","","7861","141.6","06025","Imperial","{""06025"": ""100""}","Imperial","06025","FALSE","FALSE","America/Los_Angeles"
-"92250","32.82385","-115.23944","Holtville","CA","California","TRUE","","8655","8.1","06025","Imperial","{""06025"": ""100""}","Imperial","06025","FALSE","FALSE","America/Los_Angeles"
-"92251","32.87227","-115.69","Imperial","CA","California","TRUE","","23970","46.4","06025","Imperial","{""06025"": ""100""}","Imperial","06025","FALSE","FALSE","America/Los_Angeles"
-"92252","34.16837","-116.2884","Joshua Tree","CA","California","TRUE","","9351","40.2","06071","San Bernardino","{""06071"": ""100""}","San Bernardino","06071","FALSE","FALSE","America/Los_Angeles"
-"92253","33.65396","-116.27871","La Quinta","CA","California","TRUE","","40929","451.7","06065","Riverside","{""06065"": ""100""}","Riverside","06065","FALSE","FALSE","America/Los_Angeles"
-"92254","33.54474","-115.99414","Mecca","CA","California","TRUE","","9779","80.9","06065","Riverside","{""06065"": ""100""}","Riverside","06065","FALSE","FALSE","America/Los_Angeles"
-"92256","34.07707","-116.6064","Morongo Valley","CA","California","TRUE","","3100","15.3","06071","San Bernardino","{""06071"": ""100""}","San Bernardino","06071","FALSE","FALSE","America/Los_Angeles"
-"92257","33.26444","-115.32343","Niland","CA","California","TRUE","","1281","0.7","06025","Imperial","{""06025"": ""100""}","Imperial","06025","FALSE","FALSE","America/Los_Angeles"
-"92258","33.91584","-116.55986","North Palm Springs","CA","California","TRUE","","559","20.4","06065","Riverside","{""06065"": ""100""}","Riverside","06065","FALSE","FALSE","America/Los_Angeles"
-"92259","32.7377","-115.93223","Ocotillo","CA","California","TRUE","","121","0.1","06025","Imperial","{""06025"": ""100""}","Imperial","06025","FALSE","FALSE","America/Los_Angeles"
-"92260","33.70701","-116.40478","Palm Desert","CA","California","TRUE","","34660","471.3","06065","Riverside","{""06065"": ""100""}","Riverside","06065","FALSE","FALSE","America/Los_Angeles"
-"92262","33.86055","-116.56152","Palm Springs","CA","California","TRUE","","28618","301.2","06065","Riverside","{""06065"": ""100""}","Riverside","06065","FALSE","FALSE","America/Los_Angeles"
-"92264","33.73214","-116.50424","Palm Springs","CA","California","TRUE","","20072","148.7","06065","Riverside","{""06065"": ""100""}","Riverside","06065","FALSE","FALSE","America/Los_Angeles"
-"92266","33.34535","-114.92183","Palo Verde","CA","California","TRUE","","112","0.1","06025","Imperial","{""06025"": ""100""}","Imperial","06025","FALSE","FALSE","America/Los_Angeles"
-"92267","34.27582","-114.19065","Parker Dam","CA","California","TRUE","","6","0.1","06071","San Bernardino","{""06071"": ""100""}","San Bernardino","06071","FALSE","FALSE","America/Los_Angeles"
-"92268","34.2221","-116.56421","Pioneertown","CA","California","TRUE","","455","2.2","06071","San Bernardino","{""06071"": ""100""}","San Bernardino","06071","FALSE","FALSE","America/Los_Angeles"
-"92270","33.76591","-116.42728","Rancho Mirage","CA","California","TRUE","","18193","263.3","06065","Riverside","{""06065"": ""100""}","Riverside","06065","FALSE","FALSE","America/Los_Angeles"
-"92273","32.81777","-115.69995","Seeley","CA","California","TRUE","","2010","111.3","06025","Imperial","{""06025"": ""100""}","Imperial","06025","FALSE","FALSE","America/Los_Angeles"
-"92274","33.46162","-116.08565","Thermal","CA","California","TRUE","","15317","33.1","06065","Riverside","{""06065"": ""80.05"", ""06025"": ""19.95""}","Riverside|Imperial","06065|06025","FALSE","FALSE","America/Los_Angeles"
-"92275","33.25184","-115.85659","Salton City","CA","California","TRUE","","2632","16.3","06025","Imperial","{""06025"": ""100""}","Imperial","06025","FALSE","FALSE","America/Los_Angeles"
-"92276","33.82232","-116.36424","Thousand Palms","CA","California","TRUE","","6748","88.9","06065","Riverside","{""06065"": ""100""}","Riverside","06065","FALSE","FALSE","America/Los_Angeles"
-"92277","34.21531","-115.6222","Twentynine Palms","CA","California","TRUE","","23172","6.4","06071","San Bernardino","{""06071"": ""99.97"", ""06065"": ""0.03""}","San Bernardino|Riverside","06071|06065","FALSE","FALSE","America/Los_Angeles"
-"92278","34.22989","-116.05507","Twentynine Palms","CA","California","TRUE","","4890","2362.8","06071","San Bernardino","{""06071"": ""100""}","San Bernardino","06071","FALSE","FALSE","America/Los_Angeles"
-"92280","34.12557","-114.77794","Vidal","CA","California","TRUE","","0","0.0","06071","San Bernardino","{""06071"": ""100""}","San Bernardino","06071","FALSE","FALSE","America/Los_Angeles"
-"92281","33.05175","-115.60873","Westmorland","CA","California","TRUE","","2591","70.1","06025","Imperial","{""06025"": ""100""}","Imperial","06025","FALSE","FALSE","America/Los_Angeles"
-"92282","33.9655","-116.65872","Whitewater","CA","California","TRUE","","1372","7.2","06065","Riverside","{""06065"": ""100""}","Riverside","06065","FALSE","FALSE","America/Los_Angeles"
-"92283","32.93769","-114.7472","Winterhaven","CA","California","TRUE","","1684","0.9","06025","Imperial","{""06025"": ""100""}","Imperial","06025","FALSE","FALSE","America/Los_Angeles"
-"92284","34.18604","-116.43234","Yucca Valley","CA","California","TRUE","","26182","91.8","06071","San Bernardino","{""06071"": ""100""}","San Bernardino","06071","FALSE","FALSE","America/Los_Angeles"
-"92285","34.34017","-116.54047","Landers","CA","California","TRUE","","2430","5.5","06071","San Bernardino","{""06071"": ""100""}","San Bernardino","06071","FALSE","FALSE","America/Los_Angeles"
-"92301","34.64464","-117.54086","Adelanto","CA","California","TRUE","","34250","77.5","06071","San Bernardino","{""06071"": ""100""}","San Bernardino","06071","FALSE","FALSE","America/Los_Angeles"
-"92304","34.54146","-115.64452","Amboy","CA","California","TRUE","","23","0.2","06071","San Bernardino","{""06071"": ""100""}","San Bernardino","06071","FALSE","FALSE","America/Los_Angeles"
-"92305","34.16326","-116.82868","Angelus Oaks","CA","California","TRUE","","657","2.5","06071","San Bernardino","{""06071"": ""100""}","San Bernardino","06071","FALSE","FALSE","America/Los_Angeles"
-"92307","34.58832","-117.13875","Apple Valley","CA","California","TRUE","","39149","88.9","06071","San Bernardino","{""06071"": ""100""}","San Bernardino","06071","FALSE","FALSE","America/Los_Angeles"
-"92308","34.425","-117.15998","Apple Valley","CA","California","TRUE","","42207","174.7","06071","San Bernardino","{""06071"": ""100""}","San Bernardino","06071","FALSE","FALSE","America/Los_Angeles"
-"92309","35.21647","-116.13003","Baker","CA","California","TRUE","","572","1.4","06071","San Bernardino","{""06071"": ""100""}","San Bernardino","06071","FALSE","FALSE","America/Los_Angeles"
-"92310","35.26144","-116.69033","Fort Irwin","CA","California","TRUE","","9872","1273.5","06071","San Bernardino","{""06071"": ""100""}","San Bernardino","06071","FALSE","FALSE","America/Los_Angeles"
-"92311","34.97828","-116.98115","Barstow","CA","California","TRUE","","33454","52.0","06071","San Bernardino","{""06071"": ""100""}","San Bernardino","06071","FALSE","FALSE","America/Los_Angeles"
-"92313","34.031","-117.31288","Grand Terrace","CA","California","TRUE","","12547","1390.0","06071","San Bernardino","{""06071"": ""100""}","San Bernardino","06071","FALSE","FALSE","America/Los_Angeles"
-"92314","34.26095","-116.81304","Big Bear City","CA","California","TRUE","","11385","142.6","06071","San Bernardino","{""06071"": ""100""}","San Bernardino","06071","FALSE","FALSE","America/Los_Angeles"
-"92315","34.23501","-116.90509","Big Bear Lake","CA","California","TRUE","","5247","159.8","06071","San Bernardino","{""06071"": ""100""}","San Bernardino","06071","FALSE","FALSE","America/Los_Angeles"
-"92316","34.05911","-117.39065","Bloomington","CA","California","TRUE","","28704","1007.3","06071","San Bernardino","{""06071"": ""100""}","San Bernardino","06071","FALSE","FALSE","America/Los_Angeles"
-"92320","33.99042","-117.05205","Calimesa","CA","California","TRUE","","8753","318.1","06065","Riverside","{""06065"": ""100""}","Riverside","06065","FALSE","FALSE","America/Los_Angeles"
-"92321","34.25446","-117.15332","Cedar Glen","CA","California","TRUE","","1042","61.8","06071","San Bernardino","{""06071"": ""100""}","San Bernardino","06071","FALSE","FALSE","America/Los_Angeles"
-"92322","34.25437","-117.32647","Cedarpines Park","CA","California","TRUE","","672","86.7","06071","San Bernardino","{""06071"": ""100""}","San Bernardino","06071","FALSE","FALSE","America/Los_Angeles"
-"92324","34.03144","-117.28736","Colton","CA","California","TRUE","","59972","778.9","06071","San Bernardino","{""06071"": ""98.43"", ""06065"": ""1.57""}","San Bernardino|Riverside","06071|06065","FALSE","FALSE","America/Los_Angeles"
-"92325","34.24332","-117.2811","Crestline","CA","California","TRUE","","7948","303.6","06071","San Bernardino","{""06071"": ""100""}","San Bernardino","06071","FALSE","FALSE","America/Los_Angeles"
-"92327","34.86284","-116.86134","Daggett","CA","California","TRUE","","737","10.1","06071","San Bernardino","{""06071"": ""100""}","San Bernardino","06071","FALSE","FALSE","America/Los_Angeles"
-"92328","36.529","-116.87036","Death Valley","CA","California","TRUE","","438","0.2","06027","Inyo","{""06027"": ""100""}","Inyo","06027","FALSE","FALSE","America/Los_Angeles"
-"92332","34.91269","-115.34169","Essex","CA","California","TRUE","","97","0.0","06071","San Bernardino","{""06071"": ""100""}","San Bernardino","06071","FALSE","FALSE","America/Los_Angeles"
-"92333","34.27062","-116.94926","Fawnskin","CA","California","TRUE","","392","36.3","06071","San Bernardino","{""06071"": ""100""}","San Bernardino","06071","FALSE","FALSE","America/Los_Angeles"
-"92335","34.08717","-117.46549","Fontana","CA","California","TRUE","","99306","2209.6","06071","San Bernardino","{""06071"": ""100""}","San Bernardino","06071","FALSE","FALSE","America/Los_Angeles"
-"92336","34.14648","-117.46394","Fontana","CA","California","TRUE","","98346","1525.5","06071","San Bernardino","{""06071"": ""100""}","San Bernardino","06071","FALSE","FALSE","America/Los_Angeles"
-"92337","34.04981","-117.4706","Fontana","CA","California","TRUE","","39240","1087.7","06071","San Bernardino","{""06071"": ""100""}","San Bernardino","06071","FALSE","FALSE","America/Los_Angeles"
-"92338","34.78262","-116.19042","Ludlow","CA","California","TRUE","","0","0.0","06071","San Bernardino","{""06071"": ""100""}","San Bernardino","06071","FALSE","FALSE","America/Los_Angeles"
-"92339","34.09364","-116.93627","Forest Falls","CA","California","TRUE","","1077","39.3","06071","San Bernardino","{""06071"": ""100""}","San Bernardino","06071","FALSE","FALSE","America/Los_Angeles"
-"92341","34.23479","-117.06587","Green Valley Lake","CA","California","TRUE","","222","12.1","06071","San Bernardino","{""06071"": ""100""}","San Bernardino","06071","FALSE","FALSE","America/Los_Angeles"
-"92342","34.7584","-117.34944","Helendale","CA","California","TRUE","","6737","24.7","06071","San Bernardino","{""06071"": ""100""}","San Bernardino","06071","FALSE","FALSE","America/Los_Angeles"
-"92344","34.39117","-117.40567","Hesperia","CA","California","TRUE","","23349","234.1","06071","San Bernardino","{""06071"": ""100""}","San Bernardino","06071","FALSE","FALSE","America/Los_Angeles"
-"92345","34.38212","-117.30939","Hesperia","CA","California","TRUE","","82110","386.5","06071","San Bernardino","{""06071"": ""100""}","San Bernardino","06071","FALSE","FALSE","America/Los_Angeles"
-"92346","34.12429","-117.18004","Highland","CA","California","TRUE","","63857","968.1","06071","San Bernardino","{""06071"": ""100""}","San Bernardino","06071","FALSE","FALSE","America/Los_Angeles"
-"92347","34.95443","-117.22236","Hinkley","CA","California","TRUE","","702","1.8","06071","San Bernardino","{""06071"": ""100""}","San Bernardino","06071","FALSE","FALSE","America/Los_Angeles"
-"92352","34.26065","-117.20154","Lake Arrowhead","CA","California","TRUE","","5578","223.2","06071","San Bernardino","{""06071"": ""100""}","San Bernardino","06071","FALSE","FALSE","America/Los_Angeles"
-"92354","34.04977","-117.25154","Loma Linda","CA","California","TRUE","","22050","1743.1","06071","San Bernardino","{""06071"": ""100""}","San Bernardino","06071","FALSE","FALSE","America/Los_Angeles"
-"92356","34.5107","-116.89677","Lucerne Valley","CA","California","TRUE","","6573","6.4","06071","San Bernardino","{""06071"": ""100""}","San Bernardino","06071","FALSE","FALSE","America/Los_Angeles"
-"92358","34.25923","-117.52095","Lytle Creek","CA","California","TRUE","","722","14.1","06071","San Bernardino","{""06071"": ""100""}","San Bernardino","06071","FALSE","FALSE","America/Los_Angeles"
-"92359","34.08318","-117.06638","Mentone","CA","California","TRUE","","9170","211.4","06071","San Bernardino","{""06071"": ""100""}","San Bernardino","06071","FALSE","FALSE","America/Los_Angeles"
-"92363","34.68325","-114.55044","Needles","CA","California","TRUE","","5348","10.4","06071","San Bernardino","{""06071"": ""100""}","San Bernardino","06071","FALSE","FALSE","America/Los_Angeles"
-"92364","35.34055","-115.42615","Nipton","CA","California","TRUE","","6","0.0","06071","San Bernardino","{""06071"": ""100""}","San Bernardino","06071","FALSE","FALSE","America/Los_Angeles"
-"92365","34.89977","-116.6491","Newberry Springs","CA","California","TRUE","","2733","6.1","06071","San Bernardino","{""06071"": ""100""}","San Bernardino","06071","FALSE","FALSE","America/Los_Angeles"
-"92368","34.65227","-117.33282","Oro Grande","CA","California","TRUE","","1019","14.1","06071","San Bernardino","{""06071"": ""100""}","San Bernardino","06071","FALSE","FALSE","America/Los_Angeles"
-"92371","34.44269","-117.54186","Phelan","CA","California","TRUE","","18269","50.5","06071","San Bernardino","{""06071"": ""100""}","San Bernardino","06071","FALSE","FALSE","America/Los_Angeles"
-"92372","34.44481","-117.62514","Pinon Hills","CA","California","TRUE","","6071","84.1","06071","San Bernardino","{""06071"": ""100""}","San Bernardino","06071","FALSE","FALSE","America/Los_Angeles"
-"92373","34.00495","-117.15067","Redlands","CA","California","TRUE","","33353","316.1","06071","San Bernardino","{""06071"": ""98.63"", ""06065"": ""1.37""}","San Bernardino|Riverside","06071|06065","FALSE","FALSE","America/Los_Angeles"
-"92374","34.06654","-117.17201","Redlands","CA","California","TRUE","","43391","896.1","06071","San Bernardino","{""06071"": ""100""}","San Bernardino","06071","FALSE","FALSE","America/Los_Angeles"
-"92376","34.1112","-117.37884","Rialto","CA","California","TRUE","","86085","2453.0","06071","San Bernardino","{""06071"": ""100""}","San Bernardino","06071","FALSE","FALSE","America/Los_Angeles"
-"92377","34.15602","-117.40413","Rialto","CA","California","TRUE","","20476","757.7","06071","San Bernardino","{""06071"": ""100""}","San Bernardino","06071","FALSE","FALSE","America/Los_Angeles"
-"92378","34.2261","-117.22605","Rimforest","CA","California","TRUE","","234","109.0","06071","San Bernardino","{""06071"": ""100""}","San Bernardino","06071","FALSE","FALSE","America/Los_Angeles"
-"92382","34.20542","-117.11801","Running Springs","CA","California","TRUE","","4462","114.3","06071","San Bernardino","{""06071"": ""100""}","San Bernardino","06071","FALSE","FALSE","America/Los_Angeles"
-"92384","36.0125","-116.17791","Shoshone","CA","California","TRUE","","17","0.0","06027","Inyo","{""06027"": ""100""}","Inyo","06027","FALSE","FALSE","America/Los_Angeles"
-"92385","34.21473","-117.19233","Skyforest","CA","California","TRUE","","216","9.9","06071","San Bernardino","{""06071"": ""100""}","San Bernardino","06071","FALSE","FALSE","America/Los_Angeles"
-"92386","34.23721","-116.82765","Sugarloaf","CA","California","TRUE","","2248","452.7","06071","San Bernardino","{""06071"": ""100""}","San Bernardino","06071","FALSE","FALSE","America/Los_Angeles"
-"92389","35.90217","-116.15425","Tecopa","CA","California","TRUE","","168","0.5","06027","Inyo","{""06027"": ""100""}","Inyo","06027","FALSE","FALSE","America/Los_Angeles"
-"92391","34.23799","-117.23481","Twin Peaks","CA","California","TRUE","","1959","323.5","06071","San Bernardino","{""06071"": ""100""}","San Bernardino","06071","FALSE","FALSE","America/Los_Angeles"
-"92392","34.48024","-117.4082","Victorville","CA","California","TRUE","","58393","604.0","06071","San Bernardino","{""06071"": ""100""}","San Bernardino","06071","FALSE","FALSE","America/Los_Angeles"
-"92394","34.55629","-117.35281","Victorville","CA","California","TRUE","","34915","493.4","06071","San Bernardino","{""06071"": ""100""}","San Bernardino","06071","FALSE","FALSE","America/Los_Angeles"
-"92395","34.50159","-117.29441","Victorville","CA","California","TRUE","","43908","972.9","06071","San Bernardino","{""06071"": ""100""}","San Bernardino","06071","FALSE","FALSE","America/Los_Angeles"
-"92397","34.36701","-117.62729","Wrightwood","CA","California","TRUE","","4562","170.3","06071","San Bernardino","{""06071"": ""98.55"", ""06037"": ""1.45""}","San Bernardino|Los Angeles","06071|06037","FALSE","FALSE","America/Los_Angeles"
-"92398","34.91176","-116.8472","Yermo","CA","California","TRUE","","2195","30.2","06071","San Bernardino","{""06071"": ""100""}","San Bernardino","06071","FALSE","FALSE","America/Los_Angeles"
-"92399","34.04282","-117.00516","Yucaipa","CA","California","TRUE","","54268","395.1","06071","San Bernardino","{""06071"": ""98.76"", ""06065"": ""1.24""}","San Bernardino|Riverside","06071|06065","FALSE","FALSE","America/Los_Angeles"
-"92401","34.10478","-117.29216","San Bernardino","CA","California","TRUE","","2257","1007.6","06071","San Bernardino","{""06071"": ""100""}","San Bernardino","06071","FALSE","FALSE","America/Los_Angeles"
-"92404","34.17837","-117.25146","San Bernardino","CA","California","TRUE","","62915","849.9","06071","San Bernardino","{""06071"": ""100""}","San Bernardino","06071","FALSE","FALSE","America/Los_Angeles"
-"92405","34.1446","-117.30127","San Bernardino","CA","California","TRUE","","30112","2460.5","06071","San Bernardino","{""06071"": ""100""}","San Bernardino","06071","FALSE","FALSE","America/Los_Angeles"
-"92407","34.21658","-117.39082","San Bernardino","CA","California","TRUE","","68545","416.7","06071","San Bernardino","{""06071"": ""100""}","San Bernardino","06071","FALSE","FALSE","America/Los_Angeles"
-"92408","34.08448","-117.26588","San Bernardino","CA","California","TRUE","","13635","494.2","06071","San Bernardino","{""06071"": ""100""}","San Bernardino","06071","FALSE","FALSE","America/Los_Angeles"
-"92410","34.10688","-117.29742","San Bernardino","CA","California","TRUE","","45052","2120.0","06071","San Bernardino","{""06071"": ""100""}","San Bernardino","06071","FALSE","FALSE","America/Los_Angeles"
-"92411","34.12207","-117.32032","San Bernardino","CA","California","TRUE","","25650","2384.0","06071","San Bernardino","{""06071"": ""100""}","San Bernardino","06071","FALSE","FALSE","America/Los_Angeles"
-"92501","33.99542","-117.37361","Riverside","CA","California","TRUE","","21590","1463.6","06065","Riverside","{""06065"": ""100""}","Riverside","06065","FALSE","FALSE","America/Los_Angeles"
-"92503","33.88162","-117.44479","Riverside","CA","California","TRUE","","95551","1233.1","06065","Riverside","{""06065"": ""100""}","Riverside","06065","FALSE","FALSE","America/Los_Angeles"
-"92504","33.90247","-117.39662","Riverside","CA","California","TRUE","","59896","987.7","06065","Riverside","{""06065"": ""100""}","Riverside","06065","FALSE","FALSE","America/Los_Angeles"
-"92505","33.93325","-117.49435","Riverside","CA","California","TRUE","","53282","1683.2","06065","Riverside","{""06065"": ""100""}","Riverside","06065","FALSE","FALSE","America/Los_Angeles"
-"92506","33.93434","-117.36737","Riverside","CA","California","TRUE","","46241","1102.1","06065","Riverside","{""06065"": ""100""}","Riverside","06065","FALSE","FALSE","America/Los_Angeles"
-"92507","33.97099","-117.32489","Riverside","CA","California","TRUE","","59152","1129.9","06065","Riverside","{""06065"": ""100""}","Riverside","06065","FALSE","FALSE","America/Los_Angeles"
-"92508","33.89113","-117.32676","Riverside","CA","California","TRUE","","38428","1384.0","06065","Riverside","{""06065"": ""100""}","Riverside","06065","FALSE","FALSE","America/Los_Angeles"
-"92509","34.00326","-117.44494","Jurupa Valley","CA","California","TRUE","","81383","1010.1","06065","Riverside","{""06065"": ""99.98"", ""06071"": ""0.02""}","Riverside|San Bernardino","06065|06071","FALSE","FALSE","America/Los_Angeles"
-"92518","33.88869","-117.27768","March Air Reserve Base","CA","California","TRUE","","1021","33.2","06065","Riverside","{""06065"": ""100""}","Riverside","06065","FALSE","FALSE","America/Los_Angeles"
-"92530","33.65051","-117.3751","Lake Elsinore","CA","California","TRUE","","58184","416.9","06065","Riverside","{""06065"": ""99.97"", ""06059"": ""0.03""}","Riverside|Orange","06065|06059","FALSE","FALSE","America/Los_Angeles"
-"92532","33.69279","-117.30327","Lake Elsinore","CA","California","TRUE","","25923","554.5","06065","Riverside","{""06065"": ""100""}","Riverside","06065","FALSE","FALSE","America/Los_Angeles"
-"92536","33.49288","-116.83491","Aguanga","CA","California","TRUE","","3076","9.5","06065","Riverside","{""06065"": ""100""}","Riverside","06065","FALSE","FALSE","America/Los_Angeles"
-"92539","33.5135","-116.64385","Anza","CA","California","TRUE","","4557","13.4","06065","Riverside","{""06065"": ""100""}","Riverside","06065","FALSE","FALSE","America/Los_Angeles"
-"92543","33.69821","-116.97686","Hemet","CA","California","TRUE","","38314","839.4","06065","Riverside","{""06065"": ""100""}","Riverside","06065","FALSE","FALSE","America/Los_Angeles"
-"92544","33.64626","-116.88199","Hemet","CA","California","TRUE","","49923","142.0","06065","Riverside","{""06065"": ""100""}","Riverside","06065","FALSE","FALSE","America/Los_Angeles"
-"92545","33.72967","-117.03417","Hemet","CA","California","TRUE","","41879","501.2","06065","Riverside","{""06065"": ""100""}","Riverside","06065","FALSE","FALSE","America/Los_Angeles"
-"92548","33.75866","-117.10946","Homeland","CA","California","TRUE","","7859","308.7","06065","Riverside","{""06065"": ""100""}","Riverside","06065","FALSE","FALSE","America/Los_Angeles"
-"92549","33.77046","-116.7441","Idyllwild","CA","California","TRUE","","2517","35.4","06065","Riverside","{""06065"": ""100""}","Riverside","06065","FALSE","FALSE","America/Los_Angeles"
-"92551","33.88145","-117.22614","Moreno Valley","CA","California","TRUE","","34011","2242.8","06065","Riverside","{""06065"": ""100""}","Riverside","06065","FALSE","FALSE","America/Los_Angeles"
-"92553","33.92338","-117.24486","Moreno Valley","CA","California","TRUE","","76102","2899.5","06065","Riverside","{""06065"": ""100""}","Riverside","06065","FALSE","FALSE","America/Los_Angeles"
-"92555","33.90109","-117.1184","Moreno Valley","CA","California","TRUE","","44452","212.7","06065","Riverside","{""06065"": ""100""}","Riverside","06065","FALSE","FALSE","America/Los_Angeles"
-"92557","33.9703","-117.25966","Moreno Valley","CA","California","TRUE","","53406","1097.6","06065","Riverside","{""06065"": ""100""}","Riverside","06065","FALSE","FALSE","America/Los_Angeles"
-"92561","33.64095","-116.61995","Mountain Center","CA","California","TRUE","","1462","3.6","06065","Riverside","{""06065"": ""100""}","Riverside","06065","FALSE","FALSE","America/Los_Angeles"
-"92562","33.55113","-117.34387","Murrieta","CA","California","TRUE","","64286","226.9","06065","Riverside","{""06065"": ""100""}","Riverside","06065","FALSE","FALSE","America/Los_Angeles"
-"92563","33.57996","-117.14579","Murrieta","CA","California","TRUE","","69469","1326.6","06065","Riverside","{""06065"": ""100""}","Riverside","06065","FALSE","FALSE","America/Los_Angeles"
-"92567","33.81232","-117.1048","Nuevo","CA","California","TRUE","","10648","139.4","06065","Riverside","{""06065"": ""100""}","Riverside","06065","FALSE","FALSE","America/Los_Angeles"
-"92570","33.7852","-117.31662","Perris","CA","California","TRUE","","60686","240.8","06065","Riverside","{""06065"": ""100""}","Riverside","06065","FALSE","FALSE","America/Los_Angeles"
-"92571","33.82427","-117.20462","Perris","CA","California","TRUE","","57622","985.5","06065","Riverside","{""06065"": ""100""}","Riverside","06065","FALSE","FALSE","America/Los_Angeles"
-"92582","33.80584","-117.01947","San Jacinto","CA","California","TRUE","","17219","359.1","06065","Riverside","{""06065"": ""100""}","Riverside","06065","FALSE","FALSE","America/Los_Angeles"
-"92583","33.79684","-116.93249","San Jacinto","CA","California","TRUE","","32697","443.3","06065","Riverside","{""06065"": ""100""}","Riverside","06065","FALSE","FALSE","America/Los_Angeles"
-"92584","33.6616","-117.1755","Menifee","CA","California","TRUE","","54235","702.2","06065","Riverside","{""06065"": ""100""}","Riverside","06065","FALSE","FALSE","America/Los_Angeles"
-"92585","33.74669","-117.17214","Menifee","CA","California","TRUE","","21907","416.5","06065","Riverside","{""06065"": ""100""}","Riverside","06065","FALSE","FALSE","America/Los_Angeles"
-"92586","33.70901","-117.19889","Menifee","CA","California","TRUE","","19472","1064.9","06065","Riverside","{""06065"": ""100""}","Riverside","06065","FALSE","FALSE","America/Los_Angeles"
-"92587","33.69509","-117.25294","Menifee","CA","California","TRUE","","17237","842.2","06065","Riverside","{""06065"": ""100""}","Riverside","06065","FALSE","FALSE","America/Los_Angeles"
-"92590","33.48466","-117.22262","Temecula","CA","California","TRUE","","5154","37.2","06065","Riverside","{""06065"": ""100""}","Riverside","06065","FALSE","FALSE","America/Los_Angeles"
-"92591","33.53523","-117.10482","Temecula","CA","California","TRUE","","41609","975.6","06065","Riverside","{""06065"": ""100""}","Riverside","06065","FALSE","FALSE","America/Los_Angeles"
-"92592","33.5111","-117.03089","Temecula","CA","California","TRUE","","84930","337.3","06065","Riverside","{""06065"": ""100""}","Riverside","06065","FALSE","FALSE","America/Los_Angeles"
-"92595","33.61787","-117.2593","Wildomar","CA","California","TRUE","","33649","617.0","06065","Riverside","{""06065"": ""100""}","Riverside","06065","FALSE","FALSE","America/Los_Angeles"
-"92596","33.64367","-117.07644","Winchester","CA","California","TRUE","","32256","203.4","06065","Riverside","{""06065"": ""100""}","Riverside","06065","FALSE","FALSE","America/Los_Angeles"
-"92602","33.74582","-117.74867","Irvine","CA","California","TRUE","","23238","860.8","06059","Orange","{""06059"": ""100""}","Orange","06059","FALSE","FALSE","America/Los_Angeles"
-"92603","33.62447","-117.78875","Irvine","CA","California","TRUE","","19558","570.0","06059","Orange","{""06059"": ""100""}","Orange","06059","FALSE","FALSE","America/Los_Angeles"
-"92604","33.68814","-117.78888","Irvine","CA","California","TRUE","","28990","3322.4","06059","Orange","{""06059"": ""100""}","Orange","06059","FALSE","FALSE","America/Los_Angeles"
-"92606","33.70043","-117.81724","Irvine","CA","California","TRUE","","26171","2089.1","06059","Orange","{""06059"": ""100""}","Orange","06059","FALSE","FALSE","America/Los_Angeles"
-"92610","33.6961","-117.67606","Foothill Ranch","CA","California","TRUE","","16360","642.5","06059","Orange","{""06059"": ""100""}","Orange","06059","FALSE","FALSE","America/Los_Angeles"
-"92612","33.66077","-117.82642","Irvine","CA","California","TRUE","","33234","2113.9","06059","Orange","{""06059"": ""100""}","Orange","06059","FALSE","FALSE","America/Los_Angeles"
-"92614","33.68165","-117.83293","Irvine","CA","California","TRUE","","27187","2367.6","06059","Orange","{""06059"": ""100""}","Orange","06059","FALSE","FALSE","America/Los_Angeles"
-"92617","33.6425","-117.84169","Irvine","CA","California","TRUE","","17197","2762.7","06059","Orange","{""06059"": ""100""}","Orange","06059","FALSE","FALSE","America/Los_Angeles"
-"92618","33.66816","-117.73421","Irvine","CA","California","TRUE","","48997","893.8","06059","Orange","{""06059"": ""100""}","Orange","06059","FALSE","FALSE","America/Los_Angeles"
-"92620","33.7126","-117.75069","Irvine","CA","California","TRUE","","52569","2875.4","06059","Orange","{""06059"": ""100""}","Orange","06059","FALSE","FALSE","America/Los_Angeles"
-"92624","33.45927","-117.66566","Capistrano Beach","CA","California","TRUE","","6372","1771.3","06059","Orange","{""06059"": ""100""}","Orange","06059","FALSE","FALSE","America/Los_Angeles"
-"92625","33.60216","-117.86558","Corona Del Mar","CA","California","TRUE","","12394","1863.1","06059","Orange","{""06059"": ""100""}","Orange","06059","FALSE","FALSE","America/Los_Angeles"
-"92626","33.67893","-117.90842","Costa Mesa","CA","California","TRUE","","50605","2008.0","06059","Orange","{""06059"": ""100""}","Orange","06059","FALSE","FALSE","America/Los_Angeles"
-"92627","33.64788","-117.92044","Costa Mesa","CA","California","TRUE","","63161","3825.5","06059","Orange","{""06059"": ""100""}","Orange","06059","FALSE","FALSE","America/Los_Angeles"
-"92629","33.47671","-117.70459","Dana Point","CA","California","TRUE","","26877","2063.2","06059","Orange","{""06059"": ""100""}","Orange","06059","FALSE","FALSE","America/Los_Angeles"
-"92630","33.64467","-117.68518","Lake Forest","CA","California","TRUE","","59403","2407.1","06059","Orange","{""06059"": ""100""}","Orange","06059","FALSE","FALSE","America/Los_Angeles"
-"92637","33.61015","-117.73166","Laguna Woods","CA","California","TRUE","","16053","1768.7","06059","Orange","{""06059"": ""100""}","Orange","06059","FALSE","FALSE","America/Los_Angeles"
-"92646","33.66538","-117.96762","Huntington Beach","CA","California","TRUE","","55870","2633.2","06059","Orange","{""06059"": ""100""}","Orange","06059","FALSE","FALSE","America/Los_Angeles"
-"92647","33.72342","-118.00667","Huntington Beach","CA","California","TRUE","","62199","3099.6","06059","Orange","{""06059"": ""100""}","Orange","06059","FALSE","FALSE","America/Los_Angeles"
-"92648","33.68244","-118.01244","Huntington Beach","CA","California","TRUE","","46228","2220.1","06059","Orange","{""06059"": ""100""}","Orange","06059","FALSE","FALSE","America/Los_Angeles"
-"92649","33.72635","-118.05096","Huntington Beach","CA","California","TRUE","","35278","1781.6","06059","Orange","{""06059"": ""100""}","Orange","06059","FALSE","FALSE","America/Los_Angeles"
-"92651","33.55926","-117.77647","Laguna Beach","CA","California","TRUE","","24800","492.1","06059","Orange","{""06059"": ""100""}","Orange","06059","FALSE","FALSE","America/Los_Angeles"
-"92653","33.59159","-117.69847","Laguna Hills","CA","California","TRUE","","30012","1728.6","06059","Orange","{""06059"": ""100""}","Orange","06059","FALSE","FALSE","America/Los_Angeles"
-"92655","33.74514","-117.98493","Midway City","CA","California","TRUE","","8382","5119.2","06059","Orange","{""06059"": ""100""}","Orange","06059","FALSE","FALSE","America/Los_Angeles"
-"92656","33.57622","-117.73039","Aliso Viejo","CA","California","TRUE","","52268","2452.3","06059","Orange","{""06059"": ""100""}","Orange","06059","FALSE","FALSE","America/Los_Angeles"
-"92657","33.59561","-117.83209","Newport Coast","CA","California","TRUE","","9802","512.1","06059","Orange","{""06059"": ""100""}","Orange","06059","FALSE","FALSE","America/Los_Angeles"
-"92660","33.63374","-117.87449","Newport Beach","CA","California","TRUE","","35446","1400.9","06059","Orange","{""06059"": ""100""}","Orange","06059","FALSE","FALSE","America/Los_Angeles"
-"92661","33.60262","-117.90038","Newport Beach","CA","California","TRUE","","3445","2042.4","06059","Orange","{""06059"": ""100""}","Orange","06059","FALSE","FALSE","America/Los_Angeles"
-"92662","33.60547","-117.89204","Newport Beach","CA","California","TRUE","","2519","4670.0","06059","Orange","{""06059"": ""100""}","Orange","06059","FALSE","FALSE","America/Los_Angeles"
-"92663","33.62365","-117.93046","Newport Beach","CA","California","TRUE","","21951","2561.0","06059","Orange","{""06059"": ""100""}","Orange","06059","FALSE","FALSE","America/Los_Angeles"
-"92672","33.42989","-117.60933","San Clemente","CA","California","TRUE","","34218","1662.0","06059","Orange","{""06059"": ""99.22"", ""06073"": ""0.78""}","Orange|San Diego","06059|06073","FALSE","FALSE","America/Los_Angeles"
-"92673","33.46688","-117.61209","San Clemente","CA","California","TRUE","","30768","1023.3","06059","Orange","{""06059"": ""100""}","Orange","06059","FALSE","FALSE","America/Los_Angeles"
-"92675","33.50209","-117.60457","San Juan Capistrano","CA","California","TRUE","","38803","429.2","06059","Orange","{""06059"": ""100""}","Orange","06059","FALSE","FALSE","America/Los_Angeles"
-"92676","33.75037","-117.63463","Silverado","CA","California","TRUE","","2068","12.0","06059","Orange","{""06059"": ""100""}","Orange","06059","FALSE","FALSE","America/Los_Angeles"
-"92677","33.52765","-117.7052","Laguna Niguel","CA","California","TRUE","","66314","1533.3","06059","Orange","{""06059"": ""100""}","Orange","06059","FALSE","FALSE","America/Los_Angeles"
-"92678","33.68469","-117.52655","Trabuco Canyon","CA","California","TRUE","","584","15.0","06059","Orange","{""06059"": ""100""}","Orange","06059","FALSE","FALSE","America/Los_Angeles"
-"92679","33.63389","-117.58962","Trabuco Canyon","CA","California","TRUE","","32657","557.5","06059","Orange","{""06059"": ""100""}","Orange","06059","FALSE","FALSE","America/Los_Angeles"
-"92683","33.75252","-117.99406","Westminster","CA","California","TRUE","","91105","3516.2","06059","Orange","{""06059"": ""100""}","Orange","06059","FALSE","FALSE","America/Los_Angeles"
-"92688","33.62008","-117.61231","Rancho Santa Margarita","CA","California","TRUE","","44832","1587.6","06059","Orange","{""06059"": ""100""}","Orange","06059","FALSE","FALSE","America/Los_Angeles"
-"92691","33.61064","-117.66626","Mission Viejo","CA","California","TRUE","","50839","2229.9","06059","Orange","{""06059"": ""100""}","Orange","06059","FALSE","FALSE","America/Los_Angeles"
-"92692","33.60678","-117.64304","Mission Viejo","CA","California","TRUE","","46800","1834.1","06059","Orange","{""06059"": ""100""}","Orange","06059","FALSE","FALSE","America/Los_Angeles"
-"92694","33.54724","-117.62373","Ladera Ranch","CA","California","TRUE","","29570","1202.5","06059","Orange","{""06059"": ""100""}","Orange","06059","FALSE","FALSE","America/Los_Angeles"
-"92701","33.74819","-117.85844","Santa Ana","CA","California","TRUE","","55058","6504.4","06059","Orange","{""06059"": ""100""}","Orange","06059","FALSE","FALSE","America/Los_Angeles"
-"92703","33.7487","-117.90607","Santa Ana","CA","California","TRUE","","69112","6460.7","06059","Orange","{""06059"": ""100""}","Orange","06059","FALSE","FALSE","America/Los_Angeles"
-"92704","33.72052","-117.90808","Santa Ana","CA","California","TRUE","","88321","4539.9","06059","Orange","{""06059"": ""100""}","Orange","06059","FALSE","FALSE","America/Los_Angeles"
-"92705","33.75566","-117.81639","Santa Ana","CA","California","TRUE","","47298","1580.2","06059","Orange","{""06059"": ""100""}","Orange","06059","FALSE","FALSE","America/Los_Angeles"
-"92706","33.76591","-117.8822","Santa Ana","CA","California","TRUE","","35748","3902.1","06059","Orange","{""06059"": ""100""}","Orange","06059","FALSE","FALSE","America/Los_Angeles"
-"92707","33.70986","-117.87089","Santa Ana","CA","California","TRUE","","60831","4694.9","06059","Orange","{""06059"": ""100""}","Orange","06059","FALSE","FALSE","America/Los_Angeles"
-"92708","33.71052","-117.9512","Fountain Valley","CA","California","TRUE","","56953","2403.4","06059","Orange","{""06059"": ""100""}","Orange","06059","FALSE","FALSE","America/Los_Angeles"
-"92780","33.73402","-117.81916","Tustin","CA","California","TRUE","","59499","3284.9","06059","Orange","{""06059"": ""100""}","Orange","06059","FALSE","FALSE","America/Los_Angeles"
-"92782","33.7397","-117.78471","Tustin","CA","California","TRUE","","23084","2651.0","06059","Orange","{""06059"": ""100""}","Orange","06059","FALSE","FALSE","America/Los_Angeles"
-"92801","33.84444","-117.95222","Anaheim","CA","California","TRUE","","66594","4096.7","06059","Orange","{""06059"": ""100""}","Orange","06059","FALSE","FALSE","America/Los_Angeles"
-"92802","33.80828","-117.92367","Anaheim","CA","California","TRUE","","42016","3567.2","06059","Orange","{""06059"": ""100""}","Orange","06059","FALSE","FALSE","America/Los_Angeles"
-"92804","33.81826","-117.97506","Anaheim","CA","California","TRUE","","89915","4952.7","06059","Orange","{""06059"": ""100""}","Orange","06059","FALSE","FALSE","America/Los_Angeles"
-"92805","33.83038","-117.90578","Anaheim","CA","California","TRUE","","74478","4553.6","06059","Orange","{""06059"": ""100""}","Orange","06059","FALSE","FALSE","America/Los_Angeles"
-"92806","33.83856","-117.87071","Anaheim","CA","California","TRUE","","39442","1964.0","06059","Orange","{""06059"": ""100""}","Orange","06059","FALSE","FALSE","America/Los_Angeles"
-"92807","33.84969","-117.78924","Anaheim","CA","California","TRUE","","35687","1242.1","06059","Orange","{""06059"": ""100""}","Orange","06059","FALSE","FALSE","America/Los_Angeles"
-"92808","33.85647","-117.74013","Anaheim","CA","California","TRUE","","20483","1551.5","06059","Orange","{""06059"": ""100""}","Orange","06059","FALSE","FALSE","America/Los_Angeles"
-"92821","33.92738","-117.8852","Brea","CA","California","TRUE","","37712","1378.9","06059","Orange","{""06059"": ""100""}","Orange","06059","FALSE","FALSE","America/Los_Angeles"
-"92823","33.92942","-117.80683","Brea","CA","California","TRUE","","4872","173.3","06059","Orange","{""06059"": ""100""}","Orange","06059","FALSE","FALSE","America/Los_Angeles"
-"92831","33.87973","-117.89635","Fullerton","CA","California","TRUE","","37359","2414.0","06059","Orange","{""06059"": ""100""}","Orange","06059","FALSE","FALSE","America/Los_Angeles"
-"92832","33.86859","-117.92897","Fullerton","CA","California","TRUE","","25837","3557.1","06059","Orange","{""06059"": ""100""}","Orange","06059","FALSE","FALSE","America/Los_Angeles"
-"92833","33.87927","-117.96172","Fullerton","CA","California","TRUE","","52435","2764.8","06059","Orange","{""06059"": ""100""}","Orange","06059","FALSE","FALSE","America/Los_Angeles"
-"92835","33.90187","-117.91735","Fullerton","CA","California","TRUE","","23528","1508.3","06059","Orange","{""06059"": ""100""}","Orange","06059","FALSE","FALSE","America/Los_Angeles"
-"92840","33.78586","-117.93226","Garden Grove","CA","California","TRUE","","54735","4061.5","06059","Orange","{""06059"": ""100""}","Orange","06059","FALSE","FALSE","America/Los_Angeles"
-"92841","33.78689","-117.98195","Garden Grove","CA","California","TRUE","","33754","2910.2","06059","Orange","{""06059"": ""100""}","Orange","06059","FALSE","FALSE","America/Los_Angeles"
-"92843","33.76403","-117.93141","Garden Grove","CA","California","TRUE","","46873","4649.5","06059","Orange","{""06059"": ""100""}","Orange","06059","FALSE","FALSE","America/Los_Angeles"
-"92844","33.76543","-117.96945","Garden Grove","CA","California","TRUE","","23189","4217.5","06059","Orange","{""06059"": ""100""}","Orange","06059","FALSE","FALSE","America/Los_Angeles"
-"92845","33.78308","-118.02625","Garden Grove","CA","California","TRUE","","16273","2886.6","06059","Orange","{""06059"": ""100""}","Orange","06059","FALSE","FALSE","America/Los_Angeles"
-"92860","33.92467","-117.55166","Norco","CA","California","TRUE","","26849","740.6","06065","Riverside","{""06065"": ""100""}","Riverside","06065","FALSE","FALSE","America/Los_Angeles"
-"92861","33.81773","-117.81012","Villa Park","CA","California","TRUE","","5822","1069.5","06059","Orange","{""06059"": ""100""}","Orange","06059","FALSE","FALSE","America/Los_Angeles"
-"92865","33.82887","-117.84905","Orange","CA","California","TRUE","","20664","2094.9","06059","Orange","{""06059"": ""100""}","Orange","06059","FALSE","FALSE","America/Los_Angeles"
-"92866","33.78463","-117.84471","Orange","CA","California","TRUE","","15574","3112.7","06059","Orange","{""06059"": ""100""}","Orange","06059","FALSE","FALSE","America/Los_Angeles"
-"92867","33.81575","-117.82213","Orange","CA","California","TRUE","","44655","2168.5","06059","Orange","{""06059"": ""100""}","Orange","06059","FALSE","FALSE","America/Los_Angeles"
-"92868","33.78813","-117.87629","Orange","CA","California","TRUE","","27072","3134.4","06059","Orange","{""06059"": ""100""}","Orange","06059","FALSE","FALSE","America/Los_Angeles"
-"92869","33.796","-117.78665","Orange","CA","California","TRUE","","36846","1536.7","06059","Orange","{""06059"": ""100""}","Orange","06059","FALSE","FALSE","America/Los_Angeles"
-"92870","33.88079","-117.85518","Placentia","CA","California","TRUE","","53600","3053.6","06059","Orange","{""06059"": ""100""}","Orange","06059","FALSE","FALSE","America/Los_Angeles"
-"92879","33.87976","-117.53548","Corona","CA","California","TRUE","","47872","1841.0","06065","Riverside","{""06065"": ""100""}","Riverside","06065","FALSE","FALSE","America/Los_Angeles"
-"92880","33.92078","-117.6097","Corona","CA","California","TRUE","","69656","1082.1","06065","Riverside","{""06065"": ""99.94"", ""06071"": ""0.06""}","Riverside|San Bernardino","06065|06071","FALSE","FALSE","America/Los_Angeles"
-"92881","33.82399","-117.51996","Corona","CA","California","TRUE","","33531","468.3","06065","Riverside","{""06065"": ""100""}","Riverside","06065","FALSE","FALSE","America/Los_Angeles"
-"92882","33.84194","-117.60424","Corona","CA","California","TRUE","","73250","1099.0","06065","Riverside","{""06065"": ""100""}","Riverside","06065","FALSE","FALSE","America/Los_Angeles"
-"92883","33.75413","-117.47393","Corona","CA","California","TRUE","","35933","249.1","06065","Riverside","{""06065"": ""100""}","Riverside","06065","FALSE","FALSE","America/Los_Angeles"
-"92886","33.89646","-117.79716","Yorba Linda","CA","California","TRUE","","50784","1330.7","06059","Orange","{""06059"": ""100""}","Orange","06059","FALSE","FALSE","America/Los_Angeles"
-"92887","33.88471","-117.73124","Yorba Linda","CA","California","TRUE","","20012","809.3","06059","Orange","{""06059"": ""100""}","Orange","06059","FALSE","FALSE","America/Los_Angeles"
-"93001","34.19219","-119.50794","Ventura","CA","California","TRUE","","32396","61.0","06111","Ventura","{""06111"": ""99.98"", ""06083"": ""0.02""}","Ventura|Santa Barbara","06111|06083","FALSE","FALSE","America/Los_Angeles"
-"93003","34.2846","-119.22222","Ventura","CA","California","TRUE","","51629","968.7","06111","Ventura","{""06111"": ""100""}","Ventura","06111","FALSE","FALSE","America/Los_Angeles"
-"93004","34.27886","-119.16549","Ventura","CA","California","TRUE","","31525","1727.8","06111","Ventura","{""06111"": ""100""}","Ventura","06111","FALSE","FALSE","America/Los_Angeles"
-"93010","34.22983","-119.07464","Camarillo","CA","California","TRUE","","46063","803.6","06111","Ventura","{""06111"": ""100""}","Ventura","06111","FALSE","FALSE","America/Los_Angeles"
-"93012","34.20328","-118.99795","Camarillo","CA","California","TRUE","","36052","265.5","06111","Ventura","{""06111"": ""100""}","Ventura","06111","FALSE","FALSE","America/Los_Angeles"
-"93013","34.44012","-119.49416","Carpinteria","CA","California","TRUE","","16652","112.9","06083","Santa Barbara","{""06083"": ""99.46"", ""06111"": ""0.54""}","Santa Barbara|Ventura","06083|06111","FALSE","FALSE","America/Los_Angeles"
-"93015","34.40574","-118.89657","Fillmore","CA","California","TRUE","","17989","90.7","06111","Ventura","{""06111"": ""100""}","Ventura","06111","FALSE","FALSE","America/Los_Angeles"
-"93021","34.30349","-118.8842","Moorpark","CA","California","TRUE","","38581","315.2","06111","Ventura","{""06111"": ""100""}","Ventura","06111","FALSE","FALSE","America/Los_Angeles"
-"93022","34.40734","-119.30566","Oak View","CA","California","TRUE","","7179","599.8","06111","Ventura","{""06111"": ""100""}","Ventura","06111","FALSE","FALSE","America/Los_Angeles"
-"93023","34.52392","-119.2744","Ojai","CA","California","TRUE","","19895","28.5","06111","Ventura","{""06111"": ""100""}","Ventura","06111","FALSE","FALSE","America/Los_Angeles"
-"93030","34.2053","-119.17482","Oxnard","CA","California","TRUE","","58422","1608.8","06111","Ventura","{""06111"": ""100""}","Ventura","06111","FALSE","FALSE","America/Los_Angeles"
-"93033","34.15212","-119.12648","Oxnard","CA","California","TRUE","","84701","1115.6","06111","Ventura","{""06111"": ""100""}","Ventura","06111","FALSE","FALSE","America/Los_Angeles"
-"93035","34.18358","-119.22179","Oxnard","CA","California","TRUE","","29354","2795.2","06111","Ventura","{""06111"": ""100""}","Ventura","06111","FALSE","FALSE","America/Los_Angeles"
-"93036","34.23562","-119.1804","Oxnard","CA","California","TRUE","","48162","1192.1","06111","Ventura","{""06111"": ""100""}","Ventura","06111","FALSE","FALSE","America/Los_Angeles"
-"93040","34.48181","-118.79237","Piru","CA","California","TRUE","","1827","10.0","06111","Ventura","{""06111"": ""100""}","Ventura","06111","FALSE","FALSE","America/Los_Angeles"
-"93041","34.13103","-119.14669","Port Hueneme","CA","California","TRUE","","24208","841.9","06111","Ventura","{""06111"": ""100""}","Ventura","06111","FALSE","FALSE","America/Los_Angeles"
-"93042","33.2479","-119.5067","Point Mugu Nawc","CA","California","TRUE","","118","2.0","06111","Ventura","{""06111"": ""100""}","Ventura","06111","FALSE","FALSE","America/Los_Angeles"
-"93043","34.17084","-119.20239","Port Hueneme Cbc Base","CA","California","TRUE","","144","115.4","06111","Ventura","{""06111"": ""100""}","Ventura","06111","FALSE","FALSE","America/Los_Angeles"
-"93060","34.40168","-119.09935","Santa Paula","CA","California","TRUE","","33773","109.7","06111","Ventura","{""06111"": ""100""}","Ventura","06111","FALSE","FALSE","America/Los_Angeles"
-"93063","34.3046","-118.68443","Simi Valley","CA","California","TRUE","","56458","661.3","06111","Ventura","{""06111"": ""100""}","Ventura","06111","FALSE","FALSE","America/Los_Angeles"
-"93064","34.24755","-118.70095","Brandeis","CA","California","TRUE","","0","0.0","06111","Ventura","{""06111"": ""100""}","Ventura","06111","FALSE","FALSE","America/Los_Angeles"
-"93065","34.26022","-118.77436","Simi Valley","CA","California","TRUE","","71832","875.9","06111","Ventura","{""06111"": ""100""}","Ventura","06111","FALSE","FALSE","America/Los_Angeles"
-"93066","34.28856","-119.0295","Somis","CA","California","TRUE","","3220","29.9","06111","Ventura","{""06111"": ""100""}","Ventura","06111","FALSE","FALSE","America/Los_Angeles"
-"93067","34.42182","-119.59312","Summerland","CA","California","TRUE","","410","268.6","06083","Santa Barbara","{""06083"": ""100""}","Santa Barbara","06083","FALSE","FALSE","America/Los_Angeles"
-"93101","34.41898","-119.70923","Santa Barbara","CA","California","TRUE","","31371","3531.4","06083","Santa Barbara","{""06083"": ""100""}","Santa Barbara","06083","FALSE","FALSE","America/Los_Angeles"
-"93103","34.438","-119.68057","Santa Barbara","CA","California","TRUE","","20538","1513.6","06083","Santa Barbara","{""06083"": ""100""}","Santa Barbara","06083","FALSE","FALSE","America/Los_Angeles"
-"93105","34.53229","-119.79968","Santa Barbara","CA","California","TRUE","","28545","113.5","06083","Santa Barbara","{""06083"": ""100""}","Santa Barbara","06083","FALSE","FALSE","America/Los_Angeles"
-"93108","34.44816","-119.62043","Santa Barbara","CA","California","TRUE","","10401","189.4","06083","Santa Barbara","{""06083"": ""100""}","Santa Barbara","06083","FALSE","FALSE","America/Los_Angeles"
-"93109","34.40649","-119.72656","Santa Barbara","CA","California","TRUE","","10771","1228.6","06083","Santa Barbara","{""06083"": ""100""}","Santa Barbara","06083","FALSE","FALSE","America/Los_Angeles"
-"93110","34.44804","-119.76248","Santa Barbara","CA","California","TRUE","","16849","616.9","06083","Santa Barbara","{""06083"": ""100""}","Santa Barbara","06083","FALSE","FALSE","America/Los_Angeles"
-"93111","34.44987","-119.80353","Santa Barbara","CA","California","TRUE","","17329","825.5","06083","Santa Barbara","{""06083"": ""100""}","Santa Barbara","06083","FALSE","FALSE","America/Los_Angeles"
-"93117","34.49127","-120.08221","Goleta","CA","California","TRUE","","58546","132.9","06083","Santa Barbara","{""06083"": ""100""}","Santa Barbara","06083","FALSE","FALSE","America/Los_Angeles"
-"93201","35.85875","-119.48758","Alpaugh","CA","California","TRUE","","1580","7.9","06107","Tulare","{""06107"": ""99.63"", ""06031"": ""0.37""}","Tulare|Kings","06107|06031","FALSE","FALSE","America/Los_Angeles"
-"93202","36.31335","-119.70853","Armona","CA","California","TRUE","","4273","2127.3","06031","Kings","{""06031"": ""100""}","Kings","06031","FALSE","FALSE","America/Los_Angeles"
-"93203","35.1119","-118.83079","Arvin","CA","California","TRUE","","22662","40.7","06029","Kern","{""06029"": ""100""}","Kern","06029","FALSE","FALSE","America/Los_Angeles"
-"93204","35.92646","-120.08639","Avenal","CA","California","TRUE","","12961","83.9","06031","Kings","{""06031"": ""100""}","Kings","06031","FALSE","FALSE","America/Los_Angeles"
-"93205","35.52026","-118.42508","Bodfish","CA","California","TRUE","","2030","13.6","06029","Kern","{""06029"": ""100""}","Kern","06029","FALSE","FALSE","America/Los_Angeles"
-"93206","35.44108","-119.47436","Buttonwillow","CA","California","TRUE","","1704","4.4","06029","Kern","{""06029"": ""100""}","Kern","06029","FALSE","FALSE","America/Los_Angeles"
-"93207","35.88985","-118.63056","California Hot Springs","CA","California","TRUE","","256","1.7","06107","Tulare","{""06107"": ""100""}","Tulare","06107","FALSE","FALSE","America/Los_Angeles"
-"93208","36.05663","-118.56848","Camp Nelson","CA","California","TRUE","","106","0.7","06107","Tulare","{""06107"": ""100""}","Tulare","06107","FALSE","FALSE","America/Los_Angeles"
-"93210","36.19943","-120.4231","Coalinga","CA","California","TRUE","","18336","9.2","06019","Fresno","{""06019"": ""99.67"", ""06053"": ""0.29"", ""06069"": ""0.04""}","Fresno|Monterey|San Benito","06019|06053|06069","FALSE","FALSE","America/Los_Angeles"
-"93212","36.04207","-119.5277","Corcoran","CA","California","TRUE","","23357","85.0","06031","Kings","{""06031"": ""99.41"", ""06107"": ""0.59""}","Kings|Tulare","06031|06107","FALSE","FALSE","America/Los_Angeles"
-"93215","35.77636","-119.1979","Delano","CA","California","TRUE","","54958","149.6","06029","Kern","{""06029"": ""98.77"", ""06107"": ""1.23""}","Kern|Tulare","06029|06107","FALSE","FALSE","America/Los_Angeles"
-"93218","35.8609","-119.03612","Ducor","CA","California","TRUE","","871","5.2","06107","Tulare","{""06107"": ""100""}","Tulare","06107","FALSE","FALSE","America/Los_Angeles"
-"93219","35.87439","-119.28097","Earlimart","CA","California","TRUE","","10285","40.8","06107","Tulare","{""06107"": ""100""}","Tulare","06107","FALSE","FALSE","America/Los_Angeles"
-"93220","35.3969","-118.75688","Edison","CA","California","TRUE","","65","1.0","06029","Kern","{""06029"": ""100""}","Kern","06029","FALSE","FALSE","America/Los_Angeles"
-"93221","36.29501","-119.02605","Exeter","CA","California","TRUE","","14129","41.4","06107","Tulare","{""06107"": ""100""}","Tulare","06107","FALSE","FALSE","America/Los_Angeles"
-"93222","34.84483","-119.1997","Pine Mountain Club","CA","California","TRUE","","1583","21.3","06029","Kern","{""06029"": ""100""}","Kern","06029","FALSE","FALSE","America/Los_Angeles"
-"93223","36.30456","-119.205","Farmersville","CA","California","TRUE","","10716","1673.0","06107","Tulare","{""06107"": ""100""}","Tulare","06107","FALSE","FALSE","America/Los_Angeles"
-"93224","35.22818","-119.56929","Fellows","CA","California","TRUE","","471","8.1","06029","Kern","{""06029"": ""100""}","Kern","06029","FALSE","FALSE","America/Los_Angeles"
-"93225","34.7747","-119.01985","Frazier Park","CA","California","TRUE","","4782","10.4","06029","Kern","{""06029"": ""93.4"", ""06111"": ""6.6""}","Kern|Ventura","06029|06111","FALSE","FALSE","America/Los_Angeles"
-"93226","35.73667","-118.72873","Glennville","CA","California","TRUE","","121","0.5","06029","Kern","{""06029"": ""100""}","Kern","06029","FALSE","FALSE","America/Los_Angeles"
-"93230","36.28802","-119.62301","Hanford","CA","California","TRUE","","67605","99.4","06031","Kings","{""06031"": ""100""}","Kings","06031","FALSE","FALSE","America/Los_Angeles"
-"93234","36.19126","-120.09009","Huron","CA","California","TRUE","","7355","35.4","06019","Fresno","{""06019"": ""100""}","Fresno","06019","FALSE","FALSE","America/Los_Angeles"
-"93235","36.38984","-119.2199","Ivanhoe","CA","California","TRUE","","4215","564.8","06107","Tulare","{""06107"": ""100""}","Tulare","06107","FALSE","FALSE","America/Los_Angeles"
-"93238","35.80228","-118.44215","Kernville","CA","California","TRUE","","673","2.1","06029","Kern","{""06029"": ""99.66"", ""06107"": ""0.34""}","Kern|Tulare","06029|06107","FALSE","FALSE","America/Los_Angeles"
-"93239","35.97542","-119.94606","Kettleman City","CA","California","TRUE","","1246","7.5","06031","Kings","{""06031"": ""100""}","Kings","06031","FALSE","FALSE","America/Los_Angeles"
-"93240","35.61359","-118.44267","Lake Isabella","CA","California","TRUE","","6327","32.7","06029","Kern","{""06029"": ""100""}","Kern","06029","FALSE","FALSE","America/Los_Angeles"
-"93241","35.25578","-118.91285","Lamont","CA","California","TRUE","","16397","1534.7","06029","Kern","{""06029"": ""100""}","Kern","06029","FALSE","FALSE","America/Los_Angeles"
-"93242","36.44207","-119.7277","Laton","CA","California","TRUE","","3474","32.6","06019","Fresno","{""06019"": ""91.7"", ""06031"": ""8.3""}","Fresno|Kings","06019|06031","FALSE","FALSE","America/Los_Angeles"
-"93243","34.77686","-118.80142","Lebec","CA","California","TRUE","","1532","3.9","06029","Kern","{""06029"": ""92.17"", ""06037"": ""7.83""}","Kern|Los Angeles","06029|06037","FALSE","FALSE","America/Los_Angeles"
-"93244","36.46691","-119.01558","Lemon Cove","CA","California","TRUE","","308","1.7","06107","Tulare","{""06107"": ""100""}","Tulare","06107","FALSE","FALSE","America/Los_Angeles"
-"93245","36.29517","-119.82871","Lemoore","CA","California","TRUE","","38480","126.0","06031","Kings","{""06031"": ""100""}","Kings","06031","FALSE","FALSE","America/Los_Angeles"
-"93247","36.20457","-119.06992","Lindsay","CA","California","TRUE","","18234","93.0","06107","Tulare","{""06107"": ""100""}","Tulare","06107","FALSE","FALSE","America/Los_Angeles"
-"93249","35.68836","-119.87675","Lost Hills","CA","California","TRUE","","1875","3.2","06029","Kern","{""06029"": ""100""}","Kern","06029","FALSE","FALSE","America/Los_Angeles"
-"93250","35.66575","-119.19747","McFarland","CA","California","TRUE","","16191","73.9","06029","Kern","{""06029"": ""100""}","Kern","06029","FALSE","FALSE","America/Los_Angeles"
-"93251","35.36171","-119.69355","McKittrick","CA","California","TRUE","","202","0.6","06029","Kern","{""06029"": ""100""}","Kern","06029","FALSE","FALSE","America/Los_Angeles"
-"93252","34.72503","-119.21492","Maricopa","CA","California","TRUE","","2488","1.4","06029","Kern","{""06029"": ""89.18"", ""06083"": ""5.46"", ""06111"": ""2.85"", ""06079"": ""2.51""}","Kern|Santa Barbara|Ventura|San Luis Obispo","06029|06083|06111|06079","FALSE","FALSE","America/Los_Angeles"
-"93254","34.94866","-119.77105","New Cuyama","CA","California","TRUE","","786","2.2","06083","Santa Barbara","{""06083"": ""97.04"", ""06079"": ""2.96""}","Santa Barbara|San Luis Obispo","06083|06079","FALSE","FALSE","America/Los_Angeles"
-"93255","35.6824","-118.09555","Onyx","CA","California","TRUE","","691","1.2","06029","Kern","{""06029"": ""100""}","Kern","06029","FALSE","FALSE","America/Los_Angeles"
-"93256","35.96189","-119.31555","Pixley","CA","California","TRUE","","5431","26.2","06107","Tulare","{""06107"": ""100""}","Tulare","06107","FALSE","FALSE","America/Los_Angeles"
-"93257","35.98376","-118.87178","Porterville","CA","California","TRUE","","76519","66.4","06107","Tulare","{""06107"": ""100""}","Tulare","06107","FALSE","FALSE","America/Los_Angeles"
-"93258","36.05438","-119.15041","Porterville","CA","California","TRUE","","1952","1742.0","06107","Tulare","{""06107"": ""100""}","Tulare","06107","FALSE","FALSE","America/Los_Angeles"
-"93260","35.81723","-118.66912","Posey","CA","California","TRUE","","226","2.7","06107","Tulare","{""06107"": ""100""}","Tulare","06107","FALSE","FALSE","America/Los_Angeles"
-"93261","35.80852","-119.12814","Richgrove","CA","California","TRUE","","2434","110.7","06107","Tulare","{""06107"": ""100""}","Tulare","06107","FALSE","FALSE","America/Los_Angeles"
-"93262","36.6008","-118.71097","Sequoia National Park","CA","California","TRUE","","53","0.2","06107","Tulare","{""06107"": ""100""}","Tulare","06107","FALSE","FALSE","America/Los_Angeles"
-"93263","35.4928","-119.28685","Shafter","CA","California","TRUE","","22210","94.7","06029","Kern","{""06029"": ""100""}","Kern","06029","FALSE","FALSE","America/Los_Angeles"
-"93265","36.19567","-118.6826","Springville","CA","California","TRUE","","3379","3.5","06107","Tulare","{""06107"": ""100""}","Tulare","06107","FALSE","FALSE","America/Los_Angeles"
-"93266","36.15726","-119.86374","Stratford","CA","California","TRUE","","1337","9.3","06031","Kings","{""06031"": ""100""}","Kings","06031","FALSE","FALSE","America/Los_Angeles"
-"93267","36.15106","-119.05196","Strathmore","CA","California","TRUE","","6788","34.9","06107","Tulare","{""06107"": ""100""}","Tulare","06107","FALSE","FALSE","America/Los_Angeles"
-"93268","35.16239","-119.42517","Taft","CA","California","TRUE","","18731","172.3","06029","Kern","{""06029"": ""100""}","Kern","06029","FALSE","FALSE","America/Los_Angeles"
-"93270","35.95241","-119.07285","Terra Bella","CA","California","TRUE","","5367","33.5","06107","Tulare","{""06107"": ""100""}","Tulare","06107","FALSE","FALSE","America/Los_Angeles"
-"93271","36.45921","-118.77808","Three Rivers","CA","California","TRUE","","2479","2.5","06107","Tulare","{""06107"": ""100""}","Tulare","06107","FALSE","FALSE","America/Los_Angeles"
-"93272","36.05086","-119.34644","Tipton","CA","California","TRUE","","4707","21.7","06107","Tulare","{""06107"": ""100""}","Tulare","06107","FALSE","FALSE","America/Los_Angeles"
-"93274","36.18026","-119.36943","Tulare","CA","California","TRUE","","74000","133.5","06107","Tulare","{""06107"": ""100""}","Tulare","06107","FALSE","FALSE","America/Los_Angeles"
-"93276","35.29937","-119.35868","Tupman","CA","California","TRUE","","144","81.2","06029","Kern","{""06029"": ""100""}","Kern","06029","FALSE","FALSE","America/Los_Angeles"
-"93277","36.29923","-119.381","Visalia","CA","California","TRUE","","52271","504.7","06107","Tulare","{""06107"": ""100""}","Tulare","06107","FALSE","FALSE","America/Los_Angeles"
-"93280","35.64805","-119.44873","Wasco","CA","California","TRUE","","28138","33.7","06029","Kern","{""06029"": ""100""}","Kern","06029","FALSE","FALSE","America/Los_Angeles"
-"93283","35.56954","-118.27648","Weldon","CA","California","TRUE","","2261","4.3","06029","Kern","{""06029"": ""100""}","Kern","06029","FALSE","FALSE","America/Los_Angeles"
-"93285","35.71608","-118.50242","Wofford Heights","CA","California","TRUE","","2477","20.3","06029","Kern","{""06029"": ""100""}","Kern","06029","FALSE","FALSE","America/Los_Angeles"
-"93286","36.47024","-119.10553","Woodlake","CA","California","TRUE","","9906","44.8","06107","Tulare","{""06107"": ""100""}","Tulare","06107","FALSE","FALSE","America/Los_Angeles"
-"93287","35.72929","-118.93141","Woody","CA","California","TRUE","","72","0.5","06029","Kern","{""06029"": ""100""}","Kern","06029","FALSE","FALSE","America/Los_Angeles"
-"93291","36.38959","-119.36857","Visalia","CA","California","TRUE","","59270","270.4","06107","Tulare","{""06107"": ""100""}","Tulare","06107","FALSE","FALSE","America/Los_Angeles"
-"93292","36.37715","-119.22402","Visalia","CA","California","TRUE","","42031","149.3","06107","Tulare","{""06107"": ""100""}","Tulare","06107","FALSE","FALSE","America/Los_Angeles"
-"93301","35.38451","-119.02082","Bakersfield","CA","California","TRUE","","12325","1138.1","06029","Kern","{""06029"": ""100""}","Kern","06029","FALSE","FALSE","America/Los_Angeles"
-"93304","35.33973","-119.02344","Bakersfield","CA","California","TRUE","","49115","2496.9","06029","Kern","{""06029"": ""100""}","Kern","06029","FALSE","FALSE","America/Los_Angeles"
-"93305","35.38979","-118.98518","Bakersfield","CA","California","TRUE","","37902","2465.9","06029","Kern","{""06029"": ""100""}","Kern","06029","FALSE","FALSE","America/Los_Angeles"
-"93306","35.46364","-118.78979","Bakersfield","CA","California","TRUE","","72280","316.8","06029","Kern","{""06029"": ""100""}","Kern","06029","FALSE","FALSE","America/Los_Angeles"
-"93307","35.24849","-118.93629","Bakersfield","CA","California","TRUE","","86832","241.4","06029","Kern","{""06029"": ""100""}","Kern","06029","FALSE","FALSE","America/Los_Angeles"
-"93308","35.54752","-118.93568","Bakersfield","CA","California","TRUE","","53981","66.0","06029","Kern","{""06029"": ""100""}","Kern","06029","FALSE","FALSE","America/Los_Angeles"
-"93309","35.3436","-119.06633","Bakersfield","CA","California","TRUE","","58538","2128.5","06029","Kern","{""06029"": ""100""}","Kern","06029","FALSE","FALSE","America/Los_Angeles"
-"93311","35.19414","-119.17444","Bakersfield","CA","California","TRUE","","45481","103.6","06029","Kern","{""06029"": ""100""}","Kern","06029","FALSE","FALSE","America/Los_Angeles"
-"93312","35.39347","-119.12045","Bakersfield","CA","California","TRUE","","61628","1564.2","06029","Kern","{""06029"": ""100""}","Kern","06029","FALSE","FALSE","America/Los_Angeles"
-"93313","35.16327","-119.04631","Bakersfield","CA","California","TRUE","","55221","213.9","06029","Kern","{""06029"": ""100""}","Kern","06029","FALSE","FALSE","America/Los_Angeles"
-"93314","35.38792","-119.23632","Bakersfield","CA","California","TRUE","","28963","113.0","06029","Kern","{""06029"": ""100""}","Kern","06029","FALSE","FALSE","America/Los_Angeles"
-"93401","35.24175","-120.61711","San Luis Obispo","CA","California","TRUE","","28854","159.4","06079","San Luis Obispo","{""06079"": ""100""}","San Luis Obispo","06079","FALSE","FALSE","America/Los_Angeles"
-"93402","35.28956","-120.83723","Los Osos","CA","California","TRUE","","16562","219.8","06079","San Luis Obispo","{""06079"": ""100""}","San Luis Obispo","06079","FALSE","FALSE","America/Los_Angeles"
-"93405","35.29784","-120.72718","San Luis Obispo","CA","California","TRUE","","35898","157.9","06079","San Luis Obispo","{""06079"": ""100""}","San Luis Obispo","06079","FALSE","FALSE","America/Los_Angeles"
-"93410","35.30126","-120.66088","San Luis Obispo","CA","California","TRUE","","0","0.0","06079","San Luis Obispo","{""06079"": ""0""}","San Luis Obispo","06079","FALSE","FALSE","America/Los_Angeles"
-"93420","35.16613","-120.46507","Arroyo Grande","CA","California","TRUE","","30740","63.3","06079","San Luis Obispo","{""06079"": ""100""}","San Luis Obispo","06079","FALSE","FALSE","America/Los_Angeles"
-"93422","35.46459","-120.69045","Atascadero","CA","California","TRUE","","33466","213.5","06079","San Luis Obispo","{""06079"": ""100""}","San Luis Obispo","06079","FALSE","FALSE","America/Los_Angeles"
-"93424","35.19","-120.73219","Avila Beach","CA","California","TRUE","","795","116.6","06079","San Luis Obispo","{""06079"": ""100""}","San Luis Obispo","06079","FALSE","FALSE","America/Los_Angeles"
-"93426","35.84641","-120.94132","Bradley","CA","California","TRUE","","1568","2.9","06053","Monterey","{""06053"": ""66.6"", ""06079"": ""33.4""}","Monterey|San Luis Obispo","06053|06079","FALSE","FALSE","America/Los_Angeles"
-"93427","34.60889","-120.22383","Buellton","CA","California","TRUE","","6200","42.8","06083","Santa Barbara","{""06083"": ""100""}","Santa Barbara","06083","FALSE","FALSE","America/Los_Angeles"
-"93428","35.59032","-121.02929","Cambria","CA","California","TRUE","","5859","29.4","06079","San Luis Obispo","{""06079"": ""100""}","San Luis Obispo","06079","FALSE","FALSE","America/Los_Angeles"
-"93429","34.86537","-120.53652","Casmalia","CA","California","TRUE","","144","7.5","06083","Santa Barbara","{""06083"": ""100""}","Santa Barbara","06083","FALSE","FALSE","America/Los_Angeles"
-"93430","35.49234","-120.92555","Cayucos","CA","California","TRUE","","2847","15.2","06079","San Luis Obispo","{""06079"": ""100""}","San Luis Obispo","06079","FALSE","FALSE","America/Los_Angeles"
-"93432","35.47194","-120.47107","Creston","CA","California","TRUE","","1503","6.4","06079","San Luis Obispo","{""06079"": ""100""}","San Luis Obispo","06079","FALSE","FALSE","America/Los_Angeles"
-"93433","35.12059","-120.61911","Grover Beach","CA","California","TRUE","","13535","2415.6","06079","San Luis Obispo","{""06079"": ""100""}","San Luis Obispo","06079","FALSE","FALSE","America/Los_Angeles"
-"93434","34.9226","-120.60163","Guadalupe","CA","California","TRUE","","7451","87.1","06083","Santa Barbara","{""06083"": ""100""}","Santa Barbara","06083","FALSE","FALSE","America/Los_Angeles"
-"93436","34.60558","-120.39708","Lompoc","CA","California","TRUE","","56323","99.3","06083","Santa Barbara","{""06083"": ""100""}","Santa Barbara","06083","FALSE","FALSE","America/Los_Angeles"
-"93437","34.73737","-120.54348","Lompoc","CA","California","TRUE","","3387","33.7","06083","Santa Barbara","{""06083"": ""100""}","Santa Barbara","06083","FALSE","FALSE","America/Los_Angeles"
-"93440","34.72943","-120.24455","Los Alamos","CA","California","TRUE","","1659","15.9","06083","Santa Barbara","{""06083"": ""100""}","Santa Barbara","06083","FALSE","FALSE","America/Los_Angeles"
-"93441","34.74779","-120.03937","Los Olivos","CA","California","TRUE","","922","6.5","06083","Santa Barbara","{""06083"": ""100""}","Santa Barbara","06083","FALSE","FALSE","America/Los_Angeles"
-"93442","35.40216","-120.80287","Morro Bay","CA","California","TRUE","","10917","93.9","06079","San Luis Obispo","{""06079"": ""100""}","San Luis Obispo","06079","FALSE","FALSE","America/Los_Angeles"
-"93444","35.03846","-120.50425","Nipomo","CA","California","TRUE","","21331","119.6","06079","San Luis Obispo","{""06079"": ""100""}","San Luis Obispo","06079","FALSE","FALSE","America/Los_Angeles"
-"93445","35.03049","-120.62024","Oceano","CA","California","TRUE","","7106","163.3","06079","San Luis Obispo","{""06079"": ""100""}","San Luis Obispo","06079","FALSE","FALSE","America/Los_Angeles"
-"93446","35.66353","-120.73097","Paso Robles","CA","California","TRUE","","44636","41.2","06079","San Luis Obispo","{""06079"": ""100""}","San Luis Obispo","06079","FALSE","FALSE","America/Los_Angeles"
-"93449","35.158","-120.65072","Pismo Beach","CA","California","TRUE","","8180","315.9","06079","San Luis Obispo","{""06079"": ""100""}","San Luis Obispo","06079","FALSE","FALSE","America/Los_Angeles"
-"93450","36.05641","-120.82381","San Ardo","CA","California","TRUE","","767","1.7","06053","Monterey","{""06053"": ""100""}","Monterey","06053","FALSE","FALSE","America/Los_Angeles"
-"93451","35.90037","-120.59288","San Miguel","CA","California","TRUE","","4477","3.4","06079","San Luis Obispo","{""06079"": ""86.19"", ""06053"": ""13.81""}","San Luis Obispo|Monterey","06079|06053","FALSE","FALSE","America/Los_Angeles"
-"93452","35.71049","-121.20413","San Simeon","CA","California","TRUE","","658","2.2","06079","San Luis Obispo","{""06079"": ""100""}","San Luis Obispo","06079","FALSE","FALSE","America/Los_Angeles"
-"93453","35.34703","-120.19726","Santa Margarita","CA","California","TRUE","","2578","1.6","06079","San Luis Obispo","{""06079"": ""100""}","San Luis Obispo","06079","FALSE","FALSE","America/Los_Angeles"
-"93454","34.93666","-120.23478","Santa Maria","CA","California","TRUE","","40432","36.6","06083","Santa Barbara","{""06083"": ""99.22"", ""06079"": ""0.78""}","Santa Barbara|San Luis Obispo","06083|06079","FALSE","FALSE","America/Los_Angeles"
-"93455","34.82867","-120.42686","Santa Maria","CA","California","TRUE","","46175","164.9","06083","Santa Barbara","{""06083"": ""100""}","Santa Barbara","06083","FALSE","FALSE","America/Los_Angeles"
-"93458","34.95709","-120.49063","Santa Maria","CA","California","TRUE","","57256","807.5","06083","Santa Barbara","{""06083"": ""99.89"", ""06079"": ""0.11""}","Santa Barbara|San Luis Obispo","06083|06079","FALSE","FALSE","America/Los_Angeles"
-"93460","34.64866","-120.02449","Santa Ynez","CA","California","TRUE","","5284","16.5","06083","Santa Barbara","{""06083"": ""100""}","Santa Barbara","06083","FALSE","FALSE","America/Los_Angeles"
-"93461","35.64703","-120.27328","Shandon","CA","California","TRUE","","1349","1.5","06079","San Luis Obispo","{""06079"": ""98.46"", ""06053"": ""0.86"", ""06029"": ""0.68""}","San Luis Obispo|Monterey|Kern","06079|06053|06029","FALSE","FALSE","America/Los_Angeles"
-"93463","34.62188","-120.14167","Solvang","CA","California","TRUE","","7911","101.1","06083","Santa Barbara","{""06083"": ""100""}","Santa Barbara","06083","FALSE","FALSE","America/Los_Angeles"
-"93465","35.54014","-120.73303","Templeton","CA","California","TRUE","","9202","40.4","06079","San Luis Obispo","{""06079"": ""100""}","San Luis Obispo","06079","FALSE","FALSE","America/Los_Angeles"
-"93501","35.06841","-118.1845","Mojave","CA","California","TRUE","","4802","11.3","06029","Kern","{""06029"": ""100""}","Kern","06029","FALSE","FALSE","America/Los_Angeles"
-"93505","35.16646","-117.88815","California City","CA","California","TRUE","","13774","68.0","06029","Kern","{""06029"": ""100""}","Kern","06029","FALSE","FALSE","America/Los_Angeles"
-"93510","34.46514","-118.21418","Acton","CA","California","TRUE","","7644","41.0","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"93512","37.89263","-118.56464","Benton","CA","California","TRUE","","328","1.0","06051","Mono","{""06051"": ""100""}","Mono","06051","FALSE","FALSE","America/Los_Angeles"
-"93513","37.11836","-118.13134","Big Pine","CA","California","TRUE","","1621","1.0","06027","Inyo","{""06027"": ""100""}","Inyo","06027","FALSE","FALSE","America/Los_Angeles"
-"93514","37.50147","-118.40493","Bishop","CA","California","TRUE","","14175","4.9","06027","Inyo","{""06027"": ""91.44"", ""06051"": ""8.56""}","Inyo|Mono","06027|06051","FALSE","FALSE","America/Los_Angeles"
-"93516","35.00468","-117.63212","Boron","CA","California","TRUE","","2244","44.9","06029","Kern","{""06029"": ""98"", ""06071"": ""2""}","Kern|San Bernardino","06029|06071","FALSE","FALSE","America/Los_Angeles"
-"93517","38.27358","-119.30296","Bridgeport","CA","California","TRUE","","641","0.4","06051","Mono","{""06051"": ""100""}","Mono","06051","FALSE","FALSE","America/Los_Angeles"
-"93518","35.37002","-118.46128","Caliente","CA","California","TRUE","","814","1.1","06029","Kern","{""06029"": ""100""}","Kern","06029","FALSE","FALSE","America/Los_Angeles"
-"93519","35.29748","-117.92937","Cantil","CA","California","TRUE","","0","0.0","06029","Kern","{""06029"": ""100""}","Kern","06029","FALSE","FALSE","America/Los_Angeles"
-"93522","36.29483","-117.59573","Darwin","CA","California","TRUE","","100","0.8","06027","Inyo","{""06027"": ""100""}","Inyo","06027","FALSE","FALSE","America/Los_Angeles"
-"93523","34.93098","-117.85026","Edwards","CA","California","TRUE","","3556","14.1","06029","Kern","{""06029"": ""100""}","Kern","06029","FALSE","FALSE","America/Los_Angeles"
-"93524","34.93199","-117.90714","Edwards","CA","California","TRUE","","165","31.1","06029","Kern","{""06029"": ""100""}","Kern","06029","FALSE","FALSE","America/Los_Angeles"
-"93526","36.81063","-118.28513","Independence","CA","California","TRUE","","629","1.8","06027","Inyo","{""06027"": ""100""}","Inyo","06027","FALSE","FALSE","America/Los_Angeles"
-"93527","36.04632","-118.17718","Inyokern","CA","California","TRUE","","1559","1.1","06029","Kern","{""06029"": ""97.07"", ""06107"": ""2.22"", ""06027"": ""0.71""}","Kern|Tulare|Inyo","06029|06107|06027","FALSE","FALSE","America/Los_Angeles"
-"93528","35.37158","-117.64335","Johannesburg","CA","California","TRUE","","119","12.1","06029","Kern","{""06029"": ""100""}","Kern","06029","FALSE","FALSE","America/Los_Angeles"
-"93529","37.80506","-119.09807","June Lake","CA","California","TRUE","","390","4.9","06051","Mono","{""06051"": ""100""}","Mono","06051","FALSE","FALSE","America/Los_Angeles"
-"93530","36.48085","-117.86892","Keeler","CA","California","TRUE","","10","4.2","06027","Inyo","{""06027"": ""100""}","Inyo","06027","FALSE","FALSE","America/Los_Angeles"
-"93531","35.21601","-118.58996","Keene","CA","California","TRUE","","338","3.8","06029","Kern","{""06029"": ""100""}","Kern","06029","FALSE","FALSE","America/Los_Angeles"
-"93532","34.68472","-118.54415","Lake Hughes","CA","California","TRUE","","2683","9.1","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"93534","34.71564","-118.1512","Lancaster","CA","California","TRUE","","39367","855.4","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"93535","34.71307","-117.87823","Lancaster","CA","California","TRUE","","74264","111.2","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"93536","34.74709","-118.36875","Lancaster","CA","California","TRUE","","70237","111.7","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"93541","37.98192","-119.11567","Lee Vining","CA","California","TRUE","","244","0.4","06051","Mono","{""06051"": ""100""}","Mono","06051","FALSE","FALSE","America/Los_Angeles"
-"93543","34.48918","-117.97085","Littlerock","CA","California","TRUE","","14392","93.5","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"93544","34.49303","-117.75432","Llano","CA","California","TRUE","","1164","4.1","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"93545","36.55786","-118.05704","Lone Pine","CA","California","TRUE","","1821","6.6","06027","Inyo","{""06027"": ""100""}","Inyo","06027","FALSE","FALSE","America/Los_Angeles"
-"93546","37.58419","-118.8523","Mammoth Lakes","CA","California","TRUE","","9591","21.5","06051","Mono","{""06051"": ""100""}","Mono","06051","FALSE","FALSE","America/Los_Angeles"
-"93549","36.19817","-117.94901","Olancha","CA","California","TRUE","","293","0.3","06027","Inyo","{""06027"": ""100""}","Inyo","06027","FALSE","FALSE","America/Los_Angeles"
-"93550","34.41326","-118.09162","Palmdale","CA","California","TRUE","","77506","152.6","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"93551","34.60169","-118.23102","Palmdale","CA","California","TRUE","","50601","267.1","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"93552","34.57149","-118.02316","Palmdale","CA","California","TRUE","","39905","317.9","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"93553","34.42244","-117.90553","Pearblossom","CA","California","TRUE","","1709","7.6","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"93554","35.41481","-117.76603","Randsburg","CA","California","TRUE","","125","0.7","06029","Kern","{""06029"": ""100""}","Kern","06029","FALSE","FALSE","America/Los_Angeles"
-"93555","35.6075","-117.68503","Ridgecrest","CA","California","TRUE","","33833","160.2","06029","Kern","{""06029"": ""99.31"", ""06071"": ""0.69""}","Kern|San Bernardino","06029|06071","FALSE","FALSE","America/Los_Angeles"
-"93558","35.34799","-117.62145","Red Mountain","CA","California","TRUE","","26","2.7","06071","San Bernardino","{""06071"": ""100""}","San Bernardino","06071","FALSE","FALSE","America/Los_Angeles"
-"93560","34.86642","-118.34068","Rosamond","CA","California","TRUE","","21756","52.6","06029","Kern","{""06029"": ""99.74"", ""06037"": ""0.26""}","Kern|Los Angeles","06029|06037","FALSE","FALSE","America/Los_Angeles"
-"93561","35.11821","-118.49376","Tehachapi","CA","California","TRUE","","34979","51.1","06029","Kern","{""06029"": ""100""}","Kern","06029","FALSE","FALSE","America/Los_Angeles"
-"93562","35.74814","-117.38067","Trona","CA","California","TRUE","","1771","17.3","06071","San Bernardino","{""06071"": ""100""}","San Bernardino","06071","FALSE","FALSE","America/Los_Angeles"
-"93563","34.3966","-117.76036","Valyermo","CA","California","TRUE","","357","3.4","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"93591","34.60184","-117.81218","Palmdale","CA","California","TRUE","","6744","31.6","06037","Los Angeles","{""06037"": ""100""}","Los Angeles","06037","FALSE","FALSE","America/Los_Angeles"
-"93592","35.93029","-117.26725","Trona","CA","California","TRUE","","115","0.3","06027","Inyo","{""06027"": ""100""}","Inyo","06027","FALSE","FALSE","America/Los_Angeles"
-"93601","37.39375","-119.74444","Ahwahnee","CA","California","TRUE","","1674","14.5","06039","Madera","{""06039"": ""94.76"", ""06043"": ""5.24""}","Madera|Mariposa","06039|06043","FALSE","FALSE","America/Los_Angeles"
-"93602","37.03501","-119.31428","Auberry","CA","California","TRUE","","3530","9.5","06019","Fresno","{""06019"": ""100""}","Fresno","06019","FALSE","FALSE","America/Los_Angeles"
-"93603","36.62048","-118.95871","Badger","CA","California","TRUE","","175","1.6","06107","Tulare","{""06107"": ""100""}","Tulare","06107","FALSE","FALSE","America/Los_Angeles"
-"93604","37.39166","-119.47865","Bass Lake","CA","California","TRUE","","541","1.5","06039","Madera","{""06039"": ""100""}","Madera","06039","FALSE","FALSE","America/Los_Angeles"
-"93605","37.20312","-119.24942","Big Creek","CA","California","TRUE","","198","183.6","06019","Fresno","{""06019"": ""100""}","Fresno","06019","FALSE","FALSE","America/Los_Angeles"
-"93606","36.80315","-120.01847","Biola","CA","California","TRUE","","1035","2660.2","06019","Fresno","{""06019"": ""100""}","Fresno","06019","FALSE","FALSE","America/Los_Angeles"
-"93608","36.48691","-120.35799","Cantua Creek","CA","California","TRUE","","1280","4.5","06019","Fresno","{""06019"": ""100""}","Fresno","06019","FALSE","FALSE","America/Los_Angeles"
-"93609","36.52658","-119.8641","Caruthers","CA","California","TRUE","","5177","32.5","06019","Fresno","{""06019"": ""100""}","Fresno","06019","FALSE","FALSE","America/Los_Angeles"
-"93610","37.09232","-120.28778","Chowchilla","CA","California","TRUE","","22724","32.2","06039","Madera","{""06039"": ""99.19"", ""06047"": ""0.81""}","Madera|Merced","06039|06047","FALSE","FALSE","America/Los_Angeles"
-"93611","36.8253","-119.68017","Clovis","CA","California","TRUE","","49053","1699.0","06019","Fresno","{""06019"": ""100""}","Fresno","06019","FALSE","FALSE","America/Los_Angeles"
-"93612","36.81483","-119.71057","Clovis","CA","California","TRUE","","35140","2074.8","06019","Fresno","{""06019"": ""100""}","Fresno","06019","FALSE","FALSE","America/Los_Angeles"
-"93614","37.20791","-119.73322","Coarsegold","CA","California","TRUE","","11982","40.3","06039","Madera","{""06039"": ""100""}","Madera","06039","FALSE","FALSE","America/Los_Angeles"
-"93615","36.50334","-119.28633","Cutler","CA","California","TRUE","","6347","146.5","06107","Tulare","{""06107"": ""100""}","Tulare","06107","FALSE","FALSE","America/Los_Angeles"
-"93616","36.65535","-119.59388","Del Rey","CA","California","TRUE","","2582","71.9","06019","Fresno","{""06019"": ""100""}","Fresno","06019","FALSE","FALSE","America/Los_Angeles"
-"93618","36.52102","-119.38943","Dinuba","CA","California","TRUE","","31470","182.3","06107","Tulare","{""06107"": ""99.02"", ""06019"": ""0.98""}","Tulare|Fresno","06107|06019","FALSE","FALSE","America/Los_Angeles"
-"93619","36.9156","-119.57915","Clovis","CA","California","TRUE","","39473","85.3","06019","Fresno","{""06019"": ""99.69"", ""06107"": ""0.31""}","Fresno|Tulare","06019|06107","FALSE","FALSE","America/Los_Angeles"
-"93620","37.02486","-120.62881","Dos Palos","CA","California","TRUE","","8906","19.7","06047","Merced","{""06047"": ""93.87"", ""06019"": ""6.13""}","Merced|Fresno","06047|06019","FALSE","FALSE","America/Los_Angeles"
-"93621","36.81464","-119.1721","Dunlap","CA","California","TRUE","","136","0.8","06019","Fresno","{""06019"": ""100""}","Fresno","06019","FALSE","FALSE","America/Los_Angeles"
-"93622","36.80934","-120.5792","Firebaugh","CA","California","TRUE","","10335","11.3","06019","Fresno","{""06019"": ""94.5"", ""06039"": ""5.04"", ""06047"": ""0.46""}","Fresno|Madera|Merced","06019|06039|06047","FALSE","FALSE","America/Los_Angeles"
-"93623","37.49377","-119.64269","Fish Camp","CA","California","TRUE","","114","1.4","06043","Mariposa","{""06043"": ""97.1"", ""06039"": ""2.9""}","Mariposa|Madera","06043|06039","FALSE","FALSE","America/Los_Angeles"
-"93624","36.37876","-120.11625","Five Points","CA","California","TRUE","","871","3.0","06019","Fresno","{""06019"": ""100""}","Fresno","06019","FALSE","FALSE","America/Los_Angeles"
-"93625","36.62455","-119.67187","Fowler","CA","California","TRUE","","8059","125.9","06019","Fresno","{""06019"": ""100""}","Fresno","06019","FALSE","FALSE","America/Los_Angeles"
-"93626","37.04218","-119.6807","Friant","CA","California","TRUE","","2427","9.4","06019","Fresno","{""06019"": ""75.94"", ""06039"": ""24.06""}","Fresno|Madera","06019|06039","FALSE","FALSE","America/Los_Angeles"
-"93627","36.50905","-120.08755","Helm","CA","California","TRUE","","247","2.7","06019","Fresno","{""06019"": ""100""}","Fresno","06019","FALSE","FALSE","America/Los_Angeles"
-"93628","36.79197","-118.92513","Hume","CA","California","TRUE","","83","0.9","06019","Fresno","{""06019"": ""100""}","Fresno","06019","FALSE","FALSE","America/Los_Angeles"
-"93630","36.7212","-120.12961","Kerman","CA","California","TRUE","","20764","51.5","06019","Fresno","{""06019"": ""100""}","Fresno","06019","FALSE","FALSE","America/Los_Angeles"
-"93631","36.47563","-119.52084","Kingsburg","CA","California","TRUE","","16282","78.4","06019","Fresno","{""06019"": ""82.35"", ""06107"": ""12.8"", ""06031"": ""4.85""}","Fresno|Tulare|Kings","06019|06107|06031","FALSE","FALSE","America/Los_Angeles"
-"93633","36.79306","-118.72273","Kings Canyon National Pk","CA","California","TRUE","","0","0.0","06107","Tulare","{""06107"": ""100"", ""06019"": ""0""}","Tulare|Fresno","06107|06019","FALSE","FALSE","America/Los_Angeles"
-"93634","37.2076","-118.94222","Lakeshore","CA","California","TRUE","","22","0.0","06019","Fresno","{""06019"": ""100""}","Fresno","06019","FALSE","FALSE","America/Los_Angeles"
-"93635","37.06906","-120.84552","Los Banos","CA","California","TRUE","","41180","61.1","06047","Merced","{""06047"": ""100""}","Merced","06047","FALSE","FALSE","America/Los_Angeles"
-"93636","36.98231","-119.87311","Madera","CA","California","TRUE","","13255","26.2","06039","Madera","{""06039"": ""100""}","Madera","06039","FALSE","FALSE","America/Los_Angeles"
-"93637","36.91104","-120.18748","Madera","CA","California","TRUE","","41108","58.7","06039","Madera","{""06039"": ""100""}","Madera","06039","FALSE","FALSE","America/Los_Angeles"
-"93638","37.04019","-120.03353","Madera","CA","California","TRUE","","49932","203.3","06039","Madera","{""06039"": ""100""}","Madera","06039","FALSE","FALSE","America/Los_Angeles"
-"93640","36.67424","-120.44196","Mendota","CA","California","TRUE","","12920","44.1","06019","Fresno","{""06019"": ""100""}","Fresno","06019","FALSE","FALSE","America/Los_Angeles"
-"93641","36.69905","-119.03191","Miramonte","CA","California","TRUE","","223","2.7","06019","Fresno","{""06019"": ""100""}","Fresno","06019","FALSE","FALSE","America/Los_Angeles"
-"93643","37.22644","-119.4668","North Fork","CA","California","TRUE","","2783","8.6","06039","Madera","{""06039"": ""100""}","Madera","06039","FALSE","FALSE","America/Los_Angeles"
-"93644","37.37857","-119.62883","Oakhurst","CA","California","TRUE","","9055","37.7","06039","Madera","{""06039"": ""100""}","Madera","06039","FALSE","FALSE","America/Los_Angeles"
-"93645","37.17103","-119.64134","O'Neals","CA","California","TRUE","","148","1.1","06039","Madera","{""06039"": ""100""}","Madera","06039","FALSE","FALSE","America/Los_Angeles"
-"93646","36.6447","-119.28916","Orange Cove","CA","California","TRUE","","11738","106.4","06019","Fresno","{""06019"": ""97.02"", ""06107"": ""2.98""}","Fresno|Tulare","06019|06107","FALSE","FALSE","America/Los_Angeles"
-"93647","36.59101","-119.16702","Orosi","CA","California","TRUE","","11407","41.2","06107","Tulare","{""06107"": ""100""}","Tulare","06107","FALSE","FALSE","America/Los_Angeles"
-"93648","36.62061","-119.52077","Parlier","CA","California","TRUE","","16087","270.8","06019","Fresno","{""06019"": ""100""}","Fresno","06019","FALSE","FALSE","America/Los_Angeles"
-"93650","36.84071","-119.79965","Fresno","CA","California","TRUE","","3173","1730.8","06019","Fresno","{""06019"": ""100""}","Fresno","06019","FALSE","FALSE","America/Los_Angeles"
-"93651","36.99198","-119.52392","Prather","CA","California","TRUE","","1798","24.2","06019","Fresno","{""06019"": ""100""}","Fresno","06019","FALSE","FALSE","America/Los_Angeles"
-"93652","36.59502","-119.90458","Raisin City","CA","California","TRUE","","540","101.0","06019","Fresno","{""06019"": ""100""}","Fresno","06019","FALSE","FALSE","America/Los_Angeles"
-"93653","37.24955","-119.94468","Raymond","CA","California","TRUE","","1377","2.2","06039","Madera","{""06039"": ""91.86"", ""06043"": ""8.14""}","Madera|Mariposa","06039|06043","FALSE","FALSE","America/Los_Angeles"
-"93654","36.65715","-119.40291","Reedley","CA","California","TRUE","","30373","118.9","06019","Fresno","{""06019"": ""97.44"", ""06107"": ""2.56""}","Fresno|Tulare","06019|06107","FALSE","FALSE","America/Los_Angeles"
-"93656","36.45516","-119.93595","Riverdale","CA","California","TRUE","","5806","20.4","06019","Fresno","{""06019"": ""94.38"", ""06031"": ""5.62""}","Fresno|Kings","06019|06031","FALSE","FALSE","America/Los_Angeles"
-"93657","36.78348","-119.44483","Sanger","CA","California","TRUE","","35666","64.5","06019","Fresno","{""06019"": ""100""}","Fresno","06019","FALSE","FALSE","America/Los_Angeles"
-"93660","36.58284","-120.176","San Joaquin","CA","California","TRUE","","4090","19.4","06019","Fresno","{""06019"": ""100""}","Fresno","06019","FALSE","FALSE","America/Los_Angeles"
-"93662","36.53927","-119.64197","Selma","CA","California","TRUE","","30725","150.6","06019","Fresno","{""06019"": ""100""}","Fresno","06019","FALSE","FALSE","America/Los_Angeles"
-"93664","37.0953","-119.21105","Shaver Lake","CA","California","TRUE","","380","0.8","06019","Fresno","{""06019"": ""100""}","Fresno","06019","FALSE","FALSE","America/Los_Angeles"
-"93665","36.96018","-120.64814","South Dos Palos","CA","California","TRUE","","752","345.1","06047","Merced","{""06047"": ""100""}","Merced","06047","FALSE","FALSE","America/Los_Angeles"
-"93666","36.54713","-119.33539","Sultana","CA","California","TRUE","","866","894.1","06107","Tulare","{""06107"": ""100""}","Tulare","06107","FALSE","FALSE","America/Los_Angeles"
-"93667","36.95577","-119.32515","Tollhouse","CA","California","TRUE","","2405","8.3","06019","Fresno","{""06019"": ""100""}","Fresno","06019","FALSE","FALSE","America/Los_Angeles"
-"93668","36.64862","-120.28502","Tranquillity","CA","California","TRUE","","1219","14.0","06019","Fresno","{""06019"": ""100""}","Fresno","06019","FALSE","FALSE","America/Los_Angeles"
-"93669","37.28276","-119.54215","Wishon","CA","California","TRUE","","238","13.5","06039","Madera","{""06039"": ""100""}","Madera","06039","FALSE","FALSE","America/Los_Angeles"
-"93673","36.45261","-119.48234","Traver","CA","California","TRUE","","754","350.0","06107","Tulare","{""06107"": ""100""}","Tulare","06107","FALSE","FALSE","America/Los_Angeles"
-"93675","36.72283","-119.19346","Squaw Valley","CA","California","TRUE","","3905","19.1","06019","Fresno","{""06019"": ""100""}","Fresno","06019","FALSE","FALSE","America/Los_Angeles"
-"93701","36.74968","-119.78766","Fresno","CA","California","TRUE","","10166","2590.7","06019","Fresno","{""06019"": ""100""}","Fresno","06019","FALSE","FALSE","America/Los_Angeles"
-"93702","36.73923","-119.75391","Fresno","CA","California","TRUE","","43601","3195.8","06019","Fresno","{""06019"": ""100""}","Fresno","06019","FALSE","FALSE","America/Los_Angeles"
-"93703","36.7689","-119.76245","Fresno","CA","California","TRUE","","32754","2675.2","06019","Fresno","{""06019"": ""100""}","Fresno","06019","FALSE","FALSE","America/Los_Angeles"
-"93704","36.79909","-119.8016","Fresno","CA","California","TRUE","","29740","2094.8","06019","Fresno","{""06019"": ""100""}","Fresno","06019","FALSE","FALSE","America/Los_Angeles"
-"93705","36.78671","-119.82832","Fresno","CA","California","TRUE","","36808","2923.5","06019","Fresno","{""06019"": ""100""}","Fresno","06019","FALSE","FALSE","America/Los_Angeles"
-"93706","36.65209","-119.90659","Fresno","CA","California","TRUE","","40586","95.9","06019","Fresno","{""06019"": ""100""}","Fresno","06019","FALSE","FALSE","America/Los_Angeles"
-"93710","36.82234","-119.76022","Fresno","CA","California","TRUE","","33448","1847.7","06019","Fresno","{""06019"": ""100""}","Fresno","06019","FALSE","FALSE","America/Los_Angeles"
-"93711","36.83459","-119.83117","Fresno","CA","California","TRUE","","38007","1301.0","06019","Fresno","{""06019"": ""100""}","Fresno","06019","FALSE","FALSE","America/Los_Angeles"
-"93720","36.86031","-119.76157","Fresno","CA","California","TRUE","","47081","1833.1","06019","Fresno","{""06019"": ""100""}","Fresno","06019","FALSE","FALSE","America/Los_Angeles"
-"93721","36.73291","-119.78374","Fresno","CA","California","TRUE","","7650","1440.7","06019","Fresno","{""06019"": ""100""}","Fresno","06019","FALSE","FALSE","America/Los_Angeles"
-"93722","36.80092","-119.87723","Fresno","CA","California","TRUE","","84621","1699.0","06019","Fresno","{""06019"": ""100""}","Fresno","06019","FALSE","FALSE","America/Los_Angeles"
-"93723","36.78624","-119.95324","Fresno","CA","California","TRUE","","13936","126.2","06019","Fresno","{""06019"": ""100""}","Fresno","06019","FALSE","FALSE","America/Los_Angeles"
-"93725","36.62534","-119.73651","Fresno","CA","California","TRUE","","27214","160.5","06019","Fresno","{""06019"": ""100""}","Fresno","06019","FALSE","FALSE","America/Los_Angeles"
-"93726","36.79367","-119.76145","Fresno","CA","California","TRUE","","42824","2626.7","06019","Fresno","{""06019"": ""100""}","Fresno","06019","FALSE","FALSE","America/Los_Angeles"
-"93727","36.75155","-119.6806","Fresno","CA","California","TRUE","","84449","1007.1","06019","Fresno","{""06019"": ""100""}","Fresno","06019","FALSE","FALSE","America/Los_Angeles"
-"93728","36.75727","-119.81834","Fresno","CA","California","TRUE","","16574","2092.1","06019","Fresno","{""06019"": ""100""}","Fresno","06019","FALSE","FALSE","America/Los_Angeles"
-"93730","36.90317","-119.75488","Fresno","CA","California","TRUE","","12770","618.7","06019","Fresno","{""06019"": ""100""}","Fresno","06019","FALSE","FALSE","America/Los_Angeles"
-"93901","36.63863","-121.62401","Salinas","CA","California","TRUE","","28194","744.7","06053","Monterey","{""06053"": ""100""}","Monterey","06053","FALSE","FALSE","America/Los_Angeles"
-"93905","36.68321","-121.60701","Salinas","CA","California","TRUE","","60531","2511.7","06053","Monterey","{""06053"": ""100""}","Monterey","06053","FALSE","FALSE","America/Los_Angeles"
-"93906","36.72258","-121.63228","Salinas","CA","California","TRUE","","64348","1900.0","06053","Monterey","{""06053"": ""100""}","Monterey","06053","FALSE","FALSE","America/Los_Angeles"
-"93907","36.76958","-121.66778","Salinas","CA","California","TRUE","","23299","166.7","06053","Monterey","{""06053"": ""100""}","Monterey","06053","FALSE","FALSE","America/Los_Angeles"
-"93908","36.63429","-121.60685","Salinas","CA","California","TRUE","","12398","22.3","06053","Monterey","{""06053"": ""100""}","Monterey","06053","FALSE","FALSE","America/Los_Angeles"
-"93920","36.11042","-121.56063","Big Sur","CA","California","TRUE","","1545","1.6","06053","Monterey","{""06053"": ""100""}","Monterey","06053","FALSE","FALSE","America/Los_Angeles"
-"93921","36.55396","-121.92296","Carmel By The Sea","CA","California","TRUE","","3316","1424.1","06053","Monterey","{""06053"": ""100""}","Monterey","06053","FALSE","FALSE","America/Los_Angeles"
-"93923","36.45757","-121.84387","Carmel","CA","California","TRUE","","12837","38.4","06053","Monterey","{""06053"": ""100""}","Monterey","06053","FALSE","FALSE","America/Los_Angeles"
-"93924","36.39891","-121.64066","Carmel Valley","CA","California","TRUE","","6514","13.2","06053","Monterey","{""06053"": ""100""}","Monterey","06053","FALSE","FALSE","America/Los_Angeles"
-"93925","36.60064","-121.43123","Chualar","CA","California","TRUE","","2073","14.7","06053","Monterey","{""06053"": ""100""}","Monterey","06053","FALSE","FALSE","America/Los_Angeles"
-"93926","36.52922","-121.40769","Gonzales","CA","California","TRUE","","9171","59.8","06053","Monterey","{""06053"": ""100""}","Monterey","06053","FALSE","FALSE","America/Los_Angeles"
-"93927","36.23358","-121.37717","Greenfield","CA","California","TRUE","","18812","27.5","06053","Monterey","{""06053"": ""100""}","Monterey","06053","FALSE","FALSE","America/Los_Angeles"
-"93928","36.03241","-121.23953","Jolon","CA","California","TRUE","","854","17.3","06053","Monterey","{""06053"": ""100""}","Monterey","06053","FALSE","FALSE","America/Los_Angeles"
-"93930","36.21475","-121.03097","King City","CA","California","TRUE","","17067","18.2","06053","Monterey","{""06053"": ""99.67"", ""06069"": ""0.33""}","Monterey|San Benito","06053|06069","FALSE","FALSE","America/Los_Angeles"
-"93932","35.99153","-121.06232","Lockwood","CA","California","TRUE","","709","2.7","06053","Monterey","{""06053"": ""100""}","Monterey","06053","FALSE","FALSE","America/Los_Angeles"
-"93933","36.68608","-121.787","Marina","CA","California","TRUE","","25442","763.7","06053","Monterey","{""06053"": ""100""}","Monterey","06053","FALSE","FALSE","America/Los_Angeles"
-"93940","36.57944","-121.84332","Monterey","CA","California","TRUE","","32236","607.4","06053","Monterey","{""06053"": ""100""}","Monterey","06053","FALSE","FALSE","America/Los_Angeles"
-"93943","36.59706","-121.87413","Monterey","CA","California","TRUE","","0","0.0","06053","Monterey","{""06053"": ""100""}","Monterey","06053","FALSE","FALSE","America/Los_Angeles"
-"93950","36.61901","-121.92547","Pacific Grove","CA","California","TRUE","","15547","2094.3","06053","Monterey","{""06053"": ""100""}","Monterey","06053","FALSE","FALSE","America/Los_Angeles"
-"93953","36.58571","-121.94389","Pebble Beach","CA","California","TRUE","","4028","193.4","06053","Monterey","{""06053"": ""100""}","Monterey","06053","FALSE","FALSE","America/Los_Angeles"
-"93954","36.13313","-120.94207","San Lucas","CA","California","TRUE","","551","5.8","06053","Monterey","{""06053"": ""100""}","Monterey","06053","FALSE","FALSE","America/Los_Angeles"
-"93955","36.62116","-121.79275","Seaside","CA","California","TRUE","","34566","472.6","06053","Monterey","{""06053"": ""100""}","Monterey","06053","FALSE","FALSE","America/Los_Angeles"
-"93960","36.39832","-121.34114","Soledad","CA","California","TRUE","","26966","51.0","06053","Monterey","{""06053"": ""100""}","Monterey","06053","FALSE","FALSE","America/Los_Angeles"
-"93962","36.62471","-121.64649","Spreckels","CA","California","TRUE","","414","1308.6","06053","Monterey","{""06053"": ""100""}","Monterey","06053","FALSE","FALSE","America/Los_Angeles"
-"94002","37.5135","-122.29905","Belmont","CA","California","TRUE","","27155","1852.0","06081","San Mateo","{""06081"": ""100""}","San Mateo","06081","FALSE","FALSE","America/Los_Angeles"
-"94005","37.68872","-122.40798","Brisbane","CA","California","TRUE","","4697","412.6","06081","San Mateo","{""06081"": ""100""}","San Mateo","06081","FALSE","FALSE","America/Los_Angeles"
-"94010","37.56932","-122.3653","Burlingame","CA","California","TRUE","","42760","1394.3","06081","San Mateo","{""06081"": ""100""}","San Mateo","06081","FALSE","FALSE","America/Los_Angeles"
-"94014","37.6909","-122.44745","Daly City","CA","California","TRUE","","49170","3013.0","06081","San Mateo","{""06081"": ""100""}","San Mateo","06081","FALSE","FALSE","America/Los_Angeles"
-"94015","37.68122","-122.48052","Daly City","CA","California","TRUE","","65041","4366.7","06081","San Mateo","{""06081"": ""100""}","San Mateo","06081","FALSE","FALSE","America/Los_Angeles"
-"94019","37.46472","-122.41624","Half Moon Bay","CA","California","TRUE","","20512","150.6","06081","San Mateo","{""06081"": ""100""}","San Mateo","06081","FALSE","FALSE","America/Los_Angeles"
-"94020","37.28423","-122.22832","La Honda","CA","California","TRUE","","1697","11.7","06081","San Mateo","{""06081"": ""100""}","San Mateo","06081","FALSE","FALSE","America/Los_Angeles"
-"94021","37.27091","-122.28065","Loma Mar","CA","California","TRUE","","511","43.5","06081","San Mateo","{""06081"": ""100""}","San Mateo","06081","FALSE","FALSE","America/Los_Angeles"
-"94022","37.35752","-122.14444","Los Altos","CA","California","TRUE","","19406","428.9","06085","Santa Clara","{""06085"": ""100""}","Santa Clara","06085","FALSE","FALSE","America/Los_Angeles"
-"94024","37.35221","-122.09438","Los Altos","CA","California","TRUE","","23675","1249.8","06085","Santa Clara","{""06085"": ""100""}","Santa Clara","06085","FALSE","FALSE","America/Los_Angeles"
-"94025","37.46321","-122.17249","Menlo Park","CA","California","TRUE","","43392","1399.0","06081","San Mateo","{""06081"": ""100""}","San Mateo","06081","FALSE","FALSE","America/Los_Angeles"
-"94027","37.45321","-122.20406","Atherton","CA","California","TRUE","","7415","550.9","06081","San Mateo","{""06081"": ""100""}","San Mateo","06081","FALSE","FALSE","America/Los_Angeles"
-"94028","37.37857","-122.21545","Portola Valley","CA","California","TRUE","","7125","180.6","06081","San Mateo","{""06081"": ""98.42"", ""06085"": ""1.58""}","San Mateo|Santa Clara","06081|06085","FALSE","FALSE","America/Los_Angeles"
-"94030","37.59972","-122.40305","Millbrae","CA","California","TRUE","","22625","2577.8","06081","San Mateo","{""06081"": ""100""}","San Mateo","06081","FALSE","FALSE","America/Los_Angeles"
-"94037","37.55433","-122.49667","Montara","CA","California","TRUE","","2504","167.5","06081","San Mateo","{""06081"": ""100""}","San Mateo","06081","FALSE","FALSE","America/Los_Angeles"
-"94038","37.52184","-122.50633","Moss Beach","CA","California","TRUE","","3450","845.2","06081","San Mateo","{""06081"": ""100""}","San Mateo","06081","FALSE","FALSE","America/Los_Angeles"
-"94040","37.38058","-122.08535","Mountain View","CA","California","TRUE","","36526","3824.5","06085","Santa Clara","{""06085"": ""100""}","Santa Clara","06085","FALSE","FALSE","America/Los_Angeles"
-"94041","37.38847","-122.07564","Mountain View","CA","California","TRUE","","14572","3674.0","06085","Santa Clara","{""06085"": ""100""}","Santa Clara","06085","FALSE","FALSE","America/Los_Angeles"
-"94043","37.41747","-122.07039","Mountain View","CA","California","TRUE","","31161","1126.8","06085","Santa Clara","{""06085"": ""100""}","Santa Clara","06085","FALSE","FALSE","America/Los_Angeles"
-"94044","37.60544","-122.48104","Pacifica","CA","California","TRUE","","38984","1025.7","06081","San Mateo","{""06081"": ""100""}","San Mateo","06081","FALSE","FALSE","America/Los_Angeles"
-"94060","37.22338","-122.33714","Pescadero","CA","California","TRUE","","926","4.9","06081","San Mateo","{""06081"": ""100""}","San Mateo","06081","FALSE","FALSE","America/Los_Angeles"
-"94061","37.46159","-122.2368","Redwood City","CA","California","TRUE","","39023","3902.8","06081","San Mateo","{""06081"": ""100""}","San Mateo","06081","FALSE","FALSE","America/Los_Angeles"
-"94062","37.42134","-122.30715","Redwood City","CA","California","TRUE","","28423","154.8","06081","San Mateo","{""06081"": ""100""}","San Mateo","06081","FALSE","FALSE","America/Los_Angeles"
-"94063","37.49484","-122.20804","Redwood City","CA","California","TRUE","","34867","2034.3","06081","San Mateo","{""06081"": ""100""}","San Mateo","06081","FALSE","FALSE","America/Los_Angeles"
-"94065","37.53542","-122.24673","Redwood City","CA","California","TRUE","","12461","2108.3","06081","San Mateo","{""06081"": ""100""}","San Mateo","06081","FALSE","FALSE","America/Los_Angeles"
-"94066","37.62508","-122.43358","San Bruno","CA","California","TRUE","","43101","2716.5","06081","San Mateo","{""06081"": ""100""}","San Mateo","06081","FALSE","FALSE","America/Los_Angeles"
-"94070","37.49764","-122.27003","San Carlos","CA","California","TRUE","","31074","1956.5","06081","San Mateo","{""06081"": ""100""}","San Mateo","06081","FALSE","FALSE","America/Los_Angeles"
-"94074","37.32588","-122.34979","San Gregorio","CA","California","TRUE","","170","3.5","06081","San Mateo","{""06081"": ""100""}","San Mateo","06081","FALSE","FALSE","America/Los_Angeles"
-"94080","37.65554","-122.42212","South San Francisco","CA","California","TRUE","","67600","2523.5","06081","San Mateo","{""06081"": ""100""}","San Mateo","06081","FALSE","FALSE","America/Los_Angeles"
-"94085","37.38854","-122.01776","Sunnyvale","CA","California","TRUE","","23223","2568.3","06085","Santa Clara","{""06085"": ""100""}","Santa Clara","06085","FALSE","FALSE","America/Los_Angeles"
-"94086","37.37165","-122.02306","Sunnyvale","CA","California","TRUE","","50477","4339.8","06085","Santa Clara","{""06085"": ""100""}","Santa Clara","06085","FALSE","FALSE","America/Los_Angeles"
-"94087","37.35154","-122.03688","Sunnyvale","CA","California","TRUE","","56668","3323.8","06085","Santa Clara","{""06085"": ""100""}","Santa Clara","06085","FALSE","FALSE","America/Los_Angeles"
-"94089","37.41154","-122.01404","Sunnyvale","CA","California","TRUE","","22882","1474.6","06085","Santa Clara","{""06085"": ""100""}","Santa Clara","06085","FALSE","FALSE","America/Los_Angeles"
-"94102","37.7797","-122.41924","San Francisco","CA","California","TRUE","","31392","18120.6","06075","San Francisco","{""06075"": ""100""}","San Francisco","06075","FALSE","FALSE","America/Los_Angeles"
-"94103","37.77323","-122.41114","San Francisco","CA","California","TRUE","","30703","8726.8","06075","San Francisco","{""06075"": ""100""}","San Francisco","06075","FALSE","FALSE","America/Los_Angeles"
-"94104","37.79146","-122.40207","San Francisco","CA","California","TRUE","","429","2135.8","06075","San Francisco","{""06075"": ""100""}","San Francisco","06075","FALSE","FALSE","America/Los_Angeles"
-"94105","37.78978","-122.39387","San Francisco","CA","California","TRUE","","10916","11587.8","06075","San Francisco","{""06075"": ""100""}","San Francisco","06075","FALSE","FALSE","America/Los_Angeles"
-"94107","37.76643","-122.39461","San Francisco","CA","California","TRUE","","31461","6769.2","06075","San Francisco","{""06075"": ""100""}","San Francisco","06075","FALSE","FALSE","America/Los_Angeles"
-"94108","37.79203","-122.40864","San Francisco","CA","California","TRUE","","14143","20257.7","06075","San Francisco","{""06075"": ""100""}","San Francisco","06075","FALSE","FALSE","America/Los_Angeles"
-"94109","37.7952","-122.4222","San Francisco","CA","California","TRUE","","57302","18618.2","06075","San Francisco","{""06075"": ""100""}","San Francisco","06075","FALSE","FALSE","America/Los_Angeles"
-"94110","37.74994","-122.41539","San Francisco","CA","California","TRUE","","72380","12023.4","06075","San Francisco","{""06075"": ""100""}","San Francisco","06075","FALSE","FALSE","America/Los_Angeles"
-"94111","37.79891","-122.39834","San Francisco","CA","California","TRUE","","3611","4052.1","06075","San Francisco","{""06075"": ""100""}","San Francisco","06075","FALSE","FALSE","America/Los_Angeles"
-"94112","37.72031","-122.4429","San Francisco","CA","California","TRUE","","84707","9713.9","06075","San Francisco","{""06075"": ""100""}","San Francisco","06075","FALSE","FALSE","America/Los_Angeles"
-"94114","37.75802","-122.43545","San Francisco","CA","California","TRUE","","34918","9456.4","06075","San Francisco","{""06075"": ""100""}","San Francisco","06075","FALSE","FALSE","America/Los_Angeles"
-"94115","37.78597","-122.43719","San Francisco","CA","California","TRUE","","34604","11974.5","06075","San Francisco","{""06075"": ""100""}","San Francisco","06075","FALSE","FALSE","America/Los_Angeles"
-"94116","37.74459","-122.48619","San Francisco","CA","California","TRUE","","47346","7067.6","06075","San Francisco","{""06075"": ""100""}","San Francisco","06075","FALSE","FALSE","America/Los_Angeles"
-"94117","37.76975","-122.44823","San Francisco","CA","California","TRUE","","44650","10210.2","06075","San Francisco","{""06075"": ""100""}","San Francisco","06075","FALSE","FALSE","America/Los_Angeles"
-"94118","37.7801","-122.46246","San Francisco","CA","California","TRUE","","42095","8339.4","06075","San Francisco","{""06075"": ""100""}","San Francisco","06075","FALSE","FALSE","America/Los_Angeles"
-"94121","37.77651","-122.49449","San Francisco","CA","California","TRUE","","43616","5465.6","06075","San Francisco","{""06075"": ""100""}","San Francisco","06075","FALSE","FALSE","America/Los_Angeles"
-"94122","37.75878","-122.48512","San Francisco","CA","California","TRUE","","62128","10143.6","06075","San Francisco","{""06075"": ""100""}","San Francisco","06075","FALSE","FALSE","America/Los_Angeles"
-"94123","37.80046","-122.43821","San Francisco","CA","California","TRUE","","25890","9782.4","06075","San Francisco","{""06075"": ""100""}","San Francisco","06075","FALSE","FALSE","America/Los_Angeles"
-"94124","37.73082","-122.38463","San Francisco","CA","California","TRUE","","35747","2801.6","06075","San Francisco","{""06075"": ""100""}","San Francisco","06075","FALSE","FALSE","America/Los_Angeles"
-"94127","37.7357","-122.45943","San Francisco","CA","California","TRUE","","21151","4612.4","06075","San Francisco","{""06075"": ""100""}","San Francisco","06075","FALSE","FALSE","America/Los_Angeles"
-"94128","37.62216","-122.38478","San Francisco","CA","California","TRUE","","146","16.0","06081","San Mateo","{""06081"": ""100""}","San Mateo","06081","FALSE","FALSE","America/Los_Angeles"
-"94129","37.79753","-122.46682","San Francisco","CA","California","TRUE","","4136","693.0","06075","San Francisco","{""06075"": ""100""}","San Francisco","06075","FALSE","FALSE","America/Los_Angeles"
-"94130","37.82048","-122.36952","San Francisco","CA","California","TRUE","","3008","1318.6","06075","San Francisco","{""06075"": ""100""}","San Francisco","06075","FALSE","FALSE","America/Los_Angeles"
-"94131","37.74543","-122.44291","San Francisco","CA","California","TRUE","","29523","5487.7","06075","San Francisco","{""06075"": ""100""}","San Francisco","06075","FALSE","FALSE","America/Los_Angeles"
-"94132","37.72213","-122.48481","San Francisco","CA","California","TRUE","","31436","3902.9","06075","San Francisco","{""06075"": ""100""}","San Francisco","06075","FALSE","FALSE","America/Los_Angeles"
-"94133","37.80381","-122.41073","San Francisco","CA","California","TRUE","","26796","13702.2","06075","San Francisco","{""06075"": ""100""}","San Francisco","06075","FALSE","FALSE","America/Los_Angeles"
-"94134","37.71941","-122.41178","San Francisco","CA","California","TRUE","","42418","6830.0","06075","San Francisco","{""06075"": ""100""}","San Francisco","06075","FALSE","FALSE","America/Los_Angeles"
-"94158","37.76976","-122.3876","San Francisco","CA","California","TRUE","","8455","4696.3","06075","San Francisco","{""06075"": ""100""}","San Francisco","06075","FALSE","FALSE","America/Los_Angeles"
-"94301","37.44412","-122.14995","Palo Alto","CA","California","TRUE","","16582","2699.9","06085","Santa Clara","{""06085"": ""100""}","Santa Clara","06085","FALSE","FALSE","America/Los_Angeles"
-"94303","37.45045","-122.11925","Palo Alto","CA","California","TRUE","","48244","2338.5","06081","San Mateo","{""06081"": ""61.92"", ""06085"": ""38.08""}","San Mateo|Santa Clara","06081|06085","FALSE","FALSE","America/Los_Angeles"
-"94304","37.38187","-122.17392","Palo Alto","CA","California","TRUE","","3852","228.8","06085","Santa Clara","{""06085"": ""100""}","Santa Clara","06085","FALSE","FALSE","America/Los_Angeles"
-"94305","37.41721","-122.17097","Stanford","CA","California","TRUE","","16397","1234.5","06085","Santa Clara","{""06085"": ""100""}","Santa Clara","06085","FALSE","FALSE","America/Los_Angeles"
-"94306","37.41571","-122.13078","Palo Alto","CA","California","TRUE","","27435","2526.1","06085","Santa Clara","{""06085"": ""100""}","Santa Clara","06085","FALSE","FALSE","America/Los_Angeles"
-"94401","37.57432","-122.31831","San Mateo","CA","California","TRUE","","36001","4359.7","06081","San Mateo","{""06081"": ""100""}","San Mateo","06081","FALSE","FALSE","America/Los_Angeles"
-"94402","37.54105","-122.33317","San Mateo","CA","California","TRUE","","25703","2040.6","06081","San Mateo","{""06081"": ""100""}","San Mateo","06081","FALSE","FALSE","America/Los_Angeles"
-"94403","37.53847","-122.30452","San Mateo","CA","California","TRUE","","44408","3044.9","06081","San Mateo","{""06081"": ""100""}","San Mateo","06081","FALSE","FALSE","America/Los_Angeles"
-"94404","37.556","-122.26892","San Mateo","CA","California","TRUE","","36985","3321.4","06081","San Mateo","{""06081"": ""100""}","San Mateo","06081","FALSE","FALSE","America/Los_Angeles"
-"94501","37.77516","-122.2748","Alameda","CA","California","TRUE","","63821","3108.7","06001","Alameda","{""06001"": ""100""}","Alameda","06001","FALSE","FALSE","America/Los_Angeles"
-"94502","37.73679","-122.24061","Alameda","CA","California","TRUE","","14701","2117.6","06001","Alameda","{""06001"": ""100""}","Alameda","06001","FALSE","FALSE","America/Los_Angeles"
-"94503","38.18419","-122.26293","American Canyon","CA","California","TRUE","","20276","605.9","06055","Napa","{""06055"": ""100""}","Napa","06055","FALSE","FALSE","America/Los_Angeles"
-"94505","37.86762","-121.58632","Discovery Bay","CA","California","TRUE","","16382","398.8","06013","Contra Costa","{""06013"": ""99.45"", ""06001"": ""0.55""}","Contra Costa|Alameda","06013|06001","FALSE","FALSE","America/Los_Angeles"
-"94506","37.8081","-121.90636","Danville","CA","California","TRUE","","25240","520.2","06013","Contra Costa","{""06013"": ""100""}","Contra Costa","06013","FALSE","FALSE","America/Los_Angeles"
-"94507","37.85042","-122.02108","Alamo","CA","California","TRUE","","15105","459.4","06013","Contra Costa","{""06013"": ""100""}","Contra Costa","06013","FALSE","FALSE","America/Los_Angeles"
-"94508","38.57675","-122.4442","Angwin","CA","California","TRUE","","3935","87.1","06055","Napa","{""06055"": ""100""}","Napa","06055","FALSE","FALSE","America/Los_Angeles"
-"94509","37.99679","-121.81259","Antioch","CA","California","TRUE","","68166","1607.5","06013","Contra Costa","{""06013"": ""100""}","Contra Costa","06013","FALSE","FALSE","America/Los_Angeles"
-"94510","38.09404","-122.13197","Benicia","CA","California","TRUE","","28350","393.3","06095","Solano","{""06095"": ""100""}","Solano","06095","FALSE","FALSE","America/Los_Angeles"
-"94511","38.02912","-121.64067","Bethel Island","CA","California","TRUE","","2161","159.3","06013","Contra Costa","{""06013"": ""100""}","Contra Costa","06013","FALSE","FALSE","America/Los_Angeles"
-"94512","38.13282","-121.83822","Birds Landing","CA","California","TRUE","","16","0.3","06095","Solano","{""06095"": ""100""}","Solano","06095","FALSE","FALSE","America/Los_Angeles"
-"94513","37.92338","-121.67505","Brentwood","CA","California","TRUE","","64313","327.6","06013","Contra Costa","{""06013"": ""100""}","Contra Costa","06013","FALSE","FALSE","America/Los_Angeles"
-"94514","37.82537","-121.62355","Byron","CA","California","TRUE","","1475","19.8","06013","Contra Costa","{""06013"": ""94.26"", ""06001"": ""5.74""}","Contra Costa|Alameda","06013|06001","FALSE","FALSE","America/Los_Angeles"
-"94515","38.62483","-122.61865","Calistoga","CA","California","TRUE","","7491","27.4","06055","Napa","{""06055"": ""91.89"", ""06097"": ""8.11""}","Napa|Sonoma","06055|06097","FALSE","FALSE","America/Los_Angeles"
-"94516","37.83387","-122.16498","Canyon","CA","California","TRUE","","103","45.5","06013","Contra Costa","{""06013"": ""100""}","Contra Costa","06013","FALSE","FALSE","America/Los_Angeles"
-"94517","37.89022","-121.87842","Clayton","CA","California","TRUE","","13687","92.3","06013","Contra Costa","{""06013"": ""100""}","Contra Costa","06013","FALSE","FALSE","America/Los_Angeles"
-"94518","37.95041","-122.02205","Concord","CA","California","TRUE","","28734","2039.2","06013","Contra Costa","{""06013"": ""100""}","Contra Costa","06013","FALSE","FALSE","America/Los_Angeles"
-"94519","37.98847","-122.01294","Concord","CA","California","TRUE","","20041","1763.6","06013","Contra Costa","{""06013"": ""100""}","Contra Costa","06013","FALSE","FALSE","America/Los_Angeles"
-"94520","37.99547","-122.04057","Concord","CA","California","TRUE","","38753","1526.1","06013","Contra Costa","{""06013"": ""100""}","Contra Costa","06013","FALSE","FALSE","America/Los_Angeles"
-"94521","37.95603","-121.95613","Concord","CA","California","TRUE","","43281","1288.1","06013","Contra Costa","{""06013"": ""100""}","Contra Costa","06013","FALSE","FALSE","America/Los_Angeles"
-"94523","37.95408","-122.07615","Pleasant Hill","CA","California","TRUE","","35005","1867.6","06013","Contra Costa","{""06013"": ""100""}","Contra Costa","06013","FALSE","FALSE","America/Los_Angeles"
-"94525","38.05278","-122.23117","Crockett","CA","California","TRUE","","3290","540.2","06013","Contra Costa","{""06013"": ""100""}","Contra Costa","06013","FALSE","FALSE","America/Los_Angeles"
-"94526","37.81443","-121.99152","Danville","CA","California","TRUE","","33135","856.9","06013","Contra Costa","{""06013"": ""100""}","Contra Costa","06013","FALSE","FALSE","America/Los_Angeles"
-"94528","37.84559","-121.95071","Diablo","CA","California","TRUE","","384","63.2","06013","Contra Costa","{""06013"": ""100""}","Contra Costa","06013","FALSE","FALSE","America/Los_Angeles"
-"94530","37.92157","-122.29846","El Cerrito","CA","California","TRUE","","26145","2092.3","06013","Contra Costa","{""06013"": ""100""}","Contra Costa","06013","FALSE","FALSE","America/Los_Angeles"
-"94531","37.96574","-121.77582","Antioch","CA","California","TRUE","","43022","1517.6","06013","Contra Costa","{""06013"": ""100""}","Contra Costa","06013","FALSE","FALSE","America/Los_Angeles"
-"94533","38.2806","-122.0067","Fairfield","CA","California","TRUE","","75909","1356.7","06095","Solano","{""06095"": ""100""}","Solano","06095","FALSE","FALSE","America/Los_Angeles"
-"94534","38.24227","-122.13138","Fairfield","CA","California","TRUE","","39239","191.4","06095","Solano","{""06095"": ""100""}","Solano","06095","FALSE","FALSE","America/Los_Angeles"
-"94535","38.28467","-121.93269","Travis Afb","CA","California","TRUE","","3842","389.2","06095","Solano","{""06095"": ""100""}","Solano","06095","FALSE","FALSE","America/Los_Angeles"
-"94536","37.57132","-121.9854","Fremont","CA","California","TRUE","","74837","1981.7","06001","Alameda","{""06001"": ""100""}","Alameda","06001","FALSE","FALSE","America/Los_Angeles"
-"94538","37.50626","-121.96364","Fremont","CA","California","TRUE","","67474","1581.6","06001","Alameda","{""06001"": ""100""}","Alameda","06001","FALSE","FALSE","America/Los_Angeles"
-"94539","37.51685","-121.91177","Fremont","CA","California","TRUE","","54982","835.4","06001","Alameda","{""06001"": ""100""}","Alameda","06001","FALSE","FALSE","America/Los_Angeles"
-"94541","37.67434","-122.08515","Hayward","CA","California","TRUE","","65928","3428.0","06001","Alameda","{""06001"": ""100""}","Alameda","06001","FALSE","FALSE","America/Los_Angeles"
-"94542","37.65984","-122.03717","Hayward","CA","California","TRUE","","14699","995.6","06001","Alameda","{""06001"": ""100""}","Alameda","06001","FALSE","FALSE","America/Los_Angeles"
-"94544","37.63382","-122.05719","Hayward","CA","California","TRUE","","79747","2810.2","06001","Alameda","{""06001"": ""100""}","Alameda","06001","FALSE","FALSE","America/Los_Angeles"
-"94545","37.6147","-122.11908","Hayward","CA","California","TRUE","","32724","586.2","06001","Alameda","{""06001"": ""100""}","Alameda","06001","FALSE","FALSE","America/Los_Angeles"
-"94546","37.71498","-122.08002","Castro Valley","CA","California","TRUE","","44378","1795.9","06001","Alameda","{""06001"": ""100""}","Alameda","06001","FALSE","FALSE","America/Los_Angeles"
-"94547","38.00655","-122.26146","Hercules","CA","California","TRUE","","25616","1815.7","06013","Contra Costa","{""06013"": ""100""}","Contra Costa","06013","FALSE","FALSE","America/Los_Angeles"
-"94548","37.9735","-121.65354","Knightsen","CA","California","TRUE","","377","52.7","06013","Contra Costa","{""06013"": ""100""}","Contra Costa","06013","FALSE","FALSE","America/Los_Angeles"
-"94549","37.89743","-122.1166","Lafayette","CA","California","TRUE","","29795","598.9","06013","Contra Costa","{""06013"": ""100""}","Contra Costa","06013","FALSE","FALSE","America/Los_Angeles"
-"94550","37.52911","-121.60113","Livermore","CA","California","TRUE","","50374","83.6","06001","Alameda","{""06001"": ""99.72"", ""06085"": ""0.28""}","Alameda|Santa Clara","06001|06085","FALSE","FALSE","America/Los_Angeles"
-"94551","37.75262","-121.77003","Livermore","CA","California","TRUE","","47227","231.8","06001","Alameda","{""06001"": ""99.44"", ""06013"": ""0.56""}","Alameda|Contra Costa","06001|06013","FALSE","FALSE","America/Los_Angeles"
-"94552","37.7131","-122.01796","Castro Valley","CA","California","TRUE","","14938","128.3","06001","Alameda","{""06001"": ""100""}","Alameda","06001","FALSE","FALSE","America/Los_Angeles"
-"94553","37.9954","-122.13499","Martinez","CA","California","TRUE","","49784","395.8","06013","Contra Costa","{""06013"": ""100""}","Contra Costa","06013","FALSE","FALSE","America/Los_Angeles"
-"94555","37.55558","-122.08081","Fremont","CA","California","TRUE","","38478","1279.6","06001","Alameda","{""06001"": ""100""}","Alameda","06001","FALSE","FALSE","America/Los_Angeles"
-"94556","37.84064","-122.11492","Moraga","CA","California","TRUE","","16428","519.1","06013","Contra Costa","{""06013"": ""100""}","Contra Costa","06013","FALSE","FALSE","America/Los_Angeles"
-"94558","38.4549","-122.25643","Napa","CA","California","TRUE","","68315","74.1","06055","Napa","{""06055"": ""100""}","Napa","06055","FALSE","FALSE","America/Los_Angeles"
-"94559","38.23297","-122.30795","Napa","CA","California","TRUE","","27593","291.3","06055","Napa","{""06055"": ""100""}","Napa","06055","FALSE","FALSE","America/Los_Angeles"
-"94560","37.52037","-122.03099","Newark","CA","California","TRUE","","47171","1319.2","06001","Alameda","{""06001"": ""100""}","Alameda","06001","FALSE","FALSE","America/Los_Angeles"
-"94561","37.99363","-121.69256","Oakley","CA","California","TRUE","","42473","964.6","06013","Contra Costa","{""06013"": ""100""}","Contra Costa","06013","FALSE","FALSE","America/Los_Angeles"
-"94563","37.87967","-122.18458","Orinda","CA","California","TRUE","","19644","438.6","06013","Contra Costa","{""06013"": ""100""}","Contra Costa","06013","FALSE","FALSE","America/Los_Angeles"
-"94564","37.99177","-122.27992","Pinole","CA","California","TRUE","","19260","1343.6","06013","Contra Costa","{""06013"": ""100""}","Contra Costa","06013","FALSE","FALSE","America/Los_Angeles"
-"94565","38.01584","-121.90708","Pittsburg","CA","California","TRUE","","97671","1255.6","06013","Contra Costa","{""06013"": ""100""}","Contra Costa","06013","FALSE","FALSE","America/Los_Angeles"
-"94566","37.64912","-121.8591","Pleasanton","CA","California","TRUE","","45893","902.7","06001","Alameda","{""06001"": ""100""}","Alameda","06001","FALSE","FALSE","America/Los_Angeles"
-"94567","38.70583","-122.38603","Pope Valley","CA","California","TRUE","","658","1.9","06055","Napa","{""06055"": ""100""}","Napa","06055","FALSE","FALSE","America/Los_Angeles"
-"94568","37.71525","-121.91467","Dublin","CA","California","TRUE","","55608","1404.3","06001","Alameda","{""06001"": ""100""}","Alameda","06001","FALSE","FALSE","America/Los_Angeles"
-"94569","38.03508","-122.19244","Port Costa","CA","California","TRUE","","180","29.4","06013","Contra Costa","{""06013"": ""100""}","Contra Costa","06013","FALSE","FALSE","America/Los_Angeles"
-"94571","38.15822","-121.74043","Rio Vista","CA","California","TRUE","","10605","34.8","06095","Solano","{""06095"": ""96.94"", ""06067"": ""3.06""}","Solano|Sacramento","06095|06067","FALSE","FALSE","America/Los_Angeles"
-"94572","38.03198","-122.25077","Rodeo","CA","California","TRUE","","10384","924.7","06013","Contra Costa","{""06013"": ""100""}","Contra Costa","06013","FALSE","FALSE","America/Los_Angeles"
-"94573","38.4556","-122.4261","Rutherford","CA","California","TRUE","","36","14.0","06055","Napa","{""06055"": ""100""}","Napa","06055","FALSE","FALSE","America/Los_Angeles"
-"94574","38.53569","-122.39274","Saint Helena","CA","California","TRUE","","8757","26.5","06055","Napa","{""06055"": ""100""}","Napa","06055","FALSE","FALSE","America/Los_Angeles"
-"94575","37.8419","-122.11042","Moraga","CA","California","TRUE","","1178","2725.6","06013","Contra Costa","{""06013"": ""100""}","Contra Costa","06013","FALSE","FALSE","America/Los_Angeles"
-"94576","38.54929","-122.4764","Deer Park","CA","California","TRUE","","105","109.7","06055","Napa","{""06055"": ""100""}","Napa","06055","FALSE","FALSE","America/Los_Angeles"
-"94577","37.71543","-122.16628","San Leandro","CA","California","TRUE","","47682","2259.5","06001","Alameda","{""06001"": ""100""}","Alameda","06001","FALSE","FALSE","America/Los_Angeles"
-"94578","37.70642","-122.1253","San Leandro","CA","California","TRUE","","41865","3601.3","06001","Alameda","{""06001"": ""100""}","Alameda","06001","FALSE","FALSE","America/Los_Angeles"
-"94579","37.68643","-122.15748","San Leandro","CA","California","TRUE","","21883","2701.6","06001","Alameda","{""06001"": ""100""}","Alameda","06001","FALSE","FALSE","America/Los_Angeles"
-"94580","37.67698","-122.13378","San Lorenzo","CA","California","TRUE","","30488","3416.4","06001","Alameda","{""06001"": ""100""}","Alameda","06001","FALSE","FALSE","America/Los_Angeles"
-"94582","37.76349","-121.91537","San Ramon","CA","California","TRUE","","42576","1259.7","06013","Contra Costa","{""06013"": ""100""}","Contra Costa","06013","FALSE","FALSE","America/Los_Angeles"
-"94583","37.75515","-121.97273","San Ramon","CA","California","TRUE","","35231","910.7","06013","Contra Costa","{""06013"": ""100""}","Contra Costa","06013","FALSE","FALSE","America/Los_Angeles"
-"94585","38.19379","-121.92595","Suisun City","CA","California","TRUE","","29525","101.4","06095","Solano","{""06095"": ""100""}","Solano","06095","FALSE","FALSE","America/Los_Angeles"
-"94586","37.57372","-121.8513","Sunol","CA","California","TRUE","","831","5.5","06001","Alameda","{""06001"": ""100""}","Alameda","06001","FALSE","FALSE","America/Los_Angeles"
-"94587","37.60315","-122.01865","Union City","CA","California","TRUE","","74722","1462.9","06001","Alameda","{""06001"": ""100""}","Alameda","06001","FALSE","FALSE","America/Los_Angeles"
-"94588","37.73748","-121.88184","Pleasanton","CA","California","TRUE","","37253","452.2","06001","Alameda","{""06001"": ""98.7"", ""06013"": ""1.3""}","Alameda|Contra Costa","06001|06013","FALSE","FALSE","America/Los_Angeles"
-"94589","38.16459","-122.23584","Vallejo","CA","California","TRUE","","31536","1059.4","06095","Solano","{""06095"": ""99.98"", ""06055"": ""0.02""}","Solano|Napa","06095|06055","FALSE","FALSE","America/Los_Angeles"
-"94590","38.10303","-122.2486","Vallejo","CA","California","TRUE","","37280","2422.6","06095","Solano","{""06095"": ""100""}","Solano","06095","FALSE","FALSE","America/Los_Angeles"
-"94591","38.12332","-122.19528","Vallejo","CA","California","TRUE","","55157","981.0","06095","Solano","{""06095"": ""100""}","Solano","06095","FALSE","FALSE","America/Los_Angeles"
-"94592","38.09194","-122.27466","Vallejo","CA","California","TRUE","","952","86.9","06095","Solano","{""06095"": ""100""}","Solano","06095","FALSE","FALSE","America/Los_Angeles"
-"94595","37.87197","-122.06933","Walnut Creek","CA","California","TRUE","","18117","1300.2","06013","Contra Costa","{""06013"": ""100""}","Contra Costa","06013","FALSE","FALSE","America/Los_Angeles"
-"94596","37.88907","-122.03753","Walnut Creek","CA","California","TRUE","","21700","1406.3","06013","Contra Costa","{""06013"": ""100""}","Contra Costa","06013","FALSE","FALSE","America/Los_Angeles"
-"94597","37.91827","-122.07155","Walnut Creek","CA","California","TRUE","","23108","2281.8","06013","Contra Costa","{""06013"": ""100""}","Contra Costa","06013","FALSE","FALSE","America/Los_Angeles"
-"94598","37.9011","-122.00047","Walnut Creek","CA","California","TRUE","","27831","706.0","06013","Contra Costa","{""06013"": ""100""}","Contra Costa","06013","FALSE","FALSE","America/Los_Angeles"
-"94599","38.41119","-122.36068","Yountville","CA","California","TRUE","","3108","435.9","06055","Napa","{""06055"": ""100""}","Napa","06055","FALSE","FALSE","America/Los_Angeles"
-"94601","37.7767","-122.2184","Oakland","CA","California","TRUE","","53039","6306.2","06001","Alameda","{""06001"": ""100""}","Alameda","06001","FALSE","FALSE","America/Los_Angeles"
-"94602","37.8041","-122.20704","Oakland","CA","California","TRUE","","30162","3523.3","06001","Alameda","{""06001"": ""100""}","Alameda","06001","FALSE","FALSE","America/Los_Angeles"
-"94603","37.73661","-122.17935","Oakland","CA","California","TRUE","","35862","4244.7","06001","Alameda","{""06001"": ""100""}","Alameda","06001","FALSE","FALSE","America/Los_Angeles"
-"94605","37.7604","-122.14834","Oakland","CA","California","TRUE","","43399","1871.0","06001","Alameda","{""06001"": ""100""}","Alameda","06001","FALSE","FALSE","America/Los_Angeles"
-"94606","37.79178","-122.24495","Oakland","CA","California","TRUE","","38220","6451.3","06001","Alameda","{""06001"": ""100""}","Alameda","06001","FALSE","FALSE","America/Los_Angeles"
-"94607","37.8073","-122.30019","Oakland","CA","California","TRUE","","26823","1757.8","06001","Alameda","{""06001"": ""100""}","Alameda","06001","FALSE","FALSE","America/Los_Angeles"
-"94608","37.83614","-122.28623","Emeryville","CA","California","TRUE","","31013","4387.4","06001","Alameda","{""06001"": ""100""}","Alameda","06001","FALSE","FALSE","America/Los_Angeles"
-"94609","37.83434","-122.26433","Oakland","CA","California","TRUE","","23726","5362.5","06001","Alameda","{""06001"": ""100""}","Alameda","06001","FALSE","FALSE","America/Los_Angeles"
-"94610","37.8114","-122.24237","Oakland","CA","California","TRUE","","31936","5650.9","06001","Alameda","{""06001"": ""100""}","Alameda","06001","FALSE","FALSE","America/Los_Angeles"
-"94611","37.83007","-122.2022","Oakland","CA","California","TRUE","","38975","1424.7","06001","Alameda","{""06001"": ""99.88"", ""06013"": ""0.12""}","Alameda|Contra Costa","06001|06013","FALSE","FALSE","America/Los_Angeles"
-"94612","37.80878","-122.26909","Oakland","CA","California","TRUE","","15785","7129.0","06001","Alameda","{""06001"": ""100""}","Alameda","06001","FALSE","FALSE","America/Los_Angeles"
-"94613","37.78093","-122.18285","Oakland","CA","California","TRUE","","855","1299.4","06001","Alameda","{""06001"": ""100""}","Alameda","06001","FALSE","FALSE","America/Los_Angeles"
-"94618","37.84402","-122.23887","Oakland","CA","California","TRUE","","17252","2745.7","06001","Alameda","{""06001"": ""100""}","Alameda","06001","FALSE","FALSE","America/Los_Angeles"
-"94619","37.77751","-122.13151","Oakland","CA","California","TRUE","","24112","596.3","06001","Alameda","{""06001"": ""100""}","Alameda","06001","FALSE","FALSE","America/Los_Angeles"
-"94621","37.7388","-122.20814","Oakland","CA","California","TRUE","","35035","1739.8","06001","Alameda","{""06001"": ""100""}","Alameda","06001","FALSE","FALSE","America/Los_Angeles"
-"94702","37.86576","-122.28629","Berkeley","CA","California","TRUE","","16860","5109.6","06001","Alameda","{""06001"": ""100""}","Alameda","06001","FALSE","FALSE","America/Los_Angeles"
-"94703","37.86389","-122.27564","Berkeley","CA","California","TRUE","","21697","6269.0","06001","Alameda","{""06001"": ""100""}","Alameda","06001","FALSE","FALSE","America/Los_Angeles"
-"94704","37.86656","-122.25805","Berkeley","CA","California","TRUE","","29597","10704.2","06001","Alameda","{""06001"": ""100""}","Alameda","06001","FALSE","FALSE","America/Los_Angeles"
-"94705","37.86522","-122.23818","Berkeley","CA","California","TRUE","","13527","1580.1","06001","Alameda","{""06001"": ""100""}","Alameda","06001","FALSE","FALSE","America/Los_Angeles"
-"94706","37.8897","-122.29551","Albany","CA","California","TRUE","","21218","5547.2","06001","Alameda","{""06001"": ""99.98"", ""06013"": ""0.02""}","Alameda|Contra Costa","06001|06013","FALSE","FALSE","America/Los_Angeles"
-"94707","37.89833","-122.27918","Berkeley","CA","California","TRUE","","11767","2680.0","06001","Alameda","{""06001"": ""76.28"", ""06013"": ""23.72""}","Alameda|Contra Costa","06001|06013","FALSE","FALSE","America/Los_Angeles"
-"94708","37.90265","-122.26195","Berkeley","CA","California","TRUE","","11394","1297.0","06001","Alameda","{""06001"": ""79.34"", ""06013"": ""20.66""}","Alameda|Contra Costa","06001|06013","FALSE","FALSE","America/Los_Angeles"
-"94709","37.87927","-122.26689","Berkeley","CA","California","TRUE","","11951","7849.6","06001","Alameda","{""06001"": ""100""}","Alameda","06001","FALSE","FALSE","America/Los_Angeles"
-"94710","37.86734","-122.30312","Berkeley","CA","California","TRUE","","7893","1415.7","06001","Alameda","{""06001"": ""100""}","Alameda","06001","FALSE","FALSE","America/Los_Angeles"
-"94720","37.87396","-122.25477","Berkeley","CA","California","TRUE","","2845","1766.4","06001","Alameda","{""06001"": ""100""}","Alameda","06001","FALSE","FALSE","America/Los_Angeles"
-"94801","37.94964","-122.38113","Richmond","CA","California","TRUE","","31210","1075.7","06013","Contra Costa","{""06013"": ""100""}","Contra Costa","06013","FALSE","FALSE","America/Los_Angeles"
-"94803","37.95953","-122.28365","El Sobrante","CA","California","TRUE","","25893","856.1","06013","Contra Costa","{""06013"": ""100""}","Contra Costa","06013","FALSE","FALSE","America/Los_Angeles"
-"94804","37.92101","-122.34169","Richmond","CA","California","TRUE","","40931","2554.0","06013","Contra Costa","{""06013"": ""100""}","Contra Costa","06013","FALSE","FALSE","America/Los_Angeles"
-"94805","37.94279","-122.32296","Richmond","CA","California","TRUE","","14188","2762.5","06013","Contra Costa","{""06013"": ""100""}","Contra Costa","06013","FALSE","FALSE","America/Los_Angeles"
-"94806","37.98005","-122.3375","San Pablo","CA","California","TRUE","","64286","2978.3","06013","Contra Costa","{""06013"": ""100""}","Contra Costa","06013","FALSE","FALSE","America/Los_Angeles"
-"94850","37.90243","-122.31961","Richmond","CA","California","TRUE","","0","0.0","06013","Contra Costa","{""06013"": ""0""}","Contra Costa","06013","FALSE","FALSE","America/Los_Angeles"
-"94901","37.97999","-122.50281","San Rafael","CA","California","TRUE","","41713","1223.6","06041","Marin","{""06041"": ""100""}","Marin","06041","FALSE","FALSE","America/Los_Angeles"
-"94903","38.02479","-122.55223","San Rafael","CA","California","TRUE","","30427","586.2","06041","Marin","{""06041"": ""100""}","Marin","06041","FALSE","FALSE","America/Los_Angeles"
-"94904","37.94522","-122.56278","Greenbrae","CA","California","TRUE","","12994","693.0","06041","Marin","{""06041"": ""100""}","Marin","06041","FALSE","FALSE","America/Los_Angeles"
-"94920","37.88749","-122.46576","Belvedere Tiburon","CA","California","TRUE","","12740","752.9","06041","Marin","{""06041"": ""100""}","Marin","06041","FALSE","FALSE","America/Los_Angeles"
-"94922","38.34186","-122.94952","Bodega","CA","California","TRUE","","1075","33.7","06097","Sonoma","{""06097"": ""100""}","Sonoma","06097","FALSE","FALSE","America/Los_Angeles"
-"94923","38.34163","-123.03126","Bodega Bay","CA","California","TRUE","","808","14.6","06097","Sonoma","{""06097"": ""100""}","Sonoma","06097","FALSE","FALSE","America/Los_Angeles"
-"94924","37.94541","-122.72056","Bolinas","CA","California","TRUE","","1127","18.8","06041","Marin","{""06041"": ""100""}","Marin","06041","FALSE","FALSE","America/Los_Angeles"
-"94925","37.92376","-122.5128","Corte Madera","CA","California","TRUE","","9838","1202.0","06041","Marin","{""06041"": ""100""}","Marin","06041","FALSE","FALSE","America/Los_Angeles"
-"94928","38.3464","-122.69419","Rohnert Park","CA","California","TRUE","","44323","2221.5","06097","Sonoma","{""06097"": ""100""}","Sonoma","06097","FALSE","FALSE","America/Los_Angeles"
-"94929","38.25237","-122.96279","Dillon Beach","CA","California","TRUE","","254","92.4","06041","Marin","{""06041"": ""100""}","Marin","06041","FALSE","FALSE","America/Los_Angeles"
-"94930","37.96513","-122.61276","Fairfax","CA","California","TRUE","","8728","210.9","06041","Marin","{""06041"": ""100""}","Marin","06041","FALSE","FALSE","America/Los_Angeles"
-"94931","38.32462","-122.71597","Cotati","CA","California","TRUE","","8926","542.5","06097","Sonoma","{""06097"": ""100""}","Sonoma","06097","FALSE","FALSE","America/Los_Angeles"
-"94933","38.01252","-122.68743","Forest Knolls","CA","California","TRUE","","837","295.2","06041","Marin","{""06041"": ""100""}","Marin","06041","FALSE","FALSE","America/Los_Angeles"
-"94937","38.10872","-122.91398","Inverness","CA","California","TRUE","","742","6.9","06041","Marin","{""06041"": ""100""}","Marin","06041","FALSE","FALSE","America/Los_Angeles"
-"94938","38.02907","-122.72653","Lagunitas","CA","California","TRUE","","920","33.6","06041","Marin","{""06041"": ""100""}","Marin","06041","FALSE","FALSE","America/Los_Angeles"
-"94939","37.93719","-122.53391","Larkspur","CA","California","TRUE","","6747","1217.4","06041","Marin","{""06041"": ""100""}","Marin","06041","FALSE","FALSE","America/Los_Angeles"
-"94940","38.17042","-122.87275","Marshall","CA","California","TRUE","","287","4.9","06041","Marin","{""06041"": ""100""}","Marin","06041","FALSE","FALSE","America/Los_Angeles"
-"94941","37.89517","-122.55924","Mill Valley","CA","California","TRUE","","32009","555.6","06041","Marin","{""06041"": ""100""}","Marin","06041","FALSE","FALSE","America/Los_Angeles"
-"94945","38.12808","-122.55832","Novato","CA","California","TRUE","","19043","279.0","06041","Marin","{""06041"": ""100""}","Marin","06041","FALSE","FALSE","America/Los_Angeles"
-"94946","38.07889","-122.69433","Nicasio","CA","California","TRUE","","658","5.8","06041","Marin","{""06041"": ""100""}","Marin","06041","FALSE","FALSE","America/Los_Angeles"
-"94947","38.11324","-122.62972","Novato","CA","California","TRUE","","25867","440.1","06041","Marin","{""06041"": ""100""}","Marin","06041","FALSE","FALSE","America/Los_Angeles"
-"94949","38.06529","-122.53839","Novato","CA","California","TRUE","","18695","485.6","06041","Marin","{""06041"": ""100""}","Marin","06041","FALSE","FALSE","America/Los_Angeles"
-"94950","38.02486","-122.75993","Olema","CA","California","TRUE","","123","5.5","06041","Marin","{""06041"": ""100""}","Marin","06041","FALSE","FALSE","America/Los_Angeles"
-"94951","38.32084","-122.64615","Penngrove","CA","California","TRUE","","4574","120.5","06097","Sonoma","{""06097"": ""100""}","Sonoma","06097","FALSE","FALSE","America/Los_Angeles"
-"94952","38.2346","-122.75895","Petaluma","CA","California","TRUE","","35503","76.0","06097","Sonoma","{""06097"": ""97.96"", ""06041"": ""2.04""}","Sonoma|Marin","06097|06041","FALSE","FALSE","America/Los_Angeles"
-"94954","38.23578","-122.55986","Petaluma","CA","California","TRUE","","38763","241.4","06097","Sonoma","{""06097"": ""100""}","Sonoma","06097","FALSE","FALSE","America/Los_Angeles"
-"94956","38.05359","-122.85161","Point Reyes Station","CA","California","TRUE","","1146","7.6","06041","Marin","{""06041"": ""100""}","Marin","06041","FALSE","FALSE","America/Los_Angeles"
-"94957","37.96308","-122.56369","Ross","CA","California","TRUE","","1219","411.7","06041","Marin","{""06041"": ""100""}","Marin","06041","FALSE","FALSE","America/Los_Angeles"
-"94960","37.99584","-122.5778","San Anselmo","CA","California","TRUE","","15868","1032.4","06041","Marin","{""06041"": ""100""}","Marin","06041","FALSE","FALSE","America/Los_Angeles"
-"94963","38.01376","-122.67024","San Geronimo","CA","California","TRUE","","404","58.6","06041","Marin","{""06041"": ""100""}","Marin","06041","FALSE","FALSE","America/Los_Angeles"
-"94964","37.94315","-122.49181","San Quentin","CA","California","TRUE","","3155","3133.8","06041","Marin","{""06041"": ""100""}","Marin","06041","FALSE","FALSE","America/Los_Angeles"
-"94965","37.84993","-122.52355","Sausalito","CA","California","TRUE","","11394","325.7","06041","Marin","{""06041"": ""100""}","Marin","06041","FALSE","FALSE","America/Los_Angeles"
-"94970","37.9145","-122.64684","Stinson Beach","CA","California","TRUE","","698","38.8","06041","Marin","{""06041"": ""100""}","Marin","06041","FALSE","FALSE","America/Los_Angeles"
-"94971","38.24177","-122.91434","Tomales","CA","California","TRUE","","226","7.0","06041","Marin","{""06041"": ""100""}","Marin","06041","FALSE","FALSE","America/Los_Angeles"
-"94972","38.28951","-122.95895","Valley Ford","CA","California","TRUE","","25","0.8","06041","Marin","{""06041"": ""100""}","Marin","06041","FALSE","FALSE","America/Los_Angeles"
-"94973","38.01266","-122.63965","Woodacre","CA","California","TRUE","","1228","119.0","06041","Marin","{""06041"": ""100""}","Marin","06041","FALSE","FALSE","America/Los_Angeles"
-"95002","37.44201","-122.0052","Alviso","CA","California","TRUE","","2348","76.4","06085","Santa Clara","{""06085"": ""100""}","Santa Clara","06085","FALSE","FALSE","America/Los_Angeles"
-"95003","37.01015","-121.87763","Aptos","CA","California","TRUE","","25185","277.0","06087","Santa Cruz","{""06087"": ""100""}","Santa Cruz","06087","FALSE","FALSE","America/Los_Angeles"
-"95004","36.87409","-121.633","Aromas","CA","California","TRUE","","4218","89.7","06053","Monterey","{""06053"": ""60.75"", ""06069"": ""39.25""}","Monterey|San Benito","06053|06069","FALSE","FALSE","America/Los_Angeles"
-"95005","37.09905","-122.08716","Ben Lomond","CA","California","TRUE","","7661","247.7","06087","Santa Cruz","{""06087"": ""100""}","Santa Cruz","06087","FALSE","FALSE","America/Los_Angeles"
-"95006","37.16994","-122.14742","Boulder Creek","CA","California","TRUE","","9632","69.5","06087","Santa Cruz","{""06087"": ""100""}","Santa Cruz","06087","FALSE","FALSE","America/Los_Angeles"
-"95007","37.10502","-122.10678","Brookdale","CA","California","TRUE","","374","252.3","06087","Santa Cruz","{""06087"": ""100""}","Santa Cruz","06087","FALSE","FALSE","America/Los_Angeles"
-"95008","37.27967","-121.95503","Campbell","CA","California","TRUE","","46352","2765.3","06085","Santa Clara","{""06085"": ""100""}","Santa Clara","06085","FALSE","FALSE","America/Los_Angeles"
-"95010","36.97722","-121.95476","Capitola","CA","California","TRUE","","8856","2491.4","06087","Santa Cruz","{""06087"": ""100""}","Santa Cruz","06087","FALSE","FALSE","America/Los_Angeles"
-"95012","36.77657","-121.75298","Castroville","CA","California","TRUE","","10780","278.9","06053","Monterey","{""06053"": ""100""}","Monterey","06053","FALSE","FALSE","America/Los_Angeles"
-"95013","37.21535","-121.74153","Coyote","CA","California","TRUE","","85","21.8","06085","Santa Clara","{""06085"": ""100""}","Santa Clara","06085","FALSE","FALSE","America/Los_Angeles"
-"95014","37.30494","-122.08069","Cupertino","CA","California","TRUE","","61866","880.7","06085","Santa Clara","{""06085"": ""100""}","Santa Clara","06085","FALSE","FALSE","America/Los_Angeles"
-"95017","37.10583","-122.24176","Davenport","CA","California","TRUE","","681","5.3","06087","Santa Cruz","{""06087"": ""100""}","Santa Cruz","06087","FALSE","FALSE","America/Los_Angeles"
-"95018","37.07408","-122.05934","Felton","CA","California","TRUE","","6841","140.5","06087","Santa Cruz","{""06087"": ""100""}","Santa Cruz","06087","FALSE","FALSE","America/Los_Angeles"
-"95019","36.9355","-121.7832","Freedom","CA","California","TRUE","","7368","2343.0","06087","Santa Cruz","{""06087"": ""100""}","Santa Cruz","06087","FALSE","FALSE","America/Los_Angeles"
-"95020","37.01425","-121.54993","Gilroy","CA","California","TRUE","","64833","160.4","06085","Santa Clara","{""06085"": ""100""}","Santa Clara","06085","FALSE","FALSE","America/Los_Angeles"
-"95023","36.89993","-121.35126","Hollister","CA","California","TRUE","","53423","50.0","06069","San Benito","{""06069"": ""99.62"", ""06085"": ""0.38""}","San Benito|Santa Clara","06069|06085","FALSE","FALSE","America/Los_Angeles"
-"95030","37.22311","-121.98395","Los Gatos","CA","California","TRUE","","13481","506.0","06085","Santa Clara","{""06085"": ""100""}","Santa Clara","06085","FALSE","FALSE","America/Los_Angeles"
-"95032","37.21505","-121.92794","Los Gatos","CA","California","TRUE","","26047","625.6","06085","Santa Clara","{""06085"": ""100""}","Santa Clara","06085","FALSE","FALSE","America/Los_Angeles"
-"95033","37.16017","-121.98213","Los Gatos","CA","California","TRUE","","9511","40.1","06087","Santa Cruz","{""06087"": ""56.43"", ""06085"": ""43.57""}","Santa Cruz|Santa Clara","06087|06085","FALSE","FALSE","America/Los_Angeles"
-"95035","37.44421","-121.87432","Milpitas","CA","California","TRUE","","79655","1315.2","06085","Santa Clara","{""06085"": ""100""}","Santa Clara","06085","FALSE","FALSE","America/Los_Angeles"
-"95037","37.16773","-121.59354","Morgan Hill","CA","California","TRUE","","51994","82.4","06085","Santa Clara","{""06085"": ""100""}","Santa Clara","06085","FALSE","FALSE","America/Los_Angeles"
-"95039","36.82653","-121.77489","Moss Landing","CA","California","TRUE","","1074","28.1","06053","Monterey","{""06053"": ""100""}","Monterey","06053","FALSE","FALSE","America/Los_Angeles"
-"95041","37.05082","-122.0576","Mount Hermon","CA","California","TRUE","","436","4157.1","06087","Santa Cruz","{""06087"": ""100""}","Santa Cruz","06087","FALSE","FALSE","America/Los_Angeles"
-"95043","36.52513","-120.96137","Paicines","CA","California","TRUE","","731","0.3","06069","San Benito","{""06069"": ""100""}","San Benito","06069","FALSE","FALSE","America/Los_Angeles"
-"95045","36.83417","-121.52738","San Juan Bautista","CA","California","TRUE","","4217","34.3","06069","San Benito","{""06069"": ""100""}","San Benito","06069","FALSE","FALSE","America/Los_Angeles"
-"95046","37.09614","-121.59504","San Martin","CA","California","TRUE","","5918","117.1","06085","Santa Clara","{""06085"": ""100""}","Santa Clara","06085","FALSE","FALSE","America/Los_Angeles"
-"95050","37.35113","-121.95226","Santa Clara","CA","California","TRUE","","38699","2832.8","06085","Santa Clara","{""06085"": ""100""}","Santa Clara","06085","FALSE","FALSE","America/Los_Angeles"
-"95051","37.34861","-121.98434","Santa Clara","CA","California","TRUE","","59851","3473.0","06085","Santa Clara","{""06085"": ""100""}","Santa Clara","06085","FALSE","FALSE","America/Los_Angeles"
-"95053","37.34878","-121.93768","Santa Clara","CA","California","TRUE","","3862","8731.3","06085","Santa Clara","{""06085"": ""100""}","Santa Clara","06085","FALSE","FALSE","America/Los_Angeles"
-"95054","37.3934","-121.96471","Santa Clara","CA","California","TRUE","","24524","1519.2","06085","Santa Clara","{""06085"": ""100""}","Santa Clara","06085","FALSE","FALSE","America/Los_Angeles"
-"95060","37.03425","-122.12038","Santa Cruz","CA","California","TRUE","","47801","272.1","06087","Santa Cruz","{""06087"": ""100""}","Santa Cruz","06087","FALSE","FALSE","America/Los_Angeles"
-"95062","36.97258","-121.99009","Santa Cruz","CA","California","TRUE","","36737","2809.7","06087","Santa Cruz","{""06087"": ""100""}","Santa Cruz","06087","FALSE","FALSE","America/Los_Angeles"
-"95064","36.9911","-122.05902","Santa Cruz","CA","California","TRUE","","10486","2158.5","06087","Santa Cruz","{""06087"": ""100""}","Santa Cruz","06087","FALSE","FALSE","America/Los_Angeles"
-"95065","37.03154","-121.98329","Santa Cruz","CA","California","TRUE","","8491","293.0","06087","Santa Cruz","{""06087"": ""100""}","Santa Cruz","06087","FALSE","FALSE","America/Los_Angeles"
-"95066","37.06792","-122.01399","Scotts Valley","CA","California","TRUE","","15341","312.6","06087","Santa Cruz","{""06087"": ""100""}","Santa Cruz","06087","FALSE","FALSE","America/Los_Angeles"
-"95070","37.25638","-122.04963","Saratoga","CA","California","TRUE","","31196","473.0","06085","Santa Clara","{""06085"": ""100""}","Santa Clara","06085","FALSE","FALSE","America/Los_Angeles"
-"95073","37.0423","-121.92994","Soquel","CA","California","TRUE","","11013","200.6","06087","Santa Cruz","{""06087"": ""100""}","Santa Cruz","06087","FALSE","FALSE","America/Los_Angeles"
-"95075","36.78021","-121.14122","Tres Pinos","CA","California","TRUE","","459","1.9","06069","San Benito","{""06069"": ""100""}","San Benito","06069","FALSE","FALSE","America/Los_Angeles"
-"95076","36.93927","-121.74841","Watsonville","CA","California","TRUE","","86905","245.8","06087","Santa Cruz","{""06087"": ""83.32"", ""06053"": ""16.58"", ""06085"": ""0.1""}","Santa Cruz|Monterey|Santa Clara","06087|06053|06085","FALSE","FALSE","America/Los_Angeles"
-"95110","37.34662","-121.90993","San Jose","CA","California","TRUE","","19928","1647.5","06085","Santa Clara","{""06085"": ""100""}","Santa Clara","06085","FALSE","FALSE","America/Los_Angeles"
-"95111","37.28342","-121.82652","San Jose","CA","California","TRUE","","61830","4402.2","06085","Santa Clara","{""06085"": ""100""}","Santa Clara","06085","FALSE","FALSE","America/Los_Angeles"
-"95112","37.34442","-121.88351","San Jose","CA","California","TRUE","","62228","3388.0","06085","Santa Clara","{""06085"": ""100""}","Santa Clara","06085","FALSE","FALSE","America/Los_Angeles"
-"95113","37.33368","-121.89102","San Jose","CA","California","TRUE","","2107","2392.7","06085","Santa Clara","{""06085"": ""100""}","Santa Clara","06085","FALSE","FALSE","America/Los_Angeles"
-"95116","37.35042","-121.85257","San Jose","CA","California","TRUE","","55825","6002.2","06085","Santa Clara","{""06085"": ""100""}","Santa Clara","06085","FALSE","FALSE","America/Los_Angeles"
-"95117","37.31126","-121.96191","San Jose","CA","California","TRUE","","30369","4567.1","06085","Santa Clara","{""06085"": ""100""}","Santa Clara","06085","FALSE","FALSE","America/Los_Angeles"
-"95118","37.25548","-121.89","San Jose","CA","California","TRUE","","32421","3069.0","06085","Santa Clara","{""06085"": ""100""}","Santa Clara","06085","FALSE","FALSE","America/Los_Angeles"
-"95119","37.22893","-121.78599","San Jose","CA","California","TRUE","","10027","1366.4","06085","Santa Clara","{""06085"": ""100""}","Santa Clara","06085","FALSE","FALSE","America/Los_Angeles"
-"95120","37.18235","-121.84392","San Jose","CA","California","TRUE","","38122","370.4","06085","Santa Clara","{""06085"": ""100""}","Santa Clara","06085","FALSE","FALSE","America/Los_Angeles"
-"95121","37.30421","-121.80994","San Jose","CA","California","TRUE","","37531","3271.3","06085","Santa Clara","{""06085"": ""100""}","Santa Clara","06085","FALSE","FALSE","America/Los_Angeles"
-"95122","37.3287","-121.83526","San Jose","CA","California","TRUE","","56121","4556.8","06085","Santa Clara","{""06085"": ""100""}","Santa Clara","06085","FALSE","FALSE","America/Los_Angeles"
-"95123","37.24484","-121.83302","San Jose","CA","California","TRUE","","68766","3205.0","06085","Santa Clara","{""06085"": ""100""}","Santa Clara","06085","FALSE","FALSE","America/Los_Angeles"
-"95124","37.25689","-121.92271","San Jose","CA","California","TRUE","","51455","3036.1","06085","Santa Clara","{""06085"": ""100""}","Santa Clara","06085","FALSE","FALSE","America/Los_Angeles"
-"95125","37.29504","-121.89144","San Jose","CA","California","TRUE","","53155","2567.5","06085","Santa Clara","{""06085"": ""100""}","Santa Clara","06085","FALSE","FALSE","America/Los_Angeles"
-"95126","37.32676","-121.91671","San Jose","CA","California","TRUE","","36206","4253.4","06085","Santa Clara","{""06085"": ""100""}","Santa Clara","06085","FALSE","FALSE","America/Los_Angeles"
-"95127","37.37108","-121.80071","San Jose","CA","California","TRUE","","66256","1968.3","06085","Santa Clara","{""06085"": ""100""}","Santa Clara","06085","FALSE","FALSE","America/Los_Angeles"
-"95128","37.31596","-121.93633","San Jose","CA","California","TRUE","","36975","3659.7","06085","Santa Clara","{""06085"": ""100""}","Santa Clara","06085","FALSE","FALSE","America/Los_Angeles"
-"95129","37.30575","-122.00091","San Jose","CA","California","TRUE","","39741","3397.0","06085","Santa Clara","{""06085"": ""100""}","Santa Clara","06085","FALSE","FALSE","America/Los_Angeles"
-"95130","37.2882","-121.98175","San Jose","CA","California","TRUE","","14660","3654.9","06085","Santa Clara","{""06085"": ""100""}","Santa Clara","06085","FALSE","FALSE","America/Los_Angeles"
-"95131","37.3871","-121.89744","San Jose","CA","California","TRUE","","31236","2067.5","06085","Santa Clara","{""06085"": ""100""}","Santa Clara","06085","FALSE","FALSE","America/Los_Angeles"
-"95132","37.4307","-121.76422","San Jose","CA","California","TRUE","","41790","313.9","06085","Santa Clara","{""06085"": ""100""}","Santa Clara","06085","FALSE","FALSE","America/Los_Angeles"
-"95133","37.37159","-121.86084","San Jose","CA","California","TRUE","","28565","3451.6","06085","Santa Clara","{""06085"": ""100""}","Santa Clara","06085","FALSE","FALSE","America/Los_Angeles"
-"95134","37.42861","-121.94346","San Jose","CA","California","TRUE","","29349","1125.5","06085","Santa Clara","{""06085"": ""100""}","Santa Clara","06085","FALSE","FALSE","America/Los_Angeles"
-"95135","37.28985","-121.69571","San Jose","CA","California","TRUE","","22015","280.9","06085","Santa Clara","{""06085"": ""100""}","Santa Clara","06085","FALSE","FALSE","America/Los_Angeles"
-"95136","37.27048","-121.85182","San Jose","CA","California","TRUE","","47476","3932.7","06085","Santa Clara","{""06085"": ""100""}","Santa Clara","06085","FALSE","FALSE","America/Los_Angeles"
-"95138","37.24663","-121.73388","San Jose","CA","California","TRUE","","20674","306.3","06085","Santa Clara","{""06085"": ""100""}","Santa Clara","06085","FALSE","FALSE","America/Los_Angeles"
-"95139","37.22495","-121.76414","San Jose","CA","California","TRUE","","7363","2309.5","06085","Santa Clara","{""06085"": ""100""}","Santa Clara","06085","FALSE","FALSE","America/Los_Angeles"
-"95140","37.3897","-121.61968","Mount Hamilton","CA","California","TRUE","","102","0.3","06085","Santa Clara","{""06085"": ""100""}","Santa Clara","06085","FALSE","FALSE","America/Los_Angeles"
-"95148","37.33539","-121.77931","San Jose","CA","California","TRUE","","48273","1977.6","06085","Santa Clara","{""06085"": ""100""}","Santa Clara","06085","FALSE","FALSE","America/Los_Angeles"
-"95202","37.95945","-121.28754","Stockton","CA","California","TRUE","","6066","2172.7","06077","San Joaquin","{""06077"": ""100""}","San Joaquin","06077","FALSE","FALSE","America/Los_Angeles"
-"95203","37.95254","-121.33148","Stockton","CA","California","TRUE","","15487","969.1","06077","San Joaquin","{""06077"": ""100""}","San Joaquin","06077","FALSE","FALSE","America/Los_Angeles"
-"95204","37.97388","-121.31987","Stockton","CA","California","TRUE","","28667","2170.1","06077","San Joaquin","{""06077"": ""100""}","San Joaquin","06077","FALSE","FALSE","America/Los_Angeles"
-"95205","37.96451","-121.26","Stockton","CA","California","TRUE","","38350","1629.4","06077","San Joaquin","{""06077"": ""100""}","San Joaquin","06077","FALSE","FALSE","America/Los_Angeles"
-"95206","37.9141","-121.42134","Stockton","CA","California","TRUE","","64250","171.1","06077","San Joaquin","{""06077"": ""100""}","San Joaquin","06077","FALSE","FALSE","America/Los_Angeles"
-"95207","38.00246","-121.32502","Stockton","CA","California","TRUE","","52269","2781.2","06077","San Joaquin","{""06077"": ""100""}","San Joaquin","06077","FALSE","FALSE","America/Los_Angeles"
-"95209","38.04726","-121.3508","Stockton","CA","California","TRUE","","44980","2071.8","06077","San Joaquin","{""06077"": ""100""}","San Joaquin","06077","FALSE","FALSE","America/Los_Angeles"
-"95210","38.03038","-121.29876","Stockton","CA","California","TRUE","","41509","2420.8","06077","San Joaquin","{""06077"": ""100""}","San Joaquin","06077","FALSE","FALSE","America/Los_Angeles"
-"95211","37.97982","-121.31296","Stockton","CA","California","TRUE","","1624","4143.0","06077","San Joaquin","{""06077"": ""100""}","San Joaquin","06077","FALSE","FALSE","America/Los_Angeles"
-"95212","38.04827","-121.22818","Stockton","CA","California","TRUE","","29426","526.9","06077","San Joaquin","{""06077"": ""100""}","San Joaquin","06077","FALSE","FALSE","America/Los_Angeles"
-"95215","37.94392","-121.15292","Stockton","CA","California","TRUE","","24326","99.2","06077","San Joaquin","{""06077"": ""100""}","San Joaquin","06077","FALSE","FALSE","America/Los_Angeles"
-"95219","38.04199","-121.48581","Stockton","CA","California","TRUE","","29270","199.5","06077","San Joaquin","{""06077"": ""99.94"", ""06013"": ""0.06""}","San Joaquin|Contra Costa","06077|06013","FALSE","FALSE","America/Los_Angeles"
-"95220","38.19719","-121.23825","Acampo","CA","California","TRUE","","7576","50.8","06077","San Joaquin","{""06077"": ""100""}","San Joaquin","06077","FALSE","FALSE","America/Los_Angeles"
-"95222","38.06467","-120.62048","Angels Camp","CA","California","TRUE","","5029","12.9","06009","Calaveras","{""06009"": ""100""}","Calaveras","06009","FALSE","FALSE","America/Los_Angeles"
-"95223","38.43419","-119.97443","Arnold","CA","California","TRUE","","2666","3.6","06009","Calaveras","{""06009"": ""97.38"", ""06003"": ""2.62"", ""06109"": ""0""}","Calaveras|Alpine|Tuolumne","06009|06003|06109","FALSE","FALSE","America/Los_Angeles"
-"95224","38.22528","-120.32711","Avery","CA","California","TRUE","","167","5.7","06009","Calaveras","{""06009"": ""100""}","Calaveras","06009","FALSE","FALSE","America/Los_Angeles"
-"95225","38.19882","-120.88891","Burson","CA","California","TRUE","","378","20.8","06009","Calaveras","{""06009"": ""100""}","Calaveras","06009","FALSE","FALSE","America/Los_Angeles"
-"95226","38.22864","-120.85805","Campo Seco","CA","California","TRUE","","0","0.0","06009","Calaveras","{""06009"": ""100""}","Calaveras","06009","FALSE","FALSE","America/Los_Angeles"
-"95227","38.20669","-121.04327","Clements","CA","California","TRUE","","654","6.8","06077","San Joaquin","{""06077"": ""100""}","San Joaquin","06077","FALSE","FALSE","America/Los_Angeles"
-"95228","37.95167","-120.69219","Copperopolis","CA","California","TRUE","","4541","16.4","06009","Calaveras","{""06009"": ""100""}","Calaveras","06009","FALSE","FALSE","America/Los_Angeles"
-"95230","37.9607","-120.882","Farmington","CA","California","TRUE","","840","2.7","06077","San Joaquin","{""06077"": ""69.22"", ""06099"": ""23.96"", ""06009"": ""6.82""}","San Joaquin|Stanislaus|Calaveras","06077|06099|06009","FALSE","FALSE","America/Los_Angeles"
-"95231","37.8739","-121.29004","French Camp","CA","California","TRUE","","5165","188.3","06077","San Joaquin","{""06077"": ""100""}","San Joaquin","06077","FALSE","FALSE","America/Los_Angeles"
-"95232","38.35534","-120.59406","Glencoe","CA","California","TRUE","","161","7.9","06009","Calaveras","{""06009"": ""100""}","Calaveras","06009","FALSE","FALSE","America/Los_Angeles"
-"95233","38.1762","-120.37044","Hathaway Pines","CA","California","TRUE","","548","30.2","06009","Calaveras","{""06009"": ""100""}","Calaveras","06009","FALSE","FALSE","America/Los_Angeles"
-"95234","37.92544","-121.52776","Holt","CA","California","TRUE","","0","0.0","06077","San Joaquin","{""06077"": ""100""}","San Joaquin","06077","FALSE","FALSE","America/Los_Angeles"
-"95236","38.03949","-121.02943","Linden","CA","California","TRUE","","4199","15.0","06077","San Joaquin","{""06077"": ""100""}","San Joaquin","06077","FALSE","FALSE","America/Los_Angeles"
-"95237","38.16165","-121.14989","Lockeford","CA","California","TRUE","","3639","176.0","06077","San Joaquin","{""06077"": ""100""}","San Joaquin","06077","FALSE","FALSE","America/Los_Angeles"
-"95240","38.11309","-121.14899","Lodi","CA","California","TRUE","","48799","227.8","06077","San Joaquin","{""06077"": ""100""}","San Joaquin","06077","FALSE","FALSE","America/Los_Angeles"
-"95242","38.13459","-121.39362","Lodi","CA","California","TRUE","","26409","106.2","06077","San Joaquin","{""06077"": ""100""}","San Joaquin","06077","FALSE","FALSE","America/Los_Angeles"
-"95245","38.29793","-120.6213","Mokelumne Hill","CA","California","TRUE","","1717","9.7","06009","Calaveras","{""06009"": ""100""}","Calaveras","06009","FALSE","FALSE","America/Los_Angeles"
-"95246","38.23279","-120.51792","Mountain Ranch","CA","California","TRUE","","1159","8.6","06009","Calaveras","{""06009"": ""100""}","Calaveras","06009","FALSE","FALSE","America/Los_Angeles"
-"95247","38.13806","-120.4532","Murphys","CA","California","TRUE","","4024","37.3","06009","Calaveras","{""06009"": ""100""}","Calaveras","06009","FALSE","FALSE","America/Los_Angeles"
-"95248","38.32399","-120.46138","Rail Road Flat","CA","California","TRUE","","106","1.3","06009","Calaveras","{""06009"": ""100""}","Calaveras","06009","FALSE","FALSE","America/Los_Angeles"
-"95249","38.18985","-120.62658","San Andreas","CA","California","TRUE","","5444","25.1","06009","Calaveras","{""06009"": ""100""}","Calaveras","06009","FALSE","FALSE","America/Los_Angeles"
-"95251","38.08235","-120.45474","Vallecito","CA","California","TRUE","","625","22.0","06009","Calaveras","{""06009"": ""100""}","Calaveras","06009","FALSE","FALSE","America/Los_Angeles"
-"95252","38.14951","-120.84699","Valley Springs","CA","California","TRUE","","16262","51.3","06009","Calaveras","{""06009"": ""100""}","Calaveras","06009","FALSE","FALSE","America/Los_Angeles"
-"95254","38.19516","-120.95514","Wallace","CA","California","TRUE","","1035","72.5","06009","Calaveras","{""06009"": ""100""}","Calaveras","06009","FALSE","FALSE","America/Los_Angeles"
-"95255","38.41967","-120.4759","West Point","CA","California","TRUE","","1289","11.2","06009","Calaveras","{""06009"": ""100""}","Calaveras","06009","FALSE","FALSE","America/Los_Angeles"
-"95257","38.38056","-120.44456","Wilseyville","CA","California","TRUE","","407","10.3","06009","Calaveras","{""06009"": ""100""}","Calaveras","06009","FALSE","FALSE","America/Los_Angeles"
-"95258","38.16833","-121.31028","Woodbridge","CA","California","TRUE","","3599","431.1","06077","San Joaquin","{""06077"": ""100""}","San Joaquin","06077","FALSE","FALSE","America/Los_Angeles"
-"95301","37.31796","-120.63372","Atwater","CA","California","TRUE","","39186","242.7","06047","Merced","{""06047"": ""100""}","Merced","06047","FALSE","FALSE","America/Los_Angeles"
-"95303","37.48297","-120.66189","Ballico","CA","California","TRUE","","1110","11.0","06047","Merced","{""06047"": ""100""}","Merced","06047","FALSE","FALSE","America/Los_Angeles"
-"95304","37.67832","-121.3999","Tracy","CA","California","TRUE","","14282","34.6","06077","San Joaquin","{""06077"": ""100""}","San Joaquin","06077","FALSE","FALSE","America/Los_Angeles"
-"95305","37.80468","-120.27189","Big Oak Flat","CA","California","TRUE","","0","0.0","06109","Tuolumne","{""06109"": ""100""}","Tuolumne","06109","FALSE","FALSE","America/Los_Angeles"
-"95306","37.38408","-120.12909","Catheys Valley","CA","California","TRUE","","654","1.8","06043","Mariposa","{""06043"": ""100""}","Mariposa","06043","FALSE","FALSE","America/Los_Angeles"
-"95307","37.55435","-120.95139","Ceres","CA","California","TRUE","","46283","533.4","06099","Stanislaus","{""06099"": ""100""}","Stanislaus","06099","FALSE","FALSE","America/Los_Angeles"
-"95310","38.09129","-120.37094","Columbia","CA","California","TRUE","","1874","18.3","06109","Tuolumne","{""06109"": ""100""}","Tuolumne","06109","FALSE","FALSE","America/Los_Angeles"
-"95311","37.7045","-120.08199","Coulterville","CA","California","TRUE","","1893","3.1","06043","Mariposa","{""06043"": ""97.86"", ""06109"": ""2.14""}","Mariposa|Tuolumne","06043|06109","FALSE","FALSE","America/Los_Angeles"
-"95312","37.42103","-120.65308","Cressey","CA","California","TRUE","","276","108.7","06047","Merced","{""06047"": ""100""}","Merced","06047","FALSE","FALSE","America/Los_Angeles"
-"95313","37.43001","-121.04698","Crows Landing","CA","California","TRUE","","1305","9.8","06099","Stanislaus","{""06099"": ""100""}","Stanislaus","06099","FALSE","FALSE","America/Los_Angeles"
-"95315","37.4236","-120.77147","Delhi","CA","California","TRUE","","14520","307.1","06047","Merced","{""06047"": ""100""}","Merced","06047","FALSE","FALSE","America/Los_Angeles"
-"95316","37.55325","-120.71399","Denair","CA","California","TRUE","","7022","40.8","06099","Stanislaus","{""06099"": ""100""}","Stanislaus","06099","FALSE","FALSE","America/Los_Angeles"
-"95317","37.12725","-120.51506","El Nido","CA","California","TRUE","","1203","8.8","06047","Merced","{""06047"": ""100""}","Merced","06047","FALSE","FALSE","America/Los_Angeles"
-"95318","37.64516","-119.79939","El Portal","CA","California","TRUE","","220","2.1","06043","Mariposa","{""06043"": ""100""}","Mariposa","06043","FALSE","FALSE","America/Los_Angeles"
-"95319","37.63936","-120.9031","Empire","CA","California","TRUE","","1745","1080.8","06099","Stanislaus","{""06099"": ""100""}","Stanislaus","06099","FALSE","FALSE","America/Los_Angeles"
-"95320","37.82528","-121.01347","Escalon","CA","California","TRUE","","12822","55.9","06077","San Joaquin","{""06077"": ""100""}","San Joaquin","06077","FALSE","FALSE","America/Los_Angeles"
-"95321","37.86092","-120.02585","Groveland","CA","California","TRUE","","3541","7.8","06109","Tuolumne","{""06109"": ""97.81"", ""06043"": ""2.19""}","Tuolumne|Mariposa","06109|06043","FALSE","FALSE","America/Los_Angeles"
-"95322","37.17019","-121.01674","Gustine","CA","California","TRUE","","10373","23.0","06047","Merced","{""06047"": ""100""}","Merced","06047","FALSE","FALSE","America/Los_Angeles"
-"95323","37.61003","-120.68543","Hickman","CA","California","TRUE","","1299","16.8","06099","Stanislaus","{""06099"": ""100""}","Stanislaus","06099","FALSE","FALSE","America/Los_Angeles"
-"95324","37.39508","-120.89377","Hilmar","CA","California","TRUE","","8380","78.1","06047","Merced","{""06047"": ""100""}","Merced","06047","FALSE","FALSE","America/Los_Angeles"
-"95325","37.48497","-120.24151","Hornitos","CA","California","TRUE","","78","0.7","06043","Mariposa","{""06043"": ""100""}","Mariposa","06043","FALSE","FALSE","America/Los_Angeles"
-"95326","37.59044","-120.85286","Hughson","CA","California","TRUE","","10147","142.7","06099","Stanislaus","{""06099"": ""100""}","Stanislaus","06099","FALSE","FALSE","America/Los_Angeles"
-"95327","37.86072","-120.47968","Jamestown","CA","California","TRUE","","7918","19.5","06109","Tuolumne","{""06109"": ""100""}","Tuolumne","06109","FALSE","FALSE","America/Los_Angeles"
-"95328","37.55824","-120.90985","Keyes","CA","California","TRUE","","4480","1700.0","06099","Stanislaus","{""06099"": ""100""}","Stanislaus","06099","FALSE","FALSE","America/Los_Angeles"
-"95329","37.67563","-120.40341","La Grange","CA","California","TRUE","","2570","9.2","06109","Tuolumne","{""06109"": ""46.63"", ""06043"": ""42.28"", ""06099"": ""11.1""}","Tuolumne|Mariposa|Stanislaus","06109|06043|06099","FALSE","FALSE","America/Los_Angeles"
-"95330","37.81352","-121.31053","Lathrop","CA","California","TRUE","","22760","408.4","06077","San Joaquin","{""06077"": ""100""}","San Joaquin","06077","FALSE","FALSE","America/Los_Angeles"
-"95333","37.24229","-120.24045","Le Grand","CA","California","TRUE","","2539","8.4","06047","Merced","{""06047"": ""100""}","Merced","06047","FALSE","FALSE","America/Los_Angeles"
-"95334","37.34808","-120.74314","Livingston","CA","California","TRUE","","17057","117.6","06047","Merced","{""06047"": ""100""}","Merced","06047","FALSE","FALSE","America/Los_Angeles"
-"95335","38.10945","-120.09668","Long Barn","CA","California","TRUE","","153","1.4","06109","Tuolumne","{""06109"": ""100""}","Tuolumne","06109","FALSE","FALSE","America/Los_Angeles"
-"95336","37.83235","-121.19705","Manteca","CA","California","TRUE","","47855","482.5","06077","San Joaquin","{""06077"": ""100""}","San Joaquin","06077","FALSE","FALSE","America/Los_Angeles"
-"95337","37.74167","-121.23854","Manteca","CA","California","TRUE","","39177","332.9","06077","San Joaquin","{""06077"": ""100""}","San Joaquin","06077","FALSE","FALSE","America/Los_Angeles"
-"95338","37.50978","-119.98252","Mariposa","CA","California","TRUE","","10827","12.3","06043","Mariposa","{""06043"": ""100""}","Mariposa","06043","FALSE","FALSE","America/Los_Angeles"
-"95340","37.33905","-120.42428","Merced","CA","California","TRUE","","35827","348.2","06047","Merced","{""06047"": ""100""}","Merced","06047","FALSE","FALSE","America/Los_Angeles"
-"95341","37.23086","-120.51436","Merced","CA","California","TRUE","","33090","85.4","06047","Merced","{""06047"": ""100""}","Merced","06047","FALSE","FALSE","America/Los_Angeles"
-"95345","37.59019","-119.96519","Midpines","CA","California","TRUE","","802","9.7","06043","Mariposa","{""06043"": ""100""}","Mariposa","06043","FALSE","FALSE","America/Los_Angeles"
-"95346","38.06749","-120.17933","Mi Wuk Village","CA","California","TRUE","","1251","80.5","06109","Tuolumne","{""06109"": ""100""}","Tuolumne","06109","FALSE","FALSE","America/Los_Angeles"
-"95348","37.39583","-120.50013","Merced","CA","California","TRUE","","34002","276.4","06047","Merced","{""06047"": ""100""}","Merced","06047","FALSE","FALSE","America/Los_Angeles"
-"95350","37.67192","-121.0073","Modesto","CA","California","TRUE","","54210","2350.9","06099","Stanislaus","{""06099"": ""100""}","Stanislaus","06099","FALSE","FALSE","America/Los_Angeles"
-"95351","37.62327","-120.99639","Modesto","CA","California","TRUE","","48542","2109.7","06099","Stanislaus","{""06099"": ""100""}","Stanislaus","06099","FALSE","FALSE","America/Los_Angeles"
-"95354","37.6382","-120.96597","Modesto","CA","California","TRUE","","24923","1318.8","06099","Stanislaus","{""06099"": ""100""}","Stanislaus","06099","FALSE","FALSE","America/Los_Angeles"
-"95355","37.67283","-120.947","Modesto","CA","California","TRUE","","59621","2428.5","06099","Stanislaus","{""06099"": ""100""}","Stanislaus","06099","FALSE","FALSE","America/Los_Angeles"
-"95356","37.72039","-121.02532","Modesto","CA","California","TRUE","","32622","554.3","06099","Stanislaus","{""06099"": ""100""}","Stanislaus","06099","FALSE","FALSE","America/Los_Angeles"
-"95357","37.66794","-120.88045","Modesto","CA","California","TRUE","","11765","114.0","06099","Stanislaus","{""06099"": ""100""}","Stanislaus","06099","FALSE","FALSE","America/Los_Angeles"
-"95358","37.61577","-121.10177","Modesto","CA","California","TRUE","","32524","105.5","06099","Stanislaus","{""06099"": ""100""}","Stanislaus","06099","FALSE","FALSE","America/Los_Angeles"
-"95360","37.29165","-121.22571","Newman","CA","California","TRUE","","13278","15.3","06099","Stanislaus","{""06099"": ""98.45"", ""06047"": ""1.55""}","Stanislaus|Merced","06099|06047","FALSE","FALSE","America/Los_Angeles"
-"95361","37.78647","-120.75712","Oakdale","CA","California","TRUE","","35308","58.9","06099","Stanislaus","{""06099"": ""98.69"", ""06077"": ""1.31""}","Stanislaus|San Joaquin","06099|06077","FALSE","FALSE","America/Los_Angeles"
-"95363","37.46353","-121.21678","Patterson","CA","California","TRUE","","27908","91.5","06099","Stanislaus","{""06099"": ""100""}","Stanislaus","06099","FALSE","FALSE","America/Los_Angeles"
-"95364","38.21142","-119.81338","Pinecrest","CA","California","TRUE","","0","0.0","06109","Tuolumne","{""06109"": ""100""}","Tuolumne","06109","FALSE","FALSE","America/Los_Angeles"
-"95365","37.33109","-120.29484","Planada","CA","California","TRUE","","4775","121.5","06047","Merced","{""06047"": ""100""}","Merced","06047","FALSE","FALSE","America/Los_Angeles"
-"95366","37.76259","-121.12451","Ripon","CA","California","TRUE","","17909","201.0","06077","San Joaquin","{""06077"": ""100""}","San Joaquin","06077","FALSE","FALSE","America/Los_Angeles"
-"95367","37.72831","-120.94072","Riverbank","CA","California","TRUE","","25072","2181.1","06099","Stanislaus","{""06099"": ""100""}","Stanislaus","06099","FALSE","FALSE","America/Los_Angeles"
-"95368","37.71618","-121.09002","Salida","CA","California","TRUE","","14041","1637.9","06099","Stanislaus","{""06099"": ""100""}","Stanislaus","06099","FALSE","FALSE","America/Los_Angeles"
-"95369","37.53346","-120.43175","Snelling","CA","California","TRUE","","1024","2.5","06047","Merced","{""06047"": ""92.72"", ""06043"": ""7.28""}","Merced|Mariposa","06047|06043","FALSE","FALSE","America/Los_Angeles"
-"95370","37.98461","-120.34883","Sonora","CA","California","TRUE","","28096","105.1","06109","Tuolumne","{""06109"": ""100""}","Tuolumne","06109","FALSE","FALSE","America/Los_Angeles"
-"95372","37.99172","-120.26084","Soulsbyville","CA","California","TRUE","","2056","296.4","06109","Tuolumne","{""06109"": ""100""}","Tuolumne","06109","FALSE","FALSE","America/Los_Angeles"
-"95374","37.31615","-120.85288","Stevinson","CA","California","TRUE","","1682","13.9","06047","Merced","{""06047"": ""100""}","Merced","06047","FALSE","FALSE","America/Los_Angeles"
-"95375","38.18664","-120.02612","Strawberry","CA","California","TRUE","","5","0.6","06109","Tuolumne","{""06109"": ""100""}","Tuolumne","06109","FALSE","FALSE","America/Los_Angeles"
-"95376","37.73719","-121.43335","Tracy","CA","California","TRUE","","55655","2815.9","06077","San Joaquin","{""06077"": ""100""}","San Joaquin","06077","FALSE","FALSE","America/Los_Angeles"
-"95377","37.65669","-121.49545","Tracy","CA","California","TRUE","","32091","114.7","06077","San Joaquin","{""06077"": ""99.79"", ""06001"": ""0.21""}","San Joaquin|Alameda","06077|06001","FALSE","FALSE","America/Los_Angeles"
-"95379","37.94693","-120.19399","Tuolumne","CA","California","TRUE","","4003","28.7","06109","Tuolumne","{""06109"": ""100""}","Tuolumne","06109","FALSE","FALSE","America/Los_Angeles"
-"95380","37.47197","-120.86868","Turlock","CA","California","TRUE","","42866","220.5","06099","Stanislaus","{""06099"": ""96.22"", ""06047"": ""3.78""}","Stanislaus|Merced","06099|06047","FALSE","FALSE","America/Los_Angeles"
-"95382","37.5284","-120.85304","Turlock","CA","California","TRUE","","38700","1419.8","06099","Stanislaus","{""06099"": ""100""}","Stanislaus","06099","FALSE","FALSE","America/Los_Angeles"
-"95383","38.10788","-120.23286","Twain Harte","CA","California","TRUE","","3611","17.8","06109","Tuolumne","{""06109"": ""100""}","Tuolumne","06109","FALSE","FALSE","America/Los_Angeles"
-"95385","37.60949","-121.25116","Vernalis","CA","California","TRUE","","415","6.5","06099","Stanislaus","{""06099"": ""64.57"", ""06077"": ""35.43""}","Stanislaus|San Joaquin","06099|06077","FALSE","FALSE","America/Los_Angeles"
-"95386","37.66919","-120.63945","Waterford","CA","California","TRUE","","10557","47.8","06099","Stanislaus","{""06099"": ""100""}","Stanislaus","06099","FALSE","FALSE","America/Los_Angeles"
-"95387","37.50588","-121.32775","Westley","CA","California","TRUE","","636","2.1","06099","Stanislaus","{""06099"": ""100""}","Stanislaus","06099","FALSE","FALSE","America/Los_Angeles"
-"95388","37.41812","-120.59158","Winton","CA","California","TRUE","","14116","140.5","06047","Merced","{""06047"": ""100""}","Merced","06047","FALSE","FALSE","America/Los_Angeles"
-"95389","37.72677","-119.53536","Yosemite National Park","CA","California","TRUE","","1417","2.3","06043","Mariposa","{""06043"": ""99.84"", ""06109"": ""0.16""}","Mariposa|Tuolumne","06043|06109","FALSE","FALSE","America/Los_Angeles"
-"95391","37.76309","-121.60538","Tracy","CA","California","TRUE","","20131","327.2","06077","San Joaquin","{""06077"": ""98.69"", ""06001"": ""1.31""}","San Joaquin|Alameda","06077|06001","FALSE","FALSE","America/Los_Angeles"
-"95401","38.44898","-122.79221","Santa Rosa","CA","California","TRUE","","38839","727.1","06097","Sonoma","{""06097"": ""100""}","Sonoma","06097","FALSE","FALSE","America/Los_Angeles"
-"95403","38.5025","-122.75443","Santa Rosa","CA","California","TRUE","","45096","790.5","06097","Sonoma","{""06097"": ""100""}","Sonoma","06097","FALSE","FALSE","America/Los_Angeles"
-"95404","38.46565","-122.65198","Santa Rosa","CA","California","TRUE","","40497","195.5","06097","Sonoma","{""06097"": ""100""}","Sonoma","06097","FALSE","FALSE","America/Los_Angeles"
-"95405","38.43713","-122.66594","Santa Rosa","CA","California","TRUE","","21082","1486.3","06097","Sonoma","{""06097"": ""100""}","Sonoma","06097","FALSE","FALSE","America/Los_Angeles"
-"95407","38.39452","-122.74435","Santa Rosa","CA","California","TRUE","","42026","715.3","06097","Sonoma","{""06097"": ""100""}","Sonoma","06097","FALSE","FALSE","America/Los_Angeles"
-"95409","38.46101","-122.59753","Santa Rosa","CA","California","TRUE","","27186","273.5","06097","Sonoma","{""06097"": ""100""}","Sonoma","06097","FALSE","FALSE","America/Los_Angeles"
-"95410","39.20801","-123.68669","Albion","CA","California","TRUE","","997","9.7","06045","Mendocino","{""06045"": ""100""}","Mendocino","06045","FALSE","FALSE","America/Los_Angeles"
-"95412","38.71367","-123.35009","Annapolis","CA","California","TRUE","","397","1.8","06097","Sonoma","{""06097"": ""100""}","Sonoma","06097","FALSE","FALSE","America/Los_Angeles"
-"95415","39.01523","-123.37074","Boonville","CA","California","TRUE","","1388","9.7","06045","Mendocino","{""06045"": ""100""}","Mendocino","06045","FALSE","FALSE","America/Los_Angeles"
-"95417","39.68977","-123.61","Branscomb","CA","California","TRUE","","356","1.8","06045","Mendocino","{""06045"": ""100""}","Mendocino","06045","FALSE","FALSE","America/Los_Angeles"
-"95420","39.36712","-123.80392","Caspar","CA","California","TRUE","","523","100.7","06045","Mendocino","{""06045"": ""100""}","Mendocino","06045","FALSE","FALSE","America/Los_Angeles"
-"95421","38.63036","-123.19319","Cazadero","CA","California","TRUE","","1808","3.2","06097","Sonoma","{""06097"": ""100""}","Sonoma","06097","FALSE","FALSE","America/Los_Angeles"
-"95422","38.97629","-122.62312","Clearlake","CA","California","TRUE","","15696","172.0","06033","Lake","{""06033"": ""100""}","Lake","06033","FALSE","FALSE","America/Los_Angeles"
-"95423","39.06486","-122.62739","Clearlake Oaks","CA","California","TRUE","","3751","14.1","06033","Lake","{""06033"": ""100""}","Lake","06033","FALSE","FALSE","America/Los_Angeles"
-"95425","38.81932","-123.04213","Cloverdale","CA","California","TRUE","","10984","20.6","06097","Sonoma","{""06097"": ""98.28"", ""06045"": ""1.72""}","Sonoma|Mendocino","06097|06045","FALSE","FALSE","America/Los_Angeles"
-"95426","38.8323","-122.73126","Cobb","CA","California","TRUE","","1350","25.7","06033","Lake","{""06033"": ""100""}","Lake","06033","FALSE","FALSE","America/Los_Angeles"
-"95427","39.24419","-123.56352","Comptche","CA","California","TRUE","","226","1.3","06045","Mendocino","{""06045"": ""100""}","Mendocino","06045","FALSE","FALSE","America/Los_Angeles"
-"95428","39.82723","-123.17885","Covelo","CA","California","TRUE","","2580","4.4","06045","Mendocino","{""06045"": ""100""}","Mendocino","06045","FALSE","FALSE","America/Los_Angeles"
-"95429","39.72746","-123.29603","Dos Rios","CA","California","TRUE","","116","1.1","06045","Mendocino","{""06045"": ""100""}","Mendocino","06045","FALSE","FALSE","America/Los_Angeles"
-"95430","38.46138","-123.04717","Duncans Mills","CA","California","TRUE","","7","11.4","06097","Sonoma","{""06097"": ""100""}","Sonoma","06097","FALSE","FALSE","America/Los_Angeles"
-"95431","38.34831","-122.51701","Eldridge","CA","California","TRUE","","161","818.8","06097","Sonoma","{""06097"": ""100""}","Sonoma","06097","FALSE","FALSE","America/Los_Angeles"
-"95432","39.10516","-123.64","Elk","CA","California","TRUE","","706","3.7","06045","Mendocino","{""06045"": ""100""}","Mendocino","06045","FALSE","FALSE","America/Los_Angeles"
-"95435","39.00716","-122.86947","Finley","CA","California","TRUE","","299","748.4","06033","Lake","{""06033"": ""100""}","Lake","06033","FALSE","FALSE","America/Los_Angeles"
-"95436","38.491","-122.91416","Forestville","CA","California","TRUE","","6240","104.8","06097","Sonoma","{""06097"": ""100""}","Sonoma","06097","FALSE","FALSE","America/Los_Angeles"
-"95437","39.45586","-123.73049","Fort Bragg","CA","California","TRUE","","14859","58.7","06045","Mendocino","{""06045"": ""100""}","Mendocino","06045","FALSE","FALSE","America/Los_Angeles"
-"95439","38.49315","-122.77761","Fulton","CA","California","TRUE","","728","102.7","06097","Sonoma","{""06097"": ""100""}","Sonoma","06097","FALSE","FALSE","America/Los_Angeles"
-"95441","38.73094","-122.90494","Geyserville","CA","California","TRUE","","1797","6.8","06097","Sonoma","{""06097"": ""100""}","Sonoma","06097","FALSE","FALSE","America/Los_Angeles"
-"95442","38.37674","-122.51286","Glen Ellen","CA","California","TRUE","","3213","50.8","06097","Sonoma","{""06097"": ""100""}","Sonoma","06097","FALSE","FALSE","America/Los_Angeles"
-"95443","39.04946","-122.73954","Glenhaven","CA","California","TRUE","","193","17.8","06033","Lake","{""06033"": ""100""}","Lake","06033","FALSE","FALSE","America/Los_Angeles"
-"95444","38.43321","-122.86894","Graton","CA","California","TRUE","","705","1005.9","06097","Sonoma","{""06097"": ""100""}","Sonoma","06097","FALSE","FALSE","America/Los_Angeles"
-"95445","38.83295","-123.49572","Gualala","CA","California","TRUE","","2257","10.2","06045","Mendocino","{""06045"": ""100""}","Mendocino","06045","FALSE","FALSE","America/Los_Angeles"
-"95446","38.52662","-123.00418","Guerneville","CA","California","TRUE","","5168","60.6","06097","Sonoma","{""06097"": ""100""}","Sonoma","06097","FALSE","FALSE","America/Los_Angeles"
-"95448","38.62394","-122.88593","Healdsburg","CA","California","TRUE","","17407","35.7","06097","Sonoma","{""06097"": ""100""}","Sonoma","06097","FALSE","FALSE","America/Los_Angeles"
-"95449","38.94221","-123.10135","Hopland","CA","California","TRUE","","1560","4.6","06045","Mendocino","{""06045"": ""100""}","Mendocino","06045","FALSE","FALSE","America/Los_Angeles"
-"95450","38.49431","-123.16909","Jenner","CA","California","TRUE","","227","3.2","06097","Sonoma","{""06097"": ""100""}","Sonoma","06097","FALSE","FALSE","America/Los_Angeles"
-"95451","38.93284","-122.80414","Kelseyville","CA","California","TRUE","","11603","46.6","06033","Lake","{""06033"": ""100""}","Lake","06033","FALSE","FALSE","America/Los_Angeles"
-"95452","38.42555","-122.53517","Kenwood","CA","California","TRUE","","919","24.7","06097","Sonoma","{""06097"": ""100""}","Sonoma","06097","FALSE","FALSE","America/Los_Angeles"
-"95453","39.04561","-122.93731","Lakeport","CA","California","TRUE","","11369","52.4","06033","Lake","{""06033"": ""100""}","Lake","06033","FALSE","FALSE","America/Los_Angeles"
-"95454","39.80652","-123.50998","Laytonville","CA","California","TRUE","","2107","3.0","06045","Mendocino","{""06045"": ""100""}","Mendocino","06045","FALSE","FALSE","America/Los_Angeles"
-"95456","39.25969","-123.74759","Little River","CA","California","TRUE","","838","32.1","06045","Mendocino","{""06045"": ""100""}","Mendocino","06045","FALSE","FALSE","America/Los_Angeles"
-"95457","38.88145","-122.5316","Lower Lake","CA","California","TRUE","","3227","8.4","06033","Lake","{""06033"": ""100""}","Lake","06033","FALSE","FALSE","America/Los_Angeles"
-"95458","39.15052","-122.7474","Lucerne","CA","California","TRUE","","2960","23.3","06033","Lake","{""06033"": ""100""}","Lake","06033","FALSE","FALSE","America/Los_Angeles"
-"95459","38.97956","-123.58638","Manchester","CA","California","TRUE","","641","3.7","06045","Mendocino","{""06045"": ""100""}","Mendocino","06045","FALSE","FALSE","America/Los_Angeles"
-"95460","39.30879","-123.75604","Mendocino","CA","California","TRUE","","2508","35.5","06045","Mendocino","{""06045"": ""100""}","Mendocino","06045","FALSE","FALSE","America/Los_Angeles"
-"95461","38.76112","-122.59664","Middletown","CA","California","TRUE","","2567","7.9","06033","Lake","{""06033"": ""100""}","Lake","06033","FALSE","FALSE","America/Los_Angeles"
-"95462","38.46171","-123.0223","Monte Rio","CA","California","TRUE","","1124","73.9","06097","Sonoma","{""06097"": ""100""}","Sonoma","06097","FALSE","FALSE","America/Los_Angeles"
-"95463","39.18677","-123.55835","Navarro","CA","California","TRUE","","136","4.7","06045","Mendocino","{""06045"": ""100""}","Mendocino","06045","FALSE","FALSE","America/Los_Angeles"
-"95464","39.12829","-122.84919","Nice","CA","California","TRUE","","2505","291.1","06033","Lake","{""06033"": ""100""}","Lake","06033","FALSE","FALSE","America/Los_Angeles"
-"95465","38.40644","-123.01948","Occidental","CA","California","TRUE","","2244","20.8","06097","Sonoma","{""06097"": ""100""}","Sonoma","06097","FALSE","FALSE","America/Los_Angeles"
-"95466","39.08617","-123.50397","Philo","CA","California","TRUE","","976","4.0","06045","Mendocino","{""06045"": ""100""}","Mendocino","06045","FALSE","FALSE","America/Los_Angeles"
-"95467","38.80355","-122.54066","Hidden Valley Lake","CA","California","TRUE","","5506","216.2","06033","Lake","{""06033"": ""100""}","Lake","06033","FALSE","FALSE","America/Los_Angeles"
-"95468","38.91223","-123.60458","Point Arena","CA","California","TRUE","","1280","7.6","06045","Mendocino","{""06045"": ""100""}","Mendocino","06045","FALSE","FALSE","America/Los_Angeles"
-"95469","39.39942","-123.05399","Potter Valley","CA","California","TRUE","","1911","4.2","06045","Mendocino","{""06045"": ""96.6"", ""06033"": ""3.4""}","Mendocino|Lake","06045|06033","FALSE","FALSE","America/Los_Angeles"
-"95470","39.31171","-123.24669","Redwood Valley","CA","California","TRUE","","5561","26.0","06045","Mendocino","{""06045"": ""100""}","Mendocino","06045","FALSE","FALSE","America/Los_Angeles"
-"95471","38.52404","-122.96878","Rio Nido","CA","California","TRUE","","573","153.4","06097","Sonoma","{""06097"": ""100""}","Sonoma","06097","FALSE","FALSE","America/Los_Angeles"
-"95472","38.39817","-122.86574","Sebastopol","CA","California","TRUE","","30736","171.6","06097","Sonoma","{""06097"": ""100""}","Sonoma","06097","FALSE","FALSE","America/Los_Angeles"
-"95476","38.24859","-122.45712","Sonoma","CA","California","TRUE","","36586","126.1","06097","Sonoma","{""06097"": ""100""}","Sonoma","06097","FALSE","FALSE","America/Los_Angeles"
-"95482","39.16033","-123.24291","Ukiah","CA","California","TRUE","","31482","39.1","06045","Mendocino","{""06045"": ""100""}","Mendocino","06045","FALSE","FALSE","America/Los_Angeles"
-"95485","39.2171","-122.92043","Upper Lake","CA","California","TRUE","","2650","9.8","06033","Lake","{""06033"": ""100""}","Lake","06033","FALSE","FALSE","America/Los_Angeles"
-"95486","38.47411","-123.02405","Villa Grande","CA","California","TRUE","","51","1016.6","06097","Sonoma","{""06097"": ""100""}","Sonoma","06097","FALSE","FALSE","America/Los_Angeles"
-"95488","39.69135","-123.7579","Westport","CA","California","TRUE","","179","0.8","06045","Mendocino","{""06045"": ""100""}","Mendocino","06045","FALSE","FALSE","America/Los_Angeles"
-"95490","39.49709","-123.33932","Willits","CA","California","TRUE","","12975","12.8","06045","Mendocino","{""06045"": ""100""}","Mendocino","06045","FALSE","FALSE","America/Los_Angeles"
-"95492","38.53034","-122.81716","Windsor","CA","California","TRUE","","29271","594.0","06097","Sonoma","{""06097"": ""100""}","Sonoma","06097","FALSE","FALSE","America/Los_Angeles"
-"95493","39.18538","-122.97207","Witter Springs","CA","California","TRUE","","377","32.1","06033","Lake","{""06033"": ""100""}","Lake","06033","FALSE","FALSE","America/Los_Angeles"
-"95494","38.88969","-123.33784","Yorkville","CA","California","TRUE","","171","0.6","06045","Mendocino","{""06045"": ""100""}","Mendocino","06045","FALSE","FALSE","America/Los_Angeles"
-"95497","38.71649","-123.45271","The Sea Ranch","CA","California","TRUE","","1134","27.1","06097","Sonoma","{""06097"": ""100""}","Sonoma","06097","FALSE","FALSE","America/Los_Angeles"
-"95501","40.79809","-124.15097","Eureka","CA","California","TRUE","","23324","1278.8","06023","Humboldt","{""06023"": ""100""}","Humboldt","06023","FALSE","FALSE","America/Los_Angeles"
-"95503","40.72426","-124.09613","Eureka","CA","California","TRUE","","25972","116.0","06023","Humboldt","{""06023"": ""100""}","Humboldt","06023","FALSE","FALSE","America/Los_Angeles"
-"95511","40.17126","-123.63025","Alderpoint","CA","California","TRUE","","262","1.7","06023","Humboldt","{""06023"": ""100""}","Humboldt","06023","FALSE","FALSE","America/Los_Angeles"
-"95514","40.29127","-123.65249","Blocksburg","CA","California","TRUE","","140","0.6","06023","Humboldt","{""06023"": ""100""}","Humboldt","06023","FALSE","FALSE","America/Los_Angeles"
-"95519","40.95573","-124.04641","Mckinleyville","CA","California","TRUE","","19763","134.2","06023","Humboldt","{""06023"": ""100""}","Humboldt","06023","FALSE","FALSE","America/Los_Angeles"
-"95521","40.84857","-124.05913","Arcata","CA","California","TRUE","","21068","151.8","06023","Humboldt","{""06023"": ""100""}","Humboldt","06023","FALSE","FALSE","America/Los_Angeles"
-"95524","40.82111","-124.04529","Bayside","CA","California","TRUE","","1668","61.6","06023","Humboldt","{""06023"": ""100""}","Humboldt","06023","FALSE","FALSE","America/Los_Angeles"
-"95525","40.925","-123.82271","Blue Lake","CA","California","TRUE","","1401","6.5","06023","Humboldt","{""06023"": ""100""}","Humboldt","06023","FALSE","FALSE","America/Los_Angeles"
-"95526","40.4567","-123.69082","Bridgeville","CA","California","TRUE","","196","0.7","06023","Humboldt","{""06023"": ""100""}","Humboldt","06023","FALSE","FALSE","America/Los_Angeles"
-"95527","40.8534","-123.43175","Burnt Ranch","CA","California","TRUE","","499","1.4","06105","Trinity","{""06105"": ""100""}","Trinity","06105","FALSE","FALSE","America/Los_Angeles"
-"95528","40.49924","-123.92811","Carlotta","CA","California","TRUE","","1437","5.4","06023","Humboldt","{""06023"": ""100""}","Humboldt","06023","FALSE","FALSE","America/Los_Angeles"
-"95531","41.79625","-124.00515","Crescent City","CA","California","TRUE","","23737","47.0","06015","Del Norte","{""06015"": ""100""}","Del Norte","06015","FALSE","FALSE","America/Los_Angeles"
-"95536","40.51692","-124.27436","Ferndale","CA","California","TRUE","","2899","7.6","06023","Humboldt","{""06023"": ""100""}","Humboldt","06023","FALSE","FALSE","America/Los_Angeles"
-"95537","40.72646","-124.21754","Fields Landing","CA","California","TRUE","","251","543.7","06023","Humboldt","{""06023"": ""100""}","Humboldt","06023","FALSE","FALSE","America/Los_Angeles"
-"95540","40.57866","-124.13648","Fortuna","CA","California","TRUE","","14196","197.4","06023","Humboldt","{""06023"": ""100""}","Humboldt","06023","FALSE","FALSE","America/Los_Angeles"
-"95542","40.08672","-123.78492","Garberville","CA","California","TRUE","","1871","3.7","06023","Humboldt","{""06023"": ""100""}","Humboldt","06023","FALSE","FALSE","America/Los_Angeles"
-"95543","41.87127","-123.8623","Gasquet","CA","California","TRUE","","705","2.7","06015","Del Norte","{""06015"": ""100""}","Del Norte","06015","FALSE","FALSE","America/Los_Angeles"
-"95545","40.28037","-124.06367","Honeydew","CA","California","TRUE","","118","1.0","06023","Humboldt","{""06023"": ""100""}","Humboldt","06023","FALSE","FALSE","America/Los_Angeles"
-"95546","41.16034","-123.7327","Hoopa","CA","California","TRUE","","3466","9.8","06023","Humboldt","{""06023"": ""100""}","Humboldt","06023","FALSE","FALSE","America/Los_Angeles"
-"95547","40.55751","-124.08116","Hydesville","CA","California","TRUE","","1063","54.4","06023","Humboldt","{""06023"": ""100""}","Humboldt","06023","FALSE","FALSE","America/Los_Angeles"
-"95548","41.59277","-124.04488","Klamath","CA","California","TRUE","","1251","5.5","06015","Del Norte","{""06015"": ""100""}","Del Norte","06015","FALSE","FALSE","America/Los_Angeles"
-"95549","40.67478","-123.91525","Kneeland","CA","California","TRUE","","929","3.2","06023","Humboldt","{""06023"": ""100""}","Humboldt","06023","FALSE","FALSE","America/Los_Angeles"
-"95550","40.77331","-123.81846","Korbel","CA","California","TRUE","","94","0.3","06023","Humboldt","{""06023"": ""100""}","Humboldt","06023","FALSE","FALSE","America/Los_Angeles"
-"95551","40.66757","-124.21872","Loleta","CA","California","TRUE","","1416","12.8","06023","Humboldt","{""06023"": ""100""}","Humboldt","06023","FALSE","FALSE","America/Los_Angeles"
-"95552","40.19843","-123.23113","Mad River","CA","California","TRUE","","750","0.5","06105","Trinity","{""06105"": ""100""}","Trinity","06105","FALSE","FALSE","America/Los_Angeles"
-"95553","40.24435","-123.89617","Miranda","CA","California","TRUE","","767","5.0","06023","Humboldt","{""06023"": ""100""}","Humboldt","06023","FALSE","FALSE","America/Los_Angeles"
-"95554","40.28413","-123.79454","Myers Flat","CA","California","TRUE","","508","3.9","06023","Humboldt","{""06023"": ""100""}","Humboldt","06023","FALSE","FALSE","America/Los_Angeles"
-"95555","41.3011","-123.99042","Orick","CA","California","TRUE","","437","2.0","06023","Humboldt","{""06023"": ""100""}","Humboldt","06023","FALSE","FALSE","America/Los_Angeles"
-"95556","41.30078","-123.58461","Orleans","CA","California","TRUE","","598","1.7","06023","Humboldt","{""06023"": ""100""}","Humboldt","06023","FALSE","FALSE","America/Los_Angeles"
-"95558","40.2961","-124.23457","Petrolia","CA","California","TRUE","","416","0.8","06023","Humboldt","{""06023"": ""100""}","Humboldt","06023","FALSE","FALSE","America/Los_Angeles"
-"95559","40.1859","-123.74824","Phillipsville","CA","California","TRUE","","70","1.5","06023","Humboldt","{""06023"": ""100""}","Humboldt","06023","FALSE","FALSE","America/Los_Angeles"
-"95560","40.16453","-123.83859","Redway","CA","California","TRUE","","1615","18.7","06023","Humboldt","{""06023"": ""100""}","Humboldt","06023","FALSE","FALSE","America/Los_Angeles"
-"95562","40.4624","-124.12516","Rio Dell","CA","California","TRUE","","3401","53.4","06023","Humboldt","{""06023"": ""100""}","Humboldt","06023","FALSE","FALSE","America/Los_Angeles"
-"95563","40.87625","-123.49847","Salyer","CA","California","TRUE","","665","4.3","06105","Trinity","{""06105"": ""100""}","Trinity","06105","FALSE","FALSE","America/Los_Angeles"
-"95564","40.7899","-124.20339","Samoa","CA","California","TRUE","","389","45.5","06023","Humboldt","{""06023"": ""100""}","Humboldt","06023","FALSE","FALSE","America/Los_Angeles"
-"95565","40.45778","-124.01098","Scotia","CA","California","TRUE","","762","8.8","06023","Humboldt","{""06023"": ""100""}","Humboldt","06023","FALSE","FALSE","America/Los_Angeles"
-"95567","41.94978","-124.11187","Smith River","CA","California","TRUE","","1802","11.1","06015","Del Norte","{""06015"": ""100""}","Del Norte","06015","FALSE","FALSE","America/Los_Angeles"
-"95568","41.45328","-123.46342","Somes Bar","CA","California","TRUE","","274","1.3","06093","Siskiyou","{""06093"": ""100""}","Siskiyou","06093","FALSE","FALSE","America/Los_Angeles"
-"95569","40.36748","-123.85533","Redcrest","CA","California","TRUE","","371","2.3","06023","Humboldt","{""06023"": ""100""}","Humboldt","06023","FALSE","FALSE","America/Los_Angeles"
-"95570","41.12116","-124.11375","Trinidad","CA","California","TRUE","","2338","38.1","06023","Humboldt","{""06023"": ""100""}","Humboldt","06023","FALSE","FALSE","America/Los_Angeles"
-"95571","40.32248","-123.92055","Weott","CA","California","TRUE","","304","155.9","06023","Humboldt","{""06023"": ""100""}","Humboldt","06023","FALSE","FALSE","America/Los_Angeles"
-"95573","40.88934","-123.66097","Willow Creek","CA","California","TRUE","","1568","5.0","06023","Humboldt","{""06023"": ""100""}","Humboldt","06023","FALSE","FALSE","America/Los_Angeles"
-"95585","39.84467","-123.65699","Leggett","CA","California","TRUE","","457","3.2","06045","Mendocino","{""06045"": ""100""}","Mendocino","06045","FALSE","FALSE","America/Los_Angeles"
-"95587","39.96325","-123.77574","Piercy","CA","California","TRUE","","51","1.5","06045","Mendocino","{""06045"": ""100""}","Mendocino","06045","FALSE","FALSE","America/Los_Angeles"
-"95589","40.05662","-123.97052","Whitethorn","CA","California","TRUE","","963","2.0","06023","Humboldt","{""06023"": ""94.48"", ""06045"": ""5.52""}","Humboldt|Mendocino","06023|06045","FALSE","FALSE","America/Los_Angeles"
-"95595","40.11671","-123.42455","Zenia","CA","California","TRUE","","139","0.2","06105","Trinity","{""06105"": ""100""}","Trinity","06105","FALSE","FALSE","America/Los_Angeles"
-"95601","38.42592","-120.82501","Amador City","CA","California","TRUE","","151","33.3","06005","Amador","{""06005"": ""100""}","Amador","06005","FALSE","FALSE","America/Los_Angeles"
-"95602","38.99059","-121.11038","Auburn","CA","California","TRUE","","17557","137.3","06061","Placer","{""06061"": ""67.18"", ""06057"": ""32.82""}","Placer|Nevada","06061|06057","FALSE","FALSE","America/Los_Angeles"
-"95603","38.917","-121.08045","Auburn","CA","California","TRUE","","29474","291.6","06061","Placer","{""06061"": ""100""}","Placer","06061","FALSE","FALSE","America/Los_Angeles"
-"95604","39.24336","-120.07154","Auburn","CA","California","TRUE","","85","81.9","06061","Placer","{""06061"": ""100""}","Placer","06061","FALSE","FALSE","America/Los_Angeles"
-"95605","38.59294","-121.5391","West Sacramento","CA","California","TRUE","","14493","1435.0","06113","Yolo","{""06113"": ""100""}","Yolo","06113","FALSE","FALSE","America/Los_Angeles"
-"95606","38.75605","-122.19543","Brooks","CA","California","TRUE","","249","2.6","06113","Yolo","{""06113"": ""100""}","Yolo","06113","FALSE","FALSE","America/Los_Angeles"
-"95607","38.79135","-122.12724","Capay","CA","California","TRUE","","389","1.1","06113","Yolo","{""06113"": ""100""}","Yolo","06113","FALSE","FALSE","America/Los_Angeles"
-"95608","38.62583","-121.32829","Carmichael","CA","California","TRUE","","62539","1855.9","06067","Sacramento","{""06067"": ""100""}","Sacramento","06067","FALSE","FALSE","America/Los_Angeles"
-"95610","38.69491","-121.27176","Citrus Heights","CA","California","TRUE","","46305","2283.9","06067","Sacramento","{""06067"": ""100""}","Sacramento","06067","FALSE","FALSE","America/Los_Angeles"
-"95612","38.39227","-121.57571","Clarksburg","CA","California","TRUE","","1321","9.2","06113","Yolo","{""06113"": ""98.39"", ""06095"": ""1.61""}","Yolo|Solano","06113|06095","FALSE","FALSE","America/Los_Angeles"
-"95614","38.88376","-120.98287","Cool","CA","California","TRUE","","4359","47.4","06017","El Dorado","{""06017"": ""100""}","El Dorado","06017","FALSE","FALSE","America/Los_Angeles"
-"95615","38.31429","-121.54646","Courtland","CA","California","TRUE","","704","11.7","06067","Sacramento","{""06067"": ""98.2"", ""06113"": ""1.8""}","Sacramento|Yolo","06067|06113","FALSE","FALSE","America/Los_Angeles"
-"95616","38.55932","-121.7977","Davis","CA","California","TRUE","","52212","731.5","06113","Yolo","{""06113"": ""100""}","Yolo","06113","FALSE","FALSE","America/Los_Angeles"
-"95618","38.54067","-121.68305","Davis","CA","California","TRUE","","27519","304.2","06113","Yolo","{""06113"": ""99.66"", ""06095"": ""0.34""}","Yolo|Solano","06113|06095","FALSE","FALSE","America/Los_Angeles"
-"95619","38.6831","-120.81563","Diamond Springs","CA","California","TRUE","","5718","367.4","06017","El Dorado","{""06017"": ""100""}","El Dorado","06017","FALSE","FALSE","America/Los_Angeles"
-"95620","38.40971","-121.75299","Dixon","CA","California","TRUE","","21954","35.2","06095","Solano","{""06095"": ""99.52"", ""06113"": ""0.48""}","Solano|Yolo","06095|06113","FALSE","FALSE","America/Los_Angeles"
-"95621","38.69576","-121.30829","Citrus Heights","CA","California","TRUE","","41740","2371.5","06067","Sacramento","{""06067"": ""100""}","Sacramento","06067","FALSE","FALSE","America/Los_Angeles"
-"95623","38.59673","-120.85855","El Dorado","CA","California","TRUE","","3665","27.0","06017","El Dorado","{""06017"": ""100""}","El Dorado","06017","FALSE","FALSE","America/Los_Angeles"
-"95624","38.43039","-121.30913","Elk Grove","CA","California","TRUE","","65948","578.9","06067","Sacramento","{""06067"": ""100""}","Sacramento","06067","FALSE","FALSE","America/Los_Angeles"
-"95625","38.35811","-121.91151","Elmira","CA","California","TRUE","","74","24.7","06095","Solano","{""06095"": ""100""}","Solano","06095","FALSE","FALSE","America/Los_Angeles"
-"95626","38.73297","-121.46801","Elverta","CA","California","TRUE","","6065","101.2","06067","Sacramento","{""06067"": ""89.62"", ""06061"": ""8.54"", ""06101"": ""1.84""}","Sacramento|Placer|Sutter","06067|06061|06101","FALSE","FALSE","America/Los_Angeles"
-"95627","38.72619","-122.01421","Esparto","CA","California","TRUE","","3802","28.5","06113","Yolo","{""06113"": ""100""}","Yolo","06113","FALSE","FALSE","America/Los_Angeles"
-"95628","38.65199","-121.25426","Fair Oaks","CA","California","TRUE","","40855","1228.9","06067","Sacramento","{""06067"": ""100""}","Sacramento","06067","FALSE","FALSE","America/Los_Angeles"
-"95629","38.51645","-120.6885","Fiddletown","CA","California","TRUE","","940","7.8","06005","Amador","{""06005"": ""78.25"", ""06017"": ""21.75""}","Amador|El Dorado","06005|06017","FALSE","FALSE","America/Los_Angeles"
-"95630","38.66708","-121.14181","Folsom","CA","California","TRUE","","78159","1090.1","06067","Sacramento","{""06067"": ""100""}","Sacramento","06067","FALSE","FALSE","America/Los_Angeles"
-"95631","39.05606","-120.79093","Foresthill","CA","California","TRUE","","6851","17.4","06061","Placer","{""06061"": ""100""}","Placer","06061","FALSE","FALSE","America/Los_Angeles"
-"95632","38.27435","-121.25963","Galt","CA","California","TRUE","","31911","111.1","06067","Sacramento","{""06067"": ""96.4"", ""06077"": ""3.6""}","Sacramento|San Joaquin","06067|06077","FALSE","FALSE","America/Los_Angeles"
-"95633","38.84782","-120.82584","Garden Valley","CA","California","TRUE","","4188","39.2","06017","El Dorado","{""06017"": ""100""}","El Dorado","06017","FALSE","FALSE","America/Los_Angeles"
-"95634","38.93581","-120.77167","Georgetown","CA","California","TRUE","","3559","16.9","06017","El Dorado","{""06017"": ""100""}","El Dorado","06017","FALSE","FALSE","America/Los_Angeles"
-"95635","38.90496","-120.90861","Greenwood","CA","California","TRUE","","1058","20.1","06017","El Dorado","{""06017"": ""100""}","El Dorado","06017","FALSE","FALSE","America/Los_Angeles"
-"95636","38.62126","-120.38326","Grizzly Flats","CA","California","TRUE","","1195","4.0","06017","El Dorado","{""06017"": ""100""}","El Dorado","06017","FALSE","FALSE","America/Los_Angeles"
-"95637","38.83411","-122.23689","Guinda","CA","California","TRUE","","268","4.9","06113","Yolo","{""06113"": ""100""}","Yolo","06113","FALSE","FALSE","America/Los_Angeles"
-"95638","38.33437","-121.1226","Herald","CA","California","TRUE","","2126","10.4","06067","Sacramento","{""06067"": ""100""}","Sacramento","06067","FALSE","FALSE","America/Los_Angeles"
-"95639","38.3903","-121.50015","Hood","CA","California","TRUE","","335","28.6","06067","Sacramento","{""06067"": ""100""}","Sacramento","06067","FALSE","FALSE","America/Los_Angeles"
-"95640","38.32956","-120.94261","Ione","CA","California","TRUE","","11598","38.8","06005","Amador","{""06005"": ""100""}","Amador","06005","FALSE","FALSE","America/Los_Angeles"
-"95641","38.141","-121.59025","Isleton","CA","California","TRUE","","1489","12.9","06067","Sacramento","{""06067"": ""98.44"", ""06077"": ""1.56""}","Sacramento|San Joaquin","06067|06077","FALSE","FALSE","America/Los_Angeles"
-"95642","38.34262","-120.76101","Jackson","CA","California","TRUE","","7101","41.4","06005","Amador","{""06005"": ""100""}","Amador","06005","FALSE","FALSE","America/Los_Angeles"
-"95645","38.88664","-121.78688","Knights Landing","CA","California","TRUE","","1881","5.7","06113","Yolo","{""06113"": ""55.57"", ""06101"": ""39.27"", ""06011"": ""5.15""}","Yolo|Sutter|Colusa","06113|06101|06011","FALSE","FALSE","America/Los_Angeles"
-"95646","38.69154","-120.06181","Kirkwood","CA","California","TRUE","","80","8.1","06003","Alpine","{""06003"": ""61.39"", ""06005"": ""38.61""}","Alpine|Amador","06003|06005","FALSE","FALSE","America/Los_Angeles"
-"95648","38.9254","-121.31167","Lincoln","CA","California","TRUE","","52949","144.3","06061","Placer","{""06061"": ""100""}","Placer","06061","FALSE","FALSE","America/Los_Angeles"
-"95650","38.81283","-121.17077","Loomis","CA","California","TRUE","","14808","231.9","06061","Placer","{""06061"": ""100""}","Placer","06061","FALSE","FALSE","America/Los_Angeles"
-"95651","38.81781","-120.92925","Lotus","CA","California","TRUE","","624","20.8","06017","El Dorado","{""06017"": ""100""}","El Dorado","06017","FALSE","FALSE","America/Los_Angeles"
-"95652","38.66309","-121.40115","Mcclellan","CA","California","TRUE","","789","80.3","06067","Sacramento","{""06067"": ""100""}","Sacramento","06067","FALSE","FALSE","America/Los_Angeles"
-"95653","38.69343","-121.97767","Madison","CA","California","TRUE","","581","43.6","06113","Yolo","{""06113"": ""100""}","Yolo","06113","FALSE","FALSE","America/Los_Angeles"
-"95655","38.54957","-121.27931","Mather","CA","California","TRUE","","4156","168.6","06067","Sacramento","{""06067"": ""100""}","Sacramento","06067","FALSE","FALSE","America/Los_Angeles"
-"95658","38.87953","-121.15382","Newcastle","CA","California","TRUE","","6837","106.4","06061","Placer","{""06061"": ""100""}","Placer","06061","FALSE","FALSE","America/Los_Angeles"
-"95659","38.83993","-121.57134","Nicolaus","CA","California","TRUE","","932","7.2","06101","Sutter","{""06101"": ""100""}","Sutter","06101","FALSE","FALSE","America/Los_Angeles"
-"95660","38.67854","-121.37999","North Highlands","CA","California","TRUE","","35461","2197.1","06067","Sacramento","{""06067"": ""100""}","Sacramento","06067","FALSE","FALSE","America/Los_Angeles"
-"95661","38.74132","-121.24908","Roseville","CA","California","TRUE","","31315","1342.2","06061","Placer","{""06061"": ""100""}","Placer","06061","FALSE","FALSE","America/Los_Angeles"
-"95662","38.68917","-121.21983","Orangevale","CA","California","TRUE","","32172","1149.9","06067","Sacramento","{""06067"": ""100""}","Sacramento","06067","FALSE","FALSE","America/Los_Angeles"
-"95663","38.85575","-121.18231","Penryn","CA","California","TRUE","","2493","120.4","06061","Placer","{""06061"": ""100""}","Placer","06061","FALSE","FALSE","America/Los_Angeles"
-"95664","38.79899","-121.05067","Pilot Hill","CA","California","TRUE","","1603","16.4","06017","El Dorado","{""06017"": ""100""}","El Dorado","06017","FALSE","FALSE","America/Los_Angeles"
-"95665","38.40208","-120.65144","Pine Grove","CA","California","TRUE","","4303","81.9","06005","Amador","{""06005"": ""100""}","Amador","06005","FALSE","FALSE","America/Los_Angeles"
-"95666","38.53205","-120.36845","Pioneer","CA","California","TRUE","","5164","35.8","06005","Amador","{""06005"": ""100""}","Amador","06005","FALSE","FALSE","America/Los_Angeles"
-"95667","38.73526","-120.78985","Placerville","CA","California","TRUE","","36487","81.3","06017","El Dorado","{""06017"": ""100""}","El Dorado","06017","FALSE","FALSE","America/Los_Angeles"
-"95668","38.82844","-121.49253","Pleasant Grove","CA","California","TRUE","","664","4.2","06101","Sutter","{""06101"": ""83.19"", ""06061"": ""16.81""}","Sutter|Placer","06101|06061","FALSE","FALSE","America/Los_Angeles"
-"95669","38.48221","-120.89838","Plymouth","CA","California","TRUE","","2315","10.1","06005","Amador","{""06005"": ""100""}","Amador","06005","FALSE","FALSE","America/Los_Angeles"
-"95670","38.60475","-121.28001","Rancho Cordova","CA","California","TRUE","","55558","1699.0","06067","Sacramento","{""06067"": ""100""}","Sacramento","06067","FALSE","FALSE","America/Los_Angeles"
-"95672","38.72527","-120.99801","Rescue","CA","California","TRUE","","5266","90.4","06017","El Dorado","{""06017"": ""100""}","El Dorado","06017","FALSE","FALSE","America/Los_Angeles"
-"95673","38.68969","-121.46143","Rio Linda","CA","California","TRUE","","16636","396.9","06067","Sacramento","{""06067"": ""100""}","Sacramento","06067","FALSE","FALSE","America/Los_Angeles"
-"95674","38.95417","-121.48186","Rio Oso","CA","California","TRUE","","767","9.2","06101","Sutter","{""06101"": ""100""}","Sutter","06101","FALSE","FALSE","America/Los_Angeles"
-"95675","38.54471","-120.74052","River Pines","CA","California","TRUE","","566","317.0","06005","Amador","{""06005"": ""100""}","Amador","06005","FALSE","FALSE","America/Los_Angeles"
-"95677","38.79134","-121.2344","Rocklin","CA","California","TRUE","","25477","1109.6","06061","Placer","{""06061"": ""100""}","Placer","06061","FALSE","FALSE","America/Los_Angeles"
-"95678","38.76395","-121.28752","Roseville","CA","California","TRUE","","42053","1498.2","06061","Placer","{""06061"": ""100""}","Placer","06061","FALSE","FALSE","America/Los_Angeles"
-"95679","38.88594","-122.3272","Rumsey","CA","California","TRUE","","56","0.5","06113","Yolo","{""06113"": ""100""}","Yolo","06113","FALSE","FALSE","America/Los_Angeles"
-"95680","38.23978","-121.58454","Ryde","CA","California","TRUE","","10","1.9","06067","Sacramento","{""06067"": ""100""}","Sacramento","06067","FALSE","FALSE","America/Los_Angeles"
-"95681","38.99797","-121.35289","Sheridan","CA","California","TRUE","","1246","27.9","06061","Placer","{""06061"": ""100""}","Placer","06061","FALSE","FALSE","America/Los_Angeles"
-"95682","38.61109","-120.96638","Shingle Springs","CA","California","TRUE","","30314","144.2","06017","El Dorado","{""06017"": ""100""}","El Dorado","06017","FALSE","FALSE","America/Los_Angeles"
-"95683","38.50764","-121.10153","Sloughhouse","CA","California","TRUE","","6326","26.9","06067","Sacramento","{""06067"": ""100""}","Sacramento","06067","FALSE","FALSE","America/Los_Angeles"
-"95684","38.59699","-120.58455","Somerset","CA","California","TRUE","","3129","8.3","06017","El Dorado","{""06017"": ""100""}","El Dorado","06017","FALSE","FALSE","America/Los_Angeles"
-"95685","38.43107","-120.76783","Sutter Creek","CA","California","TRUE","","4665","36.5","06005","Amador","{""06005"": ""100""}","Amador","06005","FALSE","FALSE","America/Los_Angeles"
-"95686","38.19165","-121.48916","Thornton","CA","California","TRUE","","1262","17.9","06077","San Joaquin","{""06077"": ""100""}","San Joaquin","06077","FALSE","FALSE","America/Los_Angeles"
-"95687","38.33691","-121.9204","Vacaville","CA","California","TRUE","","69060","612.8","06095","Solano","{""06095"": ""100""}","Solano","06095","FALSE","FALSE","America/Los_Angeles"
-"95688","38.40915","-122.02266","Vacaville","CA","California","TRUE","","37260","177.2","06095","Solano","{""06095"": ""100""}","Solano","06095","FALSE","FALSE","America/Los_Angeles"
-"95689","38.47885","-120.61202","Volcano","CA","California","TRUE","","1698","23.6","06005","Amador","{""06005"": ""100""}","Amador","06005","FALSE","FALSE","America/Los_Angeles"
-"95690","38.2361","-121.5785","Walnut Grove","CA","California","TRUE","","2215","14.9","06067","Sacramento","{""06067"": ""86.74"", ""06095"": ""13.26""}","Sacramento|Solano","06067|06095","FALSE","FALSE","America/Los_Angeles"
-"95691","38.61708","-121.58234","West Sacramento","CA","California","TRUE","","38690","359.4","06113","Yolo","{""06113"": ""100""}","Yolo","06113","FALSE","FALSE","America/Los_Angeles"
-"95692","39.04589","-121.40381","Wheatland","CA","California","TRUE","","5251","37.3","06115","Yuba","{""06115"": ""99.54"", ""06101"": ""0.46""}","Yuba|Sutter","06115|06101","FALSE","FALSE","America/Los_Angeles"
-"95693","38.39999","-121.21256","Wilton","CA","California","TRUE","","7037","43.2","06067","Sacramento","{""06067"": ""100""}","Sacramento","06067","FALSE","FALSE","America/Los_Angeles"
-"95694","38.55591","-122.00675","Winters","CA","California","TRUE","","10495","27.2","06113","Yolo","{""06113"": ""87.75"", ""06095"": ""12.25""}","Yolo|Solano","06113|06095","FALSE","FALSE","America/Los_Angeles"
-"95695","38.6871","-121.85704","Woodland","CA","California","TRUE","","41278","112.1","06113","Yolo","{""06113"": ""100""}","Yolo","06113","FALSE","FALSE","America/Los_Angeles"
-"95697","38.73244","-121.81016","Yolo","CA","California","TRUE","","183","304.9","06113","Yolo","{""06113"": ""100""}","Yolo","06113","FALSE","FALSE","America/Los_Angeles"
-"95698","38.81752","-121.91213","Zamora","CA","California","TRUE","","148","1.3","06113","Yolo","{""06113"": ""100""}","Yolo","06113","FALSE","FALSE","America/Los_Angeles"
-"95699","38.4354","-120.85948","Drytown","CA","California","TRUE","","21","2.0","06005","Amador","{""06005"": ""100""}","Amador","06005","FALSE","FALSE","America/Los_Angeles"
-"95701","39.22737","-120.76634","Alta","CA","California","TRUE","","915","10.6","06061","Placer","{""06061"": ""100""}","Placer","06061","FALSE","FALSE","America/Los_Angeles"
-"95703","38.9908","-120.98528","Applegate","CA","California","TRUE","","831","72.1","06061","Placer","{""06061"": ""100""}","Placer","06061","FALSE","FALSE","America/Los_Angeles"
-"95709","38.74883","-120.67938","Camino","CA","California","TRUE","","5498","95.1","06017","El Dorado","{""06017"": ""100""}","El Dorado","06017","FALSE","FALSE","America/Los_Angeles"
-"95713","39.08996","-120.91606","Colfax","CA","California","TRUE","","10472","56.8","06061","Placer","{""06061"": ""100""}","Placer","06061","FALSE","FALSE","America/Los_Angeles"
-"95714","39.20125","-120.83932","Dutch Flat","CA","California","TRUE","","522","59.9","06061","Placer","{""06061"": ""100""}","Placer","06061","FALSE","FALSE","America/Los_Angeles"
-"95715","39.26433","-120.67621","Emigrant Gap","CA","California","TRUE","","104","1.5","06061","Placer","{""06061"": ""93.04"", ""06057"": ""6.96""}","Placer|Nevada","06061|06057","FALSE","FALSE","America/Los_Angeles"
-"95717","39.14458","-120.85264","Gold Run","CA","California","TRUE","","176","6.7","06061","Placer","{""06061"": ""100""}","Placer","06061","FALSE","FALSE","America/Los_Angeles"
-"95720","38.76708","-120.2265","Kyburz","CA","California","TRUE","","103","0.3","06017","El Dorado","{""06017"": ""100""}","El Dorado","06017","FALSE","FALSE","America/Los_Angeles"
-"95721","38.83448","-120.08184","Echo Lake","CA","California","TRUE","","0","0.0","06017","El Dorado","{""06017"": ""100""}","El Dorado","06017","FALSE","FALSE","America/Los_Angeles"
-"95722","39.00591","-121.02842","Meadow Vista","CA","California","TRUE","","5123","181.0","06061","Placer","{""06061"": ""100""}","Placer","06061","FALSE","FALSE","America/Los_Angeles"
-"95724","39.31171","-120.32804","Norden","CA","California","TRUE","","22","7.1","06061","Placer","{""06061"": ""100""}","Placer","06061","FALSE","FALSE","America/Los_Angeles"
-"95726","38.80334","-120.51647","Pollock Pines","CA","California","TRUE","","8449","43.9","06017","El Dorado","{""06017"": ""100""}","El Dorado","06017","FALSE","FALSE","America/Los_Angeles"
-"95728","39.317","-120.42589","Soda Springs","CA","California","TRUE","","231","7.2","06061","Placer","{""06061"": ""72.02"", ""06057"": ""27.98""}","Placer|Nevada","06061|06057","FALSE","FALSE","America/Los_Angeles"
-"95735","38.82061","-120.15228","Twin Bridges","CA","California","TRUE","","12","0.2","06017","El Dorado","{""06017"": ""100""}","El Dorado","06017","FALSE","FALSE","America/Los_Angeles"
-"95736","39.03885","-120.97747","Weimar","CA","California","TRUE","","289","445.8","06061","Placer","{""06061"": ""100""}","Placer","06061","FALSE","FALSE","America/Los_Angeles"
-"95742","38.57508","-121.19836","Rancho Cordova","CA","California","TRUE","","12472","96.8","06067","Sacramento","{""06067"": ""100""}","Sacramento","06067","FALSE","FALSE","America/Los_Angeles"
-"95746","38.75126","-121.18106","Granite Bay","CA","California","TRUE","","23934","523.9","06061","Placer","{""06061"": ""100""}","Placer","06061","FALSE","FALSE","America/Los_Angeles"
-"95747","38.78145","-121.37295","Roseville","CA","California","TRUE","","66931","552.9","06061","Placer","{""06061"": ""100""}","Placer","06061","FALSE","FALSE","America/Los_Angeles"
-"95757","38.34332","-121.43365","Elk Grove","CA","California","TRUE","","50727","324.0","06067","Sacramento","{""06067"": ""100""}","Sacramento","06067","FALSE","FALSE","America/Los_Angeles"
-"95758","38.42788","-121.44343","Elk Grove","CA","California","TRUE","","65811","1974.0","06067","Sacramento","{""06067"": ""100""}","Sacramento","06067","FALSE","FALSE","America/Los_Angeles"
-"95762","38.6764","-121.05773","El Dorado Hills","CA","California","TRUE","","43052","401.9","06017","El Dorado","{""06017"": ""100""}","El Dorado","06017","FALSE","FALSE","America/Los_Angeles"
-"95765","38.81861","-121.27807","Rocklin","CA","California","TRUE","","39214","1228.6","06061","Placer","{""06061"": ""100""}","Placer","06061","FALSE","FALSE","America/Los_Angeles"
-"95776","38.6825","-121.70563","Woodland","CA","California","TRUE","","23911","99.9","06113","Yolo","{""06113"": ""100""}","Yolo","06113","FALSE","FALSE","America/Los_Angeles"
-"95811","38.58747","-121.48516","Sacramento","CA","California","TRUE","","6294","854.8","06067","Sacramento","{""06067"": ""100""}","Sacramento","06067","FALSE","FALSE","America/Los_Angeles"
-"95814","38.58045","-121.49498","Sacramento","CA","California","TRUE","","11908","3292.3","06067","Sacramento","{""06067"": ""100""}","Sacramento","06067","FALSE","FALSE","America/Los_Angeles"
-"95815","38.60548","-121.4473","Sacramento","CA","California","TRUE","","25673","1254.4","06067","Sacramento","{""06067"": ""100""}","Sacramento","06067","FALSE","FALSE","America/Los_Angeles"
-"95816","38.57163","-121.46691","Sacramento","CA","California","TRUE","","17199","3244.3","06067","Sacramento","{""06067"": ""100""}","Sacramento","06067","FALSE","FALSE","America/Los_Angeles"
-"95817","38.55059","-121.45643","Sacramento","CA","California","TRUE","","13758","2318.5","06067","Sacramento","{""06067"": ""100""}","Sacramento","06067","FALSE","FALSE","America/Los_Angeles"
-"95818","38.55588","-121.49664","Sacramento","CA","California","TRUE","","21625","2184.0","06067","Sacramento","{""06067"": ""100""}","Sacramento","06067","FALSE","FALSE","America/Los_Angeles"
-"95819","38.56964","-121.43974","Sacramento","CA","California","TRUE","","19890","2246.1","06067","Sacramento","{""06067"": ""100""}","Sacramento","06067","FALSE","FALSE","America/Los_Angeles"
-"95820","38.53486","-121.44438","Sacramento","CA","California","TRUE","","36437","2708.4","06067","Sacramento","{""06067"": ""100""}","Sacramento","06067","FALSE","FALSE","America/Los_Angeles"
-"95821","38.6259","-121.3845","Sacramento","CA","California","TRUE","","35812","1933.5","06067","Sacramento","{""06067"": ""100""}","Sacramento","06067","FALSE","FALSE","America/Los_Angeles"
-"95822","38.51275","-121.4956","Sacramento","CA","California","TRUE","","44741","2043.7","06067","Sacramento","{""06067"": ""100""}","Sacramento","06067","FALSE","FALSE","America/Los_Angeles"
-"95823","38.47408","-121.44347","Sacramento","CA","California","TRUE","","79440","2598.5","06067","Sacramento","{""06067"": ""100""}","Sacramento","06067","FALSE","FALSE","America/Los_Angeles"
-"95824","38.51759","-121.44075","Sacramento","CA","California","TRUE","","30296","2880.3","06067","Sacramento","{""06067"": ""100""}","Sacramento","06067","FALSE","FALSE","America/Los_Angeles"
-"95825","38.59036","-121.40641","Sacramento","CA","California","TRUE","","37473","3068.4","06067","Sacramento","{""06067"": ""100""}","Sacramento","06067","FALSE","FALSE","America/Los_Angeles"
-"95826","38.54511","-121.37914","Sacramento","CA","California","TRUE","","39145","1323.4","06067","Sacramento","{""06067"": ""100""}","Sacramento","06067","FALSE","FALSE","America/Los_Angeles"
-"95827","38.55504","-121.32555","Sacramento","CA","California","TRUE","","20666","1034.7","06067","Sacramento","{""06067"": ""100""}","Sacramento","06067","FALSE","FALSE","America/Los_Angeles"
-"95828","38.48879","-121.39587","Sacramento","CA","California","TRUE","","58717","1840.1","06067","Sacramento","{""06067"": ""100""}","Sacramento","06067","FALSE","FALSE","America/Los_Angeles"
-"95829","38.48924","-121.33249","Sacramento","CA","California","TRUE","","28264","525.1","06067","Sacramento","{""06067"": ""100""}","Sacramento","06067","FALSE","FALSE","America/Los_Angeles"
-"95830","38.49402","-121.27235","Sacramento","CA","California","TRUE","","734","21.9","06067","Sacramento","{""06067"": ""100""}","Sacramento","06067","FALSE","FALSE","America/Los_Angeles"
-"95831","38.49593","-121.52936","Sacramento","CA","California","TRUE","","43094","2367.9","06067","Sacramento","{""06067"": ""100""}","Sacramento","06067","FALSE","FALSE","America/Los_Angeles"
-"95832","38.44506","-121.49648","Sacramento","CA","California","TRUE","","12114","559.5","06067","Sacramento","{""06067"": ""100""}","Sacramento","06067","FALSE","FALSE","America/Los_Angeles"
-"95833","38.61564","-121.51585","Sacramento","CA","California","TRUE","","39905","1988.1","06067","Sacramento","{""06067"": ""100""}","Sacramento","06067","FALSE","FALSE","America/Los_Angeles"
-"95834","38.64203","-121.52027","Sacramento","CA","California","TRUE","","30076","1166.5","06067","Sacramento","{""06067"": ""100""}","Sacramento","06067","FALSE","FALSE","America/Los_Angeles"
-"95835","38.67075","-121.52581","Sacramento","CA","California","TRUE","","40170","1736.6","06067","Sacramento","{""06067"": ""100""}","Sacramento","06067","FALSE","FALSE","America/Los_Angeles"
-"95837","38.70046","-121.5915","Sacramento","CA","California","TRUE","","300","6.4","06067","Sacramento","{""06067"": ""66.98"", ""06101"": ""33.02""}","Sacramento|Sutter","06067|06101","FALSE","FALSE","America/Los_Angeles"
-"95838","38.64679","-121.44495","Sacramento","CA","California","TRUE","","39053","1659.8","06067","Sacramento","{""06067"": ""100""}","Sacramento","06067","FALSE","FALSE","America/Los_Angeles"
-"95841","38.66035","-121.34742","Sacramento","CA","California","TRUE","","21229","2011.0","06067","Sacramento","{""06067"": ""100""}","Sacramento","06067","FALSE","FALSE","America/Los_Angeles"
-"95842","38.68673","-121.34919","Sacramento","CA","California","TRUE","","33522","3300.6","06067","Sacramento","{""06067"": ""100""}","Sacramento","06067","FALSE","FALSE","America/Los_Angeles"
-"95843","38.71546","-121.36338","Antelope","CA","California","TRUE","","47823","2863.4","06067","Sacramento","{""06067"": ""100""}","Sacramento","06067","FALSE","FALSE","America/Los_Angeles"
-"95864","38.5853","-121.37627","Sacramento","CA","California","TRUE","","23352","1424.1","06067","Sacramento","{""06067"": ""100""}","Sacramento","06067","FALSE","FALSE","America/Los_Angeles"
-"95901","39.22185","-121.49156","Marysville","CA","California","TRUE","","33455","65.7","06115","Yuba","{""06115"": ""98.95"", ""06007"": ""1.05""}","Yuba|Butte","06115|06007","FALSE","FALSE","America/Los_Angeles"
-"95903","39.10251","-121.36833","Beale Afb","CA","California","TRUE","","1653","43.8","06115","Yuba","{""06115"": ""100""}","Yuba","06115","FALSE","FALSE","America/Los_Angeles"
-"95910","39.47444","-120.82258","Alleghany","CA","California","TRUE","","123","1.4","06091","Sierra","{""06091"": ""100""}","Sierra","06091","FALSE","FALSE","America/Los_Angeles"
-"95912","39.01635","-122.06195","Arbuckle","CA","California","TRUE","","5380","11.5","06011","Colusa","{""06011"": ""97.4"", ""06113"": ""2.6""}","Colusa|Yolo","06011|06113","FALSE","FALSE","America/Los_Angeles"
-"95914","39.40999","-121.36326","Bangor","CA","California","TRUE","","752","19.8","06007","Butte","{""06007"": ""60.21"", ""06115"": ""39.79""}","Butte|Yuba","06007|06115","FALSE","FALSE","America/Los_Angeles"
-"95915","39.97548","-121.20866","Belden","CA","California","TRUE","","0","0.0","06063","Plumas","{""06063"": ""100""}","Plumas","06063","FALSE","FALSE","America/Los_Angeles"
-"95916","39.66073","-121.36357","Berry Creek","CA","California","TRUE","","1359","5.4","06007","Butte","{""06007"": ""100""}","Butte","06007","FALSE","FALSE","America/Los_Angeles"
-"95917","39.41906","-121.76252","Biggs","CA","California","TRUE","","3717","20.8","06007","Butte","{""06007"": ""100""}","Butte","06007","FALSE","FALSE","America/Los_Angeles"
-"95918","39.29654","-121.3334","Browns Valley","CA","California","TRUE","","2915","16.3","06115","Yuba","{""06115"": ""100""}","Yuba","06115","FALSE","FALSE","America/Los_Angeles"
-"95919","39.43289","-121.26113","Brownsville","CA","California","TRUE","","971","15.2","06115","Yuba","{""06115"": ""100""}","Yuba","06115","FALSE","FALSE","America/Los_Angeles"
-"95920","39.46072","-121.93702","Butte City","CA","California","TRUE","","315","1.8","06021","Glenn","{""06021"": ""100""}","Glenn","06021","FALSE","FALSE","America/Los_Angeles"
-"95922","39.48489","-121.07192","Camptonville","CA","California","TRUE","","831","5.1","06115","Yuba","{""06115"": ""97.67"", ""06091"": ""2.33""}","Yuba|Sierra","06115|06091","FALSE","FALSE","America/Los_Angeles"
-"95923","40.15792","-121.1155","Canyon Dam","CA","California","TRUE","","28","1.1","06063","Plumas","{""06063"": ""100""}","Plumas","06063","FALSE","FALSE","America/Los_Angeles"
-"95925","39.4689","-121.17952","Challenge","CA","California","TRUE","","276","3.2","06115","Yuba","{""06115"": ""100""}","Yuba","06115","FALSE","FALSE","America/Los_Angeles"
-"95926","39.7456","-121.84388","Chico","CA","California","TRUE","","40000","2018.6","06007","Butte","{""06007"": ""100""}","Butte","06007","FALSE","FALSE","America/Los_Angeles"
-"95928","39.68377","-121.84454","Chico","CA","California","TRUE","","37735","106.0","06007","Butte","{""06007"": ""100""}","Butte","06007","FALSE","FALSE","America/Los_Angeles"
-"95930","39.5519","-121.19346","Clipper Mills","CA","California","TRUE","","72","1.7","06007","Butte","{""06007"": ""50.72"", ""06115"": ""49.28""}","Butte|Yuba","06007|06115","FALSE","FALSE","America/Los_Angeles"
-"95932","39.27203","-121.9988","Colusa","CA","California","TRUE","","7633","23.7","06011","Colusa","{""06011"": ""100""}","Colusa","06011","FALSE","FALSE","America/Los_Angeles"
-"95934","40.07192","-120.92855","Crescent Mills","CA","California","TRUE","","146","2.7","06063","Plumas","{""06063"": ""100""}","Plumas","06063","FALSE","FALSE","America/Los_Angeles"
-"95935","39.37755","-121.19117","Dobbins","CA","California","TRUE","","261","4.3","06115","Yuba","{""06115"": ""100""}","Yuba","06115","FALSE","FALSE","America/Los_Angeles"
-"95936","39.60728","-120.79215","Downieville","CA","California","TRUE","","158","0.6","06091","Sierra","{""06091"": ""100""}","Sierra","06091","FALSE","FALSE","America/Los_Angeles"
-"95937","38.88522","-121.999","Dunnigan","CA","California","TRUE","","1540","11.7","06113","Yolo","{""06113"": ""100""}","Yolo","06113","FALSE","FALSE","America/Los_Angeles"
-"95938","39.60303","-121.79879","Durham","CA","California","TRUE","","4446","23.9","06007","Butte","{""06007"": ""100""}","Butte","06007","FALSE","FALSE","America/Los_Angeles"
-"95939","39.56322","-122.59296","Elk Creek","CA","California","TRUE","","605","0.8","06021","Glenn","{""06021"": ""100""}","Glenn","06021","FALSE","FALSE","America/Los_Angeles"
-"95941","39.52098","-121.2424","Forbestown","CA","California","TRUE","","775","18.9","06007","Butte","{""06007"": ""80.11"", ""06115"": ""19.89""}","Butte|Yuba","06007|06115","FALSE","FALSE","America/Los_Angeles"
-"95942","40.01871","-121.56466","Forest Ranch","CA","California","TRUE","","934","6.5","06007","Butte","{""06007"": ""100""}","Butte","06007","FALSE","FALSE","America/Los_Angeles"
-"95943","39.58572","-122.03669","Glenn","CA","California","TRUE","","871","5.3","06021","Glenn","{""06021"": ""100""}","Glenn","06021","FALSE","FALSE","America/Los_Angeles"
-"95944","39.49932","-120.93149","Goodyears Bar","CA","California","TRUE","","26","0.2","06091","Sierra","{""06091"": ""100""}","Sierra","06091","FALSE","FALSE","America/Los_Angeles"
-"95945","39.19509","-120.97699","Grass Valley","CA","California","TRUE","","25381","152.6","06057","Nevada","{""06057"": ""100""}","Nevada","06057","FALSE","FALSE","America/Los_Angeles"
-"95946","39.21537","-121.20124","Penn Valley","CA","California","TRUE","","8977","82.8","06057","Nevada","{""06057"": ""100""}","Nevada","06057","FALSE","FALSE","America/Los_Angeles"
-"95947","40.17456","-120.8197","Greenville","CA","California","TRUE","","1657","4.9","06063","Plumas","{""06063"": ""100""}","Plumas","06063","FALSE","FALSE","America/Los_Angeles"
-"95948","39.34384","-121.76035","Gridley","CA","California","TRUE","","11917","59.0","06007","Butte","{""06007"": ""99.76"", ""06101"": ""0.24""}","Butte|Sutter","06007|06101","FALSE","FALSE","America/Los_Angeles"
-"95949","39.1026","-121.13515","Grass Valley","CA","California","TRUE","","21036","58.2","06057","Nevada","{""06057"": ""100""}","Nevada","06057","FALSE","FALSE","America/Los_Angeles"
-"95950","39.04405","-121.92095","Grimes","CA","California","TRUE","","350","2.7","06011","Colusa","{""06011"": ""100""}","Colusa","06011","FALSE","FALSE","America/Los_Angeles"
-"95951","39.71694","-122.00226","Hamilton City","CA","California","TRUE","","2686","56.4","06021","Glenn","{""06021"": ""100""}","Glenn","06021","FALSE","FALSE","America/Los_Angeles"
-"95953","39.2509","-121.7739","Live Oak","CA","California","TRUE","","10925","37.1","06101","Sutter","{""06101"": ""100""}","Sutter","06101","FALSE","FALSE","America/Los_Angeles"
-"95954","39.89153","-121.58525","Magalia","CA","California","TRUE","","12371","67.2","06007","Butte","{""06007"": ""100""}","Butte","06007","FALSE","FALSE","America/Los_Angeles"
-"95955","39.29409","-122.20733","Maxwell","CA","California","TRUE","","1386","4.4","06011","Colusa","{""06011"": ""100""}","Colusa","06011","FALSE","FALSE","America/Los_Angeles"
-"95956","39.83806","-121.13636","Meadow Valley","CA","California","TRUE","","348","2.0","06063","Plumas","{""06063"": ""100""}","Plumas","06063","FALSE","FALSE","America/Los_Angeles"
-"95957","39.06216","-121.82823","Meridian","CA","California","TRUE","","879","4.9","06101","Sutter","{""06101"": ""100""}","Sutter","06101","FALSE","FALSE","America/Los_Angeles"
-"95959","39.33853","-120.92058","Nevada City","CA","California","TRUE","","18343","28.6","06057","Nevada","{""06057"": ""100""}","Nevada","06057","FALSE","FALSE","America/Los_Angeles"
-"95960","39.38978","-121.04434","North San Juan","CA","California","TRUE","","684","5.5","06057","Nevada","{""06057"": ""73.24"", ""06091"": ""18.34"", ""06115"": ""8.42""}","Nevada|Sierra|Yuba","06057|06091|06115","FALSE","FALSE","America/Los_Angeles"
-"95961","39.03344","-121.55758","Olivehurst","CA","California","TRUE","","28489","240.3","06115","Yuba","{""06115"": ""100""}","Yuba","06115","FALSE","FALSE","America/Los_Angeles"
-"95962","39.34594","-121.26629","Oregon House","CA","California","TRUE","","1324","17.2","06115","Yuba","{""06115"": ""100""}","Yuba","06115","FALSE","FALSE","America/Los_Angeles"
-"95963","39.73634","-122.26205","Orland","CA","California","TRUE","","15492","19.6","06021","Glenn","{""06021"": ""95.11"", ""06103"": ""4.89""}","Glenn|Tehama","06021|06103","FALSE","FALSE","America/Los_Angeles"
-"95965","39.5947","-121.59608","Oroville","CA","California","TRUE","","20498","24.7","06007","Butte","{""06007"": ""100""}","Butte","06007","FALSE","FALSE","America/Los_Angeles"
-"95966","39.47123","-121.42821","Oroville","CA","California","TRUE","","29860","62.6","06007","Butte","{""06007"": ""99.54"", ""06115"": ""0.46""}","Butte|Yuba","06007|06115","FALSE","FALSE","America/Los_Angeles"
-"95968","39.43522","-121.55195","Palermo","CA","California","TRUE","","1231","307.1","06007","Butte","{""06007"": ""100""}","Butte","06007","FALSE","FALSE","America/Los_Angeles"
-"95969","39.71633","-121.64742","Paradise","CA","California","TRUE","","23572","154.2","06007","Butte","{""06007"": ""100""}","Butte","06007","FALSE","FALSE","America/Los_Angeles"
-"95970","39.40056","-122.06028","Princeton","CA","California","TRUE","","616","5.1","06011","Colusa","{""06011"": ""67.55"", ""06021"": ""32.45""}","Colusa|Glenn","06011|06021","FALSE","FALSE","America/Los_Angeles"
-"95971","39.93721","-120.90026","Quincy","CA","California","TRUE","","5924","22.6","06063","Plumas","{""06063"": ""100""}","Plumas","06063","FALSE","FALSE","America/Los_Angeles"
-"95973","39.8974","-121.84826","Chico","CA","California","TRUE","","36682","42.6","06007","Butte","{""06007"": ""99.76"", ""06103"": ""0.24""}","Butte|Tehama","06007|06103","FALSE","FALSE","America/Los_Angeles"
-"95974","39.48023","-121.83853","Richvale","CA","California","TRUE","","65","3.0","06007","Butte","{""06007"": ""100""}","Butte","06007","FALSE","FALSE","America/Los_Angeles"
-"95975","39.22442","-121.15153","Rough And Ready","CA","California","TRUE","","1877","77.3","06057","Nevada","{""06057"": ""100""}","Nevada","06057","FALSE","FALSE","America/Los_Angeles"
-"95977","39.17693","-121.28798","Smartsville","CA","California","TRUE","","1488","14.7","06057","Nevada","{""06057"": ""61.56"", ""06115"": ""38.44""}","Nevada|Yuba","06057|06115","FALSE","FALSE","America/Los_Angeles"
-"95978","39.87564","-121.53629","Stirling City","CA","California","TRUE","","245","15.0","06007","Butte","{""06007"": ""100""}","Butte","06007","FALSE","FALSE","America/Los_Angeles"
-"95979","39.30145","-122.51586","Stonyford","CA","California","TRUE","","414","0.6","06011","Colusa","{""06011"": ""100""}","Colusa","06011","FALSE","FALSE","America/Los_Angeles"
-"95981","39.63608","-121.03597","Strawberry Valley","CA","California","TRUE","","39","0.4","06115","Yuba","{""06115"": ""69.07"", ""06063"": ""30.93""}","Yuba|Plumas","06115|06063","FALSE","FALSE","America/Los_Angeles"
-"95982","39.18314","-121.80465","Sutter","CA","California","TRUE","","3259","28.4","06101","Sutter","{""06101"": ""100""}","Sutter","06101","FALSE","FALSE","America/Los_Angeles"
-"95983","40.07792","-120.70727","Taylorsville","CA","California","TRUE","","380","1.2","06063","Plumas","{""06063"": ""100""}","Plumas","06063","FALSE","FALSE","America/Los_Angeles"
-"95984","40.04096","-121.12268","Twain","CA","California","TRUE","","327","3.8","06063","Plumas","{""06063"": ""100""}","Plumas","06063","FALSE","FALSE","America/Los_Angeles"
-"95986","39.34258","-120.77087","Washington","CA","California","TRUE","","56","2.6","06057","Nevada","{""06057"": ""100""}","Nevada","06057","FALSE","FALSE","America/Los_Angeles"
-"95987","39.09609","-122.28249","Williams","CA","California","TRUE","","5950","6.9","06011","Colusa","{""06011"": ""100""}","Colusa","06011","FALSE","FALSE","America/Los_Angeles"
-"95988","39.50503","-122.27429","Willows","CA","California","TRUE","","8298","10.3","06021","Glenn","{""06021"": ""100""}","Glenn","06021","FALSE","FALSE","America/Los_Angeles"
-"95991","39.02249","-121.61286","Yuba City","CA","California","TRUE","","40861","387.7","06101","Sutter","{""06101"": ""100""}","Sutter","06101","FALSE","FALSE","America/Los_Angeles"
-"95993","39.08184","-121.68845","Yuba City","CA","California","TRUE","","37077","167.4","06101","Sutter","{""06101"": ""100""}","Sutter","06101","FALSE","FALSE","America/Los_Angeles"
-"96001","40.59648","-122.46004","Redding","CA","California","TRUE","","34293","150.5","06089","Shasta","{""06089"": ""100""}","Shasta","06089","FALSE","FALSE","America/Los_Angeles"
-"96002","40.53023","-122.31734","Redding","CA","California","TRUE","","34196","436.5","06089","Shasta","{""06089"": ""100""}","Shasta","06089","FALSE","FALSE","America/Los_Angeles"
-"96003","40.74375","-122.2387","Redding","CA","California","TRUE","","44328","72.0","06089","Shasta","{""06089"": ""100""}","Shasta","06089","FALSE","FALSE","America/Los_Angeles"
-"96006","41.17425","-120.85292","Adin","CA","California","TRUE","","389","0.9","06049","Modoc","{""06049"": ""69.3"", ""06035"": ""30.7""}","Modoc|Lassen","06049|06035","FALSE","FALSE","America/Los_Angeles"
-"96007","40.45867","-122.27916","Anderson","CA","California","TRUE","","23228","69.2","06089","Shasta","{""06089"": ""100""}","Shasta","06089","FALSE","FALSE","America/Los_Angeles"
-"96008","40.71236","-122.10816","Bella Vista","CA","California","TRUE","","1191","12.7","06089","Shasta","{""06089"": ""100""}","Shasta","06089","FALSE","FALSE","America/Los_Angeles"
-"96009","41.06347","-121.04102","Bieber","CA","California","TRUE","","321","0.6","06035","Lassen","{""06035"": ""100""}","Lassen","06035","FALSE","FALSE","America/Los_Angeles"
-"96010","40.91942","-123.24622","Big Bar","CA","California","TRUE","","122","0.1","06105","Trinity","{""06105"": ""100""}","Trinity","06105","FALSE","FALSE","America/Los_Angeles"
-"96011","41.05006","-121.98342","Big Bend","CA","California","TRUE","","199","0.2","06089","Shasta","{""06089"": ""100""}","Shasta","06089","FALSE","FALSE","America/Los_Angeles"
-"96013","41.0015","-121.68639","Burney","CA","California","TRUE","","4819","8.1","06089","Shasta","{""06089"": ""100""}","Shasta","06089","FALSE","FALSE","America/Los_Angeles"
-"96014","41.33895","-122.77793","Callahan","CA","California","TRUE","","135","0.4","06093","Siskiyou","{""06093"": ""100""}","Siskiyou","06093","FALSE","FALSE","America/Los_Angeles"
-"96015","41.50377","-120.91725","Canby","CA","California","TRUE","","320","0.5","06049","Modoc","{""06049"": ""100""}","Modoc","06049","FALSE","FALSE","America/Los_Angeles"
-"96016","40.91155","-121.52318","Cassel","CA","California","TRUE","","424","3.9","06089","Shasta","{""06089"": ""100""}","Shasta","06089","FALSE","FALSE","America/Los_Angeles"
-"96017","41.11961","-122.27029","Castella","CA","California","TRUE","","140","0.4","06089","Shasta","{""06089"": ""100""}","Shasta","06089","FALSE","FALSE","America/Los_Angeles"
-"96019","40.67917","-122.37743","Shasta Lake","CA","California","TRUE","","10178","359.1","06089","Shasta","{""06089"": ""100""}","Shasta","06089","FALSE","FALSE","America/Los_Angeles"
-"96020","40.367","-121.29632","Chester","CA","California","TRUE","","2369","22.9","06063","Plumas","{""06063"": ""100""}","Plumas","06063","FALSE","FALSE","America/Los_Angeles"
-"96021","39.92648","-122.26527","Corning","CA","California","TRUE","","16017","25.9","06103","Tehama","{""06103"": ""100""}","Tehama","06103","FALSE","FALSE","America/Los_Angeles"
-"96022","40.33505","-122.447","Cottonwood","CA","California","TRUE","","16253","25.9","06103","Tehama","{""06103"": ""52.31"", ""06089"": ""47.69""}","Tehama|Shasta","06103|06089","FALSE","FALSE","America/Los_Angeles"
-"96023","41.92683","-121.9071","Dorris","CA","California","TRUE","","1184","1.8","06093","Siskiyou","{""06093"": ""100""}","Siskiyou","06093","FALSE","FALSE","America/Los_Angeles"
-"96024","40.5754","-122.89042","Douglas City","CA","California","TRUE","","846","1.8","06105","Trinity","{""06105"": ""100""}","Trinity","06105","FALSE","FALSE","America/Los_Angeles"
-"96025","41.21073","-122.31349","Dunsmuir","CA","California","TRUE","","2126","8.9","06093","Siskiyou","{""06093"": ""92.77"", ""06089"": ""7.23""}","Siskiyou|Shasta","06093|06089","FALSE","FALSE","America/Los_Angeles"
-"96027","41.3839","-123.06878","Etna","CA","California","TRUE","","2327","1.9","06093","Siskiyou","{""06093"": ""100""}","Siskiyou","06093","FALSE","FALSE","America/Los_Angeles"
-"96028","41.01058","-121.47205","Fall River Mills","CA","California","TRUE","","1368","3.2","06089","Shasta","{""06089"": ""100""}","Shasta","06089","FALSE","FALSE","America/Los_Angeles"
-"96029","39.94207","-122.47811","Flournoy","CA","California","TRUE","","167","1.8","06103","Tehama","{""06103"": ""100""}","Tehama","06103","FALSE","FALSE","America/Los_Angeles"
-"96031","41.18353","-123.18184","Forks Of Salmon","CA","California","TRUE","","133","0.1","06093","Siskiyou","{""06093"": ""100""}","Siskiyou","06093","FALSE","FALSE","America/Los_Angeles"
-"96032","41.60675","-122.96422","Fort Jones","CA","California","TRUE","","2653","2.2","06093","Siskiyou","{""06093"": ""100""}","Siskiyou","06093","FALSE","FALSE","America/Los_Angeles"
-"96033","40.76366","-122.56918","French Gulch","CA","California","TRUE","","490","1.3","06089","Shasta","{""06089"": ""100""}","Shasta","06089","FALSE","FALSE","America/Los_Angeles"
-"96034","41.43185","-122.61543","Gazelle","CA","California","TRUE","","279","1.0","06093","Siskiyou","{""06093"": ""100""}","Siskiyou","06093","FALSE","FALSE","America/Los_Angeles"
-"96035","40.04685","-122.18201","Gerber","CA","California","TRUE","","3629","30.5","06103","Tehama","{""06103"": ""100""}","Tehama","06103","FALSE","FALSE","America/Los_Angeles"
-"96037","41.54799","-122.93506","Greenview","CA","California","TRUE","","279","26.8","06093","Siskiyou","{""06093"": ""100""}","Siskiyou","06093","FALSE","FALSE","America/Los_Angeles"
-"96038","41.60892","-122.54643","Grenada","CA","California","TRUE","","732","15.8","06093","Siskiyou","{""06093"": ""100""}","Siskiyou","06093","FALSE","FALSE","America/Los_Angeles"
-"96039","41.69298","-123.48892","Happy Camp","CA","California","TRUE","","904","0.6","06093","Siskiyou","{""06093"": ""100""}","Siskiyou","06093","FALSE","FALSE","America/Los_Angeles"
-"96040","40.77872","-121.42273","Hat Creek","CA","California","TRUE","","124","0.4","06089","Shasta","{""06089"": ""100""}","Shasta","06089","FALSE","FALSE","America/Los_Angeles"
-"96041","40.52362","-123.19445","Hayfork","CA","California","TRUE","","2934","3.4","06105","Trinity","{""06105"": ""100""}","Trinity","06105","FALSE","FALSE","America/Los_Angeles"
-"96044","41.94084","-122.52007","Hornbrook","CA","California","TRUE","","963","2.6","06093","Siskiyou","{""06093"": ""100""}","Siskiyou","06093","FALSE","FALSE","America/Los_Angeles"
-"96046","40.59968","-123.42904","Hyampom","CA","California","TRUE","","115","0.2","06105","Trinity","{""06105"": ""100""}","Trinity","06105","FALSE","FALSE","America/Los_Angeles"
-"96047","40.4643","-122.66396","Igo","CA","California","TRUE","","849","1.6","06089","Shasta","{""06089"": ""100""}","Shasta","06089","FALSE","FALSE","America/Los_Angeles"
-"96048","40.82089","-123.0521","Junction City","CA","California","TRUE","","730","1.8","06105","Trinity","{""06105"": ""100""}","Trinity","06105","FALSE","FALSE","America/Los_Angeles"
-"96049","41.76839","-123.32588","Redding","CA","California","TRUE","","90","2.2","06093","Siskiyou","{""06093"": ""100""}","Siskiyou","06093","FALSE","FALSE","America/Los_Angeles"
-"96050","41.90006","-122.88684","Klamath River","CA","California","TRUE","","381","0.5","06093","Siskiyou","{""06093"": ""100""}","Siskiyou","06093","FALSE","FALSE","America/Los_Angeles"
-"96051","40.9326","-122.4031","Lakehead","CA","California","TRUE","","1358","1.7","06089","Shasta","{""06089"": ""100""}","Shasta","06089","FALSE","FALSE","America/Los_Angeles"
-"96052","40.7282","-122.81539","Lewiston","CA","California","TRUE","","1574","7.9","06105","Trinity","{""06105"": ""100""}","Trinity","06105","FALSE","FALSE","America/Los_Angeles"
-"96054","41.26648","-121.10043","Lookout","CA","California","TRUE","","319","1.0","06049","Modoc","{""06049"": ""100""}","Modoc","06049","FALSE","FALSE","America/Los_Angeles"
-"96055","40.08519","-122.03562","Los Molinos","CA","California","TRUE","","3866","23.8","06103","Tehama","{""06103"": ""100""}","Tehama","06103","FALSE","FALSE","America/Los_Angeles"
-"96056","41.02369","-121.28308","Mcarthur","CA","California","TRUE","","1530","1.8","06089","Shasta","{""06089"": ""58.89"", ""06035"": ""34.35"", ""06049"": ""6.76""}","Shasta|Lassen|Modoc","06089|06035|06049","FALSE","FALSE","America/Los_Angeles"
-"96057","41.26795","-121.93612","Mccloud","CA","California","TRUE","","1235","1.5","06093","Siskiyou","{""06093"": ""100""}","Siskiyou","06093","FALSE","FALSE","America/Los_Angeles"
-"96058","41.72783","-121.93254","Macdoel","CA","California","TRUE","","553","0.5","06093","Siskiyou","{""06093"": ""100""}","Siskiyou","06093","FALSE","FALSE","America/Los_Angeles"
-"96059","40.4275","-121.83234","Manton","CA","California","TRUE","","542","2.7","06103","Tehama","{""06103"": ""58.72"", ""06089"": ""41.28""}","Tehama|Shasta","06103|06089","FALSE","FALSE","America/Los_Angeles"
-"96061","40.33076","-121.48649","Mill Creek","CA","California","TRUE","","21","0.2","06103","Tehama","{""06103"": ""100""}","Tehama","06103","FALSE","FALSE","America/Los_Angeles"
-"96062","40.57391","-122.07108","Millville","CA","California","TRUE","","1042","5.5","06089","Shasta","{""06089"": ""100""}","Shasta","06089","FALSE","FALSE","America/Los_Angeles"
-"96063","40.36022","-121.60481","Mineral","CA","California","TRUE","","359","11.6","06103","Tehama","{""06103"": ""100""}","Tehama","06103","FALSE","FALSE","America/Los_Angeles"
-"96064","41.75995","-122.36209","Montague","CA","California","TRUE","","4533","3.7","06093","Siskiyou","{""06093"": ""100""}","Siskiyou","06093","FALSE","FALSE","America/Los_Angeles"
-"96065","40.88819","-121.88087","Montgomery Creek","CA","California","TRUE","","403","1.8","06089","Shasta","{""06089"": ""100""}","Shasta","06089","FALSE","FALSE","America/Los_Angeles"
-"96067","41.30912","-122.36782","Mount Shasta","CA","California","TRUE","","7094","20.2","06093","Siskiyou","{""06093"": ""100""}","Siskiyou","06093","FALSE","FALSE","America/Los_Angeles"
-"96068","41.11529","-121.20869","Nubieber","CA","California","TRUE","","204","2.0","06035","Lassen","{""06035"": ""100""}","Lassen","06035","FALSE","FALSE","America/Los_Angeles"
-"96069","40.68677","-122.0098","Oak Run","CA","California","TRUE","","800","3.5","06089","Shasta","{""06089"": ""100""}","Shasta","06089","FALSE","FALSE","America/Los_Angeles"
-"96071","40.66364","-121.45879","Old Station","CA","California","TRUE","","31","0.1","06089","Shasta","{""06089"": ""100""}","Shasta","06089","FALSE","FALSE","America/Los_Angeles"
-"96073","40.59529","-122.20186","Palo Cedro","CA","California","TRUE","","3980","34.5","06089","Shasta","{""06089"": ""100""}","Shasta","06089","FALSE","FALSE","America/Los_Angeles"
-"96074","39.86746","-122.59372","Paskenta","CA","California","TRUE","","164","0.6","06103","Tehama","{""06103"": ""100""}","Tehama","06103","FALSE","FALSE","America/Los_Angeles"
-"96075","40.33852","-121.84893","Paynes Creek","CA","California","TRUE","","350","2.0","06103","Tehama","{""06103"": ""94.58"", ""06089"": ""5.42""}","Tehama|Shasta","06103|06089","FALSE","FALSE","America/Los_Angeles"
-"96076","40.38277","-122.92755","Platina","CA","California","TRUE","","284","0.5","06105","Trinity","{""06105"": ""38.55"", ""06089"": ""37.95"", ""06103"": ""23.49""}","Trinity|Shasta|Tehama","06105|06089|06103","FALSE","FALSE","America/Los_Angeles"
-"96080","40.16515","-122.38167","Red Bluff","CA","California","TRUE","","29139","18.4","06103","Tehama","{""06103"": ""100""}","Tehama","06103","FALSE","FALSE","America/Los_Angeles"
-"96084","40.85035","-121.96886","Round Mountain","CA","California","TRUE","","536","2.0","06089","Shasta","{""06089"": ""100""}","Shasta","06089","FALSE","FALSE","America/Los_Angeles"
-"96085","41.75231","-123.05265","Scott Bar","CA","California","TRUE","","54","0.3","06093","Siskiyou","{""06093"": ""100""}","Siskiyou","06093","FALSE","FALSE","America/Los_Angeles"
-"96086","41.87458","-123.22039","Seiad Valley","CA","California","TRUE","","278","0.4","06093","Siskiyou","{""06093"": ""100""}","Siskiyou","06093","FALSE","FALSE","America/Los_Angeles"
-"96087","40.62393","-122.61601","Shasta","CA","California","TRUE","","544","2.7","06089","Shasta","{""06089"": ""100""}","Shasta","06089","FALSE","FALSE","America/Los_Angeles"
-"96088","40.50989","-121.8795","Shingletown","CA","California","TRUE","","4690","11.5","06089","Shasta","{""06089"": ""100""}","Shasta","06089","FALSE","FALSE","America/Los_Angeles"
-"96090","40.02045","-122.12906","Tehama","CA","California","TRUE","","481","180.8","06103","Tehama","{""06103"": ""100""}","Tehama","06103","FALSE","FALSE","America/Los_Angeles"
-"96091","41.03584","-122.78817","Trinity Center","CA","California","TRUE","","618","0.5","06105","Trinity","{""06105"": ""100""}","Trinity","06105","FALSE","FALSE","America/Los_Angeles"
-"96092","39.96245","-122.01554","Vina","CA","California","TRUE","","343","2.7","06103","Tehama","{""06103"": ""100""}","Tehama","06103","FALSE","FALSE","America/Los_Angeles"
-"96093","40.75873","-122.93795","Weaverville","CA","California","TRUE","","3570","23.5","06105","Trinity","{""06105"": ""100""}","Trinity","06105","FALSE","FALSE","America/Los_Angeles"
-"96094","41.53313","-122.31791","Weed","CA","California","TRUE","","6611","10.3","06093","Siskiyou","{""06093"": ""100""}","Siskiyou","06093","FALSE","FALSE","America/Los_Angeles"
-"96096","40.64528","-121.8394","Whitmore","CA","California","TRUE","","703","2.4","06089","Shasta","{""06089"": ""100""}","Shasta","06089","FALSE","FALSE","America/Los_Angeles"
-"96097","41.75581","-122.67266","Yreka","CA","California","TRUE","","9746","19.7","06093","Siskiyou","{""06093"": ""100""}","Siskiyou","06093","FALSE","FALSE","America/Los_Angeles"
-"96101","41.45587","-120.53619","Alturas","CA","California","TRUE","","5262","3.5","06049","Modoc","{""06049"": ""100""}","Modoc","06049","FALSE","FALSE","America/Los_Angeles"
-"96103","39.80115","-120.66082","Blairsden Graeagle","CA","California","TRUE","","1401","4.3","06063","Plumas","{""06063"": ""100""}","Plumas","06063","FALSE","FALSE","America/Los_Angeles"
-"96104","41.51614","-120.12916","Cedarville","CA","California","TRUE","","842","1.5","06049","Modoc","{""06049"": ""100""}","Modoc","06049","FALSE","FALSE","America/Los_Angeles"
-"96105","39.83341","-120.17841","Chilcoot","CA","California","TRUE","","372","0.6","06063","Plumas","{""06063"": ""72.3"", ""06035"": ""24.1"", ""06091"": ""3.61""}","Plumas|Lassen|Sierra","06063|06035|06091","FALSE","FALSE","America/Los_Angeles"
-"96106","39.73671","-120.54374","Clio","CA","California","TRUE","","274","4.5","06063","Plumas","{""06063"": ""100""}","Plumas","06063","FALSE","FALSE","America/Los_Angeles"
-"96107","38.48032","-119.47278","Coleville","CA","California","TRUE","","1433","6.2","06051","Mono","{""06051"": ""100""}","Mono","06051","FALSE","FALSE","America/Los_Angeles"
-"96108","41.77515","-120.44572","Davis Creek","CA","California","TRUE","","80","0.2","06049","Modoc","{""06049"": ""100""}","Modoc","06049","FALSE","FALSE","America/Los_Angeles"
-"96109","40.0196","-120.09784","Doyle","CA","California","TRUE","","812","1.6","06035","Lassen","{""06035"": ""100""}","Lassen","06035","FALSE","FALSE","America/Los_Angeles"
-"96110","41.29329","-120.09354","Eagleville","CA","California","TRUE","","126","0.3","06049","Modoc","{""06049"": ""93.98"", ""06035"": ""6.02""}","Modoc|Lassen","06049|06035","FALSE","FALSE","America/Los_Angeles"
-"96111","39.47476","-120.04144","Floriston","CA","California","TRUE","","83","1.0","06091","Sierra","{""06091"": ""54.38"", ""06057"": ""45.63""}","Sierra|Nevada","06091|06057","FALSE","FALSE","America/Los_Angeles"
-"96112","41.86019","-120.10601","Fort Bidwell","CA","California","TRUE","","224","0.7","06049","Modoc","{""06049"": ""100""}","Modoc","06049","FALSE","FALSE","America/Los_Angeles"
-"96113","40.14289","-120.15859","Herlong","CA","California","TRUE","","1925","109.1","06035","Lassen","{""06035"": ""100""}","Lassen","06035","FALSE","FALSE","America/Los_Angeles"
-"96114","40.29473","-120.49696","Janesville","CA","California","TRUE","","3267","18.6","06035","Lassen","{""06035"": ""100""}","Lassen","06035","FALSE","FALSE","America/Los_Angeles"
-"96115","41.69864","-120.14951","Lake City","CA","California","TRUE","","115","0.4","06049","Modoc","{""06049"": ""100""}","Modoc","06049","FALSE","FALSE","America/Los_Angeles"
-"96116","41.26319","-120.42208","Likely","CA","California","TRUE","","172","0.3","06049","Modoc","{""06049"": ""100""}","Modoc","06049","FALSE","FALSE","America/Los_Angeles"
-"96117","40.54621","-120.23999","Litchfield","CA","California","TRUE","","355","0.4","06035","Lassen","{""06035"": ""100""}","Lassen","06035","FALSE","FALSE","America/Los_Angeles"
-"96118","39.63884","-120.22928","Loyalton","CA","California","TRUE","","1779","3.4","06091","Sierra","{""06091"": ""98.83"", ""06063"": ""1.17""}","Sierra|Plumas","06091|06063","FALSE","FALSE","America/Los_Angeles"
-"96119","41.02327","-120.52529","Madeline","CA","California","TRUE","","59","0.1","06035","Lassen","{""06035"": ""100""}","Lassen","06035","FALSE","FALSE","America/Los_Angeles"
-"96120","38.75366","-119.83344","Markleeville","CA","California","TRUE","","926","1.7","06003","Alpine","{""06003"": ""100""}","Alpine","06003","FALSE","FALSE","America/Los_Angeles"
-"96121","40.16886","-120.37315","Milford","CA","California","TRUE","","358","4.1","06035","Lassen","{""06035"": ""100""}","Lassen","06035","FALSE","FALSE","America/Los_Angeles"
-"96122","39.82647","-120.47237","Portola","CA","California","TRUE","","3266","20.6","06063","Plumas","{""06063"": ""100""}","Plumas","06063","FALSE","FALSE","America/Los_Angeles"
-"96123","40.81018","-120.29682","Ravendale","CA","California","TRUE","","25","0.0","06035","Lassen","{""06035"": ""100""}","Lassen","06035","FALSE","FALSE","America/Los_Angeles"
-"96124","39.64338","-120.45044","Calpine","CA","California","TRUE","","458","3.1","06091","Sierra","{""06091"": ""100""}","Sierra","06091","FALSE","FALSE","America/Los_Angeles"
-"96125","39.5957","-120.62775","Sierra City","CA","California","TRUE","","126","0.5","06091","Sierra","{""06091"": ""100""}","Sierra","06091","FALSE","FALSE","America/Los_Angeles"
-"96126","39.52992","-120.45679","Sierraville","CA","California","TRUE","","85","0.4","06091","Sierra","{""06091"": ""100""}","Sierra","06091","FALSE","FALSE","America/Los_Angeles"
-"96128","40.35521","-120.41054","Standish","CA","California","TRUE","","685","8.4","06035","Lassen","{""06035"": ""100""}","Lassen","06035","FALSE","FALSE","America/Los_Angeles"
-"96129","39.78757","-120.35564","Beckwourth","CA","California","TRUE","","408","1.7","06063","Plumas","{""06063"": ""100""}","Plumas","06063","FALSE","FALSE","America/Los_Angeles"
-"96130","40.54876","-120.68496","Susanville","CA","California","TRUE","","20119","16.2","06035","Lassen","{""06035"": ""100""}","Lassen","06035","FALSE","FALSE","America/Los_Angeles"
-"96132","40.89059","-120.37772","Termo","CA","California","TRUE","","50","0.0","06035","Lassen","{""06035"": ""100""}","Lassen","06035","FALSE","FALSE","America/Los_Angeles"
-"96133","38.63289","-119.50411","Topaz","CA","California","TRUE","","126","3.8","06051","Mono","{""06051"": ""100""}","Mono","06051","FALSE","FALSE","America/Los_Angeles"
-"96134","41.83835","-121.40661","Tulelake","CA","California","TRUE","","2059","2.4","06093","Siskiyou","{""06093"": ""56.89"", ""06049"": ""43.11""}","Siskiyou|Modoc","06093|06049","FALSE","FALSE","America/Los_Angeles"
-"96135","39.80868","-120.20566","Vinton","CA","California","TRUE","","301","3.5","06063","Plumas","{""06063"": ""100""}","Plumas","06063","FALSE","FALSE","America/Los_Angeles"
-"96136","40.30836","-120.11896","Wendel","CA","California","TRUE","","44","0.1","06035","Lassen","{""06035"": ""100""}","Lassen","06035","FALSE","FALSE","America/Los_Angeles"
-"96137","40.2688","-121.02969","Westwood","CA","California","TRUE","","3252","25.9","06035","Lassen","{""06035"": ""55.14"", ""06063"": ""44.86""}","Lassen|Plumas","06035|06063","FALSE","FALSE","America/Los_Angeles"
-"96140","39.22463","-120.09807","Carnelian Bay","CA","California","TRUE","","953","78.3","06061","Placer","{""06061"": ""100""}","Placer","06061","FALSE","FALSE","America/Los_Angeles"
-"96141","39.07853","-120.17341","Homewood","CA","California","TRUE","","403","13.0","06061","Placer","{""06061"": ""100""}","Placer","06061","FALSE","FALSE","America/Los_Angeles"
-"96142","38.99948","-120.12581","Tahoma","CA","California","TRUE","","885","16.9","06017","El Dorado","{""06017"": ""89.39"", ""06061"": ""10.61""}","El Dorado|Placer","06017|06061","FALSE","FALSE","America/Los_Angeles"
-"96143","39.25155","-120.02471","Kings Beach","CA","California","TRUE","","3585","251.5","06061","Placer","{""06061"": ""100""}","Placer","06061","FALSE","FALSE","America/Los_Angeles"
-"96145","39.14738","-120.18665","Tahoe City","CA","California","TRUE","","2147","22.3","06061","Placer","{""06061"": ""100""}","Placer","06061","FALSE","FALSE","America/Los_Angeles"
-"96146","39.19846","-120.23902","Olympic Valley","CA","California","TRUE","","1145","21.1","06061","Placer","{""06061"": ""100""}","Placer","06061","FALSE","FALSE","America/Los_Angeles"
-"96148","39.24685","-120.05806","Tahoe Vista","CA","California","TRUE","","580","164.7","06061","Placer","{""06061"": ""100""}","Placer","06061","FALSE","FALSE","America/Los_Angeles"
-"96150","38.8709","-120.00886","South Lake Tahoe","CA","California","TRUE","","29327","91.7","06017","El Dorado","{""06017"": ""100""}","El Dorado","06017","FALSE","FALSE","America/Los_Angeles"
-"96155","38.75192","-120.0917","South Lake Tahoe","CA","California","TRUE","","0","0.0","06017","El Dorado","{""06017"": ""100""}","El Dorado","06017","FALSE","FALSE","America/Los_Angeles"
-"96161","39.30962","-120.20989","Truckee","CA","California","TRUE","","18488","39.3","06057","Nevada","{""06057"": ""90.56"", ""06061"": ""9.44""}","Nevada|Placer","06057|06061","FALSE","FALSE","America/Los_Angeles"
-"96701","21.39682","-157.89771","Aiea","HI","Hawaii","TRUE","","40857","834.4","15003","Honolulu","{""15003"": ""100""}","Honolulu","15003","FALSE","FALSE","Pacific/Honolulu"
-"96703","22.15145","-159.3502","Anahola","HI","Hawaii","TRUE","","2245","46.3","15007","Kauai","{""15007"": ""100""}","Kauai","15007","FALSE","FALSE","Pacific/Honolulu"
-"96704","19.32065","-155.81007","Captain Cook","HI","Hawaii","TRUE","","8049","10.9","15001","Hawaii","{""15001"": ""100""}","Hawaii","15001","FALSE","FALSE","Pacific/Honolulu"
-"96705","21.89982","-159.56548","Eleele","HI","Hawaii","TRUE","","3081","408.9","15007","Kauai","{""15007"": ""100""}","Kauai","15007","FALSE","FALSE","Pacific/Honolulu"
-"96706","21.3403","-158.01708","Ewa Beach","HI","Hawaii","TRUE","","74592","1686.1","15003","Honolulu","{""15003"": ""100""}","Honolulu","15003","FALSE","FALSE","Pacific/Honolulu"
-"96707","21.36453","-158.08142","Kapolei","HI","Hawaii","TRUE","","46928","417.7","15003","Honolulu","{""15003"": ""100""}","Honolulu","15003","FALSE","FALSE","Pacific/Honolulu"
-"96708","20.85231","-156.2229","Haiku","HI","Hawaii","TRUE","","11059","43.7","15009","Maui","{""15009"": ""100""}","Maui","15009","FALSE","FALSE","Pacific/Honolulu"
-"96710","19.85432","-155.21809","Hakalau","HI","Hawaii","TRUE","","277","2.8","15001","Hawaii","{""15001"": ""100""}","Hawaii","15001","FALSE","FALSE","Pacific/Honolulu"
-"96712","21.62927","-158.04855","Haleiwa","HI","Hawaii","TRUE","","7407","138.1","15003","Honolulu","{""15003"": ""100""}","Honolulu","15003","FALSE","FALSE","Pacific/Honolulu"
-"96713","20.73387","-156.07377","Hana","HI","Hawaii","TRUE","","1160","4.3","15009","Maui","{""15009"": ""100""}","Maui","15009","FALSE","FALSE","Pacific/Honolulu"
-"96714","22.15738","-159.54468","Hanalei","HI","Hawaii","TRUE","","896","4.4","15007","Kauai","{""15007"": ""100""}","Kauai","15007","FALSE","FALSE","Pacific/Honolulu"
-"96716","22.0336","-159.58999","Hanapepe","HI","Hawaii","TRUE","","2995","10.8","15007","Kauai","{""15007"": ""100""}","Kauai","15007","FALSE","FALSE","Pacific/Honolulu"
-"96717","21.55604","-157.89624","Hauula","HI","Hawaii","TRUE","","4708","73.1","15003","Honolulu","{""15003"": ""100""}","Honolulu","15003","FALSE","FALSE","Pacific/Honolulu"
-"96719","20.18621","-155.82212","Hawi","HI","Hawaii","TRUE","","1440","27.2","15001","Hawaii","{""15001"": ""100""}","Hawaii","15001","FALSE","FALSE","Pacific/Honolulu"
-"96720","19.67306","-155.2228","Hilo","HI","Hawaii","TRUE","","48339","62.3","15001","Hawaii","{""15001"": ""100""}","Hawaii","15001","FALSE","FALSE","Pacific/Honolulu"
-"96722","22.20374","-159.46963","Princeville","HI","Hawaii","TRUE","","1908","132.3","15007","Kauai","{""15007"": ""100""}","Kauai","15007","FALSE","FALSE","Pacific/Honolulu"
-"96725","19.62925","-155.89767","Holualoa","HI","Hawaii","TRUE","","2888","14.2","15001","Hawaii","{""15001"": ""100""}","Hawaii","15001","FALSE","FALSE","Pacific/Honolulu"
-"96726","19.42816","-155.82098","Honaunau","HI","Hawaii","TRUE","","475","6.1","15001","Hawaii","{""15001"": ""100""}","Hawaii","15001","FALSE","FALSE","Pacific/Honolulu"
-"96727","20.05515","-155.54362","Honokaa","HI","Hawaii","TRUE","","4540","13.9","15001","Hawaii","{""15001"": ""100""}","Hawaii","15001","FALSE","FALSE","Pacific/Honolulu"
-"96728","19.85809","-155.12928","Honomu","HI","Hawaii","TRUE","","520","54.7","15001","Hawaii","{""15001"": ""100""}","Hawaii","15001","FALSE","FALSE","Pacific/Honolulu"
-"96729","21.16773","-157.11424","Hoolehua","HI","Hawaii","TRUE","","1190","11.0","15009","Maui","{""15009"": ""100""}","Maui","15009","FALSE","FALSE","Pacific/Honolulu"
-"96730","21.54614","-157.85111","Kaaawa","HI","Hawaii","TRUE","","1270","463.7","15003","Honolulu","{""15003"": ""100""}","Honolulu","15003","FALSE","FALSE","Pacific/Honolulu"
-"96731","21.67075","-157.97674","Kahuku","HI","Hawaii","TRUE","","2960","58.9","15003","Honolulu","{""15003"": ""100""}","Honolulu","15003","FALSE","FALSE","Pacific/Honolulu"
-"96732","20.88125","-156.4612","Kahului","HI","Hawaii","TRUE","","29075","1156.7","15009","Maui","{""15009"": ""100""}","Maui","15009","FALSE","FALSE","Pacific/Honolulu"
-"96734","21.38884","-157.75325","Kailua","HI","Hawaii","TRUE","","51511","913.9","15003","Honolulu","{""15003"": ""100""}","Honolulu","15003","FALSE","FALSE","Pacific/Honolulu"
-"96737","19.07026","-155.77587","Ocean View","HI","Hawaii","TRUE","","5011","15.0","15001","Hawaii","{""15001"": ""100""}","Hawaii","15001","FALSE","FALSE","Pacific/Honolulu"
-"96738","19.90914","-155.78419","Waikoloa","HI","Hawaii","TRUE","","7001","30.2","15001","Hawaii","{""15001"": ""100""}","Hawaii","15001","FALSE","FALSE","Pacific/Honolulu"
-"96740","19.7452","-155.90131","Kailua Kona","HI","Hawaii","TRUE","","42069","68.7","15001","Hawaii","{""15001"": ""100""}","Hawaii","15001","FALSE","FALSE","Pacific/Honolulu"
-"96741","21.95578","-159.51629","Kalaheo","HI","Hawaii","TRUE","","6377","89.3","15007","Kauai","{""15007"": ""100""}","Kauai","15007","FALSE","FALSE","Pacific/Honolulu"
-"96742","21.17087","-156.94743","Kalaupapa","HI","Hawaii","TRUE","","66","2.1","15005","Kalawao","{""15005"": ""100""}","Kalawao","15005","FALSE","FALSE","Pacific/Honolulu"
-"96743","19.97485","-155.68644","Kamuela","HI","Hawaii","TRUE","","14856","15.4","15001","Hawaii","{""15001"": ""100""}","Hawaii","15001","FALSE","FALSE","Pacific/Honolulu"
-"96744","21.44323","-157.83141","Kaneohe","HI","Hawaii","TRUE","","51601","577.7","15003","Honolulu","{""15003"": ""100""}","Honolulu","15003","FALSE","FALSE","Pacific/Honolulu"
-"96746","22.09267","-159.38128","Kapaa","HI","Hawaii","TRUE","","19729","148.5","15007","Kauai","{""15007"": ""100""}","Kauai","15007","FALSE","FALSE","Pacific/Honolulu"
-"96747","21.92434","-159.62455","Kaumakani","HI","Hawaii","TRUE","","975","145.4","15007","Kauai","{""15007"": ""100""}","Kauai","15007","FALSE","FALSE","Pacific/Honolulu"
-"96748","21.11381","-156.87944","Kaunakakai","HI","Hawaii","TRUE","","3892","12.2","15009","Maui","{""15009"": ""100""}","Maui","15009","FALSE","FALSE","Pacific/Honolulu"
-"96749","19.60753","-155.00156","Keaau","HI","Hawaii","TRUE","","17308","106.3","15001","Hawaii","{""15001"": ""100""}","Hawaii","15001","FALSE","FALSE","Pacific/Honolulu"
-"96750","19.53819","-155.74884","Kealakekua","HI","Hawaii","TRUE","","3428","7.1","15001","Hawaii","{""15001"": ""100""}","Hawaii","15001","FALSE","FALSE","Pacific/Honolulu"
-"96751","22.10489","-159.30252","Kealia","HI","Hawaii","TRUE","","103","103.0","15007","Kauai","{""15007"": ""100""}","Kauai","15007","FALSE","FALSE","Pacific/Honolulu"
-"96752","21.98271","-159.73902","Kekaha","HI","Hawaii","TRUE","","3559","341.6","15007","Kauai","{""15007"": ""100""}","Kauai","15007","FALSE","FALSE","Pacific/Honolulu"
-"96753","20.72067","-156.43534","Kihei","HI","Hawaii","TRUE","","28737","340.1","15009","Maui","{""15009"": ""100""}","Maui","15009","FALSE","FALSE","Pacific/Honolulu"
-"96754","22.17561","-159.41264","Kilauea","HI","Hawaii","TRUE","","3269","30.4","15007","Kauai","{""15007"": ""100""}","Kauai","15007","FALSE","FALSE","Pacific/Honolulu"
-"96755","20.19659","-155.7876","Kapaau","HI","Hawaii","TRUE","","3018","20.1","15001","Hawaii","{""15001"": ""100""}","Hawaii","15001","FALSE","FALSE","Pacific/Honolulu"
-"96756","21.90957","-159.45386","Koloa","HI","Hawaii","TRUE","","6285","98.3","15007","Kauai","{""15007"": ""100""}","Kauai","15007","FALSE","FALSE","Pacific/Honolulu"
-"96757","21.15538","-156.99495","Kualapuu","HI","Hawaii","TRUE","","503","12.6","15009","Maui","{""15009"": ""100""}","Maui","15009","FALSE","FALSE","Pacific/Honolulu"
-"96759","21.46741","-158.07241","Kunia","HI","Hawaii","TRUE","","315","20.4","15003","Honolulu","{""15003"": ""100""}","Honolulu","15003","FALSE","FALSE","Pacific/Honolulu"
-"96760","19.55478","-155.05612","Kurtistown","HI","Hawaii","TRUE","","2998","66.7","15001","Hawaii","{""15001"": ""100""}","Hawaii","15001","FALSE","FALSE","Pacific/Honolulu"
-"96761","20.90573","-156.61649","Lahaina","HI","Hawaii","TRUE","","22301","111.4","15009","Maui","{""15009"": ""100""}","Maui","15009","FALSE","FALSE","Pacific/Honolulu"
-"96762","21.62417","-157.94242","Laie","HI","Hawaii","TRUE","","6182","198.0","15003","Honolulu","{""15003"": ""100""}","Honolulu","15003","FALSE","FALSE","Pacific/Honolulu"
-"96763","20.83512","-156.92717","Lanai City","HI","Hawaii","TRUE","","2730","7.5","15009","Maui","{""15009"": ""100""}","Maui","15009","FALSE","FALSE","Pacific/Honolulu"
-"96764","19.92796","-155.2731","Laupahoehoe","HI","Hawaii","TRUE","","609","5.3","15001","Hawaii","{""15001"": ""100""}","Hawaii","15001","FALSE","FALSE","Pacific/Honolulu"
-"96765","21.92154","-159.49217","Lawai","HI","Hawaii","TRUE","","201","72.8","15007","Kauai","{""15007"": ""100""}","Kauai","15007","FALSE","FALSE","Pacific/Honolulu"
-"96766","21.9976","-159.41505","Lihue","HI","Hawaii","TRUE","","17929","81.5","15007","Kauai","{""15007"": ""100""}","Kauai","15007","FALSE","FALSE","Pacific/Honolulu"
-"96768","20.83202","-156.29768","Makawao","HI","Hawaii","TRUE","","18529","167.6","15009","Maui","{""15009"": ""100""}","Maui","15009","FALSE","FALSE","Pacific/Honolulu"
-"96769","21.9012","-160.10469","Makaweli","HI","Hawaii","TRUE","","352","1.8","15007","Kauai","{""15007"": ""100""}","Kauai","15007","FALSE","FALSE","Pacific/Honolulu"
-"96770","21.13514","-157.21044","Maunaloa","HI","Hawaii","TRUE","","624","3.5","15009","Maui","{""15009"": ""100""}","Maui","15009","FALSE","FALSE","Pacific/Honolulu"
-"96771","19.52402","-155.13342","Mountain View","HI","Hawaii","TRUE","","7968","33.4","15001","Hawaii","{""15001"": ""100""}","Hawaii","15001","FALSE","FALSE","Pacific/Honolulu"
-"96772","19.19037","-155.6299","Naalehu","HI","Hawaii","TRUE","","2835","3.4","15001","Hawaii","{""15001"": ""100""}","Hawaii","15001","FALSE","FALSE","Pacific/Honolulu"
-"96773","19.89025","-155.22474","Ninole","HI","Hawaii","TRUE","","125","1.4","15001","Hawaii","{""15001"": ""100""}","Hawaii","15001","FALSE","FALSE","Pacific/Honolulu"
-"96774","19.95288","-155.33413","Ookala","HI","Hawaii","TRUE","","281","2.8","15001","Hawaii","{""15001"": ""100""}","Hawaii","15001","FALSE","FALSE","Pacific/Honolulu"
-"96776","19.98691","-155.39649","Paauilo","HI","Hawaii","TRUE","","1458","8.3","15001","Hawaii","{""15001"": ""100""}","Hawaii","15001","FALSE","FALSE","Pacific/Honolulu"
-"96777","19.24992","-155.4646","Pahala","HI","Hawaii","TRUE","","2026","4.5","15001","Hawaii","{""15001"": ""100""}","Hawaii","15001","FALSE","FALSE","Pacific/Honolulu"
-"96778","19.42816","-155.02053","Pahoa","HI","Hawaii","TRUE","","14885","21.4","15001","Hawaii","{""15001"": ""100""}","Hawaii","15001","FALSE","FALSE","Pacific/Honolulu"
-"96779","20.90557","-156.37745","Paia","HI","Hawaii","TRUE","","2522","115.8","15009","Maui","{""15009"": ""100""}","Maui","15009","FALSE","FALSE","Pacific/Honolulu"
-"96780","19.96532","-155.21943","Papaaloa","HI","Hawaii","TRUE","","607","78.6","15001","Hawaii","{""15001"": ""100""}","Hawaii","15001","FALSE","FALSE","Pacific/Honolulu"
-"96781","19.79317","-155.18285","Papaikou","HI","Hawaii","TRUE","","1258","12.1","15001","Hawaii","{""15001"": ""100""}","Hawaii","15001","FALSE","FALSE","Pacific/Honolulu"
-"96782","21.41746","-157.93176","Pearl City","HI","Hawaii","TRUE","","38000","834.7","15003","Honolulu","{""15003"": ""100""}","Honolulu","15003","FALSE","FALSE","Pacific/Honolulu"
-"96783","19.83136","-155.1478","Pepeekeo","HI","Hawaii","TRUE","","1568","31.0","15001","Hawaii","{""15001"": ""100""}","Hawaii","15001","FALSE","FALSE","Pacific/Honolulu"
-"96785","19.45367","-155.40743","Volcano","HI","Hawaii","TRUE","","3622","5.4","15001","Hawaii","{""15001"": ""100""}","Hawaii","15001","FALSE","FALSE","Pacific/Honolulu"
-"96786","21.55748","-158.01149","Wahiawa","HI","Hawaii","TRUE","","43488","204.8","15003","Honolulu","{""15003"": ""100""}","Honolulu","15003","FALSE","FALSE","Pacific/Honolulu"
-"96789","21.47829","-157.97472","Mililani","HI","Hawaii","TRUE","","53485","757.0","15003","Honolulu","{""15003"": ""100""}","Honolulu","15003","FALSE","FALSE","Pacific/Honolulu"
-"96790","20.69227","-156.29746","Kula","HI","Hawaii","TRUE","","9613","16.4","15009","Maui","{""15009"": ""100""}","Maui","15009","FALSE","FALSE","Pacific/Honolulu"
-"96791","21.55079","-158.15725","Waialua","HI","Hawaii","TRUE","","7350","76.1","15003","Honolulu","{""15003"": ""100""}","Honolulu","15003","FALSE","FALSE","Pacific/Honolulu"
-"96792","21.46307","-158.16416","Waianae","HI","Hawaii","TRUE","","49971","316.2","15003","Honolulu","{""15003"": ""100""}","Honolulu","15003","FALSE","FALSE","Pacific/Honolulu"
-"96793","20.89769","-156.53765","Wailuku","HI","Hawaii","TRUE","","34036","191.3","15009","Maui","{""15009"": ""100""}","Maui","15009","FALSE","FALSE","Pacific/Honolulu"
-"96795","21.34033","-157.71822","Waimanalo","HI","Hawaii","TRUE","","9642","333.7","15003","Honolulu","{""15003"": ""100""}","Honolulu","15003","FALSE","FALSE","Pacific/Honolulu"
-"96796","22.09046","-159.68899","Waimea","HI","Hawaii","TRUE","","1865","15.6","15007","Kauai","{""15007"": ""100""}","Kauai","15007","FALSE","FALSE","Pacific/Honolulu"
-"96797","21.42424","-157.97898","Waipahu","HI","Hawaii","TRUE","","73579","827.7","15003","Honolulu","{""15003"": ""100""}","Honolulu","15003","FALSE","FALSE","Pacific/Honolulu"
-"96799","-14.21967","-170.3693","Pago Pago","AS","American Samoa","TRUE","","","","60050","Western","{""60050"": 36.38, ""60010"": 32.64, ""60020"": 29.2, ""60040"": 1.78}","Western|Eastern|Manu'a|Swains Island","60050|60010|60020|60040","FALSE","FALSE","Pacific/Pago_Pago"
-"96813","21.31704","-157.84338","Honolulu","HI","Hawaii","TRUE","","25446","2857.2","15003","Honolulu","{""15003"": ""100""}","Honolulu","15003","FALSE","FALSE","Pacific/Honolulu"
-"96814","21.29399","-157.84693","Honolulu","HI","Hawaii","TRUE","","20035","6211.6","15003","Honolulu","{""15003"": ""100""}","Honolulu","15003","FALSE","FALSE","Pacific/Honolulu"
-"96815","21.27557","-157.82262","Honolulu","HI","Hawaii","TRUE","","25261","5089.5","15003","Honolulu","{""15003"": ""100""}","Honolulu","15003","FALSE","FALSE","Pacific/Honolulu"
-"96816","21.29278","-157.79071","Honolulu","HI","Hawaii","TRUE","","49834","1945.5","15003","Honolulu","{""15003"": ""100""}","Honolulu","15003","FALSE","FALSE","Pacific/Honolulu"
-"96817","21.33981","-157.83799","Honolulu","HI","Hawaii","TRUE","","56144","2334.5","15003","Honolulu","{""15003"": ""100""}","Honolulu","15003","FALSE","FALSE","Pacific/Honolulu"
-"96818","21.34756","-157.93857","Honolulu","HI","Hawaii","TRUE","","59679","2008.9","15003","Honolulu","{""15003"": ""100""}","Honolulu","15003","FALSE","FALSE","Pacific/Honolulu"
-"96819","21.34984","-157.8753","Honolulu","HI","Hawaii","TRUE","","52981","935.0","15003","Honolulu","{""15003"": ""100""}","Honolulu","15003","FALSE","FALSE","Pacific/Honolulu"
-"96821","21.29954","-157.75006","Honolulu","HI","Hawaii","TRUE","","18599","622.3","15003","Honolulu","{""15003"": ""100""}","Honolulu","15003","FALSE","FALSE","Pacific/Honolulu"
-"96822","21.32018","-157.81079","Honolulu","HI","Hawaii","TRUE","","46690","2198.2","15003","Honolulu","{""15003"": ""100""}","Honolulu","15003","FALSE","FALSE","Pacific/Honolulu"
-"96825","21.29601","-157.69129","Honolulu","HI","Hawaii","TRUE","","29066","1000.8","15003","Honolulu","{""15003"": ""100""}","Honolulu","15003","FALSE","FALSE","Pacific/Honolulu"
-"96826","21.29159","-157.82698","Honolulu","HI","Hawaii","TRUE","","31445","11390.4","15003","Honolulu","{""15003"": ""100""}","Honolulu","15003","FALSE","FALSE","Pacific/Honolulu"
-"96850","21.30376","-157.86266","Honolulu","HI","Hawaii","TRUE","","0","0.0","15003","Honolulu","{""15003"": ""0""}","Honolulu","15003","FALSE","FALSE","Pacific/Honolulu"
-"96853","21.3348","-157.93444","Jbphh","HI","Hawaii","TRUE","","606","2525.5","15003","Honolulu","{""15003"": ""100""}","Honolulu","15003","FALSE","FALSE","Pacific/Honolulu"
-"96857","21.48673","-158.05148","Schofield Barracks","HI","Hawaii","TRUE","","2826","2335.1","15003","Honolulu","{""15003"": ""100""}","Honolulu","15003","FALSE","FALSE","Pacific/Honolulu"
-"96859","21.36046","-157.89064","Tripler Army Medical Center","HI","Hawaii","TRUE","","102","346.2","15003","Honolulu","{""15003"": ""100""}","Honolulu","15003","FALSE","FALSE","Pacific/Honolulu"
-"96860","21.35382","-157.9394","Jbphh","HI","Hawaii","TRUE","","2214","2558.9","15003","Honolulu","{""15003"": ""100""}","Honolulu","15003","FALSE","FALSE","Pacific/Honolulu"
-"96863","21.44845","-157.76232","Mcbh Kaneohe Bay","HI","Hawaii","TRUE","","47","641.2","15003","Honolulu","{""15003"": ""100""}","Honolulu","15003","FALSE","FALSE","Pacific/Honolulu"
-"96910","13.45476","144.75089","Hagatna","GU","Guam","TRUE","","","","66010","Guam","{""66010"": 100}","Guam","66010","FALSE","FALSE","Pacific/Guam"
-"96913","13.47783","144.8146","Barrigada","GU","Guam","TRUE","","","","66010","Guam","{""66010"": 100}","Guam","66010","FALSE","FALSE","Pacific/Guam"
-"96915","13.3782","144.70165","Santa Rita","GU","Guam","TRUE","","","","66010","Guam","{""66010"": 100}","Guam","66010","FALSE","FALSE","Pacific/Guam"
-"96916","13.26053","144.70067","Merizo","GU","Guam","TRUE","","","","66010","Guam","{""66010"": 100}","Guam","66010","FALSE","FALSE","Pacific/Guam"
-"96917","13.29489","144.73413","Inarajan","GU","Guam","TRUE","","","","66010","Guam","{""66010"": 100}","Guam","66010","FALSE","FALSE","Pacific/Guam"
-"96921","13.45902","144.79397","Barrigada","GU","Guam","TRUE","","","","66010","Guam","{""66010"": 100}","Guam","66010","FALSE","FALSE","Pacific/Guam"
-"96928","13.38497","144.66153","Agat","GU","Guam","TRUE","","","","66010","Guam","{""66010"": 100}","Guam","66010","FALSE","FALSE","Pacific/Guam"
-"96929","13.5651","144.8762","Yigo","GU","Guam","TRUE","","","","66010","Guam","{""66010"": 100}","Guam","66010","FALSE","FALSE","Pacific/Guam"
-"96932","13.47524","144.74216","Hagatna","GU","Guam","TRUE","","","","66010","Guam","{""66010"": 100}","Guam","66010","FALSE","FALSE","Pacific/Guam"
-"96950","15.18887","145.75356","Saipan","MP","Northern Mariana Islands","TRUE","","","","69110","Saipan","{""69110"": 100}","Saipan","69110","FALSE","FALSE","Pacific/Saipan"
-"96951","14.15733","145.2145","Rota","MP","Northern Mariana Islands","TRUE","","","","69100","Rota","{""69100"": 100}","Rota","69100","FALSE","FALSE","Pacific/Saipan"
-"96952","15.01312","145.63149","Tinian","MP","Northern Mariana Islands","TRUE","","","","69120","Tinian","{""69120"": 100}","Tinian","69120","FALSE","FALSE","Pacific/Saipan"
-"97001","44.92441","-120.65","Antelope","OR","Oregon","TRUE","","338","0.4","41065","Wasco","{""41065"": ""100""}","Wasco","41065","FALSE","FALSE","America/Los_Angeles"
-"97002","45.23708","-122.79898","Aurora","OR","Oregon","TRUE","","6657","60.1","41047","Marion","{""41047"": ""76.28"", ""41005"": ""23.72""}","Marion|Clackamas","41047|41005","FALSE","FALSE","America/Los_Angeles"
-"97004","45.25113","-122.46006","Beavercreek","OR","Oregon","TRUE","","4241","37.4","41005","Clackamas","{""41005"": ""100""}","Clackamas","41005","FALSE","FALSE","America/Los_Angeles"
-"97005","45.49095","-122.8035","Beaverton","OR","Oregon","TRUE","","26329","1914.3","41067","Washington","{""41067"": ""100""}","Washington","41067","FALSE","FALSE","America/Los_Angeles"
-"97006","45.51704","-122.85988","Beaverton","OR","Oregon","TRUE","","74070","2431.7","41067","Washington","{""41067"": ""100""}","Washington","41067","FALSE","FALSE","America/Los_Angeles"
-"97007","45.45435","-122.87964","Beaverton","OR","Oregon","TRUE","","72299","1043.8","41067","Washington","{""41067"": ""100""}","Washington","41067","FALSE","FALSE","America/Los_Angeles"
-"97008","45.46022","-122.80417","Beaverton","OR","Oregon","TRUE","","29916","2330.9","41067","Washington","{""41067"": ""100""}","Washington","41067","FALSE","FALSE","America/Los_Angeles"
-"97009","45.42427","-122.33785","Boring","OR","Oregon","TRUE","","8603","108.6","41005","Clackamas","{""41005"": ""98.7"", ""41051"": ""1.3""}","Clackamas|Multnomah","41005|41051","FALSE","FALSE","America/Los_Angeles"
-"97011","45.38724","-122.0265","Brightwood","OR","Oregon","TRUE","","840","55.4","41005","Clackamas","{""41005"": ""100""}","Clackamas","41005","FALSE","FALSE","America/Los_Angeles"
-"97013","45.21812","-122.67168","Canby","OR","Oregon","TRUE","","24138","164.0","41005","Clackamas","{""41005"": ""100""}","Clackamas","41005","FALSE","FALSE","America/Los_Angeles"
-"97014","45.58407","-122.01834","Cascade Locks","OR","Oregon","TRUE","","1388","15.0","41027","Hood River","{""41027"": ""89.6"", ""41051"": ""10.4""}","Hood River|Multnomah","41027|41051","FALSE","FALSE","America/Los_Angeles"
-"97015","45.41478","-122.53835","Clackamas","OR","Oregon","TRUE","","23633","1035.1","41005","Clackamas","{""41005"": ""100""}","Clackamas","41005","FALSE","FALSE","America/Los_Angeles"
-"97016","46.05878","-123.2688","Clatskanie","OR","Oregon","TRUE","","6224","10.4","41009","Columbia","{""41009"": ""85.48"", ""41007"": ""14.52""}","Columbia|Clatsop","41009|41007","FALSE","FALSE","America/Los_Angeles"
-"97017","45.17177","-122.38501","Colton","OR","Oregon","TRUE","","3407","30.3","41005","Clackamas","{""41005"": ""100""}","Clackamas","41005","FALSE","FALSE","America/Los_Angeles"
-"97018","45.89497","-122.81081","Columbia City","OR","Oregon","TRUE","","1789","861.1","41009","Columbia","{""41009"": ""100""}","Columbia","41009","FALSE","FALSE","America/Los_Angeles"
-"97019","45.51019","-122.21108","Corbett","OR","Oregon","TRUE","","3167","20.8","41051","Multnomah","{""41051"": ""96.77"", ""41005"": ""3.23""}","Multnomah|Clackamas","41051|41005","FALSE","FALSE","America/Los_Angeles"
-"97020","45.22204","-122.83756","Donald","OR","Oregon","TRUE","","918","2478.2","41047","Marion","{""41047"": ""100""}","Marion","41047","FALSE","FALSE","America/Los_Angeles"
-"97021","45.3871","-121.14216","Dufur","OR","Oregon","TRUE","","1012","1.6","41065","Wasco","{""41065"": ""100""}","Wasco","41065","FALSE","FALSE","America/Los_Angeles"
-"97022","45.34598","-122.33038","Eagle Creek","OR","Oregon","TRUE","","3386","53.0","41005","Clackamas","{""41005"": ""100""}","Clackamas","41005","FALSE","FALSE","America/Los_Angeles"
-"97023","45.23533","-122.2261","Estacada","OR","Oregon","TRUE","","9968","30.2","41005","Clackamas","{""41005"": ""100""}","Clackamas","41005","FALSE","FALSE","America/Los_Angeles"
-"97024","45.54724","-122.44146","Fairview","OR","Oregon","TRUE","","10344","1140.4","41051","Multnomah","{""41051"": ""100""}","Multnomah","41051","FALSE","FALSE","America/Los_Angeles"
-"97026","45.10668","-122.95108","Gervais","OR","Oregon","TRUE","","4468","48.3","41047","Marion","{""41047"": ""100""}","Marion","41047","FALSE","FALSE","America/Los_Angeles"
-"97027","45.38692","-122.59285","Gladstone","OR","Oregon","TRUE","","12521","1908.2","41005","Clackamas","{""41005"": ""100""}","Clackamas","41005","FALSE","FALSE","America/Los_Angeles"
-"97028","45.28232","-121.75272","Government Camp","OR","Oregon","TRUE","","192","1.9","41005","Clackamas","{""41005"": ""100""}","Clackamas","41005","FALSE","FALSE","America/Los_Angeles"
-"97029","45.28737","-120.80847","Grass Valley","OR","Oregon","TRUE","","269","0.4","41055","Sherman","{""41055"": ""100""}","Sherman","41055","FALSE","FALSE","America/Los_Angeles"
-"97030","45.50897","-122.43189","Gresham","OR","Oregon","TRUE","","38358","1957.7","41051","Multnomah","{""41051"": ""100""}","Multnomah","41051","FALSE","FALSE","America/Los_Angeles"
-"97031","45.6247","-121.54547","Hood River","OR","Oregon","TRUE","","18902","62.8","41027","Hood River","{""41027"": ""100""}","Hood River","41027","FALSE","FALSE","America/Los_Angeles"
-"97032","45.17924","-122.7853","Hubbard","OR","Oregon","TRUE","","5048","106.4","41047","Marion","{""41047"": ""89.05"", ""41005"": ""10.95""}","Marion|Clackamas","41047|41005","FALSE","FALSE","America/Los_Angeles"
-"97033","45.23361","-120.5876","Kent","OR","Oregon","TRUE","","50","0.1","41055","Sherman","{""41055"": ""100""}","Sherman","41055","FALSE","FALSE","America/Los_Angeles"
-"97034","45.40926","-122.68384","Lake Oswego","OR","Oregon","TRUE","","18656","979.9","41005","Clackamas","{""41005"": ""99.16"", ""41051"": ""0.84""}","Clackamas|Multnomah","41005|41051","FALSE","FALSE","America/Los_Angeles"
-"97035","45.41321","-122.72514","Lake Oswego","OR","Oregon","TRUE","","26977","1728.4","41005","Clackamas","{""41005"": ""86"", ""41051"": ""12.55"", ""41067"": ""1.45""}","Clackamas|Multnomah|Washington","41005|41051|41067","FALSE","FALSE","America/Los_Angeles"
-"97037","45.06757","-121.02609","Maupin","OR","Oregon","TRUE","","975","0.7","41065","Wasco","{""41065"": ""100""}","Wasco","41065","FALSE","FALSE","America/Los_Angeles"
-"97038","45.08756","-122.55767","Molalla","OR","Oregon","TRUE","","15676","48.4","41005","Clackamas","{""41005"": ""100""}","Clackamas","41005","FALSE","FALSE","America/Los_Angeles"
-"97039","45.45601","-120.66447","Moro","OR","Oregon","TRUE","","552","1.5","41055","Sherman","{""41055"": ""100""}","Sherman","41055","FALSE","FALSE","America/Los_Angeles"
-"97040","45.62479","-121.38804","Mosier","OR","Oregon","TRUE","","1623","12.0","41065","Wasco","{""41065"": ""100""}","Wasco","41065","FALSE","FALSE","America/Los_Angeles"
-"97041","45.4397","-121.61989","Mount Hood Parkdale","OR","Oregon","TRUE","","2979","10.0","41027","Hood River","{""41027"": ""100""}","Hood River","41027","FALSE","FALSE","America/Los_Angeles"
-"97042","45.20577","-122.53452","Mulino","OR","Oregon","TRUE","","2964","51.0","41005","Clackamas","{""41005"": ""100""}","Clackamas","41005","FALSE","FALSE","America/Los_Angeles"
-"97045","45.32843","-122.53074","Oregon City","OR","Oregon","TRUE","","56250","251.5","41005","Clackamas","{""41005"": ""100""}","Clackamas","41005","FALSE","FALSE","America/Los_Angeles"
-"97048","46.04457","-122.98087","Rainier","OR","Oregon","TRUE","","7756","35.9","41009","Columbia","{""41009"": ""100""}","Columbia","41009","FALSE","FALSE","America/Los_Angeles"
-"97049","45.35859","-121.86511","Rhododendron","OR","Oregon","TRUE","","1647","4.1","41005","Clackamas","{""41005"": ""100""}","Clackamas","41005","FALSE","FALSE","America/Los_Angeles"
-"97050","45.68281","-120.77134","Rufus","OR","Oregon","TRUE","","173","8.7","41055","Sherman","{""41055"": ""100""}","Sherman","41055","FALSE","FALSE","America/Los_Angeles"
-"97051","45.8847","-122.91213","Saint Helens","OR","Oregon","TRUE","","16977","135.8","41009","Columbia","{""41009"": ""100""}","Columbia","41009","FALSE","FALSE","America/Los_Angeles"
-"97053","45.82711","-122.88583","Warren","OR","Oregon","TRUE","","3248","90.7","41009","Columbia","{""41009"": ""100""}","Columbia","41009","FALSE","FALSE","America/Los_Angeles"
-"97054","45.94813","-122.93373","Deer Island","OR","Oregon","TRUE","","1541","12.4","41009","Columbia","{""41009"": ""100""}","Columbia","41009","FALSE","FALSE","America/Los_Angeles"
-"97055","45.38866","-122.15507","Sandy","OR","Oregon","TRUE","","18923","62.0","41005","Clackamas","{""41005"": ""100""}","Clackamas","41005","FALSE","FALSE","America/Los_Angeles"
-"97056","45.78126","-122.9547","Scappoose","OR","Oregon","TRUE","","11678","46.1","41009","Columbia","{""41009"": ""97.58"", ""41051"": ""1.88"", ""41067"": ""0.54""}","Columbia|Multnomah|Washington","41009|41051|41067","FALSE","FALSE","America/Los_Angeles"
-"97057","45.00276","-120.7499","Shaniko","OR","Oregon","TRUE","","9","5.2","41065","Wasco","{""41065"": ""100""}","Wasco","41065","FALSE","FALSE","America/Los_Angeles"
-"97058","45.53878","-121.15334","The Dalles","OR","Oregon","TRUE","","20619","23.1","41065","Wasco","{""41065"": ""100""}","Wasco","41065","FALSE","FALSE","America/Los_Angeles"
-"97060","45.53423","-122.37027","Troutdale","OR","Oregon","TRUE","","22471","492.6","41051","Multnomah","{""41051"": ""100""}","Multnomah","41051","FALSE","FALSE","America/Los_Angeles"
-"97062","45.36875","-122.76196","Tualatin","OR","Oregon","TRUE","","28694","797.5","41067","Washington","{""41067"": ""86.04"", ""41005"": ""13.96""}","Washington|Clackamas","41067|41005","FALSE","FALSE","America/Los_Angeles"
-"97063","45.22297","-121.29255","Tygh Valley","OR","Oregon","TRUE","","900","2.7","41065","Wasco","{""41065"": ""100""}","Wasco","41065","FALSE","FALSE","America/Los_Angeles"
-"97064","45.87265","-123.22833","Vernonia","OR","Oregon","TRUE","","3167","12.5","41009","Columbia","{""41009"": ""99.36"", ""41067"": ""0.64""}","Columbia|Washington","41009|41067","FALSE","FALSE","America/Los_Angeles"
-"97065","45.59894","-120.65763","Wasco","OR","Oregon","TRUE","","598","0.9","41055","Sherman","{""41055"": ""100""}","Sherman","41055","FALSE","FALSE","America/Los_Angeles"
-"97067","45.30635","-122.01959","Welches","OR","Oregon","TRUE","","1745","15.4","41005","Clackamas","{""41005"": ""100""}","Clackamas","41005","FALSE","FALSE","America/Los_Angeles"
-"97068","45.35303","-122.66929","West Linn","OR","Oregon","TRUE","","29582","508.4","41005","Clackamas","{""41005"": ""100""}","Clackamas","41005","FALSE","FALSE","America/Los_Angeles"
-"97070","45.30759","-122.77154","Wilsonville","OR","Oregon","TRUE","","25101","507.9","41005","Clackamas","{""41005"": ""89.09"", ""41067"": ""10.91""}","Clackamas|Washington","41005|41067","FALSE","FALSE","America/Los_Angeles"
-"97071","45.13592","-122.82654","Woodburn","OR","Oregon","TRUE","","29796","219.1","41047","Marion","{""41047"": ""96.44"", ""41005"": ""3.56""}","Marion|Clackamas","41047|41005","FALSE","FALSE","America/Los_Angeles"
-"97080","45.47847","-122.38954","Gresham","OR","Oregon","TRUE","","44335","793.9","41051","Multnomah","{""41051"": ""99.97"", ""41005"": ""0.03""}","Multnomah|Clackamas","41051|41005","FALSE","FALSE","America/Los_Angeles"
-"97086","45.44519","-122.52821","Happy Valley","OR","Oregon","TRUE","","30858","1130.5","41005","Clackamas","{""41005"": ""100""}","Clackamas","41005","FALSE","FALSE","America/Los_Angeles"
-"97089","45.42549","-122.44332","Damascus","OR","Oregon","TRUE","","13765","244.1","41005","Clackamas","{""41005"": ""100""}","Clackamas","41005","FALSE","FALSE","America/Los_Angeles"
-"97101","45.09043","-123.21732","Amity","OR","Oregon","TRUE","","4278","29.8","41071","Yamhill","{""41071"": ""91.59"", ""41053"": ""8.41""}","Yamhill|Polk","41071|41053","FALSE","FALSE","America/Los_Angeles"
-"97102","45.79203","-123.95464","Arch Cape","OR","Oregon","TRUE","","318","19.6","41007","Clatsop","{""41007"": ""91.22"", ""41057"": ""8.78""}","Clatsop|Tillamook","41007|41057","FALSE","FALSE","America/Los_Angeles"
-"97103","46.13219","-123.70323","Astoria","OR","Oregon","TRUE","","17677","45.9","41007","Clatsop","{""41007"": ""100""}","Clatsop","41007","FALSE","FALSE","America/Los_Angeles"
-"97106","45.65471","-123.13347","Banks","OR","Oregon","TRUE","","4908","40.6","41067","Washington","{""41067"": ""100""}","Washington","41067","FALSE","FALSE","America/Los_Angeles"
-"97107","45.55435","-123.88077","Bay City","OR","Oregon","TRUE","","1828","50.4","41057","Tillamook","{""41057"": ""100""}","Tillamook","41057","FALSE","FALSE","America/Los_Angeles"
-"97108","45.26893","-123.70879","Beaver","OR","Oregon","TRUE","","640","3.2","41057","Tillamook","{""41057"": ""100""}","Tillamook","41057","FALSE","FALSE","America/Los_Angeles"
-"97109","45.73784","-123.18112","Buxton","OR","Oregon","TRUE","","538","6.4","41067","Washington","{""41067"": ""100""}","Washington","41067","FALSE","FALSE","America/Los_Angeles"
-"97110","45.90103","-123.9554","Cannon Beach","OR","Oregon","TRUE","","1166","137.1","41007","Clatsop","{""41007"": ""100""}","Clatsop","41007","FALSE","FALSE","America/Los_Angeles"
-"97111","45.2916","-123.1957","Carlton","OR","Oregon","TRUE","","3572","35.6","41071","Yamhill","{""41071"": ""100""}","Yamhill","41071","FALSE","FALSE","America/Los_Angeles"
-"97112","45.26032","-123.86917","Cloverdale","OR","Oregon","TRUE","","1867","6.9","41057","Tillamook","{""41057"": ""100""}","Tillamook","41057","FALSE","FALSE","America/Los_Angeles"
-"97113","45.50548","-123.04618","Cornelius","OR","Oregon","TRUE","","14918","162.0","41067","Washington","{""41067"": ""100""}","Washington","41067","FALSE","FALSE","America/Los_Angeles"
-"97114","45.1824","-123.07179","Dayton","OR","Oregon","TRUE","","5102","34.4","41071","Yamhill","{""41071"": ""100""}","Yamhill","41071","FALSE","FALSE","America/Los_Angeles"
-"97115","45.27229","-123.02701","Dundee","OR","Oregon","TRUE","","4008","130.2","41071","Yamhill","{""41071"": ""100""}","Yamhill","41071","FALSE","FALSE","America/Los_Angeles"
-"97116","45.58259","-123.17353","Forest Grove","OR","Oregon","TRUE","","27281","145.9","41067","Washington","{""41067"": ""100""}","Washington","41067","FALSE","FALSE","America/Los_Angeles"
-"97117","45.61289","-123.28747","Gales Creek","OR","Oregon","TRUE","","719","7.9","41067","Washington","{""41067"": ""100""}","Washington","41067","FALSE","FALSE","America/Los_Angeles"
-"97118","45.56101","-123.91122","Garibaldi","OR","Oregon","TRUE","","797","301.6","41057","Tillamook","{""41057"": ""100""}","Tillamook","41057","FALSE","FALSE","America/Los_Angeles"
-"97119","45.46866","-123.19967","Gaston","OR","Oregon","TRUE","","4527","20.2","41067","Washington","{""41067"": ""79.41"", ""41071"": ""20.59""}","Washington|Yamhill","41067|41071","FALSE","FALSE","America/Los_Angeles"
-"97121","46.18212","-123.95678","Hammond","OR","Oregon","TRUE","","1402","130.5","41007","Clatsop","{""41007"": ""100""}","Clatsop","41007","FALSE","FALSE","America/Los_Angeles"
-"97122","45.1763","-123.81958","Hebo","OR","Oregon","TRUE","","396","5.2","41057","Tillamook","{""41057"": ""100""}","Tillamook","41057","FALSE","FALSE","America/Los_Angeles"
-"97123","45.44163","-122.98413","Hillsboro","OR","Oregon","TRUE","","49317","354.5","41067","Washington","{""41067"": ""98.29"", ""41071"": ""1.71""}","Washington|Yamhill","41067|41071","FALSE","FALSE","America/Los_Angeles"
-"97124","45.56783","-122.94644","Hillsboro","OR","Oregon","TRUE","","55170","493.4","41067","Washington","{""41067"": ""100""}","Washington","41067","FALSE","FALSE","America/Los_Angeles"
-"97125","45.66742","-123.21216","Manning","OR","Oregon","TRUE","","281","20.8","41067","Washington","{""41067"": ""100""}","Washington","41067","FALSE","FALSE","America/Los_Angeles"
-"97127","45.2461","-123.11145","Lafayette","OR","Oregon","TRUE","","4149","1803.4","41071","Yamhill","{""41071"": ""100""}","Yamhill","41071","FALSE","FALSE","America/Los_Angeles"
-"97128","45.19704","-123.25457","Mcminnville","OR","Oregon","TRUE","","37993","137.3","41071","Yamhill","{""41071"": ""100""}","Yamhill","41071","FALSE","FALSE","America/Los_Angeles"
-"97130","45.69632","-123.92251","Manzanita","OR","Oregon","TRUE","","435","53.6","41057","Tillamook","{""41057"": ""100""}","Tillamook","41057","FALSE","FALSE","America/Los_Angeles"
-"97131","45.74026","-123.82081","Nehalem","OR","Oregon","TRUE","","2751","9.8","41057","Tillamook","{""41057"": ""96.96"", ""41007"": ""3.04""}","Tillamook|Clatsop","41057|41007","FALSE","FALSE","America/Los_Angeles"
-"97132","45.32229","-122.9871","Newberg","OR","Oregon","TRUE","","29732","183.9","41071","Yamhill","{""41071"": ""98.62"", ""41067"": ""1.08"", ""41005"": ""0.3""}","Yamhill|Washington|Clackamas","41071|41067|41005","FALSE","FALSE","America/Los_Angeles"
-"97133","45.68195","-123.01959","North Plains","OR","Oregon","TRUE","","4734","26.1","41067","Washington","{""41067"": ""98.73"", ""41051"": ""1.28""}","Washington|Multnomah","41067|41051","FALSE","FALSE","America/Los_Angeles"
-"97134","45.45734","-123.96575","Oceanside","OR","Oregon","TRUE","","290","235.6","41057","Tillamook","{""41057"": ""100""}","Tillamook","41057","FALSE","FALSE","America/Los_Angeles"
-"97135","45.19514","-123.95611","Pacific City","OR","Oregon","TRUE","","716","64.5","41057","Tillamook","{""41057"": ""100""}","Tillamook","41057","FALSE","FALSE","America/Los_Angeles"
-"97136","45.62439","-123.91609","Rockaway Beach","OR","Oregon","TRUE","","1590","30.1","41057","Tillamook","{""41057"": ""100""}","Tillamook","41057","FALSE","FALSE","America/Los_Angeles"
-"97137","45.21609","-122.95879","Saint Paul","OR","Oregon","TRUE","","1385","12.8","41047","Marion","{""41047"": ""100""}","Marion","41047","FALSE","FALSE","America/Los_Angeles"
-"97138","45.90188","-123.67147","Seaside","OR","Oregon","TRUE","","10693","32.4","41007","Clatsop","{""41007"": ""100""}","Clatsop","41007","FALSE","FALSE","America/Los_Angeles"
-"97140","45.35504","-122.86426","Sherwood","OR","Oregon","TRUE","","26248","231.8","41067","Washington","{""41067"": ""92.39"", ""41005"": ""6.39"", ""41071"": ""1.22""}","Washington|Clackamas|Yamhill","41067|41005|41071","FALSE","FALSE","America/Los_Angeles"
-"97141","45.47146","-123.7552","Tillamook","OR","Oregon","TRUE","","14035","24.4","41057","Tillamook","{""41057"": ""100""}","Tillamook","41057","FALSE","FALSE","America/Los_Angeles"
-"97144","45.74048","-123.30958","Timber","OR","Oregon","TRUE","","117","3.2","41067","Washington","{""41067"": ""100""}","Washington","41067","FALSE","FALSE","America/Los_Angeles"
-"97145","45.85103","-123.95067","Tolovana Park","OR","Oregon","TRUE","","352","38.2","41007","Clatsop","{""41007"": ""100""}","Clatsop","41007","FALSE","FALSE","America/Los_Angeles"
-"97146","46.13148","-123.91986","Warrenton","OR","Oregon","TRUE","","6698","122.1","41007","Clatsop","{""41007"": ""100""}","Clatsop","41007","FALSE","FALSE","America/Los_Angeles"
-"97147","45.68879","-123.88215","Wheeler","OR","Oregon","TRUE","","349","192.5","41057","Tillamook","{""41057"": ""100""}","Tillamook","41057","FALSE","FALSE","America/Los_Angeles"
-"97148","45.35589","-123.24658","Yamhill","OR","Oregon","TRUE","","4288","21.9","41071","Yamhill","{""41071"": ""100""}","Yamhill","41071","FALSE","FALSE","America/Los_Angeles"
-"97149","45.10521","-123.94853","Neskowin","OR","Oregon","TRUE","","721","10.8","41057","Tillamook","{""41057"": ""100""}","Tillamook","41057","FALSE","FALSE","America/Los_Angeles"
-"97201","45.50777","-122.68975","Portland","OR","Oregon","TRUE","","17993","3420.5","41051","Multnomah","{""41051"": ""100""}","Multnomah","41051","FALSE","FALSE","America/Los_Angeles"
-"97202","45.48292","-122.64407","Portland","OR","Oregon","TRUE","","43371","2643.8","41051","Multnomah","{""41051"": ""99.55"", ""41005"": ""0.45""}","Multnomah|Clackamas","41051|41005","FALSE","FALSE","America/Los_Angeles"
-"97203","45.60644","-122.75365","Portland","OR","Oregon","TRUE","","34890","1509.5","41051","Multnomah","{""41051"": ""100""}","Multnomah","41051","FALSE","FALSE","America/Los_Angeles"
-"97204","45.51832","-122.6738","Portland","OR","Oregon","TRUE","","1036","1609.8","41051","Multnomah","{""41051"": ""100""}","Multnomah","41051","FALSE","FALSE","America/Los_Angeles"
-"97205","45.519","-122.70202","Portland","OR","Oregon","TRUE","","7462","2951.3","41051","Multnomah","{""41051"": ""100""}","Multnomah","41051","FALSE","FALSE","America/Los_Angeles"
-"97206","45.48188","-122.5986","Portland","OR","Oregon","TRUE","","52996","3131.3","41051","Multnomah","{""41051"": ""96.45"", ""41005"": ""3.55""}","Multnomah|Clackamas","41051|41005","FALSE","FALSE","America/Los_Angeles"
-"97208","45.52866","-122.67898","Portland","OR","Oregon","TRUE","","0","0.0","41051","Multnomah","{""41051"": ""0""}","Multnomah","41051","FALSE","FALSE","America/Los_Angeles"
-"97209","45.53095","-122.68439","Portland","OR","Oregon","TRUE","","18982","7008.4","41051","Multnomah","{""41051"": ""100""}","Multnomah","41051","FALSE","FALSE","America/Los_Angeles"
-"97210","45.54692","-122.73","Portland","OR","Oregon","TRUE","","11877","608.2","41051","Multnomah","{""41051"": ""97.29"", ""41067"": ""2.71""}","Multnomah|Washington","41051|41067","FALSE","FALSE","America/Los_Angeles"
-"97211","45.58133","-122.63421","Portland","OR","Oregon","TRUE","","35429","1884.3","41051","Multnomah","{""41051"": ""100""}","Multnomah","41051","FALSE","FALSE","America/Los_Angeles"
-"97212","45.54426","-122.64367","Portland","OR","Oregon","TRUE","","26562","3757.4","41051","Multnomah","{""41051"": ""100""}","Multnomah","41051","FALSE","FALSE","America/Los_Angeles"
-"97213","45.5378","-122.59963","Portland","OR","Oregon","TRUE","","33011","3151.2","41051","Multnomah","{""41051"": ""100""}","Multnomah","41051","FALSE","FALSE","America/Los_Angeles"
-"97214","45.5143","-122.64309","Portland","OR","Oregon","TRUE","","26853","3694.0","41051","Multnomah","{""41051"": ""100""}","Multnomah","41051","FALSE","FALSE","America/Los_Angeles"
-"97215","45.51468","-122.59959","Portland","OR","Oregon","TRUE","","18934","3217.7","41051","Multnomah","{""41051"": ""100""}","Multnomah","41051","FALSE","FALSE","America/Los_Angeles"
-"97216","45.51388","-122.55837","Portland","OR","Oregon","TRUE","","16965","2582.4","41051","Multnomah","{""41051"": ""100""}","Multnomah","41051","FALSE","FALSE","America/Los_Angeles"
-"97217","45.59995","-122.70386","Portland","OR","Oregon","TRUE","","34709","1037.0","41051","Multnomah","{""41051"": ""100""}","Multnomah","41051","FALSE","FALSE","America/Los_Angeles"
-"97218","45.57677","-122.60074","Portland","OR","Oregon","TRUE","","15191","839.4","41051","Multnomah","{""41051"": ""100""}","Multnomah","41051","FALSE","FALSE","America/Los_Angeles"
-"97219","45.45395","-122.6998","Portland","OR","Oregon","TRUE","","42528","1395.7","41051","Multnomah","{""41051"": ""97.37"", ""41005"": ""2.63""}","Multnomah|Clackamas","41051|41005","FALSE","FALSE","America/Los_Angeles"
-"97220","45.54971","-122.55917","Portland","OR","Oregon","TRUE","","29629","1592.0","41051","Multnomah","{""41051"": ""100""}","Multnomah","41051","FALSE","FALSE","America/Los_Angeles"
-"97221","45.49797","-122.7278","Portland","OR","Oregon","TRUE","","12467","1123.6","41051","Multnomah","{""41051"": ""99.9"", ""41067"": ""0.1""}","Multnomah|Washington","41051|41067","FALSE","FALSE","America/Los_Angeles"
-"97222","45.44129","-122.61709","Portland","OR","Oregon","TRUE","","36952","1685.4","41005","Clackamas","{""41005"": ""99.55"", ""41051"": ""0.45""}","Clackamas|Multnomah","41005|41051","FALSE","FALSE","America/Los_Angeles"
-"97223","45.4403","-122.7795","Portland","OR","Oregon","TRUE","","50585","1684.4","41067","Washington","{""41067"": ""100""}","Washington","41067","FALSE","FALSE","America/Los_Angeles"
-"97224","45.40551","-122.7951","Portland","OR","Oregon","TRUE","","35434","1543.5","41067","Washington","{""41067"": ""100""}","Washington","41067","FALSE","FALSE","America/Los_Angeles"
-"97225","45.50218","-122.77008","Portland","OR","Oregon","TRUE","","26095","1529.8","41067","Washington","{""41067"": ""99.57"", ""41051"": ""0.43""}","Washington|Multnomah","41067|41051","FALSE","FALSE","America/Los_Angeles"
-"97227","45.54429","-122.67855","Portland","OR","Oregon","TRUE","","5146","1482.1","41051","Multnomah","{""41051"": ""100""}","Multnomah","41051","FALSE","FALSE","America/Los_Angeles"
-"97229","45.5506","-122.80998","Portland","OR","Oregon","TRUE","","69450","1303.7","41067","Washington","{""41067"": ""87.96"", ""41051"": ""12.04""}","Washington|Multnomah","41067|41051","FALSE","FALSE","America/Los_Angeles"
-"97230","45.55813","-122.50746","Portland","OR","Oregon","TRUE","","39776","1106.8","41051","Multnomah","{""41051"": ""100""}","Multnomah","41051","FALSE","FALSE","America/Los_Angeles"
-"97231","45.67949","-122.82746","Portland","OR","Oregon","TRUE","","3957","23.8","41051","Multnomah","{""41051"": ""95.63"", ""41067"": ""2.87"", ""41009"": ""1.5""}","Multnomah|Washington|Columbia","41051|41067|41009","FALSE","FALSE","America/Los_Angeles"
-"97232","45.52919","-122.64377","Portland","OR","Oregon","TRUE","","13706","2819.3","41051","Multnomah","{""41051"": ""100""}","Multnomah","41051","FALSE","FALSE","America/Los_Angeles"
-"97233","45.514","-122.49948","Portland","OR","Oregon","TRUE","","40477","3456.5","41051","Multnomah","{""41051"": ""100""}","Multnomah","41051","FALSE","FALSE","America/Los_Angeles"
-"97236","45.4847","-122.51053","Portland","OR","Oregon","TRUE","","40892","2044.4","41051","Multnomah","{""41051"": ""100""}","Multnomah","41051","FALSE","FALSE","America/Los_Angeles"
-"97239","45.48842","-122.69061","Portland","OR","Oregon","TRUE","","18190","1976.5","41051","Multnomah","{""41051"": ""100""}","Multnomah","41051","FALSE","FALSE","America/Los_Angeles"
-"97266","45.48275","-122.55838","Portland","OR","Oregon","TRUE","","35727","2283.5","41051","Multnomah","{""41051"": ""100""}","Multnomah","41051","FALSE","FALSE","America/Los_Angeles"
-"97267","45.40772","-122.61488","Portland","OR","Oregon","TRUE","","33636","1777.5","41005","Clackamas","{""41005"": ""100""}","Clackamas","41005","FALSE","FALSE","America/Los_Angeles"
-"97301","44.94903","-123.00399","Salem","OR","Oregon","TRUE","","56196","1872.3","41047","Marion","{""41047"": ""100""}","Marion","41047","FALSE","FALSE","America/Los_Angeles"
-"97302","44.90187","-123.06785","Salem","OR","Oregon","TRUE","","38706","634.2","41047","Marion","{""41047"": ""100""}","Marion","41047","FALSE","FALSE","America/Los_Angeles"
-"97303","45.03045","-123.02438","Salem","OR","Oregon","TRUE","","41173","637.5","41047","Marion","{""41047"": ""100""}","Marion","41047","FALSE","FALSE","America/Los_Angeles"
-"97304","45.00899","-123.1081","Salem","OR","Oregon","TRUE","","31863","220.5","41053","Polk","{""41053"": ""99.11"", ""41071"": ""0.89""}","Polk|Yamhill","41053|41071","FALSE","FALSE","America/Los_Angeles"
-"97305","45.01433","-122.92872","Salem","OR","Oregon","TRUE","","43917","355.6","41047","Marion","{""41047"": ""100""}","Marion","41047","FALSE","FALSE","America/Los_Angeles"
-"97306","44.84465","-123.07971","Salem","OR","Oregon","TRUE","","32416","375.7","41047","Marion","{""41047"": ""100""}","Marion","41047","FALSE","FALSE","America/Los_Angeles"
-"97317","44.90261","-122.90736","Salem","OR","Oregon","TRUE","","25441","178.7","41047","Marion","{""41047"": ""100""}","Marion","41047","FALSE","FALSE","America/Los_Angeles"
-"97321","44.65193","-123.13328","Albany","OR","Oregon","TRUE","","26995","154.2","41043","Linn","{""41043"": ""65.69"", ""41003"": ""34.31""}","Linn|Benton","41043|41003","FALSE","FALSE","America/Los_Angeles"
-"97322","44.62606","-123.01891","Albany","OR","Oregon","TRUE","","36826","228.1","41043","Linn","{""41043"": ""100""}","Linn","41043","FALSE","FALSE","America/Los_Angeles"
-"97324","44.35569","-123.62686","Alsea","OR","Oregon","TRUE","","1322","2.9","41003","Benton","{""41003"": ""88.19"", ""41041"": ""9.86"", ""41039"": ""1.95""}","Benton|Lincoln|Lane","41003|41041|41039","FALSE","FALSE","America/Los_Angeles"
-"97325","44.83135","-122.85173","Aumsville","OR","Oregon","TRUE","","6997","87.0","41047","Marion","{""41047"": ""100""}","Marion","41047","FALSE","FALSE","America/Los_Angeles"
-"97326","44.61593","-123.60118","Blodgett","OR","Oregon","TRUE","","1205","3.2","41003","Benton","{""41003"": ""59.73"", ""41041"": ""40.27""}","Benton|Lincoln","41003|41041","FALSE","FALSE","America/Los_Angeles"
-"97327","44.37503","-122.9476","Brownsville","OR","Oregon","TRUE","","3386","18.7","41043","Linn","{""41043"": ""100""}","Linn","41043","FALSE","FALSE","America/Los_Angeles"
-"97329","44.41125","-122.38453","Cascadia","OR","Oregon","TRUE","","146","1.6","41043","Linn","{""41043"": ""100""}","Linn","41043","FALSE","FALSE","America/Los_Angeles"
-"97330","44.63646","-123.27657","Corvallis","OR","Oregon","TRUE","","42956","215.1","41003","Benton","{""41003"": ""100""}","Benton","41003","FALSE","FALSE","America/Los_Angeles"
-"97331","44.56463","-123.28037","Corvallis","OR","Oregon","TRUE","","2865","3431.2","41003","Benton","{""41003"": ""100""}","Benton","41003","FALSE","FALSE","America/Los_Angeles"
-"97333","44.47368","-123.30732","Corvallis","OR","Oregon","TRUE","","23302","77.4","41003","Benton","{""41003"": ""94.03"", ""41043"": ""5.97""}","Benton|Linn","41003|41043","FALSE","FALSE","America/Los_Angeles"
-"97338","44.92701","-123.3463","Dallas","OR","Oregon","TRUE","","21880","78.2","41053","Polk","{""41053"": ""100""}","Polk","41053","FALSE","FALSE","America/Los_Angeles"
-"97341","44.80892","-124.05122","Depoe Bay","OR","Oregon","TRUE","","2682","140.6","41041","Lincoln","{""41041"": ""100""}","Lincoln","41041","FALSE","FALSE","America/Los_Angeles"
-"97342","44.73974","-121.88891","Detroit","OR","Oregon","TRUE","","89","0.6","41047","Marion","{""41047"": ""100""}","Marion","41047","FALSE","FALSE","America/Los_Angeles"
-"97343","44.55856","-123.7434","Eddyville","OR","Oregon","TRUE","","222","0.6","41041","Lincoln","{""41041"": ""100""}","Lincoln","41041","FALSE","FALSE","America/Los_Angeles"
-"97344","44.86914","-123.46455","Falls City","OR","Oregon","TRUE","","1491","52.1","41053","Polk","{""41053"": ""100""}","Polk","41053","FALSE","FALSE","America/Los_Angeles"
-"97345","44.41464","-122.57084","Foster","OR","Oregon","TRUE","","731","7.4","41043","Linn","{""41043"": ""100""}","Linn","41043","FALSE","FALSE","America/Los_Angeles"
-"97346","44.76901","-122.35788","Gates","OR","Oregon","TRUE","","988","12.4","41047","Marion","{""41047"": ""62.17"", ""41043"": ""37.83""}","Marion|Linn","41047|41043","FALSE","FALSE","America/Los_Angeles"
-"97347","45.07708","-123.65654","Grand Ronde","OR","Oregon","TRUE","","1902","17.0","41053","Polk","{""41053"": ""68.85"", ""41071"": ""30.94"", ""41057"": ""0.21""}","Polk|Yamhill|Tillamook","41053|41071|41057","FALSE","FALSE","America/Los_Angeles"
-"97348","44.38452","-123.12296","Halsey","OR","Oregon","TRUE","","1572","9.2","41043","Linn","{""41043"": ""100""}","Linn","41043","FALSE","FALSE","America/Los_Angeles"
-"97350","44.64076","-121.91593","Idanha","OR","Oregon","TRUE","","210","1.0","41047","Marion","{""41047"": ""60.99"", ""41043"": ""39.01""}","Marion|Linn","41047|41043","FALSE","FALSE","America/Los_Angeles"
-"97351","44.83831","-123.17489","Independence","OR","Oregon","TRUE","","11150","82.2","41053","Polk","{""41053"": ""100""}","Polk","41053","FALSE","FALSE","America/Los_Angeles"
-"97352","44.75148","-123.03139","Jefferson","OR","Oregon","TRUE","","6518","57.9","41047","Marion","{""41047"": ""98.52"", ""41043"": ""1.48""}","Marion|Linn","41047|41043","FALSE","FALSE","America/Los_Angeles"
-"97355","44.53097","-122.82268","Lebanon","OR","Oregon","TRUE","","30364","56.2","41043","Linn","{""41043"": ""100""}","Linn","41043","FALSE","FALSE","America/Los_Angeles"
-"97357","44.73947","-123.80475","Logsden","OR","Oregon","TRUE","","174","4.1","41041","Lincoln","{""41041"": ""100""}","Lincoln","41041","FALSE","FALSE","America/Los_Angeles"
-"97358","44.80596","-122.41273","Lyons","OR","Oregon","TRUE","","2488","13.5","41043","Linn","{""41043"": ""72.83"", ""41047"": ""27.17""}","Linn|Marion","41043|41047","FALSE","FALSE","America/Los_Angeles"
-"97360","44.76528","-122.47458","Mill City","OR","Oregon","TRUE","","2458","41.5","41043","Linn","{""41043"": ""79.59"", ""41047"": ""20.41""}","Linn|Marion","41043|41047","FALSE","FALSE","America/Los_Angeles"
-"97361","44.7692","-123.33919","Monmouth","OR","Oregon","TRUE","","12297","34.0","41053","Polk","{""41053"": ""98.07"", ""41003"": ""1.93""}","Polk|Benton","41053|41003","FALSE","FALSE","America/Los_Angeles"
-"97362","45.06916","-122.77021","Mount Angel","OR","Oregon","TRUE","","4287","69.3","41047","Marion","{""41047"": ""96.96"", ""41005"": ""3.04""}","Marion|Clackamas","41047|41005","FALSE","FALSE","America/Los_Angeles"
-"97364","44.99901","-123.9868","Neotsu","OR","Oregon","TRUE","","464","577.2","41041","Lincoln","{""41041"": ""100""}","Lincoln","41041","FALSE","FALSE","America/Los_Angeles"
-"97365","44.66872","-124.01448","Newport","OR","Oregon","TRUE","","11348","102.3","41041","Lincoln","{""41041"": ""100""}","Lincoln","41041","FALSE","FALSE","America/Los_Angeles"
-"97366","44.57712","-124.05101","South Beach","OR","Oregon","TRUE","","1772","65.1","41041","Lincoln","{""41041"": ""100""}","Lincoln","41041","FALSE","FALSE","America/Los_Angeles"
-"97367","44.91557","-123.97531","Lincoln City","OR","Oregon","TRUE","","9746","89.2","41041","Lincoln","{""41041"": ""100""}","Lincoln","41041","FALSE","FALSE","America/Los_Angeles"
-"97368","45.00593","-123.90625","Otis","OR","Oregon","TRUE","","3319","23.2","41041","Lincoln","{""41041"": ""99.42"", ""41057"": ""0.58""}","Lincoln|Tillamook","41041|41057","FALSE","FALSE","America/Los_Angeles"
-"97369","44.76165","-124.05169","Otter Rock","OR","Oregon","TRUE","","187","23.3","41041","Lincoln","{""41041"": ""100""}","Lincoln","41041","FALSE","FALSE","America/Los_Angeles"
-"97370","44.56894","-123.46029","Philomath","OR","Oregon","TRUE","","8695","23.2","41003","Benton","{""41003"": ""99.41"", ""41053"": ""0.59""}","Benton|Polk","41003|41053","FALSE","FALSE","America/Los_Angeles"
-"97371","44.98779","-123.20653","Rickreall","OR","Oregon","TRUE","","659","5.9","41053","Polk","{""41053"": ""100""}","Polk","41053","FALSE","FALSE","America/Los_Angeles"
-"97373","45.05708","-122.77175","Saint Benedict","OR","Oregon","TRUE","","196","659.3","41047","Marion","{""41047"": ""100""}","Marion","41047","FALSE","FALSE","America/Los_Angeles"
-"97374","44.6927","-122.78396","Scio","OR","Oregon","TRUE","","4521","13.6","41043","Linn","{""41043"": ""100""}","Linn","41043","FALSE","FALSE","America/Los_Angeles"
-"97375","44.97735","-122.59641","Scotts Mills","OR","Oregon","TRUE","","1477","12.2","41047","Marion","{""41047"": ""87.94"", ""41005"": ""12.06""}","Marion|Clackamas","41047|41005","FALSE","FALSE","America/Los_Angeles"
-"97376","44.5085","-123.98034","Seal Rock","OR","Oregon","TRUE","","1254","7.6","41041","Lincoln","{""41041"": ""100""}","Lincoln","41041","FALSE","FALSE","America/Los_Angeles"
-"97377","44.46393","-123.10471","Shedd","OR","Oregon","TRUE","","967","7.8","41043","Linn","{""41043"": ""100""}","Linn","41043","FALSE","FALSE","America/Los_Angeles"
-"97378","45.07352","-123.42961","Sheridan","OR","Oregon","TRUE","","8442","28.1","41071","Yamhill","{""41071"": ""86.97"", ""41053"": ""13.03""}","Yamhill|Polk","41071|41053","FALSE","FALSE","America/Los_Angeles"
-"97380","44.77822","-123.93679","Siletz","OR","Oregon","TRUE","","2583","13.8","41041","Lincoln","{""41041"": ""100""}","Lincoln","41041","FALSE","FALSE","America/Los_Angeles"
-"97381","44.97268","-122.74572","Silverton","OR","Oregon","TRUE","","16158","57.3","41047","Marion","{""41047"": ""100""}","Marion","41047","FALSE","FALSE","America/Los_Angeles"
-"97383","44.79361","-122.72171","Stayton","OR","Oregon","TRUE","","10046","88.2","41047","Marion","{""41047"": ""91.52"", ""41043"": ""8.48""}","Marion|Linn","41047|41043","FALSE","FALSE","America/Los_Angeles"
-"97384","44.791","-122.61888","Mehama","OR","Oregon","TRUE","","0","0.0","41047","Marion","{""41047"": ""100""}","Marion","41047","FALSE","FALSE","America/Los_Angeles"
-"97385","44.86655","-122.72835","Sublimity","OR","Oregon","TRUE","","3151","29.8","41047","Marion","{""41047"": ""100""}","Marion","41047","FALSE","FALSE","America/Los_Angeles"
-"97386","44.35982","-122.75171","Sweet Home","OR","Oregon","TRUE","","14693","44.7","41043","Linn","{""41043"": ""100""}","Linn","41043","FALSE","FALSE","America/Los_Angeles"
-"97388","44.89207","-124.02187","Gleneden Beach","OR","Oregon","TRUE","","790","111.8","41041","Lincoln","{""41041"": ""100""}","Lincoln","41041","FALSE","FALSE","America/Los_Angeles"
-"97389","44.53352","-123.08975","Tangent","OR","Oregon","TRUE","","1858","20.1","41043","Linn","{""41043"": ""100""}","Linn","41043","FALSE","FALSE","America/Los_Angeles"
-"97390","44.31498","-123.85884","Tidewater","OR","Oregon","TRUE","","750","2.6","41041","Lincoln","{""41041"": ""91.89"", ""41039"": ""8.11""}","Lincoln|Lane","41041|41039","FALSE","FALSE","America/Los_Angeles"
-"97391","44.62573","-123.89577","Toledo","OR","Oregon","TRUE","","6012","24.7","41041","Lincoln","{""41041"": ""100""}","Lincoln","41041","FALSE","FALSE","America/Los_Angeles"
-"97392","44.78939","-122.94136","Turner","OR","Oregon","TRUE","","7011","63.2","41047","Marion","{""41047"": ""100""}","Marion","41047","FALSE","FALSE","America/Los_Angeles"
-"97394","44.42605","-123.9772","Waldport","OR","Oregon","TRUE","","5224","33.0","41041","Lincoln","{""41041"": ""100""}","Lincoln","41041","FALSE","FALSE","America/Los_Angeles"
-"97396","45.11938","-123.52159","Willamina","OR","Oregon","TRUE","","3384","25.2","41071","Yamhill","{""41071"": ""62.46"", ""41053"": ""37.54""}","Yamhill|Polk","41071|41053","FALSE","FALSE","America/Los_Angeles"
-"97401","44.06825","-123.08181","Eugene","OR","Oregon","TRUE","","45830","1930.1","41039","Lane","{""41039"": ""100""}","Lane","41039","FALSE","FALSE","America/Los_Angeles"
-"97402","44.05156","-123.22999","Eugene","OR","Oregon","TRUE","","52310","292.4","41039","Lane","{""41039"": ""100""}","Lane","41039","FALSE","FALSE","America/Los_Angeles"
-"97403","44.03582","-123.05299","Eugene","OR","Oregon","TRUE","","13398","1210.2","41039","Lane","{""41039"": ""100""}","Lane","41039","FALSE","FALSE","America/Los_Angeles"
-"97404","44.10486","-123.13298","Eugene","OR","Oregon","TRUE","","34616","1378.6","41039","Lane","{""41039"": ""100""}","Lane","41039","FALSE","FALSE","America/Los_Angeles"
-"97405","43.93975","-123.19156","Eugene","OR","Oregon","TRUE","","45250","115.0","41039","Lane","{""41039"": ""100""}","Lane","41039","FALSE","FALSE","America/Los_Angeles"
-"97406","42.62136","-124.014","Agness","OR","Oregon","TRUE","","48","0.2","41015","Curry","{""41015"": ""100""}","Curry","41015","FALSE","FALSE","America/Los_Angeles"
-"97408","44.14466","-123.05446","Eugene","OR","Oregon","TRUE","","13360","103.0","41039","Lane","{""41039"": ""100""}","Lane","41039","FALSE","FALSE","America/Los_Angeles"
-"97410","42.79896","-123.14789","Azalea","OR","Oregon","TRUE","","637","2.0","41019","Douglas","{""41019"": ""100""}","Douglas","41019","FALSE","FALSE","America/Los_Angeles"
-"97411","43.07421","-124.35919","Bandon","OR","Oregon","TRUE","","7337","21.1","41011","Coos","{""41011"": ""100""}","Coos","41011","FALSE","FALSE","America/Los_Angeles"
-"97412","44.19597","-123.56091","Blachly","OR","Oregon","TRUE","","518","2.4","41039","Lane","{""41039"": ""100""}","Lane","41039","FALSE","FALSE","America/Los_Angeles"
-"97413","44.1006","-122.02805","Blue River","OR","Oregon","TRUE","","944","0.7","41039","Lane","{""41039"": ""99.34"", ""41043"": ""0.66""}","Lane|Linn","41039|41043","FALSE","FALSE","America/Los_Angeles"
-"97414","42.96512","-124.17391","Broadbent","OR","Oregon","TRUE","","306","4.4","41011","Coos","{""41011"": ""100""}","Coos","41011","FALSE","FALSE","America/Los_Angeles"
-"97415","42.13701","-124.23586","Brookings","OR","Oregon","TRUE","","14182","36.8","41015","Curry","{""41015"": ""100""}","Curry","41015","FALSE","FALSE","America/Los_Angeles"
-"97416","43.03589","-123.6854","Camas Valley","OR","Oregon","TRUE","","1349","9.7","41019","Douglas","{""41019"": ""100""}","Douglas","41019","FALSE","FALSE","America/Los_Angeles"
-"97417","42.95311","-123.23005","Canyonville","OR","Oregon","TRUE","","2407","46.4","41019","Douglas","{""41019"": ""100""}","Douglas","41019","FALSE","FALSE","America/Los_Angeles"
-"97419","44.17576","-123.40945","Cheshire","OR","Oregon","TRUE","","1074","14.2","41039","Lane","{""41039"": ""100""}","Lane","41039","FALSE","FALSE","America/Los_Angeles"
-"97420","43.35487","-124.14625","Coos Bay","OR","Oregon","TRUE","","27926","45.4","41011","Coos","{""41011"": ""100""}","Coos","41011","FALSE","FALSE","America/Los_Angeles"
-"97423","43.19484","-124.17293","Coquille","OR","Oregon","TRUE","","6670","20.3","41011","Coos","{""41011"": ""100""}","Coos","41011","FALSE","FALSE","America/Los_Angeles"
-"97424","43.74448","-123.05447","Cottage Grove","OR","Oregon","TRUE","","17909","30.0","41039","Lane","{""41039"": ""98.46"", ""41019"": ""1.54""}","Lane|Douglas","41039|41019","FALSE","FALSE","America/Los_Angeles"
-"97426","43.89992","-123.0367","Creswell","OR","Oregon","TRUE","","10119","48.6","41039","Lane","{""41039"": ""100""}","Lane","41039","FALSE","FALSE","America/Los_Angeles"
-"97429","42.96834","-123.06351","Days Creek","OR","Oregon","TRUE","","746","3.2","41019","Douglas","{""41019"": ""100""}","Douglas","41019","FALSE","FALSE","America/Los_Angeles"
-"97430","44.17494","-123.70523","Deadwood","OR","Oregon","TRUE","","349","1.3","41039","Lane","{""41039"": ""100""}","Lane","41039","FALSE","FALSE","America/Los_Angeles"
-"97431","43.87446","-122.81868","Dexter","OR","Oregon","TRUE","","2341","21.7","41039","Lane","{""41039"": ""100""}","Lane","41039","FALSE","FALSE","America/Los_Angeles"
-"97434","43.66775","-122.79333","Dorena","OR","Oregon","TRUE","","959","3.5","41039","Lane","{""41039"": ""100""}","Lane","41039","FALSE","FALSE","America/Los_Angeles"
-"97435","43.70037","-123.33489","Drain","OR","Oregon","TRUE","","2135","8.5","41019","Douglas","{""41019"": ""100""}","Douglas","41019","FALSE","FALSE","America/Los_Angeles"
-"97436","43.64043","-123.59204","Elkton","OR","Oregon","TRUE","","698","2.7","41019","Douglas","{""41019"": ""100""}","Douglas","41019","FALSE","FALSE","America/Los_Angeles"
-"97437","44.09688","-123.38908","Elmira","OR","Oregon","TRUE","","2939","51.2","41039","Lane","{""41039"": ""100""}","Lane","41039","FALSE","FALSE","America/Los_Angeles"
-"97438","43.95088","-122.68838","Fall Creek","OR","Oregon","TRUE","","1084","4.0","41039","Lane","{""41039"": ""100""}","Lane","41039","FALSE","FALSE","America/Los_Angeles"
-"97439","44.06609","-124.03756","Florence","OR","Oregon","TRUE","","14713","32.2","41039","Lane","{""41039"": ""100""}","Lane","41039","FALSE","FALSE","America/Los_Angeles"
-"97441","43.75104","-124.15651","Gardiner","OR","Oregon","TRUE","","586","14.3","41019","Douglas","{""41019"": ""100""}","Douglas","41019","FALSE","FALSE","America/Los_Angeles"
-"97442","42.77045","-123.40467","Glendale","OR","Oregon","TRUE","","2047","9.4","41019","Douglas","{""41019"": ""100""}","Douglas","41019","FALSE","FALSE","America/Los_Angeles"
-"97443","43.24704","-123.01073","Glide","OR","Oregon","TRUE","","2135","10.9","41019","Douglas","{""41019"": ""100""}","Douglas","41019","FALSE","FALSE","America/Los_Angeles"
-"97444","42.47962","-124.34441","Gold Beach","OR","Oregon","TRUE","","5643","13.3","41015","Curry","{""41015"": ""100""}","Curry","41015","FALSE","FALSE","America/Los_Angeles"
-"97446","44.26785","-123.0575","Harrisburg","OR","Oregon","TRUE","","6106","19.4","41043","Linn","{""41043"": ""99.61"", ""41039"": ""0.39""}","Linn|Lane","41043|41039","FALSE","FALSE","America/Los_Angeles"
-"97447","43.27536","-122.51546","Idleyld Park","OR","Oregon","TRUE","","590","1.9","41019","Douglas","{""41019"": ""100""}","Douglas","41019","FALSE","FALSE","America/Los_Angeles"
-"97448","44.21054","-123.2815","Junction City","OR","Oregon","TRUE","","13080","35.4","41039","Lane","{""41039"": ""97.88"", ""41003"": ""2.12""}","Lane|Benton","41039|41003","FALSE","FALSE","America/Los_Angeles"
-"97449","43.57609","-124.08389","Lakeside","OR","Oregon","TRUE","","2170","18.7","41011","Coos","{""41011"": ""100""}","Coos","41011","FALSE","FALSE","America/Los_Angeles"
-"97450","42.90428","-124.39742","Langlois","OR","Oregon","TRUE","","413","1.9","41015","Curry","{""41015"": ""99.11"", ""41011"": ""0.89""}","Curry|Coos","41015|41011","FALSE","FALSE","America/Los_Angeles"
-"97451","43.8152","-123.26791","Lorane","OR","Oregon","TRUE","","391","3.7","41039","Lane","{""41039"": ""100""}","Lane","41039","FALSE","FALSE","America/Los_Angeles"
-"97452","43.8805","-122.72121","Lowell","OR","Oregon","TRUE","","1719","30.8","41039","Lane","{""41039"": ""100""}","Lane","41039","FALSE","FALSE","America/Los_Angeles"
-"97453","43.99817","-123.85948","Mapleton","OR","Oregon","TRUE","","835","3.0","41039","Lane","{""41039"": ""100""}","Lane","41039","FALSE","FALSE","America/Los_Angeles"
-"97454","44.22157","-122.82168","Marcola","OR","Oregon","TRUE","","1471","10.1","41039","Lane","{""41039"": ""100""}","Lane","41039","FALSE","FALSE","America/Los_Angeles"
-"97455","43.9646","-122.91734","Pleasant Hill","OR","Oregon","TRUE","","3175","51.0","41039","Lane","{""41039"": ""100""}","Lane","41039","FALSE","FALSE","America/Los_Angeles"
-"97456","44.34026","-123.36052","Monroe","OR","Oregon","TRUE","","2826","12.0","41003","Benton","{""41003"": ""93.17"", ""41039"": ""6.83""}","Benton|Lane","41003|41039","FALSE","FALSE","America/Los_Angeles"
-"97457","43.05435","-123.22019","Myrtle Creek","OR","Oregon","TRUE","","10288","24.5","41019","Douglas","{""41019"": ""100""}","Douglas","41019","FALSE","FALSE","America/Los_Angeles"
-"97458","43.05967","-124.01846","Myrtle Point","OR","Oregon","TRUE","","4390","4.5","41011","Coos","{""41011"": ""100""}","Coos","41011","FALSE","FALSE","America/Los_Angeles"
-"97459","43.48361","-124.17284","North Bend","OR","Oregon","TRUE","","13643","51.6","41011","Coos","{""41011"": ""99.47"", ""41019"": ""0.53""}","Coos|Douglas","41011|41019","FALSE","FALSE","America/Los_Angeles"
-"97461","44.09769","-123.48948","Noti","OR","Oregon","TRUE","","834","7.6","41039","Lane","{""41039"": ""100""}","Lane","41039","FALSE","FALSE","America/Los_Angeles"
-"97462","43.48633","-123.38294","Oakland","OR","Oregon","TRUE","","3730","7.0","41019","Douglas","{""41019"": ""100""}","Douglas","41019","FALSE","FALSE","America/Los_Angeles"
-"97463","43.74772","-122.40384","Oakridge","OR","Oregon","TRUE","","3899","35.2","41039","Lane","{""41039"": ""100""}","Lane","41039","FALSE","FALSE","America/Los_Angeles"
-"97465","42.75418","-124.38225","Port Orford","OR","Oregon","TRUE","","2021","8.5","41015","Curry","{""41015"": ""100""}","Curry","41015","FALSE","FALSE","America/Los_Angeles"
-"97466","42.86681","-124.07255","Powers","OR","Oregon","TRUE","","1272","11.8","41011","Coos","{""41011"": ""100""}","Coos","41011","FALSE","FALSE","America/Los_Angeles"
-"97467","43.71022","-123.95643","Reedsport","OR","Oregon","TRUE","","5014","7.6","41019","Douglas","{""41019"": ""100""}","Douglas","41019","FALSE","FALSE","America/Los_Angeles"
-"97469","42.92196","-123.42468","Riddle","OR","Oregon","TRUE","","2731","21.3","41019","Douglas","{""41019"": ""100""}","Douglas","41019","FALSE","FALSE","America/Los_Angeles"
-"97470","43.22975","-123.23434","Roseburg","OR","Oregon","TRUE","","19785","44.2","41019","Douglas","{""41019"": ""100""}","Douglas","41019","FALSE","FALSE","America/Los_Angeles"
-"97471","43.22016","-123.47589","Roseburg","OR","Oregon","TRUE","","31035","68.9","41019","Douglas","{""41019"": ""100""}","Douglas","41019","FALSE","FALSE","America/Los_Angeles"
-"97473","43.67797","-123.87375","Scottsburg","OR","Oregon","TRUE","","254","1.9","41019","Douglas","{""41019"": ""100""}","Douglas","41019","FALSE","FALSE","America/Los_Angeles"
-"97476","42.83552","-124.41224","Sixes","OR","Oregon","TRUE","","343","2.9","41015","Curry","{""41015"": ""100""}","Curry","41015","FALSE","FALSE","America/Los_Angeles"
-"97477","44.05875","-123.01122","Springfield","OR","Oregon","TRUE","","37535","1161.8","41039","Lane","{""41039"": ""100""}","Lane","41039","FALSE","FALSE","America/Los_Angeles"
-"97478","44.09093","-122.85142","Springfield","OR","Oregon","TRUE","","39939","94.7","41039","Lane","{""41039"": ""100""}","Lane","41039","FALSE","FALSE","America/Los_Angeles"
-"97479","43.40238","-123.1998","Sutherlin","OR","Oregon","TRUE","","9710","58.9","41019","Douglas","{""41019"": ""100""}","Douglas","41019","FALSE","FALSE","America/Los_Angeles"
-"97480","44.13581","-123.83571","Swisshome","OR","Oregon","TRUE","","333","1.8","41039","Lane","{""41039"": ""100""}","Lane","41039","FALSE","FALSE","America/Los_Angeles"
-"97481","43.11386","-123.55215","Tenmile","OR","Oregon","TRUE","","757","39.5","41019","Douglas","{""41019"": ""100""}","Douglas","41019","FALSE","FALSE","America/Los_Angeles"
-"97484","42.94002","-122.8502","Tiller","OR","Oregon","TRUE","","178","0.5","41019","Douglas","{""41019"": ""100""}","Douglas","41019","FALSE","FALSE","America/Los_Angeles"
-"97486","43.38201","-123.52858","Umpqua","OR","Oregon","TRUE","","663","3.9","41019","Douglas","{""41019"": ""100""}","Douglas","41019","FALSE","FALSE","America/Los_Angeles"
-"97487","43.98617","-123.39091","Veneta","OR","Oregon","TRUE","","9106","46.4","41039","Lane","{""41039"": ""100""}","Lane","41039","FALSE","FALSE","America/Los_Angeles"
-"97488","44.12753","-122.44518","Vida","OR","Oregon","TRUE","","1219","4.6","41039","Lane","{""41039"": ""100""}","Lane","41039","FALSE","FALSE","America/Los_Angeles"
-"97489","44.13709","-122.64589","Walterville","OR","Oregon","TRUE","","785","19.1","41039","Lane","{""41039"": ""100""}","Lane","41039","FALSE","FALSE","America/Los_Angeles"
-"97490","44.00425","-123.61199","Walton","OR","Oregon","TRUE","","257","1.0","41039","Lane","{""41039"": ""100""}","Lane","41039","FALSE","FALSE","America/Los_Angeles"
-"97492","43.72143","-122.49536","Westfir","OR","Oregon","TRUE","","667","11.3","41039","Lane","{""41039"": ""100""}","Lane","41039","FALSE","FALSE","America/Los_Angeles"
-"97493","43.89788","-124.01746","Westlake","OR","Oregon","TRUE","","367","2.6","41039","Lane","{""41039"": ""93.5"", ""41019"": ""6.5""}","Lane|Douglas","41039|41019","FALSE","FALSE","America/Los_Angeles"
-"97494","43.3304","-123.3281","Wilbur","OR","Oregon","TRUE","","67","27.6","41019","Douglas","{""41019"": ""100""}","Douglas","41019","FALSE","FALSE","America/Los_Angeles"
-"97495","43.28778","-123.3054","Winchester","OR","Oregon","TRUE","","1673","87.5","41019","Douglas","{""41019"": ""100""}","Douglas","41019","FALSE","FALSE","America/Los_Angeles"
-"97496","43.05776","-123.49006","Winston","OR","Oregon","TRUE","","7737","34.2","41019","Douglas","{""41019"": ""100""}","Douglas","41019","FALSE","FALSE","America/Los_Angeles"
-"97497","42.66677","-123.39219","Wolf Creek","OR","Oregon","TRUE","","1514","4.0","41033","Josephine","{""41033"": ""99.34"", ""41029"": ""0.66""}","Josephine|Jackson","41033|41029","FALSE","FALSE","America/Los_Angeles"
-"97498","44.28485","-124.02009","Yachats","OR","Oregon","TRUE","","1673","6.5","41041","Lincoln","{""41041"": ""94.54"", ""41039"": ""5.46""}","Lincoln|Lane","41041|41039","FALSE","FALSE","America/Los_Angeles"
-"97499","43.59277","-123.25553","Yoncalla","OR","Oregon","TRUE","","1839","5.3","41019","Douglas","{""41019"": ""100""}","Douglas","41019","FALSE","FALSE","America/Los_Angeles"
-"97501","42.28178","-122.90541","Medford","OR","Oregon","TRUE","","45993","334.3","41029","Jackson","{""41029"": ""100""}","Jackson","41029","FALSE","FALSE","America/Los_Angeles"
-"97502","42.41724","-122.95621","Central Point","OR","Oregon","TRUE","","28975","118.1","41029","Jackson","{""41029"": ""100""}","Jackson","41029","FALSE","FALSE","America/Los_Angeles"
-"97503","42.59042","-122.92747","White City","OR","Oregon","TRUE","","12819","59.3","41029","Jackson","{""41029"": ""100""}","Jackson","41029","FALSE","FALSE","America/Los_Angeles"
-"97504","42.32693","-122.79868","Medford","OR","Oregon","TRUE","","47947","396.0","41029","Jackson","{""41029"": ""100""}","Jackson","41029","FALSE","FALSE","America/Los_Angeles"
-"97520","42.15773","-122.5513","Ashland","OR","Oregon","TRUE","","25177","31.5","41029","Jackson","{""41029"": ""100""}","Jackson","41029","FALSE","FALSE","America/Los_Angeles"
-"97522","42.58129","-122.52832","Butte Falls","OR","Oregon","TRUE","","588","2.5","41029","Jackson","{""41029"": ""100""}","Jackson","41029","FALSE","FALSE","America/Los_Angeles"
-"97523","42.12095","-123.57109","Cave Junction","OR","Oregon","TRUE","","5485","12.5","41033","Josephine","{""41033"": ""100""}","Josephine","41033","FALSE","FALSE","America/Los_Angeles"
-"97524","42.45097","-122.67703","Eagle Point","OR","Oregon","TRUE","","14974","18.7","41029","Jackson","{""41029"": ""100""}","Jackson","41029","FALSE","FALSE","America/Los_Angeles"
-"97525","42.44371","-123.07484","Gold Hill","OR","Oregon","TRUE","","4350","16.9","41029","Jackson","{""41029"": ""100""}","Jackson","41029","FALSE","FALSE","America/Los_Angeles"
-"97526","42.51404","-123.34022","Grants Pass","OR","Oregon","TRUE","","35920","98.5","41033","Josephine","{""41033"": ""99.48"", ""41029"": ""0.52""}","Josephine|Jackson","41033|41029","FALSE","FALSE","America/Los_Angeles"
-"97527","42.38226","-123.40806","Grants Pass","OR","Oregon","TRUE","","36180","58.9","41033","Josephine","{""41033"": ""95.66"", ""41029"": ""4.34""}","Josephine|Jackson","41033|41029","FALSE","FALSE","America/Los_Angeles"
-"97530","42.15192","-123.05757","Jacksonville","OR","Oregon","TRUE","","6913","7.4","41029","Jackson","{""41029"": ""100""}","Jackson","41029","FALSE","FALSE","America/Los_Angeles"
-"97531","42.20427","-123.64943","Kerby","OR","Oregon","TRUE","","578","87.3","41033","Josephine","{""41033"": ""100""}","Josephine","41033","FALSE","FALSE","America/Los_Angeles"
-"97532","42.57181","-123.52213","Merlin","OR","Oregon","TRUE","","2562","16.6","41033","Josephine","{""41033"": ""100""}","Josephine","41033","FALSE","FALSE","America/Los_Angeles"
-"97534","42.08425","-123.75982","O'Brien","OR","Oregon","TRUE","","927","3.6","41033","Josephine","{""41033"": ""100""}","Josephine","41033","FALSE","FALSE","America/Los_Angeles"
-"97535","42.26775","-122.81147","Phoenix","OR","Oregon","TRUE","","5406","661.5","41029","Jackson","{""41029"": ""100""}","Jackson","41029","FALSE","FALSE","America/Los_Angeles"
-"97536","42.78738","-122.50562","Prospect","OR","Oregon","TRUE","","1031","5.8","41029","Jackson","{""41029"": ""100""}","Jackson","41029","FALSE","FALSE","America/Los_Angeles"
-"97537","42.54655","-123.14123","Rogue River","OR","Oregon","TRUE","","7463","24.2","41029","Jackson","{""41029"": ""100""}","Jackson","41029","FALSE","FALSE","America/Los_Angeles"
-"97538","42.2737","-123.58169","Selma","OR","Oregon","TRUE","","1463","4.0","41033","Josephine","{""41033"": ""100""}","Josephine","41033","FALSE","FALSE","America/Los_Angeles"
-"97539","42.60007","-122.79042","Shady Cove","OR","Oregon","TRUE","","3311","58.4","41029","Jackson","{""41029"": ""100""}","Jackson","41029","FALSE","FALSE","America/Los_Angeles"
-"97540","42.19974","-122.80854","Talent","OR","Oregon","TRUE","","8484","78.4","41029","Jackson","{""41029"": ""100""}","Jackson","41029","FALSE","FALSE","America/Los_Angeles"
-"97541","42.73849","-122.75469","Trail","OR","Oregon","TRUE","","1559","3.0","41029","Jackson","{""41029"": ""100""}","Jackson","41029","FALSE","FALSE","America/Los_Angeles"
-"97543","42.37506","-123.56212","Wilderville","OR","Oregon","TRUE","","600","5.2","41033","Josephine","{""41033"": ""100""}","Josephine","41033","FALSE","FALSE","America/Los_Angeles"
-"97544","42.13221","-123.31332","Williams","OR","Oregon","TRUE","","2606","6.2","41033","Josephine","{""41033"": ""100""}","Josephine","41033","FALSE","FALSE","America/Los_Angeles"
-"97601","42.44883","-122.07473","Klamath Falls","OR","Oregon","TRUE","","22726","15.8","41035","Klamath","{""41035"": ""100""}","Klamath","41035","FALSE","FALSE","America/Los_Angeles"
-"97603","42.14085","-121.68079","Klamath Falls","OR","Oregon","TRUE","","29357","36.5","41035","Klamath","{""41035"": ""100""}","Klamath","41035","FALSE","FALSE","America/Los_Angeles"
-"97604","42.94659","-122.17721","Crater Lake","OR","Oregon","TRUE","","135","0.7","41035","Klamath","{""41035"": ""100""}","Klamath","41035","FALSE","FALSE","America/Los_Angeles"
-"97620","42.20628","-119.78389","Adel","OR","Oregon","TRUE","","177","0.1","41037","Lake","{""41037"": ""100""}","Lake","41037","FALSE","FALSE","America/Los_Angeles"
-"97621","42.47655","-121.28228","Beatty","OR","Oregon","TRUE","","150","0.4","41035","Klamath","{""41035"": ""100""}","Klamath","41035","FALSE","FALSE","America/Los_Angeles"
-"97622","42.41915","-121.03403","Bly","OR","Oregon","TRUE","","458","1.1","41035","Klamath","{""41035"": ""100""}","Klamath","41035","FALSE","FALSE","America/Los_Angeles"
-"97623","42.18157","-121.31966","Bonanza","OR","Oregon","TRUE","","2566","2.7","41035","Klamath","{""41035"": ""100""}","Klamath","41035","FALSE","FALSE","America/Los_Angeles"
-"97624","42.74175","-121.70551","Chiloquin","OR","Oregon","TRUE","","3573","3.0","41035","Klamath","{""41035"": ""100""}","Klamath","41035","FALSE","FALSE","America/Los_Angeles"
-"97625","42.31485","-121.58099","Dairy","OR","Oregon","TRUE","","387","2.7","41035","Klamath","{""41035"": ""100""}","Klamath","41035","FALSE","FALSE","America/Los_Angeles"
-"97626","42.66858","-122.02784","Fort Klamath","OR","Oregon","TRUE","","45","0.3","41035","Klamath","{""41035"": ""100""}","Klamath","41035","FALSE","FALSE","America/Los_Angeles"
-"97627","42.12189","-122.01889","Keno","OR","Oregon","TRUE","","638","8.8","41035","Klamath","{""41035"": ""100""}","Klamath","41035","FALSE","FALSE","America/Los_Angeles"
-"97630","42.31317","-120.36637","Lakeview","OR","Oregon","TRUE","","4969","2.4","41037","Lake","{""41037"": ""100""}","Lake","41037","FALSE","FALSE","America/Los_Angeles"
-"97632","42.03211","-121.4233","Malin","OR","Oregon","TRUE","","1571","14.2","41035","Klamath","{""41035"": ""100""}","Klamath","41035","FALSE","FALSE","America/Los_Angeles"
-"97633","42.03085","-121.56334","Merrill","OR","Oregon","TRUE","","1263","16.4","41035","Klamath","{""41035"": ""100""}","Klamath","41035","FALSE","FALSE","America/Los_Angeles"
-"97634","42.12827","-121.81491","Midland","OR","Oregon","TRUE","","242","162.4","41035","Klamath","{""41035"": ""100""}","Klamath","41035","FALSE","FALSE","America/Los_Angeles"
-"97635","41.93715","-120.29869","New Pine Creek","OR","Oregon","TRUE","","170","1.5","06049","Modoc","{""06049"": ""57.09"", ""41037"": ""42.91""}","Modoc|Lake","06049|41037","FALSE","FALSE","America/Los_Angeles"
-"97636","42.61088","-120.52183","Paisley","OR","Oregon","TRUE","","503","1.0","41037","Lake","{""41037"": ""100""}","Lake","41037","FALSE","FALSE","America/Los_Angeles"
-"97637","42.52584","-119.91401","Plush","OR","Oregon","TRUE","","127","0.3","41037","Lake","{""41037"": ""100""}","Lake","41037","FALSE","FALSE","America/Los_Angeles"
-"97638","43.13952","-120.99851","Silver Lake","OR","Oregon","TRUE","","559","0.5","41037","Lake","{""41037"": ""100""}","Lake","41037","FALSE","FALSE","America/Los_Angeles"
-"97639","42.45146","-121.43653","Sprague River","OR","Oregon","TRUE","","659","3.1","41035","Klamath","{""41035"": ""100""}","Klamath","41035","FALSE","FALSE","America/Los_Angeles"
-"97640","42.89029","-120.67172","Summer Lake","OR","Oregon","TRUE","","127","0.1","41037","Lake","{""41037"": ""100""}","Lake","41037","FALSE","FALSE","America/Los_Angeles"
-"97641","43.26455","-120.51876","Christmas Valley","OR","Oregon","TRUE","","1196","0.7","41037","Lake","{""41037"": ""100""}","Lake","41037","FALSE","FALSE","America/Los_Angeles"
-"97701","44.01483","-121.33105","Bend","OR","Oregon","TRUE","","69499","39.6","41017","Deschutes","{""41017"": ""99.9"", ""41013"": ""0.1""}","Deschutes|Crook","41017|41013","FALSE","FALSE","America/Los_Angeles"
-"97702","43.99863","-121.24356","Bend","OR","Oregon","TRUE","","50164","236.3","41017","Deschutes","{""41017"": ""100""}","Deschutes","41017","FALSE","FALSE","America/Los_Angeles"
-"97707","43.8258","-121.49526","Bend","OR","Oregon","TRUE","","6115","40.4","41017","Deschutes","{""41017"": ""100""}","Deschutes","41017","FALSE","FALSE","America/Los_Angeles"
-"97710","42.18621","-118.47568","Fields","OR","Oregon","TRUE","","115","0.1","41025","Harney","{""41025"": ""96.67"", ""41045"": ""3.33""}","Harney|Malheur","41025|41045","FALSE","FALSE","America/Los_Angeles"
-"97711","44.72285","-120.63173","Ashwood","OR","Oregon","TRUE","","32","0.0","41031","Jefferson","{""41031"": ""100""}","Jefferson","41031","FALSE","FALSE","America/Los_Angeles"
-"97712","43.78281","-120.45307","Brothers","OR","Oregon","TRUE","","86","0.2","41017","Deschutes","{""41017"": ""100""}","Deschutes","41017","FALSE","FALSE","America/Los_Angeles"
-"97720","43.56855","-118.84711","Burns","OR","Oregon","TRUE","","4435","1.7","41025","Harney","{""41025"": ""100""}","Harney","41025","FALSE","FALSE","America/Los_Angeles"
-"97721","42.9041","-118.58289","Princeton","OR","Oregon","TRUE","","222","0.1","41025","Harney","{""41025"": ""100""}","Harney","41025","FALSE","FALSE","America/Los_Angeles"
-"97722","42.95081","-118.69496","Diamond","OR","Oregon","TRUE","","65","0.1","41025","Harney","{""41025"": ""100""}","Harney","41025","FALSE","FALSE","America/Los_Angeles"
-"97730","44.50237","-121.64715","Camp Sherman","OR","Oregon","TRUE","","222","6.5","41031","Jefferson","{""41031"": ""100""}","Jefferson","41031","FALSE","FALSE","America/Los_Angeles"
-"97731","43.14598","-121.79748","Chemult","OR","Oregon","TRUE","","371","3.0","41035","Klamath","{""41035"": ""79.86"", ""41019"": ""20.14""}","Klamath|Douglas","41035|41019","FALSE","FALSE","America/Los_Angeles"
-"97732","43.39673","-118.45323","Crane","OR","Oregon","TRUE","","123","0.6","41025","Harney","{""41025"": ""100""}","Harney","41025","FALSE","FALSE","America/Los_Angeles"
-"97733","43.37924","-121.95668","Crescent","OR","Oregon","TRUE","","391","0.4","41035","Klamath","{""41035"": ""100""}","Klamath","41035","FALSE","FALSE","America/Los_Angeles"
-"97734","44.54038","-121.33486","Culver","OR","Oregon","TRUE","","3413","8.6","41031","Jefferson","{""41031"": ""100""}","Jefferson","41031","FALSE","FALSE","America/Los_Angeles"
-"97735","43.41066","-120.92595","Fort Rock","OR","Oregon","TRUE","","97","0.1","41037","Lake","{""41037"": ""100""}","Lake","41037","FALSE","FALSE","America/Los_Angeles"
-"97736","42.71476","-119.0058","Frenchglen","OR","Oregon","TRUE","","105","0.1","41025","Harney","{""41025"": ""100""}","Harney","41025","FALSE","FALSE","America/Los_Angeles"
-"97737","43.50266","-121.73126","Gilchrist","OR","Oregon","TRUE","","591","8.8","41035","Klamath","{""41035"": ""100""}","Klamath","41035","FALSE","FALSE","America/Los_Angeles"
-"97738","43.52256","-119.15178","Hines","OR","Oregon","TRUE","","1772","9.3","41025","Harney","{""41025"": ""100""}","Harney","41025","FALSE","FALSE","America/Los_Angeles"
-"97739","43.69959","-121.46219","La Pine","OR","Oregon","TRUE","","12595","23.4","41017","Deschutes","{""41017"": ""86.3"", ""41035"": ""13.7""}","Deschutes|Klamath","41017|41035","FALSE","FALSE","America/Los_Angeles"
-"97741","44.6518","-121.05269","Madras","OR","Oregon","TRUE","","12608","13.9","41031","Jefferson","{""41031"": ""100""}","Jefferson","41031","FALSE","FALSE","America/Los_Angeles"
-"97750","44.63858","-120.1165","Mitchell","OR","Oregon","TRUE","","354","0.4","41069","Wheeler","{""41069"": ""100""}","Wheeler","41069","FALSE","FALSE","America/Los_Angeles"
-"97751","44.13755","-119.87398","Paulina","OR","Oregon","TRUE","","77","0.1","41013","Crook","{""41013"": ""99.22"", ""41025"": ""0.78""}","Crook|Harney","41013|41025","FALSE","FALSE","America/Los_Angeles"
-"97752","44.13734","-120.29783","Post","OR","Oregon","TRUE","","0","0.0","41013","Crook","{""41013"": ""100""}","Crook","41013","FALSE","FALSE","America/Los_Angeles"
-"97753","44.23519","-121.01555","Powell Butte","OR","Oregon","TRUE","","2570","8.4","41013","Crook","{""41013"": ""100""}","Crook","41013","FALSE","FALSE","America/Los_Angeles"
-"97754","44.15223","-120.57082","Prineville","OR","Oregon","TRUE","","20270","6.5","41013","Crook","{""41013"": ""99.94"", ""41031"": ""0.06""}","Crook|Jefferson","41013|41031","FALSE","FALSE","America/Los_Angeles"
-"97756","44.27851","-121.21385","Redmond","OR","Oregon","TRUE","","38844","132.6","41017","Deschutes","{""41017"": ""99.89"", ""41013"": ""0.11""}","Deschutes|Crook","41017|41013","FALSE","FALSE","America/Los_Angeles"
-"97758","43.38843","-119.88021","Riley","OR","Oregon","TRUE","","89","0.1","41025","Harney","{""41025"": ""83.17"", ""41037"": ""16.83""}","Harney|Lake","41025|41037","FALSE","FALSE","America/Los_Angeles"
-"97759","44.3772","-121.78388","Sisters","OR","Oregon","TRUE","","7896","8.0","41017","Deschutes","{""41017"": ""99.3"", ""41031"": ""0.44"", ""41043"": ""0.25""}","Deschutes|Jefferson|Linn","41017|41031|41043","FALSE","FALSE","America/Los_Angeles"
-"97760","44.39092","-121.23781","Terrebonne","OR","Oregon","TRUE","","6872","27.4","41031","Jefferson","{""41031"": ""52.33"", ""41017"": ""45.72"", ""41013"": ""1.95""}","Jefferson|Deschutes|Crook","41031|41017|41013","FALSE","FALSE","America/Los_Angeles"
-"97761","44.84165","-121.29841","Warm Springs","OR","Oregon","TRUE","","4181","4.3","41031","Jefferson","{""41031"": ""78.58"", ""41065"": ""21.42""}","Jefferson|Wasco","41031|41065","FALSE","FALSE","America/Los_Angeles"
-"97801","45.66821","-118.81573","Pendleton","OR","Oregon","TRUE","","20563","16.2","41059","Umatilla","{""41059"": ""100""}","Umatilla","41059","FALSE","FALSE","America/Los_Angeles"
-"97810","45.71397","-118.45808","Adams","OR","Oregon","TRUE","","1105","2.1","41059","Umatilla","{""41059"": ""100""}","Umatilla","41059","FALSE","FALSE","America/Los_Angeles"
-"97812","45.55943","-120.21621","Arlington","OR","Oregon","TRUE","","909","0.7","41021","Gilliam","{""41021"": ""100""}","Gilliam","41021","FALSE","FALSE","America/Los_Angeles"
-"97813","45.85042","-118.52813","Athena","OR","Oregon","TRUE","","1392","9.8","41059","Umatilla","{""41059"": ""100""}","Umatilla","41059","FALSE","FALSE","America/Los_Angeles"
-"97814","44.82656","-117.76251","Baker City","OR","Oregon","TRUE","","12348","6.2","41001","Baker","{""41001"": ""99.41"", ""41061"": ""0.59""}","Baker|Union","41001|41061","FALSE","FALSE","America/Los_Angeles"
-"97817","44.71373","-118.64708","Bates","OR","Oregon","TRUE","","60","0.2","41023","Grant","{""41023"": ""100""}","Grant","41023","FALSE","FALSE","America/Los_Angeles"
-"97818","45.77477","-119.87004","Boardman","OR","Oregon","TRUE","","4244","20.7","41049","Morrow","{""41049"": ""100""}","Morrow","41049","FALSE","FALSE","America/Los_Angeles"
-"97819","44.48542","-117.76037","Bridgeport","OR","Oregon","TRUE","","17","0.1","41001","Baker","{""41001"": ""100""}","Baker","41001","FALSE","FALSE","America/Los_Angeles"
-"97820","44.16878","-119.19978","Canyon City","OR","Oregon","TRUE","","899","1.0","41023","Grant","{""41023"": ""100""}","Grant","41023","FALSE","FALSE","America/Los_Angeles"
-"97823","45.24281","-120.20562","Condon","OR","Oregon","TRUE","","922","0.6","41021","Gilliam","{""41021"": ""100""}","Gilliam","41021","FALSE","FALSE","America/Los_Angeles"
-"97824","45.33995","-117.75625","Cove","OR","Oregon","TRUE","","1774","3.1","41061","Union","{""41061"": ""100""}","Union","41061","FALSE","FALSE","America/Los_Angeles"
-"97825","44.38529","-119.5166","Dayville","OR","Oregon","TRUE","","248","0.4","41023","Grant","{""41023"": ""100""}","Grant","41023","FALSE","FALSE","America/Los_Angeles"
-"97826","45.65448","-119.22665","Echo","OR","Oregon","TRUE","","1144","1.4","41059","Umatilla","{""41059"": ""97.05"", ""41049"": ""2.95""}","Umatilla|Morrow","41059|41049","FALSE","FALSE","America/Los_Angeles"
-"97827","45.58794","-117.84525","Elgin","OR","Oregon","TRUE","","2407","4.5","41061","Union","{""41061"": ""100""}","Union","41061","FALSE","FALSE","America/Los_Angeles"
-"97828","45.7068","-117.2286","Enterprise","OR","Oregon","TRUE","","3162","1.7","41063","Wallowa","{""41063"": ""100""}","Wallowa","41063","FALSE","FALSE","America/Los_Angeles"
-"97830","44.9502","-120.18931","Fossil","OR","Oregon","TRUE","","642","0.4","41069","Wheeler","{""41069"": ""93.85"", ""41021"": ""6.15""}","Wheeler|Gilliam","41069|41021","FALSE","FALSE","America/Los_Angeles"
-"97833","44.92896","-118.01488","Haines","OR","Oregon","TRUE","","740","3.2","41001","Baker","{""41001"": ""100""}","Baker","41001","FALSE","FALSE","America/Los_Angeles"
-"97834","44.96864","-117.18919","Halfway","OR","Oregon","TRUE","","904","1.7","41001","Baker","{""41001"": ""100""}","Baker","41001","FALSE","FALSE","America/Los_Angeles"
-"97835","45.91","-118.78663","Helix","OR","Oregon","TRUE","","264","0.5","41059","Umatilla","{""41059"": ""100""}","Umatilla","41059","FALSE","FALSE","America/Los_Angeles"
-"97836","45.2939","-119.50152","Heppner","OR","Oregon","TRUE","","1941","0.8","41049","Morrow","{""41049"": ""100""}","Morrow","41049","FALSE","FALSE","America/Los_Angeles"
-"97837","44.51811","-118.03637","Hereford","OR","Oregon","TRUE","","60","0.2","41001","Baker","{""41001"": ""100""}","Baker","41001","FALSE","FALSE","America/Los_Angeles"
-"97838","45.85295","-119.28695","Hermiston","OR","Oregon","TRUE","","26153","61.4","41059","Umatilla","{""41059"": ""99.62"", ""41049"": ""0.38""}","Umatilla|Morrow","41059|41049","FALSE","FALSE","America/Los_Angeles"
-"97839","45.59138","-119.59274","Lexington","OR","Oregon","TRUE","","283","0.5","41049","Morrow","{""41049"": ""100""}","Morrow","41049","FALSE","FALSE","America/Los_Angeles"
-"97840","44.90644","-116.9271","Oxbow","OR","Oregon","TRUE","","216","0.7","41001","Baker","{""41001"": ""100""}","Baker","41001","FALSE","FALSE","America/Boise"
-"97841","45.46512","-117.94494","Imbler","OR","Oregon","TRUE","","553","11.1","41061","Union","{""41061"": ""100""}","Union","41061","FALSE","FALSE","America/Los_Angeles"
-"97842","45.46752","-116.74865","Imnaha","OR","Oregon","TRUE","","118","0.1","41063","Wallowa","{""41063"": ""100""}","Wallowa","41063","FALSE","FALSE","America/Los_Angeles"
-"97843","45.50471","-119.89785","Ione","OR","Oregon","TRUE","","643","0.7","41049","Morrow","{""41049"": ""95.98"", ""41021"": ""4.02""}","Morrow|Gilliam","41049|41021","FALSE","FALSE","America/Los_Angeles"
-"97844","45.87421","-119.55845","Irrigon","OR","Oregon","TRUE","","4133","38.4","41049","Morrow","{""41049"": ""100""}","Morrow","41049","FALSE","FALSE","America/Los_Angeles"
-"97845","44.40179","-118.90315","John Day","OR","Oregon","TRUE","","2835","16.8","41023","Grant","{""41023"": ""100""}","Grant","41023","FALSE","FALSE","America/Los_Angeles"
-"97846","45.46587","-117.02962","Joseph","OR","Oregon","TRUE","","1878","1.0","41063","Wallowa","{""41063"": ""100""}","Wallowa","41063","FALSE","FALSE","America/Los_Angeles"
-"97848","44.67557","-119.56605","Kimberly","OR","Oregon","TRUE","","192","0.4","41023","Grant","{""41023"": ""97.95"", ""41069"": ""2.05""}","Grant|Wheeler","41023|41069","FALSE","FALSE","America/Los_Angeles"
-"97850","45.30159","-118.11669","La Grande","OR","Oregon","TRUE","","17294","23.1","41061","Union","{""41061"": ""100""}","Union","41061","FALSE","FALSE","America/Los_Angeles"
-"97856","44.80663","-119.12171","Long Creek","OR","Oregon","TRUE","","358","0.3","41023","Grant","{""41023"": ""100""}","Grant","41023","FALSE","FALSE","America/Los_Angeles"
-"97857","45.37812","-117.50433","Lostine","OR","Oregon","TRUE","","551","0.8","41063","Wallowa","{""41063"": ""100""}","Wallowa","41063","FALSE","FALSE","America/Los_Angeles"
-"97859","45.52907","-118.42136","Meacham","OR","Oregon","TRUE","","151","0.7","41059","Umatilla","{""41059"": ""100""}","Umatilla","41059","FALSE","FALSE","America/Los_Angeles"
-"97862","45.92342","-118.31008","Milton Freewater","OR","Oregon","TRUE","","11949","16.8","41059","Umatilla","{""41059"": ""100""}","Umatilla","41059","FALSE","FALSE","America/Los_Angeles"
-"97864","44.84588","-119.44529","Monument","OR","Oregon","TRUE","","226","0.3","41023","Grant","{""41023"": ""100""}","Grant","41023","FALSE","FALSE","America/Los_Angeles"
-"97865","44.4472","-119.19104","Mount Vernon","OR","Oregon","TRUE","","1091","1.1","41023","Grant","{""41023"": ""100""}","Grant","41023","FALSE","FALSE","America/Los_Angeles"
-"97867","45.06907","-117.9955","North Powder","OR","Oregon","TRUE","","811","2.3","41061","Union","{""41061"": ""84.53"", ""41001"": ""15.47""}","Union|Baker","41061|41001","FALSE","FALSE","America/Los_Angeles"
-"97868","45.41177","-118.87134","Pilot Rock","OR","Oregon","TRUE","","1781","1.6","41059","Umatilla","{""41059"": ""100""}","Umatilla","41059","FALSE","FALSE","America/Los_Angeles"
-"97869","44.40198","-118.62051","Prairie City","OR","Oregon","TRUE","","930","1.0","41023","Grant","{""41023"": ""100"", ""41001"": ""0""}","Grant|Baker","41023|41001","FALSE","FALSE","America/Los_Angeles"
-"97870","44.78891","-117.18786","Richland","OR","Oregon","TRUE","","798","2.4","41001","Baker","{""41001"": ""100""}","Baker","41001","FALSE","FALSE","America/Los_Angeles"
-"97873","44.13206","-119.00288","Seneca","OR","Oregon","TRUE","","295","1.5","41023","Grant","{""41023"": ""100""}","Grant","41023","FALSE","FALSE","America/Los_Angeles"
-"97874","44.77754","-119.86744","Spray","OR","Oregon","TRUE","","444","0.7","41069","Wheeler","{""41069"": ""100""}","Wheeler","41069","FALSE","FALSE","America/Los_Angeles"
-"97875","45.81938","-119.13834","Stanfield","OR","Oregon","TRUE","","3126","19.3","41059","Umatilla","{""41059"": ""100""}","Umatilla","41059","FALSE","FALSE","America/Los_Angeles"
-"97876","45.5165","-118.03552","Summerville","OR","Oregon","TRUE","","960","5.9","41061","Union","{""41061"": ""100""}","Union","41061","FALSE","FALSE","America/Los_Angeles"
-"97877","44.79261","-118.33936","Sumpter","OR","Oregon","TRUE","","282","0.5","41001","Baker","{""41001"": ""80.92"", ""41023"": ""19.08""}","Baker|Grant","41001|41023","FALSE","FALSE","America/Los_Angeles"
-"97880","45.08362","-118.89401","Ukiah","OR","Oregon","TRUE","","338","0.4","41059","Umatilla","{""41059"": ""92.65"", ""41023"": ""7.35""}","Umatilla|Grant","41059|41023","FALSE","FALSE","America/Los_Angeles"
-"97882","45.89984","-119.35522","Umatilla","OR","Oregon","TRUE","","7972","130.7","41059","Umatilla","{""41059"": ""100""}","Umatilla","41059","FALSE","FALSE","America/Los_Angeles"
-"97883","45.15518","-117.61966","Union","OR","Oregon","TRUE","","2526","3.6","41061","Union","{""41061"": ""100""}","Union","41061","FALSE","FALSE","America/Los_Angeles"
-"97884","44.45644","-118.21822","Unity","OR","Oregon","TRUE","","129","0.6","41001","Baker","{""41001"": ""100""}","Baker","41001","FALSE","FALSE","America/Los_Angeles"
-"97885","45.65585","-117.51177","Wallowa","OR","Oregon","TRUE","","1295","1.7","41063","Wallowa","{""41063"": ""100""}","Wallowa","41063","FALSE","FALSE","America/Los_Angeles"
-"97886","45.7987","-118.23481","Weston","OR","Oregon","TRUE","","1256","3.4","41059","Umatilla","{""41059"": ""100""}","Umatilla","41059","FALSE","FALSE","America/Los_Angeles"
-"97901","43.62894","-117.09006","Adrian","OR","Oregon","TRUE","","710","2.8","41045","Malheur","{""41045"": ""100""}","Malheur","41045","FALSE","FALSE","America/Boise"
-"97903","44.24869","-117.62058","Brogan","OR","Oregon","TRUE","","51","0.2","41045","Malheur","{""41045"": ""100""}","Malheur","41045","FALSE","FALSE","America/Boise"
-"97904","43.88224","-118.51065","Drewsey","OR","Oregon","TRUE","","253","0.2","41025","Harney","{""41025"": ""100""}","Harney","41025","FALSE","FALSE","America/Los_Angeles"
-"97905","44.57379","-117.45952","Durkee","OR","Oregon","TRUE","","85","0.2","41001","Baker","{""41001"": ""100""}","Baker","41001","FALSE","FALSE","America/Los_Angeles"
-"97906","43.52609","-117.77349","Harper","OR","Oregon","TRUE","","317","0.1","41045","Malheur","{""41045"": ""100""}","Malheur","41045","FALSE","FALSE","America/Boise"
-"97907","44.41016","-117.34305","Huntington","OR","Oregon","TRUE","","501","0.6","41001","Baker","{""41001"": ""91.43"", ""41045"": ""8.57""}","Baker|Malheur","41001|41045","FALSE","FALSE","America/Los_Angeles"
-"97908","44.30925","-117.93944","Ironside","OR","Oregon","TRUE","","38","0.0","41045","Malheur","{""41045"": ""100""}","Malheur","41045","FALSE","FALSE","America/Boise"
-"97909","44.24647","-117.41897","Jamieson","OR","Oregon","TRUE","","97","0.8","41045","Malheur","{""41045"": ""100""}","Malheur","41045","FALSE","FALSE","America/Boise"
-"97910","42.73826","-117.50535","Jordan Valley","OR","Oregon","TRUE","","526","0.0","41045","Malheur","{""41045"": ""89.39"", ""16073"": ""10.61""}","Malheur|Owyhee","41045|16073","FALSE","FALSE","America/Boise"
-"97911","43.75425","-118.05702","Juntura","OR","Oregon","TRUE","","69","0.0","41045","Malheur","{""41045"": ""100""}","Malheur","41045","FALSE","FALSE","America/Boise"
-"97913","43.61127","-117.32015","Nyssa","OR","Oregon","TRUE","","4875","2.7","41045","Malheur","{""41045"": ""99.93"", ""16075"": ""0.07""}","Malheur|Payette","41045|16075","FALSE","FALSE","America/Boise"
-"97914","44.11322","-117.08407","Ontario","OR","Oregon","TRUE","","19400","29.3","41045","Malheur","{""41045"": ""100""}","Malheur","41045","FALSE","FALSE","America/Boise"
-"97918","44.04162","-117.36115","Vale","OR","Oregon","TRUE","","4224","3.8","41045","Malheur","{""41045"": ""100""}","Malheur","41045","FALSE","FALSE","America/Boise"
-"97920","44.07265","-117.84644","Westfall","OR","Oregon","TRUE","","73","0.1","41045","Malheur","{""41045"": ""100""}","Malheur","41045","FALSE","FALSE","America/Boise"
-"98001","47.30998","-122.2652","Auburn","WA","Washington","TRUE","","33699","699.3","53033","King","{""53033"": ""100""}","King","53033","FALSE","FALSE","America/Los_Angeles"
-"98002","47.30836","-122.21638","Auburn","WA","Washington","TRUE","","33468","1797.1","53033","King","{""53033"": ""100""}","King","53033","FALSE","FALSE","America/Los_Angeles"
-"98003","47.30512","-122.31507","Federal Way","WA","Washington","TRUE","","49533","1644.4","53033","King","{""53033"": ""100""}","King","53033","FALSE","FALSE","America/Los_Angeles"
-"98004","47.61883","-122.20595","Bellevue","WA","Washington","TRUE","","36202","1985.4","53033","King","{""53033"": ""100""}","King","53033","FALSE","FALSE","America/Los_Angeles"
-"98005","47.61478","-122.16862","Bellevue","WA","Washington","TRUE","","19223","987.7","53033","King","{""53033"": ""100""}","King","53033","FALSE","FALSE","America/Los_Angeles"
-"98006","47.55748","-122.15081","Bellevue","WA","Washington","TRUE","","37871","1365.3","53033","King","{""53033"": ""100""}","King","53033","FALSE","FALSE","America/Los_Angeles"
-"98007","47.61445","-122.14381","Bellevue","WA","Washington","TRUE","","29322","2583.0","53033","King","{""53033"": ""100""}","King","53033","FALSE","FALSE","America/Los_Angeles"
-"98008","47.60527","-122.11098","Bellevue","WA","Washington","TRUE","","25719","1797.7","53033","King","{""53033"": ""100""}","King","53033","FALSE","FALSE","America/Los_Angeles"
-"98010","47.31309","-122.00055","Black Diamond","WA","Washington","TRUE","","5602","143.7","53033","King","{""53033"": ""100""}","King","53033","FALSE","FALSE","America/Los_Angeles"
-"98011","47.75338","-122.20189","Bothell","WA","Washington","TRUE","","33830","1592.6","53033","King","{""53033"": ""100""}","King","53033","FALSE","FALSE","America/Los_Angeles"
-"98012","47.84156","-122.19911","Bothell","WA","Washington","TRUE","","67427","1698.7","53061","Snohomish","{""53061"": ""100""}","Snohomish","53061","FALSE","FALSE","America/Los_Angeles"
-"98014","47.66122","-121.89445","Carnation","WA","Washington","TRUE","","6773","57.7","53033","King","{""53033"": ""100""}","King","53033","FALSE","FALSE","America/Los_Angeles"
-"98019","47.73961","-121.84941","Duvall","WA","Washington","TRUE","","11946","60.3","53033","King","{""53033"": ""100""}","King","53033","FALSE","FALSE","America/Los_Angeles"
-"98020","47.80022","-122.37266","Edmonds","WA","Washington","TRUE","","19447","1449.7","53061","Snohomish","{""53061"": ""100""}","Snohomish","53061","FALSE","FALSE","America/Los_Angeles"
-"98021","47.79257","-122.20819","Bothell","WA","Washington","TRUE","","31496","1202.4","53061","Snohomish","{""53061"": ""100""}","Snohomish","53061","FALSE","FALSE","America/Los_Angeles"
-"98022","47.15032","-121.65482","Enumclaw","WA","Washington","TRUE","","21217","20.2","53033","King","{""53033"": ""98.3"", ""53053"": ""1.7""}","King|Pierce","53033|53053","FALSE","FALSE","America/Los_Angeles"
-"98023","47.3088","-122.36269","Federal Way","WA","Washington","TRUE","","50201","1876.0","53033","King","{""53033"": ""100""}","King","53033","FALSE","FALSE","America/Los_Angeles"
-"98024","47.57493","-121.90112","Fall City","WA","Washington","TRUE","","6890","111.2","53033","King","{""53033"": ""100""}","King","53033","FALSE","FALSE","America/Los_Angeles"
-"98026","47.83559","-122.33164","Edmonds","WA","Washington","TRUE","","37995","1571.8","53061","Snohomish","{""53061"": ""100""}","Snohomish","53061","FALSE","FALSE","America/Los_Angeles"
-"98027","47.50138","-121.99933","Issaquah","WA","Washington","TRUE","","30989","214.4","53033","King","{""53033"": ""100""}","King","53033","FALSE","FALSE","America/Los_Angeles"
-"98028","47.75423","-122.24753","Kenmore","WA","Washington","TRUE","","22738","1557.7","53033","King","{""53033"": ""100""}","King","53033","FALSE","FALSE","America/Los_Angeles"
-"98029","47.55847","-122.00546","Issaquah","WA","Washington","TRUE","","29250","1261.5","53033","King","{""53033"": ""100""}","King","53033","FALSE","FALSE","America/Los_Angeles"
-"98030","47.36821","-122.19736","Kent","WA","Washington","TRUE","","38681","2094.8","53033","King","{""53033"": ""100""}","King","53033","FALSE","FALSE","America/Los_Angeles"
-"98031","47.40491","-122.19562","Kent","WA","Washington","TRUE","","37850","1947.4","53033","King","{""53033"": ""100""}","King","53033","FALSE","FALSE","America/Los_Angeles"
-"98032","47.39234","-122.25872","Kent","WA","Washington","TRUE","","39074","901.4","53033","King","{""53033"": ""100""}","King","53033","FALSE","FALSE","America/Los_Angeles"
-"98033","47.67612","-122.19233","Kirkland","WA","Washington","TRUE","","39939","1674.3","53033","King","{""53033"": ""100""}","King","53033","FALSE","FALSE","America/Los_Angeles"
-"98034","47.71577","-122.2158","Kirkland","WA","Washington","TRUE","","43471","1853.0","53033","King","{""53033"": ""100""}","King","53033","FALSE","FALSE","America/Los_Angeles"
-"98036","47.81111","-122.2816","Lynnwood","WA","Washington","TRUE","","40723","1624.7","53061","Snohomish","{""53061"": ""100""}","Snohomish","53061","FALSE","FALSE","America/Los_Angeles"
-"98037","47.8392","-122.28549","Lynnwood","WA","Washington","TRUE","","30485","2043.5","53061","Snohomish","{""53061"": ""100""}","Snohomish","53061","FALSE","FALSE","America/Los_Angeles"
-"98038","47.41741","-121.95374","Maple Valley","WA","Washington","TRUE","","35904","208.5","53033","King","{""53033"": ""100""}","King","53033","FALSE","FALSE","America/Los_Angeles"
-"98039","47.63305","-122.23961","Medina","WA","Washington","TRUE","","3267","873.9","53033","King","{""53033"": ""100""}","King","53033","FALSE","FALSE","America/Los_Angeles"
-"98040","47.56612","-122.23198","Mercer Island","WA","Washington","TRUE","","25675","1553.1","53033","King","{""53033"": ""100""}","King","53033","FALSE","FALSE","America/Los_Angeles"
-"98042","47.36623","-122.11717","Kent","WA","Washington","TRUE","","48572","659.5","53033","King","{""53033"": ""100""}","King","53033","FALSE","FALSE","America/Los_Angeles"
-"98043","47.792","-122.30743","Mountlake Terrace","WA","Washington","TRUE","","21210","2005.0","53061","Snohomish","{""53061"": ""100""}","Snohomish","53061","FALSE","FALSE","America/Los_Angeles"
-"98045","47.39158","-121.63471","North Bend","WA","Washington","TRUE","","15339","17.6","53033","King","{""53033"": ""100""}","King","53033","FALSE","FALSE","America/Los_Angeles"
-"98047","47.26208","-122.24756","Pacific","WA","Washington","TRUE","","7124","1139.1","53033","King","{""53033"": ""98.34"", ""53053"": ""1.66""}","King|Pierce","53033|53053","FALSE","FALSE","America/Los_Angeles"
-"98050","47.54399","-121.94041","Preston","WA","Washington","TRUE","","432","50.4","53033","King","{""53033"": ""100""}","King","53033","FALSE","FALSE","America/Los_Angeles"
-"98051","47.34072","-121.88739","Ravensdale","WA","Washington","TRUE","","4451","33.6","53033","King","{""53033"": ""100""}","King","53033","FALSE","FALSE","America/Los_Angeles"
-"98052","47.68125","-122.12025","Redmond","WA","Washington","TRUE","","70245","1348.3","53033","King","{""53033"": ""100""}","King","53033","FALSE","FALSE","America/Los_Angeles"
-"98053","47.66565","-122.01946","Redmond","WA","Washington","TRUE","","21993","299.4","53033","King","{""53033"": ""100""}","King","53033","FALSE","FALSE","America/Los_Angeles"
-"98055","47.44695","-122.20142","Renton","WA","Washington","TRUE","","24332","1960.6","53033","King","{""53033"": ""100""}","King","53033","FALSE","FALSE","America/Los_Angeles"
-"98056","47.51287","-122.18959","Renton","WA","Washington","TRUE","","35722","1832.1","53033","King","{""53033"": ""100""}","King","53033","FALSE","FALSE","America/Los_Angeles"
-"98057","47.47142","-122.22029","Renton","WA","Washington","TRUE","","12822","811.1","53033","King","{""53033"": ""100""}","King","53033","FALSE","FALSE","America/Los_Angeles"
-"98058","47.44181","-122.12439","Renton","WA","Washington","TRUE","","43740","892.5","53033","King","{""53033"": ""100""}","King","53033","FALSE","FALSE","America/Los_Angeles"
-"98059","47.50223","-122.12101","Renton","WA","Washington","TRUE","","38959","752.8","53033","King","{""53033"": ""100""}","King","53033","FALSE","FALSE","America/Los_Angeles"
-"98065","47.58459","-121.79164","Snoqualmie","WA","Washington","TRUE","","15958","83.2","53033","King","{""53033"": ""100""}","King","53033","FALSE","FALSE","America/Los_Angeles"
-"98068","47.44072","-121.34967","Snoqualmie Pass","WA","Washington","TRUE","","444","0.6","53037","Kittitas","{""53037"": ""80.4"", ""53033"": ""19.6""}","Kittitas|King","53037|53033","FALSE","FALSE","America/Los_Angeles"
-"98070","47.41219","-122.4726","Vashon","WA","Washington","TRUE","","10291","107.6","53033","King","{""53033"": ""100""}","King","53033","FALSE","FALSE","America/Los_Angeles"
-"98072","47.76117","-122.13215","Woodinville","WA","Washington","TRUE","","23939","509.9","53033","King","{""53033"": ""86.67"", ""53061"": ""13.33""}","King|Snohomish","53033|53061","FALSE","FALSE","America/Los_Angeles"
-"98074","47.62263","-122.04314","Sammamish","WA","Washington","TRUE","","28775","1041.4","53033","King","{""53033"": ""100""}","King","53033","FALSE","FALSE","America/Los_Angeles"
-"98075","47.58654","-122.03847","Sammamish","WA","Washington","TRUE","","23996","977.4","53033","King","{""53033"": ""100""}","King","53033","FALSE","FALSE","America/Los_Angeles"
-"98077","47.75293","-122.05826","Woodinville","WA","Washington","TRUE","","13452","299.7","53033","King","{""53033"": ""93.18"", ""53061"": ""6.82""}","King|Snohomish","53033|53061","FALSE","FALSE","America/Los_Angeles"
-"98087","47.863","-122.26643","Lynnwood","WA","Washington","TRUE","","41083","2849.3","53061","Snohomish","{""53061"": ""100""}","Snohomish","53061","FALSE","FALSE","America/Los_Angeles"
-"98092","47.28763","-122.12871","Auburn","WA","Washington","TRUE","","47824","415.2","53033","King","{""53033"": ""82.57"", ""53053"": ""17.43""}","King|Pierce","53033|53053","FALSE","FALSE","America/Los_Angeles"
-"98101","47.6113","-122.33465","Seattle","WA","Washington","TRUE","","13492","10033.1","53033","King","{""53033"": ""100""}","King","53033","FALSE","FALSE","America/Los_Angeles"
-"98102","47.63642","-122.32218","Seattle","WA","Washington","TRUE","","26023","7776.1","53033","King","{""53033"": ""100""}","King","53033","FALSE","FALSE","America/Los_Angeles"
-"98103","47.67332","-122.34254","Seattle","WA","Washington","TRUE","","53163","4416.9","53033","King","{""53033"": ""100""}","King","53033","FALSE","FALSE","America/Los_Angeles"
-"98104","47.60169","-122.32849","Seattle","WA","Washington","TRUE","","14522","7245.8","53033","King","{""53033"": ""100""}","King","53033","FALSE","FALSE","America/Los_Angeles"
-"98105","47.66068","-122.28403","Seattle","WA","Washington","TRUE","","50434","4717.7","53033","King","{""53033"": ""100""}","King","53033","FALSE","FALSE","America/Los_Angeles"
-"98106","47.54349","-122.35435","Seattle","WA","Washington","TRUE","","25940","1819.0","53033","King","{""53033"": ""100""}","King","53033","FALSE","FALSE","America/Los_Angeles"
-"98107","47.66762","-122.3781","Seattle","WA","Washington","TRUE","","27534","4838.8","53033","King","{""53033"": ""100""}","King","53033","FALSE","FALSE","America/Los_Angeles"
-"98108","47.54131","-122.31292","Seattle","WA","Washington","TRUE","","23639","1219.0","53033","King","{""53033"": ""100""}","King","53033","FALSE","FALSE","America/Los_Angeles"
-"98109","47.63159","-122.34417","Seattle","WA","Washington","TRUE","","30384","5883.2","53033","King","{""53033"": ""100""}","King","53033","FALSE","FALSE","America/Los_Angeles"
-"98110","47.64469","-122.54353","Bainbridge Island","WA","Washington","TRUE","","24486","342.4","53035","Kitsap","{""53035"": ""100""}","Kitsap","53035","FALSE","FALSE","America/Los_Angeles"
-"98112","47.63392","-122.28893","Seattle","WA","Washington","TRUE","","25474","3112.2","53033","King","{""53033"": ""100""}","King","53033","FALSE","FALSE","America/Los_Angeles"
-"98115","47.685","-122.28216","Seattle","WA","Washington","TRUE","","54109","3172.3","53033","King","{""53033"": ""100""}","King","53033","FALSE","FALSE","America/Los_Angeles"
-"98116","47.57397","-122.39507","Seattle","WA","Washington","TRUE","","27338","3568.7","53033","King","{""53033"": ""100""}","King","53033","FALSE","FALSE","America/Los_Angeles"
-"98117","47.6882","-122.38148","Seattle","WA","Washington","TRUE","","35645","3570.9","53033","King","{""53033"": ""100""}","King","53033","FALSE","FALSE","America/Los_Angeles"
-"98118","47.54245","-122.2688","Seattle","WA","Washington","TRUE","","49181","3037.8","53033","King","{""53033"": ""100""}","King","53033","FALSE","FALSE","America/Los_Angeles"
-"98119","47.63995","-122.37005","Seattle","WA","Washington","TRUE","","26322","4169.6","53033","King","{""53033"": ""100""}","King","53033","FALSE","FALSE","America/Los_Angeles"
-"98121","47.61541","-122.34669","Seattle","WA","Washington","TRUE","","19494","16952.0","53033","King","{""53033"": ""100""}","King","53033","FALSE","FALSE","America/Los_Angeles"
-"98122","47.61151","-122.29184","Seattle","WA","Washington","TRUE","","39305","6558.8","53033","King","{""53033"": ""100""}","King","53033","FALSE","FALSE","America/Los_Angeles"
-"98125","47.71641","-122.29812","Seattle","WA","Washington","TRUE","","42981","3075.3","53033","King","{""53033"": ""100""}","King","53033","FALSE","FALSE","America/Los_Angeles"
-"98126","47.54768","-122.37442","Seattle","WA","Washington","TRUE","","23646","2981.6","53033","King","{""53033"": ""100""}","King","53033","FALSE","FALSE","America/Los_Angeles"
-"98133","47.73988","-122.34425","Seattle","WA","Washington","TRUE","","48650","2649.4","53033","King","{""53033"": ""100""}","King","53033","FALSE","FALSE","America/Los_Angeles"
-"98134","47.57783","-122.33743","Seattle","WA","Washington","TRUE","","833","95.3","53033","King","{""53033"": ""100""}","King","53033","FALSE","FALSE","America/Los_Angeles"
-"98136","47.53676","-122.38986","Seattle","WA","Washington","TRUE","","16997","2854.7","53033","King","{""53033"": ""100""}","King","53033","FALSE","FALSE","America/Los_Angeles"
-"98144","47.58596","-122.29237","Seattle","WA","Washington","TRUE","","32439","3685.3","53033","King","{""53033"": ""100""}","King","53033","FALSE","FALSE","America/Los_Angeles"
-"98146","47.50009","-122.35751","Seattle","WA","Washington","TRUE","","27780","2302.4","53033","King","{""53033"": ""100""}","King","53033","FALSE","FALSE","America/Los_Angeles"
-"98148","47.44375","-122.32508","Seattle","WA","Washington","TRUE","","12149","1522.9","53033","King","{""53033"": ""100""}","King","53033","FALSE","FALSE","America/Los_Angeles"
-"98154","47.60641","-122.33372","Seattle","WA","Washington","TRUE","","0","0.0","53033","King","{""53033"": ""0""}","King","53033","FALSE","FALSE","America/Los_Angeles"
-"98155","47.75601","-122.30034","Seattle","WA","Washington","TRUE","","35041","1791.0","53033","King","{""53033"": ""100""}","King","53033","FALSE","FALSE","America/Los_Angeles"
-"98158","47.45015","-122.30798","Seattle","WA","Washington","TRUE","","0","0.0","53033","King","{""53033"": ""0""}","King","53033","FALSE","FALSE","America/Los_Angeles"
-"98164","47.60596","-122.33203","Seattle","WA","Washington","TRUE","","177","19312.6","53033","King","{""53033"": ""100""}","King","53033","FALSE","FALSE","America/Los_Angeles"
-"98166","47.45281","-122.3501","Seattle","WA","Washington","TRUE","","21452","1464.6","53033","King","{""53033"": ""100""}","King","53033","FALSE","FALSE","America/Los_Angeles"
-"98168","47.48887","-122.30122","Seattle","WA","Washington","TRUE","","33401","1450.2","53033","King","{""53033"": ""100""}","King","53033","FALSE","FALSE","America/Los_Angeles"
-"98174","47.60457","-122.33536","Seattle","WA","Washington","TRUE","","0","0.0","53033","King","{""53033"": ""0""}","King","53033","FALSE","FALSE","America/Los_Angeles"
-"98177","47.74226","-122.37079","Seattle","WA","Washington","TRUE","","20676","1409.1","53033","King","{""53033"": ""100""}","King","53033","FALSE","FALSE","America/Los_Angeles"
-"98178","47.49929","-122.24706","Seattle","WA","Washington","TRUE","","27335","2178.2","53033","King","{""53033"": ""100""}","King","53033","FALSE","FALSE","America/Los_Angeles"
-"98188","47.44822","-122.27317","Seattle","WA","Washington","TRUE","","25175","1290.8","53033","King","{""53033"": ""100""}","King","53033","FALSE","FALSE","America/Los_Angeles"
-"98195","47.64925","-122.30919","Seattle","WA","Washington","TRUE","","48","264.9","53033","King","{""53033"": ""0""}","King","53033","FALSE","FALSE","America/Los_Angeles"
-"98198","47.3946","-122.31122","Seattle","WA","Washington","TRUE","","37966","1901.3","53033","King","{""53033"": ""100""}","King","53033","FALSE","FALSE","America/Los_Angeles"
-"98199","47.65137","-122.40272","Seattle","WA","Washington","TRUE","","22720","2094.4","53033","King","{""53033"": ""100""}","King","53033","FALSE","FALSE","America/Los_Angeles"
-"98201","47.99339","-122.21327","Everett","WA","Washington","TRUE","","29792","1538.8","53061","Snohomish","{""53061"": ""100""}","Snohomish","53061","FALSE","FALSE","America/Los_Angeles"
-"98203","47.94354","-122.23329","Everett","WA","Washington","TRUE","","36065","1299.3","53061","Snohomish","{""53061"": ""100""}","Snohomish","53061","FALSE","FALSE","America/Los_Angeles"
-"98204","47.90132","-122.26088","Everett","WA","Washington","TRUE","","42364","2037.4","53061","Snohomish","{""53061"": ""100""}","Snohomish","53061","FALSE","FALSE","America/Los_Angeles"
-"98207","47.98799","-122.22302","Everett","WA","Washington","TRUE","","1684","2973.1","53061","Snohomish","{""53061"": ""100""}","Snohomish","53061","FALSE","FALSE","America/Los_Angeles"
-"98208","47.90187","-122.1865","Everett","WA","Washington","TRUE","","58162","1388.7","53061","Snohomish","{""53061"": ""100""}","Snohomish","53061","FALSE","FALSE","America/Los_Angeles"
-"98220","48.68497","-122.19692","Acme","WA","Washington","TRUE","","779","14.7","53073","Whatcom","{""53073"": ""100""}","Whatcom","53073","FALSE","FALSE","America/Los_Angeles"
-"98221","48.50321","-122.65492","Anacortes","WA","Washington","TRUE","","21699","157.9","53057","Skagit","{""53057"": ""99.53"", ""53055"": ""0.47""}","Skagit|San Juan","53057|53055","FALSE","FALSE","America/Los_Angeles"
-"98222","48.56085","-122.80263","Blakely Island","WA","Washington","TRUE","","84","4.9","53055","San Juan","{""53055"": ""100""}","San Juan","53055","FALSE","FALSE","America/Los_Angeles"
-"98223","48.21048","-121.95172","Arlington","WA","Washington","TRUE","","44110","53.3","53061","Snohomish","{""53061"": ""100""}","Snohomish","53061","FALSE","FALSE","America/Los_Angeles"
-"98224","47.66382","-121.51302","Baring","WA","Washington","TRUE","","214","0.4","53033","King","{""53033"": ""100""}","King","53033","FALSE","FALSE","America/Los_Angeles"
-"98225","48.75302","-122.50144","Bellingham","WA","Washington","TRUE","","51697","1580.4","53073","Whatcom","{""53073"": ""100""}","Whatcom","53073","FALSE","FALSE","America/Los_Angeles"
-"98226","48.80061","-122.42744","Bellingham","WA","Washington","TRUE","","43892","158.0","53073","Whatcom","{""53073"": ""100""}","Whatcom","53073","FALSE","FALSE","America/Los_Angeles"
-"98229","48.6955","-122.41046","Bellingham","WA","Washington","TRUE","","32801","258.1","53073","Whatcom","{""53073"": ""99.01"", ""53057"": ""0.99""}","Whatcom|Skagit","53073|53057","FALSE","FALSE","America/Los_Angeles"
-"98230","48.95408","-122.71066","Blaine","WA","Washington","TRUE","","17604","155.6","53073","Whatcom","{""53073"": ""100""}","Whatcom","53073","FALSE","FALSE","America/Los_Angeles"
-"98232","48.56535","-122.41566","Bow","WA","Washington","TRUE","","4395","31.7","53057","Skagit","{""53057"": ""100""}","Skagit","53057","FALSE","FALSE","America/Los_Angeles"
-"98233","48.50393","-122.35082","Burlington","WA","Washington","TRUE","","16379","186.7","53057","Skagit","{""53057"": ""100""}","Skagit","53057","FALSE","FALSE","America/Los_Angeles"
-"98235","48.46475","-122.23332","Clearlake","WA","Washington","TRUE","","73","919.3","53057","Skagit","{""53057"": ""100""}","Skagit","53057","FALSE","FALSE","America/Los_Angeles"
-"98236","47.95814","-122.40474","Clinton","WA","Washington","TRUE","","6002","101.2","53029","Island","{""53029"": ""100""}","Island","53029","FALSE","FALSE","America/Los_Angeles"
-"98237","48.59328","-121.68519","Concrete","WA","Washington","TRUE","","4410","5.3","53057","Skagit","{""53057"": ""99.98"", ""53073"": ""0.02""}","Skagit|Whatcom","53057|53073","FALSE","FALSE","America/Los_Angeles"
-"98238","48.33523","-122.34459","Conway","WA","Washington","TRUE","","0","0.0","53057","Skagit","{""53057"": ""100""}","Skagit","53057","FALSE","FALSE","America/Los_Angeles"
-"98239","48.1916","-122.66083","Coupeville","WA","Washington","TRUE","","7215","95.2","53029","Island","{""53029"": ""100""}","Island","53029","FALSE","FALSE","America/Los_Angeles"
-"98240","48.9473","-122.62133","Custer","WA","Washington","TRUE","","3145","58.7","53073","Whatcom","{""53073"": ""100""}","Whatcom","53073","FALSE","FALSE","America/Los_Angeles"
-"98241","48.2237","-121.32766","Darrington","WA","Washington","TRUE","","1920","1.8","53061","Snohomish","{""53061"": ""85.06"", ""53057"": ""14.94""}","Snohomish|Skagit","53061|53057","FALSE","FALSE","America/Los_Angeles"
-"98243","48.62096","-123.00505","Deer Harbor","WA","Washington","TRUE","","589","44.3","53055","San Juan","{""53055"": ""100""}","San Juan","53055","FALSE","FALSE","America/Los_Angeles"
-"98244","48.80005","-121.9544","Deming","WA","Washington","TRUE","","2725","2.2","53073","Whatcom","{""53073"": ""100""}","Whatcom","53073","FALSE","FALSE","America/Los_Angeles"
-"98245","48.66637","-122.91025","Eastsound","WA","Washington","TRUE","","3826","46.2","53055","San Juan","{""53055"": ""100""}","San Juan","53055","FALSE","FALSE","America/Los_Angeles"
-"98247","48.908","-122.32248","Everson","WA","Washington","TRUE","","9792","59.3","53073","Whatcom","{""53073"": ""100""}","Whatcom","53073","FALSE","FALSE","America/Los_Angeles"
-"98248","48.8659","-122.62","Ferndale","WA","Washington","TRUE","","25391","138.4","53073","Whatcom","{""53073"": ""100""}","Whatcom","53073","FALSE","FALSE","America/Los_Angeles"
-"98249","48.01818","-122.5391","Freeland","WA","Washington","TRUE","","4399","106.5","53029","Island","{""53029"": ""100""}","Island","53029","FALSE","FALSE","America/Los_Angeles"
-"98250","48.55815","-123.0915","Friday Harbor","WA","Washington","TRUE","","8107","50.4","53055","San Juan","{""53055"": ""100""}","San Juan","53055","FALSE","FALSE","America/Los_Angeles"
-"98251","47.90263","-121.54536","Gold Bar","WA","Washington","TRUE","","4108","10.4","53061","Snohomish","{""53061"": ""100""}","Snohomish","53061","FALSE","FALSE","America/Los_Angeles"
-"98252","48.07309","-121.68949","Granite Falls","WA","Washington","TRUE","","9697","14.0","53061","Snohomish","{""53061"": ""100""}","Snohomish","53061","FALSE","FALSE","America/Los_Angeles"
-"98253","48.08535","-122.57687","Greenbank","WA","Washington","TRUE","","1794","55.9","53029","Island","{""53029"": ""100""}","Island","53029","FALSE","FALSE","America/Los_Angeles"
-"98255","48.52207","-121.98931","Hamilton","WA","Washington","TRUE","","164","122.8","53057","Skagit","{""53057"": ""100""}","Skagit","53057","FALSE","FALSE","America/Los_Angeles"
-"98256","47.82999","-121.43037","Index","WA","Washington","TRUE","","348","1.6","53061","Snohomish","{""53061"": ""100""}","Snohomish","53061","FALSE","FALSE","America/Los_Angeles"
-"98257","48.41605","-122.5095","La Conner","WA","Washington","TRUE","","4207","88.5","53057","Skagit","{""53057"": ""100""}","Skagit","53057","FALSE","FALSE","America/Los_Angeles"
-"98258","48.0424","-122.06897","Lake Stevens","WA","Washington","TRUE","","33205","444.3","53061","Snohomish","{""53061"": ""100""}","Snohomish","53061","FALSE","FALSE","America/Los_Angeles"
-"98260","48.03069","-122.45086","Langley","WA","Washington","TRUE","","5685","83.0","53029","Island","{""53029"": ""100""}","Island","53029","FALSE","FALSE","America/Los_Angeles"
-"98261","48.48381","-122.88303","Lopez Island","WA","Washington","TRUE","","2796","36.2","53055","San Juan","{""53055"": ""100""}","San Juan","53055","FALSE","FALSE","America/Los_Angeles"
-"98262","48.69276","-122.6638","Lummi Island","WA","Washington","TRUE","","903","37.7","53073","Whatcom","{""53073"": ""100""}","Whatcom","53073","FALSE","FALSE","America/Los_Angeles"
-"98263","48.52196","-122.06694","Lyman","WA","Washington","TRUE","","83","197.1","53057","Skagit","{""53057"": ""100""}","Skagit","53057","FALSE","FALSE","America/Los_Angeles"
-"98264","48.95016","-122.46036","Lynden","WA","Washington","TRUE","","20890","141.5","53073","Whatcom","{""53073"": ""100""}","Whatcom","53073","FALSE","FALSE","America/Los_Angeles"
-"98266","48.9533","-122.12832","Maple Falls","WA","Washington","TRUE","","4167","67.2","53073","Whatcom","{""53073"": ""100""}","Whatcom","53073","FALSE","FALSE","America/Los_Angeles"
-"98267","48.44342","-121.31629","Marblemount","WA","Washington","TRUE","","334","0.4","53057","Skagit","{""53057"": ""100""}","Skagit","53057","FALSE","FALSE","America/Los_Angeles"
-"98270","48.0596","-122.14454","Marysville","WA","Washington","TRUE","","51293","1383.7","53061","Snohomish","{""53061"": ""100""}","Snohomish","53061","FALSE","FALSE","America/Los_Angeles"
-"98271","48.09415","-122.2345","Marysville","WA","Washington","TRUE","","29130","241.4","53061","Snohomish","{""53061"": ""100""}","Snohomish","53061","FALSE","FALSE","America/Los_Angeles"
-"98272","47.84931","-121.88521","Monroe","WA","Washington","TRUE","","30051","106.2","53061","Snohomish","{""53061"": ""100""}","Snohomish","53061","FALSE","FALSE","America/Los_Angeles"
-"98273","48.40393","-122.36933","Mount Vernon","WA","Washington","TRUE","","31085","142.7","53057","Skagit","{""53057"": ""100""}","Skagit","53057","FALSE","FALSE","America/Los_Angeles"
-"98274","48.35934","-122.14555","Mount Vernon","WA","Washington","TRUE","","17768","48.6","53057","Skagit","{""53057"": ""100""}","Skagit","53057","FALSE","FALSE","America/Los_Angeles"
-"98275","47.9133","-122.29926","Mukilteo","WA","Washington","TRUE","","21336","1092.2","53061","Snohomish","{""53061"": ""100""}","Snohomish","53061","FALSE","FALSE","America/Los_Angeles"
-"98276","48.92698","-122.32597","Nooksack","WA","Washington","TRUE","","727","1413.2","53073","Whatcom","{""53073"": ""100""}","Whatcom","53073","FALSE","FALSE","America/Los_Angeles"
-"98277","48.31624","-122.63163","Oak Harbor","WA","Washington","TRUE","","38553","263.5","53029","Island","{""53029"": ""100""}","Island","53029","FALSE","FALSE","America/Los_Angeles"
-"98278","48.34128","-122.66293","Oak Harbor","WA","Washington","TRUE","","2176","159.6","53029","Island","{""53029"": ""100""}","Island","53029","FALSE","FALSE","America/Los_Angeles"
-"98279","48.64471","-122.8083","Olga","WA","Washington","TRUE","","614","16.9","53055","San Juan","{""53055"": ""100""}","San Juan","53055","FALSE","FALSE","America/Los_Angeles"
-"98280","48.60694","-122.90963","Orcas","WA","Washington","TRUE","","438","23.7","53055","San Juan","{""53055"": ""100""}","San Juan","53055","FALSE","FALSE","America/Los_Angeles"
-"98281","48.98817","-123.05767","Point Roberts","WA","Washington","TRUE","","1116","88.2","53073","Whatcom","{""53073"": ""100""}","Whatcom","53073","FALSE","FALSE","America/Los_Angeles"
-"98282","48.18657","-122.47075","Camano Island","WA","Washington","TRUE","","17042","165.5","53029","Island","{""53029"": ""100""}","Island","53029","FALSE","FALSE","America/Los_Angeles"
-"98283","48.80273","-121.25818","Rockport","WA","Washington","TRUE","","342","0.2","53057","Skagit","{""53057"": ""81.8"", ""53073"": ""18.2""}","Skagit|Whatcom","53057|53073","FALSE","FALSE","America/Los_Angeles"
-"98284","48.55307","-122.12046","Sedro Woolley","WA","Washington","TRUE","","27106","37.1","53057","Skagit","{""53057"": ""91.29"", ""53073"": ""8.71""}","Skagit|Whatcom","53057|53073","FALSE","FALSE","America/Los_Angeles"
-"98286","48.57262","-122.95712","Shaw Island","WA","Washington","TRUE","","158","7.9","53055","San Juan","{""53055"": ""100""}","San Juan","53055","FALSE","FALSE","America/Los_Angeles"
-"98288","47.666","-121.27535","Skykomish","WA","Washington","TRUE","","231","0.4","53033","King","{""53033"": ""100""}","King","53033","FALSE","FALSE","America/Los_Angeles"
-"98290","47.95104","-121.98023","Snohomish","WA","Washington","TRUE","","36399","118.7","53061","Snohomish","{""53061"": ""100""}","Snohomish","53061","FALSE","FALSE","America/Los_Angeles"
-"98292","48.2234","-122.3073","Stanwood","WA","Washington","TRUE","","22246","115.2","53061","Snohomish","{""53061"": ""99.7"", ""53057"": ""0.3""}","Snohomish|Skagit","53061|53057","FALSE","FALSE","America/Los_Angeles"
-"98294","47.87617","-121.74479","Sultan","WA","Washington","TRUE","","7147","46.1","53061","Snohomish","{""53061"": ""100""}","Snohomish","53061","FALSE","FALSE","America/Los_Angeles"
-"98295","48.97181","-122.22851","Sumas","WA","Washington","TRUE","","2540","34.0","53073","Whatcom","{""53073"": ""100""}","Whatcom","53073","FALSE","FALSE","America/Los_Angeles"
-"98296","47.84067","-122.10169","Snohomish","WA","Washington","TRUE","","30702","348.2","53061","Snohomish","{""53061"": ""100""}","Snohomish","53061","FALSE","FALSE","America/Los_Angeles"
-"98297","48.7005","-123.02834","Waldron","WA","Washington","TRUE","","48","4.1","53055","San Juan","{""53055"": ""100""}","San Juan","53055","FALSE","FALSE","America/Los_Angeles"
-"98303","47.15783","-122.70387","Anderson Island","WA","Washington","TRUE","","1181","57.5","53053","Pierce","{""53053"": ""100""}","Pierce","53053","FALSE","FALSE","America/Los_Angeles"
-"98304","46.86803","-121.75183","Ashford","WA","Washington","TRUE","","1070","1.2","53053","Pierce","{""53053"": ""75.63"", ""53041"": ""24.37""}","Pierce|Lewis","53053|53041","FALSE","FALSE","America/Los_Angeles"
-"98305","48.06029","-124.43012","Beaver","WA","Washington","TRUE","","343","1.1","53009","Clallam","{""53009"": ""100""}","Clallam","53009","FALSE","FALSE","America/Los_Angeles"
-"98310","47.59269","-122.623","Bremerton","WA","Washington","TRUE","","20575","1332.8","53035","Kitsap","{""53035"": ""100""}","Kitsap","53035","FALSE","FALSE","America/Los_Angeles"
-"98311","47.63019","-122.63698","Bremerton","WA","Washington","TRUE","","27946","994.1","53035","Kitsap","{""53035"": ""100""}","Kitsap","53035","FALSE","FALSE","America/Los_Angeles"
-"98312","47.57326","-122.76008","Bremerton","WA","Washington","TRUE","","31086","195.1","53035","Kitsap","{""53035"": ""100""}","Kitsap","53035","FALSE","FALSE","America/Los_Angeles"
-"98314","47.55595","-122.6387","Bremerton","WA","Washington","TRUE","","2975","1951.0","53035","Kitsap","{""53035"": ""100""}","Kitsap","53035","FALSE","FALSE","America/Los_Angeles"
-"98315","47.72288","-122.71457","Silverdale","WA","Washington","TRUE","","6506","226.1","53035","Kitsap","{""53035"": ""100""}","Kitsap","53035","FALSE","FALSE","America/Los_Angeles"
-"98320","47.72075","-122.99145","Brinnon","WA","Washington","TRUE","","1273","5.0","53031","Jefferson","{""53031"": ""100""}","Jefferson","53031","FALSE","FALSE","America/Los_Angeles"
-"98321","47.15287","-122.06432","Buckley","WA","Washington","TRUE","","15801","169.8","53053","Pierce","{""53053"": ""100""}","Pierce","53053","FALSE","FALSE","America/Los_Angeles"
-"98323","47.04063","-121.88815","Carbonado","WA","Washington","TRUE","","770","1.2","53053","Pierce","{""53053"": ""100""}","Pierce","53053","FALSE","FALSE","America/Los_Angeles"
-"98325","47.96585","-122.77839","Chimacum","WA","Washington","TRUE","","1472","18.9","53031","Jefferson","{""53031"": ""100""}","Jefferson","53031","FALSE","FALSE","America/Los_Angeles"
-"98326","48.16779","-124.38897","Clallam Bay","WA","Washington","TRUE","","807","1.1","53009","Clallam","{""53009"": ""100""}","Clallam","53009","FALSE","FALSE","America/Los_Angeles"
-"98327","47.10126","-122.66074","Dupont","WA","Washington","TRUE","","9435","532.2","53053","Pierce","{""53053"": ""100""}","Pierce","53053","FALSE","FALSE","America/Los_Angeles"
-"98328","46.86578","-122.17373","Eatonville","WA","Washington","TRUE","","10767","19.6","53053","Pierce","{""53053"": ""100""}","Pierce","53053","FALSE","FALSE","America/Los_Angeles"
-"98329","47.37783","-122.72546","Gig Harbor","WA","Washington","TRUE","","11493","172.4","53053","Pierce","{""53053"": ""98.64"", ""53035"": ""1.36""}","Pierce|Kitsap","53053|53035","FALSE","FALSE","America/Los_Angeles"
-"98330","46.77244","-122.16879","Elbe","WA","Washington","TRUE","","102","6.0","53053","Pierce","{""53053"": ""100""}","Pierce","53053","FALSE","FALSE","America/Los_Angeles"
-"98331","47.78437","-124.1851","Forks","WA","Washington","TRUE","","6482","3.2","53009","Clallam","{""53009"": ""85.93"", ""53031"": ""14.07""}","Clallam|Jefferson","53009|53031","FALSE","FALSE","America/Los_Angeles"
-"98332","47.365","-122.59887","Gig Harbor","WA","Washington","TRUE","","18655","346.2","53053","Pierce","{""53053"": ""100""}","Pierce","53053","FALSE","FALSE","America/Los_Angeles"
-"98333","47.24771","-122.62561","Fox Island","WA","Washington","TRUE","","3918","291.3","53053","Pierce","{""53053"": ""100""}","Pierce","53053","FALSE","FALSE","America/Los_Angeles"
-"98335","47.29895","-122.61892","Gig Harbor","WA","Washington","TRUE","","25631","449.0","53053","Pierce","{""53053"": ""100""}","Pierce","53053","FALSE","FALSE","America/Los_Angeles"
-"98336","46.56449","-122.11248","Glenoma","WA","Washington","TRUE","","727","4.1","53041","Lewis","{""53041"": ""100""}","Lewis","53041","FALSE","FALSE","America/Los_Angeles"
-"98337","47.56861","-122.63088","Bremerton","WA","Washington","TRUE","","7168","2673.3","53035","Kitsap","{""53035"": ""100""}","Kitsap","53035","FALSE","FALSE","America/Los_Angeles"
-"98338","47.02047","-122.28328","Graham","WA","Washington","TRUE","","28783","206.5","53053","Pierce","{""53053"": ""100""}","Pierce","53053","FALSE","FALSE","America/Los_Angeles"
-"98339","48.01877","-122.74952","Port Hadlock","WA","Washington","TRUE","","3072","206.2","53031","Jefferson","{""53031"": ""100""}","Jefferson","53031","FALSE","FALSE","America/Los_Angeles"
-"98340","47.9023","-122.56348","Hansville","WA","Washington","TRUE","","2879","127.9","53035","Kitsap","{""53035"": ""100""}","Kitsap","53035","FALSE","FALSE","America/Los_Angeles"
-"98342","47.75387","-122.51789","Indianola","WA","Washington","TRUE","","1323","212.9","53035","Kitsap","{""53035"": ""100""}","Kitsap","53035","FALSE","FALSE","America/Los_Angeles"
-"98345","47.69921","-122.62354","Keyport","WA","Washington","TRUE","","430","328.8","53035","Kitsap","{""53035"": ""100""}","Kitsap","53035","FALSE","FALSE","America/Los_Angeles"
-"98346","47.8185","-122.53234","Kingston","WA","Washington","TRUE","","9964","139.6","53035","Kitsap","{""53035"": ""100""}","Kitsap","53035","FALSE","FALSE","America/Los_Angeles"
-"98349","47.26622","-122.77272","Lakebay","WA","Washington","TRUE","","4588","83.2","53053","Pierce","{""53053"": ""100""}","Pierce","53053","FALSE","FALSE","America/Los_Angeles"
-"98350","47.90532","-124.61399","La Push","WA","Washington","TRUE","","406","49.5","53009","Clallam","{""53009"": ""100""}","Clallam","53009","FALSE","FALSE","America/Los_Angeles"
-"98351","47.20301","-122.7687","Longbranch","WA","Washington","TRUE","","1335","60.3","53053","Pierce","{""53053"": ""100""}","Pierce","53053","FALSE","FALSE","America/Los_Angeles"
-"98353","47.53885","-122.49294","Manchester","WA","Washington","TRUE","","18","8.7","53035","Kitsap","{""53035"": ""100""}","Kitsap","53035","FALSE","FALSE","America/Los_Angeles"
-"98354","47.25027","-122.31469","Milton","WA","Washington","TRUE","","7221","1162.2","53053","Pierce","{""53053"": ""88.16"", ""53033"": ""11.84""}","Pierce|King","53053|53033","FALSE","FALSE","America/Los_Angeles"
-"98355","46.68689","-122.05559","Mineral","WA","Washington","TRUE","","842","1.7","53041","Lewis","{""53041"": ""100""}","Lewis","53041","FALSE","FALSE","America/Los_Angeles"
-"98356","46.56342","-122.29219","Morton","WA","Washington","TRUE","","2010","7.8","53041","Lewis","{""53041"": ""100""}","Lewis","53041","FALSE","FALSE","America/Los_Angeles"
-"98357","48.33199","-124.62847","Neah Bay","WA","Washington","TRUE","","1560","14.2","53009","Clallam","{""53009"": ""100""}","Clallam","53009","FALSE","FALSE","America/Los_Angeles"
-"98358","48.0557","-122.70761","Nordland","WA","Washington","TRUE","","831","30.0","53031","Jefferson","{""53031"": ""100""}","Jefferson","53031","FALSE","FALSE","America/Los_Angeles"
-"98359","47.43045","-122.57661","Olalla","WA","Washington","TRUE","","5044","139.3","53035","Kitsap","{""53035"": ""100""}","Kitsap","53035","FALSE","FALSE","America/Los_Angeles"
-"98360","47.03026","-122.15928","Orting","WA","Washington","TRUE","","13726","76.3","53053","Pierce","{""53053"": ""100""}","Pierce","53053","FALSE","FALSE","America/Los_Angeles"
-"98361","46.5888","-121.59131","Packwood","WA","Washington","TRUE","","796","0.7","53041","Lewis","{""53041"": ""100""}","Lewis","53041","FALSE","FALSE","America/Los_Angeles"
-"98362","47.98419","-123.3616","Port Angeles","WA","Washington","TRUE","","24027","42.4","53009","Clallam","{""53009"": ""100""}","Clallam","53009","FALSE","FALSE","America/Los_Angeles"
-"98363","48.01057","-123.87548","Port Angeles","WA","Washington","TRUE","","14197","8.7","53009","Clallam","{""53009"": ""100""}","Clallam","53009","FALSE","FALSE","America/Los_Angeles"
-"98364","47.84697","-122.58839","Port Gamble","WA","Washington","TRUE","","88","112.2","53035","Kitsap","{""53035"": ""100""}","Kitsap","53035","FALSE","FALSE","America/Los_Angeles"
-"98365","47.89513","-122.70283","Port Ludlow","WA","Washington","TRUE","","5029","52.3","53031","Jefferson","{""53031"": ""100""}","Jefferson","53031","FALSE","FALSE","America/Los_Angeles"
-"98366","47.53716","-122.58649","Port Orchard","WA","Washington","TRUE","","34908","581.8","53035","Kitsap","{""53035"": ""100""}","Kitsap","53035","FALSE","FALSE","America/Los_Angeles"
-"98367","47.46508","-122.68313","Port Orchard","WA","Washington","TRUE","","29826","142.9","53035","Kitsap","{""53035"": ""100""}","Kitsap","53035","FALSE","FALSE","America/Los_Angeles"
-"98368","48.04272","-122.84534","Port Townsend","WA","Washington","TRUE","","15868","115.4","53031","Jefferson","{""53031"": ""100""}","Jefferson","53031","FALSE","FALSE","America/Los_Angeles"
-"98370","47.75101","-122.6229","Poulsbo","WA","Washington","TRUE","","31278","213.4","53035","Kitsap","{""53035"": ""100""}","Kitsap","53035","FALSE","FALSE","America/Los_Angeles"
-"98371","47.19956","-122.32219","Puyallup","WA","Washington","TRUE","","21866","732.6","53053","Pierce","{""53053"": ""100""}","Pierce","53053","FALSE","FALSE","America/Los_Angeles"
-"98372","47.20602","-122.26691","Puyallup","WA","Washington","TRUE","","26422","748.1","53053","Pierce","{""53053"": ""100""}","Pierce","53053","FALSE","FALSE","America/Los_Angeles"
-"98373","47.1476","-122.32519","Puyallup","WA","Washington","TRUE","","26344","1081.0","53053","Pierce","{""53053"": ""100""}","Pierce","53053","FALSE","FALSE","America/Los_Angeles"
-"98374","47.12994","-122.26196","Puyallup","WA","Washington","TRUE","","41613","1013.1","53053","Pierce","{""53053"": ""100""}","Pierce","53053","FALSE","FALSE","America/Los_Angeles"
-"98375","47.10367","-122.32346","Puyallup","WA","Washington","TRUE","","31955","1269.6","53053","Pierce","{""53053"": ""100""}","Pierce","53053","FALSE","FALSE","America/Los_Angeles"
-"98376","47.8512","-122.86207","Quilcene","WA","Washington","TRUE","","2053","6.8","53031","Jefferson","{""53031"": ""100""}","Jefferson","53031","FALSE","FALSE","America/Los_Angeles"
-"98377","46.52518","-121.89481","Randle","WA","Washington","TRUE","","1785","3.2","53041","Lewis","{""53041"": ""100""}","Lewis","53041","FALSE","FALSE","America/Los_Angeles"
-"98380","47.57555","-122.90221","Seabeck","WA","Washington","TRUE","","4049","37.3","53035","Kitsap","{""53035"": ""100""}","Kitsap","53035","FALSE","FALSE","America/Los_Angeles"
-"98381","48.27373","-124.47476","Sekiu","WA","Washington","TRUE","","315","1.8","53009","Clallam","{""53009"": ""100""}","Clallam","53009","FALSE","FALSE","America/Los_Angeles"
-"98382","48.02747","-123.07863","Sequim","WA","Washington","TRUE","","28942","65.1","53009","Clallam","{""53009"": ""98.44"", ""53031"": ""1.56""}","Clallam|Jefferson","53009|53031","FALSE","FALSE","America/Los_Angeles"
-"98383","47.66207","-122.71793","Silverdale","WA","Washington","TRUE","","21941","471.4","53035","Kitsap","{""53035"": ""100""}","Kitsap","53035","FALSE","FALSE","America/Los_Angeles"
-"98385","47.13755","-122.09186","South Prairie","WA","Washington","TRUE","","400","328.8","53053","Pierce","{""53053"": ""100""}","Pierce","53053","FALSE","FALSE","America/Los_Angeles"
-"98387","47.05699","-122.39543","Spanaway","WA","Washington","TRUE","","49386","672.5","53053","Pierce","{""53053"": ""100""}","Pierce","53053","FALSE","FALSE","America/Los_Angeles"
-"98388","47.19891","-122.66275","Steilacoom","WA","Washington","TRUE","","6627","289.4","53053","Pierce","{""53053"": ""100""}","Pierce","53053","FALSE","FALSE","America/Los_Angeles"
-"98390","47.20999","-122.22801","Sumner","WA","Washington","TRUE","","10935","435.5","53053","Pierce","{""53053"": ""100""}","Pierce","53053","FALSE","FALSE","America/Los_Angeles"
-"98391","47.17717","-122.17228","Bonney Lake","WA","Washington","TRUE","","52070","521.6","53053","Pierce","{""53053"": ""100""}","Pierce","53053","FALSE","FALSE","America/Los_Angeles"
-"98392","47.73296","-122.5629","Suquamish","WA","Washington","TRUE","","3181","747.5","53035","Kitsap","{""53035"": ""100""}","Kitsap","53035","FALSE","FALSE","America/Los_Angeles"
-"98394","47.3191","-122.77665","Vaughn","WA","Washington","TRUE","","1467","101.4","53053","Pierce","{""53053"": ""100""}","Pierce","53053","FALSE","FALSE","America/Los_Angeles"
-"98396","47.09851","-122.00986","Wilkeson","WA","Washington","TRUE","","761","21.4","53053","Pierce","{""53053"": ""100""}","Pierce","53053","FALSE","FALSE","America/Los_Angeles"
-"98402","47.24859","-122.4387","Tacoma","WA","Washington","TRUE","","6208","2545.6","53053","Pierce","{""53053"": ""100""}","Pierce","53053","FALSE","FALSE","America/Los_Angeles"
-"98403","47.26595","-122.4585","Tacoma","WA","Washington","TRUE","","8130","2860.3","53053","Pierce","{""53053"": ""100""}","Pierce","53053","FALSE","FALSE","America/Los_Angeles"
-"98404","47.20975","-122.41008","Tacoma","WA","Washington","TRUE","","36243","1840.0","53053","Pierce","{""53053"": ""100""}","Pierce","53053","FALSE","FALSE","America/Los_Angeles"
-"98405","47.2458","-122.47201","Tacoma","WA","Washington","TRUE","","23626","2208.6","53053","Pierce","{""53053"": ""100""}","Pierce","53053","FALSE","FALSE","America/Los_Angeles"
-"98406","47.26211","-122.50898","Tacoma","WA","Washington","TRUE","","23354","2112.5","53053","Pierce","{""53053"": ""100""}","Pierce","53053","FALSE","FALSE","America/Los_Angeles"
-"98407","47.28861","-122.51131","Tacoma","WA","Washington","TRUE","","21439","1475.5","53053","Pierce","{""53053"": ""100""}","Pierce","53053","FALSE","FALSE","America/Los_Angeles"
-"98408","47.19802","-122.44647","Tacoma","WA","Washington","TRUE","","21101","2400.5","53053","Pierce","{""53053"": ""100""}","Pierce","53053","FALSE","FALSE","America/Los_Angeles"
-"98409","47.21115","-122.48203","Tacoma","WA","Washington","TRUE","","25903","1407.5","53053","Pierce","{""53053"": ""100""}","Pierce","53053","FALSE","FALSE","America/Los_Angeles"
-"98416","47.26258","-122.48128","Tacoma","WA","Washington","TRUE","","962","3565.5","53053","Pierce","{""53053"": ""100""}","Pierce","53053","FALSE","FALSE","America/Los_Angeles"
-"98418","47.22323","-122.44647","Tacoma","WA","Washington","TRUE","","9333","2140.8","53053","Pierce","{""53053"": ""100""}","Pierce","53053","FALSE","FALSE","America/Los_Angeles"
-"98421","47.25917","-122.39953","Tacoma","WA","Washington","TRUE","","1557","89.6","53053","Pierce","{""53053"": ""100""}","Pierce","53053","FALSE","FALSE","America/Los_Angeles"
-"98422","47.28962","-122.39171","Tacoma","WA","Washington","TRUE","","21490","1244.8","53053","Pierce","{""53053"": ""100""}","Pierce","53053","FALSE","FALSE","America/Los_Angeles"
-"98424","47.23435","-122.35193","Fife","WA","Washington","TRUE","","11542","706.8","53053","Pierce","{""53053"": ""100""}","Pierce","53053","FALSE","FALSE","America/Los_Angeles"
-"98430","47.11732","-122.56915","Camp Murray","WA","Washington","TRUE","","0","0.0","53053","Pierce","{""53053"": ""100""}","Pierce","53053","FALSE","FALSE","America/Los_Angeles"
-"98433","47.1113","-122.58723","Tacoma","WA","Washington","TRUE","","19698","386.5","53053","Pierce","{""53053"": ""100""}","Pierce","53053","FALSE","FALSE","America/Los_Angeles"
-"98438","47.13163","-122.49706","Mcchord Afb","WA","Washington","TRUE","","584","267.0","53053","Pierce","{""53053"": ""100""}","Pierce","53053","FALSE","FALSE","America/Los_Angeles"
-"98439","47.12388","-122.50169","Lakewood","WA","Washington","TRUE","","5488","242.7","53053","Pierce","{""53053"": ""100""}","Pierce","53053","FALSE","FALSE","America/Los_Angeles"
-"98443","47.20462","-122.37412","Tacoma","WA","Washington","TRUE","","5571","420.9","53053","Pierce","{""53053"": ""100""}","Pierce","53053","FALSE","FALSE","America/Los_Angeles"
-"98444","47.15285","-122.44899","Tacoma","WA","Washington","TRUE","","34456","1978.0","53053","Pierce","{""53053"": ""100""}","Pierce","53053","FALSE","FALSE","America/Los_Angeles"
-"98445","47.13981","-122.40989","Tacoma","WA","Washington","TRUE","","32066","1186.5","53053","Pierce","{""53053"": ""100""}","Pierce","53053","FALSE","FALSE","America/Los_Angeles"
-"98446","47.1297","-122.37423","Tacoma","WA","Washington","TRUE","","11394","400.3","53053","Pierce","{""53053"": ""100""}","Pierce","53053","FALSE","FALSE","America/Los_Angeles"
-"98447","47.14429","-122.44348","Tacoma","WA","Washington","TRUE","","732","4888.1","53053","Pierce","{""53053"": ""100""}","Pierce","53053","FALSE","FALSE","America/Los_Angeles"
-"98465","47.24823","-122.52906","Tacoma","WA","Washington","TRUE","","6973","1619.5","53053","Pierce","{""53053"": ""100""}","Pierce","53053","FALSE","FALSE","America/Los_Angeles"
-"98466","47.22778","-122.53573","Tacoma","WA","Washington","TRUE","","29164","1900.3","53053","Pierce","{""53053"": ""100""}","Pierce","53053","FALSE","FALSE","America/Los_Angeles"
-"98467","47.20405","-122.54641","University Place","WA","Washington","TRUE","","15460","1310.4","53053","Pierce","{""53053"": ""100""}","Pierce","53053","FALSE","FALSE","America/Los_Angeles"
-"98498","47.16231","-122.55452","Lakewood","WA","Washington","TRUE","","28754","1319.9","53053","Pierce","{""53053"": ""100""}","Pierce","53053","FALSE","FALSE","America/Los_Angeles"
-"98499","47.16671","-122.507","Lakewood","WA","Washington","TRUE","","31522","1317.6","53053","Pierce","{""53053"": ""100""}","Pierce","53053","FALSE","FALSE","America/Los_Angeles"
-"98501","46.97906","-122.87092","Olympia","WA","Washington","TRUE","","42874","480.6","53067","Thurston","{""53067"": ""100""}","Thurston","53067","FALSE","FALSE","America/Los_Angeles"
-"98502","47.09052","-123.01239","Olympia","WA","Washington","TRUE","","35018","248.7","53067","Thurston","{""53067"": ""100""}","Thurston","53067","FALSE","FALSE","America/Los_Angeles"
-"98503","47.02578","-122.79819","Lacey","WA","Washington","TRUE","","40452","1383.1","53067","Thurston","{""53067"": ""100""}","Thurston","53067","FALSE","FALSE","America/Los_Angeles"
-"98506","47.10283","-122.87324","Olympia","WA","Washington","TRUE","","17060","294.3","53067","Thurston","{""53067"": ""100""}","Thurston","53067","FALSE","FALSE","America/Los_Angeles"
-"98512","46.95651","-123.04842","Olympia","WA","Washington","TRUE","","30383","77.9","53067","Thurston","{""53067"": ""100""}","Thurston","53067","FALSE","FALSE","America/Los_Angeles"
-"98513","46.98328","-122.73472","Olympia","WA","Washington","TRUE","","35757","233.6","53067","Thurston","{""53067"": ""100""}","Thurston","53067","FALSE","FALSE","America/Los_Angeles"
-"98516","47.09657","-122.7836","Olympia","WA","Washington","TRUE","","25766","347.3","53067","Thurston","{""53067"": ""100""}","Thurston","53067","FALSE","FALSE","America/Los_Angeles"
-"98520","47.04349","-123.80637","Aberdeen","WA","Washington","TRUE","","24286","39.3","53027","Grays Harbor","{""53027"": ""100""}","Grays Harbor","53027","FALSE","FALSE","America/Los_Angeles"
-"98524","47.35771","-122.86367","Allyn","WA","Washington","TRUE","","4481","121.0","53045","Mason","{""53045"": ""100""}","Mason","53045","FALSE","FALSE","America/Los_Angeles"
-"98526","47.46144","-123.97576","Amanda Park","WA","Washington","TRUE","","208","0.9","53027","Grays Harbor","{""53027"": ""100""}","Grays Harbor","53027","FALSE","FALSE","America/Los_Angeles"
-"98527","46.58626","-123.89747","Bay Center","WA","Washington","TRUE","","285","11.0","53049","Pacific","{""53049"": ""100""}","Pacific","53049","FALSE","FALSE","America/Los_Angeles"
-"98528","47.44215","-122.89179","Belfair","WA","Washington","TRUE","","11477","60.7","53045","Mason","{""53045"": ""99.68"", ""53035"": ""0.32""}","Mason|Kitsap","53045|53035","FALSE","FALSE","America/Los_Angeles"
-"98530","46.78803","-122.82345","Bucoda","WA","Washington","TRUE","","668","51.7","53067","Thurston","{""53067"": ""100""}","Thurston","53067","FALSE","FALSE","America/Los_Angeles"
-"98531","46.73496","-122.92102","Centralia","WA","Washington","TRUE","","26031","73.5","53041","Lewis","{""53041"": ""91.79"", ""53067"": ""8.21""}","Lewis|Thurston","53041|53067","FALSE","FALSE","America/Los_Angeles"
-"98532","46.63122","-123.04085","Chehalis","WA","Washington","TRUE","","24084","28.8","53041","Lewis","{""53041"": ""100""}","Lewis","53041","FALSE","FALSE","America/Los_Angeles"
-"98533","46.67121","-122.43414","Cinebar","WA","Washington","TRUE","","369","1.2","53041","Lewis","{""53041"": ""100""}","Lewis","53041","FALSE","FALSE","America/Los_Angeles"
-"98535","47.1066","-124.1339","Copalis Beach","WA","Washington","TRUE","","757","28.6","53027","Grays Harbor","{""53027"": ""100""}","Grays Harbor","53027","FALSE","FALSE","America/Los_Angeles"
-"98536","47.20063","-124.09948","Copalis Crossing","WA","Washington","TRUE","","76","0.5","53027","Grays Harbor","{""53027"": ""100""}","Grays Harbor","53027","FALSE","FALSE","America/Los_Angeles"
-"98537","46.83011","-123.60261","Cosmopolis","WA","Washington","TRUE","","2150","4.3","53027","Grays Harbor","{""53027"": ""96.15"", ""53049"": ""3.85""}","Grays Harbor|Pacific","53027|53049","FALSE","FALSE","America/Los_Angeles"
-"98538","46.47758","-123.15272","Curtis","WA","Washington","TRUE","","373","1.4","53041","Lewis","{""53041"": ""100""}","Lewis","53041","FALSE","FALSE","America/Los_Angeles"
-"98541","47.06045","-123.39138","Elma","WA","Washington","TRUE","","10422","19.0","53027","Grays Harbor","{""53027"": ""86.28"", ""53045"": ""13.72""}","Grays Harbor|Mason","53027|53045","FALSE","FALSE","America/Los_Angeles"
-"98542","46.52462","-122.71866","Ethel","WA","Washington","TRUE","","615","17.5","53041","Lewis","{""53041"": ""100""}","Lewis","53041","FALSE","FALSE","America/Los_Angeles"
-"98544","46.7389","-123.02662","Galvin","WA","Washington","TRUE","","63","242.1","53041","Lewis","{""53041"": ""100""}","Lewis","53041","FALSE","FALSE","America/Los_Angeles"
-"98546","47.31681","-122.93542","Grapeview","WA","Washington","TRUE","","3272","47.7","53045","Mason","{""53045"": ""100""}","Mason","53045","FALSE","FALSE","America/Los_Angeles"
-"98547","46.78634","-124.01991","Grayland","WA","Washington","TRUE","","1486","9.4","53027","Grays Harbor","{""53027"": ""61"", ""53049"": ""39""}","Grays Harbor|Pacific","53027|53049","FALSE","FALSE","America/Los_Angeles"
-"98548","47.43003","-123.33218","Hoodsport","WA","Washington","TRUE","","2158","6.1","53045","Mason","{""53045"": ""100""}","Mason","53045","FALSE","FALSE","America/Los_Angeles"
-"98550","47.10384","-123.9367","Hoquiam","WA","Washington","TRUE","","11324","20.4","53027","Grays Harbor","{""53027"": ""100""}","Grays Harbor","53027","FALSE","FALSE","America/Los_Angeles"
-"98552","47.30465","-123.91924","Humptulips","WA","Washington","TRUE","","480","2.0","53027","Grays Harbor","{""53027"": ""100""}","Grays Harbor","53027","FALSE","FALSE","America/Los_Angeles"
-"98555","47.53579","-123.06229","Lilliwaup","WA","Washington","TRUE","","319","6.0","53045","Mason","{""53045"": ""100""}","Mason","53045","FALSE","FALSE","America/Los_Angeles"
-"98557","47.04402","-123.26797","Mccleary","WA","Washington","TRUE","","3304","35.4","53027","Grays Harbor","{""53027"": ""98.02"", ""53045"": ""1.98""}","Grays Harbor|Mason","53027|53045","FALSE","FALSE","America/Los_Angeles"
-"98558","46.93397","-122.55659","Mckenna","WA","Washington","TRUE","","337","1029.5","53053","Pierce","{""53053"": ""100""}","Pierce","53053","FALSE","FALSE","America/Los_Angeles"
-"98559","46.95859","-123.32725","Malone","WA","Washington","TRUE","","0","0.0","53027","Grays Harbor","{""53027"": ""100""}","Grays Harbor","53027","FALSE","FALSE","America/Los_Angeles"
-"98560","47.30752","-123.41887","Matlock","WA","Washington","TRUE","","115","0.8","53045","Mason","{""53045"": ""100""}","Mason","53045","FALSE","FALSE","America/Los_Angeles"
-"98562","47.23855","-124.20362","Moclips","WA","Washington","TRUE","","47","18.5","53027","Grays Harbor","{""53027"": ""100""}","Grays Harbor","53027","FALSE","FALSE","America/Los_Angeles"
-"98563","47.20859","-123.60306","Montesano","WA","Washington","TRUE","","7893","8.3","53027","Grays Harbor","{""53027"": ""100""}","Grays Harbor","53027","FALSE","FALSE","America/Los_Angeles"
-"98564","46.45637","-122.43293","Mossyrock","WA","Washington","TRUE","","2198","6.1","53041","Lewis","{""53041"": ""100""}","Lewis","53041","FALSE","FALSE","America/Los_Angeles"
-"98565","46.57832","-122.90197","Napavine","WA","Washington","TRUE","","934","580.6","53041","Lewis","{""53041"": ""100""}","Lewis","53041","FALSE","FALSE","America/Los_Angeles"
-"98568","46.85486","-123.31387","Oakville","WA","Washington","TRUE","","2461","6.3","53027","Grays Harbor","{""53027"": ""98.17"", ""53041"": ""1.83""}","Grays Harbor|Lewis","53027|53041","FALSE","FALSE","America/Los_Angeles"
-"98569","47.00632","-124.15122","Ocean Shores","WA","Washington","TRUE","","6309","166.3","53027","Grays Harbor","{""53027"": ""100""}","Grays Harbor","53027","FALSE","FALSE","America/Los_Angeles"
-"98570","46.63827","-122.63651","Onalaska","WA","Washington","TRUE","","4175","13.6","53041","Lewis","{""53041"": ""100""}","Lewis","53041","FALSE","FALSE","America/Los_Angeles"
-"98571","47.19446","-124.17242","Pacific Beach","WA","Washington","TRUE","","278","12.3","53027","Grays Harbor","{""53027"": ""100""}","Grays Harbor","53027","FALSE","FALSE","America/Los_Angeles"
-"98572","46.5512","-123.32437","Pe Ell","WA","Washington","TRUE","","720","8.0","53041","Lewis","{""53041"": ""100""}","Lewis","53041","FALSE","FALSE","America/Los_Angeles"
-"98575","47.41778","-123.79553","Quinault","WA","Washington","TRUE","","139","0.5","53027","Grays Harbor","{""53027"": ""100""}","Grays Harbor","53027","FALSE","FALSE","America/Los_Angeles"
-"98576","46.83741","-122.63546","Rainier","WA","Washington","TRUE","","5068","27.7","53067","Thurston","{""53067"": ""100""}","Thurston","53067","FALSE","FALSE","America/Los_Angeles"
-"98577","46.64218","-123.60769","Raymond","WA","Washington","TRUE","","7325","7.4","53049","Pacific","{""53049"": ""100""}","Pacific","53049","FALSE","FALSE","America/Los_Angeles"
-"98579","46.79802","-123.11937","Rochester","WA","Washington","TRUE","","13589","57.9","53067","Thurston","{""53067"": ""96.89"", ""53041"": ""3.11""}","Thurston|Lewis","53067|53041","FALSE","FALSE","America/Los_Angeles"
-"98580","46.99631","-122.51612","Roy","WA","Washington","TRUE","","11437","31.4","53053","Pierce","{""53053"": ""100""}","Pierce","53053","FALSE","FALSE","America/Los_Angeles"
-"98581","46.35777","-123.06723","Ryderwood","WA","Washington","TRUE","","525","6.9","53015","Cowlitz","{""53015"": ""100""}","Cowlitz","53015","FALSE","FALSE","America/Los_Angeles"
-"98582","46.5215","-122.62382","Salkum","WA","Washington","TRUE","","172","9.4","53041","Lewis","{""53041"": ""100""}","Lewis","53041","FALSE","FALSE","America/Los_Angeles"
-"98583","47.00116","-123.48746","Satsop","WA","Washington","TRUE","","149","525.3","53027","Grays Harbor","{""53027"": ""100""}","Grays Harbor","53027","FALSE","FALSE","America/Los_Angeles"
-"98584","47.24236","-123.15513","Shelton","WA","Washington","TRUE","","37278","42.2","53045","Mason","{""53045"": ""100""}","Mason","53045","FALSE","FALSE","America/Los_Angeles"
-"98585","46.55493","-122.49572","Silver Creek","WA","Washington","TRUE","","832","14.5","53041","Lewis","{""53041"": ""100""}","Lewis","53041","FALSE","FALSE","America/Los_Angeles"
-"98586","46.54489","-123.81369","South Bend","WA","Washington","TRUE","","1569","4.5","53049","Pacific","{""53049"": ""100""}","Pacific","53049","FALSE","FALSE","America/Los_Angeles"
-"98587","47.30875","-124.21419","Taholah","WA","Washington","TRUE","","747","10.1","53027","Grays Harbor","{""53027"": ""100""}","Grays Harbor","53027","FALSE","FALSE","America/Los_Angeles"
-"98588","47.44458","-123.0233","Tahuya","WA","Washington","TRUE","","1583","12.5","53045","Mason","{""53045"": ""100""}","Mason","53045","FALSE","FALSE","America/Los_Angeles"
-"98589","46.83933","-122.81146","Tenino","WA","Washington","TRUE","","7654","32.1","53067","Thurston","{""53067"": ""100""}","Thurston","53067","FALSE","FALSE","America/Los_Angeles"
-"98590","46.71866","-124.00252","Tokeland","WA","Washington","TRUE","","305","38.1","53049","Pacific","{""53049"": ""100""}","Pacific","53049","FALSE","FALSE","America/Los_Angeles"
-"98591","46.44269","-122.74286","Toledo","WA","Washington","TRUE","","3376","11.3","53041","Lewis","{""53041"": ""100""}","Lewis","53041","FALSE","FALSE","America/Los_Angeles"
-"98592","47.32587","-123.08021","Union","WA","Washington","TRUE","","1839","40.3","53045","Mason","{""53045"": ""100""}","Mason","53045","FALSE","FALSE","America/Los_Angeles"
-"98593","46.40794","-123.0055","Vader","WA","Washington","TRUE","","1260","36.3","53041","Lewis","{""53041"": ""100""}","Lewis","53041","FALSE","FALSE","America/Los_Angeles"
-"98595","46.88232","-124.10849","Westport","WA","Washington","TRUE","","2508","177.4","53027","Grays Harbor","{""53027"": ""100""}","Grays Harbor","53027","FALSE","FALSE","America/Los_Angeles"
-"98596","46.4957","-122.95323","Winlock","WA","Washington","TRUE","","7813","33.8","53041","Lewis","{""53041"": ""100""}","Lewis","53041","FALSE","FALSE","America/Los_Angeles"
-"98597","46.85138","-122.49229","Yelm","WA","Washington","TRUE","","23996","83.0","53067","Thurston","{""53067"": ""100""}","Thurston","53067","FALSE","FALSE","America/Los_Angeles"
-"98601","45.95632","-122.36119","Amboy","WA","Washington","TRUE","","3702","21.0","53011","Clark","{""53011"": ""95.61"", ""53015"": ""4.39""}","Clark|Cowlitz","53011|53015","FALSE","FALSE","America/Los_Angeles"
-"98602","45.86716","-121.26554","Appleton","WA","Washington","TRUE","","185","1.3","53039","Klickitat","{""53039"": ""100""}","Klickitat","53039","FALSE","FALSE","America/Los_Angeles"
-"98603","46.0408","-122.42018","Ariel","WA","Washington","TRUE","","1167","3.9","53015","Cowlitz","{""53015"": ""100""}","Cowlitz","53015","FALSE","FALSE","America/Los_Angeles"
-"98604","45.80019","-122.50522","Battle Ground","WA","Washington","TRUE","","37225","198.5","53011","Clark","{""53011"": ""100""}","Clark","53011","FALSE","FALSE","America/Los_Angeles"
-"98605","45.77509","-121.6328","Bingen","WA","Washington","TRUE","","1140","10.2","53039","Klickitat","{""53039"": ""62.53"", ""53059"": ""37.47""}","Klickitat|Skamania","53039|53059","FALSE","FALSE","America/Los_Angeles"
-"98606","45.72973","-122.45637","Brush Prairie","WA","Washington","TRUE","","9004","92.9","53011","Clark","{""53011"": ""100""}","Clark","53011","FALSE","FALSE","America/Los_Angeles"
-"98607","45.64338","-122.38206","Camas","WA","Washington","TRUE","","32232","265.1","53011","Clark","{""53011"": ""100""}","Clark","53011","FALSE","FALSE","America/Los_Angeles"
-"98610","45.86735","-122.0707","Carson","WA","Washington","TRUE","","3349","3.5","53059","Skamania","{""53059"": ""100""}","Skamania","53059","FALSE","FALSE","America/Los_Angeles"
-"98611","46.30812","-122.89524","Castle Rock","WA","Washington","TRUE","","9421","29.1","53015","Cowlitz","{""53015"": ""100""}","Cowlitz","53015","FALSE","FALSE","America/Los_Angeles"
-"98612","46.21778","-123.32552","Cathlamet","WA","Washington","TRUE","","2981","15.2","53069","Wahkiakum","{""53069"": ""100""}","Wahkiakum","53069","FALSE","FALSE","America/Los_Angeles"
-"98613","45.73673","-120.96569","Centerville","WA","Washington","TRUE","","402","1.7","53039","Klickitat","{""53039"": ""100""}","Klickitat","53039","FALSE","FALSE","America/Los_Angeles"
-"98614","46.29717","-123.90149","Chinook","WA","Washington","TRUE","","164","2.2","53049","Pacific","{""53049"": ""100""}","Pacific","53049","FALSE","FALSE","America/Los_Angeles"
-"98616","46.197","-122.14157","Cougar","WA","Washington","TRUE","","113","0.2","53015","Cowlitz","{""53015"": ""74.67"", ""53059"": ""25.33""}","Cowlitz|Skamania","53015|53059","FALSE","FALSE","America/Los_Angeles"
-"98617","45.64391","-121.15643","Dallesport","WA","Washington","TRUE","","1415","49.2","53039","Klickitat","{""53039"": ""100""}","Klickitat","53039","FALSE","FALSE","America/Los_Angeles"
-"98619","45.97502","-121.27212","Glenwood","WA","Washington","TRUE","","539","1.4","53039","Klickitat","{""53039"": ""100""}","Klickitat","53039","FALSE","FALSE","America/Los_Angeles"
-"98620","45.87202","-120.77468","Goldendale","WA","Washington","TRUE","","7669","6.1","53039","Klickitat","{""53039"": ""100""}","Klickitat","53039","FALSE","FALSE","America/Los_Angeles"
-"98621","46.37784","-123.54961","Grays River","WA","Washington","TRUE","","269","2.5","53069","Wahkiakum","{""53069"": ""96.74"", ""53049"": ""3.26""}","Wahkiakum|Pacific","53069|53049","FALSE","FALSE","America/Los_Angeles"
-"98624","46.36954","-123.9714","Ilwaco","WA","Washington","TRUE","","1633","18.6","53049","Pacific","{""53049"": ""100""}","Pacific","53049","FALSE","FALSE","America/Los_Angeles"
-"98625","46.04237","-122.72783","Kalama","WA","Washington","TRUE","","6716","32.2","53015","Cowlitz","{""53015"": ""100""}","Cowlitz","53015","FALSE","FALSE","America/Los_Angeles"
-"98626","46.15464","-122.78638","Kelso","WA","Washington","TRUE","","24643","69.7","53015","Cowlitz","{""53015"": ""100""}","Cowlitz","53015","FALSE","FALSE","America/Los_Angeles"
-"98628","45.85926","-121.09064","Klickitat","WA","Washington","TRUE","","263","11.5","53039","Klickitat","{""53039"": ""100""}","Klickitat","53039","FALSE","FALSE","America/Los_Angeles"
-"98629","45.88169","-122.61413","La Center","WA","Washington","TRUE","","9154","91.4","53011","Clark","{""53011"": ""100""}","Clark","53011","FALSE","FALSE","America/Los_Angeles"
-"98631","46.38858","-124.03692","Long Beach","WA","Washington","TRUE","","3256","77.9","53049","Pacific","{""53049"": ""100""}","Pacific","53049","FALSE","FALSE","America/Los_Angeles"
-"98632","46.21684","-123.06852","Longview","WA","Washington","TRUE","","51504","153.3","53015","Cowlitz","{""53015"": ""99.92"", ""53069"": ""0.08""}","Cowlitz|Wahkiakum","53015|53069","FALSE","FALSE","America/Los_Angeles"
-"98635","45.74258","-121.20388","Lyle","WA","Washington","TRUE","","1621","4.9","53039","Klickitat","{""53039"": ""100""}","Klickitat","53039","FALSE","FALSE","America/Los_Angeles"
-"98638","46.38956","-123.74334","Naselle","WA","Washington","TRUE","","1371","3.1","53049","Pacific","{""53049"": ""86.62"", ""53069"": ""13.38""}","Pacific|Wahkiakum","53049|53069","FALSE","FALSE","America/Los_Angeles"
-"98639","45.66284","-121.98949","North Bonneville","WA","Washington","TRUE","","977","29.5","53059","Skamania","{""53059"": ""100""}","Skamania","53059","FALSE","FALSE","America/Los_Angeles"
-"98640","46.54758","-124.04613","Ocean Park","WA","Washington","TRUE","","4576","86.2","53049","Pacific","{""53049"": ""100""}","Pacific","53049","FALSE","FALSE","America/Los_Angeles"
-"98641","46.54638","-124.02992","Oysterville","WA","Washington","TRUE","","23","215.9","53049","Pacific","{""53049"": ""100""}","Pacific","53049","FALSE","FALSE","America/Los_Angeles"
-"98642","45.80248","-122.70178","Ridgefield","WA","Washington","TRUE","","19957","135.2","53011","Clark","{""53011"": ""100""}","Clark","53011","FALSE","FALSE","America/Los_Angeles"
-"98643","46.30135","-123.61472","Rosburg","WA","Washington","TRUE","","464","4.9","53069","Wahkiakum","{""53069"": ""100""}","Wahkiakum","53069","FALSE","FALSE","America/Los_Angeles"
-"98644","46.32964","-124.05628","Seaview","WA","Washington","TRUE","","495","271.5","53049","Pacific","{""53049"": ""100""}","Pacific","53049","FALSE","FALSE","America/Los_Angeles"
-"98645","46.32644","-122.78197","Silverlake","WA","Washington","TRUE","","1490","38.7","53015","Cowlitz","{""53015"": ""100""}","Cowlitz","53015","FALSE","FALSE","America/Los_Angeles"
-"98647","46.31842","-123.43538","Skamokawa","WA","Washington","TRUE","","308","1.9","53069","Wahkiakum","{""53069"": ""100""}","Wahkiakum","53069","FALSE","FALSE","America/Los_Angeles"
-"98648","45.70807","-121.95486","Stevenson","WA","Washington","TRUE","","3243","10.2","53059","Skamania","{""53059"": ""100""}","Skamania","53059","FALSE","FALSE","America/Los_Angeles"
-"98649","46.31417","-122.53538","Toutle","WA","Washington","TRUE","","941","1.8","53015","Cowlitz","{""53015"": ""100""}","Cowlitz","53015","FALSE","FALSE","America/Los_Angeles"
-"98650","45.97293","-121.52874","Trout Lake","WA","Washington","TRUE","","946","4.4","53039","Klickitat","{""53039"": ""100""}","Klickitat","53039","FALSE","FALSE","America/Los_Angeles"
-"98651","45.74276","-121.584","Underwood","WA","Washington","TRUE","","800","17.3","53059","Skamania","{""53059"": ""100""}","Skamania","53059","FALSE","FALSE","America/Los_Angeles"
-"98660","45.68772","-122.73187","Vancouver","WA","Washington","TRUE","","12588","325.8","53011","Clark","{""53011"": ""100""}","Clark","53011","FALSE","FALSE","America/Los_Angeles"
-"98661","45.63918","-122.62575","Vancouver","WA","Washington","TRUE","","48063","1747.1","53011","Clark","{""53011"": ""100""}","Clark","53011","FALSE","FALSE","America/Los_Angeles"
-"98662","45.68851","-122.57784","Vancouver","WA","Washington","TRUE","","33152","994.5","53011","Clark","{""53011"": ""100""}","Clark","53011","FALSE","FALSE","America/Los_Angeles"
-"98663","45.65399","-122.66253","Vancouver","WA","Washington","TRUE","","14430","1294.6","53011","Clark","{""53011"": ""100""}","Clark","53011","FALSE","FALSE","America/Los_Angeles"
-"98664","45.61981","-122.57752","Vancouver","WA","Washington","TRUE","","23421","1718.4","53011","Clark","{""53011"": ""100""}","Clark","53011","FALSE","FALSE","America/Los_Angeles"
-"98665","45.67974","-122.65942","Vancouver","WA","Washington","TRUE","","26518","1266.9","53011","Clark","{""53011"": ""100""}","Clark","53011","FALSE","FALSE","America/Los_Angeles"
-"98670","45.85885","-121.14091","Wahkiacus","WA","Washington","TRUE","","39","0.6","53039","Klickitat","{""53039"": ""100""}","Klickitat","53039","FALSE","FALSE","America/Los_Angeles"
-"98671","45.61329","-122.2422","Washougal","WA","Washington","TRUE","","23058","103.1","53011","Clark","{""53011"": ""87.26"", ""53059"": ""12.74""}","Clark|Skamania","53011|53059","FALSE","FALSE","America/Los_Angeles"
-"98672","45.81843","-121.46297","White Salmon","WA","Washington","TRUE","","6874","18.3","53039","Klickitat","{""53039"": ""98.23"", ""53059"": ""1.77""}","Klickitat|Skamania","53039|53059","FALSE","FALSE","America/Los_Angeles"
-"98673","45.65212","-121.03609","Wishram","WA","Washington","TRUE","","578","17.2","53039","Klickitat","{""53039"": ""100""}","Klickitat","53039","FALSE","FALSE","America/Los_Angeles"
-"98674","45.94333","-122.66499","Woodland","WA","Washington","TRUE","","12919","60.1","53015","Cowlitz","{""53015"": ""78.52"", ""53011"": ""21.48""}","Cowlitz|Clark","53015|53011","FALSE","FALSE","America/Los_Angeles"
-"98675","45.827","-122.34442","Yacolt","WA","Washington","TRUE","","7159","23.4","53011","Clark","{""53011"": ""100""}","Clark","53011","FALSE","FALSE","America/Los_Angeles"
-"98682","45.67317","-122.48174","Vancouver","WA","Washington","TRUE","","60887","779.8","53011","Clark","{""53011"": ""100""}","Clark","53011","FALSE","FALSE","America/Los_Angeles"
-"98683","45.60301","-122.51024","Vancouver","WA","Washington","TRUE","","33219","1767.6","53011","Clark","{""53011"": ""100""}","Clark","53011","FALSE","FALSE","America/Los_Angeles"
-"98684","45.63073","-122.51644","Vancouver","WA","Washington","TRUE","","29396","1627.7","53011","Clark","{""53011"": ""100""}","Clark","53011","FALSE","FALSE","America/Los_Angeles"
-"98685","45.71621","-122.68991","Vancouver","WA","Washington","TRUE","","29792","1182.2","53011","Clark","{""53011"": ""100""}","Clark","53011","FALSE","FALSE","America/Los_Angeles"
-"98686","45.72415","-122.62335","Vancouver","WA","Washington","TRUE","","20504","688.1","53011","Clark","{""53011"": ""100""}","Clark","53011","FALSE","FALSE","America/Los_Angeles"
-"98801","47.42334","-120.33781","Wenatchee","WA","Washington","TRUE","","43366","103.1","53007","Chelan","{""53007"": ""100""}","Chelan","53007","FALSE","FALSE","America/Los_Angeles"
-"98802","47.49059","-120.16774","East Wenatchee","WA","Washington","TRUE","","31422","67.6","53017","Douglas","{""53017"": ""100""}","Douglas","53017","FALSE","FALSE","America/Los_Angeles"
-"98811","47.71386","-120.37618","Ardenvoir","WA","Washington","TRUE","","207","15.4","53007","Chelan","{""53007"": ""100""}","Chelan","53007","FALSE","FALSE","America/Los_Angeles"
-"98812","48.1445","-119.75284","Brewster","WA","Washington","TRUE","","5153","7.5","53047","Okanogan","{""53047"": ""87.51"", ""53017"": ""12.49""}","Okanogan|Douglas","53047|53017","FALSE","FALSE","America/Los_Angeles"
-"98813","48.01416","-119.60655","Bridgeport","WA","Washington","TRUE","","2836","9.3","53017","Douglas","{""53017"": ""95.59"", ""53047"": ""4.41""}","Douglas|Okanogan","53017|53047","FALSE","FALSE","America/Los_Angeles"
-"98814","48.20686","-120.15826","Carlton","WA","Washington","TRUE","","814","2.1","53047","Okanogan","{""53047"": ""100""}","Okanogan","53047","FALSE","FALSE","America/Los_Angeles"
-"98815","47.48374","-120.47431","Cashmere","WA","Washington","TRUE","","7622","24.8","53007","Chelan","{""53007"": ""100""}","Chelan","53007","FALSE","FALSE","America/Los_Angeles"
-"98816","47.99847","-120.32949","Chelan","WA","Washington","TRUE","","6007","5.8","53007","Chelan","{""53007"": ""99.72"", ""53017"": ""0.28""}","Chelan|Douglas","53007|53017","FALSE","FALSE","America/Los_Angeles"
-"98817","47.79153","-119.99527","Chelan Falls","WA","Washington","TRUE","","177","69.6","53007","Chelan","{""53007"": ""100""}","Chelan","53007","FALSE","FALSE","America/Los_Angeles"
-"98819","48.61684","-119.81462","Conconully","WA","Washington","TRUE","","183","0.6","53047","Okanogan","{""53047"": ""100""}","Okanogan","53047","FALSE","FALSE","America/Los_Angeles"
-"98821","47.55177","-120.55942","Dryden","WA","Washington","TRUE","","306","64.2","53007","Chelan","{""53007"": ""100""}","Chelan","53007","FALSE","FALSE","America/Los_Angeles"
-"98822","47.86643","-120.47563","Entiat","WA","Washington","TRUE","","1848","1.6","53007","Chelan","{""53007"": ""100""}","Chelan","53007","FALSE","FALSE","America/Los_Angeles"
-"98823","47.32197","-119.63358","Ephrata","WA","Washington","TRUE","","11304","14.6","53025","Grant","{""53025"": ""99.54"", ""53017"": ""0.46""}","Grant|Douglas","53025|53017","FALSE","FALSE","America/Los_Angeles"
-"98824","47.07784","-119.85868","George","WA","Washington","TRUE","","467","473.2","53025","Grant","{""53025"": ""100""}","Grant","53025","FALSE","FALSE","America/Los_Angeles"
-"98826","47.7875","-120.85453","Leavenworth","WA","Washington","TRUE","","7520","2.9","53007","Chelan","{""53007"": ""100""}","Chelan","53007","FALSE","FALSE","America/Los_Angeles"
-"98827","48.86486","-119.76696","Loomis","WA","Washington","TRUE","","568","0.7","53047","Okanogan","{""53047"": ""100""}","Okanogan","53047","FALSE","FALSE","America/Los_Angeles"
-"98828","47.30561","-120.17619","Malaga","WA","Washington","TRUE","","2473","16.8","53007","Chelan","{""53007"": ""99.63"", ""53037"": ""0.37""}","Chelan|Kittitas","53007|53037","FALSE","FALSE","America/Los_Angeles"
-"98829","48.31242","-119.80894","Malott","WA","Washington","TRUE","","616","3.5","53047","Okanogan","{""53047"": ""100""}","Okanogan","53047","FALSE","FALSE","America/Los_Angeles"
-"98830","47.89518","-119.51453","Mansfield","WA","Washington","TRUE","","572","0.5","53017","Douglas","{""53017"": ""100""}","Douglas","53017","FALSE","FALSE","America/Los_Angeles"
-"98831","47.9346","-120.1301","Manson","WA","Washington","TRUE","","3193","26.3","53007","Chelan","{""53007"": ""100""}","Chelan","53007","FALSE","FALSE","America/Los_Angeles"
-"98832","47.37195","-119.01776","Marlin","WA","Washington","TRUE","","206","0.4","53025","Grant","{""53025"": ""91.88"", ""53043"": ""8.13""}","Grant|Lincoln","53025|53043","FALSE","FALSE","America/Los_Angeles"
-"98833","48.68821","-120.61132","Mazama","WA","Washington","TRUE","","139","0.3","53047","Okanogan","{""53047"": ""100""}","Okanogan","53047","FALSE","FALSE","America/Los_Angeles"
-"98834","48.11708","-120.08911","Methow","WA","Washington","TRUE","","199","1.0","53047","Okanogan","{""53047"": ""100""}","Okanogan","53047","FALSE","FALSE","America/Los_Angeles"
-"98836","47.47526","-120.42756","Monitor","WA","Washington","TRUE","","1051","53.1","53007","Chelan","{""53007"": ""100""}","Chelan","53007","FALSE","FALSE","America/Los_Angeles"
-"98837","47.14978","-119.30455","Moses Lake","WA","Washington","TRUE","","44136","35.3","53025","Grant","{""53025"": ""100""}","Grant","53025","FALSE","FALSE","America/Los_Angeles"
-"98840","48.31467","-119.56659","Okanogan","WA","Washington","TRUE","","4862","4.5","53047","Okanogan","{""53047"": ""100""}","Okanogan","53047","FALSE","FALSE","America/Los_Angeles"
-"98841","48.35883","-119.26948","Omak","WA","Washington","TRUE","","9289","9.4","53047","Okanogan","{""53047"": ""100""}","Okanogan","53047","FALSE","FALSE","America/Los_Angeles"
-"98843","47.75201","-120.05985","Orondo","WA","Washington","TRUE","","1840","10.8","53017","Douglas","{""53017"": ""100""}","Douglas","53017","FALSE","FALSE","America/Los_Angeles"
-"98844","48.91594","-119.2444","Oroville","WA","Washington","TRUE","","4252","5.0","53047","Okanogan","{""53047"": ""100""}","Okanogan","53047","FALSE","FALSE","America/Los_Angeles"
-"98845","47.41839","-119.92731","Palisades","WA","Washington","TRUE","","345","1.9","53017","Douglas","{""53017"": ""100""}","Douglas","53017","FALSE","FALSE","America/Los_Angeles"
-"98846","48.03405","-119.97863","Pateros","WA","Washington","TRUE","","1255","5.4","53047","Okanogan","{""53047"": ""100""}","Okanogan","53047","FALSE","FALSE","America/Los_Angeles"
-"98847","47.44055","-120.64667","Peshastin","WA","Washington","TRUE","","2446","5.8","53007","Chelan","{""53007"": ""100""}","Chelan","53007","FALSE","FALSE","America/Los_Angeles"
-"98848","47.17238","-119.8433","Quincy","WA","Washington","TRUE","","12299","10.6","53025","Grant","{""53025"": ""99.56"", ""53017"": ""0.44""}","Grant|Douglas","53025|53017","FALSE","FALSE","America/Los_Angeles"
-"98849","48.53819","-119.40391","Riverside","WA","Washington","TRUE","","1318","3.3","53047","Okanogan","{""53047"": ""100""}","Okanogan","53047","FALSE","FALSE","America/Los_Angeles"
-"98850","47.30764","-120.07758","Rock Island","WA","Washington","TRUE","","1661","28.2","53017","Douglas","{""53017"": ""100""}","Douglas","53017","FALSE","FALSE","America/Los_Angeles"
-"98851","47.42069","-119.42514","Soap Lake","WA","Washington","TRUE","","4874","11.8","53025","Grant","{""53025"": ""100""}","Grant","53025","FALSE","FALSE","America/Los_Angeles"
-"98852","48.25281","-120.55118","Stehekin","WA","Washington","TRUE","","15","0.0","53007","Chelan","{""53007"": ""100""}","Chelan","53007","FALSE","FALSE","America/Los_Angeles"
-"98853","47.46201","-119.26036","Stratford","WA","Washington","TRUE","","14","0.7","53025","Grant","{""53025"": ""100""}","Grant","53025","FALSE","FALSE","America/Los_Angeles"
-"98855","48.67535","-119.27048","Tonasket","WA","Washington","TRUE","","6057","3.6","53047","Okanogan","{""53047"": ""100""}","Okanogan","53047","FALSE","FALSE","America/Los_Angeles"
-"98856","48.37294","-120.25319","Twisp","WA","Washington","TRUE","","2561","2.2","53047","Okanogan","{""53047"": ""100""}","Okanogan","53047","FALSE","FALSE","America/Los_Angeles"
-"98857","46.98565","-119.05068","Warden","WA","Washington","TRUE","","3595","8.5","53025","Grant","{""53025"": ""96.33"", ""53001"": ""3.67""}","Grant|Adams","53025|53001","FALSE","FALSE","America/Los_Angeles"
-"98858","47.64655","-119.90883","Waterville","WA","Washington","TRUE","","1938","1.9","53017","Douglas","{""53017"": ""100""}","Douglas","53017","FALSE","FALSE","America/Los_Angeles"
-"98859","48.80241","-118.91408","Wauconda","WA","Washington","TRUE","","174","0.5","53047","Okanogan","{""53047"": ""100""}","Okanogan","53047","FALSE","FALSE","America/Los_Angeles"
-"98860","47.46881","-119.16396","Wilson Creek","WA","Washington","TRUE","","235","1.2","53025","Grant","{""53025"": ""100""}","Grant","53025","FALSE","FALSE","America/Los_Angeles"
-"98862","48.58164","-120.28825","Winthrop","WA","Washington","TRUE","","2461","2.1","53047","Okanogan","{""53047"": ""100"", ""53073"": ""0""}","Okanogan|Whatcom","53047|53073","FALSE","FALSE","America/Los_Angeles"
-"98901","46.69319","-120.41528","Yakima","WA","Washington","TRUE","","32358","107.1","53077","Yakima","{""53077"": ""99.8"", ""53037"": ""0.2""}","Yakima|Kittitas","53077|53037","FALSE","FALSE","America/Los_Angeles"
-"98902","46.59668","-120.53375","Yakima","WA","Washington","TRUE","","46130","1971.9","53077","Yakima","{""53077"": ""100""}","Yakima","53077","FALSE","FALSE","America/Los_Angeles"
-"98903","46.53886","-121.02662","Yakima","WA","Washington","TRUE","","14086","18.8","53077","Yakima","{""53077"": ""100""}","Yakima","53077","FALSE","FALSE","America/Los_Angeles"
-"98908","46.61658","-120.70952","Yakima","WA","Washington","TRUE","","36965","144.4","53077","Yakima","{""53077"": ""100""}","Yakima","53077","FALSE","FALSE","America/Los_Angeles"
-"98921","46.43107","-120.31878","Buena","WA","Washington","TRUE","","127","390.2","53077","Yakima","{""53077"": ""100""}","Yakima","53077","FALSE","FALSE","America/Los_Angeles"
-"98922","47.26931","-120.88143","Cle Elum","WA","Washington","TRUE","","6607","5.7","53037","Kittitas","{""53037"": ""100""}","Kittitas","53037","FALSE","FALSE","America/Los_Angeles"
-"98923","46.66635","-120.71772","Cowiche","WA","Washington","TRUE","","1215","77.6","53077","Yakima","{""53077"": ""100""}","Yakima","53077","FALSE","FALSE","America/Los_Angeles"
-"98925","47.25806","-121.28081","Easton","WA","Washington","TRUE","","532","1.6","53037","Kittitas","{""53037"": ""100""}","Kittitas","53037","FALSE","FALSE","America/Los_Angeles"
-"98926","47.01293","-120.46296","Ellensburg","WA","Washington","TRUE","","34725","23.2","53037","Kittitas","{""53037"": ""100""}","Kittitas","53037","FALSE","FALSE","America/Los_Angeles"
-"98930","46.27048","-119.89355","Grandview","WA","Washington","TRUE","","15627","126.9","53077","Yakima","{""53077"": ""94.15"", ""53005"": ""5.85""}","Yakima|Benton","53077|53005","FALSE","FALSE","America/Los_Angeles"
-"98932","46.33242","-120.16117","Granger","WA","Washington","TRUE","","5442","62.3","53077","Yakima","{""53077"": ""100""}","Yakima","53077","FALSE","FALSE","America/Los_Angeles"
-"98933","46.40223","-120.63124","Harrah","WA","Washington","TRUE","","1051","16.8","53077","Yakima","{""53077"": ""100""}","Yakima","53077","FALSE","FALSE","America/Los_Angeles"
-"98934","46.98179","-120.41493","Kittitas","WA","Washington","TRUE","","1166","530.4","53037","Kittitas","{""53037"": ""100""}","Kittitas","53037","FALSE","FALSE","America/Los_Angeles"
-"98935","46.1314","-120.08637","Mabton","WA","Washington","TRUE","","4035","5.8","53077","Yakima","{""53077"": ""100""}","Yakima","53077","FALSE","FALSE","America/Los_Angeles"
-"98936","46.53598","-120.14407","Moxee","WA","Washington","TRUE","","6752","18.4","53077","Yakima","{""53077"": ""100""}","Yakima","53077","FALSE","FALSE","America/Los_Angeles"
-"98937","46.808","-121.16104","Naches","WA","Washington","TRUE","","4031","2.0","53077","Yakima","{""53077"": ""100"", ""53037"": ""0""}","Yakima|Kittitas","53077|53037","FALSE","FALSE","America/Los_Angeles"
-"98938","46.38829","-120.09413","Outlook","WA","Washington","TRUE","","2777","29.0","53077","Yakima","{""53077"": ""100""}","Yakima","53077","FALSE","FALSE","America/Los_Angeles"
-"98939","46.49687","-120.46581","Parker","WA","Washington","TRUE","","91","123.2","53077","Yakima","{""53077"": ""100""}","Yakima","53077","FALSE","FALSE","America/Los_Angeles"
-"98940","47.40476","-121.07325","Ronald","WA","Washington","TRUE","","241","0.9","53037","Kittitas","{""53037"": ""100""}","Kittitas","53037","FALSE","FALSE","America/Los_Angeles"
-"98941","47.22328","-120.98209","Roslyn","WA","Washington","TRUE","","539","42.8","53037","Kittitas","{""53037"": ""100""}","Kittitas","53037","FALSE","FALSE","America/Los_Angeles"
-"98942","46.80184","-120.67505","Selah","WA","Washington","TRUE","","17425","35.7","53077","Yakima","{""53077"": ""100""}","Yakima","53077","FALSE","FALSE","America/Los_Angeles"
-"98943","47.18562","-120.95846","South Cle Elum","WA","Washington","TRUE","","1015","456.3","53037","Kittitas","{""53037"": ""100""}","Kittitas","53037","FALSE","FALSE","America/Los_Angeles"
-"98944","46.49322","-119.64732","Sunnyside","WA","Washington","TRUE","","23586","15.8","53077","Yakima","{""53077"": ""99.8"", ""53005"": ""0.2""}","Yakima|Benton","53077|53005","FALSE","FALSE","America/Los_Angeles"
-"98946","47.07912","-120.72166","Thorp","WA","Washington","TRUE","","563","11.9","53037","Kittitas","{""53037"": ""100""}","Kittitas","53037","FALSE","FALSE","America/Los_Angeles"
-"98947","46.68755","-120.80146","Tieton","WA","Washington","TRUE","","3672","34.4","53077","Yakima","{""53077"": ""100""}","Yakima","53077","FALSE","FALSE","America/Los_Angeles"
-"98948","46.28525","-120.32839","Toppenish","WA","Washington","TRUE","","13251","23.5","53077","Yakima","{""53077"": ""100""}","Yakima","53077","FALSE","FALSE","America/Los_Angeles"
-"98950","46.89747","-119.99058","Vantage","WA","Washington","TRUE","","57","0.9","53037","Kittitas","{""53037"": ""100""}","Kittitas","53037","FALSE","FALSE","America/Los_Angeles"
-"98951","46.45977","-120.51617","Wapato","WA","Washington","TRUE","","12721","32.7","53077","Yakima","{""53077"": ""100""}","Yakima","53077","FALSE","FALSE","America/Los_Angeles"
-"98952","46.35435","-120.76141","White Swan","WA","Washington","TRUE","","2234","4.2","53077","Yakima","{""53077"": ""100""}","Yakima","53077","FALSE","FALSE","America/Los_Angeles"
-"98953","46.44227","-120.22679","Zillah","WA","Washington","TRUE","","7082","43.4","53077","Yakima","{""53077"": ""100""}","Yakima","53077","FALSE","FALSE","America/Los_Angeles"
-"99001","47.63652","-117.58632","Airway Heights","WA","Washington","TRUE","","7062","383.9","53063","Spokane","{""53063"": ""100""}","Spokane","53063","FALSE","FALSE","America/Los_Angeles"
-"99003","47.91839","-117.28467","Chattaroy","WA","Washington","TRUE","","4410","24.3","53063","Spokane","{""53063"": ""100""}","Spokane","53063","FALSE","FALSE","America/Los_Angeles"
-"99004","47.41112","-117.63773","Cheney","WA","Washington","TRUE","","20764","23.9","53063","Spokane","{""53063"": ""99.94"", ""53075"": ""0.06""}","Spokane|Whitman","53063|53075","FALSE","FALSE","America/Los_Angeles"
-"99005","47.84425","-117.36623","Colbert","WA","Washington","TRUE","","8948","87.1","53063","Spokane","{""53063"": ""100""}","Spokane","53063","FALSE","FALSE","America/Los_Angeles"
-"99006","47.98298","-117.50225","Deer Park","WA","Washington","TRUE","","12818","26.9","53063","Spokane","{""53063"": ""84.09"", ""53065"": ""15.15"", ""53051"": ""0.76""}","Spokane|Stevens|Pend Oreille","53063|53065|53051","FALSE","FALSE","America/Los_Angeles"
-"99008","47.50805","-117.92447","Edwall","WA","Washington","TRUE","","1105","3.3","53043","Lincoln","{""53043"": ""55.69"", ""53063"": ""44.31""}","Lincoln|Spokane","53043|53063","FALSE","FALSE","America/Los_Angeles"
-"99009","48.01865","-117.2544","Elk","WA","Washington","TRUE","","4091","19.7","53063","Spokane","{""53063"": ""79.48"", ""53051"": ""20.52""}","Spokane|Pend Oreille","53063|53051","FALSE","FALSE","America/Los_Angeles"
-"99011","47.61883","-117.64812","Fairchild Air Force Base","WA","Washington","TRUE","","3336","196.8","53063","Spokane","{""53063"": ""100""}","Spokane","53063","FALSE","FALSE","America/Los_Angeles"
-"99012","47.38209","-117.19286","Fairfield","WA","Washington","TRUE","","890","3.6","53063","Spokane","{""53063"": ""100""}","Spokane","53063","FALSE","FALSE","America/Los_Angeles"
-"99013","47.89239","-117.83445","Ford","WA","Washington","TRUE","","1815","6.9","53065","Stevens","{""53065"": ""82.75"", ""53043"": ""10.2"", ""53063"": ""7.06""}","Stevens|Lincoln|Spokane","53065|53043|53063","FALSE","FALSE","America/Los_Angeles"
-"99016","47.62116","-117.14626","Greenacres","WA","Washington","TRUE","","15804","242.1","53063","Spokane","{""53063"": ""100""}","Spokane","53063","FALSE","FALSE","America/Los_Angeles"
-"99017","47.18881","-117.8756","Lamont","WA","Washington","TRUE","","126","0.6","53075","Whitman","{""53075"": ""100""}","Whitman","53075","FALSE","FALSE","America/Los_Angeles"
-"99018","47.28979","-117.15487","Latah","WA","Washington","TRUE","","230","2.5","53063","Spokane","{""53063"": ""100""}","Spokane","53063","FALSE","FALSE","America/Los_Angeles"
-"99019","47.64281","-117.07648","Liberty Lake","WA","Washington","TRUE","","12208","215.2","53063","Spokane","{""53063"": ""100""}","Spokane","53063","FALSE","FALSE","America/Los_Angeles"
-"99020","47.56242","-117.49663","Marshall","WA","Washington","TRUE","","0","0.0","53063","Spokane","{""53063"": ""100""}","Spokane","53063","FALSE","FALSE","America/Los_Angeles"
-"99021","47.84824","-117.18953","Mead","WA","Washington","TRUE","","10019","46.0","53063","Spokane","{""53063"": ""100""}","Spokane","53063","FALSE","FALSE","America/Los_Angeles"
-"99022","47.60157","-117.71132","Medical Lake","WA","Washington","TRUE","","8810","49.3","53063","Spokane","{""53063"": ""100""}","Spokane","53063","FALSE","FALSE","America/Los_Angeles"
-"99023","47.56109","-117.17176","Mica","WA","Washington","TRUE","","715","20.2","53063","Spokane","{""53063"": ""100""}","Spokane","53063","FALSE","FALSE","America/Los_Angeles"
-"99025","47.78991","-117.08596","Newman Lake","WA","Washington","TRUE","","5431","47.1","53063","Spokane","{""53063"": ""100""}","Spokane","53063","FALSE","FALSE","America/Los_Angeles"
-"99026","47.81146","-117.62775","Nine Mile Falls","WA","Washington","TRUE","","8521","46.4","53065","Stevens","{""53065"": ""63.8"", ""53063"": ""36.2""}","Stevens|Spokane","53065|53063","FALSE","FALSE","America/Los_Angeles"
-"99027","47.71042","-117.12622","Otis Orchards","WA","Washington","TRUE","","6378","163.2","53063","Spokane","{""53063"": ""100""}","Spokane","53063","FALSE","FALSE","America/Los_Angeles"
-"99029","47.69765","-117.82934","Reardan","WA","Washington","TRUE","","928","3.0","53043","Lincoln","{""53043"": ""75.1"", ""53063"": ""24.9""}","Lincoln|Spokane","53043|53063","FALSE","FALSE","America/Los_Angeles"
-"99030","47.4841","-117.11023","Rockford","WA","Washington","TRUE","","976","4.8","53063","Spokane","{""53063"": ""100""}","Spokane","53063","FALSE","FALSE","America/Los_Angeles"
-"99031","47.42351","-117.36247","Spangle","WA","Washington","TRUE","","1405","7.6","53063","Spokane","{""53063"": ""100""}","Spokane","53063","FALSE","FALSE","America/Los_Angeles"
-"99032","47.31739","-118.02805","Sprague","WA","Washington","TRUE","","768","1.4","53043","Lincoln","{""53043"": ""97.68"", ""53001"": ""2.32""}","Lincoln|Adams","53043|53001","FALSE","FALSE","America/Los_Angeles"
-"99033","47.23237","-117.09927","Tekoa","WA","Washington","TRUE","","828","8.5","53075","Whitman","{""53075"": ""98.77"", ""53063"": ""1.23""}","Whitman|Spokane","53075|53063","FALSE","FALSE","America/Los_Angeles"
-"99034","47.88562","-117.74864","Tumtum","WA","Washington","TRUE","","34","0.8","53065","Stevens","{""53065"": ""100""}","Stevens","53065","FALSE","FALSE","America/Los_Angeles"
-"99036","47.52532","-117.27588","Valleyford","WA","Washington","TRUE","","1689","16.0","53063","Spokane","{""53063"": ""100""}","Spokane","53063","FALSE","FALSE","America/Los_Angeles"
-"99037","47.6364","-117.19718","Veradale","WA","Washington","TRUE","","14628","873.4","53063","Spokane","{""53063"": ""100""}","Spokane","53063","FALSE","FALSE","America/Los_Angeles"
-"99039","47.34466","-117.2656","Waverly","WA","Washington","TRUE","","72","6.2","53063","Spokane","{""53063"": ""100""}","Spokane","53063","FALSE","FALSE","America/Los_Angeles"
-"99040","47.90086","-118.00526","Wellpinit","WA","Washington","TRUE","","719","2.7","53065","Stevens","{""53065"": ""100""}","Stevens","53065","FALSE","FALSE","America/Los_Angeles"
-"99101","48.32729","-117.92514","Addy","WA","Washington","TRUE","","1418","5.0","53065","Stevens","{""53065"": ""100""}","Stevens","53065","FALSE","FALSE","America/Los_Angeles"
-"99102","46.79212","-117.2501","Albion","WA","Washington","TRUE","","528","879.7","53075","Whitman","{""53075"": ""100""}","Whitman","53075","FALSE","FALSE","America/Los_Angeles"
-"99103","47.73715","-118.93697","Almira","WA","Washington","TRUE","","523","0.9","53043","Lincoln","{""53043"": ""92.56"", ""53025"": ""7.44""}","Lincoln|Grant","53043|53025","FALSE","FALSE","America/Los_Angeles"
-"99105","46.9034","-118.10477","Benge","WA","Washington","TRUE","","37","0.1","53001","Adams","{""53001"": ""100""}","Adams","53001","FALSE","FALSE","America/Los_Angeles"
-"99109","48.28532","-117.70135","Chewelah","WA","Washington","TRUE","","5103","7.0","53065","Stevens","{""53065"": ""100""}","Stevens","53065","FALSE","FALSE","America/Los_Angeles"
-"99110","48.01215","-117.57636","Clayton","WA","Washington","TRUE","","1839","18.9","53065","Stevens","{""53065"": ""90.1"", ""53063"": ""9.9""}","Stevens|Spokane","53065|53063","FALSE","FALSE","America/Los_Angeles"
-"99111","46.85372","-117.42452","Colfax","WA","Washington","TRUE","","4234","5.7","53075","Whitman","{""53075"": ""100""}","Whitman","53075","FALSE","FALSE","America/Los_Angeles"
-"99113","46.59412","-117.19146","Colton","WA","Washington","TRUE","","739","3.0","53075","Whitman","{""53075"": ""100""}","Whitman","53075","FALSE","FALSE","America/Los_Angeles"
-"99114","48.65406","-117.7396","Colville","WA","Washington","TRUE","","12876","6.8","53065","Stevens","{""53065"": ""100""}","Stevens","53065","FALSE","FALSE","America/Los_Angeles"
-"99115","47.64718","-119.42387","Coulee City","WA","Washington","TRUE","","1060","1.0","53025","Grant","{""53025"": ""86.26"", ""53017"": ""13.74""}","Grant|Douglas","53025|53017","FALSE","FALSE","America/Los_Angeles"
-"99116","48.01601","-118.92858","Coulee Dam","WA","Washington","TRUE","","1521","12.5","53047","Okanogan","{""53047"": ""87"", ""53017"": ""13"", ""53025"": ""0""}","Okanogan|Douglas|Grant","53047|53017|53025","FALSE","FALSE","America/Los_Angeles"
-"99117","47.72402","-118.5208","Creston","WA","Washington","TRUE","","461","1.0","53043","Lincoln","{""53043"": ""100""}","Lincoln","53043","FALSE","FALSE","America/Los_Angeles"
-"99118","48.89659","-118.639","Curlew","WA","Washington","TRUE","","718","1.4","53019","Ferry","{""53019"": ""100""}","Ferry","53019","FALSE","FALSE","America/Los_Angeles"
-"99119","48.5039","-117.28854","Cusick","WA","Washington","TRUE","","1218","1.2","53051","Pend Oreille","{""53051"": ""100""}","Pend Oreille","53051","FALSE","FALSE","America/Los_Angeles"
-"99121","48.94794","-118.46514","Danville","WA","Washington","TRUE","","217","1.5","53019","Ferry","{""53019"": ""100""}","Ferry","53019","FALSE","FALSE","America/Los_Angeles"
-"99122","47.67761","-118.20799","Davenport","WA","Washington","TRUE","","4122","2.8","53043","Lincoln","{""53043"": ""99.31"", ""53065"": ""0.69""}","Lincoln|Stevens","53043|53065","FALSE","FALSE","America/Los_Angeles"
-"99123","47.84593","-119.14289","Electric City","WA","Washington","TRUE","","918","8.1","53025","Grant","{""53025"": ""100""}","Grant","53025","FALSE","FALSE","America/Los_Angeles"
-"99124","47.9999","-118.95282","Elmer City","WA","Washington","TRUE","","271","546.9","53047","Okanogan","{""53047"": ""100""}","Okanogan","53047","FALSE","FALSE","America/Los_Angeles"
-"99125","46.94299","-117.77858","Endicott","WA","Washington","TRUE","","608","1.0","53075","Whitman","{""53075"": ""100""}","Whitman","53075","FALSE","FALSE","America/Los_Angeles"
-"99126","48.73963","-117.97196","Evans","WA","Washington","TRUE","","1347","10.0","53065","Stevens","{""53065"": ""100""}","Stevens","53065","FALSE","FALSE","America/Los_Angeles"
-"99128","47.09934","-117.07292","Farmington","WA","Washington","TRUE","","337","1.5","53075","Whitman","{""53075"": ""86.6"", ""16057"": ""13.4""}","Whitman|Latah","53075|16057","FALSE","FALSE","America/Los_Angeles"
-"99129","48.00522","-118.1927","Fruitland","WA","Washington","TRUE","","746","1.9","53065","Stevens","{""53065"": ""100""}","Stevens","53065","FALSE","FALSE","America/Los_Angeles"
-"99130","46.99731","-117.18411","Garfield","WA","Washington","TRUE","","928","4.6","53075","Whitman","{""53075"": ""100""}","Whitman","53075","FALSE","FALSE","America/Los_Angeles"
-"99131","48.27909","-118.12317","Gifford","WA","Washington","TRUE","","176","2.6","53065","Stevens","{""53065"": ""100""}","Stevens","53065","FALSE","FALSE","America/Los_Angeles"
-"99133","48.01489","-119.07685","Grand Coulee","WA","Washington","TRUE","","1756","4.6","53025","Grant","{""53025"": ""77.43"", ""53043"": ""16.08"", ""53017"": ""6.5""}","Grant|Lincoln|Douglas","53025|53043|53017","FALSE","FALSE","America/Los_Angeles"
-"99134","47.4301","-118.31124","Harrington","WA","Washington","TRUE","","542","1.0","53043","Lincoln","{""53043"": ""100""}","Lincoln","53043","FALSE","FALSE","America/Los_Angeles"
-"99135","47.66121","-119.09739","Hartline","WA","Washington","TRUE","","301","0.7","53025","Grant","{""53025"": ""100""}","Grant","53025","FALSE","FALSE","America/Los_Angeles"
-"99136","46.67473","-117.95542","Hay","WA","Washington","TRUE","","17","0.3","53075","Whitman","{""53075"": ""100""}","Whitman","53075","FALSE","FALSE","America/Los_Angeles"
-"99137","48.16826","-118.09022","Hunters","WA","Washington","TRUE","","327","1.6","53065","Stevens","{""53065"": ""100""}","Stevens","53065","FALSE","FALSE","America/Los_Angeles"
-"99138","48.22236","-118.37874","Inchelium","WA","Washington","TRUE","","1135","0.8","53019","Ferry","{""53019"": ""100""}","Ferry","53019","FALSE","FALSE","America/Los_Angeles"
-"99139","48.7346","-117.40668","Ione","WA","Washington","TRUE","","1301","2.5","53051","Pend Oreille","{""53051"": ""100""}","Pend Oreille","53051","FALSE","FALSE","America/Los_Angeles"
-"99140","48.11156","-118.67673","Keller","WA","Washington","TRUE","","432","0.4","53019","Ferry","{""53019"": ""100""}","Ferry","53019","FALSE","FALSE","America/Los_Angeles"
-"99141","48.73768","-118.14451","Kettle Falls","WA","Washington","TRUE","","5396","3.9","53065","Stevens","{""53065"": ""80.46"", ""53019"": ""19.54""}","Stevens|Ferry","53065|53019","FALSE","FALSE","America/Los_Angeles"
-"99143","46.73947","-117.85625","Lacrosse","WA","Washington","TRUE","","691","0.9","53075","Whitman","{""53075"": ""100""}","Whitman","53075","FALSE","FALSE","America/Los_Angeles"
-"99144","47.3777","-118.50423","Lamona","WA","Washington","TRUE","","18","0.2","53043","Lincoln","{""53043"": ""100""}","Lincoln","53043","FALSE","FALSE","America/Los_Angeles"
-"99146","48.9576","-118.29754","Laurier","WA","Washington","TRUE","","24","0.2","53019","Ferry","{""53019"": ""100""}","Ferry","53019","FALSE","FALSE","America/Los_Angeles"
-"99147","47.8395","-118.44258","Lincoln","WA","Washington","TRUE","","123","5.8","53043","Lincoln","{""53043"": ""100""}","Lincoln","53043","FALSE","FALSE","America/Los_Angeles"
-"99148","48.10251","-117.59825","Loon Lake","WA","Washington","TRUE","","1928","12.9","53065","Stevens","{""53065"": ""100""}","Stevens","53065","FALSE","FALSE","America/Los_Angeles"
-"99149","47.21719","-117.46406","Malden","WA","Washington","TRUE","","299","44.4","53075","Whitman","{""53075"": ""100""}","Whitman","53075","FALSE","FALSE","America/Los_Angeles"
-"99150","48.79435","-118.58291","Malo","WA","Washington","TRUE","","362","2.5","53019","Ferry","{""53019"": ""100""}","Ferry","53019","FALSE","FALSE","America/Los_Angeles"
-"99151","48.66449","-118.06362","Marcus","WA","Washington","TRUE","","102","325.1","53065","Stevens","{""53065"": ""100""}","Stevens","53065","FALSE","FALSE","America/Los_Angeles"
-"99152","48.84959","-117.39626","Metaline","WA","Washington","TRUE","","105","8.7","53051","Pend Oreille","{""53051"": ""100""}","Pend Oreille","53051","FALSE","FALSE","America/Los_Angeles"
-"99153","48.8515","-117.2127","Metaline Falls","WA","Washington","TRUE","","392","0.4","53051","Pend Oreille","{""53051"": ""100""}","Pend Oreille","53051","FALSE","FALSE","America/Los_Angeles"
-"99154","47.38973","-118.36596","Mohler","WA","Washington","TRUE","","31","0.6","53043","Lincoln","{""53043"": ""100""}","Lincoln","53043","FALSE","FALSE","America/Los_Angeles"
-"99155","48.25567","-118.95348","Nespelem","WA","Washington","TRUE","","1007","1.3","53047","Okanogan","{""53047"": ""98.74"", ""53019"": ""1.26""}","Okanogan|Ferry","53047|53019","FALSE","FALSE","America/Los_Angeles"
-"99156","48.1848","-117.19075","Newport","WA","Washington","TRUE","","8608","10.2","53051","Pend Oreille","{""53051"": ""98.5"", ""53063"": ""1.5""}","Pend Oreille|Spokane","53051|53063","FALSE","FALSE","America/Los_Angeles"
-"99157","48.92469","-117.81576","Northport","WA","Washington","TRUE","","736","3.9","53065","Stevens","{""53065"": ""100""}","Stevens","53065","FALSE","FALSE","America/Los_Angeles"
-"99158","47.13032","-117.24738","Oakesdale","WA","Washington","TRUE","","606","2.6","53075","Whitman","{""53075"": ""100""}","Whitman","53075","FALSE","FALSE","America/Los_Angeles"
-"99159","47.32943","-118.74247","Odessa","WA","Washington","TRUE","","1524","1.2","53043","Lincoln","{""53043"": ""87.42"", ""53001"": ""12.58""}","Lincoln|Adams","53043|53001","FALSE","FALSE","America/Los_Angeles"
-"99160","48.83875","-118.3063","Orient","WA","Washington","TRUE","","112","0.5","53019","Ferry","{""53019"": ""100""}","Ferry","53019","FALSE","FALSE","America/Los_Angeles"
-"99161","46.8982","-117.13047","Palouse","WA","Washington","TRUE","","1391","7.2","53075","Whitman","{""53075"": ""100""}","Whitman","53075","FALSE","FALSE","America/Los_Angeles"
-"99163","46.72893","-117.21485","Pullman","WA","Washington","TRUE","","35134","65.6","53075","Whitman","{""53075"": ""100""}","Whitman","53075","FALSE","FALSE","America/Los_Angeles"
-"99164","46.73104","-117.1522","Pullman","WA","Washington","TRUE","","0","0.0","53075","Whitman","{""53075"": ""0""}","Whitman","53075","FALSE","FALSE","America/Los_Angeles"
-"99166","48.5717","-118.64454","Republic","WA","Washington","TRUE","","3137","2.1","53019","Ferry","{""53019"": ""98.23"", ""53047"": ""1.77""}","Ferry|Okanogan","53019|53047","FALSE","FALSE","America/Los_Angeles"
-"99167","48.41723","-118.11899","Rice","WA","Washington","TRUE","","527","3.3","53065","Stevens","{""53065"": ""100""}","Stevens","53065","FALSE","FALSE","America/Los_Angeles"
-"99169","47.112","-118.35868","Ritzville","WA","Washington","TRUE","","2501","1.4","53001","Adams","{""53001"": ""98.5"", ""53043"": ""1.5""}","Adams|Lincoln","53001|53043","FALSE","FALSE","America/Los_Angeles"
-"99170","47.24762","-117.4022","Rosalia","WA","Washington","TRUE","","993","2.1","53075","Whitman","{""53075"": ""79.1"", ""53063"": ""20.9""}","Whitman|Spokane","53075|53063","FALSE","FALSE","America/Los_Angeles"
-"99171","47.10444","-117.65624","Saint John","WA","Washington","TRUE","","1160","1.7","53075","Whitman","{""53075"": ""100""}","Whitman","53075","FALSE","FALSE","America/Los_Angeles"
-"99173","48.03696","-117.86312","Springdale","WA","Washington","TRUE","","1673","4.9","53065","Stevens","{""53065"": ""100""}","Stevens","53065","FALSE","FALSE","America/Los_Angeles"
-"99174","47.01064","-117.3588","Steptoe","WA","Washington","TRUE","","56","160.9","53075","Whitman","{""53075"": ""100""}","Whitman","53075","FALSE","FALSE","America/Los_Angeles"
-"99176","47.08093","-117.42387","Thornton","WA","Washington","TRUE","","150","1.5","53075","Whitman","{""53075"": ""100""}","Whitman","53075","FALSE","FALSE","America/Los_Angeles"
-"99179","46.49006","-117.11898","Uniontown","WA","Washington","TRUE","","548","3.0","53075","Whitman","{""53075"": ""100""}","Whitman","53075","FALSE","FALSE","America/Los_Angeles"
-"99180","48.29579","-117.3285","Usk","WA","Washington","TRUE","","1301","4.9","53051","Pend Oreille","{""53051"": ""100""}","Pend Oreille","53051","FALSE","FALSE","America/Los_Angeles"
-"99181","48.14329","-117.76926","Valley","WA","Washington","TRUE","","1738","6.8","53065","Stevens","{""53065"": ""100""}","Stevens","53065","FALSE","FALSE","America/Los_Angeles"
-"99185","47.74592","-118.71951","Wilbur","WA","Washington","TRUE","","1252","1.8","53043","Lincoln","{""53043"": ""100""}","Lincoln","53043","FALSE","FALSE","America/Los_Angeles"
-"99201","47.66272","-117.43614","Spokane","WA","Washington","TRUE","","12886","1657.7","53063","Spokane","{""53063"": ""100""}","Spokane","53063","FALSE","FALSE","America/Los_Angeles"
-"99202","47.65743","-117.37908","Spokane","WA","Washington","TRUE","","20909","1314.5","53063","Spokane","{""53063"": ""100""}","Spokane","53063","FALSE","FALSE","America/Los_Angeles"
-"99203","47.6291","-117.40327","Spokane","WA","Washington","TRUE","","21174","1747.0","53063","Spokane","{""53063"": ""100""}","Spokane","53063","FALSE","FALSE","America/Los_Angeles"
-"99204","47.64564","-117.42712","Spokane","WA","Washington","TRUE","","6542","2240.4","53063","Spokane","{""53063"": ""100""}","Spokane","53063","FALSE","FALSE","America/Los_Angeles"
-"99205","47.69665","-117.44622","Spokane","WA","Washington","TRUE","","43617","1881.6","53063","Spokane","{""53063"": ""100""}","Spokane","53063","FALSE","FALSE","America/Los_Angeles"
-"99206","47.62899","-117.25487","Spokane","WA","Washington","TRUE","","38792","639.9","53063","Spokane","{""53063"": ""100""}","Spokane","53063","FALSE","FALSE","America/Los_Angeles"
-"99207","47.68889","-117.38782","Spokane","WA","Washington","TRUE","","30411","2155.6","53063","Spokane","{""53063"": ""100""}","Spokane","53063","FALSE","FALSE","America/Los_Angeles"
-"99208","47.77989","-117.46275","Spokane","WA","Washington","TRUE","","54917","431.9","53063","Spokane","{""53063"": ""100""}","Spokane","53063","FALSE","FALSE","America/Los_Angeles"
-"99212","47.66523","-117.30916","Spokane","WA","Washington","TRUE","","20409","649.2","53063","Spokane","{""53063"": ""100""}","Spokane","53063","FALSE","FALSE","America/Los_Angeles"
-"99216","47.67999","-117.20944","Spokane","WA","Washington","TRUE","","25296","731.4","53063","Spokane","{""53063"": ""100""}","Spokane","53063","FALSE","FALSE","America/Los_Angeles"
-"99217","47.73991","-117.2568","Spokane","WA","Washington","TRUE","","17544","132.8","53063","Spokane","{""53063"": ""100""}","Spokane","53063","FALSE","FALSE","America/Los_Angeles"
-"99218","47.75954","-117.40845","Spokane","WA","Washington","TRUE","","16885","889.9","53063","Spokane","{""53063"": ""100""}","Spokane","53063","FALSE","FALSE","America/Los_Angeles"
-"99223","47.59132","-117.34474","Spokane","WA","Washington","TRUE","","32213","434.4","53063","Spokane","{""53063"": ""100""}","Spokane","53063","FALSE","FALSE","America/Los_Angeles"
-"99224","47.64881","-117.53682","Spokane","WA","Washington","TRUE","","21695","71.5","53063","Spokane","{""53063"": ""100""}","Spokane","53063","FALSE","FALSE","America/Los_Angeles"
-"99301","46.38449","-118.94392","Pasco","WA","Washington","TRUE","","79819","66.3","53021","Franklin","{""53021"": ""100""}","Franklin","53021","FALSE","FALSE","America/Los_Angeles"
-"99320","46.26522","-119.48767","Benton City","WA","Washington","TRUE","","9947","27.7","53005","Benton","{""53005"": ""100""}","Benton","53005","FALSE","FALSE","America/Los_Angeles"
-"99321","46.87464","-119.89279","Beverly","WA","Washington","TRUE","","586","6.1","53025","Grant","{""53025"": ""100""}","Grant","53025","FALSE","FALSE","America/Los_Angeles"
-"99322","45.94405","-120.18078","Bickleton","WA","Washington","TRUE","","242","0.4","53039","Klickitat","{""53039"": ""100""}","Klickitat","53039","FALSE","FALSE","America/Los_Angeles"
-"99323","46.19237","-118.84285","Burbank","WA","Washington","TRUE","","3904","12.0","53071","Walla Walla","{""53071"": ""100""}","Walla Walla","53071","FALSE","FALSE","America/Los_Angeles"
-"99324","46.04264","-118.38662","College Place","WA","Washington","TRUE","","9737","1230.9","53071","Walla Walla","{""53071"": ""100""}","Walla Walla","53071","FALSE","FALSE","America/Los_Angeles"
-"99326","46.64977","-118.8522","Connell","WA","Washington","TRUE","","6394","9.0","53021","Franklin","{""53021"": ""99.54"", ""53001"": ""0.46""}","Franklin|Adams","53021|53001","FALSE","FALSE","America/Los_Angeles"
-"99328","46.25661","-117.86548","Dayton","WA","Washington","TRUE","","3715","2.2","53013","Columbia","{""53013"": ""100""}","Columbia","53013","FALSE","FALSE","America/Los_Angeles"
-"99329","46.15636","-118.14531","Dixie","WA","Washington","TRUE","","135","28.5","53071","Walla Walla","{""53071"": ""100""}","Walla Walla","53071","FALSE","FALSE","America/Los_Angeles"
-"99330","46.48982","-119.04317","Eltopia","WA","Washington","TRUE","","1073","5.4","53021","Franklin","{""53021"": ""100""}","Franklin","53021","FALSE","FALSE","America/Los_Angeles"
-"99333","46.69266","-118.15021","Hooper","WA","Washington","TRUE","","40","0.2","53075","Whitman","{""53075"": ""68"", ""53001"": ""32""}","Whitman|Adams","53075|53001","FALSE","FALSE","America/Los_Angeles"
-"99335","46.65368","-118.47453","Kahlotus","WA","Washington","TRUE","","292","0.7","53021","Franklin","{""53021"": ""100""}","Franklin","53021","FALSE","FALSE","America/Los_Angeles"
-"99336","46.21378","-119.17886","Kennewick","WA","Washington","TRUE","","51980","1505.3","53005","Benton","{""53005"": ""100""}","Benton","53005","FALSE","FALSE","America/Los_Angeles"
-"99337","46.07461","-119.08614","Kennewick","WA","Washington","TRUE","","32411","79.6","53005","Benton","{""53005"": ""100""}","Benton","53005","FALSE","FALSE","America/Los_Angeles"
-"99338","46.14795","-119.27355","Kennewick","WA","Washington","TRUE","","16553","96.2","53005","Benton","{""53005"": ""100""}","Benton","53005","FALSE","FALSE","America/Los_Angeles"
-"99341","46.91289","-118.65311","Lind","WA","Washington","TRUE","","787","0.8","53001","Adams","{""53001"": ""100""}","Adams","53001","FALSE","FALSE","America/Los_Angeles"
-"99343","46.59183","-119.17937","Mesa","WA","Washington","TRUE","","3623","8.5","53021","Franklin","{""53021"": ""100""}","Franklin","53021","FALSE","FALSE","America/Los_Angeles"
-"99344","46.81646","-119.17787","Othello","WA","Washington","TRUE","","17718","15.1","53001","Adams","{""53001"": ""87.27"", ""53025"": ""8.3"", ""53021"": ""4.44""}","Adams|Grant|Franklin","53001|53025|53021","FALSE","FALSE","America/Los_Angeles"
-"99345","45.95266","-119.68965","Paterson","WA","Washington","TRUE","","133","0.3","53005","Benton","{""53005"": ""100""}","Benton","53005","FALSE","FALSE","America/Los_Angeles"
-"99346","45.99829","-119.30493","Plymouth","WA","Washington","TRUE","","548","1.7","53005","Benton","{""53005"": ""100""}","Benton","53005","FALSE","FALSE","America/Los_Angeles"
-"99347","46.4278","-117.56644","Pomeroy","WA","Washington","TRUE","","2241","1.1","53023","Garfield","{""53023"": ""95.64"", ""53013"": ""3.58"", ""53075"": ""0.78""}","Garfield|Columbia|Whitman","53023|53013|53075","FALSE","FALSE","America/Los_Angeles"
-"99348","46.38968","-118.45178","Prescott","WA","Washington","TRUE","","1402","1.0","53071","Walla Walla","{""53071"": ""98.75"", ""53013"": ""1.25""}","Walla Walla|Columbia","53071|53013","FALSE","FALSE","America/Los_Angeles"
-"99349","46.73155","-119.70123","Mattawa","WA","Washington","TRUE","","9251","13.3","53025","Grant","{""53025"": ""100""}","Grant","53025","FALSE","FALSE","America/Los_Angeles"
-"99350","46.18027","-119.70516","Prosser","WA","Washington","TRUE","","13488","9.1","53005","Benton","{""53005"": ""97.83"", ""53039"": ""1.43"", ""53077"": ""0.73""}","Benton|Klickitat|Yakima","53005|53039|53077","FALSE","FALSE","America/Los_Angeles"
-"99352","46.25225","-119.28785","Richland","WA","Washington","TRUE","","31918","584.7","53005","Benton","{""53005"": ""100""}","Benton","53005","FALSE","FALSE","America/Los_Angeles"
-"99353","46.3167","-119.37926","West Richland","WA","Washington","TRUE","","16150","238.2","53005","Benton","{""53005"": ""100""}","Benton","53005","FALSE","FALSE","America/Los_Angeles"
-"99354","46.32566","-119.3067","Richland","WA","Washington","TRUE","","23742","452.1","53005","Benton","{""53005"": ""100""}","Benton","53005","FALSE","FALSE","America/Los_Angeles"
-"99356","45.82125","-120.31507","Roosevelt","WA","Washington","TRUE","","167","0.3","53039","Klickitat","{""53039"": ""100""}","Klickitat","53039","FALSE","FALSE","America/Los_Angeles"
-"99357","46.89138","-119.66058","Royal City","WA","Washington","TRUE","","4183","7.0","53025","Grant","{""53025"": ""100""}","Grant","53025","FALSE","FALSE","America/Los_Angeles"
-"99359","46.52731","-118.11115","Starbuck","WA","Washington","TRUE","","141","0.7","53013","Columbia","{""53013"": ""98.73"", ""53021"": ""1.27""}","Columbia|Franklin","53013|53021","FALSE","FALSE","America/Los_Angeles"
-"99360","46.09016","-118.66296","Touchet","WA","Washington","TRUE","","1585","3.9","53071","Walla Walla","{""53071"": ""100""}","Walla Walla","53071","FALSE","FALSE","America/Los_Angeles"
-"99361","46.23673","-118.1439","Waitsburg","WA","Washington","TRUE","","1854","3.2","53071","Walla Walla","{""53071"": ""95.27"", ""53013"": ""4.73""}","Walla Walla|Columbia","53071|53013","FALSE","FALSE","America/Los_Angeles"
-"99362","46.08931","-118.30738","Walla Walla","WA","Washington","TRUE","","41515","50.0","53071","Walla Walla","{""53071"": ""99.89"", ""41059"": ""0.11""}","Walla Walla|Umatilla","53071|41059","FALSE","FALSE","America/Los_Angeles"
-"99363","46.06652","-118.88846","Wallula","WA","Washington","TRUE","","350","3.0","53071","Walla Walla","{""53071"": ""100""}","Walla Walla","53071","FALSE","FALSE","America/Los_Angeles"
-"99371","46.80678","-118.31679","Washtucna","WA","Washington","TRUE","","325","0.6","53001","Adams","{""53001"": ""98.71"", ""53021"": ""1.29""}","Adams|Franklin","53001|53021","FALSE","FALSE","America/Los_Angeles"
-"99401","46.08744","-117.25143","Anatone","WA","Washington","TRUE","","642","1.1","53003","Asotin","{""53003"": ""100""}","Asotin","53003","FALSE","FALSE","America/Los_Angeles"
-"99402","46.19394","-117.14736","Asotin","WA","Washington","TRUE","","1325","1.8","53003","Asotin","{""53003"": ""100""}","Asotin","53003","FALSE","FALSE","America/Los_Angeles"
-"99403","46.37243","-117.25273","Clarkston","WA","Washington","TRUE","","20489","51.8","53003","Asotin","{""53003"": ""99.63"", ""53023"": ""0.37""}","Asotin|Garfield","53003|53023","FALSE","FALSE","America/Los_Angeles"
-"99501","61.22035","-149.85702","Anchorage","AK","Alaska","TRUE","","16679","927.8","02020","Anchorage","{""02020"": ""100""}","Anchorage","02020","FALSE","FALSE","America/Anchorage"
-"99502","61.1633","-149.98643","Anchorage","AK","Alaska","TRUE","","25268","553.3","02020","Anchorage","{""02020"": ""100""}","Anchorage","02020","FALSE","FALSE","America/Anchorage"
-"99503","61.90805","-156.85772","Anchorage","AK","Alaska","TRUE","","12804","239.0","02020","Anchorage","{""02020"": ""99.93"", ""02050"": ""0.07""}","Anchorage|Bethel","02020|02050","FALSE","FALSE","America/Anchorage"
-"99504","61.20399","-149.74703","Anchorage","AK","Alaska","TRUE","","42341","2566.5","02020","Anchorage","{""02020"": ""100""}","Anchorage","02020","FALSE","FALSE","America/Anchorage"
-"99505","61.26576","-149.63173","Jber","AK","Alaska","TRUE","","6245","105.4","02020","Anchorage","{""02020"": ""100""}","Anchorage","02020","FALSE","FALSE","America/Anchorage"
-"99506","61.26308","-149.80536","Jber","AK","Alaska","TRUE","","6671","145.4","02020","Anchorage","{""02020"": ""100""}","Anchorage","02020","FALSE","FALSE","America/Anchorage"
-"99507","61.14974","-149.77599","Anchorage","AK","Alaska","TRUE","","37109","653.4","02020","Anchorage","{""02020"": ""100""}","Anchorage","02020","FALSE","FALSE","America/Anchorage"
-"99508","61.2007","-149.81448","Anchorage","AK","Alaska","TRUE","","36560","2033.6","02020","Anchorage","{""02020"": ""100""}","Anchorage","02020","FALSE","FALSE","America/Anchorage"
-"99510","70.13852","-149.9597","Anchorage","AK","Alaska","TRUE","","1077","0.3","02185","North Slope","{""02185"": ""100""}","North Slope","02185","FALSE","FALSE","America/Anchorage"
-"99513","61.21477","-149.88566","Anchorage","AK","Alaska","TRUE","","0","0.0","02020","Anchorage","{""02020"": ""0""}","Anchorage","02020","FALSE","FALSE","America/Anchorage"
-"99515","61.11738","-149.88888","Anchorage","AK","Alaska","TRUE","","22950","837.3","02020","Anchorage","{""02020"": ""100""}","Anchorage","02020","FALSE","FALSE","America/Anchorage"
-"99516","61.07142","-149.71837","Anchorage","AK","Alaska","TRUE","","20838","187.2","02020","Anchorage","{""02020"": ""100""}","Anchorage","02020","FALSE","FALSE","America/Anchorage"
-"99517","61.19019","-149.9371","Anchorage","AK","Alaska","TRUE","","15750","1856.3","02020","Anchorage","{""02020"": ""100""}","Anchorage","02020","FALSE","FALSE","America/Anchorage"
-"99518","61.15958","-149.88479","Anchorage","AK","Alaska","TRUE","","10717","1094.8","02020","Anchorage","{""02020"": ""100""}","Anchorage","02020","FALSE","FALSE","America/Anchorage"
-"99519","68.93806","-146.32364","Anchorage","AK","Alaska","TRUE","","436","0.0","02185","North Slope","{""02185"": ""100""}","North Slope","02185","FALSE","FALSE","America/Anchorage"
-"99540","60.98608","-149.43046","Indian","AK","Alaska","TRUE","","332","2.5","02020","Anchorage","{""02020"": ""100""}","Anchorage","02020","FALSE","FALSE","America/Anchorage"
-"99546","51.84287","-176.63138","Adak","AK","Alaska","TRUE","","226","6.3","02016","Aleutians West","{""02016"": ""100""}","Aleutians West","02016","FALSE","FALSE","America/Adak"
-"99547","52.22951","-174.20967","Atka","AK","Alaska","TRUE","","43","2.0","02016","Aleutians West","{""02016"": ""100""}","Aleutians West","02016","FALSE","FALSE","America/Adak"
-"99548","56.24475","-158.75781","Chignik Lake","AK","Alaska","TRUE","","49","2.2","02164","Lake and Peninsula","{""02164"": ""100""}","Lake and Peninsula","02164","FALSE","FALSE","America/Anchorage"
-"99549","56.94163","-158.60007","Port Heiden","AK","Alaska","TRUE","","88","0.7","02164","Lake and Peninsula","{""02164"": ""100""}","Lake and Peninsula","02164","FALSE","FALSE","America/Anchorage"
-"99550","57.90188","-153.02841","Port Lions","AK","Alaska","TRUE","","178","0.8","02150","Kodiak Island","{""02150"": ""100""}","Kodiak Island","02150","FALSE","FALSE","America/Anchorage"
-"99551","60.90927","-161.42021","Akiachak","AK","Alaska","TRUE","","573","121.7","02050","Bethel","{""02050"": ""100""}","Bethel","02050","FALSE","FALSE","America/Anchorage"
-"99552","60.90988","-161.22672","Akiak","AK","Alaska","TRUE","","381","163.6","02050","Bethel","{""02050"": ""100""}","Bethel","02050","FALSE","FALSE","America/Anchorage"
-"99553","54.12863","-165.80591","Akutan","AK","Alaska","TRUE","","731","20.4","02013","Aleutians East","{""02013"": ""100""}","Aleutians East","02013","FALSE","FALSE","America/Nome"
-"99554","62.69435","-164.64754","Alakanuk","AK","Alaska","TRUE","","813","14.0","02158","Kusilvak","{""02158"": 100}","Kusilvak","02158","FALSE","FALSE","America/Nome"
-"99555","59.26833","-158.62828","Aleknagik","AK","Alaska","TRUE","","179","3.8","02070","Dillingham","{""02070"": ""100""}","Dillingham","02070","FALSE","FALSE","America/Anchorage"
-"99556","59.86781","-151.49527","Anchor Point","AK","Alaska","TRUE","","2599","2.8","02122","Kenai Peninsula","{""02122"": ""100""}","Kenai Peninsula","02122","FALSE","FALSE","America/Anchorage"
-"99557","61.44112","-156.01864","Aniak","AK","Alaska","TRUE","","700","0.0","02050","Bethel","{""02050"": ""100""}","Bethel","02050","FALSE","FALSE","America/Anchorage"
-"99558","62.6382","-160.21785","Anvik","AK","Alaska","TRUE","","105","5.7","02290","Yukon-Koyukuk","{""02290"": ""100""}","Yukon-Koyukuk","02290","FALSE","FALSE","America/Anchorage"
-"99559","60.65377","-161.90541","Bethel","AK","Alaska","TRUE","","7857","52.3","02050","Bethel","{""02050"": ""100""}","Bethel","02050","FALSE","FALSE","America/Anchorage"
-"99561","60.15137","-164.25198","Chefornak","AK","Alaska","TRUE","","483","34.8","02050","Bethel","{""02050"": ""100""}","Bethel","02050","FALSE","FALSE","America/Nome"
-"99563","61.52911","-165.59086","Chevak","AK","Alaska","TRUE","","1037","413.5","02158","Kusilvak","{""02158"": 100}","Kusilvak","02158","FALSE","FALSE","America/Nome"
-"99564","56.29679","-158.41292","Chignik","AK","Alaska","TRUE","","57","1.9","02164","Lake and Peninsula","{""02164"": ""100""}","Lake and Peninsula","02164","FALSE","FALSE","America/Anchorage"
-"99565","56.30377","-158.52926","Chignik Lagoon","AK","Alaska","TRUE","","69","1.9","02164","Lake and Peninsula","{""02164"": ""100""}","Lake and Peninsula","02164","FALSE","FALSE","America/Anchorage"
-"99566","61.28097","-142.78996","Chitina","AK","Alaska","TRUE","","61","0.0","02261","Valdez-Cordova","{""02261"": ""100""}","Valdez-Cordova","02261","FALSE","FALSE","America/Anchorage"
-"99567","61.28823","-148.89429","Chugiak","AK","Alaska","TRUE","","8843","5.5","02020","Anchorage","{""02020"": ""100""}","Anchorage","02020","FALSE","FALSE","America/Anchorage"
-"99568","60.21181","-151.39605","Clam Gulch","AK","Alaska","TRUE","","365","7.3","02122","Kenai Peninsula","{""02122"": ""100""}","Kenai Peninsula","02122","FALSE","FALSE","America/Anchorage"
-"99569","58.81725","-158.52855","Clarks Point","AK","Alaska","TRUE","","44","2.3","02070","Dillingham","{""02070"": ""100""}","Dillingham","02070","FALSE","FALSE","America/Anchorage"
-"99571","55.38499","-162.44859","Cold Bay","AK","Alaska","TRUE","","142","1.9","02013","Aleutians East","{""02013"": ""100""}","Aleutians East","02013","FALSE","FALSE","America/Nome"
-"99572","60.50805","-149.93761","Cooper Landing","AK","Alaska","TRUE","","488","1.4","02122","Kenai Peninsula","{""02122"": ""100""}","Kenai Peninsula","02122","FALSE","FALSE","America/Anchorage"
-"99573","61.62257","-145.99906","Copper Center","AK","Alaska","TRUE","","527","0.1","02261","Valdez-Cordova","{""02261"": ""100""}","Valdez-Cordova","02261","FALSE","FALSE","America/Anchorage"
-"99574","60.63145","-146.0407","Cordova","AK","Alaska","TRUE","","2903","0.5","02261","Valdez-Cordova","{""02261"": ""100""}","Valdez-Cordova","02261","FALSE","FALSE","America/Anchorage"
-"99575","61.8439","-158.10821","Crooked Creek","AK","Alaska","TRUE","","75","0.3","02050","Bethel","{""02050"": ""100""}","Bethel","02050","FALSE","FALSE","America/Anchorage"
-"99576","59.99003","-158.39441","Dillingham","AK","Alaska","TRUE","","2499","0.1","02070","Dillingham","{""02070"": ""100""}","Dillingham","02070","FALSE","FALSE","America/Anchorage"
-"99577","61.19692","-149.24656","Eagle River","AK","Alaska","TRUE","","28462","51.2","02020","Anchorage","{""02020"": ""100""}","Anchorage","02020","FALSE","FALSE","America/Anchorage"
-"99578","60.21583","-162.03136","Eek","AK","Alaska","TRUE","","549","237.4","02050","Bethel","{""02050"": ""100""}","Bethel","02050","FALSE","FALSE","America/Nome"
-"99579","58.20676","-157.37317","Egegik","AK","Alaska","TRUE","","58","0.9","02164","Lake and Peninsula","{""02164"": ""100""}","Lake and Peninsula","02164","FALSE","FALSE","America/Anchorage"
-"99580","59.36499","-157.49239","Ekwok","AK","Alaska","TRUE","","78","3.2","02070","Dillingham","{""02070"": ""100""}","Dillingham","02070","FALSE","FALSE","America/Anchorage"
-"99581","62.78177","-164.53347","Emmonak","AK","Alaska","TRUE","","866","52.6","02158","Kusilvak","{""02158"": 100}","Kusilvak","02158","FALSE","FALSE","America/Nome"
-"99583","54.84751","-163.40253","False Pass","AK","Alaska","TRUE","","56","1.7","02013","Aleutians East","{""02013"": ""100""}","Aleutians East","02013","FALSE","FALSE","America/Nome"
-"99585","61.9287","-162.26794","Marshall","AK","Alaska","TRUE","","261","2.0","02158","Kusilvak","{""02158"": 100}","Kusilvak","02158","FALSE","FALSE","America/Nome"
-"99586","62.66801","-144.11183","Gakona","AK","Alaska","TRUE","","332","0.1","02261","Valdez-Cordova","{""02261"": ""100""}","Valdez-Cordova","02261","FALSE","FALSE","America/Anchorage"
-"99587","60.92414","-148.92413","Girdwood","AK","Alaska","TRUE","","1742","2.8","02020","Anchorage","{""02020"": ""100""}","Anchorage","02020","FALSE","FALSE","America/Anchorage"
-"99588","62.3338","-146.72325","Glennallen","AK","Alaska","TRUE","","906","0.2","02261","Valdez-Cordova","{""02261"": ""91.22"", ""02170"": ""8.78""}","Valdez-Cordova|Matanuska-Susitna","02261|02170","FALSE","FALSE","America/Anchorage"
-"99589","59.12749","-161.56874","Goodnews Bay","AK","Alaska","TRUE","","182","23.7","02050","Bethel","{""02050"": ""100""}","Bethel","02050","FALSE","FALSE","America/Anchorage"
-"99590","62.89938","-160.10742","Grayling","AK","Alaska","TRUE","","183","6.5","02290","Yukon-Koyukuk","{""02290"": ""100""}","Yukon-Koyukuk","02290","FALSE","FALSE","America/Anchorage"
-"99591","56.58095","-169.6154","Saint George Island","AK","Alaska","TRUE","","76","0.8","02016","Aleutians West","{""02016"": ""100""}","Aleutians West","02016","FALSE","FALSE","America/Nome"
-"99602","62.18471","-159.84482","Holy Cross","AK","Alaska","TRUE","","220","3.3","02290","Yukon-Koyukuk","{""02290"": ""100""}","Yukon-Koyukuk","02290","FALSE","FALSE","America/Anchorage"
-"99603","59.52457","-151.22871","Homer","AK","Alaska","TRUE","","10597","3.8","02122","Kenai Peninsula","{""02122"": ""100""}","Kenai Peninsula","02122","FALSE","FALSE","America/Anchorage"
-"99604","61.52785","-166.11506","Hooper Bay","AK","Alaska","TRUE","","1141","55.4","02158","Kusilvak","{""02158"": 100}","Kusilvak","02158","FALSE","FALSE","America/Nome"
-"99605","60.79358","-149.54918","Hope","AK","Alaska","TRUE","","102","0.1","02122","Kenai Peninsula","{""02122"": ""100""}","Kenai Peninsula","02122","FALSE","FALSE","America/Anchorage"
-"99606","59.79399","-154.64438","Iliamna","AK","Alaska","TRUE","","366","0.7","02164","Lake and Peninsula","{""02164"": ""100""}","Lake and Peninsula","02164","FALSE","FALSE","America/Anchorage"
-"99607","61.75722","-159.78569","Kalskag","AK","Alaska","TRUE","","236","0.1","02050","Bethel","{""02050"": ""100""}","Bethel","02050","FALSE","FALSE","America/Anchorage"
-"99609","60.87848","-162.52724","Kasigluk","AK","Alaska","TRUE","","543","17.8","02050","Bethel","{""02050"": ""100""}","Bethel","02050","FALSE","FALSE","America/Nome"
-"99610","60.24933","-150.42907","Kasilof","AK","Alaska","TRUE","","2101","0.9","02122","Kenai Peninsula","{""02122"": ""100""}","Kenai Peninsula","02122","FALSE","FALSE","America/Anchorage"
-"99611","60.71833","-150.98582","Kenai","AK","Alaska","TRUE","","15366","18.2","02122","Kenai Peninsula","{""02122"": ""100""}","Kenai Peninsula","02122","FALSE","FALSE","America/Anchorage"
-"99612","55.06329","-162.28781","King Cove","AK","Alaska","TRUE","","1147","37.7","02013","Aleutians East","{""02013"": ""100""}","Aleutians East","02013","FALSE","FALSE","America/Nome"
-"99613","58.98855","-155.56021","King Salmon","AK","Alaska","TRUE","","439","0.0","02060","Bristol Bay","{""02060"": ""86.18"", ""02164"": ""13.82""}","Bristol Bay|Lake and Peninsula","02060|02164","FALSE","FALSE","America/Anchorage"
-"99614","59.93729","-164.06156","Kipnuk","AK","Alaska","TRUE","","511","9.7","02050","Bethel","{""02050"": ""100""}","Bethel","02050","FALSE","FALSE","America/Nome"
-"99615","57.58324","-153.40116","Kodiak","AK","Alaska","TRUE","","12839","1.2","02150","Kodiak Island","{""02150"": ""100""}","Kodiak Island","02150","FALSE","FALSE","America/Anchorage"
-"99620","63.02924","-163.54621","Kotlik","AK","Alaska","TRUE","","853","136.4","02158","Kusilvak","{""02158"": 100}","Kusilvak","02158","FALSE","FALSE","America/Nome"
-"99621","60.79526","-161.40056","Kwethluk","AK","Alaska","TRUE","","613","24.7","02050","Bethel","{""02050"": ""100""}","Bethel","02050","FALSE","FALSE","America/Anchorage"
-"99622","59.87422","-163.20433","Kwigillingok","AK","Alaska","TRUE","","399","10.0","02050","Bethel","{""02050"": ""100""}","Bethel","02050","FALSE","FALSE","America/Nome"
-"99624","57.50398","-153.907","Larsen Bay","AK","Alaska","TRUE","","42","1.1","02150","Kodiak Island","{""02150"": ""100""}","Kodiak Island","02150","FALSE","FALSE","America/Anchorage"
-"99625","59.28919","-156.65062","Levelock","AK","Alaska","TRUE","","67","0.0","02164","Lake and Peninsula","{""02164"": ""100""}","Lake and Peninsula","02164","FALSE","FALSE","America/Anchorage"
-"99626","61.51702","-160.3647","Lower Kalskag","AK","Alaska","TRUE","","270","113.7","02050","Bethel","{""02050"": ""100""}","Bethel","02050","FALSE","FALSE","America/Anchorage"
-"99627","63.53161","-154.62942","McGrath","AK","Alaska","TRUE","","379","0.0","02290","Yukon-Koyukuk","{""02290"": ""100""}","Yukon-Koyukuk","02290","FALSE","FALSE","America/Anchorage"
-"99628","58.95135","-159.17597","Manokotak","AK","Alaska","TRUE","","733","0.2","02070","Dillingham","{""02070"": ""100""}","Dillingham","02070","FALSE","FALSE","America/Anchorage"
-"99630","60.3719","-166.26399","Mekoryuk","AK","Alaska","TRUE","","248","15.0","02050","Bethel","{""02050"": ""100""}","Bethel","02050","FALSE","FALSE","America/Nome"
-"99631","60.6149","-149.40537","Moose Pass","AK","Alaska","TRUE","","331","0.3","02122","Kenai Peninsula","{""02122"": ""100""}","Kenai Peninsula","02122","FALSE","FALSE","America/Anchorage"
-"99632","62.11232","-163.66453","Mountain Village","AK","Alaska","TRUE","","784","12.0","02158","Kusilvak","{""02158"": 100}","Kusilvak","02158","FALSE","FALSE","America/Nome"
-"99633","58.78297","-156.8984","Naknek","AK","Alaska","TRUE","","468","2.2","02060","Bristol Bay","{""02060"": ""100""}","Bristol Bay","02060","FALSE","FALSE","America/Anchorage"
-"99634","60.6884","-161.9884","Napakiak","AK","Alaska","TRUE","","400","40.1","02050","Bethel","{""02050"": ""100""}","Bethel","02050","FALSE","FALSE","America/Anchorage"
-"99636","59.48829","-157.29135","New Stuyahok","AK","Alaska","TRUE","","546","9.6","02070","Dillingham","{""02070"": ""100""}","Dillingham","02070","FALSE","FALSE","America/Anchorage"
-"99637","60.54299","-165.14307","Toksook Bay","AK","Alaska","TRUE","","546","7.0","02050","Bethel","{""02050"": ""100""}","Bethel","02050","FALSE","FALSE","America/Nome"
-"99638","52.89995","-168.93738","Nikolski","AK","Alaska","TRUE","","21","0.4","02016","Aleutians West","{""02016"": ""100""}","Aleutians West","02016","FALSE","FALSE","America/Nome"
-"99639","60.06779","-151.40405","Ninilchik","AK","Alaska","TRUE","","1111","1.9","02122","Kenai Peninsula","{""02122"": ""100""}","Kenai Peninsula","02122","FALSE","FALSE","America/Anchorage"
-"99640","60.30969","-155.22855","Nondalton","AK","Alaska","TRUE","","138","0.0","02164","Lake and Peninsula","{""02164"": ""100""}","Lake and Peninsula","02164","FALSE","FALSE","America/Anchorage"
-"99641","60.88727","-162.46287","Nunapitchuk","AK","Alaska","TRUE","","990","83.1","02050","Bethel","{""02050"": ""100""}","Bethel","02050","FALSE","FALSE","America/Nome"
-"99643","57.21747","-153.34422","Old Harbor","AK","Alaska","TRUE","","231","4.4","02150","Kodiak Island","{""02150"": ""100""}","Kodiak Island","02150","FALSE","FALSE","America/Anchorage"
-"99644","57.9241","-152.42219","Ouzinkie","AK","Alaska","TRUE","","161","3.8","02150","Kodiak Island","{""02150"": ""100""}","Kodiak Island","02150","FALSE","FALSE","America/Anchorage"
-"99645","61.6303","-148.98707","Palmer","AK","Alaska","TRUE","","30540","26.7","02170","Matanuska-Susitna","{""02170"": ""100""}","Matanuska-Susitna","02170","FALSE","FALSE","America/Anchorage"
-"99647","59.86805","-154.07573","Pedro Bay","AK","Alaska","TRUE","","31","0.1","02164","Lake and Peninsula","{""02164"": ""100""}","Lake and Peninsula","02164","FALSE","FALSE","America/Anchorage"
-"99648","55.93061","-159.15742","Perryville","AK","Alaska","TRUE","","97","3.4","02164","Lake and Peninsula","{""02164"": ""100""}","Lake and Peninsula","02164","FALSE","FALSE","America/Anchorage"
-"99649","57.51254","-157.32341","Pilot Point","AK","Alaska","TRUE","","110","0.4","02164","Lake and Peninsula","{""02164"": ""100""}","Lake and Peninsula","02164","FALSE","FALSE","America/Anchorage"
-"99650","61.94214","-162.88555","Pilot Station","AK","Alaska","TRUE","","573","132.0","02158","Kusilvak","{""02158"": 100}","Kusilvak","02158","FALSE","FALSE","America/Nome"
-"99651","59.00994","-161.71141","Platinum","AK","Alaska","TRUE","","13","0.2","02050","Bethel","{""02050"": ""100""}","Bethel","02050","FALSE","FALSE","America/Anchorage"
-"99652","61.53464","-149.97233","Big Lake","AK","Alaska","TRUE","","3079","10.2","02170","Matanuska-Susitna","{""02170"": ""100""}","Matanuska-Susitna","02170","FALSE","FALSE","America/Anchorage"
-"99653","60.19559","-154.32566","Port Alsworth","AK","Alaska","TRUE","","134","2.3","02164","Lake and Peninsula","{""02164"": ""100""}","Lake and Peninsula","02164","FALSE","FALSE","America/Anchorage"
-"99654","61.45483","-149.90046","Wasilla","AK","Alaska","TRUE","","64062","49.7","02170","Matanuska-Susitna","{""02170"": ""100""}","Matanuska-Susitna","02170","FALSE","FALSE","America/Anchorage"
-"99655","59.74746","-161.88869","Quinhagak","AK","Alaska","TRUE","","876","126.7","02050","Bethel","{""02050"": ""100""}","Bethel","02050","FALSE","FALSE","America/Anchorage"
-"99656","61.85716","-157.54468","Red Devil","AK","Alaska","TRUE","","23","0.1","02050","Bethel","{""02050"": ""100""}","Bethel","02050","FALSE","FALSE","America/Anchorage"
-"99657","61.77418","-161.39436","Russian Mission","AK","Alaska","TRUE","","257","0.1","02158","Kusilvak","{""02158"": 100}","Kusilvak","02158","FALSE","FALSE","America/Anchorage"
-"99658","62.07635","-163.28385","Saint Marys","AK","Alaska","TRUE","","902","8.2","02158","Kusilvak","{""02158"": 100}","Kusilvak","02158","FALSE","FALSE","America/Nome"
-"99659","63.4738","-162.12295","Saint Michael","AK","Alaska","TRUE","","427","8.8","02180","Nome","{""02180"": ""100""}","Nome","02180","FALSE","FALSE","America/Nome"
-"99660","57.17997","-170.27905","Saint Paul Island","AK","Alaska","TRUE","","395","3.6","02016","Aleutians West","{""02016"": ""100""}","Aleutians West","02016","FALSE","FALSE","America/Nome"
-"99661","55.27154","-160.67506","Sand Point","AK","Alaska","TRUE","","1309","2.8","02013","Aleutians East","{""02013"": ""100""}","Aleutians East","02013","FALSE","FALSE","America/Anchorage"
-"99662","61.79181","-165.96115","Scammon Bay","AK","Alaska","TRUE","","605","32.6","02158","Kusilvak","{""02158"": 100}","Kusilvak","02158","FALSE","FALSE","America/Nome"
-"99663","59.39411","-151.62731","Seldovia","AK","Alaska","TRUE","","365","1.2","02122","Kenai Peninsula","{""02122"": ""100""}","Kenai Peninsula","02122","FALSE","FALSE","America/Anchorage"
-"99664","60.10787","-149.48485","Seward","AK","Alaska","TRUE","","4309","0.6","02122","Kenai Peninsula","{""02122"": ""100""}","Kenai Peninsula","02122","FALSE","FALSE","America/Anchorage"
-"99665","62.64632","-159.52715","Shageluk","AK","Alaska","TRUE","","61","12.2","02290","Yukon-Koyukuk","{""02290"": ""100""}","Yukon-Koyukuk","02290","FALSE","FALSE","America/Anchorage"
-"99666","62.45302","-165.09876","Nunam Iqua","AK","Alaska","TRUE","","158","0.7","02158","Kusilvak","{""02158"": 100}","Kusilvak","02158","FALSE","FALSE","America/Nome"
-"99667","61.82399","-151.78293","Skwentna","AK","Alaska","TRUE","","83","0.0","02170","Matanuska-Susitna","{""02170"": ""100""}","Matanuska-Susitna","02170","FALSE","FALSE","America/Anchorage"
-"99668","61.68735","-157.13723","Sleetmute","AK","Alaska","TRUE","","94","2.5","02050","Bethel","{""02050"": ""100""}","Bethel","02050","FALSE","FALSE","America/Anchorage"
-"99669","60.41451","-151.00342","Soldotna","AK","Alaska","TRUE","","17014","27.1","02122","Kenai Peninsula","{""02122"": ""100""}","Kenai Peninsula","02122","FALSE","FALSE","America/Anchorage"
-"99670","58.66586","-156.97213","South Naknek","AK","Alaska","TRUE","","46","0.2","02060","Bristol Bay","{""02060"": ""100""}","Bristol Bay","02060","FALSE","FALSE","America/Anchorage"
-"99671","63.48182","-162.25352","Stebbins","AK","Alaska","TRUE","","615","9.9","02180","Nome","{""02180"": ""100""}","Nome","02180","FALSE","FALSE","America/Nome"
-"99672","60.73292","-150.72816","Sterling","AK","Alaska","TRUE","","3190","4.3","02122","Kenai Peninsula","{""02122"": ""100""}","Kenai Peninsula","02122","FALSE","FALSE","America/Anchorage"
-"99674","61.70957","-148.16","Sutton","AK","Alaska","TRUE","","1401","0.5","02170","Matanuska-Susitna","{""02170"": ""100""}","Matanuska-Susitna","02170","FALSE","FALSE","America/Anchorage"
-"99676","62.45788","-149.7039","Talkeetna","AK","Alaska","TRUE","","1721","0.7","02170","Matanuska-Susitna","{""02170"": ""100""}","Matanuska-Susitna","02170","FALSE","FALSE","America/Anchorage"
-"99677","60.89214","-146.67253","Tatitlek","AK","Alaska","TRUE","","73","3.9","02261","Valdez-Cordova","{""02261"": ""100""}","Valdez-Cordova","02261","FALSE","FALSE","America/Anchorage"
-"99678","59.33283","-160.10846","Togiak","AK","Alaska","TRUE","","882","0.2","02070","Dillingham","{""02070"": ""100""}","Dillingham","02070","FALSE","FALSE","America/Anchorage"
-"99679","61.10123","-160.94452","Tuluksak","AK","Alaska","TRUE","","319","80.2","02050","Bethel","{""02050"": ""100""}","Bethel","02050","FALSE","FALSE","America/Anchorage"
-"99680","60.38434","-162.68382","Tuntutuliak","AK","Alaska","TRUE","","675","2.2","02050","Bethel","{""02050"": ""100""}","Bethel","02050","FALSE","FALSE","America/Nome"
-"99681","60.60681","-165.12855","Tununak","AK","Alaska","TRUE","","401","4.7","02050","Bethel","{""02050"": ""100""}","Bethel","02050","FALSE","FALSE","America/Nome"
-"99682","60.62609","-152.78508","Tyonek","AK","Alaska","TRUE","","526","0.0","02122","Kenai Peninsula","{""02122"": ""100""}","Kenai Peninsula","02122","FALSE","FALSE","America/Anchorage"
-"99683","62.5018","-151.00458","Trapper Creek","AK","Alaska","TRUE","","416","0.1","02170","Matanuska-Susitna","{""02170"": ""100""}","Matanuska-Susitna","02170","FALSE","FALSE","America/Anchorage"
-"99684","64.08944","-160.3305","Unalakleet","AK","Alaska","TRUE","","713","0.4","02180","Nome","{""02180"": ""100""}","Nome","02180","FALSE","FALSE","America/Anchorage"
-"99685","53.876","-166.47449","Unalaska","AK","Alaska","TRUE","","4505","29.3","02016","Aleutians West","{""02016"": ""100""}","Aleutians West","02016","FALSE","FALSE","America/Nome"
-"99686","61.12201","-146.82103","Valdez","AK","Alaska","TRUE","","3869","0.5","02261","Valdez-Cordova","{""02261"": ""100""}","Valdez-Cordova","02261","FALSE","FALSE","America/Anchorage"
-"99688","61.90932","-150.03682","Willow","AK","Alaska","TRUE","","2541","0.6","02170","Matanuska-Susitna","{""02170"": ""100""}","Matanuska-Susitna","02170","FALSE","FALSE","America/Anchorage"
-"99689","59.52058","-139.48834","Yakutat","AK","Alaska","TRUE","","649","1.2","02282","Yakutat","{""02282"": ""100""}","Yakutat","02282","FALSE","FALSE","America/Yakutat"
-"99690","60.48717","-164.81892","Nightmute","AK","Alaska","TRUE","","175","0.7","02050","Bethel","{""02050"": ""100""}","Bethel","02050","FALSE","FALSE","America/Nome"
-"99691","62.8638","-153.66044","Nikolai","AK","Alaska","TRUE","","143","0.0","02290","Yukon-Koyukuk","{""02290"": ""100""}","Yukon-Koyukuk","02290","FALSE","FALSE","America/Anchorage"
-"99692","53.88553","-166.53864","Dutch Harbor","AK","Alaska","TRUE","","219","313.7","02016","Aleutians West","{""02016"": ""100""}","Aleutians West","02016","FALSE","FALSE","America/Nome"
-"99693","61.38199","-148.52108","Whittier","AK","Alaska","TRUE","","318","1.0","02261","Valdez-Cordova","{""02261"": ""100"", ""02170"": ""0""}","Valdez-Cordova|Matanuska-Susitna","02261|02170","FALSE","FALSE","America/Anchorage"
-"99694","61.62107","-149.79624","Houston","AK","Alaska","TRUE","","1495","28.7","02170","Matanuska-Susitna","{""02170"": ""100""}","Matanuska-Susitna","02170","FALSE","FALSE","America/Anchorage"
-"99695","55.91828","-159.49335","Anchorage","AK","Alaska","TRUE","","0","0.0","02164","Lake and Peninsula","{""02164"": ""100""}","Lake and Peninsula","02164","FALSE","FALSE","America/Anchorage"
-"99701","67.16977","-149.56917","Fairbanks","AK","Alaska","TRUE","","17258","1.6","02090","Fairbanks North Star","{""02090"": ""99.72"", ""02290"": ""0.28""}","Fairbanks North Star|Yukon-Koyukuk","02090|02290","FALSE","FALSE","America/Anchorage"
-"99702","64.64824","-147.04901","Eielson Afb","AK","Alaska","TRUE","","3267","78.1","02090","Fairbanks North Star","{""02090"": ""100""}","Fairbanks North Star","02090","FALSE","FALSE","America/Anchorage"
-"99703","64.8328","-147.62322","Fort Wainwright","AK","Alaska","TRUE","","9117","401.8","02090","Fairbanks North Star","{""02090"": ""100""}","Fairbanks North Star","02090","FALSE","FALSE","America/Anchorage"
-"99704","64.2966","-149.16084","Clear","AK","Alaska","TRUE","","52","20.8","02068","Denali","{""02068"": ""100""}","Denali","02068","FALSE","FALSE","America/Anchorage"
-"99705","64.76239","-147.31219","North Pole","AK","Alaska","TRUE","","23131","83.4","02090","Fairbanks North Star","{""02090"": ""100""}","Fairbanks North Star","02090","FALSE","FALSE","America/Anchorage"
-"99706","64.02799","-144.63394","Fairbanks","AK","Alaska","TRUE","","7","0.0","02240","Southeast Fairbanks","{""02240"": ""100""}","Southeast Fairbanks","02240","FALSE","FALSE","America/Anchorage"
-"99709","64.87812","-148.21561","Fairbanks","AK","Alaska","TRUE","","29288","22.2","02090","Fairbanks North Star","{""02090"": ""100""}","Fairbanks North Star","02090","FALSE","FALSE","America/Anchorage"
-"99712","64.99326","-146.14966","Fairbanks","AK","Alaska","TRUE","","14837","1.6","02090","Fairbanks North Star","{""02090"": ""100""}","Fairbanks North Star","02090","FALSE","FALSE","America/Anchorage"
-"99714","64.4327","-146.67125","Salcha","AK","Alaska","TRUE","","1160","1.3","02090","Fairbanks North Star","{""02090"": ""100""}","Fairbanks North Star","02090","FALSE","FALSE","America/Anchorage"
-"99720","66.56354","-152.77606","Allakaket","AK","Alaska","TRUE","","226","2.0","02290","Yukon-Koyukuk","{""02290"": ""100""}","Yukon-Koyukuk","02290","FALSE","FALSE","America/Anchorage"
-"99721","68.15448","-151.70965","Anaktuvuk Pass","AK","Alaska","TRUE","","249","19.9","02185","North Slope","{""02185"": ""100""}","North Slope","02185","FALSE","FALSE","America/Anchorage"
-"99722","68.09545","-145.6102","Arctic Village","AK","Alaska","TRUE","","185","6.1","02290","Yukon-Koyukuk","{""02290"": ""100""}","Yukon-Koyukuk","02290","FALSE","FALSE","America/Anchorage"
-"99723","71.27376","-156.74522","Barrow","AK","Alaska","TRUE","","4457","82.7","02185","North Slope","{""02185"": ""100""}","North Slope","02185","FALSE","FALSE","America/Anchorage"
-"99724","66.38311","-147.32171","Beaver","AK","Alaska","TRUE","","70","1.3","02290","Yukon-Koyukuk","{""02290"": ""100""}","Yukon-Koyukuk","02290","FALSE","FALSE","America/Anchorage"
-"99726","67.11836","-152.15661","Bettles Field","AK","Alaska","TRUE","","95","0.0","02290","Yukon-Koyukuk","{""02290"": ""100""}","Yukon-Koyukuk","02290","FALSE","FALSE","America/Anchorage"
-"99727","65.97587","-161.13877","Buckland","AK","Alaska","TRUE","","675","471.3","02188","Northwest Arctic","{""02188"": ""100""}","Northwest Arctic","02188","FALSE","FALSE","America/Anchorage"
-"99729","63.18325","-148.50259","Cantwell","AK","Alaska","TRUE","","199","0.1","02068","Denali","{""02068"": ""94.81"", ""02170"": ""5.19""}","Denali|Matanuska-Susitna","02068|02170","FALSE","FALSE","America/Anchorage"
-"99730","65.61511","-145.25129","Central","AK","Alaska","TRUE","","44","0.0","02290","Yukon-Koyukuk","{""02290"": ""100""}","Yukon-Koyukuk","02290","FALSE","FALSE","America/Anchorage"
-"99732","64.07171","-142.00646","Chicken","AK","Alaska","TRUE","","12","0.0","02240","Southeast Fairbanks","{""02240"": ""100""}","Southeast Fairbanks","02240","FALSE","FALSE","America/Anchorage"
-"99733","65.79284","-144.18283","Circle","AK","Alaska","TRUE","","64","0.2","02290","Yukon-Koyukuk","{""02290"": ""100""}","Yukon-Koyukuk","02290","FALSE","FALSE","America/Anchorage"
-"99734","70.36857","-148.99193","Prudhoe Bay","AK","Alaska","TRUE","","1314","2.5","02185","North Slope","{""02185"": ""100""}","North Slope","02185","FALSE","FALSE","America/Anchorage"
-"99736","66.08489","-162.76104","Deering","AK","Alaska","TRUE","","143","33.8","02188","Northwest Arctic","{""02188"": ""100""}","Northwest Arctic","02188","FALSE","FALSE","America/Nome"
-"99737","63.79603","-145.07326","Delta Junction","AK","Alaska","TRUE","","4597","0.4","02240","Southeast Fairbanks","{""02240"": ""99.14"", ""02261"": ""0.86""}","Southeast Fairbanks|Valdez-Cordova","02240|02261","FALSE","FALSE","America/Anchorage"
-"99738","65.20895","-142.18305","Eagle","AK","Alaska","TRUE","","138","0.0","02240","Southeast Fairbanks","{""02240"": ""100"", ""02290"": ""0""}","Southeast Fairbanks|Yukon-Koyukuk","02240|02290","FALSE","FALSE","America/Anchorage"
-"99739","64.96744","-162.54862","Elim","AK","Alaska","TRUE","","268","0.1","02180","Nome","{""02180"": ""100""}","Nome","02180","FALSE","FALSE","America/Nome"
-"99740","67.53438","-143.74514","Fort Yukon","AK","Alaska","TRUE","","561","0.0","02290","Yukon-Koyukuk","{""02290"": ""100""}","Yukon-Koyukuk","02290","FALSE","FALSE","America/Anchorage"
-"99741","64.7388","-156.85894","Galena","AK","Alaska","TRUE","","495","10.8","02290","Yukon-Koyukuk","{""02290"": ""100""}","Yukon-Koyukuk","02290","FALSE","FALSE","America/Anchorage"
-"99742","63.75233","-171.68815","Gambell","AK","Alaska","TRUE","","591","20.7","02180","Nome","{""02180"": ""100""}","Nome","02180","FALSE","FALSE","America/Nome"
-"99743","63.7838","-150.12799","Healy","AK","Alaska","TRUE","","990","0.1","02068","Denali","{""02068"": ""100""}","Denali","02068","FALSE","FALSE","America/Anchorage"
-"99744","64.30627","-149.18016","Anderson","AK","Alaska","TRUE","","120","1.4","02068","Denali","{""02068"": ""100""}","Denali","02068","FALSE","FALSE","America/Anchorage"
-"99745","66.04309","-154.2477","Hughes","AK","Alaska","TRUE","","72","6.8","02290","Yukon-Koyukuk","{""02290"": ""100""}","Yukon-Koyukuk","02290","FALSE","FALSE","America/Anchorage"
-"99746","65.57286","-158.11934","Huslia","AK","Alaska","TRUE","","369","0.0","02290","Yukon-Koyukuk","{""02290"": ""100""}","Yukon-Koyukuk","02290","FALSE","FALSE","America/Anchorage"
-"99747","70.11849","-143.66337","Kaktovik","AK","Alaska","TRUE","","178","11.5","02185","North Slope","{""02185"": ""100""}","North Slope","02185","FALSE","FALSE","America/Anchorage"
-"99748","64.32647","-158.76751","Kaltag","AK","Alaska","TRUE","","180","3.8","02290","Yukon-Koyukuk","{""02290"": ""100""}","Yukon-Koyukuk","02290","FALSE","FALSE","America/Anchorage"
-"99749","66.97844","-160.43177","Kiana","AK","Alaska","TRUE","","320","111.7","02188","Northwest Arctic","{""02188"": ""100""}","Northwest Arctic","02188","FALSE","FALSE","America/Anchorage"
-"99750","67.73135","-164.54955","Kivalina","AK","Alaska","TRUE","","683","1447.3","02188","Northwest Arctic","{""02188"": ""100""}","Northwest Arctic","02188","FALSE","FALSE","America/Nome"
-"99751","66.91926","-156.87006","Kobuk","AK","Alaska","TRUE","","140","9.5","02188","Northwest Arctic","{""02188"": ""100""}","Northwest Arctic","02188","FALSE","FALSE","America/Anchorage"
-"99752","67.29134","-161.98514","Kotzebue","AK","Alaska","TRUE","","3372","0.3","02188","Northwest Arctic","{""02188"": ""100""}","Northwest Arctic","02188","FALSE","FALSE","America/Anchorage"
-"99753","64.93968","-161.15126","Koyuk","AK","Alaska","TRUE","","291","23.6","02180","Nome","{""02180"": ""100""}","Nome","02180","FALSE","FALSE","America/Anchorage"
-"99754","64.90102","-157.69469","Koyukuk","AK","Alaska","TRUE","","58","3.9","02290","Yukon-Koyukuk","{""02290"": ""100""}","Yukon-Koyukuk","02290","FALSE","FALSE","America/Anchorage"
-"99755","63.69999","-148.62169","Denali National Park","AK","Alaska","TRUE","","883","0.9","02068","Denali","{""02068"": ""100""}","Denali","02068","FALSE","FALSE","America/Anchorage"
-"99756","64.58631","-151.84672","Manley Hot Springs","AK","Alaska","TRUE","","45","0.0","02290","Yukon-Koyukuk","{""02290"": ""100""}","Yukon-Koyukuk","02290","FALSE","FALSE","America/Anchorage"
-"99757","63.751","-152.75093","Lake Minchumina","AK","Alaska","TRUE","","23","0.0","02290","Yukon-Koyukuk","{""02290"": ""100""}","Yukon-Koyukuk","02290","FALSE","FALSE","America/Anchorage"
-"99758","65.15175","-149.37232","Minto","AK","Alaska","TRUE","","177","22.6","02290","Yukon-Koyukuk","{""02290"": ""100""}","Yukon-Koyukuk","02290","FALSE","FALSE","America/Anchorage"
-"99759","69.73126","-162.89793","Point Lay","AK","Alaska","TRUE","","227","3.4","02185","North Slope","{""02185"": ""100""}","North Slope","02185","FALSE","FALSE","America/Nome"
-"99760","64.21369","-148.23073","Nenana","AK","Alaska","TRUE","","504","0.1","02290","Yukon-Koyukuk","{""02290"": ""87.39"", ""02068"": ""9.04"", ""02090"": ""3.57""}","Yukon-Koyukuk|Denali|Fairbanks North Star","02290|02068|02090","FALSE","FALSE","America/Anchorage"
-"99761","67.60042","-163.03461","Noatak","AK","Alaska","TRUE","","415","10.1","02188","Northwest Arctic","{""02188"": ""100""}","Northwest Arctic","02188","FALSE","FALSE","America/Nome"
-"99762","64.8457","-164.46646","Nome","AK","Alaska","TRUE","","4346","0.8","02180","Nome","{""02180"": ""100""}","Nome","02180","FALSE","FALSE","America/Nome"
-"99763","66.82841","-161.03646","Noorvik","AK","Alaska","TRUE","","623","282.4","02188","Northwest Arctic","{""02188"": ""100""}","Northwest Arctic","02188","FALSE","FALSE","America/Anchorage"
-"99764","63.38147","-141.51133","Northway","AK","Alaska","TRUE","","459","0.1","02240","Southeast Fairbanks","{""02240"": ""100""}","Southeast Fairbanks","02240","FALSE","FALSE","America/Anchorage"
-"99765","64.72921","-158.13536","Nulato","AK","Alaska","TRUE","","236","12.6","02290","Yukon-Koyukuk","{""02290"": ""100""}","Yukon-Koyukuk","02290","FALSE","FALSE","America/Anchorage"
-"99766","68.65065","-164.95841","Point Hope","AK","Alaska","TRUE","","636","0.1","02185","North Slope","{""02185"": ""100""}","North Slope","02185","FALSE","FALSE","America/Nome"
-"99767","65.50221","-150.15117","Rampart","AK","Alaska","TRUE","","57","11.4","02290","Yukon-Koyukuk","{""02290"": ""100""}","Yukon-Koyukuk","02290","FALSE","FALSE","America/Anchorage"
-"99768","65.11675","-154.87994","Ruby","AK","Alaska","TRUE","","185","0.0","02290","Yukon-Koyukuk","{""02290"": ""100""}","Yukon-Koyukuk","02290","FALSE","FALSE","America/Anchorage"
-"99769","63.67959","-170.48517","Savoonga","AK","Alaska","TRUE","","975","65.5","02180","Nome","{""02180"": ""100""}","Nome","02180","FALSE","FALSE","America/Nome"
-"99770","66.76682","-159.47864","Selawik","AK","Alaska","TRUE","","792","0.3","02188","Northwest Arctic","{""02188"": ""100""}","Northwest Arctic","02188","FALSE","FALSE","America/Anchorage"
-"99771","64.36007","-161.20314","Shaktoolik","AK","Alaska","TRUE","","302","117.4","02180","Nome","{""02180"": ""100""}","Nome","02180","FALSE","FALSE","America/Anchorage"
-"99772","65.98303","-165.79795","Shishmaref","AK","Alaska","TRUE","","498","0.1","02180","Nome","{""02180"": ""100""}","Nome","02180","FALSE","FALSE","America/Nome"
-"99773","66.88758","-157.16496","Shungnak","AK","Alaska","TRUE","","292","18.8","02188","Northwest Arctic","{""02188"": ""100""}","Northwest Arctic","02188","FALSE","FALSE","America/Anchorage"
-"99774","66.01942","-149.0769","Stevens Village","AK","Alaska","TRUE","","15","0.5","02290","Yukon-Koyukuk","{""02290"": ""100""}","Yukon-Koyukuk","02290","FALSE","FALSE","America/Anchorage"
-"99775","64.85849","-147.82472","Fairbanks","AK","Alaska","TRUE","","1180","3907.3","02090","Fairbanks North Star","{""02090"": ""100""}","Fairbanks North Star","02090","FALSE","FALSE","America/Anchorage"
-"99776","63.38825","-143.4114","Tanacross","AK","Alaska","TRUE","","153","2.8","02240","Southeast Fairbanks","{""02240"": ""100""}","Southeast Fairbanks","02240","FALSE","FALSE","America/Anchorage"
-"99777","65.20884","-152.05621","Tanana","AK","Alaska","TRUE","","214","3.4","02290","Yukon-Koyukuk","{""02290"": ""100""}","Yukon-Koyukuk","02290","FALSE","FALSE","America/Anchorage"
-"99778","65.15447","-166.29698","Teller","AK","Alaska","TRUE","","238","0.3","02180","Nome","{""02180"": ""100""}","Nome","02180","FALSE","FALSE","America/Nome"
-"99780","63.19468","-143.07797","Tok","AK","Alaska","TRUE","","1776","0.6","02240","Southeast Fairbanks","{""02240"": ""93.62"", ""02261"": ""6.38""}","Southeast Fairbanks|Valdez-Cordova","02240|02261","FALSE","FALSE","America/Anchorage"
-"99781","67.47704","-146.01947","Venetie","AK","Alaska","TRUE","","125","0.0","02290","Yukon-Koyukuk","{""02290"": ""100""}","Yukon-Koyukuk","02290","FALSE","FALSE","America/Anchorage"
-"99782","70.64066","-159.93042","Wainwright","AK","Alaska","TRUE","","494","10.6","02185","North Slope","{""02185"": ""100""}","North Slope","02185","FALSE","FALSE","America/Anchorage"
-"99783","65.66335","-168.02324","Wales","AK","Alaska","TRUE","","184","3.0","02180","Nome","{""02180"": ""100""}","Nome","02180","FALSE","FALSE","America/Nome"
-"99784","64.68209","-163.40587","White Mountain","AK","Alaska","TRUE","","156","86.3","02180","Nome","{""02180"": ""100""}","Nome","02180","FALSE","FALSE","America/Nome"
-"99785","65.34195","-166.49262","Brevig Mission","AK","Alaska","TRUE","","384","59.9","02180","Nome","{""02180"": ""100""}","Nome","02180","FALSE","FALSE","America/Nome"
-"99786","67.17323","-155.95418","Ambler","AK","Alaska","TRUE","","260","0.0","02188","Northwest Arctic","{""02188"": ""100""}","Northwest Arctic","02188","FALSE","FALSE","America/Anchorage"
-"99788","66.64632","-143.7814","Chalkyitsik","AK","Alaska","TRUE","","109","5.0","02290","Yukon-Koyukuk","{""02290"": ""100""}","Yukon-Koyukuk","02290","FALSE","FALSE","America/Anchorage"
-"99789","70.02976","-151.86118","Nuiqsut","AK","Alaska","TRUE","","496","0.2","02185","North Slope","{""02185"": ""100""}","North Slope","02185","FALSE","FALSE","America/Anchorage"
-"99790","65.42127","-148.28799","Fairbanks","AK","Alaska","TRUE","","20","0.0","02290","Yukon-Koyukuk","{""02290"": ""100""}","Yukon-Koyukuk","02290","FALSE","FALSE","America/Anchorage"
-"99791","70.56099","-156.63867","Atqasuk","AK","Alaska","TRUE","","162","0.1","02185","North Slope","{""02185"": ""100""}","North Slope","02185","FALSE","FALSE","America/Anchorage"
-"99801","58.39767","-134.05518","Juneau","AK","Alaska","TRUE","","29968","5.3","02110","Juneau","{""02110"": ""100""}","Juneau","02110","FALSE","FALSE","America/Juneau"
-"99820","57.43987","-134.19673","Angoon","AK","Alaska","TRUE","","510","0.2","02105","Hoonah-Angoon","{""02105"": ""100""}","Hoonah-Angoon","02105","FALSE","FALSE","America/Juneau"
-"99824","58.27236","-134.40082","Douglas","AK","Alaska","TRUE","","2259","504.3","02110","Juneau","{""02110"": ""100""}","Juneau","02110","FALSE","FALSE","America/Juneau"
-"99825","58.13599","-135.87267","Elfin Cove","AK","Alaska","TRUE","","67","0.1","02105","Hoonah-Angoon","{""02105"": ""100""}","Hoonah-Angoon","02105","FALSE","FALSE","America/Juneau"
-"99826","58.75177","-136.56804","Gustavus","AK","Alaska","TRUE","","454","0.1","02105","Hoonah-Angoon","{""02105"": ""100""}","Hoonah-Angoon","02105","FALSE","FALSE","America/Juneau"
-"99827","59.12421","-135.70688","Haines","AK","Alaska","TRUE","","2590","0.6","02100","Haines","{""02100"": ""96.35"", ""02105"": ""3.65""}","Haines|Hoonah-Angoon","02100|02105","FALSE","FALSE","America/Juneau"
-"99829","58.10738","-135.42585","Hoonah","AK","Alaska","TRUE","","808","42.7","02105","Hoonah-Angoon","{""02105"": ""100""}","Hoonah-Angoon","02105","FALSE","FALSE","America/Juneau"
-"99830","56.77903","-134.16029","Kake","AK","Alaska","TRUE","","585","0.8","02195","Petersburg","{""02195"": ""100""}","Petersburg","02195","FALSE","FALSE","America/Sitka"
-"99832","58.01535","-136.17832","Pelican","AK","Alaska","TRUE","","91","0.2","02105","Hoonah-Angoon","{""02105"": ""100""}","Hoonah-Angoon","02105","FALSE","FALSE","America/Juneau"
-"99833","56.88523","-133.08513","Petersburg","AK","Alaska","TRUE","","3257","0.5","02195","Petersburg","{""02195"": ""100""}","Petersburg","02195","FALSE","FALSE","America/Sitka"
-"99835","56.96056","-135.05446","Sitka","AK","Alaska","TRUE","","8640","2.1","02220","Sitka","{""02220"": ""100""}","Sitka","02220","FALSE","FALSE","America/Sitka"
-"99836","56.23548","-134.65335","Port Alexander","AK","Alaska","TRUE","","88","9.7","02195","Petersburg","{""02195"": ""100""}","Petersburg","02195","FALSE","FALSE","America/Sitka"
-"99840","59.56292","-135.33619","Skagway","AK","Alaska","TRUE","","1107","1.0","02230","Skagway","{""02230"": ""100""}","Skagway","02230","FALSE","FALSE","America/Juneau"
-"99841","57.79433","-135.18486","Tenakee Springs","AK","Alaska","TRUE","","137","3.7","02105","Hoonah-Angoon","{""02105"": ""100""}","Hoonah-Angoon","02105","FALSE","FALSE","America/Juneau"
-"99901","55.56908","-131.01273","Ketchikan","AK","Alaska","TRUE","","13822","1.1","02130","Ketchikan Gateway","{""02130"": ""99.76"", ""02198"": ""0.24""}","Ketchikan Gateway|Prince of Wales-Hyder","02130|02198","FALSE","FALSE","America/Sitka"
-"99903","55.82123","-132.05943","Meyers Chuck","AK","Alaska","TRUE","","0","0.0","02275","Wrangell","{""02275"": ""100""}","Wrangell","02275","FALSE","FALSE","America/Sitka"
-"99918","55.94572","-132.74165","Coffman Cove","AK","Alaska","TRUE","","213","2.3","02198","Prince of Wales-Hyder","{""02198"": ""100""}","Prince of Wales-Hyder","02198","FALSE","FALSE","America/Sitka"
-"99919","55.65107","-132.50367","Thorne Bay","AK","Alaska","TRUE","","605","4.8","02198","Prince of Wales-Hyder","{""02198"": ""100""}","Prince of Wales-Hyder","02198","FALSE","FALSE","America/Sitka"
-"99921","55.45483","-132.77225","Craig","AK","Alaska","TRUE","","1976","0.4","02198","Prince of Wales-Hyder","{""02198"": ""100""}","Prince of Wales-Hyder","02198","FALSE","FALSE","America/Sitka"
-"99922","55.30211","-133.03248","Hydaburg","AK","Alaska","TRUE","","342","1.1","02198","Prince of Wales-Hyder","{""02198"": ""100""}","Prince of Wales-Hyder","02198","FALSE","FALSE","America/Sitka"
-"99923","55.97796","-130.03671","Hyder","AK","Alaska","TRUE","","14","0.3","02198","Prince of Wales-Hyder","{""02198"": ""100""}","Prince of Wales-Hyder","02198","FALSE","FALSE","America/Sitka"
-"99925","55.55796","-132.97482","Klawock","AK","Alaska","TRUE","","908","6.3","02198","Prince of Wales-Hyder","{""02198"": ""100""}","Prince of Wales-Hyder","02198","FALSE","FALSE","America/Sitka"
-"99926","55.12617","-131.48928","Metlakatla","AK","Alaska","TRUE","","1654","4.8","02198","Prince of Wales-Hyder","{""02198"": ""100""}","Prince of Wales-Hyder","02198","FALSE","FALSE","America/Metlakatla"
-"99927","56.251","-133.37572","Point Baker","AK","Alaska","TRUE","","0","0.0","02198","Prince of Wales-Hyder","{""02198"": ""100""}","Prince of Wales-Hyder","02198","FALSE","FALSE","America/Sitka"
-"99929","56.3695","-131.93648","Wrangell","AK","Alaska","TRUE","","2502","0.4","02275","Wrangell","{""02275"": ""100""}","Wrangell","02275","FALSE","FALSE","America/Sitka"